diff --git a/labs/altair/altair_lab.ipynb b/labs/altair/altair_lab.ipynb new file mode 100644 index 0000000..1078dcf --- /dev/null +++ b/labs/altair/altair_lab.ipynb @@ -0,0 +1,523 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "d7b2fe09-0107-4c55-b9b1-ff9e6cfc5333", + "metadata": {}, + "source": [ + "# Altair Practice Lab\n", + "\n", + "In this assignment we will be crafting a series of visualizations using\n", + "Altair to get practice working with real data in this context.\n", + "\n", + "Your responses should be within the functions given,\n", + "using appropriate helper functions to help with clarity\n", + "and reduce redundancy." + ] + }, + { + "cell_type": "markdown", + "id": "2160f88c-ce5b-43e4-a19b-17b9116de256", + "metadata": {}, + "source": [ + "## Rubric\n", + "\n", + "The criteria to receive an S on this assignment is a good-faith attempt at each portion.\n", + "\n", + "A good-faith attempt should either:\n", + "\n", + "- be fundamentally correct producing the expected output with minimal deviations,\n", + "- **OR** contain an explanation of what does not work and _details on what was tried_.\n", + "\n", + "**To receive an N, at least half of the assignment should have good-faith attempts.**\n", + "\n", + "Your charts do not need to match the examples exactly! They are helpful to get a sense of what you're after, but focus on the problem description." + ] + }, + { + "cell_type": "markdown", + "id": "203da284-d444-40aa-9672-08b06089270b", + "metadata": {}, + "source": [ + "## Introducing the Dataset\n", + "\n", + "In this directory you'll find two files:\n", + "\n", + "**legislators.csv** which consists of ~7400 records representing state legislators, it has the following fields:\n", + "\n", + "- name\n", + "- given_name\n", + "- family_name\n", + "- party: As reported by the state.\n", + "- gender: Male / Female / Other\\*\n", + "- jurisdiction: This field contains an identifier for the state or jurisdiction, see below for details.\n", + "- district: the name of the district represented\n", + "- type: upper | lower - The classification of the legislative. Most states have both, but DC and NE only have an upper chamber.\n", + "\n", + "Note: Accurate data on gender is hard to come by in many states. There may be irregularities in this field. This is also why this field does not make further distinctions beyond Male/Female/Other." + ] + }, + { + "cell_type": "markdown", + "id": "92fb1bea-0448-4f96-be36-e8752a1605cf", + "metadata": {}, + "source": [ + "## Part 1: Data Exploration\n", + "\n", + "First, we'll build a few exploratory visualizations to get a sense of the data for this assignment.\n", + "\n", + "### 1.0: Cleaning\n", + "\n", + "As mentioned above, there is no 'state' field. Jurisdiction is in the format:\n", + "\n", + "`ocd-jurisdiction/country:us/state:nc/government`\n", + "\n", + "and for non-states:\n", + "\n", + "- `ocd-jurisdiction/country:us/district:dc/government`\n", + "- `ocd-jurisdiction/country:us/territory:pr/government`\n", + "\n", + "So for our purposes, we want to add a `state` column from the two letter code after either \"state:\", \"district:\", or \"territory:\".\n", + "(We will treat DC and PR as states.)\n", + "\n", + "Complete the function `legislators_df` which should return the data from `legislators.csv` in a dataframe, with an additional `state` column." + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "8285070f-682d-446f-8992-56f5a4a967b8", + "metadata": {}, + "outputs": [], + "source": [ + "def legislators_df():\n", + " pass # IMPLEMENTATION HERE\n", + "\n", + "# render dataframe\n", + "legislators_df()" + ] + }, + { + "cell_type": "markdown", + "id": "50f31b88-90b3-4ebe-b91e-dc66b1dbf71e", + "metadata": {}, + "source": [ + "### 1.1: Initial Plot\n", + "\n", + "First let's build a visualization of gender breakdowns in state legislatures.\n", + "Use the following:\n", + "\n", + "- stacked bars per state\n", + "- each segment of stacked bar is gender\n", + "\n", + "Your graph should somewhat resemble *imgs/ex1.1.png*." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "97bebe40-bee5-4983-babe-1d1112b2d636", + "metadata": {}, + "outputs": [], + "source": [ + "def states_by_gender_initial(df):\n", + " pass # IMPLEMENTATION HERE\n", + "\n", + "# render chart\n", + "states_by_gender_initial(legislators_df())" + ] + }, + { + "cell_type": "markdown", + "id": "e28870e3-2a98-4ebe-b52e-6769cc31a563", + "metadata": {}, + "source": [ + "### 1.2: Improvements\n", + "\n", + "While it is clear from the first chart that there are more elected officials that are men than women, it is hard to compare across states.\n", + "\n", + "Make the following adjustments:\n", + "\n", + "- Normalize the chart so that each bar is a percentage, allowing for direct comparison across states.\n", + "- Since this is US political data, the colors red and blue have a strong meaning, associated with the Republican and Democratic parties. Change the color scheme to avoid red and blue. (I chose #8624f5 for women and #1fc3aa for men based on this article: )\n", + "- Two states are very close to 50%, add a line at 50% using a layered chart to make it easier to see if they exceed 50% or not.\n", + "\n", + "Your graph should somewhat resemble *imgs/ex1.2.png*." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "bb8332be-1570-472c-b7f9-c7fe820bbfc9", + "metadata": {}, + "outputs": [], + "source": [ + "def states_by_gender_improved(df):\n", + " pass # IMPLEMENTATION HERE\n", + "\n", + "# render chart\n", + "states_by_gender_improved(legislators_df())" + ] + }, + { + "cell_type": "markdown", + "id": "85fdeee8-27ce-4730-864f-171dfa4a85c4", + "metadata": {}, + "source": [ + "## Part 2: Party Breakdown\n", + "\n", + "We'll now take a look at party control. We can start with essentially the same chart.\n", + "\n", + "### 2.0 - Party Control\n", + "\n", + "Copy your code from 1.2 above & modify it to use party instead of gender. Your graph will wind up with too many parties, see `imgs/ex2.0.png`." + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "6af187e2-198c-4ebd-931f-c1c2973ad3a2", + "metadata": {}, + "outputs": [], + "source": [ + "def party_control_raw(df):\n", + " pass # IMPLEMENTATION HERE\n", + "\n", + "party_control_raw(legislators_df())" + ] + }, + { + "cell_type": "markdown", + "id": "27bb9ccf-3ad8-4d37-8cfc-64aea58d9848", + "metadata": {}, + "source": [ + "### 2.1 - Cleaning Data\n", + "\n", + "The above graph still has some shortcomings:\n", + "\n", + "- Most states have an upper and lower chamber, and party control may vary between them. We'll need to make two bars per state (which we'll tackle in 2.2).\n", + "- Also, there are too many variations of party as you can see here:\n", + "\n", + "Let's transform the data again, adding a new column \"party_code\" with the following rules:\n", + "\n", + "- if the word 'Democratic' appears, set party_code to 'D'\n", + "- if the word 'Republican' appears, set the party_code to 'R'\n", + "- otherwise, set the party_code to 'O'\n", + "\n", + "Party data in NE, DC, and PR does not work with this scheme.\n", + "For simplicity, we will exclude them from our analysis.\n", + "\n", + "For this portion, implement `clean_party_df` which should return a modified legislators DataFrame with the `party_code` column, and the rows for states 'DC', 'NE' and 'PR' dropped." + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "f6e95081-bb32-49a7-be03-3cad634b5f1b", + "metadata": {}, + "outputs": [], + "source": [ + "def clean_party_df():\n", + " # start with the DataFrame from part 1 & return transformed copy\n", + " df = legislators_df()\n", + " # IMPLEMENTATION HERE\n", + "\n", + "clean_party_df()" + ] + }, + { + "cell_type": "markdown", + "id": "794c3b48-7c52-4808-a215-97df57c7b7f9", + "metadata": {}, + "source": [ + "### 2.2 - Faceted Plot\n", + "\n", + "Add a function `party_control_by_chamber` that contains the following elements:\n", + "\n", + "- One bar per state, **along the Y axis**.\n", + "- Each bar should consist of a stack: a blue portion, a green portion, and a red portion, corresponding to the D, O, and R `party_code` respectively.\n", + "- A vertical line at the 50% mark, indicating (likely) party control.\n", + "- Finally, facet the chart on `type` so that you get a set of bars for the lower and upper chambers.\n", + "\n", + "See `imgs/ex2.2.png` for an example." + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "af9397d2-da7b-4c79-bb03-a98c0c98f5be", + "metadata": {}, + "outputs": [], + "source": [ + "def party_control_by_chamber(df):\n", + " pass # IMPLEMENTATION HERE\n", + "\n", + "party_control_by_chamber(clean_party_df())" + ] + }, + { + "cell_type": "markdown", + "id": "be7cd442-d5c4-463a-ac58-e4746bd06ba3", + "metadata": {}, + "source": [ + "## Part 3: Comparing by Population\n", + "\n", + "For part three, we are interested in the relationship of various properties of legislatures to the total population of the state.\n", + "\n", + "To do this, we'll need to create a combined DataFrame that mixes in data from `populations.csv`." + ] + }, + { + "cell_type": "markdown", + "id": "4f7b26f4-8258-4703-9391-4af27d939d74", + "metadata": {}, + "source": [ + "### 3.0 - Create Combined DataFrame\n", + "\n", + "Write the function `population_combined_df`, which should return a DataFrame with the columns:\n", + "\n", + "- state: abbreviation of state\n", + "- upper: total seats in upper chamber\n", + "- lower: total seats in lower chamber\n", + "- pop_2020: the 2020 population, obtained from merging with `population.csv`\n", + "\n", + "**Data Note:** These numbers are based on the non-vacant seats as-of a particular day in September 2024. Vacancies will cause the counts to be off by a bit, but the general size of the legislature should be roughly the same." + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "0db0bec3-09df-4e51-97d8-4882e834e81a", + "metadata": {}, + "outputs": [], + "source": [ + "def population_combined_df():\n", + " pass # IMPLEMENTAION HERE" + ] + }, + { + "cell_type": "markdown", + "id": "37df7c37-cfde-4a5e-b7b9-f2e8c4617b39", + "metadata": {}, + "source": [ + "### 3.1 - Create Population vs. Seats Scatterplot\n", + "\n", + "Create a new plot with two layers:\n", + "\n", + "- Population on the X axis\n", + "- Number of seats on the Y axis\n", + "- Upper chamber points should be purple and use the 'triangle-up' shape.\n", + "- Lower chamber points should be orange and use the 'triangle-down' shape.\n", + "- Make a customization or two to your chart's default labels and axes, whatever you feel is appropriate.\n", + "\n", + "Hint: You can layer two charts for this." + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "50274435-48e5-4f6f-9b13-e863ffba9a1c", + "metadata": {}, + "outputs": [], + "source": [ + "def scatter_pop_size():\n", + " pass # IMPLEMENTATION HERE" + ] + }, + { + "cell_type": "markdown", + "id": "ad14558c-c3ee-4dc2-9ab4-497b6fd0de01", + "metadata": {}, + "source": [ + "### 3.2 - Regressions\n", + "\n", + "Add two more layers, a purple & orange regression line for each chamber. See `imgs/ex3.2.png`\n", + "\n", + "Hint: See `transform_regression`." + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "id": "54bf78b6-5031-4c3b-9368-7787fe492c2b", + "metadata": {}, + "outputs": [], + "source": [ + "def scatter_pop_size_regression():\n", + " pass # IMPLEMENTATION HERE" + ] + }, + { + "cell_type": "markdown", + "id": "82c005e1-ad3d-49e9-a4a8-87fba2700ebb", + "metadata": {}, + "source": [ + "## Part 4: Actions Heatmap\n", + "\n", + "The file `actions_il-in-mi-wi_2021-2024.csv` contains nearly half a million records, representing every official action taken on a piece of legislation in these four midwestern states over the past two sessions.\n", + "\n", + "Legislatures work quite differently, some meet all year, while others meet for very short periods.\n", + "By creating a heatmap of what days actions take place, we can get a sense of how different states compare.\n", + "\n", + "### 4.0 - Load Actions\n", + "\n", + "Complete `actions_df`, which should load the data from `actions_il-in-mi-wi_2021-2024.csv`.\n", + "\n", + "Tips: \n", + "- Make sure that the `date` column is loaded as a date type!\n", + "- Dates are in YYYY-MM-DD format, though some also have additional characters for time, which you will want to ignore." + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "id": "40c1eb03-8960-4fde-85e6-8b1fd2e4c6a5", + "metadata": {}, + "outputs": [], + "source": [ + "def actions_df():\n", + " pass # IMPLEMENTATION HERE" + ] + }, + { + "cell_type": "markdown", + "id": "aa1772db-b31b-4282-9ad7-602bdc6c71b9", + "metadata": {}, + "source": [ + "### 4.1 - Actions Heatmap\n", + "\n", + "Generate a heatmap (using `mark_rect`) with:\n", + "\n", + "- a row per state\n", + "- each row consists of shaded marks with shading based on the total action count for a given week\n", + "\n", + "Tip: Use the 'yearweek(date)' aggregation for the X channel.\n", + "\n", + "See `imgs/ex4.1.png`." + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "id": "81f24d38-f9f9-4c00-8d10-c8a8b42891b7", + "metadata": {}, + "outputs": [], + "source": [ + "def actions_heatmap_scaled(df):\n", + " pass # IMPLEMENTATION HERE\n", + "\n", + "actions_heatmap_scaled(actions_df())" + ] + }, + { + "cell_type": "markdown", + "id": "03f78853-5c2d-4da4-b612-5514751bce6f", + "metadata": {}, + "source": [ + "### 4.2 - Excluding IL Outliers\n", + "\n", + "Illinois clearly dominates the above graph, below modify two calls to `actions_heatmap` with a modified dataframe that excludes IL, and a modified dataframe that only includes IL.\n", + "\n", + "(Note how by using functions in our dataframe we can more easily reuse portions by making small adjustments to the data.)\n", + "\n", + "See `ex4.2a.png` and `ex4.2b.png`" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "id": "4be0c226-a362-4189-a303-19c7fa0de29b", + "metadata": {}, + "outputs": [], + "source": [ + "# MODIFY THIS LINE (exclude IL)\n", + "actions_heatmap_scaled(actions_df())" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "id": "ca6a81aa-a2c3-44e3-a4b1-029bf8d49f86", + "metadata": {}, + "outputs": [], + "source": [ + "# MODIFY THIS LINE (only IL)\n", + "actions_heatmap_scaled(actions_df())" + ] + }, + { + "cell_type": "markdown", + "id": "58f04553-cfe4-4533-a21c-ea66523bc6b1", + "metadata": {}, + "source": [ + "#### 4.3 - Cumulative Line Chart\n", + "\n", + "Another way to view this data would be with a cumulative line chart.\n", + "\n", + "Create a chart with:\n", + "\n", + "- days on the X axis\n", + "- cumulative actions to date on the Y axis\n", + "- one line per state\n", + "\n", + "Hint: To do this you will need to look at the `transform_window` function.\n", + "\n", + "See `ex4.3.png` for an example." + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "id": "93af038f-23d6-412a-9240-ceaa830ecfe5", + "metadata": {}, + "outputs": [], + "source": [ + "def actions_cumulative(df):\n", + " pass # IMPLEMENTATION HERE\n", + "\n", + "actions_cumulative(actions_df())" + ] + }, + { + "cell_type": "markdown", + "id": "aba02ff4-5d98-4ca7-9da9-d7facceb4bca", + "metadata": {}, + "source": [ + "### TODO?\n", + "\n", + "- error bars?\n", + "- rank line chart?\n", + "- polish a chart" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "acf7e21d-33b2-4a58-a549-7f04c14aad22", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/labs/altair/data/actions_il-in-mi-wi_2021-2024.csv b/labs/altair/data/actions_il-in-mi-wi_2021-2024.csv new file mode 100644 index 0000000..bb9f9c5 --- /dev/null +++ b/labs/altair/data/actions_il-in-mi-wi_2021-2024.csv @@ -0,0 +1,461246 @@ +description,date,classification,state,session +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-10,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-01-19,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-08-10,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2021-05-27,['filing'],IL,102nd +Filed with Secretary,2023-01-04,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2022-11-30,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-07-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-09-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-08-05,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2021-05-19,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-09-23,['filing'],IL,102nd +Filed with Secretary,2021-05-17,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-07-25,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-10-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2022-03-22,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-09-20,['filing'],IL,102nd +Filed with Secretary,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-09-29,['filing'],IL,102nd +Filed with Secretary,2022-02-10,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-06-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-10-25,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-09-22,['filing'],IL,102nd +Filed with Secretary,2021-10-27,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-09-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-04-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-10-04,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-05-12,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-18,['filing'],IL,102nd +Filed with Secretary,2022-03-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-10-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-09-20,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2021-10-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-09-17,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-06-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2021-09-09,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2022-06-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-10-07,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-10-05,['filing'],IL,102nd +Filed with Secretary,2021-03-10,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-09-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2022-01-19,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-09-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Bradley Stephens,2022-11-22,['filing'],IL,102nd +Filed with Secretary,2022-01-12,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-09-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dave Syverson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-10-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2022-07-27,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-10-18,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-06-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-09-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-11-22,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-05-28,['filing'],IL,102nd +Filed with Secretary,2021-10-27,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-10-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-07-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-03-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2021-10-27,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-08-31,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-09-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-11-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-08-30,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-11-28,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-05-04,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with Secretary,2021-10-27,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-11-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2022-11-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-08-23,['filing'],IL,102nd +Filed with Secretary,2021-10-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-08,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-10-20,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2021-12-01,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-05-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2021-10-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-05-20,['filing'],IL,102nd +Filed with the Clerk by Rep. John C. D'Amico,2021-02-24,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-03-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-01-26,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-03-19,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with Secretary,2022-03-17,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-06-23,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with Secretary,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-02-23,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2021-04-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-11-18,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2021-12-28,['filing'],IL,102nd +Filed with Secretary,2021-03-09,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-07-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2021-06-28,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-06-22,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-03-23,['filing'],IL,102nd +Filed with Secretary,2022-03-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-01-22,['filing'],IL,102nd +Filed with Secretary,2022-03-07,['filing'],IL,102nd +Filed with Secretary by Sen. Dave Syverson,2021-12-15,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-05-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-02-04,['filing'],IL,102nd +Filed with Secretary,2022-03-09,['filing'],IL,102nd +Filed with Secretary,2021-04-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-03-28,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-03-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-08-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-01-20,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-09-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-09,['filing'],IL,102nd +Filed with Secretary,2022-03-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dave Syverson,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-10-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-08-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-08-10,['filing'],IL,102nd +Filed with Secretary,2022-03-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-03-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-05-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-12-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-08-17,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-10-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-08-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-03-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-05-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-24,['filing'],IL,102nd +Filed with Secretary,2021-03-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-05-19,['filing'],IL,102nd +Filed with Secretary,2022-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2022-01-13,['filing'],IL,102nd +Filed with Secretary,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-04-05,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-24,['filing'],IL,102nd +Filed with Secretary,2022-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-08-24,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2022-01-07,['filing'],IL,102nd +Filed with Secretary,2022-11-22,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-08-20,['filing'],IL,102nd +Filed with Secretary,2021-04-13,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-01-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-01-13,['filing'],IL,102nd +Filed with Secretary,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-04-14,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2023-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-03-25,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-03-15,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2021-04-13,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-05-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-08,['filing'],IL,102nd +Filed with Secretary,2021-10-20,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2022-03-07,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-08-24,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-10-19,['filing'],IL,102nd +Filed with Secretary,2021-08-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-01-26,['filing'],IL,102nd +Filed with Secretary,2022-03-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-03-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-05-07,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-04-28,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2022-03-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-03-01,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2022-09-28,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-03-24,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2021-10-20,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2022-03-04,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-04-05,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2022-01-27,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-07-22,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-08-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-03-16,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-10-20,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-02-22,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-05-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2021-03-15,['filing'],IL,102nd +Filed with Secretary,2021-05-29,['filing'],IL,102nd +Filed with Secretary,2023-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-03-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-03-22,['filing'],IL,102nd +Filed with Secretary,2022-01-13,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-03-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-02-09,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +Filed with Secretary,2021-05-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-03-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-07-29,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-03-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-03-14,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-23,['filing'],IL,102nd +Filed with Secretary,2021-05-13,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-02-24,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-03-10,['filing'],IL,102nd +Filed with Secretary,2021-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-06-01,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2022-03-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2022-09-15,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-07-12,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-03-11,['filing'],IL,102nd +Filed with Secretary,2021-04-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-12-13,['filing'],IL,102nd +Filed with Secretary,2021-05-04,['filing'],IL,102nd +Filed with Secretary,2021-05-28,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-09,['filing'],IL,102nd +Filed with Secretary,2022-04-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2021-05-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-10-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-19,['filing'],IL,102nd +Filed with Secretary,2021-05-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2022-03-28,['filing'],IL,102nd +Filed with Secretary,2021-04-27,['filing'],IL,102nd +Filed with Secretary,2022-02-22,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-09-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2022-02-24,['filing'],IL,102nd +Filed with Secretary,2022-03-22,['filing'],IL,102nd +Filed with Secretary,2022-02-22,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-05-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-09-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-03-28,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-08-19,['filing'],IL,102nd +Filed with Secretary,2023-01-10,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-01-19,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-08-31,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-05-10,['filing'],IL,102nd +Filed with Secretary,2022-03-07,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-10-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-05-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-01-26,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +Filed with Secretary,2021-03-05,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-03-23,['filing'],IL,102nd +Filed with Secretary,2022-02-22,['filing'],IL,102nd +Filed with Secretary,2022-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-02-24,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-05-29,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2022-01-26,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-03-16,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2021-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-20,['filing'],IL,102nd +Filed with Secretary,2022-03-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-03-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-03-30,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-03,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2022-04-26,['filing'],IL,102nd +Filed with Secretary,2022-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-02-22,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-08-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-05-06,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-12-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-05,['filing'],IL,102nd +Filed with Secretary,2022-03-09,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-28,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-03-24,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-12-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-12-29,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with Secretary,2022-04-05,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-09-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Bradley Stephens,2022-01-27,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-05-04,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-08-19,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-02-09,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Bradley Stephens,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-06-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-11-28,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-11-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-08-23,['filing'],IL,102nd +Filed with Secretary,2021-05-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-08-26,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Bradley Stephens,2021-03-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-02-05,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-05-24,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-10-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-01-19,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-08-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-06,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-28,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-08-30,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with Secretary,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-03-09,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-05-25,['filing'],IL,102nd +Filed with Secretary,2022-11-22,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-03-24,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-04-12,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-03-29,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-09-23,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-01-25,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2021-02-09,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-05-18,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-04-29,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-06,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-20,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-03-23,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2021-02-23,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-18,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-04-06,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-03-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-07-01,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2022-01-28,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-01-15,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-08-31,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-04-06,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-08-31,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with Secretary,2021-04-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-01-27,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-01-19,['filing'],IL,102nd +Filed with Secretary,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-01-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-02-08,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-09,['filing'],IL,102nd +Filed with Secretary,2023-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-02-08,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-25,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2021-03-24,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-04-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-27,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-10-25,['filing'],IL,102nd +Filed with Secretary,2022-11-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2023-01-09,['filing'],IL,102nd +Filed with Secretary,2022-03-04,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2022-03-23,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2022-03-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-07-01,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2022-03-07,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2021-03-15,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-31,['filing'],IL,102nd +Filed with Secretary,2023-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2022-06-24,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-06-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-11-01,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-06-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Kelly,2022-10-12,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-09-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2021-10-27,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-07-20,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-07-26,['filing'],IL,102nd +Filed with Secretary,2021-05-04,['filing'],IL,102nd +Filed with Secretary,2021-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2022-05-16,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-05-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-08-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-04-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-01-22,['filing'],IL,102nd +Filed with Secretary,2021-04-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-11-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-10-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2022-06-01,['filing'],IL,102nd +Filed with Secretary,2022-02-22,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-11-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-05-05,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-07-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2021-08-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-08-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-04-13,['filing'],IL,102nd +Filed with Secretary,2021-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-09-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-02-08,['filing'],IL,102nd +Filed with Secretary,2021-04-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-09-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-01-25,['filing'],IL,102nd +Filed with Secretary,2021-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-12-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-05-25,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-03-22,['filing'],IL,102nd +Filed with Secretary,2022-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2022-06-15,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2021-04-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-06-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-08-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-05-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2021-08-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-08-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-04-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-04-12,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2022-06-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-04-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-04-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2022-06-29,['filing'],IL,102nd +Filed with Secretary,2022-02-15,['filing'],IL,102nd +Filed with Secretary,2022-03-04,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-01-27,['filing'],IL,102nd +Filed with Secretary,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-05-09,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-04-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-06-24,['filing'],IL,102nd +Filed with Secretary,2022-11-30,['filing'],IL,102nd +Filed with Secretary,2022-04-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-04-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-04-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-08-11,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with Secretary,2021-04-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-09-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-10-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2022-10-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-08-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2021-04-22,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-11-03,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-08-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-08-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-04,['filing'],IL,102nd +Filed with Secretary,2022-11-30,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2022-02-23,['filing'],IL,102nd +Filed with Secretary,2021-04-13,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-23,['filing'],IL,102nd +Filed with Secretary,2021-03-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-08-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-25,['filing'],IL,102nd +Filed with Secretary,2021-03-10,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-01-21,['filing'],IL,102nd +Filed with Secretary,2022-03-04,['filing'],IL,102nd +Filed with Secretary,2021-04-13,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2023-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-01-21,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-07-16,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-08-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-06,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2023-01-04,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-12-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-10-25,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sandra Hamilton,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-09,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Patricia Van Pelt,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Sally J. Turner,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-01-04,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2022-11-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2021-02-22,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-09-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-05-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Randy E. Frese,2022-03-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Kelly,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-03-29,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2022-01-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2022-03-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-04-19,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-03-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-10-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-08,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-04-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2022-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2022-04-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-05-31,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2022-01-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-12-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-04-14,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-03-16,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Sandra Hamilton,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2022-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2022-04-05,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-18,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-02-17,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-01-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-03-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2021-09-07,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-06-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-01-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2022-04-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-12-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2021-03-16,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2022-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2021-03-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-10-08,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-08-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-10-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-06-08,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-11-01,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-03-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-03-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-01-10,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-04-06,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2022-07-15,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-04-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2021-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-12-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith P. Sommer,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary,2022-03-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-03-31,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-05-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-11-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-12-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-03-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-10-08,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2022-01-24,['filing'],IL,102nd +Filed with Secretary,2022-04-01,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2022-03-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2022-03-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2022-11-22,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2022-08-11,['filing'],IL,102nd +Filed with Secretary,2022-04-01,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2022-03-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Kelly,2022-03-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Kelly,2022-01-28,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Steve McClure,2022-02-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Ozinga,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2022-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-11-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2022-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2022-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Ozinga,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2022-03-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-11-10,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Grant,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2021-11-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2022-03-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-12-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Patricia Van Pelt,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2022-09-01,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2021-03-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2022-03-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-02-01,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Ozinga,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2022-10-11,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-07-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-03-07,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2021-12-14,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2022-03-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2021-10-15,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-12-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2021-05-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-05-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-04-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2022-11-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-12-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Randy E. Frese,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2022-02-15,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with Secretary,2022-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Kelly,2022-04-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-03-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin McLaughlin,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-03-29,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-09-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-04-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-18,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-21,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-01-13,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2021-02-10,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-14,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-05-26,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-12-08,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2022-10-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-11-22,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Ozinga,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-10-18,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-01-13,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-01-12,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-05-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Ozinga,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-05-20,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2022-03-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Randy E. Frese,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-22,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2022-11-17,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2022-01-07,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Steve McClure,2021-02-09,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-03,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2022-03-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-05-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-03-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2021-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2022-10-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-01-07,['filing'],IL,102nd +Filed with Secretary,2021-05-31,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sandra Hamilton,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-05-18,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. John C. D'Amico,2021-02-17,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Steve McClure,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-22,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Steve McClure,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-03-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-10,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2022-01-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-10-24,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-21,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-10,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-08-31,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-03-11,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-10-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-01-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2023-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-04-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Steve McClure,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-11-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-08-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-05-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2022-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-03-03,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dave Syverson,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-03-30,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Patricia Van Pelt,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-03-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2023-01-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-05-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-03-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-03-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-08-31,['filing'],IL,102nd +Filed with Secretary,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-04,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2022-01-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2022-01-13,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-03-10,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-04-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Sandra Hamilton,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-10,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-03-17,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Luft,2021-10-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-04-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2021-04-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-04-19,['filing'],IL,102nd +Filed with Secretary,2021-04-23,['filing'],IL,102nd +Filed with Secretary,2021-04-27,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2022-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-04-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-05-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-05-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-01-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-05-19,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2022-09-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary,2021-05-07,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-10-13,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-08-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-04-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2022-10-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin McLaughlin,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-03-28,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-13,['filing'],IL,102nd +Filed with Secretary,2021-04-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-16,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-05-26,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-02-10,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-02,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-10-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-09-20,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-04-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-07-22,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2022-09-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-10-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2021-03-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2022-04-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2022-06-22,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-12-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-03-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-09-17,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2022-04-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-04-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2022-01-04,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2022-02-04,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-11-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-03-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-07,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-02-03,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-06-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-09-20,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-12-03,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-03-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-12-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-05-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-11-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-10,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Luft,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-10-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-03-12,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2022-03-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2021-05-11,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-12-02,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-09-23,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-10-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-10-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2022-03-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-10-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2022-11-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-04-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-10-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-11-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-04-22,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-08-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-10,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2022-07-20,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-12,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-08-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-12-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-17,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2021-05-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2022-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-05-27,['filing'],IL,102nd +Filed with Secretary,2021-05-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-04-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-03-03,['filing'],IL,102nd +Filed with Secretary,2021-05-14,['filing'],IL,102nd +Filed with Secretary,2021-05-11,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2021-02-09,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2022-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Randy E. Frese,2022-03-17,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-05-10,['filing'],IL,102nd +Filed with Secretary,2021-05-12,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2021-05-18,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2021-05-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-05-26,['filing'],IL,102nd +Filed with Secretary,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-10,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2022-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-10-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2022-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-01-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-12-07,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-01-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-11-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2022-04-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary,2022-03-30,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-07-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2022-01-21,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-03-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-04-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-19,['filing'],IL,102nd +Added as Chief Co-Sponsor Sen. Steve McClure,2022-01-07,[],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-08-15,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-18,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2022-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-08-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-03-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-01-03,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-17,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-10-13,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-08-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-20,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2022-08-04,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-03-28,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-12-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2022-10-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Prefiled with Clerk by Rep. Barbara Hernandez,2021-01-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2022-07-28,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-23,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-23,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-03-23,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2022-09-08,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-04-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-04-03,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-03-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2022-10-04,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-12-02,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-03-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary,2022-03-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-09-29,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-08-13,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2021-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-03-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-03-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-10-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-06-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-08-29,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-12-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-09-07,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2022-11-03,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-12-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2022-01-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2022-08-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary,2022-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-12-20,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-09-22,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-10-26,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-23,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2022-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-17,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-23,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-21,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2022-09-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2022-10-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-12-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-12-06,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-10-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2022-04-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-22,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-08-26,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-08-19,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-12-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-01-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-05-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-17,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-05-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-26,['filing'],IL,102nd +Filed with Secretary,2021-05-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-05-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-03-01,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Patricia Van Pelt,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2022-01-03,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2022-01-05,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-07,['filing'],IL,102nd +Filed with Secretary,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2021-12-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-09-07,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-12-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-23,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-01-28,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Luft,2022-11-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-11-22,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-11-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-10-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-12-13,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-03-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-24,['filing'],IL,102nd +Filed with Secretary,2022-04-08,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Grant,2022-01-28,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-08-27,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-02-15,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-01,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-10-26,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-08-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-02-01,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2023-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-03-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-03-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-17,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sally J. Turner,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-10-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2021-05-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-12-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-03,[],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-12-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-12-13,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-03,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-12-07,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2022-01-26,['filing'],IL,102nd +Filed with Secretary,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-04-09,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-17,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-10-27,['filing'],IL,102nd +Filed with Secretary,2022-11-22,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-12-15,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sandra Hamilton,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2022-11-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Steve McClure,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2022-07-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2022-07-08,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith P. Sommer,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-04-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2022-03-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-01-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-06-01,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-10-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2022-01-13,['filing'],IL,102nd +Filed with Secretary,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-07,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-27,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2021-02-23,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2021-03-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-01-13,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2023-01-04,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-05-21,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-10-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-03-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-03-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-10-18,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-11-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-03-03,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2022-11-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-04-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-10-27,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-08-25,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Bradley Stephens,2021-03-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Randy E. Frese,2022-10-06,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-08-09,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-06-29,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-09-02,['filing'],IL,102nd +Filed with Secretary,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-09-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-11-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2021-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-06-29,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2022-05-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-06-06,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-08-09,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-01-13,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-09-26,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-08-29,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-10-05,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2022-07-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-05-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-09-06,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-04-12,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-09-30,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-11-01,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-04-27,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-05-13,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-04-20,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-04-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2022-06-01,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2022-08-05,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-04-13,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-03-31,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-08-25,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-07-15,['filing'],IL,102nd +Filed with Secretary,2021-03-19,['filing'],IL,102nd +Filed with Secretary,2021-03-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2021-03-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-03-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2022-08-15,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-03-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-09-21,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with Secretary,2021-03-19,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-11-09,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-06-08,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-24,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2021-03-17,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2021-09-13,['filing'],IL,102nd +Filed with Secretary,2022-03-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-05-04,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-04-28,['filing'],IL,102nd +Filed with Secretary,2022-02-07,['filing'],IL,102nd +Filed with Secretary,2022-03-04,['filing'],IL,102nd +Filed with Secretary,2022-03-04,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-03-10,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2022-03-08,['filing'],IL,102nd +Filed with Secretary,2021-10-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2022-02-23,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-03-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2022-11-30,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2022-12-07,['filing'],IL,102nd +Filed with Secretary,2022-03-24,['filing'],IL,102nd +Filed with Secretary,2022-03-16,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2022-03-16,['filing'],IL,102nd +Filed with Secretary,2022-02-10,['filing'],IL,102nd +Filed with Secretary,2022-03-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-09,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-22,['filing'],IL,102nd +Filed with Secretary,2022-03-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2022-03-23,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-03-29,['filing'],IL,102nd +Filed with Secretary,2022-03-23,['filing'],IL,102nd +Filed with Secretary,2022-01-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sandra Hamilton,2022-03-16,['filing'],IL,102nd +Filed with Secretary,2022-03-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-05-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-06-01,['filing'],IL,102nd +Filed with Secretary by Sen. Dave Syverson,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-01-26,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2021-05-21,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin McLaughlin,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2021-02-05,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-01-20,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-04-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-01-19,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-04-27,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2022-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-05-21,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-05-21,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-09,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-03-29,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with Secretary,2021-03-17,['filing'],IL,102nd +Filed with Secretary,2022-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-03-16,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-04-27,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-04-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-05-12,['filing'],IL,102nd +Filed with Secretary,2022-04-07,['filing'],IL,102nd +Filed with Secretary,2022-03-24,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-03-22,['filing'],IL,102nd +Filed with Secretary,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2022-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-01-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-03-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2022-04-07,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-03-09,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2021-11-01,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2022-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-09,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-05-03,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-03-23,['filing'],IL,102nd +Filed with Secretary,2022-02-23,['filing'],IL,102nd +Filed with Secretary,2022-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Sandra Hamilton,2023-01-09,['filing'],IL,102nd +Filed with Secretary,2022-04-05,['filing'],IL,102nd +Filed with Secretary,2022-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-05-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-05-17,['filing'],IL,102nd +Filed with Secretary,2021-05-28,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-04-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-02-22,['filing'],IL,102nd +Filed with Secretary,2022-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-02-23,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2021-03-15,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-01-13,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Sandra Hamilton,2022-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-27,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-10-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-28,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2022-11-28,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-11-30,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-11-04,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-11-28,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-11-22,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-11-28,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-11-22,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-11-28,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-05-17,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2022-11-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-05-17,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-11-28,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2022-11-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-11-22,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-04-15,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-02-23,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2021-10-27,['filing'],IL,102nd +Filed with Secretary,2021-10-27,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-01-28,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-10-14,['filing'],IL,102nd +Filed with Secretary,2022-11-22,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-01-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2022-01-25,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2022-02-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Randy E. Frese,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2021-05-10,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2021-10-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with Secretary,2021-10-27,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with Secretary,2021-10-27,['filing'],IL,102nd +Filed with Secretary,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-05-25,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-05-25,['filing'],IL,102nd +Filed with Secretary,2021-10-20,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with Secretary,2021-10-27,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2021-05-19,['filing'],IL,102nd +Filed with Secretary,2021-10-28,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-30,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-08-31,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-23,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-11-30,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-05-03,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-05-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2022-03-24,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-04-07,['filing'],IL,102nd +Filed with Secretary,2021-08-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-10-14,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-09-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-10-08,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-10,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-05-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-10-01,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-23,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-03-17,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-04-01,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-03-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-10-28,['filing'],IL,102nd +Filed with Secretary,2021-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-04-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-01-15,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-05-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-05-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2023-01-06,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-05-24,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-01-27,['filing'],IL,102nd +Filed with Secretary,2021-03-24,['filing'],IL,102nd +Filed with Secretary,2021-04-22,['filing'],IL,102nd +Filed with Secretary,2021-04-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-04-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-05,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2021-08-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-10-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-12-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-09-29,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2021-11-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-10-18,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-11-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-10-12,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-10-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-09-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-10-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-11-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-09-09,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-09-29,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-11-30,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-10-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-10-21,['filing'],IL,102nd +Filed with Secretary,2021-04-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-10-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-10-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-12-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-09-17,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-11-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-12-22,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-12-01,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-09-17,['filing'],IL,102nd +Filed with Secretary,2021-03-15,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-11-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-09-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-10-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-11-24,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-05-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Randy E. Frese,2021-10-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-12-10,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-03-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-12-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2021-12-02,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-11-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-11-16,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-05-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-12-07,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-11-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-03-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-11-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-11-12,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2022-04-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2022-01-04,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-11-05,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-11-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-12-10,['filing'],IL,102nd +Filed with Secretary,2022-11-30,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-12-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-12-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-10-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-03-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-12-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-12-06,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-03-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-12-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-12-07,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2021-11-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-11-30,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with Secretary,2022-11-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-12-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-12-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Bradley Stephens,2022-04-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-11-22,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-12-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-12-07,['filing'],IL,102nd +Filed with Secretary,2021-03-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-03-28,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-11-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-10-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-12-28,['filing'],IL,102nd +Filed with Secretary,2021-03-09,['filing'],IL,102nd +Filed with Secretary,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2022-03-24,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2021-02-23,['filing'],IL,102nd +Filed with Secretary,2021-04-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-04-05,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-04-22,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-10-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-10-27,['filing'],IL,102nd +Filed with Secretary,2022-11-30,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-05-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-08-12,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-05-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-05-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-11-29,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2021-05-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-10-01,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-02-09,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Sandra Hamilton,2022-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-02-02,['filing'],IL,102nd +Filed with Secretary,2021-03-05,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-02-23,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2021-02-09,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2021-03-09,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2022-01-20,['filing'],IL,102nd +Filed with Secretary,2021-03-10,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-10-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-03-24,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-03-10,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2021-02-23,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-10-19,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-09,['filing'],IL,102nd +Filed with Secretary,2021-03-05,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with Secretary,2021-10-20,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-10-26,['filing'],IL,102nd +Filed with Secretary,2021-03-05,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-10-25,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-03-10,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-04,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2021-05-25,['filing'],IL,102nd +Filed with Secretary,2023-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-10-26,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-05-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-20,['filing'],IL,102nd +Filed with Secretary,2021-05-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-04-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2021-05-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Bradley Stephens,2021-03-09,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-08,['filing'],IL,102nd +Filed with Secretary,2021-03-09,['filing'],IL,102nd +Filed with Secretary,2021-03-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-01-28,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-01-19,['filing'],IL,102nd +Filed with Secretary,2021-05-24,['filing'],IL,102nd +Filed with Secretary,2021-05-25,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-19,['filing'],IL,102nd +Filed with Secretary,2021-05-26,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2021-04-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-04-29,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-04-28,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-03-12,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-03-25,['filing'],IL,102nd +Filed with Secretary,2021-05-31,['filing'],IL,102nd +Filed with Secretary,2021-05-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-03-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-04-14,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2021-04-28,['filing'],IL,102nd +Filed with Secretary,2021-05-17,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-04-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-04-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-03-29,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-04-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-04-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-05-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-05-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-03-04,['filing'],IL,102nd +Filed with Secretary,2021-05-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-03-15,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-03-10,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-03-04,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-03-26,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-03-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-04-06,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-03-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-03-18,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-04-09,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-04-06,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2021-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-03-29,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-04-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-03-31,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-04-07,['filing'],IL,102nd +Filed with Secretary,2021-04-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-05-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-22,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with Secretary,2021-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-03-03,['filing'],IL,102nd +Filed with Secretary,2021-05-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-01-26,['filing'],IL,102nd +Filed with Secretary,2021-04-07,['filing'],IL,102nd +Filed with Secretary,2021-04-07,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-04-14,['filing'],IL,102nd +Filed with Secretary,2021-03-15,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2022-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-01-29,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-05-17,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-06,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-05-06,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-08,['filing'],IL,102nd +Filed with Secretary,2021-05-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-05-06,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-05-06,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2021-11-09,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-11-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-05-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-10-13,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-06,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-03-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-12-03,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2023-01-04,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Fine,2022-01-20,[],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-01-04,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2023-01-06,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2022-04-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-03-02,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-03-28,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-02-01,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-03-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Randy E. Frese,2022-03-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-12-16,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-12,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-06,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-12-20,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-03-28,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-01-06,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2022-03-23,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2022-01-27,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-22,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-01-22,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-10-27,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-12-14,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-08-02,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-04-06,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Luft,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-01-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-06-14,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-03-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-01-11,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with Secretary by Sen. Sally J. Turner,2021-10-19,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-15,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2023-01-09,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-03-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2022-01-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2022-08-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2022-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-12,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-04-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-08-31,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-05-12,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-03-29,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-04-16,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2022-03-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Bradley Stephens,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-09-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-20,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-08-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-03-01,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-04-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-04-01,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-04-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-12-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-03-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-05,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-12-03,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-11-15,['filing'],IL,102nd +Filed with Secretary,2023-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Ozinga,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-28,['filing'],IL,102nd +Filed with Secretary,2022-03-30,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2022-01-27,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-07,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2022-03-31,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-05-13,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-22,['filing'],IL,102nd +Filed with Secretary,2022-03-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2022-01-19,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-12-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Kelly,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2023-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2022-01-27,['filing'],IL,102nd +Prefiled with Clerk by Rep. Barbara Hernandez,2021-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-11-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-01-28,['filing'],IL,102nd +Filed with Secretary,2023-01-10,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-06,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-12-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2023-01-06,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-10-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-04-29,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2022-03-29,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Luft,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2022-03-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-03-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-01-28,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2023-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin McLaughlin,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2022-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-04-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2022-01-05,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-28,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-28,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-02-18,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-09-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Patricia Van Pelt,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2023-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Steve McClure,2022-01-21,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-12-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Dave Syverson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-01-22,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2022-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Sandra Hamilton,2022-02-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-01-29,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-19,['filing'],IL,102nd +Filed with Secretary,2021-08-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2022-11-22,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2021-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2022-12-01,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-10-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith P. Sommer,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Sally J. Turner,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2023-01-04,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-03-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2023-01-06,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Grant,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-02-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2022-04-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-01-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-02-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-10-15,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2022-03-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-27,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with Secretary,2022-03-28,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-12-14,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary,2021-05-10,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-10,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with Secretary,2022-11-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-08,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-02-10,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2022-04-01,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-02-07,['filing'],IL,102nd +Filed with Secretary,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Sandra Hamilton,2023-01-06,['filing'],IL,102nd +Filed with Secretary,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin McLaughlin,2022-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2022-01-06,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-12-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-01-28,['filing'],IL,102nd +Filed with Secretary,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-02-02,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2022-10-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2022-01-19,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2022-02-09,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-14,['filing'],IL,102nd +Filed with Secretary,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2022-11-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-02-09,['filing'],IL,102nd +Filed with Secretary,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-05-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2022-01-06,['filing'],IL,102nd +Filed with Secretary,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2022-01-07,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-05-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2021-12-15,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2023-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-09,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-04-07,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2021-01-28,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dave Syverson,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Randy E. Frese,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2022-05-23,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2022-03-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2021-05-14,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-02-23,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-10-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-04-20,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2022-07-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-05-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-24,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-03-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-10-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-01-28,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-04-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Bradley Stephens,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-17,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-10,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-06-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-10-13,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-11-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-03-30,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Steve McClure,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2021-02-18,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-10,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-09-21,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-06-01,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2022-02-10,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-05-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2022-01-10,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-03-02,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-03-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-08-26,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-03-03,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-05,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-11-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2021-05-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-03-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-02-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-11-30,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Grant,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-09-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-06,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-08-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Grant,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-02-03,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2022-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Luft,2022-04-06,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-05-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-08-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-11-17,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-01-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2021-10-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2022-10-31,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-09,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-11-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-12-08,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2022-03-18,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2021-10-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-06-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-08-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2022-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-07-20,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-10-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary,2022-03-02,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-01,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary,2021-05-24,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-10,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Randy E. Frese,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-03-12,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2022-09-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-01-29,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Steven M. Landek,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin McLaughlin,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-09-28,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-09-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2021-12-20,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-03-21,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-12-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-05,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-03-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-15,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-03,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-01,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-05-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-11-16,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Grant,2021-12-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2023-01-04,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-03-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2021-11-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-05-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-12-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2022-03-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2022-01-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2022-01-04,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2023-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin McLaughlin,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-01-06,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-04,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Steven M. Landek,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2022-09-26,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-08-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2021-04-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-09-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Sally J. Turner,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-02-03,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-10-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-08-31,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dave Syverson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-09-30,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-12-28,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2022-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-03-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Grant,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin McLaughlin,2022-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Sally J. Turner,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2022-03-29,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-11-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2022-01-14,['filing'],IL,102nd +Filed with Secretary,2021-04-29,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2022-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-01-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-05-12,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Steve McClure,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-07-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-01-29,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2022-10-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-02-15,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-04-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Bradley Stephens,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-04-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2021-10-15,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-03-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-01,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-03-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-03-08,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-02-04,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-05-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2022-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2022-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-07-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Ozinga,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2023-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-01-13,['filing'],IL,102nd +Filed with Secretary,2021-04-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-05-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-06-16,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-06-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2021-05-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-05-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-05-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-05-13,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with Secretary,2021-05-12,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-03-05,['filing'],IL,102nd +Filed with Secretary,2021-05-12,['filing'],IL,102nd +Filed with Secretary,2021-05-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-06-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-04-16,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-05-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-06-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-06-08,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-05-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-06-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-04-27,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-03-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-04-28,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-05-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-03-08,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith P. Sommer,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2021-05-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-05-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-06-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-04-20,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-04-04,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2022-04-04,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2021-05-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-04-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-06-07,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-04-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2022-04-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-05-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-04-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-05-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-04-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-04-27,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-06-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-05-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-16,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-04-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2022-08-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-04-29,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sally J. Turner,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-08-18,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2022-07-18,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2022-01-10,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2022-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Luft,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-03,[],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2021-03-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-08,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2022-01-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-01-22,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-01-07,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-12-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-03-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-09-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-08-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-07-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2021-05-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2022-09-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-11-15,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-03-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2021-11-29,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-27,['filing'],IL,102nd +Filed with Secretary,2022-03-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-03-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-01-13,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary,2021-02-23,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-11-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Ozinga,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-05-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-06-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-05-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2022-03-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-05-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2021-10-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2022-04-04,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-09-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-09-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-05-04,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-03,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-04-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-08-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2021-10-22,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2022-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-04-08,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-10-13,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Ozinga,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-26,['filing'],IL,102nd +Filed with Secretary,2021-03-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2022-03-16,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-03-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-12-13,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2022-01-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-10,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-05-02,['filing'],IL,102nd +Filed with Secretary,2021-05-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2022-09-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary,2021-05-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2021-02-04,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-07-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-03-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-03-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-12-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-01-25,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2022-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-05-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-03-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-03-03,[],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-17,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-01-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-02-01,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-17,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-07-07,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Grant,2021-05-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sally J. Turner,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-08-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-10-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-03-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2022-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Dave Syverson,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2022-05-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2023-01-09,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-04-05,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-23,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-07-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2022-04-04,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-04-07,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-10,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2022-09-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-03-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-03-04,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-03-10,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-02,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-11-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-03-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-01-14,['filing'],IL,102nd +Filed with Secretary,2021-03-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-27,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2022-02-15,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-11-30,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith P. Sommer,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-07-30,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-08-23,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2022-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2022-01-10,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-05-28,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-01-29,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-05-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-10-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-10-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2022-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-12-17,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2021-05-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-03-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-01-07,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-03-12,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-11-01,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Steve McClure,2022-02-10,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-19,['filing'],IL,102nd +Filed with Secretary,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-12-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-16,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2022-01-31,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-03-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-08-05,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-11-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2022-08-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2022-01-25,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Luft,2022-05-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-08-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-01-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-04-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-11-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-12-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Dave Syverson,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dave Syverson,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Steve McClure,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-05-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-12-15,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Steve McClure,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-12-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-09-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2022-12-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-03-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-03-18,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-05-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-06,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-01-29,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2022-04-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-01-20,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-03-02,['filing'],IL,102nd +Filed with Secretary,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2022-04-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-10-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2022-08-04,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2022-08-03,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Kelly,2022-10-06,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-06-15,['filing'],IL,102nd +Filed with Secretary,2022-03-07,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-06-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-04-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-05-24,['filing'],IL,102nd +Filed with Secretary,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-10-31,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-11-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2022-10-12,['filing'],IL,102nd +Filed with Secretary by Sen. Dave Syverson,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-08-25,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-03-11,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-11-07,['filing'],IL,102nd +Filed with Secretary,2022-03-04,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-04-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-05-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2022-08-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2023-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2022-05-20,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-11-28,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2022-06-09,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-10-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-10-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2022-11-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-07-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-07-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-11-28,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2022-05-11,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-06-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2022-03-09,['filing'],IL,102nd +Filed with Secretary,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-01-27,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-05-28,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2022-10-19,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-10-05,['filing'],IL,102nd +Filed with Secretary,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-06-08,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-05,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-10-03,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-09-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-05-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-09-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-05-21,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-04-20,['filing'],IL,102nd +Filed with Secretary,2022-03-16,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-08-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-04-01,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-08-04,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-23,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2022-05-27,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2022-07-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2022-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2022-11-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2022-11-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-11-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-09-20,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2022-04-26,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-04-06,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-10-13,['filing'],IL,102nd +Filed with Secretary,2022-02-24,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-08-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2022-05-19,['filing'],IL,102nd +Filed with Secretary,2022-04-08,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2022-08-11,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2022-05-04,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-06-13,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2022-07-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-20,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-10-25,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2022-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with Secretary,2021-05-04,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with Secretary,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-12-03,['filing'],IL,102nd +Filed with Secretary,2022-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-05-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2022-11-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-05-27,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2022-07-18,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-05-04,['filing'],IL,102nd +Filed with Secretary,2022-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Bradley Stephens,2022-07-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-05-19,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-07-15,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2022-07-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-05-24,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-08-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-05-05,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-04-08,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-04-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-05-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2023-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-03-07,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-01-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-01-20,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-05-26,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-03-05,['filing'],IL,102nd +Filed with Secretary,2022-11-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-04-13,['filing'],IL,102nd +Filed with Secretary,2022-11-30,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sandra Hamilton,2022-11-30,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-06,['filing'],IL,102nd +Filed with Secretary,2022-11-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-05-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2021-04-28,['filing'],IL,102nd +Filed with Secretary,2021-05-24,['filing'],IL,102nd +Filed with Secretary,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-04-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Randy E. Frese,2022-12-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-08-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-04-14,['filing'],IL,102nd +Filed with Secretary,2021-05-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-04-07,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-03-16,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-04-14,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-09-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-04-13,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +Filed with Secretary,2021-04-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-30,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-27,['filing'],IL,102nd +Filed with Secretary,2021-04-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-10-05,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-01-15,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-04-09,['filing'],IL,102nd +Filed with Secretary,2021-02-09,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-28,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-19,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-04-05,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2022-04-05,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-04-05,['filing'],IL,102nd +Filed with Secretary,2021-04-15,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-05-20,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-12-14,['filing'],IL,102nd +Filed with Secretary,2021-04-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-04-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-10,['filing'],IL,102nd +Filed with Secretary,2021-04-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-10-05,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-05-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-04-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-10-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-10-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-04-05,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-03-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-03-05,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2022-12-01,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-03-08,['filing'],IL,102nd +Filed with Secretary,2022-02-23,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-03-12,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2022-04-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-24,['filing'],IL,102nd +Filed with Secretary,2022-02-22,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2022-03-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-04-05,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-04-05,['filing'],IL,102nd +Filed with Secretary,2021-05-24,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-11-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Bradley Stephens,2022-04-05,['filing'],IL,102nd +Filed with Secretary,2021-04-07,['filing'],IL,102nd +Filed with Secretary,2021-03-09,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with Secretary,2021-04-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-05-20,['filing'],IL,102nd +Filed with Secretary,2022-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-04,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-10-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2021-04-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2021-10-26,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-01-28,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-05-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-10-18,['filing'],IL,102nd +Filed with Secretary,2022-11-30,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-05-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-01-27,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2023-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-11-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Luft,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2022-11-30,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-23,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +Filed with Secretary,2022-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-09-29,['filing'],IL,102nd +Filed with Secretary,2021-03-19,['filing'],IL,102nd +Filed with Secretary,2022-04-07,['filing'],IL,102nd +Filed with Secretary,2021-05-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2021-05-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin McLaughlin,2021-09-29,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2022-02-08,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Bradley Stephens,2022-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-03-10,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-04-15,['filing'],IL,102nd +Filed with Secretary,2021-03-05,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2022-01-03,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-10-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2022-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-05-28,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-03-05,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-04-23,['filing'],IL,102nd +Filed with Secretary,2023-01-05,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2023-01-09,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-05-28,['filing'],IL,102nd +Filed with Secretary,2021-05-04,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2021-02-23,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-05-04,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-04-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-03-23,['filing'],IL,102nd +Filed with Secretary,2022-02-22,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-05-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-03-16,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-02-22,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-12-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-01-05,['filing'],IL,102nd +Filed with Secretary,2022-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2021-08-31,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-08-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2021-03-09,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-05-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-24,['filing'],IL,102nd +Filed with Secretary,2022-04-01,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-05-29,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-04-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-05-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-05-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2022-01-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2022-03-23,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-04-15,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-01-26,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with Secretary,2021-05-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-01-18,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with Secretary,2022-03-22,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-12-16,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with Secretary,2022-03-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2021-05-04,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-03-24,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-03-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2021-03-10,['filing'],IL,102nd +Filed with Secretary,2021-10-20,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Patricia Van Pelt,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-02,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-10-20,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Bradley Stephens,2022-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2021-05-17,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2023-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-02-01,['filing'],IL,102nd +Filed with Secretary,2022-03-24,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2022-03-04,['filing'],IL,102nd +Filed with Secretary,2021-05-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2022-04-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-01-03,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-10-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2021-10-20,['filing'],IL,102nd +Filed with Secretary,2022-03-07,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2021-05-28,['filing'],IL,102nd +Filed with Secretary,2021-10-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2023-01-04,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-10-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-03-22,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-12-01,['filing'],IL,102nd +Filed with Secretary,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-03-07,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-03-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-24,['filing'],IL,102nd +Filed with Secretary,2021-10-20,['filing'],IL,102nd +Filed with Secretary,2022-03-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-05-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-10,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-09-08,['filing'],IL,102nd +Filed with Secretary,2021-03-10,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-03-23,['filing'],IL,102nd +Filed with Secretary,2022-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with Secretary,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-02,['filing'],IL,102nd +Filed with Secretary,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-05-17,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-06-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-05-30,['filing'],IL,102nd +Filed with Secretary,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2021-05-24,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2021-04-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2021-03-30,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-03-10,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-04-07,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-01-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2022-03-24,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-03-19,['filing'],IL,102nd +Filed with Secretary,2021-05-21,['filing'],IL,102nd +Filed with Secretary,2021-04-23,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-04-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-04-08,['filing'],IL,102nd +Filed with Secretary,2022-03-16,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-24,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-24,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-03-02,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-08,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2021-03-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-23,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-01-20,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-03-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2021-04-22,['filing'],IL,102nd +Filed with Secretary,2022-04-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-01-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-04-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2021-01-28,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2021-04-06,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-12-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-01-13,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-03-08,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-05-27,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-08-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-04-04,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-03-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-01-20,['filing'],IL,102nd +Filed with Secretary,2021-03-19,['filing'],IL,102nd +Filed with Secretary,2022-04-06,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-04-09,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-05,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-05-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-01-28,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-05-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-11-15,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-03-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-20,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-04-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-03-22,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2021-04-08,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-04-01,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-24,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-05-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-04-06,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-03-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2021-05-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-03-16,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2022-11-02,['filing'],IL,102nd +Filed with Secretary,2021-03-10,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Ozinga,2022-11-04,['filing'],IL,102nd +Filed with Secretary,2021-08-26,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-03-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-04-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-04-08,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-01-13,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2021-04-22,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2022-04-07,['filing'],IL,102nd +Filed with Secretary,2021-03-05,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-04-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary,2022-04-07,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-06-25,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2021-02-09,['filing'],IL,102nd +Filed with Secretary,2021-03-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-01-25,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-03-03,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2023-01-10,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-06-09,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-02-15,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-19,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Ozinga,2022-01-20,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2022-03-10,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-03-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sandra Hamilton,2022-03-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2023-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-06,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2022-03-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-03-28,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Steven M. Landek,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-22,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-08-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin McLaughlin,2022-08-22,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2022-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-03-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-01-20,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2022-01-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-18,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2022-01-21,['filing'],IL,102nd +Filed with Secretary,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-01-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-10-05,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-02-01,['filing'],IL,102nd +Prefiled with Clerk by Rep. Barbara Hernandez,2021-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2022-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-01-24,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-08-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-05,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-12-10,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-01-13,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2023-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2021-12-03,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-06,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-23,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-01-13,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-10-05,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-01-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-09-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-12-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2022-01-28,['filing'],IL,102nd +Filed with Secretary,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-28,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-08,['filing'],IL,102nd +Filed with Secretary,2023-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-03-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-04-04,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-12-20,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-06,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-03-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-03-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2023-01-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-04-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-05-25,['filing'],IL,102nd +Filed with Secretary,2022-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-11-22,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-12,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2022-04-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-03-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-28,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2022-08-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2021-09-14,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2022-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-10-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2022-02-01,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-04-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Patricia Van Pelt,2021-10-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2022-01-10,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2022-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-08-22,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-22,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-03-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-12-30,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2022-01-21,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-03-15,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2022-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2022-03-31,['filing'],IL,102nd +Filed with Secretary,2022-04-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Ozinga,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2022-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-11-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-01-28,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with Secretary,2022-03-28,['filing'],IL,102nd +Filed with Secretary,2022-04-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-03-04,['filing'],IL,102nd +Filed with Secretary,2022-03-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-06,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2022-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-02-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-11-30,['filing'],IL,102nd +Filed with Secretary,2022-11-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-12-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2022-03-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2022-03-29,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2023-01-06,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-21,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-05-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-06-14,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2022-03-03,['filing'],IL,102nd +Filed with Secretary,2022-02-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2022-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-19,['filing'],IL,102nd +Filed with Secretary,2022-02-15,['filing'],IL,102nd +Filed with Secretary,2022-02-15,['filing'],IL,102nd +Filed with Secretary,2022-03-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2022-03-29,['filing'],IL,102nd +Filed with Secretary,2022-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-05-13,['filing'],IL,102nd +Filed with Secretary,2022-03-23,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-12-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2022-01-27,['filing'],IL,102nd +Filed with Secretary,2023-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-08-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-03-01,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-11-23,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-11-22,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-14,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2021-07-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-01,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-12-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2022-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-09-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-11-12,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-11-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-03-16,['filing'],IL,102nd +Filed with Secretary by Sen. Steve McClure,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2022-08-24,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-07-08,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-03-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-11-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2023-01-06,['filing'],IL,102nd +Filed with Secretary,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2021-03-15,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2022-03-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2021-11-08,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-03-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2022-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2022-02-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2021-06-28,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-12-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-05-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-20,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2022-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-03-01,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-13,['filing'],IL,102nd +Filed with Secretary,2021-05-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-22,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-03-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2021-12-03,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-11-14,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-05-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-22,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-05-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-07-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2022-06-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-10-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-12-20,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2021-03-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-03-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2022-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-01-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-05-25,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-01,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-12-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-04-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-25,['filing'],IL,102nd +Filed with Secretary,2021-03-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-12-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith P. Sommer,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-08-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Patricia Van Pelt,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-03-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2021-11-12,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-12-30,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2022-02-24,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-03-10,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-08-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-17,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-11-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-03-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-02-17,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-08-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-08-31,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-11-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Ozinga,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-22,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2022-03-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-04-04,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-11-02,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-07-06,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2022-01-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-04-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2021-10-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-01-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-11-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Ozinga,2021-09-28,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-08-04,['filing'],IL,102nd +Filed with Secretary,2021-04-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-09-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2022-05-23,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-05-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-12-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-03-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-16,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-04-05,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-10-28,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2022-03-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Steven M. Landek,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-03-03,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-01-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sally J. Turner,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-04-05,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2022-01-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-17,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-11-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2022-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dave Syverson,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-23,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2022-02-28,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Steven M. Landek,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-05-03,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2022-01-05,['filing'],IL,102nd +Filed with Secretary,2021-04-27,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-11-22,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2021-04-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2021-04-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-12-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-02-18,['filing'],IL,102nd +Filed with Secretary,2021-04-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-04-16,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary,2021-04-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Sally J. Turner,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-04-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-01-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-01-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Doris Turner,2021-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-18,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-03-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-03-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-09-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-07-12,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Randy E. Frese,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Avery Bourne,2021-05-27,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Maura Hirschauer,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-05-13,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2021-09-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-03-01,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2022-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-12-20,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-10-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-12-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-08-05,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-12-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-06-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2022-03-03,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2021-04-29,['filing'],IL,102nd +Filed with Secretary by Sen. Steve McClure,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2021-04-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2021-04-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-01-25,['filing'],IL,102nd +Filed with Secretary,2021-04-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-03-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-09-27,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2022-03-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2021-04-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-19,['filing'],IL,102nd +Filed with Secretary,2021-04-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-03-07,['filing'],IL,102nd +Filed with Secretary,2021-04-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2021-04-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-03-31,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-03,['filing'],IL,102nd +Filed with Secretary,2021-05-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Bradley Stephens,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-10-27,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-13,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2022-09-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-16,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-01-05,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-06-23,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-12-03,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-04-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-10-01,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-12-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-10-05,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-10-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Randy E. Frese,2022-01-28,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-04-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-22,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-09-02,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-03-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-12-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Michelle Mussman,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2022-03-04,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-10,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-17,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-06-14,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-11-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-05-11,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-02-22,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-11-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-12-22,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2022-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-22,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-11-29,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-09-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-11-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-03-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-04-01,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-23,['filing'],IL,102nd +Filed with Secretary,2021-05-10,['filing'],IL,102nd +Filed with Secretary,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-04-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-03-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-02-18,['filing'],IL,102nd +Filed with Secretary,2021-05-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-04-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-04-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-05-21,['filing'],IL,102nd +Filed with Secretary,2021-05-10,['filing'],IL,102nd +Filed with Secretary,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-05-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2021-05-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Anthony DeLuca,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-04-20,['filing'],IL,102nd +Filed with Secretary,2021-05-14,['filing'],IL,102nd +Filed with Secretary by Sen. Dale Fowler,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-05-25,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2021-12-15,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Ellman,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-02-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-03-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-24,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-11-22,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-03-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-17,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2022-01-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-10-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-10-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-06-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-03-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2022-01-27,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-12-03,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-12-01,['filing'],IL,102nd +Filed with Secretary,2021-04-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-18,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2022-03-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2022-01-10,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2023-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-17,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Ozinga,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-09,['filing'],IL,102nd +Filed with Secretary,2021-04-23,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-22,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-06-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-11-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-28,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2022-08-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-03-04,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-07,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-03-23,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Janet Yang Rohr,2021-04-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dave Syverson,2022-03-10,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2022-09-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-10-13,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Eva-Dina Delgado,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2021-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Ugaste,2021-03-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-11-14,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-07,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2021-09-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-04-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2022-04-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-03-22,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. David Friess,2021-02-11,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Andrew S. Chesney,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-03-02,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2021-01-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-24,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-12-15,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Nicholas K. Smith,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-10-24,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2022-02-01,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Randy E. Frese,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2021-03-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Patricia Van Pelt,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Grant,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2021-03-12,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-01-29,['filing'],IL,102nd +Filed with Secretary,2021-05-21,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Thomas Cullerton,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary,2021-05-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin McLaughlin,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2021-02-10,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2021-02-26,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-03,['filing'],IL,102nd +Filed with Secretary,2022-04-01,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-09-07,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-13,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Steve McClure,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-03-31,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-11-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-11-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas Morrison,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-03-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-08-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lawrence Walsh, Jr.",2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Ann M. Williams,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Kimberly A. Lightford,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-05,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2022-08-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-04-06,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Darren Bailey,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary,2021-05-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2022-02-09,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Demmer,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Grant,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2021-03-16,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2021-08-31,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-09,['filing'],IL,102nd +Filed with Secretary,2021-03-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-11-14,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-10-08,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Joyce Mason,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-10-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2022-04-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Randy E. Frese,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2021-11-08,[],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-03-12,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2022-01-24,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2022-04-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2021-08-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Kathleen Willis,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Steve McClure,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Steve Stadelman,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2022-01-21,['filing'],IL,102nd +Filed with Secretary,2021-02-09,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2021-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-10,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Jason A. Barickman,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-11-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-03-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2021-10-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Sally J. Turner,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Margaret Croke,2022-01-25,['filing'],IL,102nd +Filed with Secretary,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Grant,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Linda Holmes,2021-02-09,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-11-29,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2021-03-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Bradley Stephens,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-11-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-11-10,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Paul Jacobs,2022-01-06,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2021-03-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary,2021-05-10,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-01,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Adriane Johnson,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-12-13,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-03-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Cassidy,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-08-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Swanson,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Severin,2022-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Bos,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2021-12-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sam Yingling,2021-02-02,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jawaharial Williams,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-01-29,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark L. Walker,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael J. Zalewski,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2021-04-22,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2021-10-22,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2021-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Robyn Gabel,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2022-01-13,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-17,['filing'],IL,102nd +Filed with Secretary,2021-08-31,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-03,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Martin J. Moylan,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-05,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2022-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jeff Keicher,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Sally J. Turner,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-01-13,['filing'],IL,102nd +Filed with Secretary,2022-04-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Luft,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Mike Murphy,2021-02-17,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Frances Ann Hurley,2022-07-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-01,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2021-02-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Deb Conroy,2022-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Bill Cunningham,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-17,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Daniel Didech,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Luft,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. William Davis,2021-02-18,['filing'],IL,102nd +Filed with Secretary,2022-11-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Sandra Hamilton,2022-02-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Sara Feigenholtz,2021-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2022-01-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Brad Halbrook,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Neil Anderson,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Jason Plummer,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Tony McCombie,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2021-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Karina Villa,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael T. Marron,2022-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Anne Stava-Murray,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Kelly M. Burke,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Michael Halpin,2022-01-03,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Rachelle Crowe,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-05-28,['filing'],IL,102nd +Filed with Secretary by Sen. Donald P. DeWitte,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2022-01-27,['filing'],IL,102nd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2022-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Denyse Wang Stoneback,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Lakesia Collins,2023-01-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Suzanne Ness,2021-02-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Caulkins,2022-01-24,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-11-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-04,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-10-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-08,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Ryan Spain,2022-01-13,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2021-01-29,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-09-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Meg Loughran Cappel,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2022-01-10,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Anna Moeller,2022-01-10,['filing'],IL,102nd +Filed with Secretary,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Omar Aquino,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-10-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Maurice A. West, II",2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Deanne M. Mazzochi,2022-01-12,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2021-02-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-05-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-22,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-01-21,['filing'],IL,102nd +"Filed with Secretary by Sen. Napoleon Harris, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Aaron M. Ortiz,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Robert Rita,2022-01-20,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with the Clerk by Rep. Rita Mayfield,2022-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2021-11-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Katie Stuart,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-05-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2022-01-25,['filing'],IL,102nd +Filed with Secretary by Sen. Cristina Castro,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. David A. Welter,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Barbara Hernandez,2022-01-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Natalie A. Manley,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-05-25,['filing'],IL,102nd +Filed with Secretary by Sen. John Connor,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Grant,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Steven Reick,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Carol Ammons,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Mattie Hunter,2022-11-22,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Patrick Windhorst,2021-02-08,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with Secretary by Sen. Robert Peters,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2021-10-13,['filing'],IL,102nd +Filed with Secretary by Sen. Chapin Rose,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2021-09-02,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Luft,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2022-01-12,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Elizabeth Hernandez,2021-01-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Chris Miller,2021-12-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. C.D. Davidsmeyer,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Patrick J. Joyce,2021-04-22,['filing'],IL,102nd +Filed with the Clerk by Rep. Adam Niemerg,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-02-24,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +Filed with Secretary by Sen. David Koehler,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Dave Vella,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Mark Batinick,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Theresa Mah,2022-01-27,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-05-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with the Clerk by Rep. Mary E. Flowers,2021-01-26,['filing'],IL,102nd +Filed with Secretary by Sen. Celina Villanueva,2022-01-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2022-01-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Joe Sosnowski,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Will Guzzardi,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-03-03,['filing'],IL,102nd +Filed with Secretary,2021-06-15,['filing'],IL,102nd +Filed with the Clerk by Rep. Jonathan Carroll,2021-01-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with Secretary by Sen. Christopher Belt,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2022-02-23,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2022-10-13,['filing'],IL,102nd +Filed with Secretary by Sen. Antonio Muñoz,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Cyril Nichols,2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Lance Yednock,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2021-05-21,['filing'],IL,102nd +Filed with Secretary,2021-03-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Camille Y. Lilly,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Blaine Wilhour,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Seth Lewis,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Craig Wilcox,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Charles Meier,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ann Gillespie,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. Tom Weber,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Keith R. Wheeler,2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Delia C. Ramirez,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Fred Crespo,2022-01-18,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2022-01-28,['filing'],IL,102nd +Filed with Secretary by Sen. Julie A. Morrison,2021-02-19,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Terra Costa Howard,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Brian W. Stewart,2021-02-23,['filing'],IL,102nd +Filed with Secretary by Sen. Laura M. Murphy,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Laura Fine,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jackie Haas,2022-01-20,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-26,['filing'],IL,102nd +Filed with the Clerk by Rep. LaToya Greenwood,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Melinda Bush,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2022-01-14,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-03-09,['filing'],IL,102nd +Filed with the Clerk by Rep. Sue Scherer,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Michael E. Hastings,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Mike Simmons,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Sonya M. Harper,2021-01-27,['filing'],IL,102nd +Filed with Secretary by Sen. Win Stoller,2022-01-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Kambium Buckner,2022-05-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Norine K. Hammond,2022-12-13,['filing'],IL,102nd +Filed with the Clerk by Rep. Justin Slaughter,2021-02-19,['filing'],IL,102nd +Filed with Secretary,2021-02-03,['filing'],IL,102nd +Filed with the Clerk by Rep. Dagmara Avelar,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2022-02-04,['filing'],IL,102nd +Filed with the Clerk by Rep. Bob Morgan,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. John F. Curran,2022-01-11,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-01-29,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with Secretary by Sen. Jil Tracy,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Tim Butler,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. La Shawn K. Ford,2022-08-30,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-02-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2022-01-28,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +Filed with the Clerk by Rep. Jay Hoffman,2021-05-03,['filing'],IL,102nd +Filed with Secretary by Sen. Scott M. Bennett,2022-01-21,['filing'],IL,102nd +Filed with the Clerk by Rep. Lindsey LaPointe,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-01-19,['filing'],IL,102nd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2021-02-19,['filing'],IL,102nd +Filed with the Clerk by Rep. Emanuel Chris Welch,2021-02-11,['filing'],IL,102nd +"Filed with Secretary by Sen. Emil Jones, III",2021-02-26,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2021-02-17,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2022-02-07,['filing'],IL,102nd +Filed with Secretary by Sen. Dan McConchie,2021-02-25,['filing'],IL,102nd +Filed with Secretary by Sen. Robert F. Martwick,2022-01-21,['filing'],IL,102nd +Filed with Secretary by Sen. Don Harmon,2021-02-25,['filing'],IL,102nd +Filed with the Clerk by Rep. Dan Brady,2021-02-19,['filing'],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-01-05,['filing'],IL,102nd +Filed with the Clerk by Rep. Jim Durkin,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Greg Harris,2021-02-18,['filing'],IL,102nd +Filed with the Clerk by Rep. Amy Elik,2021-02-16,['filing'],IL,102nd +Filed with the Clerk by Rep. Thomas M. Bennett,2021-02-17,['filing'],IL,102nd +Filed with the Clerk by Rep. Thaddeus Jones,2021-02-16,['filing'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. La Shawn K. Ford,2022-02-04,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-03-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. Charles Meier,2022-01-25,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-02-26,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-03-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. La Shawn K. Ford,2022-02-04,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-07-15,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-03-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-19,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Assignments,2021-08-31,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-17,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-06-15,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-24,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-09-13,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-02,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-19,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-01-18,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2022-09-29,[],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-04-03,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-02-17,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2022-01-25,[],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-22,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-16,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-10-26,['reading-1'],IL,102nd +Referred to Rules Committee,2021-09-09,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-19,[],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +Referred to Assignments,2021-03-05,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-02-18,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-04-06,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +Chief Co-Sponsor Sen. Chapin Rose,2022-01-11,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas M. Bennett,2022-01-05,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-05-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-01-04,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Assignments,2021-03-17,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-01-05,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2023-01-03,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-16,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +First Reading,2022-02-01,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-01-28,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Assignments,2021-05-19,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Patrick Windhorst,2022-03-31,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-11-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-03-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-11-08,[],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +Referred to Rules Committee,2021-09-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-19,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. Amy Grant,2022-01-25,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-08-26,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Steven Reick,2021-02-22,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-10-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-02-18,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-11-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-05-21,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-01-11,[],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. Michael Halpin,2022-01-28,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-01-13,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-04-06,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Dan Caulkins,2021-02-02,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Assignments,2021-03-03,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +First Reading,2021-04-06,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Seth Lewis,2021-02-19,[],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-03,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-08-20,[],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-03-03,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-04,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-04-06,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-05-12,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-02-03,[],IL,102nd +Referred to Assignments,2021-08-31,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2021-03-03,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-15,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-02-19,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-03-11,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-12-09,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Will Guzzardi,2021-02-19,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. William Davis,2022-02-04,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-10-26,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2022-11-22,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-02-01,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. David A. Welter,2022-01-25,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Assignments,2021-03-05,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-05-28,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-02-18,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Charles Meier,2021-05-03,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-03-11,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-03-23,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-10-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-08-24,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-05-24,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-11-29,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-04-27,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-04-27,[],IL,102nd +Co-Sponsor All Senators,2021-04-28,[],IL,102nd +Added as Co-Sponsor All Senators,2021-04-28,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-20,[],IL,102nd +Co-Sponsor All Senators,2021-04-28,[],IL,102nd +Co-Sponsor All Senators,2021-04-29,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-04-27,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-06-16,[],IL,102nd +Referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-04-29,[],IL,102nd +Co-Sponsor All Senators,2021-04-27,[],IL,102nd +Co-Sponsor All Senators,2021-04-27,[],IL,102nd +Added as Co-Sponsor All Senators,2021-04-28,[],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2022-03-23,['reading-1'],IL,102nd +Added as Co-Sponsor All Senators,2021-04-28,[],IL,102nd +Added as Co-Sponsor All Senators,2021-04-23,[],IL,102nd +Co-Sponsor All Senators,2021-04-29,[],IL,102nd +Co-Sponsor All Senators,2021-04-28,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-02-19,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-10-27,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-05-20,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-02-18,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-11-15,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-08-11,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-03-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Thomas M. Bennett,2021-05-11,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-03-05,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-03-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-05-12,['referral-committee'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2021-03-01,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2023-01-03,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-06-29,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-19,[],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-11-29,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-11-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-02-18,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-07,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-10-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-02-18,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-10-05,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-03-11,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2023-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-10-27,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2022-03-22,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Chapin Rose,2022-01-21,[],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-01,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-02-18,[],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-05-13,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-10-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-03-04,[],IL,102nd +Referred to Assignments,2021-10-26,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Avery Bourne,2021-02-19,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-06-16,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Omar Aquino,2021-02-26,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +Referred to Assignments,2022-02-16,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-04-06,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-07-08,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +First Reading,2021-10-28,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Sue Rezin,2022-01-11,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-05-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-09-29,[],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-02-18,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-04-03,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jim Durkin,2022-01-18,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-04-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-02-18,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +First Reading,2021-08-26,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-21,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2022-03-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2021-02-08,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-05-25,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-05-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-01-18,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-09-09,['referral-committee'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Omar Aquino,2021-02-26,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Read in Full a First Time,2021-01-29,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-04,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-03-10,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-01-27,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-03-10,['referral-committee'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-03-03,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Omar Aquino,2021-02-26,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-02-18,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Chief Co-Sponsor Rep. Daniel Swanson,2022-01-26,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-02-19,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-04,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-03-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-07,[],IL,102nd +Co-Sponsor All Senators,2023-01-06,[],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +Co-Sponsor All Senators,2021-05-21,[],IL,102nd +Co-Sponsor All Senators,2022-02-01,[],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-05,[],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Dan McConchie,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-04-08,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2023-01-10,[],IL,102nd +Chief Co-Sponsor Sen. Robert Peters,2022-04-08,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Referred to Assignments,2021-08-26,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-03-10,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-27,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Legislation Considered in Special Session No. 1,2021-08-31,[],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-07,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-04-05,[],IL,102nd +Co-Sponsor All Senators,2022-03-04,[],IL,102nd +Co-Sponsor All Senators,2022-03-07,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-20,[],IL,102nd +Co-Sponsor All Senators,2022-03-07,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-31,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-05-12,[],IL,102nd +Referred to Rules Committee,2022-04-03,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Referred to Rules Committee,2021-04-29,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Read in Full a First Time,2021-04-06,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Co-Sponsor All Senators,2022-03-02,[],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-07,[],IL,102nd +Co-Sponsor All Senators,2022-03-04,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2022-03-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-25,[],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2022-02-24,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2022-02-22,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-02-19,[],IL,102nd +Co-Sponsor All Senators,2022-02-22,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-06,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-02-25,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2022-02-23,[],IL,102nd +Co-Sponsor All Senators,2022-02-22,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +"Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-10-18,[],IL,102nd +Co-Sponsor All Senators,2021-03-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Referred to Rules Committee,2021-05-06,['referral-committee'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-05-04,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-04-07,[],IL,102nd +Co-Sponsor All Senators,2021-05-28,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-05,[],IL,102nd +Co-Sponsor All Senators,2023-01-09,[],IL,102nd +Co-Sponsor All Senators,2021-05-28,[],IL,102nd +Chief Co-Sponsor Sen. Mattie Hunter,2021-05-04,[],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-05-04,[],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-14,[],IL,102nd +Co-Sponsor All Senators,2022-02-22,[],IL,102nd +Co-Sponsor All Senators,2022-02-24,[],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2022-02-22,[],IL,102nd +Co-Sponsor All Senators,2022-02-22,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2023-01-06,[],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2022-02-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-19,[],IL,102nd +Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-23,[],IL,102nd +Co-Sponsor All Senators,2021-05-25,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Co-Sponsor All Senators,2021-03-10,[],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-05-04,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-20,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-20,[],IL,102nd +Referred to Assignments,2021-05-17,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2021-03-05,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2021-05-28,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-20,[],IL,102nd +Co-Sponsor All Senators,2021-10-20,[],IL,102nd +Co-Sponsor All Senators,2021-10-20,[],IL,102nd +Co-Sponsor All Senators,2021-10-20,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-10-20,[],IL,102nd +Referred to Assignments,2022-02-16,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-03-10,[],IL,102nd +Referred to Rules Committee,2021-09-09,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Co-Sponsor All Senators,2021-03-03,[],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Referred to Assignments,2021-01-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-13,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. David A. Welter,2021-05-30,[],IL,102nd +Referred to Assignments,2021-01-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-13,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2021-04-23,[],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Resolution Adopted,2021-01-13,['passage'],IL,102nd +Resolution Adopted,2021-01-13,['passage'],IL,102nd +Resolution Adopted,2021-01-13,['passage'],IL,102nd +Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Steven Reick,2021-02-22,[],IL,102nd +Co-Sponsor All Senators,2021-03-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2022-04-05,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-05-04,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-06,[],IL,102nd +Referred to Assignments,2021-03-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-11,[],IL,102nd +Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Co-Sponsor All Senators,2021-03-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-23,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-04-07,[],IL,102nd +Co-Sponsor All Senators,2022-04-08,[],IL,102nd +Co-Sponsor All Senators,2022-04-07,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-03-03,[],IL,102nd +Co-Sponsor All Senators,2022-04-04,[],IL,102nd +Moved to Suspend Rule Sen. Andy Manar; 3-6(a),2021-01-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-27,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Chief Co-Sponsor Rep. Jay Hoffman,2022-10-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2021-10-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2022-05-03,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Chief Co-Sponsor Rep. Chris Bos,2022-06-17,[],IL,102nd +Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-05-27,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-08-11,[],IL,102nd +Co-Sponsor All Senators,2021-03-03,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-27,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-05-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Thomas M. Bennett,2021-12-07,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Co-Sponsor All Senators,2021-03-05,[],IL,102nd +Referred to Rules Committee,2022-03-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +Co-Sponsor All Senators,2022-11-16,[],IL,102nd +Co-Sponsor All Senators,2021-02-09,[],IL,102nd +Co-Sponsor All Senators,2022-04-04,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-15,[],IL,102nd +Co-Sponsor All Senators,2021-04-07,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-08,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-15,[],IL,102nd +Co-Sponsor All Senators,2021-04-13,[],IL,102nd +Co-Sponsor All Senators,2021-04-14,[],IL,102nd +Co-Sponsor All Senators,2021-04-14,[],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +Moved to Suspend Rule Sen. Mattie Hunter; 3-6(a),2022-04-09,[],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-08,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-06,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-04-05,[],IL,102nd +Co-Sponsor All Senators,2021-04-15,[],IL,102nd +Co-Sponsor All Senators,2021-04-07,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-04-15,[],IL,102nd +Co-Sponsor All Senators,2021-04-15,[],IL,102nd +Co-Sponsor All Senators,2021-04-15,[],IL,102nd +Co-Sponsor All Senators,2021-03-05,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +"Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-04-05,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-22,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. C.D. Davidsmeyer,2022-04-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-06,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-06,[],IL,102nd +Co-Sponsor All Senators,2021-04-07,[],IL,102nd +Co-Sponsor All Senators,2021-04-13,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-03-03,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-04-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-27,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-30,[],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2022-11-30,[],IL,102nd +Co-Sponsor All Senators,2022-11-30,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-03-10,[],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-01-28,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-09,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2022-01-18,[],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Moved to Suspend Rule Sen. Eric Mattson; 3-6(a),2022-12-01,[],IL,102nd +Co-Sponsor All Senators,2021-02-19,[],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +Co-Sponsor All Senators,2021-02-09,[],IL,102nd +Co-Sponsor All Senators,2022-11-30,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Dan McConchie,2021-05-24,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Co-Sponsor All Senators,2021-05-24,[],IL,102nd +Co-Sponsor All Senators,2022-11-30,[],IL,102nd +Co-Sponsor All Senators,2022-11-30,[],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Co-Sponsor All Senators,2022-02-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2022-01-11,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-01-14,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-01-22,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-05-28,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-16,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-30,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-05-29,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-16,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-15,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Co-Sponsor All Senators,2021-05-29,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-30,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-17,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-04-07,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Moved to Suspend Rule Sen. Mattie Hunter; 3-6(a),2021-04-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Co-Sponsor All Senators,2022-02-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-01-04,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-21,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-21,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Chris Bos,2021-02-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-21,[],IL,102nd +Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Referred to Rules Committee,2021-04-29,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-12,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-12,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Co-Sponsor All Senators,2021-02-19,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-24,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-24,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-16,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-16,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2021-03-23,[],IL,102nd +Co-Sponsor All Senators,2021-03-25,[],IL,102nd +Co-Sponsor All Senators,2021-05-27,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-16,[],IL,102nd +Co-Sponsor All Senators,2021-03-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-18,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-24,[],IL,102nd +Co-Sponsor All Senators,2021-05-24,[],IL,102nd +Co-Sponsor All Senators,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-11,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-24,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-24,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Chief Co-Sponsor Rep. Tom Demmer,2021-02-08,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael T. Marron,2021-05-20,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2021-03-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +Co-Sponsor All Senators,2022-03-16,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Co-Sponsor All Senators,2022-01-19,[],IL,102nd +Co-Sponsor All Senators,2022-02-01,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-25,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-04,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-04,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Chief Sponsor Changed to Rep. Anna Moeller,2022-12-01,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-04,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-04,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-04,[],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-07,[],IL,102nd +Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-17,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2023-01-10,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-06-15,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-01,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-10-27,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-15,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-01-20,[],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-03-03,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-15,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-15,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-15,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-02-17,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-16,['referral-committee'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-29,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-15,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-15,[],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-08-23,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-02-18,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-03-29,[],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-02-24,[],IL,102nd +Co-Sponsor All Senators,2022-02-16,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-01,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2022-08-24,[],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-03-16,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-03-15,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-01-12,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-05,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2022-01-19,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-01,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-19,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. Ann M. Williams,2021-01-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2022-02-24,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-02,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-03,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. La Shawn K. Ford,2022-02-04,[],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-05,[],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2021-03-02,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Read in Full a First Time,2022-01-27,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-03-15,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-02-18,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-01-21,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-10,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-01-20,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-01,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-04-01,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2022-03-03,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Omar Aquino,2021-02-26,[],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-28,[],IL,102nd +First Reading,2023-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-04-01,[],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-07,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-30,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Omar Aquino,2021-02-26,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-10-12,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-09-28,[],IL,102nd +First Reading,2022-02-01,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-22,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Kambium Buckner,2022-02-14,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2022-01-28,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Tom Demmer,2021-11-30,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Rules Committee,2021-09-09,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-04,[],IL,102nd +Co-Sponsor All Senators,2022-11-22,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2022-01-26,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Read in Full a First Time,2021-03-11,[],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Barbara Hernandez,2022-03-02,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-11,[],IL,102nd +Co-Sponsor All Senators,2022-02-10,[],IL,102nd +Referred to Rules Committee,2022-03-03,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-30,[],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-12-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-03,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-02-18,[],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-08,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-04,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-04-22,[],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2021-02-18,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-02-04,[],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-22,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-22,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas M. Bennett,2021-12-07,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-04-05,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-09-09,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +Chief Sponsor Changed to Rep. Lindsey LaPointe,2021-02-11,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-01-31,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-05-10,[],IL,102nd +Co-Sponsor All Senators,2021-05-14,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-22,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Assignments,2021-01-13,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-03-09,[],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +Read in Full a First Time,2021-02-17,[],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-03,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-21,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-24,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-11-18,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-22,[],IL,102nd +Co-Sponsor All Senators,2021-05-11,[],IL,102nd +Co-Sponsor All Senators,2021-05-10,[],IL,102nd +Co-Sponsor All Senators,2021-05-13,[],IL,102nd +Co-Sponsor All Senators,2021-05-12,[],IL,102nd +Read in Full a First Time,2021-01-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-05,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-05-10,[],IL,102nd +Co-Sponsor All Senators,2021-05-10,[],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-10-28,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-07,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-03-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Assignments,2022-02-01,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. C.D. Davidsmeyer,2022-10-26,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-02-17,[],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-02-18,[],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-01-14,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-04,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-06,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-02-18,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. La Shawn K. Ford,2022-02-04,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-24,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2021-03-03,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. David A. Welter,2022-01-25,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Read in Full a First Time,2021-01-29,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-02-08,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. David Friess,2021-12-28,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-02-22,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-04,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2022-01-20,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Read in Full a First Time,2021-01-14,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-23,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-16,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-01-21,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-01-07,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-04-20,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Read in Full a First Time,2021-04-06,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2022-01-27,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-07-01,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2021-02-09,[],IL,102nd +Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-12-02,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-02-18,['reading-1'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2022-11-29,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-11-16,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2022-11-22,['referral-committee'],IL,102nd +First Reading,2021-10-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-02-18,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-12-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2023-01-05,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-03-03,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-21,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-10-20,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2023-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-10-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-03,['referral-committee'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-29,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-05-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-05-05,['referral-committee'],IL,102nd +Chief Co-Sponsor Rep. La Shawn K. Ford,2022-02-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Suzanne Ness,2021-01-19,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-19,[],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-01-12,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-14,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-04,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-12-14,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Brad Halbrook,2021-06-30,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-17,[],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. John C. D'Amico,2021-08-13,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-10-06,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-03,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-01-20,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Daniel Swanson,2021-10-25,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-10-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-01-14,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-12-16,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-03-01,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-02-01,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Chris Bos,2021-02-17,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-22,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-10-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2021-04-16,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-11-09,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Moved to Suspend Rule Sen. Linda Holmes; 3-6(a),2021-03-17,[],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2022-11-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-20,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-04-29,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-01-18,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-20,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2021-03-12,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-04-23,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-04-29,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-04-29,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-24,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-05-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-27,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-02-22,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-10-18,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-06,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-05-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-01-20,[],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-19,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-03-03,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-03-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-19,[],IL,102nd +First Reading,2021-05-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. La Shawn K. Ford,2022-02-04,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-08,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-04-27,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-04,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2022-10-26,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added as Co-Sponsor All Senators,2021-04-27,[],IL,102nd +First Reading,2022-11-29,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-09-30,[],IL,102nd +First Reading,2022-01-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-02-18,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2022-03-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Chapin Rose,2022-01-11,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Terri Bryant,2021-05-31,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2022-01-11,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-27,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Omar Aquino,2021-02-26,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Assignments,2021-05-18,['referral-committee'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-11-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-03-03,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-19,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. Lilian Jimenez,2023-01-05,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-02-19,[],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2021-03-11,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-27,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2021-03-11,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-06-15,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-02-18,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-08-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. La Shawn K. Ford,2022-02-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. William Davis,2022-02-04,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-02-18,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2021-04-20,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-02-18,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-02-08,[],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Sue Rezin,2022-01-11,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-04-06,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-10-20,[],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-26,['referral-committee'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-12-10,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +Chief Co-Sponsor Rep. La Shawn K. Ford,2022-02-04,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-09,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Omar Aquino,2021-02-26,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-02-18,[],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-04-06,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-01-12,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Ram Villivalam,2021-02-26,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-08-18,[],IL,102nd +Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-04,[],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2022-03-30,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-12-15,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-01-28,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-04-06,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2023-01-09,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-13,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-22,['referral-committee'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-10-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jim Durkin,2021-08-09,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-16,[],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +Read in Full a First Time,2021-03-09,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2021-09-17,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-02-22,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Assignments,2021-03-03,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-02-17,[],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-05-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-02-24,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-08-09,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-13,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Omar Aquino,2021-02-26,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. David A. Welter,2022-04-05,[],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Read in Full a First Time,2021-03-11,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2022-01-27,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-05,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +Co-Sponsor All Senators,2021-03-03,[],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2021-04-07,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2022-07-27,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-04,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Co-Sponsor All Senators,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Co-Sponsor All Senators,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Paul Jacobs,2022-09-09,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Referred to Assignments,2022-03-22,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-03-09,[],IL,102nd +Co-Sponsor All Senators,2021-03-10,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-11-22,[],IL,102nd +Co-Sponsor All Senators,2021-05-19,[],IL,102nd +Co-Sponsor All Senators,2021-05-04,[],IL,102nd +Co-Sponsor All Senators,2022-11-22,[],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-05,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Assignments,2023-01-10,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-21,[],IL,102nd +Referred to Assignments,2023-01-10,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-04-13,[],IL,102nd +Co-Sponsor All Senators,2021-02-25,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-05-04,[],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +Co-Sponsor All Senators,2021-05-17,[],IL,102nd +Co-Sponsor All Senators,2023-01-04,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-10,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2021-04-20,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-02-19,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-02-10,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-04,[],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-13,[],IL,102nd +Co-Sponsor All Senators,2021-04-13,[],IL,102nd +Co-Sponsor All Senators,2022-01-11,[],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-02-01,[],IL,102nd +Co-Sponsor All Senators,2021-04-07,[],IL,102nd +Co-Sponsor All Senators,2022-02-01,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-11,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-04-07,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2021-03-03,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +Co-Sponsor All Senators,2021-05-04,[],IL,102nd +Co-Sponsor All Senators,2021-02-09,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-04,[],IL,102nd +Co-Sponsor All Senators,2021-02-19,[],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-06,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Co-Sponsor All Senators,2022-11-30,[],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +Co-Sponsor All Senators,2022-11-30,[],IL,102nd +Co-Sponsor All Senators,2021-05-19,[],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-23,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-11-17,[],IL,102nd +Referred to Rules Committee,2021-05-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-21,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-03-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Co-Sponsor All Senators,2021-02-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2021-03-25,[],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-29,[],IL,102nd +Co-Sponsor All Senators,2021-02-19,[],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-03-03,[],IL,102nd +Co-Sponsor All Senators,2022-03-07,[],IL,102nd +Co-Sponsor All Senators,2021-03-03,[],IL,102nd +Co-Sponsor All Senators,2021-03-17,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-07-26,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-08-05,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Co-Sponsor All Senators,2022-02-24,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-08-12,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-30,[],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-23,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-11,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-01-19,[],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-04,[],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-10-27,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2021-10-28,[],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-23,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-23,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-23,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-02-06,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-08-10,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-08-31,[],IL,102nd +Co-Sponsor All Senators,2021-10-27,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-12,[],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +Co-Sponsor All Senators,2022-02-01,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-10-27,[],IL,102nd +Co-Sponsor All Senators,2021-10-27,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-11,[],IL,102nd +Co-Sponsor All Senators,2022-03-09,[],IL,102nd +Co-Sponsor All Senators,2021-10-27,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-11,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-12,[],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +Co-Sponsor All Senators,2021-10-27,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-01-11,[],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-02-04,[],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Moved to Suspend Rule Sen. Bill Cunningham; 3-6(a),2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Co-Sponsor All Senators,2021-08-31,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-26,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-04,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2022-01-13,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-29,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2021-08-31,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2022-03-22,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Chief Co-Sponsor Rep. Keith R. Wheeler,2022-03-10,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Referred to Rules Committee,2021-05-05,['referral-committee'],IL,102nd +Added as Co-Sponsor All Senators,2021-03-15,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-16,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Co-Sponsor All Senators,2021-08-31,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-29,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Don Harmon,2021-08-31,[],IL,102nd +Co-Sponsor All Senators,2022-03-23,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-02-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-26,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-05-28,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +Co-Sponsor All Senators,2022-02-01,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-27,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2022-03-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-10-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2022-03-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-29,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-08-31,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-07,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2021-02-16,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Co-Sponsor All Senators,2021-10-20,[],IL,102nd +Co-Sponsor All Senators,2021-10-20,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-10-20,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2022-03-17,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Co-Sponsor All Senators,2022-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-02-07,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-29,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-22,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-04,[],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-20,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-20,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-26,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-07,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Keith P. Sommer,2021-05-20,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-20,[],IL,102nd +Co-Sponsor All Senators,2021-10-20,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-01-20,[],IL,102nd +"Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-10-19,[],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2022-03-17,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-11,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-20,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-20,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2022-03-04,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Referred to Rules Committee,2021-10-20,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-03-08,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-05-29,[],IL,102nd +Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-03-22,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Assignments,2021-05-17,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-08,[],IL,102nd +Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-15,['referral-committee'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-03-15,[],IL,102nd +Referred to Assignments,2021-03-03,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-05-28,[],IL,102nd +Co-Sponsor All Senators,2022-03-23,[],IL,102nd +Co-Sponsor All Senators,2021-05-29,[],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-05-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Greg Harris,2021-09-21,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-22,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +Co-Sponsor All Senators,2022-01-11,[],IL,102nd +Co-Sponsor All Senators,2022-03-04,[],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +Chief Co-Sponsor Sen. Darren Bailey,2021-09-13,[],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-11,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-01,[],IL,102nd +Referred to Assignments,2021-03-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-02-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-25,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-07,[],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2022-01-11,[],IL,102nd +Co-Sponsor All Senators,2022-01-19,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-23,[],IL,102nd +Co-Sponsor All Senators,2022-02-22,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Co-Sponsor All Senators,2021-03-03,[],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-04-05,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2021-03-03,[],IL,102nd +Read in Full a First Time,2021-01-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-11-16,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Co-Sponsor All Senators,2022-02-07,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-02-01,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +Co-Sponsor All Senators,2021-02-09,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2022-03-16,[],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +Chief Co-Sponsor Rep. Dave Severin,2022-04-06,[],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-03-24,[],IL,102nd +Co-Sponsor All Senators,2021-02-19,[],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-03-09,[],IL,102nd +Co-Sponsor All Senators,2023-01-06,[],IL,102nd +Added as Co-Sponsor All Senators,2021-03-03,[],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-03-07,[],IL,102nd +Co-Sponsor All Senators,2022-11-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-27,[],IL,102nd +Co-Sponsor All Senators,2023-01-09,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-09,[],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +Co-Sponsor All Senators,2023-01-04,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-10-06,[],IL,102nd +Co-Sponsor All Senators,2021-04-07,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Co-Sponsor All Senators,2021-04-13,[],IL,102nd +Chief Co-Sponsor Rep. Avery Bourne,2022-04-25,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Co-Sponsor All Senators,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Co-Sponsor All Senators,2021-04-07,[],IL,102nd +Chief Co-Sponsor Rep. Dan Brady,2022-09-29,[],IL,102nd +Chief Co-Sponsor Rep. Michael T. Marron,2022-05-25,[],IL,102nd +Co-Sponsor All Senators,2021-08-31,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Co-Sponsor All Senators,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Co-Sponsor All Senators,2022-03-04,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-07-08,[],IL,102nd +Co-Sponsor All Senators,2022-04-08,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-15,[],IL,102nd +Co-Sponsor All Senators,2021-02-23,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Co-Sponsor All Senators,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Co-Sponsor All Senators,2022-03-07,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2022-07-15,[],IL,102nd +Co-Sponsor All Senators,2021-04-13,[],IL,102nd +Co-Sponsor All Senators,2021-03-10,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-03-10,[],IL,102nd +Co-Sponsor All Senators,2021-04-13,[],IL,102nd +Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-24,[],IL,102nd +Co-Sponsor All Senators,2022-03-04,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +"Added Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-02-11,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-01,[],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-01-28,[],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-02-17,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-02-01,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-12-06,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Lance Yednock,2022-09-01,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-10-27,[],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-01-12,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2021-04-14,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-04-01,[],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-29,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-05,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2022-03-14,[],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-30,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. Will Guzzardi,2021-02-17,[],IL,102nd +Referred to Assignments,2022-11-22,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-30,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-03-24,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-30,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-03,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-04-01,[],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-31,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-10-20,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-01,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-03-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Seth Lewis,2021-12-20,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-04,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. Aaron M. Ortiz,2022-01-27,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-01-28,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-04,[],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-05-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-03,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-17,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-04,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2022-01-13,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-04-06,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-01-27,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-16,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-01-26,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-25,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Bradley Stephens,2021-09-09,[],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-06-15,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-03-30,['reading-1'],IL,102nd +First Reading,2021-10-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Omar Aquino,2021-02-26,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2022-02-01,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-01-28,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. Joe Sosnowski,2022-01-25,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-03-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-12-06,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2021-03-23,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-18,[],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Chris Bos,2021-02-19,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-17,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-05-05,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-03-16,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-10-12,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2021-06-16,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2021-03-05,[],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Omar Aquino,2021-02-26,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-01-19,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2021-02-16,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. La Shawn K. Ford,2022-03-16,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-09-08,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-30,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2021-02-19,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2022-01-12,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-05,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-07-15,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-15,[],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +Referred to Assignments,2021-03-03,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Dan Caulkins,2021-02-02,[],IL,102nd +Chief Co-Sponsor Rep. Debbie Meyers-Martin,2022-09-22,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Seth Lewis,2022-04-06,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-04-01,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-05-25,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-22,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +First Reading,2021-04-06,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-01-20,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Moved to Suspend Rule Sen. Mattie Hunter; 3-6(a),2022-02-17,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-16,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2022-03-31,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-02-04,[],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-01-07,[],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-27,[],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-05-13,[],IL,102nd +Co-Sponsor All Senators,2021-05-10,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-05-12,[],IL,102nd +Co-Sponsor All Senators,2021-05-10,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-21,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-22,[],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-05-11,[],IL,102nd +Co-Sponsor All Senators,2021-05-14,[],IL,102nd +Referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +First Reading,2022-04-05,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2021-02-16,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-02-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-28,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Chris Bos,2022-09-21,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-04-04,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2021-03-11,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-09,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-03-03,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-05-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-02-18,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-02-09,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2021-02-24,[],IL,102nd +Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-04,[],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-23,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +Read in Full a First Time,2022-01-27,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-01-26,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-02-18,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-18,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-02-18,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-03-03,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-05,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +Referred to Assignments,2021-03-17,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-05-07,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-10-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2023-01-10,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-10-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-02-03,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-10-04,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-03-15,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-03-11,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Burke,2021-02-18,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-11,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Assignments,2021-08-26,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-08-23,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. David A. Welter,2022-01-25,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-01-19,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-02-17,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-06-08,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-04-06,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +First Reading,2021-04-13,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Caulkins,2021-01-21,[],IL,102nd +Referred to Assignments,2021-08-26,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-02-18,[],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-02-10,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-07-29,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-01-20,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-01-27,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-17,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-11-29,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-05-18,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-06-16,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2021-05-25,[],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-09-14,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-09-21,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +"Chief Sponsor Changed to Rep. Lawrence Walsh, Jr.",2022-01-26,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-05-13,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-04-07,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Greg Harris,2021-02-19,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-16,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-09,[],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-10-26,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-09-20,[],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Chapin Rose,2022-01-11,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-19,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-05-13,['reading-1'],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-04-06,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-11-01,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-03-24,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2022-08-11,[],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-08-09,[],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2023-01-03,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-08-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-02-17,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-10-20,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-02-22,[],IL,102nd +Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-11-30,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-04-05,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-04,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. Margaret Croke,2022-01-27,[],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2021-08-19,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-03-28,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-03,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-09-14,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. La Shawn K. Ford,2022-02-04,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-06-16,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-01-20,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-18,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Jonathan Carroll",2021-12-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Jim Durkin,2022-01-18,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-17,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Ann Gillespie,2021-02-26,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Assignments,2021-03-03,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Steve Stadelman,2022-01-18,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Chief Co-Sponsor Rep. La Shawn K. Ford,2022-02-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2023-01-04,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2022-11-30,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-01-19,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-05-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2022-01-14,[],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2022-11-30,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +Referred to Assignments,2021-05-12,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-08-10,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2021-02-18,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-03-30,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-05-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-28,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-19,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-01-13,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-08-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-04-06,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-04,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-03-29,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. Deanne M. Mazzochi,2021-02-16,[],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-06,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Referred to Assignments,2021-03-03,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-01-14,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2022-03-21,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-01-12,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2021-02-04,[],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-11-02,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2022-01-28,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-01-31,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-01-20,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Robert Rita,2021-10-01,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-01-21,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2021-10-05,[],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-09-30,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-05-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2021-05-14,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-03-28,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-18,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. La Shawn K. Ford,2022-02-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +Referred to Assignments,2022-11-30,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-03-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-24,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-06,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. La Shawn K. Ford,2022-02-04,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-10-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-07-12,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-09-21,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-08-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-05-03,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-09-09,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-02-05,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-22,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-08-25,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Avery Bourne,2022-10-20,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-05-24,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-02-04,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-03-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-22,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-02-25,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-15,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2022-02-01,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-10-01,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2022-02-24,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Michael T. Marron,2021-02-19,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-08-26,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-02-17,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. La Shawn K. Ford,2022-02-04,[],IL,102nd +Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Charles Meier,2022-10-12,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-02-01,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-04,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2022-04-09,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-10-19,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-01-05,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. Keith R. Wheeler,2021-02-16,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-02-11,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2021-02-19,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-05,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +Co-Sponsor All Senators,2022-02-01,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Co-Sponsor All Senators,2022-11-30,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Co-Sponsor All Senators,2022-11-30,[],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +Co-Sponsor All Senators,2022-11-29,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Co-Sponsor All Senators,2021-03-15,[],IL,102nd +Co-Sponsor All Senators,2022-12-01,[],IL,102nd +Co-Sponsor All Senators,2022-11-30,[],IL,102nd +Co-Sponsor All Senators,2022-11-30,[],IL,102nd +Co-Sponsor All Senators,2022-01-13,[],IL,102nd +Co-Sponsor All Senators,2022-11-30,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Co-Sponsor All Senators,2021-06-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +Co-Sponsor All Senators,2022-01-13,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-21,[],IL,102nd +Co-Sponsor All Senators,2022-01-13,[],IL,102nd +Co-Sponsor All Senators,2022-01-11,[],IL,102nd +Resolution Adopted,2022-11-30,['passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Referred to Rules Committee,2022-11-30,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-02-16,[],IL,102nd +Co-Sponsor All Senators,2021-03-15,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-16,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-26,[],IL,102nd +Chief Co-Sponsor Rep. Theresa Mah,2021-05-19,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-25,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-12,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-10-07,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Referred to Rules Committee,2021-05-06,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-12,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-25,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Chief Co-Sponsor Rep. Tim Butler,2021-09-17,[],IL,102nd +Referred to Assignments,2021-03-17,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-29,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-10-20,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-10-19,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-03-16,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-20,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-20,[],IL,102nd +Co-Sponsor All Senators,2021-10-13,[],IL,102nd +Moved to Suspend Rule Sen. Bill Cunningham; 3-6(a),2021-10-20,[],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-16,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-29,[],IL,102nd +Referred to Assignments,2021-03-03,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-29,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-08,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-05-17,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Sandra Hamilton,2022-08-16,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Chief Co-Sponsor Rep. Dave Severin,2022-09-06,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-05-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-06-01,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-23,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-28,[],IL,102nd +Co-Sponsor All Senators,2022-02-23,[],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-16,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-28,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-03-17,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-25,[],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-02-22,[],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Co-Sponsor All Senators,2022-04-05,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-05-28,[],IL,102nd +Co-Sponsor All Senators,2022-02-22,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Laura Fine,2022-02-25,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-29,[],IL,102nd +Co-Sponsor All Senators,2022-02-24,[],IL,102nd +Co-Sponsor All Senators,2022-02-23,[],IL,102nd +Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-08,[],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-04-07,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-04-07,[],IL,102nd +Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Referred to Rules Committee,2022-03-17,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-04-06,[],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-25,[],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-24,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-24,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-24,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Avery Bourne,2021-05-21,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-17,[],IL,102nd +Co-Sponsor All Senators,2022-01-19,[],IL,102nd +Co-Sponsor All Senators,2022-03-22,[],IL,102nd +Co-Sponsor All Senators,2022-03-23,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-24,[],IL,102nd +Co-Sponsor All Senators,2022-03-16,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-29,[],IL,102nd +Co-Sponsor All Senators,2022-03-22,[],IL,102nd +Referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-03-16,[],IL,102nd +Co-Sponsor All Senators,2022-03-16,[],IL,102nd +Co-Sponsor All Senators,2022-03-24,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-04,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-04,[],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-24,[],IL,102nd +Moved to Suspend Rule Sen. David Koehler; 3-6(a),2021-10-28,[],IL,102nd +Co-Sponsor All Senators,2022-03-07,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-09,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2022-02-16,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-03-04,[],IL,102nd +Co-Sponsor All Senators,2022-03-04,[],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-05,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-03-02,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Co-Sponsor All Senators,2021-03-19,[],IL,102nd +Co-Sponsor All Senators,2021-03-19,[],IL,102nd +Co-Sponsor All Senators,2021-03-19,[],IL,102nd +Co-Sponsor All Senators,2021-03-23,[],IL,102nd +Co-Sponsor All Senators,2021-03-19,[],IL,102nd +Co-Sponsor All Senators,2021-03-19,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-21,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-21,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +Co-Sponsor All Senators,2022-02-07,[],IL,102nd +First Reading,2021-02-03,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-24,[],IL,102nd +Co-Sponsor All Senators,2021-05-06,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-07,[],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-15,[],IL,102nd +Co-Sponsor All Senators,2021-04-07,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Co-Sponsor All Senators,2021-04-07,[],IL,102nd +Co-Sponsor All Senators,2021-04-07,[],IL,102nd +Co-Sponsor All Senators,2021-05-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Jim Durkin,2021-03-04,[],IL,102nd +Co-Sponsor All Senators,2021-04-07,[],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-05-05,[],IL,102nd +Co-Sponsor All Senators,2021-04-13,[],IL,102nd +Co-Sponsor All Senators,2021-04-07,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-15,[],IL,102nd +Co-Sponsor All Senators,2021-04-07,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-12,[],IL,102nd +Chief Co-Sponsor Sen. Sue Rezin,2021-05-04,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added as Co-Sponsor All Senators,2021-05-05,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-20,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-20,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-05-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-05-29,[],IL,102nd +Co-Sponsor All Senators,2021-05-31,[],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-05-26,[],IL,102nd +Referred to Assignments,2021-05-25,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-05-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2021-01-27,[],IL,102nd +Chief Co-Sponsor Rep. Deanne M. Mazzochi,2021-01-28,[],IL,102nd +Referred to Assignments,2021-03-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-04,[],IL,102nd +Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-05-26,[],IL,102nd +Co-Sponsor All Senators,2021-05-26,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-05-27,[],IL,102nd +Added as Co-Sponsor All Senators,2021-05-25,[],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2021-03-03,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2021-03-03,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +Co-Sponsor All Senators,2021-03-05,[],IL,102nd +Co-Sponsor All Senators,2021-03-03,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-03-05,[],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +Co-Sponsor All Senators,2021-02-23,[],IL,102nd +Co-Sponsor All Senators,2021-03-10,[],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +Co-Sponsor All Senators,2021-03-10,[],IL,102nd +Co-Sponsor All Senators,2021-03-09,[],IL,102nd +Co-Sponsor All Senators,2021-02-03,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +Co-Sponsor All Senators,2021-02-09,[],IL,102nd +Co-Sponsor All Senators,2021-02-23,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-02-19,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +Co-Sponsor All Senators,2021-03-05,[],IL,102nd +Co-Sponsor All Senators,2021-02-17,[],IL,102nd +Co-Sponsor All Senators,2021-01-29,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-19,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-05-30,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-28,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-23,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-29,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-23,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +Co-Sponsor All Senators,2021-04-19,[],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-11-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-12-22,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-12-21,[],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2021-02-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-11-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Referred to Assignments,2021-04-13,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-08-31,[],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-04-22,[],IL,102nd +Co-Sponsor All Senators,2021-04-22,[],IL,102nd +Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas M. Bennett,2021-01-27,[],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +Co-Sponsor All Senators,2021-10-28,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-31,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-31,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Co-Sponsor All Senators,2021-08-26,[],IL,102nd +Resolution Adopted,2021-08-31,['passage'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2021-10-28,[],IL,102nd +Co-Sponsor All Senators,2021-10-27,[],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +Referred to Assignments,2021-10-20,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2021-10-27,[],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +Co-Sponsor All Senators,2021-10-27,[],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +Co-Sponsor All Senators,2021-10-28,[],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-11-22,[],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +Referred to Assignments,2021-10-26,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-10-26,[],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Read in Full a First Time,2021-01-29,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-02-04,[],IL,102nd +Co-Sponsor All Senators,2021-10-27,[],IL,102nd +Co-Sponsor All Senators,2021-10-27,[],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Referred to Assignments,2021-03-16,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-18,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-19,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-18,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2021-12-15,[],IL,102nd +Co-Sponsor All Senators,2022-01-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-10-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-26,[],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2022-04-05,[],IL,102nd +Referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Chris Bos,2022-03-28,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-06,[],IL,102nd +Referred to Rules Committee,2022-03-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-03,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-06,[],IL,102nd +Referred to Rules Committee,2022-03-03,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-06,[],IL,102nd +Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-26,[],IL,102nd +Chief Sponsor Changed to Rep. Cyril Nichols,2021-10-21,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-26,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-04,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-22,[],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-11,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-04,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-10-26,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-01,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Moved to Suspend Rule Sen. Bill Cunningham; 3-6(a),2022-11-16,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-24,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +Co-Sponsor All Senators,2022-02-01,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Tom Demmer,2021-02-19,[],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +Referred to Assignments,2021-03-25,['referral-committee'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-01-05,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-28,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Avery Bourne,2022-01-27,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-02-18,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-02-18,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2023-01-10,['referral-committee'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2022-11-15,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-02,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-02-01,[],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +Co-Sponsor All Senators,2022-01-13,[],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +Co-Sponsor All Senators,2022-01-19,[],IL,102nd +Co-Sponsor All Senators,2022-02-01,[],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +Co-Sponsor All Senators,2022-01-13,[],IL,102nd +Co-Sponsor All Senators,2022-01-11,[],IL,102nd +Co-Sponsor All Senators,2022-01-19,[],IL,102nd +Co-Sponsor All Senators,2022-01-26,[],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +Co-Sponsor All Senators,2022-02-01,[],IL,102nd +Co-Sponsor All Senators,2022-02-10,[],IL,102nd +Co-Sponsor All Senators,2022-01-11,[],IL,102nd +Co-Sponsor All Senators,2022-01-13,[],IL,102nd +Co-Sponsor All Senators,2022-02-07,[],IL,102nd +Co-Sponsor All Senators,2022-01-19,[],IL,102nd +Co-Sponsor All Senators,2022-01-11,[],IL,102nd +Co-Sponsor All Senators,2022-02-07,[],IL,102nd +Co-Sponsor All Senators,2022-02-01,[],IL,102nd +Co-Sponsor All Senators,2022-02-07,[],IL,102nd +Co-Sponsor All Senators,2022-01-11,[],IL,102nd +Co-Sponsor All Senators,2022-02-07,[],IL,102nd +Co-Sponsor All Senators,2022-01-13,[],IL,102nd +Co-Sponsor All Senators,2022-01-13,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-11-22,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2022-01-20,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-05-19,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2021-08-26,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-01-03,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2022-01-07,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Thaddeus Jones,2021-02-09,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2022-04-06,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-08-09,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-10-27,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Omar Aquino,2021-02-26,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-03-28,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-02-15,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-13,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-12-17,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-29,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-29,[],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-29,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-01-20,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Greg Harris,2021-01-25,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-10-13,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-23,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Rita Mayfield,2022-02-04,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-06,[],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2022-01-28,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-01-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-02,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-04-01,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Fred Crespo,2022-02-14,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-01-20,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-01-31,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2022-04-03,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-15,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-12-01,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Referred to Assignments,2021-08-31,['referral-committee'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-16,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-02-18,[],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2021-01-27,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2022-11-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-05-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-09,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-03,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2021-05-13,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-24,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-10,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-04-13,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2022-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-04,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jim Durkin,2022-03-24,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-30,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-08-31,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-01-12,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Co-Sponsor All Senators,2023-01-03,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-01-26,[],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-02,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-19,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-12-06,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-03,[],IL,102nd +Co-Sponsor All Senators,2023-01-04,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-01-25,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-28,[],IL,102nd +Co-Sponsor All Senators,2022-11-22,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-30,[],IL,102nd +Co-Sponsor All Senators,2022-03-30,[],IL,102nd +Co-Sponsor All Senators,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-17,[],IL,102nd +Co-Sponsor All Senators,2023-01-04,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2021-12-22,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-01-21,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-03-30,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-01,[],IL,102nd +First Reading,2022-02-07,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-10-26,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-03-01,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-08,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-15,['referral-committee'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-01-09,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-01-26,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-06-16,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-13,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-20,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-06-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2021-05-27,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-21,[],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-01-14,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-13,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-27,[],IL,102nd +Co-Sponsor All Senators,2021-04-28,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-28,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-05-17,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-06-16,[],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-06-16,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-06-16,[],IL,102nd +Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-06-16,[],IL,102nd +Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-02-19,[],IL,102nd +First Reading,2022-01-14,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-21,[],IL,102nd +Read in Full a First Time,2021-03-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-05,[],IL,102nd +Co-Sponsor All Senators,2021-04-27,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-05,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-20,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-05,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-14,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2021-06-16,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-06-16,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-06-16,[],IL,102nd +Added as Co-Sponsor All Senators,2021-04-27,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-06-16,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-06-16,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Co-Sponsor All Senators,2021-05-12,[],IL,102nd +Added as Co-Sponsor All Senators,2021-05-12,[],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-06-16,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-06-16,[],IL,102nd +Referred to Rules Committee,2022-03-02,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-19,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +Referred to Rules Committee,2022-03-08,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-06-16,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +First Reading,2021-02-25,['reading-1'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-27,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-06-16,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-13,[],IL,102nd +Read in Full a First Time,2021-02-22,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-13,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Co-Sponsor All Senators,2022-01-18,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-20,['passage'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-21,['passage'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-13,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-28,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-05-28,[],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-05-28,[],IL,102nd +Resolution Adopted,2021-04-21,['passage'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-03,[],IL,102nd +Assigned to Veterans' Affairs Committee,2021-05-24,['referral-committee'],IL,102nd +Recommends Be Adopted Rules Committee; 004-000-000,2022-03-08,['committee-passage-favorable'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-13,['passage'],IL,102nd +Resolution Adopted,2021-05-13,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-13,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-27,[],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-27,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-27,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2021-06-16,['passage'],IL,102nd +Resolution Adopted,2021-06-16,['passage'],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +Resolution Adopted,2021-06-16,['passage'],IL,102nd +Resolution Adopted,2021-06-16,['passage'],IL,102nd +Resolution Adopted,2021-06-16,['passage'],IL,102nd +Resolution Adopted,2021-06-16,['passage'],IL,102nd +Recommends Be Adopted Rules Committee; 003-002-000,2021-06-16,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-06-16,['passage'],IL,102nd +Resolution Adopted,2021-06-16,['passage'],IL,102nd +Resolution Adopted,2021-06-16,['passage'],IL,102nd +Resolution Adopted,2021-06-16,['passage'],IL,102nd +Approved for Consideration Assignments,2021-05-29,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-06-16,[],IL,102nd +Resolution Adopted,2021-06-16,['passage'],IL,102nd +Resolution Adopted,2021-06-16,['passage'],IL,102nd +Resolution Adopted,2021-06-16,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-28,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-23,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-20,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-07,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-07,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-06,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-07,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-05-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-04-13,[],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-15,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Assigned to Health,2022-04-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-04-20,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-04-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-05,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-07,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-04,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-04-20,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Co-Sponsor All Senators,2021-05-04,[],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-04-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-20,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-20,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Assigned to Health Care Licenses Committee,2022-03-31,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-05-20,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-04-20,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-04-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-04-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Read in Full a First Time,2021-03-17,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-05-12,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2021-01-27,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-04-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Assigned to State Government,2021-04-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2021-05-17,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-14,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-27,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-03,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2021-10-27,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Consideration Postponed,2021-06-15,[],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-23,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-02-03,[],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-09,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-19,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2022-03-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-02-24,[],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-19,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Mark L. Walker,2022-04-05,[],IL,102nd +Resolution Adopted,2021-05-19,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-23,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-23,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-05-30,[],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Resolution Adopted,2021-04-23,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-29,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-30,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-23,['passage'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-02-22,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-03-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-28,[],IL,102nd +Assigned to Commerce,2021-04-20,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-13,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-11-22,[],IL,102nd +Assigned to Veterans' Affairs Committee,2022-03-28,['referral-committee'],IL,102nd +Assigned to State Government,2021-10-13,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-30,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Assigned to Human Services Committee,2022-03-15,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mark L. Walker,2022-01-04,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-30,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-20,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-12-21,[],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Assigned to Human Services Committee,2022-03-15,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-10,[],IL,102nd +Assigned to Veterans' Affairs Committee,2022-03-29,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-10-26,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-26,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-10-26,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-05-29,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-10-26,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-10-26,['passage'],IL,102nd +Chief Co-Sponsor Rep. Mark Luft,2021-09-17,[],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-14,[],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-10-21,[],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-10-26,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Assigned to State Government,2021-04-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-22,['referral-committee'],IL,102nd +Assigned to State Government,2021-04-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2021-04-20,['referral-committee'],IL,102nd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-22,['passage'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-25,['passage'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-04,['passage'],IL,102nd +Resolution Adopted,2021-05-12,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-28,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-22,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2021-04-12,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-25,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-04,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-04,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Arrive in Senate,2021-09-01,['introduction'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-10-26,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2022-01-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-09,['passage'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-14,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-27,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-20,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2021-10-25,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-26,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-02,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-26,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-30,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-28,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Prevailed to Suspend Rule 3-6(a),2022-11-16,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-05-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Recommends Be Adopted Rules Committee; 003-002-000,2021-10-28,['committee-passage-favorable'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to State Government,2021-10-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-10-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-02-08,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-30,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-20,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-01-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-05-24,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-16,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Resolution Adopted,2021-05-18,['passage'],IL,102nd +Added Co-Sponsor All Other Members of the House,2022-11-29,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-18,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Added Co-Sponsor All Other Members of the House,2022-11-30,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Recommends Be Adopted Rules Committee; 004-000-000,2022-11-30,['committee-passage-favorable'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Added Co-Sponsor All Other Members of the House,2022-11-30,[],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-11,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-02-25,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-05-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-28,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-30,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-24,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-23,['referral-committee'],IL,102nd +Assigned to State Government,2022-03-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-05-12,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2021-04-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-07,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-01-10,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-22,['referral-committee'],IL,102nd +Assigned to Education,2022-03-24,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-07,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2022-02-08,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-04-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Assigned to Tourism Committee,2022-03-28,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-28,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to State Government,2022-03-28,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-05-24,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-18,['passage'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-05-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-22,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Assigned to Environment and Conservation,2022-02-08,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-25,['passage'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-02-22,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-24,['passage'],IL,102nd +Resolution Adopted,2021-05-24,['passage'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-13,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +Resolution Adopted,2021-04-23,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-01-05,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2022-01-06,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-15,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-24,['passage'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-01,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-24,[],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-22,['referral-committee'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-03-17,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-23,['referral-committee'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-03-29,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Assigned to Health,2022-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-24,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-04,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-04,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-02-25,[],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-24,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Prevailed to Suspend Rule 3-6(a),2021-10-28,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2022-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2021-05-12,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-02,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-23,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-04-20,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-12,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-05-05,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2022-05-13,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-06,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-19,[],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-01-26,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-06-08,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-08-09,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +Referred to Assignments,2023-01-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-05-24,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-01-21,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-22,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-08-23,[],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-02-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Fine,2021-08-26,[],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-30,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-04-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-15,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Health,2022-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-05,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-04-06,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Chief Co-Sponsor Sen. Craig Wilcox,2022-01-18,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-01,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-07,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-02-19,[],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Ryan Spain,2022-01-18,[],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-03-16,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-03-11,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2021-08-19,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-03,[],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-10-20,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-17,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-10-26,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-05-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-09-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-09-21,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-25,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-07,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-06-16,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Theresa Mah,2021-01-27,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-04-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Chief Co-Sponsor Sen. Sara Feigenholtz,2021-02-26,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-16,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2021-07-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-02-10,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Chief Co-Sponsor Changed to Rep. Chris Bos,2022-09-21,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-03,[],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-06,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Assigned to Commerce,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-30,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2022-08-15,[],IL,102nd +Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-10-01,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-10-05,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-09-21,[],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-02-11,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-08-20,[],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-03-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-30,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2023-01-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-30,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-02-19,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jackie Haas,2022-01-05,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-10-19,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-04-09,[],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-08-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-02-19,[],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2022-03-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-08-25,[],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Read in Full a First Time,2021-05-04,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-08-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-01,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-04-20,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-02-24,[],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-02-06,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-08,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-05-14,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2021-09-30,[],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-01-21,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2022-03-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-01-20,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-01,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2022-03-22,['reading-1'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-04-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-01,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-11-16,[],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-08-30,[],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-28,['passage'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-05-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-10-04,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-01,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-02-08,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-03-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-01-14,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2022-01-13,[],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-14,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-13,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-16,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to State Government Administration Committee,2022-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-01-18,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-11,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-04-21,[],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-05-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-30,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-30,['passage'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2023-01-10,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-30,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-29,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-04-14,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-25,[],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2021-04-21,[],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-01,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-04,['passage'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-05-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-12-22,[],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-11,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Resolution Adopted,2022-04-03,['passage'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Greg Harris,2021-03-01,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-04-05,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-01,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-04-20,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Ryan Spain,2023-01-10,[],IL,102nd +Resolution Adopted,2022-03-29,['passage'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Moved to Suspend Rule Sen. Don Harmon; 3-6(a),2023-01-10,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-03-04,[],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-01-31,[],IL,102nd +Resolution Adopted,2022-03-28,['passage'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-12,[],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-04,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-02-19,[],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-29,['passage'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-29,['passage'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-01-25,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-04-04,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-03-22,['referral-committee'],IL,102nd +"Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-02-26,[],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2022-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-02,['passage'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-08-09,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-04-06,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-08,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2022-12-01,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Joe Sosnowski,2023-01-10,[],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-08-31,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-04,[],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-16,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-13,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-12-07,[],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-01-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2021-01-27,[],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Filed with Secretary by Sen. Ram Villivalam,2022-01-21,['filing'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-07,['referral-committee'],IL,102nd +Assigned to Health,2022-03-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Assigned to Health Care Licenses Committee,2022-03-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-02,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-28,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-22,['passage'],IL,102nd +Resolution Adopted,2022-02-22,['passage'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-03,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-12,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-22,['passage'],IL,102nd +Resolution Adopted,2022-03-22,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-11-19,[],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-24,['passage'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-21,['passage'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-09,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-01-13,[],IL,102nd +Resolution Adopted,2021-10-27,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Prevailed to Suspend Rule,2021-01-13,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-04,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2022-03-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2021-03-03,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-06,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-24,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-23,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-04-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-11,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-05-05,[],IL,102nd +Assigned to State Government,2022-03-28,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-04,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-04-05,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-30,['passage'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-02-24,[],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-04-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-02-05,[],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-04-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-04-05,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-02-24,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-01,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-20,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2022-03-09,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-12-30,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-23,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to Education,2021-05-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-25,['passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-02-10,['amendment-introduction'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-02-10,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +"Assigned to Museums, Arts, & Cultural Enhancements Committee",2021-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2023-01-10,[],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Resolution Adopted,2021-05-18,['passage'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-23,['referral-committee'],IL,102nd +Assigned to State Government,2021-04-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-01-13,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-01-13,[],IL,102nd +Approved for Consideration Assignments,2021-01-13,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to Health,2021-05-29,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-31,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Approved for Consideration Assignments,2021-01-13,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-20,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-24,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-04-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-24,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-04,['passage'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Prevailed to Suspend Rule 3-6(a),2021-10-20,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-20,['passage'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-20,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-04-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-20,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-28,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-05-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-04,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Assigned to Executive,2021-05-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-04-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-04,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-04-14,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-04,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-04,['passage'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-04,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-07,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Resolution Adopted,2021-04-16,['passage'],IL,102nd +Resolution Adopted,2021-05-19,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-25,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-11-14,[],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to State Government,2022-04-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-30,['passage'],IL,102nd +Resolution Adopted,2021-05-19,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-01-06,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Financial Institutions Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-08-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-22,['referral-committee'],IL,102nd +Chief Co-Sponsor Rep. William Davis,2021-02-08,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-03-17,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-24,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-14,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Environment and Conservation,2021-04-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Seth Lewis,2022-03-24,[],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-04,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-04,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-28,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-09,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-27,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-04,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-28,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-07,['passage'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-05,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Prevailed to Suspend Rule 3-6(a),2021-04-15,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-30,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-30,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-05-20,[],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-09,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-27,['passage'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-22,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Read in Full a First Time,2021-01-29,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-05-12,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-13,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-06,[],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2023-01-10,[],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-28,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-09,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-07,['passage'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-30,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2023-01-06,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Resolution Adopted,2021-01-14,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-06,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-07,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-06,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Greg Harris,2022-01-18,[],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-03,['referral-committee'],IL,102nd +Prevailed to Suspend Rule 3-6(a),2022-12-01,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-19,['referral-committee'],IL,102nd +Prevailed to Suspend Rule 3-6(a),2022-04-09,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-05-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-30,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-13,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2021-03-04,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-07,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-05-24,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-04,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-03-08,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-30,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-24,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-30,['referral-committee'],IL,102nd +Adopted Both Houses,2021-09-29,[],IL,102nd +Assigned to State Government Administration Committee,2021-05-24,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-05-05,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-06,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-02,[],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-04-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-05,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-12,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-09,['referral-committee'],IL,102nd +Assigned to Health Care Availability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-04-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-04,['referral-committee'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-04-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-11,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-27,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-08-11,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Resolution Adopted,2021-05-12,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-19,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2022-04-08,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-24,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-24,['passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to State Government,2021-05-18,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Resolution Adopted,2021-10-26,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Chief Co-Sponsor Rep. Martin McLaughlin,2022-06-17,[],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-24,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Assigned to State Government,2021-04-13,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2022-03-09,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Added Co-Sponsor All Other Members of the House,2022-11-29,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Moved to Suspend Rule Sen. Dan McConchie; 3-6(a),2023-01-10,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-04,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-05-28,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +"Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-10-06,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Assigned to Education,2022-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-27,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-01,['referral-committee'],IL,102nd +First Reading,2022-03-31,['reading-1'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Assigned to International Trade & Commerce Committee,2022-04-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2023-01-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Jonathan Carroll,2021-02-19,[],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-05-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-08-24,[],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-05,[],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-10-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Charles Meier,2022-01-14,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-06,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-01,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-10-03,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-17,[],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-08-31,[],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-02-17,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-06-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-03-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-09-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-03-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-06,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-03-10,[],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-02-18,[],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-01-19,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-02,[],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-02-08,[],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-07-15,[],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-12-06,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-03-07,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-12-15,[],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Chief Co-Sponsor Rep. Chris Bos,2021-02-19,[],IL,102nd +Assigned to Higher Education,2021-05-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Chief Co-Sponsor Rep. Thomas M. Bennett,2021-02-02,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-01-31,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-04,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-04-05,[],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-11-08,[],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-04-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-06-29,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-02-24,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Read in Full a First Time,2021-03-17,[],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-04-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-04-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-05-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Assigned to Health,2022-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-06-29,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-03-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-06-16,['passage'],IL,102nd +Referred to Rules Committee,2022-03-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-10-05,[],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Chief Co-Sponsor Sen. Dale Fowler,2022-01-21,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-02-03,[],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +"Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-02-26,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2021-02-08,[],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +"Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-02-26,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-29,['referral-committee'],IL,102nd +Assigned to Human Rights,2022-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2021-03-09,[],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-03-10,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-01,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-05-27,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-11-15,[],IL,102nd +Referred to Rules Committee,2022-11-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-11-14,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2023-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-05-13,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2022-01-18,[],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-29,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-02-03,[],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +"Chief Sponsor Changed to Sen. Emil Jones, III",2021-10-27,[],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-03-10,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-02-03,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-04-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-22,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-07-08,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Chief Co-Sponsor Rep. Norine K. Hammond,2021-02-19,[],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Resolution Adopted,2021-04-20,['passage'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-08-25,[],IL,102nd +Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2021-05-20,[],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-04-03,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-05-12,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Chris Miller,2021-06-16,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2023-01-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-28,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-08-11,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-05-24,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +"Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-02-26,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-10-12,[],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-04-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-01,['passage'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-01,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-03-03,[],IL,102nd +Assigned to State Government,2021-04-20,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-11-30,[],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-06-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Robert Rita,2021-09-09,[],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +Assigned to State Government Administration Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-29,['passage'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Ryan Spain,2023-01-10,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-03-01,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2022-03-22,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-28,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-03,[],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2023-01-10,[],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2023-01-10,[],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-04,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +"Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-02-26,[],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2021-05-20,[],IL,102nd +Assigned to State Government Administration Committee,2022-03-01,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-16,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-30,[],IL,102nd +Approved for Consideration Assignments,2022-03-28,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-15,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-01-31,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-30,['passage'],IL,102nd +Assigned to Executive Committee,2022-03-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-03-01,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-03-01,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-30,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-07,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-28,['referral-committee'],IL,102nd +Assigned to State Government,2022-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-03,[],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-01,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-04,[],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-14,[],IL,102nd +Assigned to State Government Administration Committee,2022-03-15,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-05,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-04-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-05,[],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-22,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-22,[],IL,102nd +Chief Sponsor Changed to Rep. Dagmara Avelar,2021-03-11,[],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-03,['passage'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Recommends Be Adopted Rules Committee; 003-002-000,2022-04-04,['committee-passage-favorable'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-04,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-01-31,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-10-12,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2023-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-08-24,[],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-02-15,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-14,['referral-committee'],IL,102nd +"Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-02-26,[],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-01,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-13,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-17,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-12,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-27,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-12,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Resolution Adopted,2021-04-21,['passage'],IL,102nd +Assigned to Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-22,['passage'],IL,102nd +Assigned to Higher Education Committee,2022-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-28,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Assigned to State Government,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-11,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-12,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-11,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-11,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +"Assigned to Small Business,Tech Innovation, and Entrepreneurship Committee",2022-03-01,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-05,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-01-27,[],IL,102nd +Added as Co-Sponsor Sen. Don Harmon,2022-03-16,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-08,['referral-committee'],IL,102nd +Assigned to Higher Education,2022-03-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2021-10-26,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Assigned to Higher Education Committee,2021-05-12,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-26,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-26,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-09-27,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-29,['introduction'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Assigned to Executive,2022-04-06,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-31,['referral-committee'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-31,['referral-committee'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-08-31,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas Morrison,2021-02-10,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-09,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-17,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-02-17,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-01-20,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-11,['passage'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-08,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-23,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-15,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Sam Yingling,2022-03-30,[],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Assigned to Executive,2022-03-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-07,['passage'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-13,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-03-16,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-13,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-13,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-04,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-02,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-04,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-04,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-23,['passage'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-05-12,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-25,[],IL,102nd +Resolution Adopted,2021-05-29,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-08-12,[],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-08-10,[],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Arrive in Senate,2022-03-10,['introduction'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2022-03-29,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. David Friess,2021-08-31,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-03-01,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-15,[],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Assigned to State Government Administration Committee,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-01,[],IL,102nd +Resolution Adopted,2022-03-29,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-15,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-01,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-28,[],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Assigned to Human Services Committee,2021-05-12,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Mike Murphy,2021-05-29,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Assigned to State Government,2021-10-19,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-02-07,[],IL,102nd +Resolution Adopted,2022-03-29,['passage'],IL,102nd +Resolution Adopted,2022-03-29,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-20,['passage'],IL,102nd +Resolution Adopted,2021-05-20,['passage'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-04-20,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-20,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-20,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-20,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Recommends Be Adopted Rules Committee; 004-000-000,2021-10-20,['committee-passage-favorable'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-04-20,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-05-24,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-08,['passage'],IL,102nd +Assigned to State Government,2021-05-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Arrive in Senate,2021-06-01,['introduction'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Assigned to Education,2021-05-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-28,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-24,['referral-committee'],IL,102nd +Assigned to State Government,2021-05-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-22,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-05-29,[],IL,102nd +Approved for Consideration Assignments,2022-03-28,[],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-11,['referral-committee'],IL,102nd +Co-Sponsor All Senators,2021-09-13,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-11,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-11,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-04-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-23,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-31,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Win Stoller,2022-03-10,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-03,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-11-22,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-18,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-07,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-09,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-02-08,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-01,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Randy E. Frese,2023-01-10,[],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-22,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Resolution Adopted,2021-04-13,['passage'],IL,102nd +Assigned to State Government,2021-10-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-09,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-24,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-06,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-09,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-27,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-04,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-10-06,[],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Chief Co-Sponsor Rep. Norine K. Hammond,2022-04-25,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-07-08,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2022-07-15,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-03,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2022-02-24,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-04,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-09,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-10,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-03-16,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-22,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Approved for Consideration Assignments,2023-01-10,[],IL,102nd +Approved for Consideration Assignments,2023-01-10,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-25,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-05-12,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-06,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2023-01-04,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michael T. Marron,2023-01-10,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-04,['passage'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-02-03,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-02-03,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-10,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-13,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-04,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-11,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-11,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-01-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-12-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-30,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-30,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-29,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-06-15,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-11-17,[],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Assigned to Human Services Committee,2021-05-24,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-09,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-03,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-03-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-22,['referral-committee'],IL,102nd +Arrive in Senate,2022-02-25,['introduction'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2021-04-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-30,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-23,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Assigned to Health Care Availability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-11,['passage'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-17,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-19,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-26,['passage'],IL,102nd +Resolution Adopted,2021-05-19,['passage'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-10-27,[],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. David Friess,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-10,[],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-23,['passage'],IL,102nd +Resolution Adopted,2021-04-23,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-23,['passage'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-05-11,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-12,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-10-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-01,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-11,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Greg Harris,2021-02-10,[],IL,102nd +Resolution Adopted,2021-05-11,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-04-20,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-04-20,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-12,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-27,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-04-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-10-26,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-04-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-02-08,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Prevailed to Suspend Rule 3-6(a),2022-01-05,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Assigned to Agriculture,2021-04-20,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Recommends Be Adopted Rules Committee; 003-002-000,2022-01-04,['committee-passage-favorable'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-05,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-12-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Assigned to Education,2022-02-08,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-03-15,[],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-24,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-22,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-02-16,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-23,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-26,['passage'],IL,102nd +Resolution Adopted,2021-10-27,['passage'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-10-26,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2023-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2022-02-01,['referral-committee'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-11-16,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2022-03-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Adam Niemerg,2021-06-30,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-01-18,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-17,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2022-11-30,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-10-26,[],IL,102nd +Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-02-16,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-03-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-09-03,[],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-19,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Transportation,2022-03-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Filed with Secretary by Sen. Sally J. Turner,2022-03-04,['filing'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-10-06,[],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-03-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Assigned to Health,2022-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-04-20,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-07,[],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-08,[],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Recommends Be Adopted Rules Committee; 004-000-000,2022-03-29,['committee-passage-favorable'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-01-07,[],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-01-18,[],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-03,[],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-06,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-05-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Carol Ammons,2021-05-21,[],IL,102nd +Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2021-05-28,[],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-03-03,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-07-09,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2022-04-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Sam Yingling,2021-02-09,[],IL,102nd +Referred to Assignments,2023-01-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2021-01-20,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-12-02,[],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Ellman,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-04-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-01-12,[],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-02-16,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-01-18,[],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-06,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-29,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-27,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-08,['passage'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-08-31,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-21,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-13,['passage'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-01-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Joe Sosnowski,2021-04-16,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Prevailed to Suspend Rule 3-6(a),2021-03-17,[],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-20,['passage'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-27,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-29,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-20,['passage'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-29,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-24,['passage'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-05-12,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-04-27,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-10-20,[],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-12-21,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-03-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-12-01,[],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-06-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2021-03-17,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-03-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-05-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-02-26,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-08-09,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-05-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-01-05,[],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-03-17,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-22,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-01-12,[],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-08-09,[],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-10-18,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2021-02-19,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-05,[],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2022-01-28,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-01-09,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-04-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2023-01-10,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-06,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +"Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-02-26,[],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-02,[],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-27,['passage'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +"Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-02-26,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tom Weber,2021-11-16,[],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-28,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2021-03-11,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-07-15,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Paul Jacobs,2022-03-14,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +First Reading,2021-03-09,['reading-1'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-01-12,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-16,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2023-01-10,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +"Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-02-26,[],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Read in Full a First Time,2021-01-29,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Resolution Adopted,2022-03-30,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2022-03-30,[],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-15,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor All Other Members of the House,2022-04-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-02-03,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-03-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-18,['passage'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-10-12,[],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +"Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-02-26,[],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-17,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-03-31,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-05-30,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Recommends Be Adopted Rules Committee; 003-001-000,2022-03-31,['committee-passage-favorable'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-29,['referral-committee'],IL,102nd +Recommends Be Adopted Rules Committee; 003-001-000,2022-03-31,['committee-passage-favorable'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-30,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-01,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-31,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-04,['passage'],IL,102nd +Assigned to Human Services Committee,2022-03-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-03-01,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Chief Co-Sponsor Rep. Thomas M. Bennett,2021-02-02,[],IL,102nd +Assigned to Tourism Committee,2022-03-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-06,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-01-18,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2021-05-05,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-10-21,[],IL,102nd +Referred to Assignments,2022-01-13,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-23,[],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Resolution Adopted,2022-03-30,['passage'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-04-14,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-01-07,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Assigned to Higher Education,2021-05-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Chief Co-Sponsor Rep. Katie Stuart,2022-09-01,[],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-05-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-03-24,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-02-17,[],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-03,['passage'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2022-01-13,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-03-01,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-01-18,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-06-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. John C. D'Amico,2021-09-09,[],IL,102nd +Resolution Adopted,2022-03-25,['passage'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-04-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Ryan Spain,2021-02-11,[],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +Recommends Be Adopted Rules Committee; 003-002-000,2022-04-04,['committee-passage-favorable'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2022-09-16,[],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Prevailed to Suspend Rule 3-6(a),2022-02-17,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-08-23,[],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Adam Niemerg,2021-01-28,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-01-19,[],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +First Reading,2022-02-09,['reading-1'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-10-28,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-02-19,[],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-03,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-01-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-05-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Transportation,2022-02-01,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-02-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Insurance,2021-04-07,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-01-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Steven Reick,2021-02-18,[],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Will Guzzardi,2021-02-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-01-07,[],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-02-18,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Health,2021-03-16,['referral-committee'],IL,102nd +Assigned to Human Rights,2021-03-03,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-03,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-10-28,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-02-04,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-14,[],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-02-11,[],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-23,[],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-02-10,[],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-17,['passage'],IL,102nd +Assigned to Energy and Public Utilities,2021-04-07,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-28,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-02-04,[],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Public Utilities Committee,2022-01-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-18,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +"Directed to Multiple Committees Healthcare Accessibility Committee, Appropriations-Health Subcommittee",2021-03-09,[],IL,102nd +Assigned to Labor,2022-01-26,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Health,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-01-24,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Education,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-01-29,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-01-11,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Insurance,2022-01-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Kris Tharp,2022-11-14,[],IL,102nd +Assigned to Pensions,2022-01-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-01-19,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-10,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-05-05,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-05,[],IL,102nd +Assigned to Licensed Activities,2022-01-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-02-10,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-03,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Restorative Justice Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-08,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-02-24,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-02,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2022-02-17,['passage'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Immigration & Human Rights Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Criminal Law,2022-01-26,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-01-19,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-01-25,[],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Recommends Be Adopted Adoption & Child Welfare Committee; 008-000-000,2022-03-08,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Assigned to Licensed Activities,2022-01-26,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-04,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-02-10,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-17,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-02-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Bill Cunningham,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Andrew S. Chesney,2022-03-30,[],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-16,[],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2021-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-17,[],IL,102nd +Assigned to Health,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Local Government,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2021-02-24,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-02-05,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-01-26,[],IL,102nd +Chief Sponsor Changed to Sen. Sara Feigenholtz,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 31, 2021",2021-05-30,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-16,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-03-16,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-03-16,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Suzanne Ness,2021-01-21,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Higher Education,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Commerce,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2022-02-01,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Assigned to Mental Health & Addiction Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Local Government,2021-03-03,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-01-19,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-31,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-01-10,[],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2022-01-12,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-31,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2022-02-07,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2022-04-08,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-08-24,[],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2022-03-14,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-04-07,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-17,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-01,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-04-07,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Education,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government,2022-01-26,['referral-committee'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-07-25,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Insurance,2021-03-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Assigned to Judiciary,2021-03-03,['referral-committee'],IL,102nd +Assigned to Commerce,2022-01-26,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-02-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-03,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Assigned to Health Care Availability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-02-24,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-05,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-17,['passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-01-19,[],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-04,[],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-25,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-01-19,[],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Agriculture,2022-01-26,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-01-26,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-01-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-03,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-10,[],IL,102nd +Assigned to Education,2021-03-23,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-11-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-02-24,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-12-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-02-01,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-01-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-11-30,[],IL,102nd +Removed Co-Sponsor Rep. Steven Reick,2021-10-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-01-21,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-01,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2021-05-26,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-02-25,[],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 31, 2021",2021-05-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-15,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +"Assigned to Small Business,Tech Innovation, and Entrepreneurship Committee",2022-02-01,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Veterans Affairs,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tom Demmer,2021-02-18,[],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-01-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Health,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Housing Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-16,['referral-committee'],IL,102nd +Assigned to Health,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2021-10-20,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Financial Institutions,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-04,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue,2022-01-26,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Licensed Activities,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Higher Education,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Pensions,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-03,[],IL,102nd +Assigned to Police & Fire Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2022-01-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2022-03-30,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-16,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-01-25,[],IL,102nd +Assigned to Tourism and Hospitality,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-18,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-04-21,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-11-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-03-01,[],IL,102nd +Remove Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-02-03,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-02-17,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-04,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Pensions,2022-02-01,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-22,[],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Assigned to Commerce,2021-03-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Environment and Conservation,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Environment and Conservation,2021-03-03,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-03-30,[],IL,102nd +Assigned to State Government,2022-01-26,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-01-11,['referral-committee'],IL,102nd +Assigned to Financial Institutions Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-10-28,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2021-03-12,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-03-24,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2022-02-01,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2021-02-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2022-02-24,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Assigned to Human Rights,2022-01-26,['referral-committee'],IL,102nd +Assigned to Education,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-01-19,[],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation,2021-04-07,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Assigned to Financial Institutions,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-01-10,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-02-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-09,[],IL,102nd +Assigned to State Government Administration Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Pensions,2022-01-11,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Insurance,2022-01-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-01-27,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Chief Co-Sponsor Rep. LaToya Greenwood,2022-09-01,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mark L. Walker,2022-11-29,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-02-07,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2022-02-07,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Police & Fire Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-01-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-02-24,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2021-02-11,[],IL,102nd +Assigned to Public Utilities Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Licensed Activities,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-11,[],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-15,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-16,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-07,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-10,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Rachelle Crowe,2022-01-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jim Durkin,2021-04-26,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-03-10,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-11,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-23,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue,2022-01-26,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-01-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Clean Energy Subcommittee,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-01-19,[],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-10,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-02-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-03-02,[],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor,2022-02-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Financial Institutions Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Environment and Conservation,2021-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-01-20,[],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-24,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2022-01-21,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-01-19,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2022-01-11,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Housing Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to State Government,2022-01-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-01-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Cities & Villages Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2022-01-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2022-01-26,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Donald P. DeWitte,2022-01-28,[],IL,102nd +Assigned to Executive,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Education,2021-02-24,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-02-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Insurance,2021-04-07,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Pensions,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Higher Education,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Filed with Secretary by Sen. Sue Rezin,2022-03-04,['filing'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-02-16,[],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-05-25,['reading-1'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-17,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to State Government,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2022-11-14,[],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-05,[],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-11,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government,2021-03-23,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-26,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-02,['referral-committee'],IL,102nd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-01-05,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2022-03-23,['amendment-introduction'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-02-18,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-03-16,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-11,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-02-10,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Transportation,2021-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Local Government,2021-03-09,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-04-04,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Health,2021-03-16,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Financial Institutions Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-22,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-09,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-04-06,[],IL,102nd +Assigned to Housing Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Assigned to Museums, Arts, & Cultural Enhancements Committee",2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-10-20,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-04-06,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-23,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2022-01-28,[],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Licensed Activities,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-02-19,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-01-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-01-21,[],IL,102nd +Assigned to State Government Administration Committee,2021-04-14,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Robyn Gabel",2022-01-07,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-03-12,[],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-01-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-15,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-01-18,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Cities & Villages Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-01-24,[],IL,102nd +Chief Sponsor Changed to Sen. Antonio Muñoz,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-05-30,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-02,[],IL,102nd +Assigned to Adoption & Child Welfare Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2021-01-21,[],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-10-13,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-03-02,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-19,[],IL,102nd +Assigned to Insurance,2021-03-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-10-13,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-01-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-01-11,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. David A. Welter,2021-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-10-28,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-01-24,[],IL,102nd +Assigned to Insurance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government,2022-02-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-03-01,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-07,[],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-02-24,[],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health,2021-03-03,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-23,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-12-14,[],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Public Utilities Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Recommends Be Adopted - Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-24,['committee-passage-favorable'],IL,102nd +Assigned to Health,2022-01-11,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-18,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-01-19,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-03,[],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-01-20,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Environment and Conservation,2022-02-08,['referral-committee'],IL,102nd +Assigned to Financial Institutions Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Higher Education,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-03-01,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-01-11,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government,2022-01-11,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-01-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-11-14,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-06,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-06-30,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Behavioral and Mental Health,2022-02-01,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-10-26,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2022-04-05,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-02-23,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Financial Institutions,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-02-16,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2022-01-05,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-03-12,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-09-10,[],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Insurance,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-02-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-03-24,[],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Be Adopted Transportation; 017-000-000,2022-04-04,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Amy Elik,2021-02-22,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2022-10-06,[],IL,102nd +Assigned to Human Services Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Charles Meier,2022-01-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Police & Fire Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-23,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-12,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-12,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-15,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-03-16,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Assigned to Museums, Arts, & Cultural Enhancements Committee",2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-02-22,[],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Assigned to Labor,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2021-02-02,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Health,2021-02-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Assigned to Executive,2021-02-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-04,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-24,[],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Local Government,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Financial Institutions Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-20,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Assigned to Pensions,2021-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Steve McClure,2022-01-28,[],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Health,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Rachelle Crowe,2021-03-08,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-10-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Pensions,2021-03-03,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-01-19,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-24,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-01-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2022-01-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-24,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Directed to Multiple Committees Behavioral and Mental Health, Appropriations-Education Subcommittee",2022-01-05,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2021-02-08,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Healthcare Access and Availability,2021-02-17,['referral-committee'],IL,102nd +Assigned to Revenue,2021-02-24,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-02-11,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-01-24,[],IL,102nd +Filed with Secretary by Sen. Doris Turner,2022-01-11,['filing'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Directed to Multiple Committees Behavioral and Mental Health. Appropriations- Health Subcommittee.,2022-01-26,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-29,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-04-14,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-01-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-08,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-09,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-08-06,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2021-03-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Theresa Mah,2021-02-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-12-02,[],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-18,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-03,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-03-01,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Pensions,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Pensions,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-11-22,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-15,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-25,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2021-02-25,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Ryan Spain,2022-02-25,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 010-000-000",2021-04-27,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2021-03-04,[],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-03-11,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Insurance,2021-03-23,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Assigned to Labor & Commerce Committee,2022-03-01,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Local Government,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government,2022-02-01,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Tabled By Sponsor Sen. Michael E. Hastings,2022-04-05,['withdrawal'],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-04-05,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Be Adopted State Government; 006-000-000,2021-03-10,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Commerce,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Recommends Be Adopted Higher Education Committee; 009-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2022-03-09,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2021-03-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-01-27,[],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-02-25,[],IL,102nd +Assigned to Licensed Activities,2021-03-09,['referral-committee'],IL,102nd +Assigned to Tourism and Hospitality,2021-02-09,['referral-committee'],IL,102nd +Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2022-03-08,['committee-passage-favorable'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-16,[],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to State Government,2022-01-26,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-01,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-01-19,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-01-05,[],IL,102nd +Assigned to Veterans Affairs,2022-01-26,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-19,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2021-04-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-02-10,[],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-01-24,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-01-20,[],IL,102nd +Assigned to Health,2021-03-09,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2022-02-09,['referral-committee'],IL,102nd +Recommends Be Adopted Human Services Committee; 014-000-000,2022-03-30,['committee-passage-favorable'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-01-11,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-01-25,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-02-26,[],IL,102nd +Assigned to Counties & Townships Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Health,2022-01-11,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Assigned to Transportation,2022-01-26,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-01-11,['referral-committee'],IL,102nd +Assigned to Insurance,2022-01-05,['referral-committee'],IL,102nd +Assigned to Transportation,2022-01-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions March 17, 2021",2021-03-16,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-04-21,[],IL,102nd +Assigned to Pensions,2022-02-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-16,[],IL,102nd +Assigned to Consumer Protection Committee,2021-05-12,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Pensions,2022-01-11,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2022-01-11,['referral-committee'],IL,102nd +Assigned to Revenue,2022-01-11,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +"Recommends Be Adopted - Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2021-03-22,['committee-passage-favorable'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-02-23,['referral-committee'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 007-000-000,2022-03-09,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-03-01,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 31, 2021",2021-05-30,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2022-03-09,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-05-28,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Resolution Adopted,2021-05-29,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Waive Posting Notice,2021-10-19,[],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2021-02-05,[],IL,102nd +Resolution Adopted,2021-03-17,['passage'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-02-09,[],IL,102nd +Assigned to Health,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2022-01-26,['referral-committee'],IL,102nd +Assigned to State Government,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-10-20,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2022-02-01,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2022-01-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-06,[],IL,102nd +Assigned to Higher Education,2022-01-11,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-01-26,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-15,[],IL,102nd +Resolution Adopted,2021-03-17,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2021-03-02,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions February 9, 2022",2022-02-08,[],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-11-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Rachelle Crowe,2021-10-13,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-22,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-07-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Greg Harris,2022-07-21,[],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-01,[],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-01-10,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-01-10,[],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions March 17, 2021",2021-03-16,[],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Randy E. Frese,2023-01-10,[],IL,102nd +Assigned to Health,2021-03-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-08,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-17,['passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-12,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-15,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Commerce,2021-03-09,['referral-committee'],IL,102nd +Assigned to Veterans Affairs,2021-03-03,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Public Safety,2021-03-16,['referral-committee'],IL,102nd +Assigned to Insurance,2021-03-16,['referral-committee'],IL,102nd +Assigned to Health,2021-03-23,['referral-committee'],IL,102nd +Assigned to Agriculture,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Tom Weber,2021-02-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2021-05-12,[],IL,102nd +"Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2021-04-28,['committee-passage-favorable'],IL,102nd +Recommends Be Adopted Higher Education Committee; 010-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Recommends Be Adopted Mental Health & Addiction Committee; 016-000-000,2021-05-06,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Recommends Be Adopted Judiciary - Criminal Committee; 016-000-000,2021-04-27,['committee-passage-favorable'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Insurance,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Higher Education,2021-03-09,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Assigned to Local Government,2021-03-23,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-08,['referral-committee'],IL,102nd +Assigned to Insurance,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Agriculture,2021-03-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Financial Institutions,2021-03-09,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-09,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-02-24,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-03,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-01-25,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-05,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Assigned to Health,2022-02-08,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Waive Posting Notice,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-24,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Recommends Be Adopted Higher Education Committee; 010-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Financial Institutions Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-17,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-10,[],IL,102nd +Assigned to State Government Administration Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-02-26,[],IL,102nd +Assigned to Police & Fire Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-08-31,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-10-14,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Insurance,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-26,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2021-10-26,[],IL,102nd +Assigned to Licensed Activities,2021-03-09,['referral-committee'],IL,102nd +Assigned to Pensions,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-01-19,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-04-05,['committee-passage-favorable'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-09,['referral-committee'],IL,102nd +Assigned to Local Government,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Immigration & Human Rights Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Insurance,2021-03-09,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2021-10-27,[],IL,102nd +Assigned to State Government,2022-02-01,['referral-committee'],IL,102nd +Assigned to Environment and Conservation,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-02-16,[],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Assigned to Health Care Availability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2022-02-22,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-03-30,[],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-01-04,[],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Be Adopted Agriculture; 011-000-000,2021-05-20,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-02-08,[],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 31, 2021",2021-05-30,[],IL,102nd +Be Adopted State Government; 009-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-05-11,[],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sue Scherer,2021-03-18,['amendment-introduction'],IL,102nd +"Recommends Be Adopted - Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-24,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-02-16,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2021-10-27,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-02-16,[],IL,102nd +Recommends Be Adopted Human Services Committee; 013-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2021-03-02,[],IL,102nd +Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2021-03-24,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-04,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-01-19,['referral-committee'],IL,102nd +Recommends Be Adopted Health Care Availability & Accessibility Committee; 010-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2022-02-25,[],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-02-26,[],IL,102nd +Assigned to Energy and Public Utilities,2021-02-24,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason A. Barickman,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-02-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason A. Barickman,2021-02-05,[],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2021-05-20,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2022-03-10,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-04-06,[],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-04-06,[],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions March 29, 2022",2022-03-28,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-05-29,[],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-09,['referral-committee'],IL,102nd +Waive Posting Notice,2021-05-29,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Waive Posting Notice,2021-05-25,[],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2021-06-01,[],IL,102nd +Waive Posting Notice,2021-05-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Charles Meier,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-05-25,[],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2021-04-27,['committee-passage-favorable'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-20,['passage'],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2021-05-05,['committee-passage-favorable'],IL,102nd +Assigned to Consumer Protection Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-03,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-01-26,[],IL,102nd +Assigned to Insurance,2021-03-03,['referral-committee'],IL,102nd +Added Co-Sponsor All Other Republican Members of the House,2021-08-31,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-08-10,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-25,[],IL,102nd +Assigned to Higher Education Committee,2021-04-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Recommends Be Adopted Human Services Committee; 012-000-000,2021-04-27,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Assigned to State Government Administration Committee,2021-04-14,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Assigned to Energy & Environment Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Health,2021-02-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-02-24,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-24,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-24,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-03-29,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 31, 2021",2021-05-30,[],IL,102nd +Assigned to Energy & Environment Committee,2022-03-30,['referral-committee'],IL,102nd +Recommends Be Adopted Human Services Committee; 012-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Assigned to Health,2021-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Recommends Be Adopted Human Services Committee; 011-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-22,[],IL,102nd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Recommends Be Adopted Human Services Committee; 014-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Assigned to Pensions,2021-02-17,['referral-committee'],IL,102nd +Waive Posting Notice,2022-04-06,[],IL,102nd +Co-Sponsor All Senators,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-15,[],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2021-05-12,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2021-05-12,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-25,['passage'],IL,102nd +Resolution Adopted,2022-04-07,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2021-09-13,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-11,[],IL,102nd +Assigned to Executive Committee,2021-04-14,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-19,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Assigned to Pensions,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Transportation,2021-04-07,['referral-committee'],IL,102nd +Recommends Be Adopted Human Services Committee; 011-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-01-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Insurance,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Immigration & Human Rights Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-01-25,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-19,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-01-26,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-02-25,[],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Chris Bos,2022-04-06,[],IL,102nd +Assigned to Police & Fire Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Education,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Assigned to Agriculture,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-01,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-04-07,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2022-01-11,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-08-09,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-01-21,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2021-02-24,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-01-27,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-11-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-03-29,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Andrew S. Chesney,2021-02-10,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Pensions,2021-03-16,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-15,[],IL,102nd +Assigned to Labor,2021-04-07,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-10-18,[],IL,102nd +Assigned to Criminal Law,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Assigned to Tourism and Hospitality,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2022-02-09,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-05,[],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2022-01-27,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-11,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government,2022-01-11,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Health,2021-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Jacqueline Y. Collins,2021-03-02,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-02-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Kelly M. Cassidy,2022-02-09,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-08-09,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-03-19,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-01-28,[],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-12-21,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Financial Institutions Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-02-24,[],IL,102nd +Assigned to Judiciary,2021-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-11,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor,2021-03-23,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Insurance,2021-02-24,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Housing Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2021-02-22,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2022-02-09,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-02-18,[],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-01-25,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-03-08,[],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-02-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-06,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-03-05,[],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Public Safety,2021-03-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Education,2021-03-23,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2022-11-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-08,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Sara Feigenholtz,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Insurance,2021-02-24,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-04-07,[],IL,102nd +Assigned to Health,2021-03-03,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-09,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Education,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-01-18,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-03-02,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Pensions,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-28,[],IL,102nd +Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Pensions,2021-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-04-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Rights,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-10-20,[],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-01-05,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-02-22,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-09-23,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Education,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2022-01-26,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-04,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. David Friess,2022-01-10,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Restorative Justice Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-24,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Health,2021-03-16,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-01-24,[],IL,102nd +Assigned to Health,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-16,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-07,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-01-13,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-06-01,[],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-09,[],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-10-21,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-04,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-01,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-18,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Pensions,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-01-20,[],IL,102nd +Assigned to Local Government,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Public Utilities Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2022-12-01,[],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-23,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-01-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-11,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-16,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-03-05,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-28,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-23,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Licensed Activities,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Consumer Protection Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-04,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-18,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Assigned to Cities & Villages Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2022-01-25,[],IL,102nd +Assigned to Executive Appointments,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-23,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Behavioral and Mental Health,2022-02-01,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-01-29,[],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-26,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-06,[],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Assigned to Human Rights,2022-02-01,['referral-committee'],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-02-26,[],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-02-02,[],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-02-02,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-24,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Education,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-03-08,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Financial Institutions Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Education,2022-11-22,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-26,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-04,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-01,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Assigned to Executive,2022-01-26,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-24,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2021-05-12,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-05-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-12,[],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-26,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2021-05-20,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-01-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-01-27,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Insurance,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-05-27,[],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-25,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-02-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Agriculture,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor,2022-01-26,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-03-31,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-01-11,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-02-19,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-17,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-01-26,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-20,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2022-01-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Health,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-02-19,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2022-01-11,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-01-24,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-01-11,[],IL,102nd +Assigned to Public Utilities Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-08,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-12-01,[],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-23,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2022-01-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Deanne M. Mazzochi,2022-02-07,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-02-08,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2021-05-20,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-03-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-02-08,[],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-02-10,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Pensions,2021-03-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Transportation,2022-01-26,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Insurance,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2021-05-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. C.D. Davidsmeyer,2022-02-17,[],IL,102nd +Assigned to Transportation,2021-03-03,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2021-03-05,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-08,[],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2022-01-25,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-01-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-01-18,[],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-02-02,[],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jackie Haas,2022-04-03,[],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-09-14,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Amy Grant,2021-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-11-14,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-21,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-01-31,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2022-01-25,[],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2022-01-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-01-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-04-06,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Postponed - Healthcare Access and Availability,2022-03-23,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-02-24,[],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Pensions,2021-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2022-03-30,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-008-000,2022-03-30,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2022-12-01,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-16,[],IL,102nd +Remove Chief Co-Sponsor Rep. Dave Severin,2022-11-15,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2022-02-09,[],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-08-31,[],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-01-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-02-09,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-03-05,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-03-02,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Luft,2021-12-07,[],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-01-27,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2022-01-31,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2021-03-01,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2021-03-03,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-02-03,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-01-10,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-01-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-01-20,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-02-18,[],IL,102nd +Assigned to Executive,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Assigned to Cities & Villages Committee,2022-03-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-18,[],IL,102nd +Assigned to Consumer Protection Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2022-01-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Public Utilities Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-02-03,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2022-01-26,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-15,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Financial Institutions Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue,2022-01-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-02-24,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Higher Education,2022-02-01,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-03-01,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2022-01-19,['referral-committee'],IL,102nd +Assigned to Health,2021-03-09,['referral-committee'],IL,102nd +Assigned to Agriculture,2021-03-03,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-09,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2022-01-26,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Local Government,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2021-05-14,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-03-17,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Recommends Be Adopted Rules Committee; 003-002-000,2021-10-28,['committee-passage-favorable'],IL,102nd +Assigned to Energy & Environment Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-03,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-26,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Environment and Conservation,2022-02-01,['referral-committee'],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-15,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-02-01,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Health,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-01-10,[],IL,102nd +Assigned to Counties & Townships Committee,2022-01-19,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-04,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-16,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-01-11,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-02-22,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Recommends Be Adopted Immigration & Human Rights Committee; 005-002-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Assigned to Insurance Committee,2021-03-09,['referral-committee'],IL,102nd +Prevailed to Suspend Rule,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-04-05,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2021-03-01,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Insurance,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-08,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-10,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Criminal Law,2022-02-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2022-03-28,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-12,[],IL,102nd +Assigned to Healthcare Access and Availability,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-01,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-23,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2022-01-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-01-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-05-13,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 007-000-000,2022-03-09,['committee-passage-favorable'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2022-01-05,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Insurance,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-02-24,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Criminal Law,2022-01-05,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-12,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-17,[],IL,102nd +Recommends Be Adopted Veterans' Affairs Committee; 009-000-000,2022-03-08,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Assigned to Commerce,2022-01-26,['referral-committee'],IL,102nd +Recommends Be Adopted Health Care Licenses Committee; 007-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-17,[],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Assigned to State Government,2022-02-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-01-25,[],IL,102nd +Assigned to Cities & Villages Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-01,[],IL,102nd +Assigned to Judiciary,2022-01-26,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government,2022-01-26,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2021-03-23,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-02,[],IL,102nd +Added as Chief Co-Sponsor Sen. Rachelle Crowe,2022-01-24,[],IL,102nd +Assigned to Local Government,2022-01-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-11,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Police & Fire Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-04-07,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-08-09,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-01-31,[],IL,102nd +Assigned to Behavioral and Mental Health,2022-01-26,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Denyse Wang Stoneback,2021-02-19,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-01-13,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2021-02-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government,2022-02-01,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-09,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2022-01-26,['referral-committee'],IL,102nd +Assigned to Higher Education,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-18,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-01-27,[],IL,102nd +Assigned to Transportation,2021-03-03,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2022-02-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Environment and Conservation,2022-01-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-02-10,[],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Local Government,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-03-05,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2022-02-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2022-02-07,['amendment-introduction'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-01-21,[],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2022-03-09,['committee-passage-favorable'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Assigned to Judiciary,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-01-06,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-12-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Public Utilities Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2022-08-09,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-05-17,['amendment-introduction'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-10-13,[],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-02-01,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-01-20,[],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-03-09,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Pensions,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-05-24,[],IL,102nd +Assigned to Appropriations,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Filed with Secretary by Sen. Terri Bryant,2022-03-04,['filing'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-08-26,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-01-27,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-02,[],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Appointments,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Pensions,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-03-16,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Pensions,2022-02-01,['referral-committee'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-11-15,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Pensions,2022-02-01,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health,2022-01-26,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-02,[],IL,102nd +Assigned to Judiciary,2021-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-26,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-04,[],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-01-11,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-01-26,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-02-17,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-11-15,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-16,[],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2021-04-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-04-06,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Agriculture,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-16,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-03-02,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Health,2021-02-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-07-29,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-06,[],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Financial Institutions,2022-01-26,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Housing Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-18,[],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Pensions,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-26,['referral-committee'],IL,102nd +Assigned to Revenue,2022-01-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Licensed Activities,2021-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-09-14,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-03,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2021-03-04,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Criminal Law,2022-01-05,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-03-16,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-02-10,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-05-17,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Education,2022-01-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Public Utilities Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2022-02-09,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-03-08,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-02-24,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Ryan Spain,2021-02-19,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Education,2021-03-23,['referral-committee'],IL,102nd +Assigned to Commerce,2021-04-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-03-01,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-02,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-04,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-01-21,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-09-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-02-03,[],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-02-17,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2021-03-09,[],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Pensions,2021-02-24,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Moved to - Table Bill/Resolution Pursuant to Rule 60(b) Rep. Michael J. Zalewski,2022-02-04,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-02-22,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. David A. Welter,2022-03-15,[],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-02-16,[],IL,102nd +Assigned to Public Utilities Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-01-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-30,[],IL,102nd +Assigned to Executive,2021-02-24,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-07,[],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-02-11,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2022-01-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-01-20,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-15,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Pensions,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-03-08,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2022-01-26,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2022-02-10,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Licensed Activities,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-23,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2022-02-01,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-07,[],IL,102nd +Assigned to Transportation,2021-03-16,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Assigned to Financial Institutions Committee,2022-01-25,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-02-26,[],IL,102nd +Assigned to Human Rights,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-01-26,[],IL,102nd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-01-20,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-08-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-15,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-10,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Higher Education,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-01-11,['referral-committee'],IL,102nd +Assigned to Education,2021-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-01,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-23,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Higher Education,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-03,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-01-11,['referral-committee'],IL,102nd +Assigned to Education,2021-03-03,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-03-05,[],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-01-18,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-17,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-30,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-01-26,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health,2022-02-01,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-11,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2022-01-19,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-01-10,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-22,[],IL,102nd +Assigned to Energy & Environment Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-26,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Local Government,2021-02-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Housing Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-01-25,[],IL,102nd +Assigned to State Government,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health,2022-02-01,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Assigned to Executive Committee,2022-03-01,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-03,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-03-01,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-01-25,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-01-19,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2021-02-26,[],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Environment and Conservation,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Licensed Activities,2022-01-26,['referral-committee'],IL,102nd +Assigned to Local Government,2021-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Insurance,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-01-24,[],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Antonio Muñoz,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-17,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-01-26,[],IL,102nd +To Appropriations- Human Services,2021-04-20,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-26,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-01-04,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-01-25,[],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-05-12,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-09,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-04-06,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-13,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-08,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-26,[],IL,102nd +Assigned to Human Services Committee,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-09-22,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-28,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-02-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-02-24,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-07-25,[],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-24,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2022-01-20,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-17,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-01-18,['reading-1'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-04-06,['committee-passage-favorable'],IL,102nd +Assigned to Licensed Activities,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2021-04-27,['committee-passage-favorable'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-15,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy & Environment Committee,2022-01-11,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-01-27,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Education,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-25,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-03,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-11,['referral-committee'],IL,102nd +Assigned to Pensions,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-12-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-01-26,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Education,2022-02-08,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Education,2021-03-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-08-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-04-07,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2022-01-26,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Local Government,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2022-01-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-05,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-10-26,[],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Pensions,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-10-20,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-11,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Consumer Protection Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-22,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance,2021-03-09,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-21,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-06-16,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-01-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +First Reading,2021-01-29,['reading-1'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 010-000-000",2021-04-27,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-02-10,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2022-01-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-01-24,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Education,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-03-08,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Licensed Activities,2021-03-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Agriculture,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-02-16,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-16,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-04,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Jennifer Gong-Gershowitz,2021-02-19,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Pensions,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-02-01,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-08-15,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-23,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Michael Halpin",2021-01-20,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-03-02,[],IL,102nd +Assigned to Personnel & Pensions Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-01-19,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2022-03-31,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2021-06-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-02-24,[],IL,102nd +Assigned to Insurance,2021-04-07,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-28,[],IL,102nd +Assigned to State Government,2021-02-24,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-15,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-03-18,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Local Government,2021-03-23,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 30, 2021",2021-05-29,[],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-11,[],IL,102nd +Assigned to Counties & Townships Committee,2021-03-09,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-23,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Mary E. Flowers,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-15,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Transportation,2021-04-07,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-01-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Housing Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-03,[],IL,102nd +Resolution Adopted,2021-06-16,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Agriculture,2021-03-23,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-08,[],IL,102nd +Assigned to State Government,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Assigned to Consumer Protection Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-03-03,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2021-03-09,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Assigned to Veterans' Affairs Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 31, 2021",2021-05-30,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Public Safety,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2021-03-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-05-28,[],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2021-03-16,['referral-committee'],IL,102nd +Assigned to Restorative Justice Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-09,['referral-committee'],IL,102nd +Assigned to Education,2021-04-07,['referral-committee'],IL,102nd +Assigned to State Government,2021-04-07,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Agriculture,2021-03-23,['referral-committee'],IL,102nd +Assigned to Health,2021-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-09,[],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Assigned to Higher Education,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-04-14,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Recommends Be Adopted Judiciary - Criminal Committee; 011-005-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Caulkins,2022-04-05,[],IL,102nd +Assigned to Human Rights,2021-03-09,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Assigned to Veterans' Affairs Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Assigned to Higher Education,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-30,[],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-11-22,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Commerce,2021-02-24,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Education,2021-03-03,['referral-committee'],IL,102nd +Recommends Be Adopted - Consent Calendar Health Care Licenses Committee; 008-000-000,2021-03-24,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-03-30,[],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-01,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Chief Sponsor Changed to Rep. Denyse Wang Stoneback,2021-02-10,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Mark L. Walker,2022-03-28,[],IL,102nd +Assigned to Higher Education,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-23,['passage'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-04-21,[],IL,102nd +Assigned to Judiciary,2021-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-30,['passage'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-09,[],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-03-25,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Licensed Activities,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-11-30,[],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2022-03-31,['amendment-introduction'],IL,102nd +Be Adopted State Government; 005-000-000,2021-10-20,['committee-passage-favorable'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Resolution Adopted,2022-11-30,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Resolution Adopted,2021-03-25,['passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-01-05,[],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-11-30,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-10-20,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-02-25,['referral-committee'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Recommends Be Adopted Veterans' Affairs Committee; 009-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-16,['referral-committee'],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2021-05-12,['committee-passage-favorable'],IL,102nd +Assigned to Environment and Conservation,2021-03-03,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Keith P. Sommer,2021-05-11,[],IL,102nd +Resolution Adopted,2021-03-25,['passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Be Adopted Health; 012-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-03-15,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Assigned to Environment and Conservation,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Antonio Muñoz,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-02-04,[],IL,102nd +Be Adopted Healthcare Access and Availability; 008-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Chief Co-Sponsor Rep. Jehan Gordon-Booth,2021-09-17,[],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2021-05-20,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-15,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-03-25,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-10-21,[],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Assigned to Labor,2021-03-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2022-03-08,['committee-passage-favorable'],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2021-03-25,['passage'],IL,102nd +Assigned to Cities & Villages Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Be Adopted State Government; 009-000-000,2021-05-06,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Education,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-23,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Be Adopted Education; 013-000-000,2022-04-04,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-04-23,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-03-02,['referral-committee'],IL,102nd +Be Adopted State Government; 009-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Postponed - Healthcare Access and Availability,2021-04-28,[],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Recommends Be Adopted - Consent Calendar Child Care Accessibility & Early Childhood Education Committee; 011-000-000,2021-03-26,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-04,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Assigned to State Government,2021-03-09,['referral-committee'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2021-04-27,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Assigned to Licensed Activities,2021-03-09,['referral-committee'],IL,102nd +Be Adopted Healthcare Access and Availability; 008-000-000,2022-02-16,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2022-04-01,[],IL,102nd +Resolution Adopted,2021-03-17,['passage'],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2021-10-28,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-14,[],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-04-05,['committee-passage-favorable'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-03-25,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2021-05-06,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-02-26,[],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Added as Chief Co-Sponsor Sen. Antonio Muñoz,2022-03-31,[],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Education,2021-03-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-05-11,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Assigned to Labor & Commerce Committee,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Agriculture,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-13,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-03-28,[],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-26,[],IL,102nd +Assigned to Personnel & Pensions Committee,2022-01-25,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Licensed Activities,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-24,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-03-31,[],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Insurance,2021-03-03,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Recommends Be Adopted Appropriations-Human Services Committee; 023-000-000,2021-05-06,['committee-passage-favorable'],IL,102nd +Assigned to Higher Education Committee,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Criminal Law,2021-03-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions February 23, 2022",2022-02-22,[],IL,102nd +Assigned to Higher Education,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Education,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-02-19,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Human Rights,2021-03-03,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Veterans Affairs,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Recommends Be Adopted Human Services Committee; 013-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Higher Education,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-26,[],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2021-09-01,[],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-10-26,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-12,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Assigned to Agriculture,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Health,2021-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-02-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michael Halpin,2022-01-25,[],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Judiciary,2021-02-24,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-03-12,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-11-14,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-28,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Higher Education,2021-03-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-02-01,[],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-05-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2021-10-25,[],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-02-05,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-15,[],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-01-05,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-17,['passage'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-11,[],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-08,[],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-05-17,[],IL,102nd +Recommends Be Adopted Judiciary - Criminal Committee; 015-000-000,2021-05-18,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-01-07,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-01-19,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Tourism and Hospitality,2021-02-09,['referral-committee'],IL,102nd +Assigned to Agriculture,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Local Government,2021-03-03,['referral-committee'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-24,[],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-05-07,['passage'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Human Services Committee,2021-04-14,['referral-committee'],IL,102nd +Assigned to Revenue,2021-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-26,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Higher Education,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-03-17,[],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Pensions,2021-03-03,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2021-05-26,[],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Higher Education Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions April 14, 2021",2021-04-13,[],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-02-01,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Re-referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-03-25,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Judiciary,2021-03-23,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2021-05-05,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2021-04-27,['committee-passage-favorable'],IL,102nd +Assigned to Health,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Removed Co-Sponsor Rep. Anthony DeLuca,2021-05-05,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-01,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-02-23,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2021-10-28,[],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2021-04-27,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-03-16,['referral-committee'],IL,102nd +Waive Posting Notice,2021-10-27,[],IL,102nd +Recommends Be Adopted Veterans' Affairs Committee; 005-000-000,2021-04-27,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Environment and Conservation,2021-04-07,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-04,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Assigned to Pensions,2022-02-01,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Seth Lewis,2021-10-27,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Higher Education,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-02-04,[],IL,102nd +Assigned to State Government,2021-03-09,['referral-committee'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2021-02-16,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-03-15,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-02-08,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 21, 2021",2021-05-20,[],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Assigned to Higher Education,2021-03-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2021-04-27,['amendment-introduction'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2021-04-27,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-03-17,['passage'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2021-04-27,['committee-passage-favorable'],IL,102nd +Assigned to Higher Education,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-11,['referral-committee'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2021-05-20,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-28,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-06-01,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Assigned to Health,2021-03-03,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Be Adopted Judiciary; 007-000-000,2021-05-12,['committee-passage-favorable'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Be Adopted State Government; 009-000-000,2021-05-06,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Assigned to Behavioral and Mental Health,2021-05-20,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2021-02-04,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jonathan Carroll,2021-05-07,['amendment-introduction'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Recommends Be Adopted - Consent Calendar Economic Opportunity & Equity Committee; 008-000-000,2021-03-24,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Assigned to Health Care Availability & Accessibility Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-20,[],IL,102nd +Assigned to Local Government,2021-02-24,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-10-27,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Assigned to Revenue,2021-02-24,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-10-27,['passage'],IL,102nd +Assigned to State Government,2021-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Assigned to Insurance Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2021-02-28,[],IL,102nd +Assigned to Pensions,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Insurance,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-05-03,[],IL,102nd +Assigned to Criminal Law,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason A. Barickman,2021-02-05,[],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Police & Fire Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Insurance,2021-03-03,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-01-25,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 007-000-000,2022-01-26,['committee-passage-favorable'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-18,[],IL,102nd +Assigned to Police & Fire Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Recommends Be Adopted Veterans' Affairs Committee; 009-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Assigned to Judiciary,2021-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Assigned to Labor,2021-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Assigned to Criminal Law,2021-03-23,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Assigned to Licensed Activities,2021-04-07,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-16,[],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Assigned to Insurance,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Brad Halbrook,2022-03-29,['amendment-introduction'],IL,102nd +Assigned to Labor & Commerce Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-02-18,[],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2021-05-24,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-03-08,[],IL,102nd +Assigned to Pensions,2021-02-24,['referral-committee'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation,2021-04-07,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-03-01,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"To Roadways, Rail & Aviation Subcommittee",2022-04-05,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-19,[],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-02-10,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +"Assigned to Small Business,Tech Innovation, and Entrepreneurship Committee",2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +"Directed to Multiple Committees Behavioral and Mental Health Committee, Appropriations- Health Subcommittee",2021-03-03,[],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-02-23,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-01-13,[],IL,102nd +Assigned to Public Utilities Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-09,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Local Government,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-04-21,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-05-14,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Education,2021-03-03,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2021-02-19,[],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-15,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2021-02-06,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-01-26,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-03-08,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-10,[],IL,102nd +Assigned to Housing Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-03-24,['committee-passage-favorable'],IL,102nd +Assigned to Licensed Activities,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Environment and Conservation,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Licensed Activities,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Environment and Conservation,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Insurance,2022-02-01,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Tourism and Hospitality,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-10,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-12,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-24,[],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-03,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-03-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-10-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Ellman,2022-12-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Rachelle Crowe,2022-01-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-03-02,[],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Anne Stava-Murray",2021-01-19,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Assigned to Judiciary,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-09,[],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-01-20,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-07-07,[],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2021-03-01,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Pensions,2022-01-26,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to State Government,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Higher Education,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +To Clean Energy Subcommittee,2022-04-05,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-03,[],IL,102nd +Assigned to State Government,2022-01-11,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-09,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-01-10,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-25,[],IL,102nd +Assigned to Cities & Villages Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-23,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2021-02-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2021-04-27,['committee-passage-favorable'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-03-01,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Health Care Availability & Accessibility Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Insurance,2021-03-09,['referral-committee'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-03,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-02-10,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jim Durkin,2022-01-05,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Assigned to Pensions,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Dan McConchie,2022-02-09,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-19,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2022-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Local Government,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Agriculture,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Assigned to Local Government,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-02-01,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-04-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Moved to - Table Bill/Resolution Pursuant to Rule 60(b) Rep. Rita Mayfield,2022-02-07,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2022-01-27,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-11,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-02-09,['referral-committee'],IL,102nd +Assigned to Health Care Availability & Accessibility Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-17,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-03,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-02-10,[],IL,102nd +Assigned to Higher Education Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-10-19,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Financial Institutions Committee,2021-02-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-18,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-11,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-01-04,[],IL,102nd +Assigned to Insurance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-02-11,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Directed to Multiple Committees Licensed Activities, Appropriations- Health Subcommittee",2022-01-26,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-01-11,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2022-01-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-11,[],IL,102nd +Assigned to Police & Fire Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-01,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-02-23,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Housing Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Charles Meier,2022-01-28,[],IL,102nd +Assigned to State Government Administration Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-04-07,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Ethics,2021-04-07,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-03,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-24,[],IL,102nd +Assigned to Insurance Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Carol Ammons,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2022-01-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Celina Villanueva,2021-03-03,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-01-25,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-01-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Local Government,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-02-26,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-02-15,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-10-13,[],IL,102nd +Assigned to Insurance Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-03-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John F. Curran,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy and Public Utilities,2022-01-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-11-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-01,[],IL,102nd +Assigned to State Government Administration Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health,2022-02-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-22,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-04-04,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-08,[],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-02-19,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-04-21,[],IL,102nd +Assigned to Adoption & Child Welfare Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-22,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2022-01-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy and Public Utilities,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Antonio Muñoz,2021-03-05,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-01-25,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-11-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-10-13,[],IL,102nd +Assigned to Higher Education Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-21,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-03-08,[],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-02-24,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +To Clean Energy Subcommittee,2022-04-05,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-03-08,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2022-01-26,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-09-30,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Adam Niemerg,2021-01-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-01-20,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-26,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Recommends Be Adopted Economic Opportunity & Equity Committee; 007-000-000,2022-04-07,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-01-25,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Education,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-04-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-10-13,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Darren Bailey,2022-11-14,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-01-21,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-08-25,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-23,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-15,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-10-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-09-21,[],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Environment and Conservation,2021-03-23,['referral-committee'],IL,102nd +Assigned to Financial Institutions Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Ugaste,2022-01-28,[],IL,102nd +Assigned to Revenue,2021-03-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-05-19,[],IL,102nd +Assigned to Agriculture,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-02,[],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Health,2021-02-24,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Education,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-02-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Amy Elik,2022-03-08,[],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-16,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Financial Institutions Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-02-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-10-13,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-09,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. John C. D'Amico,2021-10-01,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Be Adopted Healthcare Access and Availability; 006-000-000,2022-03-29,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Rachelle Crowe,2021-03-19,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-01-31,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-03,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-02-18,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Assigned to Transportation,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-01-18,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health,2021-03-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mike Murphy,2021-02-19,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-03-03,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-17,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Chris Bos,2022-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-03-04,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-10-13,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-01-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2021-03-24,[],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Assigned to State Government,2022-01-11,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-02-02,[],IL,102nd +Assigned to Judiciary,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-02-07,[],IL,102nd +Assigned to Higher Education Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Rachelle Crowe,2021-02-25,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2022-01-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-01-31,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-03,[],IL,102nd +Assigned to State Government,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-08-24,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-01-26,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive,2022-01-26,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-23,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-01-24,[],IL,102nd +Added Chief Co-Sponsor Rep. John C. D'Amico,2021-02-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation,2022-02-01,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Chris Bos,2021-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-02-22,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-10,[],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-09,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor & Commerce Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2022-01-26,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-04-07,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Education,2022-01-26,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2021-01-26,[],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-04-14,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Rachelle Crowe,2022-01-20,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Education,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-15,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2022-02-10,[],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-04,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-02-04,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Theresa Mah",2021-03-02,[],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Transportation,2022-01-05,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-10-01,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health Care Availability & Accessibility Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2022-01-26,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2021-01-19,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-02-24,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-18,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-02-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2021-02-09,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2022-01-25,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-01-05,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Michael Halpin,2021-02-22,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-19,['referral-committee'],IL,102nd +Assigned to Agriculture,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Licensed Activities,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2021-09-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-10-12,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-04,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Health,2022-01-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-03-17,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Local Government,2022-01-26,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Assigned to Insurance,2021-03-23,['referral-committee'],IL,102nd +Assigned to Commerce,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-01,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Assigned to Appropriations,2022-01-26,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2022-01-26,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-01-28,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Thomas Cullerton,2021-03-08,[],IL,102nd +Recommends Be Adopted Judiciary - Criminal Committee; 011-005-000,2021-04-27,['committee-passage-favorable'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-04,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2022-01-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Assigned to State Government,2022-01-26,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Assigned to Higher Education,2022-01-26,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-04,[],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation,2022-01-26,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-01-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +Assigned to Local Government,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-01-18,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-02-01,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2022-01-18,[],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-03-02,[],IL,102nd +Assigned to State Government,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Chief Sponsor Changed to Sen. Ram Villivalam,2022-01-31,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government,2022-02-01,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michael Halpin,2021-04-22,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Assigned to Insurance,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to State Government,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-16,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-03-01,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Housing Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2022-02-01,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-04-20,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-01-25,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-07,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health,2022-01-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Education,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-03-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2022-01-26,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Pensions,2022-01-05,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Fine,2022-01-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-04-07,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Healthcare Access and Availability,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to State Government,2022-02-01,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-01-13,[],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-16,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-01,['referral-committee'],IL,102nd +"Chief Sponsor Changed to Rep. Marcus C. Evans, Jr.",2021-03-02,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-03-11,[],IL,102nd +Assigned to Healthcare Access and Availability,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-01-25,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Jaime M. Andrade, Jr.",2022-02-08,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2022-01-07,[],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to State Government,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Antonio Muñoz,2021-03-05,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Local Government,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-02-24,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-28,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 007-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-05-24,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Mental Health & Addiction Committee,2022-01-11,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2022-01-19,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 007-000-000,2022-03-09,['committee-passage-favorable'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-03-04,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Lance Yednock,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-03-01,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-17,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-09,[],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-30,['passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions March 29, 2022",2022-03-28,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-15,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-02,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Scott M. Bennett,2022-01-19,[],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-17,['passage'],IL,102nd +Assigned to Criminal Law,2022-01-11,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-17,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Behavioral and Mental Health,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Pensions,2022-02-01,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-17,['passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-19,['referral-committee'],IL,102nd +Assigned to Behavioral and Mental Health,2022-01-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-03-03,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Be Adopted State Government; 008-000-000,2022-02-23,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Resolution Adopted,2022-04-01,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 021-000-000,2022-03-16,['committee-passage-favorable'],IL,102nd +Recommends Be Adopted Higher Education Committee; 006-003-000,2022-03-09,['committee-passage-favorable'],IL,102nd +Recommends Be Adopted Transportation: Vehicles & Safety Committee; 012-000-000,2022-03-16,['committee-passage-favorable'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2021-11-30,[],IL,102nd +Assigned to Agriculture,2022-01-26,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Assigned to Health,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2022-02-17,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy and Public Utilities,2022-02-01,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Pensions,2022-02-01,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-03,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Recommends Be Adopted Executive Committee; 014-000-000,2022-03-25,['committee-passage-favorable'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-01-31,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2022-01-26,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-02-24,[],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor,2022-01-26,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Health,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-04-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michael Halpin,2021-03-09,[],IL,102nd +Assigned to Cities & Villages Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-24,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +First Reading,2022-02-15,['reading-1'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Recommends Be Adopted Labor & Commerce Committee; 026-000-000,2022-03-16,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-28,[],IL,102nd +Recommends Be Adopted Cities & Villages Committee; 009-000-000,2022-03-29,['committee-passage-favorable'],IL,102nd +Recommends Be Adopted Labor & Commerce Committee; 026-000-000,2022-03-16,['committee-passage-favorable'],IL,102nd +Chief Sponsor Changed to Rep. Lakesia Collins,2022-01-06,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-01-10,[],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-10-13,[],IL,102nd +Assigned to Public Utilities Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-01,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-03-08,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-01-19,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-24,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2022-04-29,[],IL,102nd +Assigned to Judiciary,2022-01-11,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-03,['passage'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Labor,2022-01-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-10,[],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-04-05,[],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Housing Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Licensed Activities,2022-01-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-01-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health,2021-03-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Directed to Multiple Committees Behavioral and Mental Health Committee, Appropriations- Human Services Subcommittee.",2021-04-07,[],IL,102nd +Assigned to Insurance,2021-03-23,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-23,[],IL,102nd +Assigned to Energy and Public Utilities,2021-03-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2022-12-09,['amendment-introduction'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-02-25,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-09-24,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Public Safety,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-01-11,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Kris Tharp,2022-11-14,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-04,[],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-01-27,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Assigned to Labor,2021-03-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-02,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-24,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-01-25,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-05-12,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-22,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-09,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Chief Co-Sponsor Changed to Rep. Tony McCombie,2021-02-05,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2021-10-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-11-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Chapin Rose,2022-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Restorative Justice Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Agriculture,2022-01-26,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Housing Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-01-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Steven Reick,2021-02-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Police & Fire Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-12-14,[],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-02-24,[],IL,102nd +Assigned to Education,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-02-19,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-09,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Dan McConchie,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2022-01-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Jennifer Gong-Gershowitz",2021-03-09,[],IL,102nd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2021-03-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-03,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-06-08,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Thaddeus Jones,2021-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Criminal Law,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Financial Institutions,2021-03-09,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-18,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-04-07,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-22,[],IL,102nd +Assigned to Insurance,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Assigned to Health,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Pensions,2021-02-24,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Education,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Pensions,2021-02-17,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Assigned to Energy & Environment Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-02-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health Care Licenses Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-03-10,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2022-03-09,[],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-03-17,[],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Financial Institutions Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Counties & Townships Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Pensions,2022-02-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Ryan Spain,2021-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-26,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jackie Haas,2021-07-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-26,[],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2022-02-25,[],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Counties & Townships Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-08-24,[],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Insurance,2022-01-05,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 010-000-000",2021-04-27,['committee-passage-favorable'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-26,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-10-03,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Camille Y. Lilly,2021-03-08,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-02-05,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Pensions,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-24,[],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-25,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-05-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-01-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-22,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-02-22,[],IL,102nd +Assigned to Personnel & Pensions Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +To Clean Energy Subcommittee,2022-04-05,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-02,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Insurance,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2022-01-26,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-02-18,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Local Government,2021-03-16,['referral-committee'],IL,102nd +Assigned to Criminal Law,2022-01-26,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-01-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-02-25,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-10,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-09,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Police & Fire Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-02-01,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-01-25,[],IL,102nd +Moved to Suspend Rule 21 Rep. Jay Hoffman,2022-04-05,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-02-26,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-10-13,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Veterans Affairs,2021-03-23,['referral-committee'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Financial Institutions,2022-02-01,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Health,2022-01-26,['referral-committee'],IL,102nd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Pensions,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-23,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2021-03-03,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-02-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joe Sosnowski,2022-03-28,['amendment-introduction'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-02,[],IL,102nd +Assigned to Higher Education Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Assigned to Immigration & Human Rights Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-26,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +Assigned to Local Government,2022-02-08,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Higher Education,2022-02-01,['referral-committee'],IL,102nd +Assigned to Human Rights,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-02-16,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-01-11,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-17,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor & Commerce Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Agriculture,2022-01-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Pensions,2021-03-23,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Labor,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-01-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-07-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-02-17,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-04,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-04,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor,2022-02-01,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-01-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Health,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-03-10,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2022-01-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Adam Niemerg,2021-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-01-20,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-12-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-10-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Assigned to Tourism Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health,2021-02-24,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-26,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-01-25,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Pensions,2021-02-24,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Directed to Multiple Committees Behavioral and Mental Health Committee, Appropriations-Health Subcommittee",2021-03-09,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-04,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Antonio Muñoz,2021-03-05,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-01-20,[],IL,102nd +Assigned to Judiciary,2021-02-24,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-02,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-03-15,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Higher Education,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-10-20,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-01-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to State Government,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-02-24,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-01-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2021-03-01,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-01-29,[],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-10-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-03-02,[],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-02-26,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Jay Hoffman,2022-02-09,[],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Financial Institutions,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2022-01-05,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-04-14,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-18,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-05-11,[],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Commerce,2021-03-03,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-08,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +"Added Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-03-09,[],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-11-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-05-25,[],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions January 13, 2021",2021-01-13,[],IL,102nd +Resolution Adopted,2021-05-14,['passage'],IL,102nd +Assigned to Health,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Waive Posting Notice,2021-05-29,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Assigned to Public Utilities Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-05-19,[],IL,102nd +Assigned to Insurance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-01-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-01-19,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-01-20,[],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Michael T. Marron,2023-01-06,[],IL,102nd +Prevailed to Suspend Rule,2023-01-10,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-04-07,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-04-08,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 019-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Recommends Be Adopted Human Services Committee; 013-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Recommends Be Adopted Human Services Committee; 013-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Recommends Be Adopted Human Services Committee; 013-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-01-06,[],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Assigned to Higher Education Committee,2021-05-12,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2023-01-06,[],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-09-21,[],IL,102nd +Re-referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Assigned to Judiciary,2021-02-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-03-08,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-01-13,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions January 13, 2021",2021-01-13,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions January 13, 2021",2021-01-13,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-01-13,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Assigned to State Government Administration Committee,2022-01-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Jim Durkin,2022-04-05,[],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-04-05,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Antonio Muñoz,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-04-08,[],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-31,[],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Chief Co-Sponsor Rep. Frances Ann Hurley,2022-10-06,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Adam Niemerg,2022-12-05,[],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-22,[],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-04,[],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-18,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-01,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Assigned to Education,2021-03-09,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-02-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2022-01-20,[],IL,102nd +Assigned to Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Assigned to State Government,2021-03-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Assigned to Insurance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Commerce,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Assigned to Health,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-03,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Health,2021-03-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Assigned to Insurance,2021-03-16,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Resolution Adopted,2021-06-15,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-01-24,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-01-19,[],IL,102nd +Assigned to Judiciary,2021-03-03,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-11-17,[],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Assigned to Pensions,2021-03-16,['referral-committee'],IL,102nd +Assigned to Education,2021-03-03,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-03,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-16,[],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-03,['referral-committee'],IL,102nd +Assigned to Health,2021-03-23,['referral-committee'],IL,102nd +Assigned to Local Government,2021-02-09,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Education,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-01-19,[],IL,102nd +Assigned to Police & Fire Committee,2021-02-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-01,[],IL,102nd +Assigned to Judiciary,2021-03-03,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-28,[],IL,102nd +Assigned to Higher Education,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-11,[],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-03,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-02-18,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2021-02-16,[],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Amy Elik,2021-02-01,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-02-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Andrew S. Chesney,2021-02-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-09,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-30,[],IL,102nd +Assigned to Mental Health & Addiction Committee,2022-01-19,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. LaToya Greenwood,2021-02-25,[],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Assigned to Pensions,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-04-06,[],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Chief Co-Sponsor Rep. Anna Moeller,2021-02-08,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-03-24,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-23,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-10,[],IL,102nd +Assigned to Agriculture,2021-03-16,['referral-committee'],IL,102nd +Chief Co-Sponsor Changed to Rep. Tim Butler,2022-12-30,[],IL,102nd +Assigned to State Government,2021-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-05,[],IL,102nd +Assigned to Cities & Villages Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-17,[],IL,102nd +Assigned to Education,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2021-04-27,['amendment-introduction'],IL,102nd +Referred to Resolutions Consent Calendar,2022-04-08,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-10-26,[],IL,102nd +Assigned to Judiciary,2021-03-23,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-01-26,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-03,['referral-committee'],IL,102nd +Assigned to Health,2022-02-01,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-03-02,[],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Assigned to Health,2021-04-07,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-02-25,[],IL,102nd +Assigned to State Government Administration Committee,2021-05-24,['referral-committee'],IL,102nd +Assigned to International Trade & Commerce Committee,2021-05-05,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2022-03-08,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-04,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2022-03-09,[],IL,102nd +Assigned to Insurance,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-04-02,[],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Assigned to Financial Institutions,2021-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Recommends Be Adopted Rules Committee; 003-001-000,2021-08-31,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas Morrison,2022-11-16,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +"Assigned to Small Business,Tech Innovation, and Entrepreneurship Committee",2022-02-09,['referral-committee'],IL,102nd +Assigned to Higher Education,2021-03-09,['referral-committee'],IL,102nd +Assigned to Local Government,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-25,['passage'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-03-19,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2021-02-08,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-03-25,['passage'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-03-25,['passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-21,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2021-03-25,['passage'],IL,102nd +Resolution Adopted,2021-03-25,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2021-04-08,['amendment-introduction'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Recommends Be Adopted Appropriations-Human Services Committee; 023-000-000,2021-05-06,['committee-passage-favorable'],IL,102nd +Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2021-05-12,['committee-passage-favorable'],IL,102nd +Moved to Suspend Rule 21 Rep. Jennifer Gong-Gershowitz,2021-05-20,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-04-07,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2022-02-10,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2021-04-16,[],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-03-02,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-01-19,[],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Healthcare Access and Availability,2021-03-03,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Licensed Activities,2021-03-03,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Assigned to Counties & Townships Committee,2021-02-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-01-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-01-19,[],IL,102nd +Assigned to Insurance,2021-03-03,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-26,[],IL,102nd +Assigned to Insurance,2021-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-02-24,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-24,[],IL,102nd +Waive Posting Notice,2021-05-29,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-02-23,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-24,['referral-committee'],IL,102nd +Assigned to Pensions,2021-03-03,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-11-16,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Chris Bos,2022-11-16,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-11-14,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-01-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-02-08,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-02-08,[],IL,102nd +Assigned to State Government,2021-02-24,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Restorative Justice Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Assigned to Housing Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-24,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-18,['referral-committee'],IL,102nd +Assigned to Higher Education,2021-02-24,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-03,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-02-26,[],IL,102nd +Assigned to Insurance Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-02-19,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-24,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government,2021-02-17,['referral-committee'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-04-22,[],IL,102nd +Assigned to Labor,2021-04-07,['referral-committee'],IL,102nd +Assigned to Insurance,2021-03-23,['referral-committee'],IL,102nd +Assigned to Housing Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Scott M. Bennett,2021-04-08,[],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Assigned to State Government,2021-03-09,['referral-committee'],IL,102nd +Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2021-03-22,['committee-passage-favorable'],IL,102nd +Assigned to Judiciary,2021-02-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-28,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-04-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-10-27,[],IL,102nd +Resolution Adopted,2021-10-27,['passage'],IL,102nd +Resolution Adopted,2021-01-13,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-03-04,[],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2021-02-10,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-05-05,[],IL,102nd +Recommends Be Adopted Health Care Licenses Committee; 005-002-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-02-23,['referral-committee'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-05,[],IL,102nd +Assigned to State Government Administration Committee,2021-04-14,['referral-committee'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-05,[],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 018-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +"Recommends Be Adopted - Consent Calendar Museums, Arts, & Cultural Enhancements Committee; 009-000-000",2021-03-25,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-04-23,['passage'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-01-10,[],IL,102nd +"Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2021-04-28,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2021-05-05,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-15,[],IL,102nd +Recommends Be Adopted Financial Institutions Committee; 007-003-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Waive Posting Notice,2021-04-21,[],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2022-01-19,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Assigned to State Government,2021-03-09,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-04,[],IL,102nd +Assigned to Higher Education,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-05-05,[],IL,102nd +Recommends Be Adopted Health Care Availability & Accessibility Committee; 010-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Assigned to State Government Administration Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Tourism and Hospitality,2021-03-03,['referral-committee'],IL,102nd +Recommends Be Adopted Police & Fire Committee; 014-000-000,2021-04-29,['committee-passage-favorable'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-28,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2021-04-27,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Be Adopted State Government; 009-000-000,2021-05-06,['committee-passage-favorable'],IL,102nd +Waive Posting Notice,2021-05-30,[],IL,102nd +Referred to Resolutions Consent Calendar,2021-05-24,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-10,['passage'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-16,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-08-30,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-05-26,[],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2021-02-28,[],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-03,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-08,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-03-08,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-05-24,[],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-04-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance,2022-01-26,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-01-26,[],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Be Adopted Human Rights; 007-001-000,2022-02-17,['committee-passage-favorable'],IL,102nd +Assigned to Higher Education Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Higher Education,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government,2021-04-07,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-11-15,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +To Executive- Government Operations,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-04,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-03-02,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to State Government,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason A. Barickman,2021-02-05,[],IL,102nd +Assigned to Executive Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Energy and Public Utilities,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-03,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-03-09,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Pensions,2021-03-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-01-28,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Healthcare Access and Availability,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-02-25,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2021-02-25,[],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-04,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Criminal Law,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-03-01,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-02-18,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-05-20,[],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2021-02-26,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Assigned to Judiciary,2022-01-05,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-02-19,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-03-03,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Laura Ellman,2021-03-02,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-15,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-11-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-15,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Will Guzzardi,2022-01-24,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Jonathan Carroll",2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-04,[],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Financial Institutions Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Human Rights,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-02,[],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Housing Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Financial Institutions Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-10,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-08-26,['introduction'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Tom Demmer,2021-02-24,[],IL,102nd +Assigned to Veterans Affairs,2021-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-01-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-07-08,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-26,['referral-committee'],IL,102nd +Assigned to Public Safety,2022-02-01,['referral-committee'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Assigned to Financial Institutions Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Will Guzzardi,2021-03-02,[],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-02-09,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-03,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-01,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Thomas Cullerton,2021-08-24,[],IL,102nd +Assigned to Personnel & Pensions Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-03-31,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-04-07,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Criminal Law,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John F. Curran,2022-02-02,[],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Education,2021-03-09,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-06-30,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Mattie Hunter,2021-10-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Pensions,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Criminal Law,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Insurance,2021-03-23,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-08,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-10-14,[],IL,102nd +Assigned to Health,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-07,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason A. Barickman,2021-02-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Public Utilities Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Cristina Castro,2022-01-20,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-01-19,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-01-04,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-05-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy & Environment Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-03-10,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-02-08,[],IL,102nd +Assigned to Education,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-01-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-02-25,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-01-26,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Education,2021-03-03,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-03-01,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-02-22,[],IL,102nd +Assigned to Police & Fire Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-02,[],IL,102nd +Assigned to Local Government,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-02-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-21,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-01-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-02-24,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Police & Fire Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-04-05,['committee-passage-favorable'],IL,102nd +Assigned to Revenue,2021-04-07,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Ann M. Williams,2021-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-26,[],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason A. Barickman,2021-02-05,[],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2021-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-29,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2021-02-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Consumer Protection Committee,2022-02-09,['referral-committee'],IL,102nd +First Reading (Corrected),2021-02-19,['reading-1'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Criminal Law,2022-02-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance,2022-01-11,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2021-03-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-01-04,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-14,[],IL,102nd +Assigned to Consumer Protection Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health,2021-02-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. LaToya Greenwood,2022-02-02,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-11,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-02-03,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2022-01-20,[],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Rep. Terra Costa Howard,2021-03-15,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Assigned to Ethics & Elections Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2022-01-11,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +"Directed to Multiple Committees Human Rights, Education",2021-02-17,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-09,[],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-03,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-15,[],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-19,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Adam Niemerg,2021-04-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Higher Education,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-01-27,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-05,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-24,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2022-01-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-22,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-09,[],IL,102nd +Assigned to Revenue,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Cities & Villages Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-02-25,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +"Directed to Multiple Committees Revenue, Judiciary",2021-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-02-01,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-01-14,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-03,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-10-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2021-03-09,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-01-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2022-02-22,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2022-01-26,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-02-25,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2021-02-26,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Jacqueline Y. Collins,2021-03-10,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Insurance,2021-03-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-12,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2021-01-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor,2021-02-17,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-08,[],IL,102nd +Assigned to Financial Institutions,2021-03-23,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-12-01,[],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Karina Villa,2022-03-02,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-03,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2022-03-03,[],IL,102nd +Assigned to Local Government,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Assigned to Pensions,2021-03-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-18,[],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-01-28,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-11-14,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Chris Bos,2022-03-16,[],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2021-03-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Theresa Mah,2021-03-05,[],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Fine,2022-11-17,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-03,[],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-05-13,[],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Higher Education,2021-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-12,[],IL,102nd +Assigned to State Government,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-26,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-12,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive,2021-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-01-18,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government Administration Committee,2021-05-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Keith P. Sommer,2021-03-03,[],IL,102nd +Assigned to Appropriations,2022-01-11,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2021-05-27,['passage'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-01-20,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-24,[],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Ugaste,2021-03-15,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Education,2022-01-26,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-03-05,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-01-18,[],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2022-01-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-10-28,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2021-03-17,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-15,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-02-01,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Jonathan Carroll,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Licensed Activities,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-02-04,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-03-01,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-02-08,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Agriculture,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Assigned to Local Government,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Chief Co-Sponsor Rep. Tony McCombie,2021-02-19,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2022-01-31,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-23,['referral-committee'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2022-11-14,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-01-11,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Chapin Rose,2022-01-28,[],IL,102nd +Assigned to Energy and Public Utilities,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-12,[],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-02-17,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Health,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Tourism and Hospitality,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Revenue,2022-01-11,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Pensions,2021-02-24,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Housing Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Recommends Be Adopted Economic Opportunity & Equity Committee; 007-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2021-06-16,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-03-03,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Licensed Activities,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Labor,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Education,2021-03-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Kelly M. Burke,2022-08-11,[],IL,102nd +First Reading,2021-02-26,['reading-1'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 021-000-000,2022-02-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-05,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-12,[],IL,102nd +Do Pass / Consent Calendar Energy & Environment Committee; 029-000-000,2021-03-15,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-04-07,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-05,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-05,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Executive Committee; 015-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Workforce Development Subcommittee,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-01-31,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Mike Murphy,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-01-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-05,[],IL,102nd +Do Pass Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2021-03-22,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-11,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Local Government; 009-000-000,2021-03-24,['committee-passage'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-02,['referral-committee'],IL,102nd +To Appropriations- Judiciary,2022-02-01,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-10,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-04,[],IL,102nd +To Local Government Subcommittee,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-02-23,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Tim Butler,2022-08-11,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-11-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-03-04,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass / Standard Debate Executive Committee; 008-006-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Standard Debate Executive Committee; 008-006-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-04,[],IL,102nd +To Public Benefits Subcommittee,2021-03-22,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2021-03-16,['referral-committee'],IL,102nd +To Executive- Elections,2021-04-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-02-02,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-05,[],IL,102nd +Do Pass Education; 013-001-000,2021-03-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +To Executive- Procurement,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Revenue,2022-01-05,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Appropriations- State Law Enforcement,2022-02-01,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-10-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 025-000-000,2021-03-22,['committee-passage'],IL,102nd +To Telecom/Video Subcommittee,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to State Government Administration Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2021-03-16,['amendment-introduction'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jacqueline Y. Collins,2022-02-07,['amendment-introduction'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2022-02-15,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-23,[],IL,102nd +To Financial Protection Subcommittee,2021-03-08,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Do Pass Local Government; 009-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-05-07,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 017-011-000,2021-03-17,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Amy Grant,2021-03-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-02-05,[],IL,102nd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Criminal Law- Clear Compliance,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-04,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2022-02-07,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2022-02-07,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-19,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Brad Halbrook,2021-04-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Human Rights,2021-02-17,['referral-committee'],IL,102nd +Postponed - Higher Education,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 005-003-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-16,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-03-22,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Education,2021-04-07,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-02-26,[],IL,102nd +Assigned to Mental Health & Addiction Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Postponed - State Government,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2022-01-26,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-10-13,[],IL,102nd +To Executive- Cannabis,2021-03-17,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Education,2021-03-03,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Appropriations-Human Services Committee; 015-009-000,2021-03-26,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Assigned to Appropriations,2021-03-16,['referral-committee'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +To Sex Offenses and Sex Offender Registration Subcommittee,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-03-21,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-12-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 008-000-000,2021-03-22,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-03-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Be Adopted Health; 015-000-000,2022-02-16,['committee-passage-favorable'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Postponed - Education,2022-02-09,[],IL,102nd +Assigned to Insurance,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas Morrison,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2022-11-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Judiciary- Privacy,2021-03-16,[],IL,102nd +To Executive- Elections,2021-03-17,[],IL,102nd +To Executive- Government Operations,2021-03-24,[],IL,102nd +Assigned to Judiciary - Civil Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-05-13,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-15,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Postponed - Executive,2021-03-10,[],IL,102nd +To Executive- Cannabis,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-12,[],IL,102nd +"To Appropriations- Agriculture, Environment, and Energy",2022-01-11,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Clean Energy Subcommittee,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Education,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-10-21,[],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-10-28,[],IL,102nd +Assigned to Transportation,2021-04-07,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John F. Curran,2021-04-07,['amendment-introduction'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-02-01,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2022-02-10,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-03-17,[],IL,102nd +Postponed - State Government,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Appropriations-Higher Education Committee; 010-006-000,2021-03-12,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +To Appropriations- Business Regulations and Labor,2022-02-01,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-22,[],IL,102nd +"Motion Do Pass - Lost Elementary & Secondary Education: Administration, Licensing & Charter Schools; 004-000-003",2021-03-17,['committee-failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-02-22,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Postponed - Agriculture,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-04,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2022-02-07,['amendment-introduction'],IL,102nd +Chief Co-Sponsor Rep. Brad Halbrook,2021-02-19,[],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kathleen Willis,2022-02-09,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Postponed - Behavioral and Mental Health,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2022-01-12,['amendment-introduction'],IL,102nd +Recommends Be Adopted Human Services Committee; 013-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +To Small Cell Subcommittee,2021-03-16,[],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2021-03-22,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Pensions,2021-03-03,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Housing Committee; 014-008-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Adam Niemerg,2021-06-16,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-03-18,[],IL,102nd +To Executive- Elections,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 018-011-000,2021-03-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-11,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-03-03,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Appropriations- Human Services,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-02-15,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-03-12,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass State Government; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 019-001-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 005-002-000,2021-03-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-26,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-16,[],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Ellman,2021-02-25,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-20,[],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John F. Curran,2022-02-07,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-02-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-19,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Postponed - Judiciary,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Gaming,2021-03-17,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-03-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Government Operations,2021-04-15,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-03-19,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2022-11-14,[],IL,102nd +Resolution Adopted; 056-000-000,2022-04-09,['passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-02-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Elections,2021-03-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-23,['referral-committee'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2022-02-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-03-10,[],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-07-08,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-02-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Resolution Adopted; 056-000-000,2022-04-09,['passage'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2022-10-03,[],IL,102nd +To Sex Offenses and Sex Offender Registration Subcommittee,2021-03-18,[],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2021-08-26,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-02-26,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-05,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2021-03-22,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Chief Co-Sponsor Changed to Rep. Joyce Mason,2021-02-04,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Postponed - Insurance,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. William Davis,2022-02-09,['amendment-introduction'],IL,102nd +To Executive- Cannabis,2021-03-24,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-02-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Procurement Subcommitee,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Subcommittee on Special Issues (TR),2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Postponed - Pensions,2021-04-14,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Commercial & Property Subcommittee,2021-03-23,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-09,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2022-02-09,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-05-25,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-08,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-08-31,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-01,[],IL,102nd +To Criminal Law- Clear Compliance,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions February 22, 2022",2022-02-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-04-09,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Executive- Elections,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-02-08,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2022-02-09,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2021-03-19,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 006-004-000,2021-03-25,['committee-passage'],IL,102nd +To Subcommittee on Children & Family,2021-03-09,[],IL,102nd +To Executive- Government Operations,2021-03-10,[],IL,102nd +To Executive- Elections,2021-04-15,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Subcommittee on Rate Reform and Energy,2021-03-19,[],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Chief Sponsor Changed to Rep. Lamont J. Robinson, Jr.",2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Dan McConchie,2022-01-31,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Appropriations- Judiciary,2022-01-26,[],IL,102nd +To Subcommittee on Special Issues (TR),2021-03-24,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2021-03-09,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-22,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2022-03-04,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-01-20,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-19,[],IL,102nd +Postponed - Transportation,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-01-18,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-22,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-17,[],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-24,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +To Criminal Law- Clear Compliance,2021-03-16,[],IL,102nd +To Executive- Government Operations,2021-04-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John Connor,2021-04-09,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Unemployment Insurance,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-04-07,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-03-11,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2021-03-17,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Assigned to Revenue,2021-04-07,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-08,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2022-03-08,[],IL,102nd +To Executive- Procurement,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Energy & Environment Committee; 028-000-000,2022-02-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Workforce Development Subcommittee,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Thomas M. Bennett,2021-10-28,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2022-02-02,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Procurement,2022-02-07,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-04,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-05-05,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Postponed - Revenue,2022-02-10,[],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +To Executive- Liquor,2021-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Commercial & Property Subcommittee,2021-03-23,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-02-25,[],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-03-18,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-22,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-10,[],IL,102nd +To Executive- Gaming,2021-04-15,[],IL,102nd +Assigned to Appropriations,2021-03-03,['referral-committee'],IL,102nd +To Appropriations- Health,2022-02-01,[],IL,102nd +Postponed - Education,2021-03-16,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Assigned to Revenue,2021-02-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-10,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Health,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-10,[],IL,102nd +Do Pass / Consent Calendar Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2021-03-24,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-07,[],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2022-03-10,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Do Pass / Short Debate Adoption & Child Welfare Committee; 008-000-000,2022-02-15,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 016-000-000,2022-02-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-03-23,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-02-24,[],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Appropriations- Higher Education,2021-03-03,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 012-002-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 012-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +To Subcommittee on Special Issues (TR),2021-03-24,[],IL,102nd +Do Pass / Short Debate Financial Institutions Committee; 010-000-000,2022-02-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Robert Rita,2021-03-10,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-03-05,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2021-03-19,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-03-04,[],IL,102nd +Assigned to Police & Fire Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Insurance Committee; 016-000-000,2022-02-15,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-14,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-26,[],IL,102nd +Do Pass Licensed Activities; 009-000-000,2021-03-24,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-02-05,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-01,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Motion Do Pass - Lost Transportation: Regulation, Roads & Bridges Committee; 004-007-000",2022-02-15,['committee-failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-04-20,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-01,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Cities & Villages Committee; 011-000-000,2022-02-15,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-01-27,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-17,[],IL,102nd +Assigned to Health,2022-01-05,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Executive Committee; 013-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Adam Niemerg,2021-02-08,[],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-03-16,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-02-17,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Chief Sponsor Changed to Sen. Cristina H. Pacione-Zayas,2022-01-05,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-14,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Re-referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-04,[],IL,102nd +Do Pass Revenue; 006-003-000,2021-04-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Commerce; 009-000-000,2021-03-25,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-11-19,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-16,[],IL,102nd +To Subcommittee on Public Health,2021-03-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-10,[],IL,102nd +Do Pass / Short Debate Insurance Committee; 017-000-000,2022-02-10,['committee-passage'],IL,102nd +Resolution Adopted,2021-01-13,['passage'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-23,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-23,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +To Subcommittee on Medicaid,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-03-16,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-01,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass Pensions; 008-000-000,2022-02-09,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-04-09,['amendment-introduction'],IL,102nd +Postponed - Energy and Public Utilities,2022-02-10,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2022-01-31,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass State Government; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John Connor,2022-02-10,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2022-02-09,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-25,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-02-05,[],IL,102nd +Postponed - Executive,2021-03-17,[],IL,102nd +To Judiciary- Property Law,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-01-31,[],IL,102nd +Do Pass / Consent Calendar Public Utilities Committee; 024-000-000,2022-02-01,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Commerce,2022-01-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Licensed Activities; 009-000-000,2022-02-07,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Thomas Cullerton,2021-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Education,2021-03-03,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-03-01,[],IL,102nd +To Executive- Procurement,2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Chapin Rose,2021-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2022-01-31,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Judiciary,2022-01-26,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-22,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Public Utilities Committee; 025-000-000,2021-03-22,['committee-passage'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 025-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2022-01-27,[],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-03,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-02-15,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Consent Calendar Housing Committee; 022-000-000,2022-02-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-25,[],IL,102nd +To Procurement Subcommitee,2021-03-17,[],IL,102nd +Assigned to State Government Administration Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-14,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2022-02-09,['committee-passage-favorable'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-03-22,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John F. Curran,2022-02-07,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 010-006-000,2021-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-10-12,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-01-31,['amendment-introduction'],IL,102nd +Do Pass Health; 013-000-000,2022-02-09,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Elections,2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Insurance Review Subcommittee,2022-02-17,[],IL,102nd +To Executive- Tobacco,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-01-19,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Executive- Government Operations,2021-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Appropriations- Human Services,2021-03-03,[],IL,102nd +Do Pass Criminal Law; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Prescription Drug Affordability & Accessibility Committee; 011-008-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Assigned to Museums, Arts, & Cultural Enhancements Committee",2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Cities & Villages Committee; 012-000-000,2021-03-23,['committee-passage'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-03-15,['amendment-introduction'],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 007-000-000,2022-03-09,['committee-passage-favorable'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Health; 013-000-000,2022-02-07,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-17,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-17,[],IL,102nd +Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2022-03-08,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-30,[],IL,102nd +Do Pass Education; 014-000-000,2022-02-09,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2022-01-12,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-001-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-12,[],IL,102nd +To Executive- Elections,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joe Sosnowski,2021-03-15,['amendment-introduction'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 023-000-000,2022-02-15,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-10-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-08,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-03-22,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Revenue; 011-000-000,2022-02-10,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-02-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2021-03-24,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Executive,2021-04-15,[],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2021-03-04,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-02-07,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 007-000-000,2021-03-10,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-001",2022-02-02,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-01-27,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2021-03-22,['amendment-introduction'],IL,102nd +Resolution Adopted; 053-000-000,2023-01-10,['passage'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-01-25,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Judiciary; 006-000-000,2022-01-18,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-03-09,[],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2021-04-08,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Commerce; 012-000-000,2022-02-10,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-06,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2022-02-10,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Elections,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-01-07,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Do Pass Criminal Law; 009-000-000,2022-02-07,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-01,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Carol Ammons,2021-03-01,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-02-15,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Revenue; 010-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Revenue; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-01-25,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-08-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2021-02-19,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-01-26,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Gaming,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Commerce,2022-02-01,['referral-committee'],IL,102nd +To Appropriations- Higher Education,2022-01-26,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Health; 013-000-000,2022-01-18,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-01-26,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass State Government; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +To Appropriations- Business Regulations and Labor,2021-03-23,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass Revenue; 009-000-000,2022-02-07,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-03-16,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass State Government; 008-000-000,2022-02-07,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Counties & Townships Committee; 010-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Transportation; 016-000-000,2022-02-09,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-01-28,[],IL,102nd +To Appropriations- Higher Education,2022-02-01,[],IL,102nd +Do Pass / Standard Debate Executive Committee; 008-006-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Local Government,2021-03-16,['referral-committee'],IL,102nd +To Appropriations- Human Services,2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-01,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Resolution Adopted 065-000-001,2022-04-04,['passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Sponsor Removed Sen. Scott M. Bennett,2021-03-10,[],IL,102nd +To Criminal Law- Clear Compliance,2022-02-09,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-10,[],IL,102nd +To Operations Subcommittee,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Workforce Development Subcommittee,2021-03-05,[],IL,102nd +Do Pass / Short Debate Immigration & Human Rights Committee; 005-003-000,2021-03-10,['committee-passage'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2022-02-10,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-11,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-03-29,[],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-07,[],IL,102nd +To Executive- Gaming,2022-02-07,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2022-02-10,['amendment-introduction'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - State Government,2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-04-06,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 005-003-000,2022-02-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-02-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Licensed Activities; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Adam Niemerg,2021-01-27,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-04-21,[],IL,102nd +Do Pass Revenue; 009-000-000,2022-02-07,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2022-01-27,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Appropriations- Health,2022-02-01,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass Transportation; 019-000-000,2022-02-09,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Transportation,2022-02-01,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-09,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2021-03-15,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Pensions; 008-000-000,2022-02-07,['committee-passage'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Terri Bryant,2021-04-08,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Re-assigned to State Government,2022-01-05,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Criminal Law,2022-01-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2022-02-01,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael Halpin,2022-02-15,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-29,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2022-02-07,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2022-02-01,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-01-29,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Education,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Ann M. Williams,2022-02-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-03-05,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Postponed - Healthcare Access and Availability,2022-02-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-03-19,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Steve McClure,2022-01-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Public Benefits Subcommittee,2021-03-02,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Revenue,2022-01-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2022-02-15,['amendment-introduction'],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Behavioral and Mental Health; 010-000-000,2022-02-07,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-22,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-22,[],IL,102nd +To Executive- Elections,2021-04-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Counties & Townships Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-000",2022-02-16,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-03-09,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-02-03,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-23,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-14,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-10-04,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 028-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Sex Offenses and Sex Offender Registration Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2022-02-15,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-11-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-01-26,[],IL,102nd +Assigned to Transportation,2022-02-08,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2021-03-10,[],IL,102nd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 012-000-000,2022-02-15,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-02-25,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions February 24, 2022",2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-22,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-07,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2022-02-07,['amendment-introduction'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-01-25,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Do Pass Insurance; 012-000-000,2022-01-12,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-03-23,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-17,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-08,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-03-10,[],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Labor,2022-01-26,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass State Government; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Chief Sponsor Changed to Rep. Debbie Meyers-Martin,2021-03-23,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Darren Bailey,2021-03-18,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-01,[],IL,102nd +Do Pass Revenue; 009-000-000,2022-02-07,['committee-passage'],IL,102nd +Postponed - Energy and Public Utilities,2022-02-10,[],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Postponed - Revenue,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-05-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-02-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2022-02-07,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-02-04,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2021-04-08,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. La Shawn K. Ford",2022-02-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2021-03-16,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Elizabeth Hernandez,2021-03-23,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-05-19,[],IL,102nd +Postponed - Pensions,2021-03-03,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-02-10,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-12-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-03-02,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. David A. Welter,2021-03-22,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Executive- Firearms,2021-04-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-10,[],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2022-01-31,['amendment-introduction'],IL,102nd +Do Pass State Government; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Education; 015-000-000,2022-02-09,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-01-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Wage Policy & Study Subcommittee,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Subcommittee on Long-Term Care & Aging,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 022-004-000,2022-02-02,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-02-09,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Behavioral and Mental Health,2021-04-07,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 015-000-000,2022-02-02,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-03-30,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2022-02-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Revenue; 009-000-000,2021-03-19,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Judiciary; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 016-000-000,2021-03-16,['committee-passage'],IL,102nd +Do Pass / Standard Debate Executive Committee; 008-006-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Family Law & Probate Subcommittee,2021-03-23,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2022-01-31,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-03-05,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Assigned to Labor,2021-04-07,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 008-000-000,2022-02-15,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Do Pass / Short Debate Insurance Committee; 016-002-000,2021-03-25,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-10-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Financial Institutions,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2022-02-03,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-04-23,[],IL,102nd +"To Roadways, Rail & Aviation Subcommittee",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-01-31,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2022-02-15,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2022-02-04,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-04,[],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-23,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-03-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-11-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Procurement,2022-02-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-12-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to State Government Administration Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-02-23,['referral-committee'],IL,102nd +To Executive- Firearms,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass State Government; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-02,[],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-26,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 018-008-000,2022-02-16,['committee-passage'],IL,102nd +Postponed - Revenue,2021-03-24,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2022-01-25,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +"Motion Do Pass - Lost Transportation: Regulation, Roads & Bridges Committee; 005-008-000",2022-02-15,['committee-failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-04-13,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Judiciary- Property Law,2021-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-11,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Postponed - Agriculture,2022-02-07,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Executive- Procurement,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-04,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 020-004-000,2022-02-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-01,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-07-19,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. William Davis,2021-03-18,['amendment-introduction'],IL,102nd +To Judiciary- Property Law,2022-02-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-22,[],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 010-001-000",2022-02-15,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Financial Institutions Committee; 009-000-000,2022-02-15,['committee-passage'],IL,102nd +To Appropriations- Health,2022-01-26,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-03-15,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2022-02-10,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-17,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +To Appropriations- Business Regulations and Labor,2022-01-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-22,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Postponed - Pensions,2021-03-03,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Special Issues (HS) Subcommittee,2022-02-09,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-08-24,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +To Executive- Government Operations,2021-03-24,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 010-008-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Special Issues,2021-04-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Postponed - Judiciary,2021-03-09,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 005-003-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-04,[],IL,102nd +Chief Sponsor Changed to Rep. Mark L. Walker,2021-03-03,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Judiciary; 007-000-000,2022-02-09,['committee-passage'],IL,102nd +To Small Cell Subcommittee,2021-03-16,[],IL,102nd +Do Pass / Consent Calendar Police & Fire Committee; 015-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-10-13,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-24,[],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Joe Sosnowski",2021-03-08,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Child Care Accessibility & Early Childhood Education Committee; 010-000-000,2021-03-26,['committee-passage'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2022-02-10,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Sen. Mike Simmons,2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-18,[],IL,102nd +To Transportation Issues Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John Connor,2021-03-09,['amendment-introduction'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +To Appropriations- Education,2021-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Waive Posting Notice,2022-02-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-05,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Standard Debate Executive Committee; 008-006-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Medicaid & Managed Care Subcommittee,2021-03-05,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2021-04-06,['amendment-introduction'],IL,102nd +Assigned to State Government Administration Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Subcommittee on Managed Care Organizations (MCO's),2021-03-24,[],IL,102nd +To Executive- Firearms,2021-04-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Commercial & Property Subcommittee,2021-03-23,[],IL,102nd +Assigned to Human Services Committee,2022-02-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2022-01-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +To Appropriations- Revenue and Finance,2021-03-03,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-18,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Operations Subcommittee,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Public Utilities Committee; 024-000-000,2021-03-22,['committee-passage'],IL,102nd +Do Pass / Short Debate Tourism Committee; 010-000-000,2021-03-25,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-10-13,[],IL,102nd +Do Pass Judiciary; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2021-03-15,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Appropriations- Education,2022-01-26,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-01,[],IL,102nd +To Judiciary- Privacy,2021-03-09,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-01-26,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to State Government,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-05,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-11,[],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Postponed - Higher Education,2021-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Appropriations- Business Regulations and Labor,2022-02-01,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Lance Yednock",2021-03-17,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Lance Yednock",2021-03-17,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 009-005-002,2021-03-23,['committee-passage'],IL,102nd +To Executive- Cannabis,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-03-02,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-01-29,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-10-13,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 016-000-000,2021-03-23,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-10,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-05,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Liquor,2022-02-07,[],IL,102nd +To Unemployment Insurance,2022-02-07,[],IL,102nd +Do Pass / Short Debate Appropriations-Human Services Committee; 024-000-000,2021-03-26,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-04-05,[],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +To Income Tax Subcommittee,2021-03-04,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. William Davis,2021-03-22,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Human Services Committee; 009-005-000,2021-03-23,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +To Business & Innovation Subcommittee,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Liquor,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2022-01-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-02-26,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Subcommittee on Medicaid,2021-03-09,[],IL,102nd +To Executive- Government Operations,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-02-09,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Postponed - Healthcare Access and Availability,2021-04-14,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-05,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 021-000-000,2022-01-18,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-03-04,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-17,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Judiciary- Torts,2021-03-03,[],IL,102nd +To Appropriations- Health,2022-01-11,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-02,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Suspend Rule 21 - Prevailed,2021-10-27,[],IL,102nd +To Executive- Special Issues,2021-03-10,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2022-02-09,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-11-10,[],IL,102nd +To Public Benefits Subcommittee,2021-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Fiscal Note Requested by Rep. Deanne M. Mazzochi,2022-02-16,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2021-02-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kathleen Willis,2021-03-22,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Medicaid Subcommittee,2021-03-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Licensed Activities,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-09,[],IL,102nd +Do Pass Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Postponed - Licensed Activities,2022-02-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2022-02-02,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-11,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +To Appropriations- Judiciary,2021-03-16,[],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Local Government,2021-03-23,['referral-committee'],IL,102nd +To Commercial & Property Subcommittee,2021-03-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-03-18,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-03-18,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-02-26,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Criminal Law- Clear Compliance,2022-02-09,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2021-03-17,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Financial Institutions; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 021-004-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Dagmara Avelar,2021-02-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2022-02-15,[],IL,102nd +Postponed - Pensions,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-22,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 006-004-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Pensions,2021-03-03,[],IL,102nd +"Motion Do Pass - Lost Transportation: Regulation, Roads & Bridges Committee; 004-008-000",2022-02-15,['committee-failure'],IL,102nd +To Property Tax Subcommittee,2021-03-04,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-01-27,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2022-02-08,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2022-01-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Ryan Spain,2021-02-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2022-02-09,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Insurance Committee; 016-000-000,2022-02-15,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tim Butler,2021-03-16,['amendment-introduction'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Pensions; 008-000-000,2022-02-09,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-02-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-05-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-04,[],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +Added as Chief Co-Sponsor Sen. Win Stoller,2022-01-12,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-10,[],IL,102nd +To Appropriations- Human Services,2022-02-01,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Norine K. Hammond,2021-03-15,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sam Yingling,2021-03-24,['amendment-introduction'],IL,102nd +To Appropriations- Criminal Justice,2022-02-01,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-26,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2021-03-18,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-18,[],IL,102nd +Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2022-02-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 015-006-000,2022-02-15,['committee-passage'],IL,102nd +To Executive- Procurement,2021-03-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Subcommittee on Special Issues (TR),2021-03-24,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-03-22,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 005-003-000,2022-02-16,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2022-01-25,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Judiciary,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Criminal Law; 009-000-000,2022-02-07,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-02-25,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-01,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 008-000-000,2021-03-22,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-01-26,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2022-02-15,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Veterans Affairs,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Steven Reick,2021-03-19,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2021-03-24,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Transportation Issues Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Pensions; 008-000-000,2022-02-09,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +To Appropriations- Health,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-25,[],IL,102nd +Do Pass / Consent Calendar Appropriations-Public Safety Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-02-19,[],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Appropriations- General Services,2021-04-07,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 008-000-000,2022-02-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-01-18,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-16,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Unemployment Insurance,2022-02-07,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-01,[],IL,102nd +To Income Tax Subcommittee,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Read in Full a First Time,2021-02-08,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-19,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-01,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Assigned to Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michael Kelly,2022-07-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 015-000-000,2022-02-02,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Immigration & Human Rights Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 005-003-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Appropriations- Criminal Justice,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-09,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-02,[],IL,102nd +To Executive- Procurement,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2022-03-10,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-02-19,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 007-000-000,2021-03-10,['committee-passage'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Do Pass Executive; 014-001-000,2021-03-10,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-17,[],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-11,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Postponed - Judiciary,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-02-23,[],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2022-02-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Thaddeus Jones,2021-03-10,[],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 017-000-000,2022-02-10,['committee-passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Do Pass Behavioral and Mental Health; 011-000-000,2021-03-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-02-06,[],IL,102nd +Do Pass Judiciary; 008-000-000,2021-03-16,['committee-passage'],IL,102nd +Do Pass Local Government; 009-000-000,2021-03-09,['committee-passage'],IL,102nd +To Subcommittee on Medicaid,2021-03-31,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions October 27, 2021",2021-10-26,[],IL,102nd +Do Pass / Short Debate Mental Health & Addiction Committee; 011-005-000,2022-02-03,['committee-passage'],IL,102nd +Postponed - Transportation,2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-03-26,['amendment-introduction'],IL,102nd +Recommends Be Adopted Higher Education Committee; 010-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2022-01-31,['amendment-introduction'],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Assigned to Revenue,2021-04-07,['referral-committee'],IL,102nd +Do Pass Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-08-31,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John Connor,2021-03-19,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-26,[],IL,102nd +Do Pass Judiciary; 008-000-000,2021-03-03,['committee-passage'],IL,102nd +Do Pass Health; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Postponed - Revenue,2021-03-24,[],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 016-000-000,2021-03-16,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-03-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Health,2021-03-16,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-05-06,[],IL,102nd +Assigned to Consumer Protection Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-19,[],IL,102nd +Do Pass Financial Institutions; 006-000-000,2021-03-05,['committee-passage'],IL,102nd +Do Pass Judiciary; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Nicholas K. Smith,2021-03-09,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Mental Health & Addiction Committee; 015-000-000,2021-03-19,['committee-passage'],IL,102nd +Assigned to Revenue,2021-02-09,['referral-committee'],IL,102nd +Be Adopted Education; 011-000-000,2022-03-09,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-06,[],IL,102nd +Do Pass Health; 014-000-000,2022-02-09,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-06,[],IL,102nd +Do Pass Revenue; 008-001-000,2021-04-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-01,[],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-03-23,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-03-23,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Be Adopted Environment and Conservation; 009-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-06,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John Connor,2021-02-18,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 010-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Higher Education; 013-000-000,2021-03-16,['committee-passage'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-01,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2023-01-06,[],IL,102nd +Do Pass Agriculture; 014-000-000,2021-03-25,['committee-passage'],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-05,[],IL,102nd +Arrived in House,2021-10-20,['introduction'],IL,102nd +Be Adopted Executive; 016-000-000,2021-05-29,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +Do Pass Judiciary; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Assigned to Healthcare Access and Availability,2022-01-11,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Resolution Adopted; 039-017-000,2021-01-13,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Antonio Muñoz,2021-03-24,[],IL,102nd +"Recommends Be Adopted - Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2021-03-22,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-01-13,['passage'],IL,102nd +Resolution Adopted,2021-01-13,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Resolution Adopted; 057-000-000,2021-01-13,['passage'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-10,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 024-001-000,2021-03-22,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-03-21,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Rules Committee; by Voice Vote,2021-02-10,['amendment-passage'],IL,102nd +Recommends Be Adopted - Consent Calendar State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage-favorable'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2022-02-01,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 007-000-000,2022-01-26,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Elizabeth Hernandez,2022-02-10,['amendment-introduction'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-17,['referral-committee'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2022-12-30,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 013-000-001,2021-03-23,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-04,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-04-05,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 013-002-000,2021-03-09,['committee-passage'],IL,102nd +Arrived in House,2021-04-15,['introduction'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-05-05,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2021-03-15,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-14,[],IL,102nd +Assigned to Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-02-05,[],IL,102nd +Recommends Be Adopted - Consent Calendar Agriculture & Conservation Committee; 008-000-000,2021-03-22,['committee-passage-favorable'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2021-03-22,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-04-07,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +Be Adopted State Government; 006-000-000,2021-05-26,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-04-05,[],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2021-05-05,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Avery Bourne,2021-02-18,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-31,[],IL,102nd +Arrived in House,2021-01-14,['introduction'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Postponed - Transportation,2021-03-24,[],IL,102nd +Assigned to Insurance Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor All Other Members of the House,2021-10-27,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-03,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2021-03-22,['amendment-introduction'],IL,102nd +Recommends Be Adopted Economic Opportunity & Equity Committee; 005-000-001,2021-04-27,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-02-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2022-03-24,[],IL,102nd +Recommends Be Adopted Economic Opportunity & Equity Committee; 005-000-000,2021-04-27,['committee-passage-favorable'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-01-19,['referral-committee'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2022-12-06,[],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-16,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2021-03-17,['amendment-introduction'],IL,102nd +Chief Co-Sponsor Rep. Ryan Spain,2021-02-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Joe Sosnowski,2021-04-16,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-04,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dan Brady,2021-03-24,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Economic Opportunity & Equity Committee; 006-000-002,2021-03-10,['committee-passage'],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-03-19,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-04-08,[],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2021-03-26,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-12,[],IL,102nd +Assigned to Health,2021-03-23,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-02-23,['referral-committee'],IL,102nd +Arrived in House,2022-04-09,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2021-04-05,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-01-21,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 016-000-000,2021-03-23,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2021-02-18,[],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-03-09,['committee-passage'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-03-09,[],IL,102nd +Do Pass Licensed Activities; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-16,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-16,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason A. Barickman,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2023-01-06,[],IL,102nd +Do Pass Transportation; 019-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Counties & Townships Committee; 011-000-000,2021-03-05,['committee-passage'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2021-03-11,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-01-19,[],IL,102nd +Do Pass Local Government; 009-000-000,2021-03-16,['committee-passage'],IL,102nd +Do Pass Insurance; 010-000-000,2021-04-15,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2021-03-05,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-04-08,['amendment-introduction'],IL,102nd +Resolution Adopted,2021-04-22,['passage'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 006-004-000,2021-03-18,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2021-04-16,['amendment-introduction'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-18,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-01-19,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-03-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-08,[],IL,102nd +Assigned to Human Rights,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-01-19,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-11,[],IL,102nd +Do Pass Judiciary; 007-000-000,2021-03-09,['committee-passage'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 005-002-000,2021-03-19,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-02,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jacqueline Y. Collins,2021-04-09,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 019-000-000,2021-03-08,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +Postponed - Revenue,2021-03-24,[],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 019-000-000,2021-03-15,['committee-passage'],IL,102nd +Assigned to Health,2021-03-03,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason A. Barickman,2021-05-25,[],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 005-003-000,2021-03-12,['committee-passage'],IL,102nd +Postponed - Higher Education,2021-03-16,[],IL,102nd +Assigned to State Government Administration Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass Judiciary; 008-000-000,2021-03-16,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. John C. D'Amico,2021-02-26,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-03-10,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2021-03-23,['amendment-introduction'],IL,102nd +Postponed - Higher Education,2021-03-24,[],IL,102nd +Do Pass / Consent Calendar Appropriations-General Services Committee; 016-000-000,2021-03-25,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. William Davis,2021-03-18,['amendment-introduction'],IL,102nd +Do Pass Transportation; 018-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Judiciary; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-09,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Restorative Justice Committee; 004-002-000,2021-03-25,['committee-passage'],IL,102nd +To Subcommittee on Children & Family,2021-03-16,[],IL,102nd +Assigned to Housing Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-12-01,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-05-28,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-10,[],IL,102nd +Be Adopted Health; 011-000-000,2021-05-29,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-11,[],IL,102nd +Do Pass State Government; 006-000-000,2021-03-10,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2021-03-02,['amendment-introduction'],IL,102nd +Assigned to Transportation,2021-04-07,['referral-committee'],IL,102nd +Do Pass Appropriations; 008-004-000,2021-04-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +Do Pass Higher Education; 014-000-000,2021-03-16,['committee-passage'],IL,102nd +Assigned to Revenue,2021-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2021-03-22,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +Assigned to Labor,2022-01-26,['referral-committee'],IL,102nd +To Judiciary- Property Law,2021-03-09,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-26,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-09,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-02,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Arrived in House,2022-12-01,['introduction'],IL,102nd +Do Pass / Consent Calendar Mental Health & Addiction Committee; 016-000-000,2021-03-26,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +To Subcommittee on Children & Family,2021-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-02-16,[],IL,102nd +Do Pass / Short Debate Adoption & Child Welfare Committee; 008-000-000,2021-03-22,['committee-passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Human Rights,2022-02-01,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Be Adopted State Government; 009-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Do Pass Pensions; 008-000-000,2021-03-10,['committee-passage'],IL,102nd +Do Pass Judiciary; 008-000-000,2021-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-02-01,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Postponed - Higher Education,2021-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-02-26,[],IL,102nd +Removed Co-Sponsor Rep. Katie Stuart,2022-11-17,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2021-04-09,['amendment-introduction'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-02,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jason A. Barickman,2021-03-05,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 028-000-000,2021-03-10,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Do Pass State Government; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-16,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Frances Ann Hurley,2021-03-01,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-01-19,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Do Pass Judiciary; 008-000-000,2021-03-03,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Consent Calendar Police & Fire Committee; 015-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-06-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Brad Halbrook,2021-02-03,[],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-25,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Postponed - Judiciary,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-04,[],IL,102nd +To Executive- Procurement,2021-03-10,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +To Utilities Subcommittee,2021-03-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-08-09,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2021-03-24,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dan Brady,2021-03-19,['amendment-introduction'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +To Unemployment Insurance,2022-02-07,[],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-08-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2022-02-03,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Labor,2021-04-14,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-04,[],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Assigned to Human Services Committee,2022-02-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 010-000-000,2021-03-18,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Appropriations; 008-004-000,2021-04-15,['committee-passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-02-28,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-20,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2022-01-26,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2022-02-03,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-01,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Liquor,2022-02-07,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Mental Health & Addiction Committee; 015-000-000,2021-03-19,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2022-02-10,['committee-passage'],IL,102nd +Assigned to Counties & Townships Committee,2021-03-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2022-02-15,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-03-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-11,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Veterans' Affairs Committee; 006-000-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass State Government; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-01-19,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Transportation,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Fine,2021-02-25,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-01-31,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2021-03-18,['amendment-introduction'],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-03-17,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Appropriations- Human Services,2022-02-01,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Gaming,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Education,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Telecom/Video Subcommittee,2022-02-16,[],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-02-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-02-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-02-26,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2022-02-15,['amendment-introduction'],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-02-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-03-24,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2022-02-07,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-02-24,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-01-11,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 023-001-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-02-19,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 005-003-000,2022-02-16,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-01-11,[],IL,102nd +To Transportation Issues Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Directed to Multiple Committees Agriculture, Revenue Committee",2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-01,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Appropriations-Elementary & Secondary Education Committee; 010-006-000,2021-03-26,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Executive,2022-01-26,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Appropriations- Human Services,2021-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-04-06,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-17,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-03-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2021-04-09,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-04-14,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-05,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2021-03-25,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-01-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-10,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-03-17,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Education; 011-002-000,2021-04-14,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-03-15,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Keith R. Wheeler,2021-03-19,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Postponed - Pensions,2021-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-01-18,[],IL,102nd +To Executive- Special Issues,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-10-20,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sue Scherer,2021-03-17,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Added Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +To Executive- Procurement,2022-02-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Restorative Justice Committee; 004-002-000,2021-03-25,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-18,[],IL,102nd +Assigned to Police & Fire Committee,2022-02-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Patrick Windhorst,2021-03-22,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-10-21,[],IL,102nd +To Executive- Elections,2021-03-24,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 005-003-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-01-26,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-11,[],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-05-27,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Judiciary- Property Law,2021-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Appropriations-Higher Education Committee; 012-003-000,2021-03-19,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 010-000-000,2021-03-25,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Behavioral and Mental Health; 010-000-000,2022-02-09,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Assigned to Energy and Public Utilities,2022-01-26,['referral-committee'],IL,102nd +To Judiciary- Property Law,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Human Rights; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +Do Pass / Short Debate Insurance Committee; 011-005-000,2021-03-22,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Postponed - Energy and Public Utilities,2021-04-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2022-02-03,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 009-000-000,2021-03-24,['committee-passage'],IL,102nd +To Judiciary- Privacy,2021-03-09,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-05-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Fine,2022-02-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2021-05-12,[],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Cities & Villages Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-09,[],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-24,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-15,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +To Criminal Law- Clear Compliance,2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-03-18,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-02-25,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2022-02-10,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2021-03-10,['amendment-introduction'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Healthcare Access and Availability; 010-000-000,2021-03-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Arrived in House,2021-03-17,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Judiciary; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Appropriations- Education,2021-04-07,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 028-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass Judiciary; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Elections,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Appropriations- Personnel and Procurement,2022-02-01,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Donald P. DeWitte,2021-03-10,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Veterans' Affairs Committee; 006-000-000,2021-03-16,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Robert Rita,2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sue Scherer,2022-02-14,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-17,[],IL,102nd +Do Pass State Government; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +To Law Enforcement Subcommittee,2022-01-28,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass Judiciary; 008-000-000,2021-04-14,['committee-passage'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Adoption & Child Welfare Committee; 008-000-000,2021-03-22,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Transportation Issues Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Adoption & Child Welfare Committee; 008-000-000,2021-03-22,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Transportation; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 018-000-000,2021-03-22,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2021-03-22,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2021-03-22,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Adoption & Child Welfare Committee; 008-000-000,2021-03-22,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2022-01-27,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +To Judiciary- Torts,2021-03-03,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-15,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2021-03-24,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Gaming,2021-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-02-07,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +To Appropriations- Judiciary,2022-02-01,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 008-000-000,2021-03-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-15,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2021-04-09,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-18,[],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-19,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-11-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Criminal Law,2021-03-24,[],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 008-000-000,2021-03-22,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. William Davis,2021-03-23,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas M. Bennett,2021-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-04-16,['amendment-introduction'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2021-03-24,['committee-passage'],IL,102nd +Do Pass Healthcare Access and Availability; 007-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Criminal Law; 010-000-000,2021-04-14,['committee-passage'],IL,102nd +To Executive- Elections,2021-04-15,[],IL,102nd +Do Pass Judiciary; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2021-03-25,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2021-03-22,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-09,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-02-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 024-002-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-01-20,[],IL,102nd +Assigned to Energy and Public Utilities,2021-03-23,['referral-committee'],IL,102nd +Postponed - State Government,2022-02-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Added Chief Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-11,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Subcommittee on Children & Family,2021-02-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-02-26,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-03-25,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2022-02-09,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 006-000-000,2022-02-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Do Pass / Short Debate Financial Institutions Committee; 009-000-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Judiciary- Privacy,2021-03-03,[],IL,102nd +Do Pass Executive; 015-000-000,2021-04-15,['committee-passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Fiscal Note Requested by Rep. Deanne M. Mazzochi,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +To Criminal Law- Clear Compliance,2021-03-16,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-03-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-02-22,[],IL,102nd +Do Pass / Consent Calendar Counties & Townships Committee; 011-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Appropriations-Public Safety Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-11,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-02,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Margaret Croke",2021-02-23,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Nicholas K. Smith,2021-03-19,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 017-000-000,2021-03-26,['committee-passage'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Elections,2021-03-17,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-12-15,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Licensed Activities,2021-03-16,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +To Judiciary- Torts,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2021-03-16,['amendment-introduction'],IL,102nd +To Subcommittee on Medicaid,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John Connor,2021-03-23,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Education; 012-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-03-23,[],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-16,[],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-02-10,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-01-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Postponed - Human Rights,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Subcommittee on Medicaid,2021-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Procurement,2022-02-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-03-15,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-09-28,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2022-02-09,['amendment-introduction'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2022-02-09,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Subcommittee on Medicaid,2021-03-31,[],IL,102nd +To Subcommittee on Medicaid,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Motion Do Pass - Lost Child Care Accessibility & Early Childhood Education Committee; 004-006-000,2021-03-26,['committee-failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Do Pass Appropriations; 008-004-000,2021-04-15,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Tony McCombie,2022-02-08,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-06-01,[],IL,102nd +To Executive- Consolidation,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-01-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-01,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Motion Do Pass - Lost Higher Education Committee; 004-006-000,2021-03-25,['committee-failure'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-02-03,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Local Government; 009-000-000,2021-03-09,['committee-passage'],IL,102nd +To Appropriations- Human Services,2021-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 022-000-000,2022-02-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 009-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2022-01-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-24,[],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Assigned to Education,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-03-19,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 029-000-000,2021-03-22,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Judiciary; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Insurance Review Subcommittee,2021-03-23,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-04,[],IL,102nd +Do Pass Judiciary; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Elections,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Thomas Morrison,2021-03-22,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. William Davis,2021-03-09,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Judiciary- Torts,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Criminal Law- Clear Compliance,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Appropriations- General Services,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-24,[],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-02-15,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Special Issues (INS) Subcommittee,2021-03-23,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Thomas M. Bennett,2021-03-23,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-02,[],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Do Pass Education; 013-000-000,2022-11-29,['committee-passage'],IL,102nd +To Appropriations- Criminal Justice,2022-01-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Utilities Subcommittee,2022-02-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Appropriations; 008-004-000,2021-04-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-02,[],IL,102nd +Do Pass / Consent Calendar Cities & Villages Committee; 010-000-000,2021-03-16,['committee-passage'],IL,102nd +Do Pass Local Government; 007-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-04-05,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions March 16, 2021",2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-02-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Amy Grant,2021-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2022-02-07,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-11,[],IL,102nd +Do Pass Executive; 014-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2022-02-07,['amendment-introduction'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2021-03-24,['amendment-introduction'],IL,102nd +Assigned to Revenue,2022-02-01,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sue Scherer,2021-03-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-02-24,[],IL,102nd +Do Pass Commerce; 009-000-000,2021-03-25,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-23,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Health,2021-03-03,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-01-18,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Sam Yingling,2021-03-03,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Subcommittee on Children & Family,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-03,[],IL,102nd +Do Pass Education; 013-000-000,2022-02-09,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-11-30,[],IL,102nd +Chief Sponsor Changed to Rep. Carol Ammons,2022-02-09,[],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-10,[],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 006-000-000,2021-03-01,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Appropriations-Public Safety Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-01-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Procurement,2022-02-07,[],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-03-18,[],IL,102nd +Do Pass Judiciary; 008-000-000,2021-03-03,['committee-passage'],IL,102nd +Assigned to Public Utilities Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Chief Co-Sponsor Changed to Rep. Katie Stuart,2022-02-07,[],IL,102nd +To Local Government Subcommittee,2021-03-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Criminal Law- Clear Compliance,2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Amy Grant,2021-02-19,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-01,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-03,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-02-09,[],IL,102nd +To Criminal Law- Special Issues,2022-02-07,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2021-03-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Suzanne Ness,2022-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2022-02-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-22,[],IL,102nd +Remove Chief Co-Sponsor Rep. Jeff Keicher,2022-03-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kathleen Willis,2022-02-09,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Suspend Rule 21 - Prevailed 071-043-000,2021-05-26,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-10-13,[],IL,102nd +Do Pass Judiciary; 007-000-000,2022-02-09,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 006-002-000,2022-02-09,['committee-passage'],IL,102nd +Assigned to Local Government,2022-01-26,['referral-committee'],IL,102nd +Do Pass Health; 013-000-000,2022-02-09,['committee-passage'],IL,102nd +Do Pass Agriculture; 013-000-000,2022-02-07,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. William Davis,2021-03-16,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2022-02-08,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Judiciary- Torts,2021-03-16,[],IL,102nd +To Appropriations- Higher Education,2021-03-09,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Appropriations; 008-004-000,2021-04-15,['committee-passage'],IL,102nd +Do Pass Revenue; 011-000-000,2021-03-05,['committee-passage'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-02-16,[],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +Resolution Adopted,2022-03-31,['passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-04-09,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-30,[],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +To Small Cell Subcommittee,2021-03-16,[],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Margaret Croke,2022-03-31,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-18,[],IL,102nd +To Appropriations- Health,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2022-02-17,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mike Murphy,2021-03-24,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2022-03-16,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-16,[],IL,102nd +Resolution Adopted; 053-000-000,2021-06-01,['passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Veterans' Affairs Committee; 006-000-000,2021-03-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-03,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Adam Niemerg,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +To Executive- Gaming,2021-03-24,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 005-003-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-01-19,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Ethics & Elections Committee; 016-000-000,2021-03-22,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joe Sosnowski,2021-03-19,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Paul Jacobs,2021-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-10,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Mike Murphy,2021-05-05,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2022-11-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-14,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2021-03-12,['amendment-introduction'],IL,102nd +Assigned to Mental Health & Addiction Committee,2022-01-25,['referral-committee'],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 009-000-001,2021-03-17,['committee-passage'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Appropriations- Health,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. John C. D'Amico,2021-04-14,[],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-10-28,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2022-02-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Government Operations,2021-03-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-05-19,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-02-10,[],IL,102nd +Do Pass / Short Debate Cities & Villages Committee; 010-000-000,2021-03-16,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-03-23,['committee-passage'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Postponed - Licensed Activities,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-04-20,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-11,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-09-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2022-02-10,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Will Guzzardi,2022-04-05,[],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-08,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 018-000-000,2021-03-26,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 022-000-000,2022-02-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Human Rights; 006-003-000,2022-02-07,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 025-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Appropriations; 008-004-000,2021-04-15,['committee-passage'],IL,102nd +Do Pass Pensions; 008-000-000,2022-02-09,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Immigration & Human Rights Committee,2022-03-01,['referral-committee'],IL,102nd +Do Pass / Short Debate Human Services Committee; 009-006-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2021-03-11,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-04-09,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2022-02-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Licensed Activities; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 018-010-000,2022-02-15,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-02-07,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-10-20,[],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Remove Chief Co-Sponsor Rep. Tom Demmer,2021-02-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Do Pass / Short Debate Small Business,Tech Innovation, and Entrepreneurship Committee; 010-000-000",2022-02-10,['committee-passage'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Resolution Adopted; 055-000-000,2021-06-01,['passage'],IL,102nd +Do Pass Appropriations; 008-004-000,2021-04-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 016-008-000,2022-02-15,['committee-passage'],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2022-02-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-04-04,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2022-02-16,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2022-02-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2021-04-12,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-11-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-23,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2022-02-09,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2021-02-11,[],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-03-18,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-16,[],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2021-02-11,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Chief Sponsor Changed to Rep. Joyce Mason,2022-04-04,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2021-03-15,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Subcommittee on Managed Care Organizations (MCO's),2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-03-18,[],IL,102nd +To Appropriations- Veterans Affairs,2021-04-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Human Rights,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2022-02-14,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-11,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-11-21,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Assigned to Consumer Protection Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +"Do Pass / Short Debate Cybersecurity, Data Analytics, & IT Committee; 014-001-000",2021-03-26,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2022-02-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Patrick Windhorst,2022-02-15,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Arrived in House,2022-02-17,['introduction'],IL,102nd +To Judiciary- Torts,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-11-30,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-01-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-01-21,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-07,[],IL,102nd +To Executive- Liquor,2021-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +To Subcommittee on Public Health,2021-03-09,[],IL,102nd +To Executive- Procurement,2021-03-24,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Chapin Rose,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-22,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-03-24,[],IL,102nd +Do Pass Local Government; 009-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 016-009-000,2022-02-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 007-001-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Subcommittee on Special Issues (TR),2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2021-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +To Procurement Subcommitee,2021-03-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Local Government,2021-03-09,['referral-committee'],IL,102nd +To Judiciary- Property Law,2022-02-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-07-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-02,[],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass / Short Debate Financial Institutions Committee; 010-000-000,2022-02-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-02-26,[],IL,102nd +To Appropriations- Human Services,2022-02-01,[],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Procurement,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-10,[],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 008-005-000,2021-03-23,['committee-passage'],IL,102nd +Postponed - Commerce,2022-02-07,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jil Tracy,2021-03-24,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2022-01-12,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 005-003-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-24,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-06-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-03-17,[],IL,102nd +To Telecom/Video Subcommittee,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Subcommittee on Special Issues (TR),2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-04,[],IL,102nd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2021-04-06,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-02-16,[],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Postponed - Judiciary,2021-04-14,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2021-01-21,[],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Executive- Consolidation,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Public Utilities Committee; 025-000-000,2021-03-22,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +First Reading,2022-03-15,['reading-1'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2022-01-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2021-03-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Thomas M. Bennett,2022-02-01,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-03-05,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-10-31,[],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-03-17,[],IL,102nd +To Property Tax Subcommittee,2021-03-04,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. William Davis,2021-03-12,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-12,[],IL,102nd +Do Pass Education; 008-003-000,2021-04-14,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-04,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2021-04-08,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-08-25,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2022-02-15,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-02-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Motion Do Pass - Lost Judiciary - Civil Committee; 006-010-000,2021-03-16,['committee-failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Natalie A. Manley",2021-03-23,[],IL,102nd +Assigned to Insurance Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Appropriations- Health,2022-02-01,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2022-02-07,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +To Public Benefits Subcommittee,2021-03-10,[],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-03-12,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Licensed Activities; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-01-31,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-10,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Licensed Activities; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Postponed - Revenue,2021-03-19,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2022-02-08,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-01-12,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Financial Institutions; 007-000-000,2022-02-10,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Scott M. Bennett,2022-02-01,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-25,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2021-03-19,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. LaToya Greenwood,2021-01-25,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2021-03-04,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Veterans Affairs; 006-000-000,2022-02-09,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Tourism and Hospitality,2021-03-16,['referral-committee'],IL,102nd +Do Pass Education; 013-000-000,2022-02-09,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-03-17,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Financial Institutions; 006-000-000,2022-02-10,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Revenue,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +To Appropriations- Human Services,2022-01-26,[],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass Education; 013-002-000,2022-02-09,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2022-02-07,['amendment-introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deanne M. Mazzochi,2021-03-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-11-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Insurance Committee; 012-007-000,2021-03-15,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-01-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-02-19,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Appropriations- Criminal Justice,2022-02-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass Pensions; 007-000-000,2022-02-07,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2022-02-07,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2021-03-23,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2021-03-09,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-01-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-02-15,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 009-000-001,2021-03-25,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass State Government; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-08,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-04-13,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Judiciary- Torts,2021-03-16,[],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-10,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2022-02-07,['amendment-introduction'],IL,102nd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Chapin Rose,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Keith P. Sommer,2021-03-11,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 005-002-000,2022-01-19,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2022-03-30,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-01-27,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-11,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 005-003-000,2021-03-22,['committee-passage'],IL,102nd +To Subcommittee on Special Issues (TR),2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - State Government,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-03-17,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-22,[],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-23,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-18,[],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-10-06,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-10,[],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-02-23,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Gaming,2021-04-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Judiciary; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Natural Gas Subcommittee,2022-02-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Insurance Committee; 019-000-000,2021-03-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-12,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2022-02-10,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-04,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-24,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Pensions,2021-03-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2022-01-27,[],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Licensed Activities; 007-000-000,2021-03-17,['committee-passage'],IL,102nd +To Executive- Gaming,2022-02-07,[],IL,102nd +Motion Do Pass - Lost Health Care Licenses Committee; 004-001-003,2022-02-09,['committee-failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Insurance; 010-000-000,2021-04-15,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Agriculture,2021-03-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-01-19,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-10,[],IL,102nd +To Appropriations- Higher Education,2022-02-01,[],IL,102nd +To Subcommittee on Special Issues (TR),2021-03-24,[],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-05,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Workforce Development Subcommittee,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-02-02,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2021-02-08,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-01-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Pensions,2021-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Appropriations- Higher Education,2022-02-01,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Consolidation,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-02-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2022-01-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Tom Demmer,2022-01-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Appropriations-Human Services Committee; 018-006-000,2021-03-26,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass Judiciary; 007-002-000,2021-04-14,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Appropriations- Human Services,2022-01-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Unemployment Insurance,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Amy Elik,2022-02-03,[],IL,102nd +To Special Issues (INS) Subcommittee,2022-02-17,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-04,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Motion Do Pass - Lost Judiciary - Civil Committee; 006-010-000,2021-03-16,['committee-failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Public Benefits Subcommittee,2021-03-10,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2021-03-08,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2021-04-15,['amendment-introduction'],IL,102nd +Postponed - Pensions,2021-03-10,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-02-25,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jil Tracy,2022-02-07,['amendment-introduction'],IL,102nd +Assigned to Behavioral and Mental Health,2022-01-26,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Gaming,2022-02-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-12-02,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass State Government; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-01,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Be Adopted Health; 015-000-000,2022-02-16,['committee-passage-favorable'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2022-02-15,['committee-passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2022-02-01,['amendment-introduction'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +To Appropriations- Human Services,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-03-01,[],IL,102nd +Assigned to Licensed Activities,2021-03-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 018-011-000,2022-02-16,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-01-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Postponed - State Government,2022-02-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Standard Debate Insurance Committee; 011-008-000,2021-03-15,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2021-03-09,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2021-03-12,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-02-18,[],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-26,[],IL,102nd +To Appropriations- Health,2022-02-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Education; 008-003-000,2021-04-14,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Postponed - Pensions,2021-04-14,[],IL,102nd +To Judiciary- Torts,2021-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-03-18,[],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Cities & Villages Committee; 009-001-000,2021-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-17,[],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Public Safety,2022-01-26,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Criminal Law- Clear Compliance,2021-03-16,[],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-02-15,[],IL,102nd +To Executive- Consolidation,2021-03-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-10-26,[],IL,102nd +Postponed - Licensed Activities,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Postponed - Licensed Activities,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-17,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-01-22,['reading-1'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-01-27,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-12,[],IL,102nd +Assigned to Executive,2022-01-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Subcommittee on Long-Term Care & Aging,2021-03-09,[],IL,102nd +To Appropriations- Human Services,2021-03-23,[],IL,102nd +Do Pass / Short Debate Insurance Committee; 016-000-000,2022-02-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-19,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Elections,2021-04-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2022-01-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +To Appropriations- Judiciary,2022-02-01,[],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2022-02-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 005-003-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2021-03-24,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Postponed - Revenue,2022-02-10,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-09,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2021-03-16,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Postponed - Executive,2022-02-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Postponed - Higher Education,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-02,['referral-committee'],IL,102nd +To Product Safety Subcommittee,2021-03-08,[],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Do Pass / Short Debate Museums, Arts, & Cultural Enhancements Committee; 006-004-000",2021-03-25,['committee-passage'],IL,102nd +Do Pass Education; 014-000-000,2021-03-16,['committee-passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2021-03-11,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Chief Sponsor Changed to Rep. Justin Slaughter,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Subcommittee on Managed Care Organizations (MCO's),2021-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Waive Posting Notice,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2022-02-01,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass State Government; 007-000-000,2022-02-07,['committee-passage'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2022-02-15,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Medicaid Subcommittee,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Chief Sponsor Changed to Sen. Dan McConchie,2022-02-01,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-04-09,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Be Adopted Health; 015-000-000,2022-02-16,['committee-passage-favorable'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Remove Chief Co-Sponsor Rep. Amy Elik,2021-02-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-11,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions April 5, 2022",2022-04-04,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2021-03-24,['amendment-introduction'],IL,102nd +To Medicaid & Managed Care Subcommittee,2021-03-19,[],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Omar Aquino,2021-03-19,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2021-02-25,[],IL,102nd +To Income Tax Subcommittee,2021-03-04,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +To Executive- Gaming,2021-03-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2021-03-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2021-03-16,['amendment-introduction'],IL,102nd +Do Pass / Standard Debate Executive Committee; 008-006-000,2021-03-11,['committee-passage'],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-01-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-03,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-01-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2022-02-15,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-10,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Fiscal Note Filed,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-22,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-03-09,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-03-18,[],IL,102nd +Postponed - Pensions,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2021-03-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass / Standard Debate Executive Committee; 008-006-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-20,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Cannabis,2021-03-10,[],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2021-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-04-06,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2022-02-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2021-09-13,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-11-19,[],IL,102nd +Postponed - Revenue,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-02-26,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2021-03-16,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-11,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-08,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Insurance Committee; 016-000-000,2021-03-22,['committee-passage'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-04-06,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-10-26,[],IL,102nd +To Appropriations- Health,2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-06-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-11-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-03-25,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael Halpin,2022-02-14,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-01-13,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-10-13,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-10-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 006-000-000,2021-03-22,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Do Pass / Consent Calendar Adoption & Child Welfare Committee; 006-000-000,2022-02-15,['committee-passage'],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-19,[],IL,102nd +Approved for Consideration Assignments,2021-05-31,[],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Procurement Subcommitee,2021-03-17,[],IL,102nd +To Revenue- Special Issues,2021-03-19,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-01-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Subcommittee on Children & Family,2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Gaming,2021-03-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Criminal Law- Clear Compliance,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-04,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 005-003-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-11-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-11,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +To Appropriations- Veterans Affairs,2022-02-01,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Gaming,2021-03-24,[],IL,102nd +Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +To Judiciary- Property Law,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-02-15,['committee-passage'],IL,102nd +Assigned to Higher Education Committee,2022-01-19,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-19,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Dan McConchie,2022-01-31,[],IL,102nd +Assigned to Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2022-01-21,[],IL,102nd +Do Pass / Short Debate Financial Institutions Committee; 009-000-000,2022-02-15,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-01-31,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Postponed - Revenue,2022-02-07,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-02-08,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2021-04-27,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-23,['referral-committee'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Counties & Townships Committee; 010-001-000,2022-02-16,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Avery Bourne,2022-02-25,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2022-02-17,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-02-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Pensions,2021-03-24,[],IL,102nd +Do Pass Energy and Public Utilities; 019-000-000,2022-02-10,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2021-04-06,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-19,[],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-08-06,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2022-02-10,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +First Reading,2022-01-11,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-02-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-19,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-10-13,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-09,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 010-008-000,2022-02-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2021-03-22,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-03-16,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Do Pass / Standard Debate Executive Committee; 008-006-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Barbara Hernandez,2021-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-01-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Pensions,2021-03-23,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-04,[],IL,102nd +To Appropriations- Health,2022-02-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-23,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-04,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Re-assigned to Judiciary - Civil Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-10,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Thomas M. Bennett,2022-02-14,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Postponed - Revenue,2021-03-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Revenue; 011-000-000,2022-02-10,['committee-passage'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 023-002-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-01-11,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-02-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2022-03-16,['amendment-introduction'],IL,102nd +To Appropriations- Human Services,2021-03-03,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Elections,2021-04-15,[],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 011-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Appropriations-General Services Committee; 016-000-000,2021-03-25,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-16,['referral-committee'],IL,102nd +To Appropriations- Human Services,2021-03-23,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Economic Opportunity & Equity Committee; 007-000-000,2022-02-16,['committee-passage'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Judiciary- Property Law,2022-02-07,[],IL,102nd +Assigned to Public Safety,2021-03-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2021-03-05,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Appropriations- Criminal Justice,2022-01-26,[],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Sex Offenses and Sex Offender Registration Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-02-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-01-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-17,[],IL,102nd +Do Pass Executive; 015-000-000,2021-04-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-03,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2022-02-06,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Elections,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-10-31,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Police & Fire Committee,2022-02-01,['referral-committee'],IL,102nd +Postponed - Health,2022-01-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Water Subcommittee,2021-03-16,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Appropriations- Business Regulations and Labor,2021-03-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-02-15,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Licensed Activities,2022-02-07,[],IL,102nd +To Executive- Gaming,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-03-12,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Liquor,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Omar Aquino,2021-03-15,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2022-01-31,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 017-000-000,2021-03-17,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 018-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Be Adopted State Government; 009-000-000,2021-05-29,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 10, 2021",2021-05-06,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-05-29,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-05-19,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass Pensions; 009-000-000,2021-03-17,['committee-passage'],IL,102nd +Be Adopted Education; 014-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Added as Chief Co-Sponsor Sen. Darren Bailey,2022-01-28,[],IL,102nd +Moved to Suspend Rule Sen. Bill Cunningham,2021-06-01,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-03-16,[],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 028-000-000,2021-03-10,['committee-passage'],IL,102nd +Moved to Suspend Rule Sen. Linda Holmes; 3-6(a),2021-04-29,[],IL,102nd +Be Adopted State Government; 005-003-000,2021-05-29,['committee-passage-favorable'],IL,102nd +Be Adopted State Government; 005-000-000,2021-10-20,['committee-passage-favorable'],IL,102nd +Do Pass Energy and Public Utilities; 021-000-000,2022-02-10,['committee-passage'],IL,102nd +Assigned to Higher Education,2021-02-09,['referral-committee'],IL,102nd +Assigned to Health,2021-05-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-02-09,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +To Subcommittee on Long-Term Care & Aging,2021-03-31,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Resolution Adopted 069-041-001,2021-10-20,['passage'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-09,[],IL,102nd +Do Pass Revenue; 011-000-000,2022-02-10,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-05,[],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2021-03-25,['amendment-introduction'],IL,102nd +Do Pass Licensed Activities; 005-001-000,2022-02-07,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-04,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2022-03-01,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-01-26,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 023-000-000,2022-02-15,['committee-passage'],IL,102nd +Do Pass Energy and Public Utilities; 018-004-000,2021-03-19,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-02-07,[],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. William Davis,2022-02-09,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-03-25,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-03-10,[],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-03-03,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Robert Rita,2021-10-26,[],IL,102nd +Referred to Resolutions Consent Calendar,2022-03-16,['referral-committee'],IL,102nd +Postponed - Revenue,2021-03-19,[],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 015-010-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Insurance Committee; 016-000-000,2022-02-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2021-03-16,['amendment-introduction'],IL,102nd +Do Pass State Government; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2021-03-09,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2022-02-09,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Amy Elik,2022-02-03,[],IL,102nd +Do Pass Insurance; 012-000-000,2021-03-19,['committee-passage'],IL,102nd +"Recommends Be Adopted Small Business,Tech Innovation, and Entrepreneurship Committee; 009-000-000",2022-03-17,['committee-passage-favorable'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2021-03-15,['amendment-introduction'],IL,102nd +Do Pass Licensed Activities; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass Judiciary; 009-000-000,2021-03-16,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-03-12,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to State Government,2021-03-23,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Do Pass Local Government; 007-000-000,2021-04-14,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-23,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-02,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-04-08,['amendment-introduction'],IL,102nd +Do Pass Licensed Activities; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Appropriations-Human Services Committee; 024-000-000,2021-03-26,['committee-passage'],IL,102nd +Resolution Adopted 069-026-002,2022-01-05,['passage'],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 027-000-000,2021-03-10,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-03-19,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Executive Committee; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Criminal Law; 010-000-000,2021-04-14,['committee-passage'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 21, 2021",2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-17,[],IL,102nd +Postponed - Higher Education,2021-03-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-10-14,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-09,['committee-passage'],IL,102nd +Do Pass Insurance; 012-000-000,2022-02-10,['committee-passage'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2022-02-03,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Debbie Meyers-Martin,2021-03-09,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-01-27,[],IL,102nd +Arrived in House,2022-01-05,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-03-10,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2021-03-04,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-10,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-27,[],IL,102nd +Read in Full a First Time,2021-02-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-10,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Recommends Be Adopted Mental Health & Addiction Committee; 015-000-000,2021-05-06,['committee-passage-favorable'],IL,102nd +Be Adopted Executive; 011-005-000,2022-04-06,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-06,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +Resolution Adopted; 054-000-000,2021-06-01,['passage'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Police & Fire Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Veterans Affairs,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-02-10,[],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 012-002-000,2021-03-09,['committee-passage'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-01-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions April 20, 2021",2021-04-15,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +Do Pass / Short Debate Veterans' Affairs Committee; 009-000-000,2022-02-15,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2021-04-14,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-26,['committee-passage'],IL,102nd +Do Pass Agriculture; 014-000-000,2021-03-25,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Greg Harris,2021-02-25,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-01-20,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2021-03-09,['amendment-introduction'],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-03-01,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +Do Pass / Consent Calendar Cities & Villages Committee; 011-000-000,2022-02-15,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-04-08,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-30,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-05,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-03-22,['amendment-introduction'],IL,102nd +Do Pass Public Safety; 007-000-000,2021-04-14,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-12,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-05-11,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2021-04-08,['amendment-introduction'],IL,102nd +To Subcommittee on Long-Term Care & Aging,2021-02-16,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 013-000-000,2022-02-09,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 010-005-000,2022-01-19,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-24,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-05-05,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-23,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-15,[],IL,102nd +Recommends Be Adopted Energy & Environment Committee; 015-010-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-03-23,[],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-02-01,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-26,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted; 054-000-000,2021-06-01,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-08,[],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2022-01-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-15,[],IL,102nd +Resolution Adopted,2021-10-29,['passage'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-03-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2021-10-27,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-02-23,['referral-committee'],IL,102nd +Resolution Adopted; 037-017-001,2022-02-16,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-02-16,[],IL,102nd +Assigned to Health Care Availability & Accessibility Committee,2021-02-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-03-02,[],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 029-000-000,2021-03-22,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +Do Pass Judiciary; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Barbara Hernandez,2021-02-12,[],IL,102nd +Recommends Be Adopted Adoption & Child Welfare Committee; 006-000-000,2021-04-27,['committee-passage-favorable'],IL,102nd +Do Pass Judiciary; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-02,[],IL,102nd +Postponed - Tourism and Hospitality,2021-02-18,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2022-02-14,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-02,['committee-passage'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Thomas Cullerton,2021-03-11,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-17,[],IL,102nd +Assigned to Education,2021-03-03,['referral-committee'],IL,102nd +To Subcommittee on Children & Family,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-02-24,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +Do Pass State Government; 008-000-000,2022-02-07,['committee-passage'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 005-002-000,2022-02-15,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-03,[],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 029-000-000,2022-02-16,['committee-passage'],IL,102nd +Recommends Be Adopted Appropriations-Elementary & Secondary Education Committee; 015-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +To Property Tax Subcommittee,2021-03-04,[],IL,102nd +Removed Co-Sponsor Rep. Lindsey LaPointe,2021-02-08,[],IL,102nd +Postponed - Health,2022-01-18,[],IL,102nd +Do Pass State Government; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 005-003-000,2021-03-05,['committee-passage'],IL,102nd +Moved to Suspend Rule Sen. Linda Holmes; 3-6(a),2022-02-25,[],IL,102nd +Do Pass / Consent Calendar Energy & Environment Committee; 028-000-000,2021-03-08,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-17,[],IL,102nd +Assigned to Consumer Protection Committee,2021-03-02,['referral-committee'],IL,102nd +Remove Chief Co-Sponsor Rep. Kambium Buckner,2021-02-26,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Chief Sponsor Changed to Rep. Deb Conroy,2021-03-18,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-03-25,[],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 016-000-000,2021-03-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Recommends Be Adopted Health Care Availability & Accessibility Committee; 011-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2021-03-16,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-02-07,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-05,[],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-03-15,['committee-passage'],IL,102nd +Do Pass Transportation; 019-000-000,2022-02-09,['committee-passage'],IL,102nd +Do Pass Judiciary; 008-000-000,2022-01-18,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-08,[],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2022-02-15,['amendment-introduction'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Antonio Muñoz,2022-01-20,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-12,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-02-07,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-02-08,[],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Do Pass Transportation; 019-000-000,2022-02-09,['committee-passage'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Resolution Adopted,2021-03-17,['passage'],IL,102nd +Resolution Adopted,2021-09-13,['passage'],IL,102nd +"Moved to Suspend Rule Sen. Emil Jones, III; 3-6(a)",2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-02-05,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-20,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +To Subcommittee on Long-Term Care & Aging,2021-03-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-02-05,[],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Resolution Adopted,2021-03-17,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-02-15,[],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Do Pass Criminal Law; 010-000-000,2021-03-24,['committee-passage'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-12,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 028-000-000,2022-02-16,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2022-07-21,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2021-05-26,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2021-03-12,['amendment-introduction'],IL,102nd +Do Pass Criminal Law; 007-003-000,2021-04-14,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-03-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason A. Barickman,2022-04-09,[],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Lance Yednock",2021-03-17,[],IL,102nd +Do Pass Pensions; 008-000-000,2022-02-07,['committee-passage'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-04-09,[],IL,102nd +Do Pass Healthcare Access and Availability; 008-000-000,2022-01-18,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Revenue; 011-000-000,2022-02-10,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-08-10,[],IL,102nd +Be Adopted State Government; 005-000-000,2021-10-20,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2023-01-06,['passage'],IL,102nd +Resolution Adopted,2022-02-10,['passage'],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 014-000-000,2022-02-09,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2022-02-07,['amendment-introduction'],IL,102nd +Assigned to Cities & Villages Committee,2022-01-19,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2022-02-04,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-12,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2021-03-22,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-01-19,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mark Batinick,2021-03-24,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-22,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-10-27,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-09,[],IL,102nd +Assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Postponed - Behavioral and Mental Health,2021-03-16,[],IL,102nd +Do Pass / Consent Calendar Mental Health & Addiction Committee; 015-000-000,2021-03-19,['committee-passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-03,['committee-passage'],IL,102nd +Do Pass Licensed Activities; 009-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass Judiciary; 008-000-000,2022-02-09,['committee-passage'],IL,102nd +Resolution Adopted,2022-03-31,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Be Adopted Education; 015-000-000,2021-05-30,['committee-passage-favorable'],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 018-000-000,2022-01-25,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-05-29,[],IL,102nd +Assigned to Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-30,[],IL,102nd +Do Pass Higher Education; 012-000-000,2022-01-19,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +To Workforce Development Subcommittee,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Subcommittee on Future Cellular Development,2021-04-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2021-03-11,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2022-02-07,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-26,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-18,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Postponed - State Government,2022-02-07,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-03,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +To Small Cell Subcommittee,2021-03-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2021-04-06,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-01-26,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2021-03-25,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-12,[],IL,102nd +To Appropriations- Business Regulations and Labor,2021-03-09,[],IL,102nd +Do Pass / Short Debate Cities & Villages Committee; 009-002-000,2021-03-09,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +Assigned to Ethics,2021-03-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason A. Barickman,2022-01-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve McClure,2021-04-12,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Executive- Elections,2021-03-10,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Small Cell Subcommittee,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Postponed - Behavioral and Mental Health,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-10,[],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-10,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Judiciary; 007-000-000,2022-02-09,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +To Appropriations- Human Services,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-01-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-15,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +Postponed - Licensed Activities,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-02-03,[],IL,102nd +Assigned to Housing Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-10-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Sex Offenses and Sex Offender Registration Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Counties & Townships Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Judiciary- Torts,2021-03-03,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +To Criminal Law- Clear Compliance,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Judiciary- Torts,2021-03-03,[],IL,102nd +"To Roadways, Rail & Aviation Subcommittee",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Postponed - Judiciary,2022-02-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Insurance,2021-04-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2021-03-18,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-22,[],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Jeff Keicher",2021-03-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-01-13,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 005-003-000,2022-02-15,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Wages & Rates Subcommittee,2021-03-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Revenue- Special Issues,2021-03-19,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-03-02,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2022-02-09,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-01-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-08-25,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-02-01,['referral-committee'],IL,102nd +To Executive- Gaming,2021-03-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2022-02-07,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Deanne M. Mazzochi,2021-10-01,[],IL,102nd +Postponed - Healthcare Access and Availability,2022-02-09,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Business & Innovation Subcommittee,2021-03-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions March 30, 2022",2022-03-29,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-22,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-03-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - State Government,2022-02-07,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2021-02-23,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-02-15,[],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Assigned to Labor & Commerce Committee,2021-05-11,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-03,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Postponed - Local Government,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2022-02-15,['amendment-introduction'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-02-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-12,[],IL,102nd +Postponed - Environment and Conservation,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-23,[],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 011-004-000,2022-02-16,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-11-14,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-17,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Insurance Mandates,2022-02-10,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-05,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Appropriations- Human Services,2022-02-01,[],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass Pensions; 005-003-000,2022-02-07,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John Connor,2021-04-07,['amendment-introduction'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Procurement,2021-03-10,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-03-22,['amendment-introduction'],IL,102nd +To Water Subcommittee,2022-02-16,[],IL,102nd +Postponed - Tourism and Hospitality,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-01-20,[],IL,102nd +Do Pass Appropriations; 008-004-000,2021-04-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +To Executive- Elections,2021-03-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +To Executive- Consolidation,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Commercial & Property Subcommittee,2021-03-23,[],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +To Insurance Review Subcommittee,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Paul Jacobs,2022-03-22,[],IL,102nd +Motion Do Pass - Lost Appropriations-Public Safety Committee; 009-006-000,2022-02-16,['committee-failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Judiciary- Torts,2021-03-16,[],IL,102nd +Assigned to Licensed Activities,2021-03-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Sex Offenses and Sex Offender Registration Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-01-25,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Postponed - Executive,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Executive- Gaming,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 006-004-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +To Income Tax Subcommittee,2021-03-04,[],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2021-03-11,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Special Issues (INS) Subcommittee,2021-03-09,[],IL,102nd +Do Pass / Standard Debate Executive Committee; 008-006-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-01,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-03-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-03-15,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-21,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Commerce,2021-03-23,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Appropriations- Revenue and Finance,2021-03-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Local Government; 007-000-000,2021-04-14,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-30,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Postponed - Health,2022-02-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-02-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Transportation,2021-04-07,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-03-18,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-10-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Water Subcommittee,2022-02-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-01-25,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-22,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-02-11,[],IL,102nd +To Appropriations- Higher Education,2022-01-26,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-10-13,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-19,[],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 028-000-000,2021-03-17,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Read in Full a First Time,2021-02-08,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-09-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 018-011-000,2021-03-22,['committee-passage'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-02,['referral-committee'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-03-08,['committee-passage-favorable'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Gaming,2021-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-02-06,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-10-13,[],IL,102nd +Postponed - Energy and Public Utilities,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-22,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2022-02-02,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-19,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Subcommittee on Children & Family,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-04-08,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 029-000-000,2022-02-16,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-04,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Executive- Gaming,2021-03-24,[],IL,102nd +Postponed - Judiciary,2021-03-09,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2022-02-15,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2022-02-07,['amendment-introduction'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-02,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-05,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Do Pass / Short Debate Small Business,Tech Innovation, and Entrepreneurship Committee; 009-000-000",2022-02-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-23,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-04-14,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-02-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-24,[],IL,102nd +To Executive- Elections,2021-04-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2021-03-23,['amendment-introduction'],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2022-01-13,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-05-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-10,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 005-003-000,2022-02-15,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Appropriations-General Services Committee; 016-000-000,2021-03-25,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2022-02-15,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-17,[],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-03-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-02-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Fiscal Note Requested by Rep. Deanne M. Mazzochi,2022-02-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Environment and Conservation; 008-000-000,2021-03-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-22,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2021-03-16,['amendment-introduction'],IL,102nd +To Judiciary- Torts,2021-03-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Appropriations- Health,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Revenue- Special Issues,2021-03-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-10,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +To Appropriations- Revenue and Finance,2021-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-04-09,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2022-02-03,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John Connor,2021-03-23,['amendment-introduction'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-04,[],IL,102nd +To Executive- Elections,2021-03-24,[],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-03-17,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +To Executive- Procurement,2021-03-10,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-03-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 006-002-000,2021-03-19,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2021-12-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Higher Education; 011-004-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2022-02-04,['amendment-introduction'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-04-07,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-03-22,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Appropriations; 008-004-000,2021-04-15,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Cities & Villages Committee; 013-000-000,2022-02-10,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Medicaid & Managed Care Subcommittee,2021-03-19,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Motion Do Pass - Lost Transportation: Regulation, Roads & Bridges Committee; 001-011-000",2022-02-15,['committee-failure'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Motion Do Pass - Lost Health Care Availability & Accessibility Committee; 005-008-000,2021-03-16,['committee-failure'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Criminal Law; 010-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Tom Weber,2022-01-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Avery Bourne",2021-03-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-22,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Moved to - Table Bill/Resolution Pursuant to Rule 60(b) Rep. Natalie A. Manley,2021-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-24,[],IL,102nd +To Appropriations- Health,2021-03-09,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 009-006-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2022-02-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-01-24,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-03-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Local Government,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-01-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-03-02,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-10,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-11,[],IL,102nd +To Procurement Subcommitee,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-10,[],IL,102nd +To Income Tax Subcommittee,2021-03-04,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Prescription Drug Affordability & Accessibility Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2021-03-18,['amendment-introduction'],IL,102nd +Assigned to Behavioral and Mental Health,2022-01-05,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve McClure,2021-03-15,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2021-03-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass / Short Debate Appropriations-Higher Education Committee; 015-000-000,2022-03-10,['committee-passage'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Appropriations; 008-004-000,2021-04-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Special Issues,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-01-20,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-18,[],IL,102nd +To Commercial & Property Subcommittee,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mark Batinick,2021-03-11,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Mental Health & Addiction Committee; 010-006-000,2021-03-26,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Postponed - Licensed Activities,2021-04-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2022-01-26,['referral-committee'],IL,102nd +Postponed - Revenue,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-02,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +To Revenue- Special Issues,2021-03-19,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-03-03,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Natalie A. Manley",2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-01-14,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-03-24,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kathleen Willis,2022-02-09,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Licensed Activities; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-04-08,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Randy E. Frese,2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-10-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-02,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-05-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-03,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Cyril Nichols,2022-02-02,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-17,[],IL,102nd +Do Pass Executive; 016-000-000,2022-02-10,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +To Operations Subcommittee,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-15,[],IL,102nd +To Executive- Tobacco,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Procurement,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-01-21,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2021-03-11,['amendment-introduction'],IL,102nd +Postponed - Energy and Public Utilities,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-11-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-21,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-03-15,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Special Issues (INS) Subcommittee,2022-02-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-10,[],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Elections,2021-03-17,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-000",2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Gaming,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"To Appropriations- Agriculture, Environment, and Energy",2022-01-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2021-03-22,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-02-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-11,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2022-01-31,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Brad Halbrook,2021-02-03,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-09,[],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-10-04,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tony McCombie,2022-02-09,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Appropriations- Health,2022-02-01,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2021-03-18,['amendment-introduction'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Human Services Committee; 009-005-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +To Subcommittee on Managed Care Organizations (MCO's),2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Executive- Tobacco,2021-04-15,[],IL,102nd +Resolution Adopted 072-045-000,2021-05-28,['passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-03-25,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-03-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-28,['amendment-introduction'],IL,102nd +Place Calendar Resolutions - Standard Debate,2021-06-16,[],IL,102nd +Do Pass / Consent Calendar Revenue & Finance Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-28,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-26,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Transportation; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 016-000-000,2021-03-16,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2021-03-12,['amendment-introduction'],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-03-22,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-04-08,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-03-23,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Judiciary; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass State Government; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2022-01-25,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-03-03,[],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 008-000-000,2021-03-22,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-03-19,['committee-passage'],IL,102nd +Do Pass Judiciary; 008-000-000,2021-03-03,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Veterans' Affairs Committee; 006-000-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass Insurance; 010-000-000,2021-04-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-03,[],IL,102nd +Do Pass State Government; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Resolution Adopted,2021-04-20,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2021-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-22,[],IL,102nd +Assigned to Health,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Veterans' Affairs Committee; 009-000-000,2022-02-15,['committee-passage'],IL,102nd +Do Pass Agriculture; 011-000-000,2021-04-15,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-25,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass Local Government; 007-000-000,2021-04-14,['committee-passage'],IL,102nd +Do Pass / Short Debate Counties & Townships Committee; 009-001-000,2021-03-19,['committee-passage'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-04-09,['amendment-introduction'],IL,102nd +Postponed - Transportation,2021-03-24,[],IL,102nd +Resolution Adopted 104-001-000,2022-03-08,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-04-13,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-23,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2021-04-08,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2021-03-19,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-05-30,[],IL,102nd +Added as Chief Co-Sponsor Sen. Scott M. Bennett,2021-03-05,[],IL,102nd +Do Pass / Consent Calendar Counties & Townships Committee; 010-000-000,2021-03-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-11,[],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-03-15,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2021-05-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-16,[],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-12-08,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-01-27,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Assigned to Immigration & Human Rights Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-10-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Waive Posting Notice,2022-02-08,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Insurance Mandates,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-04-04,[],IL,102nd +Do Pass / Standard Debate Executive Committee; 008-006-000,2021-03-11,['committee-passage'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-01-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-02-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Denyse Wang Stoneback,2021-05-20,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Postponed - Education,2022-02-09,[],IL,102nd +Assigned to Revenue,2021-03-16,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-02-02,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Postponed - Insurance,2022-02-10,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sally J. Turner,2022-02-07,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 029-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2021-03-15,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-19,[],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-02-08,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass Licensed Activities; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Commerce; 010-002-000,2022-02-07,['committee-passage'],IL,102nd +Postponed - Revenue,2021-03-19,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-03,[],IL,102nd +Do Pass Revenue; 011-000-000,2022-02-10,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-23,[],IL,102nd +To Appropriations- Health,2022-02-01,[],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +To Executive- Elections,2021-04-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-03-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-03-02,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Human Services Committee; 009-005-000,2021-03-23,['committee-passage'],IL,102nd +Postponed - Judiciary,2021-04-14,[],IL,102nd +Assigned to Insurance Committee,2022-02-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +To Subcommittee on Special Issues (TR),2021-03-24,[],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2022-01-19,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-01,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Environment and Conservation; 009-000-000,2022-02-07,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Local Government; 005-003-000,2022-02-09,['committee-passage'],IL,102nd +To Appropriations- Health,2022-02-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-12-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Licensed Activities,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Commercial & Property Subcommittee,2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2021-03-19,['amendment-introduction'],IL,102nd +To Judiciary- Property Law,2022-02-07,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-02-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +To Judiciary- Privacy,2021-03-16,[],IL,102nd +Do Pass Local Government; 009-000-000,2021-03-09,['committee-passage'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 018-009-000,2022-02-16,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-01,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Transportation; 019-000-000,2022-02-09,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-08-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Appropriations- Education,2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +To Executive- Gaming,2021-03-24,[],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-17,['committee-passage'],IL,102nd +Postponed - Pensions,2021-04-14,[],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Local Government; 008-000-000,2022-02-09,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2021-02-11,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2021-03-16,['amendment-introduction'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-02-23,['referral-committee'],IL,102nd +To Appropriations- Health,2022-01-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-14,[],IL,102nd +Do Pass Licensed Activities; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-09,[],IL,102nd +To Procurement Subcommitee,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Medicaid & Managed Care Subcommittee,2021-03-19,[],IL,102nd +To Sex Offenses and Sex Offender Registration Subcommittee,2021-03-18,[],IL,102nd +To Small Cell Subcommittee,2021-03-16,[],IL,102nd +"Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2021-04-08,[],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-03-09,[],IL,102nd +To Procurement Subcommitee,2021-03-17,[],IL,102nd +Do Pass Agriculture; 013-000-000,2022-02-07,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-01-05,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2021-03-08,['amendment-introduction'],IL,102nd +Do Pass Education; 011-000-000,2022-02-09,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2022-02-10,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-02-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-08-09,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Cyril Nichols,2022-02-07,['amendment-introduction'],IL,102nd +To Appropriations- Health,2022-02-01,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Postponed - Pensions,2021-03-03,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Do Pass / Short Debate Cities & Villages Committee; 011-000-000,2022-02-15,['committee-passage'],IL,102nd +Postponed - Behavioral and Mental Health,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-02-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-04-14,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2022-03-23,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-07,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-06,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Revenue; 011-000-000,2022-02-10,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Executive- Gaming,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 010-000-000,2021-03-25,['committee-passage'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-11,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2022-02-07,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tim Ozinga,2022-02-14,['amendment-introduction'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-01-28,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2022-02-10,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Appropriations- Human Services,2021-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Executive- Gaming,2022-02-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-01-26,[],IL,102nd +Added as Chief Co-Sponsor Sen. Antonio Muñoz,2021-03-24,[],IL,102nd +To Appropriations- Criminal Justice,2021-03-09,[],IL,102nd +To Property Tax Subcommittee,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2022-02-09,['referral-committee'],IL,102nd +Sponsor Removed Sen. Neil Anderson,2022-01-20,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-10-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Postponed - Executive,2021-04-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-04,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-05-14,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +To Subcommittee on Long-Term Care & Aging,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Health,2022-01-11,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-03-18,['amendment-introduction'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass Healthcare Access and Availability; 007-000-000,2022-02-09,['committee-passage'],IL,102nd +To Executive- Liquor,2021-03-24,[],IL,102nd +Do Pass / Consent Calendar Counties & Townships Committee; 011-000-000,2022-02-03,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2021-03-19,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-17,[],IL,102nd +Postponed - Transportation,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Behavioral and Mental Health,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Transportation,2021-03-24,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-04,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Motion Do Pass - Lost Judiciary - Civil Committee; 007-009-000,2021-03-16,['committee-failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Agriculture,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-03,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +To Appropriations- Revenue and Finance,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-18,[],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 006-000-000,2022-02-15,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-01-11,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Child Care Accessibility & Early Childhood Education Committee; 009-000-000,2022-01-27,['committee-passage'],IL,102nd +Waive Posting Notice,2022-02-08,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 013-008-000,2022-02-16,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Postponed - Revenue,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-02-03,[],IL,102nd +To Appropriations- Business Regulations and Labor,2021-03-09,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-02-17,[],IL,102nd +Do Pass / Short Debate Insurance Committee; 019-000-000,2021-03-25,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-02-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Financial Institutions Committee; 007-003-000,2022-02-15,['committee-passage'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-04-06,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-03-23,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-01,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 013-001-000,2021-03-23,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Higher Education,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-01-31,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-02-08,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-01,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2022-02-15,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-18,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Assigned to Insurance Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Insurance; 013-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jawaharial Williams,2022-03-21,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Education,2022-02-01,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-11,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2022-02-07,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Public Utilities Committee; 024-000-000,2022-02-01,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-08,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-05-07,[],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 016-000-000,2022-02-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Health,2021-04-07,['referral-committee'],IL,102nd +To Executive- Firearms,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2022-01-14,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-11-14,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-10,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Business & Innovation Subcommittee,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-03-29,[],IL,102nd +Do Pass Licensed Activities; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Joyce Mason,2021-03-18,[],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 006-000-000,2022-02-15,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-04-08,['amendment-introduction'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-02-19,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-02-07,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas M. Bennett,2022-03-28,[],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2022-02-07,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2022-02-10,['amendment-introduction'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-05,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Healthcare Access and Availability; 007-000-000,2022-02-09,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-02-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Revenue; 009-000-000,2021-03-19,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2022-02-14,['amendment-introduction'],IL,102nd +To Special Issues (HS) Subcommittee,2021-03-22,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Referred to Assignments,2022-01-21,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Veterans' Affairs Committee; 009-000-000,2022-02-15,['committee-passage'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-02-17,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Family Law & Probate Subcommittee,2021-03-23,[],IL,102nd +Do Pass Judiciary; 007-000-000,2022-02-07,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Assigned to State Government Administration Committee,2022-01-25,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-01-11,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-10-13,[],IL,102nd +Do Pass Executive; 015-000-000,2022-02-10,['committee-passage'],IL,102nd +To Appropriations- Human Services,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Brad Halbrook,2021-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-01-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2022-02-18,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2022-01-28,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-22,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-02-03,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-01-28,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Energy and Public Utilities,2022-01-11,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-03-16,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-01-31,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-01,['referral-committee'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-17,[],IL,102nd +To Appropriations- Human Services,2021-03-09,[],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 017-000-000,2022-02-17,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Cities & Villages Committee; 011-000-000,2022-02-01,['committee-passage'],IL,102nd +To Subcommittee on Children & Family,2021-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-02-07,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-02-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Referred to Assignments,2021-02-26,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2022-01-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-12,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2022-01-12,['amendment-introduction'],IL,102nd +Do Pass Education; 015-000-000,2022-02-09,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-03-19,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-01-22,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-03-15,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Mike Murphy,2021-03-11,[],IL,102nd +Do Pass Licensed Activities; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Appropriations- Health,2021-03-09,[],IL,102nd +To Executive- Special Issues,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2021-03-22,['amendment-introduction'],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2021-03-12,['amendment-introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-03-03,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jehan Gordon-Booth,2021-04-15,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 017-010-000,2022-01-19,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 028-000-000,2022-02-01,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Product Safety Subcommittee,2021-03-08,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Workforce Development Subcommittee,2021-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Public Safety,2021-03-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Chris Bos,2021-08-19,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Chief Sponsor Changed to Sen. Chapin Rose,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Elections,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Mike Murphy,2021-02-25,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Appropriations- Higher Education,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-04,[],IL,102nd +To Appropriations- Human Services,2022-01-26,[],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-03-09,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Appropriations- Health,2021-03-03,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Postponed - Human Rights,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2022-02-02,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-03,[],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +To Subcommittee on Special Issues (TR),2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Pensions,2021-03-24,[],IL,102nd +To Appropriations- Human Services,2022-01-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +To Appropriations- Health,2021-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Judiciary- Property Law,2022-02-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-02-26,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Postponed - Pensions,2022-02-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Justin Slaughter,2021-03-17,[],IL,102nd +Postponed - Licensed Activities,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-01-27,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-02-10,[],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +To Family Law & Probate Subcommittee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-04,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-15,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-02-14,[],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2021-03-23,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-02-15,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-02,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Insurance Committee; 017-000-000,2022-02-10,['committee-passage'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2022-08-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-08-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-01-27,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2022-03-08,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 011-001-000",2022-02-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Pensions; 007-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Executive- Gaming,2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Rachelle Crowe,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Fiscal Note Filed,2021-03-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2021-03-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Special Issues,2021-03-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-01-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2022-02-17,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-05,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Transportation Issues Subcommittee,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Postponed - Transportation,2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Elections,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Postponed - Judiciary,2022-02-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-18,[],IL,102nd +To Utilities Subcommittee,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 014-010-000,2021-03-22,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-03-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-02-15,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2021-03-22,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 005-003-000,2022-02-15,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Special Issues,2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Postponed - Pensions,2021-03-03,[],IL,102nd +Chief Sponsor Changed to Sen. Chapin Rose,2022-01-28,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2022-01-31,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2021-03-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 006-002-000,2022-02-17,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Postponed - Executive,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-02,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Chief Sponsor Changed to Rep. Angelica Guerrero-Cuellar,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-02-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-09-23,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2022-02-04,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-02-04,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-000-000,2022-02-09,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-10-26,[],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Postponed - Pensions,2021-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-04-09,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +To Special Issues (HS) Subcommittee,2021-03-10,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 005-003-000,2021-03-24,['committee-passage'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Do Pass / Short Debate Appropriations-General Services Committee; 016-000-000,2021-03-25,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-10-20,[],IL,102nd +To Appropriations- Human Services,2022-02-01,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2021-02-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2022-02-10,['amendment-introduction'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2022-02-10,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Veterans' Affairs Committee; 006-000-000,2021-03-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Do Pass / Consent Calendar Cities & Villages Committee; 011-000-000,2022-02-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. William Davis,2022-02-09,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Police & Fire Committee; 015-000-000,2021-03-25,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 025-000-000,2021-03-22,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Education; 013-000-000,2022-02-07,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-05-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Judiciary- Privacy,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-15,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-03-09,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-03-15,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2022-01-28,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-05-07,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2022-01-27,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2022-02-15,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-06-16,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-04,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-09-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Licensed Activities,2021-04-15,[],IL,102nd +Postponed - Revenue,2022-02-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-01-29,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Pensions; 009-000-000,2021-03-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Executive- Government Operations,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 006-002-000,2021-03-22,['committee-passage'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jawaharial Williams,2021-03-12,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2022-02-07,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Counties & Townships Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-01-25,[],IL,102nd +Assigned to Judiciary,2021-04-07,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-07-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Appropriations- Human Services,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2022-02-07,['amendment-introduction'],IL,102nd +To Judiciary- Torts,2021-03-03,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2021-03-03,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-15,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-01-27,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 009-005-000,2021-03-23,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Revenue; 011-000-000,2022-02-10,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Postponed - Pensions,2022-02-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-17,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 018-011-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 022-000-000,2022-02-15,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-03,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Judiciary- Property Law,2021-03-03,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Postponed - Education,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2022-02-03,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"To Appropriations- Agriculture, Environment, and Energy",2022-02-01,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deanne M. Mazzochi,2021-03-19,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Norine K. Hammond,2022-02-15,['amendment-introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Government Operations,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-18,[],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass / Short Debate Adoption & Child Welfare Committee; 005-001-001,2022-02-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Education; 015-000-000,2022-02-09,['committee-passage'],IL,102nd +Postponed - Licensed Activities,2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-03-25,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-02-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Medicaid & Managed Care Subcommittee,2021-03-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-02-17,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-24,[],IL,102nd +To Judiciary- Property Law,2022-02-07,[],IL,102nd +Assigned to Appropriations,2021-03-09,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Ethics,2021-04-07,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2022-02-14,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 006-004-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2021-04-12,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-01-25,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-02-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. David A. Welter,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-15,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-03-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Bradley Stephens,2021-03-10,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-03-23,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Appropriations- Human Services,2022-01-26,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +To Utilities Subcommittee,2021-03-16,[],IL,102nd +Postponed - Agriculture,2021-03-19,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2022-02-10,['amendment-introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Judiciary- Property Law,2021-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-02-23,['referral-committee'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-01-27,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +To Property Tax Subcommittee,2022-02-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-03-02,[],IL,102nd +To Commercial & Property Subcommittee,2021-03-23,[],IL,102nd +To Subcommittee on Children & Family,2021-03-31,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-19,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +Assigned to Labor,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-25,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Behavioral and Mental Health,2022-01-05,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-09,[],IL,102nd +To Appropriations- Human Services,2021-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-02-02,[],IL,102nd +To Transportation Issues Subcommittee,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Postponed - Executive,2021-04-15,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-01-28,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-03-15,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-05-12,[],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-01-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-03-16,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 008-000-000,2021-03-22,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Licensed Activities; 005-004-000,2022-02-10,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass Environment and Conservation; 008-000-000,2021-03-19,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +To Sex Offenses and Sex Offender Registration Subcommittee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-03-01,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-01-19,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +To Medicaid Subcommittee,2021-03-10,[],IL,102nd +Postponed - Transportation,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Special Issues (HS) Subcommittee,2022-01-28,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Assigned to Behavioral and Mental Health,2022-01-05,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Appropriations- Human Services,2022-02-01,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-09-22,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-06-15,[],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Judiciary- Torts,2021-03-03,[],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-05,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2021-04-09,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +To Judiciary- Privacy,2021-03-09,[],IL,102nd +To Appropriations- Judiciary,2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2022-02-07,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-04-06,['amendment-introduction'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-01-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2022-02-16,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Executive- Government Operations,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-17,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +"To Appropriations- Agriculture, Environment, and Energy",2021-03-09,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2022-02-10,[],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-02-23,[],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-05,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Executive,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Postponed - Health,2022-02-07,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +To Executive- Tobacco,2022-02-07,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-03-11,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-01-21,[],IL,102nd +To Appropriations- Health,2022-01-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Insurance Committee; 012-007-000,2021-03-15,['committee-passage'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Appropriations- Business Regulations and Labor,2021-03-09,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sam Yingling,2021-03-08,['amendment-introduction'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Directed to Multiple Committees Behavioral and Mental Health, Appropriations-Health Subcommittee",2021-03-23,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Appropriations- Education,2022-02-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Assigned to Appropriations-Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2022-01-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 005-003-000,2022-02-02,['committee-passage'],IL,102nd +Do Pass Appropriations; 008-004-000,2021-04-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-10,[],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 010-006-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dave Syverson,2022-02-08,['amendment-introduction'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +To Appropriations- Human Services,2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-04,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Family Law & Probate Subcommittee,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-17,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Do Pass Health; 014-000-000,2022-02-09,['committee-passage'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Assigned to Veterans' Affairs Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2022-02-15,['amendment-introduction'],IL,102nd +Postponed - Energy and Public Utilities,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-22,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 018-005-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2022-04-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-08,[],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 028-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2021-03-17,[],IL,102nd +To Appropriations- Higher Education,2021-03-03,[],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 024-000-000,2021-03-22,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 011-004-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-30,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2022-02-07,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +To Criminal Law- Clear Compliance,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-02-08,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-25,[],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Thomas Cullerton,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-02-16,[],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2022-02-03,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Fine,2021-03-09,[],IL,102nd +Recommends Be Adopted - Consent Calendar Economic Opportunity & Equity Committee; 008-000-000,2021-03-24,['committee-passage-favorable'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2021-03-12,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2022-01-31,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-16,[],IL,102nd +Postponed - Agriculture,2021-03-19,[],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-16,[],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-15,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael Halpin,2021-03-16,['amendment-introduction'],IL,102nd +Arrived in House,2021-10-28,['introduction'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-03-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-10-26,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-09,['referral-committee'],IL,102nd +Do Pass Higher Education; 014-000-000,2021-03-16,['committee-passage'],IL,102nd +Moved to Suspend Rule Sen. Mattie Hunter; 3-6(a),2021-09-01,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2022-02-09,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-03-31,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions April 5, 2022",2022-04-04,[],IL,102nd +Read in Full a First Time,2021-02-08,[],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 016-000-000,2021-03-23,['committee-passage'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions March 24, 2022",2022-03-23,[],IL,102nd +To Subcommittee on Children & Family,2021-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-03-16,[],IL,102nd +Removed Co-Sponsor Rep. Michelle Mussman,2021-03-09,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2021-03-22,['amendment-introduction'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2022-01-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Darren Bailey,2021-03-17,[],IL,102nd +Assigned to Human Rights,2021-03-03,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2021-03-22,[],IL,102nd +Do Pass Licensed Activities; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jonathan Carroll,2021-03-05,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 007-000-000,2022-02-03,['committee-passage'],IL,102nd +To Judiciary- Privacy,2021-03-09,[],IL,102nd +Assigned to Insurance,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-02-23,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-03-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-24,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions April 22, 2021",2021-04-21,[],IL,102nd +Do Pass Criminal Law; 007-003-000,2021-04-14,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-03-10,[],IL,102nd +To Subcommittee on Long-Term Care & Aging,2021-03-16,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-03-31,[],IL,102nd +Do Pass Environment and Conservation; 010-000-000,2021-04-15,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-04-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-02-19,[],IL,102nd +To Income Tax Subcommittee,2022-01-27,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Do Pass Higher Education; 012-000-000,2021-04-14,['committee-passage'],IL,102nd +Do Pass Licensed Activities; 009-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2021-03-16,[],IL,102nd +Do Pass / Consent Calendar Economic Opportunity & Equity Committee; 008-000-000,2021-03-10,['committee-passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-20,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-01-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-10-26,[],IL,102nd +To Subcommittee on Children & Family,2021-02-16,[],IL,102nd +Be Adopted Healthcare Access and Availability; 008-000-000,2022-03-09,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-02-18,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-05-20,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2021-04-28,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-05,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-10-20,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-23,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +To Subcommittee on Public Health,2021-03-09,[],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-10,['committee-passage'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions April 29, 2021",2021-04-28,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-09,['committee-passage'],IL,102nd +Do Pass Insurance; 012-000-000,2021-03-19,['committee-passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-15,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass Judiciary; 008-000-000,2021-03-03,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John Connor,2021-04-07,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-05,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-04-05,[],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 007-000-000,2022-02-16,['committee-passage'],IL,102nd +"Recommends Be Adopted - Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2021-03-22,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-19,[],IL,102nd +Resolution Adopted 070-034-000,2022-11-30,['passage'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass Criminal Law; 010-000-000,2021-04-14,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +To Judiciary- Business Entities,2021-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-04-05,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 13, 2021",2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-05-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-17,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-02-07,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-07,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-03-22,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-03-22,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 10, 2021",2021-05-06,[],IL,102nd +Do Pass Licensed Activities; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-03,['committee-passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-03,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-01-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2022-02-14,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-03-23,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-08,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-17,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2022-01-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-02-22,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-04-09,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-04-15,[],IL,102nd +Do Pass / Consent Calendar Public Utilities Committee; 025-000-000,2021-03-22,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-05-20,['amendment-introduction'],IL,102nd +Arrived in House,2022-11-16,['introduction'],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Postponed - Tourism and Hospitality,2021-02-18,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-24,[],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 029-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-04,[],IL,102nd +Postponed - Local Government,2021-03-09,[],IL,102nd +Postponed - Judiciary,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-02-16,[],IL,102nd +Postponed - Pensions,2021-03-03,[],IL,102nd +Do Pass / Short Debate Higher Education Committee; 006-004-000,2022-02-16,['committee-passage'],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-03-16,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Postponed - Licensed Activities,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2022-01-31,['amendment-introduction'],IL,102nd +To Executive- Procurement,2021-03-24,[],IL,102nd +Do Pass Agriculture; 013-000-000,2021-03-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Postponed - Education,2022-02-09,[],IL,102nd +Do Pass State Government; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael Halpin,2021-03-12,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-09,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-26,[],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2021-05-05,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Recommends Be Adopted Human Services Committee; 013-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 008-004-000,2022-02-15,['committee-passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-03-16,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2021-03-09,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2021-03-22,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Paul Jacobs,2022-04-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2022-03-28,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-17,[],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-03-10,['committee-passage'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2021-04-08,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2021-03-22,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-03-23,[],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +Suspend Rule 21 - Prevailed 071-043-000,2021-05-26,[],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 028-000-000,2021-03-17,['committee-passage'],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Do Pass / Consent Calendar Veterans' Affairs Committee; 009-000-000,2022-02-15,['committee-passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-01,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-16,[],IL,102nd +Do Pass Revenue; 011-000-000,2021-03-05,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deanne M. Mazzochi,2021-03-24,['amendment-introduction'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-24,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-10-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2021-03-12,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-05,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-26,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-02-22,[],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 024-001-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-05-30,[],IL,102nd +Resolution Adopted; 053-000-000,2022-04-08,['passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-12,[],IL,102nd +Suspend Rule 21 - Prevailed,2021-05-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-03-22,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Sen. Meg Loughran Cappel,2021-04-09,[],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-03-22,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-11-22,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-02-26,[],IL,102nd +Assigned to Higher Education Committee,2021-03-02,['referral-committee'],IL,102nd +Be Adopted Environment and Conservation; 009-000-000,2022-03-24,['committee-passage-favorable'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-03-15,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2021-04-07,['amendment-introduction'],IL,102nd +Assigned to Human Services Committee,2021-04-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-10-28,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Insurance Committee; 019-000-000,2021-03-15,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-03-16,['committee-passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Do Pass / Short Debate Insurance Committee; 012-004-000,2022-02-15,['committee-passage'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-05,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2021-03-21,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-04-27,[],IL,102nd +Chief Sponsor Changed to Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Neil Anderson,2021-03-11,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2021-03-22,['amendment-introduction'],IL,102nd +Assigned to Housing Committee,2021-03-09,['referral-committee'],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions February 17, 2022",2022-02-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-05,[],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Postponed - Insurance,2021-03-19,[],IL,102nd +Do Pass Commerce; 011-000-000,2021-03-25,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2021-03-22,['amendment-introduction'],IL,102nd +Waive Posting Notice,2022-03-29,[],IL,102nd +Recommends Be Adopted Transportation: Vehicles & Safety Committee; 010-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2022-02-04,[],IL,102nd +Do Pass / Consent Calendar Cities & Villages Committee; 010-000-000,2021-03-16,['committee-passage'],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-03-15,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2021-02-24,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-04-13,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-05,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Thomas M. Bennett,2021-03-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-04-09,['amendment-introduction'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2022-02-15,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Human Services Committee; 009-006-000,2021-03-09,['committee-passage'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-26,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-03-22,[],IL,102nd +Be Adopted State Government; 007-000-000,2021-10-27,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-05-05,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-03,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 10, 2021",2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-06,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Recommends Be Adopted - Consent Calendar Consumer Protection Committee; 006-000-000,2021-03-22,['committee-passage-favorable'],IL,102nd +Do Pass Judiciary; 006-001-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2022-02-01,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Do Pass Criminal Law; 009-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-18,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-16,[],IL,102nd +Do Pass Licensed Activities; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-26,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-10-27,[],IL,102nd +Do Pass / Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2021-05-11,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-04-09,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2022-03-28,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 27, 2021",2021-05-26,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-04-06,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-18,[],IL,102nd +Recommends Be Adopted Transportation: Vehicles & Safety Committee; 007-004-000,2021-05-26,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Mike Murphy,2021-03-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-03-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 9, 2021",2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-02-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2021-03-17,['amendment-introduction'],IL,102nd +Postponed - Insurance,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-16,[],IL,102nd +Postponed - Higher Education,2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-21,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-03-17,[],IL,102nd +Recommends Be Adopted State Government Administration Committee; 007-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-02-24,[],IL,102nd +Do Pass Labor; 016-000-000,2021-04-14,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Resolution Adopted 073-043-000,2021-08-31,['passage'],IL,102nd +Prevailed to Suspend Rule 3-6(a),2021-09-01,[],IL,102nd +Recommends Be Adopted Labor & Commerce Committee; 026-000-000,2021-05-26,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-02-04,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-01-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2022-02-09,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-09,[],IL,102nd +Chief House Sponsor Rep. Greg Harris,2022-11-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2022-02-17,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +Resolution Adopted,2022-03-09,['passage'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-01-25,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-10-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-19,[],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 028-000-000,2021-03-17,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Resolution Adopted,2021-10-26,['passage'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Veterans' Affairs Committee,2022-04-03,[],IL,102nd +Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-01,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-04-06,[],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-03-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2022-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-05-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-03-09,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-10-27,[],IL,102nd +Resolution Adopted,2021-05-31,['passage'],IL,102nd +Be Adopted Executive; 009-006-000,2021-04-29,['committee-passage-favorable'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-02-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-10-27,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions October 28, 2021",2021-10-27,[],IL,102nd +Assigned to State Government,2021-04-20,['referral-committee'],IL,102nd +Assigned to State Government,2021-10-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-10-28,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-16,['referral-committee'],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Resolution Adopted,2021-04-23,['passage'],IL,102nd +Resolution Adopted,2021-05-31,['passage'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-25,[],IL,102nd +Postponed - Commerce,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-25,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-12,[],IL,102nd +Recommends Be Adopted - Consent Calendar Agriculture & Conservation Committee; 008-000-000,2021-03-22,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-05-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-02-05,[],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-20,['referral-committee'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-01,[],IL,102nd +Recommends Be Adopted - Consent Calendar Agriculture & Conservation Committee; 008-000-000,2021-03-22,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michael T. Marron,2021-05-20,['amendment-introduction'],IL,102nd +Resolution Adopted 116-000-000,2021-05-05,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +Resolution Adopted 116-000-000,2021-05-05,['passage'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Ugaste,2021-05-05,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-04-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-27,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-05-05,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Scott M. Bennett,2021-02-23,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-05,[],IL,102nd +Postponed - Licensed Activities,2021-03-24,[],IL,102nd +Do Pass Tourism and Hospitality; 007-000-000,2021-03-05,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Do Pass Pensions; 007-001-000,2021-03-10,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Postponed - Health,2021-03-02,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-01-19,[],IL,102nd +Do Pass / Consent Calendar Adoption & Child Welfare Committee; 007-000-000,2021-03-01,['committee-passage'],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Do Pass Judiciary; 007-000-000,2021-03-09,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Veterans' Affairs Committee,2021-05-11,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-22,['referral-committee'],IL,102nd +Recommends Be Adopted Judiciary - Civil Committee; 014-000-000,2021-05-21,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Postponed - Health,2021-03-02,[],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-05-17,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions March 10, 2022",2022-03-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Chief House Sponsor Rep. Greg Harris,2021-10-28,[],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Resolution Adopted; 058-000-000,2022-04-06,['passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2022-04-01,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-05,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-04,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-12,['referral-committee'],IL,102nd +Do Pass Judiciary; 007-002-000,2021-03-16,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-03-11,['amendment-introduction'],IL,102nd +Assigned to Consumer Protection Committee,2021-02-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-03-08,[],IL,102nd +Removed Co-Sponsor Rep. Jonathan Carroll,2021-03-01,[],IL,102nd +Do Pass Local Government; 009-000-000,2021-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-02-22,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-23,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-02-22,[],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-03-31,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions March 25, 2022",2022-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2022-03-28,[],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-05-25,['committee-passage-favorable'],IL,102nd +Resolution Adopted 115-000-000,2022-04-06,['passage'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-03-24,['committee-passage-favorable'],IL,102nd +Recommends Be Adopted Tourism Committee; 008-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Resolution Adopted 116-000-000,2021-05-05,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-04-09,[],IL,102nd +Resolution Adopted 102-000-000,2022-03-10,['passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-12,['referral-committee'],IL,102nd +Resolution Adopted 112-000-000,2021-05-29,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2022-04-05,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-12,[],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-28,[],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +Assigned to Education,2022-01-26,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-19,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Do Pass Higher Education; 015-000-000,2021-03-24,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Reported Back To Judiciary; 002-000-000,2021-04-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Do Pass Agriculture; 014-000-000,2021-03-25,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jacqueline Y. Collins,2021-03-24,['amendment-introduction'],IL,102nd +Postponed - Agriculture,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-11,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-03-12,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-24,['referral-committee'],IL,102nd +Arrived in House,2022-04-08,['introduction'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Ellman,2022-03-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass State Government; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-03-19,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael T. Marron,2022-02-14,[],IL,102nd +Do Pass / Consent Calendar Consumer Protection Committee; 006-000-000,2021-03-08,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Postponed - Local Government,2021-03-16,[],IL,102nd +Do Pass / Consent Calendar Police & Fire Committee; 015-000-000,2021-03-11,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 9, 2021",2021-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2021-03-15,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 13, 2021",2021-03-25,[],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +Assigned to Consumer Protection Committee,2021-02-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-12,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-02-16,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +Resolution Adopted,2021-05-12,['passage'],IL,102nd +Resolution Adopted,2021-05-12,['passage'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-03-31,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-16,[],IL,102nd +Do Pass Human Rights; 009-000-000,2021-03-19,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-16,['referral-committee'],IL,102nd +Do Pass Judiciary; 008-000-000,2021-03-16,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-05-20,[],IL,102nd +"Added Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Do Pass / Short Debate Veterans' Affairs Committee; 006-000-000,2021-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Police & Fire Committee; 015-000-000,2021-03-25,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-21,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-02-18,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +Do Pass Health; 013-000-000,2022-01-18,['committee-passage'],IL,102nd +Do Pass Higher Education; 015-000-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2021-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Do Pass Judiciary; 008-000-000,2022-02-09,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2022-02-07,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Do Pass State Government; 007-000-000,2022-02-07,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2022-02-07,['amendment-introduction'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Do Pass State Government; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Do Pass Higher Education; 010-000-000,2022-02-09,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2022-02-09,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-25,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-09-16,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-02-03,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-01-31,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Resolution Adopted 068-045-000,2022-04-04,['passage'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-02-15,[],IL,102nd +Resolution Adopted,2022-02-16,['passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2022-02-08,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-01-31,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Do Pass / Short Debate Cities & Villages Committee; 011-000-000,2022-03-15,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-15,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2022-03-08,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-01-11,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-03-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-02-16,[],IL,102nd +Resolution Adopted,2022-04-04,['passage'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-03-19,[],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 021-000-000,2022-03-16,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2022-02-10,['amendment-introduction'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-04-14,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-23,[],IL,102nd +Resolution Adopted,2022-04-04,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +To Subcommittee on Children & Family,2021-03-31,[],IL,102nd +Assigned to Transportation,2021-04-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-23,[],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-04-28,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-04,[],IL,102nd +Reported Back To Health; 005-000-000,2021-04-06,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2021-10-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-02-25,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-02-08,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-11,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-09,[],IL,102nd +Assigned to Personnel & Pensions Committee,2022-01-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-01-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Do Pass / Consent Calendar Consumer Protection Committee; 006-000-000,2021-03-22,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-02-23,['referral-committee'],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2021-03-25,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2021-03-09,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-05,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-02-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-12-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-02-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-12,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-26,[],IL,102nd +Do Pass / Short Debate Immigration & Human Rights Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass Judiciary; 007-000-000,2022-02-07,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2022-01-19,['committee-passage'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-05-25,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-21,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2022-02-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Remains in Judiciary - Civil Committee,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass Environment and Conservation; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-01-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-05-14,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-03-02,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 006-004-000,2022-02-16,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-02-19,[],IL,102nd +Do Pass Education; 015-000-000,2022-02-09,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Wage Policy & Study Subcommittee,2022-02-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-18,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-01-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass State Government; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Appropriations- Health,2022-02-01,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-12-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-08-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-12-05,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass Judiciary; 007-002-000,2021-03-09,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Special Issues (HS) Subcommittee,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2023-01-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-11,[],IL,102nd +Do Pass Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-11,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-02,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-01-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-01-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-05-17,[],IL,102nd +Assigned to Executive Committee,2022-01-05,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-11-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-03-11,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2021-03-24,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-04-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Consumer Protection Committee; 006-000-000,2021-03-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +To Special Issues (HS) Subcommittee,2021-03-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-02,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-10-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-01-28,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2021",2021-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-04-09,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-03-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-01-07,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2021-04-01,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-08-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2021-03-23,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Police & Fire Committee,2021-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-01-12,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-05-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-07,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Darren Bailey,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Consent Calendar Adoption & Child Welfare Committee; 007-000-000,2021-03-01,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tony McCombie,2022-02-10,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2021-03-22,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-02-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Subcommittee on Public Health,2021-04-14,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Do Pass Higher Education; 011-001-000,2022-02-09,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Behavioral and Mental Health; 010-000-000,2021-03-24,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +To Executive- Government Operations,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Fine,2022-01-31,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-02-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-10-24,[],IL,102nd +To Special Issues (HS) Subcommittee,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-05-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-11-14,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-03-16,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dan Ugaste,2021-03-18,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Ugaste,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-02-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2022-02-08,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Resolution Adopted 102-000-000,2022-03-28,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2021-03-16,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-01-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Agriculture,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-09,[],IL,102nd +Do Pass / Short Debate Insurance Committee; 018-000-000,2021-03-22,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-01-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Restorative Justice Committee,2021-03-16,['referral-committee'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-10-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-04-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Postponed - State Government,2022-02-10,[],IL,102nd +Postponed - Environment and Conservation,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Remains in Appropriations-Public Safety Committee,2022-02-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-09-17,[],IL,102nd +Do Pass Executive; 014-000-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-11,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2022-03-01,[],IL,102nd +Postponed - Commerce,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2021-03-26,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 012-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Postponed - Transportation,2021-04-14,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-17,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-06,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-10,[],IL,102nd +Assigned to Health Care Availability & Accessibility Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-10-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2021-05-19,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-09-13,[],IL,102nd +Chief Sponsor Changed to Sen. Adriane Johnson,2022-01-05,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-02-19,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-10,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-02-16,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2022-02-09,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-02-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-01-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-02-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-05-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Do Pass / Short Debate Housing Committee; 014-008-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-05-06,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-02-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tom Demmer,2021-12-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-15,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Assigned to Financial Institutions Committee,2021-02-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Subcommittee on Future Cellular Development,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Do Pass Judiciary; 008-000-000,2021-04-20,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Remains in Transportation: Regulation, Roads & Bridges Committee",2022-02-15,[],IL,102nd +Remains in Health Care Availability & Accessibility Committee,2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-19,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-10,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-01-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-08,[],IL,102nd +To Property Tax Subcommittee,2021-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Operations Subcommittee,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-01-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-03,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Sponsor Removed Sen. Julie A. Morrison,2022-06-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-01-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-08,[],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Postponed - Criminal Law,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-08-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-05,[],IL,102nd +Assigned to Judiciary,2022-01-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-11-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Resolution Adopted 102-000-000,2022-03-10,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-06,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-03-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-04-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Income Tax Subcommittee,2021-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Rights,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Reported Back To Health; 004-000-000,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-04-09,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-05-05,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-03-25,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Motion Do Pass - Lost Counties & Townships Committee; 004-006-000,2021-03-26,['committee-failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Re-assigned to Licensed Activities,2022-01-05,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-04-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Andrew S. Chesney",2021-04-23,[],IL,102nd +Assigned to Counties & Townships Committee,2021-04-06,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"To Appropriations- Agriculture, Environment, and Energy",2022-02-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-01-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-08-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-07,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-12,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Transportation,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted 109-000-000,2022-03-09,['passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Darren Bailey,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Nicholas K. Smith,2022-02-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-01-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 021-003-001,2021-05-19,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Health,2022-02-08,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-10-01,[],IL,102nd +First Reading,2022-01-27,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2022-02-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Public Utilities Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-04-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2022-02-07,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Executive Committee,2022-01-11,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-10-19,[],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 022-003-000,2021-03-22,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-01-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-16,[],IL,102nd +Postponed - Behavioral and Mental Health,2022-01-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-04-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Executive Committee,2022-01-25,['referral-committee'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2021-03-03,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-02-11,[],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-03-19,['committee-passage'],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2021-03-22,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-05-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-02-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-03-30,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-05-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-05-07,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Reported Back To Health; 005-000-000,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +"Removed Co-Sponsor Rep. Maurice A. West, II",2021-03-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-10-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-07,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-03-09,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-02-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2021-03-15,['committee-passage'],IL,102nd +Assigned to Restorative Justice Committee,2021-04-08,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-12,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted 116-000-000,2021-05-05,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Executive Committee,2022-01-05,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +To Appropriations- Revenue and Finance,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-10-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-10,[],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to Executive,2022-11-22,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Postponed - Executive,2021-04-21,[],IL,102nd +Do Pass Education; 013-000-000,2021-04-20,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-11,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-12,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-04-06,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Do Pass / Short Debate Housing Committee; 014-008-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-17,[],IL,102nd +Assigned to Veterans Affairs,2021-03-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 009-003-000",2021-03-22,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-25,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Recommends Be Adopted Veterans' Affairs Committee; 010-000-000,2021-05-26,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2022-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Resolution Adopted; 055-000-000,2021-06-01,['passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2021-03-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Resolution Adopted 066-045-000,2021-06-16,['passage'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-01-06,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-01,[],IL,102nd +Do Pass Human Rights; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 9, 2021",2021-03-03,[],IL,102nd +To Subcommittee on Public Health,2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Do Pass Transportation; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Assigned to Executive Committee,2022-01-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-03-03,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-02-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Resolution Adopted 102-000-000,2022-03-10,['passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-01-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-02-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Assigned to Executive,2022-02-08,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-29,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-08,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Do Pass State Government; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-30,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-03-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-12,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-01-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-03-09,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-12,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Removed Co-Sponsor Rep. Dan Ugaste,2021-03-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2022-01-11,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Appropriations- Human Services,2021-03-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-10,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-11-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-03-11,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Postponed - Executive,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-05,[],IL,102nd +To Executive- Procurement,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2022-01-27,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-04-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-05-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-12,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Resolution Adopted 116-000-000,2021-05-05,['passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-28,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-09-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Ellman,2021-03-19,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-06-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Neil Anderson,2021-03-19,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-03-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-03-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-08-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-09-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2022-02-17,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2021-03-17,['amendment-introduction'],IL,102nd +Do Pass Revenue; 011-000-000,2022-02-10,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-04-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-11,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-02-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Suspend Rule 21 - Prevailed 067-040-000,2021-03-18,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-04-14,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-04,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-02,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Thomas M. Bennett,2022-02-14,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Higher Education Committee,2021-02-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-12,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-01,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jacqueline Y. Collins,2022-02-07,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2021-04-09,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Assigned to Executive Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-006-000,2021-03-26,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-01-27,[],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-04-14,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-22,[],IL,102nd +Do Pass / Consent Calendar Counties & Townships Committee; 011-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Chapin Rose,2021-02-25,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2022-02-04,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2022-02-15,[],IL,102nd +Resolution Adopted 115-000-001,2021-05-05,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Rachelle Crowe,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-07-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-02-14,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-02-10,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2021-03-08,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-08-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-08-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-05,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-01,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-02-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Postponed - Licensed Activities,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-02-02,[],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2022-02-22,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-22,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2022-02-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2021-01-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2021-03-24,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +To Executive- Elections,2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-01-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-01-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-07,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Do Pass / Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-01-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-22,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-12-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-01-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-01-25,['referral-committee'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Jaime M. Andrade, Jr.",2022-02-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 017-000-000,2021-03-10,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to Agriculture,2022-02-08,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-05-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-05-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-01-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-04-03,[],IL,102nd +Assigned to Executive Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Judiciary,2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2021-03-05,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to Mental Health & Addiction Committee,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Assigned to Ethics & Elections Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Appropriations- Human Services,2022-02-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-10-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Brian W. Stewart,2021-03-26,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas M. Bennett,2022-07-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2022-11-30,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-08,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-02-22,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-01-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-02-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Resolution Adopted 116-000-000,2021-05-05,['passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2021-04-08,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Postponed - Insurance,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-03-16,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-30,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2022-02-07,['amendment-introduction'],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Chief Co-Sponsor Changed to Sen. Sara Feigenholtz,2022-12-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 16, 2021",2021-03-10,[],IL,102nd +Do Pass Executive; 009-005-000,2021-04-15,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-02-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions April 20, 2021",2021-04-15,[],IL,102nd +Postponed - Higher Education,2021-03-24,[],IL,102nd +Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2021-04-27,['committee-passage-favorable'],IL,102nd +Assigned to Licensed Activities,2021-03-03,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Removed Co-Sponsor Rep. Charles Meier,2022-11-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-04-28,[],IL,102nd +Assigned to State Government,2022-04-08,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-08,[],IL,102nd +Do Pass Judiciary; 007-000-000,2021-03-09,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-05,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-01-19,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-03-22,['amendment-introduction'],IL,102nd +Be Adopted State Government; 009-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-03-04,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-01-27,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-02-24,[],IL,102nd +Recommends Be Adopted Human Services Committee; 010-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 16, 2021",2021-03-10,[],IL,102nd +Moved to Suspend Rule 21 Rep. Robyn Gabel,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-03-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 16, 2021",2021-03-10,[],IL,102nd +Assigned to Higher Education Committee,2021-03-02,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Kambium Buckner,2021-03-11,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-04,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-03-23,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-01-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2021-03-19,[],IL,102nd +Chief House Sponsor Rep. Greg Harris,2021-01-14,[],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-10,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2021-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Avery Bourne,2022-02-02,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2021-03-18,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Resolution Adopted,2021-10-27,['passage'],IL,102nd +Do Pass Transportation; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-05,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2021",2021-03-09,[],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-02-24,[],IL,102nd +Reported Back To Health; 005-000-000,2021-04-07,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-01-19,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-26,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-05-25,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-02,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-04-14,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-17,[],IL,102nd +"Do Pass / Short Debate Small Business,Tech Innovation, and Entrepreneurship Committee; 009-000-000",2022-02-17,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-01-19,[],IL,102nd +Postponed - Executive,2021-03-10,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-22,[],IL,102nd +Recommends Be Adopted Human Services Committee; 014-000-000,2022-04-07,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-02-26,[],IL,102nd +Do Pass Transportation; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Keith P. Sommer,2022-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-03-25,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 9, 2021",2021-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-02-02,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Chief Co-Sponsor Changed to Sen. Sally J. Turner,2022-12-06,[],IL,102nd +Assigned to Health,2021-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2021",2021-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-22,[],IL,102nd +Added Chief Co-Sponsor Rep. C.D. Davidsmeyer,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-11,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-05-06,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +Motion Filed to Suspend Rule 21 Human Services Committee; Rep. Robert Rita,2023-01-06,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2021-04-13,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-05,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-03,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-04-21,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 9, 2021",2021-03-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-17,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-03-11,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-04-09,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions March 10, 2022",2022-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-09,[],IL,102nd +Resolution Adopted,2021-05-12,['passage'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-26,[],IL,102nd +Assigned to Human Rights,2021-04-07,['referral-committee'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-02-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-24,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-17,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-02,['committee-passage'],IL,102nd +Co-Sponsor Rep. Keith R. Wheeler,2021-02-08,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-11,[],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2022-02-07,['amendment-introduction'],IL,102nd +Do Pass Insurance; 013-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2022-02-22,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions April 23, 2021",2021-04-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2022-04-07,['committee-passage-favorable'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Reported Back To Health; 004-000-000,2021-03-22,[],IL,102nd +Do Pass Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Chief House Sponsor Rep. Greg Harris,2022-12-01,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-02,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-09,[],IL,102nd +Resolution Adopted 113-000-000,2021-05-29,['passage'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 30, 2021",2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2023-01-06,[],IL,102nd +Resolution Adopted,2021-05-05,['passage'],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-05-28,[],IL,102nd +To Subcommittee on Medicaid,2021-03-31,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Chief House Sponsor Rep. Greg Harris,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-23,[],IL,102nd +To Subcommittee on Medicaid,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-02-06,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patricia Van Pelt,2021-04-07,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. Greg Harris,2021-10-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-04-09,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-12-30,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2021-03-15,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Resolution Adopted 068-037-002,2021-05-06,['passage'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-01-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Resolution Adopted 102-000-000,2022-03-10,['passage'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 020-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass Insurance; 012-000-000,2021-03-19,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-04,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-21,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Do Pass Revenue; 011-000-000,2021-03-05,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Andrew S. Chesney,2021-02-19,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Recommends Be Adopted as Amended Rules Committee; 003-002-000,2021-02-10,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-05-05,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Suzanne Ness,2021-03-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-01-31,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Fred Crespo,2021-03-22,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 30, 2021",2021-05-29,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-05-05,[],IL,102nd +Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2021-03-15,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-16,[],IL,102nd +Assigned to Education,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Resolution Adopted,2021-04-15,['passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-22,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Greg Harris,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-03-10,[],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2022-04-08,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2021-03-16,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Andrew S. Chesney,2021-03-05,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2021-03-09,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2021-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 1, 2022",2022-01-18,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 022-002-000,2022-02-16,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-02-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-02,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-02-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2022-02-02,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Postponed - Licensed Activities,2021-03-17,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Postponed - Criminal Law,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 016-011-000,2021-03-10,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Recommends Do Pass Subcommittee/ State Government Administration Committee; 003-000-000,2021-03-24,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-03-10,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Sam Yingling,2022-04-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Executive- Tobacco,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +To Executive- Procurement,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2022-03-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Resolution Adopted,2022-03-16,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-01-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-22,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-31,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Resolution Adopted,2022-04-04,['passage'],IL,102nd +Resolution Adopted 110-000-000,2022-04-04,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Reported Back To Health; 005-000-000,2021-03-16,[],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-12-01,[],IL,102nd +Resolution Adopted,2022-03-17,['passage'],IL,102nd +Resolution Adopted,2022-03-17,['passage'],IL,102nd +Resolution Adopted,2022-03-17,['passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-02-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-01-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2022-01-31,['amendment-introduction'],IL,102nd +Resolution Adopted,2022-04-04,['passage'],IL,102nd +Do Pass / Consent Calendar Counties & Townships Committee; 011-000-000,2021-03-05,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-01,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Executive- Liquor,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-01-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Higher Education,2021-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-01-27,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-02-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-03-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Executive Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-31,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-01,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-03-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 1, 2022",2022-01-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Do Pass State Government; 006-000-000,2021-03-10,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2022-01-31,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-07,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-04-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Postponed - Local Government,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Local Government; 008-000-000,2022-02-09,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-10-12,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Removed Co-Sponsor Rep. Maurice A. West, II",2021-03-01,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-02-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-01-31,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-02-24,[],IL,102nd +Assigned to Consumer Protection Committee,2021-03-02,['referral-committee'],IL,102nd +Re-assigned to Revenue,2022-01-05,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2021-03-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-09,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Removed Co-Sponsor Rep. Elizabeth Hernandez,2021-10-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-14,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-03-15,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-02-16,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-02-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Postponed - State Government,2022-02-07,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass Transportation; 019-000-000,2022-02-09,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-11,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Assigned to Ethics & Elections Committee,2022-01-25,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jeff Keicher,2021-03-15,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-12,[],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-03-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-02-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-04,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Caulkins,2021-03-03,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2022-02-08,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-18,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Robyn Gabel,2022-01-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-08-26,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-11,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Removed Co-Sponsor Rep. LaToya Greenwood,2021-01-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed- Subcommittee on Children & Family,2021-03-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-11,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-10-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 029-000-000,2021-03-22,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +Resolution Adopted,2022-04-03,['passage'],IL,102nd +Resolution Adopted,2022-04-03,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 1, 2022",2022-01-18,[],IL,102nd +Removed Co-Sponsor Rep. LaToya Greenwood,2021-01-25,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Do Pass Education; 013-000-000,2022-02-07,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-01-26,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-01-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-10-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-03-05,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-01-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +"Remains in Transportation: Regulation, Roads & Bridges Committee",2022-02-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-03-24,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-15,[],IL,102nd +To Commercial & Property Subcommittee,2022-01-27,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-23,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-05-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-02-23,['referral-committee'],IL,102nd +"Added as Chief Co-Sponsor Sen. Emil Jones, III",2021-04-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Executive- Tobacco,2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2022-11-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 022-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-01-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-03-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Executive- Government Operations,2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-12-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-02-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-21,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jason A. Barickman,2021-03-22,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-10-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2022-01-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Education; 013-002-000,2022-02-09,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Suzanne Ness,2022-02-17,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Suzanne Ness,2022-01-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Re-assigned to Judiciary,2022-01-05,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 006-000-000,2022-02-01,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-03-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Executive- Tobacco,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-09,['referral-committee'],IL,102nd +Motion Do Pass - Lost Elementary & Secondary Education: School Curriculum & Policies Committee; 011-007-000,2022-02-16,['committee-failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions February 17, 2022",2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Re-assigned to Health Care Availability & Accessibility Committee,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Thomas M. Bennett,2021-11-24,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Postponed - Higher Education,2021-03-24,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted 114-000-000,2022-04-06,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2021-04-28,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass Health; 013-000-000,2022-01-12,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2021-02-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-05-05,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Dan Ugaste,2021-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-02-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2021-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Medicaid Subcommittee,2021-03-22,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Police & Fire Committee; 015-000-000,2021-03-25,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-02,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Andrew S. Chesney,2022-02-22,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-02-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2021-03-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-11-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-11,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Suspend Rule 21 - Prevailed 067-040-000,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Removed Co-Sponsor Rep. Rita Mayfield,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-02-22,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2022-03-14,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Executive- Procurement,2021-03-17,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-10,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Appropriations- Human Services,2021-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2022-02-15,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-03-10,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Human Services Committee; 009-005-000,2022-02-09,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-05-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-02-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-11-09,[],IL,102nd +Do Pass / Short Debate Veterans' Affairs Committee; 006-000-000,2021-03-23,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-05,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-03-22,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-30,[],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Removed Co-Sponsor Rep. Justin Slaughter,2022-02-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Appropriations- Health,2022-01-05,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tony McCombie,2021-03-22,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-01-05,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 011-007-000,2021-03-26,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Arrived in House,2022-04-09,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-07-08,[],IL,102nd +Assigned to State Government,2022-11-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-02-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Referred to Assignments,2021-08-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-08-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2022-03-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +To Appropriations- Health,2021-03-23,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2021-02-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-09-21,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Arrived in House,2022-04-09,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-11-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-03-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-10,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Will Guzzardi,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Brad Halbrook,2021-03-25,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-29,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-11-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Recommends Do Pass Subcommittee/ State Government Administration Committee; 003-000-000,2021-03-24,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-08-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - State Government,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-08-09,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-06-08,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-08,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +To Insurance Mandates,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-08-31,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 011-002-000,2021-03-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Re-assigned to Revenue,2022-01-05,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2021-03-19,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-02,['committee-passage'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Andrew S. Chesney,2021-06-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-19,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-02-08,[],IL,102nd +Postponed - Pensions,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Chapin Rose,2021-03-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-12,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2021-03-23,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Executive- Procurement,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 018-011-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Co-Sponsor Rep. Thomas M. Bennett,2021-02-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-02-23,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Remains in Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Postponed - Transportation,2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2022-02-15,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +To Criminal Law- Clear Compliance,2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-11-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-19,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-09,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-02-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2022-02-07,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-02-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2022-02-07,['amendment-introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-05,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-24,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-03-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Do Pass Agriculture; 013-000-000,2022-02-10,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-02-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Re-assigned to Appropriations,2022-02-08,['referral-committee'],IL,102nd +Assigned to State Government,2022-04-08,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Motion Be Adopted - Lost International Trade & Commerce Committee; 005-003-000,2022-04-06,['committee-passage-favorable'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Removed Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-01-27,[],IL,102nd +"Remains in Transportation: Regulation, Roads & Bridges Committee",2022-02-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-01-11,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-06-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 009-000-000",2021-10-27,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-21,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-01-31,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-04-20,['amendment-introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2021-03-16,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. John F. Curran,2021-03-09,[],IL,102nd +To Executive- Special Issues,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2021-03-23,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-03-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Remains in Transportation: Regulation, Roads & Bridges Committee",2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-01-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Anna Moeller,2022-02-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Suspend Rule 21 - Prevailed 067-040-000,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Appropriations- Education,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-01-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2021-03-22,['amendment-introduction'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-02,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-02-07,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sue Scherer,2021-03-04,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-24,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +To Income Tax Subcommittee,2022-02-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-23,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-05-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-12,[],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Motion Do Pass - Lost Elementary & Secondary Education: Administration, Licensing & Charter Schools; 003-005-000",2022-01-19,['committee-failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 027-000-000,2021-03-22,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Recommends Be Adopted Human Services Committee; 014-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2021-02-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-19,[],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2022-02-17,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-10-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Fred Crespo,2021-03-22,['amendment-introduction'],IL,102nd +Removed Co-Sponsor Rep. Michael Halpin,2022-01-31,[],IL,102nd +Do Pass Higher Education; 013-000-000,2022-02-09,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Appropriations- Judiciary,2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-01-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Public Utilities Committee,2022-01-25,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2021-03-02,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass / Short Debate Housing Committee; 014-008-000,2022-02-16,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-08,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to State Government Administration Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-01-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Executive Committee,2021-10-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Assigned to Executive,2021-03-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Resolution Adopted 116-000-000,2021-05-05,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2021-09-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Restorative Justice Committee; 006-000-000,2021-03-25,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-10-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-30,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-11,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-08-24,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-11,[],IL,102nd +Assigned to Executive Committee,2021-04-06,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-01-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Postponed - Transportation,2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-08,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Special Issues (HS) Subcommittee,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-02-02,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-11-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Suzanne Ness,2021-03-22,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-02-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Jaime M. Andrade, Jr.",2022-02-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-01-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-10-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Operations Subcommittee,2021-03-17,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Postponed - Judiciary,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-12-14,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-03,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-12-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-09-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2022-03-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Burke,2022-07-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2021-04-20,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-02,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-10,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Assigned to Personnel & Pensions Committee,2022-01-25,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-02-02,[],IL,102nd +Do Pass / Short Debate Immigration & Human Rights Committee; 005-003-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2022-02-17,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-09,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-05-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-09,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-10-03,[],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2022-02-02,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-03-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Postponed - Insurance,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +To Financial Protection Subcommittee,2021-03-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-10-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Health; Subcommittee on Medicaid,2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-02-17,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2022-01-07,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Jaime M. Andrade, Jr.",2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Postponed - Executive,2021-04-15,[],IL,102nd +Assigned to Executive Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-07-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-02-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Arrived in House,2021-06-08,['introduction'],IL,102nd +Prevailed to Suspend Rule 3-6(a),2022-02-25,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 30, 2021",2021-05-29,[],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-09,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-03-22,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-10-20,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-02-07,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2022-02-01,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-09,['committee-passage'],IL,102nd +Arrived in House,2021-06-08,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Ellman,2021-02-19,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-09,[],IL,102nd +Waive Posting Notice,2021-05-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +Recommends Be Adopted Higher Education Committee; 006-004-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-10-27,[],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2022-02-16,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 9, 2021",2021-03-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Prevailed to Suspend Rule 3-6(a),2021-04-29,[],IL,102nd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2022-03-29,[],IL,102nd +Added Chief Co-Sponsor Rep. C.D. Davidsmeyer,2021-04-29,[],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Reported Back To Health; 005-000-000,2021-04-06,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-01,['referral-committee'],IL,102nd +Do Pass Veterans Affairs; 006-000-000,2021-03-24,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Be Adopted State Government; 009-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-18,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-15,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-10,[],IL,102nd +Assigned to Higher Education,2021-05-12,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-28,[],IL,102nd +Do Pass / Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-03,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dave Syverson,2021-04-06,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 1, 2022",2022-01-18,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-02,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-25,['referral-committee'],IL,102nd +Do Pass Judiciary; 008-000-000,2021-03-16,['committee-passage'],IL,102nd +To Product Safety Subcommittee,2021-03-08,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-22,['referral-committee'],IL,102nd +Resolution Adopted 075-039-000,2021-05-12,['passage'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 006-004-000,2021-03-25,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 008-005-000,2021-03-16,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-01-26,[],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +"Do Pass / Consent Calendar Cybersecurity, Data Analytics, & IT Committee; 012-000-000",2021-03-19,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-19,[],IL,102nd +Do Pass State Government; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-03-23,[],IL,102nd +Resolution Adopted,2021-05-12,['passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-25,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-30,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-07-21,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 019-000-000,2021-03-25,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-15,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-01-31,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-04-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2021-02-19,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-12,[],IL,102nd +Recommends Be Adopted Human Services Committee; 014-000-000,2022-04-07,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-02-05,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-10-26,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-06,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-17,[],IL,102nd +Assigned to Executive,2022-02-08,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-05-30,[],IL,102nd +Postponed - Pensions,2021-03-03,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Veterans' Affairs Committee,2021-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-01-19,[],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-02-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-21,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-02-25,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-03,[],IL,102nd +Suspend Rule 21 - Prevailed 067-040-000,2021-03-18,[],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-19,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-24,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-03-22,['amendment-introduction'],IL,102nd +Suspend Rule 21 - Prevailed 071-043-000,2021-05-26,[],IL,102nd +Do Pass Veterans Affairs; 005-000-000,2021-03-09,['committee-passage'],IL,102nd +Resolution Adopted 064-044-002,2021-04-28,['passage'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-01-19,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-03,[],IL,102nd +Recommends Be Adopted - Consent Calendar State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +To Revenue- Special Issues,2021-03-19,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-06,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-03-16,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 1, 2022",2022-01-18,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-08-10,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-03-02,[],IL,102nd +Recommends Be Adopted Human Services Committee; 010-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-12,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-04-07,[],IL,102nd +Do Pass / Consent Calendar Consumer Protection Committee; 006-000-000,2021-03-22,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-11,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-05,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-03-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Postponed - Health,2021-03-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-19,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-10-20,[],IL,102nd +Assigned to Judiciary,2021-03-16,['referral-committee'],IL,102nd +Prevailed to Suspend Rule 3-6(a),2022-03-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-03-22,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Do Pass Insurance; 012-000-000,2022-02-10,['committee-passage'],IL,102nd +Do Pass Pensions; 009-000-000,2022-02-16,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-17,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason A. Barickman,2021-05-30,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2022-04-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Resolution Adopted,2022-04-08,['passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-01-20,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Resolution Adopted,2021-05-31,['passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2021-03-08,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-02-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-10-14,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Andrew S. Chesney,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-03,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-09,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Nicholas K. Smith,2021-03-25,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-10-28,[],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2021-03-25,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-09,[],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-05,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-03-29,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +Postponed - Commerce,2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 1, 2022",2022-01-19,[],IL,102nd +Chief House Sponsor Rep. Greg Harris,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-11,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-10-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-17,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Sandra Hamilton,2022-02-17,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 30, 2021",2021-05-29,[],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2022-02-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-02-16,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +To Subcommittee on Children & Family,2021-03-31,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-27,[],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +Postponed - Environment and Conservation,2021-03-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-04,['referral-committee'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 007-000-000,2021-03-10,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-02-05,[],IL,102nd +Do Pass Health; 012-000-000,2022-02-07,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-05-29,[],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2021-03-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-05-19,[],IL,102nd +To Executive- Procurement,2021-03-17,[],IL,102nd +Resolution Adopted 113-000-000,2021-05-29,['passage'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 26, 2021",2021-05-25,[],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 012-000-004,2021-03-16,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Resolution Adopted,2022-04-04,['passage'],IL,102nd +Do Pass Licensed Activities; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-09,[],IL,102nd +Prevailed to Suspend Rule 3-6(a),2021-06-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2022-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Suspend Rule 21 - Prevailed 067-040-000,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Appropriations,2021-03-16,['referral-committee'],IL,102nd +Do Pass Commerce; 011-000-000,2021-03-25,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-05,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-03-19,[],IL,102nd +Assigned to Appropriations,2021-03-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 024-000-000,2021-03-22,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2022-01-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Postponed - Health,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-05-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2022-02-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-11-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-12,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-03-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-01-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass Executive; 016-000-000,2022-02-10,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. Greg Harris,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Removed Co-Sponsor Rep. Maurice A. West, II",2022-01-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-02-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 008-000-000,2021-03-15,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2021-02-26,['amendment-introduction'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-11,[],IL,102nd +Remains in Judiciary - Civil Committee,2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 9, 2021",2021-03-03,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Suspend Rule 21 - Prevailed 067-040-000,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-12,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-11-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-02-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Postponed - Human Rights,2021-03-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed 067-040-000,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2021-03-22,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-31,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +Resolution Adopted 069-000-001,2022-04-04,['passage'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-02-18,[],IL,102nd +Assigned to Revenue,2021-02-17,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Subcommittee on Children & Family,2021-03-24,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Norine K. Hammond",2021-03-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-01-18,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-08-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 015-000-000,2022-02-10,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-11-14,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-06,[],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-02-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2021-06-08,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +To Appropriations- Health,2022-01-11,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-02-19,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2021-10-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Do Pass Revenue; 011-000-000,2022-02-10,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-01-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Public Utilities Committee,2022-01-25,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Recommends Be Adopted Immigration & Human Rights Committee; 007-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Commerce; 007-004-000,2021-04-15,['committee-passage'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Camille Y. Lilly",2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Re-assigned to Environment and Conservation,2022-01-05,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass Transportation; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Recommends Be Adopted Immigration & Human Rights Committee; 005-003-000,2021-05-24,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-11-30,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-11-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +To Subcommittee on Managed Care Organizations (MCO's),2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-01-24,[],IL,102nd +Recommends Be Adopted Veterans' Affairs Committee; 006-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass Licensed Activities; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Consumer Protection Committee; 006-000-000,2022-02-15,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-05,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-01,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Ethics & Elections Committee,2022-01-11,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2022-02-15,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-04,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-01-31,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-12,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2022-11-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Resolution Adopted 112-000-000,2022-03-16,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-01-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Do Pass Health; 014-000-000,2022-02-09,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2022-02-08,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-26,['referral-committee'],IL,102nd +Do Pass Education; 014-000-000,2022-02-09,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-03-05,[],IL,102nd +Assigned to Insurance,2022-02-01,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Arrived in House,2021-06-08,['introduction'],IL,102nd +Resolution Adopted,2022-04-04,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-07-05,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Mattie Hunter,2021-04-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2022-03-31,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-02-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 9, 2021",2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-05,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Executive- Elections,2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Recommends Be Adopted Higher Education Committee; 009-000-000,2022-03-09,['committee-passage-favorable'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-08,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-01-27,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2022-02-07,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-11-30,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-10-18,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-02-10,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Recommends Be Adopted Appropriations-Higher Education Committee; 016-000-000,2022-03-31,['committee-passage-favorable'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 006-000-000,2021-03-15,['committee-passage'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2022-03-30,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-25,[],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 028-000-000,2021-03-03,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-02-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-02-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-11,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-22,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2021-03-08,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2021-03-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Re-assigned to Judiciary,2022-01-05,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Burke,2021-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-02-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-01-12,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-03-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 006-002-000,2022-02-02,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-04-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-03-15,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2022-08-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-10-28,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-01-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-02-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Postponed - Health,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Motion Do Pass - Lost Elementary & Secondary Education: School Curriculum & Policies Committee; 011-009-000,2021-03-24,['committee-failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 005-000-000,2022-02-17,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-07-28,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Terri Bryant,2021-03-24,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-10,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2021-05-29,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Judiciary- Property Law,2022-02-07,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-11,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass / Short Debate Appropriations-Public Safety Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +To Executive- Gaming,2022-02-07,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-01-11,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Sue Scherer,2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-06-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason A. Barickman,2022-03-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-01-25,['referral-committee'],IL,102nd +Resolution Adopted 113-000-000,2021-05-29,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-02-02,[],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Postponed - Judiciary,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading November 30, 2022",2022-11-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Executive- Cannabis,2021-03-24,[],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2021",2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-06-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Remains in Child Care Accessibility & Early Childhood Education Committee,2021-03-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-03-15,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-03-26,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Special Issues (HS) Subcommittee,2021-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-09,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-02-07,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Agriculture,2021-03-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Executive- Elections,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-04-06,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas M. Bennett,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-15,[],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-10-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2022-01-05,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Public Utilities Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-22,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-01-05,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-01-05,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-24,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Criminal Law,2021-03-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass / Short Debate Housing Committee; 016-004-001,2022-02-16,['committee-passage'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2021-03-23,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2022-03-28,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-01-11,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-01-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2022-03-03,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-12,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-04,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-11,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-01-05,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-11-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-03-09,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-10-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-03-12,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-02-14,[],IL,102nd +Postponed - Transportation,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-03,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-09-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Revenue; 011-000-000,2021-03-05,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Removed Co-Sponsor Rep. Curtis J. Tarver, II",2021-02-18,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-05,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations,2022-01-26,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Remains in Higher Education Committee,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-03-01,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-09-30,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-01-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Health; Subcommittee on Medicaid,2021-04-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-02-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2021-03-11,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2022-02-23,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Executive,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-02-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-04-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-04-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Resolution Adopted 114-000-000,2022-04-06,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Executive- Government Operations,2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-10-20,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Norine K. Hammond",2021-03-19,[],IL,102nd +Removed Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2021-05-12,[],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Chief House Sponsor Rep. Greg Harris,2021-03-17,[],IL,102nd +Do Pass / Consent Calendar Executive Committee; 015-000-000,2021-03-24,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2021-03-25,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-23,[],IL,102nd +Do Pass / Consent Calendar Veterans' Affairs Committee; 006-000-000,2021-03-23,['committee-passage'],IL,102nd +Do Pass Insurance; 013-000-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-03-26,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Do Pass Criminal Law; 009-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-26,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2021-03-18,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-26,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +To Subcommittee on Children & Family,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-25,[],IL,102nd +Removed Co-Sponsor Rep. Kathleen Willis,2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2021-03-22,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed 067-040-000,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-04-09,['amendment-introduction'],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2021-03-25,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Reported Back To Health; 005-000-000,2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-24,[],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-03-26,['committee-passage'],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 004-002-000,2021-03-25,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Suspend Rule 21 - Prevailed 067-040-000,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-11,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Do Pass Education; 010-000-000,2021-03-24,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-26,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Remove Chief Co-Sponsor Rep. Amy Grant,2021-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-01,[],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2021-03-22,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-11,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-11-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Do Pass Behavioral and Mental Health; 007-004-000,2021-04-14,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy and Public Utilities,2021-04-07,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-19,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2021-03-19,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Local Government Subcommittee,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-01-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-26,[],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 024-000-000,2021-03-22,['committee-passage'],IL,102nd +Assigned to Executive Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-03-09,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +To Financial Protection Subcommittee,2021-03-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-02-24,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Assigned to Executive Committee,2022-02-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-11,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anthony DeLuca,2022-02-16,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-05-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2021-03-24,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Remains in Health Care Licenses Committee,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Executive- Government Operations,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed 067-040-000,2021-03-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2022-01-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Postponed - Environment and Conservation,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-10,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Executive- Special Issues,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Mental Health & Addiction Committee; 016-000-000,2021-03-26,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-15,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-02-15,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2022-02-18,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 014-004-000,2021-03-26,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-02,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-24,[],IL,102nd +Assigned to Financial Institutions Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-02-22,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2021-03-21,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Executive Committee,2022-01-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Theresa Mah,2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Immigration & Human Rights Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 023-000-000,2022-02-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-01-11,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +To Executive- Elections,2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-01,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-03-16,[],IL,102nd +Postponed - State Government,2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-05-03,[],IL,102nd +Do Pass Energy and Public Utilities; 016-001-000,2021-04-07,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +Re-assigned to Tourism Committee,2022-03-29,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-01-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Do Pass / Short Debate Immigration & Human Rights Committee; 005-003-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass Local Government; 009-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-04-01,[],IL,102nd +Do Pass / Short Debate Veterans' Affairs Committee; 004-001-000,2021-04-13,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Executive- Special Issues,2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-09-13,[],IL,102nd +Assigned to Veterans' Affairs Committee,2021-04-06,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Veterans' Affairs Committee; 006-000-000,2021-03-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2021-03-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-01-24,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2022-02-07,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2022-01-07,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Veterans' Affairs Committee; 006-000-000,2021-03-23,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-12,[],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-02-08,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-17,[],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Second Reading,2022-04-09,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Remains in Judiciary - Civil Committee,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Special Issues (HS) Subcommittee,2021-03-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-06,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-10-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Health,2021-03-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-10-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Special Issues (HS) Subcommittee,2021-03-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-02-11,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-01-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-06-08,[],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Transportation Issues Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-06-30,[],IL,102nd +To Executive- Procurement,2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-11-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-02-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-02-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-08-06,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Ryan Spain,2021-03-25,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-02-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-18,[],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +To Executive- Elections,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 007-000-000,2021-03-10,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-12-02,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Do Pass Pensions; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Assigned to Executive Committee,2022-01-05,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions February 17, 2022",2022-02-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-02-25,[],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2022-02-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Resolution Adopted 116-000-000,2021-05-05,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-03-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Executive- Elections,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Postponed - Health; Subcommittee on Long-Term Care & Aging,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-02-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Do Pass / Short Debate Insurance Committee; 016-000-000,2022-02-15,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-04-02,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-01-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-01-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-10-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-10-06,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2022-02-07,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-01-27,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2021-03-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-01-31,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-12,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-11-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2021-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-01-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-04-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-10-19,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-000-001,2022-02-02,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Referred to Rules Committee,2021-01-22,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Higher Education Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-01-25,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-01,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-05-31,[],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-03-11,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-17,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-01-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Healthcare Access and Availability,2022-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2021-03-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. William Davis,2021-03-22,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dave Syverson,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Recommends Be Adopted Human Services Committee; 014-000-000,2022-04-07,['committee-passage-favorable'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-10-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Recommends Do Pass Subcommittee/ State Government Administration Committee; 003-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to Executive,2022-01-05,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-01-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions February 17, 2022",2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Jaime M. Andrade, Jr.",2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2021-03-16,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2021-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Health; 013-000-000,2022-02-07,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2021-03-25,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-04-02,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-01-25,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-01-05,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-15,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2022-02-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-12-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-03-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Reported Back To Judiciary; 003-000-000,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-29,['amendment-passage'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to Licensed Activities,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-02-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-21,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-02,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-11,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted 116-000-000,2021-05-05,['passage'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-06-30,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-10,[],IL,102nd +Assigned to Human Services Committee,2022-01-19,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-22,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-16,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-24,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Executive- Firearms,2021-03-24,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Postponed- Subcommittee on Children & Family,2021-04-12,[],IL,102nd +Sponsor Removed Sen. David Koehler,2022-01-12,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-04-20,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Property Tax Subcommittee,2022-01-27,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2022-02-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-07,[],IL,102nd +Assigned to Judiciary - Civil Committee,2022-01-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-16,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-10-27,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2022-02-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-11-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Re-assigned to Judiciary,2022-01-05,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-10-18,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Reported Back To State Government Administration Committee;,2021-03-24,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-25,[],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass Revenue; 009-000-000,2021-03-19,['committee-passage'],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-01-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-31,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-03-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Public Utilities Committee,2021-03-18,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 005-003-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 13, 2021",2021-04-07,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-04-13,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Tourism Committee,2022-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-04-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2022-01-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-02-22,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-01-14,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-11-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-02-23,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +"Chief Sponsor Changed to Rep. Lawrence Walsh, Jr.",2021-04-09,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-02-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-06,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-11-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-05-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Motion Do Pass - Lost Judiciary - Civil Committee; 006-009-001,2021-03-16,['committee-failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2022-02-03,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-10-19,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Fred Crespo,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-02,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2022-02-18,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2022-01-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-08-06,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-02,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-28,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-10-19,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Assigned to Executive Committee,2022-01-05,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-04-16,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-01-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Joe Sosnowski,2021-02-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-01-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-01-24,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-06-23,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-12,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2022-02-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-10-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-09,[],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2022-03-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2022-02-28,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-14,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-18,[],IL,102nd +Fiscal Note Requested by Rep. Tom Demmer,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-12-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Do Pass / Short Debate Cybersecurity, Data Analytics, & IT Committee; 015-000-000",2021-04-22,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Fiscal Note Requested by Rep. Blaine Wilhour,2021-04-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-10-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass Education; 011-000-000,2021-04-14,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-02-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-02-24,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-24,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-07,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Financial Institutions,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-13,[],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Cybersecurity, Data Analytics, & IT Committee",2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-11,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-05,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-01,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-17,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-12,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-15,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-08,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Added Chief Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-03-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-09,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2021-03-24,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2022-02-08,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-25,[],IL,102nd +To Judiciary- Privacy,2021-03-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2021-04-15,['amendment-introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +To Wage Policy & Study Subcommittee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Postponed - Pensions,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2022-03-01,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-24,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2022-02-24,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Resolution Adopted 111-000-000,2022-04-08,['passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-09,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2021-04-20,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jim Durkin,2022-03-01,['amendment-introduction'],IL,102nd +Removed from Consent Calendar Status Rep. Theresa Mah,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-17,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Prescription Drug Affordability & Accessibility Committee,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 014-003-000,2021-03-19,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-01-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2021-04-20,['amendment-introduction'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-02-09,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Arrive in Senate,2023-01-03,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-10-26,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +To Subcommittee on Managed Care Organizations (MCO's),2021-03-31,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Linda Holmes,2022-03-08,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2022-02-02,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-03-04,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-12-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Consent Calendar Economic Opportunity & Equity Committee; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2022-02-28,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2021-01-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Re-assigned to Appropriations,2022-01-05,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dave Severin,2022-02-22,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-04-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-05-31,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Deanne M. Mazzochi,2021-04-20,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Postponed - Judiciary,2021-03-09,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-08,[],IL,102nd +Chief Sponsor Changed to Sen. Patrick J. Joyce,2022-03-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-02-26,[],IL,102nd +Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Postponed - Health,2021-03-16,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2021-03-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-06,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2022-02-24,['amendment-introduction'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2021-03-22,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-02-11,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-03-19,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-01-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2021-04-15,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2022-02-18,['amendment-introduction'],IL,102nd +To Executive- Tobacco,2022-02-07,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Thomas M. Bennett,2022-02-22,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-04-20,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-05,['referral-committee'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Jaime M. Andrade, Jr.",2022-02-08,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2022-11-30,['reading-2'],IL,102nd +To Appropriations- Human Services,2022-01-26,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-05-05,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +To Medicaid Subcommittee,2021-03-10,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-03-16,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-01,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-01-28,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-04-07,[],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 025-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Do Pass Education; 014-000-000,2021-04-20,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Be Adopted Environment and Conservation; 010-000-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-03-19,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-03-11,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-11,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-12,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-05-24,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Re-assigned to Judiciary,2022-01-05,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-10-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-11,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +To Commercial & Property Subcommittee,2021-03-23,[],IL,102nd +Reported Back To Revenue & Finance Committee;,2021-03-25,[],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 018-011-000,2021-03-22,['committee-passage'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Fiscal Note Requested by Rep. Avery Bourne,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-16,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2021-03-11,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-03-17,[],IL,102nd +Referred to Rules Committee,2023-01-06,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass Health; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-04-06,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-10,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-03,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-07-06,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-09-06,[],IL,102nd +Postponed - State Government,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-24,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2022-03-01,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass / Short Debate Executive Committee; 013-001-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-06-01,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-03-15,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-04-20,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-03-24,['introduction'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-02-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2022-11-15,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2022-02-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2021-04-01,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-04-21,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2022-02-09,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Andrew S. Chesney,2021-04-08,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Reported Back To Revenue & Finance Committee;,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-02-22,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2021-03-23,[],IL,102nd +To Property Tax Subcommittee,2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Standard Debate Transportation: Vehicles & Safety Committee; 007-005-000,2022-02-16,['committee-passage'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +To Executive- Cannabis,2021-03-10,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-03-19,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-01-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-26,[],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-03-24,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-04-08,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-19,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-06-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-26,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jason A. Barickman,2021-03-31,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2022-03-30,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dan Ugaste,2021-03-24,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-25,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Economic Opportunity & Equity Committee,2021-03-23,[],IL,102nd +Chief Sponsor Changed to Rep. Brad Halbrook,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-04-08,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-05-20,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2021-03-19,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2022-02-07,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jawaharial Williams,2022-03-01,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-01-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-01-24,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-04-01,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass / Short Debate Cities & Villages Committee; 010-001-000,2021-03-23,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-06,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Greg Harris,2021-03-09,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Pensions; 009-000-000,2021-03-17,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-02-24,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2021-03-19,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Delia C. Ramirez,2021-04-08,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2021-04-16,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. John Connor,2021-04-16,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-01-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +Re-assigned to Criminal Law,2022-01-05,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-26,[],IL,102nd +Reported Back To Revenue & Finance Committee;,2021-03-25,[],IL,102nd +Chief Sponsor Changed to Rep. Paul Jacobs,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-15,[],IL,102nd +Reported Back To Revenue & Finance Committee;,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-10-21,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-03-22,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2021-04-28,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2022-02-24,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Suzanne Ness,2021-04-13,['amendment-introduction'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-09,['referral-committee'],IL,102nd +Re-assigned to State Government Administration Committee,2022-02-16,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-22,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Postponed - Health,2021-04-20,[],IL,102nd +Do Pass / Short Debate Child Care Accessibility & Early Childhood Education Committee; 007-004-000,2021-03-26,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-14,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-05,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-04-06,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-05,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2021-05-13,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-09-21,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-01-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Michael T. Marron,2021-02-24,[],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-22,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sam Yingling,2021-03-08,['amendment-introduction'],IL,102nd +Arrive in Senate,2021-05-29,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Tourism and Hospitality,2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Recommends Do Pass Subcommittee/ Human Services Committee; 003-002-000,2021-03-16,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Natalie A. Manley",2022-01-28,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-16,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Postponed - Judiciary,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2021-04-19,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Arrive in Senate,2022-11-30,['introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-03,[],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Do Pass Agriculture; 011-000-000,2021-04-15,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-07-21,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. William Davis,2021-04-20,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mike Murphy,2021-04-14,['amendment-introduction'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-05-31,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-01-11,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Executive- Gaming,2022-02-07,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Chapin Rose,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-08-30,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +To Insurance Review Subcommittee,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-12,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-23,[],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-18,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-04-13,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-04-16,[],IL,102nd +Removed Co-Sponsor Rep. Thaddeus Jones,2022-02-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Postponed - Licensed Activities,2022-02-17,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Criminal Law- Clear Compliance,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-05-13,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-04,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Remains in Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 9, 2021",2021-03-05,[],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-12,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-02-05,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2021-03-02,['amendment-introduction'],IL,102nd +Resolution Adopted,2021-05-12,['passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-05-12,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-22,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-15,[],IL,102nd +Chief House Sponsor Rep. Deanne M. Mazzochi,2021-06-15,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-04-29,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-10-28,[],IL,102nd +Arrive in Senate,2021-05-29,['introduction'],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-31,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-12,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2022-02-03,['amendment-introduction'],IL,102nd +Resolution Adopted,2021-05-25,['passage'],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-02-05,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-01-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2021-03-23,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-15,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. C.D. Davidsmeyer,2022-03-01,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-04-13,[],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2022-03-09,['committee-passage-favorable'],IL,102nd +Reported Back To Health; 004-000-000,2021-04-12,[],IL,102nd +Re-assigned to Labor & Commerce Committee,2021-03-11,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-08,['passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 17, 2022",2022-02-16,[],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Mattie Hunter,2022-02-07,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-02-19,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-04-13,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2021",2021-03-09,[],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Healthcare Access and Availability,2021-05-11,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-15,[],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-03-25,[],IL,102nd +Resolution Adopted,2021-04-29,['passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2022-04-07,['amendment-introduction'],IL,102nd +Do Pass Executive; 015-000-000,2021-04-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-17,[],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-02-14,[],IL,102nd +Recommends Be Adopted - Consent Calendar Consumer Protection Committee; 006-000-000,2021-03-22,['committee-passage-favorable'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Chief House Sponsor Rep. Brad Halbrook,2021-06-08,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-19,[],IL,102nd +Do Pass / Consent Calendar Immigration & Human Rights Committee; 008-000-000,2021-03-10,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2021-04-13,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jawaharial Williams,2021-04-20,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-10-27,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2021-05-30,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-04-20,['referral-committee'],IL,102nd +"Chief House Sponsor Rep. Maurice A. West, II",2022-02-16,[],IL,102nd +"Added as Chief Co-Sponsor Sen. Emil Jones, III",2022-03-29,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2021-03-12,[],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2021-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-02-23,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-07,[],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2022-02-18,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-07-21,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Counties & Townships Committee,2022-02-16,[],IL,102nd +Removed Co-Sponsor Rep. Jonathan Carroll,2021-02-15,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Resolution Adopted,2021-05-05,['passage'],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2022-02-15,['committee-passage'],IL,102nd +Resolution Adopted,2021-05-05,['passage'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. David A. Welter,2021-03-19,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2021-06-01,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-28,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2021-05-26,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-01-20,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-03-17,[],IL,102nd +Resolution Adopted,2021-05-05,['passage'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-04-09,['amendment-introduction'],IL,102nd +Do Pass Judiciary; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 029-000-000,2021-03-15,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Scott M. Bennett,2022-04-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Sponsor Removed Sen. Terri Bryant,2021-03-08,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2021-03-16,[],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-22,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2022-01-19,[],IL,102nd +Reported Back To Revenue & Finance Committee;,2021-03-25,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Resolution Adopted; 051-000-000,2021-06-01,['passage'],IL,102nd +Recommends Be Adopted - Consent Calendar Human Services Committee; 015-000-000,2022-02-16,['committee-passage-favorable'],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2022-02-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-04-28,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-05-25,[],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2022-02-25,['amendment-introduction'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-03-25,['amendment-introduction'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-28,[],IL,102nd +Waive Posting Notice,2022-02-09,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2022-02-17,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-10-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2021-03-16,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-01-21,[],IL,102nd +Be Adopted Health; 011-000-000,2021-05-29,['committee-passage-favorable'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-04-12,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2021-03-05,[],IL,102nd +Resolution Adopted 116-000-000,2021-05-05,['passage'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-05,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions April 6, 2022",2022-04-05,[],IL,102nd +3/5 Vote Required,2022-04-06,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2022-02-07,['amendment-introduction'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-02-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-15,[],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-02-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Financial Institutions,2021-04-07,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-04-14,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2022-03-01,['amendment-introduction'],IL,102nd +Do Pass Energy and Public Utilities; 012-003-000,2021-04-07,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-02-15,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Senate Committee Amendment No. 2 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-02-07,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2021-03-22,['amendment-introduction'],IL,102nd +Resolution Adopted,2021-10-26,['passage'],IL,102nd +Resolution Adopted; 056-000-000,2022-04-09,['passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2021-04-08,['amendment-introduction'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 007-000-000,2022-03-09,['committee-passage-favorable'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-31,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2021-03-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-16,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2022-03-01,['amendment-introduction'],IL,102nd +Postponed - Agriculture,2021-03-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Resolution Adopted,2021-05-30,['passage'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-21,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-12,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-03-19,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Veterans Affairs,2022-02-08,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-09-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Financial Institutions Committee,2021-03-16,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-02-08,[],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2021-10-20,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-20,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 019-003-000,2021-03-10,['committee-passage'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-04-13,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-02-08,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-10-14,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-02-09,[],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-29,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-09,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2022-02-17,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-02-14,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2021-03-11,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2021-03-09,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Resolution Adopted,2022-01-05,['passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2022-02-09,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-03-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-02-17,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-11,[],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2021-03-19,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-02-17,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-11,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2021-03-23,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-11-30,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-14,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2023-01-05,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2022-02-09,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-02-11,[],IL,102nd +Assigned to State Government Administration Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-21,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-01,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-02-14,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-01-12,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-14,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-09,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-01-18,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2022-02-09,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Ethics,2021-04-07,[],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-02-15,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Thomas M. Bennett,2021-04-15,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-04-30,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2022-02-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-03-16,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joe Sosnowski,2021-04-08,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-02-15,[],IL,102nd +Postponed - Commerce,2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joe Sosnowski,2021-04-13,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-02,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Re-assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-19,[],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-31,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-23,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-03-04,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-15,[],IL,102nd +Postponed - Transportation,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-12-19,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-08,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Re-assigned to Transportation,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-13,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-05-05,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-16,[],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +To Appropriations- Health,2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Healthcare Access and Availability,2021-03-09,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-10,[],IL,102nd +To Appropriations- Health,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-23,[],IL,102nd +Re-assigned to Executive,2022-01-05,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-10-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-02-28,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2021-03-09,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-General Services Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-30,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-11-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-02-08,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-03,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-04-19,['amendment-introduction'],IL,102nd +Re-assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Resolution Adopted,2022-02-17,['passage'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-01,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-09-06,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-01-21,[],IL,102nd +To Judiciary- Property Law,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Special Issues (INS) Subcommittee,2021-03-23,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-14,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2021-04-16,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-01-20,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-02-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Re-assigned to Insurance,2022-01-05,['referral-committee'],IL,102nd +To Executive- Gaming,2021-03-24,[],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-01-20,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-04-13,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-11-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-02-14,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-17,[],IL,102nd +Reported Back To Judiciary; 003-000-000,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2022-02-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-02-23,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2021-03-17,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-02-26,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-05-04,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Second Reading,2021-03-09,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-19,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-17,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-11-21,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-02-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Insurance Committee; 016-000-000,2022-02-15,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Local Government,2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-02-01,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-08,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2021-04-09,['amendment-introduction'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-19,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-03-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Re-assigned to Veterans' Affairs Committee,2021-03-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-03-18,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-19,[],IL,102nd +To Special Issues (INS) Subcommittee,2022-02-17,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-03-22,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2022-02-01,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-04-04,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-02-07,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-03-16,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-04,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2021-04-12,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-18,[],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2022-02-18,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. David A. Welter,2021-10-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-05,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-12-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2022-03-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Postponed - Transportation,2022-02-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-02-25,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2021-03-26,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-26,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-04-09,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-01,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2022-02-17,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass / Short Debate Police & Fire Committee; 015-000-000,2021-03-25,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2022-02-18,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-04-27,[],IL,102nd +Assigned to Consumer Protection Committee,2021-02-23,['referral-committee'],IL,102nd +Do Pass State Government; 007-000-000,2022-02-07,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass Behavioral and Mental Health; 010-000-000,2021-04-14,['committee-passage'],IL,102nd +Do Pass / Short Debate Insurance Committee; 019-000-000,2021-03-08,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-11-14,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Ethics & Elections Committee,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-07-25,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-21,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-01-18,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2022-02-28,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Pensions,2021-03-09,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jawaharial Williams,2021-04-14,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass Higher Education; 014-000-000,2021-03-16,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Chief House Sponsor Rep. Thomas M. Bennett,2021-06-08,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-04-04,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Reported Back To Health; 003-001-000,2021-03-16,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-31,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2022-02-28,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-08-26,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-14,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2021-02-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-09,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-03-23,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-05-30,[],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2022-01-20,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-10-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. John Connor,2022-02-18,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Arrive in Senate,2022-03-16,['introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2022-03-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2021-03-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2022-01-28,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-06-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Tourism and Hospitality,2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2022-01-26,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-03-12,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-02-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-23,[],IL,102nd +Second Reading,2021-03-09,['reading-2'],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2021-03-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +"Removed from Consent Calendar Status Rep. Marcus C. Evans, Jr.",2021-04-12,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2022-02-09,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-01,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2021-04-09,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Licensed Activities; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass Education; 010-000-000,2022-02-09,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-04-19,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-05,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2021-03-30,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-03-16,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-15,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-04-14,['amendment-introduction'],IL,102nd +Assigned to Police & Fire Committee,2021-03-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-03-25,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2022-02-28,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2022-02-09,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-01,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-04-05,[],IL,102nd +To Commercial & Property Subcommittee,2021-03-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Referred to Rules Committee,2021-02-22,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-01,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-17,[],IL,102nd +Re-assigned to Insurance,2022-01-05,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-02-02,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jim Durkin,2022-03-01,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-09,[],IL,102nd +Do Pass Pensions; 008-000-000,2022-02-09,['committee-passage'],IL,102nd +Do Pass Health; 015-000-000,2022-02-09,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-17,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2021-04-09,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-01,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2022-02-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2021-04-20,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-07-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-10,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. David Koehler,2021-03-25,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Paul Jacobs,2021-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-09-14,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments.",2022-02-01,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2022-02-07,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-29,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Arrive in Senate,2022-03-30,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2022-02-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Mike Murphy,2021-03-26,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Commerce,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2022-03-01,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-02-24,[],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-09,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-05,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-14,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-10,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Keith R. Wheeler,2021-04-20,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2022-02-08,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 025-000-000,2021-03-24,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Re-assigned to Executive,2022-02-08,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-09,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2021-04-14,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-04,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Financial Institutions Committee,2022-02-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-25,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-04-07,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2022-01-19,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-01-18,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2022-03-17,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-03-30,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Norine K. Hammond,2021-03-24,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 005-003-000,2022-02-16,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-09,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2021-04-20,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Amy Elik,2022-03-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-04-13,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Ryan Spain,2021-03-22,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Re-assigned to Judiciary,2022-01-05,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-01-19,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-19,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2022-01-31,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-03-10,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-19,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-01-11,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-05-12,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-09-22,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Donald P. DeWitte,2021-04-01,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-02-24,[],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-03-26,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Resolution Adopted 111-000-000,2022-04-08,['passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-25,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-16,[],IL,102nd +Arrive in Senate,2021-05-06,['introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2021-02-26,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Income Tax Subcommittee,2021-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Assigned to Higher Education,2022-02-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-23,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Dave Vella,2022-02-07,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 007-004-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-10-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-10,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-05,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-05-19,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-17,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Postponed - Licensed Activities,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2023-01-03,['introduction'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-10,[],IL,102nd +To Executive- Procurement,2022-02-07,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2022-03-01,['amendment-introduction'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-19,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2022-03-01,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-13,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Postponed - Agriculture,2021-03-25,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-04-13,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-26,['referral-committee'],IL,102nd +To Family Law & Probate Subcommittee,2021-03-23,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-15,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-02-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael Kelly,2022-08-29,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-03-19,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Fiscal Note Requested by Rep. Blaine Wilhour,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-04-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-26,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 025-000-000,2021-03-24,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-02-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Re-assigned to Higher Education,2022-01-05,['referral-committee'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2021-04-20,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Dave Severin,2021-03-24,[],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-04-09,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-03-04,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-09,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-06-08,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2021-03-18,[],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-08,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-04,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-03-18,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 027-000-000,2021-03-10,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-02-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-11,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-05-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-03-16,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2021-04-09,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-06-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-02-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 006-004-000,2022-02-09,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-12-29,[],IL,102nd +Be Adopted Education; 012-000-000,2022-02-16,['committee-passage-favorable'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2022-02-09,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-22,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2022-02-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dave Syverson,2022-02-08,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Postponed - Energy and Public Utilities,2021-04-22,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2021-03-19,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jim Durkin,2021-04-15,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-03-23,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-07-07,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-12-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Appropriations- Constitutional Offices,2022-02-01,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-07,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2022-02-07,['amendment-introduction'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Rep. Katie Stuart,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-01-18,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Medicaid & Managed Care Subcommittee,2021-03-19,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +"Chief Sponsor Changed to Rep. Lawrence Walsh, Jr.",2021-04-02,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tim Butler,2021-03-16,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Re-assigned to Police & Fire Committee,2021-03-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-03-03,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-03-02,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2021-04-20,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2022-03-01,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-02-25,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-02-15,[],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 029-000-000,2022-02-16,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jim Durkin,2021-04-22,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-09,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 16, 2021",2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-16,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Public Safety Committee,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-09,[],IL,102nd +To Appropriations- Human Services,2021-03-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2021-04-20,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-10,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Chief Sponsor Changed to Rep. Edgar Gonzalez, Jr.",2021-03-22,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Re-assigned to Revenue,2022-01-05,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 011-001-000",2022-02-01,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-01-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +To Executive- Elections,2021-03-17,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-24,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-12,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-03-24,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-17,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Steven Reick,2022-02-14,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Re-assigned to Judiciary,2022-01-05,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anthony DeLuca,2022-02-23,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-10-19,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 028-000-000,2021-03-08,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2021-08-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2022-02-28,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-03-22,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-10-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass Health; 010-006-000,2021-03-16,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2022-02-04,['amendment-introduction'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-19,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Sara Feigenholtz,2021-03-19,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Postponed - Human Rights,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-10,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +To Income Tax Subcommittee,2022-02-10,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Income Tax Subcommittee,2022-02-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2022-04-07,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2021-03-10,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass Executive; 016-000-000,2022-11-30,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-08,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Re-assigned to Appropriations-General Services Committee,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John Connor,2022-02-18,['amendment-introduction'],IL,102nd +Re-assigned to Executive,2022-01-05,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-11-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2021-03-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-01-28,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-08-09,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-10-19,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-13,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Seth Lewis,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2022-02-10,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-02-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Licensed Activities,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-03-09,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-01-14,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-03-30,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-06,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2022-01-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Re-assigned to Personnel & Pensions Committee,2021-03-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-13,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Chris Miller,2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-10-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-02-11,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Police & Fire Committee; 015-000-000,2021-03-25,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Do Pass Agriculture; 009-004-001,2021-03-25,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-04-13,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-17,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2021-03-17,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-01-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-06-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 21, 2021",2021-04-20,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-05-27,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass / Consent Calendar Financial Institutions Committee; 011-000-000,2021-03-09,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Removed Co-Sponsor Rep. Maurice A. West, II",2021-02-26,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Police & Fire Committee,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2021-04-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-01-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2021-12-21,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2021-03-18,[],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-02-15,[],IL,102nd +Remains in Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-16,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-10,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Ethics,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Re-assigned to Appropriations-Human Services Committee,2021-03-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Tom Weber,2021-04-20,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-04-01,['amendment-introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-17,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-05-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-01-11,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-02,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-02-17,[],IL,102nd +Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-02-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-04-19,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-03-25,[],IL,102nd +Postponed - Transportation,2021-03-24,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-01-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-02-19,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-03-30,['introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-02-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-02-08,[],IL,102nd +To Judiciary- Property Law,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Re-assigned to Judiciary,2022-01-26,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-09,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2022-03-01,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-06-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Health; 013-000-000,2021-03-16,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-22,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-10-19,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-08,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Re-assigned to Executive,2022-02-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-03-25,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-03-22,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Resolution Adopted 112-000-000,2022-03-15,['passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-05-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-10-19,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-28,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-10-26,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 008-005-000,2021-03-16,['committee-passage'],IL,102nd +Do Pass Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2021-04-21,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-02-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-30,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-26,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-04-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-03-11,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-26,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to State Government,2022-01-05,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-09,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-14,[],IL,102nd +Do Pass Executive; 017-000-000,2021-03-17,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-10-18,[],IL,102nd +Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-07,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Appropriations-Public Safety Committee; 011-006-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-01-20,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-11-14,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to Tourism and Hospitality,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-05-11,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-11-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Re-assigned to Executive,2022-01-05,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-23,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. John Connor,2021-04-09,['amendment-introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Re-assigned to Agriculture & Conservation Committee,2021-03-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michael Halpin,2022-02-22,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-10,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Re-assigned to Local Government,2022-01-05,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-12,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Fiscal Note Requested by Rep. Blaine Wilhour,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Ryan Spain,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Financial Institutions Committee,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-08-26,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-10-01,[],IL,102nd +Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-01-31,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +To Executive- Cannabis,2021-03-24,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-22,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-11,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-02-24,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-04-13,['amendment-introduction'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-03-22,['referral-committee'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2022-03-01,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-10-19,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-04-20,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-14,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Postponed - Licensed Activities,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Remains in Counties & Townships Committee,2021-03-26,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-01-25,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2022-02-02,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-16,[],IL,102nd +Re-assigned to Judiciary,2022-01-05,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Seth Lewis,2022-02-14,[],IL,102nd +Chief Sponsor Changed to Sen. Scott M. Bennett,2022-03-08,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-13,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Rep. Michael J. Zalewski,2022-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +To Utilities Subcommittee,2022-02-15,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-04-12,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-08-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-20,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-04-07,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-19,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Agriculture,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +To Executive- Liquor,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-01-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-03-01,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-02-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-12,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-11,[],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-05-05,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-03-11,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-03-18,[],IL,102nd +Chief Sponsor Changed to Rep. Joyce Mason,2021-03-23,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-04-23,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 4, 2021",2021-04-29,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2022-02-01,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-26,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Added as Chief Co-Sponsor Sen. John F. Curran,2021-03-10,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2022-02-15,[],IL,102nd +House Committee Amendment No. 1 Adopted in Veterans' Affairs Committee; by Voice Vote,2021-05-11,['amendment-passage'],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 006-000-000,2021-03-01,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-04-27,[],IL,102nd +Do Pass Judiciary; 008-000-000,2021-04-14,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-02-22,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-25,[],IL,102nd +Do Pass Criminal Law; 007-002-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-09,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-04,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-03-17,[],IL,102nd +Arrive in Senate,2022-04-07,['introduction'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2021-04-09,['amendment-introduction'],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-03-23,[],IL,102nd +Do Pass Education; 014-000-000,2021-03-16,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Recommends Be Adopted - Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-24,['committee-passage-favorable'],IL,102nd +Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-02-22,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-02-22,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-03-16,[],IL,102nd +Do Pass / Short Debate Higher Education Committee; 010-000-000,2021-03-25,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2021-03-19,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Do Pass Education; 014-000-000,2022-02-16,['committee-passage'],IL,102nd +Resolution Adopted; 056-000-000,2021-10-20,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2021-05-06,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Be Adopted Commerce; 010-000-000,2021-05-06,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2021-04-08,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-02-16,[],IL,102nd +Be Adopted State Government; 009-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-03-25,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-02-24,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-08,[],IL,102nd +Do Pass Education; 015-000-000,2021-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-04-09,['amendment-introduction'],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-02,['referral-committee'],IL,102nd +Removed from Consent Calendar Status Rep. Dave Vella,2022-02-17,[],IL,102nd +Reported Back To Health; 004-000-000,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Do Pass Criminal Law; 009-000-000,2021-04-20,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-03-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2021-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-28,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 029-000-000,2021-03-22,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2021-03-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-02-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 9, 2021",2021-03-05,[],IL,102nd +Resolution Adopted,2022-11-16,['passage'],IL,102nd +Reported Back To Revenue & Finance Committee;,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-10-28,[],IL,102nd +Resolution Adopted,2021-09-01,['passage'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Do Pass Education; 011-004-000,2021-04-20,['committee-passage'],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2022-04-06,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-03-09,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Education,2021-03-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-09,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-24,[],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-14,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-21,[],IL,102nd +Do Pass Higher Education; 012-000-000,2021-04-14,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2021-03-23,[],IL,102nd +Reported Back To Health; 004-000-000,2021-03-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-08,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2021-03-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Scott M. Bennett,2021-10-26,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-03-12,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-04-08,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-03-16,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Removed Co-Sponsor Rep. Terra Costa Howard,2021-05-17,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-09,[],IL,102nd +Added as Chief Co-Sponsor Sen. Rachelle Crowe,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-23,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-15,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-01-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2021-03-22,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-03-16,[],IL,102nd +Re-referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Do Pass Judiciary; 007-002-000,2021-03-16,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-23,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kambium Buckner,2021-04-20,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Arrive in Senate,2021-05-06,['introduction'],IL,102nd +Resolution Adopted,2021-05-05,['passage'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-03-08,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2021-04-20,['amendment-introduction'],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Chief Sponsor Changed to Rep. Katie Stuart,2021-03-22,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2022-02-10,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Veterans' Affairs Committee; by Voice Vote,2022-04-05,['amendment-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-05,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Added as Chief Co-Sponsor Sen. Scott M. Bennett,2022-01-26,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-28,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 16, 2021",2021-03-10,[],IL,102nd +Do Pass / Short Debate Immigration & Human Rights Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2021-04-20,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +Assigned to Human Services Committee,2022-03-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-23,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-03-23,[],IL,102nd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-01-25,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2021-03-23,[],IL,102nd +Arrive in Senate,2022-03-16,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-03-23,[],IL,102nd +Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2021-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-02-28,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2021-04-07,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-03-22,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass Insurance; 012-000-000,2021-04-21,['committee-passage'],IL,102nd +Resolution Adopted; 053-000-000,2022-04-09,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Chapin Rose,2021-04-12,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2022-02-17,['amendment-introduction'],IL,102nd +Removed from Consent Calendar Status Rep. Stephanie A. Kifowit,2022-02-23,[],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-03-18,[],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-04-06,[],IL,102nd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-04-13,[],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-25,[],IL,102nd +Arrive in Senate,2021-05-06,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-26,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"House Committee Amendment No. 1 Adopted in Transportation: Regulation, Roads & Bridges Committee; by Voice Vote",2022-04-05,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-03-09,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2022-02-08,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-05-20,[],IL,102nd +Postponed - Health,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-04-05,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-30,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Elizabeth Hernandez,2021-03-22,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 007-000-000,2021-03-10,['committee-passage'],IL,102nd +Do Pass Criminal Law; 010-000-000,2021-03-24,['committee-passage'],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2021-05-05,['committee-passage-favorable'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2021-03-18,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-03-11,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Randy E. Frese,2021-04-14,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-18,[],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-07,[],IL,102nd +Resolution Adopted,2021-10-29,['passage'],IL,102nd +Arrive in Senate,2021-05-06,['introduction'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-04-09,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Resolution Adopted 111-000-000,2021-05-21,['passage'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-23,[],IL,102nd +Arrive in Senate,2022-02-15,['introduction'],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-17,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2021-04-20,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-02-16,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2021",2021-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 013-001-001,2021-03-02,['committee-passage'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-10-28,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-10-27,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-11,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2021-04-20,['amendment-introduction'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-31,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2021-05-24,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-05,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-02-16,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Melinda Bush,2022-02-07,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-03-29,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Steve McClure,2022-01-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-16,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-22,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Brad Halbrook,2022-02-28,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-04,[],IL,102nd +Chief Sponsor Changed to Rep. Sue Scherer,2022-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-08-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-28,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-02-01,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-04-07,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-23,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. William Davis,2021-04-09,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2021-04-16,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Reported Back To Judiciary; 002-000-001,2022-02-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-10-28,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-26,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2022-02-15,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Ryan Spain,2021-04-21,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-03,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-03-25,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-03-16,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-02-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2022-02-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2021-05-04,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 010-005-001,2022-02-17,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-03-11,[],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 006-002-000,2021-03-05,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2022-02-07,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-09-28,[],IL,102nd +Assigned to Licensed Activities,2021-04-07,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2022-02-07,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-05-14,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-04-16,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2021-03-23,[],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2022-02-18,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-23,[],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-02-07,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-04-13,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sue Scherer,2022-02-04,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-08,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2022-03-02,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-02-25,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kathleen Willis,2021-04-20,['amendment-introduction'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-03-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2022-02-09,['amendment-introduction'],IL,102nd +Reported Back To Revenue & Finance Committee;,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-01-19,[],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate **,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Antonio Muñoz,2022-02-10,['amendment-introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-09,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Janet Yang Rohr,2022-02-14,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 1, 2022",2022-01-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-01-31,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2021-04-05,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2022-02-28,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Re-assigned to Housing Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-08,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-08,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2022-02-08,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-03-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-12-08,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-12-07,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-08-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-19,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Joe Sosnowski,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-02-15,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-03-24,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-12-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-01,[],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2021",2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2023-01-05,[],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2022-02-15,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-22,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2021-02-10,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Aaron M. Ortiz,2021-04-09,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-09,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-28,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-25,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-09,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-05,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Theresa Mah,2021-01-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2022-02-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-02-16,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-05-03,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-04,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-15,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2021-03-17,['amendment-introduction'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass / Standard Debate Ethics & Elections Committee; 010-007-000,2021-03-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-01-31,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-02-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-11-14,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-12,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-01,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2022-01-20,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2021-04-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-01-25,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2022-04-05,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-18,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2021-03-23,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Healthcare Access and Availability,2022-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-02-08,[],IL,102nd +Re-assigned to Executive,2022-01-11,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-17,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2021-04-08,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-02-07,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-04-13,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-01-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Fiscal Note Filed,2021-03-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-28,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-03-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2021-03-22,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2022-02-07,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-10-19,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-01,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2022-02-09,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass Behavioral and Mental Health; 010-000-000,2022-02-07,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-19,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-11,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2021-04-12,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-05-20,[],IL,102nd +Do Pass Energy and Public Utilities; 019-000-000,2022-02-10,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-02,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-08-30,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-02-16,[],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Pensions,2022-01-26,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-02,[],IL,102nd +Do Pass Judiciary; 007-002-000,2021-03-16,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-19,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2021-03-12,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-01-20,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2022-02-03,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-02-01,[],IL,102nd +Arrived in House,2021-06-08,['introduction'],IL,102nd +Arrived in House,2021-06-08,['introduction'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-26,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-13,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-03,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Re-assigned to Health Care Availability & Accessibility Committee,2021-03-11,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Agriculture,2021-04-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-28,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-12,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 21, 2021",2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-03,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Reported Back To Health; 005-000-000,2021-04-06,[],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Consumer Protection Committee,2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Tourism and Hospitality,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-04-15,[],IL,102nd +Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Do Pass Veterans Affairs; 005-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-03-04,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-25,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-29,[],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2021-05-28,[],IL,102nd +Second Reading,2021-03-09,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-02-09,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Re-assigned to Cities & Villages Committee,2021-03-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-02-25,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-08-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Insurance Committee; 019-000-000,2021-03-25,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-09,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-05-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-03-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2022-02-17,['committee-passage'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-01-27,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-10-26,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-02-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kathleen Willis,2022-03-01,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-03-22,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-02,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Chief Sponsor Changed to Rep. Tom Demmer,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-11,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-01-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-10-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2022-03-01,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-04-01,[],IL,102nd +Do Pass Licensed Activities; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 018-011-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robert Rita,2021-04-20,['amendment-introduction'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-18,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Angelica Guerrero-Cuellar,2021-04-16,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2022-02-07,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-03,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-05-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jim Durkin,2021-04-15,['amendment-introduction'],IL,102nd +Remains in International Trade & Commerce Committee,2022-04-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Counties & Townships Committee,2021-03-18,[],IL,102nd +To Procurement Subcommitee,2021-03-17,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-001",2022-02-16,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Theresa Mah,2021-03-22,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2021-04-16,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Rep. Daniel Swanson,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2022-02-17,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-03-10,[],IL,102nd +Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Thomas Cullerton,2021-04-15,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2021-03-25,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-04-13,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2021-04-16,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Sam Yingling,2022-01-07,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Re-assigned to Transportation,2022-01-05,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Motion Withdrawn Rep. La Shawn K. Ford; - Motion to Table Bill Pursuant to Rule 60(b),2022-06-06,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-02-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Cyril Nichols,2022-03-01,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-04-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-11-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-02,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-02,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Income Tax Subcommittee,2022-02-03,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Re-assigned to Judiciary,2022-01-05,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-08,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Income Tax Subcommittee,2022-02-03,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Do Pass Insurance; 012-000-000,2021-04-21,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Avery Bourne,2021-04-15,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-01-18,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-07-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Special Issues (INS) Subcommittee,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-06,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-29,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +To Utilities Subcommittee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-02-26,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Police & Fire Committee,2021-03-23,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-02-25,[],IL,102nd +Reported Back To Revenue & Finance Committee;,2022-02-17,[],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-09,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Police & Fire Committee,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar Order of Resolutions,2021-10-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2022-01-20,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2021-03-04,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2021-03-24,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-01-26,[],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-01-29,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2021-03-24,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-24,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-03,[],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-29,[],IL,102nd +To Appropriations- Human Services,2021-04-07,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-01-31,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-10-19,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-11,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-22,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-05-26,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Arrive in Senate,2023-01-03,['introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Financial Institutions,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2021-04-07,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-02,[],IL,102nd +Assigned to Insurance,2022-02-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-02-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-02-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Assigned to Human Services Committee,2021-04-14,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - State Government,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2022-02-04,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-10-19,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-02-23,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2021-03-23,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-09-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-03-25,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-07-06,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-10-08,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-05,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Remains in Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-01-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Fiscal Note Requested by Rep. Blaine Wilhour,2021-04-15,[],IL,102nd +Re-referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-03-01,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-05-07,[],IL,102nd +To Sex Offenses and Sex Offender Registration Subcommittee,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +To Sex Offenses and Sex Offender Registration Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2021-04-20,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Re-assigned to Appropriations-Human Services Committee,2022-02-15,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Steven M. Landek,2021-03-12,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-16,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-04-20,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-18,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-19,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-07-25,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-05,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-19,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-03,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +To Appropriations- Health,2022-02-08,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2021-03-17,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-03-17,['amendment-introduction'],IL,102nd +To Executive- Liquor,2021-04-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Re-assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Reported Back To Revenue & Finance Committee;,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-02-01,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-02-08,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-10-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2022-02-15,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-12-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2022-03-10,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-02-17,[],IL,102nd +Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-01-25,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-09-30,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-11,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kambium Buckner,2021-03-09,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-14,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-19,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-08-24,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2021-04-19,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2021-04-20,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-02-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-04-09,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Fiscal Note Requested by Rep. Sonya M. Harper,2022-02-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-04-13,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2022-02-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-02-02,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2021-03-16,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2022-02-10,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-01-27,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Chief Sponsor Changed to Rep. Tim Ozinga,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Kris Tharp,2022-11-14,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-14,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-02-16,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-02-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Avery Bourne,2022-01-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Chief Sponsor Changed to Rep. Kelly M. Cassidy,2021-03-22,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Criminal Law- Clear Compliance,2021-03-24,[],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-02-14,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-06-16,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-22,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-04-01,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +To Subcommittee on Future Cellular Development,2021-04-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-14,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2022-07-06,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-11,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mike Murphy,2021-04-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Pensions; 008-001-000,2021-04-14,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Arrive in Senate,2022-04-07,['introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-02-22,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +To Property Tax Subcommittee,2022-01-27,[],IL,102nd +Postponed - Health; Subcommittee on Children & Family,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-07-21,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-10-12,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-03-11,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-02,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2021-03-25,['committee-passage'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-08-30,[],IL,102nd +Do Pass Revenue; 010-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-23,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass Executive; 014-002-000,2021-04-21,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-05,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-17,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-02-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Co-Sponsor Rep. Amy Elik,2021-02-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Re-assigned to Appropriations,2021-04-20,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 1, 2022",2022-01-12,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-07,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-18,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-25,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-01-31,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-02-05,[],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-02-24,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-03-04,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2021-03-11,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-18,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-05-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-06-16,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-02-18,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Executive- Cannabis,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-09,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-12,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +To Special Issues (HS) Subcommittee,2021-03-02,[],IL,102nd +Approved for Consideration Assignments,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Home Rule Note Requested by Rep. Sonya M. Harper,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-01-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-10-21,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2022-02-17,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2021-04-22,[],IL,102nd +Do Pass Education; 013-000-000,2022-02-16,['committee-passage'],IL,102nd +To Special Issues (INS) Subcommittee,2021-03-09,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Keith R. Wheeler,2022-02-17,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-09,[],IL,102nd +Postponed - Executive,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-05,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-03-24,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-12,[],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-01-18,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-22,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-14,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-03-26,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-12,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2022-02-02,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-09-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. William Davis,2021-04-20,['amendment-introduction'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. Amy Elik,2022-04-09,[],IL,102nd +First Reading,2021-05-13,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-03-24,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2022-02-07,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Fiscal Note Requested by Rep. Tom Demmer,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +To Subcommittee on Rate Reform and Energy,2021-03-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-06,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-11-22,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-07-08,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2022-11-23,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-02,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2021-04-12,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-02-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Financial Institutions,2021-04-13,[],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-03-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-09-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-08-31,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Rep. Amy Elik,2021-03-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-12-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-14,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Child Care Accessibility & Early Childhood Education Committee; 011-000-000,2021-03-12,['committee-passage'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-11-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2021-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-17,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-04-13,[],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-04-08,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-10,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-24,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-09,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-04-22,['amendment-introduction'],IL,102nd +Assigned to Executive Committee,2021-10-14,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-05-07,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2022-03-01,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-03-25,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-17,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-04-13,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-08-31,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 006-004-000,2022-02-09,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-03,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-03-26,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-21,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-10,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-03-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-02-08,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-10-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-02-10,[],IL,102nd +Assigned to Energy & Environment Committee,2021-03-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-01,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-08-09,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-01-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-09-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dan Ugaste,2022-02-18,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-09,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-11-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2022-08-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-05-19,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-02,['referral-committee'],IL,102nd +Do Pass Human Rights; 006-003-000,2021-03-19,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2022-03-08,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Chief House Sponsor Rep. Edgar Gonzalez, Jr.",2022-05-11,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Reported Back To State Government Administration Committee;,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2021-04-08,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-04-09,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 016-001-000,2022-02-17,['committee-passage'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-19,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2021-03-22,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-03-04,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2022-02-15,['amendment-introduction'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-17,[],IL,102nd +Chief Sponsor Changed to Rep. Andrew S. Chesney,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-04-20,['amendment-introduction'],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-02-15,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-03-18,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-05-05,[],IL,102nd +Postponed - Pensions,2021-03-24,[],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Co-Sponsor Rep. Ann M. Williams,2021-02-08,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-07,[],IL,102nd +Do Pass Pensions; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2022-03-01,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-04-29,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-02-26,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Subcommittee on Public Health,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-05-06,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-05,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-03-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-03,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. William Davis,2022-02-25,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Appropriations-Human Services Committee; 024-000-000,2021-03-26,['committee-passage'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-19,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2021-03-10,['amendment-introduction'],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-15,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Steve McClure,2021-02-23,[],IL,102nd +Resolution Adopted,2021-04-16,['passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-03-02,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2021-04-08,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2021-02-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-08,[],IL,102nd +Do Pass / Short Debate Insurance Committee; 016-002-000,2021-03-15,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-15,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Thomas M. Bennett,2021-04-08,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2021-04-16,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mark Batinick,2021-04-13,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 022-000-000,2022-04-08,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2021-04-14,['amendment-introduction'],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-09,[],IL,102nd +Do Pass Executive; 012-001-000,2022-02-10,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-10,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2021-03-09,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-01-19,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 007-000-000,2021-03-10,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-04-27,['amendment-failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-09,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-08,[],IL,102nd +Resolution Adopted,2021-05-31,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-04-29,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,[],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2022-02-15,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Counties & Townships Committee,2021-03-23,[],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2021",2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-02-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-16,[],IL,102nd +Second Reading,2021-03-16,['reading-2'],IL,102nd +Do Pass Higher Education; 011-000-000,2021-04-14,['committee-passage'],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-03-08,['committee-passage'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 028-000-000,2021-03-17,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-01-29,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-02,[],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2021-03-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Amy Elik,2022-02-02,[],IL,102nd +Do Pass Health; 013-000-000,2021-04-14,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-09,[],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-03-17,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-03-11,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-03-24,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-22,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Pensions,2021-04-13,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-03-04,[],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-24,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. C.D. Davidsmeyer,2022-11-17,[],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-03-25,[],IL,102nd +Arrive in Senate,2021-05-06,['introduction'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2021-04-20,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 9, 2021",2021-03-05,[],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Seth Lewis,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-02-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Resolution Adopted,2022-12-01,['passage'],IL,102nd +Do Pass Health; 013-000-000,2021-03-24,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-10,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2021-04-08,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2021-03-23,[],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +Do Pass Commerce; 010-000-000,2021-03-25,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2021-04-13,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Reported Back To Health; 004-000-000,2021-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-10,['committee-passage'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-08,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Do Pass / Consent Calendar Cities & Villages Committee; 010-000-000,2021-03-16,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-04,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-22,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-11,[],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Tom Demmer,2021-03-10,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-02-24,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Debbie Meyers-Martin,2021-03-22,['amendment-introduction'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Reported Back To Health; 005-000-000,2021-04-07,[],IL,102nd +Arrive in Senate,2021-05-31,['introduction'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2021-03-22,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-08,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-25,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-09,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-03-23,[],IL,102nd +Resolution Adopted,2021-01-14,['passage'],IL,102nd +Assigned to Higher Education Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-25,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-01,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-08,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions April 6, 2022",2022-04-05,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Chief Co-Sponsor Changed to Rep. Kambium Buckner,2021-02-24,[],IL,102nd +Re-referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michael Halpin,2021-05-06,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-12,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-02-05,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-05-06,[],IL,102nd +Assigned to Human Services Committee,2021-04-14,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-04-06,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2022-02-08,[],IL,102nd +Assigned to Agriculture,2022-01-26,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Placed on Calendar Order of Resolutions,2021-02-10,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-14,[],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 019-006-000,2021-03-17,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2021-03-23,[],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2022-01-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-05-06,[],IL,102nd +Arrive in Senate,2022-03-16,['introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Fred Crespo,2022-03-01,['amendment-introduction'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Added Co-Sponsor Rep. William Davis,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-22,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-09,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-03-25,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Do Pass Human Rights; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-03-10,[],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Second Reading,2021-03-09,['reading-2'],IL,102nd +Second Reading,2021-03-09,['reading-2'],IL,102nd +Remove Chief Co-Sponsor Rep. Rita Mayfield,2021-05-06,[],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-25,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-03-15,['amendment-introduction'],IL,102nd +Resolution Adopted,2021-05-29,['passage'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-02-06,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2022-02-01,[],IL,102nd +Arrived in House,2021-10-27,['introduction'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Be Adopted Education; 013-000-000,2021-05-05,['committee-passage-favorable'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2021-05-26,[],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-04-07,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-25,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-02-17,[],IL,102nd +Do Pass Higher Education; 011-003-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Revenue; 011-000-000,2021-03-05,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2022-12-30,[],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2023-01-06,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-02-25,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-04-13,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Re-assigned to Executive,2022-01-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-01-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-03-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-02,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass Revenue; 011-000-000,2022-02-10,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-02-08,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Chief Sponsor Changed to Sen. Julie A. Morrison,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-10-18,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-03-29,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Bob Morgan,2021-02-24,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-15,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-02-10,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-02-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 010-005-001,2021-03-09,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-02-15,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Assigned to Restorative Justice Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-12-01,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Cybersecurity, Data Analytics, & IT Committee",2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-21,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-04,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-04,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-02-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-05-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2022-02-28,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-04,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-18,[],IL,102nd +To Income Tax Subcommittee,2022-02-10,[],IL,102nd +Resolution Adopted,2022-04-03,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2022-02-07,['amendment-introduction'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-22,[],IL,102nd +Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-29,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-08-26,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2021-04-08,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2022-02-01,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-12,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-02,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-09,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2022-01-07,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2022-02-01,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-11,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2022-03-01,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Ann M. Williams,2021-02-26,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-02-09,[],IL,102nd +Do Pass Commerce; 012-000-000,2022-02-07,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +To Special Issues (INS) Subcommittee,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-01-12,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-12,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-01,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-02-08,[],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2022-02-18,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2021-03-23,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-16,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass State Government; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-09,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 022-000-000,2022-02-16,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-10-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Revenue,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-16,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2022-02-07,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-11,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2022-02-07,['amendment-introduction'],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2021-04-14,[],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Assigned to Health Care Availability & Accessibility Committee,2021-02-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-02-08,[],IL,102nd +Reported Back To State Government Administration Committee;,2021-03-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2021-04-08,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-12,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Ryan Spain,2022-01-26,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-02-02,['committee-passage'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-01,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-25,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2022-03-04,['amendment-introduction'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2021-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-03-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Removed from Consent Calendar Status Rep. Edgar Gonzalez, Jr.",2022-02-22,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-09-21,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-01-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-01-31,[],IL,102nd +Postponed - Licensed Activities,2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Do Pass Behavioral and Mental Health; 011-000-000,2021-03-24,['committee-passage'],IL,102nd +Re-assigned to Restorative Justice Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-02-17,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-03-24,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 16, 2021",2021-03-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-04-04,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Postponed - Health,2021-03-09,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-03-19,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-05,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-04,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Postponed - Healthcare Access and Availability,2022-02-16,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2022-02-08,['amendment-introduction'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2021-03-09,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-07,[],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-02-15,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-05-07,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2021-03-18,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2022-02-18,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. John Connor,2022-02-15,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-02-16,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patricia Van Pelt,2022-02-09,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Ethics & Elections Committee,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-26,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass Healthcare Access and Availability; 007-000-000,2022-02-09,['committee-passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-01,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-23,[],IL,102nd +Assigned to Health Care Availability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Recommends Be Adopted Appropriations-Human Services Committee; 016-000-000,2021-05-30,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-22,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-10-05,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-31,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-03-01,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2022-04-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-02-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Pensions,2022-02-08,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-09,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-04,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-01-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-15,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Postponed - Education,2021-03-16,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2022-02-16,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-04-13,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-11,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-10,[],IL,102nd +Do Pass Higher Education; 012-000-000,2022-02-09,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Tim Ozinga,2022-02-25,['amendment-introduction'],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-02-15,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Ryan Spain,2021-03-19,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Resolution Adopted,2022-04-03,['passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-02-02,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2021-04-08,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-03-11,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-11-19,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-02-24,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Do Pass Executive; 012-003-000,2021-04-15,['committee-passage'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Terra Costa Howard,2021-02-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael Kelly,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-11-30,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-11,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-01,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2022-02-08,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2022-02-25,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Adopted Both Houses,2021-10-20,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Postponed - Education,2021-03-16,[],IL,102nd +Resolution Adopted,2021-05-29,['passage'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-05-25,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-11-17,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-04-07,[],IL,102nd +Co-Sponsor Rep. Robyn Gabel,2021-02-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-03-22,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Scott M. Bennett,2021-03-25,['amendment-introduction'],IL,102nd +Resolution Adopted 113-000-000,2022-04-08,['passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dan Ugaste,2021-04-13,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-03-25,[],IL,102nd +Chief Senate Sponsor Sen. Dave Syverson,2021-05-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-10,[],IL,102nd +Suspend Rule 21 - Prevailed 067-040-000,2021-03-18,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Ugaste,2021-05-06,[],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2021-04-15,['amendment-introduction'],IL,102nd +Do Pass Health; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2022-02-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 10, 2021",2021-03-09,[],IL,102nd +Resolution Adopted 070-044-000,2021-02-10,['passage'],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-01-21,[],IL,102nd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2021-03-17,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Healthcare Access and Availability,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-02-24,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2021-03-23,[],IL,102nd +Postponed - Judiciary,2021-03-03,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Delia C. Ramirez,2021-04-09,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-24,['amendment-passage'],IL,102nd +Added Co-Sponsor All Other Members of the House,2021-05-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Assigned to Insurance,2021-03-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Personnel & Pensions Committee; by Voice Vote,2021-03-12,['amendment-passage'],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 23, 2021",2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-23,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-04-20,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 6, 2021",2021-05-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-11,[],IL,102nd +Placed on Calendar Agreed Resolutions,2023-01-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-11,[],IL,102nd +Resolution Adopted,2022-04-08,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2021-04-08,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2021-02-26,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-02-06,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-03-23,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-02-06,[],IL,102nd +Chief Senate Sponsor Sen. Jil Tracy,2021-05-06,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-02,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2021-03-16,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Removed Co-Sponsor Rep. Sue Scherer,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 17, 2021",2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2021-03-22,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Pensions,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-04-05,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-04-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-03-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 23, 2021",2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Adopted in Counties & Townships Committee; by Voice Vote,2021-03-26,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-01-31,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-24,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-10,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Win Stoller,2021-03-09,['amendment-introduction'],IL,102nd +Postponed - Education,2021-03-16,[],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-14,[],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2022-04-08,['committee-passage-favorable'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-03-16,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 22, 2021",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Do Pass / Consent Calendar Consumer Protection Committee; 006-000-000,2021-03-08,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2021-03-11,[],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Moved to Suspend Rule 21 Rep. Elizabeth Hernandez,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2021-04-01,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2022-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 10, 2021",2021-03-09,[],IL,102nd +Assigned to State Government Administration Committee,2021-02-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-10,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 9, 2021",2021-03-05,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2021-03-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2022-02-18,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-03-11,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-05-07,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Recommends Be Adopted Human Services Committee; 008-000-000,2021-04-27,['committee-passage-favorable'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-25,[],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-17,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2021-03-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 15, 2021",2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-03-31,[],IL,102nd +Recommends Be Adopted - Consent Calendar Higher Education Committee; 010-000-000,2021-03-25,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-23,[],IL,102nd +Chief House Sponsor Rep. Stephanie A. Kifowit,2021-10-27,[],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2021-04-01,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Neil Anderson,2021-05-06,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-03-11,[],IL,102nd +Adopted Both Houses,2021-04-16,[],IL,102nd +Adopted Both Houses,2021-01-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-02-19,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-05-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 23, 2021",2021-03-17,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dave Syverson,2021-04-09,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2021-04-14,['amendment-introduction'],IL,102nd +Resolution Adopted,2022-04-08,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Resolution Adopted,2021-05-30,['passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Michelle Mussman,2021-03-22,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-11,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Human Rights,2022-02-08,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2021-04-08,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-02-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Assigned to Energy & Environment Committee,2021-03-02,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kathleen Willis,2021-03-08,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-02-26,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2022-02-16,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-17,[],IL,102nd +Second Reading,2021-03-10,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-03-18,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-01-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-05-05,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2022-03-02,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. LaToya Greenwood,2021-03-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-17,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Do Pass Health; 013-000-000,2021-03-16,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-06,[],IL,102nd +Resolution Adopted 116-000-000,2021-05-05,['passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2022-02-15,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-02-22,[],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Tourism and Hospitality,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2021-03-08,['amendment-introduction'],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-09,[],IL,102nd +Second Reading,2021-03-10,['reading-2'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Suspend Rule 21 - Prevailed 071-043-000,2021-05-26,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-22,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-10-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2022-02-09,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-20,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2021-03-05,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 To Subcommittee on Water Issues Management,2021-03-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2021-03-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2021-03-24,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Fiscal Note Filed,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Adopted in Energy & Environment Committee; by Voice Vote,2022-02-15,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-05,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-02-15,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-12-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2022-02-28,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-03-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-11-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-10-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Restorative Justice Committee,2021-03-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2022-02-17,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-07-07,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2022-02-04,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas M. Bennett,2022-02-09,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-02-22,[],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Higher Education Committee,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +To Judiciary- Torts,2022-01-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Caulkins,2021-05-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Amy Grant,2022-03-01,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-08-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-10-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-09,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-02-19,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Subcommittee on Future Cellular Development,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2021-05-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-14,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-01-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Cities & Villages Committee,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Robert Rita,2021-03-09,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-10-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-09-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Reported Back To Health; 005-000-000,2021-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Avery Bourne,2021-04-15,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-11-04,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2022-01-27,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2021-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-08-24,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-03-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-03-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-02-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-05-05,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-25,['amendment-failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Financial Institutions,2022-02-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2023-01-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-05,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2021-03-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-05-28,[],IL,102nd +House Committee Amendment No. 1 Adopted in Police & Fire Committee; by Voice Vote,2021-03-25,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Recommends Be Adopted - Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Tom Demmer,2021-04-20,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2022-01-27,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-01-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-01-14,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-03-11,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Do Pass / Consent Calendar Revenue & Finance Committee; 018-000-000,2022-02-17,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-10-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason A. Barickman,2021-04-14,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-04-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 029-000-000,2021-03-08,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-24,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Adopted in Police & Fire Committee; by Voice Vote,2021-03-25,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-21,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-02,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-01-29,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2022-04-06,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-05-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. David A. Welter,2022-02-24,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-05-07,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Assigned to Insurance Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Delia C. Ramirez,2021-03-22,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Rep. Lindsey LaPointe,2022-02-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-01-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2021-03-16,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mike Murphy,2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2022-02-16,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Postponed - Behavioral and Mental Health,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 008-000-000,2021-03-22,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Daniel Swanson,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-07-28,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2022-02-15,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-19,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Do Pass Licensed Activities; 005-000-001,2022-02-07,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mark Batinick,2021-03-17,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2022-01-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-01-28,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Ryan Spain,2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robert Rita,2021-04-14,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-07,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 011-006-000,2022-02-17,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +To Property Tax Subcommittee,2022-01-27,[],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-02-15,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-01-12,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Education,2021-03-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-12-01,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Keith R. Wheeler,2021-04-20,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Andrew S. Chesney,2021-04-15,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-03-09,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-03-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2022-11-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-01-12,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. LaToya Greenwood,2021-10-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-22,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-01-27,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2022-02-09,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-16,['amendment-failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2021-03-16,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Amy Elik,2021-03-19,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-03-04,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Remove Chief Co-Sponsor Rep. Dave Vella,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Revenue,2022-02-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-08,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-02-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-07-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Tim Ozinga,2021-04-20,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2021-04-16,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-01-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-11-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +To Income Tax Subcommittee,2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-09-29,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2021-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-03-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-22,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2022-02-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 17, 2022",2022-02-16,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-05-11,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-11-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-10-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Re-assigned to Agriculture,2022-02-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Co-Sponsor Rep. Charles Meier,2021-02-19,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Kathleen Willis,2022-02-15,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-04-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to Executive,2022-01-05,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-16,[],IL,102nd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-10-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Re-assigned to Executive,2021-05-14,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Appropriations-General Services Committee,2022-03-01,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2022-03-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2022-11-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-09-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-07-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-02-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-11-23,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-02-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-03-26,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2021-06-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2021-03-22,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-09,['amendment-failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-08-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-10-13,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-24,[],IL,102nd +To Executive- Government Operations,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Postponed - Health,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-11,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-01-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-10,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Remove Chief Co-Sponsor Rep. Tony McCombie,2022-01-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-09-27,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +To Executive- Elections,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-22,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Anna Moeller,2022-02-18,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-03-24,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Ethics & Elections Committee,2022-01-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-05-18,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-02-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-02-05,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Thomas Morrison,2022-03-01,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2021-03-22,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-01,[],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2022-03-30,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-07-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-01-27,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-08-24,[],IL,102nd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-14,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2022-02-17,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2022-02-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-02-16,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-02-17,[],IL,102nd +To Transportation Issues Subcommittee,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Do Pass Insurance; 013-000-000,2021-03-24,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Re-assigned to Appropriations,2021-04-07,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2022-01-11,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2021-03-22,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-08-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-07,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2021-10-18,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Norine K. Hammond,2021-04-15,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2022-04-07,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-05,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Reported Back To Revenue & Finance Committee;,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-03-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-10,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2021-03-11,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-11-15,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-12,[],IL,102nd +Chief Co-Sponsor Changed to Rep. Kambium Buckner,2022-08-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Revenue,2021-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-02-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-16,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 To Criminal Law- Clear Compliance,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-16,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Fiscal Note Filed,2021-04-21,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2022-02-17,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-10-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-06,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-14,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-12,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Recommends Be Adopted Economic Opportunity & Equity Committee; 005-001-002,2022-03-09,['committee-passage-favorable'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-04-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2022-02-24,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-01-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-30,[],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 012-000-000,2022-02-16,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"House Committee Amendment No. 1 Adopted in Transportation: Regulation, Roads & Bridges Committee; by Voice Vote",2022-02-15,['amendment-passage'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-05-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-08-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-03-22,[],IL,102nd +Do Pass Health; 014-001-000,2021-03-16,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-01,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-09,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-01-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-04-15,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-01-27,[],IL,102nd +Assigned to Agriculture,2021-03-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-07,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-04-20,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-01-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-09,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-02-16,[],IL,102nd +To Criminal Law- Clear Compliance,2021-03-16,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Postponed - Transportation,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +Assigned to State Government,2022-01-26,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-16,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2021-03-01,['amendment-introduction'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2021-10-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-05-14,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Removed Co-Sponsor Rep. Deb Conroy,2021-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-03-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-04-03,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-01-26,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-02-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-02,['amendment-passage'],IL,102nd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-02-15,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Removed Co-Sponsor Rep. Michelle Mussman,2022-02-10,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Thomas Cullerton,2021-03-29,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2022-02-10,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Remove Chief Co-Sponsor Rep. Martin J. Moylan,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 018-000-000,2021-03-26,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-12-09,[],IL,102nd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 005-003-000,2021-03-17,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sam Yingling,2022-02-15,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2021-03-09,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-30,[],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-02-18,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2022-02-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-09,[],IL,102nd +Removed from Consent Calendar Status Rep. Mark L. Walker,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Suzanne Ness,2022-02-16,[],IL,102nd +Racial Impact Note Requested by Rep. Sonya M. Harper,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2021-03-18,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"House Committee Amendment No. 1 Adopted in Transportation: Regulation, Roads & Bridges Committee; by Voice Vote",2022-02-15,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-01,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-01-25,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Licensed Activities,2021-04-14,[],IL,102nd +Postponed - Transportation,2021-03-24,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-03,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-01-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2022-03-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-03-19,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2022-02-17,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-03-31,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-09,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Behavioral and Mental Health,2021-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-22,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-01-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-18,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-02-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Do Pass Commerce; 012-000-000,2022-02-10,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-01-12,[],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-03-22,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-02-15,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-16,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-11-15,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-03-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-10-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +House Committee Amendment No. 1 Adopted in Personnel & Pensions Committee; by Voice Vote,2022-02-17,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-02-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-09-21,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2021-04-05,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading,2021-03-16,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +To Executive- Elections,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +To Sex Offenses and Sex Offender Registration Subcommittee,2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-09,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-22,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-16,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-28,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patricia Van Pelt,2021-03-18,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2021-03-25,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-17,[],IL,102nd +Resolution Adopted; 053-000-000,2021-03-17,['passage'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2021-03-23,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Recommends Be Adopted Labor & Commerce Committee; 026-000-000,2022-03-16,['committee-passage-favorable'],IL,102nd +Removed Co-Sponsor Rep. Andrew S. Chesney,2021-03-04,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-25,[],IL,102nd +Resolution Adopted; 041-015-000,2022-04-06,['passage'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Reported Back To Revenue; 002-000-000,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-03-25,['amendment-introduction'],IL,102nd +Adopted Both Houses,2021-04-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2021-04-28,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-03-11,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Be Adopted as Amended Education; 015-000-000,2022-02-22,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-03-22,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 15, 2021",2021-04-14,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Linda Holmes,2021-03-22,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 23, 2021",2021-03-17,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-10,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-14,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Adopted Both Houses,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-02-19,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-02-19,[],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2022-02-17,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-06-16,['referral-committee'],IL,102nd +Recommends Be Adopted as Amended - Consent Calendar Human Services Committee; 014-000-000,2021-03-23,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2021-10-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-04-29,[],IL,102nd +Be Adopted State Government; 009-000-000,2021-05-06,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 15, 2021",2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Do Pass Health; 015-000-000,2021-04-14,['committee-passage'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Be Adopted Higher Education; 011-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Second Reading,2021-03-10,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-14,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Do Pass Commerce; 011-000-000,2021-04-15,['committee-passage'],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Remove Chief Co-Sponsor Rep. Dagmara Avelar,2021-03-02,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-29,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-05,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-28,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-02-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-05-05,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2021-03-23,[],IL,102nd +Reported Back To Health; 003-001-000,2021-04-12,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-28,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2021-03-17,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Adopted Both Houses,2022-02-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 13, 2021",2021-04-07,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Suzanne Ness,2021-03-18,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2022-03-01,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-02-05,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Jason Plummer,2021-05-29,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-02-05,[],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-07-21,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Resolution Adopted; 056-000-000,2022-04-09,['passage'],IL,102nd +Do Pass / Short Debate Adoption & Child Welfare Committee; 008-000-000,2021-03-15,['committee-passage'],IL,102nd +Arrived in House,2022-04-09,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2021-10-20,[],IL,102nd +Do Pass / Consent Calendar Child Care Accessibility & Early Childhood Education Committee; 011-000-000,2021-03-12,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-03,['referral-committee'],IL,102nd +Do Pass / Short Debate Human Services Committee; 008-006-000,2021-03-23,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-08,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2021-03-23,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2022-03-01,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-23,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-02-07,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Tom Weber,2021-04-28,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Adopted Both Houses,2021-06-01,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-25,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-17,['referral-committee'],IL,102nd +Adopted Both Houses,2022-03-10,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 30, 2021",2021-05-29,[],IL,102nd +Arrive in Senate,2021-05-06,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Assigned to Consumer Protection Committee,2022-01-05,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-03-02,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-02-10,[],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-03,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-04-06,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-04-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-16,['amendment-failure'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-05-30,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Removed from Consent Calendar Status Rep. Elizabeth Hernandez,2021-04-14,[],IL,102nd +Removed from Resolution Consent Calendar,2021-04-12,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-02-09,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Resolution Adopted,2021-09-09,['passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-01-26,[],IL,102nd +Do Pass State Government; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2021-03-16,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Recommends Be Adopted Judiciary - Criminal Committee; 016-000-000,2021-04-27,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-22,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-28,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +Second Reading,2021-03-09,['reading-2'],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Terra Costa Howard,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 006-000-000,2021-03-08,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-09,[],IL,102nd +Do Pass / Consent Calendar Revenue & Finance Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2022-02-15,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Adopted in Counties & Townships Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2021-03-03,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2021-04-15,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2021-03-03,[],IL,102nd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2022-03-29,[],IL,102nd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2021-10-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-06-15,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-04-08,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2022-03-15,['committee-passage-favorable'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-01-20,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-03-16,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-08,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-02-19,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2021-03-19,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2021-03-17,['amendment-passage'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-10-14,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-11,[],IL,102nd +Re-assigned to State Government,2021-04-20,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Do Pass / Short Debate Financial Institutions Committee; 010-000-000,2021-03-16,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Personnel & Pensions Committee,2021-02-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-14,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2022-02-09,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Behavioral and Mental Health,2022-02-08,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-05-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2021-04-09,['amendment-introduction'],IL,102nd +Re-assigned to Executive,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Remains in Judiciary - Civil Committee,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-02-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-19,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2021-04-08,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"House Committee Amendment No. 1 Adopted in Cybersecurity, Data Analytics, & IT Committee; by Voice Vote",2022-02-17,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +To Transportation Issues Subcommittee,2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-05-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2021-03-17,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-05-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2022-02-16,[],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-07,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-04-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As March 11, 2022",2022-02-25,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2021-04-19,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-03-22,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-01-07,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2022-02-09,[],IL,102nd +Assigned to Executive Committee,2022-01-05,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura Ellman,2021-04-09,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Paul Jacobs,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-10-26,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-11-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-03-11,[],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-10-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to Appropriations,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-03-08,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As June 15, 2021",2021-05-31,[],IL,102nd +Postponed - Health; Subcommittee on Long-Term Care & Aging,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-10-26,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-04,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2022-02-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-01-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-11-01,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-16,[],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2022-01-27,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Health,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-01-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-09-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Win Stoller,2021-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Be Adopted as Amended Healthcare Access and Availability; 006-000-000,2022-03-29,['committee-passage-favorable'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-11-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Fiscal Note Requested by Rep. Blaine Wilhour,2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +To Judiciary- Torts,2022-01-18,[],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-001-000",2022-02-16,['committee-passage'],IL,102nd +Do Pass Judiciary; 008-000-000,2021-04-20,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-07,[],IL,102nd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety Committee; by Voice Vote,2021-03-17,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-01-26,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Anne Stava-Murray,2022-11-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2021-03-16,['referral-committee'],IL,102nd +To Sex Offenses and Sex Offender Registration Subcommittee,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kathleen Willis,2022-02-09,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +To Executive- Government Operations,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-02,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2022-02-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2022-02-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-05-06,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 To Appropriations- Human Services,2021-04-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2023-01-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-02-25,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Do Pass Behavioral and Mental Health; 007-000-000,2022-01-12,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-02-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Neil Anderson,2021-04-19,['amendment-introduction'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-12-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-08-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-01-31,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-02-09,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-01-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2021-02-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-16,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Reported Back To Health; 005-000-000,2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-16,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-16,['amendment-failure'],IL,102nd +Chief Sponsor Changed to Rep. Barbara Hernandez,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-02-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2022-01-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Fiscal Note Filed,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-02-02,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-04-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-25,[],IL,102nd +Do Pass Energy and Public Utilities; 018-000-000,2021-04-07,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2022-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-01-24,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-01-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-23,['amendment-passage'],IL,102nd +Re-assigned to Revenue,2022-01-05,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. David A. Welter,2022-02-24,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Antonio Muñoz,2022-03-08,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +To Appropriations- Human Services,2022-01-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Scott M. Bennett,2022-03-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Donald P. DeWitte,2021-04-30,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-01-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-03-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Judiciary; -Property Law,2022-02-15,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Public Safety,2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Suzy Glowiak Hilton,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-17,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-10-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2022-03-30,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2022-01-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-03-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Win Stoller,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2022-02-03,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 005-003-000,2021-03-24,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-02-10,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 30, 2021",2021-05-25,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. David Koehler,2021-04-09,['amendment-introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"To Credits, Deductions, and Exemptions",2021-03-24,[],IL,102nd +Do Pass / Short Debate Veterans' Affairs Committee; 004-000-000,2021-04-13,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +To Executive- Government Operations,2021-03-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-02-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-04-07,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Darren Bailey,2021-03-26,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2022-02-18,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Immigration & Human Rights Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-07-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-01,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions February 25, 2022",2022-02-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-09-21,[],IL,102nd +Assigned to Consumer Protection Committee,2021-03-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-General Services Committee,2022-02-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2021-03-26,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-09-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-23,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-05-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2021-03-24,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2022-02-09,[],IL,102nd +Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Revenue & Finance Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-19,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 15, 2021",2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-04-08,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2022-02-18,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-29,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-01-11,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +To Transportation Issues Subcommittee,2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2022-02-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-03,[],IL,102nd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2022-01-19,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-01-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-14,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-01-20,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2022-01-27,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-03-29,[],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-03-09,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-05-19,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-01-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-24,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-14,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-04-12,[],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2021-04-08,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Cities & Villages Committee,2021-04-06,['referral-committee'],IL,102nd +Assigned to Revenue,2021-04-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2022-02-15,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Executive Committee,2022-01-05,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 015-002-000,2022-02-17,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Paul Jacobs,2022-03-01,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Health; Subcommittee on Medicaid,2021-03-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2022-11-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jackie Haas,2022-03-01,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2021-03-22,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-02-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-07,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 011-006-000,2021-03-25,['committee-passage'],IL,102nd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2022-01-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-12,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-04-01,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Do Pass / Short Debate Appropriations-Human Services Committee; 024-000-000,2021-03-26,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Judiciary- Torts,2022-01-18,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-10-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading December 1, 2022",2022-11-30,[],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to State Government Administration Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-31,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-02-15,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-09-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading,2021-03-10,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Tourism and Hospitality,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-04-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2021-03-12,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Consumer Protection Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Adopted Both Houses,2021-03-18,[],IL,102nd +To Criminal Law- Special Issues,2022-02-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2021-04-16,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-24,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Do Pass / Consent Calendar Revenue & Finance Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Criminal Law,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-22,['amendment-failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-17,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +State Mandates Fiscal Note Requested by Rep. Avery Bourne,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Brad Halbrook,2021-04-20,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Jason Plummer,2021-05-29,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-02-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Higher Education Committee; by Voice Vote,2021-03-25,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-01-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-06,[],IL,102nd +House Committee Amendment No. 1 Adopted in Economic Opportunity & Equity Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-23,['amendment-failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-23,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-01-05,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-05-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Executive Committee,2021-04-06,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-03,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-07-06,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Reported Back To Human Services Committee;,2021-03-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-10,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Mental Health & Addiction Committee; 015-000-000,2021-03-19,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-02-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-01-25,[],IL,102nd +Do Pass / Short Debate Immigration & Human Rights Committee; 007-001-000,2021-03-24,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Keith R. Wheeler,2021-04-20,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +House Committee Amendment No. 1 Adopted in Personnel & Pensions Committee; by Voice Vote,2021-03-26,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-02,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +To Labor- Special Issues,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-01-05,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Behavioral and Mental Health,2021-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-09-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-24,['amendment-failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2022-02-17,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Chief Senate Sponsor Sen. Dale Fowler,2022-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Racial Impact Note Requested by Rep. Sonya M. Harper,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-03-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2021-04-14,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-11-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-16,['amendment-failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Fred Crespo,2021-04-09,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-01-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-02,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-03-18,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-16,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2022-01-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Human Rights; 009-000-000,2021-03-19,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-01-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-11,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-05,[],IL,102nd +Removed Co-Sponsor Rep. Kambium Buckner,2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2021-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-10-20,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Insurance,2022-01-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 10, 2021",2021-03-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-10,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Remove Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-03-24,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Postponed - Health,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-02-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +Re-assigned to Education,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-02,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-12,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-30,['referral-committee'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Do Pass Judiciary; 007-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2022-02-07,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Re-assigned to Tourism and Hospitality,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2021-03-16,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-11-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Pensions,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Motion Do Pass - Lost Appropriations-Elementary & Secondary Education Committee; 006-010-000,2021-03-26,['committee-failure'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-03-01,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Mental Health & Addiction Committee; by Voice Vote,2022-02-17,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2022-02-15,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-08,[],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2022-02-15,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Small Cell Subcommittee,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2021-10-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-06-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2021-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2021-04-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Do Pass / Short Debate Child Care Accessibility & Early Childhood Education Committee; 009-002-000,2021-03-05,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 15, 2021",2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-17,['amendment-failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-02-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-02-17,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2022-02-08,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-04-04,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-09,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +To Income Tax Subcommittee,2022-01-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-01-12,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joe Sosnowski,2022-03-01,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-08-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 005-003-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-25,['amendment-failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 10, 2021",2021-03-09,[],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-12,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Do Pass / Standard Debate Energy & Environment Committee; 017-012-000,2021-03-15,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-11-30,[],IL,102nd +Do Pass / Short Debate Immigration & Human Rights Committee; 005-003-000,2022-02-09,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2021-03-23,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-12-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jeff Keicher,2021-03-08,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-19,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-05-30,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-03-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Burke,2022-03-31,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +To Property Tax Subcommittee,2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2022-03-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Energy and Public Utilities,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-28,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-04-03,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-09,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-15,['amendment-failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2021-05-05,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-09,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-12,[],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-05-06,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-31,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2022-02-15,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-10,[],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-16,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2022-02-09,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +To Executive- Procurement,2022-02-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Income Tax Subcommittee,2022-01-27,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-02,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Veterans' Affairs Committee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-11-04,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Adopted Both Houses,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +Remove Chief Co-Sponsor Rep. Keith R. Wheeler,2021-02-19,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2021-03-23,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-11-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2022-01-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-02,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Postponed - Health,2021-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-02,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-04-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Jackie Haas,2022-01-27,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2022-02-08,[],IL,102nd +Re-assigned to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Executive- Procurement,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-06,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +"To Roadways, Rail & Aviation Subcommittee",2022-02-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-12,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2021-03-15,['amendment-introduction'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-01,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 10, 2021",2021-03-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2021-04-20,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Neil Anderson,2021-04-14,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Harmon,2021-05-28,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-02,[],IL,102nd +Do Pass Criminal Law; 010-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-23,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-03-22,['amendment-introduction'],IL,102nd +Do Pass Health; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-06-10,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-03-08,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-29,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-03,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Adopted in Consumer Protection Committee; by Voice Vote,2021-03-22,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-25,[],IL,102nd +"Chief House Sponsor Rep. Lawrence Walsh, Jr.",2021-06-08,[],IL,102nd +Do Pass Energy and Public Utilities; 016-000-000,2021-04-15,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-26,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-03,[],IL,102nd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; 026-000-000,2022-02-02,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Re-assigned to State Government,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-25,[],IL,102nd +Do Pass State Government; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 22, 2021",2021-04-21,[],IL,102nd +Resolution Adopted 112-000-000,2021-05-29,['passage'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-10-27,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-16,['amendment-failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 15, 2021",2021-04-14,[],IL,102nd +Chief House Sponsor Rep. Terra Costa Howard,2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-22,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2021-03-23,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2021-03-24,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-10,[],IL,102nd +Arrive in Senate,2021-05-24,['introduction'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Be Adopted as Amended State Government; 008-000-000,2021-05-06,['committee-passage-favorable'],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-04-20,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions April 6, 2022",2022-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Donald P. DeWitte,2021-04-19,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 025-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2021-03-18,[],IL,102nd +Chief Senate Sponsor Sen. Dale Fowler,2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2021-03-23,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Do Pass Health; 016-000-000,2021-03-09,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2022-04-07,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2021-10-20,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2021-03-16,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Recommends Be Adopted Appropriations-Public Safety Committee; 015-000-000,2021-05-05,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-02-09,[],IL,102nd +Resolution Adopted 103-000-000,2022-03-28,['passage'],IL,102nd +Do Pass / Short Debate Adoption & Child Welfare Committee; 008-000-000,2021-03-22,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-09,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-04-05,[],IL,102nd +Chief Senate Sponsor Sen. Brian W. Stewart,2022-03-16,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2021-04-13,['amendment-introduction'],IL,102nd +Postponed - Behavioral and Mental Health,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-26,[],IL,102nd +Reported Back To Health; 005-000-000,2021-04-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Dan McConchie,2021-05-06,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-03-15,[],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-11,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-02-16,[],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-22,[],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Adopted in Personnel & Pensions Committee; by Voice Vote,2022-02-17,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Police & Fire Committee,2021-03-09,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-25,['amendment-failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2021-03-04,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 15, 2021",2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2021-03-25,['amendment-passage'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Resolution Adopted,2021-05-05,['passage'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-08,[],IL,102nd +Adopted Both Houses,2021-09-01,[],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Waive Posting Notice,2021-10-27,[],IL,102nd +"Removed Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-15,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Re-assigned to Labor,2021-04-15,['referral-committee'],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-02-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-02-09,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 17, 2022",2022-02-16,[],IL,102nd +Removed Co-Sponsor Rep. Lindsey LaPointe,2021-03-15,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Health,2021-03-24,[],IL,102nd +Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-05,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Postponed - State Government,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-12,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-03-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-02-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-05-20,[],IL,102nd +Resolution Adopted,2021-05-29,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2022-02-09,['amendment-introduction'],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-02-23,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-10-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-23,[],IL,102nd +Adopted Both Houses,2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-12,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Postponed - Human Rights,2021-03-19,[],IL,102nd +Recommends Be Adopted as Amended Veterans' Affairs Committee; 006-000-000,2021-05-11,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-05-31,['passage'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-03-10,[],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 025-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-02,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Removed Co-Sponsor Rep. Jay Hoffman,2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-02-22,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Reported Back To Judiciary; 003-000-000,2021-04-20,[],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2021-04-08,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Do Pass Veterans Affairs; 006-000-000,2021-03-24,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 23, 2021",2021-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2021-03-04,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-10-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Removed from Resolution Consent Calendar,2021-04-14,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 10, 2021",2021-05-06,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2022-02-17,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-25,['referral-committee'],IL,102nd +Do Pass Criminal Law; 009-000-000,2021-03-16,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Darren Bailey,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Pensions,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 21, 2021",2021-04-20,[],IL,102nd +Second Reading,2021-03-10,['reading-2'],IL,102nd +Resolution Adopted,2021-03-18,['passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-20,[],IL,102nd +Removed Co-Sponsor Rep. LaToya Greenwood,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2021-03-25,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 10, 2021",2021-03-09,[],IL,102nd +Second Reading,2021-03-10,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2022-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-03-23,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2021-03-16,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2021-03-18,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-17,[],IL,102nd +Waive Posting Notice,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-24,[],IL,102nd +Chief Sponsor Changed to Judiciary - Civil Committee,2021-05-21,[],IL,102nd +Resolution Adopted,2021-05-12,['passage'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-01-25,[],IL,102nd +Removed Co-Sponsor Rep. Chris Bos,2021-05-17,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2022-03-01,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-26,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Assigned to Labor & Commerce Committee,2021-02-23,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-12,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-02-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Burke,2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-09,[],IL,102nd +Recommends Be Adopted as Amended Veterans' Affairs Committee; 009-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-01,[],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2021-03-01,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2022-04-03,[],IL,102nd +Recommends Be Adopted Human Services Committee; 010-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-09,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-18,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-22,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-04-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-05-28,[],IL,102nd +"Recommends Be Adopted as Amended Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-04-05,['committee-passage-favorable'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-18,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Jason A. Barickman,2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Adopted Both Houses,2021-10-29,[],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2021-03-16,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-09,['referral-committee'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 010-000-000",2022-03-29,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-04-27,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-02-05,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-01,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-02-09,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-10-26,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Pensions,2021-03-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-09,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +To Property Tax Subcommittee,2022-01-27,[],IL,102nd +Re-assigned to Licensed Activities,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Adopted in Adoption & Child Welfare Committee; by Voice Vote,2022-02-10,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-04-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Tony McCombie,2022-01-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jackie Haas,2021-03-25,['amendment-introduction'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-02-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Behavioral and Mental Health,2021-03-16,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-09,['amendment-failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-04-08,['introduction'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-01-05,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2022-02-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Education,2021-04-13,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-03-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Re-assigned to Executive,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Chief Senate Sponsor Sen. Jason A. Barickman,2021-05-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +To Medicaid Subcommittee,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-22,['referral-committee'],IL,102nd +To Family Law & Probate Subcommittee,2022-01-27,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-03-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-10-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-03-07,[],IL,102nd +Second Reading,2021-03-16,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2021-02-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 14, 2021",2021-04-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-02-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2022-01-20,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-03-11,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-12,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-05-07,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2021-03-24,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-01,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Racial Impact Note Requested by Rep. Sonya M. Harper,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Insurance,2022-01-12,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-08-19,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions February 17, 2022",2022-02-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Terra Costa Howard,2022-10-03,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-01-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2021-04-02,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2022-02-08,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-12-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-03-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-09,[],IL,102nd +To Property Tax Subcommittee,2022-01-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-05-12,[],IL,102nd +To Judiciary- Torts,2022-01-18,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-07-07,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-10,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Fiscal Note Filed,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-01,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Police & Fire Committee,2021-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2021-03-25,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. David A. Welter,2022-02-24,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-04-01,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Postponed - Criminal Law,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-16,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2021-03-22,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-02-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Executive,2022-02-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2021-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2023-01-03,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-09-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-29,[],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 025-000-000,2021-03-24,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2022-02-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Seth Lewis,2022-03-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-07-29,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-01-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2021-04-09,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-09,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Adopted in Higher Education Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-08-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-09-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Senate Committee Amendment No. 1 Directed to Multiple Committees Behavioral and Mental Health, Appropriations-Education Subcommittee",2022-01-26,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-22,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2022-02-02,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Michael E. Hastings,2021-04-16,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-06-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Public Safety,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2022-02-25,['amendment-introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-22,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +To Executive- Procurement,2022-02-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-04-07,[],IL,102nd +To Property Tax Subcommittee,2022-01-27,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2022-02-10,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-04-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-16,['amendment-failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-05,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-30,[],IL,102nd +To Judiciary- Torts,2022-01-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-09,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-03-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2021-03-11,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-22,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Higher Education Committee,2022-02-09,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-03-11,[],IL,102nd +Sponsor Removed Sen. Donald P. DeWitte,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-08,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Thomas Cullerton,2022-01-12,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-01-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2021-02-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2021-03-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-03-24,[],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2022-02-15,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-02-11,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-01-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-03-07,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-10-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Sandra Hamilton,2022-01-05,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-10-20,[],IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-06-01,[],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Fiscal Note Filed,2021-04-20,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-26,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-05-14,[],IL,102nd +Senate Committee Amendment No. 1 To Appropriations- Revenue and Finance,2021-04-07,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Arrive in Senate,2022-03-16,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-04-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-02-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-02-28,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Adoption & Child Welfare Committee; by Voice Vote,2021-03-22,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-28,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-08-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-01-25,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Postponed - Health,2021-03-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2022-02-10,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2022-01-28,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-General Services Committee,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Postponed - Human Rights,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2021-03-19,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Paul Jacobs,2021-03-19,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-02,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-14,[],IL,102nd +"To Roadways, Rail & Aviation Subcommittee",2022-02-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-08-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-12-01,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2022-01-25,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-05-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2022-01-27,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2022-02-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-04,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2022-02-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-10-28,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-02-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-03-01,[],IL,102nd +Arrive in Senate,2021-05-06,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-10-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-11-30,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-02-06,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-06-29,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Margaret Croke,2022-02-09,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-02-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-09,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-03-23,[],IL,102nd +"Chief Sponsor Changed to Rep. Edgar Gonzalez, Jr.",2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Postponed - State Government,2022-02-07,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2022-11-14,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-04-09,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2022-01-18,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-02-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-10,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-03-31,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-03-08,[],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2022-01-05,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Thomas Cullerton,2022-01-31,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-18,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-05-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Kathleen Willis,2022-02-15,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-05-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-02-15,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2022-02-17,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-10-01,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-01-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Wage Policy & Study Subcommittee,2022-02-15,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-01-20,[],IL,102nd +To Executive- Procurement,2022-02-07,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-11-29,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-01-31,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2021-04-14,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Licensed Activities; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-03-16,[],IL,102nd +To Judiciary- Torts,2022-01-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 To Appropriations- Human Services,2021-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-13,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-25,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +To Income Tax Subcommittee,2022-01-27,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-01,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Postponed - Education,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-08-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-01-14,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-11-04,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-01-31,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-02-24,[],IL,102nd +To Subcommittee on Special Issues (TR),2021-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Deanne M. Mazzochi,2021-03-23,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Do Pass Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-03-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-02-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-01-14,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 022-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-04-08,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Fiscal Note Requested by Rep. David A. Welter,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-05-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-10-20,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Brad Halbrook,2022-02-28,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Postponed - Health,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-04-16,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-01-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-10-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-02,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-01-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2021-12-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2022-03-17,['passage'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-12-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Recommends Be Adopted Appropriations-Human Services Committee; 024-000-000,2022-03-25,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Ryan Spain,2021-04-21,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joe Sosnowski,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-20,[],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jacqueline Y. Collins,2021-04-09,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-02-08,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-07,[],IL,102nd +To Subcommittee on Special Issues (TR),2021-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +To Property Tax Subcommittee,2022-01-27,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-05-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-10,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2021-03-12,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-01,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +To Property Tax Subcommittee,2022-02-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Postponed - Revenue,2021-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2022-02-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Do Pass Judiciary; 007-000-001,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Recommends Be Adopted Revenue & Finance Committee; 014-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-02,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 15, 2021",2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-01-07,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Assigned to State Government Administration Committee,2021-04-14,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-11,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +To Appropriations- Emergency Management,2022-02-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Removed Co-Sponsor Rep. Deb Conroy,2021-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-02,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-03-19,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Removed Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-01-12,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2022-02-07,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-04-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-01-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 006-001-000,2022-02-16,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deanne M. Mazzochi,2021-03-16,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-11-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Adam Niemerg,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-01-31,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-03-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As March 11, 2022",2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-01-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-01-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-24,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Steven Reick,2022-02-16,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Personnel & Pensions Committee; by Voice Vote,2022-02-17,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Do Pass Executive; 015-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-12-05,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-08-31,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-12-07,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-08,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-03-17,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2022-02-09,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-15,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Housing Committee,2021-03-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-01-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-17,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2022-01-19,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-30,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-09,[],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-02,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-03-15,[],IL,102nd +Re-assigned to Agriculture,2022-01-05,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2021-03-11,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2021-03-24,['amendment-passage'],IL,102nd +Fiscal Note Filed,2021-04-19,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-03-25,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-14,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. John Connor,2022-02-16,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-01-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-04-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-03-01,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-15,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-29,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-22,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-15,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Doris Turner,2022-03-08,[],IL,102nd +Resolution Adopted 108-000-000,2021-05-29,['passage'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-01-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-10,[],IL,102nd +To Property Tax Subcommittee,2022-01-27,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-02-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Aaron M. Ortiz,2022-03-01,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Criminal Law,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jim Durkin,2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-02-08,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-02,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2022-03-16,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2022-01-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2022-02-15,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. John F. Curran,2021-04-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 050-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-12-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-25,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2021-03-18,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-08-31,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Chief Sponsor Changed to Sen. Sally J. Turner,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-12,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Postponed - Energy and Public Utilities,2021-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2022-01-27,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-05-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 17, 2022",2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-15,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended Criminal Law; 010-000-000,2022-02-09,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-11-14,[],IL,102nd +Added as Chief Co-Sponsor Sen. Rachelle Crowe,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Arrive in Senate,2021-05-30,['introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-16,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-16,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-02-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-03-01,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-12-05,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-01-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Cities & Villages Committee,2022-03-01,[],IL,102nd +Recommends Be Adopted Rules Committee; 003-001-000,2022-03-31,['committee-passage-favorable'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-21,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-02-23,['referral-committee'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Do Pass as Amended Transportation; 019-000-000,2022-02-09,['committee-passage'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Be Adopted as Amended Healthcare Access and Availability; 006-000-000,2022-03-29,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-01,[],IL,102nd +Removed from Consent Calendar Status Rep. Theresa Mah,2022-02-24,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-09,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2021-03-16,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended Tourism and Hospitality; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-05-21,[],IL,102nd +Removed Co-Sponsor Rep. Tony McCombie,2021-02-25,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As March 25, 2022",2022-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-02-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-11,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-14,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-01-21,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-28,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-01-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-02-02,[],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 017-006-000,2022-02-15,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Re-assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-10-26,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-10-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Do Pass as Amended / Consent Calendar Personnel & Pensions Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Appropriations-General Services Committee; 014-000-000,2022-03-09,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sue Scherer,2022-02-16,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-12-10,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-26,[],IL,102nd +Removed Co-Sponsor Rep. Michael T. Marron,2021-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-02-24,[],IL,102nd +Postponed - Licensed Activities,2021-03-24,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +To Criminal Law- Juvenile Court,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-02-16,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2022-03-23,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Jason Plummer,2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2021-03-30,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-03-01,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 106-000-003,2022-03-01,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-01-19,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-04-07,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-04-15,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2021-04-16,['amendment-introduction'],IL,102nd +Do Pass as Amended Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended Pensions; 006-000-000,2022-02-07,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-23,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Kathleen Willis,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-17,['reading-2'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-09,[],IL,102nd +Removed Co-Sponsor Rep. Dagmara Avelar,2021-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-10,[],IL,102nd +Third Reading - Short Debate - Passed 069-042-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-02-08,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-17,[],IL,102nd +House Committee Amendment No. 1 Adopted in Immigration & Human Rights Committee; by Voice Vote,2021-03-17,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Darren Bailey,2022-01-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-24,[],IL,102nd +Third Reading - Short Debate - Passed 063-035-002,2022-03-01,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Transportation: Vehicles & Safety Committee; 012-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2022-02-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2022-02-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-23,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2022-02-25,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-14,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-08,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-08,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2022-02-24,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2022-02-10,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Sue Rezin,2021-03-26,[],IL,102nd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Chief Sponsor Changed to Rep. Curtis J. Tarver, II",2021-04-14,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-18,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-04-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Do Pass as Amended / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-04-20,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 050-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2021-04-09,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-21,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2021-03-29,[],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2021-03-09,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-02-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2022-01-20,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2022-02-17,[],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2022-03-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-04-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended Licensed Activities; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate State Government Administration Committee; 005-003-000,2022-02-16,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-10-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dave Vella,2022-03-01,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-03-02,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-16,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Postponed - Criminal Law,2022-02-09,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2022-04-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-02-10,[],IL,102nd +Referred to Assignments,2023-01-03,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-09,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-09-15,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-07-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Re-assigned to Appropriations,2022-01-05,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2022-02-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-06-16,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Joyce Mason,2022-03-01,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-03-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2022-02-10,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-10,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2021-04-14,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2021-04-09,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-04,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-03-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 072-043-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-09,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-10-26,[],IL,102nd +Do Pass as Amended / Short Debate Adoption & Child Welfare Committee; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +Postponed - Licensed Activities,2022-02-07,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-17,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Angelica Guerrero-Cuellar,2021-04-09,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-02-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Recalled to Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass Healthcare Access and Availability; 007-001-000,2022-02-07,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 17, 2021",2021-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-03-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2021-04-15,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-20,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Michael J. Zalewski,2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Rep. Keith R. Wheeler,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-02-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Patrick Windhorst,2022-03-01,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. John Connor,2021-04-16,['amendment-introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Thomas Cullerton,2021-04-08,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-05-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-12,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2021-04-13,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-04-09,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-04-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-04-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-03-04,[],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2022-02-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-02-15,[],IL,102nd +Chief Senate Sponsor Sen. Dale Fowler,2022-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Do Pass as Amended / Short Debate Cybersecurity, Data Analytics, & IT Committee; 014-000-000",2022-02-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Do Pass as Amended Executive; 016-000-000,2022-02-09,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2021-04-07,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Charles Meier,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-09,['amendment-failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2022-03-01,['amendment-introduction'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +"House Committee Amendment No. 1 Adopted in Transportation: Regulation, Roads & Bridges Committee; by Voice Vote",2021-03-15,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Directed to Multiple Committees Transportation Committee, Appropriations- Government Infrastructure Subcommittee",2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Tony McCombie,2021-04-06,[],IL,102nd +Senate Committee Amendment No. 1 To Appropriations- Health,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +To Income Tax Subcommittee,2022-01-27,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2022-02-02,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-04-07,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-09,[],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended / Short Debate Higher Education Committee; 010-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Donald P. DeWitte,2021-04-08,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-29,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-09-22,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-01-25,['referral-committee'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2021-04-13,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-08-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-08-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-08,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2022-03-02,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended State Government; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-07-19,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-05-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-03-31,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2021-04-16,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Sue Rezin,2021-03-26,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-12-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2021-08-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +To Executive- Cannabis,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-25,['referral-committee'],IL,102nd +House Committee Amendment No. 1 To Family Law & Probate Subcommittee,2022-01-27,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-01-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-02-01,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-02-26,[],IL,102nd +Re-assigned to Public Utilities Committee,2021-03-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-12,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-10-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2022-03-30,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-24,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-01-19,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2022-02-23,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2022-01-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Appropriations-Human Services Committee; 024-000-000,2021-03-26,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-18,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-03-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-24,['amendment-failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2021-06-14,[],IL,102nd +Third Reading - Passed; 039-017-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-03-03,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-24,['committee-passage'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 009-000-000",2022-03-22,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patricia Van Pelt,2021-04-05,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-15,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Patrick Windhorst,2021-04-20,['amendment-introduction'],IL,102nd +Re-assigned to Personnel & Pensions Committee,2022-02-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-05-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Do Pass / Short Debate Appropriations-Human Services Committee; 024-000-000,2021-03-26,['committee-passage'],IL,102nd +Do Pass as Amended Agriculture; 011-000-000,2021-04-15,['committee-passage'],IL,102nd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2021-04-06,[],IL,102nd +Do Pass as Amended Executive; 015-000-000,2021-04-15,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Reported Back To Health; 004-001-000,2021-04-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 055-000-000,2021-03-10,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2021-04-16,['amendment-introduction'],IL,102nd +Postponed - State Government,2022-02-07,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Third Reading - Passed; 052-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-03-08,[],IL,102nd +Do Pass as Amended / Consent Calendar Labor & Commerce Committee; 026-000-000,2022-02-02,['committee-passage'],IL,102nd +Do Pass as Amended / Consent Calendar Consumer Protection Committee; 006-000-000,2021-03-22,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 109-003-000,2021-04-14,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Resolution Adopted; 041-018-000,2021-05-28,['passage'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2021-03-25,['committee-passage'],IL,102nd +Do Pass Revenue; 009-000-000,2022-02-07,['committee-passage'],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-17,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Daniel Swanson,2021-04-12,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-23,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2021-06-08,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2021-04-15,['amendment-introduction'],IL,102nd +Removed Co-Sponsor Rep. Will Guzzardi,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Do Pass / Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-03,['committee-passage'],IL,102nd +Do Pass Public Safety; 007-000-000,2021-04-14,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Reported Back To Health; 005-000-000,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-12,[],IL,102nd +Do Pass Human Rights; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Margaret Croke,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-22,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 23, 2021",2021-03-17,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-10,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jonathan Carroll,2021-03-10,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-05-12,[],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-22,[],IL,102nd +Do Pass Health; 015-000-000,2021-03-09,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2021-04-16,['amendment-introduction'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-11,[],IL,102nd +Added as Chief Co-Sponsor Sen. Thomas Cullerton,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-23,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 006-004-000,2021-03-11,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended / Short Debate Personnel & Pensions Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2021-03-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael Halpin,2021-05-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2022-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-04-13,[],IL,102nd +Be Adopted Higher Education; 011-000-000,2022-03-29,['committee-passage-favorable'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-20,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-04-13,[],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-19,[],IL,102nd +Chief Sponsor Changed to Sen. Dale Fowler,2021-04-16,[],IL,102nd +Do Pass Judiciary; 007-001-000,2021-04-20,['committee-passage'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Do Pass Higher Education; 014-000-000,2021-03-16,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-04-15,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2021-04-16,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-24,['amendment-failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2022-02-17,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-04-15,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-20,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-04-20,['referral-committee'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2022-03-01,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-16,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Do Pass as Amended Environment and Conservation; 010-000-000,2021-04-15,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-30,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Joyce Mason,2021-05-17,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-16,['amendment-passage'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-24,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Be Adopted Education; 013-000-000,2022-02-07,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Eva Dina Delgado,2021-03-18,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-04-05,[],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2021-04-06,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2022-02-23,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-04-06,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-03-31,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Caulkins,2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Debbie Meyers-Martin,2022-02-28,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 016-000-000,2021-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-27,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-04-09,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2021-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Sally J. Turner,2021-05-24,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 10, 2021",2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-04-13,[],IL,102nd +Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-28,[],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-16,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-06,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2021-04-16,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2021-04-07,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2022-02-23,[],IL,102nd +Chief Sponsor Changed to Rep. Denyse Wang Stoneback,2021-04-21,[],IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Agriculture,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-03-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-04-20,[],IL,102nd +Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Thomas Cullerton,2021-10-20,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-24,['amendment-failure'],IL,102nd +Do Pass as Amended Judiciary; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-18,['amendment-failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-01-25,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-31,[],IL,102nd +Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-10-27,[],IL,102nd +Arrive in Senate,2021-05-30,['introduction'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-24,['amendment-failure'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-30,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-01,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-04-13,['amendment-introduction'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-05-28,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-31,[],IL,102nd +Arrive in Senate,2021-05-06,['introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 17, 2021",2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-04-05,[],IL,102nd +Arrive in Senate,2021-05-17,['introduction'],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2021-05-25,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-24,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Environment and Conservation,2021-03-19,[],IL,102nd +Do Pass as Amended Executive; 011-003-000,2021-04-15,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 16, 2021",2021-03-10,[],IL,102nd +Third Reading - Passed; 056-001-000,2021-03-10,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2021-03-17,['amendment-introduction'],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Do Pass as Amended / Short Debate Insurance Committee; 019-000-000,2021-03-25,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 017-011-000,2021-03-03,['committee-passage'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 16, 2021",2021-03-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-04-19,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-03,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2021-04-14,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Dave Vella,2021-03-22,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2021-04-15,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-12,[],IL,102nd +Be Adopted as Amended Behavioral and Mental Health; 010-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-12,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-02-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-10-28,[],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-02-28,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-05-29,[],IL,102nd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2022-02-09,['amendment-passage'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-03-09,[],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-03-22,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Adopted in Personnel & Pensions Committee; by Voice Vote,2021-03-26,['amendment-passage'],IL,102nd +To Subcommittee on Medicaid,2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-04-16,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2021-04-13,[],IL,102nd +Be Adopted State Government; 007-000-000,2021-10-27,['committee-passage-favorable'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Do Pass as Amended Licensed Activities; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-10-28,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-10-27,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2021-03-25,['committee-passage'],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-26,[],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Commerce,2021-04-13,[],IL,102nd +Reported Back To Criminal Law; 003-000-000,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-02-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Assigned to Higher Education Committee,2021-03-02,['referral-committee'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-01,[],IL,102nd +Postponed - State Government,2021-03-17,[],IL,102nd +Resolution Adopted 111-000-000,2021-05-21,['passage'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-09,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 23, 2021",2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-02-26,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 040-015-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Resolution Adopted,2021-05-30,['passage'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-02-24,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2021-04-15,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-03-16,[],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Do Pass as Amended / Consent Calendar Insurance Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Sally J. Turner,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-11,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Jay Hoffman,2021-04-14,[],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-03-16,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-08-31,[],IL,102nd +Chief Sponsor Changed to Sen. Jason A. Barickman,2021-03-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-01-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Postponed - Executive,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Fiscal Note Filed,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-07-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-10-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-04-08,[],IL,102nd +Fiscal Note Requested by Rep. Tom Demmer,2021-04-20,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-12,[],IL,102nd +Removed from Consent Calendar Status Rep. Stephanie A. Kifowit,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Fiscal Note Filed,2022-02-18,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2021-04-20,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-10-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Environment and Conservation,2021-04-07,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Chief Sponsor Changed to Sen. Sally J. Turner,2021-04-13,[],IL,102nd +Third Reading - Short Debate - Passed 096-021-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2021-03-31,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2021-04-09,['amendment-introduction'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Lakesia Collins,2021-03-19,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Do Pass as Amended / Short Debate Adoption & Child Welfare Committee; 005-003-000,2021-03-22,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-31,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-11-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Jason A. Barickman,2021-05-06,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-04-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-11,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-31,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-07,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2021-03-22,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-23,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2021-03-26,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Will Guzzardi,2022-02-15,['amendment-introduction'],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-03-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-02-19,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-03-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Postponed - State Government,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-03-30,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-04-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2022-02-25,['amendment-introduction'],IL,102nd +First Reading,2021-05-14,['reading-1'],IL,102nd +Do Pass Energy and Public Utilities; 016-000-000,2021-04-22,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-07-12,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2021-03-18,['amendment-introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-04-16,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-01-31,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-02-06,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2021-04-19,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-10-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-05-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Avery Bourne,2021-04-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-01-28,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-12,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mike Murphy,2021-04-14,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-01-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Terri Bryant,2021-04-15,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-01,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-28,[],IL,102nd +Chief Sponsor Changed to Sen. Dale Fowler,2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-10-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Sue Rezin,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-09,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-01,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-01-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-01-05,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2021-04-13,[],IL,102nd +Do Pass as Amended / Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2022-02-10,['committee-passage'],IL,102nd +To Medicaid & Managed Care Subcommittee,2021-03-19,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2021-04-01,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-01-27,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-02-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-08-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-11-16,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2022-03-02,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-28,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-07-01,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2021-04-20,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2022-03-01,['amendment-introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-10-01,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-10-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-02-01,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-03-10,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Cyril Nichols,2022-04-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 060-042-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-03-07,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-02-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2021-05-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-02-22,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-10-11,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-31,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-01-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-04-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Fine,2022-11-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-03-21,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-01-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +To Executive- Government Operations,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Brian W. Stewart,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Rep. Tom Weber,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended Revenue; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2021-04-15,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Luft,2021-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2022-11-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Anna Moeller,2021-04-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Cybersecurity, Data Analytics, & IT Committee",2022-02-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-04-06,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-08-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-10-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jason Plummer,2021-04-15,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2022-03-31,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-01-12,[],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +To Product Safety Subcommittee,2021-03-08,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-01,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. John Connor,2022-02-15,['amendment-introduction'],IL,102nd +Do Pass Agriculture; 014-000-000,2021-03-25,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-29,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Lakesia Collins,2021-03-01,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-02-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-02,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-15,[],IL,102nd +Do Pass as Amended / Consent Calendar Personnel & Pensions Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2022-03-08,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2022-03-01,['committee-passage-favorable'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Chief Sponsor Changed to Rep. Curtis J. Tarver, II",2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-12-13,[],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-01-31,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Criminal Law,2022-02-08,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2022-02-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Greg Harris,2021-05-26,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-01-26,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-15,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended Pensions; 008-000-000,2022-02-09,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-01,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2021-04-16,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Resolution Adopted,2022-03-29,['passage'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended Labor; 018-000-000,2022-02-07,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-03-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-01,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Do Pass as Amended / Consent Calendar Labor & Commerce Committee; 025-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass as Amended Criminal Law; 010-000-000,2021-04-14,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-10,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-02,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Do Pass as Amended Judiciary; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended Education; 013-000-000,2022-02-09,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-01-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-04-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-02-10,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-02-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-01-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-03-01,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2022-03-01,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-06-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-02-23,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-15,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-10-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-09-21,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-02-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-29,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2022-02-24,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-18,[],IL,102nd +To Executive- Government Operations,2021-03-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Pensions,2022-02-15,[],IL,102nd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 009-004-000,2021-03-23,['committee-passage'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-03-16,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-18,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2021-04-16,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-02-16,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-04-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-06,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Removed Co-Sponsor Rep. Jeff Keicher,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-05-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-08-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass State Government; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-02,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-01-27,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2021-04-09,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-02-10,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-09,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Antonio Muñoz,2022-02-18,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 17, 2021",2021-03-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-05,['referral-committee'],IL,102nd +Do Pass / Short Debate Restorative Justice Committee; 004-002-000,2021-03-25,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Third Reading - Passed; 036-016-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2021-04-16,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-02-26,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-22,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-17,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2022-02-22,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-02-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-04-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2021-04-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-21,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-04-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-02-03,[],IL,102nd +Postponed - Licensed Activities,2021-04-14,[],IL,102nd +Chief Sponsor Changed to Rep. Ryan Spain,2021-03-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Do Pass as Amended / Short Debate Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-02-15,['committee-passage'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Deanne M. Mazzochi,2022-02-22,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2022-02-24,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 012-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-01-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass Education; 014-000-000,2021-03-16,['committee-passage'],IL,102nd +Do Pass as Amended / Consent Calendar Human Services Committee; 015-000-000,2021-03-09,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-04-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-18,['referral-committee'],IL,102nd +Third Reading - Passed; 049-005-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended / Consent Calendar Mental Health & Addiction Committee; 013-000-000,2022-02-17,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2022-02-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2022-02-16,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2022-02-04,['amendment-introduction'],IL,102nd +Assigned to Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Cyril Nichols,2022-02-23,[],IL,102nd +Do Pass Insurance; 010-000-000,2021-04-15,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass Executive; 013-001-000,2022-02-07,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +"Do Pass as Amended / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-02-15,['committee-passage'],IL,102nd +Postponed - Licensed Activities,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-10-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 019-000-000,2021-03-23,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2021-04-21,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-15,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2021-04-09,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2021-03-25,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Rachelle Crowe,2021-04-07,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 055-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2022-02-08,[],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2022-03-01,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Andrew S. Chesney,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-05-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2021-03-15,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2021-03-25,[],IL,102nd +Do Pass as Amended / Short Debate Police & Fire Committee; 015-000-000,2021-03-25,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-03-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 074-041-002,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-19,['amendment-failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-08-24,[],IL,102nd +Removed from Consent Calendar Status Rep. Mark L. Walker,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2021-04-16,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Meg Loughran Cappel,2022-02-15,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Brad Halbrook,2021-05-29,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-22,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-01-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-01-25,['referral-committee'],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jawaharial Williams,2022-02-28,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-04-06,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Pensions,2022-02-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 1 To Appropriations- Health,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Fiscal Note Requested by Rep. Avery Bourne,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Karina Villa,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Financial Institutions,2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Third Reading - Short Debate - Passed 064-043-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-04-07,[],IL,102nd +Chief Sponsor Changed to Sen. Karina Villa,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-01-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-02,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Steve McClure,2021-04-15,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-11-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2021-04-12,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-04-16,['amendment-introduction'],IL,102nd +Do Pass as Amended / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-08-25,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Police & Fire Committee; 009-005-000,2021-03-25,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-02-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-10-27,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-01-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to Energy and Public Utilities,2022-01-05,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-03-08,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-03-26,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Postponed - Licensed Activities,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-04-16,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-10-26,[],IL,102nd +Assigned to Revenue,2021-03-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-22,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-10-28,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass Financial Institutions; 007-000-000,2022-02-10,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jacqueline Y. Collins,2021-04-12,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +To Insurance Review Subcommittee,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-10-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-03-25,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Fiscal Note Filed,2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Appropriations-General Services Committee; 014-000-000,2022-03-09,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Fiscal Note Requested by Rep. Tom Demmer,2021-04-20,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-04-09,['amendment-introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-23,[],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2021-04-15,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-10,[],IL,102nd +Do Pass Health; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Burke,2021-04-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended / Consent Calendar Labor & Commerce Committee; 025-000-000,2022-02-09,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-08,[],IL,102nd +To Subcommittee on Water Issues Management,2021-03-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-03-24,[],IL,102nd +Do Pass as Amended / Short Debate Energy & Environment Committee; 017-007-000,2022-02-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-12-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2021-03-22,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-04,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Do Pass as Amended / Consent Calendar Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-24,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2021-04-21,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Rep. Robyn Gabel,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2022-02-08,[],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Sue Rezin,2021-03-26,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dan Caulkins,2021-03-24,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-21,[],IL,102nd +Do Pass as Amended / Consent Calendar Insurance Committee; 017-000-000,2022-02-17,['committee-passage'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-10,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-05,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2022-02-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-10-26,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-03-17,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-28,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-02,[],IL,102nd +Referred to Assignments,2023-01-03,['referral-committee'],IL,102nd +Do Pass as Amended / Consent Calendar Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-07-07,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-01-25,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Angelica Guerrero-Cuellar,2021-04-19,[],IL,102nd +Third Reading - Short Debate - Passed 091-017-003,2022-02-23,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Do Pass as Amended Revenue; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-05-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-09,[],IL,102nd +Do Pass Energy and Public Utilities; 018-000-000,2021-04-07,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2022-03-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2022-02-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-08,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-01-11,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-02-15,[],IL,102nd +To Special Issues (INS) Subcommittee,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-02-23,[],IL,102nd +"Do Pass as Amended / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-04-16,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-02-24,[],IL,102nd +Do Pass as Amended / Short Debate Insurance Committee; 012-007-000,2021-03-25,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-09,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Commerce,2021-04-13,[],IL,102nd +Third Reading - Passed; 055-001-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-02,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Do Pass / Short Debate Mental Health & Addiction Committee; 010-005-000,2021-03-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-03-11,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Do Pass as Amended Education; 008-000-000,2022-02-09,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-26,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-04-14,[],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-22,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2022-02-17,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-01-06,[],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-24,['amendment-passage'],IL,102nd +Third Reading - Passed; 055-001-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-01-18,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2022-02-18,['amendment-introduction'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-25,[],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-11,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2022-03-02,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-02-06,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-16,[],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2021-05-05,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Charles Meier,2022-11-17,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-04-19,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-23,[],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-04-02,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 066-043-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Resolution Adopted,2021-05-12,['passage'],IL,102nd +Removed from Consent Calendar Status Rep. Stephanie A. Kifowit,2021-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-04-16,['amendment-introduction'],IL,102nd +Removed Co-Sponsor Rep. Lindsey LaPointe,2022-02-23,[],IL,102nd +Do Pass as Amended Judiciary; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-03,[],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety Committee; by Voice Vote,2021-03-17,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-28,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 056-001-000,2021-03-10,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2022-04-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-05-06,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jacqueline Y. Collins,2021-03-18,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Do Pass as Amended / Short Debate State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-11,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-10,['amendment-passage'],IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-03-09,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2021-03-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-05,[],IL,102nd +Do Pass Licensed Activities; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-02,[],IL,102nd +Third Reading - Short Debate - Passed 092-022-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-04-06,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-21,[],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2021-04-12,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-26,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-01-24,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-04-19,['amendment-introduction'],IL,102nd +Do Pass Education; 011-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-05-03,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 16, 2021",2021-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert F. Martwick,2021-04-12,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Do Pass as Amended Insurance; 010-000-000,2021-04-15,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2021-04-16,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Michael T. Marron,2021-05-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-04-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-03-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended Pensions; 006-003-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Transportation,2021-03-23,[],IL,102nd +Do Pass as Amended State Government; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass as Amended / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-03-12,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Reported Back To Judiciary; 003-000-000,2021-04-13,[],IL,102nd +Arrived in House,2021-06-08,['introduction'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-15,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2021-04-06,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2021-04-12,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-03-23,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-02-06,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-02-26,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-03-25,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Do Pass Agriculture; 013-000-000,2022-02-07,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-04-19,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Housing Committee,2021-03-16,[],IL,102nd +Do Pass as Amended / Consent Calendar Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Resolution Adopted,2022-04-08,['passage'],IL,102nd +Do Pass as Amended / Short Debate Counties & Townships Committee; 011-000-000,2021-03-26,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-03-19,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2021-03-24,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-04-09,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-04-09,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-22,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-08,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Chief Sponsor Changed to Sen. Terri Bryant,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-24,['amendment-failure'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2021-04-01,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-08,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2021-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 010-006-000,2021-03-16,['committee-passage'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-03-25,['referral-committee'],IL,102nd +Co-Sponsor Rep. Deb Conroy,2021-02-08,[],IL,102nd +Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-15,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-03-23,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-24,[],IL,102nd +Arrive in Senate,2021-08-26,['introduction'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +"Do Pass as Amended / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-17,['committee-passage'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Do Pass as Amended State Government; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kambium Buckner,2021-03-16,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 16, 2021",2021-03-10,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2021-04-16,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-03-23,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2021-05-25,[],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2021-04-15,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-25,[],IL,102nd +Third Reading - Short Debate - Passed 107-003-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-01,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-03-03,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-08,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2021-04-06,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-29,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Anna Moeller,2021-04-20,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2021-04-06,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-09,[],IL,102nd +Do Pass as Amended Judiciary; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety Committee; by Voice Vote,2021-03-17,['amendment-passage'],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended Judiciary; 006-001-000,2022-02-09,['committee-passage'],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-02-05,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-08,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Recommends Be Adopted Human Services Committee; 008-005-000,2021-05-27,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Second Reading,2021-03-09,['reading-2'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2022-03-02,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-18,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-03-16,[],IL,102nd +"Do Pass as Amended / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-02-16,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2021-04-19,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-04-22,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2021-04-14,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Resolution Adopted,2023-01-04,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Deanne M. Mazzochi,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-11,[],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-11,['referral-committee'],IL,102nd +To Appropriations- Education,2021-04-07,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-02-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 015-000-001,2022-02-17,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Chris Miller,2021-03-26,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Removed Co-Sponsor Rep. Frances Ann Hurley,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2022-02-15,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-09-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-05,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-07-08,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2022-02-22,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-03-25,[],IL,102nd +Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +Assigned to Human Rights,2021-04-07,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-04-16,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2022-02-22,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Financial Institutions Committee,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-22,['amendment-failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Melinda Bush,2021-04-16,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-23,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Do Pass as Amended Insurance; 010-000-000,2021-04-15,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-02-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-02-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Fiscal Note Requested by Rep. Blaine Wilhour,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-29,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-06-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-01-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Chief Co-Sponsor Changed to Rep. Dave Vella,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-09,[],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-02-10,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Do Pass as Amended Financial Institutions; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2021-03-19,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-03-01,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-01-20,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-01-27,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Public Safety Committee,2022-02-17,[],IL,102nd +Resolution Adopted,2021-05-29,['passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-24,['committee-passage'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +To Medicaid & Managed Care Subcommittee,2021-03-19,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Omar Aquino,2021-04-15,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-23,['amendment-failure'],IL,102nd +Postponed - Health,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-10-13,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Chapin Rose,2021-03-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-26,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Steve McClure,2021-04-14,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Do Pass / Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-03,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-01-20,[],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 088-027-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-11-29,[],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Public Safety,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2021-04-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-07-08,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Do Pass as Amended / Short Debate Higher Education Committee; 010-000-000,2021-03-25,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-11-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-04-16,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2021-05-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +To Criminal Law- Clear Compliance,2022-02-09,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-03-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-04-15,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2021-04-09,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Ann M. Williams,2021-03-31,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2021-05-17,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Education,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-007-000,2021-03-24,['committee-passage'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-12-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-05-29,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Do Pass as Amended Local Government; 008-000-000,2022-02-09,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Co-Sponsor Rep. Dave Severin,2021-02-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-02-15,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Brad Halbrook,2021-04-08,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-10-28,[],IL,102nd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2021",2021-05-11,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2022-02-22,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2021-03-21,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-02-02,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-05-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2022-03-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2021-03-26,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +To Wage Policy & Study Subcommittee,2022-02-15,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Jay Hoffman,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Education,2021-03-23,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-09-30,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-10-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-11-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-01-28,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-15,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Thomas Morrison,2022-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2021-03-18,[],IL,102nd +Do Pass / Consent Calendar Executive Committee; 014-000-000,2021-03-11,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-01-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-15,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-04-15,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Postponed - Revenue,2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-02-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Ugaste,2021-03-22,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-04-16,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Police & Fire Committee; 015-000-000,2021-03-25,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 012-000-000,2022-03-16,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-03-02,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-09,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-11-30,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-11-09,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2021-04-14,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-04-15,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Carol Ammons,2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Re-assigned to Labor & Commerce Committee,2022-02-08,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-11-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Burke,2022-08-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-10,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2021-03-17,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-11-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-08-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Chris Bos,2022-03-16,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-09,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-01,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-03-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-08,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-30,['passage'],IL,102nd +Resolution Adopted 114-000-000,2022-03-30,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-04-04,[],IL,102nd +Recommends Be Adopted Economic Opportunity & Equity Committee; 008-000-000,2022-03-09,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-31,[],IL,102nd +Do Pass as Amended / Consent Calendar Labor & Commerce Committee; 029-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-17,[],IL,102nd +Do Pass as Amended / Consent Calendar Insurance Committee; 016-000-000,2022-02-15,['committee-passage'],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Civil Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Do Pass as Amended Executive; 011-005-000,2021-04-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-22,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-04-12,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-04-13,[],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2022-01-04,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-05-05,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Randy E. Frese,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 22, 2021",2021-04-21,[],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-02-15,[],IL,102nd +Resolution Adopted,2022-04-05,['passage'],IL,102nd +Third Reading - Short Debate - Passed 066-043-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-16,[],IL,102nd +Placed on Calendar - Consideration Postponed,2022-02-24,[],IL,102nd +Do Pass as Amended Executive; 016-000-000,2022-02-10,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-10-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Margaret Croke,2022-03-01,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-03-17,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-04-20,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +Reported Back To Health; 004-000-000,2021-04-12,[],IL,102nd +Postponed - Revenue,2021-03-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-04-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-02,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2021-04-16,['amendment-introduction'],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-04-21,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-02-23,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-03-16,[],IL,102nd +Do Pass as Amended Healthcare Access and Availability; 009-000-000,2021-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-11-09,[],IL,102nd +Chief Sponsor Changed to Rep. Rita Mayfield,2021-04-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-04-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-03-25,[],IL,102nd +Do Pass as Amended Revenue; 011-000-000,2022-02-10,['committee-passage'],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended Labor; 013-005-000,2022-02-07,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Financial Institutions,2022-02-22,[],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +Do Pass as Amended Education; 010-001-000,2022-02-09,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-01-11,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-02-01,[],IL,102nd +Third Reading - Short Debate - Passed 078-037-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-03-01,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-18,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Postponed - Energy and Public Utilities,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 To Executive- Elections,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-08,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-01-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Do Pass / Consent Calendar Counties & Townships Committee; 011-000-000,2021-03-05,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-11-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2022-05-11,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2022-02-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-03-25,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-01-27,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-11-30,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended Environment and Conservation; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Financial Institutions,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Health,2021-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2022-02-18,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Postponed - Pensions,2021-03-17,[],IL,102nd +Assigned to Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-11,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-04-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-15,[],IL,102nd +Do Pass as Amended Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2022-02-07,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-05,[],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2021-03-11,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Chief Sponsor Changed to Sen. Meg Loughran Cappel,2022-03-08,[],IL,102nd +Moved to Suspend Rule 21 Rep. Natalie A. Manley,2022-03-01,[],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 17, 2022",2022-02-16,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-10,[],IL,102nd +Chief Sponsor Changed to Rep. Jay Hoffman,2021-04-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-03-01,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Human Rights,2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-03-30,[],IL,102nd +Senate Committee Amendment No. 1 To Executive- Procurement,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-06-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-02-24,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-08-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-11-14,[],IL,102nd +Chief Sponsor Changed to Sen. Cristina H. Pacione-Zayas,2021-05-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-22,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-04-12,['amendment-introduction'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-02-08,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-03-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2021-04-08,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2022-02-14,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Thomas M. Bennett,2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2021-04-20,[],IL,102nd +Do Pass / Consent Calendar Mental Health & Addiction Committee; 016-000-000,2022-02-03,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Adopted in Energy & Environment Committee; by Voice Vote,2021-03-22,['amendment-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-23,['amendment-failure'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-06,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-04-08,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Ann M. Williams,2021-04-14,[],IL,102nd +Remains in Appropriations-Elementary & Secondary Education Committee,2021-03-26,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2021-04-16,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-03-26,[],IL,102nd +Re-assigned to Appropriations,2022-01-05,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-05-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2021-03-10,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2021-03-24,[],IL,102nd +Third Reading - Passed; 051-002-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2021-10-20,[],IL,102nd +Do Pass as Amended / Short Debate Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 063-044-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-12,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-03-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 052-000-000,2021-03-10,"['passage', 'reading-3']",IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-03-19,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-03,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-01-19,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2021-03-09,[],IL,102nd +Third Reading - Short Debate - Passed 069-043-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-03-24,[],IL,102nd +Assigned to State Government Administration Committee,2022-01-25,['referral-committee'],IL,102nd +Do Pass Behavioral and Mental Health; 010-000-000,2021-03-16,['committee-passage'],IL,102nd +To Appropriations- Human Services,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-01-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-04-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Donald P. DeWitte,2021-03-26,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Fiscal Note Filed,2021-04-19,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended Executive; 015-000-000,2021-04-15,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-01-11,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2023-01-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As March 25, 2022",2022-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-12,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-01-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Natalie A. Manley,2022-03-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 1, 2022",2022-01-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-01-24,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-04-15,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Financial Institutions Committee,2022-02-23,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-10-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 To Appropriations- Human Services,2022-01-26,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to Labor & Commerce Committee,2021-03-23,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-01-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2021-04-16,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-26,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-02-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2022-03-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Revenue,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Insurance,2022-01-26,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-25,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Be Adopted as Amended Education; 008-004-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-05-04,[],IL,102nd +To Income Tax Subcommittee,2022-01-27,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2021-02-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-10-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-03-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-05-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-02-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-24,['amendment-failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Scott M. Bennett,2022-01-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-02-11,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2022-02-08,[],IL,102nd +Chief Sponsor Changed to Sen. Craig Wilcox,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 21, 2021",2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-04-16,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2022-02-09,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Revenue,2022-02-09,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-17,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2021-04-23,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-02-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2022-02-24,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Passed; 054-000-001,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2021-04-06,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-03-12,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 13, 2021",2021-04-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-10-26,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-01-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-10-28,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended Executive; 011-006-000,2021-03-17,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-09,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2022-03-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-01-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 040-014-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-04-16,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +To Special Issues (HS) Subcommittee,2022-01-28,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-04-23,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-05,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2021-04-09,['amendment-introduction'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-02,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-11-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Appropriations-Human Services Committee; 015-009-000,2022-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-12-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Chief Senate Sponsor Sen. Jason A. Barickman,2021-05-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2021-04-20,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-03-07,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-04-08,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-04-04,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Postponed - Judiciary,2022-02-16,[],IL,102nd +Do Pass as Amended / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-01-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-03-01,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Public Utilities Committee; by Voice Vote,2021-03-22,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Executive- Procurement,2022-02-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Re-assigned to Executive,2021-05-25,['referral-committee'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Rep. LaToya Greenwood,2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-24,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-08-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Andrew S. Chesney,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-12-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Randy E. Frese,2021-04-14,[],IL,102nd +Re-assigned to Human Rights,2021-06-01,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions March 30, 2022",2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-05-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Rep. Fred Crespo,2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2022-02-07,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-07,[],IL,102nd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2022-02-22,['committee-passage-favorable'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Economic Opportunity & Equity Committee,2022-03-02,[],IL,102nd +Do Pass Behavioral and Mental Health; 009-000-000,2022-02-09,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2022-12-02,[],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2021-04-16,['amendment-introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-05-30,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-17,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-05-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2021-04-09,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2022-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-01-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Referred to Rules Committee,2021-09-09,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-04-14,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2022-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-01-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-03,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2022-02-28,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Thomas Cullerton,2021-04-20,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-23,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2021-04-14,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Police & Fire Committee; 015-000-000,2021-03-25,['committee-passage'],IL,102nd +Do Pass as Amended Insurance; 010-000-000,2021-04-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. John Connor,2021-04-14,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2022-02-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-12,[],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-17,[],IL,102nd +Resolution Adopted,2022-04-05,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-04-15,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2022-02-15,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Tourism and Hospitality,2021-03-03,[],IL,102nd +Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Reported Back To Health; 005-000-000,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-07-21,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-25,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2021-04-21,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-04-13,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-22,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-02-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-01-12,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Do Pass Revenue; 010-000-000,2021-04-21,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-22,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-02-09,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Chief Sponsor Changed to Rep. Jawaharial Williams,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-24,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-03,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-14,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-03-01,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Adopted in Transportation: Regulation, Roads & Bridges Committee; by Voice Vote",2022-03-03,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-04,[],IL,102nd +Do Pass as Amended / Short Debate Counties & Townships Committee; 006-004-000,2022-02-16,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2021-04-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-02-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-27,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Reported Back To Revenue & Finance Committee;,2022-02-17,[],IL,102nd +Do Pass as Amended Financial Institutions; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2021-06-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-05-06,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. C.D. Davidsmeyer,2022-02-28,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-04,[],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-03-02,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-28,[],IL,102nd +Third Reading - Short Debate - Passed 082-029-000,2021-04-14,"['passage', 'reading-3']",IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-05-29,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-03-29,[],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Recommends Be Adopted Rules Committee; 004-000-000,2022-02-17,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2021-10-29,['passage'],IL,102nd +Be Adopted Health; 014-000-000,2022-02-16,['committee-passage-favorable'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-10-19,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. John C. D'Amico,2021-10-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2021-05-03,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 068-043-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Referred to Rules Committee,2021-06-15,['referral-committee'],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-04-07,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Ugaste,2022-03-01,[],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Removed Co-Sponsor Rep. Mark Batinick,2022-01-20,[],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2021-03-25,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2021-03-17,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 10, 2021",2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-10-20,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-001-000,2022-04-08,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-23,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2022-02-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass as Amended Insurance; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +Do Pass as Amended Local Government; 007-000-000,2021-04-14,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Rachelle Crowe,2021-05-17,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 16, 2021",2021-03-10,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Pensions,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Do Pass as Amended Revenue; 006-003-000,2021-04-15,['committee-passage'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 20, 2021",2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-04-28,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-04-06,[],IL,102nd +Reported Back To Health; 005-000-000,2021-03-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-02-05,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Reported Back To Health; 005-000-000,2021-04-06,[],IL,102nd +Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Do Pass Licensed Activities; 007-000-000,2021-03-17,['committee-passage'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-03-22,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jacqueline Y. Collins,2021-04-08,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Amy Elik,2022-04-09,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-02-05,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2021-04-12,['amendment-introduction'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-04-19,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-19,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2022-02-22,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Karina Villa,2022-02-17,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2021-04-19,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2021-04-19,['amendment-introduction'],IL,102nd +Do Pass as Amended Veterans Affairs; 005-000-000,2022-02-09,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-02-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-17,[],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 10, 2021",2021-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-03-17,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2021",2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-05,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2021-04-22,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-01,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-23,['amendment-failure'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Napoleon Harris, III",2022-02-18,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2021-03-23,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Rules Refers to Cities & Villages Committee,2022-02-09,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2022-03-02,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2021-04-15,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2021-03-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-08,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-15,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-02-08,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-04-08,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-10,[],IL,102nd +Do Pass as Amended Insurance; 010-000-000,2021-04-15,['committee-passage'],IL,102nd +Do Pass Health; 013-000-000,2021-04-14,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-12,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-16,[],IL,102nd +Arrived in House,2022-04-09,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Ugaste,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions February 23, 2022",2022-02-22,[],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2021-05-06,[],IL,102nd +Chief Sponsor Changed to Rep. Carol Ammons,2021-04-12,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 027-000-000,2022-02-09,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-09,[],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Waive Posting Notice,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2021-04-07,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Chief Sponsor Changed to Rep. LaToya Greenwood,2021-04-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 062-040-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-10-14,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-02-23,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2022-02-09,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-04-06,['amendment-introduction'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2021-03-25,['committee-passage'],IL,102nd +Do Pass as Amended / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-03-24,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2022-02-22,[],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-28,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-02-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2021-04-13,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-000-000,2022-02-09,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-12-01,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-03-16,[],IL,102nd +Do Pass Education; 014-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Reported Back To Criminal Law; 003-000-000,2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-05,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-05-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Darren Bailey,2021-04-14,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Cyril Nichols,2022-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-05-13,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-22,[],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-04,[],IL,102nd +Reported Back To Criminal Law; 003-000-000,2021-04-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Third Reading - Passed; 054-001-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +State Mandates Fiscal Note Filed,2021-04-21,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Donald P. DeWitte,2021-04-16,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-03-30,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-04-09,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-04-01,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-09-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +State Mandates Fiscal Note Requested by Rep. Sonya M. Harper,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2021-04-01,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-04-21,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-11-15,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +To Sex Offenses and Sex Offender Registration Subcommittee,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Lakesia Collins,2021-04-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-09,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 To Executive- Cannabis,2021-03-24,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-18,[],IL,102nd +Third Reading - Passed; 055-001-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-29,[],IL,102nd +To Procurement Subcommitee,2022-02-10,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-25,[],IL,102nd +Do Pass as Amended / Consent Calendar Economic Opportunity & Equity Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-04-06,[],IL,102nd +Reported Back To Health; 005-000-000,2021-04-12,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Healthcare Access and Availability,2021-04-07,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-17,['amendment-failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2021-03-15,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2022-02-15,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-01-19,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2021-04-20,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Do Pass Education; 011-000-000,2021-04-14,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-15,[],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Chief Sponsor Changed to Rep. Marcus C. Evans, Jr.",2021-03-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-04-28,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Postponed - Behavioral and Mental Health,2021-03-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-04-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-05-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-06-08,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Chief Sponsor Changed to Rep. Rita Mayfield,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 004-002-000,2021-03-15,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-01-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-24,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-03-15,[],IL,102nd +Do Pass as Amended Judiciary; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-01-05,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 To Appropriations- Human Services,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-10,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-10,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 10, 2021",2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Do Pass as Amended State Government; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +Third Reading - Short Debate - Passed 065-043-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-10-20,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Chief Senate Sponsor Sen. Chapin Rose,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended Insurance; 009-002-000,2021-04-15,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-21,[],IL,102nd +"Do Pass as Amended / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 011-007-000,2021-03-26,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-07-19,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2021-04-05,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-01-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-11-30,['referral-committee'],IL,102nd +Do Pass as Amended State Government; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Human Services Committee; 009-006-000,2021-03-16,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-11-04,[],IL,102nd +Postponed - Tourism and Hospitality,2021-04-15,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-09-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2022-01-27,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-10-19,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-23,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Lindsey LaPointe,2021-04-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Criminal Law,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-03-26,['committee-passage'],IL,102nd +Assigned to Environment and Conservation,2022-01-26,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jawaharial Williams,2022-03-01,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Postponed - Criminal Law,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Cities & Villages Committee,2021-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-07,[],IL,102nd +Second Reading - Standard Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-008-000,2022-02-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Sally J. Turner,2021-04-06,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Steven Reick,2021-04-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-02-03,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-07-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 16, 2021",2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 015-001-000,2021-03-23,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Diane Pappas,2022-04-01,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Veterans' Affairs Committee,2021-04-13,[],IL,102nd +Do Pass as Amended / Short Debate Immigration & Human Rights Committee; 005-003-000,2022-02-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2023-01-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-03-02,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-16,[],IL,102nd +Assigned to Executive Committee,2022-02-01,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Child Care Accessibility & Early Childhood Education Committee; by Voice Vote,2021-03-19,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-05,[],IL,102nd +Postponed - Criminal Law,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-09,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Behavioral and Mental Health,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Removed from Short Debate Status,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-02-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-07-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-23,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-30,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-03-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Adoption & Child Welfare Committee; 007-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sonya M. Harper,2021-04-14,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Economic Opportunity & Equity Committee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-24,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-10-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Removed Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-01-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-23,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-18,['amendment-failure'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-05-30,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed from Consent Calendar Status Rep. Michael T. Marron,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Reported Back To Judiciary; 003-000-000,2022-02-15,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor & Commerce Committee,2022-01-25,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 055-001-000,2021-03-10,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2022-03-28,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Public Utilities Committee,2021-03-11,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Appropriations-Higher Education Committee,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-02-18,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Chapin Rose,2021-10-20,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2021-03-15,['amendment-passage'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 016-007-000,2022-01-12,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Transportation,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-13,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-04-28,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2021-04-15,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-28,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-08-09,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-09,[],IL,102nd +Third Reading - Short Debate - Passed 071-039-002,2021-04-22,"['passage', 'reading-3']",IL,102nd +Do Pass Environment and Conservation; 006-003-000,2022-02-07,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Criminal Law; 010-000-000,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Healthcare Access and Availability; 009-000-000,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-05,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Darren Bailey,2021-04-16,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-02-08,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety Committee; 011-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-02-09,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-25,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-07-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-05-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended / Short Debate Child Care Accessibility & Early Childhood Education Committee; 007-003-000,2021-03-19,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Thomas Morrison,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-01,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-05-19,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-12-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-20,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2022-02-17,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2021-04-12,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-06,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Health,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-20,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-03-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 013-000-000,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Barbara Hernandez,2022-02-17,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended Executive; 016-000-000,2021-04-21,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-01-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Do Pass as Amended Revenue; 011-000-000,2022-02-10,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Housing Committee,2021-04-06,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-01,[],IL,102nd +Third Reading - Passed; 055-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Suspend Rule 21 - Prevailed,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2021-03-11,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Suzanne Ness,2021-04-20,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2023-01-06,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-17,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Do Pass Criminal Law; 010-000-000,2021-04-14,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-11-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Randy E. Frese,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Deanne M. Mazzochi,2021-04-20,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sally J. Turner,2021-04-16,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. David A. Welter,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-10-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-16,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-21,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-22,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 15, 2021",2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-15,[],IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2022-02-28,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2022-02-18,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-10-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-24,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-01-05,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-02-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-03-30,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-04-13,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Removed Co-Sponsor Rep. Thomas M. Bennett,2021-02-24,[],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy and Public Utilities,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-05,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Do Pass Revenue; 009-000-000,2021-03-19,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +To Executive- Procurement,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2022-02-28,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2022-03-08,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-05-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2022-02-17,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-31,[],IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-11-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-24,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-02-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Public Utilities Committee,2022-02-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended Energy and Public Utilities; 016-000-000,2021-04-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Third Reading - Passed; 049-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-11-14,[],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 006-000-000,2021-03-01,['committee-passage'],IL,102nd +Third Reading - Passed; 035-016-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +To Subcommittee on Public Health,2021-03-24,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Recalled to Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2021-03-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-11,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Steven Reick,2021-03-22,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-04-14,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-01-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-04,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2021-03-09,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-01-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2022-01-05,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +"Removed Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-14,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2021-03-17,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-01,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Remove Chief Co-Sponsor Rep. John C. D'Amico,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety Committee; 010-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2022-02-03,[],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2021-03-25,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-05-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2022-02-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Tom Weber,2021-04-15,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2022-02-08,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2022-02-22,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-08-24,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-04-13,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-15,[],IL,102nd +Do Pass Behavioral and Mental Health; 008-003-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-01-27,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-01-19,[],IL,102nd +Postponed - Local Government,2021-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-07,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-15,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2022-02-24,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Ethics & Elections Committee,2021-04-14,[],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 010-000-000",2022-03-29,['committee-passage-favorable'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-22,[],IL,102nd +Arrived in House,2021-03-11,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-01,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Burke,2022-02-24,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +To Appropriations- Health,2022-01-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Education,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Motion Filed to Table Rep. Rita Mayfield,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-22,[],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2022-03-08,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2022-03-08,[],IL,102nd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-31,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-16,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-10,[],IL,102nd +Arrived in House,2021-03-11,['introduction'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-24,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2022-02-25,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-05-24,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-10-06,[],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-01-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-12-02,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-16,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2021-05-25,['amendment-introduction'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-02-17,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Veterans' Affairs Committee,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-25,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2022-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-28,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Procurement Subcommitee,2022-02-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Assignments,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-03-25,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2022-12-06,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-01-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended Health; 012-000-000,2021-04-20,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2022-01-25,[],IL,102nd +Re-assigned to Energy and Public Utilities,2021-05-10,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-04-20,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-02-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-01-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Do Pass Health; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 010-001-000,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael Halpin,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Chief Sponsor Changed to Sen. Chapin Rose,2021-10-22,[],IL,102nd +First Reading,2021-10-26,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-31,[],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Financial Institutions,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended Judiciary; 009-000-000,2021-04-20,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-03-19,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-03-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Postponed - Revenue,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-22,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-04-22,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-05-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-01-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-03-10,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-01-12,[],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-02-08,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Referred to Rules Committee,2023-01-06,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-19,[],IL,102nd +To Executive- Elections,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-01-12,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-16,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-25,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Donald P. DeWitte,2021-03-29,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-29,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-17,[],IL,102nd +Arrived in House,2021-04-28,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-01,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 079-035-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2021-04-20,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2022-03-01,['amendment-introduction'],IL,102nd +Re-assigned to Revenue,2022-02-08,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-03-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-01-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-05-24,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Energy and Public Utilities,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-17,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-02-18,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-15,[],IL,102nd +Chief Co-Sponsor Changed to Sen. Scott M. Bennett,2022-01-19,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-01-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Fiscal Note Filed,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-04-20,[],IL,102nd +Postponed - Revenue,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Veterans' Affairs Committee,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-12,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2021-04-28,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-02-04,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-01,[],IL,102nd +Do Pass as Amended Executive; 016-000-000,2022-02-10,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-04-16,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-11-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Do Pass as Amended Public Safety; 007-000-000,2021-04-14,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Public Utilities Committee; 025-000-000,2021-03-22,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-01-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John F. Curran,2022-02-07,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-12,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-28,[],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2022-03-01,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-05-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-31,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-09,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-01-07,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-09-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Do Pass as Amended Behavioral and Mental Health; 011-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2022-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Elizabeth Hernandez,2021-04-15,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-05-05,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2022-02-09,[],IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended Insurance; 010-000-000,2021-04-15,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-10-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-12,[],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Keith P. Sommer,2021-03-17,[],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-02-17,['amendment-introduction'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Chief House Sponsor Rep. Dan Caulkins,2022-04-09,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-18,['amendment-failure'],IL,102nd +Postponed - Pensions,2021-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-04-06,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-07-21,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-02-22,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-05-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-02-23,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-02-05,[],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-02-05,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Linda Holmes,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-09,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-29,[],IL,102nd +Do Pass as Amended Education; 011-000-000,2022-02-09,['committee-passage'],IL,102nd +Third Reading - Passed; 057-000-000,2021-03-10,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-02-23,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-03-23,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-23,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Education,2022-02-08,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2021-03-17,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Chief Sponsor Changed to Rep. Lindsey LaPointe,2021-03-17,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-04-13,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-22,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Third Reading - Passed; 035-016-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-04,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-24,['amendment-failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2021-03-04,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-16,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-28,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-10-19,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-01-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions February 17, 2022",2022-02-16,[],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Arrive in Senate,2022-02-23,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-04-15,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-08,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-23,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-16,['amendment-passage'],IL,102nd +Resolution Adopted,2021-05-31,['passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2022-03-01,['amendment-introduction'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-16,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Pensions,2022-02-08,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 017-011-000,2021-03-17,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 011-006-000,2022-02-17,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-05-03,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Removed from Resolution Consent Calendar,2021-04-12,[],IL,102nd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-14,[],IL,102nd +Do Pass / Short Debate Appropriations-Elementary & Secondary Education Committee; 013-003-000,2021-03-26,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-06-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-04,['amendment-passage'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-02-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 010-000-000,2022-02-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-10-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-02-17,['referral-committee'],IL,102nd +Do Pass State Government; 009-000-000,2021-04-21,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-02-15,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-10,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-12,[],IL,102nd +Second Reading,2021-03-10,['reading-2'],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-12,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 071-042-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Approved for Consideration Assignments,2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 007-000-000,2022-02-24,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sue Scherer,2021-03-11,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to State Government,2022-02-09,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2022-03-02,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-02-16,[],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 006-000-000,2022-02-15,['committee-passage'],IL,102nd +Postponed - Transportation,2021-03-24,[],IL,102nd +Chief House Sponsor Rep. Avery Bourne,2021-06-08,[],IL,102nd +"Do Pass as Amended / Short Debate Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-03-03,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Approved for Consideration Assignments,2022-02-22,[],IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2022-03-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-03-08,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-14,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-09,['committee-passage'],IL,102nd +Resolution Adopted,2022-02-15,['passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2022-02-08,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Avery Bourne,2021-04-13,[],IL,102nd +Third Reading - Passed; 055-001-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-26,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-10,['amendment-failure'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sally J. Turner,2021-04-13,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-05-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2022-02-17,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2022-01-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-04-01,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-03-16,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-08-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Camille Y. Lilly,2021-10-19,['amendment-introduction'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sally J. Turner,2021-04-08,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-07-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-10-20,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-02-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-10,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-03-03,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-01-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-10-01,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jason A. Barickman,2021-03-30,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-08-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Assignments,2021-10-28,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-05-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 23, 2021",2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-05-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2022-11-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-10,[],IL,102nd +Referred to Rules Committee,2023-01-06,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2021-04-13,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Amy Grant,2022-12-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-01-14,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-05-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Labor & Commerce Committee,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-30,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-01-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +To Family Law & Probate Subcommittee,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-12,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-18,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-11,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-05-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Environment and Conservation,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-02-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2021-03-16,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Randy E. Frese,2021-04-14,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-06,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-10,[],IL,102nd +Referred to Assignments,2022-11-29,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2022-02-01,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-18,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Fred Crespo,2022-02-28,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-11-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-01-28,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-01-14,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 013-000-000,2022-02-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to State Government,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-06-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted 112-000-000,2022-04-08,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-01-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Wage Policy & Study Subcommittee,2022-02-15,[],IL,102nd +Re-assigned to Energy and Public Utilities,2021-05-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Tourism and Hospitality,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-05-11,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-General Services Committee,2021-03-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-02-15,[],IL,102nd +Removed Co-Sponsor Rep. Ann M. Williams,2022-02-07,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Brian W. Stewart,2021-04-16,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 006-000-000,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-04-08,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dale Fowler,2021-04-16,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-25,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-03-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-21,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-01-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-10-28,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Do Pass Revenue; 010-000-000,2021-03-24,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +To Executive- Elections,2021-03-24,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 To Appropriations- General Services,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2021-04-08,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2022-02-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +To Wage Policy & Study Subcommittee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-01-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-04-26,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-10-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Assignments,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-09,[],IL,102nd +Removed from Short Debate Status,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-18,[],IL,102nd +Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-01-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2022-02-17,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-06,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Revenue,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-08-09,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-15,[],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-03-02,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-01-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-05,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-11-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Housing Committee,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Arrived in House,2021-03-11,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Postponed - State Government,2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jawaharial Williams,2021-06-14,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-13,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2021-06-08,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-25,[],IL,102nd +Arrived in House,2021-05-27,['introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-05,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-05-26,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-04-20,['amendment-introduction'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-03,[],IL,102nd +Third Reading - Short Debate - Passed 106-010-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-24,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2021-04-15,[],IL,102nd +Reported Back To Revenue & Finance Committee;,2021-03-25,[],IL,102nd +Do Pass as Amended Tourism and Hospitality; 008-001-000,2021-04-15,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2022-02-08,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 013-000-000,2021-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-03,[],IL,102nd +Do Pass / Short Debate Restorative Justice Committee; 005-001-000,2021-03-18,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-21,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2021-04-15,[],IL,102nd +Arrived in House,2021-04-28,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Donald P. DeWitte,2021-04-22,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-08,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Do Pass as Amended Labor; 013-000-000,2021-04-21,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2021-03-11,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Environment and Conservation,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-17,[],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2022-03-02,[],IL,102nd +Arrive in Senate,2022-02-23,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2021-03-11,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-08,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Frances Ann Hurley,2021-04-12,['amendment-introduction'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 014-000-000,2022-03-23,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-05-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2021-04-14,[],IL,102nd +Do Pass as Amended / Short Debate Immigration & Human Rights Committee; 007-001-000,2021-03-17,['committee-passage'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-03-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Postponed - Health,2022-02-09,[],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-10,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Angelica Guerrero-Cuellar,2022-03-01,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-05-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-02-26,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions March 30, 2022",2022-03-29,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-28,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-28,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-30,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-03-10,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-03-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Suzanne Ness,2022-02-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-04-12,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Approved for Consideration Assignments,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-03,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-03-08,['reading-3'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-05-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-09-21,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-04-06,[],IL,102nd +Resolution Adopted,2021-05-05,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-04-13,[],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended Education; 013-000-000,2022-02-09,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-01-24,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-02-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-03-26,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-07,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sally J. Turner,2021-04-07,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2021-05-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-02-17,['committee-passage-favorable'],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-03-09,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-24,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-11-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Assignments,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-03-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-02-14,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-16,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-31,[],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2022-03-02,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2022-02-16,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-03-04,[],IL,102nd +Do Pass as Amended State Government; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-01-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Approved for Consideration Assignments,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-10-28,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-02-25,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2023-01-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-11,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-16,['referral-committee'],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2021-03-01,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-05-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-12-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-24,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-08-31,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-12-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Wage Policy & Study Subcommittee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2022-02-15,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. John C. D'Amico,2021-03-18,[],IL,102nd +Do Pass as Amended / Consent Calendar Insurance Committee; 017-000-000,2022-02-10,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 103-002-000,2022-03-01,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +To Wage Policy & Study Subcommittee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Adopted in Housing Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to Energy and Public Utilities,2021-05-10,['referral-committee'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-01-07,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jason Plummer,2021-04-16,['amendment-introduction'],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Assigned to Counties & Townships Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-12-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Personnel & Pensions Committee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2021-03-01,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2021-04-08,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-02-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-01-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-23,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-21,[],IL,102nd +"Do Pass as Amended / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-03-15,['committee-passage'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-01-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-08,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-02-09,[],IL,102nd +Postponed-Subcommittee on Property Law,2021-04-13,[],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-02,[],IL,102nd +Approved for Consideration Assignments,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-02,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2022-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-10-05,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-05-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Removed from Consent Calendar Status Rep. Curtis J. Tarver, II",2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-11-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2021-04-13,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-09-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2022-01-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Executive,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Antonio Muñoz,2022-02-16,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. David A. Welter,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Waive Posting Notice,2022-02-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-21,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-12,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2022-01-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-03-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Linda Holmes,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-02-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-28,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-05-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-03-16,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 111-001-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-08-29,[],IL,102nd +Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-15,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Barbara Hernandez,2022-02-16,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Labor & Commerce Committee,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Pensions,2021-03-17,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-08,[],IL,102nd +First Reading,2021-10-26,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-26,[],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Jeff Keicher",2021-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Public Utilities Committee,2021-03-11,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +"To Roadways, Rail & Aviation Subcommittee",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sam Yingling,2021-04-08,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Dave Syverson,2022-02-14,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation,2021-03-09,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 012-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-11,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2021-03-16,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-14,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-28,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-02,['amendment-failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Behavioral and Mental Health,2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-15,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-26,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-01,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-03-23,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-09,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As March 11, 2022",2022-02-25,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-06-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 015-000-000,2022-02-09,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to Appropriations,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-03-24,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Appropriations- Human Services,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-01-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-13,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-02-19,[],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-07-29,[],IL,102nd +Arrive in Senate,2022-02-23,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-05-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2022-03-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 036-014-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-09-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-09,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Do Pass as Amended Executive; 014-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-08-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-13,['referral-committee'],IL,102nd +Do Pass Executive; 015-000-000,2022-02-10,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Chris Miller,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-09-29,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-17,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2022-02-16,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions March 30, 2022",2022-03-29,[],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-02-23,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-22,['amendment-failure'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Judiciary,2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-21,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-31,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Do Pass as Amended / Short Debate Personnel & Pensions Committee; 005-003-000,2021-03-26,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Removed Co-Sponsor Rep. Daniel Swanson,2022-02-17,[],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-02-22,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2021-05-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Do Pass as Amended Pensions; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Removed Co-Sponsor Rep. Maura Hirschauer,2021-03-09,[],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-04-02,[],IL,102nd +Reported Back To Health; 005-000-000,2021-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-18,[],IL,102nd +Resolution Adopted 118-000-000,2021-05-12,['passage'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions October 28, 2021",2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor All Other Members of the House,2022-04-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Do Pass as Amended / Consent Calendar Executive Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-17,[],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-05-25,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Deanne M. Mazzochi,2021-04-12,['amendment-introduction'],IL,102nd +Third Reading - Passed; 053-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Adopted in Mental Health & Addiction Committee; by Voice Vote,2021-03-26,['amendment-passage'],IL,102nd +Arrived in House,2021-04-28,['introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions February 8, 2022",2022-02-07,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-03-11,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-01-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-19,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 017-009-000,2022-02-09,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-24,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-17,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-05-17,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-04-27,[],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Insurance,2021-04-13,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Elizabeth Hernandez,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-10,[],IL,102nd +Reported Back To Revenue & Finance Committee;,2021-03-25,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-10-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2021-03-17,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 017-005-000,2022-02-16,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-02,['referral-committee'],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-05-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 23, 2021",2021-03-17,[],IL,102nd +Do Pass as Amended Higher Education; 013-000-000,2022-02-09,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2021",2021-03-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-04-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-02-23,[],IL,102nd +Removed Co-Sponsor Rep. Katie Stuart,2021-04-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2021-03-09,[],IL,102nd +Do Pass / Short Debate Housing Committee; 014-008-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-03-24,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2021-03-15,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dale Fowler,2021-04-16,['amendment-introduction'],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Do Pass as Amended / Consent Calendar Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 21, 2021",2021-04-20,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2021-03-23,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Resolution Adopted 115-000-000,2022-04-06,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Agriculture,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jacqueline Y. Collins,2021-04-14,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Postponed - Higher Education,2021-03-16,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-29,['amendment-passage'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-04-06,[],IL,102nd +Do Pass as Amended Judiciary; 009-000-000,2021-03-16,['committee-passage'],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-03-18,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-17,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-02-17,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2021-04-12,['amendment-introduction'],IL,102nd +"Added as Chief Co-Sponsor Sen. Emil Jones, III",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-03-28,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 26, 2021",2021-05-25,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2021-04-20,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-05-30,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Reported Back To Health; 005-000-000,2021-04-06,[],IL,102nd +Postponed - Environment and Conservation,2021-03-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2022-02-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-03,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-05-18,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Agriculture,2021-03-23,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-17,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-04-28,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-04-13,[],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-02-23,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-12,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Veterans' Affairs Committee,2021-04-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Mike Murphy,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-04-28,[],IL,102nd +Do Pass as Amended Higher Education; 015-000-000,2021-03-24,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 021-002-001,2021-03-24,['committee-passage'],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-10-20,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Chief Sponsor Changed to Rep. Natalie A. Manley,2021-03-23,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-03,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-03-11,['committee-passage-favorable'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-13,[],IL,102nd +Removed Co-Sponsor Rep. Jawaharial Williams,2021-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +"Removed from Consent Calendar Status Rep. Lamont J. Robinson, Jr.",2022-03-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-25,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-11,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michael Halpin,2021-03-22,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2021-04-20,[],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2021-03-25,['amendment-introduction'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jacqueline Y. Collins,2021-04-06,['amendment-introduction'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-20,['passage'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-26,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2021-03-23,[],IL,102nd +Resolution Adopted as Amended,2021-05-10,['passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Referred to Assignments,2021-05-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-05-05,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Recommends Be Adopted Consumer Protection Committee; 005-000-000,2021-05-26,['committee-passage-favorable'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-04-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-02-26,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2022-02-22,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-04,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-04-27,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-05-29,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-04-05,[],IL,102nd +Arrived in House,2021-03-11,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2021-04-14,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-03-09,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-15,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2021-05-11,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Counties & Townships Committee; 008-003-000,2021-03-26,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-04-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-11-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Caulkins,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-05-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Civil Procedure & Tort Liability Subcommittee,2021-03-23,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-10,[],IL,102nd +To Family Law & Probate Subcommittee,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-01,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-11-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-05-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-09,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas Morrison,2021-05-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-03-26,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-02-24,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-01-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Third Reading - Passed; 052-000-000,2022-12-01,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-11-29,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-01-13,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-12-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended Executive; 014-000-000,2022-02-10,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-02-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 To Insurance Mandates,2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-07,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-26,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-08-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-21,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted; 057-000-000,2021-10-28,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Adopted in Energy & Environment Committee; by Voice Vote,2021-03-22,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Co-Sponsor Rep. Andrew S. Chesney,2021-02-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Labor & Commerce Committee,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-10,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-11-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-05-04,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2022-11-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-04-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Ethics & Elections Committee,2021-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-09,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +House Committee Amendment No. 1 To Medicaid & Managed Care Subcommittee,2021-03-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-01-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2021-03-12,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Ellman,2022-02-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-01-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-03-29,[],IL,102nd +Fiscal Note Filed,2021-04-19,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-02-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Human Rights,2021-04-15,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-30,[],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-10-14,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-01-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-03-10,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Steve McClure,2021-04-15,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Education; 010-004-000,2021-04-14,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-01-28,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-17,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-06-08,[],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-10-05,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-02-22,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-08-24,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-02-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2022-12-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-03-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Motion Do Pass - Lost Counties & Townships Committee; 003-008-000,2021-04-15,['committee-failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to Energy and Public Utilities,2021-05-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-09-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-10,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2021-03-25,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Recommends Do Pass Subcommittee/ Insurance Committee; 002-001-000,2021-03-22,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-17,['amendment-failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-02-23,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-07-08,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 010-000-000,2022-02-22,['committee-passage-favorable'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-02,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Financial Institutions Committee; 008-000-000,2022-02-22,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-28,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2022-03-02,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Waive Posting Notice,2021-05-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-01-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-07-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-03-01,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Agriculture,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-01-12,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2022-03-01,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-08-16,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-05-10,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-29,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-03-26,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-26,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-31,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-04-16,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2022-03-01,[],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-03-09,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Do Pass as Amended Revenue; 011-000-000,2022-02-10,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Removed Co-Sponsor Rep. Maurice A. West, II",2021-02-24,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-11,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-02-22,['amendment-introduction'],IL,102nd +Resolution Adopted,2022-03-31,['passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-01-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 007-000-000,2022-02-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2021-03-11,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-03-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 007-000-000,2022-03-09,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) March 4, 2022",2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-01,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-02-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2022-02-15,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-29,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-01-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-10-13,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-assigned to State Government,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-26,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-02-10,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michael Halpin,2022-02-25,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Approved for Consideration Assignments,2022-12-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 010-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-01-10,[],IL,102nd +Postponed - Health,2022-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-02,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-15,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-01-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-04-04,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-29,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-09,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-02-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Health; 015-000-000,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2022-02-17,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-03-02,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-01-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +Approved for Consideration Assignments,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-09,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2022-02-17,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-01-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-04-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Appropriations-Higher Education Committee,2021-03-23,[],IL,102nd +Do Pass as Amended Labor; 014-004-000,2022-02-07,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Chief Sponsor Changed to Rep. La Shawn K. Ford,2021-06-16,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Removed from Consent Calendar Status Rep. Sam Yingling,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 14, 2021",2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-04-03,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-17,[],IL,102nd +Recommends Be Adopted Rules Committee; 004-000-000,2022-03-15,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-09,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2022-02-16,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-04-04,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2021-04-15,['amendment-introduction'],IL,102nd +To Property Tax Subcommittee,2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2021-03-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Michael E. Hastings,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 13, 2021",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-03-25,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Standard Debate,2021-03-17,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-03-30,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-09,[],IL,102nd +Assigned to Insurance Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +Assigned to Human Services Committee,2022-01-11,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass State Government; 007-000-000,2022-02-07,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-10-25,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 027-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2022-02-15,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-01-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Do Pass as Amended Licensed Activities; 007-000-000,2022-02-07,['committee-passage'],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-04-20,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Do Pass Agriculture; 013-000-000,2021-03-19,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-01-27,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-09-07,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-05-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Steve McClure,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. LaToya Greenwood,2021-10-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-02,[],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-12-13,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-10,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2021-05-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Jaime M. Andrade, Jr.",2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-07,[],IL,102nd +House Committee Amendment No. 1 Adopted in Personnel & Pensions Committee; by Voice Vote,2022-02-10,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-03-19,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Pensions; 009-000-000,2022-02-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-08-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-05-05,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2022-02-23,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Fiscal Note Filed,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-10-28,[],IL,102nd +"Do Pass / Short Debate Museums, Arts, & Cultural Enhancements Committee; 009-001-000",2021-03-25,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Do Pass as Amended Revenue; 010-000-000,2021-04-21,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-08,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-12,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-05-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Do Pass as Amended Labor; 013-000-000,2021-04-14,['committee-passage'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2021-12-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended State Government; 009-000-000,2021-04-21,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-15,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-01-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-07-07,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Agriculture,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-26,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-02-23,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-02-03,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-02-11,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-10-28,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-01-29,[],IL,102nd +Chief Sponsor Changed to Sen. Laura M. Murphy,2022-03-08,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-04-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-10-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Assignments,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy and Public Utilities,2021-03-03,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-08-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-02-01,[],IL,102nd +Do Pass Local Government; 005-001-000,2022-02-16,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Rita Mayfield,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-12,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-02-23,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-05-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Filed with Secretary by Sen. Jacqueline Y. Collins,2021-12-15,['filing'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Third Reading - Short Debate - Passed 079-023-004,2022-02-24,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-02,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-01-28,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-04,[],IL,102nd +Added as Chief Co-Sponsor Sen. Steve McClure,2022-02-24,[],IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Financial Institutions; 007-000-000,2021-04-21,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Revenue & Finance Committee,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-04,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2021-03-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Pension Note Requested by Rep. Avery Bourne,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-11,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-02-08,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate **,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 13, 2021",2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-05-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Health,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Elizabeth Hernandez,2021-04-20,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Commerce,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-07-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-02-25,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-10,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2021-04-14,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Judiciary,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-01-27,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-05-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2021-03-22,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-28,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Higher Education Committee,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Do Pass / Consent Calendar Restorative Justice Committee; 006-000-000,2021-03-25,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-03-10,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-04,[],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-12-21,[],IL,102nd +Assigned to Consumer Protection Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Do Pass Executive; 016-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-17,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended State Government; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. C.D. Davidsmeyer,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-02-05,[],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2021-08-26,[],IL,102nd +Do Pass as Amended Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 10, 2021",2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-02-06,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Do Pass / Consent Calendar Cities & Villages Committee; 010-000-000,2021-03-16,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-26,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-12,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-16,[],IL,102nd +Do Pass as Amended Tourism and Hospitality; 005-003-001,2021-04-22,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 015-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-08,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-03,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-16,[],IL,102nd +Removed Co-Sponsor Rep. Ann M. Williams,2021-03-05,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to State Government Administration Committee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-01-31,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-12,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Win Stoller,2021-05-07,[],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-10,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-01,[],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Re-assigned to Economic Opportunity & Equity Committee,2021-03-18,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-10-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2021-04-15,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended Transportation; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-04-20,[],IL,102nd +Assigned to Higher Education Committee,2021-03-02,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. C.D. Davidsmeyer,2022-11-17,[],IL,102nd +Do Pass as Amended Labor; 012-005-000,2021-04-14,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-03-17,['amendment-passage'],IL,102nd +Do Pass as Amended Human Rights; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Judiciary,2021-03-09,[],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-05-06,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-29,['passage'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Mark L. Walker,2021-03-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-11,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2021-03-26,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Recommends Be Adopted - Consent Calendar Higher Education Committee; 010-000-000,2021-03-25,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-05-12,[],IL,102nd +Do Pass as Amended Judiciary; 007-000-000,2022-02-07,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2022-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-10,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-02,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Passed; 057-000-000,2021-03-10,"['passage', 'reading-3']",IL,102nd +Approved for Consideration Assignments,2022-03-10,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-04-06,[],IL,102nd +To Subcommittee on Public Health,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Resolution Adopted,2022-04-08,['passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-17,['amendment-passage'],IL,102nd +Do Pass as Amended / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-04-28,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Omar Aquino,2021-04-22,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Do Pass as Amended / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-17,['committee-passage'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-03-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-02-22,[],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2021-04-05,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-06,[],IL,102nd +Do Pass as Amended Pensions; 008-000-000,2021-04-14,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-09,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-31,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-17,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-06-04,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-25,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Do Pass Education; 008-003-000,2021-04-14,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Will Guzzardi,2021-03-04,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2021-04-15,[],IL,102nd +Assigned to Consumer Protection Committee,2021-03-09,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-23,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Resolution Adopted,2021-04-23,['passage'],IL,102nd +Second Reading - Short Debate,2021-03-17,['reading-2'],IL,102nd +Do Pass as Amended Judiciary; 005-002-000,2021-04-14,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Terri Bryant,2021-04-23,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-09,[],IL,102nd +Removed Co-Sponsor Rep. LaToya Greenwood,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-26,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-04-13,[],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Removed Co-Sponsor Rep. Anne Stava-Murray,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Recommends Be Adopted Higher Education Committee; 010-000-000,2022-04-07,['committee-passage-favorable'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2021-03-18,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 15, 2021",2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Recalled to Second Reading,2021-03-17,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-02,[],IL,102nd +Third Reading - Passed; 057-000-001,2021-04-21,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Arrived in House,2021-03-11,['introduction'],IL,102nd +Do Pass as Amended Healthcare Access and Availability; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sonya M. Harper,2021-05-06,['amendment-introduction'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-28,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Co-Sponsor Rep. Kelly M. Cassidy,2021-02-08,[],IL,102nd +Postponed - Healthcare Access and Availability,2022-01-18,[],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Scott M. Bennett,2021-04-06,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-02-26,[],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Third Reading - Passed; 055-001-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to State Government,2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-05-06,[],IL,102nd +Third Reading - Short Debate - Passed 102-006-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-12,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-18,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2023-01-06,[],IL,102nd +Third Reading - Passed; 055-001-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 31, 2021",2021-05-30,[],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2021-04-21,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Melinda Bush,2022-02-14,['amendment-introduction'],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +Do Pass as Amended Judiciary; 008-000-001,2021-04-14,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-08,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Environment and Conservation,2021-04-20,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-09,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Restorative Justice Committee,2021-04-20,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-10,[],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-26,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-08,[],IL,102nd +Do Pass as Amended / Consent Calendar Executive Committee; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-01-31,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Chief House Sponsor Rep. Katie Stuart,2021-04-22,[],IL,102nd +Be Adopted Higher Education; 010-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-22,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Fine,2021-03-17,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-13,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Do Pass Insurance; 010-000-000,2021-04-15,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Adam Niemerg,2021-05-25,[],IL,102nd +Third Reading - Consent Calendar - Passed 105-001-002,2021-04-16,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-17,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2021-04-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Deanne M. Mazzochi,2022-02-24,[],IL,102nd +Third Reading - Passed; 053-000-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-03-17,[],IL,102nd +Chief House Sponsor Rep. Michael Halpin,2021-04-22,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-06,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Do Pass as Amended State Government; 009-000-000,2021-04-21,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2021-04-14,[],IL,102nd +Chief House Sponsor Rep. Greg Harris,2021-04-28,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Housing Committee; by Voice Vote,2021-03-17,['amendment-passage'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2022-02-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2021-04-06,['amendment-introduction'],IL,102nd +Co-Sponsor Rep. Jeff Keicher,2021-02-08,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-31,[],IL,102nd +Chief Sponsor Changed to Rep. Andrew S. Chesney,2021-03-10,[],IL,102nd +Removed Co-Sponsor Rep. Michelle Mussman,2021-03-26,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-03-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-16,[],IL,102nd +Do Pass as Amended / Consent Calendar Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 3 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Referred to Assignments,2021-08-26,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-16,['committee-passage'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 23, 2021",2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lakesia Collins,2021-04-08,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 018-000-000,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2021-03-01,['amendment-introduction'],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Chapin Rose,2021-04-16,['amendment-introduction'],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-03-08,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-02,[],IL,102nd +Chief House Sponsor Rep. Ryan Spain,2021-03-11,[],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-02-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-02-06,[],IL,102nd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-17,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2023-01-06,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-15,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jil Tracy,2021-03-30,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-23,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-01-18,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Chief House Sponsor Rep. Andrew S. Chesney,2021-04-22,[],IL,102nd +Chief House Sponsor Rep. Michael Halpin,2021-04-26,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2021-03-25,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2023-01-06,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2021-04-06,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-26,[],IL,102nd +Placed on Calendar Order of First Reading,2022-02-24,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-05,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-04-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-03,[],IL,102nd +Arrived in House,2021-03-11,['introduction'],IL,102nd +Chief House Sponsor Rep. Bob Morgan,2021-04-22,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-07,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2021-05-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-01,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-03-24,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 022-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-28,[],IL,102nd +Assigned to Personnel & Pensions Committee,2021-03-09,['referral-committee'],IL,102nd +Do Pass as Amended Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2021-04-28,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-04-20,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-04-12,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Do Pass as Amended Executive; 017-000-000,2021-03-17,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 018-000-000,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Referred to Rules Committee,2021-06-15,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Pensions,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2021-04-20,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-03-15,[],IL,102nd +Chief House Sponsor Rep. Amy Elik,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-05-06,[],IL,102nd +Held on Second Reading,2021-03-17,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Criminal Law,2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-02-08,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-03-11,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Economic Opportunity & Equity Committee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-10,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jacqueline Y. Collins,2021-04-14,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-03-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Chief House Sponsor Rep. David A. Welter,2021-04-27,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-29,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +"Chief House Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-22,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-06,[],IL,102nd +Postponed - Judiciary,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Postponed - Licensed Activities,2021-04-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-04-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-23,[],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-06-16,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-15,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-02-16,[],IL,102nd +Resolution Adopted,2022-04-04,['passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Criminal Law; 008-000-000,2022-02-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-17,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-01-31,[],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2022-02-08,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +Third Reading - Consideration Postponed,2022-02-24,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-03-17,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 012-000-000,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-04-04,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-22,[],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 017-002-000,2021-03-16,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2022-02-24,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-18,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-09-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-03-19,[],IL,102nd +Removed from Short Debate Status,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-16,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anthony DeLuca,2022-02-15,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Do Pass as Amended / Consent Calendar Personnel & Pensions Committee; 008-000-000,2022-02-10,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-23,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-17,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Tom Weber,2022-02-22,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-03-17,[],IL,102nd +Re-assigned to Health Care Availability & Accessibility Committee,2022-02-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Hunter,2022-03-31,['amendment-passage'],IL,102nd +Chief Sponsor Changed to Sen. Sue Rezin,2021-05-06,[],IL,102nd +Third Reading - Short Debate - Passed 095-013-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-16,[],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-19,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2022-02-15,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Melinda Bush,2021-04-16,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-02-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 071-041-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Postponed - Judiciary,2022-02-16,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-25,[],IL,102nd +"Chief House Sponsor Rep. Curtis J. Tarver, II",2022-02-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-20,[],IL,102nd +Do Pass Education; 011-003-000,2021-03-24,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +"Chief Sponsor Changed to Rep. Maurice A. West, II",2022-02-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-12-13,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-02-26,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-04-13,[],IL,102nd +Chief House Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-16,[],IL,102nd +Chief House Sponsor Rep. Kathleen Willis,2022-02-24,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 010-003-001,2022-02-16,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-11,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2022-03-01,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. LaToya Greenwood,2022-02-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Ann M. Williams,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-03-30,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-24,['amendment-passage'],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Chief House Sponsor Rep. William Davis,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-02-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-03-17,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-03-29,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Behavioral and Mental Health,2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-01-24,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-21,[],IL,102nd +Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Assigned to Appropriations,2022-01-11,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2022-02-10,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-09,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-10-13,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-03-09,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 010-006-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +Chief House Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-04-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-12-01,[],IL,102nd +Remove Chief Co-Sponsor Rep. Mary E. Flowers,2021-10-06,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-02-09,[],IL,102nd +Chief Sponsor Changed to Sen. Ann Gillespie,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-20,[],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-30,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Arrived in House,2021-04-28,['introduction'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-17,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Criminal Law,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Ugaste,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-01-28,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-03-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-10-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-05-05,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Feigenholtz,2022-02-15,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-02,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-17,[],IL,102nd +Removed Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-03-29,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-09,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2022-03-02,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-01-31,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-01-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-10,[],IL,102nd +Do Pass as Amended / Consent Calendar Health Care Licenses Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-10,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-02-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-16,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-18,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-02-16,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-04-29,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michelle Mussman,2021-04-20,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-10-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-11-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Tom Weber,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-05-06,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-25,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-10,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-10-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2022-04-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Fred Crespo,2021-04-27,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-11-15,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-05-24,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2021-04-15,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Adam Niemerg,2021-05-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-01,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-26,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-01-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2022-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-03-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Ugaste,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2022-03-01,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +Arrived in House,2022-12-01,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-11-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-18,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-07-28,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-09,[],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-02-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-14,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-12-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-01-28,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-05,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-02-05,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +To Insurance Mandates,2022-02-10,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-09-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-01-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-15,[],IL,102nd +Arrived in House,2021-10-28,['introduction'],IL,102nd +Do Pass as Amended / Short Debate Energy & Environment Committee; 025-000-001,2021-03-22,['committee-passage'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-30,[],IL,102nd +Co-Sponsor Rep. C.D. Davidsmeyer,2021-02-19,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-10,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Assigned to Veterans' Affairs Committee,2021-03-16,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-10-19,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-11-14,[],IL,102nd +Reported Back To Insurance Committee;,2021-03-22,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-07-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-11,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-11-30,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Special Issues (HS) Subcommittee,2021-03-10,[],IL,102nd +Remains in Counties & Townships Committee,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. John F. Curran,2021-05-13,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Cassidy,2021-04-20,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-01-27,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-12,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-10,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-01-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-04-05,[],IL,102nd +Do Pass Executive; 015-000-000,2021-05-06,['committee-passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2022-02-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-15,[],IL,102nd +Re-assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-29,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-28,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-02-05,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Melinda Bush,2021-04-16,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-17,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-07-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-14,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-17,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-02-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2022-02-17,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2021-04-20,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Do Pass / Consent Calendar Police & Fire Committee; 015-000-000,2021-03-25,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. William Davis,2022-02-25,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-22,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-05-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Chief House Sponsor Rep. Kelly M. Burke,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-03-11,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 012-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-02-26,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-04-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-02-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-01-31,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-07,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-04,[],IL,102nd +Recommends Do Pass Subcommittee/ State Government Administration Committee; 003-000-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-20,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 009-006-000,2022-02-02,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-24,[],IL,102nd +Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-08-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-02-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Pensions,2021-04-13,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2022-02-07,['amendment-introduction'],IL,102nd +Postponed - Behavioral and Mental Health,2021-03-16,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Tom Demmer,2021-12-21,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-05-24,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Criminal Law,2021-04-13,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended Judiciary; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-30,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-24,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-28,[],IL,102nd +Approved for Consideration Rules Committee; 003-000-000,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-03-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Higher Education Committee,2022-03-01,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety Committee; 010-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Consumer Protection Committee,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-07-07,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Chief House Sponsor Rep. Greg Harris,2021-04-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-24,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-03-10,[],IL,102nd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-03-17,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-03-02,[],IL,102nd +Added as Chief Co-Sponsor Sen. Win Stoller,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Third Reading - Consent Calendar - Passed 098-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-20,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-05,[],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 017-010-000,2022-02-01,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Remove Chief Co-Sponsor Rep. Andrew S. Chesney,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-10-13,[],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 17, 2022",2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-09,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Agriculture,2022-02-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-23,[],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2022-03-25,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ann Gillespie,2021-04-16,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Assigned to Labor,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2022-02-23,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-07-07,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Burke,2022-02-28,['amendment-introduction'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2022-02-15,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-04-23,[],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-02-22,[],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-03-02,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-09,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2022-03-01,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-22,[],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Do Pass Commerce; 011-000-000,2021-04-15,['committee-passage'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-09,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 098-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-03-09,[],IL,102nd +Assigned to Cities & Villages Committee,2021-04-06,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-21,[],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Stephanie A. Kifowit",2021-03-31,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-09,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-28,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2022-02-22,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Chief House Sponsor Rep. William Davis,2021-04-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2022-02-28,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Antonio Muñoz,2022-02-18,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Agriculture; 013-000-000,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-02-10,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2021-04-14,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-02-24,[],IL,102nd +Chief Sponsor Changed to Sen. Steve McClure,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-01-28,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-08,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of First Reading February 25, 2022",2022-02-24,['reading-1'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +State Mandates Fiscal Note Requested by Rep. Avery Bourne,2022-02-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-09,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-05-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. David A. Welter,2021-04-27,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2022-02-15,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Ethics,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2022-02-23,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-08-24,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-26,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-01-25,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2021-04-09,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Health; 013-000-000,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-28,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 100-004-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-04-13,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Do Pass / Consent Calendar Cities & Villages Committee; 013-000-000,2022-02-10,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-07,[],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-07-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2021-03-18,[],IL,102nd +Chief House Sponsor Rep. Dave Vella,2021-04-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Amy Elik,2021-04-13,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-10-14,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-21,[],IL,102nd +Third Reading - Passed; 057-001-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Frances Ann Hurley,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Agriculture,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +Chief House Sponsor Rep. Katie Stuart,2022-02-22,[],IL,102nd +Removed from Consent Calendar Status Rep. Jay Hoffman,2022-02-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +Third Reading - Short Debate - Passed 112-001-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Chief House Sponsor Rep. Lance Yednock,2021-04-27,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 015-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Resolution Adopted; 055-000-000,2022-04-09,['passage'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-03-23,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Ann M. Williams,2021-03-24,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-09,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2021-04-14,['amendment-introduction'],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2022-02-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Pensions,2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-08,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-23,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-05,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Pensions,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Chief House Sponsor Rep. Margaret Croke,2022-02-23,[],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-01-12,[],IL,102nd +Do Pass as Amended Tourism and Hospitality; 007-001-000,2021-03-05,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Human Rights,2021-04-22,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dave Syverson,2021-04-15,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-18,[],IL,102nd +Chief House Sponsor Rep. William Davis,2022-02-17,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Burke,2021-04-13,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-03-25,[],IL,102nd +"Chief House Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-17,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-23,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-17,['referral-committee'],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-05-30,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2022-02-22,[],IL,102nd +Arrived in House,2021-03-11,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2022-02-09,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Agriculture,2021-04-20,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-04-29,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Referred to Assignments,2021-05-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Chief House Sponsor Rep. Thomas Morrison,2022-02-23,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-18,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-04-12,[],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-17,[],IL,102nd +Approved for Consideration Assignments,2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 16, 2021",2021-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-03,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-24,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 22, 2021",2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-02-05,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2021-03-15,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Steve Stadelman,2021-04-16,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Healthcare Access and Availability,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Chief House Sponsor Rep. Andrew S. Chesney,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-17,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-28,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-03-16,[],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2021-03-26,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-16,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Resolution Adopted,2022-04-08,['passage'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Resolution Adopted,2021-05-31,['passage'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-10,[],IL,102nd +"Placed on Calendar Order of First Reading February 24, 2022",2022-02-23,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Pensions,2022-02-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-05-06,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-10-20,[],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-03,[],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2022-01-18,['committee-passage-favorable'],IL,102nd +Assigned to Executive,2021-10-20,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-03-22,[],IL,102nd +Chief House Sponsor Rep. Frances Ann Hurley,2021-04-22,[],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 012-000-000,2022-02-09,[],IL,102nd +3/5 Vote Required,2022-02-17,[],IL,102nd +Senate Committee Amendment No. 2 Postponed - State Government,2022-02-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2021-04-14,[],IL,102nd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-12,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-04-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Amy Elik,2021-06-16,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-28,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 102-001-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2022-02-22,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-10,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2022-02-16,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-27,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-01,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2021-04-21,[],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Remove Chief Co-Sponsor Rep. Kambium Buckner,2022-02-23,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Chief Co-Sponsor Changed to Rep. Lakesia Collins,2021-05-06,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2021-04-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Chief House Sponsor Rep. Ann M. Williams,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2021-03-05,['amendment-introduction'],IL,102nd +Do Pass as Amended Health; 010-002-000,2021-04-14,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +Do Pass / Short Debate Appropriations-General Services Committee; 014-000-000,2022-03-09,['committee-passage'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Chief House Sponsor Rep. Kelly M. Burke,2021-04-26,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2022-02-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-16,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Human Services Committee,2021-03-23,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 098-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-22,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-22,[],IL,102nd +Do Pass State Government; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-28,[],IL,102nd +Chief House Sponsor Rep. Daniel Didech,2022-02-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-05-24,[],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2022-02-09,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-01-31,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-09,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-19,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-17,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-15,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-30,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-16,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-11,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-23,[],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2021-03-11,[],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-19,[],IL,102nd +Third Reading - Passed; 039-007-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-04,[],IL,102nd +Placed on Calendar Order of First Reading,2022-02-24,['reading-1'],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-05,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-01,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Joe Sosnowski,2021-04-19,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-01-07,[],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-08,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 012-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-10,[],IL,102nd +Chief House Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-23,[],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-02-28,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Re-assigned to Health,2022-01-05,['referral-committee'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 015-010-000,2022-02-01,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2022-03-10,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2021-04-13,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-03-31,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Veterans' Affairs Committee,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-05-30,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 111-005-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-03-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-22,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. David Koehler,2022-02-18,['amendment-introduction'],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-07-29,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Reported Back To Health; 005-000-000,2021-04-06,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Police & Fire Committee,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-02-08,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-11-14,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-05,[],IL,102nd +Do Pass as Amended Human Rights; 007-000-000,2021-04-15,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-04-14,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-09,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Chief House Sponsor Rep. Theresa Mah,2022-02-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2023-01-05,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2021-04-13,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Ethics & Elections Committee,2022-02-15,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Assigned to Veterans' Affairs Committee,2021-04-06,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-04,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Do Pass as Amended Local Government; 007-001-000,2022-02-09,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Removed Co-Sponsor Rep. Lindsey LaPointe,2021-03-17,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-01-25,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-31,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-03-22,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-26,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2021-03-25,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-01-19,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-02,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2022-03-02,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-03-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-11-30,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-01-18,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-03-03,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-21,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-09,['amendment-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-16,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-04-04,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-22,[],IL,102nd +"Placed on Calendar Order of First Reading February 25, 2022",2022-02-24,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Do Pass as Amended / Short Debate Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-24,['committee-passage'],IL,102nd +Reported Back To Health; 005-000-000,2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-01-21,[],IL,102nd +Reported Back To Revenue & Finance Committee;,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-04-04,[],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Small Business,Tech Innovation, and Entrepreneurship Committee",2022-03-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2022-02-22,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-05,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2021-03-29,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Fred Crespo,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-08-09,[],IL,102nd +Chief House Sponsor Rep. La Shawn K. Ford,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2021-04-07,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Chief House Sponsor Rep. Sonya M. Harper,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2022-02-16,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Michael Kelly,2022-03-09,[],IL,102nd +Third Reading - Consent Calendar - Passed 098-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-02-22,[],IL,102nd +Third Reading - Short Debate - Passed 070-045-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-04-12,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 011-007-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-26,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2022-02-15,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-07-07,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +Be Adopted Executive; 012-003-000,2021-05-19,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Adopted in Cities & Villages Committee; by Voice Vote,2021-04-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-01-18,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-03-10,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-02-04,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Mark Batinick,2022-02-17,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-29,[],IL,102nd +Postponed - Behavioral and Mental Health,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-15,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-15,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dan Ugaste,2021-04-20,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-01-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-25,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended / Short Debate Insurance Committee; 014-005-000,2021-03-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-10,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Thaddeus Jones,2021-04-20,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Crowe,2021-04-21,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Connor,2021-04-21,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +House Committee Amendment No. 1 Adopted in Economic Opportunity & Equity Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-02-25,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Re-assigned to Health Care Licenses Committee,2021-04-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-05-20,[],IL,102nd +Do Pass Licensed Activities; 009-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Suspend Rule 21 - Prevailed,2022-02-16,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Postponed - Health,2021-03-16,[],IL,102nd +Third Reading - Short Debate - Passed 070-043-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Delia C. Ramirez,2021-04-22,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +Third Reading - Consent Calendar - Passed 098-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-02-14,[],IL,102nd +Chief House Sponsor Rep. Brad Halbrook,2021-04-26,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2022-02-18,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Fiscal Note Requested as Amended by Rep. Deanne M. Mazzochi,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-04-22,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2021-03-22,[],IL,102nd +Chief House Sponsor Rep. Barbara Hernandez,2021-05-03,[],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-02-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2023-01-06,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-11-15,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Financial Institutions,2021-04-07,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 22, 2021",2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-General Services Committee,2022-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-04-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-13,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-02-03,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Do Pass as Amended Criminal Law; 010-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-07-06,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-24,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-04-07,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-03-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Chief House Sponsor Rep. Martin J. Moylan,2021-04-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-09,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-10-20,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-03,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-23,['amendment-failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kathleen Willis,2021-04-19,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sue Scherer,2021-03-23,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-25,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-30,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Do Pass Judiciary; 006-002-000,2022-02-16,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Arrived in House,2021-03-11,['introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. Janet Yang Rohr,2021-04-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2021-03-24,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Chief House Sponsor Rep. Daniel Didech,2021-04-27,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-10-26,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-21,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-03-29,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-01-12,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-03-24,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2021-04-08,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2021-04-14,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-17,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Maura Hirschauer,2021-04-08,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-26,[],IL,102nd +Third Reading - Short Debate - Passed 106-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-03-17,[],IL,102nd +Do Pass as Amended State Government; 005-003-000,2022-02-17,['committee-passage'],IL,102nd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2021-04-26,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-21,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-14,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Financial Institutions,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Do Pass / Short Debate Appropriations-Elementary & Secondary Education Committee; 016-000-000,2022-03-02,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-01-13,[],IL,102nd +Chief Sponsor Changed to Rep. Thaddeus Jones,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-01,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-02-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-25,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Criminal Law,2021-04-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2022-03-02,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2022-02-15,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-01-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Environment and Conservation,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-01-26,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-05-24,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. William Davis,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-31,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-15,[],IL,102nd +Third Reading - Short Debate - Passed 105-005-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 21, 2021",2021-04-20,[],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2021-04-26,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-14,[],IL,102nd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2022-01-05,['referral-committee'],IL,102nd +First Reading,2021-12-15,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-02,[],IL,102nd +House Committee Amendment No. 1 Adopted in Agriculture & Conservation Committee; by Voice Vote,2022-02-10,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-04-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-29,[],IL,102nd +Chief House Sponsor Rep. Sonya M. Harper,2021-04-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-02-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-01-19,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2021-04-13,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-03,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2022-03-02,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2021-04-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-12,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-01-07,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-03-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-10,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2021-04-16,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Judiciary,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. Andrew S. Chesney,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-03-15,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Appropriations-Human Services Committee,2021-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-08,[],IL,102nd +Removed from Consent Calendar Status Rep. C.D. Davidsmeyer,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-01,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Environment and Conservation,2021-05-06,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-03-02,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Re-assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Re-referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Napoleon Harris, III",2021-04-16,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-03-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2022-03-01,['amendment-introduction'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-12-02,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-06,[],IL,102nd +Arrive in Senate,2022-04-07,['introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-10-06,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Public Utilities Committee; 025-000-000,2021-04-16,['committee-passage-favorable'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Remove Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-01-07,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-12,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +Re-assigned to Criminal Law,2022-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-11-14,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Criminal Law,2021-04-07,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Stephanie A. Kifowit,2021-04-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-23,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Assigned to Criminal Law,2022-01-26,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-02-18,[],IL,102nd +Resolution Adopted; 041-008-000,2022-03-23,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2021-03-22,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2021-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-05,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-01-12,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-03-07,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 21, 2021",2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-10,[],IL,102nd +To Appropriations- Human Services,2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-01-25,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-04-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-02-17,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-16,[],IL,102nd +Approved for Consideration Assignments,2021-04-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Veterans' Affairs Committee; 005-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-05-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-03-10,[],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-04-05,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Resolution Adopted 104-000-000,2022-04-03,['passage'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-04-08,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Rita Mayfield,2021-03-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-04-07,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 31, 2021",2021-05-30,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-04-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-05-28,[],IL,102nd +Do Pass as Amended / Consent Calendar Mental Health & Addiction Committee; 016-000-000,2021-03-26,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-02-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Charles Meier,2022-04-05,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-04-08,[],IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-03-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2022-02-17,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2021-03-11,[],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2021-05-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Agriculture,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-19,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Chief House Sponsor Rep. Sonya M. Harper,2021-04-22,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Resolution Adopted 110-000-000,2021-05-29,['passage'],IL,102nd +Resolution Adopted,2021-05-31,['passage'],IL,102nd +Third Reading - Passed; 056-002-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 031-017-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Win Stoller,2021-04-05,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura Ellman,2021-04-09,['amendment-introduction'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2021-03-15,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. Kelly M. Burke,2021-04-26,[],IL,102nd +Third Reading - Passed; 040-015-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-10-20,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Chief House Sponsor Rep. Bob Morgan,2021-04-08,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-15,[],IL,102nd +Do Pass as Amended Labor; 018-000-000,2021-03-17,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Thaddeus Jones,2021-04-20,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added Co-Sponsor All Other Members of the House,2021-05-12,[],IL,102nd +Chief House Sponsor Rep. Amy Elik,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-05-04,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2022-02-22,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +"Chief House Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2022-03-01,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-23,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Resolution Adopted as Amended,2021-06-01,['passage'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-15,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-10,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-24,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2021-04-21,[],IL,102nd +Chief House Sponsor Rep. Katie Stuart,2021-04-22,[],IL,102nd +Do Pass as Amended State Government; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-15,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-02,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-10-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-04-19,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Arrive in Senate,2021-05-13,['introduction'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-04-20,[],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 006-000-000,2021-03-01,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Thomas M. Bennett,2022-02-03,['amendment-introduction'],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-02-10,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-05-29,[],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-31,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-09,[],IL,102nd +Removed Co-Sponsor Rep. Janet Yang Rohr,2021-03-09,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-04-07,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2022-04-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-02-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 016-009-000,2021-03-24,['committee-passage'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Judiciary,2021-04-13,[],IL,102nd +Removed Co-Sponsor Rep. Mark Batinick,2022-02-22,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-25,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-03-22,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Rep. Kambium Buckner,2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-01-25,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2021-04-20,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-02-25,[],IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-05-25,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Chief House Sponsor Rep. Justin Slaughter,2021-04-28,[],IL,102nd +Chief House Sponsor Rep. Justin Slaughter,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-10-28,[],IL,102nd +Do Pass as Amended Criminal Law; 010-000-000,2021-04-14,['committee-passage'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-04-20,[],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2021-04-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-04-22,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended Licensed Activities; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Veterans' Affairs Committee,2021-04-20,[],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-17,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2021-03-25,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-10,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-10-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-12,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Cyril Nichols,2022-02-23,[],IL,102nd +Chief House Sponsor Rep. David A. Welter,2021-04-27,[],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-17,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Third Reading - Passed; 039-017-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2022-03-01,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-02-05,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-03-23,[],IL,102nd +Resolution Adopted 109-000-000,2021-05-21,['passage'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-14,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Agriculture,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-17,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Adoption & Child Welfare Committee; 007-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-04-20,[],IL,102nd +Chief Sponsor Changed to Rep. Anna Moeller,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-05-05,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-04-09,[],IL,102nd +Postponed - Agriculture,2021-03-25,[],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-04-09,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Chief House Sponsor Rep. Deanne M. Mazzochi,2021-04-26,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-04-08,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-02-26,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2021-04-13,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-22,[],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-31,[],IL,102nd +Do Pass as Amended Health; 013-000-000,2021-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-10,[],IL,102nd +Do Pass as Amended Education; 011-000-000,2022-02-09,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-10,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2022-02-24,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-14,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +"Removed from Consent Calendar Status Rep. Lamont J. Robinson, Jr.",2022-02-25,[],IL,102nd +Approved for Consideration Assignments,2022-03-08,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. Kelly M. Cassidy,2022-02-17,[],IL,102nd +Chief House Sponsor Rep. Katie Stuart,2022-02-16,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-03,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-21,[],IL,102nd +Third Reading - Passed; 055-001-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Second Reading - Short Debate,2022-03-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Ann M. Williams,2022-02-17,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-02-18,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-24,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2022-02-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Do Pass as Amended / Short Debate Housing Committee; 014-008-000,2021-03-24,['committee-passage'],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-05-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-04-07,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Resolution Adopted,2022-04-04,['passage'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-25,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-01-26,[],IL,102nd +Sponsor Removed Sen. John Connor,2022-02-16,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Tim Ozinga,2022-03-01,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-01-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-03-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Linda Holmes,2021-03-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-02-26,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-02-14,[],IL,102nd +Land Conveyance Appraisal Note Requested by Rep. Sonya M. Harper,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2022-02-16,[],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-01,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2022-03-01,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-28,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass as Amended Revenue; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-10-28,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-14,[],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-16,[],IL,102nd +Resolution Adopted,2022-03-31,['passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-01-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Chief House Sponsor Rep. Robyn Gabel,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-02,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Curtis J. Tarver, II",2021-04-16,['amendment-introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2021-03-11,['amendment-introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-02-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-11,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-24,[],IL,102nd +Do Pass as Amended Energy and Public Utilities; 019-000-000,2022-02-10,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2021-04-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2022-02-18,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-02-26,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-01,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Deb Conroy,2022-02-23,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Greg Harris,2022-03-01,['amendment-introduction'],IL,102nd +House Committee Amendment No. 3 Filed with Clerk by Rep. Janet Yang Rohr,2022-02-15,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-12-05,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-02-14,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-04-15,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2022-02-22,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Do Pass as Amended Local Government; 006-001-000,2021-04-14,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2021-03-18,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-11-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. Martin J. Moylan,2021-04-22,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-18,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-04-01,[],IL,102nd +Chief House Sponsor Rep. Jay Hoffman,2022-02-16,[],IL,102nd +Do Pass as Amended Energy and Public Utilities; 018-000-000,2021-04-15,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-08-31,[],IL,102nd +Removed Co-Sponsor Rep. Adam Niemerg,2021-03-05,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-03-25,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-12-07,[],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2022-02-28,['amendment-introduction'],IL,102nd +Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-10,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-05-21,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-16,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Chief House Sponsor Rep. Lamont J. Robinson, Jr.",2022-02-18,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2022-04-07,[],IL,102nd +Re-assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2022-02-16,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-01-26,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-03-29,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Chief House Sponsor Rep. Frances Ann Hurley,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Chief Sponsor Changed to Rep. La Shawn K. Ford,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-05-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-04-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-09-21,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-13,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Re-assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Waive Posting Notice,2022-02-08,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Second Reading,2022-11-30,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Appropriations-General Services Committee,2021-04-20,[],IL,102nd +Approved for Consideration Assignments,2021-04-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-08-31,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-12,[],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-04-07,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2022-02-09,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Revenue & Finance Committee,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-14,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-01-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-05-24,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Postponed - Licensed Activities,2021-04-15,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-04,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-08,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-29,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-04-16,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-05-20,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-01-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-02-06,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-01-28,[],IL,102nd +Fiscal Note Filed,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-16,[],IL,102nd +Reported Back To Revenue & Finance Committee;,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 104-001-002,2022-02-24,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-10-01,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-03-02,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Dan Ugaste,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-03-10,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Debbie Meyers-Martin,2021-03-09,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-01-21,[],IL,102nd +To Income Tax Subcommittee,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-02-23,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-04-06,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-05-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-08-26,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-02-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-02-11,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-30,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading October 28, 2021",2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-01-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Jason Plummer,2021-04-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Michael J. Zalewski,2022-04-05,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-04-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Agriculture,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-03,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Sponsor Removed Sen. Suzy Glowiak Hilton,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-01-14,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-04-06,[],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-10-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-22,[],IL,102nd +Arrive in Senate,2022-11-30,['introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-02-24,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-04-06,['referral-committee'],IL,102nd +Assigned to Insurance,2021-03-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2022-02-01,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-11-16,[],IL,102nd +To Property Tax Subcommittee,2022-01-27,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-08-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-01-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-15,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Tom Demmer,2022-01-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-18,[],IL,102nd +Chief Sponsor Changed to Sen. Terri Bryant,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-01-18,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-01-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-04-06,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-10,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Appropriations-Public Safety Committee,2022-03-01,[],IL,102nd +To Property Tax Subcommittee,2022-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-10,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Bush,2021-04-21,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-03-07,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed from Consent Calendar Status Rep. Kambium Buckner,2021-03-26,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-15,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-28,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-15,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-17,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2022-02-28,['amendment-introduction'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-12-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-14,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2021-04-21,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-24,[],IL,102nd +Placed on Calendar Order of First Reading,2022-02-24,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Do Pass / Consent Calendar Immigration & Human Rights Committee; 008-000-000,2021-03-03,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 To Appropriations- Health,2021-04-07,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Prescription Drug Affordability & Accessibility Committee,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-04-07,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-01-18,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 025-000-000,2021-03-24,['committee-passage'],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-04-08,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-05-27,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Chief House Sponsor Rep. Sonya M. Harper,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-21,[],IL,102nd +Chief House Sponsor Rep. Denyse Wang Stoneback,2021-05-03,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 014-000-000,2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2021-03-25,['committee-passage'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-06-14,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +Resolution Adopted,2022-04-05,['passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Appropriations,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2021-04-13,[],IL,102nd +Referred to Rules Committee,2021-06-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-04-21,[],IL,102nd +Chief House Sponsor Rep. Sonya M. Harper,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-08,[],IL,102nd +Do Pass Health; 015-000-000,2021-04-14,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Postponed - State Government,2021-03-17,[],IL,102nd +Chief House Sponsor Rep. Greg Harris,2021-04-28,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Chief House Sponsor Rep. Dan Brady,2021-04-26,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-03-22,[],IL,102nd +Chief House Sponsor Rep. Jay Hoffman,2021-03-11,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 020-000-000,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Adopted in Personnel & Pensions Committee; by Voice Vote,2022-02-17,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Frances Ann Hurley,2021-04-13,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-15,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-24,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-15,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Chief House Sponsor Rep. Martin J. Moylan,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-11,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lance Yednock,2021-04-13,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-16,[],IL,102nd +Do Pass as Amended / Consent Calendar State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Placed on Calendar Order of First Reading,2022-02-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-22,[],IL,102nd +Approved for Consideration Assignments,2022-03-28,[],IL,102nd +Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-06-08,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-02-14,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-02,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-02-15,[],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Emil Jones, III",2021-04-20,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-03-30,[],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2022-03-23,[],IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2022-02-22,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +To Appropriations- Government Infrastructure,2021-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +To Appropriations- Higher Education,2022-01-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-09-22,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-01-07,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-13,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Adoption & Child Welfare Committee,2022-03-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to State Government,2021-04-20,[],IL,102nd +Re-assigned to Housing Committee,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Senate Committee Amendment No. 1 To Appropriations- Human Services,2022-02-09,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-08-29,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-01-13,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Charles Meier,2022-03-01,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-04-14,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-02-10,[],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-08,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-01-31,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-02-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. C.D. Davidsmeyer,2022-03-03,[],IL,102nd +Approved for Consideration Assignments,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2021-04-13,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Behavioral and Mental Health,2022-02-07,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-14,[],IL,102nd +Approved for Consideration Assignments,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-07,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2022-02-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Financial Institutions,2021-04-20,[],IL,102nd +Postponed - Education,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-10-05,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-12-07,[],IL,102nd +Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +Assigned to Executive Committee,2022-01-25,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-15,[],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-09-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-09-30,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Chief Sponsor Changed to Sen. Terri Bryant,2021-05-18,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-17,[],IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Removed Co-Sponsor Rep. Jonathan Carroll,2021-02-26,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-09,[],IL,102nd +Chief House Sponsor Rep. Steven Reick,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-03-16,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee;,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-02,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-09-01,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2021-04-06,[],IL,102nd +"Removed Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-02,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-14,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Judiciary,2021-04-13,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Assigned to Police & Fire Committee,2021-04-06,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-03-02,[],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-04-21,[],IL,102nd +Do Pass Higher Education; 012-000-000,2022-02-09,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-06-16,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-10,[],IL,102nd +Second Reading - Short Debate,2022-03-10,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Dave Syverson,2022-02-16,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Thomas Cullerton,2021-04-09,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2021-04-20,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Re-assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Do Pass / Short Debate Human Services Committee; 009-005-000,2021-03-23,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-04-04,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-05-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-02-17,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-15,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Scott M. Bennett,2022-03-30,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Chief House Sponsor Rep. Fred Crespo,2021-04-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-11-04,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Maurice A. West, II",2022-02-24,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. John F. Curran,2022-01-20,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-03-21,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-16,[],IL,102nd +Postponed - Local Government,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-08,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Andrew S. Chesney,2021-04-14,[],IL,102nd +Chief Sponsor Changed to Sen. Julie A. Morrison,2022-11-30,[],IL,102nd +Senate Committee Amendment No. 1 To Appropriations- Health,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-24,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-05-12,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Removed from Consent Calendar Status Rep. Maurice A. West, II",2021-04-01,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2022-02-14,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-02-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-02-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-14,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2022-04-04,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-06-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-14,[],IL,102nd +Chief Sponsor Changed to Sen. Antonio Muñoz,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2022-03-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2021-04-21,[],IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-01-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-22,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-12-10,[],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Higher Education Committee,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2021-04-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. John Connor,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-02-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-03-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-10,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-01-25,[],IL,102nd +Chief Sponsor Changed to Sen. Melinda Bush,2021-04-14,[],IL,102nd +Chief Sponsor Changed to Sen. Ram Villivalam,2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-12-02,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Recalled to Second Reading - Short Debate,2022-03-03,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-02-15,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2021-04-13,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Daniel Didech,2022-02-09,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-01,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-09-26,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Mike Simmons,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-01-19,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-10,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-03-30,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-08-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2021-03-11,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Behavioral and Mental Health,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Sally J. Turner,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Darren Bailey,2021-05-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-03-02,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-02-26,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-12,[],IL,102nd +Chief Sponsor Changed to Sen. Celina Villanueva,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +"Chief Sponsor Changed to Rep. Maurice A. West, II",2022-02-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Police & Fire Committee,2021-04-06,[],IL,102nd +Postponed - Judiciary,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Chief Sponsor Changed to Rep. Eva-Dina Delgado,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2022-02-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2022-02-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-10-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Linda Holmes,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +First Reading,2021-03-11,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-02-18,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-03-03,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Antonio Muñoz,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. John F. Curran,2022-02-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-03-30,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-03-02,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Chief Sponsor Changed to Sen. Sue Rezin,2022-02-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-03-23,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-16,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2022-02-23,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +To Special Issues (HS) Subcommittee,2021-03-10,[],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Criminal Law,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-09-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-01-27,[],IL,102nd +Chief House Sponsor Rep. David A. Welter,2021-04-27,[],IL,102nd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2022-02-17,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-15,[],IL,102nd +Chief Sponsor Changed to Sen. Doris Turner,2021-04-22,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-01-11,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-01-18,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-01-11,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-04,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-01-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2021-04-19,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-05-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Do Pass as Amended Transportation; 020-000-000,2021-04-20,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading December 1, 2022",2022-11-30,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 016-007-000,2021-03-24,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robert Rita,2021-04-20,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2022-02-15,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Sen. Michael E. Hastings,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 29, 2021",2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-08-31,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-09-30,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-02-24,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Fred Crespo,2022-03-01,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-08,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. John Connor,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-25,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Licensed Activities,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-03,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2022-02-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2022-03-01,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-26,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-05-14,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-03-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-02-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-16,['amendment-failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-15,[],IL,102nd +"Final Action Deadline Extended-9(b) May 28, 2021",2021-05-24,[],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-04-14,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2021-04-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Waive Posting Notice,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2021-10-28,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-17,[],IL,102nd +"Placed on Calendar - Consideration Postponed April 22, 2021",2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-01-04,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-03-24,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-01-21,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-02-11,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Chief Sponsor Changed to Rep. LaToya Greenwood,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-11-01,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-08-26,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-11,[],IL,102nd +Do Pass Health; 014-000-000,2022-02-16,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-10,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-14,[],IL,102nd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2021-03-25,['amendment-passage'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +"Final Action Deadline Extended-9(b) May 28, 2021",2021-05-24,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-06-01,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-03-09,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2022-11-30,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2022-02-17,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-10-19,[],IL,102nd +Third Reading - Short Debate - Passed 101-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-06,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-22,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-10,[],IL,102nd +Chief Sponsor Changed to Sen. Laura M. Murphy,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Chief Sponsor Changed to Sen. Antonio Muñoz,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-03-03,[],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Sponsor Removed Sen. Rachelle Crowe,2021-05-31,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-08-10,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-04-08,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-15,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-10-01,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Cunningham,2022-02-22,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-11-16,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-26,[],IL,102nd +"Final Action Deadline Extended-9(b) May 28, 2021",2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-09,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 008-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 005-001-001,2022-03-02,['committee-passage-favorable'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Chief House Sponsor Rep. Ann M. Williams,2021-04-28,[],IL,102nd +Chief Sponsor Changed to Sen. Mike Simmons,2021-04-09,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-08-09,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Local Government,2022-02-08,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-10-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2022-02-14,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-03-08,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-01-14,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2021-10-01,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-10,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-005-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Bob Morgan,2021-04-22,[],IL,102nd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-22,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-03,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2022-02-28,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. Lance Yednock,2021-04-22,[],IL,102nd +Chief House Sponsor Rep. Sonya M. Harper,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Chief House Sponsor Rep. Natalie A. Manley,2021-04-22,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Bradley Stephens,2022-02-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Resolution Adopted 086-024-004,2022-04-09,['passage'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-17,[],IL,102nd +Chief Senate Sponsor Sen. Dale Fowler,2021-04-23,[],IL,102nd +Do Pass Human Rights; 009-000-000,2021-03-25,['committee-passage'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2021-04-20,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dave Vella,2022-02-24,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2022-03-02,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 22, 2021",2021-04-21,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Jacqueline Y. Collins,2021-04-06,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2021-03-24,['amendment-introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Resolution Adopted,2022-02-25,['passage'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-01,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2022-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 009-000-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Katie Stuart,2021-04-26,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2022-02-23,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-04-08,[],IL,102nd +Resolution Adopted; 042-000-000,2022-04-09,['passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-17,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-04-06,['referral-committee'],IL,102nd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Linda Holmes,2021-03-29,['amendment-introduction'],IL,102nd +Arrive in Senate,2021-05-26,['introduction'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dan McConchie,2022-04-09,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-22,[],IL,102nd +Resolution Adopted; 056-000-000,2022-04-09,['passage'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mike Simmons,2022-02-14,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-04-06,[],IL,102nd +Arrive in Senate,2022-03-28,['introduction'],IL,102nd +Resolution Adopted; 056-000-000,2022-04-09,['passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-02-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-02-26,[],IL,102nd +Do Pass as Amended Local Government; 007-000-000,2021-04-20,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-31,[],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Arrive in Senate,2022-04-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-26,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2021-04-14,['amendment-introduction'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-05-28,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lakesia Collins,2022-02-23,['amendment-introduction'],IL,102nd +First Reading,2021-04-13,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Rachelle Crowe,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-04-08,[],IL,102nd +Chief Sponsor Changed to Sen. Antonio Muñoz,2021-04-21,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-10-28,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-10,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-10,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2022-03-01,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2022-02-24,[],IL,102nd +Chief House Sponsor Rep. Amy Elik,2021-04-22,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-05-25,[],IL,102nd +Do Pass / Consent Calendar Police & Fire Committee; 015-000-000,2021-03-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-10-28,[],IL,102nd +Chief House Sponsor Rep. Stephanie A. Kifowit,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-23,[],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-16,['amendment-passage'],IL,102nd +Chief House Sponsor Rep. Jay Hoffman,2021-04-26,[],IL,102nd +House Committee Amendment No. 1 Adopted in Mental Health & Addiction Committee; by Voice Vote,2021-03-26,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Agriculture; 012-000-000,2021-04-22,[],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-05,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2021-03-19,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-01,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Recommends Be Adopted - Consent Calendar Agriculture & Conservation Committee; 008-000-000,2021-03-22,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-15,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-03,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Veterans' Affairs Committee; 006-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-26,['amendment-failure'],IL,102nd +Chief Sponsor Changed to Sen. Linda Holmes,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Consumer Protection Committee; 006-000-000,2021-03-15,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-12,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Assigned to Public Utilities Committee,2021-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2021-04-16,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-23,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-03-19,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-04-15,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Do Pass as Amended State Government; 009-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-02-05,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Commerce; 008-000-000,2021-04-22,[],IL,102nd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Chief Sponsor Changed to Sen. Rachelle Crowe,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Will Guzzardi,2021-04-13,[],IL,102nd +Removed Co-Sponsor Rep. Anna Moeller,2021-03-10,[],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Arrive in Senate,2021-05-13,['introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Arrive in Senate,2021-05-29,['introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Higher Education Committee; by Voice Vote,2022-04-07,['amendment-passage'],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-08,[],IL,102nd +Resolution Adopted; 054-000-000,2021-06-01,['passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Maura Hirschauer,2021-04-13,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-31,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2021-04-06,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Patrick J. Joyce,2021-04-01,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-09,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 23, 2021",2021-03-17,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-21,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2022-03-01,['amendment-introduction'],IL,102nd +Do Pass as Amended Criminal Law; 007-003-000,2021-04-14,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-06,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 116-001-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Health; 011-000-000,2021-04-20,[],IL,102nd +Chief Sponsor Changed to Sen. Doris Turner,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Chris Bos,2021-05-18,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2021-04-08,['amendment-introduction'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-22,[],IL,102nd +Chief Sponsor Changed to Sen. Michael E. Hastings,2021-04-20,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-03-18,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-21,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-04-15,[],IL,102nd +"Chief House Sponsor Rep. Curtis J. Tarver, II",2021-04-22,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-01,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-01-25,[],IL,102nd +Do Pass as Amended Health; 013-000-000,2021-04-14,['committee-passage'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-04-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Criminal Law,2021-04-20,[],IL,102nd +Chief Sponsor Changed to Sen. Julie A. Morrison,2021-04-13,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-28,[],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Michael Halpin,2022-02-28,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-04,['amendment-failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-16,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2022-02-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-04,[],IL,102nd +Chief Sponsor Changed to Sen. Laura Fine,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-16,[],IL,102nd +To Special Issues (INS) Subcommittee,2021-03-09,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 006-002-000,2021-03-24,[],IL,102nd +Re-assigned to Appropriations-Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-26,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-01-12,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-04-14,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Chief Sponsor Changed to Sen. David Koehler,2021-04-09,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Keith R. Wheeler,2022-03-28,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-16,['amendment-failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Sara Feigenholtz,2022-02-18,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 9, 2022",2022-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Laura M. Murphy,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Appropriations-Human Services Committee; by Voice Vote,2022-03-24,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-04-06,[],IL,102nd +Do Pass as Amended Health; 015-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-01-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +First Reading,2022-02-22,['reading-1'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Appropriations,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-04-16,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-02-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-02-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-11-14,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-03-09,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michael Kelly,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-01-22,[],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-000",2022-02-23,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-05,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-14,[],IL,102nd +Racial Impact Note Requested by Rep. Sonya M. Harper,2022-02-17,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-01,[],IL,102nd +Chief House Sponsor Rep. Stephanie A. Kifowit,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-03-03,[],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-12-05,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 008-000-000,2022-02-23,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-08-31,[],IL,102nd +Remove Chief Co-Sponsor Rep. Joyce Mason,2021-12-07,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Do Pass as Amended / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-001",2022-02-16,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2022-02-28,['amendment-introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-02,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-25,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-17,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 010-000-000,2021-04-21,[],IL,102nd +Removed Co-Sponsor Rep. Lindsey LaPointe,2021-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Criminal Law,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 014-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Financial Institutions; 007-000-000,2022-02-23,[],IL,102nd +Do Pass / Short Debate Counties & Townships Committee; 009-002-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +House Committee Amendment No. 3 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-03-23,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-02-16,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Arrive in Senate,2022-03-28,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +"Final Action Deadline Extended-9(b) May 28, 2021",2021-05-24,[],IL,102nd +To Income Tax Subcommittee,2022-02-03,[],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-02,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-15,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-002,2021-04-20,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-03-09,[],IL,102nd +Do Pass as Amended Education; 012-000-000,2022-02-09,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-11,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2022-02-18,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-10,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-02-23,[],IL,102nd +Third Reading - Short Debate - Passed 072-036-000,2022-03-01,"['passage', 'reading-3']",IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 022-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Chief Sponsor Changed to Sen. Doris Turner,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-02,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert F. Martwick,2022-02-15,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Removed from Consent Calendar Status Rep. Angelica Guerrero-Cuellar,2022-03-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2021-04-21,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-02-26,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anthony DeLuca,2022-03-28,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-18,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-16,[],IL,102nd +Re-assigned to Licensed Activities,2021-04-20,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 092-013-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Veterans' Affairs Committee; 006-000-000,2021-04-16,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-04-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 015-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-05-07,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Celina Villanueva,2022-02-17,['amendment-introduction'],IL,102nd +First Reading,2022-02-17,['reading-1'],IL,102nd +Chief House Sponsor Rep. Lance Yednock,2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2021-03-12,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2021-03-24,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 007-000-000,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2022-02-22,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-04-12,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-10,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Mike Simmons,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-01,[],IL,102nd +Arrive in Senate,2021-05-06,['introduction'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-10-06,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-03-05,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Cities & Villages Committee; 007-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-13,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 22, 2021",2021-04-21,[],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2021-04-14,[],IL,102nd +Chief Senate Sponsor Sen. David Koehler,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Anderson,2021-04-20,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-21,[],IL,102nd +Chief Sponsor Changed to Sen. Ram Villivalam,2021-04-20,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Postponed - State Government,2021-03-17,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +First Reading,2021-03-11,['reading-1'],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2021-04-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Greg Harris,2021-05-27,[],IL,102nd +Chief Senate Sponsor Sen. Omar Aquino,2021-04-22,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Adoption & Child Welfare Committee; 008-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 To Appropriations- Higher Education,2021-04-20,[],IL,102nd +Chief Sponsor Changed to Sen. Patricia Van Pelt,2021-04-14,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-20,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Recommends Be Adopted Rules Committee; 003-002-000,2021-06-16,['committee-passage-favorable'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-08,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Brian W. Stewart,2021-04-22,[],IL,102nd +Do Pass as Amended / Consent Calendar Personnel & Pensions Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-06-14,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2021-04-22,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2021-03-17,['amendment-introduction'],IL,102nd +"Removed Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-12,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Harris,2021-04-22,['amendment-passage'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 012-007-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-07,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-01,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-02-03,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 015-010-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Do Pass as Amended / Consent Calendar Insurance Committee; 016-000-000,2022-02-15,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-08-30,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2021-12-21,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-09,['amendment-failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-02-24,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Appropriations-Human Services Committee,2022-02-24,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Tim Butler,2021-03-25,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Sen. Melinda Bush,2021-04-13,[],IL,102nd +Assigned to Energy and Public Utilities,2021-03-09,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Natalie A. Manley",2022-01-28,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-24,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Bob Morgan,2022-02-14,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-08,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-10,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. C.D. Davidsmeyer,2021-05-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Marcus C. Evans, Jr.",2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-15,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Adriane Johnson,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Executive,2022-03-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading,2021-03-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-12-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-02-24,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-03-26,[],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-04,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-28,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-03-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Charles Meier,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 007-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-02,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2021-03-10,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Rachelle Crowe,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Removed from Consent Calendar Status Rep. Lindsey LaPointe,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Chief House Sponsor Rep. Blaine Wilhour,2021-04-22,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Terri Bryant,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-02,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-11-04,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Cities & Villages Committee,2021-04-06,[],IL,102nd +House Committee Amendment No. 1 Adopted in Consumer Protection Committee; by Voice Vote,2021-03-22,['amendment-passage'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-25,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-03-10,['amendment-introduction'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2022-02-25,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-07-07,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) May 28, 2021",2021-05-24,[],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-03-03,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-02-02,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2022-02-09,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-05,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-04-01,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2021-04-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-19,[],IL,102nd +Postponed - Labor,2021-03-17,[],IL,102nd +Chief Sponsor Changed to Sen. Rachelle Crowe,2021-04-13,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-02-23,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-25,['reading-3'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-02-09,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2022-02-08,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 018-011-000,2022-03-03,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John F. Curran,2022-02-25,[],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-05-05,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Munoz,2021-04-22,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-03-02,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 29, 2022",2022-03-28,[],IL,102nd +Chief Sponsor Changed to Sen. Jacqueline Y. Collins,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-08-24,[],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-08,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2021-04-21,[],IL,102nd +Reported Back To State Government Administration Committee;,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-02-25,[],IL,102nd +Fiscal Note Filed,2022-02-25,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-04-20,[],IL,102nd +Chief Sponsor Changed to Sen. Julie A. Morrison,2022-02-23,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Mark L. Walker,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-10-28,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2021-03-17,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-10,[],IL,102nd +Chief Sponsor Changed to Sen. Ann Gillespie,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-17,[],IL,102nd +Do Pass as Amended Pensions; 009-000-000,2022-02-09,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-07-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2021-03-02,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Judiciary,2022-02-15,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-02-19,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-01-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 007-000-000,2022-02-23,['committee-passage-favorable'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-01,[],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-04-22,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-02-23,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-07-08,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-10-06,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-02-02,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-10,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Health,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Chief Sponsor Changed to Sen. Ann Gillespie,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-03-16,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-04-07,[],IL,102nd +Removed Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-05-12,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-02-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-26,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-03-03,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-03,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-12-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-02-14,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 009-000-000,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 012-007-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-02-22,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-03,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-03,[],IL,102nd +Fiscal Note Filed,2021-03-12,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-23,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Removed from Consent Calendar Status Rep. Lindsey LaPointe,2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-01-28,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-05,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-16,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Antonio Muñoz,2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-03-08,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-02-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Insurance Committee; 019-000-000,2021-03-25,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-11-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2022-03-24,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-17,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-07-11,[],IL,102nd +Re-assigned to Appropriations,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-06,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-05-06,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-24,[],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-11,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-03-18,[],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 008-004-000,2022-02-16,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Omar Aquino,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-02-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Do Pass as Amended State Government; 008-000-000,2022-11-30,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Melinda Bush,2021-04-20,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-15,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Chris Bos,2021-09-29,[],IL,102nd +Chief Sponsor Changed to Sen. Melinda Bush,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Maurice A. West, II",2022-02-03,['amendment-introduction'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-22,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-04-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Removed from Consent Calendar Status Rep. Rita Mayfield,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-09-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-11-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-General Services Committee,2021-04-06,[],IL,102nd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 015-008-001,2022-02-16,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) May 28, 2021",2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-01-19,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-11-29,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Counties & Townships Committee,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Daniel Swanson,2021-04-20,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-03-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. C.D. Davidsmeyer,2021-05-29,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-06,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-28,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dave Syverson,2021-04-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-07-08,[],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-04-15,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2021-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +First Reading,2021-02-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-09-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-16,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-05,[],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. C.D. Davidsmeyer,2022-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-01-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Rachelle Crowe,2021-04-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Omar Aquino,2021-04-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-28,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-04-28,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-29,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-11-30,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Mental Health & Addiction Committee; 014-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Chief Sponsor Changed to Sen. Scott M. Bennett,2021-04-20,[],IL,102nd +Chief Sponsor Changed to Sen. Christopher Belt,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2021-06-23,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-24,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +First Reading,2021-03-17,['reading-1'],IL,102nd +Chief Sponsor Changed to Sen. Melinda Bush,2021-04-09,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-01-06,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Revenue & Finance Committee,2021-03-23,[],IL,102nd +Do Pass as Amended / Short Debate State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Chief Sponsor Changed to Rep. Jehan Gordon-Booth,2022-04-04,[],IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-02-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Third Reading - Passed; 053-000-001,2021-03-10,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-03-02,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-04-08,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Munoz,2021-04-21,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 110-005-001,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-23,[],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-03-10,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Resolution Adopted 059-033-000,2021-05-29,['passage'],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 2 Postponed - Pensions,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Chief Sponsor Changed to Sen. Adriane Johnson,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Munoz,2021-04-21,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-05,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Human Rights,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-23,[],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2022-03-02,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Resolution Adopted,2022-11-29,['passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2022-03-10,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-06,[],IL,102nd +Chief House Sponsor Rep. Robyn Gabel,2022-02-16,[],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 019-000-000,2021-03-15,['committee-passage'],IL,102nd +Suspend Rule 21 - Prevailed,2021-10-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Chief House Sponsor Rep. Robyn Gabel,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 008-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-06,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Judiciary,2021-03-23,[],IL,102nd +Resolution Adopted; 056-000-000,2022-04-09,['passage'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-19,[],IL,102nd +"Added Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-04-20,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Criminal Law,2021-04-07,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-24,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-18,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-16,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2022-02-14,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Sen. Laura M. Murphy,2021-04-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Chief Sponsor Changed to Sen. Scott M. Bennett,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-04-22,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Co-Sponsor Rep. Mark Batinick,2021-02-08,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-20,[],IL,102nd +Chief Sponsor Changed to Sen. Scott M. Bennett,2021-04-09,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-08,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Committee Amendment No. 3 Filed with Clerk by Rep. LaToya Greenwood,2021-03-22,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2021-04-19,[],IL,102nd +Do Pass as Amended / Short Debate Housing Committee; 023-000-000,2021-03-17,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2021-03-09,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Chief House Sponsor Rep. Martin J. Moylan,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-24,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted - Lost Higher Education Committee; 005-004-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Bush,2021-04-21,['amendment-passage'],IL,102nd +Chief Sponsor Changed to Sen. Doris Turner,2021-04-13,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Daniel Didech,2021-04-27,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Do Pass as Amended Insurance; 010-000-000,2021-04-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-05-06,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-000-000,2021-05-11,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-001,2021-04-21,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 23, 2021",2021-03-17,[],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-03-19,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-05-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-05-06,[],IL,102nd +Chief House Sponsor Rep. Frances Ann Hurley,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 31, 2021",2021-05-30,[],IL,102nd +"Chief Sponsor Changed to Sen. Emil Jones, III",2021-04-14,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-02-14,['referral-committee'],IL,102nd +Resolution Adopted; 054-000-000,2021-06-01,['passage'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-03-17,[],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2021-04-19,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-22,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Chief House Sponsor Rep. Daniel Didech,2021-04-22,[],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-10,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-01-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 012-007-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Do Pass as Amended Higher Education; 012-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +Suspend Rule 21 - Prevailed 071-043-000,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions April 29, 2021",2021-04-28,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-12,[],IL,102nd +Arrive in Senate,2022-04-08,['introduction'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2022-03-01,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2022-02-28,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-05-21,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2021-04-13,[],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2021-04-26,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-01,[],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-03-19,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-21,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Do Pass / Short Debate Housing Committee; 015-008-000,2021-03-10,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-03-03,[],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-26,[],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2023-01-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-12,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2021-04-27,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Scott M. Bennett,2021-04-21,['amendment-introduction'],IL,102nd +Do Pass as Amended / Short Debate Insurance Committee; 019-000-000,2021-03-25,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 008-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-01-19,[],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2021-04-27,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2022-02-23,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Michael E. Hastings,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-30,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert F. Martwick,2021-04-16,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-04-15,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2021-03-19,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Sen. Michael E. Hastings,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-10-07,[],IL,102nd +Removed Co-Sponsor Rep. Katie Stuart,2022-02-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2021-04-16,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Chief House Sponsor Rep. Katie Stuart,2022-02-16,[],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Arrive in Senate,2021-05-26,['introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-04-21,[],IL,102nd +Removed Co-Sponsor Rep. Katie Stuart,2022-02-24,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2022-02-22,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-09,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-04-06,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2022-04-04,['amendment-introduction'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-06-16,[],IL,102nd +Third Reading - Passed; 052-004-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2022-02-17,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2022-02-18,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-10-13,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2021-04-01,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sam Yingling,2021-04-13,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-04-22,[],IL,102nd +Removed from Consent Calendar Status Rep. Deanne M. Mazzochi,2022-02-24,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-04-04,[],IL,102nd +"Chief Sponsor Changed to Sen. Emil Jones, III",2021-04-20,[],IL,102nd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2022-03-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-17,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-04-04,[],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-02-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. John F. Curran,2022-01-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2022-02-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-03-22,[],IL,102nd +Resolution Adopted,2022-03-16,['passage'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-01-31,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Hunter,2022-02-22,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-07,[],IL,102nd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2021-04-20,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-25,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-02,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-17,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2022-02-10,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended / Consent Calendar State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Chief House Sponsor Rep. Frances Ann Hurley,2022-02-16,[],IL,102nd +First Reading,2022-02-17,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-04-04,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar - Consideration Postponed,2022-02-24,[],IL,102nd +Third Reading - Passed; 050-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-20,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-02-26,[],IL,102nd +Chief Sponsor Changed to Sen. Antonio Muñoz,2021-04-13,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-000-000,2022-01-26,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-09,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2022-12-01,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Sen. Christopher Belt,2021-04-20,[],IL,102nd +Do Pass as Amended Education; 012-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-14,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2022-02-22,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Behavioral and Mental Health; 011-000-000,2021-03-24,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-20,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-03-18,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-05-26,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-02-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-03-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-16,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-01,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2021-04-20,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2022-04-04,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jason Plummer,2022-02-22,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Healthcare Access and Availability,2021-03-23,[],IL,102nd +Resolution Adopted,2022-03-31,['passage'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-07-21,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-14,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +House Committee Amendment No. 1 Re-assigned to Health Care Availability & Accessibility Committee,2022-02-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-16,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Michael E. Hastings,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2021-05-07,['amendment-introduction'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Adopted; Bennett,2022-02-24,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-16,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-07,[],IL,102nd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2022-02-22,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2022-02-22,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. Kathleen Willis,2022-02-24,[],IL,102nd +To Appropriations- Revenue and Finance,2022-01-11,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Van Pelt,2022-02-16,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-04,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Chief Co-Sponsor Changed to Rep. Robyn Gabel,2021-03-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-06,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2022-02-07,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-12-14,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-01,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-01,[],IL,102nd +Chief Sponsor Changed to Sen. Adriane Johnson,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-15,[],IL,102nd +Chief House Sponsor Rep. Justin Slaughter,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Behavioral and Mental Health; 009-001-000,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2021-10-27,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-03,[],IL,102nd +"Chief Sponsor Changed to Sen. Emil Jones, III",2021-04-20,[],IL,102nd +First Reading,2022-02-17,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-31,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Commerce; 008-000-000,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-05-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Assigned to Higher Education Committee,2021-03-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2022-02-03,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-03-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-10,[],IL,102nd +"Chief Sponsor Changed to Sen. Emil Jones, III",2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2021-03-09,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Dave Syverson,2022-04-07,[],IL,102nd +Chief Sponsor Changed to Sen. Doris Turner,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 015-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2021-04-23,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-09,[],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2021-04-20,[],IL,102nd +Third Reading - Short Debate - Passed 070-042-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2022-01-19,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Sponsor Removed Sen. Patrick J. Joyce,2022-01-27,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-05,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) May 28, 2021",2021-05-24,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Financial Institutions Committee,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-06,[],IL,102nd +Third Reading - Short Debate - Passed 077-025-004,2021-04-23,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2022-02-16,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Consumer Protection Committee; 006-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-05,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-11,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Pensions,2021-04-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) May 28, 2021",2021-05-24,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 010-005-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-02-10,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-11-14,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-22,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-20,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-23,[],IL,102nd +Chief Sponsor Changed to Sen. Thomas Cullerton,2021-04-22,[],IL,102nd +Do Pass as Amended / Short Debate Agriculture & Conservation Committee; 005-003-000,2022-02-10,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-10-06,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-01-13,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-26,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +To Property Tax Subcommittee,2021-03-04,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-01-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Michael E. Hastings,2021-04-14,[],IL,102nd +Referred to Assignments,2021-12-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-14,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-07,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Do Pass Revenue; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-01-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Will Guzzardi,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 010-000-000,2021-04-21,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2022-02-14,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8(b-1) this amendment will remain in the Committee on Assignments.,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2022-02-25,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-04-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-03-11,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Chief Sponsor Changed to Sen. Steve Stadelman,2021-04-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-22,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2021-04-15,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2021-04-08,['amendment-introduction'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-01-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-12,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Mike Simmons,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Chief Sponsor Changed to Sen. Ram Villivalam,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 029-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-04-21,[],IL,102nd +Removed Co-Sponsor Rep. Margaret Croke,2021-03-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Re-assigned to Pensions,2021-04-20,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2021-04-15,['amendment-introduction'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-20,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Economic Opportunity & Equity Committee; 006-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Re-referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-02,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-04-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-24,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-25,[],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2022-01-31,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-02-08,[],IL,102nd +Chief Sponsor Changed to Sen. Sue Rezin,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 29, 2021",2021-04-28,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-01-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-12-02,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-25,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-01-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Problem- Solving Courts,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-08,[],IL,102nd +"Final Action Deadline Extended-9(b) May 28, 2021",2021-05-24,[],IL,102nd +Do Pass as Amended Revenue; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +Re-assigned to Energy and Public Utilities,2022-02-08,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-02-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Arrived in House,2022-03-23,['introduction'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 018-011-000,2022-03-03,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Chief House Sponsor Rep. Deanne M. Mazzochi,2021-04-26,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-03-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dale Fowler,2021-03-18,['amendment-introduction'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Chief House Sponsor Rep. Kelly M. Cassidy,2021-04-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Moved to Suspend Rule 21 Rep. Natalie A. Manley,2022-03-01,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Michael E. Hastings,2021-04-13,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Financial Institutions,2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-11-15,[],IL,102nd +House Floor Amendment No. 1 Housing Affordability Impact Note Requested as Amended by Rep. Deanne M. Mazzochi,2021-04-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2022-02-18,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-15,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-06,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-02-25,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass as Amended Education; 013-000-000,2022-02-09,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason A. Barickman,2021-04-20,[],IL,102nd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-02-22,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2022-01-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +To Wages & Rates Subcommittee,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-02-24,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-07-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-17,[],IL,102nd +Postponed - Judiciary,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-10-28,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-11,[],IL,102nd +Chief House Sponsor Rep. Debbie Meyers-Martin,2021-03-11,[],IL,102nd +Third Reading - Short Debate - Passed 075-036-001,2021-04-22,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Amy Elik,2021-04-13,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-04,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 14, 2021",2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 14, 2021",2021-04-13,[],IL,102nd +Fiscal Note Requested by Rep. Blaine Wilhour,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 005-000-000,2022-02-17,['committee-passage'],IL,102nd +Re-assigned to Health,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-02-23,[],IL,102nd +Do Pass as Amended / Short Debate State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Removed from Short Debate Status,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-05-10,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2022-02-07,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 096-008-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Criminal Law,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-02-03,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Cities & Villages Committee,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2023-01-06,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. William Davis,2021-04-15,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2021-04-16,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2022-12-02,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-05,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-20,[],IL,102nd +Assigned to Appropriations-General Services Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Do Pass as Amended / Short Debate Economic Opportunity & Equity Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-07-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-10,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2021-03-16,[],IL,102nd +Motion Filed to Reconsider Vote Rep. LaToya Greenwood,2022-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-02-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Removed Co-Sponsor Rep. Terra Costa Howard,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2022-03-02,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-10,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-03-03,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 012-000-000,2021-04-14,[],IL,102nd +Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Re-assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-10-20,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-24,['amendment-failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 17, 2022",2022-02-16,[],IL,102nd +Placed on Calendar Order of First Reading,2022-02-24,['reading-1'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-04-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Seth Lewis,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading Constitutional Amendments,2021-05-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2021-03-25,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 005-003-000,2022-02-16,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-23,[],IL,102nd +Third Reading - Consent Calendar - Passed 098-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-04-05,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Third Reading - Standard Debate - Passed 114-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2021-04-20,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-25,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-04-20,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Motion Do Pass - Lost Cities & Villages Committee; 006-006-000,2021-04-13,['committee-failure'],IL,102nd +House Committee Amendment No. 1 Re-assigned to Health Care Licenses Committee,2021-04-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted,2022-03-10,['passage'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-02-06,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Health; 013-000-000,2022-02-22,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-22,[],IL,102nd +Senate Committee Amendment No. 2 Adopted,2022-02-09,['amendment-passage'],IL,102nd +Do Pass as Amended Revenue; 009-000-000,2021-03-24,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-28,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-24,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety Committee; 010-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Chief Sponsor Changed to Sen. Ann Gillespie,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-03-11,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-10,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-17,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-07-21,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2021-03-23,[],IL,102nd +Third Reading - Consent Calendar - Passed 098-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-22,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Chief House Sponsor Rep. Kelly M. Cassidy,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Adriane Johnson,2021-04-14,[],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-10-14,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-04-05,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +First Reading,2022-02-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. David Friess,2021-06-16,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Resolution Adopted 077-016-019,2022-02-17,['passage'],IL,102nd +Recommends Be Adopted - Consent Calendar Veterans' Affairs Committee; 006-000-000,2021-03-23,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-02-05,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-02-05,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-05-30,[],IL,102nd +Assigned to State Government,2021-05-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 31, 2021",2021-05-30,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-18,[],IL,102nd +Do Pass as Amended Health; 013-000-000,2021-04-14,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Rachelle Crowe,2021-04-16,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 9, 2021",2021-03-05,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2021-04-12,['amendment-introduction'],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-16,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-01-21,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-25,[],IL,102nd +Third Reading - Short Debate - Passed 110-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-03-11,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-04-08,['amendment-introduction'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-16,[],IL,102nd +Chief House Sponsor Rep. Ann M. Williams,2021-03-11,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2021-03-16,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Resolution Adopted; 056-000-000,2022-04-09,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-04-13,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-28,[],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-28,[],IL,102nd +Do Pass as Amended Environment and Conservation; 010-000-000,2021-04-15,['committee-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Michael E. Hastings,2021-04-19,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading **,2021-04-20,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Chief Sponsor Changed to Sen. Jacqueline Y. Collins,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Celina Villanueva,2021-04-22,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Chief Sponsor Changed to Sen. Patrick J. Joyce,2021-04-20,[],IL,102nd +Chief House Sponsor Rep. LaToya Greenwood,2021-04-22,[],IL,102nd +Chief Sponsor Changed to Sen. Robert F. Martwick,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-15,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-14,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-02,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mark L. Walker,2021-03-25,['amendment-introduction'],IL,102nd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 017-000-000,2021-03-26,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-16,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 014-000-000,2021-04-20,[],IL,102nd +Chief Sponsor Changed to Sen. Julie A. Morrison,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Availability & Accessibility Committee; 007-003-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Chief House Sponsor Rep. Theresa Mah,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dan Brady,2021-04-15,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-10,[],IL,102nd +Chief Sponsor Changed to Sen. Patrick J. Joyce,2021-04-13,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Chief Sponsor Changed to Sen. Laura M. Murphy,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Fine,2022-02-22,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-27,[],IL,102nd +Resolution Adopted,2021-05-12,['passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Commerce,2021-04-20,[],IL,102nd +Chief Sponsor Changed to Sen. Christopher Belt,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-05,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-23,[],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2021-04-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2023-01-09,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2023-01-06,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-02-10,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2021-04-19,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2021-03-25,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2022-02-22,[],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2022-02-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Steve McClure,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - State Government,2022-02-09,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Adriane Johnson,2022-02-15,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-05-30,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Resolution Adopted 116-000-000,2021-05-05,['passage'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-09,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2022-02-22,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 017-000-000,2022-02-22,[],IL,102nd +Chief House Sponsor Rep. Jeff Keicher,2022-02-24,[],IL,102nd +First Reading,2022-02-17,['reading-1'],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-02-08,[],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-10-20,[],IL,102nd +Chief Senate Sponsor Sen. Steven M. Landek,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-01-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-02-24,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 017-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-19,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-03,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-01-12,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Veterans' Affairs Committee,2022-03-02,[],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-03-03,['committee-passage-favorable'],IL,102nd +Removed Co-Sponsor Rep. Katie Stuart,2021-04-01,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2021-04-14,['amendment-introduction'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2021-03-22,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 015-000-000,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Tourism and Hospitality,2022-01-26,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-22,[],IL,102nd +Recommends Do Pass Subcommittee/ Public Utilities Committee; 005-000-000,2021-03-22,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-24,[],IL,102nd +To Property Tax Subcommittee,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-21,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2022-01-19,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-15,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-02,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-05,[],IL,102nd +Chief Senate Sponsor Sen. Steven M. Landek,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-01-21,[],IL,102nd +Chief House Sponsor Rep. LaToya Greenwood,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-03-01,[],IL,102nd +Chief Sponsor Changed to Sen. Ann Gillespie,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-09,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2022-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-03-11,['reading-1'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Eva-Dina Delgado,2021-03-09,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2022-04-05,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Resolution Adopted 111-000-000,2022-04-04,['passage'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Resolution Adopted 068-038-000,2022-03-31,['passage'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-01-05,[],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-22,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Karina Villa,2021-04-26,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Financial Institutions; 007-000-000,2022-02-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-03-12,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-02,[],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Do Pass as Amended Revenue; 011-000-000,2022-02-10,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 008-000-000,2022-02-23,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-03-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-05-05,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 23, 2021",2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2022-02-14,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2021-04-14,"['passage', 'reading-3']",IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-15,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-06-25,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-01,[],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2022-02-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-12,[],IL,102nd +Do Pass as Amended Higher Education; 012-000-000,2021-04-14,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Chief Sponsor Changed to Sen. Patrick J. Joyce,2022-02-22,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-01-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Katie Stuart,2021-04-20,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-10,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Resolution Adopted 067-011-000,2022-04-04,['passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-05,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-05-30,[],IL,102nd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 015-010-000,2021-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-03-19,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-04-15,[],IL,102nd +Removed Co-Sponsor Rep. Seth Lewis,2021-04-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-11-14,[],IL,102nd +Added as Chief Co-Sponsor Sen. Win Stoller,2022-02-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-04-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Do Pass as Amended Health; 013-000-000,2021-04-14,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-31,[],IL,102nd +Assigned to Public Utilities Committee,2021-03-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2022-03-03,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-04-15,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-16,[],IL,102nd +Chief House Sponsor Rep. Justin Slaughter,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-04,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-23,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Maura Hirschauer,2022-03-31,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2022-03-01,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-02-02,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-04-13,[],IL,102nd +"Final Action Deadline Extended-9(b) May 28, 2021",2021-05-24,[],IL,102nd +Assigned to Executive Committee,2022-01-11,['referral-committee'],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Rachelle Crowe,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2021",2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 011-008-000,2022-02-10,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-02-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-02-22,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 013-004-000,2022-02-17,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 007-000-000,2021-04-21,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-04-13,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-03-24,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-11-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2022-01-19,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-03-16,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2021-04-01,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Paul Jacobs,2022-03-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-09,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Veterans' Affairs Committee,2021-04-06,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Chief Sponsor Changed to Sen. Cristina H. Pacione-Zayas,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 2 Rules Refers to Labor & Commerce Committee,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2022-02-24,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-01,['amendment-failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion Filed to Table Rep. William Davis,2021-04-20,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-02-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Pensions,2021-03-25,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-07-29,[],IL,102nd +"Chief House Sponsor Rep. Lawrence Walsh, Jr.",2022-02-25,[],IL,102nd +Resolution Adopted 112-000-000,2022-04-04,['passage'],IL,102nd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-23,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-08,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Margaret Croke,2022-03-02,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-03-29,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-14,[],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-02-23,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Kambium Buckner,2021-04-27,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Linda Holmes,2021-04-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 22, 2022",2022-02-17,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-03-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Do Pass / Consent Calendar Mental Health & Addiction Committee; 016-000-000,2021-03-26,['committee-passage'],IL,102nd +Chief Sponsor Changed to Sen. John Connor,2021-04-20,[],IL,102nd +Chief Sponsor Changed to Sen. Celina Villanueva,2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Maura Hirschauer,2021-04-12,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2021-04-21,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Arrived in House,2021-03-17,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-26,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. John Connor,2021-04-21,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Doris Turner,2022-02-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-23,[],IL,102nd +Third Reading - Short Debate - Passed 103-004-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Chief House Sponsor Rep. Kambium Buckner,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-01-12,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-02-24,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-11,[],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-23,['amendment-failure'],IL,102nd +Chief Sponsor Changed to Sen. Scott M. Bennett,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-23,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-10-22,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-03,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-07-21,[],IL,102nd +Removed Co-Sponsor Rep. Michael Kelly,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-22,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Pensions; 008-000-000,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-002-000,2021-03-18,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2021-04-21,[],IL,102nd +First Reading,2021-03-11,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Health,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-06-01,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety Committee; 010-000-000,2021-03-24,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-10,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2021-04-20,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-29,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Transportation,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-14,[],IL,102nd +Arrive in Senate,2021-05-06,['introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Chief House Sponsor Rep. Ann M. Williams,2021-04-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-04-14,['amendment-introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-02-14,[],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-03-24,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-16,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-24,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-10-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-02-10,[],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Chief House Sponsor Rep. Lance Yednock,2021-04-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2022-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Motion Filed to Reconsider Vote Rep. Kelly M. Burke,2022-02-17,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-03-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 009-000-000,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-17,[],IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-03-11,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-13,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-04-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Thaddeus Jones,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Second Reading,2021-03-09,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-02-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-24,[],IL,102nd +Do Pass as Amended Pensions; 008-000-000,2022-02-09,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-22,[],IL,102nd +House Committee Amendment No. 2 Adopted in Judiciary - Civil Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2021-04-20,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Chief House Sponsor Rep. Sonya M. Harper,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Cyril Nichols,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-28,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tim Butler,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-04-27,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-10-20,[],IL,102nd +Do Pass as Amended / Short Debate Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-14,[],IL,102nd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2022-03-08,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-01-21,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +Chief House Sponsor Rep. Adam Niemerg,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-03-18,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted - Lost Judiciary - Civil Committee; 008-007-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Fine,2022-02-10,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Third Reading - Passed; 054-002-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Removed Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-10,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2022-03-10,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 108-004-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2022-02-22,[],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-25,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Energy and Public Utilities,2022-02-22,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Bush,2022-02-23,['amendment-passage'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-02-06,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-12,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-23,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-04-20,[],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-27,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-02-05,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-15,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-02-05,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-17,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +"Motion Filed to Suspend Rule 21 Transportation: Regulation, Roads & Bridges Committee; Rep. Robert Rita",2023-01-06,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Chief House Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 025-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Steve McClure,2022-02-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-25,[],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Do Pass State Government; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Laura Fine,2021-04-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-05-30,[],IL,102nd +Recalled to Second Reading,2022-02-23,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-19,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kambium Buckner,2022-03-25,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. Patrick Windhorst,2021-04-27,[],IL,102nd +Chief House Sponsor Rep. Keith R. Wheeler,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-04-05,[],IL,102nd +Waive Posting Notice,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2021-06-01,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2022-02-15,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-22,[],IL,102nd +"Motion Filed to Suspend Rule 21 Transportation: Regulation, Roads & Bridges Committee; Rep. Elizabeth Hernandez",2023-01-10,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-10-20,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Agriculture; 011-000-000,2021-04-15,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Do Pass as Amended Pensions; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2021-04-20,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-06,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-10,[],IL,102nd +Removed Co-Sponsor Rep. La Shawn K. Ford,2022-03-01,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-03-02,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-04-21,[],IL,102nd +Third Reading - Short Debate - Passed 106-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Do Pass Agriculture; 013-000-000,2021-04-15,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-01-18,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-02-17,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mike Simmons,2021-04-20,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-03-17,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-25,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-02-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-01-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Licensed Activities,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-03-01,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2021-05-30,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-12,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +State Mandates Fiscal Note Filed,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Re-assigned to Judiciary,2021-04-20,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-02-22,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-01-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-31,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-08,[],IL,102nd +Chief House Sponsor Rep. Janet Yang Rohr,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-01-20,[],IL,102nd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Second Reading - Standard Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-09,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-01-19,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-06,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-02-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Assigned to Labor & Commerce Committee,2021-04-06,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2021-03-24,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2022-01-13,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. David Koehler,2021-04-22,['amendment-introduction'],IL,102nd +Re-assigned to Energy and Public Utilities,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-07,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Assigned to State Government Administration Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-10,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-10-06,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2022-03-03,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 22, 2022",2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-01-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-21,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-01-25,[],IL,102nd +Do Pass / Short Debate Higher Education Committee; 010-000-000,2022-02-02,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-16,[],IL,102nd +Do Pass as Amended Financial Institutions; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2021-04-27,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2022-02-16,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-04-08,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-02,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-12,[],IL,102nd +Senate Floor Amendment No. 1 Re-referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-05-19,[],IL,102nd +Chief House Sponsor Rep. David A. Welter,2021-04-27,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-14,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-03-09,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-31,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-01,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-12-02,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-04-29,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Executive,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2022-02-23,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-09,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-15,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Harris,2022-02-10,['amendment-passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2021-04-28,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-26,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-04-20,['amendment-introduction'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Public Safety Committee,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +First Reading,2023-01-04,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-19,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-04-07,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-17,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-14,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-21,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Sponsor Removed Sen. Antonio Muñoz,2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Thaddeus Jones,2021-04-20,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Chief Sponsor Changed to Sen. Sally J. Turner,2021-10-19,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-11-15,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Harmon,2021-04-21,['amendment-passage'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-18,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 006-000-000,2021-04-28,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-18,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Higher Education Committee,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-07-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Cyril Nichols,2021-04-22,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-03,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-03-01,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-08,[],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +Chief House Sponsor Rep. Suzanne Ness,2021-04-26,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-03-17,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-03-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass as Amended Health; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-18,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 To Executive- Government Operations,2021-04-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Arrived in House,2022-03-10,['introduction'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-14,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 055-001-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2021-04-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-25,[],IL,102nd +Remains in Cities & Villages Committee,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2022-04-04,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-01-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 098-001-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 007-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-25,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-15,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-03,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-02-15,[],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-04-06,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-05-20,[],IL,102nd +Read in Full a First Time,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-07-07,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-18,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-25,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 005-003-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-23,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2021-04-29,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2022-02-17,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-11,[],IL,102nd +First Reading,2021-03-11,['reading-1'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-22,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2022-02-16,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2022-02-24,[],IL,102nd +Third Reading - Passed; 057-001-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-11,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 014-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-04-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-10-20,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - Passed 098-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Chief Sponsor Changed to Rep. Elizabeth Hernandez,2022-04-04,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-03-29,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-20,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. La Shawn K. Ford,2021-04-13,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-25,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; McConchie,2021-04-15,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Chief House Sponsor Rep. Robyn Gabel,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-02-07,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Antonio Muñoz,2021-04-14,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Education,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-24,[],IL,102nd +Reported Back To Revenue & Finance Committee;,2022-02-17,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-31,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-01-21,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-14,[],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-07-29,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-04-04,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-04-13,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-05,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Removed from Consent Calendar Status Rep. Kelly M. Cassidy,2021-04-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-02-08,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2022-03-16,[],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-24,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-01,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-11-30,[],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-02,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-01-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Standard Debate,2021-04-21,['reading-2'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended Health; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Adopted Both Houses,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-25,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-04-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-03-01,[],IL,102nd +Reported Back To Public Utilities Committee;,2021-03-22,[],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-26,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-22,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-14,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-16,['amendment-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-03-31,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-04-20,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Celina Villanueva,2021-04-16,['amendment-introduction'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +"Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-02-22,[],IL,102nd +Assigned to Police & Fire Committee,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-02,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Elizabeth Hernandez,2022-03-16,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Environment and Conservation,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-19,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Adopted Both Houses,2022-04-04,[],IL,102nd +Postponed - Energy and Public Utilities,2022-02-24,[],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2022-04-04,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Removed Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-01-07,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2022-03-23,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-11,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2022-03-31,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2022-02-22,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-02-10,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-12,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 007-000-000,2022-02-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Darren Bailey,2021-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 016-008-000,2022-02-15,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2022-02-23,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Do Pass / Short Debate Police & Fire Committee; 014-000-000,2021-03-25,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-08,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-02-25,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-02-23,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Consumer Protection Committee; 006-000-000,2021-03-15,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Revenue & Finance Committee; 014-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Sue Rezin,2022-02-18,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2021-05-03,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-02-02,[],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-14,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 22, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2022-03-31,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2022-04-04,['amendment-introduction'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. LaToya Greenwood,2022-03-24,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Pensions,2021-04-14,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Melinda Bush,2021-04-23,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Darren Bailey,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Third Reading - Passed; 039-011-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Randy E. Frese,2022-02-17,[],IL,102nd +Removed Co-Sponsor Rep. Kelly M. Cassidy,2022-02-14,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-05-05,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Health; 011-000-000,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +First Reading,2021-05-27,['reading-1'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Referred to Rules Committee,2021-06-15,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-03-18,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-18,[],IL,102nd +First Reading,2021-04-15,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-04,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-08,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-17,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2021-04-15,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-04-23,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 010-000-000,2021-04-21,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Housing Committee; 014-009-000,2021-04-23,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Resolutions,2021-06-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Patricia Van Pelt,2021-04-16,['amendment-introduction'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2021-04-20,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-04-16,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Do Pass as Amended Health; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2021-04-20,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Resolution Adopted; 056-000-000,2022-04-09,['passage'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Adoption & Child Welfare Committee; 007-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +Senate Committee Amendment No. 3 Referred to Assignments,2021-03-29,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2021-05-26,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2021-04-06,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 015-000-000,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason A. Barickman,2022-04-09,[],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +House Floor Amendment No. 2 Re-assigned to Immigration & Human Rights Committee,2022-02-23,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Jonathan Carroll,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-03-23,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-18,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sue Scherer,2022-03-30,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. Norine K. Hammond,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Feigenholtz,2021-04-20,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-10-28,[],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Andrew S. Chesney,2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 010-000-000,2022-02-22,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Labor,2022-02-15,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-05-18,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Kambium Buckner,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-02,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tim Butler,2021-07-12,[],IL,102nd +Chief House Sponsor Rep. Dagmara Avelar,2021-04-27,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2021-03-03,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-05-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Do Pass Education; 015-000-000,2021-05-05,['committee-passage'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-02,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Frances Ann Hurley,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. LaToya Greenwood,2021-05-27,['amendment-introduction'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-10-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-03-22,[],IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Omar Aquino,2021-04-26,['amendment-introduction'],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-04,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-05-05,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Do Pass as Amended Insurance; 010-000-000,2021-04-15,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 014-000-000,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-11,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Robert Rita,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Chief Sponsor Changed to Sen. Linda Holmes,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-16,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-04-07,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-03-15,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2021-04-21,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-05-28,[],IL,102nd +Third Reading - Passed; 035-016-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Chief Sponsor Changed to Rep. Michael J. Zalewski,2022-02-07,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Environment and Conservation,2021-04-13,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Kelly M. Cassidy,2021-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael Kelly,2022-03-01,[],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2021-05-29,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Nicholas K. Smith,2021-04-20,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2021-03-23,[],IL,102nd +Recommends Be Adopted as Amended Higher Education Committee; 006-004-000,2022-04-07,['committee-passage-favorable'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-04-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-04-08,[],IL,102nd +Assigned to Transportation,2021-04-20,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-04-08,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 31, 2021",2021-05-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2021-04-15,[],IL,102nd +Do Pass as Amended / Consent Calendar Mental Health & Addiction Committee; 016-000-000,2021-03-26,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-23,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-16,['amendment-passage'],IL,102nd +Adopted Both Houses,2021-06-01,[],IL,102nd +Do Pass as Amended Health; 015-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-29,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-04-05,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 007-001-000,2021-04-20,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Removed from Short Debate Status,2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2021-04-27,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-31,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-02-26,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-29,[],IL,102nd +Recommends Be Adopted Veterans' Affairs Committee; 010-000-000,2022-01-25,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-03-17,[],IL,102nd +Do Pass as Amended Judiciary; 008-000-000,2021-03-16,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Do Pass as Amended Judiciary; 008-000-000,2021-04-14,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-02-05,[],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Criminal Law; 009-001-000,2021-04-20,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-13,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-16,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-16,['amendment-passage'],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-21,[],IL,102nd +Chief Senate Sponsor Sen. Michael E. Hastings,2022-03-28,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-14,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-03-19,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Arrive in Senate,2022-04-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-05-30,[],IL,102nd +Chief House Sponsor Rep. Daniel Didech,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 13, 2021",2021-03-25,[],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2022-02-16,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-16,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-26,[],IL,102nd +Recommends Be Adopted International Trade & Commerce Committee; 010-000-000,2022-04-07,['committee-passage-favorable'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Higher Education Committee,2022-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-06,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-06-16,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2022-02-24,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Healthcare Access and Availability,2022-03-31,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-16,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2021-04-21,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-22,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-10,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-07,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Executive,2021-04-14,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Postponed - Behavioral and Mental Health,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Chief House Sponsor Rep. Kelly M. Burke,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-08,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2022-03-23,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Criminal Law; 009-000-000,2021-04-28,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 1 To Executive- Procurement,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Pensions,2022-02-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2022-04-03,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-02-26,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-24,[],IL,102nd +Removed from Consent Calendar Status Rep. Jay Hoffman,2021-04-13,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Postponed - State Government,2021-04-21,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2021-04-21,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-23,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2022-04-04,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-03-23,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2022-02-24,['committee-passage-favorable'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-04-13,[],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Labor,2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2022-02-23,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-12-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joe Sosnowski,2021-04-19,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-12,[],IL,102nd +Senate Floor Amendment No. 1 To Executive- Procurement,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Criminal Law,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Motion Filed to Table Rep. Charles Meier,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-07,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-24,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2022-04-01,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-10-27,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-09,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-09,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Terri Bryant,2021-05-18,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 014-000-000,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2022-03-16,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Chief House Sponsor Rep. Anne Stava-Murray,2021-04-26,[],IL,102nd +To Special Issues (HS) Subcommittee,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-09-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-14,[],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-03-16,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Financial Institutions,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-10-06,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-08-29,[],IL,102nd +Third Reading - Passed; 051-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Thomas Cullerton,2021-04-12,['amendment-introduction'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2022-02-15,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-10-07,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-02-24,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2021-04-14,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-08-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-02-11,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-01-04,[],IL,102nd +Do Pass as Amended State Government; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-10-20,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-17,[],IL,102nd +Referred to Assignments,2022-11-30,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-01-14,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-01-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-08-10,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-01-28,[],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-08-26,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-04-13,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended / Consent Calendar Revenue & Finance Committee; 018-000-000,2022-02-17,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 To Executive- Firearms,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2021-04-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-14,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 009-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-01-11,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2022-03-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-01-21,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-04,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-24,[],IL,102nd +Chief House Sponsor Rep. Cyril Nichols,2021-05-03,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-01,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety Committee; 013-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-10-06,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-01-05,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Debbie Meyers-Martin,2022-03-16,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-11-01,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Local Government,2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-11-30,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 21, 2021",2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 013-000-000,2021-04-21,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 023-004-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Postponed - Local Government,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 To Executive- Procurement,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-10-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 To Executive- Government Operations,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-23,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-01-18,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 To Executive- Firearms,2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 17, 2022",2022-02-16,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-11-17,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-03-08,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-04-01,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Elizabeth Hernandez,2021-05-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2021-04-28,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-23,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-24,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. LaToya Greenwood,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-11-16,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-14,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-05-31,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2022-03-03,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-18,[],IL,102nd +"House Committee Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-08-31,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-26,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-03-23,[],IL,102nd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-04-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 To Executive- Elections,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-03-09,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-05,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-09,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2022-02-24,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2022-02-10,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Immigration & Human Rights Committee; 007-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-02,['reading-1'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-15,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-03-02,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-28,['reading-1'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +House Committee Amendment No. 3 Rules Refers to Personnel & Pensions Committee,2022-02-17,[],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-23,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-01,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-006-000,2021-04-21,[],IL,102nd +Chief Sponsor Changed to Rep. Eva-Dina Delgado,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-05-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-04-04,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-20,[],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +First Reading,2022-02-18,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2022-03-04,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-02-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Steve Stadelman,2022-02-25,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-17,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-19,[],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-08-31,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-23,['amendment-passage'],IL,102nd +To Property Tax Subcommittee,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-12-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-02,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 23, 2021",2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-02-17,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2022-02-16,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-01,[],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-04,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-01-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-22,[],IL,102nd +Resolution Adopted 063-043-001,2021-05-06,['passage'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-10-28,[],IL,102nd +Do Pass as Amended Energy and Public Utilities; 019-000-000,2022-02-10,['committee-passage'],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-01-22,[],IL,102nd +House Floor Amendment No. 1 Balanced Budget Note Requested as Amended by Rep. Avery Bourne,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2022-02-24,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-03-28,[],IL,102nd +Chief Sponsor Changed to Sen. Sue Rezin,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 To Executive- Government Operations,2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2022-04-08,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2022-02-24,[],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-24,[],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-02-24,[],IL,102nd +Third Reading - Passed; 051-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 To Appropriations- Veterans Affairs,2021-04-13,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Katie Stuart,2022-03-01,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Bob Morgan,2021-03-23,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2022-02-18,['amendment-introduction'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-05-06,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-01,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-10-06,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Approved for Consideration Assignments,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-20,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Theresa Mah,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-18,[],IL,102nd +Motion Do Pass as Amended - Lost Appropriations-Human Services Committee; 006-015-000,2022-03-24,['committee-failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +Chief House Sponsor Rep. Justin Slaughter,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2022-02-22,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Rachelle Crowe,2022-03-08,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-008-000,2022-02-16,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2022-03-09,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-19,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Resolution Adopted 071-042-000,2021-05-05,['passage'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-18,['amendment-failure'],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-21,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-12-16,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-18,[],IL,102nd +Chief House Sponsor Rep. Mark L. Walker,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2022-02-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2022-03-02,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Laura M. Murphy,2021-04-13,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2021-03-16,[],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2021-03-22,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Environment and Conservation; 010-000-000,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-16,[],IL,102nd +Senate Floor Amendment No. 1 To Executive- Government Operations,2021-04-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-04-01,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +Assigned to Energy & Environment Committee,2022-01-19,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Transportation: Vehicles & Safety Committee,2022-03-02,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-03,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-09,[],IL,102nd +Assigned to Executive Committee,2022-03-17,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2022-03-17,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2021-03-18,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-05-26,[],IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. John Connor,2021-03-12,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-01-31,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Re-assigned to Executive,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2023-01-06,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-14,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jehan Gordon-Booth,2022-04-04,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-003-000,2021-04-15,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-04-22,[],IL,102nd +Chief Sponsor Changed to Rep. Seth Lewis,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 034-018-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-02-09,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Chief House Sponsor Rep. Jehan Gordon-Booth,2021-05-03,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-18,['amendment-failure'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2021-04-13,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2021-03-24,['amendment-failure'],IL,102nd +First Reading,2021-04-15,['reading-1'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +House Committee Amendment No. 3 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Co-Sponsor Rep. Michael T. Marron,2021-02-08,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-10,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-04-13,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2021-04-06,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-03-18,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-16,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-15,[],IL,102nd +Recommends Be Adopted International Trade & Commerce Committee; 007-003-000,2021-05-26,['committee-passage-favorable'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2021-04-15,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading February 25, 2022",2022-02-24,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-05-06,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-03-02,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 104-000-001,2022-03-01,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-04-14,[],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2022-01-11,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-24,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-04-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2021-04-20,[],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Postponed - Licensed Activities,2021-04-21,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-14,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-26,['reading-3'],IL,102nd +Do Pass as Amended State Government; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-04-19,[],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-05,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-01-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Removed Co-Sponsor Rep. Carol Ammons,2022-02-22,[],IL,102nd +Second Reading,2021-04-27,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Chief Sponsor Changed to Sen. Julie A. Morrison,2021-04-27,[],IL,102nd +Added as Chief Co-Sponsor Sen. Thomas Cullerton,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2021-04-07,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-03-18,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-11,[],IL,102nd +Third Reading - Short Debate - Passed 070-039-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-15,[],IL,102nd +Adopted Both Houses,2021-06-01,[],IL,102nd +Resolution Adopted; 053-000-000,2021-06-01,['passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-05-06,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Ugaste,2021-05-06,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-001-000,2021-04-21,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-04-02,['amendment-introduction'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +"Remove Chief Co-Sponsor Rep. Maurice A. West, II",2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-11,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 009-000-000,2021-03-19,[],IL,102nd +Postponed - Judiciary,2021-03-24,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 010-000-000,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 2 Adopted in Judiciary - Civil Committee; by Voice Vote,2021-03-09,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 22, 2021",2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 16, 2021",2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +First Reading,2021-03-11,['reading-1'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-10-28,['committee-passage-favorable'],IL,102nd +Re-assigned to Executive,2021-04-21,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-04-22,[],IL,102nd +Do Pass / Standard Debate Energy & Environment Committee; 017-010-002,2021-03-15,['committee-passage'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Melinda Bush,2021-04-15,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Robert F. Martwick,2021-04-16,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Fiscal Note Requested as Amended by Rep. Tom Demmer,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Executive,2021-04-21,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 008-000-000,2021-04-15,[],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2021-03-25,['committee-passage'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2021-03-03,['committee-passage'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 3 Assignments Refers to Criminal Law,2021-04-13,[],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2021-04-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-03,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2021-03-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 101-007-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2021",2021-03-24,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 014-000-000,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Martin J. Moylan,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 1 Remains in Higher Education Committee,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Suzanne Ness,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-24,[],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-04-08,[],IL,102nd +Resolution Adopted,2022-04-08,['passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Criminal Law; 009-000-000,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Adriane Johnson,2021-04-16,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Appropriations-Human Services Committee; by Voice Vote,2021-03-19,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-26,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-03-11,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-07-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Judiciary; -Property Law,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Chief House Sponsor Rep. Theresa Mah,2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-02,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-21,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Removed from Consent Calendar Status Rep. Kelly M. Burke,2022-02-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Will Guzzardi,2022-02-22,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kambium Buckner,2022-04-08,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Re-referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-02,[],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 To Executive- Government Operations,2021-04-21,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-25,[],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-08-30,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-24,['amendment-failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2021-12-21,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Criminal Law,2021-04-20,[],IL,102nd +Judicial Note Requested by Rep. Sonya M. Harper,2022-02-17,[],IL,102nd +To Family Law & Probate Subcommittee,2022-02-07,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-02-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-30,[],IL,102nd +Approved for Consideration Assignments,2022-01-05,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-12-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +To Income Tax Subcommittee,2022-02-03,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sue Scherer,2021-03-11,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-02-24,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-03-09,[],IL,102nd +"House Floor Amendment No. 4 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-03-22,['amendment-introduction'],IL,102nd +Do Pass as Amended Health; 015-000-000,2022-02-09,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-26,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Melinda Bush,2021-04-21,['amendment-introduction'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-04-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Consumer Protection Committee; 005-001-000,2021-03-22,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Belt,2022-02-24,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-10,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2022-03-02,[],IL,102nd +Re-assigned to Appropriations,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-03-09,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-03-09,[],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2022-03-16,['amendment-introduction'],IL,102nd +Do Pass as Amended Agriculture; 008-006-000,2022-02-10,['committee-passage'],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-03-02,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-05-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-10,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Health,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-07-07,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-03,[],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-15,[],IL,102nd +Chief Sponsor Changed to Sen. John F. Curran,2022-03-28,[],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Executive,2022-03-09,[],IL,102nd +Assigned to Energy & Environment Committee,2022-02-09,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2021-04-23,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2022-04-04,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 13, 2021",2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-16,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-08-24,[],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-22,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-24,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2022-04-04,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-28,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Financial Institutions,2022-02-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2022-02-10,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Pensions,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2021-04-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-21,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-02-25,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Do Pass as Amended Local Government; 007-000-000,2021-04-14,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +State Mandates Fiscal Note Filed,2022-03-01,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-03-17,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-21,[],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-02-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-04-05,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-02-22,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-17,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-04-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-02,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-01-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-20,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-03-10,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-01,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-02,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Recalled to Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-17,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-07-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-23,[],IL,102nd +Do Pass as Amended Behavioral and Mental Health; 009-002-000,2021-04-14,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-16,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-01,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-06,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Adoption & Child Welfare Committee; 007-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-02-05,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-09,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2022-02-10,['amendment-passage'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2022-04-05,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Ethics & Elections Committee,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. John F. Curran,2021-05-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-11-30,[],IL,102nd +Do Pass as Amended Public Safety; 007-000-000,2022-02-09,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-07-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2021-11-24,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Assigned to Veterans' Affairs Committee,2022-01-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 022-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-19,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Elizabeth Hernandez,2022-03-31,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michael J. Zalewski,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-01-26,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-02-05,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kathleen Willis,2021-04-20,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-23,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-12-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-02,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-04-14,['amendment-introduction'],IL,102nd +Postponed - Health,2021-03-24,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2022-03-22,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-12-09,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Will Guzzardi,2022-03-01,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-01-14,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-14,[],IL,102nd +Approved for Consideration Assignments,2022-02-22,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Rachelle Crowe,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-05-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-11-30,[],IL,102nd +Fiscal Note Requested by Rep. Blaine Wilhour,2021-04-15,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jehan Gordon-Booth,2022-04-01,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2021-10-20,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 014-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Amy Elik,2021-09-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-05-06,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-18,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-25,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-11-22,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-21,[],IL,102nd +Do Pass as Amended Education; 011-003-000,2021-04-14,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 To Executive- Procurement,2021-04-15,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-19,[],IL,102nd +Do Pass as Amended State Government; 009-000-000,2021-05-06,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-16,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2021-04-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 016-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-02-05,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-12-14,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2022-02-23,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-12-01,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Doris Turner,2022-02-10,['amendment-passage'],IL,102nd +Do Pass as Amended Behavioral and Mental Health; 009-001-000,2022-02-09,['committee-passage'],IL,102nd +Reported Back To Revenue & Finance Committee;,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Steven Reick,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-02-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-03-03,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-07-26,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kathleen Willis,2022-03-29,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-03-16,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-04-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2022-03-24,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-01-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-17,[],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-01-11,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-16,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2022-02-01,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-23,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2022-03-01,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Rita Mayfield,2021-03-24,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-05-26,[],IL,102nd +Third Reading - Passed; 034-010-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2021-04-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 To Executive- Procurement,2021-04-15,[],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 011-000-000,2022-02-23,[],IL,102nd +Third Reading - Standard Debate - Passed 077-033-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 017-000-000,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-22,[],IL,102nd +Recommends Be Adopted - Consent Calendar Higher Education Committee; 010-000-000,2021-03-25,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2022-02-22,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-02-23,[],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2022-03-02,[],IL,102nd +Approved for Consideration Assignments,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-04-04,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +"Chief House Sponsor Rep. Lamont J. Robinson, Jr.",2022-02-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-05-05,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 017-000-000,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2022-03-09,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-04-04,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kathleen Willis,2022-02-18,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 22, 2021",2021-04-21,[],IL,102nd +Postponed - Licensed Activities,2021-04-29,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-01,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Butler,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Recommends Be Adopted - Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-31,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-18,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-14,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-02-25,['amendment-failure'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-03,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-25,[],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-28,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-10-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-24,[],IL,102nd +Third Reading - Standard Debate - Passed 070-041-000,2021-03-18,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-29,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-03-19,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-24,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2022-02-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-02-16,[],IL,102nd +Removed Co-Sponsor Rep. Katie Stuart,2022-02-16,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-03-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 007-000-000,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2022-02-10,['amendment-introduction'],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Emil Jones, III",2022-03-02,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Licensed Activities,2021-04-21,[],IL,102nd +Placed on Calendar Order of First Reading,2022-02-24,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-01,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +To Property Tax Subcommittee,2022-02-15,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-02,[],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2022-02-23,['committee-passage-favorable'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-05-26,['reading-1'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 007-000-000,2021-04-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-22,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-01-28,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-06-16,['amendment-introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Chief House Sponsor Rep. Terra Costa Howard,2022-02-16,[],IL,102nd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 012-006-000,2022-02-16,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-03-16,[],IL,102nd +Third Reading - Passed; 052-002-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Third Reading - Short Debate - Passed 069-042-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Postponed - Health,2021-04-20,[],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-02-14,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 010-000-000,2022-02-02,['committee-passage'],IL,102nd +Do Pass as Amended / Short Debate Human Services Committee; 014-000-000,2022-02-16,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Approved for Consideration Assignments,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Criminal Law,2021-04-20,[],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Consumer Protection Committee; 006-000-000,2021-03-01,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-01-20,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-12-21,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Counties & Townships Committee,2021-04-14,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 005-003-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-19,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-01-11,[],IL,102nd +Chief House Sponsor Rep. Barbara Hernandez,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-03-05,[],IL,102nd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2022-03-03,['committee-passage-favorable'],IL,102nd +Assigned to State Government Administration Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-06-16,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-08-05,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2022-01-25,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Fine,2021-04-20,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 098-010-001,2022-02-23,"['passage', 'reading-3']",IL,102nd +Removed Co-Sponsor Rep. Robyn Gabel,2022-02-16,[],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2022-03-07,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-02,['amendment-failure'],IL,102nd +Chief Senate Sponsor Sen. David Koehler,2022-02-24,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-07,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-05-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-10-13,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-14,[],IL,102nd +Chief Sponsor Changed to Rep. Dave Vella,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 014-000-000,2021-04-29,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2021-04-12,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-06,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-25,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-10-07,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-04-06,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Assigned to Health Care Licenses Committee,2022-03-07,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-09,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Do Pass / Consent Calendar Revenue & Finance Committee; 018-000-000,2022-02-17,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-01-18,[],IL,102nd +Postponed - Transportation,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-03-18,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-25,[],IL,102nd +Third Reading - Passed; 051-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-10-13,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-29,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-10,[],IL,102nd +Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2022-02-09,[],IL,102nd +Chief Senate Sponsor Sen. Omar Aquino,2021-04-23,[],IL,102nd +Chief Sponsor Changed to Sen. Linda Holmes,2022-12-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-22,[],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-05-26,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-03-29,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2021-03-18,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-04-04,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 014-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-16,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Do Pass as Amended Healthcare Access and Availability; 009-000-000,2021-03-24,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-08-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Assigned to Executive Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-12,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 007-000-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-03-07,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Recalled to Second Reading,2022-02-23,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Third Reading - Passed; 037-018-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Chief Sponsor Changed to Rep. Natalie A. Manley,2022-04-04,[],IL,102nd +Assigned to Personnel & Pensions Committee,2022-03-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +Approved for Consideration Assignments,2022-01-11,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-03-22,[],IL,102nd +Chief House Sponsor Rep. Dave Vella,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-16,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-20,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-01,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2022-03-02,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-12-14,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-22,[],IL,102nd +Chief Sponsor Changed to Sen. Jason Plummer,2022-02-22,[],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-19,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2022-02-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-19,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-06,[],IL,102nd +First Reading,2022-02-17,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2022-02-22,['amendment-introduction'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-02,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-02-23,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-02-17,[],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-03-02,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 007-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-04-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2021-04-22,[],IL,102nd +Chief House Sponsor Rep. Tony McCombie,2021-04-22,[],IL,102nd +Do Pass / Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-03,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-10-13,[],IL,102nd +Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2022-02-16,[],IL,102nd +Third Reading - Short Debate - Passed 099-017-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Pensions,2021-04-21,[],IL,102nd +Postponed - Behavioral and Mental Health,2021-03-23,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2022-02-09,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. John Connor,2022-03-07,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2021-03-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-10-13,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2022-03-16,[],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-11,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2022-02-25,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-02-11,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-04-14,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2022-02-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-03-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-05-05,[],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-03-10,[],IL,102nd +Recalled to Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-07-08,[],IL,102nd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2021-05-10,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Ethics; 010-000-000,2021-04-21,[],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Judiciary,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-28,[],IL,102nd +Do Pass as Amended State Government; 008-000-000,2021-04-21,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-02,[],IL,102nd +Racial Impact Note Requested by Rep. Sonya M. Harper,2022-02-17,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Assigned to Financial Institutions Committee,2021-05-04,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-02-03,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-23,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Christopher Belt,2022-02-18,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-03-10,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-02,['amendment-passage'],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-03-02,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Do Pass as Amended / Short Debate State Government Administration Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-28,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. John F. Curran,2022-03-28,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. Patrick Windhorst,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-02-24,[],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-01-28,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-02-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2021-04-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-07-07,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-03,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Recalled to Second Reading,2022-02-23,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Cities & Villages Committee; by Voice Vote,2021-04-13,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-10-13,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading January 5, 2022",2022-01-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2022-02-24,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-14,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-16,[],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-03-01,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-03-01,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mike Simmons,2021-04-06,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 026-000-000,2022-02-23,['committee-passage-favorable'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-01,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-14,[],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-03-09,[],IL,102nd +To Appropriations- Revenue and Finance,2022-01-05,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 2 Rules Refers to Labor & Commerce Committee,2022-02-15,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-29,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Lindsey LaPointe,2021-02-08,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-08-31,[],IL,102nd +Assigned to Public Utilities Committee,2022-03-07,['referral-committee'],IL,102nd +To Property Tax Subcommittee,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As March 25, 2022",2022-03-11,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-01-04,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-10-28,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-05-19,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-14,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2021-03-18,['amendment-introduction'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-12,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-07,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Stadelman,2021-04-22,['amendment-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-05-26,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-17,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Recommends Be Adopted Executive Committee; 014-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 015-000-000,2021-04-23,['committee-passage-favorable'],IL,102nd +Chief House Sponsor Rep. Ann M. Williams,2021-04-22,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2021-04-23,['amendment-introduction'],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 015-000-000,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-16,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-05-06,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Adopted Both Houses,2021-06-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-22,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-24,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-05-25,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-03-12,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2021-04-22,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Education,2021-04-13,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-03-12,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-03,[],IL,102nd +Chief Sponsor Changed to Sen. Cristina Castro,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2022-02-15,[],IL,102nd +Third Reading - Short Debate - Passed 100-010-000,2021-03-18,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Tom Demmer,2022-01-26,[],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-13,[],IL,102nd +Approved for Consideration Assignments,2021-04-27,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2022-03-07,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 009-000-000,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Energy and Public Utilities,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Housing Committee,2021-03-11,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Chief House Sponsor Rep. Tony McCombie,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-26,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Pensions,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2022-03-10,[],IL,102nd +Co-Sponsor Rep. Jonathan Carroll,2021-02-08,[],IL,102nd +House Committee Amendment No. 3 Rules Refers to Economic Opportunity & Equity Committee,2021-03-23,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-04-14,[],IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Sam Yingling,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Tom Demmer,2022-03-03,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-26,[],IL,102nd +Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 28, 2021",2021-04-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended / Short Debate Appropriations-Human Services Committee; 020-000-000,2021-03-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-01-31,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-03,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-05-06,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2021-04-16,['amendment-introduction'],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +Reported Back To Revenue & Finance Committee;,2021-03-25,[],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-19,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Do Pass as Amended Human Rights; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Assigned to Human Services Committee,2021-05-04,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-19,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-01-05,[],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-09,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-03-29,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-10-27,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2021-04-20,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-03-01,[],IL,102nd +Removed from Consent Calendar Status Rep. Delia C. Ramirez,2022-02-25,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kambium Buckner,2021-04-20,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2022-02-24,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Environment and Conservation; 009-000-000,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Remove Chief Co-Sponsor Rep. Justin Slaughter,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-02,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Collins,2021-04-21,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Moved to Suspend Rule 21 Rep. Natalie A. Manley,2022-03-01,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-25,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Assigned to Transportation,2021-05-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-17,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2023-01-06,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-04-28,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-05-29,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-05-18,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-02-09,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-14,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-10-28,[],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-28,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2021-03-11,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Thomas M. Bennett,2021-04-27,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Third Reading - Passed; 041-018-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-01-06,[],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Resolution Adopted; 056-000-000,2022-04-09,['passage'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-02,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-04-14,['amendment-introduction'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 107-000-001,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-02-05,[],IL,102nd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 093-019-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-27,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-25,[],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-19,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-04-20,[],IL,102nd +Arrived in House,2021-03-11,['introduction'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-04-08,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jil Tracy,2021-05-04,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-20,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Martin J. Moylan,2022-04-01,['amendment-introduction'],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-17,[],IL,102nd +Second Reading,2021-05-12,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-07-11,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Villivalam,2021-04-22,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-02-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Do Pass as Amended Revenue; 010-000-000,2022-02-23,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Win Stoller,2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-01-10,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-10,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-03-08,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-02-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-07,[],IL,102nd +Chief Senate Sponsor Sen. Jil Tracy,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-01-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-24,[],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-14,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-22,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-12-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2022-01-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Motion Do Pass - Lost Appropriations-Human Services Committee; 011-009-000,2022-03-17,['committee-failure'],IL,102nd +Assigned to Appropriations,2021-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-03-31,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-15,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-01,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-11,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-27,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-02-24,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-01-18,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-03-07,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-12-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Removed Co-Sponsor Rep. Justin Slaughter,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2021-04-15,['amendment-introduction'],IL,102nd +"Removed Co-Sponsor Rep. Maurice A. West, II",2021-03-25,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2021-05-24,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2021-04-22,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-23,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-05,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2022-03-29,[],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2021-04-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 008-000-000,2021-05-12,[],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +Chief Sponsor Changed to Sen. Cristina Castro,2022-01-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 To Subcommittee on Public Health,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-21,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-29,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-07-11,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-06,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-04-19,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-10-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-11,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-05-29,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-02-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-11,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2021-05-13,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-03-03,[],IL,102nd +Assigned to Human Services Committee,2022-01-05,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-02-24,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 015-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-11-30,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-11-22,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-02-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-04-16,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Daniel Swanson,2021-04-20,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2022-03-07,[],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-20,[],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2021-03-16,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-01-11,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 016-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Revenue & Finance Committee,2022-02-08,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2022-03-30,[],IL,102nd +"Removed Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-15,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +"Chief House Sponsor Rep. Lawrence Walsh, Jr.",2022-02-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-02-23,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-03-24,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Chief Senate Sponsor Sen. Jason A. Barickman,2021-04-22,[],IL,102nd +Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-03-07,['referral-committee'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Will Guzzardi,2022-02-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-03-01,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Chief House Sponsor Rep. Katie Stuart,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Johnson,2022-02-24,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Michael Halpin,2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-03-05,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 017-000-000,2021-03-22,['committee-passage-favorable'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Second Reading,2022-02-16,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Jones,2022-02-24,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-10-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-02-23,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-14,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-01-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended Insurance; 010-000-000,2022-02-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Chief Senate Sponsor Sen. Jason A. Barickman,2021-05-06,[],IL,102nd +Second Reading,2021-04-27,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Motion Re-referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 020-000-000,2021-03-22,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-12,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-03-16,[],IL,102nd +Chief Senate Sponsor Sen. Omar Aquino,2021-04-27,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-04,['passage'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-04-04,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-16,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety Committee; 011-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-19,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2021-04-21,[],IL,102nd +Removed Co-Sponsor Rep. Emanuel Chris Welch,2022-01-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-03-01,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-10-13,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2022-02-17,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-24,[],IL,102nd +Assigned to Executive Committee,2021-03-11,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Greg Harris,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-20,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-31,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2022-02-24,[],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Local Government,2021-04-07,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-02-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 018-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-05-05,[],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-02,[],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-14,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Do Pass / Consent Calendar Economic Opportunity & Equity Committee; 008-000-000,2021-03-10,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-01-24,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-19,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-01-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-04-14,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-03-24,[],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-23,[],IL,102nd +Postponed - Judiciary,2022-02-22,[],IL,102nd +Removed Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +House Committee Amendment No. 3 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-02-15,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-04-20,['amendment-introduction'],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +Do Pass Health; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-04-04,[],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-16,[],IL,102nd +Do Pass Energy and Public Utilities; 019-000-000,2022-02-10,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Dan Caulkins,2021-03-11,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2021-04-16,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 081-020-002,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-10-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +"House Floor Amendment No. 2 Rules Refers to Small Business,Tech Innovation, and Entrepreneurship Committee",2022-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Harmon,2021-04-22,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-02-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mattie Hunter,2021-04-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-01-25,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-16,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Jil Tracy,2022-03-23,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Belt,2021-05-12,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-27,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-08-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-02-09,[],IL,102nd +Postponed - Criminal Law,2022-02-07,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-16,['referral-committee'],IL,102nd +Fiscal Note Requested by Rep. Blaine Wilhour,2021-04-15,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-16,[],IL,102nd +Arrive in Senate,2022-04-08,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-30,['amendment-passage'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2021-04-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-04-22,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-12,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2021-03-22,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Re-assigned to Appropriations,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-03-12,[],IL,102nd +Assigned to Energy & Environment Committee,2022-01-19,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety Committee; 010-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-20,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Third Reading - Passed; 052-001-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 012-007-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-03-03,[],IL,102nd +Assigned to State Government,2022-04-08,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Assigned to Labor & Commerce Committee,2022-02-09,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Martin J. Moylan,2021-04-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Assigned to Counties & Townships Committee,2021-04-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-03-07,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-03-10,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-01-13,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-01-18,[],IL,102nd +Approved for Consideration Assignments,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 013-000-000,2021-04-28,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-02-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-03-01,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Ann M. Williams,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-02-10,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-01-06,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-04-06,[],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2021-04-19,[],IL,102nd +Third Reading - Short Debate - Passed 105-000-001,2021-04-14,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Thomas Morrison,2021-04-21,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-03-03,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Appropriations-Public Safety Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-02-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 063-042-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2021-04-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-01-20,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-12-03,[],IL,102nd +Removed from Consent Calendar Status Rep. Theresa Mah,2021-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2021-05-10,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Neil Anderson,2022-02-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-10-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2022-03-02,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-08,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-01-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark L. Walker,2021-04-22,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Postponed - Executive,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-02-16,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-02-16,[],IL,102nd +Do Pass Licensed Activities; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-29,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Kambium Buckner,2021-03-17,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-26,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-22,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-05-04,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-07,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 015-000-000,2021-04-20,[],IL,102nd +Resolution Adopted 112-000-000,2022-04-08,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-01-21,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-03-11,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2021-10-20,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Education,2021-04-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Steven Reick,2022-02-24,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Michael T. Marron,2021-03-11,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-27,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Thomas M. Bennett,2021-04-08,['amendment-introduction'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Joyce,2021-04-22,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2021-03-16,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Sally J. Turner,2022-03-07,[],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2021-03-23,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-01-12,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Assigned to Public Utilities Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-02-06,[],IL,102nd +Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-20,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Scott M. Bennett,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-30,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-05-04,['referral-committee'],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-03-23,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-02-05,[],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2021-04-28,[],IL,102nd +Recalled to Second Reading,2021-04-23,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-03-16,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-01-21,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 016-000-000,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-24,[],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-23,[],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2022-03-16,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-02-17,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Human Rights; 008-000-000,2021-04-29,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Craig Wilcox,2021-04-19,[],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-16,[],IL,102nd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2023-01-10,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ann Gillespie,2021-04-21,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-04-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Floor Amendment No. 1 Remains in Judiciary - Civil Committee,2021-04-14,[],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2021-04-27,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Be Adopted State Government; 009-000-000,2021-05-30,['committee-passage-favorable'],IL,102nd +Added as Chief Co-Sponsor Sen. Rachelle Crowe,2021-06-01,[],IL,102nd +Third Reading - Consent Calendar - Passed 083-024-001,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-02-23,[],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-03-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-07-21,[],IL,102nd +Chief Senate Sponsor Sen. Jacqueline Y. Collins,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-29,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2022-03-02,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Removed Co-Sponsor Rep. Seth Lewis,2021-03-10,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-20,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-23,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-05-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 014-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2021-10-28,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2021-05-05,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-03-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-22,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-15,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Bush,2022-02-24,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-04,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Sonya M. Harper,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-02-16,[],IL,102nd +Assigned to Personnel & Pensions Committee,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 016-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-10,['reading-2'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2021-04-19,[],IL,102nd +Assigned to Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Insurance,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-04-15,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-10-14,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-06,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 013-001-000,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 026-000-000,2022-02-23,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Agriculture; 012-000-000,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-02-10,[],IL,102nd +Chief House Sponsor Rep. Kambium Buckner,2021-04-27,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +Resolution Adopted; 055-000-000,2021-06-01,['passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-23,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 022-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-22,[],IL,102nd +Be Adopted as Amended Healthcare Access and Availability; 007-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-04-19,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2021-04-20,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Assigned to Health Care Licenses Committee,2022-03-07,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-04-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Chief Sponsor Changed to Rep. Frances Ann Hurley,2021-04-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2022-02-17,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-02,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Behavioral and Mental Health,2021-04-07,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Maura Hirschauer,2021-04-08,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2022-02-08,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-25,[],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2021-03-25,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 20, 2021",2021-04-15,['reading-1'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-04-28,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-04-28,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-04-28,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 10, 2021",2021-03-09,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief House Sponsor Rep. LaToya Greenwood,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Chief Senate Sponsor Sen. Brian W. Stewart,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-28,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-14,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-17,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-22,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2022-02-24,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-05-30,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Villivalam,2022-02-23,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-04-27,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-23,[],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2022-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2022-03-03,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-10-20,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-09,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-02-23,[],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-20,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-20,[],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Maurice A. West, II",2022-02-25,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Education,2021-04-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +To Medicaid & Managed Care Subcommittee,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-05-18,[],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-24,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-03-04,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-03-30,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Natalie A. Manley,2021-04-15,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 015-002-000,2022-02-17,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2021-04-14,[],IL,102nd +Chief Senate Sponsor Sen. Steve Stadelman,2021-04-23,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Assigned to Labor & Commerce Committee,2021-05-04,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Steve Stadelman,2021-04-27,[],IL,102nd +House Committee Amendment No. 1 Adopted in Mental Health & Addiction Committee; by Voice Vote,2021-03-26,['amendment-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-06-08,[],IL,102nd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Melinda Bush,2022-02-18,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2023-01-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-02,[],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2021-04-28,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-19,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Do Pass / Short Debate Appropriations-Elementary & Secondary Education Committee; 010-006-000,2022-03-16,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-02-24,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-01-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Standard Debate - Passed 090-023-001,2021-04-15,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Ann Gillespie,2021-04-23,[],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Tony McCombie,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Removed from Consent Calendar Status Rep. Elizabeth Hernandez,2021-04-15,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 013-000-000,2021-04-14,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2022-02-28,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-23,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-20,[],IL,102nd +"Placed on Calendar Order of First Reading April 20, 2021",2021-04-19,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-11,[],IL,102nd +Chief House Sponsor Rep. Mike Murphy,2021-04-22,[],IL,102nd +Chief House Sponsor Rep. Jeff Keicher,2021-04-27,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2022-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-03-04,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-02-24,[],IL,102nd +Chief Senate Sponsor Sen. Dan McConchie,2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-04-14,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-13,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-04-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 22, 2021",2021-04-21,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Brian W. Stewart,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-19,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-04-06,[],IL,102nd +"Removed Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-07-06,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-15,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Elizabeth Hernandez,2022-04-04,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021; Constitutional Amendments",2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-02-03,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-03-25,[],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-20,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-17,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Dave Vella,2022-04-03,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-01,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-04-14,['amendment-failure'],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-05-07,[],IL,102nd +Chief House Sponsor Rep. Michael T. Marron,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-07-08,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Barickman,2021-04-21,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-11,[],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-01,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-17,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-27,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-03-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-08,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Environment and Conservation,2022-02-09,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-15,[],IL,102nd +Removed Co-Sponsor Rep. Daniel Swanson,2021-03-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2022-02-22,[],IL,102nd +Chief House Sponsor Rep. Deanne M. Mazzochi,2021-04-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-21,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-06,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +To Clean Energy Subcommittee,2022-02-08,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-10-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Waive Posting Notice,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Hunter,2022-02-25,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-08,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-03-16,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-01-22,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-02-17,[],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-16,[],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Katie Stuart,2022-03-25,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-09-30,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-03-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-11-30,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-04-13,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Sally J. Turner,2022-03-09,[],IL,102nd +House Floor Amendment No. 1 Fiscal Note Requested as Amended by Rep. Avery Bourne,2022-02-24,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Remains in Appropriations-Human Services Committee,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 105-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-19,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Martin McLaughlin,2022-02-18,['amendment-introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-17,['amendment-failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Connor,2022-02-24,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-07-14,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-02,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Deb Conroy,2022-02-25,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Will Guzzardi,2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-03,[],IL,102nd +Assigned to Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2022-03-08,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2022-03-07,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Health; 013-000-000,2022-02-22,[],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-02-18,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-04-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Personnel & Pensions Committee,2021-04-20,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Dave Vella,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Labor,2022-02-22,[],IL,102nd +Chief Sponsor Changed to Rep. Anthony DeLuca,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-24,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Martwick,2021-04-22,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-04,[],IL,102nd +Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-16,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2022-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +"Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-8(b-1), this amendment will remain in the Committee on Assignments.",2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-04-20,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-18,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-14,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Laura M. Murphy,2022-03-04,[],IL,102nd +Assigned to Personnel & Pensions Committee,2022-03-07,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2022-03-09,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-04,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-10-13,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-25,[],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-02-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-05-20,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-03-07,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Chapin Rose,2021-08-31,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-02-28,[],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-15,[],IL,102nd +Do Pass / Short Debate Prescription Drug Affordability & Accessibility Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Tourism and Hospitality,2021-04-20,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-22,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-12-07,[],IL,102nd +Re-assigned to Licensed Activities,2022-01-05,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-04-06,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2022-03-02,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-10,[],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2021-03-03,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-10-06,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +Third Reading - Short Debate - Passed 110-001-000,2022-03-24,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-03-23,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2021-03-01,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-14,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-03-02,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-03-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Laura Ellman,2022-03-04,[],IL,102nd +Recommends Be Adopted State Government Administration Committee; 007-000-000,2022-03-09,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-10-13,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +Removed from Consent Calendar Status Rep. Avery Bourne,2021-04-20,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-03-25,[],IL,102nd +Senate Committee Amendment No. 2 Postponed - Executive,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-10-24,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Adoption & Child Welfare Committee; 007-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mike Murphy,2021-04-19,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2022-03-10,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-03,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-03-16,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Higher Education Committee; 009-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 005-003-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Mark L. Walker,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Healthcare Access and Availability; 006-000-000,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2022-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-09-16,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-04,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-04-12,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-10-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-16,['referral-committee'],IL,102nd +Re-assigned to Appropriations,2022-01-05,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-16,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-02-24,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-06-16,[],IL,102nd +Do Pass Local Government; 007-000-000,2021-04-14,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-18,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-02-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-02-26,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-02-22,[],IL,102nd +"Removed Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-22,[],IL,102nd +Chief Sponsor Changed to Sen. Rachelle Crowe,2021-04-28,[],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Chief Sponsor Changed to Sen. Ram Villivalam,2021-04-09,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Public Utilities Committee; 024-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Approved for Consideration Assignments,2022-03-22,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-10-27,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-04-23,['reading-2'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-02,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-16,['amendment-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-002-000,2022-04-04,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-16,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Postponed - Transportation,2021-03-24,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-03-07,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Revenue; 011-000-000,2022-02-10,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Fred Crespo,2022-10-06,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-12-15,[],IL,102nd +"To Roadways, Rail & Aviation Subcommittee",2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-17,[],IL,102nd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2021",2021-05-06,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-15,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Veterans' Affairs Committee,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-08,[],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-09,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 007-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-02-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-04-28,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-16,[],IL,102nd +Fiscal Note Filed,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-16,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2022-02-14,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-03-09,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 024-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Chief House Sponsor Rep. Charles Meier,2021-04-23,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted State Government Administration Committee; 006-000-000,2022-02-23,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-16,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Charles Meier,2022-03-01,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-15,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-04,[],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-04-16,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-04-22,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-04,[],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Stephanie A. Kifowit,2021-04-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Elizabeth Hernandez,2022-03-31,['amendment-introduction'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Postponed - State Government,2021-03-24,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. William Davis,2021-04-14,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 010-000-000,2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-01,[],IL,102nd +Resolution Adopted 110-000-000,2021-06-16,['passage'],IL,102nd +Chief House Sponsor Rep. Bob Morgan,2021-04-26,[],IL,102nd +Chief House Sponsor Rep. Aaron M. Ortiz,2021-04-26,[],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2021-04-28,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-28,[],IL,102nd +Recommends Be Adopted Rules Committee; 003-002-000,2021-06-15,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2021-04-19,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-18,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2021-04-21,[],IL,102nd +Assigned to Counties & Townships Committee,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Adopted; DeWitte,2021-04-23,['amendment-passage'],IL,102nd +Assigned to Executive Committee,2021-03-11,['referral-committee'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Chief Senate Sponsor Sen. Thomas Cullerton,2021-04-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2021-04-23,['committee-passage-favorable'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-05-04,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2021-04-23,[],IL,102nd +Removed Co-Sponsor Rep. Camille Y. Lilly,2021-03-08,[],IL,102nd +Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-22,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-30,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Recalled to Second Reading,2021-04-23,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Dale Fowler,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-04-21,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-20,[],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-05-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-09,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 013-000-000,2021-04-14,[],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-13,[],IL,102nd +Chief House Sponsor Rep. Lance Yednock,2021-04-26,[],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +House Committee Amendment No. 2 Adopted in Judiciary - Criminal Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-14,[],IL,102nd +Senate Committee Amendment No. 3 Assignments Refers to Agriculture,2021-04-07,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-06,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Veterans' Affairs Committee,2022-03-01,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Do Pass as Amended Labor; 018-000-000,2021-04-21,['committee-passage'],IL,102nd +Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-03-22,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-04-06,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 23, 2021",2021-03-17,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2022-02-15,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-22,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-26,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 113-000-001,2022-03-02,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-03-15,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Rachelle Crowe,2021-04-21,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-04-08,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas M. Bennett,2022-02-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Bob Morgan,2021-04-22,[],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-04-22,['committee-passage-favorable'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-03,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Immigration & Human Rights Committee; 007-000-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2021-04-15,[],IL,102nd +Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Castro,2021-04-22,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 026-000-000,2022-02-23,['committee-passage-favorable'],IL,102nd +Resolution Adopted; 054-000-000,2022-04-09,['passage'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-05-28,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Veterans' Affairs Committee; 005-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-10-28,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Doris Turner,2021-04-15,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-04,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-04-03,[],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2021-03-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-04-21,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-001,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-04-05,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-01,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-01-31,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-02-23,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +Recommends Be Adopted Consumer Protection Committee; 005-000-000,2021-05-18,['committee-passage-favorable'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-03-22,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2021-04-13,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-23,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Assigned to Health Care Licenses Committee,2021-04-28,['referral-committee'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +Third Reading - Consent Calendar - Passed 105-002-001,2021-04-16,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-04-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2021-03-23,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Criminal Law,2021-04-13,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 037-014-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-04-01,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2021-04-21,[],IL,102nd +Assigned to Veterans' Affairs Committee,2022-03-01,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 107-000-001,2021-04-16,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-05-25,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 23, 2021",2021-03-17,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-07,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2022-03-02,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-04-15,[],IL,102nd +Second Reading,2021-05-05,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Assigned to Higher Education Committee,2021-05-04,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +Do Pass as Amended Executive; 012-000-000,2022-02-17,['committee-passage'],IL,102nd +Chief Sponsor Changed to Rep. Dave Vella,2021-04-19,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-12,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-10,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Human Rights,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Recommends Be Adopted - Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Recalled to Second Reading,2021-04-23,['reading-2'],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-26,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-14,[],IL,102nd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2022-03-01,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Adopted in Immigration & Human Rights Committee; by Voice Vote,2021-03-10,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2021-06-01,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2021-03-08,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2021-03-23,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Thomas M. Bennett,2021-04-27,[],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 068-045-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Suspend Rule 21 - Prevailed,2022-04-08,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-29,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 012-007-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Agriculture,2021-04-07,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-23,[],IL,102nd +Recalled to Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Third Reading - Passed; 055-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Higher Education Committee,2021-04-14,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Caulkins,2022-01-05,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. William Davis,2022-03-01,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-02-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-14,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-01-19,[],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-06-01,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-22,[],IL,102nd +Assigned to Police & Fire Committee,2022-01-25,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-03-02,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Public Utilities Committee; 023-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2021-04-29,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2021-03-31,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Postponed - Executive,2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-04-20,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2021-05-03,[],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2022-03-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-01-27,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-09-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-03,[],IL,102nd +Chief Co-Sponsor Changed to Sen. Dan McConchie,2022-02-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-16,['amendment-failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2022-04-07,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-08-31,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-26,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-14,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-15,[],IL,102nd +Re-assigned to Revenue,2022-11-22,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Steve McClure,2022-03-16,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2022-03-01,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +To Sex Offenses and Sex Offender Registration Subcommittee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-01-21,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-14,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-11-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-17,[],IL,102nd +Chief House Sponsor Rep. Mark L. Walker,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Omar Aquino,2022-02-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-08,[],IL,102nd +Re-assigned to Energy and Public Utilities,2021-05-10,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Doris Turner,2022-03-07,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-04-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-04-28,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Elizabeth Hernandez,2021-05-28,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading - Short Debate,2022-03-03,['reading-2'],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-08-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Fiscal Note Requested as Amended by Rep. Tom Demmer,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-10-01,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-02,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kambium Buckner,2021-04-19,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-10,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-08-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-10-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2021-04-22,[],IL,102nd +Re-assigned to Appropriations,2022-02-08,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2022-03-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-04-22,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-01-31,[],IL,102nd +Third Reading - Standard Debate - Passed 070-043-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-01-04,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-14,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-03-01,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Re-assigned to Licensed Activities,2022-01-05,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Removed Co-Sponsor Rep. Paul Jacobs,2021-05-31,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-11-19,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2022-03-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Brian W. Stewart,2022-04-04,[],IL,102nd +Remove Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-02-11,[],IL,102nd +Chief Senate Sponsor Sen. Neil Anderson,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-08,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended Licensed Activities; 007-000-000,2021-04-21,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Elizabeth Hernandez,2022-04-03,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-01-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jim Durkin,2021-09-23,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-006-000,2021-03-26,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-15,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-11-01,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-20,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Do Pass as Amended Revenue; 009-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-24,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-03-10,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dan Ugaste,2021-05-04,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-08-19,[],IL,102nd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-10-01,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-11-16,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-08-09,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-07,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-03-23,[],IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-25,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-01,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-01-06,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-11-30,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-14,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-08,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-06-01,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-04-09,[],IL,102nd +Third Reading - Short Debate - Passed 102-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-02,[],IL,102nd +To Law Enforcement Subcommittee,2022-01-28,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-01-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-22,[],IL,102nd +Chief Senate Sponsor Sen. Donald P. DeWitte,2021-05-04,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-15,[],IL,102nd +First Reading,2022-04-04,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 014-000-000,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-22,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Police & Fire Committee,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-01-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 22, 2021",2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Education,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Castro,2021-04-21,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +To Appropriations- Health,2022-02-08,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2022-03-10,['reading-1'],IL,102nd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2022-02-15,['amendment-passage'],IL,102nd +Assigned to Financial Institutions Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-12,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-04-08,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Laura Ellman,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Rep. Debbie Meyers-Martin,2022-03-21,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-09,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 071-039-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-17,['amendment-failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Patrick Windhorst,2021-03-22,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-15,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-29,[],IL,102nd +Assigned to Criminal Law,2022-03-22,['referral-committee'],IL,102nd +"House Committee Amendment No. 2 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2022-02-16,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-01,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-01-31,[],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-01-04,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-06,[],IL,102nd +House Floor Amendment No. 1 Pension Note Requested as Amended by Rep. Tom Demmer,2022-03-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 073-029-002,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-04,[],IL,102nd +Do Pass Revenue; 009-001-000,2022-11-29,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-03-16,[],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-01,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Do Pass / Consent Calendar Executive Committee; 014-000-000,2021-05-12,['committee-passage'],IL,102nd +Approved for Consideration Assignments,2021-05-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Chief Senate Sponsor Sen. Ann Gillespie,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Human Rights,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-20,[],IL,102nd +Assigned to Human Services Committee,2021-03-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 007-000-000,2021-05-11,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2022-03-04,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 098-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Re-assigned to Executive,2021-04-23,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-25,[],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2021-04-26,[],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-05-11,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-05-12,['committee-passage'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2021-04-23,['committee-passage-favorable'],IL,102nd +Assigned to Judiciary,2021-05-11,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 016-000-001,2021-05-13,['committee-passage'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-04,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-03-16,['amendment-introduction'],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2021-05-10,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2021-06-15,[],IL,102nd +Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Chief House Sponsor Rep. David A. Welter,2021-04-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2021-05-03,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2021-05-13,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-05-27,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Tourism and Hospitality; 009-000-000,2021-04-22,[],IL,102nd +First Reading,2022-03-16,['reading-1'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Do Pass / Short Debate Human Services Committee; 012-000-000,2022-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-04,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-05-06,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-03-08,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-18,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-20,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-10-28,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2021-03-22,[],IL,102nd +Remove Chief Co-Sponsor Rep. La Shawn K. Ford,2021-03-05,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-01,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-22,[],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2021-04-23,[],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2022-03-04,[],IL,102nd +"Removed Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-31,[],IL,102nd +Removed from Consent Calendar Status Rep. Bob Morgan,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-03-03,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-20,[],IL,102nd +Recalled to Second Reading,2022-02-23,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-07,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-21,[],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-06,[],IL,102nd +"Chief Co-Sponsor Changed to Rep. Marcus C. Evans, Jr.",2021-02-26,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-09,[],IL,102nd +Re-assigned to Health Care Availability & Accessibility Committee,2022-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-09,[],IL,102nd +Arrive in Senate,2022-03-28,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Labor; 016-000-000,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Jones,2022-02-24,['amendment-passage'],IL,102nd +"Chief House Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-23,[],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Do Pass Licensed Activities; 006-002-000,2021-04-21,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Ugaste,2022-03-01,[],IL,102nd +Chief House Sponsor Rep. Mark Batinick,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-28,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Mark Batinick,2021-04-20,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 014-000-000,2022-02-22,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Veterans' Affairs Committee; 009-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-08-04,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Connor,2022-02-24,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-18,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-12-07,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-02,['reading-1'],IL,102nd +Assigned to Pensions,2022-03-29,['referral-committee'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2022-03-17,['committee-passage'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-17,[],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +First Reading,2022-03-28,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-11-30,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Third Reading - Short Debate - Passed 100-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 027-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-15,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-16,[],IL,102nd +Assigned to Energy & Environment Committee,2022-01-19,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2021-08-31,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-12-07,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Removed from Consent Calendar Status Rep. Steven Reick,2022-02-23,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-09,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-19,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-01-24,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-04,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Sally J. Turner,2021-04-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2022-02-25,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Judiciary,2021-04-14,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-29,[],IL,102nd +House Committee Amendment No. 1 To Special Issues (AP) Subcommittee,2021-03-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Adam Niemerg,2021-03-22,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Behavioral and Mental Health,2022-02-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tom Weber,2021-05-05,[],IL,102nd +Assigned to Energy & Environment Committee,2022-03-07,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mark L. Walker,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-12-14,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-12-01,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2022-03-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. Margaret Croke,2022-02-23,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-03,[],IL,102nd +Pursuant to Rule 5-1(b) Consent is given to Senator Connor to present bill.,2022-02-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-02-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Assigned to State Government Administration Committee,2022-03-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +Do Pass as Amended Judiciary; 006-001-001,2021-03-24,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-02-22,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-03-09,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2022-01-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2022-02-17,['amendment-failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-03,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-12,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-03-16,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 008-000-000,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-10-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; D. Turner,2021-04-22,['amendment-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-20,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Ellman,2022-02-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-16,[],IL,102nd +To Appropriations- Human Services,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-24,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Assigned to Executive Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-02-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Cyril Nichols,2022-03-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 23, 2022",2022-03-22,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-27,[],IL,102nd +Chief Senate Sponsor Sen. John F. Curran,2021-04-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Agriculture,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-17,[],IL,102nd +Third Reading - Short Debate - Passed 069-042-000,2022-03-24,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-04-01,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-01-18,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-12-07,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Avery Bourne,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Pensions; 008-000-000,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-02-26,[],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2021-04-12,[],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-04-19,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-04,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2022-10-25,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Rezin,2021-04-23,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-05-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-08,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-03-01,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2021-04-13,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-05-05,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Veterans' Affairs Committee; 009-000-000,2022-02-16,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-02-16,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-04-04,[],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-01,['amendment-passage'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +First Reading,2022-03-03,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-03-10,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-10-06,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Postponed - Executive,2021-04-15,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Terra Costa Howard,2022-02-25,[],IL,102nd +Removed Co-Sponsor Rep. Mark Batinick,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-23,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. William Davis,2021-05-12,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-09-16,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-10-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-11-29,[],IL,102nd +Re-assigned to Public Safety,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-05,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-02-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Chief Sponsor Changed to Rep. Rita Mayfield,2022-04-04,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-05,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Eva-Dina Delgado,2022-03-21,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-25,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-17,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-24,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-04,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2022-02-16,['amendment-passage'],IL,102nd +Removed from Short Debate Status,2021-04-22,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Sponsor Removed Sen. Doris Turner,2022-02-28,[],IL,102nd +Re-assigned to Executive,2021-04-29,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-23,[],IL,102nd +Third Reading - Short Debate - Passed 102-004-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-06-16,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-23,[],IL,102nd +"House Floor Amendment No. 2 Recommends Be Adopted - Lost Elementary & Secondary Education: Administration, Licensing & Charter Schools; 003-003-002",2022-03-03,['committee-passage-favorable'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-01,[],IL,102nd +Third Reading - Short Debate - Passed 103-000-002,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Holmes,2021-04-23,['amendment-passage'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-05-10,[],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2022-03-04,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-23,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2021-05-10,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 011-007-000,2021-05-13,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-31,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-04-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Reported Back To Health; 005-000-000,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-04-23,[],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-22,[],IL,102nd +Do Pass Revenue; 009-000-000,2021-04-15,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-06,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-05-04,['referral-committee'],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-03-23,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-02-05,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-15,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to State Government Administration Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-10-28,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-18,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-05-25,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-08,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-23,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-19,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-10-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Munoz,2021-04-23,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-24,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 15, 2021",2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Crowe,2021-04-22,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Chief Senate Sponsor Sen. Terri Bryant,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 013-000-000,2021-04-28,[],IL,102nd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-22,[],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-04-15,['amendment-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Resolution Adopted 078-005-002,2022-04-08,['passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 007-001-000,2021-04-20,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-02-23,[],IL,102nd +Resolution Adopted; 054-000-000,2021-06-01,['passage'],IL,102nd +Recommends Be Adopted Human Services Committee; 015-000-000,2022-04-08,['committee-passage-favorable'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 098-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Do Pass as Amended / Consent Calendar Immigration & Human Rights Committee; 008-000-000,2021-03-10,['committee-passage'],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-04-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 22, 2021",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-02-26,[],IL,102nd +Chief House Sponsor Rep. Suzanne Ness,2021-04-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Mike Murphy,2021-04-21,[],IL,102nd +Assigned to State Government Administration Committee,2021-05-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Sam Yingling,2021-04-14,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 22, 2022",2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Dave Syverson,2021-03-23,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-28,[],IL,102nd +Chief House Sponsor Rep. Carol Ammons,2021-04-22,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Win Stoller,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Karina Villa,2021-04-15,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Human Rights; 009-000-000,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - State Government,2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Agriculture,2021-04-15,[],IL,102nd +Assigned to Executive,2021-05-29,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-27,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Theresa Mah,2022-03-01,[],IL,102nd +Assigned to Energy & Environment Committee,2021-05-04,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-05-04,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-01,['referral-committee'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 008-000-000,2021-05-04,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Recommends Be Adopted Veterans' Affairs Committee; 009-000-000,2022-03-08,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 007-000-000,2021-04-20,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-13,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Chief House Sponsor Rep. Ann M. Williams,2021-04-26,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2022-02-23,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-27,[],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2021-04-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Hastings,2021-04-22,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-03-17,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Resolution Adopted,2022-03-09,['passage'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-25,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2021-03-23,[],IL,102nd +Assigned to Transportation,2021-05-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-23,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-06,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-14,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-15,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2021-05-12,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-04-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 23, 2021",2021-03-17,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Third Reading - Passed; 053-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-14,[],IL,102nd +Assigned to Insurance Committee,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Standard Debate - Passed 068-044-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Adopted; Loughran Cappel,2021-04-20,['amendment-passage'],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-01,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Holmes,2021-04-22,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-21,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2021-05-13,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-001-000,2021-05-28,['committee-passage-favorable'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-04,[],IL,102nd +Senate Committee Amendment No. 2 Postponed - Criminal Law,2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Amy Elik,2021-05-11,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-22,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2021-03-08,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-02-08,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Education,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-03-23,[],IL,102nd +Assigned to Health,2021-04-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-03-18,[],IL,102nd +Third Reading - Passed; 039-016-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar - Consideration Postponed,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-18,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Removed Co-Sponsor Rep. Jonathan Carroll,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-04-14,[],IL,102nd +"Added Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-03-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-23,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Murphy,2021-05-12,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-02-19,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-22,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-04-20,[],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-03-08,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-02-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lakesia Collins,2022-03-01,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-03,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +First Reading,2021-05-06,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. Jehan Gordon-Booth,2022-04-03,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-07-11,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-05-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 13, 2021",2021-05-12,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 24, 2022",2022-02-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2021-04-16,[],IL,102nd +Chief Sponsor Changed to Rep. Michael J. Zalewski,2022-04-06,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Chief House Sponsor Rep. Jonathan Carroll,2021-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-04-20,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-01-11,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-11-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-22,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-11-30,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-02-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-02-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Suzanne Ness,2021-04-20,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-12,[],IL,102nd +Second Reading,2022-11-30,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-03-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-03-15,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Reported Back To Health; 003-000-000,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-29,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-01,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. C.D. Davidsmeyer,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-24,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Linda Holmes,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-02-18,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-21,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Neil Anderson,2022-03-07,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-01-19,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2021-04-21,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-04-15,[],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-05-04,[],IL,102nd +Remains in Appropriations-Human Services Committee,2022-03-17,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Police & Fire Committee,2022-01-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-01-04,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +"Chief Sponsor Changed to Rep. Lamont J. Robinson, Jr.",2022-03-24,[],IL,102nd +"House Committee Amendment No. 2 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-01-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-11-22,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-05,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-12-15,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-01,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-05-26,[],IL,102nd +Removed Co-Sponsor Rep. Anna Moeller,2021-04-12,[],IL,102nd +Approved for Consideration Assignments,2021-05-04,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Lindsey LaPointe,2022-03-17,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Public Safety Committee,2022-02-08,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. William Davis,2021-04-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Michelle Mussman,2022-02-16,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Health Care Availability & Accessibility Committee,2022-03-02,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Assigned to Appropriations,2021-03-24,['referral-committee'],IL,102nd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2021-04-27,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2022-03-08,[],IL,102nd +Chief Sponsor Changed to Rep. Kathleen Willis,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Human Rights,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Transportation,2022-02-22,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-12,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-03-16,['committee-passage'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-05-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2021-04-21,[],IL,102nd +Approved for Consideration Assignments,2022-01-11,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Counties & Townships Committee; 011-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-03-09,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-04,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Joyce Mason,2022-03-22,[],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2021-04-22,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2022-03-04,[],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-04,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Morrison,2022-02-25,['amendment-passage'],IL,102nd +Chief Sponsor Changed to Sen. Jacqueline Y. Collins,2022-02-22,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2022-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-18,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-04,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-08-13,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Rep. Katie Stuart,2022-03-28,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-05-07,[],IL,102nd +Chief House Sponsor Rep. Keith R. Wheeler,2022-02-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-04-21,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2022-03-17,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2021-03-22,['amendment-introduction'],IL,102nd +Recalled to Second Reading - Short Debate,2022-03-04,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Terri Bryant,2022-03-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-04-04,[],IL,102nd +Third Reading - Consent Calendar - Passed 098-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Do Pass Executive; 011-002-000,2021-04-15,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-04-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-01-28,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Transportation,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-01-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-03-16,[],IL,102nd +Senate Floor Amendment No. 1 Adopted,2022-02-25,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2022-02-28,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-04-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2022-02-18,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-26,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-12-01,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-12,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2022-02-22,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-02-23,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-02-18,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 020-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-20,[],IL,102nd +Re-assigned to Licensed Activities,2022-01-05,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2022-03-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-02-24,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-02-24,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-03,[],IL,102nd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2022-02-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 006-002-000,2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2022-04-04,[],IL,102nd +Added as Chief Co-Sponsor Sen. Chapin Rose,2022-02-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2022-02-08,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Chief Sponsor Changed to Rep. Michael J. Zalewski,2022-01-18,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2022-02-23,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-25,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-20,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-04-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 18, 2022",2022-01-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Seth Lewis,2021-03-03,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-02-09,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-02-22,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2022-02-25,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-06,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-02-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Koehler,2022-02-23,['amendment-passage'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-12,[],IL,102nd +Assigned to Adoption & Child Welfare Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-03-10,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-09,[],IL,102nd +House Floor Amendment No. 1 Pension Note Requested as Amended by Rep. Avery Bourne,2022-02-24,[],IL,102nd +Removed Co-Sponsor Rep. Tim Butler,2022-03-03,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-03-03,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-10-07,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2022-08-05,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-16,[],IL,102nd +Postponed - Licensed Activities,2021-05-06,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +First Reading,2021-05-26,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2022-02-23,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-01-12,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-07,[],IL,102nd +Chief Sponsor Changed to Sen. Laura Fine,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2021-03-10,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 016-000-000,2022-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-01,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Energy and Public Utilities,2021-05-06,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2021-05-06,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-10-28,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-11,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-03,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Cyril Nichols,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-02-24,[],IL,102nd +Removed from Consent Calendar Status Rep. Will Guzzardi,2022-02-23,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2021-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-29,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-22,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-02,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2022-03-01,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2021-04-20,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-02,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-04-28,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-03-03,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-03-08,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-02-04,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kathleen Willis,2021-05-06,['amendment-introduction'],IL,102nd +Racial Impact Note Filed,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2022-02-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-03-03,['committee-passage-favorable'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-15,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2021-05-06,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 8, 2022",2022-03-02,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-09,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Appropriations,2022-02-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Passed; 052-001-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-24,['committee-passage'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-16,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Adopted in Labor & Commerce Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Personnel & Pensions Committee,2021-03-16,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Energy and Public Utilities,2021-04-22,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2021-05-12,['committee-passage'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Jacqueline Y. Collins,2021-04-27,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-26,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-03-10,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-002-000,2022-04-04,['committee-passage-favorable'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-16,[],IL,102nd +Removed Co-Sponsor Rep. Elizabeth Hernandez,2022-01-28,[],IL,102nd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Committee Amendment No. 2 Rules Refers to State Government Administration Committee,2022-02-15,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-01-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 011-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-16,[],IL,102nd +Chief Sponsor Changed to Rep. Katie Stuart,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-02-03,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Cyril Nichols,2022-02-25,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-07-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 018-000-000,2022-03-22,['committee-passage'],IL,102nd +House Floor Amendment No. 4 Rules Refers to Judiciary - Civil Committee,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2021-04-20,['amendment-introduction'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Maura Hirschauer,2022-03-01,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-09-02,[],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-03,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 2 Postponed - Judiciary,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-07-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-15,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Stadelman,2022-02-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-17,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Assigned to State Government,2022-03-02,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Chief Sponsor Changed to Rep. Rita Mayfield,2022-03-21,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended / Standard Debate Cities & Villages Committee; 007-005-000,2021-04-13,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-01-07,[],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +First Reading,2021-05-10,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-03-12,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Postponed - Financial Institutions,2022-02-23,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Mental Health & Addiction Committee; by Voice Vote,2021-05-06,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-19,[],IL,102nd +Assigned to Labor,2022-03-02,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 017-009-000,2022-02-25,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-04-19,[],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-28,[],IL,102nd +Do Pass / Consent Calendar Executive Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Availability & Accessibility Committee; 012-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-23,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-07,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-26,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-16,['amendment-passage'],IL,102nd +Third Reading - Passed; 054-000-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Tom Demmer,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-05-06,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2022-01-05,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-04-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-25,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Bennett,2021-04-22,['amendment-passage'],IL,102nd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2023-01-06,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-01,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Chief Sponsor Changed to Rep. Kambium Buckner,2022-03-28,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-05-29,[],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2023-01-06,[],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. David Friess,2021-02-05,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 016-000-000,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-08,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-18,[],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-27,[],IL,102nd +Third Reading - Short Debate - Passed 085-007-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Resolution Adopted,2022-03-24,['passage'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-08,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-04-27,[],IL,102nd +Arrive in Senate,2021-03-19,['introduction'],IL,102nd +Chief Sponsor Changed to Rep. Janet Yang Rohr,2022-02-15,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Health,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Murphy,2021-04-22,['amendment-passage'],IL,102nd +Do Pass Education; 011-000-000,2021-04-14,['committee-passage'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-12,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; D. Turner,2021-04-22,['amendment-passage'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Postponed - Licensed Activities,2021-03-24,[],IL,102nd +Chief Senate Sponsor Sen. Laura Ellman,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-22,[],IL,102nd +Chief House Sponsor Rep. Justin Slaughter,2021-04-22,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-04-29,['referral-committee'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 011-000-000,2021-05-06,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-05-05,['committee-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-23,[],IL,102nd +Placed on Calendar - Consideration Postponed,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Do Pass / Consent Calendar Executive Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Chief House Sponsor Rep. Bob Morgan,2021-04-26,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Bennett,2021-04-22,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2021-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2021-04-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 006-004-000,2021-03-11,['committee-passage'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Assigned to Pensions,2021-04-28,['referral-committee'],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Thomas M. Bennett,2021-04-27,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Emil Jones, III",2021-04-27,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Tom Demmer,2021-02-09,[],IL,102nd +Fiscal Note Requested by Rep. Deanne M. Mazzochi,2021-05-05,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2021-04-23,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Judiciary,2021-03-16,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-17,[],IL,102nd +"Placed on Calendar Order of First Reading April 20, 2021",2021-04-19,['reading-1'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-21,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Adopted in Higher Education Committee; by Voice Vote,2021-03-18,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-04,[],IL,102nd +Do Pass / Short Debate Higher Education Committee; 007-003-000,2021-03-18,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-04-09,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 110-000-001,2021-04-20,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Restorative Justice Committee; 004-002-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-23,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-04-23,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-10-27,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-04,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Feigenholtz,2021-04-21,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Laura M. Murphy,2021-04-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Assigned to Personnel & Pensions Committee,2021-04-28,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Sonya M. Harper,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2021-03-25,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Syverson,2021-04-21,['amendment-passage'],IL,102nd +Chief House Sponsor Rep. Jay Hoffman,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-05-19,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Michael E. Hastings,2021-04-26,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Fiscal Note Requested as Amended - Withdrawn by Rep. Tom Demmer,2022-03-03,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Pensions,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +House Committee Amendment No. 2 Adopted in Economic Opportunity & Equity Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +Co-Sponsor Rep. Elizabeth Hernandez,2021-02-08,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Linda Holmes,2022-03-10,['amendment-introduction'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-12,[],IL,102nd +Chief Sponsor Changed to Sen. Scott M. Bennett,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2021-04-20,[],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-01-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lance Yednock,2021-05-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-03-07,['referral-committee'],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-05,[],IL,102nd +Re-assigned to Education,2021-04-20,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Keith R. Wheeler,2021-05-05,[],IL,102nd +Chief House Sponsor Rep. Dagmara Avelar,2021-04-28,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mike Murphy,2021-10-28,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-08,[],IL,102nd +Chief House Sponsor Rep. Bob Morgan,2021-04-26,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-09,[],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Resolution Adopted 063-045-000,2021-05-30,['passage'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 111-000-001,2022-02-23,"['passage', 'reading-3']",IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Assigned to Executive Committee,2021-03-11,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 027-000-000,2021-05-05,['committee-passage'],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-01,[],IL,102nd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2021-03-11,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2021-04-22,[],IL,102nd +House Committee Amendment No. 1 To Medicaid & Managed Care Subcommittee,2021-03-19,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-04-04,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2022-02-22,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2023-01-06,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-23,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2022-02-22,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Judiciary - Civil Committee,2021-04-21,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-03-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2022-07-06,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-02,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-12,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-02-24,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-03-16,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2022-03-16,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-02-15,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Rachelle Crowe,2021-03-25,[],IL,102nd +Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-25,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-15,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 005-003-000,2022-03-02,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2021-04-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2021-03-11,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-04-03,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-15,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 014-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-17,['amendment-failure'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 013-000-000,2021-04-28,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-22,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 20, 2021",2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 015-002-000,2021-04-20,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-04-13,[],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2021-04-23,[],IL,102nd +Removed Co-Sponsor Rep. Terra Costa Howard,2021-04-20,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2021-04-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Suzanne Ness,2021-05-04,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2021-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 108-005-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-10-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-03-04,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Ryan Spain,2021-04-26,[],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2021-04-23,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-15,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Mark L. Walker,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2021-04-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Chief House Sponsor Rep. Maurice A. West, II",2021-04-26,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 3 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 028-000-000,2021-05-12,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Jackie Haas,2022-03-24,[],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-07-08,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-03-01,[],IL,102nd +"Chief House Sponsor Rep. Maurice A. West, II",2021-04-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-01-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Michael T. Marron,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Re-assigned to Revenue,2022-01-05,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-20,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Passed; 055-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-05-07,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2022-03-02,['amendment-introduction'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-14,[],IL,102nd +Do Pass / Consent Calendar Executive Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-03-23,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Higher Education Committee; 006-003-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-27,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +First Reading,2021-04-20,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Villivalam,2021-04-29,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Housing Affordability Impact Note Filed as Amended,2021-04-22,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-11-15,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sue Scherer,2022-02-22,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-13,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Chief Senate Sponsor Sen. Thomas Cullerton,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-29,[],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2022-03-07,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-04-28,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-20,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Lindsey LaPointe,2021-04-28,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-05-03,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Mental Health & Addiction Committee; 016-000-000,2021-03-26,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-04-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-08,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-04-15,[],IL,102nd +First Reading,2021-05-06,['reading-1'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-20,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-11,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Kimberly A. Lightford,2021-04-20,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Bush,2021-04-22,['amendment-passage'],IL,102nd +Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 012-001-000,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-04-21,[],IL,102nd +Resolution Adopted,2022-04-05,['passage'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-26,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2022-02-22,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-14,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-04-04,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2022-02-15,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-02-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Agriculture,2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-31,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-03-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-03-05,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-02,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Mark Luft,2021-04-22,[],IL,102nd +House Committee Amendment No. 3 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 012-000-000,2021-04-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-15,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-12,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-001-000,2022-03-31,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2022-04-01,['amendment-introduction'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-04-15,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-04-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Linda Holmes,2022-03-02,['amendment-introduction'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-002-000,2022-04-04,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-04,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Assigned to Executive,2022-03-02,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-23,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-05-30,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-16,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 113-001-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-01-24,[],IL,102nd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Bill Cunningham,2021-04-09,['amendment-introduction'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Maura Hirschauer,2022-03-01,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-01-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-15,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-01-25,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-16,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-05,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2022-02-17,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 009-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-03-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 103-001-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 008-000-000,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 17, 2022",2022-02-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Assigned to Higher Education,2022-03-24,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2021-03-12,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Co-Sponsor Changed to Rep. LaToya Greenwood,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-02-23,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 22, 2022",2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Chief House Sponsor Rep. Michael Halpin,2022-02-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Burke,2022-03-09,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-05-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-04-14,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Gillespie,2021-04-22,['amendment-passage'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-01-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-04-09,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2022-04-04,[],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +Chief Sponsor Changed to Rep. Carol Ammons,2022-03-24,[],IL,102nd +First Reading,2021-05-06,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-02-03,[],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2022-03-04,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-02-23,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2022-04-06,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Murphy,2022-02-24,['amendment-passage'],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-03-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Assigned to Immigration & Human Rights Committee,2022-03-07,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-04-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 28, 2021",2021-04-27,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-16,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2022-02-24,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Second Reading,2021-05-12,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-15,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-02-10,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Behavioral and Mental Health,2021-03-25,[],IL,102nd +Arrived in House,2021-04-28,['introduction'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Financial Institutions Committee; 009-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +First Reading,2022-03-16,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 065-038-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-03-12,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-15,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-08-31,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Pensions; 008-000-000,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-24,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-05,[],IL,102nd +Re-referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 8, 2022",2022-03-02,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-01-20,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2021-04-21,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-07,[],IL,102nd +First Reading,2022-03-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-02-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-15,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-06,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-02-17,[],IL,102nd +Chief Senate Sponsor Sen. Brian W. Stewart,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Third Reading - Short Debate - Passed 072-034-003,2021-04-23,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-18,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-05-20,[],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 018-007-000,2022-02-16,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-04-20,[],IL,102nd +"Motion Filed to Reconsider Vote Rep. Jaime M. Andrade, Jr.",2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-25,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-02-18,[],IL,102nd +Senate Floor Amendment No. 1 To Appropriations- Human Services,2021-04-20,[],IL,102nd +Do Pass as Amended Insurance; 014-000-000,2022-03-30,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-01-25,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-19,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-03-07,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-01-13,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-03-24,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-28,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-20,[],IL,102nd +To Property Tax Subcommittee,2021-05-06,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-05-10,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-02-24,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-02-22,[],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +Placed on Calendar - Consideration Postponed,2021-04-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-26,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Andrew S. Chesney,2021-05-12,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Christopher Belt,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Cristina Castro,2022-02-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Do Pass / Short Debate Child Care Accessibility & Early Childhood Education Committee; 010-000-000,2021-03-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-01-24,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-21,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Cyril Nichols,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 005-003-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-05-20,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-02-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-04-21,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed,2022-02-16,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 096-004-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-01-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Home Rule Note Requested by Rep. Sonya M. Harper,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Collins,2021-04-22,['amendment-passage'],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-05-06,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-04-05,[],IL,102nd +Chief House Sponsor Rep. Kathleen Willis,2021-04-26,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2022-02-24,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-03-16,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-05-06,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-15,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-23,['amendment-failure'],IL,102nd +"Motion Filed to Suspend Rule 21 Transportation: Regulation, Roads & Bridges Committee; Rep. Elizabeth Hernandez",2023-01-10,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-25,['amendment-failure'],IL,102nd +Chief Sponsor Changed to Sen. Mike Simmons,2021-04-28,[],IL,102nd +Assigned to Pensions,2021-05-10,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2021-04-28,[],IL,102nd +Assigned to Executive Committee,2022-04-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-15,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-15,[],IL,102nd +Fiscal Note Requested by Rep. Tom Demmer,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-24,[],IL,102nd +Do Pass as Amended / Consent Calendar Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-20,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Behavioral and Mental Health; 011-000-000,2021-04-14,[],IL,102nd +Removed Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-03-09,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-01,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - Passed 109-008-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-21,[],IL,102nd +Adopted Both Houses,2022-04-08,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-30,[],IL,102nd +Chief House Sponsor Rep. Lakesia Collins,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Kelly M. Burke,2021-04-15,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-11,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Do Pass as Amended Judiciary; 007-000-000,2022-02-22,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-02,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2022-03-14,['amendment-introduction'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Energy and Public Utilities; 012-005-000,2022-02-24,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lance Yednock,2021-05-04,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Michael J. Zalewski,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-23,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 6, 2021",2021-05-05,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-07-21,[],IL,102nd +First Reading,2022-03-16,['reading-1'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2021-04-13,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Melinda Bush,2022-02-18,['amendment-introduction'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-20,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 006-000-000,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2021-05-12,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Joyce,2021-04-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-11,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2022-02-22,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 098-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Health; 011-000-000,2021-04-20,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-19,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-10,[],IL,102nd +First Reading,2021-05-05,['reading-1'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Assigned to Insurance Committee,2022-01-19,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Keith R. Wheeler,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-02-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-16,['referral-committee'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-20,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-22,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Keith P. Sommer,2021-03-16,[],IL,102nd +Resolution Adopted; 055-000-000,2021-06-01,['passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-16,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-04-29,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-04-27,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-04-13,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 013-000-000,2022-03-30,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-20,[],IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Do Pass as Amended / Short Debate Human Services Committee; 009-006-000,2022-02-16,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 013-000-000,2021-04-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Third Reading - Short Debate - Passed 101-003-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Chris Bos,2022-03-01,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Chief House Sponsor Rep. Deb Conroy,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2022-02-23,[],IL,102nd +Do Pass / Consent Calendar Public Utilities Committee; 023-000-000,2021-05-04,['committee-passage'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 007-000-000,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-04-21,[],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2022-03-17,['committee-passage'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-22,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Michael Halpin,2022-02-24,[],IL,102nd +Adopted Both Houses,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2022-02-15,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-05-30,[],IL,102nd +Assigned to Insurance Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-02-06,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 005-003-000,2022-03-16,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-02-05,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-02-05,[],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 010-000-000",2022-03-15,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Energy and Public Utilities; 018-000-000,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2021-04-20,[],IL,102nd +Do Pass as Amended Education; 015-000-000,2022-02-09,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-15,[],IL,102nd +Third Reading - Passed; 049-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Adopted,2022-02-24,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-03-18,[],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 010-000-000",2023-01-10,['committee-passage-favorable'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-10-20,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 089-017-000,2022-03-01,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-03-10,[],IL,102nd +Assigned to Executive,2022-03-02,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-04-27,[],IL,102nd +Chief Senate Sponsor Sen. Laura Ellman,2021-04-19,[],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2021-05-05,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-22,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2022-03-02,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-10,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-10-18,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-15,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +First Reading,2022-03-16,['reading-1'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-02-16,[],IL,102nd +Chief House Sponsor Rep. Anthony DeLuca,2021-04-28,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Removed from Resolution Consent Calendar,2021-04-14,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-04-15,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Recalled to Second Reading,2021-04-23,['reading-2'],IL,102nd +Chief House Sponsor Rep. Michael Halpin,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-01-21,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-01-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2022-02-17,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 20, 2021",2021-05-19,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-10-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-19,[],IL,102nd +Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 011-000-000,2021-05-06,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Healthcare Access and Availability,2022-01-26,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-10-20,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-04-27,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-28,[],IL,102nd +Assigned to Counties & Townships Committee,2021-04-28,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-03-01,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2022-03-17,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2022-02-15,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 007-001-000,2021-03-15,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +House Committee Amendment No. 1 Adopted in Personnel & Pensions Committee; by Voice Vote,2021-03-19,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-07-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Postponed - Executive,2022-03-23,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-19,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Joyce,2021-04-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-20,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Kelly M. Burke,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-27,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-04-14,['amendment-failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-18,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-21,[],IL,102nd +First Reading,2021-05-05,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-23,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Assigned to State Government Administration Committee,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Belt,2021-04-22,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-11,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-05-05,['committee-passage'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Resolution Adopted as Amended 059-000-000,2021-05-31,['passage'],IL,102nd +Third Reading - Passed; 049-003-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Paul Jacobs,2022-03-02,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-04-08,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-02-06,[],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 007-000-000,2021-05-04,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-07,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Referred to Assignments,2021-05-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Energy and Public Utilities; 012-006-000,2022-02-24,[],IL,102nd +Do Pass / Short Debate Insurance Committee; 014-000-000,2022-03-15,['committee-passage'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Resolution Adopted 114-000-000,2021-10-28,['passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Do Pass Pensions; 006-000-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2022-03-24,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-15,[],IL,102nd +Assigned to Personnel & Pensions Committee,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-16,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-02-23,[],IL,102nd +Third Reading - Short Debate - Passed 068-044-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-14,['amendment-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-03-24,[],IL,102nd +Third Reading - Short Debate - Passed 099-001-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-10-18,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-14,['referral-committee'],IL,102nd +Assigned to Financial Institutions Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-04-15,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 014-000-000,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 23, 2022",2022-02-22,[],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-02-22,[],IL,102nd +Resolution Adopted 114-000-000,2022-04-06,['passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-31,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-05-06,['committee-passage'],IL,102nd +Assigned to Health Care Licenses Committee,2021-04-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Recommends Be Adopted Economic Opportunity & Equity Committee; 006-000-000,2022-04-04,['committee-passage-favorable'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2022-02-16,[],IL,102nd +Removed Co-Sponsor Rep. Barbara Hernandez,2021-03-11,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Consumer Protection Committee; 006-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-10,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Do Pass as Amended Transportation; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Chief House Sponsor Rep. Kambium Buckner,2021-04-26,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-05-18,[],IL,102nd +Chief House Sponsor Rep. Thaddeus Jones,2022-02-28,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading March 19, 2021",2021-03-19,['reading-1'],IL,102nd +Removed Co-Sponsor Rep. Chris Bos,2021-03-17,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Jehan Gordon-Booth,2022-02-16,[],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2021-04-27,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-16,[],IL,102nd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2023-01-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Recommends Do Pass Subcommittee/ Insurance Committee; 003-000-000,2021-03-22,['committee-passage'],IL,102nd +Assigned to Police & Fire Committee,2021-05-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Mike Murphy,2021-04-29,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading,2021-04-28,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Third Reading - Short Debate - Passed 100-012-000,2021-04-14,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Michelle Mussman,2021-04-26,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 007-000-000,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Health,2021-04-22,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-14,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-02-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Margaret Croke,2021-04-27,[],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Revenue; 010-000-000,2021-04-21,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. William Davis,2021-03-25,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-02-18,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-10-20,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Bennett,2021-04-29,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-02-05,[],IL,102nd +Removed Co-Sponsor Rep. Norine K. Hammond,2021-03-25,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Do Pass as Amended Health; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Martwick,2021-04-22,['amendment-passage'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-24,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-05-05,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-24,[],IL,102nd +Third Reading - Passed; 042-009-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Steven Reick,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 006-000-000,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Placed on Calendar Order of Resolutions,2023-01-10,[],IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2022-02-07,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2021-04-08,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Adopted; Morrison,2021-04-22,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-02-05,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2022-01-05,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-18,['amendment-introduction'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-16,[],IL,102nd +Removed Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-05-05,[],IL,102nd +Chief House Sponsor Rep. Michelle Mussman,2022-02-23,[],IL,102nd +Chief Sponsor Changed to Rep. Lindsey LaPointe,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-15,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-19,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-16,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-16,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Health,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2022-03-24,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-12,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2022-01-20,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-10,[],IL,102nd +To Income Tax Subcommittee,2022-02-15,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 014-000-000,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-24,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-23,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 009-006-000,2022-04-06,['committee-passage-favorable'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-04-04,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-08,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-02-24,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-01-25,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2022-03-16,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-04,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2022-03-01,['amendment-introduction'],IL,102nd +Do Pass Executive; 014-000-000,2022-03-23,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Frances Ann Hurley,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Agriculture,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-02-28,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Veterans' Affairs Committee,2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-03,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-26,['reading-3'],IL,102nd +House Committee Amendment No. 3 Rules Refers to Labor & Commerce Committee,2022-02-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-22,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-02,[],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-11,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-09,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2022-01-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-14,[],IL,102nd +Do Pass / Short Debate Immigration & Human Rights Committee; 008-000-000,2022-03-16,['committee-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-31,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2022-03-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Education,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-04-14,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-05-11,['committee-passage'],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2022-01-10,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-10,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-01,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-16,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Third Reading - Passed; 049-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-23,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-24,[],IL,102nd +Chief House Sponsor Rep. Jonathan Carroll,2021-04-26,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-03-02,[],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-21,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-03-23,['committee-passage'],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 3 Referred to Assignments,2021-04-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-01-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Sue Rezin,2022-02-22,['amendment-introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-01-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Cunningham,2021-04-21,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-17,['amendment-failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-28,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-04-22,['amendment-failure'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-25,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-02,[],IL,102nd +Third Reading - Short Debate - Passed 111-002-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-18,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 021-000-000,2022-03-16,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2022-03-22,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-03,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-01-25,[],IL,102nd +First Reading,2021-04-20,['reading-1'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-04-04,[],IL,102nd +Third Reading - Short Debate - Passed 103-001-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-04-30,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2021-04-21,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Assigned to Transportation,2021-05-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-05-03,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-12,[],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-22,[],IL,102nd +Chief Senate Sponsor Sen. Sally J. Turner,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 107-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-01-28,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Judiciary - Criminal Committee,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-08,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +Second Reading - Short Debate,2022-03-17,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-03-23,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-04-13,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-21,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-04-21,[],IL,102nd +Assigned to Health,2022-03-02,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 1 Fiscal Note Filed as Amended,2021-04-23,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. David Koehler,2021-04-23,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Passed; 052-000-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2021-03-23,[],IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2021-04-27,[],IL,102nd +Chief House Sponsor Rep. Camille Y. Lilly,2021-04-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Health; 013-000-000,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Tim Ozinga,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-25,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-02-24,[],IL,102nd +First Reading,2022-03-16,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-07-06,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Janet Yang Rohr,2021-04-28,[],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2021-04-27,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-22,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2021-05-05,['reading-1'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2021-03-24,[],IL,102nd +"Motion Do Pass - Lost Transportation: Regulation, Roads & Bridges Committee; 005-008-000",2022-02-15,['committee-failure'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 018-000-000,2021-05-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading December 1, 2022",2022-11-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2022-02-07,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Theresa Mah,2021-04-15,['amendment-introduction'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Balanced Budget Note Requested as Amended by Rep. Thomas Morrison,2022-03-01,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Appropriations-Human Services Committee,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-22,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-02,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-04-03,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Licenses Committee; 005-003-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-03-04,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-05-07,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-03-01,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-07-08,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-10-04,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-05-20,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-03-02,[],IL,102nd +Assigned to Human Services Committee,2021-05-04,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2021-05-12,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-14,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Assigned to Education,2021-05-10,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Katie Stuart,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2022-02-25,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-04-27,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-03-01,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted - Lost Cities & Villages Committee; 004-006-000,2021-04-22,['committee-passage-favorable'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-01-06,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Thomas Cullerton,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-01,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-24,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2021-04-21,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 015-000-000,2021-04-21,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-28,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Judiciary - Criminal Committee,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-03-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-22,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-03-26,[],IL,102nd +Re-assigned to Energy and Public Utilities,2021-05-10,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2021-05-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-14,[],IL,102nd +Chief Senate Sponsor Sen. John F. Curran,2022-03-04,[],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 006-000-000,2021-03-22,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-20,[],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-08,[],IL,102nd +Third Reading - Short Debate - Passed 102-001-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-03,[],IL,102nd +"Motion to Reconsider Vote - Withdrawn Rep. Jaime M. Andrade, Jr.",2021-04-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 31, 2022",2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-02-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-26,[],IL,102nd +Chief House Sponsor Rep. Sonya M. Harper,2021-04-28,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-03-18,[],IL,102nd +Waive Posting Notice,2021-05-30,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2021-04-28,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-01-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-17,[],IL,102nd +Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-01,[],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-01-25,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-09,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-02-19,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-08-31,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-24,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 007-000-000,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-20,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-15,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-16,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2022-02-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-01-27,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-16,['amendment-failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2022-03-09,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2021-03-26,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Fiscal Note Filed as Amended,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Housing Affordability Impact Note Requested by Rep. Sonya M. Harper,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-05-06,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-16,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Housing Committee,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-05-03,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-05-21,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-01-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-31,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-12,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-25,[],IL,102nd +"Placed on Calendar Order of First Reading April 20, 2021",2021-04-15,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Appropriations,2021-05-04,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-01-14,[],IL,102nd +Referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-03-31,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Doris Turner,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 011-005-000,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-01-28,[],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-22,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-03,[],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 100-001-001,2022-03-04,"['passage', 'reading-3']",IL,102nd +"House Floor Amendment No. 2 Remains in Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-03-03,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-09,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-04,['amendment-passage'],IL,102nd +"Chief House Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-22,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-23,['amendment-passage'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-17,[],IL,102nd +Assigned to Executive Committee,2021-05-26,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 3 Adopted,2021-04-13,['amendment-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Fine,2021-04-22,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Avery Bourne,2021-03-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-03-30,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 007-000-000,2021-05-05,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-13,[],IL,102nd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-04-20,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-02-05,[],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +Removed from Short Debate Status,2021-04-21,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-04-21,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-05-06,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-26,[],IL,102nd +Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-04-06,['committee-passage-favorable'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2021-04-19,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-15,[],IL,102nd +Recommends Be Adopted Ethics & Elections Committee; 016-000-000,2021-05-11,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-19,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-08,[],IL,102nd +Adopted Both Houses,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-06,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2022-03-01,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-28,[],IL,102nd +Removed from Consent Calendar Status Rep. Nicholas K. Smith,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-10,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-04-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2022-04-08,[],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2021-04-22,[],IL,102nd +Do Pass / Short Debate Higher Education Committee; 006-004-000,2021-05-12,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-20,[],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-04-15,['amendment-passage'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 31, 2021",2021-05-30,[],IL,102nd +Assigned to Restorative Justice Committee,2021-04-28,['referral-committee'],IL,102nd +Do Pass as Amended Environment and Conservation; 010-000-000,2021-04-15,['committee-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-23,['amendment-failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2021-04-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Amy Elik,2021-04-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-04-21,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-28,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-05-28,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-21,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-29,['amendment-passage'],IL,102nd +Assigned to Restorative Justice Committee,2021-04-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Behavioral and Mental Health,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-20,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-04-28,['referral-committee'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 008-000-000,2021-05-04,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-03-17,[],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 018-000-000,2021-05-04,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2021-04-22,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 31, 2021",2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Insurance Committee; 015-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-20,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-22,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Postponed - Education,2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Bradley Stephens,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-23,[],IL,102nd +Third Reading - Passed; 048-007-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-04-07,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2021-03-11,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kambium Buckner,2022-02-22,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2021-03-19,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-10-28,[],IL,102nd +Placed on Calendar Resolutions - Consent Calendar,2021-04-08,[],IL,102nd +Do Pass as Amended Health; 013-000-000,2021-03-24,['committee-passage'],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-26,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-23,[],IL,102nd +Third Reading - Short Debate - Passed 078-037-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 098-009-001,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-03-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-27,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Murphy,2021-04-21,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2021-05-11,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-04-06,[],IL,102nd +Chief House Sponsor Rep. Michael Halpin,2022-02-16,[],IL,102nd +Assigned to Police & Fire Committee,2021-04-28,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-05-25,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-02-09,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-02-10,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2021-04-20,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Ann M. Williams,2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Assigned to Higher Education Committee,2021-04-28,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Sue Scherer,2022-04-03,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 5, 2021",2021-05-04,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-01,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Do Pass / Consent Calendar Energy & Environment Committee; 023-000-000,2021-05-11,['committee-passage'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-04-08,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-28,[],IL,102nd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Higher Education,2022-02-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2021-05-29,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. Katie Stuart,2021-04-22,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-05-05,['committee-passage'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-04-28,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Jil Tracy,2021-04-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-03-23,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-20,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Terri Bryant,2021-04-22,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-03-02,[],IL,102nd +Senate Committee Amendment No. 2 Postponed - Agriculture,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-05-30,[],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2021-04-29,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Antonio Muñoz,2022-04-07,[],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-03-25,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 008-000-000,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-03-28,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-04-19,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2022-03-30,['amendment-introduction'],IL,102nd +Remove Chief Co-Sponsor Rep. Deb Conroy,2022-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-03-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2021-04-27,[],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-03-08,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Health Care Licenses Committee,2022-03-01,[],IL,102nd +Chief Senate Sponsor Sen. Michael E. Hastings,2022-03-04,[],IL,102nd +Third Reading - Passed; 043-004-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-03-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-22,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Arrived in House,2021-06-08,['introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Removed Co-Sponsor Rep. Norine K. Hammond,2022-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 028-000-000,2022-03-15,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-06,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-01,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-05-20,[],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-03-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-05,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-12-14,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-03,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Assigned to Counties & Townships Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-12-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-31,[],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-01-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-15,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Morrison,2022-02-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-05-25,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2021-03-22,['amendment-introduction'],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Greg Harris,2022-02-28,['amendment-introduction'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-02-22,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-10-28,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Counties & Townships Committee,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Environment and Conservation; 010-000-000,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-18,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Steve McClure,2022-02-15,[],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2021-04-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-09,[],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-11-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-04-22,[],IL,102nd +Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +Re-assigned to Revenue,2021-04-20,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 006-003-000,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-15,[],IL,102nd +Assigned to Transportation,2022-04-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-23,[],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-17,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2022-03-16,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-03-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-29,[],IL,102nd +Third Reading - Passed; 039-017-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Adopted; Pacione-Zayas,2021-04-22,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2022-03-02,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-23,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2022-03-28,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-08,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-16,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-17,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-05-28,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-03-09,[],IL,102nd +"Removed Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-02-26,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2022-01-11,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-28,['reading-1'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-13,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-03-08,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2022-03-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2022-04-07,[],IL,102nd +Chief Senate Sponsor Sen. Neil Anderson,2022-03-04,[],IL,102nd +Assigned to Executive,2022-03-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-01-14,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-12-14,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-01-28,[],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-001-000,2021-03-02,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 027-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-14,[],IL,102nd +House Committee Amendment No. 3 Tabled Pursuant to Rule 40,2022-02-17,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Meg Loughran Cappel,2022-02-23,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2021-04-13,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Sara Feigenholtz,2022-02-23,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-15,[],IL,102nd +Referred to Assignments,2022-03-10,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 20, 2021",2021-04-19,['reading-1'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-09,[],IL,102nd +Do Pass / Short Debate Financial Institutions Committee; 010-000-000,2021-05-11,['committee-passage'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Fred Crespo,2022-03-02,['amendment-introduction'],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended / Consent Calendar Insurance Committee; 016-000-000,2022-02-15,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-03-08,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-05-19,[],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-04-07,[],IL,102nd +Chief House Sponsor Rep. Robert Rita,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-08-20,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Financial Institutions Committee,2021-04-21,[],IL,102nd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-03-10,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-22,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2022-11-22,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-10-05,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-04-26,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-17,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Elizabeth Hernandez,2022-04-03,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-22,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-01,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-15,[],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +House Floor Amendment No. 1 State Debt Impact Note Requested as Amended by Rep. Tom Demmer,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Housing Committee,2022-03-02,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Sue Rezin,2021-05-07,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Dan McConchie,2021-10-28,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-26,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-09,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-02-25,[],IL,102nd +First Reading,2021-02-17,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Mark L. Walker,2022-03-04,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-12-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-01,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Ethics & Elections Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-28,[],IL,102nd +"Do Pass as Amended / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-02-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-12-07,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-15,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-04-08,[],IL,102nd +Removed Co-Sponsor Rep. Carol Ammons,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-03-15,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Redistricting Committee,2021-05-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-04,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-29,[],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-23,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading November 30, 2022",2022-11-29,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-01-04,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-02-09,['referral-committee'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"House Floor Amendment No. 2 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-20,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2022-01-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-01-20,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-03-16,[],IL,102nd +"Chief Sponsor Changed to Sen. Emil Jones, III",2022-01-21,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Diane Pappas,2022-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Appropriations-Human Services Committee; 014-008-000,2022-03-17,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-11-29,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-03-04,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-08-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Resolution Adopted,2021-06-16,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 009-000-000,2021-04-21,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-08,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Terra Costa Howard,2021-04-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-13,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-20,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 067-042-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Adopted; DeWitte,2021-04-22,['amendment-passage'],IL,102nd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2021-05-03,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-04-23,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Assigned to Local Government,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +First Reading,2021-05-06,['reading-1'],IL,102nd +"Removed from Consent Calendar Status Rep. Maurice A. West, II",2021-03-23,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-03-26,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-04-20,[],IL,102nd +Chief House Sponsor Rep. Deanne M. Mazzochi,2021-04-26,[],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Chief Sponsor Changed to Rep. Elizabeth Hernandez,2022-04-03,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 11, 2021",2021-05-10,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Moved to Suspend Rule 21 Rep. Jaime M. Andrade, Jr.",2021-05-27,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2021-04-20,[],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-14,[],IL,102nd +Arrive in Senate,2022-03-28,['introduction'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2022-03-21,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Agriculture; 010-002-000,2022-02-24,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Fiscal Note Requested by Rep. Anne Stava-Murray,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-03-03,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-23,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-01-18,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Human Services Committee,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2022-03-08,[],IL,102nd +Referred to Rules Committee,2022-03-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Blaine Wilhour,2021-05-03,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted State Government Administration Committee; 008-000-000,2022-02-17,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2022-04-05,[],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-02-22,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Recalled to Second Reading,2021-05-06,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-16,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-02,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-10-06,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-13,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Maurice A. West, II",2022-03-04,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-10-25,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2021-04-19,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-05-12,[],IL,102nd +Postponed - Transportation,2021-04-14,[],IL,102nd +Chief Sponsor Changed to Sen. Patrick J. Joyce,2022-03-22,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted - Lost State Government Administration Committee; 004-004-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-03-08,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Tim Butler,2021-04-15,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Do Pass as Amended Executive; 012-000-001,2022-02-17,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-25,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-03-16,[],IL,102nd +Assigned to State Government Administration Committee,2021-04-28,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-03-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-03-03,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-04,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-02,[],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-23,[],IL,102nd +Chief House Sponsor Rep. Robert Rita,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-04-20,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2022-03-03,[],IL,102nd +House Floor Amendment No. 2 Pension Note Requested as Amended by Rep. Avery Bourne,2022-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Third Reading - Passed; 037-009-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Waive Posting Notice,2021-05-17,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2021-04-23,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Removed Co-Sponsor Rep. Mark Batinick,2021-02-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-30,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +Third Reading - Short Debate - Passed 084-015-003,2022-02-24,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-06-16,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-03-16,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Remove Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-20,[],IL,102nd +To Income Tax Subcommittee,2022-01-27,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-12,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Police & Fire Committee,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Do Pass / Short Debate Appropriations-Higher Education Committee; 015-000-000,2022-03-10,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 13, 2021",2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2022-04-04,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-09-23,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-28,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-20,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-02-16,[],IL,102nd +Removed Co-Sponsor Rep. Jonathan Carroll,2021-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Co-Sponsor Rep. Tim Butler,2021-02-08,[],IL,102nd +Chief House Sponsor Rep. John C. D'Amico,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-12,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Removed Co-Sponsor Rep. Rita Mayfield,2023-01-06,[],IL,102nd +House Committee Amendment No. 3 Adopted in Economic Opportunity & Equity Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Chief Sponsor Changed to Rep. Justin Slaughter,2022-04-04,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-04-28,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Postponed - Pensions,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-21,[],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-24,['committee-passage'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-05,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2021-03-24,['amendment-passage'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-03-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2021-05-13,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2021-03-25,[],IL,102nd +Assigned to State Government,2021-04-28,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-26,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Linda Holmes,2021-04-15,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Bennett,2021-04-23,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Health; 013-000-000,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-05-05,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-04-21,[],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-04,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2022-03-23,['amendment-introduction'],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +First Reading,2021-05-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-20,[],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 014-000-000,2021-04-20,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-01,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-05-06,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8(b-1) this amendment will remain in the Committee on Assignments.,2021-05-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading **,2021-04-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Jim Durkin,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Do Pass Labor; 010-005-000,2022-03-23,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 026-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Dan Brady,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-10-27,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +House Committee Amendment No. 2 Adopted in Revenue & Finance Committee; by Voice Vote,2021-03-25,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-19,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Insurance,2021-04-20,[],IL,102nd +Do Pass as Amended Judiciary; 009-000-000,2021-04-14,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Stoller,2021-04-21,['amendment-passage'],IL,102nd +Assigned to Education,2021-04-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2023-01-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-04,['amendment-failure'],IL,102nd +Be Adopted Transportation; 015-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 14, 2021",2021-05-07,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-03-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-16,['amendment-passage'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Angelica Guerrero-Cuellar,2021-05-04,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-02,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Michelle Mussman,2021-04-08,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-18,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 079-031-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-15,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-19,[],IL,102nd +Waive Posting Notice,2021-04-20,[],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2021-04-22,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Third Reading - Passed; 054-000-001,2021-04-21,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Fred Crespo,2021-10-28,[],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-04-08,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-09,['referral-committee'],IL,102nd +Third Reading - Passed; 039-009-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-04-08,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Thomas M. Bennett,2021-04-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-05-12,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-03-01,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 28, 2021",2021-04-27,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"Do Pass / Consent Calendar Cybersecurity, Data Analytics, & IT Committee; 014-000-000",2021-05-06,['committee-passage'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Chief House Sponsor Rep. Robyn Gabel,2021-04-26,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-09,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-28,[],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2021-04-28,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-09,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 015-000-000,2021-05-05,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-02-05,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2021-04-21,[],IL,102nd +Third Reading - Consideration Postponed,2021-04-23,['reading-3'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +First Reading,2021-03-11,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 012-000-000,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-05-06,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 008-000-000,2021-05-04,['committee-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Recalled to Second Reading,2021-05-06,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-17,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2022-01-31,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Hastings,2021-04-29,['amendment-passage'],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-22,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-04-23,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Licensed Activities,2021-04-21,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2022-03-28,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-16,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Resolution Adopted 110-000-000,2021-05-21,['passage'],IL,102nd +Chief Senate Sponsor Sen. Steve Stadelman,2021-04-19,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Emanuel Chris Welch,2021-03-15,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Do Pass as Amended / Consent Calendar Higher Education Committee; 010-000-000,2021-03-18,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Energy and Public Utilities; 016-000-000,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-005-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-15,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-02-28,[],IL,102nd +Recommends Be Adopted as Amended Mental Health & Addiction Committee; 016-000-000,2021-05-06,['committee-passage-favorable'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Chief House Sponsor Rep. Michael Halpin,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-03-26,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 016-000-000,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Adopted in Appropriations-Elementary & Secondary Education Committee; by Voice Vote,2022-03-02,['amendment-passage'],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Tracy,2021-04-21,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Third Reading - Passed; 042-014-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Chief House Sponsor Rep. Jay Hoffman,2021-04-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Daniel Didech,2021-04-22,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Alternate Chief Sponsor Removed Rep. Dave Vella,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-02-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-10,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-03-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-24,[],IL,102nd +Remove Chief Co-Sponsor Rep. Kambium Buckner,2021-04-21,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-19,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-22,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-17,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-08-31,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-03-24,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +"House Floor Amendment No. 2 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-03-02,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2022-02-23,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-02-18,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 010-002-000,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2022-02-15,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-29,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Mike Simmons,2022-03-04,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jacqueline Y. Collins,2022-02-22,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-03-30,[],IL,102nd +Third Reading - Passed; 047-009-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Transportation: Vehicles & Safety Committee; 013-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-21,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-03-07,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-03-29,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-04-04,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +House Floor Amendment No. 1 State Debt Impact Note Requested as Amended by Rep. Avery Bourne,2022-02-24,[],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-30,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 097-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-02,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Chief House Sponsor Rep. Jim Durkin,2022-02-16,[],IL,102nd +Third Reading - Short Debate - Passed 106-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-01-12,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2022-02-24,[],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2022-02-23,[],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-24,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-22,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-04,['amendment-failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading January 18, 2022",2022-01-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2022-03-09,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety Committee; 011-000-000,2022-02-23,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-02-22,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +"Removed Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Assigned to State Government Administration Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 006-000-000,2022-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Do Pass Transportation; 017-000-000,2022-02-22,['committee-passage'],IL,102nd +Chief House Sponsor Rep. Daniel Didech,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-18,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Do Pass / Short Debate State Government Administration Committee; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-16,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 015-000-000,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-21,[],IL,102nd +Recalled to Second Reading - Short Debate,2022-03-04,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Brian W. Stewart,2021-08-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-04,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Consumer Protection Committee; 006-000-000,2022-02-10,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Katie Stuart,2022-03-28,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Chief House Sponsor Rep. Eva-Dina Delgado,2022-02-25,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. John F. Curran,2022-01-28,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-12,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Transportation; 014-001-000,2022-02-22,[],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-16,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Motion Filed to Reconsider Vote Rep. Margaret Croke,2022-02-23,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-20,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-04-04,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Gillespie,2021-04-29,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-25,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-24,[],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-04,"['passage', 'reading-3']",IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2022-03-17,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2021-04-13,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-02-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Bob Morgan,2021-04-22,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. La Shawn K. Ford,2021-04-13,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +To Appropriations- Health,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Don Harmon,2022-12-01,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-10-07,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2022-02-16,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Do Pass Transportation; 019-000-000,2021-04-20,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-16,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-02-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-21,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-03-03,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2021-05-14,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-05-13,[],IL,102nd +Third Reading - Short Debate - Passed 102-001-001,2022-03-04,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jay Hoffman,2021-04-19,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 108-002-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-11-22,[],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-06,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Health; 011-000-000,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-20,[],IL,102nd +Arrive in Senate,2021-08-26,['introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2022-03-01,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-16,['referral-committee'],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2021-04-07,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-02-17,[],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Jackie Haas,2022-02-24,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-02-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-01-11,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Transportation: Vehicles & Safety Committee,2022-04-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 9, 2022",2022-03-08,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-21,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-14,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-07,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2022-03-29,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Joyce Mason,2021-04-20,['amendment-introduction'],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-02-05,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-02-24,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 To Law Enforcement Subcommittee,2022-01-28,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-07-13,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Second Reading,2021-05-12,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Celina Villanueva,2021-04-26,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-04-15,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Greg Harris,2022-04-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-02-22,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-11-28,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-01,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Chief House Sponsor Rep. C.D. Davidsmeyer,2021-04-27,[],IL,102nd +Second Reading,2021-05-12,['reading-2'],IL,102nd +Chief House Sponsor Rep. Joyce Mason,2022-02-16,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-03-26,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +House Floor Amendment No. 1 Fiscal Note Filed as Amended,2021-04-20,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. William Davis,2023-01-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-10-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-01,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 014-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +First Reading,2022-01-31,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-02-22,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2022-02-22,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2021-04-21,[],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Villivalam,2021-04-29,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-05,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2021-05-05,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-28,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2022-02-17,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Fred Crespo,2021-04-28,[],IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 5, 2021",2021-05-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2022-03-17,[],IL,102nd +Assigned to Executive Committee,2022-11-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-23,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-09,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Fiscal Note Requested by Rep. Blaine Wilhour,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-01-11,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-03-01,[],IL,102nd +Assigned to State Government,2021-05-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Financial Institutions Committee,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2022-03-24,[],IL,102nd +Chief Senate Sponsor Sen. Steve Stadelman,2021-04-27,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2022-03-01,[],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-03-10,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2022-03-01,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-29,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-21,[],IL,102nd +Postponed - Judiciary,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-02-24,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-06,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Assigned to Labor & Commerce Committee,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-05,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-01,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Do Pass / Short Debate Counties & Townships Committee; 010-000-001,2021-03-26,['committee-passage'],IL,102nd +Removed from Short Debate Status,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-27,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Chief Sponsor Changed to Rep. Will Guzzardi,2022-04-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-10-28,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-02,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-01-04,[],IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-20,[],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-03-07,['referral-committee'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-11,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 015-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-17,[],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-02,[],IL,102nd +Do Pass State Government; 007-000-000,2022-03-09,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-06,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-16,['amendment-failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2022-02-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Executive,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2021-04-08,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-03-23,[],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-02-04,[],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Health; 013-000-000,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Christopher Belt,2022-02-18,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Judicial Note Filed,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-02-03,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-02,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2022-03-28,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Ann M. Williams,2022-02-25,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-09,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2022-03-22,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading November 29, 2022",2022-11-16,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-09,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-09-14,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-21,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-05-05,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2022-03-02,[],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Katie Stuart,2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-02-24,['amendment-passage'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-07-08,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-16,[],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2021-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Theresa Mah,2021-02-18,[],IL,102nd +Senate Floor Amendment No. 2 To Appropriations- Human Services,2021-04-07,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted State Government Administration Committee; 005-003-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 To Appropriations- Business Regulations and Labor,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 012-007-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2022-03-02,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Revenue; 010-000-000,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-16,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-07-11,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-10-28,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Second Reading,2022-11-30,['reading-2'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Criminal Law,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-07-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 017-000-000,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-02,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-03-01,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 005-000-000,2022-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2021-02-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. Jay Hoffman,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2022-03-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted 098-000-000,2022-04-04,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Energy and Public Utilities; 016-000-000,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-22,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-02-03,[],IL,102nd +Re-assigned to Revenue,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-04,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-03-07,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-03-01,[],IL,102nd +House Committee Amendment No. 2 Adopted in State Government Administration Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-03-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-16,[],IL,102nd +Removed Co-Sponsor Rep. Jawaharial Williams,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-07-11,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-24,[],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-03-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Assigned to Licensed Activities,2021-05-10,['referral-committee'],IL,102nd +Postponed - Judiciary,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2021-05-04,['amendment-introduction'],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-02-17,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2022-02-23,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-09-14,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 073-030-002,2022-03-03,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of First Reading,2022-02-24,['reading-1'],IL,102nd +House Committee Amendment No. 1 Adopted in Appropriations-Higher Education Committee; by Voice Vote,2022-03-31,['amendment-passage'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-02-17,[],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 027-000-000,2022-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-03,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-03-14,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-01,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 009-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-03-24,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-01-11,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-03-16,[],IL,102nd +Chief Sponsor Changed to Sen. Mike Simmons,2021-04-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-28,['reading-3'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-03-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-01-04,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-26,['amendment-failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-23,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Appropriations-Human Services Committee,2022-03-01,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Cristina Castro,2022-03-09,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 015-012-000,2022-02-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-04,[],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-02-09,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kathleen Willis,2021-05-10,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-13,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2022-03-04,[],IL,102nd +Assigned to Human Services Committee,2022-01-25,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Financial Institutions Committee; 009-000-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2022",2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-03,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2022-04-06,[],IL,102nd +Assigned to Veterans Affairs,2021-05-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-05,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-15,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +To Insurance Review Subcommittee,2022-02-17,[],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2021-03-18,['amendment-failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-07,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-11-28,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Assigned to Revenue & Finance Committee,2021-02-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-05,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 011-007-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-02-22,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-05-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-03-11,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-07,['referral-committee'],IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-05-24,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-02-05,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Tony McCombie,2021-04-08,['amendment-introduction'],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Assigned to Pensions,2021-05-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-03-03,[],IL,102nd +Third Reading - Passed; 054-000-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Chief House Sponsor Rep. Elizabeth Hernandez,2021-04-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-02-17,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-01,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 037-015-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-03-09,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-26,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2022-03-30,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Chief Sponsor Changed to Sen. Rachelle Crowe,2022-03-08,[],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2023-01-06,[],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-11,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-05-07,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-02-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-04-05,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Kambium Buckner,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-10-20,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +Removed from Short Debate Status,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Morrison,2021-05-06,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Ryan Spain,2021-05-12,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-04-08,[],IL,102nd +Chief Senate Sponsor Sen. Dale Fowler,2022-03-07,[],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jehan Gordon-Booth,2022-04-05,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Jil Tracy,2021-05-07,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-04-08,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Assigned to Insurance,2021-04-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-24,[],IL,102nd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-02-05,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Morrison,2021-04-20,['amendment-passage'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-05-07,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2023-01-06,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading **,2021-04-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2021-10-28,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-15,[],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2021-04-30,[],IL,102nd +Assigned to State Government,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Rose,2021-04-21,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-12,[],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2021-04-19,[],IL,102nd +Resolution Adopted; 055-000-000,2022-04-09,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2021-05-11,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Dan McConchie,2021-03-18,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 007-003-000,2022-03-30,['committee-passage-favorable'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-05-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +Do Pass as Amended / Short Debate Appropriations-Elementary & Secondary Education Committee; 016-000-000,2022-03-02,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-12,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Anna Moeller,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-17,['amendment-failure'],IL,102nd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Ryan Spain,2021-05-13,[],IL,102nd +Do Pass State Government; 009-000-000,2021-05-06,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-26,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Do Pass / Consent Calendar Economic Opportunity & Equity Committee; 007-000-000,2021-05-05,['committee-passage'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 015-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Delia C. Ramirez,2022-03-01,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-10-27,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading **,2021-04-21,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Chief House Sponsor Rep. Jay Hoffman,2021-05-07,[],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-03-16,['amendment-passage'],IL,102nd +Third Reading - Passed; 043-015-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2022-02-02,['amendment-passage'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Assigned to Insurance Committee,2021-04-28,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-05-13,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-06,[],IL,102nd +Assigned to Commerce,2021-04-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 26, 2021",2021-05-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Do Pass as Amended / Consent Calendar Revenue & Finance Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-02-23,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-04,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Terra Costa Howard,2021-04-30,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Assigned to Transportation,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-04-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2022-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended / Consent Calendar Economic Opportunity & Equity Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Pensions; 005-002-000,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-22,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Co-Sponsor Rep. Frances Ann Hurley,2021-02-08,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2022-03-10,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Pensions; 008-000-000,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Energy and Public Utilities; 016-000-000,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Labor,2021-04-27,[],IL,102nd +House Committee Amendment No. 1 Adopted in Housing Committee; by Voice Vote,2021-03-17,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Recommends Be Adopted Appropriations-Human Services Committee; 023-000-000,2022-04-08,['committee-passage-favorable'],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-04-13,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 007-000-000,2021-04-21,[],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 055-000-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-09,['amendment-failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-31,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Patrick Windhorst,2021-05-12,['amendment-introduction'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 011-000-000,2021-04-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-22,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-02-16,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-16,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-03-17,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2021-04-14,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Fred Crespo,2021-04-20,['amendment-introduction'],IL,102nd +Assigned to Insurance,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 006-003-000,2021-04-22,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-24,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-04-29,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-25,[],IL,102nd +Chief House Sponsor Rep. Jay Hoffman,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-05-25,[],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-05-04,['committee-passage'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-05-04,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Jay Hoffman,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-03-12,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-22,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Assigned to Licensed Activities,2022-03-02,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-02-06,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 007-004-000,2021-05-05,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2021-04-20,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Chapin Rose,2021-04-22,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2021-04-30,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Do Pass Education; 010-004-000,2021-04-20,['committee-passage'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-03-25,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Thaddeus Jones,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-02-24,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Laura Ellman,2021-04-20,[],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Tom Demmer,2022-02-16,[],IL,102nd +Assigned to Energy and Public Utilities,2022-03-08,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-28,[],IL,102nd +Third Reading - Short Debate - Passed 106-001-000,2022-03-01,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-05-26,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-08-31,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-03-16,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-17,[],IL,102nd +House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Avery Bourne,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 21, 2021",2021-04-20,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Third Reading - Passed; 054-000-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Sue Scherer,2022-02-23,[],IL,102nd +Chief House Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-10-07,[],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2022-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-15,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Re-assigned to Licensed Activities,2021-10-13,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-05-05,[],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-01-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-03-18,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-09-01,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-30,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 008-004-000,2022-02-23,['committee-passage-favorable'],IL,102nd +Resolution Adopted,2022-03-30,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2022-02-17,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 011-001-000,2021-04-14,[],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Note / Motion Filed - Note Act Does Not Apply Rep. Deanne M. Mazzochi,2022-03-02,[],IL,102nd +Third Reading - Passed; 051-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-25,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-02-24,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-03-09,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-04-05,[],IL,102nd +Chief House Sponsor Rep. Deanne M. Mazzochi,2021-04-22,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Laura M. Murphy,2022-02-23,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Holmes,2021-04-22,['amendment-passage'],IL,102nd +Third Reading - Passed; 049-005-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2022-02-23,[],IL,102nd +"House Floor Amendment No. 2 Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-03-03,['committee-passage-favorable'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 015-010-000,2021-03-24,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-05-07,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Restorative Justice Committee,2021-03-23,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-24,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety Committee; 013-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2022-03-16,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-04-04,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-03-02,['reading-3'],IL,102nd +Assigned to Energy and Public Utilities,2021-05-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 006-000-000,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-02-18,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Assigned to Local Government,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-04,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-15,[],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4 (a),2021-04-22,['amendment-failure'],IL,102nd +Added Chief Co-Sponsor Rep. John C. D'Amico,2021-04-21,[],IL,102nd +Assigned to Licensed Activities,2022-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-03-04,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-01-28,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2022-02-25,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-12,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-04-05,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2021-03-24,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-21,[],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-01-13,[],IL,102nd +Assigned to Human Services Committee,2021-05-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-03,[],IL,102nd +Third Reading - Short Debate - Passed 089-008-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-20,[],IL,102nd +Do Pass / Short Debate Financial Institutions Committee; 007-004-000,2022-03-15,['committee-passage'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +"Pursuant to Senate Rule 3-11 (b)(2), the Committee on Assignments exempts HB900 from the requirements of Senate Rule 3-11(b)",2021-05-27,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-02-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Approved for Consideration Assignments,2022-02-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-02-22,[],IL,102nd +Third Reading - Passed; 051-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-22,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +"Alternate Chief Co-Sponsor Removed Rep. Maurice A. West, II",2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-03-07,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Justin Slaughter,2022-02-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-05,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Alternate Co-Sponsor Removed Rep. Michael Kelly,2022-03-09,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-06,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-16,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-03-03,[],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Emanuel Chris Welch,2022-11-29,['amendment-introduction'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +First Reading,2022-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2022-03-17,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Dave Vella,2021-04-22,[],IL,102nd +Assigned to State Government Administration Committee,2021-04-28,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-17,[],IL,102nd +Second Reading,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2021-04-20,['amendment-introduction'],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-02-22,[],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 018-010-000,2022-02-01,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 016-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-07,[],IL,102nd +Assigned to Cities & Villages Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-05-05,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 017-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-03-08,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Do Pass / Short Debate Financial Institutions Committee; 010-000-000,2021-05-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-16,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Veterans' Affairs Committee,2022-01-31,[],IL,102nd +Senate Floor Amendment No. 1 To Appropriations- Health,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-15,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 006-001-000,2022-02-22,[],IL,102nd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-02,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-22,['amendment-failure'],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Executive,2021-05-30,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Second Reading,2022-04-04,['reading-2'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-03-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-01-26,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-04-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-02,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-03,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-03-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-05-12,[],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-29,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-03-18,[],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-14,[],IL,102nd +Do Pass / Short Debate Counties & Townships Committee; 009-002-000,2021-05-06,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2022-02-17,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-03-31,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-01-14,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-04,[],IL,102nd +Approved for Consideration Assignments,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-08-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Darren Bailey,2021-04-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-15,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-16,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 005-003-000,2022-02-16,['committee-passage'],IL,102nd +Chief House Sponsor Rep. David A. Welter,2021-04-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-02-24,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Racial Impact Note Requested by Rep. Sonya M. Harper,2022-02-17,[],IL,102nd +Do Pass as Amended Revenue; 011-000-000,2022-02-10,['committee-passage'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-03-24,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Mike Murphy,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-08,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-01,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-08-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Anderson,2021-04-21,['amendment-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-15,[],IL,102nd +Third Reading - Passed; 053-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +"Remains in Transportation: Regulation, Roads & Bridges Committee",2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-16,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2022-02-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2022-03-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Ann M. Williams,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-02-24,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-04-16,['amendment-introduction'],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-01,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-03,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Pacione-Zayas,2021-04-29,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-15,[],IL,102nd +Do Pass Education; 014-000-000,2021-05-19,['committee-passage'],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-15,[],IL,102nd +Chief Senate Sponsor Sen. Sally J. Turner,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. William Davis,2021-04-20,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-17,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2022-03-07,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Do Pass / Consent Calendar Prescription Drug Affordability & Accessibility Committee; 017-000-000,2021-05-12,['committee-passage'],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2021-04-28,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Immigration & Human Rights Committee,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-20,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-03,[],IL,102nd +Chief Senate Sponsor Sen. Sally J. Turner,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2021-04-15,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-18,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-06,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 20, 2021",2021-04-19,['reading-1'],IL,102nd +Fiscal Note Requested by Rep. Blaine Wilhour,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-20,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-05-11,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Remains in Cities & Villages Committee,2021-04-22,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-04-30,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-04-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-21,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Senate Committee Amendment No. 3 Assignments Refers to Labor,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-26,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Koehler,2021-04-27,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Javier L Cervantes,2022-11-15,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Referred to Assignments,2021-05-05,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Dan McConchie,2021-08-26,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 To Appropriations- Business Regulations and Labor,2021-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-01-07,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Removed Co-Sponsor Rep. Norine K. Hammond,2022-03-24,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-07-06,[],IL,102nd +First Reading,2021-05-06,['reading-1'],IL,102nd +Third Reading - Passed; 053-000-000,2022-12-01,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Chief Senate Sponsor Sen. Patricia Van Pelt,2021-04-28,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-07,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Recalled to Second Reading,2021-04-23,['reading-2'],IL,102nd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Thomas Morrison,2022-03-01,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading,2022-02-23,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 066-047-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-05-07,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-15,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Kelly M. Cassidy,2021-04-26,[],IL,102nd +Chief House Sponsor Rep. Deanne M. Mazzochi,2021-04-22,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-07-08,[],IL,102nd +Assigned to Criminal Law,2021-05-10,['referral-committee'],IL,102nd +Assigned to Executive,2021-05-12,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-04-20,[],IL,102nd +Read in Full a Second Time,2021-05-20,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-04-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-15,[],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-06,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2021-04-09,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-11,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-03-23,['amendment-passage'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Assigned to Pensions,2021-05-11,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. David A. Welter,2021-04-14,['amendment-introduction'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2022-01-31,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 014-000-000,2021-04-21,[],IL,102nd +Do Pass as Amended / Short Debate Personnel & Pensions Committee; 006-002-000,2021-03-19,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 014-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-11,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Syverson,2021-04-20,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-02-22,[],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2022-03-17,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-26,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-05-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-04-13,[],IL,102nd +Recalled to Second Reading,2022-02-23,['reading-2'],IL,102nd +Adopted Both Houses,2021-06-01,[],IL,102nd +Do Pass / Short Debate Counties & Townships Committee; 009-001-000,2021-05-06,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-02-15,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-05-30,[],IL,102nd +Assigned to State Government Administration Committee,2022-03-07,['referral-committee'],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to State Government,2022-02-22,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-02-23,[],IL,102nd +Third Reading - Short Debate - Passed 101-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Assigned to Transportation,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 010-000-000",2023-01-10,['committee-passage-favorable'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-04-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-02-05,[],IL,102nd +Third Reading - Short Debate - Passed 102-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading,2021-05-06,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-02-05,[],IL,102nd +Assigned to Pensions,2022-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-04-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-07-21,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-09,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Recommends Be Adopted Appropriations-Human Services Committee; 023-000-000,2021-05-06,['committee-passage-favorable'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Chief House Sponsor Rep. Kathleen Willis,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-24,[],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2022-03-01,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2022-03-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2021-04-21,[],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Arrive in Senate,2022-02-23,['introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-19,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-03-19,[],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Kelly M. Burke,2021-04-19,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Insurance; 014-000-000,2021-04-21,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dan Brady,2021-05-11,[],IL,102nd +Do Pass / Short Debate Police & Fire Committee; 013-000-001,2021-05-13,['committee-passage'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2022-01-27,[],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Villanueva,2021-05-05,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-03-31,[],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Doris Turner,2022-01-31,['amendment-introduction'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Assigned to Energy and Public Utilities,2022-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Assigned to Commerce,2021-05-04,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Thomas Cullerton,2021-04-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Resolution Adopted 105-000-000,2023-01-10,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-01,[],IL,102nd +Arrive in Senate,2022-03-28,['introduction'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-23,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-21,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Adopted Both Houses,2022-02-23,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Antonio Muñoz,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-14,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Referred to Assignments,2021-05-05,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Chief Senate Sponsor Sen. Laura M. Murphy,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-14,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-01,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Assigned to Local Government,2021-05-04,['referral-committee'],IL,102nd +Fiscal Note Requested by Rep. Deanne M. Mazzochi,2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-19,[],IL,102nd +Arrived in House,2021-04-28,['introduction'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-03-02,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-10-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-04-16,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-05-05,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Assigned to Behavioral and Mental Health,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2022-04-03,[],IL,102nd +Chief House Sponsor Rep. Janet Yang Rohr,2021-04-27,[],IL,102nd +Adopted Both Houses,2021-10-28,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-02-10,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-04,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2021-05-07,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-10-19,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-24,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-04-06,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2021-05-03,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2021-04-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Assigned to Licensed Activities,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 31, 2021",2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +First Reading,2022-02-17,['reading-1'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-02-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Reported Back To Insurance Committee;,2021-03-22,[],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-04-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2021-04-29,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Gillespie,2021-04-28,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-15,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Assigned to Judiciary,2021-04-28,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 017-000-000,2021-03-26,['committee-passage'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Margaret Croke,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-18,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Third Reading - Passed; 054-000-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 059-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2022-03-24,['committee-passage'],IL,102nd +Chief House Sponsor Rep. Greg Harris,2021-05-03,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Assigned to Transportation,2022-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-02-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2021-04-28,[],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 028-000-000,2021-05-12,['committee-passage'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-03-17,['reading-2'],IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 013-000-000,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-01-29,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Jehan Gordon-Booth,2021-04-22,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 103-001-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-10,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Police & Fire Committee,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Steven Reick,2022-01-10,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Third Reading - Consent Calendar - Passed 098-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Chief House Sponsor Rep. LaToya Greenwood,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-02,[],IL,102nd +Removed Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-01,[],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2022-01-31,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-01-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-26,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Public Utilities Committee,2021-03-16,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Health; 011-000-000,2021-04-20,[],IL,102nd +Approved for Consideration Assignments,2022-12-01,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Assigned to Judiciary - Civil Committee,2022-03-07,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-05,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2022-03-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2021-04-20,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Castro,2022-02-25,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-17,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 007-001-000,2022-03-17,['committee-passage'],IL,102nd +Senate Committee Amendment No. 3 Assignments Refers to Local Government,2021-04-13,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-01-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Immigration & Human Rights Committee; 008-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Steve McClure,2022-03-04,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Assigned to Insurance,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-20,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Education,2022-03-08,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2022-01-26,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. Mary E. Flowers,2022-04-03,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-17,[],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2021-03-17,['amendment-failure'],IL,102nd +First Reading,2022-03-16,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Adopted in Veterans' Affairs Committee; by Voice Vote,2021-04-22,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Chief House Sponsor Rep. Martin J. Moylan,2022-02-24,[],IL,102nd +Assigned to Appropriations,2021-04-28,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-03,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Approved for Consideration Assignments,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-03-31,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-17,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-31,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2021",2021-03-24,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Energy and Public Utilities,2021-05-04,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Small Business,Tech Innovation, and Entrepreneurship Committee; 010-000-000",2022-03-03,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-02-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Chief House Sponsor Rep. LaToya Greenwood,2022-02-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-03-08,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-14,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 013-001-000,2021-04-22,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Greg Harris,2022-04-07,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-23,[],IL,102nd +Do Pass Energy and Public Utilities; 018-000-000,2022-03-24,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-16,[],IL,102nd +Assigned to Education,2021-05-11,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-07,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2021-03-23,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-05-26,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Morrison,2021-04-22,['amendment-passage'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-26,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-03-16,[],IL,102nd +Assigned to Executive,2022-03-08,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. David Koehler,2021-04-23,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Assigned to Executive,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lakesia Collins,2022-02-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-01-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-10-06,[],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mattie Hunter,2021-05-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-03-09,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-03,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Mike Murphy,2021-04-20,['amendment-introduction'],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. Martin McLaughlin,2021-04-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Syverson,2022-02-25,['amendment-passage'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Remains in State Government Administration Committee,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-03-16,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-02-16,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-02,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-08,[],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-02,[],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-16,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2022-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-09-23,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-03,[],IL,102nd +Fiscal Note Requested - Withdrawn by Rep. Anne Stava-Murray,2022-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Executive,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 013-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-16,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-05-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Steve Stadelman,2021-05-14,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. Kelly M. Cassidy,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-16,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2022-03-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-01-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Public Safety,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-03-25,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Margaret Croke,2022-02-24,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Jil Tracy,2022-03-07,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Crowe,2021-05-06,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 010-005-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-05,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Economic Opportunity & Equity Committee,2022-03-22,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Janet Yang Rohr,2022-02-17,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-04-04,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-04-16,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 22, 2022",2022-02-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-05-03,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-01,[],IL,102nd +Third Reading - Standard Debate - Passed 107-000-004,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-06-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-07,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 2 Postponed - Energy and Public Utilities,2021-04-29,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2022-03-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-09,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-01,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-28,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-10,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-03-07,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Judiciary,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-14,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-10,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-10-28,[],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Avery Bourne,2022-02-24,[],IL,102nd +Waive Posting Notice,2022-02-24,[],IL,102nd +"Senate Floor Amendment No. 3 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-04-01,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-05-05,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-21,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-01-21,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Police & Fire Committee; 013-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-01-25,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-02,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-05-05,[],IL,102nd +Chief Sponsor Changed to Rep. Sue Scherer,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-03-08,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-29,[],IL,102nd +Chief House Sponsor Rep. Suzanne Ness,2021-04-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-01-25,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2022-11-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Burke,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-08-09,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-18,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-15,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2022-02-25,[],IL,102nd +Chief Senate Sponsor Sen. Thomas Cullerton,2021-04-20,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-03-10,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-007-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Postponed - Insurance,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-08-20,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-23,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Assigned to Financial Institutions,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-04-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-07-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Thomas Morrison,2021-09-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-07,[],IL,102nd +"House Floor Amendment No. 2 Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-03-03,['committee-passage-favorable'],IL,102nd +Chief Sponsor Changed to Sen. Linda Holmes,2021-05-04,[],IL,102nd +Second Reading,2022-11-30,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-01-04,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-03-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-03-04,[],IL,102nd +First Reading,2022-01-21,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-12-01,"['passage', 'reading-3']",IL,102nd +Assigned to Local Government,2022-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas Morrison,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-05,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 018-011-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2022-03-04,[],IL,102nd +Assigned to Health,2021-05-04,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2021-04-01,[],IL,102nd +Re-assigned to Energy and Public Utilities,2022-02-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-09,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-04-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Tom Demmer,2022-03-03,[],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-02-17,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-04-16,[],IL,102nd +To Subcommittee on Future Cellular Development,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-11-22,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Redistricting Committee; 006-004-000,2021-05-28,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-05-05,[],IL,102nd +Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-26,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Housing Committee; 012-006-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-04-08,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Chief Senate Sponsor Sen. John F. Curran,2021-04-22,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-02-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Assigned to Local Government,2021-05-04,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 018-008-001,2022-03-02,['committee-passage-favorable'],IL,102nd +Chief Senate Sponsor Sen. Doris Turner,2021-04-19,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-04-08,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Veterans' Affairs Committee; 009-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-09,[],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Resolution Adopted,2022-04-06,['passage'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-02-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-03-01,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2022-03-04,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Simmons,2022-02-23,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-04-15,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-02-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-02-14,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 010-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2021-05-25,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-06,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-21,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-25,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-20,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-12,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-12,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-21,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-05-31,[],IL,102nd +Do Pass / Consent Calendar Public Utilities Committee; 025-000-000,2021-03-22,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-29,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Justin Slaughter,2021-05-10,['amendment-introduction'],IL,102nd +Do Pass Health; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Resolution Adopted,2021-05-29,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-02-05,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-23,[],IL,102nd +Be Adopted Executive; 015-000-000,2021-05-27,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Higher Education; 012-000-000,2022-02-22,[],IL,102nd +Resolution Adopted; 052-000-000,2021-06-01,['passage'],IL,102nd +Assigned to State Government,2021-05-18,['referral-committee'],IL,102nd +Third Reading - Passed; 055-001-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Resolution Adopted; 054-000-000,2021-06-01,['passage'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2021-04-15,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-06,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-22,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-21,[],IL,102nd +Do Pass as Amended Higher Education; 015-000-000,2021-03-24,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Chief House Sponsor Rep. Anna Moeller,2021-04-22,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2021-04-26,['amendment-introduction'],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-12,['committee-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-05,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-05-06,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-15,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-04,[],IL,102nd +Assigned to Public Safety,2021-05-04,['referral-committee'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2021-04-28,[],IL,102nd +"Alternate Chief Sponsor Changed to Rep. Curtis J. Tarver, II",2021-05-26,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Third Reading - Passed; 056-000-000,2021-03-10,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2021-05-05,[],IL,102nd +Arrived in House,2021-04-28,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Licensed Activities,2021-04-21,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2021-04-21,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2021-04-23,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +Third Reading - Short Debate - Passed 105-004-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Assigned to Pensions,2021-05-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Recalled to Second Reading,2021-04-28,['reading-2'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Denyse Wang Stoneback,2021-03-12,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-15,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-20,[],IL,102nd +Chief House Sponsor Rep. Daniel Didech,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 009-006-000,2021-04-29,[],IL,102nd +Do Pass Behavioral and Mental Health; 010-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-08,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Chris Bos,2021-04-20,[],IL,102nd +Do Pass as Amended Criminal Law; 010-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-03-22,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Chief House Sponsor Rep. Rita Mayfield,2021-04-23,[],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-03-10,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-03-26,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-04-23,[],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Do Pass / Consent Calendar Police & Fire Committee; 013-000-000,2021-05-06,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-04-28,[],IL,102nd +Chief House Sponsor Rep. Anne Stava-Murray,2022-02-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-04-29,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Feigenholtz,2021-04-21,['amendment-passage'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Resolution Adopted,2022-04-08,['passage'],IL,102nd +Resolution Adopted; 055-000-000,2022-04-09,['passage'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-13,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Jil Tracy,2021-04-21,[],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Terri Bryant,2022-04-07,[],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Senate Committee Amendment No. 3 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-30,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +Do Pass as Amended Education; 014-000-000,2021-04-14,['committee-passage'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-04,[],IL,102nd +Chief House Sponsor Rep. Natalie A. Manley,2021-04-22,[],IL,102nd +Assigned to Personnel & Pensions Committee,2021-04-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-03-24,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Do Pass Transportation; 015-000-000,2021-05-25,['committee-passage'],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-14,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-05,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-17,[],IL,102nd +Do Pass as Amended Agriculture; 011-000-000,2021-04-15,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-10-21,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-03-29,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +Chief Senate Sponsor Sen. Dale Fowler,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-03-19,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Insurance Committee; 017-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2022-03-23,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. Dave Vella,2022-02-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-10,[],IL,102nd +Approved for Consideration Assignments,2022-11-15,[],IL,102nd +Chief Sponsor Changed to Rep. Jay Hoffman,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2022-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-02-23,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kambium Buckner,2021-04-09,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-03-28,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2022-02-17,['amendment-introduction'],IL,102nd +Assigned to Healthcare Access and Availability,2022-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-11-30,[],IL,102nd +Placed on Calendar - Consideration Postponed,2022-04-07,[],IL,102nd +Chief Sponsor Changed to Rep. Deb Conroy,2022-03-14,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2022-02-25,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Assigned to Executive,2022-04-04,['referral-committee'],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Murphy,2021-04-20,['amendment-passage'],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 012-000-000,2022-03-16,['committee-passage'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-02-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John Connor,2022-03-24,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Diane Pappas,2022-03-28,[],IL,102nd +Senate Committee Amendment No. 1 Re-assigned to Revenue,2021-04-20,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-11,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-03,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Mike Simmons,2021-03-31,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-04-15,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-03-28,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 3 Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-05-03,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-23,[],IL,102nd +First Reading,2022-03-16,['reading-1'],IL,102nd +Chief House Sponsor Rep. Anna Moeller,2021-06-08,[],IL,102nd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Anthony DeLuca",2022-04-06,[],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-14,[],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-03-01,[],IL,102nd +Third Reading - Short Debate - Passed 062-038-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-25,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Personnel & Pensions Committee,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-08-05,[],IL,102nd +Removed Co-Sponsor Rep. Tony McCombie,2022-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Stadelman,2022-02-25,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2022-01-13,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mike Murphy,2021-03-19,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-02-04,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2021-03-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-22,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Energy and Public Utilities,2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 013-000-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-04-13,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Arrive in Senate,2021-05-06,['introduction'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 015-000-000,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-12-15,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-03-03,[],IL,102nd +Remove Chief Co-Sponsor Rep. Sue Scherer,2021-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2022-03-18,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Do Pass / Short Debate Counties & Townships Committee; 010-000-000,2022-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-31,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-12-07,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2022-03-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. John Connor,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-15,[],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2022-03-15,['committee-passage'],IL,102nd +To Clean Energy Subcommittee,2022-02-08,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Villanueva,2022-02-23,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Assignments,2022-02-22,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-07,[],IL,102nd +Second Reading - Short Debate,2022-03-28,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-16,[],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2022-02-17,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-02-22,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2022-03-02,[],IL,102nd +Recommends Be Adopted Revenue & Finance Committee; 015-000-000,2021-04-28,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-04-22,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-24,[],IL,102nd +Removed Co-Sponsor Rep. Steven Reick,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-02-10,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Patrick J. Joyce,2022-03-22,[],IL,102nd +Chief House Sponsor Rep. William Davis,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-04-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-12,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-03-04,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2021-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-23,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Do Pass Pensions; 007-000-000,2022-04-05,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-04-04,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-03-09,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-04-06,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-02-25,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Appropriations,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-09,[],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 013-000-000,2022-03-30,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2022-03-03,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Removed Co-Sponsor Rep. Jeff Keicher,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-08,[],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-23,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Counties & Townships Committee; 010-000-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-03-29,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-04-16,[],IL,102nd +Approved for Consideration Assignments,2021-05-12,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lance Yednock,2021-05-03,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2021-03-16,['amendment-introduction'],IL,102nd +Assigned to Education,2021-05-10,['referral-committee'],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Assigned to Local Government,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 108-007-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-22,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Counties & Townships Committee; 011-000-000,2021-05-13,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Assigned to Revenue,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-21,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Angelica Guerrero-Cuellar,2021-04-30,[],IL,102nd +Suspend Rule 21 - Prevailed 070-045-000,2021-05-27,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-21,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-26,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Health; 011-000-000,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Christopher Belt,2021-04-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 13, 2021",2021-05-12,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +First Reading,2022-02-18,['reading-1'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Delia C. Ramirez,2021-05-20,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety Committee,2022-04-03,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-23,[],IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Do Pass Local Government; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-20,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 015-000-000,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-05-04,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 094-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Assigned to Human Services Committee,2021-05-04,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Chief Senate Sponsor Sen. Neil Anderson,2021-04-27,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-13,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-20,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-23,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-05-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2022-03-04,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Do Pass Education; 013-000-000,2021-05-19,['committee-passage'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Do Pass / Short Debate Executive Committee; 008-006-000,2021-05-27,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Do Pass as Amended State Government; 007-002-000,2021-04-15,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-26,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. David A. Welter,2021-03-22,['amendment-introduction'],IL,102nd +Do Pass Revenue; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-05-04,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-05-06,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-03-24,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety Committee; 013-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Assigned to Education,2021-05-10,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Hunter,2021-04-20,['amendment-passage'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-22,[],IL,102nd +Chief House Sponsor Rep. Jay Hoffman,2021-04-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Andrew S. Chesney,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Will Guzzardi,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Omar Aquino,2021-03-17,['amendment-introduction'],IL,102nd +Do Pass Public Safety; 006-000-000,2021-05-12,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Assigned to Energy & Environment Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-03-02,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2021-05-13,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Assigned to Restorative Justice Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-17,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Chief House Sponsor Rep. LaToya Greenwood,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Randy E. Frese,2021-05-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Darren Bailey,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-02-05,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Third Reading - Standard Debate - Passed 085-024-006,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 013-001-000,2022-02-23,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-05-10,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dan Brady,2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-09,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-04-08,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 26, 2021",2021-05-25,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-02,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Arrived in House,2021-03-11,['introduction'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-05-25,[],IL,102nd +Adopted Both Houses,2021-06-01,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-13,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Second Reading,2021-04-13,['reading-2'],IL,102nd +Do Pass as Amended Agriculture; 013-000-000,2021-04-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-14,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 006-000-000,2021-04-28,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2021-05-13,[],IL,102nd +Third Reading - Passed; 051-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-23,[],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-05-06,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-04-21,[],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-04-19,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-23,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mark L. Walker,2021-04-26,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Christopher Belt,2021-05-03,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Assigned to Public Safety,2021-05-11,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2021-04-30,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2021-05-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Resolutions - Consent Calendar - Second Day,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-05-29,[],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2022-02-23,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-18,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-26,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Laura Ellman,2021-04-15,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2022-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-04-20,[],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Do Pass Executive; 015-000-000,2022-03-23,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-04-08,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-20,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-12,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-15,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-04-29,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-21,[],IL,102nd +Assigned to Executive,2021-05-04,['referral-committee'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2022-03-09,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2021-04-27,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2021-04-15,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Gillespie,2021-04-28,['amendment-passage'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-04-06,[],IL,102nd +Chief Senate Sponsor Sen. Chapin Rose,2022-03-08,[],IL,102nd +Do Pass Local Government; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2022-03-04,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-21,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2022-03-02,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2021-10-28,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2022-04-07,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-23,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-03-24,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. David Friess,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-15,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-14,[],IL,102nd +Adopted Both Houses,2021-06-01,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-05-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-26,['referral-committee'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-27,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2021-04-20,[],IL,102nd +Waive Posting Notice,2021-05-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Swanson,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-13,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-26,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2021-05-12,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2021-05-10,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2021-04-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Do Pass / Consent Calendar Restorative Justice Committee; 006-000-000,2021-05-06,['committee-passage'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Do Pass / Short Debate Restorative Justice Committee; 004-002-000,2021-05-06,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. David A. Welter,2021-05-21,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2021-04-19,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kambium Buckner,2021-05-12,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2021-05-12,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-24,[],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-04-05,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-06-16,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-19,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-22,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Dave Syverson,2022-02-18,['amendment-introduction'],IL,102nd +First Reading,2022-11-16,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark L. Walker,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2021-05-04,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Daniel Didech,2022-02-28,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-03-23,[],IL,102nd +Chief Sponsor Changed to Sen. Thomas Cullerton,2021-04-14,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Thomas M. Bennett,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-17,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +First Reading,2021-03-04,['reading-1'],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Margaret Croke,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-18,['amendment-passage'],IL,102nd +To Property Tax Subcommittee,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-24,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Michelle Mussman,2022-02-17,[],IL,102nd +Third Reading - Passed; 048-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2022-10-06,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Second Reading - Short Debate,2022-03-10,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2021-05-13,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-03-02,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-20,[],IL,102nd +Senate Committee Amendment No. 2 Postponed - Executive,2021-04-21,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-05,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Assigned to Executive Committee,2021-10-22,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-06,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-03,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-03-25,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2021-04-20,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-03-04,[],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-03-02,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-16,[],IL,102nd +First Reading,2021-10-19,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2022-03-04,[],IL,102nd +Chief House Sponsor Rep. Lakesia Collins,2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-04-05,[],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-08,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Denyse Wang Stoneback,2021-04-13,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-01-21,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-05-12,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-03-02,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2021-04-20,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-16,[],IL,102nd +Chief House Sponsor Rep. Jim Durkin,2021-04-26,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-01-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2021-04-20,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. William Davis,2021-04-22,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-24,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Pension Note Filed as Amended,2022-02-24,[],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2022-03-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Blaine Wilhour,2021-05-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Holmes,2022-02-24,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-23,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2022-03-07,[],IL,102nd +Chief Senate Sponsor Sen. Neil Anderson,2022-03-08,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-01,[],IL,102nd +First Reading,2022-02-22,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-22,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2022-03-03,['committee-passage-favorable'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-09,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +To Workforce Development Subcommittee,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-07-14,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-08-09,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-02-01,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-03-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-17,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Alternate Co-Sponsor Removed Rep. Kelly M. Burke,2021-04-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Sally J. Turner,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2022-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2022-11-29,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-03-24,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Appropriations,2021-05-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading December 1, 2022",2022-11-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-05-19,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-11-22,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +Removed Co-Sponsor Rep. Steven Reick,2021-05-12,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-04,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-03-15,[],IL,102nd +Assigned to Public Utilities Committee,2022-01-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2021-04-16,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-09-13,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-15,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-22,[],IL,102nd +Do Pass Criminal Law; 010-000-000,2022-03-29,['committee-passage'],IL,102nd +Assigned to Human Rights,2021-05-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-01-21,['referral-committee'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-04-07,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-01-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-09,[],IL,102nd +Recalled to Second Reading - Short Debate,2022-03-03,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-04,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Do Pass Local Government; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Chris Miller,2021-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-22,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-05,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-28,[],IL,102nd +Recalled to Second Reading - Short Debate,2022-03-03,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Alternate Chief Co-Sponsor Changed to Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-04-01,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2022-01-21,[],IL,102nd +Chief House Sponsor Rep. Kelly M. Cassidy,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-04-03,[],IL,102nd +"Motion Do Pass - Lost Elementary & Secondary Education: Administration, Licensing & Charter Schools; 003-005-000",2021-03-17,['committee-failure'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-03-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-19,[],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-26,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Education,2022-03-09,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-06,[],IL,102nd +Senate Committee Amendment No. 1 To Appropriations- Revenue and Finance,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8(b-1) this amendment will remain in the Committee on Assignments.,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-10,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2022-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-08-20,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2021-05-04,['amendment-introduction'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2021-05-05,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-20,['reading-1'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Assigned to Appropriations,2022-03-02,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 009-005-000,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-21,[],IL,102nd +Chief House Sponsor Rep. Mike Murphy,2021-04-26,[],IL,102nd +Do Pass Financial Institutions; 007-000-000,2021-05-13,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2022-03-07,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-24,[],IL,102nd +Chief Sponsor Changed to Sen. Sara Feigenholtz,2022-02-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-03-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-22,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Greg Harris,2022-03-01,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-11-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-02-16,[],IL,102nd +First Reading,2022-03-28,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-04,['reading-3'],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-09,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2022-03-15,[],IL,102nd +Motion Do Pass as Amended - Lost Health Care Availability & Accessibility Committee; 006-005-001,2022-03-31,['committee-failure'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Martwick,2022-02-23,['amendment-passage'],IL,102nd +Assigned to Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-10,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-02-22,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-13,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-12,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-03,[],IL,102nd +Assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-04-06,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-03-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-24,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Elizabeth Hernandez,2021-04-15,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-21,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-17,['referral-committee'],IL,102nd +First Reading,2022-02-18,['reading-1'],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-08,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-31,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-04-04,[],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-16,[],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-23,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Assigned to Insurance,2022-03-16,['referral-committee'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Stadelman,2022-02-25,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-28,[],IL,102nd +Assigned to Revenue,2021-05-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-23,[],IL,102nd +Waive Posting Notice,2022-04-04,[],IL,102nd +Waive Posting Notice,2021-04-20,[],IL,102nd +Assigned to Transportation,2022-03-28,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-11-30,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sally J. Turner,2022-03-16,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-09,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-04,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kathleen Willis,2021-03-19,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Koehler,2022-02-25,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-10-28,[],IL,102nd +Chief House Sponsor Rep. Sonya M. Harper,2022-02-28,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-14,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Chief House Sponsor Rep. Dagmara Avelar,2022-02-25,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Will Guzzardi,2022-03-03,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Do Pass / Short Debate Higher Education Committee; 006-004-000,2021-03-25,['committee-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-02-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Brad Halbrook,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-15,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Michael Halpin,2021-10-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-12-07,[],IL,102nd +Chief Senate Sponsor Sen. Jason A. Barickman,2021-04-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-04,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-12-16,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-05,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Chief Senate Sponsor Sen. Laura M. Murphy,2021-05-06,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Theresa Mah,2021-04-14,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-02,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Swanson,2021-04-28,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-06-15,[],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-03-31,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Ram Villivalam,2021-05-05,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Resolution Adopted 109-000-000,2022-03-30,['passage'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-10-22,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-03-31,[],IL,102nd +Assigned to Energy and Public Utilities,2022-03-16,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 To Appropriations- Veterans Affairs,2021-04-15,[],IL,102nd +Third Reading - Short Debate - Passed 108-002-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-20,[],IL,102nd +Senate Committee Amendment No. 4 Filed with Secretary by Sen. Sara Feigenholtz,2022-02-23,['amendment-introduction'],IL,102nd +Arrived in House,2021-05-07,['introduction'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 007-001-000,2021-05-12,['committee-passage'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2022-03-17,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Fiscal Note Filed,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-15,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-05-04,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Linda Holmes,2022-03-10,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-24,[],IL,102nd +Third Reading - Passed; 054-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2021-04-19,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-18,['amendment-failure'],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Postponed - Executive,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 21, 2021",2021-04-20,[],IL,102nd +Do Pass as Amended / Consent Calendar Housing Committee; 023-000-000,2021-03-17,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-02-05,[],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-08,[],IL,102nd +Assigned to Higher Education,2021-05-04,['referral-committee'],IL,102nd +Assigned to Insurance,2021-05-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-13,[],IL,102nd +Chief House Sponsor Rep. Will Guzzardi,2021-04-22,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Margaret Croke,2021-04-28,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-05-04,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2022-03-31,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-04-28,['referral-committee'],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-000-000,2022-03-09,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-02-01,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-28,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-03-19,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Rose,2021-04-21,['amendment-passage'],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dan Ugaste,2021-05-05,[],IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-02-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-23,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Licensed Activities,2021-04-29,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Harmon,2021-04-29,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-24,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-04-20,[],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Do Pass State Government; 006-000-000,2021-05-13,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-04-08,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-15,[],IL,102nd +Assigned to State Government Administration Committee,2021-04-28,['referral-committee'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2021-04-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert F. Martwick,2021-05-04,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Brady,2021-04-29,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-23,[],IL,102nd +Do Pass Insurance; 011-000-000,2021-05-06,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-12,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-06,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Nicholas K. Smith,2021-04-20,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-05,[],IL,102nd +Re-referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Assigned to Executive,2021-05-04,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 018-000-000,2021-05-04,['committee-passage'],IL,102nd +Do Pass as Amended Executive; 011-003-000,2022-02-07,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Thomas Morrison,2021-03-15,[],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2021-04-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Paul Jacobs,2022-02-25,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2021-05-26,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-06,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Thaddeus Jones,2021-03-26,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Postponed - Commerce,2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-15,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-21,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2021-04-29,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-02-23,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Assigned to Insurance,2021-05-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-27,[],IL,102nd +Assigned to Insurance Committee,2021-05-04,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2021-04-28,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-05-04,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-22,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-12,['committee-passage'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-25,[],IL,102nd +Assigned to State Government,2021-05-29,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-01-10,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Chief House Sponsor Rep. Anthony DeLuca,2021-04-26,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-03-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Do Pass Education; 013-000-000,2021-05-05,['committee-passage'],IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-05-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-20,[],IL,102nd +Resolution Adopted,2021-05-12,['passage'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Labor; 013-000-000,2021-04-28,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Collins,2021-04-21,['amendment-passage'],IL,102nd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-22,[],IL,102nd +Assigned to Insurance,2022-03-16,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Michael E. Hastings,2021-04-28,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2022-03-03,[],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 010-005-000,2021-05-12,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Do Pass as Amended Judiciary; 008-000-000,2021-03-16,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-24,['amendment-failure'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2021-05-13,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-13,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-03-26,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2021-05-14,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Kathleen Willis,2021-03-16,[],IL,102nd +Arrive in Senate,2021-05-28,['introduction'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2021-04-22,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-02-16,['amendment-failure'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Co-Sponsor Rep. Martin J. Moylan,2021-02-08,[],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2022-03-22,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 081-031-001,2021-04-15,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-02,[],IL,102nd +Approved for Consideration Assignments,2022-03-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading December 1, 2022",2022-11-30,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-07-11,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-10,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Placed on Calendar - Consideration Postponed,2021-04-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2022-01-24,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-04-19,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-04-21,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-17,[],IL,102nd +Approved for Consideration Assignments,2021-04-28,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-08,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-24,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. John F. Curran,2022-03-31,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-02-18,[],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Pensions,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-28,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2022-03-01,[],IL,102nd +Recalled to Second Reading,2022-03-09,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-03-16,[],IL,102nd +Do Pass Labor; 013-005-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-03-02,[],IL,102nd +Do Pass as Amended / Short Debate State Government Administration Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 102-000-002,2022-03-04,"['passage', 'reading-3']",IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-03-02,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-25,[],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2022-03-07,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-16,[],IL,102nd +Removed Co-Sponsor Rep. Paul Jacobs,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-03-17,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-03-19,[],IL,102nd +To Executive- Consolidation,2021-05-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2022-03-28,[],IL,102nd +Chief Senate Sponsor Sen. Jason A. Barickman,2022-03-07,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tom Weber,2022-02-15,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-03,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-05-06,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 009-006-000,2021-03-09,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Do Pass as Amended / Short Debate Appropriations-Higher Education Committee; 016-000-000,2022-03-31,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-27,[],IL,102nd +Chief Senate Sponsor Sen. David Koehler,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-01-19,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-03-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Bob Morgan,2021-04-14,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2022-03-18,['amendment-introduction'],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2021-03-26,['amendment-failure'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-18,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-04-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-23,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-08,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-01-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-04-15,[],IL,102nd +Approved for Consideration Assignments,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-01,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-09-23,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 070-044-000,2022-03-02,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-02-17,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-24,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-18,[],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-03-02,['committee-passage-favorable'],IL,102nd +Postponed - Licensed Activities,2021-05-19,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2022-03-02,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2021-05-11,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Arrived in House,2022-12-01,['introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2021-04-13,['amendment-introduction'],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-03,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-04-14,[],IL,102nd +Assigned to Transportation,2022-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-02-24,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-05-07,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-02-05,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-02-23,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-02-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 015-000-000,2022-04-06,['committee-passage-favorable'],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Andrew S. Chesney,2022-11-30,[],IL,102nd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2021-04-14,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-03,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-11-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-16,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-04-14,[],IL,102nd +Assigned to Adoption & Child Welfare Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-02-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-16,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-03-30,[],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Mary E. Flowers,2021-03-19,['amendment-introduction'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Avery Bourne,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2021-05-17,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2022-03-08,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-10-20,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Human Rights; 008-000-000,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-02-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-02-01,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-07,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-05,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-19,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-24,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-02,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-04-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Crowe,2021-04-22,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-30,[],IL,102nd +Chief House Sponsor Rep. C.D. Davidsmeyer,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Revenue; 009-001-000,2021-04-29,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-29,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Property Tax Subcommittee,2021-05-06,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2022-03-03,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-04-13,[],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Do Pass Pensions; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-04-05,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-05-13,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Assigned to Financial Institutions Committee,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-22,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-12,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Revenue; 010-000-000,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-02-05,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2022-02-22,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-14,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Approved for Consideration Assignments,2022-03-02,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 015-000-000,2022-02-23,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. John F. Curran,2022-01-13,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-03-07,['referral-committee'],IL,102nd +Recommends Be Adopted Human Services Committee; 014-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-28,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-17,[],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Hastings,2022-02-24,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Joyce,2022-02-25,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2022-03-31,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-05-10,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) May 28, 2021",2021-05-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael T. Marron,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-02-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2021-04-20,[],IL,102nd +Chief House Sponsor Rep. Norine K. Hammond,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-24,[],IL,102nd +Third Reading - Short Debate - Passed 106-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-01,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-16,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Third Reading - Passed; 044-010-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Will Guzzardi,2022-02-16,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Natalie A. Manley,2022-04-05,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2022-02-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Removed from Short Debate Status,2021-04-15,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2022-02-18,['amendment-introduction'],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Pension Note Filed as Amended,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Cunningham,2022-03-09,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2022-03-07,[],IL,102nd +Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-28,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-04,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-12-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-21,[],IL,102nd +Assigned to Local Government,2022-03-16,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-04-05,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4 (a),2021-04-22,['amendment-failure'],IL,102nd +Sponsor Removed Sen. Sally J. Turner,2022-02-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-25,[],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +Motion Prevailed 079-008-003,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-08-31,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-21,[],IL,102nd +Chief House Sponsor Rep. Keith R. Wheeler,2021-04-26,[],IL,102nd +Recalled to Second Reading,2022-02-23,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-03-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-29,[],IL,102nd +Assigned to Judiciary - Civil Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-05-27,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2022-03-08,['amendment-introduction'],IL,102nd +Remove Chief Co-Sponsor Rep. Anna Moeller,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-09-01,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-18,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Michael Kelly,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-05-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-20,[],IL,102nd +Chief House Sponsor Rep. Terra Costa Howard,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2022-03-28,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2021-03-11,[],IL,102nd +House Committee Amendment No. 2 Adopted in Health Care Availability & Accessibility Committee; by Voice Vote,2022-03-03,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2022-02-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-21,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-02-17,[],IL,102nd +Chief Senate Sponsor Sen. Craig Wilcox,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-22,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As December 1, 2021",2021-10-13,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 102-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-10-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-13,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Approved for Consideration Assignments,2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-01-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-03-02,[],IL,102nd +Do Pass Licensed Activities; 005-000-000,2022-03-23,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-02-10,[],IL,102nd +Third Reading - Short Debate - Passed 066-036-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Do Pass Local Government; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-03-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-05-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2022-03-04,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-04-21,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Ram Villivalam,2022-02-23,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-18,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Judiciary - Criminal Committee,2021-04-14,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2022-02-22,[],IL,102nd +Recalled to Second Reading,2022-03-09,['reading-2'],IL,102nd +"House Floor Amendment No. 2 Recommends Be Adopted Small Business,Tech Innovation, and Entrepreneurship Committee; 010-000-000",2022-03-03,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Second Reading - Short Debate,2022-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-05,[],IL,102nd +Do Pass Energy and Public Utilities; 013-000-000,2021-05-20,['committee-passage'],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-24,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 005-003-000,2022-02-23,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-11-29,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Resolution Adopted,2022-04-05,['passage'],IL,102nd +Do Pass Executive; 015-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-26,[],IL,102nd +Resolution Adopted,2021-05-27,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-24,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +"Chief House Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-22,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-03-17,['amendment-passage'],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-15,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-11,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Steve McClure,2021-04-27,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-16,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Nicholas K. Smith,2021-04-09,['amendment-introduction'],IL,102nd +Recommends Be Adopted Executive Committee; 009-006-000,2022-04-08,['committee-passage-favorable'],IL,102nd +Chief House Sponsor Rep. Delia C. Ramirez,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Chief House Sponsor Rep. Bob Morgan,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-03-31,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Chief Senate Sponsor Sen. Ann Gillespie,2021-05-04,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Murphy,2021-05-06,['amendment-passage'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-11,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-01,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-24,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Chris Bos,2021-05-04,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Ram Villivalam,2021-04-16,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Crowe,2021-04-22,['amendment-passage'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-02-22,[],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 007-000-000,2021-04-21,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-03-07,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-10,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-05-31,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-02-05,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-02-05,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Hastings,2021-04-20,['amendment-passage'],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +First Reading,2021-03-19,['reading-1'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Removed Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Chief House Sponsor Rep. Daniel Didech,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-22,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-16,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Assigned to Pensions,2022-03-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-02-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-01-31,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-14,[],IL,102nd +Do Pass Transportation; 016-002-000,2022-03-23,['committee-passage'],IL,102nd +Housing Affordability Impact Note Requested by Rep. Deanne M. Mazzochi,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-03-04,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +House Floor Amendment No. 1 Re-assigned to State Government Administration Committee,2022-04-03,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-12,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-28,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Third Reading - Passed; 043-000-000,2021-05-05,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-07,[],IL,102nd +Assigned to Personnel & Pensions Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-24,[],IL,102nd +Assigned to Insurance Committee,2021-05-04,['referral-committee'],IL,102nd +Do Pass Licensed Activities; 007-000-000,2021-05-06,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-10-19,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-02-10,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Assigned to Criminal Law,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-25,[],IL,102nd +Assigned to Judiciary,2021-04-28,['referral-committee'],IL,102nd +Do Pass Commerce; 008-000-000,2021-05-20,['committee-passage'],IL,102nd +Do Pass Local Government; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Assigned to Education,2021-05-05,['referral-committee'],IL,102nd +Assigned to Financial Institutions,2021-04-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-22,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2022-03-23,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Human Services Committee,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Sims,2021-04-22,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2022-02-23,['reading-1'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2021-04-29,[],IL,102nd +Senate Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-20,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-04-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-18,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Chief House Sponsor Rep. Michael Kelly,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Local Government,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Sims,2022-02-24,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-23,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +Third Reading - Passed; 052-001-000,2021-04-28,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-03,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Education,2021-04-28,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-04-16,['amendment-failure'],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-12,['committee-passage'],IL,102nd +Remove Chief Co-Sponsor Rep. Adam Niemerg,2021-03-22,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Health; 015-000-000,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-30,[],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Do Pass as Amended Higher Education; 014-000-000,2021-03-24,['committee-passage'],IL,102nd +Do Pass Pensions; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-02-22,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2021-05-13,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Johnson,2022-02-23,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-04-21,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2022-03-16,['committee-passage'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt State Government; 008-000-000,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-23,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Do Pass Pensions; 005-000-000,2022-03-23,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Win Stoller,2021-04-16,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-27,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +Assigned to Personnel & Pensions Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-12,[],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2022-03-23,['amendment-passage'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-16,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Stadelman,2021-04-21,['amendment-passage'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Licensed Activities,2022-02-07,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-02,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2021-03-01,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-21,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Chief House Sponsor Rep. Stephanie A. Kifowit,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Murphy,2021-04-20,['amendment-passage'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Do Pass Behavioral and Mental Health; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-22,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-25,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 008-006-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-20,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Robert F. Martwick,2021-05-25,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2023-01-10,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-10-20,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-07-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Morrison,2022-02-24,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-05-05,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-21,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-03-08,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-04-06,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-04,['amendment-failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +Recalled to Second Reading,2022-02-23,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-02-01,[],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Julie A. Morrison,2021-05-04,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2022-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 6, 2022",2022-04-05,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-22,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Do Pass / Standard Debate Housing Committee; 013-009-000,2021-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 017-011-000,2021-04-22,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-03-15,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-03-29,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2022-03-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-02-18,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-04-20,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Steve McClure,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Labor,2022-02-22,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Postponed - Executive,2022-03-23,[],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2022-02-18,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Michael E. Hastings,2021-08-31,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Home Rule Note Filed,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Placed on Calendar - Consideration Postponed,2022-02-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-03-24,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-05-05,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-01-31,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-02-16,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2022-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-04-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-25,['reading-3'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Appropriations-Human Services Committee; by Voice Vote,2021-03-26,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Ann M. Williams,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-07,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 5, 2022",2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Senate Committee Amendment No. 2 Postponed - Executive,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-16,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-22,[],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 012-007-000,2022-02-17,['committee-passage'],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-29,[],IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-03-22,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Koehler,2021-04-29,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 20, 2021",2021-04-15,[],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed from Short Debate Status,2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-04-20,[],IL,102nd +Assigned to Licensed Activities,2021-05-04,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-03-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-04-05,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-08-26,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-07,[],IL,102nd +Assigned to Pensions,2021-05-10,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Fine,2021-04-29,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Adriane Johnson,2022-02-18,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2022-03-01,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-03,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 30, 2021",2021-05-25,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Labor,2022-02-23,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Michael Kelly,2022-07-08,[],IL,102nd +Do Pass / Consent Calendar Restorative Justice Committee; 006-000-000,2021-03-25,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. Seth Lewis,2021-05-05,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-23,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-07-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021; Constitutional Amendments",2021-05-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-04-06,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-09,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-03-09,[],IL,102nd +Assigned to Transportation,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-31,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-04-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2021-04-28,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-03,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-04-20,[],IL,102nd +Do Pass Executive; 016-000-000,2021-05-19,['committee-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-05-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Floor Amendment No. 2 Pension Note Requested as Amended by Rep. Thomas Morrison,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-02-07,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-07-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Chief Senate Sponsor Sen. Steven M. Landek,2021-04-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-24,[],IL,102nd +Chief House Sponsor Rep. Natalie A. Manley,2021-04-30,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Second Reading,2021-04-27,['reading-2'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2021-04-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-22,[],IL,102nd +Assigned to Ethics & Elections Committee,2021-04-28,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Delia C. Ramirez,2021-05-13,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Assigned to Labor,2021-05-04,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2021-04-28,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Morrison,2022-02-23,['amendment-passage'],IL,102nd +Arrived in House,2022-12-01,['introduction'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrived in House,2021-05-07,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Energy and Public Utilities,2021-05-10,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-20,[],IL,102nd +Assigned to Transportation,2021-05-11,['referral-committee'],IL,102nd +Do Pass Education; 011-000-000,2021-05-12,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Immigration & Human Rights Committee; 005-002-000,2022-02-24,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-16,['referral-committee'],IL,102nd +Do Pass Criminal Law; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2021-05-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mark L. Walker,2022-03-01,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-02-22,[],IL,102nd +Third Reading - Passed; 053-000-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 008-006-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Assigned to Licensed Activities,2021-05-10,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Education,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Do Pass Criminal Law; 010-000-000,2021-05-19,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Brian W. Stewart,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Munoz,2021-04-23,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 012-007-000,2021-04-16,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Third Reading - Short Debate - Passed 106-003-002,2021-04-22,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-04-06,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-01-10,[],IL,102nd +Chief House Sponsor Rep. Patrick Windhorst,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-03-24,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-01-29,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-01,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Health Care Availability & Accessibility Committee,2022-04-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2022",2022-03-24,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-02-16,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Dagmara Avelar,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-03,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Janet Yang Rohr,2022-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jason A. Barickman,2021-05-12,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 012-000-000,2022-03-09,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2021-04-14,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-16,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-23,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2022-03-21,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-23,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-04-14,[],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-08,[],IL,102nd +Do Pass as Amended / Short Debate Veterans' Affairs Committee; 006-000-000,2021-04-22,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-04-04,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Chief House Sponsor Rep. Theresa Mah,2022-02-28,[],IL,102nd +Do Pass Energy and Public Utilities; 017-000-000,2022-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 098-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Patricia Van Pelt,2022-03-07,[],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-14,[],IL,102nd +Chief House Sponsor Rep. Jonathan Carroll,2022-02-28,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-09,[],IL,102nd +Chief Senate Sponsor Sen. Sally J. Turner,2021-04-28,[],IL,102nd +Third Reading - Short Debate - Passed 099-005-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Local Government,2021-04-13,[],IL,102nd +Do Pass Energy and Public Utilities; 013-000-000,2021-05-20,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-04-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Assigned to Criminal Law,2022-03-16,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-01-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Villivalam,2022-02-25,['amendment-passage'],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-04-13,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-16,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Eva-Dina Delgado,2021-03-17,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2022-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-01,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-02,[],IL,102nd +Chief House Sponsor Rep. LaToya Greenwood,2021-04-22,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-19,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-24,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +To Appropriations- Criminal Justice,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-05-30,[],IL,102nd +Removed from Consent Calendar Status Rep. Delia C. Ramirez,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-03-02,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2022-01-26,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-31,[],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 28, 2021",2021-04-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2022-02-24,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-12-01,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-03-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-26,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-22,[],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-02-24,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-16,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Jil Tracy,2022-03-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-23,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-03-02,[],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-22,[],IL,102nd +Recommends Be Adopted Human Services Committee; 013-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2022-03-07,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2022-02-17,[],IL,102nd +Removed from Short Debate Status,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-16,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-03-08,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Assigned to Executive,2022-03-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-05-30,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Mary E. Flowers,2022-04-04,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-04-27,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2021-04-20,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-13,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-03-31,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-12,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-28,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 010-005-000,2022-03-23,['committee-passage'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 2 Postponed - Local Government,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-04-04,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-19,[],IL,102nd +Do Pass / Consent Calendar Adoption & Child Welfare Committee; 008-000-000,2021-05-11,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-30,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-02-02,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-01,[],IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-02-22,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to Labor & Commerce Committee,2022-03-07,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Steven M. Landek,2021-04-23,[],IL,102nd +Third Reading - Standard Debate - Passed 070-044-000,2022-03-02,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-03-02,[],IL,102nd +Chief House Sponsor Rep. Anne Stava-Murray,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-03-04,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-21,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Do Pass / Short Debate Appropriations-Human Services Committee; 022-000-000,2022-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-22,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-01-26,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-04-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-03-05,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-04-27,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Will Guzzardi,2022-04-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2021-03-18,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-14,[],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2021-03-23,['amendment-failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2022-03-25,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2021-05-18,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Third Reading - Short Debate - Passed 106-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-22,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-27,[],IL,102nd +Removed Co-Sponsor Rep. Robyn Gabel,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 012-000-000,2022-03-09,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-17,[],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2022-02-23,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-03-16,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Morrison,2021-04-20,['amendment-passage'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-16,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-21,[],IL,102nd +First Reading,2022-03-16,['reading-1'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-11,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2022-02-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-07,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-04-21,[],IL,102nd +Assigned to Revenue,2022-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-04-13,[],IL,102nd +Third Reading - Passed; 053-000-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 2 Postponed - Revenue,2021-04-21,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-04-01,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-08-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2022-03-16,[],IL,102nd +Assigned to Local Government,2022-03-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-03-24,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Do Pass Executive; 011-002-002,2021-05-30,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-02-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-02,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-03-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Third Reading - Passed; 052-004-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-02-01,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-09,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Housing Affordability Impact Note Filed,2022-03-04,[],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Assigned to Insurance,2021-05-04,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-03-15,[],IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2022-02-09,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-17,[],IL,102nd +Assigned to State Government,2022-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Johnson,2022-02-23,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2022-03-04,[],IL,102nd +"Alternate Chief Sponsor Removed Rep. Marcus C. Evans, Jr.",2021-04-28,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-16,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-02-25,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-24,['amendment-failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-05,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-23,[],IL,102nd +Chief Sponsor Changed to Sen. Antonio Muñoz,2021-10-26,[],IL,102nd +House Committee Amendment No. 2 Adopted in Appropriations-Human Services Committee; by Voice Vote,2021-03-26,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Third Reading - Passed; 046-003-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-03-25,[],IL,102nd +Fiscal Note Filed,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-01-31,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-05-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Craig Wilcox,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-05-05,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Thaddeus Jones,2022-02-25,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-26,[],IL,102nd +House Committee Amendment No. 1 Referred to Executive Committee,2022-11-29,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2021-04-16,['committee-passage-favorable'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +Assigned to State Government Administration Committee,2022-01-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-03-17,['committee-passage'],IL,102nd +Assigned to Insurance,2021-05-11,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Approved for Consideration Assignments,2022-04-06,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-22,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-08,[],IL,102nd +Chief Senate Sponsor Sen. Michael E. Hastings,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-04-01,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2022-02-23,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Human Services Committee; 013-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Second Reading,2021-05-26,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +Do Pass Education; 013-000-000,2021-05-12,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-10-20,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-13,[],IL,102nd +Resolution Adopted 105-000-000,2023-01-10,['passage'],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-12,['committee-passage'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Removed Co-Sponsor Rep. Emanuel Chris Welch,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-27,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-09,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. John F. Curran,2021-04-21,[],IL,102nd +Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Johnson,2022-02-23,['amendment-passage'],IL,102nd +Postponed - Licensed Activities,2022-02-07,[],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-05-13,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-13,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Withdrawn by Sen. Cristina Castro,2022-02-24,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-26,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-03-11,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-21,[],IL,102nd +Third Reading - Passed; 054-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-05-06,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Chief House Sponsor Rep. Michael Halpin,2021-04-27,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-20,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Do Pass as Amended / Short Debate Human Services Committee; 015-000-000,2022-03-23,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2022-02-10,['amendment-passage'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-07-21,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-26,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-28,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Crowe,2021-04-22,['amendment-passage'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-30,[],IL,102nd +Do Pass / Short Debate Counties & Townships Committee; 010-001-000,2021-05-13,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-02,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Do Pass / Consent Calendar Adoption & Child Welfare Committee; 007-000-000,2021-05-04,['committee-passage'],IL,102nd +Do Pass / Short Debate Insurance Committee; 019-000-000,2021-03-25,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted State Government Administration Committee; 007-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-11,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2021-04-23,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Chief House Sponsor Rep. LaToya Greenwood,2021-04-22,[],IL,102nd +Third Reading - Passed; 054-000-000,2021-05-06,"['passage', 'reading-3']",IL,102nd +Assigned to State Government Administration Committee,2021-05-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Education,2021-04-28,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. LaToya Greenwood,2022-03-01,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-10,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-23,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-21,[],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 007-000-000,2021-05-05,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-06,[],IL,102nd +Resolution Adopted; 052-000-000,2021-06-01,['passage'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Health Care Availability & Accessibility Committee,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 005-003-000,2022-04-04,['committee-passage-favorable'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 20, 2021",2021-04-15,['reading-1'],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 017-000-000,2021-05-11,['committee-passage'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 007-001-000,2021-05-13,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-28,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-15,[],IL,102nd +Senate Committee Amendment No. 2 Adopted,2022-02-23,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2022-03-25,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Assigned to Mental Health & Addiction Committee,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-10-19,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Ann Gillespie,2022-03-08,[],IL,102nd +Chief House Sponsor Rep. Robyn Gabel,2021-04-26,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Martwick,2021-04-21,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Lightford,2021-04-22,['amendment-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2022-03-23,[],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2022-03-28,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-10,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-16,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Assigned to Insurance Committee,2022-03-07,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Approved for Consideration Assignments,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Hastings,2021-04-21,['amendment-passage'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-16,[],IL,102nd +Arrived in House,2021-05-05,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2021-05-12,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Postponed - Criminal Law,2021-05-12,[],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2021-04-22,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 107-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2022-03-28,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-04-06,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-27,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-02-10,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-02-01,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2022-03-28,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-25,[],IL,102nd +Assigned to Judiciary,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-02-11,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-09,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2021-04-23,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 018-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-23,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-02,['reading-1'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2022-02-15,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Chief House Sponsor Rep. Theresa Mah,2021-04-23,[],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-04,[],IL,102nd +Remove Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Assigned to State Government Administration Committee,2021-05-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-21,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Removed from Short Debate Status,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 006-002-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-07-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Jackie Haas,2022-07-08,[],IL,102nd +Assigned to Health,2021-05-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-24,[],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-04-20,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-03-25,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Second Reading,2021-05-24,['reading-2'],IL,102nd +Chief House Sponsor Rep. Jay Hoffman,2021-05-07,[],IL,102nd +Recalled to Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-05-20,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 016-010-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Chief House Sponsor Rep. Carol Ammons,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 28, 2021",2021-04-27,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-21,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-23,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-21,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Van Pelt,2021-04-22,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2022-03-03,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Chief House Sponsor Rep. Nicholas K. Smith,2022-12-01,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-15,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Natalie A. Manley,2021-04-20,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Do Pass Transportation; 014-003-000,2022-03-23,['committee-passage'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. William Davis,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-07-11,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-05-07,[],IL,102nd +Senate Committee Amendment No. 2 Postponed - Labor,2022-02-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Burke,2021-05-04,[],IL,102nd +House Floor Amendment No. 2 State Debt Impact Note Requested as Amended by Rep. Thomas Morrison,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-19,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-05-12,['committee-passage'],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Assigned to Behavioral and Mental Health,2021-05-25,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-11,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +First Reading,2021-04-20,['reading-1'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2021-04-27,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-20,[],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-03,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2021-05-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-22,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Assigned to Criminal Law,2021-05-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +Do Pass Energy and Public Utilities; 013-000-000,2021-05-20,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Seth Lewis,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-22,[],IL,102nd +Assigned to Insurance,2021-05-04,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-17,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-04-06,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-04-05,[],IL,102nd +Assigned to Criminal Law,2021-05-11,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-10-28,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Thomas Cullerton,2021-05-13,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Judiciary - Criminal Committee; 012-007-000,2021-04-16,['committee-passage-favorable'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-03,[],IL,102nd +Assigned to Veterans Affairs,2021-05-04,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2022-03-01,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted State Government Administration Committee; 008-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2021-04-20,[],IL,102nd +Do Pass Licensed Activities; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-31,[],IL,102nd +Chief Senate Sponsor Sen. Chapin Rose,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-15,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2022-03-29,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Neil Anderson,2021-04-22,[],IL,102nd +Assigned to Veterans Affairs,2021-05-10,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael T. Marron,2021-04-29,['amendment-introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-04-22,['amendment-failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Do Pass Pensions; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2022-02-22,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-03-28,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-24,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 015-000-000,2022-03-09,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-02-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-31,[],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-12-07,[],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-19,[],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 006-002-000,2022-03-17,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Assigned to Health,2022-03-16,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-02,[],IL,102nd +Chief House Sponsor Rep. Justin Slaughter,2022-02-25,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Referred to Rules Committee,2021-06-15,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-04,['amendment-failure'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2022-03-16,[],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +"Alternate Chief Sponsor Changed to Sen. Emil Jones, III",2021-05-13,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Revenue,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-04-06,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-04-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Anna Moeller,2022-03-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-10,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 4 Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2022-03-30,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2021-04-14,[],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2022-03-17,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-02-17,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-08,[],IL,102nd +Chief House Sponsor Rep. Anne Stava-Murray,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-03-04,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Second Reading,2022-04-06,['reading-2'],IL,102nd +Third Reading - Passed; 046-009-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-03-09,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Police & Fire Committee,2021-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Martwick,2022-02-23,['amendment-passage'],IL,102nd +Tabled Pursuant to Rule 22(g),2022-03-31,['withdrawal'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Mental Health & Addiction Committee; 016-000-000,2022-03-24,['committee-passage-favorable'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2022-03-21,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Assigned to Labor,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-23,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-19,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +Chief House Sponsor Rep. Daniel Swanson,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 8, 2022",2022-03-02,[],IL,102nd +Do Pass Revenue; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-10-22,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-05-04,[],IL,102nd +Chief House Sponsor Rep. Maura Hirschauer,2021-05-04,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-02,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-14,[],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-01,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 103-001-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Ram Villivalam,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-31,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-10-22,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Do Pass as Amended / Consent Calendar Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Simmons,2022-02-25,['amendment-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 8, 2022",2022-04-04,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-16,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Sam Yingling,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-24,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Eva-Dina Delgado,2021-04-20,['amendment-introduction'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-04-04,[],IL,102nd +Chief Sponsor Changed to Sen. Ram Villivalam,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-03-10,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Judiciary; 007-000-000,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-25,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. William Davis,2022-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-26,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-12-16,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-14,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-20,[],IL,102nd +Resolution Adopted,2022-03-15,['passage'],IL,102nd +Assigned to Education,2021-05-18,['referral-committee'],IL,102nd +Do Pass Transportation; 017-000-000,2022-04-04,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2022-02-23,[],IL,102nd +Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Arrive in Senate,2022-03-30,['introduction'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-24,[],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-05-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2022-03-21,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-10-06,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-22,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-05,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Police & Fire Committee,2021-04-21,[],IL,102nd +Assigned to Executive Committee,2022-01-19,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-23,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-22,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-01-18,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Arrived in House,2021-05-07,['introduction'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted State Government Administration Committee; 007-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-08,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-01-24,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-04-05,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +Third Reading - Short Debate - Passed 105-003-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-05,[],IL,102nd +Postponed - Executive,2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 019-000-000,2021-05-13,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-10,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Criminal Law,2021-05-18,[],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Sam Yingling,2022-02-14,[],IL,102nd +Postponed - Public Safety,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-03-01,[],IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +Referred to Rules Committee,2021-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-23,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Human Services Committee; 014-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2022-01-21,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Assigned to Executive Committee,2022-03-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2021-04-29,[],IL,102nd +First Reading,2022-03-28,['reading-1'],IL,102nd +Senate Floor Amendment No. 3 To Judiciary- Privacy,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Michael J. Zalewski,2021-10-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Do Pass as Amended Executive; 014-000-000,2022-02-24,['committee-passage'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Ann Gillespie,2022-04-01,['amendment-introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Adoption & Child Welfare Committee,2022-02-17,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-01,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Paul Jacobs,2021-04-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Jay Hoffman,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Labor,2021-05-20,[],IL,102nd +Postponed - Executive,2021-05-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pension Note Filed,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-25,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +To Executive- Government Operations,2021-05-19,[],IL,102nd +Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-06-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2022-04-04,[],IL,102nd +"Motion Filed to Reconsider Vote Rep. Jaime M. Andrade, Jr.",2021-04-14,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-17,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-24,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-02,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-03-03,[],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-11-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 082-020-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-02,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-03-17,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-10,[],IL,102nd +First Reading,2022-02-17,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - Passed 082-022-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Katie Stuart,2021-04-13,['amendment-introduction'],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Neil Anderson,2021-04-22,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-20,[],IL,102nd +Assigned to Executive,2022-11-30,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Delia C. Ramirez,2021-05-21,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-05-04,['referral-committee'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Assigned to Public Utilities Committee,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Arrived in House,2021-05-13,['introduction'],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2021-04-29,[],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Do Pass Education; 011-000-000,2021-05-19,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-27,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Do Pass / Consent Calendar Veterans' Affairs Committee; 006-000-000,2021-05-11,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Connor,2021-04-22,['amendment-passage'],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 007-000-000,2021-05-11,['committee-passage'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2021-04-23,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2021-03-18,[],IL,102nd +Chief House Sponsor Rep. Jonathan Carroll,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-04-05,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Anthony DeLuca,2021-04-22,[],IL,102nd +Postponed - Executive,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Assigned to Local Government,2021-05-11,['referral-committee'],IL,102nd +Third Reading - Passed; 052-001-000,2021-04-28,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2022-04-07,[],IL,102nd +Chief House Sponsor Rep. Frances Ann Hurley,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-22,[],IL,102nd +Third Reading - Passed; 042-005-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2021-04-15,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Sen. John Connor,2021-05-04,[],IL,102nd +Resolution Adopted; 056-000-000,2022-04-09,['passage'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Theresa Mah,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-02,[],IL,102nd +Chief Sponsor Changed to Rep. Katie Stuart,2022-02-15,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-17,[],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Resolution Adopted,2022-04-07,['passage'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Do Pass Pensions; 008-000-000,2021-05-26,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-30,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2021-04-27,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-24,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-22,[],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 007-000-000,2021-05-05,['committee-passage'],IL,102nd +Third Reading - Passed; 050-003-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-14,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-16,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-05-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Assigned to Appropriations,2021-05-04,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-04-28,['referral-committee'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Thomas M. Bennett,2021-04-16,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-17,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-17,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-21,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Adoption & Child Welfare Committee,2021-05-11,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Assigned to Insurance,2021-05-11,['referral-committee'],IL,102nd +Second Reading,2021-05-26,['reading-2'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Melinda Bush,2021-03-25,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-05-25,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 14, 2021",2021-04-13,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2022-03-02,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Aquino,2021-04-29,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-04-14,[],IL,102nd +Resolutions - Consent Calendar - Third Day,2021-04-15,[],IL,102nd +Suspend Rule 21 - Prevailed 071-043-000,2021-05-26,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-26,[],IL,102nd +Recalled to Second Reading,2021-04-28,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-03-25,[],IL,102nd +Do Pass Public Safety; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2021-04-23,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +"Chief House Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-22,[],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2021-03-11,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-03-23,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Thomas M. Bennett,2021-04-08,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-23,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-02-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Chief House Sponsor Rep. David A. Welter,2021-04-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-02-16,[],IL,102nd +Chief Senate Sponsor Sen. Jason Plummer,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-05-29,[],IL,102nd +Do Pass / Consent Calendar Energy & Environment Committee; 025-000-000,2021-05-11,['committee-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-02-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-22,[],IL,102nd +Do Pass Executive; 016-000-000,2021-05-13,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 006-000-000,2021-04-29,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Assigned to State Government Administration Committee,2021-04-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2022-03-09,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-20,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2022-03-07,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Assigned to Executive,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-21,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Alternate Co-Sponsor All Other Members of the House,2021-10-29,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-28,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-05-10,['amendment-introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-04-28,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-07,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-04-30,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Criminal Law,2021-04-22,[],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-04-28,['referral-committee'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-02-16,['committee-passage'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-09,[],IL,102nd +Assigned to Health,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 029-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-23,[],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-20,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-27,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Consumer Protection Committee; 004-002-000,2021-03-15,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Adopted in Immigration & Human Rights Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-22,[],IL,102nd +Assigned to Health,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Passed; 044-013-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Assigned to State Government,2021-05-18,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-03,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-07-14,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Elizabeth Hernandez,2022-04-04,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-01-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Floor Amendment No. 1 Pension Note Filed as Amended,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-08-09,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-03-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 30, 2022",2022-03-29,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-09-12,[],IL,102nd +"Remains in Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-05-03,[],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2022-03-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-02-19,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-14,[],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-22,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 098-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-06,['reading-3'],IL,102nd +Assigned to Executive Committee,2022-03-07,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-08-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-17,[],IL,102nd +Chief Senate Sponsor Sen. Sally J. Turner,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-01-25,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-02-28,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-01-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Executive,2022-11-30,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. John Connor,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-22,[],IL,102nd +To Appropriations- Criminal Justice,2021-05-04,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Sara Feigenholtz,2021-04-15,['amendment-introduction'],IL,102nd +Fiscal Note Requested by Rep. Blaine Wilhour,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Financial Institutions Committee; 010-001-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-04,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2022-03-03,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Do Pass as Amended / Consent Calendar Labor & Commerce Committee; 027-000-000,2021-05-05,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-03-10,[],IL,102nd +Chief Senate Sponsor Sen. Craig Wilcox,2021-05-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-04-01,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-01-27,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-17,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-25,[],IL,102nd +Assigned to State Government Administration Committee,2021-10-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-25,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Local Government,2021-05-11,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +To Appropriations- Business Regulations and Labor,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-04,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-11-22,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2022-01-27,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-15,[],IL,102nd +Senate Floor Amendment No. 1 Re-referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-10,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-21,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-26,[],IL,102nd +Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Mary E. Flowers,2021-04-20,['amendment-introduction'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-09-14,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-08,[],IL,102nd +First Reading,2022-03-16,['reading-1'],IL,102nd +"Chief House Sponsor Rep. Lawrence Walsh, Jr.",2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-29,[],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2022-03-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +House Floor Amendment No. 1 State Debt Impact Note Filed as Amended,2022-02-24,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Chief Sponsor Changed to Sen. Cristina Castro,2022-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-04-20,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +Sponsor Removed Sen. Sally J. Turner,2021-04-28,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Greg Harris,2021-04-30,[],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2022-12-01,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-01,[],IL,102nd +Removed Co-Sponsor Rep. Michael J. Zalewski,2021-10-07,[],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-10-18,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-11,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-29,[],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Murphy,2021-04-20,['amendment-passage'],IL,102nd +Chief House Sponsor Rep. Kathleen Willis,2022-02-24,[],IL,102nd +Racial Impact Note Request is Inapplicable,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Local Government; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 6, 2022",2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-02-24,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-09,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Antonio Muñoz,2022-02-24,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-01,[],IL,102nd +Removed Co-Sponsor Rep. Jonathan Carroll,2022-02-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2022-03-03,[],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-05-12,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2021-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-04-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Jones,2022-03-09,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 012-000-000,2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2022-03-24,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Third Reading - Short Debate - Passed 102-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-10,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-03-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2022-02-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-13,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dave Vella,2022-04-05,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-04,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-03-10,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-03-07,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-04-26,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-04-28,['referral-committee'],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Tom Demmer,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-05-26,[],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 016-000-000,2022-03-16,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-08-31,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Assigned to State Government,2021-04-28,['referral-committee'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-03-07,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2022-03-08,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-15,[],IL,102nd +Third Reading - Short Debate - Passed 065-044-001,2021-04-14,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Do Pass as Amended / Short Debate Health Care Availability & Accessibility Committee; 012-000-000,2022-03-03,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-21,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-08,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2022-02-14,[],IL,102nd +Third Reading - Short Debate - Passed 109-000-002,2022-03-30,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-03,[],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2022-01-18,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-01-28,[],IL,102nd +Arrive in Senate,2022-04-01,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Chief Sponsor Changed to Rep. Kelly M. Burke,2022-03-28,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2021-04-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-18,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-03-07,['referral-committee'],IL,102nd +"Removed from Consent Calendar Status Rep. Marcus C. Evans, Jr.",2021-04-21,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mike Simmons,2022-02-18,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2022-02-28,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2022-03-10,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-01,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2022-03-24,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-03-04,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-21,[],IL,102nd +"Senate Floor Amendment No. 1 Adopted; D, Turner",2022-02-23,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-03-29,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"House Floor Amendment No. 1 To Roadways, Rail & Aviation Subcommittee",2022-02-14,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-10,[],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-07,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-09-08,[],IL,102nd +Third Reading - Short Debate - Passed 107-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-03-22,[],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Holmes,2022-12-01,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-03-12,[],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass Energy and Public Utilities; 017-000-000,2022-03-24,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Standard Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-16,[],IL,102nd +Chief Senate Sponsor Sen. Donald P. DeWitte,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-01,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-03,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Postponed - Judiciary,2021-05-25,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-15,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2022-03-30,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 100-005-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Simmons,2021-04-22,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Motion Filed to Reconsider Vote Rep. Andrew S. Chesney,2022-03-02,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Laura M. Murphy,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-07-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 29, 2022",2022-03-28,[],IL,102nd +Recommends Be Adopted Rules Committee; 005-000-000,2022-01-11,['committee-passage-favorable'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 072-026-002,2021-04-15,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Commerce,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-04-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2021",2021-03-24,[],IL,102nd +Removed Co-Sponsor Rep. Jonathan Carroll,2021-03-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Do Pass as Amended Behavioral and Mental Health; 007-004-000,2021-04-14,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Antonio Muñoz,2022-03-01,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-01-19,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 018-000-000,2022-03-22,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-22,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-02-23,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-02,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 29, 2021",2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-02-22,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Michael T. Marron,2021-04-26,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-03-10,[],IL,102nd +Do Pass as Amended Criminal Law; 008-000-000,2022-02-09,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-31,['referral-committee'],IL,102nd +"Senate Floor Amendment No. 3 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-28,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2021-05-11,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-04-23,['amendment-introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Rezin,2022-03-09,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-02-18,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Recalled to Second Reading - Short Debate,2022-03-04,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 101-000-000,2022-04-04,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 005-003-000,2022-02-16,['committee-passage'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Katie Stuart,2022-03-28,['amendment-introduction'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-31,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-17,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura M. Murphy,2021-05-05,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-29,[],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2022-03-09,[],IL,102nd +Assigned to Executive,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-02-24,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-01-04,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 5, 2021",2021-05-04,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-05-05,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-02-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 007-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Chief House Sponsor Rep. Thaddeus Jones,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-04,['amendment-introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Thomas M. Bennett,2022-03-15,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Neil Anderson,2021-04-27,[],IL,102nd +House Committee Amendment No. 1 Adopted in Appropriations-Public Safety Committee; by Voice Vote,2022-02-16,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-21,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Kelly M. Burke,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-02-16,[],IL,102nd +Arrived in House,2021-05-07,['introduction'],IL,102nd +Chief Senate Sponsor Sen. David Koehler,2021-05-28,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-04-20,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-03-02,[],IL,102nd +Do Pass Insurance; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2022-03-02,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-04-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Chief House Sponsor Rep. Daniel Swanson,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Bryant,2021-04-29,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-26,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Do Pass Higher Education; 012-000-000,2021-05-12,['committee-passage'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-05-05,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2022-03-24,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Do Pass Pensions; 008-000-000,2021-05-06,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Postponed - Licensed Activities,2021-04-29,[],IL,102nd +Fiscal Note Filed,2021-05-06,[],IL,102nd +Assigned to State Government,2021-04-28,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-26,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-11-01,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Chief House Sponsor Rep. Daniel Swanson,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2022-03-03,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-30,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-02,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-16,[],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 017-000-000,2021-05-11,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-02-23,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Assigned to Human Services Committee,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-01,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Resolution Adopted; 052-000-000,2021-06-01,['passage'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Fowler,2021-04-22,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Chief Senate Sponsor Sen. Neil Anderson,2021-04-22,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Thomas Morrison,2021-03-15,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-22,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-03-16,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Third Reading - Passed; 049-006-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-05-13,[],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Third Reading - Passed; 053-000-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +"Added Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-04-20,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-21,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Bush,2021-04-22,['amendment-passage'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-13,[],IL,102nd +Resolution Adopted 111-000-000,2022-04-08,['passage'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Martwick,2021-04-21,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Chapin Rose,2021-04-28,['amendment-introduction'],IL,102nd +Recalled to Second Reading,2022-03-10,['reading-2'],IL,102nd +Co-Sponsor Rep. Michelle Mussman,2021-02-08,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Amy Grant,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 31, 2021",2021-05-29,[],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Chief House Sponsor Rep. Bob Morgan,2021-04-26,[],IL,102nd +Chief Sponsor Changed to Rep. Janet Yang Rohr,2021-04-14,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"Chief House Sponsor Rep. Maurice A. West, II",2021-04-22,[],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-05-11,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. Robyn Gabel,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-04-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Assigned to State Government Administration Committee,2021-05-04,['referral-committee'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Assigned to Transportation,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Jason A. Barickman,2021-03-23,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-05-13,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Amy Elik,2021-05-03,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-21,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Passed; 049-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-13,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-04-22,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2021-05-07,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-18,[],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 14, 2021",2021-05-07,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Third Reading - Standard Debate - Passed 062-042-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-23,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Do Pass / Consent Calendar Adoption & Child Welfare Committee; 007-000-000,2021-05-04,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-05-14,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-12,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Do Pass Insurance; 011-000-000,2021-05-13,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-02-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Re-assigned to Judiciary,2021-05-14,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Education,2021-04-15,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2021-05-12,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2021-05-10,['amendment-introduction'],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-04-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-04-04,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-20,[],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2022-03-04,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-16,[],IL,102nd +Referred to Rules Committee,2023-01-06,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Resolution Adopted,2021-05-29,['passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-31,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-01-10,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-05-14,['amendment-introduction'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 17, 2021",2021-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-03-26,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-04-22,[],IL,102nd +Assigned to Judiciary,2021-05-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-12,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Insurance,2021-04-20,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-04-05,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-17,[],IL,102nd +Placed on Calendar - Consideration Postponed,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 010-000-000,2022-02-23,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-03-22,[],IL,102nd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2022-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-06-04,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-01,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-05-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-04-20,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +Do Pass Transportation; 017-000-000,2022-03-23,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Financial Institutions Committee; 010-000-000,2021-05-11,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas Morrison,2021-05-05,[],IL,102nd +Do Pass Veterans Affairs; 005-000-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-11-15,[],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2022-02-24,[],IL,102nd +Chief House Sponsor Rep. Kelly M. Cassidy,2021-04-22,[],IL,102nd +Third Reading - Short Debate - Passed 070-042-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-02-10,[],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2023-01-06,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-29,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-02-10,[],IL,102nd +Assigned to Counties & Townships Committee,2022-03-07,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 105-001-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-05-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-03-03,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Agriculture & Conservation Committee,2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Appropriations-Human Services Committee,2022-02-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Robert Rita,2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Re-assigned to Executive Committee,2022-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-02-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Steven Reick,2022-03-04,[],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2022-03-08,[],IL,102nd +Chief Senate Sponsor Sen. Laura M. Murphy,2022-03-02,[],IL,102nd +Do Pass as Amended / Standard Debate Labor & Commerce Committee; 015-011-000,2021-04-14,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Brian W. Stewart,2021-04-27,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-02-10,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Revenue; 009-001-000,2021-04-29,[],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-05-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Charles Meier,2022-04-06,['amendment-introduction'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-05-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass Education; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Executive Committee,2021-04-20,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Do Pass Education; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Local Government,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-05-07,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-05,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-03-04,[],IL,102nd +Do Pass Executive; 015-000-000,2022-03-30,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Revenue & Finance Committee; 012-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +First Reading,2022-12-01,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-02-16,[],IL,102nd +Third Reading - Passed; 043-013-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-30,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2022-11-15,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-05-18,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2021-03-23,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-09,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-03-07,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2022-02-17,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-08-10,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-09-16,[],IL,102nd +House Committee Amendment No. 1 Adopted in Appropriations-Human Services Committee; by Voice Vote,2022-04-08,['amendment-passage'],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-27,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-23,[],IL,102nd +Removed Co-Sponsor Rep. Mary E. Flowers,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-04-27,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-01,[],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Sims,2021-04-27,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Appropriations-Human Services Committee,2022-04-03,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2022-03-15,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2021-04-20,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-09,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-02-24,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-30,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-10-20,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-05-04,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jonathan Carroll,2021-04-15,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2023-01-06,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2022-03-08,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-03-02,[],IL,102nd +Added Alternate Co-Sponsor Rep. Steven Reick,2021-05-05,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Greg Harris,2021-04-15,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-04-05,[],IL,102nd +Do Pass as Amended / Short Debate Appropriations-Public Safety Committee; 016-000-000,2022-02-16,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2022-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Ann Gillespie,2022-03-04,[],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-27,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2022-03-02,[],IL,102nd +Chief Senate Sponsor Sen. Celina Villanueva,2022-03-07,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2022-03-18,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2022-03-07,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Natalie A. Manley,2022-02-22,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-24,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Assigned to Licensed Activities,2021-04-28,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Chief House Sponsor Rep. Daniel Didech,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2022-02-22,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Appropriations-Human Services Committee; by Voice Vote,2021-03-12,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Second Reading,2021-05-24,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-10-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-16,[],IL,102nd +Third Reading - Passed; 046-000-000,2022-03-09,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-02-22,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-05,['reading-3'],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-24,[],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2022-03-31,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-10,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-18,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-02-24,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2022-03-22,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-29,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-15,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-01,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jonathan Carroll,2021-03-16,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-01-28,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2022-01-19,[],IL,102nd +Resolution Adopted,2021-05-28,['passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Sally J. Turner,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2022-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-04,[],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-04-01,['reading-1'],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-03,['amendment-failure'],IL,102nd +First Reading,2022-03-16,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Terri Bryant,2022-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-04-21,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Cullerton,2021-04-20,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2022",2022-03-24,[],IL,102nd +Third Reading - Passed; 037-014-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-02-14,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-18,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Ryan Spain,2022-02-18,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2022-03-29,[],IL,102nd +Assigned to Higher Education Committee,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2022-03-24,['amendment-introduction'],IL,102nd +Assigned to Health Care Licenses Committee,2021-04-28,['referral-committee'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Assigned to Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-09-14,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Martwick,2022-02-25,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Feigenholtz,2022-02-25,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2022-02-24,[],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2022-03-07,[],IL,102nd +Chief Sponsor Changed to Rep. Janet Yang Rohr,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-28,[],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2022-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2022-02-23,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2022-03-29,['amendment-introduction'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Jones,2022-03-09,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Do Pass State Government; 009-000-000,2021-05-06,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-03-03,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-14,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2022-02-25,[],IL,102nd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-23,[],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2022-02-17,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 017-011-000,2022-03-16,['committee-passage'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-10-12,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Loghran-Cappel,2022-02-25,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Recalled to Second Reading - Short Debate,2022-03-03,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-01,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Restorative Justice Committee; by Voice Vote,2021-03-25,['amendment-passage'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 009-002-000,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"Removed Co-Sponsor Rep. Maurice A. West, II",2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-18,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-03-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Rep. Michael Halpin,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-03-03,[],IL,102nd +Assigned to Behavioral and Mental Health,2021-05-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-03,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-29,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 010-000-000,2022-02-23,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2022-03-09,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-03-10,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-02,[],IL,102nd +Added as Chief Co-Sponsor Sen. Steven M. Landek,2022-03-31,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 101-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-09,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jay Hoffman,2022-02-18,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-20,[],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-07-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-17,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-31,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-03-22,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-04-29,[],IL,102nd +Third Reading - Short Debate - Passed 102-001-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-16,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Thaddeus Jones,2021-04-15,[],IL,102nd +Assigned to Appropriations,2021-04-14,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-03-01,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-01-04,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. John F. Curran,2021-05-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of Resolutions,2022-01-21,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-02-18,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Bob Morgan,2022-02-24,['amendment-introduction'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +To Executive- Procurement,2021-05-13,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-001,2022-03-01,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-01-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-01-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Assigned to Financial Institutions Committee,2021-05-04,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 10, 2022",2022-02-09,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt Pensions; 008-000-000,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2022-03-22,[],IL,102nd +Chief Senate Sponsor Sen. Craig Wilcox,2022-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Personnel & Pensions Committee,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-12-29,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-03-16,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2022-04-01,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Public Utilities Committee,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-04-04,[],IL,102nd +Chief House Sponsor Rep. Kathleen Willis,2022-02-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ryan Spain,2021-03-18,[],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Linda Holmes,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-14,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2021-04-29,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 110-005-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-05-25,[],IL,102nd +Adopted Both Houses,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-05-13,[],IL,102nd +Assigned to State Government,2021-04-28,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2021-04-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-03-26,[],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Neil Anderson,2021-04-22,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 016-000-000,2021-05-05,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-02-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-11,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-03-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-04-08,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Holmes,2022-03-10,['amendment-passage'],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-04-30,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-04,[],IL,102nd +Second Reading,2021-03-17,['reading-2'],IL,102nd +Chief House Sponsor Rep. Kambium Buckner,2021-04-27,[],IL,102nd +Chief House Sponsor Rep. Terra Costa Howard,2021-04-26,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Morrison,2022-02-24,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-03,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2023-01-10,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-16,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Assigned to Tourism Committee,2021-05-05,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-22,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2021-05-05,[],IL,102nd +Third Reading - Passed; 053-000-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2021-05-14,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2022-04-04,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Judiciary,2021-04-27,[],IL,102nd +Co-Sponsor Rep. Justin Slaughter,2021-02-08,[],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-03-16,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-20,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 21, 2021",2021-05-07,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-03-03,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-16,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. André Thapedi,2021-02-06,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Chief House Sponsor Rep. Joyce Mason,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-01,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-03-23,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 065-042-002,2022-03-02,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-05-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-03-26,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-23,[],IL,102nd +Adopted Both Houses,2021-06-01,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-05-11,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-12,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2021-05-10,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 054-002-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-05,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-05-11,['referral-committee'],IL,102nd +Assigned to Transportation,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-04-23,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-05-07,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2021-04-29,[],IL,102nd +To Executive- Procurement,2021-05-13,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-21,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-18,['amendment-introduction'],IL,102nd +Re-referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Arrived in House,2021-04-28,['introduction'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-08,[],IL,102nd +"Chief House Sponsor Rep. Lamont J. Robinson, Jr.",2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jehan Gordon-Booth,2021-05-25,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael Halpin,2021-05-04,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-21,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2021-04-23,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-27,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Third Reading - Short Debate - Passed 077-034-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-03-29,[],IL,102nd +Assigned to Executive Committee,2023-01-06,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-03,[],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-01-11,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-001-000,2021-05-18,['committee-passage-favorable'],IL,102nd +Third Reading - Passed; 055-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-13,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Maura Hirschauer,2021-04-12,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-07,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. John C. D'Amico,2021-05-12,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2022-03-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Lakesia Collins,2021-04-20,['amendment-introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Greg Harris,2021-03-16,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-12,[],IL,102nd +Assigned to State Government Administration Committee,2021-05-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Alternate Chief Sponsor Changed to Rep. Michael Halpin,2021-04-22,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Angelica Guerrero-Cuellar,2021-04-30,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2022-03-23,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-21,[],IL,102nd +Third Reading - Short Debate - Passed 068-042-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-13,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2021-04-28,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-22,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-03-01,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue,2021-05-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-19,[],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2021-04-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-04,[],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass Judiciary; 007-002-000,2021-05-25,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-04-05,[],IL,102nd +Assigned to Revenue,2021-05-04,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted - Lost Labor & Commerce Committee; 013-013-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2021-05-04,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Assigned to Executive,2021-05-04,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Health,2022-03-08,[],IL,102nd +Chief Senate Sponsor Sen. Dale Fowler,2021-04-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-05-07,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-23,[],IL,102nd +Do Pass Veterans Affairs; 006-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-04-06,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Thomas Morrison,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-04-22,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-04-12,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-14,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-24,[],IL,102nd +Do Pass Criminal Law; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2021-05-10,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-03,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-07-11,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Do Pass Veterans Affairs; 005-000-000,2021-05-19,['committee-passage'],IL,102nd +Second Reading,2021-05-24,['reading-2'],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-05-13,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-07,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-04-29,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +To Business & Innovation Subcommittee,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-05-21,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-21,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-07-06,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; McConchie,2021-10-28,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Ozinga,2022-07-08,[],IL,102nd +"Alternate Chief Sponsor Changed to Rep. Maurice A. West, II",2021-04-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-23,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-03-25,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Dan McConchie,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2021-04-28,[],IL,102nd +Chief House Sponsor Rep. Robyn Gabel,2022-02-25,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +Do Pass / Consent Calendar Mental Health & Addiction Committee; 015-000-000,2021-05-13,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Van Pelt,2021-04-22,['amendment-passage'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-31,[],IL,102nd +Senate Committee Amendment No. 3 Adopted,2022-02-23,['amendment-passage'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-03-09,[],IL,102nd +Fiscal Note Requested by Rep. Blaine Wilhour,2021-04-15,[],IL,102nd +Waive Posting Notice,2021-05-25,[],IL,102nd +Chief House Sponsor Rep. Avery Bourne,2021-04-30,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-22,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Postponed - Licensed Activities,2021-05-19,[],IL,102nd +Do Pass Criminal Law; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-03,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Lightford,2021-04-22,['amendment-passage'],IL,102nd +Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +"Placed on Calendar Order of First Reading April 20, 2021",2021-04-19,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2021-04-29,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-18,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-05-03,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-05-04,[],IL,102nd +Fiscal Note Filed,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-16,[],IL,102nd +"To Sentencing, Penalties and Criminal Procedure Subcommittee",2021-03-21,[],IL,102nd +Third Reading - Passed; 051-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-03-31,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Robyn Gabel,2022-03-01,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-04-21,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-06,[],IL,102nd +Do Pass / Short Debate Executive Committee; 013-000-000,2022-11-29,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-14,[],IL,102nd +Chief House Sponsor Rep. Bob Morgan,2021-04-22,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2022-02-02,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-26,[],IL,102nd +Assigned to State Government,2021-05-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; D. Turner,2022-02-24,['amendment-passage'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2021-04-16,['committee-passage-favorable'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 021-000-000,2022-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Postponed - Executive,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-02-03,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Melinda Bush,2021-04-27,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-03-22,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-05-17,['amendment-failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-16,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-26,['reading-1'],IL,102nd +"Chief Co-Sponsor Changed to Sen. Napoleon Harris, III",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-05,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 060-042-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-24,[],IL,102nd +Senate Committee Amendment No. 3 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-20,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-01-26,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Waive Posting Notice,2022-03-29,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-02-25,['amendment-failure'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-25,['reading-3'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 019-006-000,2022-03-16,['committee-passage'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-03-31,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-02-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2022-03-04,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-02-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Avery Bourne,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-04-22,['amendment-failure'],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-03-07,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-04-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Second Reading,2022-03-28,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-03-17,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Robert Peters,2022-03-31,[],IL,102nd +House Committee Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-15,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-19,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ann Gillespie,2022-02-18,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jeff Keicher,2021-04-20,['amendment-introduction'],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-03,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Police & Fire Committee,2021-04-14,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Recalled to Second Reading,2022-03-09,['reading-2'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Greg Harris,2022-04-08,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2021-03-16,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of First Reading April 20, 2021",2021-04-15,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2022-02-23,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 021-000-000,2022-03-16,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-03,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-30,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-03-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2021-05-06,[],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-31,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-02-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2022-03-23,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2021-04-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-04-03,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2021-04-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-04,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-06,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-01-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-02-01,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +Assigned to Commerce,2021-05-04,['referral-committee'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2021-04-29,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-15,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-12,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Do Pass State Government; 007-000-000,2022-03-09,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-03-25,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2021-04-23,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-03-04,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Postponed - Insurance,2021-05-19,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-23,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 103-000-001,2022-03-04,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Elizabeth Hernandez,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-04-13,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-22,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-16,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Chief House Sponsor Rep. Tony McCombie,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Michael E. Hastings,2021-08-31,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 018-010-000,2022-02-01,['committee-passage'],IL,102nd +Postponed - Revenue,2022-03-23,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2022-02-22,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Second Reading,2022-04-06,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-31,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Public Utilities Committee,2021-04-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-31,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-02-10,[],IL,102nd +Do Pass as Amended / Short Debate Appropriations-Human Services Committee; 024-000-000,2021-03-26,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +To Income Tax Subcommittee,2021-05-06,[],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Assigned to Pensions,2022-03-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Belt,2021-04-29,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-23,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-02,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Omar Aquino,2021-04-27,[],IL,102nd +Adopted Both Houses,2021-06-01,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Approved for Consideration Assignments,2021-05-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-19,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Resolution Adopted 066-042-002,2022-04-08,['passage'],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2021-04-23,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2022-02-24,['reading-1'],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-02-22,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-17,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 8, 2022",2022-04-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Do Pass as Amended Executive; 016-000-000,2022-02-23,['committee-passage'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-10-20,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-18,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-04-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 27, 2021",2021-05-26,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Do Pass Energy and Public Utilities; 017-000-000,2022-03-24,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Villivalam,2021-04-22,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-02,['reading-1'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-13,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-05,[],IL,102nd +Passed Both Houses,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Chris Bos,2022-02-14,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2022-03-24,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2021-05-20,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-05-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-21,[],IL,102nd +Assigned to Human Rights,2021-04-28,['referral-committee'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-05-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-15,[],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2022-03-07,[],IL,102nd +Third Reading - Passed; 055-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Alternate Chief Sponsor Changed to Sen. Cristina Castro,2021-03-19,[],IL,102nd +Do Pass Financial Institutions; 007-000-000,2021-05-06,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-21,[],IL,102nd +Chief House Sponsor Rep. Aaron M. Ortiz,2021-05-05,[],IL,102nd +Arrived in House,2021-04-28,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-13,[],IL,102nd +Do Pass / Consent Calendar Revenue & Finance Committee; 018-000-000,2021-05-13,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-23,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2022-02-07,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Judiciary - Civil Committee,2021-04-20,[],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-19,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Harris,2022-02-24,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-20,[],IL,102nd +Assigned to Labor,2021-04-28,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Waive Posting Notice,2022-03-29,[],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2021-04-22,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-03-11,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-02-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +"Placed on Calendar Order of First Reading April 20, 2021",2021-04-19,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-21,[],IL,102nd +Third Reading - Passed; 055-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Chief Senate Sponsor Sen. Steve McClure,2022-03-04,[],IL,102nd +Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-22,[],IL,102nd +Do Pass Criminal Law; 007-001-001,2021-05-19,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-05-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-15,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Amy Elik,2021-05-13,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2022-03-28,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Steve Stadelman,2022-03-04,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-25,[],IL,102nd +Removed Co-Sponsor Rep. Anna Moeller,2022-02-15,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2021-04-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2021-05-19,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-07-21,[],IL,102nd +Do Pass as Amended / Consent Calendar Insurance Committee; 017-000-000,2022-02-10,['committee-passage'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Bush,2022-02-24,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Arrived in House,2021-04-28,['introduction'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-05-11,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 018-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Gillespie,2021-04-29,['amendment-passage'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-02,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Passed Both Houses,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-10,[],IL,102nd +Third Reading - Passed; 055-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-12,['passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-14,[],IL,102nd +Third Reading - Short Debate - Passed 113-001-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Agreed Resolutions,2021-10-19,[],IL,102nd +Do Pass as Amended Healthcare Access and Availability; 010-000-000,2022-02-07,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +First Reading,2022-03-28,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-28,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-11,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-04-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-19,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-27,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2022-04-06,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Transportation,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2021-04-28,['referral-committee'],IL,102nd +Arrived in House,2021-05-07,['introduction'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-05,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Lightford,2021-04-22,['amendment-passage'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Doris Turner,2022-03-04,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-16,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-12,[],IL,102nd +Third Reading - Short Debate - Passed 083-029-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2022-03-02,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-04-06,[],IL,102nd +Third Reading - Passed; 049-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2022-03-07,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-03-10,[],IL,102nd +First Reading,2021-05-05,['reading-1'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-21,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Terra Costa Howard,2021-04-28,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +First Reading,2021-05-07,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-14,[],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-03-29,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-09-13,[],IL,102nd +Postponed - Human Rights,2021-05-20,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-01-27,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-02-19,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Linda Holmes,2021-05-13,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-11-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-11-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-02-10,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-05,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Andrew S. Chesney,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-01,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-01-04,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-09-09,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-03,['amendment-failure'],IL,102nd +House Floor Amendment No. 1 State Debt Impact Note Filed as Amended,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-11-22,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-01,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Local Government; 008-000-000,2021-05-12,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-03-08,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2021-10-27,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-08-09,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-06,[],IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-01-25,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2021-04-12,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-25,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Waive Posting Notice,2022-11-30,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-04-12,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-17,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-01-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-05-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-31,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-07-25,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-04-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-15,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-05-10,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-09-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-05-19,[],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Dale Fowler,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-05,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-21,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Waive Posting Notice,2022-11-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2021-04-27,[],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 028-000-000,2021-05-12,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Do Pass / Consent Calendar Economic Opportunity & Equity Committee; 007-000-000,2021-05-13,['committee-passage'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-03-09,[],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-19,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-11,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Chief House Sponsor Rep. Fred Crespo,2021-04-26,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Second Reading - Short Debate,2021-05-28,['reading-2'],IL,102nd +Assigned to Executive,2021-05-04,['referral-committee'],IL,102nd +Assigned to Consumer Protection Committee,2021-04-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Chief House Sponsor Rep. Delia C. Ramirez,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Connor,2021-04-22,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2021-04-29,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2021-05-14,['amendment-introduction'],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-03-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-12,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-21,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-02-23,[],IL,102nd +Do Pass Labor; 012-003-000,2022-03-23,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +First Reading,2022-03-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-20,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Racial Impact Note Requested - Withdrawn by Rep. Sonya M. Harper,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-11-30,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 006-003-000,2022-02-22,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-09,[],IL,102nd +Assigned to Executive,2022-03-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-09,[],IL,102nd +Postponed - Education,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-28,[],IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-30,['amendment-passage'],IL,102nd +"Chief House Sponsor Rep. Lawrence Walsh, Jr.",2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-17,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-05-20,[],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-12-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-02-24,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Third Reading - Passed; 049-005-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-17,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2022-03-02,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-04-21,[],IL,102nd +Assigned to Personnel & Pensions Committee,2022-03-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2021-04-15,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Do Pass as Amended Revenue; 006-004-000,2021-04-21,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Third Reading - Passed; 034-015-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-10-20,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-02,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-12,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-26,[],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-02,[],IL,102nd +Approved for Consideration Assignments,2021-05-26,[],IL,102nd +Resolution Adopted 110-001-000,2021-05-05,['passage'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +"Added Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-04-22,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-03-09,['referral-committee'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Adoption & Child Welfare Committee; 007-000-000,2022-03-15,['committee-passage'],IL,102nd +Chief House Sponsor Rep. La Shawn K. Ford,2022-02-25,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-12-16,[],IL,102nd +Third Reading - Short Debate - Passed 069-041-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-16,[],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2021-04-23,[],IL,102nd +Removed from Short Debate Status,2022-03-04,[],IL,102nd +Do Pass Transportation; 019-000-000,2022-04-04,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-26,[],IL,102nd +Waive Posting Notice,2022-04-05,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-03-30,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-11-15,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Behavioral and Mental Health; 011-000-000,2021-04-14,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-10-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Third Reading - Short Debate - Passed 110-002-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2022-03-30,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deanne M. Mazzochi,2021-05-12,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-03-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-04-23,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2022-03-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading April 5, 2022",2022-04-04,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Ethics & Elections Committee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-02-17,[],IL,102nd +First Reading,2022-02-18,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-24,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Energy and Public Utilities; 018-000-000,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-03-28,[],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Assigned to Appropriations-Higher Education Committee,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-10-22,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-23,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2022-03-07,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-03-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-04-14,[],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-22,[],IL,102nd +Assigned to Energy & Environment Committee,2022-03-07,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 7, 2022",2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-15,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2022-03-04,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Healthcare Access and Availability,2022-03-22,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-23,[],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Daniel Didech,2022-03-01,['amendment-introduction'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-16,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-02-16,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-06-16,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-02-17,[],IL,102nd +Chief Sponsor Changed to Rep. Bob Morgan,2022-04-04,[],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2022-03-07,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-02-25,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-03-01,[],IL,102nd +Chief Senate Sponsor Sen. Michael E. Hastings,2022-03-04,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Rita Mayfield,2022-03-01,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-01-18,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 008-006-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-02,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Do Pass Executive; 011-004-000,2021-05-19,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-05-12,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-25,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-07,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Higher Education Committee; 006-003-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-10-06,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2021-10-25,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-03,[],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Lakesia Collins,2022-02-16,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Kelly M. Cassidy,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-13,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2022-01-26,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Eva-Dina Delgado,2022-04-05,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Assigned to Executive,2022-03-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-03-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-03,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-01,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-02,[],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 25, 2022",2022-02-24,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-02-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-14,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-05,[],IL,102nd +Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Criminal Law; 010-000-000,2021-05-19,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Randy E. Frese,2022-03-23,['amendment-introduction'],IL,102nd +Third Reading - Passed; 045-008-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-05-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-06-14,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-17,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-03-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Rachelle Crowe,2021-03-25,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Blaine Wilhour,2021-05-12,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading February 25, 2022",2022-02-24,['reading-1'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2021-04-20,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-23,[],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Do Pass as Amended Education; 012-000-000,2021-04-14,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-05-11,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2021-05-05,['committee-passage'],IL,102nd +Alternate Co-Sponsor Removed Rep. Kelly M. Cassidy,2021-05-03,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Resolutions - Consent Calendar - Fourth Day,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Do Pass as Amended / Short Debate Immigration & Human Rights Committee; 005-003-000,2021-05-12,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2022-03-09,[],IL,102nd +"Added as Chief Co-Sponsor Sen. Emil Jones, III",2021-04-22,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-23,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-29,[],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-05-13,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Assigned to Commerce,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 011-007-000,2021-05-26,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-14,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-04-27,[],IL,102nd +Do Pass / Short Debate Adoption & Child Welfare Committee; 006-000-000,2022-03-22,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-04-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-04-07,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Do Pass Executive; 016-000-000,2021-05-13,['committee-passage'],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2022-03-03,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Resolution Adopted,2021-10-29,['passage'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Amy Elik,2021-05-13,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2021-05-03,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-23,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-04-02,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Chief Senate Sponsor Sen. Laura M. Murphy,2021-04-27,[],IL,102nd +Chief House Sponsor Rep. Dave Vella,2021-04-22,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Third Reading - Passed; 055-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Assigned to Revenue,2021-05-04,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-07,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-28,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 27, 2021",2021-05-26,[],IL,102nd +Arrived in House,2021-04-28,['introduction'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-13,[],IL,102nd +First Reading,2021-04-20,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2021-05-17,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-04,[],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 027-000-000,2021-05-05,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-03-16,['committee-passage-favorable'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-04-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-04-08,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-04-07,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Assigned to Environment and Conservation,2021-04-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Environment and Conservation,2021-04-20,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Do Pass Education; 011-000-000,2021-05-12,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-04-23,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2021-04-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-06,[],IL,102nd +Remove Chief Co-Sponsor Rep. Norine K. Hammond,2022-02-15,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-26,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-24,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Chief House Sponsor Rep. Ann M. Williams,2022-02-23,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2021-05-26,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Third Reading - Passed; 044-011-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-20,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2022-02-16,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-17,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Do Pass / Short Debate Immigration & Human Rights Committee; 005-003-000,2021-05-05,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-05-25,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-16,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-19,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Terra Costa Howard,2022-02-22,['amendment-introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2021-03-29,['amendment-introduction'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-03-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +First Reading,2021-03-11,['reading-1'],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-05-05,[],IL,102nd +Second Reading - Short Debate,2022-03-09,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 27, 2021",2021-05-26,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 016-000-000,2021-03-23,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Crowe,2021-04-28,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Recalled to Second Reading - Short Debate,2022-03-03,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-05-13,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 112-005-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Adopted in Adoption & Child Welfare Committee; by Voice Vote,2021-05-11,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Assigned to Executive,2021-04-28,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-04,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-14,[],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2021-04-21,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2021-03-23,[],IL,102nd +Do Pass Health; 012-000-000,2021-05-05,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Remove Chief Co-Sponsor Rep. Norine K. Hammond,2022-02-16,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-05-03,[],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Education,2021-05-17,[],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Assigned to State Government,2021-05-10,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-04-27,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Antonio Muñoz,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-17,[],IL,102nd +To Appropriations- Government Infrastructure,2021-05-04,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-24,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2021-05-06,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2021-05-06,['amendment-introduction'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2021-05-03,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Crowe,2021-04-28,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-23,[],IL,102nd +Assigned to Higher Education,2021-04-28,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Joyce Mason,2021-05-03,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-17,['reading-2'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +Do Pass Health; 012-000-000,2021-05-05,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Julie A. Morrison,2021-05-04,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-03-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-21,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Assigned to Human Services Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-15,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2021-04-20,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-05-04,['referral-committee'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Assigned to State Government Administration Committee,2021-05-04,['referral-committee'],IL,102nd +Do Pass Education; 011-000-000,2021-05-12,['committee-passage'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +To Executive- Procurement,2021-05-06,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-05-12,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-04,[],IL,102nd +Do Pass / Short Debate Immigration & Human Rights Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-26,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-20,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-04-28,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-03-11,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2021-05-05,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-14,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Approved for Consideration Assignments,2021-04-28,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-04-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2022-02-16,[],IL,102nd +Chief House Sponsor Rep. Martin J. Moylan,2021-04-26,[],IL,102nd +Recalled to Second Reading,2021-05-05,['reading-2'],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 108-003-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-13,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Carol Ammons,2021-04-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-03,[],IL,102nd +Adopted Both Houses,2021-10-29,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Fine,2022-02-24,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2021-05-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-02-16,[],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2022-03-04,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Do Pass Commerce; 010-000-000,2021-05-06,['committee-passage'],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-05,[],IL,102nd +Assigned to Pensions,2022-03-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-03,[],IL,102nd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2021-04-27,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-03-22,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Waive Posting Notice,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-17,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-04-07,[],IL,102nd +Third Reading - Short Debate - Passed 104-007-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Health,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-05,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Deanne M. Mazzochi,2021-05-20,['amendment-introduction'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jil Tracy,2021-04-29,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-04-23,[],IL,102nd +Second Reading,2021-05-28,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-27,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Chief House Sponsor Rep. Jonathan Carroll,2021-04-28,[],IL,102nd +Assigned to State Government Administration Committee,2021-05-04,['referral-committee'],IL,102nd +Postponed - State Government,2021-05-26,[],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-27,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Do Pass State Government; 006-000-000,2021-05-26,['committee-passage'],IL,102nd +Adopted Both Houses,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-23,[],IL,102nd +Do Pass Judiciary; 006-003-000,2021-05-12,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 014-000-000,2021-05-19,[],IL,102nd +Removed from Consent Calendar Status Rep. Dave Vella,2021-04-14,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-09,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-05-05,[],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Daniel Didech,2021-04-27,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-05-05,['committee-passage'],IL,102nd +Third Reading - Passed; 049-004-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Assigned to Insurance Committee,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2022-02-24,['committee-passage-favorable'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-29,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Thomas M. Bennett,2021-04-12,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Behavioral and Mental Health,2021-04-07,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Do Pass as Amended / Consent Calendar Adoption & Child Welfare Committee; 008-000-000,2021-05-11,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-13,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Labor & Commerce Committee,2021-05-11,[],IL,102nd +Second Reading,2021-05-18,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2021-04-26,[],IL,102nd +Removed Co-Sponsor Rep. Anthony DeLuca,2021-04-02,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-05-04,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-05-03,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-04-21,[],IL,102nd +Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-05-04,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-04-19,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Steve Stadelman,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 013-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4 (a),2021-04-21,['amendment-failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Third Reading - Passed; 049-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-24,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-05-17,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-28,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2021-04-12,['amendment-introduction'],IL,102nd +Moved to Suspend Rule 21 Rep. Jay Hoffman,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-05,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 107-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Note / Motion Filed - Note Act Does Not Apply Rep. Steven Reick,2022-03-03,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 27, 2021",2021-05-26,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-10-28,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-03-04,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-03-09,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Mark Batinick,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-20,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-03-30,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-09,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-30,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-16,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2022-03-16,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Rules Refers to Human Services Committee,2022-03-02,[],IL,102nd +Third Reading - Short Debate - Passed 102-002-001,2022-03-04,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Theresa Mah,2022-02-25,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-29,[],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-10-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-10,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-11-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-31,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2021-05-14,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2022-03-04,[],IL,102nd +First Reading,2022-03-16,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-03-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Murphy,2021-04-21,['amendment-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Alternate Co-Sponsor Removed Rep. William Davis,2022-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Darren Bailey,2022-03-30,[],IL,102nd +Postponed - Education,2021-05-25,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-22,['amendment-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Approved for Consideration Assignments,2022-04-01,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Approved for Consideration Assignments,2022-03-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-11-30,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-03-10,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-12-07,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +Do Pass as Amended Criminal Law; 010-000-000,2021-04-14,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Chief House Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-04-15,[],IL,102nd +Do Pass Executive; 016-000-000,2022-04-05,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 5, 2022",2022-04-04,[],IL,102nd +House Committee Amendment No. 1 Adopted in Mental Health & Addiction Committee; by Voice Vote,2021-03-26,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-05-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-18,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-10-22,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2022-03-09,[],IL,102nd +Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2022-03-04,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-12-16,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-03-22,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-02-22,['amendment-passage'],IL,102nd +Removed Co-Sponsor Rep. Kathleen Willis,2021-02-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2022-03-10,[],IL,102nd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-05-28,[],IL,102nd +Chief House Sponsor Rep. Delia C. Ramirez,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-17,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-16,[],IL,102nd +Assigned to State Government Administration Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-12,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2022-03-09,['amendment-introduction'],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-02-24,[],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-08,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-02,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 099-004-001,2022-03-30,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2022-04-01,['introduction'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-04-08,[],IL,102nd +Third Reading - Short Debate - Passed 096-015-000,2021-04-14,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2022-03-22,[],IL,102nd +Postponed - Education,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-04-04,[],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-24,[],IL,102nd +House Committee Amendment No. 1 Adopted in Police & Fire Committee; by Voice Vote,2021-03-25,['amendment-passage'],IL,102nd +Third Reading - Passed; 048-008-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-08,[],IL,102nd +House Floor Amendment No. 1 Note / Motion Filed - Note Act Does Not Apply Rep. Lance Yednock,2022-03-04,[],IL,102nd +Referred to Assignments,2021-05-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-15,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Ann M. Williams,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 074-035-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-01,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed,2021-10-27,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Adriane Johnson,2022-03-18,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-03-10,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-11-19,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Omar Aquino,2022-03-08,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-05-19,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steven M. Landek,2022-03-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2023-01-03,[],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-01-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2022-04-04,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-12,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-08-09,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Recalled to Second Reading,2021-05-12,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-05-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-08-16,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-01-28,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-05-30,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-09-21,[],IL,102nd +Second Reading - Short Debate,2022-03-17,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Keith R. Wheeler,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-11-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Suzanne Ness,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-03-26,[],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-01-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-09-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2021-05-11,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2022-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-02-19,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-03-31,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-01-28,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Approved for Consideration Assignments,2023-01-08,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-24,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-04-05,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-03-23,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2022-11-30,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-12,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +To Executive- Consolidation,2021-05-13,[],IL,102nd +Assigned to Criminal Law,2021-05-11,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Consumer Protection Committee; 006-000-000,2021-05-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-22,[],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Assigned to Transportation,2021-05-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Do Pass / Consent Calendar Public Utilities Committee; 023-000-000,2021-05-11,['committee-passage'],IL,102nd +First Reading,2021-05-14,['reading-1'],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Third Reading - Passed; 043-015-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Assigned to Labor,2022-03-16,['referral-committee'],IL,102nd +"Chief Co-Sponsor Changed to Rep. Jaime M. Andrade, Jr.",2021-04-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Chief Senate Sponsor Sen. Win Stoller,2021-05-04,[],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Katie Stuart,2021-05-10,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-16,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Michael E. Hastings,2022-04-01,['amendment-introduction'],IL,102nd +Second Reading,2022-02-25,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-25,[],IL,102nd +Assigned to Executive Committee,2022-03-07,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +"Alternate Chief Sponsor Changed to Sen. Napoleon Harris, III",2022-03-10,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 3 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Assigned to Insurance,2022-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-23,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 022-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-06-16,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-04-03,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-17,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-04-22,[],IL,102nd +Third Reading - Short Debate - Passed 064-000-000,2022-04-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-04-14,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Postponed - Transportation,2021-04-20,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-03-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-23,[],IL,102nd +Assigned to Financial Institutions Committee,2021-03-16,['referral-committee'],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-04-12,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-01,[],IL,102nd +Chief Sponsor Changed to Sen. Antonio Muñoz,2022-01-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-17,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2022-03-01,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. William Davis,2021-05-19,['amendment-introduction'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jackie Haas,2021-04-15,[],IL,102nd +Assigned to Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-03-25,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-03-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-08,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-03-22,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. David A. Welter,2021-04-29,[],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-01-20,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-04-29,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Motion Do Pass - Lost Appropriations-Higher Education Committee; 007-006-000,2022-04-07,['committee-failure'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-10-06,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. John Connor,2021-04-27,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Barbara Hernandez,2022-03-01,['amendment-introduction'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Chief House Sponsor Rep. Mary E. Flowers,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-14,[],IL,102nd +Do Pass as Amended Criminal Law; 010-000-000,2021-04-14,['committee-passage'],IL,102nd +Assigned to State Government,2021-05-29,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-04-08,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Insurance,2021-05-11,[],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2021-03-26,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-19,[],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Chief Sponsor Changed to Sen. Chapin Rose,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-03-17,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2021-05-05,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2021-04-19,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-23,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2021-04-29,[],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-12,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-02-05,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2021-04-28,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Holmes,2022-03-10,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +"Senate Floor Amendment No. 3 Filed with Secretary by Sen. Emil Jones, III",2021-05-04,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-13,[],IL,102nd +Co-Sponsor Rep. Deanne M. Mazzochi,2021-02-08,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2023-01-10,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Mike Simmons,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-12,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Chief House Sponsor Rep. Barbara Hernandez,2021-04-22,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2021-05-11,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Belt,2021-04-29,['amendment-passage'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Assigned to Executive,2021-05-04,['referral-committee'],IL,102nd +Do Pass Judiciary; 009-000-000,2021-05-25,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-05-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 3 Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-30,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Michelle Mussman,2021-04-27,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-05-12,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-001,2021-04-15,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-04,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-03-03,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-04-04,[],IL,102nd +Third Reading - Short Debate - Passed 092-017-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-07,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-23,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2021-04-12,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-04-05,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 011-000-000,2021-05-12,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-16,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Rita Mayfield,2021-05-10,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-04-22,[],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-22,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2021-04-14,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Sue Scherer,2021-05-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-04-13,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-20,[],IL,102nd +Assigned to Pensions,2021-05-04,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-05-25,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas M. Bennett,2021-03-18,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Do Pass State Government; 009-000-000,2021-05-06,['committee-passage'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2021-03-25,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Assigned to Higher Education Committee,2021-04-28,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-05-17,[],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-20,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Third Reading - Short Debate - Passed 102-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2022-01-25,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Judiciary; 006-000-000,2021-04-28,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-23,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-20,[],IL,102nd +Assigned to Health,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-04-20,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Assigned to Insurance Committee,2021-05-04,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-04-28,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Executive Committee; 014-000-000,2021-05-12,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Robert Rita,2023-01-06,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-04-23,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Laura Ellman,2021-04-22,[],IL,102nd +Chief House Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-03-16,[],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Commerce,2021-05-17,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-02-07,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 23, 2021",2021-03-17,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Health,2021-05-11,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 100-005-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Assigned to Licensed Activities,2021-05-11,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Third Reading - Passed; 055-000-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2021-04-13,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-04-22,['amendment-failure'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-02-06,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-05-04,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-10,[],IL,102nd +Second Reading,2022-03-28,['reading-2'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Laura M. Murphy,2022-02-25,['amendment-introduction'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-01,[],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2022-02-16,[],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2022-03-10,['amendment-introduction'],IL,102nd +Postponed - Licensed Activities,2021-05-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 088-018-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-21,[],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2022-03-17,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2022-03-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +3/5 Vote Required,2022-12-01,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-04,[],IL,102nd +Do Pass as Amended / Short Debate Appropriations-Human Services Committee; 014-008-000,2021-03-12,['committee-passage'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Patricia Van Pelt,2021-04-16,['amendment-introduction'],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-16,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2021-10-19,['amendment-introduction'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-03-09,['amendment-failure'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Charles Meier,2021-04-28,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Omar Aquino,2022-04-05,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-22,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-05-29,['committee-passage'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 107-000-000,2022-03-01,"['passage', 'reading-3']",IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-03-16,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Suzanne Ness,2022-02-23,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jeff Keicher,2021-04-27,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Judiciary - Criminal Committee; 012-007-000,2021-04-16,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-02-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 022-004-000,2022-03-29,['committee-passage-favorable'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-18,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-16,[],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2022-03-04,[],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-04-23,[],IL,102nd +Do Pass as Amended / Consent Calendar Restorative Justice Committee; 006-000-000,2021-03-25,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2022-03-02,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-03-03,[],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-01,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Third Reading - Passed; 050-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-10-14,[],IL,102nd +House Floor Amendment No. 1 Adopted 056-000-001,2022-04-04,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-03-29,[],IL,102nd +Do Pass / Short Debate Higher Education Committee; 010-000-000,2022-03-16,['committee-passage'],IL,102nd +Third Reading - Passed; 055-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-05-06,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Omar Aquino,2021-04-22,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Paul Jacobs,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-23,[],IL,102nd +Second Reading - Short Debate,2022-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-04,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-29,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-17,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-27,[],IL,102nd +Chief Co-Sponsor Changed to Rep. Sam Yingling,2021-04-20,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2023-01-04,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 006-000-000,2022-03-09,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kathleen Willis,2022-03-24,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-01-28,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-10-12,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-01-19,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Third Reading - Short Debate - Passed 099-005-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-25,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +House Floor Amendment No. 1 Balanced Budget Note Filed as Amended,2022-02-24,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Loughran-Cappel,2022-02-25,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-04-01,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2021-04-08,['amendment-introduction'],IL,102nd +Assigned to Executive Committee,2022-11-29,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-03-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-03,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-18,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-02-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2022-03-04,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-03-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-24,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-15,[],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 010-006-000,2022-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-28,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-03-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-24,[],IL,102nd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2022-04-01,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-09,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Sponsor Removed Sen. Dale Fowler,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-03-03,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-24,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-17,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2021-05-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-02,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mike Murphy,2021-05-05,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-15,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-11-15,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-23,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-10-20,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-18,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Committee Deadline Established As February 25, 2022",2022-02-18,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-05-10,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-15,[],IL,102nd +Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-04-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-04,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-05-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Simmons,2021-04-29,['amendment-passage'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Michael J. Zalewski,2022-04-06,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-01-06,[],IL,102nd +Second Reading,2021-04-27,['reading-2'],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-04-13,[],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Melinda Bush,2021-05-04,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-05-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-14,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Chief House Sponsor Rep. Katie Stuart,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-05-11,['committee-passage'],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Local Government; 008-000-000,2021-05-19,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-09,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Do Pass as Amended / Short Debate Appropriations-Human Services Committee; 015-008-000,2022-04-08,['committee-passage'],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-15,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-02-24,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-02-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-04,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2021-04-20,['amendment-introduction'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Assigned to Labor & Commerce Committee,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-04,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-31,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-02-24,[],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-11,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-03-18,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 106-002-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-01-21,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-30,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2022-03-23,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2022-02-25,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-03-24,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-07-25,[],IL,102nd +Assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-02,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-03-02,"['passage', 'reading-3']",IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-10-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Third Reading - Passed; 047-000-000,2022-03-09,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Public Utilities Committee; 022-000-000,2021-05-11,['committee-passage-favorable'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2022-03-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-02-18,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-16,[],IL,102nd +Second Reading,2022-02-23,['reading-2'],IL,102nd +Re-assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Terra Costa Howard,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-03-03,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4 (a),2021-04-22,['amendment-failure'],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-03-10,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-03-16,[],IL,102nd +House Floor Amendment No. 4 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-01-12,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Resolution Adopted 112-000-000,2022-03-15,['passage'],IL,102nd +Do Pass / Consent Calendar Financial Institutions Committee; 008-000-000,2021-05-11,['committee-passage'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-01-04,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Chief Senate Sponsor Sen. Michael E. Hastings,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-04-01,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-14,[],IL,102nd +To Appropriations- Health,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-20,[],IL,102nd +"Chief House Sponsor Rep. Maurice A. West, II",2022-02-24,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-04-21,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Katie Stuart,2022-03-30,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-04-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Financial Institutions,2022-03-08,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-03-01,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-09,[],IL,102nd +Assigned to Labor,2022-03-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2022-03-04,[],IL,102nd +Third Reading - Short Debate - Passed 107-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +Assigned to Health,2021-05-10,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2021-05-18,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-05-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-05-21,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-10-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Chief House Sponsor Rep. Bob Morgan,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Ann M. Williams,2022-02-25,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Resolution Adopted 111-000-001,2021-04-28,['passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Fiscal Note Filed,2021-04-21,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-04-06,[],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2022-02-24,[],IL,102nd +Third Reading - Passed; 054-000-001,2021-04-21,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2022-04-05,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2022-03-29,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-15,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-02-10,[],IL,102nd +Resolution Adopted,2021-10-19,['passage'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lakesia Collins,2021-04-22,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-04-23,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. John C. D'Amico,2021-05-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-28,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 5, 2021",2021-05-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2021-05-11,[],IL,102nd +Do Pass Executive; 011-004-000,2022-04-05,['committee-passage'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2021-05-05,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Mike Simmons,2022-03-09,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2021-05-27,['amendment-introduction'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-03-07,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +"Chief House Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Adopted Both Houses,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-03-22,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2021-03-19,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Assigned to Judiciary,2021-05-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2022-02-16,[],IL,102nd +Chief Senate Sponsor Sen. Laura Ellman,2021-04-20,[],IL,102nd +Removed Co-Sponsor Rep. Greg Harris,2021-04-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-04-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-20,[],IL,102nd +Sent to the Governor,2022-04-26,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-25,[],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-02-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 24, 2022",2022-02-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2021-04-28,[],IL,102nd +Sent to the Governor,2022-04-26,['executive-receipt'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Passed Both Houses,2022-03-28,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-20,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-03-07,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +First Reading,2021-05-05,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-05-31,[],IL,102nd +Assigned to State Government,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-22,[],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-22,[],IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2022-03-28,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +Assigned to Local Government,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-19,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-24,[],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 107-003-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-04-13,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Randy E. Frese,2022-03-09,[],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Assigned to Human Services Committee,2021-04-28,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Jonathan Carroll,2021-04-28,[],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-14,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2021-05-18,[],IL,102nd +Do Pass Human Rights; 006-003-000,2021-05-06,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-17,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 8, 2022",2022-02-07,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Third Reading - Passed; 046-003-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-05,['amendment-failure'],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2021-03-05,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-04-13,[],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 007-000-000,2021-05-05,['committee-passage'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Transportation; 018-000-000,2021-04-20,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 014-000-000,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-03-11,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-04-14,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-23,[],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2021-04-19,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2021-04-14,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-15,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2021-04-14,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Health Care Availability & Accessibility Committee,2022-03-02,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-03-02,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lance Yednock,2021-05-04,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-07-21,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-19,['referral-committee'],IL,102nd +Assigned to Higher Education,2021-04-28,['referral-committee'],IL,102nd +Assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Norine K. Hammond,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Third Reading - Short Debate - Passed 110-000-002,2022-03-02,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Commerce; 009-000-000,2021-04-22,[],IL,102nd +House Floor Amendment No. 4 Rules Refers to Judiciary - Civil Committee,2021-04-20,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-11,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-04-29,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 114-001-000,2021-05-19,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-21,[],IL,102nd +Chief House Sponsor Rep. Dave Vella,2021-04-22,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-04-05,[],IL,102nd +"Final Action Deadline Extended-9(b) April 30, 2022",2022-03-31,[],IL,102nd +"Chief House Sponsor Rep. Maurice A. West, II",2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-17,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Chief House Sponsor Rep. Sonya M. Harper,2021-05-07,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +Removed Co-Sponsor Rep. Kelly M. Cassidy,2021-04-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-24,['referral-committee'],IL,102nd +Postponed - Education,2021-05-19,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Eva-Dina Delgado,2021-05-04,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Police & Fire Committee; 014-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Health Care Availability & Accessibility Committee,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-14,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-22,[],IL,102nd +Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Sue Scherer,2021-04-26,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-24,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-05-05,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-03-09,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-28,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-03-22,[],IL,102nd +Pursuant to Rule 5-1(b) Consent is given to Senator Connor to present bill.,2022-02-25,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2022-03-07,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2022-02-17,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura M. Murphy,2022-03-25,[],IL,102nd +Second Reading - Short Debate,2022-03-25,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-27,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Third Reading - Standard Debate - Passed 068-044-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-02-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-01-26,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-04-13,[],IL,102nd +Third Reading - Passed; 055-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-03-16,[],IL,102nd +Fiscal Note Requested by Rep. Blaine Wilhour,2021-04-15,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-05,[],IL,102nd +Removed Co-Sponsor Rep. Norine K. Hammond,2021-03-16,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-23,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-03-02,[],IL,102nd +Chief Senate Sponsor Sen. Jil Tracy,2022-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-29,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Theresa Mah,2022-02-23,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Burke,2021-05-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-19,[],IL,102nd +Third Reading - Short Debate - Passed 094-018-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-28,[],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-03-16,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Chief Co-Sponsor Changed to Rep. Patrick Windhorst,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-04-23,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-03-03,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Assigned to Financial Institutions Committee,2022-03-07,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2022-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-15,[],IL,102nd +Removed from Short Debate Status,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 29, 2022",2022-03-28,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Fine,2021-04-28,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Jawaharial Williams,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-08,[],IL,102nd +Remove Chief Co-Sponsor Rep. Barbara Hernandez,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-02-25,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2022-03-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-03-24,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-31,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Holmes,2022-03-09,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-02,[],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 005-003-000,2022-03-22,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2022-03-31,['amendment-introduction'],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Alternate Chief Sponsor Changed to Sen. John Connor,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-04-06,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 018-000-000,2021-05-11,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Health,2022-03-09,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-05-21,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deanne M. Mazzochi,2021-05-07,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Adopted; McConchie,2021-10-28,['amendment-passage'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-04-21,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-16,[],IL,102nd +Assigned to Health,2021-05-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Health; 011-000-000,2021-05-19,['committee-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-05-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2021-03-24,[],IL,102nd +House Floor Amendment No. 2 Pension Note Filed as Amended,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-20,[],IL,102nd +Assigned to Appropriations,2021-05-11,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-14,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-02-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2021-04-29,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-07-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-07-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-05-05,['referral-committee'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-04-26,[],IL,102nd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2021-03-25,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Approved for Consideration Assignments,2021-05-10,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Do Pass Education; 011-000-000,2021-05-12,['committee-passage'],IL,102nd +Do Pass as Amended Labor; 012-002-000,2022-02-23,['committee-passage'],IL,102nd +Fiscal Note Filed,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-03,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Do Pass Behavioral and Mental Health; 010-000-000,2021-05-25,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 109-003-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2022-02-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2021-05-06,[],IL,102nd +Added as Chief Co-Sponsor Sen. Linda Holmes,2021-05-03,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-23,[],IL,102nd +Assigned to Transportation,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2021-05-13,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-03-31,[],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. La Shawn K. Ford,2021-04-20,['amendment-introduction'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2022-12-01,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Revenue; 011-000-000,2021-05-13,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-05,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-03-09,[],IL,102nd +Third Reading - Short Debate - Passed 064-033-002,2022-03-03,"['passage', 'reading-3']",IL,102nd +Postponed - Health,2022-03-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2022-02-24,[],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Dave Syverson,2022-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Remains in Labor & Commerce Committee,2022-03-02,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2021-03-23,['amendment-passage'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2021-05-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-22,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-04-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 26, 2021",2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-03-31,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Insurance Committee,2021-04-21,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Do Pass Revenue; 011-000-000,2021-05-13,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-03-09,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2021-05-04,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-16,['amendment-passage'],IL,102nd +Assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Third Reading - Standard Debate - Passed 075-038-003,2021-04-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-26,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-02-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-11-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Villanueva,2021-04-22,['amendment-passage'],IL,102nd +Assigned to Human Services Committee,2021-05-04,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-06,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-28,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-03-17,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2022-03-22,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2021-05-19,['amendment-introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 7, 2022",2022-04-06,[],IL,102nd +Do Pass Pensions; 005-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-02-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Remove Chief Co-Sponsor Rep. LaToya Greenwood,2022-02-23,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2021-03-16,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2022",2022-03-09,[],IL,102nd +Do Pass Local Government; 007-000-000,2022-03-29,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-17,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-03-09,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-02-22,[],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2022-03-04,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-03-24,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-29,[],IL,102nd +First Reading,2022-03-16,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-08-31,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-05-04,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-17,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Darren Bailey,2021-03-26,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-02,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Re-assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +Assigned to Education,2022-03-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Chief House Sponsor Rep. Janet Yang Rohr,2022-04-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-09-13,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-02,[],IL,102nd +Assigned to Criminal Law,2021-05-10,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2022-04-06,['amendment-introduction'],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-03-21,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-02-01,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-04-21,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-04,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Third Reading - Passed; 039-010-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2021-04-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-07,[],IL,102nd +Third Reading - Passed; 036-018-001,2021-04-29,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2022-02-15,['committee-passage-favorable'],IL,102nd +Chief House Sponsor Rep. Bob Morgan,2022-04-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Do Pass Higher Education; 013-001-000,2021-04-14,['committee-passage'],IL,102nd +Third Reading - Short Debate - Passed 067-042-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Assigned to Public Utilities Committee,2021-10-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-09-13,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-07,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Chief House Sponsor Rep. Robert Rita,2021-04-27,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Rita Mayfield,2022-02-22,['amendment-introduction'],IL,102nd +Do Pass Revenue; 006-000-000,2022-03-30,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-04-14,[],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Tim Butler,2021-04-13,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-04-16,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-03-15,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-16,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Meg Loughran Cappel,2022-02-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-03-31,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 30, 2022",2022-03-29,[],IL,102nd +Third Reading - Passed; 051-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2021-08-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-04-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-03-22,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-15,[],IL,102nd +Chief House Sponsor Rep. Jehan Gordon-Booth,2021-05-03,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-24,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-13,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-13,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Chief House Sponsor Rep. Katie Stuart,2022-02-25,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-02,[],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-02-07,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-23,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-11,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-17,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-22,[],IL,102nd +Assigned to Criminal Law,2021-05-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-07,[],IL,102nd +Referred to Rules Committee,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-09,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-02,[],IL,102nd +Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Elizabeth Hernandez,2021-10-27,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-18,[],IL,102nd +Chief House Sponsor Rep. Sonya M. Harper,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-05-05,[],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2022-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-18,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-15,[],IL,102nd +Re-assigned to Insurance,2021-05-26,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-001,2021-04-21,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-04-06,[],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-05-03,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Charles Meier,2021-05-14,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-20,[],IL,102nd +Second Reading,2021-05-24,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Environment and Conservation,2022-02-22,[],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-21,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Approved for Consideration Assignments,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-08-24,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2021-05-10,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 007-002-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Chief Sponsor Changed to Rep. Janet Yang Rohr,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 26, 2021",2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-03-01,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-22,[],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-19,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 24, 2022",2022-02-23,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-05-11,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 11, 2021",2021-05-10,[],IL,102nd +Third Reading - Short Debate - Passed 115-001-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Chapin Rose,2021-03-25,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 014-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-09,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 106-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-07-06,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Approved for Consideration Assignments,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-02-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2021-05-27,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-07,['referral-committee'],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-05-21,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-14,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dave Severin,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Carol Ammons,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-21,[],IL,102nd +First Reading,2022-03-16,['reading-1'],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-12,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-05,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2021-05-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Assigned to Transportation,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-03-03,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-03-09,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Revenue & Finance Committee,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Robyn Gabel,2021-05-11,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Revenue & Finance Committee,2021-04-21,[],IL,102nd +Do Pass as Amended / Consent Calendar Human Services Committee; 014-000-000,2021-03-23,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-05-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-03-09,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-22,[],IL,102nd +To Executive- Firearms,2021-05-19,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 State Debt Impact Note Filed as Amended,2022-03-01,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2022-03-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-21,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Education; 009-004-000,2021-04-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-05-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dan Brady,2022-12-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-02-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. LaToya Greenwood,2022-04-05,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2022-03-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-03-02,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ryan Spain,2021-05-05,[],IL,102nd +Third Reading - Short Debate - Passed 062-041-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Alternate Chief Sponsor Changed to Rep. Lawrence Walsh, Jr.",2021-05-03,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-10-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-17,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Pensions,2021-05-24,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-22,['referral-committee'],IL,102nd +Do Pass Higher Education; 011-003-000,2021-05-05,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-23,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Do Pass Executive; 016-000-000,2021-05-19,['committee-passage'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-04-28,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2021-04-29,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +Assigned to Personnel & Pensions Committee,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2021-04-12,['amendment-introduction'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2021-04-22,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-07-21,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-16,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-03-11,[],IL,102nd +Third Reading - Short Debate - Passed 082-028-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Alternate Chief Sponsor Changed to Rep. Lawrence Walsh, Jr.",2021-05-04,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-04-06,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Assigned to Transportation,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-01,[],IL,102nd +Do Pass / Short Debate Ethics & Elections Committee; 011-007-000,2021-03-22,['committee-passage'],IL,102nd +Assigned to Pensions,2021-05-04,['referral-committee'],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2022-04-08,[],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-19,['committee-passage'],IL,102nd +Chief House Sponsor Rep. Katie Stuart,2021-04-22,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2022-03-15,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-26,['executive-receipt'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-04-05,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Frances Ann Hurley,2021-05-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Karina Villa,2022-02-24,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-15,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 012-000-000,2022-03-16,['committee-passage'],IL,102nd +Assigned to Energy & Environment Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Michelle Mussman,2021-04-27,[],IL,102nd +Chief Senate Sponsor Sen. Mike Simmons,2022-03-09,[],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-05-31,[],IL,102nd +Do Pass State Government; 006-000-000,2021-05-13,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2022-03-07,[],IL,102nd +Referred to Rules Committee,2021-05-05,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 007-000-000,2022-02-22,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-04,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-22,[],IL,102nd +Assigned to Human Services Committee,2021-04-28,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-28,[],IL,102nd +Chief House Sponsor Rep. Bob Morgan,2021-04-26,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Sue Scherer,2021-04-27,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-12,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to Insurance Committee,2022-03-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-22,[],IL,102nd +Do Pass Local Government; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-10-21,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-02-10,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-30,[],IL,102nd +Third Reading - Short Debate - Passed 106-002-002,2021-04-14,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Assigned to Financial Institutions,2022-03-16,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Assigned to State Government,2022-03-28,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Deb Conroy,2021-04-22,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2022-03-09,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-15,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Chief House Sponsor Rep. La Shawn K. Ford,2021-04-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-03,[],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-15,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +First Reading,2021-04-20,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Balanced Budget Note Requested as Amended by Rep. Randy E. Frese,2022-04-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Assigned to Immigration & Human Rights Committee,2022-03-07,['referral-committee'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 044-015-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2021-05-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-22,[],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michael Halpin,2021-05-11,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 016-000-000,2022-03-16,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-02-16,['committee-passage'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Theresa Mah,2021-05-11,['amendment-introduction'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Michael Halpin,2021-05-04,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-17,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2021-05-10,[],IL,102nd +Chief Senate Sponsor Sen. Steve McClure,2022-03-07,[],IL,102nd +Housing Affordability Impact Note Filed,2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Villivalam,2021-04-21,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 014-000-000,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-28,[],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-03-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-20,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Assigned to Public Utilities Committee,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2021-03-09,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-25,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2022-03-30,['amendment-introduction'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 018-000-000,2021-05-11,['committee-passage'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Collins,2022-02-24,['amendment-passage'],IL,102nd +First Reading,2021-04-20,['reading-1'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-14,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-14,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-19,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-05-05,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-04-04,[],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-22,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-22,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Holmes,2022-03-09,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-03-02,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-06,[],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2021-05-20,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-03,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-002-000,2022-04-08,['committee-passage-favorable'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2021-04-28,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-01,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Labor & Commerce Committee,2021-05-05,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +"Alternate Chief Sponsor Changed to Sen. Napoleon Harris, III",2021-05-06,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-05-05,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2021-04-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to State Government Administration Committee,2021-04-28,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2022-03-04,[],IL,102nd +Third Reading - Consent Calendar - Passed 086-018-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-05-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Assigned to Commerce,2021-05-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Police & Fire Committee; 015-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-03-22,[],IL,102nd +Assigned to Counties & Townships Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-24,[],IL,102nd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-02-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John F. Curran,2022-03-22,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-11-15,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Availability & Accessibility Committee; 012-000-000,2022-04-06,['committee-passage-favorable'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Placed on Calendar Order of First Reading,2022-02-24,['reading-1'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Education,2022-02-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2021-04-20,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Do Pass / Short Debate Financial Institutions Committee; 011-000-000,2022-03-15,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-01-27,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-03-09,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Do Pass as Amended Local Government; 007-000-000,2021-04-14,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2022-03-31,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-31,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2021-04-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Do Pass / Short Debate Prescription Drug Affordability & Accessibility Committee; 012-008-000,2022-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-16,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-03-16,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2022-02-17,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +First Reading,2022-03-23,['reading-1'],IL,102nd +Fiscal Note Filed,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2022-03-30,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-21,[],IL,102nd +Assigned to Cities & Villages Committee,2022-03-07,['referral-committee'],IL,102nd +Do Pass as Amended Higher Education; 011-000-000,2022-03-29,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-28,[],IL,102nd +Removed Co-Sponsor Rep. Dan Brady,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-03,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-23,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-05-04,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-28,[],IL,102nd +Assigned to Human Services Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-04-04,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Doris Turner,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-08,[],IL,102nd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-03-25,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-09-12,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-15,[],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Chris Bos,2021-03-26,[],IL,102nd +Second Reading,2022-04-06,['reading-2'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-05-11,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-22,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-03-17,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-11-29,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2021-05-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tim Butler,2022-03-02,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-19,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2022-03-28,['amendment-introduction'],IL,102nd +Approved for Consideration Assignments,2022-11-15,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-31,['amendment-introduction'],IL,102nd +Third Reading - Passed; 037-014-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Do Pass / Short Debate Mental Health & Addiction Committee; 016-000-000,2021-03-26,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 012-000-000,2022-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-10-06,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-14,[],IL,102nd +First Reading,2022-04-03,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-03-29,[],IL,102nd +Chief Senate Sponsor Sen. Donald P. DeWitte,2021-04-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 015-000-000,2022-03-23,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Approved for Consideration Assignments,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Revenue & Finance Committee,2021-05-13,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 008-001-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-26,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Scott M. Bennett,2021-04-29,[],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-02-17,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-04-12,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-16,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-08,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Revenue,2022-02-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 5 Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-03-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-03,[],IL,102nd +Third Reading - Short Debate - Passed 107-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2022-02-25,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-08,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Appropriations-Higher Education Committee,2022-03-24,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-02-01,['referral-committee'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-24,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2022-03-02,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-19,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 098-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-04-22,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Do Pass Insurance; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2022-03-02,[],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Rules Committee; 004-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2022-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Laura M. Murphy,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-06-16,[],IL,102nd +Chief House Sponsor Rep. Jeff Keicher,2022-03-07,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 010-000-000,2022-03-23,[],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Thaddeus Jones,2021-04-21,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2022-01-14,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 8, 2022",2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 100-001-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-03-24,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-14,[],IL,102nd +Remains in Appropriations-Higher Education Committee,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Chief Senate Sponsor Sen. Brian W. Stewart,2021-04-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Donald P. DeWitte,2021-04-27,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Public Utilities Committee,2022-02-01,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Revenue & Finance Committee,2022-04-05,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-11-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Local Government,2022-03-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2021-05-07,['amendment-introduction'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-10,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 022-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-09-21,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-01-04,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-04-13,[],IL,102nd +Third Reading - Short Debate - Passed 075-031-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2021-10-28,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2021-09-03,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2023-01-03,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion Prevailed 068-035-000,2022-03-04,[],IL,102nd +Third Reading - Short Debate - Passed 069-039-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-01,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-05-19,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. John Connor,2022-04-01,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-01-28,[],IL,102nd +Chief Senate Sponsor Sen. Doris Turner,2022-03-07,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Rezin,2021-05-12,['amendment-passage'],IL,102nd +Assigned to Ethics & Elections Committee,2021-05-04,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-11,[],IL,102nd +Postponed - Judiciary,2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Withdrawn by Rep. Mary E. Flowers,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Omar Aquino,2022-03-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Revenue,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2021-04-19,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-08-09,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-09-19,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-12-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-26,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-17,['reading-2'],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Assigned to Transportation,2021-05-11,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-05-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-02-10,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-05-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-03-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-03,[],IL,102nd +Do Pass Executive; 017-000-000,2022-11-30,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-12,[],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-19,['committee-passage'],IL,102nd +Chief House Sponsor Rep. Ann M. Williams,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-04-08,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-05-03,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-30,[],IL,102nd +Assigned to Consumer Protection Committee,2021-04-28,['referral-committee'],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 27, 2021",2021-05-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2021-05-14,[],IL,102nd +Third Reading - Short Debate - Passed 103-009-000,2022-03-02,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-05-19,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-04-28,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-16,[],IL,102nd +Assigned to Pensions,2022-03-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-04-28,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Maura Hirschauer,2022-03-10,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Criminal Law; 009-000-000,2021-04-28,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2022-03-18,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2021-05-05,['amendment-passage'],IL,102nd +Assigned to Licensed Activities,2021-05-11,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-05-04,['referral-committee'],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Third Reading - Passed; 048-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Health; 013-000-000,2021-05-19,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-01,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-05-13,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2021-05-18,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Thomas Cullerton,2021-05-13,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Thaddeus Jones,2021-05-10,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Third Reading - Short Debate - Passed 114-001-001,2021-04-21,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading April 29, 2021",2021-04-28,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Adopted; D. Turner,2021-05-05,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2022-02-28,[],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-16,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Maura Hirschauer,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2021-05-05,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2021-04-14,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +Assigned to Insurance Committee,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2021-05-05,['committee-passage'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +"House Floor Amendment No. 2 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-02-23,[],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Butler,2021-03-12,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-04-28,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-13,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-27,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-14,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Do Pass Higher Education; 013-000-000,2021-05-05,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-12,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-05-04,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Michael Halpin,2021-04-30,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Higher Education,2021-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Meg Loughran Cappel,2021-04-16,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-05-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2022-03-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2021-04-22,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +Re-assigned to State Government,2021-05-29,['referral-committee'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +House Floor Amendment No. 2 Pension Note Filed as Amended,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 19, 2021",2021-05-18,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Resolution Adopted 068-039-000,2021-05-29,['passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2021-05-12,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2022-03-02,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Amy Elik,2021-05-06,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 5, 2021",2021-05-04,[],IL,102nd +Removed Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Assigned to Health,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2021-04-07,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-04-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-13,[],IL,102nd +Third Reading - Passed; 052-000-000,2021-04-28,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-14,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-02-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-003-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 29, 2021",2021-05-28,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-13,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2021-03-09,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Chief House Sponsor Rep. Maura Hirschauer,2021-04-22,[],IL,102nd +Assigned to State Government Administration Committee,2021-05-05,['referral-committee'],IL,102nd +Assigned to Behavioral and Mental Health,2021-05-10,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-23,[],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2021-05-18,[],IL,102nd +Chief House Sponsor Rep. Dagmara Avelar,2022-02-25,[],IL,102nd +Re-referred to Assignments,2021-06-01,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 007-000-000,2021-05-05,['committee-passage'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-30,['amendment-passage'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass Education; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +Assigned to Labor,2021-04-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2022-03-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-05,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-07,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-24,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-12-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-02-22,['amendment-passage'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2022-03-24,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-02-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Brian W. Stewart,2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-20,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2021-04-13,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Alternate Co-Sponsor Removed Rep. Debbie Meyers-Martin,2022-03-23,[],IL,102nd +Do Pass as Amended / Short Debate Police & Fire Committee; 015-000-000,2021-03-25,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 1, 2022",2022-03-31,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-05-28,[],IL,102nd +Motion Prevailed 053-021-001,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2021-04-27,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-03-09,[],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-25,[],IL,102nd +First Reading,2021-05-14,['reading-1'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-16,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-31,[],IL,102nd +Third Reading - Passed; 054-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-05-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Be Adopted Executive; 011-005-000,2021-05-27,['committee-passage-favorable'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Third Reading - Standard Debate - Passed 092-011-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading November 29, 2022",2022-11-16,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-21,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-10-26,[],IL,102nd +Chief House Sponsor Rep. Kelly M. Cassidy,2022-02-24,[],IL,102nd +Chief House Sponsor Rep. Dave Vella,2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-23,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Murphy,2022-02-24,['amendment-passage'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-08-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Chief House Sponsor Rep. Jay Hoffman,2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-03,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-03-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-05,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-25,[],IL,102nd +Do Pass as Amended Executive; 015-000-000,2022-03-30,['committee-passage'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-17,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-24,[],IL,102nd +Second Reading,2022-03-28,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-24,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-08,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2022-03-16,['committee-passage'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-02-22,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-23,[],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-02-28,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-03-10,[],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Janet Yang Rohr,2022-02-22,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2022-04-04,['amendment-introduction'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Deanne M. Mazzochi,2021-05-12,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-03-04,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2022-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-03-24,[],IL,102nd +Do Pass as Amended / Consent Calendar Mental Health & Addiction Committee; 016-000-000,2021-03-26,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2022-04-01,['reading-1'],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-15,[],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-22,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-25,[],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2022-03-17,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-10-28,[],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-05-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-15,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-11-28,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2021-04-20,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-12-07,[],IL,102nd +Chief Sponsor Changed to Sen. Laura M. Murphy,2021-10-19,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Brian W. Stewart,2022-03-23,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Assigned to Public Safety,2021-04-28,['referral-committee'],IL,102nd +Second Reading,2021-05-28,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-05,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-11-30,[],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Frances Ann Hurley,2022-03-30,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 4, 2022",2022-04-01,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Mattie Hunter,2021-05-26,[],IL,102nd +Do Pass as Amended Healthcare Access and Availability; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Ann Gillespie,2022-03-04,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Maura Hirschauer,2021-04-13,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Counties & Townships Committee,2021-04-21,[],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-06,['amendment-passage'],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Do Pass Executive; 015-000-000,2022-12-01,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-05-17,[],IL,102nd +Do Pass Labor; 011-004-000,2022-03-23,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Adam Niemerg,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-22,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Do Pass Criminal Law; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Reported Back To Executive; 002-000-001,2021-05-19,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Chief Senate Sponsor Sen. John F. Curran,2021-04-23,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Postponed - Transportation,2021-05-19,[],IL,102nd +Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-21,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2023-01-08,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2021-05-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-23,[],IL,102nd +Assigned to Transportation,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-23,[],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2022-03-07,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-14,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-04-20,[],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-05,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to State Government Administration Committee,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-01-21,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Added as Chief Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-01-04,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-04,[],IL,102nd +Arrive in Senate,2022-03-22,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-14,[],IL,102nd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments.",2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-02-18,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-02-03,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2022-01-25,[],IL,102nd +Be Adopted Behavioral and Mental Health; 009-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +First Reading,2021-05-12,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-21,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-04,[],IL,102nd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-20,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-05-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading November 29, 2022",2022-11-16,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-19,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-02-16,[],IL,102nd +Arrived in House,2022-03-09,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Anderson,2022-02-25,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-23,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Frances Ann Hurley,2022-02-23,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-17,[],IL,102nd +Third Reading - Short Debate - Passed 096-007-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-25,[],IL,102nd +Reported Back To Executive; 003-000-000,2021-05-26,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-24,[],IL,102nd +To Executive- Procurement,2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-02,['reading-1'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2022-03-07,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-01-13,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Standard Debate - Passed 068-041-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Public Utilities Committee; 023-000-000,2021-05-11,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 4 Adopted; Belt,2022-02-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-20,[],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2022-04-03,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2022-01-11,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-07-25,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-03-08,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-27,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-03-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2022-02-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-18,[],IL,102nd +Recalled to Second Reading,2021-05-20,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2022-02-22,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 011-000-000,2021-05-12,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-13,[],IL,102nd +Third Reading - Passed; 040-001-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-02-24,[],IL,102nd +Assigned to Judiciary,2022-03-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Will Guzzardi,2021-04-15,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Appropriations-Human Services Committee; 021-000-000,2022-04-07,['committee-passage-favorable'],IL,102nd +Chief Senate Sponsor Sen. Doris Turner,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Labor,2021-05-19,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 28, 2021",2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-02-25,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Counties & Townships Committee,2022-03-17,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Butler,2021-05-05,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2021-05-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2021-02-19,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2022-11-15,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-08,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-02-24,[],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Assigned to Revenue,2021-05-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-18,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-05-05,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-05,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-29,[],IL,102nd +Chief Senate Sponsor Sen. Mike Simmons,2021-04-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-09,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As March 11, 2022",2022-02-25,[],IL,102nd +Assigned to Transportation,2022-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jonathan Carroll,2021-04-19,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-04-15,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-04-14,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-03,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-10-25,[],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-02,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-05-13,[],IL,102nd +Second Reading,2022-03-31,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-05-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Appropriations-General Services Committee,2022-02-09,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-02-16,['amendment-failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2022-03-17,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2021-05-13,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michael J. Zalewski,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Julie A. Morrison,2022-02-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-16,[],IL,102nd +Do Pass Pensions; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-16,[],IL,102nd +Chief House Sponsor Rep. Katie Stuart,2021-04-22,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-24,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2021-05-11,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Michael Halpin,2021-05-10,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-01-10,[],IL,102nd +Arrive in Senate,2022-04-08,['introduction'],IL,102nd +Third Reading - Passed; 052-001-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Senate Committee Amendment No. 3 Assignments Refers to Insurance,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-04-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Assigned to Local Government,2021-05-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-22,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Rita Mayfield,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-004-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Patrick Windhorst,2021-05-13,['amendment-introduction'],IL,102nd +Assigned to State Government Administration Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-12,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-05-25,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2021-03-22,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-22,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-19,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-27,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-20,[],IL,102nd +Reported Back To Executive; 003-000-000,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +Third Reading - Passed; 036-016-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Second Reading,2021-04-29,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-20,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-05-19,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 017-000-000,2021-05-11,['committee-passage'],IL,102nd +Motion Do Pass - Lost Judiciary - Civil Committee; 008-005-000,2021-05-05,['committee-failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-23,[],IL,102nd +Chief House Sponsor Rep. Jim Durkin,2021-04-23,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-05-05,[],IL,102nd +Chief Senate Sponsor Sen. Doris Turner,2021-04-22,[],IL,102nd +Do Pass Licensed Activities; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-02-07,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-04-29,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Health; 013-000-000,2021-05-12,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Chief House Sponsor Rep. Paul Jacobs,2021-04-30,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Chief Co-Sponsor Changed to Rep. Thaddeus Jones,2021-03-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Do Pass as Amended Licensed Activities; 005-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-12,[],IL,102nd +Chief House Sponsor Rep. Michael Halpin,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-05-12,['amendment-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Assigned to Education,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Passed; 041-008-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-02-05,[],IL,102nd +Assigned to Revenue,2021-05-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-04-08,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-02-06,[],IL,102nd +Assigned to Police & Fire Committee,2021-05-04,['referral-committee'],IL,102nd +Co-Sponsor Rep. Mike Murphy,2021-02-08,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2021-05-11,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 009-000-000,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2021-05-11,['amendment-introduction'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Tom Demmer,2021-05-13,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-02,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Note / Motion Filed - Note Act Does Not Apply Rep. Stephanie A. Kifowit,2022-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-04-15,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 016-000-000,2021-05-06,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-27,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 26, 2021",2021-05-25,[],IL,102nd +Chief Senate Sponsor Sen. Steve McClure,2021-04-22,[],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Waive Posting Notice,2021-05-29,[],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-17,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-30,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 017-000-000,2021-05-11,['committee-passage'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Assigned to Tourism Committee,2021-05-24,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-05,['referral-committee'],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2021-05-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Third Reading - Passed; 047-008-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2023-01-06,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Do Pass Health; 014-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-21,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-26,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Assigned to Police & Fire Committee,2021-04-28,['referral-committee'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Assigned to Pensions,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-05-19,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-13,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-13,[],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-16,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-04-29,['amendment-failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-04-21,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-25,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 078-036-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Passed; 047-010-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 050-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-03-10,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-14,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Recalled to Second Reading,2022-03-09,['reading-2'],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +Chief House Sponsor Rep. Kambium Buckner,2022-02-28,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Commerce,2022-02-23,[],IL,102nd +"Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2021-10-28,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-02-24,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Consumer Protection Committee,2022-02-24,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-01,[],IL,102nd +Third Reading - Short Debate - Passed 071-041-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-01-31,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-01-20,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2021-03-17,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2022-02-23,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +First Reading,2022-04-01,['reading-1'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-19,[],IL,102nd +Chief House Sponsor Rep. Eva-Dina Delgado,2022-02-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-02-16,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 022-004-000,2022-03-29,['committee-passage-favorable'],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Licensed Activities,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-24,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-04,[],IL,102nd +Chief Senate Sponsor Sen. Doris Turner,2022-03-07,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-23,[],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Third Reading - Passed; 049-000-000,2022-03-09,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Laura M. Murphy,2021-04-19,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-09,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. Nicholas K. Smith,2022-02-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Second Reading - Short Debate,2022-03-28,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-04-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2022-03-31,[],IL,102nd +Arrive in Senate,2022-04-01,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Chief Sponsor Changed to Rep. La Shawn K. Ford,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Healthcare Access and Availability,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-04-05,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-04-05,[],IL,102nd +Arrived in House,2022-03-10,['introduction'],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Plummer,2022-02-25,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2022-02-22,[],IL,102nd +Assigned to Energy & Environment Committee,2022-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-02-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-03-02,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-22,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-03-07,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-03-30,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-18,[],IL,102nd +Chief Co-Sponsor Changed to Rep. Keith R. Wheeler,2022-02-24,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-04-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-10-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading January 5, 2023",2023-01-04,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2021-04-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 29, 2022",2022-03-28,[],IL,102nd +Assigned to Pensions,2022-03-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-10,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-14,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Laura Fine,2022-02-17,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-11,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Assigned to Human Services Committee,2021-05-05,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Michelle Mussman,2021-03-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-29,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Emanuel Chris Welch,2022-11-29,['amendment-introduction'],IL,102nd +Third Reading - Passed; 046-009-000,2022-12-01,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-23,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-04-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-04-04,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 017-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2022-03-28,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2022-03-21,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2022-02-09,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-03-01,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Assigned to Insurance Committee,2021-05-13,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Assigned to Local Government,2021-05-10,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 071-045-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2021-05-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2021-05-17,[],IL,102nd +Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-20,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Labor & Commerce Committee,2021-05-05,[],IL,102nd +Assigned to Insurance,2022-03-16,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 026-000-000,2021-05-12,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2021-05-26,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-05-06,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2021-05-19,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-05-11,[],IL,102nd +First Reading,2021-05-05,['reading-1'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Assigned to Insurance Committee,2021-05-13,['referral-committee'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Assigned to Higher Education Committee,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Postponed - Education,2021-05-05,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 014-000-000,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-23,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Elizabeth Hernandez,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Rita Mayfield,2021-04-12,['amendment-introduction'],IL,102nd +Removed from Consent Calendar Status Rep. Jay Hoffman,2021-05-13,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2021-04-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Celina Villanueva,2021-04-27,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-19,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-26,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Rose,2021-04-29,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Remains in Judiciary - Civil Committee,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-03-02,[],IL,102nd +Assigned to Transportation,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Insurance; 014-000-000,2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-04-21,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Motion Do Pass - Lost Judiciary - Criminal Committee; 009-005-000,2021-05-13,['committee-failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Do Pass Executive; 016-001-000,2021-05-27,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-04,[],IL,102nd +Second Reading,2021-05-29,['reading-2'],IL,102nd +Do Pass as Amended Insurance; 012-000-000,2021-05-19,['committee-passage'],IL,102nd +"Committee Deadline Extended-Rule 9(b) May 28, 2021",2021-05-24,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2021-03-23,[],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2021-04-23,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 022-000-000,2022-02-16,['committee-passage'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-05-10,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-04-05,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kathleen Willis,2021-04-28,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-01,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2021-05-19,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-22,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas M. Bennett,2021-04-27,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Removed from Consent Calendar Status Rep. Avery Bourne,2021-04-21,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2021-03-12,[],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2021-04-19,[],IL,102nd +Postponed - Pensions,2021-05-12,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Assigned to Local Government,2021-05-04,['referral-committee'],IL,102nd +Second Reading,2021-04-14,['reading-2'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-19,[],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2021-04-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tim Butler,2021-05-12,[],IL,102nd +Third Reading - Passed; 052-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Will Guzzardi,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-21,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2022-02-17,['committee-passage'],IL,102nd +"Chief Sponsor Changed to Sen. Napoleon Harris, III",2021-05-14,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-17,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Sent to the Governor,2021-06-15,['executive-receipt'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Chief Senate Sponsor Sen. Sally J. Turner,2022-04-08,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-05-10,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Barickman,2021-04-21,['amendment-passage'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-04-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-03,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Insurance,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-04-04,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-30,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-05,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-16,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Arrive in Senate,2022-04-01,['introduction'],IL,102nd +Assigned to Health Care Licenses Committee,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion Prevailed 068-033-000,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-02-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Randy E. Frese,2021-04-15,[],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-13,[],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-05-13,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Celina Villanueva,2022-03-04,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 011-006-000,2021-05-13,['committee-passage'],IL,102nd +Recalled to Second Reading,2021-05-06,['reading-2'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-05,[],IL,102nd +Assigned to Judiciary,2021-04-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +Do Pass as Amended Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Assigned to Personnel & Pensions Committee,2022-03-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-17,['referral-committee'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-15,[],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +Be Adopted State Government; 009-000-000,2021-05-29,['committee-passage-favorable'],IL,102nd +"Added as Chief Co-Sponsor Sen. Emil Jones, III",2021-04-13,[],IL,102nd +Co-Sponsor Rep. Andrew S. Chesney,2021-02-08,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Licensed Activities,2021-05-05,[],IL,102nd +Do Pass / Consent Calendar Police & Fire Committee; 014-000-000,2021-05-13,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-05,['referral-committee'],IL,102nd +Third Reading - Passed; 033-015-000,2022-03-10,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Do Pass Executive; 015-000-000,2022-03-23,['committee-passage'],IL,102nd +Do Pass Revenue; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-26,[],IL,102nd +Do Pass as Amended Insurance; 012-000-000,2021-05-13,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-03-16,[],IL,102nd +Assigned to Executive Committee,2021-05-27,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Barbara Hernandez,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-17,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Carol Ammons,2021-05-07,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Energy and Public Utilities,2021-05-04,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Prescription Drug Affordability & Accessibility Committee,2022-02-08,[],IL,102nd +Second Reading,2021-05-30,['reading-2'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Bob Morgan,2021-04-19,['amendment-introduction'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-04-14,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2022-03-03,[],IL,102nd +Assigned to Environment and Conservation,2021-05-10,['referral-committee'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-04,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-02,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Agriculture,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Agriculture,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-01-04,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Higher Education Committee,2022-03-30,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-02,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-03-24,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-26,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Tom Weber,2022-03-01,['amendment-introduction'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-07-25,[],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2022-03-07,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-03,['amendment-failure'],IL,102nd +Recalled to Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +Referred to Assignments,2021-05-12,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 26, 2021",2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-31,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-01-13,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted State Government Administration Committee; 006-000-000,2022-02-23,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-03-01,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-03,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2022-03-03,[],IL,102nd +Do Pass Education; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-04-04,[],IL,102nd +Chief House Sponsor Rep. Jim Durkin,2022-03-09,[],IL,102nd +Second Reading,2022-11-29,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Chapin Rose,2022-03-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Chief House Sponsor Rep. LaToya Greenwood,2021-04-30,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2021-04-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Assigned to Criminal Law,2021-05-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-22,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 24, 2022",2022-02-23,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Patrick J. Joyce,2021-05-06,['amendment-introduction'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Revenue; 010-000-000,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-04-16,[],IL,102nd +Do Pass Executive; 015-000-000,2021-05-27,['committee-passage'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2022-03-01,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-01-24,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-08,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-29,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-20,[],IL,102nd +Fiscal Note Requested by Rep. Norine K. Hammond,2021-04-13,[],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2022-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-21,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-04,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2021-10-26,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Chief House Sponsor Rep. Barbara Hernandez,2021-04-26,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-04-15,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-10-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-05-05,[],IL,102nd +Do Pass Judiciary; 007-000-000,2022-03-09,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-28,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-04-14,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-04-15,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2022-03-21,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Revenue,2021-05-05,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Higher Education Committee,2021-04-21,[],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-04-09,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Appropriations-Human Services Committee; 023-000-000,2022-04-08,['committee-passage-favorable'],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 102-006-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Do Pass Labor; 015-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-03,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Ryan Spain,2021-05-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-05-10,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Murphy,2021-05-20,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-22,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-02-24,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Approved for Consideration Assignments,2021-05-04,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Assigned to Appropriations-Public Safety Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-07,[],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +Do Pass Revenue; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2021-05-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2022-03-04,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-01-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-04-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As March 25, 2022",2022-03-11,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-05-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-02-19,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-05-11,[],IL,102nd +Assigned to Executive Committee,2022-02-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-15,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-05,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-10-25,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-05-19,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Remove Chief Co-Sponsor Rep. La Shawn K. Ford,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-30,[],IL,102nd +Third Reading - Short Debate - Passed 107-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Placed on Calendar Order of First Reading,2022-04-01,['reading-1'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-10-14,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-04-04,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 111-005-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 115-000-001,2021-04-22,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-01-05,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-25,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-28,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-03-09,[],IL,102nd +Arrived in House,2022-03-10,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-01-31,[],IL,102nd +Do Pass Pensions; 005-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-01,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-01,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-21,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-26,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2022-03-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2022-03-11,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-10,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-10,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-07,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Licensed Activities,2022-02-09,[],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-22,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2021-05-29,['reading-2'],IL,102nd +Arrived in House,2022-12-01,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Thomas Cullerton,2022-02-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2022-02-22,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-28,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Theresa Mah,2021-03-17,['amendment-introduction'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2021-04-20,['amendment-introduction'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-005-000,2022-02-23,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-02-23,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2021-04-28,[],IL,102nd +Chief House Sponsor Rep. Bob Morgan,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-04-21,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2022-03-01,['amendment-introduction'],IL,102nd +Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Second Reading,2022-04-06,['reading-2'],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 106-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Murphy,2022-03-09,['amendment-passage'],IL,102nd +Assigned to Local Government,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-13,[],IL,102nd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2022-04-05,['amendment-introduction'],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-01,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-03-01,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Steve Stadelman,2021-04-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-29,[],IL,102nd +Chief House Sponsor Rep. Will Guzzardi,2021-04-27,[],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 012-000-000,2022-03-16,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Randy E. Frese,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-03-30,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-02-23,[],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-14,[],IL,102nd +Recommends Be Adopted Energy & Environment Committee; 025-000-000,2022-03-29,['committee-passage-favorable'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 020-003-000,2021-03-17,['committee-passage'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-11-29,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-29,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Licensed Activities,2021-10-19,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-02,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-08,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-03-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2022-04-05,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-17,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Consumer Protection Committee; 006-000-000,2022-02-25,['committee-passage-favorable'],IL,102nd +Chief House Sponsor Rep. Margaret Croke,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-17,[],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2022-03-15,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-24,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michael Halpin,2022-03-14,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-02-16,[],IL,102nd +Approved for Consideration Assignments,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-05-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-11-29,['reading-2'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2021-05-04,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-03-26,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2021-03-18,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 7, 2022",2022-04-06,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sandra Hamilton,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-24,[],IL,102nd +Removed Co-Sponsor Rep. Dave Severin,2021-03-26,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-03-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-07-21,[],IL,102nd +"Chief House Sponsor Rep. Lamont J. Robinson, Jr.",2022-02-25,[],IL,102nd +Assigned to Judiciary,2022-03-08,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +Do Pass Financial Institutions; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Assigned to Judiciary,2021-04-28,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-05-04,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-02-25,['amendment-failure'],IL,102nd +Do Pass State Government; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2021-04-23,[],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2021-03-09,['amendment-passage'],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +Passed Both Houses,2021-05-19,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert F. Martwick,2021-05-28,['amendment-introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jackie Haas,2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-02-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-21,[],IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2021-04-22,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2021-05-11,['amendment-introduction'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Chief House Sponsor Rep. Michelle Mussman,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-05-14,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Jacqueline Y. Collins,2021-04-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2022-03-09,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +"Effective Date May 6, 2022",2022-05-06,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-15,[],IL,102nd +Chief House Sponsor Rep. Anna Moeller,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2021-05-27,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Sent to the Governor,2022-04-26,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Third Reading - Passed; 039-014-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Be Adopted Executive; 017-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Do Pass Pensions; 008-000-000,2022-03-30,['committee-passage'],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Assigned to Immigration & Human Rights Committee,2021-05-13,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2021-04-20,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-10-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +"Effective Date May 6, 2022",2022-05-06,[],IL,102nd +House Floor Amendment No. 1 Fiscal Note Requested as Amended by Rep. Randy E. Frese,2022-04-05,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Doris Turner,2022-02-08,['amendment-introduction'],IL,102nd +Approved for Consideration Assignments,2022-04-01,[],IL,102nd +Postponed - Pensions,2021-05-12,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-05-07,['amendment-introduction'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2022-02-15,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-02-24,[],IL,102nd +Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Referred to Rules Committee,2021-04-29,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-22,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-28,[],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Assigned to Agriculture,2022-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-19,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2022-02-17,[],IL,102nd +Assigned to Personnel & Pensions Committee,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-23,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Do Pass / Short Debate Prescription Drug Affordability & Accessibility Committee; 016-004-000,2022-03-16,['committee-passage'],IL,102nd +Assigned to Commerce,2021-05-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-05-04,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2021-05-11,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Assigned to Revenue,2022-03-16,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-14,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-06,[],IL,102nd +Do Pass / Consent Calendar Public Utilities Committee; 023-000-000,2021-05-11,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Do Pass Health; 011-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-03-14,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-23,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 011-000-000,2021-05-05,['committee-passage'],IL,102nd +Assigned to Higher Education Committee,2021-04-28,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Kelly M. Cassidy,2022-02-17,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-14,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-05-25,['reading-2'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-05-04,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Remove Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-11,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Bob Morgan,2022-04-01,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2021-05-20,[],IL,102nd +Assigned to Executive,2021-05-04,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Tom Demmer,2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-04-20,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Do Pass Licensed Activities; 007-000-000,2021-05-06,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2021-05-19,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-15,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Waive Posting Notice,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-05-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-04-28,[],IL,102nd +Assigned to Licensed Activities,2021-04-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2021-05-11,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-10-21,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Passed Both Houses,2021-05-19,[],IL,102nd +Assigned to State Government,2022-03-22,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2021-05-11,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-02-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-03-02,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Third Reading - Passed; 053-002-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-23,[],IL,102nd +Third Reading - Passed; 036-017-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Assigned to Appropriations-General Services Committee,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2021-08-31,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 012-007-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2022-03-07,[],IL,102nd +Assigned to Criminal Law,2021-04-28,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-15,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-07,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-03-16,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-25,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +First Reading,2022-04-06,['reading-1'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-24,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Chief House Sponsor Rep. LaToya Greenwood,2022-02-24,[],IL,102nd +Waive Posting Notice,2021-05-26,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-03-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-09-13,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-03-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-22,[],IL,102nd +Removed Co-Sponsor Rep. Jawaharial Williams,2022-02-23,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-05-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-19,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anthony DeLuca,2021-04-20,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Re-referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-02-23,[],IL,102nd +To Firearms and Firearm Safety Subcommittee,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-20,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-04-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Second Reading,2022-04-06,['reading-2'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-05-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Criminal Law- Clear Compliance,2021-05-12,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-03-02,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-05-07,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Fiscal Note Request as Amended is Inapplicable,2022-03-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-03-31,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-04-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-16,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-31,[],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2022-03-07,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Revenue & Finance Committee; 010-007-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2022-03-03,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-20,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-03-18,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-02-14,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-14,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Chief House Sponsor Rep. Anna Moeller,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Do Pass Veterans Affairs; 005-000-000,2021-03-09,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-07-06,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-10-28,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-24,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-23,[],IL,102nd +Assigned to Criminal Law,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-05-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-20,[],IL,102nd +Third Reading - Passed; 057-000-001,2021-05-25,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-23,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-22,[],IL,102nd +Third Reading - Short Debate - Passed 105-006-003,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2021-05-12,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Assigned to Insurance Committee,2021-05-13,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-04-28,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2021-05-11,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2021-05-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-26,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jonathan Carroll,2021-05-13,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-05-03,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 005-003-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-25,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Do Pass Health; 013-000-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-05,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-22,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-15,[],IL,102nd +"Removed Co-Sponsor Rep. Maurice A. West, II",2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 12, 2021",2021-05-11,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-05-04,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-23,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-05-10,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Chris Bos,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sally J. Turner,2021-05-13,['amendment-introduction'],IL,102nd +Recalled to Second Reading,2021-04-28,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +House Floor Amendment No. 3 Tabled Pursuant to Rule 40,2021-04-22,['amendment-failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Second Reading,2021-05-26,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-21,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Jay Hoffman,2021-04-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-19,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-05-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +House Floor Amendment No. 2 Balanced Budget Note Filed as Amended,2022-03-01,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Alternate Co-Sponsor Removed Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2022-12-01,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2021-05-12,[],IL,102nd +Chief House Sponsor Rep. Carol Ammons,2021-04-26,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2022-02-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-04-28,[],IL,102nd +Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +Postponed - Education,2021-05-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2022-02-23,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Criminal Law,2022-04-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2023-01-10,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Margaret Croke,2021-10-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-22,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-30,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-04-23,[],IL,102nd +First Reading,2021-04-20,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 30, 2022",2022-03-29,[],IL,102nd +Third Reading - Passed; 048-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-24,[],IL,102nd +House Floor Amendment No. 1 Withdrawn by Rep. Greg Harris,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-01-20,[],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-02,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 009-005-000,2021-04-29,[],IL,102nd +Sponsor Removed Sen. Doris Turner,2022-02-24,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-16,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-02-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-04-04,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2022-03-03,[],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-02-25,[],IL,102nd +Chief House Sponsor Rep. Eva-Dina Delgado,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-28,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Swanson,2021-04-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Rachelle Crowe,2022-04-04,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-05-06,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-03-02,[],IL,102nd +Do Pass Commerce; 008-000-000,2021-05-20,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Lindsey LaPointe,2021-04-20,['amendment-introduction'],IL,102nd +Third Reading - Standard Debate - Passed 085-031-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-28,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-24,[],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2022-11-16,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2022-02-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Health Care Availability & Accessibility Committee; 012-000-000,2022-04-06,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-01-27,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +Do Pass / Short Debate Cities & Villages Committee; 011-000-000,2022-03-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-04-04,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Connor,2022-02-25,['amendment-passage'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2021-04-23,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Terra Costa Howard,2021-04-22,[],IL,102nd +Assigned to State Government Administration Committee,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2022-04-07,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2022-02-17,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-05-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading August 31, 2021",2021-08-26,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-11,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Assigned to Transportation,2022-03-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-14,[],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2021-05-14,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-12-01,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Second Reading,2023-01-08,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Executive,2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-04,['referral-committee'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Assigned to Judiciary,2021-05-11,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-14,[],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-19,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Third Reading - Passed; 037-018-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-19,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-23,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Adam Niemerg,2022-03-10,[],IL,102nd +Do Pass Executive; 014-000-000,2021-05-19,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-06,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-21,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-05-24,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Chief Senate Sponsor Sen. Neil Anderson,2021-04-23,[],IL,102nd +Assigned to Transportation,2021-05-10,['referral-committee'],IL,102nd +Remove Chief Co-Sponsor Rep. Delia C. Ramirez,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. John Connor,2021-04-29,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 012-000-000,2021-04-14,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-28,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Linda Holmes,2021-05-28,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-02-16,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +Chief Senate Sponsor Sen. Patricia Van Pelt,2021-04-22,[],IL,102nd +"Alternate Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2021-04-28,[],IL,102nd +Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2021-05-20,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-04-22,[],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-30,[],IL,102nd +Do Pass / Consent Calendar Restorative Justice Committee; 006-000-000,2021-05-06,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-05-04,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-20,[],IL,102nd +Do Pass Health; 014-000-000,2021-05-12,['committee-passage'],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Napoleon Harris, III",2021-05-11,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-23,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-05-04,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Second Reading,2021-05-28,['reading-2'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-05-14,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-02,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-05-25,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-10,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Recalled to Second Reading,2021-05-19,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-29,['referral-committee'],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-12,['committee-passage'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Assigned to State Government,2021-05-29,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-05-03,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to State Government,2021-05-05,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-001,2021-05-26,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 017-011-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Chief Senate Sponsor Sen. Thomas Cullerton,2021-04-22,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-28,[],IL,102nd +Postponed - Higher Education,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-04-23,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-28,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-19,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Rachelle Crowe,2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +Assigned to Veterans' Affairs Committee,2022-03-07,['referral-committee'],IL,102nd +Third Reading - Passed; 051-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 107-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Assigned to Criminal Law,2021-05-11,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 009-003-000,2021-05-05,['committee-passage'],IL,102nd +Assigned to Transportation,2021-05-10,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2021-05-10,['amendment-introduction'],IL,102nd +Assigned to State Government,2022-04-08,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Recalled to Second Reading,2021-05-19,['reading-2'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2021-04-22,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Reported Back To Executive; 003-000-000,2021-05-26,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Removed Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2021-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-05-13,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +"Chief House Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-26,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2021-05-04,[],IL,102nd +Assigned to Consumer Protection Committee,2021-05-04,['referral-committee'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 31, 2021",2021-05-29,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-03-03,[],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 019-000-000,2021-05-11,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Do Pass as Amended / Consent Calendar Insurance Committee; 019-000-000,2021-05-11,['committee-passage'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 018-000-000,2021-05-11,['committee-passage'],IL,102nd +House Floor Amendment No. 3 Pension Note Filed as Amended,2022-03-03,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-27,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Third Reading - Passed; 052-000-000,2021-05-05,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2021-05-06,[],IL,102nd +Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-14,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Greg Harris,2022-03-03,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Assigned to Insurance Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-17,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Thaddeus Jones,2021-05-13,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-04-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +Chief House Sponsor Rep. Sonya M. Harper,2021-04-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-12,[],IL,102nd +House Committee Amendment No. 2 Adopted in Labor & Commerce Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Be Adopted as Amended Executive; 016-000-000,2021-05-30,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-001-000,2021-05-24,['committee-passage-favorable'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Karina Villa,2021-05-11,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-22,[],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 007-000-000,2021-05-11,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-24,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +First Reading,2021-04-20,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-03-18,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2022-03-31,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 019-000-000,2021-05-11,['committee-passage'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 018-000-000,2021-05-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-04,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Higher Education Committee; 010-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Behavioral and Mental Health; 011-000-000,2021-04-14,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-27,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Assigned to Executive Committee,2023-01-05,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-13,[],IL,102nd +Referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Re-assigned to Public Safety,2022-02-08,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Scott M. Bennett,2022-03-23,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2021-05-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-17,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Approved for Consideration Assignments,2021-05-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 014-000-000,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-04-05,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Postponed - Revenue,2022-02-07,[],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2022-03-07,[],IL,102nd +Assigned to Transportation,2021-05-11,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-03,[],IL,102nd +Assigned to Executive Committee,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 1, 2022",2022-03-31,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-29,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 6 Filed with Secretary by Sen. Omar Aquino,2022-04-01,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-10-06,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-02-22,[],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Filed as Amended,2022-03-01,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Referred to Rules Committee,2022-04-03,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Insurance Committee; 012-005-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Assigned to Executive,2023-01-04,['referral-committee'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2022-02-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-04,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-06-16,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-08,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2022-03-04,['amendment-failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark L. Walker,2021-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-03-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Alternate Co-Sponsor Removed Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Assigned to Licensed Activities,2022-03-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2022-09-21,[],IL,102nd +Third Reading - Short Debate - Passed 102-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-12-13,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-21,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-21,['amendment-passage'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-09-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-22,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-11-30,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Postponed - Education,2021-05-12,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Thomas Cullerton,2021-04-28,[],IL,102nd +Chief Senate Sponsor Sen. Chapin Rose,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-01-12,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-01-04,[],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-03,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-04-04,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-12,[],IL,102nd +Postponed - Licensed Activities,2022-02-07,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2021-05-07,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-09-03,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +House Floor Amendment No. 3 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-30,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-11-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lance Yednock,2021-05-05,[],IL,102nd +Remove Chief Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-06,[],IL,102nd +Senate Committee Amendment No. 1 To Subcommittee on Public Health,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-05-19,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2022-03-10,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-05,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Do Pass Local Government; 005-002-000,2022-03-23,['committee-passage'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-02-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-08-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-03,['amendment-failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-05-30,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-09,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-03-24,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-05,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 018-000-000,2022-03-24,['committee-passage'],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 29, 2021",2021-05-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-03-10,[],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-28,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 29, 2022",2022-03-28,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Johnson,2021-04-20,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-15,[],IL,102nd +Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-30,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2022-03-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4 (a),2021-04-21,['amendment-failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-10-26,[],IL,102nd +Assigned to Education,2022-03-08,['referral-committee'],IL,102nd +Second Reading,2022-11-29,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Assigned to Licensed Activities,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-03-09,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 31, 2021",2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2021-05-26,[],IL,102nd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2022-03-24,['amendment-passage'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Counties & Townships Committee; 008-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Re-assigned to Education,2022-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +House Floor Amendment No. 3 Tabled Pursuant to Rule 40,2022-03-03,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tim Butler,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-14,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-03-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-22,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-24,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2022-03-23,[],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-02-28,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-05-28,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-16,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-01,[],IL,102nd +Second Reading,2022-04-06,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2022-03-15,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-02,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2022-04-01,[],IL,102nd +Second Reading,2022-04-01,['reading-2'],IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-24,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-24,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2022-02-28,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-04-04,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Do Pass / Short Debate Appropriations-Higher Education Committee; 010-005-000,2022-04-07,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2021-04-27,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. John C. D'Amico,2021-05-05,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Assigned to Financial Institutions Committee,2022-03-07,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Bradley Stephens,2021-03-25,[],IL,102nd +Assigned to Executive,2023-01-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-23,[],IL,102nd +Do Pass as Amended Insurance; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2022-03-24,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-02-24,[],IL,102nd +Land Conveyance Appraisal Note Request is Inapplicable,2022-03-03,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-03,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 021-000-000,2022-03-16,['committee-passage'],IL,102nd +Third Reading - Passed; 055-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2022-03-16,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-12-20,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-05-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Removed Co-Sponsor Rep. Blaine Wilhour,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-12-07,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. John F. Curran,2022-04-01,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2021-04-13,['committee-passage-favorable'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Prescription Drug Affordability & Accessibility Committee,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-04,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2022-03-29,['amendment-introduction'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-02-22,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2022-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2022-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-10-28,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-21,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-22,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-10-26,[],IL,102nd +Do Pass Education; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Dan McConchie,2022-03-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-03-10,[],IL,102nd +Do Pass / Short Debate Financial Institutions Committee; 011-000-000,2022-03-15,['committee-passage'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-12-07,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-04-15,[],IL,102nd +Public Act . . . . . . . . . 102-0823,2022-05-13,['became-law'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading November 30, 2022",2022-11-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2022-03-23,[],IL,102nd +Chief House Sponsor Rep. Jonathan Carroll,2021-04-22,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 008-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Chief House Sponsor Rep. Lakesia Collins,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Kambium Buckner,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2022-11-30,[],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2022-03-04,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-14,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-001,2022-04-01,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-04-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-05-06,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-02-24,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-04-28,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-04,['amendment-passage'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2022-03-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-10,[],IL,102nd +Waive Posting Notice,2023-01-04,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Higher Education Committee,2021-04-20,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2022-03-17,['amendment-introduction'],IL,102nd +Assigned to Veterans Affairs,2021-10-13,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-04-20,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ann Gillespie,2021-05-26,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 018-000-000,2022-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-20,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Dave Vella,2022-03-18,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-04-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 4, 2022",2022-04-01,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-17,[],IL,102nd +Chief Sponsor Changed to Rep. Michael T. Marron,2022-03-03,[],IL,102nd +Postponed - Education,2021-05-25,[],IL,102nd +Assigned to Health,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-06-10,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 017-011-000,2021-03-03,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-23,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-03-10,[],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-13,[],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2022-03-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2022-03-25,['amendment-introduction'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-12-20,[],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2022-03-09,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-03,[],IL,102nd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 015-000-001,2022-03-24,['committee-passage'],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +House Floor Amendment No. 4 Rules Refers to Personnel & Pensions Committee,2022-02-23,[],IL,102nd +Assigned to Energy and Public Utilities,2022-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Assigned to Education,2022-04-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-05-28,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-15,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-02,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-04,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Third Reading - Passed; 052-001-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-17,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-03-31,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Second Reading,2022-03-31,['reading-2'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Third Reading - Passed; 054-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-02-24,[],IL,102nd +"Chief Sponsor Changed to Sen. Napoleon Harris, III",2022-03-23,[],IL,102nd +First Reading,2022-04-01,['reading-1'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2022-03-30,[],IL,102nd +Assigned to Executive Committee,2022-04-05,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2022-02-09,['amendment-passage'],IL,102nd +Third Reading - Passed; 058-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-03-07,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Andrew S. Chesney,2021-04-22,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading November 29, 2022",2022-11-16,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-28,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-22,[],IL,102nd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2022-03-04,[],IL,102nd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-02-25,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-23,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2022-04-08,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Meg Loughran Cappel,2023-01-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-06-16,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2023-01-05,['amendment-introduction'],IL,102nd +Assigned to Executive,2022-03-02,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Darren Bailey,2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Appropriations-Higher Education Committee; 016-000-000,2022-03-31,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted State Government Administration Committee; 005-003-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-10,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 016-000-000,2022-02-23,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-10-11,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-03-22,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-03-24,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-04,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. David Koehler,2022-02-08,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-04-05,[],IL,102nd +Do Pass as Amended / Consent Calendar Revenue & Finance Committee; 018-000-000,2021-05-13,['committee-passage'],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-09,[],IL,102nd +"Motion to Reconsider Vote - Withdrawn Rep. Jaime M. Andrade, Jr.",2021-04-23,[],IL,102nd +Second Reading,2022-04-01,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-03-19,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-04,[],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2022-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-03-29,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-13,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 6 Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Dale Fowler,2022-03-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Moved to Suspend Rule 21 Rep. Jay Hoffman,2022-04-05,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Adoption & Child Welfare Committee; 007-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Referred to Rules Committee,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-02,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-02-25,[],IL,102nd +Assigned to State Government Administration Committee,2021-05-19,['referral-committee'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jonathan Carroll,2021-04-20,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-26,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Third Reading - Passed; 053-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-04-22,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-23,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2021-05-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading January 9, 2023",2023-01-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Assigned to Commerce,2021-05-11,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-20,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 010-006-000,2021-05-19,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michelle Mussman,2021-05-11,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Assigned to Executive Committee,2021-10-14,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-12-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-23,[],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Do Pass Transportation; 019-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-05-14,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2021-05-11,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2021-05-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-05-13,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2021-05-06,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2021-04-19,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Do Pass as Amended Insurance; 012-000-000,2021-05-19,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-27,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-05-06,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-31,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-03-26,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Do Pass / Short Debate Appropriations-Human Services Committee; 021-000-000,2021-05-13,['committee-passage'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-05,['amendment-failure'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Morrison,2021-05-19,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Steven M. Landek,2021-05-26,['amendment-introduction'],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-22,[],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2021-05-13,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-20,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Environment and Conservation; 009-000-000,2021-04-22,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Chief House Sponsor Rep. Will Guzzardi,2021-04-23,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Assigned to Higher Education Committee,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-06-01,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Michael J. Zalewski,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Murphy,2021-05-19,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2021-05-05,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2021-05-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 023-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Assigned to Insurance Committee,2021-05-13,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-24,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Omar Aquino,2021-04-06,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-22,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 21, 2021",2021-04-20,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-05,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-001,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Charles Meier,2021-05-21,[],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Education,2021-04-20,[],IL,102nd +Do Pass Revenue; 011-000-000,2021-05-13,['committee-passage'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to Transportation,2021-05-11,['referral-committee'],IL,102nd +Arrived in House,2021-04-28,['introduction'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-16,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-05-04,[],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-19,['committee-passage'],IL,102nd +Chief House Sponsor Rep. Margaret Croke,2021-04-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2021-04-29,[],IL,102nd +Do Pass as Amended / Consent Calendar Labor & Commerce Committee; 028-000-000,2021-05-12,['committee-passage'],IL,102nd +Re-referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-05-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +"House Floor Amendment No. 2 Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-02-24,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Assigned to Insurance,2021-05-04,['referral-committee'],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-05,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2022-03-15,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 29, 2021",2021-05-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-13,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-05-12,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2021-05-17,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-04-13,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Assigned to Labor,2021-05-11,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-06,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-05-06,[],IL,102nd +Placed on Calendar Order of First Reading,2022-04-01,['reading-1'],IL,102nd +Do Pass as Amended Local Government; 008-000-000,2021-05-19,['committee-passage'],IL,102nd +Re-referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-28,[],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-28,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-27,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +Waive Posting Notice,2021-05-29,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-03-09,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-05-04,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Chief House Sponsor Rep. Joyce Mason,2021-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2022-03-08,[],IL,102nd +Assigned to Executive Committee,2021-05-19,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Governor Approved,2021-08-03,['executive-signature'],IL,102nd +Do Pass Executive; 015-000-000,2021-05-27,['committee-passage'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +House Floor Amendment No. 2 State Debt Impact Note Filed as Amended,2022-03-03,[],IL,102nd +Third Reading - Passed; 056-001-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Do Pass Local Government; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2021-05-29,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-21,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Celina Villanueva,2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-14,[],IL,102nd +Third Reading - Consent Calendar - Passed 110-001-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jason Plummer,2021-05-14,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2022-11-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-12-02,[],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2022-11-16,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-03,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-24,['reading-3'],IL,102nd +Third Reading - Short Debate - Passed 093-006-005,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-12-13,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-02-10,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Assigned to Environment and Conservation,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-09-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +To Subcommittee on Public Health,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-05-19,[],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2022-03-10,[],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2022-03-07,[],IL,102nd +Second Reading,2022-11-16,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-04-14,[],IL,102nd +To Natural Gas Subcommittee,2022-02-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-14,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-07,[],IL,102nd +Postponed - Judiciary,2021-05-25,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2023-01-04,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-12,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-18,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2022-04-08,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2021-09-03,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-01,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-01-04,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-12,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-08,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mark Batinick,2021-05-05,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-11,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-08-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2022-11-29,[],IL,102nd +Assigned to Housing Committee,2021-05-04,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-04-28,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-09,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2022-04-06,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-04-01,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 014-000-000,2022-03-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-11,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2022-03-29,['amendment-introduction'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Education,2022-02-22,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michael Halpin,2021-04-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jackie Haas,2022-03-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2022-02-23,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Martin J. Moylan,2021-10-28,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-04-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-11,[],IL,102nd +Assigned to Healthcare Access and Availability,2022-03-16,['referral-committee'],IL,102nd +Do Pass as Amended Healthcare Access and Availability; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Murphy,2022-03-09,['amendment-passage'],IL,102nd +Third Reading - Passed; 047-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2022-02-28,[],IL,102nd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2022-02-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 4, 2022",2022-04-01,[],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2022-03-04,[],IL,102nd +Assigned to Licensed Activities,2022-03-16,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-01,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2022-03-08,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2022-03-04,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Education,2022-03-16,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +First Reading,2022-03-17,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Terri Bryant,2022-03-18,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-10-20,['amendment-passage'],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Withdrawn by Rep. Natalie A. Manley,2022-03-01,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Laura Fine,2022-02-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-02,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 27, 2021",2021-05-26,[],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-05,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-03,[],IL,102nd +Chief Sponsor Changed to Sen. John Connor,2022-01-11,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2022-12-01,[],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-04-01,[],IL,102nd +Third Reading - Short Debate - Passed 077-030-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-04-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Energy and Public Utilities,2022-03-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Eva-Dina Delgado,2021-04-28,[],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 006-002-000,2022-03-17,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-25,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Villivalam,2022-02-25,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 7, 2022",2022-04-06,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2022-03-31,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-17,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-02-24,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Frances Ann Hurley,2021-04-29,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Greg Harris,2021-05-18,[],IL,102nd +Third Reading - Passed; 050-004-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-10-18,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-29,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-03-02,[],IL,102nd +Chief Co-Sponsor Changed to Rep. Eva-Dina Delgado,2022-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-21,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-05-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-03-02,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Transportation,2022-03-02,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +House Floor Amendment No. 1 Fiscal Note Filed as Amended,2022-03-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2022-02-25,[],IL,102nd +Chief House Sponsor Rep. Theresa Mah,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. David Koehler,2022-02-18,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2022-02-16,[],IL,102nd +Chief House Sponsor Rep. Terra Costa Howard,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-22,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-02-24,[],IL,102nd +First Reading,2022-03-10,['reading-1'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-03-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Thaddeus Jones,2021-04-14,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Assigned to Labor,2021-04-28,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dan Brady,2022-03-31,[],IL,102nd +Assigned to Appropriations,2022-02-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-05,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-29,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-05,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-02-18,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2021-04-30,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-04-29,[],IL,102nd +Chief House Sponsor Rep. Michael Halpin,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading November 30, 2022",2022-11-29,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-17,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-05-12,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-01-18,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Daniel Swanson,2022-02-24,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-12-13,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-02-17,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-01-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2022-03-24,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-15,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-17,[],IL,102nd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-20,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Darren Bailey,2022-02-23,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2022-02-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-13,['amendment-passage'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-03,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2022-03-04,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Revenue,2022-03-09,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Third Reading - Passed; 051-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-03-08,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-02,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-02,[],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-02,[],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-03-16,['amendment-introduction'],IL,102nd +Reported Back To Executive; 003-000-000,2021-05-26,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-01-04,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Referred to Assignments,2022-03-22,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-23,[],IL,102nd +Do Pass Local Government; 008-000-000,2021-05-19,['committee-passage'],IL,102nd +Resolution Adopted,2022-04-05,['passage'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-20,[],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 018-000-000,2021-05-20,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-27,[],IL,102nd +Do Pass Insurance; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 028-000-000,2021-05-12,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2022-03-03,[],IL,102nd +Assigned to Executive Committee,2022-03-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 4, 2021",2021-04-29,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kathleen Willis,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-03-22,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-28,[],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-19,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-04-04,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-17,[],IL,102nd +Reported Back To Revenue & Finance Committee;,2022-02-17,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2022-03-22,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Do Pass Local Government; 009-000-000,2021-05-25,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 15, 2021",2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-04,[],IL,102nd +Assigned to Executive Committee,2021-05-05,['referral-committee'],IL,102nd +Assigned to Judiciary - Civil Committee,2021-05-04,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Steve Stadelman,2021-04-19,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mike Murphy,2021-03-24,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2021-04-21,[],IL,102nd +Chief House Sponsor Rep. Aaron M. Ortiz,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dave Severin,2021-04-23,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Adam Niemerg,2021-05-12,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Assigned to Energy & Environment Committee,2021-04-28,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2021-05-20,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-12,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Energy and Public Utilities; 015-000-000,2021-05-06,[],IL,102nd +House Committee Amendment No. 1 Adopted in Prescription Drug Affordability & Accessibility Committee; by Voice Vote,2022-02-09,['amendment-passage'],IL,102nd +Arrived in House,2022-03-10,['introduction'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Ryan Spain,2021-05-14,['amendment-introduction'],IL,102nd +Co-Sponsor Rep. Norine K. Hammond,2021-02-08,[],IL,102nd +Assigned to Labor,2021-05-10,['referral-committee'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2022-03-17,['committee-passage'],IL,102nd +Do Pass Judiciary; 009-000-000,2021-05-12,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Ann Gillespie,2021-04-19,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +House Floor Amendment No. 1 State Mandates Fiscal Note Request as Amended is Inapplicable,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Hastings,2021-05-06,['amendment-passage'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 30, 2021",2021-05-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-16,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 31, 2021",2021-05-30,[],IL,102nd +Do Pass Environment and Conservation; 009-000-000,2021-05-20,['committee-passage'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-19,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Jonathan Carroll,2022-02-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2021-05-13,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-19,[],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2021-05-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Do Pass / Consent Calendar Revenue & Finance Committee; 018-000-000,2021-05-13,['committee-passage'],IL,102nd +Do Pass Education; 011-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-03-03,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 005-003-000,2021-05-06,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2021-05-13,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-04-22,[],IL,102nd +Do Pass / Consent Calendar Energy & Environment Committee; 022-000-000,2021-05-11,['committee-passage'],IL,102nd +Recalled to Second Reading,2021-04-23,['reading-2'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-21,['amendment-passage'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2022-02-10,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-12,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert F. Martwick,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2022-02-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-23,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-04-29,[],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Energy & Environment Committee; 024-000-000,2021-05-11,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2021-05-12,['committee-passage'],IL,102nd +Motion Filed to Suspend Rule 21 Human Services Committee; Rep. Elizabeth Hernandez,2023-01-10,[],IL,102nd +Do Pass as Amended State Government; 009-000-000,2021-05-06,['committee-passage'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-16,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2021-05-04,[],IL,102nd +Do Pass / Short Debate Higher Education Committee; 006-004-000,2021-05-12,['committee-passage'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-11,['amendment-passage'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2021-05-11,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Remains in Judiciary - Criminal Committee,2021-05-13,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-16,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Assigned to Licensed Activities,2021-05-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-23,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 007-000-000,2021-05-06,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Chief Senate Sponsor Sen. Omar Aquino,2021-04-23,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jehan Gordon-Booth,2021-05-18,[],IL,102nd +Do Pass Pensions; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2023-01-10,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-26,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +"Chief House Sponsor Rep. Maurice A. West, II",2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-15,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-02-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-14,[],IL,102nd +Assigned to Revenue,2021-04-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-12,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2022-03-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Chief Senate Sponsor Sen. Celina Villanueva,2021-04-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2021-05-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2021-05-06,[],IL,102nd +Referred to Assignments,2021-05-05,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 108-006-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-04,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Belt,2021-04-29,['amendment-passage'],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 010-005-000,2021-05-12,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-19,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-03-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Moved to Suspend Rule 21 Rep. Jaime M. Andrade, Jr.",2021-05-27,[],IL,102nd +Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 30, 2021",2021-05-29,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Licensed Activities,2021-04-14,[],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-05-26,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-05-18,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Public Safety Committee,2022-03-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-04-22,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-24,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 5, 2021",2021-05-04,[],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt Revenue; 009-000-000,2021-05-06,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading November 29, 2022",2022-11-16,[],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2021-04-23,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading November 29, 2022",2022-11-16,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Assigned to Human Services Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 097-000-001,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-03-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Do Pass Transportation; 017-000-000,2022-03-23,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-05,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2022",2022-03-09,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-15,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Insurance Committee; 015-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Chief House Sponsor Rep. Greg Harris,2021-04-30,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2021-05-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2023-01-06,[],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Filed as Amended,2022-03-02,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-04-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-05-09,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Higher Education Committee; 009-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-05-11,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-11-16,[],IL,102nd +Remove Chief Co-Sponsor Rep. Robyn Gabel,2021-02-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2021-05-05,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2021-05-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-09-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-25,[],IL,102nd +Do Pass Licensed Activities; 006-000-000,2022-03-30,['committee-passage'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-18,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-30,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-03-22,[],IL,102nd +Re-assigned to Revenue,2022-01-05,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-01-27,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Antonio Muñoz,2021-04-27,[],IL,102nd +Second Reading,2021-08-31,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Recalled to Second Reading,2022-11-16,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2022-03-31,[],IL,102nd +Chief House Sponsor Rep. Amy Elik,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-01-31,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Education; 012-000-000,2022-03-09,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-04-04,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Theresa Mah,2022-02-24,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2022-04-04,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-05-03,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-15,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Thomas Cullerton,2021-04-21,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-05-11,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-03-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-03-25,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Villa,2021-04-29,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Mary E. Flowers,2021-10-26,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Anthony DeLuca,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-31,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-24,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Mattie Hunter,2021-05-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-16,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2022-03-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Public Utilities Committee; 025-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 009-005-000,2021-04-29,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2023-01-10,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Public Act . . . . . . . . . 102-0878,2022-05-13,['became-law'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-03,[],IL,102nd +Alternate Chief Co-Sponsor Changed to Sen. Rachelle Crowe,2022-04-04,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Availability & Accessibility Committee; 010-003-000,2021-04-22,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2022-04-06,[],IL,102nd +Do Pass Transportation; 017-000-000,2022-03-23,['committee-passage'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Third Reading - Passed; 048-000-000,2022-03-09,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Adopted,2022-04-08,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-02-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2022-03-29,[],IL,102nd +Removed Co-Sponsor Rep. Ryan Spain,2021-03-17,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2022-03-16,['committee-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-03-28,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Re-assigned to Executive Committee,2021-05-13,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-02-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 30, 2021",2021-05-26,[],IL,102nd +Assigned to Labor,2021-05-10,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Seth Lewis,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Andrew S. Chesney,2021-04-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-10,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Appropriations-Human Services Committee; 014-006-000,2022-03-17,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-09,[],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2022-03-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-04-19,[],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2021-08-31,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-03-01,[],IL,102nd +Postponed - Criminal Law,2021-05-19,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Counties & Townships Committee,2021-04-14,[],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-09-14,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-23,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2021-10-27,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-02-18,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-04-14,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-05-05,[],IL,102nd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2022-03-04,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-03-25,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2021-04-28,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-04-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Will Guzzardi,2021-04-19,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Behavioral and Mental Health,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-02-03,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-18,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 7, 2022",2022-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2021-04-13,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-02,[],IL,102nd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Re-assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-03-24,[],IL,102nd +Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-02-23,[],IL,102nd +Do Pass Education; 011-001-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-15,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. David Friess,2021-04-21,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-02-10,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Removed Co-Sponsor Rep. Sonya M. Harper,2021-04-13,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2022-03-29,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2021-05-24,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-06,[],IL,102nd +Removed Co-Sponsor Rep. Jackie Haas,2021-03-26,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Frances Ann Hurley,2022-11-30,['amendment-introduction'],IL,102nd +Second Reading,2022-11-15,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Will Guzzardi,2022-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Approved for Consideration Assignments,2022-11-15,[],IL,102nd +Assigned to Local Government,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2022-03-18,[],IL,102nd +"Effective Date May 6, 2022",2022-05-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-14,[],IL,102nd +Removed from Consent Calendar Status Rep. Stephanie A. Kifowit,2021-05-17,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 7, 2022",2022-04-06,[],IL,102nd +Second Reading,2021-05-18,['reading-2'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-04-23,[],IL,102nd +Assigned to Counties & Townships Committee,2021-04-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Holmes,2022-02-24,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-06-01,[],IL,102nd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Christopher Belt,2021-05-11,['amendment-introduction'],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-04-22,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-05-07,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +"Effective Date May 6, 2022",2022-05-06,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-03,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Do Pass / Consent Calendar Adoption & Child Welfare Committee; 008-000-000,2021-05-11,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-05-14,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2021-04-19,[],IL,102nd +Do Pass Executive; 014-000-000,2021-03-24,['committee-passage'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 011-007-000,2021-05-26,['committee-passage-favorable'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Assigned to State Government Administration Committee,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-10-20,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-23,[],IL,102nd +Do Pass Pensions; 007-001-000,2022-03-30,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 010-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2022-03-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2022-04-01,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-04-22,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-02-10,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2022-03-04,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-15,[],IL,102nd +Public Act . . . . . . . . . 102-0883,2022-05-13,['became-law'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 5, 2021",2021-05-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-15,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0750,2022-05-06,['became-law'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-11,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Criminal Committee; 018-000-000,2021-05-11,['committee-passage'],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions April 6, 2022",2022-04-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-10-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-02-08,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2021-05-20,['amendment-introduction'],IL,102nd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 019-000-000,2022-02-15,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-07,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-10,[],IL,102nd +Assigned to Licensed Activities,2021-04-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-02-25,['amendment-failure'],IL,102nd +Assigned to Labor,2021-04-28,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Judicial Note Requested as Amended by Rep. Randy E. Frese,2022-04-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-02-22,[],IL,102nd +Third Reading - Passed; 035-015-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-21,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Remove Chief Co-Sponsor Rep. Tim Butler,2021-04-15,[],IL,102nd +Assigned to Judiciary,2022-03-02,['referral-committee'],IL,102nd +First Reading,2022-02-17,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Third Reading - Short Debate - Passed 092-024-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Michael E. Hastings,2021-04-19,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Availability & Accessibility Committee; 012-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-05-06,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Murphy,2021-04-22,['amendment-passage'],IL,102nd +Do Pass State Government; 009-000-000,2022-04-05,['committee-passage'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Do Pass as Amended / Short Debate Human Services Committee; 009-006-000,2021-03-09,['committee-passage'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Assigned to Financial Institutions,2021-05-04,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Executive Committee; 014-000-000,2021-05-12,['committee-passage'],IL,102nd +Assigned to Insurance,2022-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 017-000-000,2022-04-01,['committee-passage-favorable'],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 007-000-000,2021-05-11,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-22,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Chief House Sponsor Rep. Will Guzzardi,2021-04-22,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Do Pass Licensed Activities; 007-000-000,2021-05-06,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2021-05-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Delia C. Ramirez,2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2022-03-21,[],IL,102nd +House Committee Amendment No. 1 Adopted in Immigration & Human Rights Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 26, 2021",2021-05-25,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2021-05-05,[],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 006-002-000,2021-05-13,['committee-passage'],IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-05-18,[],IL,102nd +Third Reading - Short Debate - Passed 114-001-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-04-28,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2022-03-24,['amendment-introduction'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Do Pass Agriculture; 011-000-000,2022-03-24,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 006-003-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-11,[],IL,102nd +Public Act . . . . . . . . . 102-0748,2022-05-06,['became-law'],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-17,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-07-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 007-000-000,2021-05-11,['committee-passage'],IL,102nd +Chief House Sponsor Rep. Daniel Didech,2021-04-26,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-28,[],IL,102nd +Do Pass Pensions; 006-000-000,2021-05-19,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-0744,2022-05-06,['became-law'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-19,[],IL,102nd +Resolution Adopted,2021-05-12,['passage'],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Sponsor Removed Sen. Craig Wilcox,2021-05-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-28,[],IL,102nd +Third Reading - Passed; 048-006-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Assigned to Health,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-11,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-03,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-06,[],IL,102nd +Arrived in House,2021-10-28,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2021-05-26,[],IL,102nd +Assigned to Human Rights,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-17,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-04-15,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-05,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Assigned to Transportation,2021-05-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Lightford,2021-04-28,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Fiscal Note Filed as Amended,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-05-21,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-05,[],IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-07,['referral-committee'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +House Floor Amendment No. 1 State Mandates Fiscal Note Request as Amended is Inapplicable,2022-03-04,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +To Executive- Government Operations,2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-05-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Joe Sosnowski,2022-02-25,[],IL,102nd +First Reading,2022-12-01,['reading-1'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2021-04-22,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-03-23,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Do Pass Executive; 013-000-000,2021-05-27,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-05-04,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-20,[],IL,102nd +Assigned to Licensed Activities,2021-05-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-05-12,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Passed; 052-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Criminal Committee; 018-000-000,2021-05-11,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-22,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 27, 2021",2021-05-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Assigned to Higher Education Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-26,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-07-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Rachelle Crowe,2022-03-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-10-20,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Assigned to Pensions,2021-05-11,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-05-12,['committee-passage'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-04-21,[],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-05-13,['committee-passage'],IL,102nd +Assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 017-008-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2021",2021-03-09,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-04-06,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-05,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-06,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Revenue & Finance Committee; 017-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-02-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-04-12,[],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 018-000-000,2021-05-20,['committee-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2021-03-10,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Third Reading - Passed; 054-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-05-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. John C. D'Amico,2021-05-04,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Chris Bos,2021-05-12,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Chief House Sponsor Rep. Kambium Buckner,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-20,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-20,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-03-29,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Environment and Conservation; 007-003-000,2022-02-24,[],IL,102nd +Do Pass Human Rights; 007-000-000,2021-05-20,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-04-21,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-14,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 036-017-000,2021-04-28,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 016-001-002,2022-04-05,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Ethics & Elections Committee,2021-05-11,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Fiscal Note Filed,2021-04-20,[],IL,102nd +Third Reading - Short Debate - Passed 069-035-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Do Pass Licensed Activities; 009-000-000,2021-05-13,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-05-07,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-02-17,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-05-21,[],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 007-001-000,2021-05-06,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-03-31,[],IL,102nd +Assigned to Appropriations-General Services Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-03-11,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-03,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-03-03,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-16,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-14,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Do Pass Pensions; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2021-05-14,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-02-24,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-23,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2021-04-15,[],IL,102nd +Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-24,[],IL,102nd +Placed on Calendar - Consideration Postponed,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-04-08,[],IL,102nd +Chief House Sponsor Rep. Jim Durkin,2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-07,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-07-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading November 16, 2022",2022-11-15,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tim Butler,2021-05-14,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-001-000,2021-03-18,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-26,[],IL,102nd +"Chief House Sponsor Rep. Lawrence Walsh, Jr.",2022-02-25,[],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2022-11-30,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-26,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 106-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-07,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading,2022-11-15,[],IL,102nd +Do Pass Local Government; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 017-000-000,2022-03-17,['committee-passage'],IL,102nd +Assigned to Health,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-02-15,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-05-05,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2022-01-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Randy E. Frese,2021-04-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-08-31,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-05-11,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Third Reading - Short Debate - Passed 106-001-000,2022-03-01,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 036-015-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-04-28,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-21,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Approved for Consideration Assignments,2021-05-10,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2021-05-11,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jonathan Carroll,2022-03-09,['amendment-introduction'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Villivalam,2022-11-16,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2022-04-05,[],IL,102nd +Assigned to Health,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-22,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 3 Assignments Refers to Executive,2022-02-24,[],IL,102nd +Removed from Short Debate Status,2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Ann Gillespie,2022-03-09,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-29,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Arrive in Senate,2022-03-30,['introduction'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-03-03,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-03-24,[],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2021-03-15,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2022-04-05,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. La Shawn K. Ford,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-03-18,[],IL,102nd +Arrived in House,2022-03-09,['introduction'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-05-03,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Daniel Didech,2022-03-31,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Scott M. Bennett,2022-04-04,[],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Recalled to Second Reading,2022-04-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-25,[],IL,102nd +Remove Chief Co-Sponsor Rep. Kambium Buckner,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-05-05,[],IL,102nd +Recalled to Second Reading,2022-03-09,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-03,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-15,['amendment-passage'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-01-31,[],IL,102nd +Third Reading - Short Debate - Passed 110-003-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-03-22,[],IL,102nd +First Reading,2022-02-18,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-03-10,[],IL,102nd +Third Reading - Short Debate - Passed 086-027-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 076-037-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Delia C. Ramirez,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-04-06,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0864,2022-05-13,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-07,[],IL,102nd +Assigned to Health Care Availability & Accessibility Committee,2021-10-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-18,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Adriane Johnson,2022-04-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-04-15,[],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +Assigned to Pensions,2022-03-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-31,[],IL,102nd +Third Reading - Short Debate - Passed 102-000-001,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Joe Sosnowski,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-03-24,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Arrive in Senate,2022-02-23,['introduction'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Postponed - Insurance,2021-05-27,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Thomas Cullerton,2021-04-27,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-03-26,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-18,[],IL,102nd +Do Pass Executive; 011-005-000,2021-04-15,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2021-04-28,[],IL,102nd +Removed Co-Sponsor Rep. Norine K. Hammond,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Arrived in House,2022-02-23,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-09-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-05-13,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Linda Holmes,2022-03-04,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Suspend Rule 21 - Prevailed,2021-10-27,[],IL,102nd +Recalled to Second Reading,2021-08-31,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-03-09,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. John Connor,2021-04-22,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-17,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-05-11,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted - Lost Energy & Environment Committee; 014-009-000,2022-02-23,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-02,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-07,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-28,[],IL,102nd +To Unemployment Insurance,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-02-10,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-05-05,[],IL,102nd +Re-assigned to Executive,2022-01-05,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-03,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0743,2022-05-06,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-12,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2022-03-07,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Mike Murphy,2021-05-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-20,[],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2022-03-18,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-22,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Karina Villa,2021-05-13,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Do Pass Financial Institutions; 007-000-000,2021-05-13,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-26,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 017-000-000,2022-03-17,['committee-passage'],IL,102nd +House Floor Amendment No. 1 State Debt Impact Note Requested as Amended by Rep. Randy E. Frese,2022-04-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 24, 2021",2021-03-24,[],IL,102nd +Do Pass as Amended / Consent Calendar Immigration & Human Rights Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2022-04-03,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-14,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +Do Pass Executive; 016-000-000,2021-05-13,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 108-003-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-25,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2021-04-23,[],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2022",2022-03-24,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Pensions; 006-002-000,2021-05-26,[],IL,102nd +Chief Senate Sponsor Sen. Michael E. Hastings,2021-04-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 19, 2021",2021-05-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Darren Bailey,2022-03-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-18,['reading-2'],IL,102nd +Do Pass / Short Debate Counties & Townships Committee; 010-001-000,2021-05-06,['committee-passage'],IL,102nd +Do Pass / Short Debate Immigration & Human Rights Committee; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-04-16,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Diane Pappas,2022-04-09,[],IL,102nd +Assigned to Executive Committee,2021-10-14,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-30,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Approved for Consideration Assignments,2022-01-05,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Correctional Note Requested by Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2021-04-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-02-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Do Pass Insurance; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-07-21,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Aaron M. Ortiz,2021-05-14,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +Resolution Adopted,2021-10-20,['passage'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Rita Mayfield,2021-05-11,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2021-04-30,['amendment-introduction'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2021-05-11,[],IL,102nd +Third Reading - Passed; 047-005-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-20,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Lindsey LaPointe,2021-05-06,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-05-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2021-05-06,['amendment-introduction'],IL,102nd +Assigned to State Government,2022-03-28,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-01,[],IL,102nd +Assigned to Insurance Committee,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Passed; 036-015-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-23,[],IL,102nd +Assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +"Chief House Sponsor Rep. Lawrence Walsh, Jr.",2022-02-25,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +3/5 Vote Required,2022-04-06,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Recalled to Second Reading - Short Debate,2022-04-05,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Fiscal Note Requested by Rep. Lakesia Collins,2022-02-22,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-24,['referral-committee'],IL,102nd +Second Reading,2022-03-31,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-14,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-22,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0742,2022-05-06,['became-law'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-11,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +"Effective Date May 6, 2022",2022-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-28,[],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Pensions,2021-05-29,[],IL,102nd +Third Reading - Passed; 047-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-21,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Assigned to Education,2021-05-11,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Debbie Meyers-Martin,2022-02-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-21,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-20,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Assigned to Commerce,2022-03-16,['referral-committee'],IL,102nd +"Effective Date May 6, 2022",2022-05-06,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2022-03-04,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Personnel & Pensions Committee; 007-000-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2021-05-26,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-02-23,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-03-22,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-15,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-01,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2022-04-01,[],IL,102nd +Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-05-17,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-02-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-04-20,[],IL,102nd +Arrived in House,2021-05-12,['introduction'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 079-036-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Assigned to Financial Institutions,2022-03-16,['referral-committee'],IL,102nd +Assigned to Healthcare Access and Availability,2022-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-02-16,[],IL,102nd +Approved for Consideration Assignments,2021-05-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-04-08,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-12,[],IL,102nd +Third Reading - Short Debate - Passed 102-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-02-10,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-03-10,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Assigned to Energy & Environment Committee,2022-01-25,['referral-committee'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Jason A. Barickman,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-09-22,[],IL,102nd +Do Pass Licensed Activities; 006-000-000,2022-03-30,['committee-passage'],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 015-000-000,2022-03-09,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading November 29, 2022",2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-03-23,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-05-19,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-12-09,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-23,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-11-07,[],IL,102nd +Added as Chief Co-Sponsor Sen. Terry Hall,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-01-04,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Revenue; 010-000-000,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2022-03-18,['amendment-introduction'],IL,102nd +Sponsor Removed Sen. Antonio Muñoz,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-08-09,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-10,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Neil Anderson,2021-04-22,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-29,[],IL,102nd +Arrive in Senate,2022-04-07,['introduction'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Eric Mattson,2023-01-09,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2021-05-13,[],IL,102nd +Chief House Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Emanuel Chris Welch,2021-10-18,['amendment-introduction'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0509,2021-08-20,['became-law'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jeff Keicher,2021-05-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-23,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2021-05-25,['committee-passage'],IL,102nd +Do Pass Commerce; 008-000-000,2021-05-20,['committee-passage'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Chief Senate Sponsor Sen. Dan McConchie,2021-05-04,[],IL,102nd +Assigned to Agriculture,2021-05-10,['referral-committee'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Second Reading,2022-12-01,['reading-2'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-26,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-22,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Assigned to Licensed Activities,2022-03-16,['referral-committee'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Withdrawn by Rep. Katie Stuart,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-02-24,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Revenue & Finance Committee,2021-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Swanson,2022-03-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-06-15,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-03-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Third Reading - Short Debate - Passed 093-000-007,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-02,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2022-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Do Pass Executive; 014-002-000,2023-01-05,['committee-passage'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-03-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-28,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-17,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-04,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-04-01,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-07,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-12-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2022-03-18,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading November 29, 2022",2022-11-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-25,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Kambium Buckner,2022-03-10,[],IL,102nd +To Income Tax Subcommittee,2021-03-18,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-31,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-03-07,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Michael E. Hastings,2022-03-09,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Tom Weber,2021-04-22,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-03-07,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Terri Bryant,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-12-07,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2022-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-04-22,[],IL,102nd +Removed from Short Debate Status,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +"Chief House Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. John F. Curran,2022-04-01,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-17,['referral-committee'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2021-03-25,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-30,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As December 1, 2021",2021-10-13,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-12,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-04,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-14,[],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Moved to Suspend Rule 21 Rep. Jay Hoffman,2022-04-05,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-10-26,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2021-05-26,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Assigned to Energy & Environment Committee,2022-03-07,['referral-committee'],IL,102nd +"Alternate Chief Sponsor Changed to Rep. Edgar Gonzalez, Jr.",2022-03-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +Passed Both Houses,2022-04-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Ann M. Williams,2022-03-30,[],IL,102nd +Added Chief Co-Sponsor Rep. David A. Welter,2021-03-15,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-17,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Energy and Public Utilities; 017-000-000,2022-03-24,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Approved for Consideration Assignments,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-02-22,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 007-000-000,2022-03-29,[],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-03,[],IL,102nd +Chief House Sponsor Rep. Martin J. Moylan,2021-04-22,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-03-18,[],IL,102nd +Sent to the Governor,2022-04-19,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-10-28,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2022-02-25,[],IL,102nd +Public Act . . . . . . . . . 102-1005,2022-05-27,['became-law'],IL,102nd +Do Pass / Short Debate Mental Health & Addiction Committee; 016-000-000,2022-03-24,['committee-passage'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 007-000-000,2021-04-29,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-04-07,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-04-04,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-26,[],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Do Pass Health; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-06-16,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-29,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Higher Education Committee,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Belt,2021-04-29,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 7 Filed with Secretary by Sen. Linda Holmes,2022-04-01,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2022-02-25,[],IL,102nd +Assigned to Consumer Protection Committee,2022-03-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Waive Posting Notice,2023-01-04,[],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +House Floor Amendment No. 4 Adopted,2022-03-02,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2022-03-23,[],IL,102nd +Do Pass / Consent Calendar Financial Institutions Committee; 009-000-000,2021-03-23,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 009-005-000,2022-03-03,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Randy E. Frese,2022-03-31,['amendment-introduction'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading November 29, 2022",2022-11-16,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-09,[],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Criminal Law; 007-000-000,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-16,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-10-27,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Adopted,2022-02-24,['amendment-passage'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-03,[],IL,102nd +Assigned to Personnel & Pensions Committee,2022-04-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2023-01-05,['referral-committee'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Assigned to Higher Education,2022-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-001-000,2021-05-24,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-02-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-01-18,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Third Reading - Short Debate - Passed 063-043-001,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2022-03-16,[],IL,102nd +Assigned to Personnel & Pensions Committee,2022-03-09,['referral-committee'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 4, 2022",2022-04-01,[],IL,102nd +Assigned to Energy and Public Utilities,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2022-02-15,['committee-passage-favorable'],IL,102nd +Assigned to Criminal Law,2021-05-10,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-05-25,[],IL,102nd +Assigned to Pensions,2021-05-04,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Assigned to Pensions,2022-03-16,['referral-committee'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-05-04,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Assigned to Immigration & Human Rights Committee,2022-03-07,['referral-committee'],IL,102nd +Arrived in House,2022-02-16,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-05-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2021-06-01,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-03-03,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +"Effective Date January 1, 2022",2021-08-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Recalled to Second Reading,2021-04-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-20,[],IL,102nd +"Alternate Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-04-23,[],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +Assigned to Labor & Commerce Committee,2021-05-05,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Third Reading - Consent Calendar - Passed 109-003-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Adopted; Peters,2021-04-29,['amendment-passage'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-03,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-29,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-05-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-09,[],IL,102nd +Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-06,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-04-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Do Pass / Consent Calendar Consumer Protection Committee; 006-000-000,2021-05-11,['committee-passage'],IL,102nd +Assigned to Health,2021-04-28,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-04,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-16,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Do Pass Education; 011-000-000,2021-05-12,['committee-passage'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-05-06,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2021-05-05,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Energy & Environment Committee,2021-04-14,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2021-04-08,[],IL,102nd +Assigned to Criminal Law,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Do Pass as Amended Environment and Conservation; 009-000-000,2021-05-06,['committee-passage'],IL,102nd +Chief House Sponsor Rep. Elizabeth Hernandez,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-04-22,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-19,[],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Third Reading - Passed; 043-011-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 015-000-001,2021-05-13,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +House Floor Amendment No. 3 State Debt Impact Note Filed as Amended,2022-03-03,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Committee Deadline Established As May 31, 2021",2021-05-29,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-28,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Assigned to Labor,2022-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-03-04,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2021-05-19,['amendment-introduction'],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-05-05,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Cristina Castro,2021-05-11,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0378,2021-08-13,['became-law'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-19,[],IL,102nd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-22,[],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 019-000-000,2021-05-11,['committee-passage'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-02-23,[],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2021-05-14,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-26,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michael Halpin,2021-05-06,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 015-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-23,['committee-passage-favorable'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-01,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +Do Pass as Amended Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2021-05-11,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Third Reading - Short Debate - Passed 097-019-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-21,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-17,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-05-06,['reading-2'],IL,102nd +Resolution Adopted; 054-000-000,2021-06-01,['passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Arrived in House,2021-05-05,['introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-05,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jonathan Carroll,2021-05-11,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Judiciary - Civil Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-23,[],IL,102nd +Do Pass Insurance; 011-000-000,2021-05-13,['committee-passage'],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Do Pass Labor; 012-005-000,2021-05-12,['committee-passage'],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2022-03-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2022-03-09,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Sent to the Governor,2022-04-19,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-08,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 011-000-000,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2021-05-28,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-03-09,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-10-20,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-04,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-26,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Robert Rita,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Third Reading - Passed; 051-000-000,2021-05-05,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-15,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2021-05-19,[],IL,102nd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Delia C. Ramirez,2021-03-22,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2021-05-03,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-05-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Revenue; 010-000-000,2022-02-23,[],IL,102nd +Removed Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Revenue & Finance Committee; 014-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-05-11,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-15,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2023-01-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-02,[],IL,102nd +Recalled to Second Reading,2021-05-06,['reading-2'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-22,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-05-03,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-02-24,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2022-03-02,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-13,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-04-22,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Do Pass Executive; 017-000-000,2021-05-06,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Will Guzzardi,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-09,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-03-29,[],IL,102nd +Do Pass as Amended / Consent Calendar Labor & Commerce Committee; 028-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-03-10,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-09-21,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-16,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-06,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-24,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Adopted Both Houses,2022-04-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-21,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2021-04-28,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Do Pass as Amended Licensed Activities; 006-000-000,2021-10-20,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-22,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Remove Chief Co-Sponsor Rep. Lakesia Collins,2021-04-23,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2022-03-18,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-03,[],IL,102nd +Assigned to Executive,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-20,[],IL,102nd +Waive Posting Notice,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Glowiak-Hilton,2022-02-24,['amendment-passage'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +First Reading,2022-12-01,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lance Yednock,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-10-18,[],IL,102nd +To Executive- Government Operations,2021-05-13,[],IL,102nd +Third Reading - Short Debate - Passed 107-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +First Reading,2022-04-01,['reading-1'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2021-04-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Anthony DeLuca,2022-03-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jason Plummer,2022-02-23,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2022-03-21,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-24,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +First Reading,2022-03-10,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Seth Lewis,2021-10-28,[],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Chief House Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-02-24,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Labor & Commerce Committee,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2022-04-06,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-03-03,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-03-18,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 015-000-000,2022-04-01,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2022-03-17,['amendment-introduction'],IL,102nd +Second Reading,2021-05-28,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Re-Referred to Executive Committee,2022-11-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2022-03-31,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-22,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Antonio Muñoz,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Energy and Public Utilities; 016-000-000,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2022-03-22,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-03-02,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-28,[],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-05-26,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-31,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass as Amended Licensed Activities; 009-000-000,2022-02-10,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2022-03-17,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2021-04-23,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-03,[],IL,102nd +Sponsor Removed Sen. Craig Wilcox,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt Transportation; 014-000-000,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-05-13,[],IL,102nd +Assigned to Higher Education Committee,2022-03-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2022-03-04,[],IL,102nd +To Appropriations- Health,2022-02-01,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-01,[],IL,102nd +Third Reading - Short Debate - Passed 072-017-006,2022-04-09,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0835,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-04-05,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-04-04,[],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-05-07,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-23,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dan Brady,2022-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-02-22,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Sara Feigenholtz,2021-05-04,[],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - April 4, 2022",2022-04-01,[],IL,102nd +Referred to Assignments,2022-03-17,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-25,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-002-000,2021-03-18,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Omar Aquino,2022-04-06,['amendment-introduction'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Referred to Rules Committee,2022-03-10,['referral-committee'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-03-09,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +"Chief Co-Sponsor Changed to Rep. Maurice A. West, II",2022-02-16,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Human Services Committee; 014-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-14,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-13,[],IL,102nd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2021-04-19,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-13,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-04-09,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-18,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-03,[],IL,102nd +Recalled to Second Reading,2022-03-09,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Resolution Adopted,2022-04-04,['passage'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2022-03-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-01-19,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-05-19,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Nicholas K. Smith,2022-02-28,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jacqueline Y. Collins,2022-04-05,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Judiciary - Criminal Committee,2021-04-21,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-04-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jackie Haas,2022-03-24,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-23,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-04,[],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-24,[],IL,102nd +To Medicaid & Managed Care Subcommittee,2021-03-19,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-13,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Energy and Public Utilities,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-31,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-22,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-10-27,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-25,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-06-15,[],IL,102nd +Chief Senate Sponsor Sen. Omar Aquino,2021-04-21,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-16,[],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-01-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-25,['reading-3'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-12-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-03-03,[],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Third Reading - Standard Debate - Passed 114-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-03-03,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2022-02-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Thomas Cullerton,2021-04-23,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Labor & Commerce Committee,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-02,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-01-04,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-03-15,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-02-18,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Higher Education Committee,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-03,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-05-12,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-04-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-17,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-03-07,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0767,2022-05-13,['became-law'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-02-05,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Licensed Activities; 007-000-000,2021-05-06,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Second Reading,2021-05-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2021-05-19,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2022-03-03,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-04-09,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-05,[],IL,102nd +Recalled to Second Reading,2021-05-12,['reading-2'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +To Executive- Elections,2021-05-13,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Johnson,2021-04-23,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Assigned to Higher Education Committee,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 015-000-000,2021-05-18,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Peters,2021-04-21,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2021-05-14,['amendment-introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-18,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Motion Prevailed to Suspend Rule by Voice Vote,2023-01-10,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Suspend Rule 21 - Prevailed 070-045-000,2021-05-27,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Co-Sponsor Rep. Nicholas K. Smith,2021-02-08,[],IL,102nd +Assigned to State Government,2021-05-11,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2021-05-26,[],IL,102nd +Chief House Sponsor Rep. Greg Harris,2022-03-10,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-06,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-05-11,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2021-05-06,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 019-000-000,2021-05-12,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2021-04-30,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +Senate Committee Amendment No. 3 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Bob Morgan,2021-05-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2022-03-22,['amendment-introduction'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Effective Date July 1, 2021",2021-06-25,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dan Caulkins,2021-05-04,[],IL,102nd +Third Reading - Passed; 042-011-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-28,[],IL,102nd +Do Pass as Amended / Short Debate Prescription Drug Affordability & Accessibility Committee; 015-002-000,2022-02-09,['committee-passage'],IL,102nd +Chief House Sponsor Rep. Michael Halpin,2021-04-30,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Second Reading,2021-05-19,['reading-2'],IL,102nd +Assigned to Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-05-06,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-03-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2021-05-19,[],IL,102nd +Assigned to Personnel & Pensions Committee,2021-04-28,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2022-03-07,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-22,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-05-10,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Chief House Sponsor Rep. Kelly M. Burke,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2022-03-09,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-21,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 009-000-000,2021-05-19,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2022-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Do Pass / Consent Calendar Police & Fire Committee; 013-000-000,2021-05-06,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Assigned to Criminal Law,2021-05-10,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-20,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Recommends Be Adopted as Amended Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2022-02-10,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-04-04,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2021-05-11,[],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Recommends Be Adopted Executive Committee; 015-000-000,2023-01-10,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Rita Mayfield,2021-04-13,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2021-05-14,['amendment-introduction'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Greg Harris,2021-05-29,['amendment-introduction'],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Julie A. Morrison,2022-02-23,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-05-14,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-04,[],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 114-003-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2021-05-19,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michelle Mussman,2022-02-22,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-22,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2022-02-17,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-27,[],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Tim Butler,2021-05-12,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-05,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-20,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas Morrison,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2021-04-19,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Greg Harris,2021-04-30,[],IL,102nd +Do Pass Licensed Activities; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Do Pass as Amended Transportation; 019-000-000,2021-05-12,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 26, 2021",2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-03-22,[],IL,102nd +Third Reading - Short Debate - Passed 116-001-000,2021-05-19,"['passage', 'reading-3']",IL,102nd +Alternate Chief Sponsor Changed to Rep. Kathleen Willis,2021-05-07,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 013-002-000,2021-05-12,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-13,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Bush,2021-04-21,['amendment-passage'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 011-008-000,2021-05-13,['committee-passage'],IL,102nd +Second Reading,2022-03-31,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 072-042-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-07,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-16,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-29,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Resolution Adopted; 053-001-000,2021-06-01,['passage'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-12,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Assigned to Judiciary,2021-04-28,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Passed Both Houses,2021-05-19,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-03-22,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Assigned to Education,2021-04-28,['referral-committee'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 24, 2021",2021-05-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2021-05-06,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-20,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2021-04-19,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted State Government Administration Committee; 007-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-14,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Thomas M. Bennett,2021-05-13,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-001,2021-05-26,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2022-03-16,['committee-passage'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Do Pass / Short Debate Tourism Committee; 007-000-000,2021-05-25,['committee-passage'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Approved for Consideration Assignments,2022-03-29,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Do Pass Criminal Law; 009-000-000,2021-05-05,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of Resolutions,2023-01-10,[],IL,102nd +Public Act . . . . . . . . . 102-0037,2021-06-25,['became-law'],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2022-04-03,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Third Reading - Passed; 058-001-000,2021-05-06,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-30,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Angelica Guerrero-Cuellar,2021-05-24,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kathleen Willis,2022-03-16,['amendment-introduction'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-19,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2021-03-23,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-29,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2021-05-11,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Do Pass as Amended Insurance; 014-000-000,2021-04-21,['committee-passage'],IL,102nd +"Placed on Calendar Order of First Reading April 20, 2021",2021-04-19,['reading-1'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Castro,2021-05-12,['amendment-passage'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2022-03-29,[],IL,102nd +Do Pass Revenue; 010-000-000,2021-05-06,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading **,2021-04-21,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +First Reading,2022-03-10,['reading-1'],IL,102nd +Do Pass as Amended Commerce; 008-000-000,2021-05-20,['committee-passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2021-05-27,[],IL,102nd +Co-Sponsor Rep. Michael J. Madigan,2021-02-08,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-06,['amendment-failure'],IL,102nd +Postponed - State Government,2021-05-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-04-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-02-09,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Withdrawn by Sen. Scott M. Bennett,2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 20, 2021",2021-05-19,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-05-06,['committee-passage'],IL,102nd +Sent to the Governor,2021-06-15,['executive-receipt'],IL,102nd +Third Reading - Consent Calendar - Passed 104-004-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-16,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Terri Bryant,2022-03-24,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-14,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2022-03-09,[],IL,102nd +To Criminal Law- Special Issues,2021-05-12,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Kelly M. Cassidy,2021-04-27,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2022-03-09,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Adam Niemerg,2021-05-20,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-20,[],IL,102nd +Do Pass / Consent Calendar Energy & Environment Committee; 026-000-000,2021-05-04,['committee-passage'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Do Pass / Short Debate Executive Committee; 008-006-000,2021-05-27,['committee-passage'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed 071-041-000,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2021-05-11,[],IL,102nd +Public Act . . . . . . . . . 102-0089,2021-07-09,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-04-14,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-04-05,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-05-26,['reading-2'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2021-05-13,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Adriane Johnson,2021-04-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-02-17,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-26,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Governor Approved,2021-07-26,['executive-signature'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-22,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Executive Committee; 015-000-000,2021-05-13,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Adopted Both Houses,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-04,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-14,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-001,2021-05-26,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Paul Jacobs,2021-05-11,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 018-000-000,2022-02-17,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-19,['referral-committee'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Public Act . . . . . . . . . 102-0364,2021-08-13,['became-law'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-04-04,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-19,[],IL,102nd +Arrive in Senate,2022-03-28,['introduction'],IL,102nd +Do Pass State Government; 007-001-000,2021-05-29,['committee-passage'],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 018-000-000,2021-05-20,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2021-05-13,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2023-01-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-05-18,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-03,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-14,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Committee Amendment No. 2 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-12,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-20,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-31,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-14,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-002-000,2022-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-04-04,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-03-09,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading February 15, 2022",2022-02-10,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-10-20,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-17,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-03-22,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2021-04-21,[],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-04,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-28,[],IL,102nd +Chief Co-Sponsor Changed to Rep. Jonathan Carroll,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. David Koehler,2022-02-22,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-1016,2022-05-27,['became-law'],IL,102nd +Assigned to Executive Committee,2022-03-07,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-14,[],IL,102nd +Assigned to Executive Committee,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-15,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-04-28,[],IL,102nd +Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Lance Yednock,2021-04-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 010-000-000",2022-03-15,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-05-13,[],IL,102nd +Assigned to Executive,2022-03-28,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-02-01,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-03,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-10-18,[],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-05,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2022-03-23,['amendment-passage'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-03-30,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Referred to Rules Committee,2022-03-10,['referral-committee'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Commerce; 010-000-000,2022-02-24,[],IL,102nd +Third Reading - Short Debate - Passed 105-000-001,2022-04-01,"['passage', 'reading-3']",IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-02-17,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading November 29, 2022",2022-11-16,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kathleen Willis,2022-02-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-10-28,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-04,[],IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Energy and Public Utilities; 018-000-000,2022-02-24,[],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2022-03-07,[],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-19,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-0872,2022-05-13,['became-law'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-02,['reading-1'],IL,102nd +Do Pass Local Government; 008-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 010-005-000,2021-04-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-03-02,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2022-03-15,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2022-04-09,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-02,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-18,[],IL,102nd +Recalled to Second Reading,2022-03-09,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-18,[],IL,102nd +Do Pass / Short Debate Executive Committee; 013-000-000,2022-11-29,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +Third Reading - Passed; 051-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 29, 2021",2021-05-28,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2022-04-01,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Karina Villa,2022-04-04,['filing'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-29,[],IL,102nd +Assigned to Transportation,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Energy and Public Utilities; 016-000-000,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Villivalam,2022-03-09,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-24,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-04-15,[],IL,102nd +Assigned to Labor,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-22,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-25,[],IL,102nd +Third Reading - Passed; 047-000-000,2022-03-09,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 State Mandates Fiscal Note Filed as Amended,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-22,[],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-02,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2022-02-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-05-26,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Chief House Sponsor Rep. Deb Conroy,2021-04-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2022-02-24,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-20,[],IL,102nd +Chief House Sponsor Rep. Lakesia Collins,2021-04-26,[],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2022-03-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Assigned to Executive Committee,2022-03-17,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-31,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Behavioral and Mental Health,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-02-22,[],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2021-04-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2022-03-18,[],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2022-03-07,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2022-03-17,['amendment-introduction'],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-09-21,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Assigned to Transportation,2021-05-11,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Terri Bryant,2022-03-24,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-04,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-15,[],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-04-15,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Keith R. Wheeler,2021-05-05,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-05-20,['amendment-introduction'],IL,102nd +Assigned to Criminal Law,2021-05-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-10-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Third Reading - Consent Calendar - Passed 109-003-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Assigned to Health,2021-05-10,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Arrived in House,2021-05-05,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-04-05,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Ellman,2022-11-16,[],IL,102nd +Chief Senate Sponsor Sen. Donald P. DeWitte,2022-03-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-16,[],IL,102nd +Public Act . . . . . . . . . 102-0558,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-02,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-05-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-03,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-04-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2021-05-10,[],IL,102nd +Arrived in House,2021-05-20,['introduction'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-04,[],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-25,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Bush,2021-05-06,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2022-04-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-01-06,[],IL,102nd +Assigned to Counties & Townships Committee,2022-04-05,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-05-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-24,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-03-01,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2021-05-13,['amendment-failure'],IL,102nd +Recalled to Second Reading,2021-05-25,['reading-2'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-03-09,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-02,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Michael Halpin,2022-03-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-03-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 012-000-000,2021-10-27,['committee-passage-favorable'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-15,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-03-22,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0881,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-04,[],IL,102nd +Chief Senate Sponsor Sen. Dale Fowler,2022-03-07,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Higher Education Committee; 010-000-000,2022-04-01,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Dan Caulkins,2021-03-24,[],IL,102nd +Assigned to Appropriations,2021-05-11,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-10-27,['amendment-introduction'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-04-21,[],IL,102nd +Adopted Both Houses,2021-06-01,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-03-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Rules Refers to Judiciary - Civil Committee,2022-02-09,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Syverson,2022-02-25,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Energy and Public Utilities; 016-000-000,2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 3 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-02-24,[],IL,102nd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Assigned to Counties & Townships Committee,2021-05-05,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-22,[],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2022-03-01,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Re-assigned to Appropriations,2022-01-05,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-03-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 113-000-001,2022-03-30,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-01-28,[],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-05-04,[],IL,102nd +Assigned to Financial Institutions,2022-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Neil Anderson,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-01-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-02-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-05,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Home Rule Note Requested by Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-12,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Steve McClure,2022-03-21,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Kathleen Willis,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-16,[],IL,102nd +Public Act . . . . . . . . . 102-0229,2021-07-30,['became-law'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Chief House Sponsor Rep. Justin Slaughter,2022-02-25,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-28,[],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Do Pass Executive; 015-000-000,2022-03-23,['committee-passage'],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Resolution Adopted; 053-000-000,2022-04-09,['passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. John Connor,2021-05-20,['amendment-introduction'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2021-05-18,['amendment-introduction'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-12,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0068,2021-07-09,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Third Reading - Short Debate - Passed 102-000-000,2022-03-28,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-06,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2021-10-18,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-05-18,[],IL,102nd +Assigned to Human Services Committee,2021-02-23,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-06,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 017-000-000,2022-04-04,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0746,2022-05-06,['became-law'],IL,102nd +Assigned to Human Rights,2021-04-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 018-000-000,2021-05-04,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-12,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Rachelle Crowe,2021-05-11,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2021-05-17,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-05-05,['committee-passage'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Alternate Chief Sponsor Changed to Rep. Carol Ammons,2021-04-27,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Randy E. Frese,2022-04-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2022-03-07,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-04-03,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-02-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Public Act . . . . . . . . . 102-0745,2022-05-06,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0158,2021-07-23,['became-law'],IL,102nd +Resolution Adopted; 057-000-000,2022-04-06,['passage'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-05-12,[],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Assigned to Judiciary,2022-04-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 064-042-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Assigned to Health Care Licenses Committee,2021-05-04,['referral-committee'],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Emil Jones, III",2021-05-28,['amendment-introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-10-22,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-23,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 8, 2022",2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michael Halpin,2021-05-18,['amendment-introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-04-28,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-13,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Robert F. Martwick,2021-05-04,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-28,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading January 5, 2022",2022-01-05,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-23,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 015-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-05-14,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-05,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-001-000,2021-05-24,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-19,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-04-20,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-03-02,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Assigned to Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-03,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-25,[],IL,102nd +Second Reading,2022-03-28,['reading-2'],IL,102nd +Recalled to Second Reading,2021-05-27,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2021-05-06,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-14,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2021-05-12,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. David Koehler,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-10-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-07-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-26,[],IL,102nd +Removed Co-Sponsor Rep. Jim Durkin,2021-04-16,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Assigned to Veterans' Affairs Committee,2021-04-28,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2022-04-01,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2022-03-28,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Pensions,2021-05-29,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-12,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-26,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-05-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-04-15,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-28,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Joyce,2022-04-01,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-04-29,['amendment-failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-02-15,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-04-04,[],IL,102nd +Postponed - Health,2021-05-05,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +Removed Co-Sponsor Rep. Michelle Mussman,2022-03-31,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Second Reading,2022-03-31,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-05-05,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-22,[],IL,102nd +Do Pass / Short Debate Appropriations-Public Safety Committee; 011-007-000,2021-03-25,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-02-08,[],IL,102nd +Third Reading - Short Debate - Passed 070-044-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-04-23,[],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Revenue,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-03,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +Assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-03-08,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Lance Yednock,2021-04-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Bush,2021-04-29,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 011-001-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Third Reading - Passed; 042-006-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Keith R. Wheeler,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-04-06,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Prescription Drug Affordability & Accessibility Committee; 017-002-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-05-12,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Neil Anderson,2022-09-22,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-30,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0849,2022-05-13,['became-law'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0870,2022-05-13,['became-law'],IL,102nd +Senate Committee Amendment No. 4 Assignments Refers to Executive,2022-02-24,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2021-05-14,[],IL,102nd +Assigned to Adoption & Child Welfare Committee,2021-04-28,['referral-committee'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Assigned to Public Utilities Committee,2021-03-09,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-18,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-03,[],IL,102nd +Chief House Sponsor Rep. Maura Hirschauer,2022-03-10,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Removed Co-Sponsor Rep. Deb Conroy,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Rezin,2022-03-09,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 063-043-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-01-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 11, 2021",2021-05-10,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Bill Cunningham,2021-04-19,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-10,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2022-03-07,[],IL,102nd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-25,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Approved for Consideration Assignments,2022-04-04,[],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +Referred to Rules Committee,2022-03-02,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2022-02-17,[],IL,102nd +Remove Chief Co-Sponsor Rep. Lakesia Collins,2022-03-03,[],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2021-05-04,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Do Pass Transportation; 015-000-000,2021-05-25,['committee-passage'],IL,102nd +Do Pass Health; 011-000-000,2021-05-19,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2021-04-28,['amendment-failure'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Public Act . . . . . . . . . 102-0528,2021-08-20,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0555,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-07-06,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-20,[],IL,102nd +Public Act . . . . . . . . . 102-0526,2021-08-20,['became-law'],IL,102nd +Do Pass Executive; 016-000-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Passed; 038-011-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sonya M. Harper,2021-04-08,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2021-04-20,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Third Reading - Consent Calendar - Passed 109-003-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Assigned to State Government Administration Committee,2021-05-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-26,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Health,2022-03-22,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2022-12-02,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-23,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-02-23,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 016-000-000,2021-05-12,['committee-passage'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-15,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-13,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Do Pass Education; 012-001-000,2021-05-12,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-03,['amendment-failure'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 093-011-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-03-25,[],IL,102nd +Public Act . . . . . . . . . 102-0560,2021-08-20,['became-law'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-23,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-05-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Michael J. Zalewski,2021-05-20,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-07,[],IL,102nd +Public Act . . . . . . . . . 102-0564,2021-08-20,['became-law'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-18,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2021-05-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-05-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to Transportation,2021-05-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-16,[],IL,102nd +Assigned to Human Rights,2021-05-11,['referral-committee'],IL,102nd +First Reading,2021-10-29,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-31,[],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-18,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-06,[],IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-04-06,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-23,['amendment-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 30, 2021",2021-05-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-03,[],IL,102nd +Assigned to Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Assigned to Executive Committee,2022-04-05,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Lakesia Collins,2021-04-27,[],IL,102nd +Governor Approved,2021-08-24,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-26,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Celina Villanueva,2022-11-15,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 009-006-000,2021-05-31,['committee-passage-favorable'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-25,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-03-18,['amendment-passage'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Frances Ann Hurley,2022-11-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-04-20,[],IL,102nd +Approved for Consideration Assignments,2022-11-22,[],IL,102nd +Do Pass as Amended State Government; 006-000-000,2021-05-26,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2022-11-15,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-02-03,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-001-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-04-22,[],IL,102nd +Assigned to Executive,2021-03-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 065-043-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Hastings,2021-08-31,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-03-09,[],IL,102nd +Balanced Budget Note Requested by Rep. David A. Welter,2022-02-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Lance Yednock,2022-02-23,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-09-16,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-03-26,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Housing Committee,2021-04-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 014-009-000,2021-10-27,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-03-31,[],IL,102nd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-14,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2023-01-05,['amendment-introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-02-24,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-02-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-03-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-03-09,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2021-05-13,[],IL,102nd +Assigned to Ethics & Elections Committee,2022-03-07,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-19,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-01-05,[],IL,102nd +Assigned to Insurance Committee,2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-02,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Assigned to Cities & Villages Committee,2022-03-07,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Counties & Townships Committee; 011-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Removed Co-Sponsor Rep. Mark L. Walker,2021-04-13,[],IL,102nd +Postponed - Criminal Law,2021-05-05,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 015-000-000,2022-04-07,[],IL,102nd +Assigned to Criminal Law,2021-05-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Re-assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-03-25,[],IL,102nd +House Floor Amendment No. 2 Remains in Energy & Environment Committee,2022-02-23,[],IL,102nd +Passed Both Houses,2022-04-05,[],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Second Reading,2021-05-19,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-05-05,[],IL,102nd +Resolution Adopted,2021-06-01,['passage'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Brady,2021-05-05,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Assigned to Executive,2022-03-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-05-07,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 065-046-000,2021-05-19,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-05-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Assigned to Judiciary - Civil Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Removed from Short Debate Status,2021-04-23,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-05-13,[],IL,102nd +Third Reading - Passed; 055-000-000,2021-05-19,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0087,2021-07-09,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-21,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-24,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2021-05-29,[],IL,102nd +Chief Senate Sponsor Sen. Celina Villanueva,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-05-25,[],IL,102nd +Resolution Adopted 099-000-000,2021-04-23,['passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-05-19,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-02-23,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-05-11,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2021-05-04,[],IL,102nd +Third Reading - Passed; 054-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Removed from Short Debate Status,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-16,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to Insurance,2021-05-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 115-001-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-03-17,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-19,['referral-committee'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-21,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-03-09,[],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-05-17,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Christopher Belt,2021-05-12,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +"Chief House Sponsor Rep. Lamont J. Robinson, Jr.",2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-13,[],IL,102nd +Arrived in House,2021-06-08,['introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2021-04-29,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Do Pass Pensions; 005-000-000,2022-03-23,['committee-passage'],IL,102nd +Assigned to Behavioral and Mental Health,2021-05-04,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Governor Approved,2022-04-22,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Do Pass Pensions; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Randy E. Frese,2021-05-21,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2022-03-08,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Placed on Calendar Order of Secretary's Desk Resolutions,2022-04-08,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Waive Posting Notice,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Ellman,2021-04-23,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0240,2021-08-03,['became-law'],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2021-04-20,[],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 016-011-000,2021-05-12,['committee-passage'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2021-04-23,[],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Third Reading - Passed; 047-001-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-23,[],IL,102nd +First Reading,2022-04-01,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-05-25,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Chief House Sponsor Rep. Katie Stuart,2021-04-26,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Higher Education,2021-04-13,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-04,[],IL,102nd +Do Pass Health; 012-000-000,2021-05-05,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-14,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-05-06,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2021-04-22,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Do Pass / Consent Calendar Insurance Committee; 018-000-000,2021-05-20,['committee-passage'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-03,[],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0217,2021-07-30,['became-law'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-05-10,[],IL,102nd +Do Pass Labor; 015-000-000,2022-03-23,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-05-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-17,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dan McConchie,2021-05-19,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-19,[],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-05-17,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-01,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2021-05-18,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Chris Bos,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Morrison,2021-05-06,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Consumer Protection Committee,2021-05-11,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Public Act . . . . . . . . . 102-1075,2022-06-10,['became-law'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Greg Harris,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Appropriations,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-23,[],IL,102nd +Do Pass as Amended Executive; 011-006-000,2022-04-05,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-02,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-22,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-15,[],IL,102nd +Sent to the Governor,2022-05-04,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2022-03-30,[],IL,102nd +Governor Approved,2022-06-06,['executive-signature'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-03-16,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Assigned to Museums, Arts, & Cultural Enhancements Committee",2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-17,[],IL,102nd +Referred to Rules Committee,2021-04-13,['referral-committee'],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Napoleon Harris, III",2022-03-25,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-04-29,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 1, 2022",2022-03-31,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-22,[],IL,102nd +Public Act . . . . . . . . . 102-0943,2022-05-27,['became-law'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-28,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-04-07,['reading-2'],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 018-000-000,2022-03-22,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2022-03-31,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-25,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-12-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-02-28,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-14,['referral-committee'],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 007-003-000",2022-03-15,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-04-04,[],IL,102nd +Chief Senate Sponsor Sen. Jason A. Barickman,2021-04-15,[],IL,102nd +Alternate Chief Sponsor Removed Rep. Lindsey LaPointe,2022-02-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2021-05-13,[],IL,102nd +Waive Posting Notice,2022-04-04,[],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-03-05,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Assigned to Housing Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-18,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-1008,2022-05-27,['became-law'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-03-16,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Anthony DeLuca,2022-03-24,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-17,[],IL,102nd +Public Act . . . . . . . . . 102-0838,2022-05-13,['became-law'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2021-05-26,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2023-01-05,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-20,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0999,2022-05-27,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +Do Pass as Amended / Short Debate Insurance Committee; 012-007-000,2021-03-25,['committee-passage'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-16,[],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Resolution Adopted,2021-10-28,['passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Linda Holmes,2022-03-21,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Assigned to Health Care Licenses Committee,2022-03-07,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0833,2022-05-13,['became-law'],IL,102nd +Second Reading,2022-11-30,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-15,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Energy & Environment Committee,2022-03-22,[],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2022-04-08,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-28,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2022-03-22,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-11-30,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Bill Cunningham,2022-03-25,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-03-04,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2022-03-01,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Public Act . . . . . . . . . 102-0836,2022-05-13,['became-law'],IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-22,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2022-03-23,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-12-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-30,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading November 29, 2022",2022-11-16,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-10-27,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2022-03-18,['amendment-introduction'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2022-02-17,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-1004,2022-05-27,['became-law'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 027-000-000,2022-03-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-05-31,[],IL,102nd +Second Reading,2022-03-09,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2022-02-02,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-04-21,['amendment-failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-25,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-01-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-08,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-11-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-09-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-05-19,[],IL,102nd +Second Reading,2022-03-28,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-08-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-01-03,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-02-10,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2023-01-05,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-04-09,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2022-03-08,[],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-04-28,[],IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-04,['amendment-failure'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2021-09-08,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Omar Aquino,2022-11-30,[],IL,102nd +Postponed - Financial Institutions,2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-04-20,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Chief House Sponsor Rep. Jim Durkin,2021-05-12,[],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2022-03-04,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Postponed - Licensed Activities,2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-03-09,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2022-12-01,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-20,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Assigned to Executive Committee,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Avery Bourne,2021-05-11,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-21,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-09,['referral-committee'],IL,102nd +Assigned to Revenue,2022-11-22,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0418,2021-08-20,['became-law'],IL,102nd +Placed on Calendar Order of First Reading,2022-04-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-10-18,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-25,[],IL,102nd +Chief Senate Sponsor Sen. Omar Aquino,2021-04-27,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-22,[],IL,102nd +Do Pass Agriculture; 011-000-000,2021-05-20,['committee-passage'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Nicholas K. Smith,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-17,[],IL,102nd +Chief Senate Sponsor Sen. Jason Plummer,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-24,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-05-27,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Economic Opportunity & Equity Committee; 005-002-000,2022-03-23,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-02-16,[],IL,102nd +Public Act . . . . . . . . . 102-0850,2022-05-13,['became-law'],IL,102nd +Senate Floor Amendment No. 7 Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-24,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Tom Demmer,2022-03-03,[],IL,102nd +Re-assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-28,[],IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-29,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-17,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Revenue,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-02-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Cristina Castro,2022-11-29,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2022-04-06,['amendment-introduction'],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-02-25,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +To Criminal Law- Special Issues,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-03-09,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Emanuel Chris Welch,2023-01-05,[],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 006-000-000,2022-03-22,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 049-000-000,2022-03-09,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 055-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2021-06-16,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-19,[],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2021-05-13,['amendment-failure'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-001-000,2022-04-09,['committee-passage-favorable'],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Referred to Rules Committee,2022-11-15,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Do Pass Higher Education; 009-002-000,2022-03-23,['committee-passage'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Re-assigned to Executive,2022-04-07,['referral-committee'],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2022-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-04-04,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-01-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2022-04-07,['amendment-introduction'],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Third Reading - Passed; 054-000-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2022-03-16,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-02,[],IL,102nd +"Substitute House Sponsorship Request Filed Pursuant Rule 37(c) - Sen. Napoleon Harris, III",2022-04-07,[],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0877,2022-05-13,['became-law'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-08,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-02-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Assigned to Judiciary,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-02-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-28,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-01-18,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2022-03-16,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2023-01-03,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-06-16,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Greg Harris,2023-01-05,[],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-04,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Substitute House Sponsorship Request Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-18,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Floor Amendment No. 8 Filed with Secretary by Sen. Christopher Belt,2022-04-01,['amendment-introduction'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-23,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 010-003-006,2022-04-05,['committee-passage-favorable'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Re-assigned to Energy and Public Utilities,2021-04-28,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-05,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-22,[],IL,102nd +Third Reading - Short Debate - Passed 105-008-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-02,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-05-13,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Tom Demmer,2022-03-03,[],IL,102nd +Arrived in House,2022-03-10,['introduction'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-03-03,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading October 19, 2021",2021-10-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-09,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Assigned to Economic Opportunity & Equity Committee,2021-04-14,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-27,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Appropriations-Higher Education Committee,2022-04-03,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-05-19,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2022-11-22,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-10,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2023-01-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-14,[],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +Second Reading,2022-11-30,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-03-09,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-03-10,[],IL,102nd +Public Act . . . . . . . . . 102-0808,2022-05-13,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Insurance,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2022-03-22,[],IL,102nd +First Reading,2021-05-12,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0787,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-04-08,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-02,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass Healthcare Access and Availability; 006-000-000,2022-03-29,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-01-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-11-28,['amendment-introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 015-000-000,2021-05-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Postponed - Education,2021-04-13,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-05,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2021-09-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2022-03-04,['amendment-failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As February 18, 2022",2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Linda Holmes,2021-05-26,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Aquino,2022-03-09,['amendment-passage'],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-03,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 29, 2022",2022-03-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 081-024-000,2022-03-24,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-02-02,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-08-09,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-16,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-03-11,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Sent to the Governor,2022-05-03,['executive-receipt'],IL,102nd +First Reading,2021-05-05,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 008-006-000,2022-02-17,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-19,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Revenue & Finance Committee; 011-007-000,2021-05-29,['committee-passage-favorable'],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-19,[],IL,102nd +Referred to Rules Committee,2021-04-29,['referral-committee'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Behavioral and Mental Health,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Assigned to Criminal Law,2021-05-11,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Michael E. Hastings,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jackie Haas,2021-05-21,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2021-05-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-05-25,[],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Postponed - Higher Education,2021-04-13,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2022-03-04,[],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Energy & Environment Committee; 024-000-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2021-05-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-15,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-10,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-10,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Frances Ann Hurley,2021-05-05,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-06,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Adopted in Consumer Protection Committee; by Voice Vote,2021-05-11,['amendment-passage'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 20, 2021",2021-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0218,2021-07-30,['became-law'],IL,102nd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 013-001-000,2021-05-12,['committee-passage'],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 100-015-001,2021-05-19,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-04-23,[],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-03,[],IL,102nd +Do Pass Pensions; 008-000-000,2022-03-30,['committee-passage'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Assigned to Higher Education,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-19,['amendment-failure'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Justin Slaughter,2021-05-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-05-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Third Reading - Short Debate - Passed 077-036-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2021-05-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-22,[],IL,102nd +Removed from Short Debate Status,2021-04-20,[],IL,102nd +Passed Both Houses,2021-05-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-17,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2022-03-08,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +House Floor Amendment No. 1 Tabled,2021-04-23,['amendment-failure'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-05-07,['referral-committee'],IL,102nd +Remove Chief Co-Sponsor Rep. Sue Scherer,2021-04-22,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Chief House Sponsor Rep. Dagmara Avelar,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-21,[],IL,102nd +Adopted Both Houses,2021-06-01,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Meg Loughran Cappel,2021-04-26,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-03,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-13,[],IL,102nd +Do Pass as Amended Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-04-16,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-02-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2021-04-22,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-03-03,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-29,['amendment-passage'],IL,102nd +Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-23,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2022-04-09,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-08,['referral-committee'],IL,102nd +Do Pass Behavioral and Mental Health; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-06-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2021-05-12,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2021-05-18,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 24, 2021",2021-05-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Assigned to Insurance Committee,2021-05-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-05-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-02-16,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Sonya M. Harper,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-05-05,[],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-16,['reading-2'],IL,102nd +Tabled By Sponsor Sen. Chapin Rose,2022-04-07,['withdrawal'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-05-25,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-20,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-30,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Public Act . . . . . . . . . 102-0813,2022-05-13,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2021-05-30,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-04-28,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Public Act . . . . . . . . . 102-0086,2021-07-09,['became-law'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 007-000-000,2021-05-11,['committee-passage'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 015-000-000,2021-03-17,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-04-14,[],IL,102nd +Chief House Sponsor Rep. Rita Mayfield,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-04,['amendment-failure'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +First Reading,2022-03-10,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-03-04,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-31,['referral-committee'],IL,102nd +Second Reading,2022-04-01,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. John Connor,2022-04-07,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2023-01-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Craig Wilcox,2022-11-14,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Robert Rita,2022-03-24,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2022-03-07,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Rachelle Crowe,2022-03-21,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-10,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-06,[],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-28,[],IL,102nd +Arrive in Senate,2022-02-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-03-08,[],IL,102nd +House Committee Amendment No. 1 Adopted in Energy & Environment Committee; by Voice Vote,2022-03-22,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-16,['amendment-failure'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2021-05-31,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Dagmara Avelar,2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-04-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-24,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-26,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Chief House Sponsor Rep. Michael Halpin,2022-02-28,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-11-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2022-03-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-04,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-02-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michael J. Zalewski,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2022-03-23,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-10-28,[],IL,102nd +Third Reading - Standard Debate - Passed 075-042-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Second Reading,2023-01-05,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-14,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 106-004-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-25,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2021-04-20,['amendment-introduction'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Higher Education Committee; 006-003-000,2021-04-22,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2022-04-06,['amendment-introduction'],IL,102nd +Reported Back To Revenue & Finance Committee;,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2021-03-17,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading December 1, 2022",2022-11-30,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2022-04-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-12-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-12-22,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Assigned to Labor & Commerce Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-08,[],IL,102nd +First Reading,2021-04-15,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-03-02,['committee-passage'],IL,102nd +Second Reading - Short Debate,2022-03-25,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-03-23,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Do Pass Education; 013-000-000,2022-04-04,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-31,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-03-21,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-26,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-23,['amendment-passage'],IL,102nd +Do Pass as Amended Executive; 015-000-000,2021-10-27,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2021-05-27,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-03-30,[],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-03-18,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +"Effective Date January 1, 2023",2022-06-06,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2023-01-09,[],IL,102nd +Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 26, 2021",2021-05-25,[],IL,102nd +Public Act . . . . . . . . . 102-0462,2021-08-20,['became-law'],IL,102nd +Chief House Sponsor Rep. Janet Yang Rohr,2021-04-26,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2022-11-28,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Jonathan Carroll,2021-04-20,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2021-05-30,['amendment-introduction'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Moved to Suspend Rule 21 Rep. Jay Hoffman,2022-04-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-23,[],IL,102nd +Do Pass / Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-05-12,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-04-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-04-22,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-20,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-22,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2021-03-24,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-03-01,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-03-16,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-04-14,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-03-02,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-02-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-04-27,[],IL,102nd +Assigned to Transportation,2022-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Do Pass Financial Institutions; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-01-05,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-02-17,[],IL,102nd +Assigned to Higher Education,2022-03-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2022-03-10,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Scott M. Bennett,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-23,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michael J. Zalewski,2021-10-27,['amendment-introduction'],IL,102nd +Alternate Chief Sponsor Changed to Rep. David A. Welter,2022-03-10,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Third Reading - Short Debate - Passed 107-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-05-13,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-17,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-07-07,[],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-21,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-03-14,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-01-04,[],IL,102nd +Correctional Note Requested by Rep. La Shawn K. Ford,2021-04-16,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Meg Loughran Cappel,2022-04-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +House Floor Amendment No. 4 Rules Refers to Judiciary - Civil Committee,2022-02-09,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +"To Appropriations- Agriculture, Environment, and Energy",2021-05-11,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-04-26,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Joyce Mason,2022-03-14,[],IL,102nd +Assigned to Criminal Law,2022-03-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +To Appropriations- Health,2022-01-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-03-24,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-04-04,[],IL,102nd +Chief House Sponsor Rep. Deb Conroy,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-23,[],IL,102nd +Assigned to Executive Committee,2021-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-19,[],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 054-001-001,2021-05-25,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-20,[],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-22,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Chief House Sponsor Rep. Mark L. Walker,2021-05-05,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-20,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-04-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-10,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-09-21,[],IL,102nd +Recalled to Second Reading,2021-04-28,['reading-2'],IL,102nd +Moved to Suspend Rule 21 Rep. Jay Hoffman,2022-04-05,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Fine,2022-02-24,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +First Reading,2022-03-22,['reading-1'],IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-05-18,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-04-05,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-002,2021-04-22,"['passage', 'reading-3']",IL,102nd +Assigned to Environment and Conservation,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-03-04,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-02,['amendment-passage'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-05-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-31,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-04-15,[],IL,102nd +Chief Co-Sponsor Changed to Sen. Laura Ellman,2022-11-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-10-20,[],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-15,[],IL,102nd +Assigned to Human Services Committee,2021-03-09,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2023-01-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2022-03-02,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-19,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Steve Stadelman,2022-03-07,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-14,[],IL,102nd +Chief House Sponsor Rep. Anthony DeLuca,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-02-24,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Dan Ugaste,2021-05-05,[],IL,102nd +Public Act . . . . . . . . . 102-0434,2021-08-20,['became-law'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Bush,2021-05-06,['amendment-passage'],IL,102nd +First Reading,2021-04-20,['reading-1'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Chris Miller,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-03-05,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-15,[],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 054-002-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-12,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Brian W. Stewart,2021-04-20,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 106-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-03-04,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas Morrison,2021-05-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Effective Date April 22, 2022",2022-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0071,2021-07-09,['became-law'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2021-05-14,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-05-20,['reading-2'],IL,102nd +"Effective Date July 26, 2021",2021-07-26,[],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2022-03-08,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-04-29,[],IL,102nd +Assigned to Appropriations,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Laura M. Murphy,2021-04-22,[],IL,102nd +Assigned to State Government,2021-04-28,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-04-15,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-23,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Kelly M. Cassidy,2021-05-03,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-14,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michael Halpin,2021-05-12,[],IL,102nd +Recalled to Second Reading,2021-05-06,['reading-2'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Mattie Hunter,2021-05-25,['filing'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Waive Posting Notice,2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-13,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-21,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Executive,2022-02-24,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Resolution Adopted,2022-03-09,['passage'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 060-042-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 011-001-000,2021-05-20,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sue Scherer,2021-05-14,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-21,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-001-000,2021-05-24,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-04-09,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-22,['amendment-passage'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-24,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Assigned to Criminal Law,2021-05-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-12,[],IL,102nd +Assigned to Human Services Committee,2021-05-04,['referral-committee'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2021-04-28,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Greg Harris,2021-05-30,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-24,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-05-17,[],IL,102nd +Arrived in House,2021-05-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-13,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-04-19,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-03-30,[],IL,102nd +Resolution Adopted,2023-01-10,['passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Chief House Sponsor Rep. LaToya Greenwood,2021-04-30,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-14,[],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2021-05-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-23,[],IL,102nd +Assigned to Judiciary,2021-04-28,['referral-committee'],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-05-04,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0065,2021-07-09,['became-law'],IL,102nd +Assigned to Judiciary,2021-04-28,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 012-002-000,2021-05-19,['committee-passage'],IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +Public Act . . . . . . . . . 102-0377,2021-08-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-04,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-04-23,['amendment-failure'],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-27,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Withdrawn by Sen. Scott M. Bennett,2021-05-06,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-10,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2022-03-28,[],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 30, 2021",2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Adam Niemerg,2022-03-10,[],IL,102nd +Third Reading - Passed; 055-000-000,2021-05-24,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2021-05-10,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-05-29,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2021-05-06,['amendment-failure'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Do Pass / Short Debate Immigration & Human Rights Committee; 008-000-000,2021-05-27,['committee-passage'],IL,102nd +Third Reading - Short Debate - Passed 113-000-001,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 006-003-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Do Pass Education; 011-000-000,2021-05-12,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 018-000-000,2022-04-04,['committee-passage-favorable'],IL,102nd +Co-Sponsor Rep. Natalie A. Manley,2021-02-08,[],IL,102nd +Do Pass Education; 014-000-000,2021-05-05,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Referred to Rules Committee,2022-03-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Second Reading - Short Debate,2021-05-27,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-17,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2021-05-18,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +Fiscal Note Requested by Rep. Tom Demmer,2021-05-14,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-27,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Assigned to Health,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 30, 2022",2022-03-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2021-05-12,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Harris,2021-05-26,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-21,[],IL,102nd +Approved for Consideration Assignments,2021-05-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-29,[],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Third Reading - Passed; 044-014-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Removed from Consent Calendar Status Rep. Theresa Mah,2021-04-06,[],IL,102nd +Chief Co-Sponsor Changed to Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-22,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-04-06,[],IL,102nd +Second Reading,2021-10-20,['reading-2'],IL,102nd +Second Reading,2022-03-31,['reading-2'],IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-10,[],IL,102nd +Recalled to Second Reading - Short Debate,2022-04-01,['reading-2'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-03-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-05-26,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-08,[],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-22,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-04,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2022-03-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-05-13,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-04-04,[],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-22,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Withdrawn by Sen. Laura M. Murphy,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-15,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-15,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-03,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2022-02-25,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2022-03-31,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-03-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-04-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2022-03-30,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-05-06,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-23,[],IL,102nd +Do Pass as Amended / Short Debate Human Services Committee; 015-000-000,2022-03-23,['committee-passage'],IL,102nd +Alternate Co-Sponsor Removed Rep. Martin J. Moylan,2021-04-28,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2021-10-28,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2021-04-29,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-03-17,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Greg Harris,2022-12-30,[],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 8, 2022",2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Healthcare Access and Availability,2022-03-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Nicholas K. Smith,2022-03-18,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2022-04-06,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-007-000,2022-02-24,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-15,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2022-03-21,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Arrived in House,2022-03-09,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-02-25,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-03,[],IL,102nd +Chief House Sponsor Rep. Michelle Mussman,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-25,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jeff Keicher,2022-03-07,[],IL,102nd +House Floor Amendment No. 3 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2021-04-27,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2022-03-18,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Assigned to Transportation,2022-03-22,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-01,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-05,[],IL,102nd +Removed Co-Sponsor Rep. Frances Ann Hurley,2022-03-03,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-22,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Neil Anderson,2022-03-08,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2022-03-23,[],IL,102nd +Assigned to State Government,2022-03-28,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Postponed - Transportation,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-29,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-28,[],IL,102nd +Arrive in Senate,2021-03-19,['introduction'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-11-29,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-03-17,[],IL,102nd +Chief Senate Sponsor Sen. Craig Wilcox,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-10-18,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Behavioral and Mental Health,2022-02-22,[],IL,102nd +Assigned to Health,2022-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2021-04-14,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0984,2022-05-27,['became-law'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-02,[],IL,102nd +Third Reading - Short Debate - Passed 112-001-000,2022-03-02,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-03-22,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Lightford,2021-05-25,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-13,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-01,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2022-03-09,['amendment-introduction'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-03-19,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Assigned to Labor,2022-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-15,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-25,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-03-09,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-04-20,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2023-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-02-03,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8(b-1) this amendment will remain in the Committee on Assignments.,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-05-03,[],IL,102nd +Third Reading - Short Debate - Passed 090-023-001,2021-04-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-04-23,['amendment-failure'],IL,102nd +Assigned to Executive Committee,2022-03-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2022-03-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Hastings,2021-08-31,['amendment-passage'],IL,102nd +Fiscal Note Requested by Rep. David A. Welter,2022-02-15,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-24,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-28,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Police & Fire Committee,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-14,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Mike Simmons,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2021-03-22,['amendment-introduction'],IL,102nd +Assigned to Judiciary,2022-03-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-02,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Do Pass Executive; 013-000-000,2021-05-19,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-02-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Brian W. Stewart,2022-03-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-05-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-27,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-18,[],IL,102nd +To Executive- Elections,2022-02-07,[],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-09-16,[],IL,102nd +Moved to Suspend Rule 21 Rep. Robyn Gabel,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-03-25,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-02-25,['amendment-failure'],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-25,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2022-03-14,['amendment-introduction'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-10-19,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Chief Co-Sponsor Rep. Michael Kelly,2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-02-18,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-06,['amendment-failure'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-26,[],IL,102nd +Re-assigned to Executive,2021-05-25,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Deb Conroy,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-04-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-19,[],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-23,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2021-05-30,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2021-04-23,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-05-07,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 072-032-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Do Pass / Short Debate Appropriations-Human Services Committee; 023-000-000,2022-03-17,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-05-21,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2022-03-02,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-03-31,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Do Pass Human Rights; 007-000-000,2021-05-20,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-15,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-07,[],IL,102nd +Referred to Rules Committee,2021-10-29,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-07-06,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2021-04-19,[],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Do Pass Insurance; 011-000-000,2021-05-13,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-13,[],IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +House Floor Amendment No. 4 Adopted,2021-04-21,['amendment-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-25,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2022-12-02,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-23,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2022-04-06,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2021-05-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-04-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-12,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Do Pass Transportation; 014-004-000,2021-05-12,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-03-04,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2022-03-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-20,[],IL,102nd +Chief Sponsor Changed to Sen. Ram Villivalam,2021-05-04,[],IL,102nd +Arrived in House,2021-04-28,['introduction'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-14,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-07-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2022-03-10,['amendment-introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tony McCombie,2021-05-12,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Do Pass / Consent Calendar Veterans' Affairs Committee; 006-000-000,2021-05-04,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-18,[],IL,102nd +Assigned to Commerce,2021-04-28,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Chief House Sponsor Rep. Delia C. Ramirez,2021-04-22,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 018-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-04-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Health,2022-01-05,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2021-05-04,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2022-03-02,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-04-20,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Sara Feigenholtz,2022-03-07,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-22,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-05,[],IL,102nd +Chief House Sponsor Rep. John C. D'Amico,2021-04-26,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-26,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-12,[],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-28,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-13,[],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-000-000",2021-05-05,['committee-passage'],IL,102nd +Waive Posting Notice,2022-04-05,[],IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-05-14,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2021-05-12,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 4 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Do Pass as Amended Executive; 016-000-000,2022-03-23,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-17,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-28,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2021-04-23,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dan Brady,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Arrive in Senate,2022-02-23,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Pensions; 008-000-000,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-04-06,[],IL,102nd +Postponed - Labor,2021-05-12,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2021-05-25,[],IL,102nd +Waive Posting Notice,2022-04-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-16,[],IL,102nd +Do Pass State Government; 008-000-000,2022-04-05,['committee-passage'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2022-03-23,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Do Pass / Consent Calendar Mental Health & Addiction Committee; 016-000-000,2021-05-06,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-19,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-02-14,[],IL,102nd +Do Pass Commerce; 009-000-000,2021-05-20,['committee-passage'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2022-04-04,[],IL,102nd +Public Act . . . . . . . . . 102-0149,2021-07-23,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-16,[],IL,102nd +Approved for Consideration Assignments,2021-05-04,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert F. Martwick,2022-03-31,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-04-05,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-20,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2021-05-18,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-03-01,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Behavioral and Mental Health; 009-000-000,2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jehan Gordon-Booth,2021-05-27,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-12,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Do Pass Education; 011-000-000,2021-05-12,['committee-passage'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +Do Pass Executive; 016-000-000,2021-05-19,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Do Pass Human Rights; 009-000-000,2021-05-06,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2021-05-10,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-10-18,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-06,[],IL,102nd +Passed Both Houses,2022-03-28,[],IL,102nd +Recalled to Second Reading,2022-04-06,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-04-13,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Appropriations-Elementary & Secondary Education Committee; 011-004-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-02,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2022-03-22,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Steve Stadelman,2021-05-12,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-20,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-03-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-22,[],IL,102nd +Assigned to Insurance,2022-03-16,['referral-committee'],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Removed Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2022-02-23,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-10-26,[],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 27, 2021",2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. C.D. Davidsmeyer,2021-05-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Judicial Note Requested by Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Martwick,2021-05-27,['amendment-passage'],IL,102nd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2021-05-05,[],IL,102nd +Public Act . . . . . . . . . 102-0148,2021-07-23,['became-law'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-15,['reading-1'],IL,102nd +Sent to the Governor,2021-06-21,['executive-receipt'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 29, 2022",2022-03-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Public Act . . . . . . . . . 102-0801,2022-05-13,['became-law'],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2021",2021-03-24,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Do Pass as Amended Executive; 010-004-000,2021-05-27,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-04-06,[],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Criminal Law; 006-003-000,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-16,[],IL,102nd +Resolution Adopted 068-038-000,2022-03-31,['passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-03-24,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-31,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-10,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +Assigned to Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2022-04-08,['amendment-failure'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Waive Posting Notice,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-08,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-03-15,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 5, 2022",2022-04-04,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-27,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-05-12,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Waive Posting Notice,2022-02-24,[],IL,102nd +Do Pass / Consent Calendar Adoption & Child Welfare Committee; 008-000-000,2021-05-04,['committee-passage'],IL,102nd +Do Pass / Short Debate Executive Committee; 008-006-000,2021-05-19,['committee-passage'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-31,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Arrived in House,2022-04-01,['introduction'],IL,102nd +Removed Co-Sponsor Rep. Tony McCombie,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-05-04,[],IL,102nd +Chief Senate Sponsor Sen. Laura M. Murphy,2022-03-07,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2022-04-05,['amendment-introduction'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-02-02,[],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-10-28,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Energy & Environment Committee,2022-03-01,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2022-04-01,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-17,[],IL,102nd +Assigned to Higher Education Committee,2022-03-07,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Third Reading - Standard Debate - Passed 062-044-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Assigned to Judiciary - Civil Committee,2022-03-07,['referral-committee'],IL,102nd +Third Reading - Passed; 047-003-000,2022-11-16,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2022-04-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-05-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2022-03-21,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2022-02-08,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-23,[],IL,102nd +Removed from Short Debate Status,2021-04-23,[],IL,102nd +Do Pass as Amended / Consent Calendar Human Services Committee; 014-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-03-03,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-02-15,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Bush,2021-04-29,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-22,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2022-11-15,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-03-18,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading November 29, 2022",2022-11-22,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Lindsey LaPointe,2022-03-31,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-20,[],IL,102nd +Assigned to Human Services Committee,2021-05-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 27, 2021",2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-08,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Greg Harris,2021-05-31,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-11-15,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +"Effective Date August 24, 2021",2021-08-24,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-11-30,['amendment-failure'],IL,102nd +Governor Approved,2022-05-20,['executive-signature'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-11-15,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2021-05-11,[],IL,102nd +Governor Approved,2022-05-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-20,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0577,2021-08-24,['became-law'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Doris Turner,2022-11-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2022-11-30,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 067-040-000,2021-03-18,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 5, 2021",2021-05-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Jones,2022-04-06,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Adopted in Immigration & Human Rights Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2021-04-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Karina Villa,2022-01-19,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0226,2021-07-30,['became-law'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2021-05-19,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-28,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2021-05-29,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2022-02-15,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-31,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joe Sosnowski,2021-05-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +Public Act . . . . . . . . . 102-0181,2021-07-30,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0188,2021-07-30,['became-law'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2021-05-19,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0204,2021-07-30,['became-law'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-22,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. David Koehler,2021-04-22,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-13,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-22,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-16,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2021-03-25,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Do Pass State Government; 009-000-000,2022-03-30,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. John Connor,2021-05-21,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Greg Harris,2021-05-31,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-22,['amendment-passage'],IL,102nd +Sent to the Governor,2022-04-26,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-10-19,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-02-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2021-05-11,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +"Do Pass / Short Debate Cybersecurity, Data Analytics, & IT Committee; 014-000-000",2022-03-17,['committee-passage'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2021-05-11,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2021-05-12,[],IL,102nd +Placed on Calendar Order of First Reading,2022-02-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-05-04,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2021-05-04,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Do Pass Commerce; 010-000-000,2021-05-06,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Assigned to Counties & Townships Committee,2022-03-07,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0317,2021-08-06,['became-law'],IL,102nd +Third Reading - Passed; 043-014-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jackie Haas,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-03-07,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-05,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-07-21,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-22,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Do Pass Insurance; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +Assigned to Executive Committee,2022-03-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2022-04-06,['amendment-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-04,['reading-3'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2022-02-25,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Assigned to Energy & Environment Committee,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0368,2021-08-13,['became-law'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-26,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-04-06,[],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2021-05-06,[],IL,102nd +Postponed - Judiciary,2021-05-19,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-17,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Karina Villa,2022-03-04,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-20,[],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-04-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Pensions,2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-25,[],IL,102nd +"Chief House Sponsor Rep. Curtis J. Tarver, II",2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Chief House Sponsor Rep. Robyn Gabel,2021-04-26,[],IL,102nd +Recalled to Second Reading,2021-05-19,['reading-2'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-04,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-12,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2022-03-02,[],IL,102nd +Do Pass Education; 011-002-000,2021-05-19,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Pensions; 008-000-000,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-12,[],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Third Reading - Passed; 047-005-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Sandra Hamilton,2022-04-05,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 057-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-02-10,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-04-27,[],IL,102nd +Postponed - Judiciary,2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-09-10,[],IL,102nd +Postponed - Executive,2023-01-05,[],IL,102nd +Removed Co-Sponsor Rep. Dan Ugaste,2021-04-22,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Adopted in Police & Fire Committee; by Voice Vote,2021-04-15,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-22,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Third Reading - Passed; 053-001-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-18,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading November 29, 2022",2022-11-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 To Executive- Elections,2022-02-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-03-25,['amendment-introduction'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-02-04,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-21,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Commerce; 008-000-000,2021-04-22,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-03-28,[],IL,102nd +Waive Posting Notice,2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-24,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-09-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-10-27,['amendment-failure'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Home Rule Note Requested by Rep. David A. Welter,2022-02-15,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Hastings,2021-08-31,['amendment-passage'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +First Reading,2021-04-20,['reading-1'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2022-03-14,[],IL,102nd +Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-19,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0495,2021-08-20,['became-law'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0554,2021-08-20,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 009-000-000,2021-05-19,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0202,2021-07-30,['became-law'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-07-06,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-05,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Do Pass / Consent Calendar Police & Fire Committee; 014-000-000,2021-05-13,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2021-05-26,[],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-15,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-0436,2021-08-20,['became-law'],IL,102nd +Approved for Consideration Assignments,2021-05-05,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2021-05-07,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Burke,2022-03-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-05-04,['referral-committee'],IL,102nd +Chief Co-Sponsor Changed to Rep. Debbie Meyers-Martin,2022-03-03,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-04,[],IL,102nd +Public Act . . . . . . . . . 102-0505,2021-08-20,['became-law'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-05-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-20,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-05-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0473,2021-08-20,['became-law'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-10-20,['amendment-passage'],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0527,2021-08-20,['became-law'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Robert Rita,2021-05-30,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0508,2021-08-20,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-21,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-14,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-30,[],IL,102nd +Waive Posting Notice,2021-05-26,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Assigned to Criminal Law,2021-05-10,['referral-committee'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-04-12,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dave Severin,2021-05-14,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 018-000-000,2021-05-11,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-03-28,[],IL,102nd +Public Act . . . . . . . . . 102-0489,2021-08-20,['became-law'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 110-000-001,2021-04-22,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-12-02,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-02-25,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-02,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-13,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Do Pass Pensions; 008-000-000,2022-03-30,['committee-passage'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2021-04-12,['amendment-introduction'],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-03-14,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-0859,2022-05-13,['became-law'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Third Reading - Passed; 049-000-000,2022-03-09,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2022-02-24,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-10-14,[],IL,102nd +Arrived in House,2022-11-16,['introduction'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Stephanie A. Kifowit,2021-04-30,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-24,[],IL,102nd +Public Act . . . . . . . . . 102-0457,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-04-20,['amendment-failure'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Executive,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-23,['reading-2'],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Local Government,2021-04-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +First Reading,2022-03-30,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-02-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2022-02-09,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-04-15,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2021-04-16,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-23,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-10,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-02,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2021-05-20,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-29,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2022-04-04,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Public Utilities Committee; by Voice Vote,2021-03-22,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-18,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-04-06,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Agriculture & Conservation Committee; 007-000-000,2021-05-11,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-03-24,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-04,[],IL,102nd +Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2021-05-12,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-03-10,[],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-05-05,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-09,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2022-03-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2022-03-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-31,[],IL,102nd +Approved for Consideration Assignments,2023-01-04,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-31,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Third Reading - Passed; 037-015-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Alternate Chief Sponsor Changed to Sen. Doris Turner,2022-04-04,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Emanuel Chris Welch,2022-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Celina Villanueva,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2022-02-17,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-02-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2022-03-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-20,[],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2022-04-01,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-01,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-23,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2022-04-01,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Paul Jacobs,2022-03-22,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2021-03-23,['committee-passage'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Assigned to Licensed Activities,2021-05-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Second Reading,2021-05-26,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Eric Mattson,2023-01-09,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-05,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Alternate Chief Sponsor Changed to Rep. Kambium Buckner,2021-05-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Assigned to Higher Education,2021-05-11,['referral-committee'],IL,102nd +Assigned to Ethics & Elections Committee,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Cyril Nichols,2021-04-22,[],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-11-28,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2021-10-22,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-05-20,[],IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +Public Act . . . . . . . . . 102-0559,2021-08-20,['became-law'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +First Reading,2022-04-07,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-22,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2021-04-19,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-30,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-11,[],IL,102nd +Public Act . . . . . . . . . 102-0230,2021-07-30,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-02-23,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Celina Villanueva,2021-05-27,['filing'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Added Chief Co-Sponsor Rep. Mike Murphy,2021-04-15,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Placed on Calendar - Consideration Postponed,2021-04-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Do Pass / Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 018-000-000,2021-05-05,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-03,[],IL,102nd +Second Reading,2021-05-12,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-03-03,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Do Pass / Short Debate Insurance Committee; 012-007-000,2021-05-11,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-05-20,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-17,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Do Pass as Amended Licensed Activities; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-23,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Angelica Guerrero-Cuellar,2021-05-04,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2021-05-25,[],IL,102nd +House Committee Amendment No. 1 Adopted in Higher Education Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2021-04-16,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-17,['reading-2'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-14,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-16,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Referred to Rules Committee,2021-05-05,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sonya M. Harper,2021-05-30,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-04-13,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-05-11,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Swanson,2021-04-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-29,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-05-05,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-06,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-04-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-05-25,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2021-04-28,['referral-committee'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2021-04-15,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-30,['amendment-passage'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-12,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-15,['reading-1'],IL,102nd +Chief House Sponsor Rep. Lindsey LaPointe,2021-04-23,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +"Alternate Chief Sponsor Changed to Sen. Napoleon Harris, III",2022-04-04,[],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Education,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Healthcare Access and Availability,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Executive,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-10,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-08,[],IL,102nd +Public Act . . . . . . . . . 102-0601,2021-08-27,['became-law'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kambium Buckner,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-05-17,['amendment-introduction'],IL,102nd +Recalled to Second Reading,2021-05-31,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 073-034-000,2022-03-24,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended / Consent Calendar Consumer Protection Committee; 006-000-000,2021-05-11,['committee-passage'],IL,102nd +Governor Approved,2021-08-03,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +"Effective Date July 1, 2021",2021-06-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-04-22,[],IL,102nd +Arrived in House,2021-05-19,['introduction'],IL,102nd +Third Reading - Standard Debate - Passed 076-031-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Second Reading - Short Debate,2021-05-27,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-03-19,['amendment-introduction'],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Do Pass Higher Education; 011-002-000,2021-05-05,['committee-passage'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michael Halpin,2021-05-06,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-05-04,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-04-22,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Theresa Mah,2021-04-15,[],IL,102nd +Assigned to State Government,2022-03-30,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-20,[],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +Arrived in House,2021-05-20,['introduction'],IL,102nd +Do Pass as Amended Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-001-000,2021-05-24,['committee-passage-favorable'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Kelly M. Cassidy,2021-05-03,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-17,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2021-04-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Janet Yang Rohr,2022-02-17,['amendment-introduction'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Steve Stadelman,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2021-05-14,[],IL,102nd +Second Reading,2021-05-30,['reading-2'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Resolution Adopted,2021-05-30,['passage'],IL,102nd +Re-assigned to Executive,2021-05-29,['referral-committee'],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Immigration & Human Rights Committee; 008-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-04-29,[],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Resolution Adopted; 056-000-000,2022-04-09,['passage'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-03-02,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Removed Co-Sponsor Rep. Katie Stuart,2021-04-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-05,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-21,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 065-048-000,2021-05-19,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-20,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2022-03-22,[],IL,102nd +"Effective Date January 1, 2022",2021-06-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Public Act . . . . . . . . . 102-0084,2021-07-09,['became-law'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2022-03-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2021-05-21,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Do Pass as Amended Behavioral and Mental Health; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2022-03-22,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 102-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-01-05,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Linda Holmes,2022-04-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Blaine Wilhour,2021-05-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-09,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Dave Syverson,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-02-17,[],IL,102nd +Do Pass Judiciary; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2022-02-24,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-04-05,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-04-21,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Chief House Sponsor Rep. Kambium Buckner,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-04-06,['amendment-failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-05,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-16,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-04-04,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 071-029-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-06-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-27,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-01-18,[],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-26,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-02,[],IL,102nd +Chief House Sponsor Rep. LaToya Greenwood,2021-04-30,[],IL,102nd +Senate Floor Amendment No. 8 Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Chris Bos,2022-04-05,['amendment-introduction'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Dan Caulkins,2021-05-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-01-08,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-03-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2022-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 30, 2022",2022-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-05-20,[],IL,102nd +Assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-08-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-21,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2021-09-08,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-02-10,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 015-000-000,2021-05-31,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 10, 2022",2022-03-09,[],IL,102nd +Waive Posting Notice,2022-03-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-24,['amendment-passage'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2022-01-13,[],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-03-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2021-04-30,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2022-02-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading December 1, 2022",2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-03,['reading-3'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-03-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-11-28,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Postponed - Insurance,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-15,[],IL,102nd +Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-01-04,[],IL,102nd +Arrive in Senate,2022-03-28,['introduction'],IL,102nd +"Effective Date May 6, 2022",2022-05-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Greg Harris,2022-03-04,[],IL,102nd +Placed on Calendar Order of First Reading,2022-02-23,['reading-1'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0974,2022-05-27,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-03-30,[],IL,102nd +Third Reading - Short Debate - Passed 094-016-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-04-04,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Laura M. Murphy,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Suspend Rule 21 - Prevailed 067-040-000,2021-03-18,[],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Assigned to Financial Institutions,2022-03-16,['referral-committee'],IL,102nd +Second Reading,2022-04-04,['reading-2'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Local Government,2022-04-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 6, 2023",2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Energy and Public Utilities,2022-03-28,[],IL,102nd +Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Assigned to Financial Institutions Committee,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2022-03-17,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 4, 2022",2022-04-01,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-25,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-05-28,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Barbara Hernandez,2021-03-22,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 5, 2022",2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-11-30,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-12-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2022-11-30,[],IL,102nd +Do Pass as Amended Licensed Activities; 005-000-000,2022-03-23,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-03-10,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-10-27,[],IL,102nd +House Committee Amendment No. 2 Adopted in Energy & Environment Committee; by Voice Vote,2022-03-22,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-12-07,[],IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0851,2022-05-13,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2023-01-04,[],IL,102nd +Third Reading - Short Debate - Passed 092-007-002,2022-03-03,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2022-03-04,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2022-03-23,[],IL,102nd +First Reading,2022-02-16,['reading-1'],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Second Reading,2022-04-06,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-30,[],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 028-000-000,2022-03-15,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-22,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Koehler,2022-02-24,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-03-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-02-24,[],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-01,[],IL,102nd +Public Act . . . . . . . . . 102-1044,2022-06-06,['became-law'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 017-011-000,2022-03-16,['committee-passage'],IL,102nd +Referred to Rules Committee,2022-03-10,['referral-committee'],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-03-22,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2022-04-05,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-16,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2022-04-04,['amendment-passage'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-03-16,['committee-passage'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Arrived in House,2022-03-30,['introduction'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-24,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-14,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-04-20,['referral-committee'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-03-30,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2022-03-22,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-21,['referral-committee'],IL,102nd +Assigned to Executive,2022-03-31,['referral-committee'],IL,102nd +Postponed - Education,2022-03-24,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Jason A. Barickman,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-02,[],IL,102nd +Third Reading - Consent Calendar - Passed 103-001-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-03-16,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tim Ozinga,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2022-03-16,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Delia C. Ramirez,2021-05-12,['amendment-introduction'],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-23,[],IL,102nd +Public Act . . . . . . . . . 102-1011,2022-05-27,['became-law'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-11-15,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-17,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-05-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-22,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-01,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-31,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-27,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-25,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Jim Durkin,2021-05-03,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2021-05-13,[],IL,102nd +Public Act . . . . . . . . . 102-0053,2021-07-09,['became-law'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Fiscal Note Requested by Rep. Avery Bourne,2021-05-14,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-02-24,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Christopher Belt,2021-04-21,[],IL,102nd +Do Pass Executive; 016-000-000,2021-05-19,['committee-passage'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-20,[],IL,102nd +Do Pass State Government; 009-000-000,2021-05-06,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-0376,2021-08-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2021-04-27,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Michael E. Hastings,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Greg Harris,2021-05-05,[],IL,102nd +Public Act . . . . . . . . . 102-0369,2021-08-13,['became-law'],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-06,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-20,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Executive Committee; 015-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Rose,2021-05-06,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-10,[],IL,102nd +Arrived in House,2021-05-07,['introduction'],IL,102nd +Co-Sponsor Rep. Will Guzzardi,2021-02-08,[],IL,102nd +Assigned to Executive Committee,2022-03-15,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2021-05-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2021-04-22,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 015-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-25,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2021-05-14,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-04-20,[],IL,102nd +Public Act . . . . . . . . . 102-0090,2021-07-09,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0132,2021-07-23,['became-law'],IL,102nd +Assigned to Criminal Law,2021-05-10,['referral-committee'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2021-05-11,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2021-05-17,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-04-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-18,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Jones,2021-05-06,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-04-22,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Assigned to State Government,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2021-05-18,[],IL,102nd +Public Act . . . . . . . . . 102-0059,2021-07-09,['became-law'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 5, 2021",2021-05-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-03-15,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2021-05-05,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-000-000",2021-05-25,['committee-passage-favorable'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2021-04-29,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Kelly M. Cassidy,2021-04-23,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-29,[],IL,102nd +Public Act . . . . . . . . . 102-0784,2022-05-13,['became-law'],IL,102nd +First Reading,2021-04-20,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-22,[],IL,102nd +Passed Both Houses,2021-05-24,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-04-30,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Third Reading - Passed; 054-002-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2022-03-22,[],IL,102nd +Public Act . . . . . . . . . 102-0333,2021-08-06,['became-law'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Third Reading - Short Debate - Passed 074-034-002,2021-05-20,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-28,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Public Act . . . . . . . . . 102-0165,2021-07-26,['became-law'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-14,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +"Effective Date July 23, 2021; some provisions effective 1-1-22",2021-07-23,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2021-04-30,['amendment-introduction'],IL,102nd +Second Reading,2021-05-30,['reading-2'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-11,[],IL,102nd +Do Pass as Amended Licensed Activities; 008-000-000,2021-04-15,['committee-passage'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-27,[],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-12,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-20,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to Healthcare Access and Availability,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-11,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mike Murphy,2021-05-04,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 019-000-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-12,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-21,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 011-000-000,2021-05-19,[],IL,102nd +Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-04-04,[],IL,102nd +Do Pass as Amended Education; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +Chief House Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-04-14,[],IL,102nd +To Appropriations- Human Services,2021-05-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2022-04-09,[],IL,102nd +Second Reading,2021-04-22,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-26,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 018-000-001,2022-04-05,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-25,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-02-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-05-13,[],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-20,[],IL,102nd +Assigned to Executive Committee,2021-05-05,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2023-01-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt Executive; 009-002-000,2022-02-24,[],IL,102nd +Public Act . . . . . . . . . 102-0704,2022-04-22,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-04-23,[],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 106-000-001,2022-04-01,"['passage', 'reading-3']",IL,102nd +Do Pass Health; 014-000-000,2021-05-12,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Ram Villivalam,2021-05-21,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2022-03-17,[],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-14,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-04-22,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Cristina Castro,2022-03-29,[],IL,102nd +Public Act . . . . . . . . . 102-0052,2021-07-09,['became-law'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2021-05-04,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Chapin Rose,2022-03-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-03-15,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-01,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-01-04,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-04-04,[],IL,102nd +Do Pass Higher Education; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-10-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-20,[],IL,102nd +Home Rule Note Requested by Rep. La Shawn K. Ford,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-03-24,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Placed on Calendar - Consideration Postponed,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2021-05-20,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Do Pass Transportation; 018-000-000,2022-03-23,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Steve Stadelman,2022-04-04,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-10,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-03-16,[],IL,102nd +Re-assigned to Energy and Public Utilities,2021-05-10,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 018-000-000,2022-03-22,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Assigned to Executive,2021-04-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-10,[],IL,102nd +Chief House Sponsor Rep. LaToya Greenwood,2022-02-25,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-24,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-03-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-07-07,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-04-26,[],IL,102nd +Arrive in Senate,2021-05-13,['introduction'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2021-10-27,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-03,['amendment-failure'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-23,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Lance Yednock,2022-03-16,[],IL,102nd +Chief Senate Sponsor Sen. David Koehler,2022-03-08,[],IL,102nd +Recalled to Second Reading,2022-03-09,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2022-03-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Tony McCombie,2021-05-05,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kathleen Willis,2021-03-09,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2022-03-09,[],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-02-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-24,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-05,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-10-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-18,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-20,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-24,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-01-06,[],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-02,[],IL,102nd +Public Act . . . . . . . . . 102-0798,2022-05-13,['became-law'],IL,102nd +Do Pass Health; 011-000-000,2021-05-19,['committee-passage'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0500,2021-08-20,['became-law'],IL,102nd +Added Chief Co-Sponsor Rep. Mark L. Walker,2022-03-02,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. LaToya Greenwood,2022-03-01,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-15,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-15,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +First Reading,2021-05-05,['reading-1'],IL,102nd +Do Pass Environment and Conservation; 009-000-000,2021-05-20,['committee-passage'],IL,102nd +House Floor Amendment No. 3 Tabled Pursuant to Rule 40,2021-04-22,['amendment-failure'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-11-16,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0454,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-05,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-04-22,['amendment-failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-05-10,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-05-24,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2021-05-12,['amendment-introduction'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-04-05,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-01-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Public Act . . . . . . . . . 102-0792,2022-05-13,['became-law'],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-10,[],IL,102nd +Senate Floor Amendment No. 4 Adopted; Bush,2021-05-06,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-09-21,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Feigenholtz,2021-04-28,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-23,[],IL,102nd +First Reading,2021-05-21,['reading-1'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Do Pass Criminal Law; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Referred to Assignments,2022-03-22,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-25,['amendment-failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Third Reading - Passed; 048-000-000,2022-03-09,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-22,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Suzanne Ness,2022-03-01,['amendment-introduction'],IL,102nd +Assigned to Executive,2022-03-28,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Sponsor Changed to Sen. David Koehler,2022-02-24,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2021-05-07,['amendment-introduction'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-08,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Mattie Hunter,2022-03-21,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1) the following amendments will remain in the Committee on Assignments,2022-04-07,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2021-05-11,[],IL,102nd +Public Act . . . . . . . . . 102-0459,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-05-26,[],IL,102nd +Second Reading - Short Debate,2022-03-25,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-15,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Castro,2022-03-31,['amendment-passage'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Third Reading - Short Debate - Passed 102-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 015-000-000,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-14,[],IL,102nd +Chief House Sponsor Rep. Barbara Hernandez,2022-02-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-05-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2021-04-28,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-02,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-03,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to State Government,2022-04-05,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-1027,2022-05-27,['became-law'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2022-04-01,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-18,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Murphy,2022-03-09,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-04-04,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-01,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +"Placed on Calendar Order of First Reading March 19, 2021",2021-03-19,['reading-1'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-15,[],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Housing Committee,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-03-14,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-23,['amendment-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-03-17,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-04-28,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2022-04-08,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-06,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2021-10-28,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-02-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2022-02-25,[],IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-02,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-24,[],IL,102nd +Assigned to Commerce,2021-04-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2022-04-01,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-10-19,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-21,[],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-02-25,['amendment-failure'],IL,102nd +Second Reading - Short Debate,2022-11-29,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +Assigned to Police & Fire Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-02-17,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-01,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 018-000-001,2022-04-05,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2022-12-30,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2022-03-15,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-02-23,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-04-15,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2021-05-12,['amendment-introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-09,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2022-03-30,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2022-04-04,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-0725,2022-05-06,['became-law'],IL,102nd +Do Pass Judiciary; 006-000-001,2022-04-04,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-05-13,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-16,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2021-04-23,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-04-04,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-22,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +House Committee Amendment No. 1 Adopted in Appropriations-Human Services Committee; by Voice Vote,2022-03-17,['amendment-passage'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2021-04-27,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2022-02-17,['committee-passage'],IL,102nd +"Senate Floor Amendment No. 4 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-02-22,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 26, 2021",2021-10-20,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-18,['referral-committee'],IL,102nd +Second Reading,2022-02-15,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-03-22,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-30,[],IL,102nd +Chief House Sponsor Rep. Theresa Mah,2022-02-28,[],IL,102nd +Do Pass as Amended Education; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-03-31,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-05,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-03-15,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Jacqueline Y. Collins,2022-04-07,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2021-05-21,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Transportation,2022-02-22,[],IL,102nd +Arrived in House,2022-03-09,['introduction'],IL,102nd +Third Reading - Passed; 057-000-000,2021-10-26,"['passage', 'reading-3']",IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2022-03-03,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-14,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-15,[],IL,102nd +Third Reading - Short Debate - Passed 102-001-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2022-02-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michael Kelly,2022-03-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-02-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-03-10,[],IL,102nd +Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 008-000-000,2022-04-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Lindsey LaPointe,2022-03-02,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2022-03-21,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-24,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Recalled to Second Reading,2022-04-07,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2022-03-18,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-10,[],IL,102nd +Second Reading,2022-04-04,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-03-01,[],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Koehler,2022-02-24,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-03-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-04,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2022-03-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-04-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-17,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +"Effective Date July 1, 2023",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Ryan Spain,2022-04-05,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-16,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-04-04,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 16, 2022",2022-02-15,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-04,['amendment-failure'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-22,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-31,[],IL,102nd +Do Pass as Amended / Short Debate Public Utilities Committee; 025-000-000,2021-03-22,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-25,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2022-03-07,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-11-29,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-07,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-04-06,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-08,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2021-04-28,[],IL,102nd +Second Reading,2022-02-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-05-26,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-15,[],IL,102nd +Public Act . . . . . . . . . 102-0844,2022-05-13,['became-law'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Castro,2022-03-31,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-03,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-03-02,[],IL,102nd +Postponed - Transportation,2021-05-19,[],IL,102nd +Do Pass State Government; 008-000-000,2022-04-05,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-02,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-28,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-05-12,['amendment-introduction'],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-03-17,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-15,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2023-01-03,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-02-24,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-02-22,[],IL,102nd +Motion Do Pass - Lost Judiciary - Criminal Committee; 006-008-001,2021-05-12,['committee-failure'],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2022-03-22,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2021-04-29,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2023-01-05,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Assigned to State Government,2022-04-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Adopted; Murphy,2022-03-09,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 5, 2022",2022-04-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-22,[],IL,102nd +Do Pass as Amended / Short Debate Appropriations-Human Services Committee; 018-000-001,2022-03-17,['committee-passage'],IL,102nd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Laura Fine,2022-02-22,['amendment-introduction'],IL,102nd +Do Pass as Amended Healthcare Access and Availability; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-03-22,[],IL,102nd +Recalled to Second Reading - Short Debate,2022-04-05,['reading-2'],IL,102nd +Assigned to Transportation,2022-03-16,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-10-19,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2022-03-30,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2022-03-17,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Murphy,2022-03-09,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-08,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-05-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-05-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-01-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Criminal Law; 010-000-000,2022-03-29,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-07-07,[],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-03-15,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2022-03-09,[],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-02-26,[],IL,102nd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +To Executive- Procurement,2021-05-06,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-04-04,[],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2022-03-08,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2021-10-18,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-14,[],IL,102nd +Suspend Rule 21 - Prevailed,2021-10-27,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-19,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-01-05,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-10-28,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-02-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-02-25,[],IL,102nd +Placed on Calendar Order of First Reading,2021-05-13,['reading-1'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 018-008-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Steve Stadelman,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2022-04-04,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-03-01,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-03,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2021-03-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-26,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-17,[],IL,102nd +Third Reading - Passed; 040-018-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2022-11-22,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-01,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-21,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-03-19,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-02-08,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-20,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Carol Ammons,2022-04-01,[],IL,102nd +"Moved to Suspend Rule 21 Rep. Jaime M. Andrade, Jr.",2022-03-15,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-12,['amendment-failure'],IL,102nd +Postponed - State Government,2021-05-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2021-05-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2021-06-28,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +Assigned to Executive,2021-04-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-25,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Curtis J. Tarver, II",2021-05-27,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 20, 2021",2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Jones,2021-05-06,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +House Committee Amendment No. 1 Fiscal Note Filed as Amended,2021-05-17,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Do Pass Behavioral and Mental Health; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-17,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Chief Senate Sponsor Sen. Jason A. Barickman,2021-04-19,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-25,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-03-04,[],IL,102nd +Public Act . . . . . . . . . 102-0046,2021-07-09,['became-law'],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Revenue,2021-05-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2023-01-10,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-12,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Assigned to Transportation,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 31, 2021",2021-05-30,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-01-19,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Chief Senate Sponsor Sen. Neil Anderson,2021-04-23,[],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 010-007-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Chief House Sponsor Rep. Kambium Buckner,2021-04-26,[],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +Second Reading,2021-05-19,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2021-05-11,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Postponed - Judiciary,2021-05-25,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +First Reading,2021-04-15,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2021-05-06,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Steven Reick,2021-05-14,[],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Napoleon Harris, III",2022-04-01,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Alternate Co-Sponsor Removed Rep. Elizabeth Hernandez,2022-03-11,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Third Reading - Passed; 055-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-25,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Theresa Mah,2021-04-22,[],IL,102nd +Fiscal Note Filed,2021-05-18,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Recalled to Second Reading,2021-05-19,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-03-16,[],IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-05-18,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Thomas M. Bennett,2021-05-12,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2021-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-14,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-07,[],IL,102nd +Public Act . . . . . . . . . 102-0135,2021-07-23,['became-law'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2021-05-30,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. David A. Welter,2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-001,2021-05-26,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 30, 2021",2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-13,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2021-05-18,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-04-28,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-03-24,[],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2021-05-27,['amendment-introduction'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Anne Stava-Murray,2021-04-23,[],IL,102nd +Assigned to Health,2022-03-29,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2021-05-11,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2021-05-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-02-05,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2021-05-18,[],IL,102nd +Do Pass Criminal Law; 007-003-000,2021-05-19,['committee-passage'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Do Pass / Consent Calendar Executive Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2022-03-29,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-20,[],IL,102nd +Removed Co-Sponsor Rep. Mary E. Flowers,2022-04-04,[],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-14,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Healthcare Access and Availability; 008-000-000,2022-02-16,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2021-05-18,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Assigned to Agriculture,2022-03-16,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Assigned to State Government,2021-04-28,['referral-committee'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-04-28,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-06,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading April 23, 2021",2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2021-05-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading October 19, 2021",2021-10-13,[],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-15,[],IL,102nd +Chief Senate Sponsor Sen. David Koehler,2021-04-23,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0138,2021-07-23,['became-law'],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2021-05-07,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-20,['amendment-failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2021-05-06,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-02,[],IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Third Reading - Passed; 046-011-000,2021-05-06,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-24,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-22,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Assigned to Human Services Committee,2021-05-05,['referral-committee'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Third Reading - Passed; 056-001-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-02-24,[],IL,102nd +Referred to Rules Committee,2021-05-21,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Suzanne Ness,2022-02-03,['amendment-introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Third Reading - Passed; 039-016-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0797,2022-05-13,['became-law'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2021-05-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Adam Niemerg,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-05-25,[],IL,102nd +Referred to Rules Committee,2021-05-05,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-10-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Assigned to Pensions,2022-03-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Assigned to Executive,2021-04-28,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Jason A. Barickman,2021-04-19,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-001-000,2022-03-25,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-16,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-09-21,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2021-05-28,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Burke,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-05,[],IL,102nd +Public Act . . . . . . . . . 102-0467,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 29, 2021",2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-20,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-05-19,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Jeff Keicher,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2023-01-06,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-09,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-05-11,[],IL,102nd +Added as Co-Sponsor Sen. Diane Pappas,2022-11-16,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Pursuant to Senate Rule 3-8(b-1) this amendment will remain in the Committee on Assignments.,2021-05-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-15,[],IL,102nd +Public Act . . . . . . . . . 102-0790,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-09,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2022-02-24,['amendment-passage'],IL,102nd +Third Reading - Passed; 053-002-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-10-28,[],IL,102nd +Public Act . . . . . . . . . 102-0861,2022-05-13,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-10,[],IL,102nd +Third Reading - Consent Calendar - Passed 115-002-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-23,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Emanuel Chris Welch,2022-12-02,[],IL,102nd +Public Act . . . . . . . . . 102-0995,2022-05-27,['became-law'],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-04-20,['amendment-failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Brady,2022-03-30,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2022-04-08,['amendment-introduction'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Katie Stuart,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Theresa Mah,2022-03-03,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Arrived in House,2022-04-01,['introduction'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-16,[],IL,102nd +Public Act . . . . . . . . . 102-0556,2021-08-20,['became-law'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Approved for Consideration Assignments,2023-01-04,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Rachelle Crowe,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt Local Government; 006-000-000,2021-04-20,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-16,['referral-committee'],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-02-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2022-03-16,[],IL,102nd +Chief House Sponsor Rep. Terra Costa Howard,2022-02-28,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Terra Costa Howard,2022-03-15,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 094-009-002,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-03-31,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2023-01-04,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2021-04-29,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-02,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Postponed - Executive,2022-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-20,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-09,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-11,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 005-000-000,2022-04-08,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-04-06,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 017-005-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-05-19,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dave Severin,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-03,[],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-03-09,['amendment-failure'],IL,102nd +Third Reading - Standard Debate - Passed 091-017-003,2021-04-23,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-02-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2022-04-01,[],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-05-05,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-04-05,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-03-08,[],IL,102nd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2021-02-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-14,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-21,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Fiscal Note Requested as Amended by Rep. Lakesia Collins,2021-04-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-02-10,[],IL,102nd +Second Reading - Short Debate,2021-10-27,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-01-05,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-08-31,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Assignments,2022-04-06,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Housing Committee; 014-008-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-03-25,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Cities & Villages Committee,2022-03-15,[],IL,102nd +Assigned to Ethics & Elections Committee,2022-04-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-02-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-03-28,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-03-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-03-02,[],IL,102nd +Do Pass / Short Debate Insurance Committee; 017-000-000,2022-04-08,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Agriculture,2022-03-16,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Adopted in Police & Fire Committee; by Voice Vote,2021-04-15,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-03-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Behavioral and Mental Health; 010-000-000,2022-02-22,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-04-27,['amendment-introduction'],IL,102nd +Do Pass as Amended Executive; 017-000-000,2022-04-07,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-09-21,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Land Conveyance Appraisal Note Requested by Rep. David A. Welter,2022-02-15,[],IL,102nd +Public Act . . . . . . . . . 102-0783,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-25,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Executive Committee,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2022-11-15,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2021-05-12,['amendment-introduction'],IL,102nd +Assigned to State Government Administration Committee,2022-03-07,['referral-committee'],IL,102nd +"Effective Date May 20, 2022",2022-05-20,[],IL,102nd +"Effective Date May 20, 2022",2022-05-20,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2022-11-30,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kambium Buckner,2022-11-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2022-03-08,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-05-17,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-0375,2021-08-13,['became-law'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +"Alternate Chief Sponsor Changed to Rep. Lawrence Walsh, Jr.",2022-02-25,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-10-20,['amendment-passage'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Michelle Mussman,2022-02-24,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-26,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-06,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-07-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2021-05-12,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Frances Ann Hurley,2021-05-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Public Act . . . . . . . . . 102-0789,2022-05-13,['became-law'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-02-22,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Do Pass as Amended / Short Debate Immigration & Human Rights Committee; 005-003-000,2021-05-19,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-02-15,[],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt Pensions; 008-000-000,2021-05-06,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2022-02-23,[],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-26,['amendment-passage'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2021-05-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2021-05-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ann Gillespie,2022-03-23,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2022-03-02,[],IL,102nd +Assigned to State Government Administration Committee,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 1 State Debt Impact Note Filed as Amended,2022-04-05,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 8, 2022",2022-04-04,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Will Guzzardi,2021-04-22,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-15,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-05,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-05-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-05,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2021-10-27,['amendment-introduction'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-14,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2021-05-30,['amendment-introduction'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0192,2021-07-30,['became-law'],IL,102nd +To Property Tax Subcommittee,2021-05-06,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-03-16,['committee-passage'],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Do Pass as Amended Licensed Activities; 005-000-000,2022-03-23,['committee-passage'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Postponed - Revenue,2022-03-23,[],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-20,[],IL,102nd +Pension Note Requested by Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +Do Pass as Amended / Short Debate Insurance Committee; 016-000-000,2022-04-06,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-23,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sonya M. Harper,2021-05-20,['amendment-introduction'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-04-05,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2022-03-15,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 013-000-000,2022-03-30,['committee-passage-favorable'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Recalled to Second Reading,2021-05-31,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Nicholas K. Smith,2022-03-23,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-15,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Melinda Bush,2021-04-27,['amendment-introduction'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2021-04-13,[],IL,102nd +Public Act . . . . . . . . . 102-0231,2021-07-30,['became-law'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Do Pass Education; 013-000-000,2022-03-23,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-03-24,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-04-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-03-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-26,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Judiciary,2022-03-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-12,[],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 005-001-000,2021-05-20,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Third Reading - Passed; 054-000-000,2021-03-25,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1) this amendment will remain in the Committee on Assignments.,2021-05-29,[],IL,102nd +Fiscal Note Requested by Rep. Brad Halbrook,2021-04-13,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-05-19,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0215,2021-07-30,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-05-05,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2021-05-19,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Resolution Adopted,2022-03-22,['passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-05,['amendment-passage'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Third Reading - Short Debate - Passed 102-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-12,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-25,[],IL,102nd +Do Pass as Amended Judiciary; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-21,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 6, 2021",2021-05-05,[],IL,102nd +Second Reading - Short Debate,2022-03-17,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0503,2021-08-20,['became-law'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Public Act . . . . . . . . . 102-0547,2021-08-20,['became-law'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-05-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-12,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0445,2021-08-20,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-30,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-04-23,['amendment-failure'],IL,102nd +Assigned to Ethics & Elections Committee,2022-01-25,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robert Rita,2021-05-30,['amendment-introduction'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Assigned to Health,2021-05-11,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0507,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-05-07,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-23,[],IL,102nd +Second Reading,2021-05-24,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Placed on Calendar - Consideration Postponed,2022-04-07,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-12-02,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-02,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Denyse Wang Stoneback,2021-04-15,['amendment-introduction'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0493,2021-08-20,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-28,[],IL,102nd +Placed on Calendar - Consideration Postponed,2021-04-23,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Placed on Calendar - Consideration Postponed,2021-04-23,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-03-04,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0479,2021-08-20,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-05,[],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-04-05,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-05-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +Public Act . . . . . . . . . 102-0541,2021-08-20,['became-law'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2022-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0431,2021-08-20,['became-law'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Suspend Rule 21 - Prevailed 071-043-000,2021-05-26,[],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-04-05,[],IL,102nd +Recalled to Second Reading,2021-05-28,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-26,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-04-22,['amendment-failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-07-06,[],IL,102nd +Public Act . . . . . . . . . 102-0417,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-02-24,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-05-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-21,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michelle Mussman,2021-05-14,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass Executive; 011-004-000,2021-05-27,['committee-passage'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-18,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2022-02-25,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Assigned to Energy and Public Utilities,2022-03-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Re-referred to Assignments,2021-06-01,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-03-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Chapin Rose,2022-03-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Do Pass Energy and Public Utilities; 018-000-000,2022-03-24,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2022-03-23,[],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2022-02-23,[],IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2022-04-05,['amendment-introduction'],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 110-000-001,2022-03-29,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended / Short Debate Energy & Environment Committee; 022-000-000,2022-03-22,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-04,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Amy Elik,2022-03-15,[],IL,102nd +Do Pass / Consent Calendar Financial Institutions Committee; 011-000-000,2021-05-06,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 014-000-000,2022-04-04,['committee-passage'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2022-03-23,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - March 31, 2022",2022-03-30,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2022-03-31,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0937,2022-05-27,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-08-05,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2022-03-21,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0728,2022-05-06,['became-law'],IL,102nd +Removed Co-Sponsor Rep. Kelly M. Cassidy,2022-03-04,[],IL,102nd +Arrived in House,2022-03-30,['introduction'],IL,102nd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 5, 2022",2022-04-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 7, 2022",2022-04-06,[],IL,102nd +Arrive in Senate,2022-03-30,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-04,[],IL,102nd +Removed from Short Debate Status,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-11-30,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Energy and Public Utilities,2022-03-28,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sandra Hamilton,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-12-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Melinda Bush,2021-05-12,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2021-04-27,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Public Act . . . . . . . . . 102-0969,2022-05-27,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2023-01-05,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-25,[],IL,102nd +Third Reading - Passed; 045-007-000,2023-01-06,"['passage', 'reading-3']",IL,102nd +Re-assigned to State Government,2023-01-04,['referral-committee'],IL,102nd +Second Reading,2021-10-27,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-12-22,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-04-04,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-17,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Energy and Public Utilities,2022-03-28,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-24,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-10-28,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2021-10-25,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-25,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-24,[],IL,102nd +Recommends Be Adopted Judiciary - Criminal Committee; 016-000-000,2021-04-27,['committee-passage-favorable'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-04-28,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-30,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Education,2022-03-22,[],IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 111-001-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-26,[],IL,102nd +Third Reading - Short Debate - Passed 111-005-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-02-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2022-03-28,[],IL,102nd +Chief Senate Sponsor Sen. John F. Curran,2022-03-04,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-26,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2022-03-24,[],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-03-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2023-01-03,[],IL,102nd +Assigned to Executive,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-04-06,['amendment-failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-05-03,[],IL,102nd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Laura M. Murphy,2022-11-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Alternate Chief Sponsor Changed to Sen. John F. Curran,2021-04-29,[],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2022-04-06,['committee-passage'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Second Reading,2021-10-19,['reading-2'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Re-assigned to Insurance,2021-05-10,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas M. Bennett,2022-04-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Terri Bryant,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-01-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John F. Curran,2022-04-07,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-21,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-03-22,[],IL,102nd +Senate Floor Amendment No. 1 Purusant to Senate Rule 3-8(b-1) the following amendments will remain in the Committee on Assignments.,2022-04-08,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-06-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2023-01-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Thomas M. Bennett,2022-02-24,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-09,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-04-04,[],IL,102nd +First Reading,2022-03-10,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2022-03-03,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Removed Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-17,[],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-10-20,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2023-01-03,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-21,[],IL,102nd +Second Reading,2021-05-24,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-27,[],IL,102nd +Do Pass Higher Education; 011-000-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2022-11-29,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0510,2021-08-20,['became-law'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 27, 2021",2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-001-000,2021-05-31,['committee-passage-favorable'],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Bill Cunningham,2021-05-30,['amendment-introduction'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Assigned to State Government,2021-05-10,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Linda Holmes,2021-08-31,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Do Pass / Short Debate Ethics & Elections Committee; 010-006-000,2021-05-11,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2023-01-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0471,2021-08-20,['became-law'],IL,102nd +Third Reading - Passed; 058-001-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-23,['amendment-failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-22,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2022-04-06,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Public Act . . . . . . . . . 102-0514,2021-08-20,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-20,[],IL,102nd +Do Pass Licensed Activities; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-01-09,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2021-05-12,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Assigned to Consumer Protection Committee,2021-05-04,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-03-22,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2021-05-06,['amendment-failure'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-03-10,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-06,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2021-04-27,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Education,2021-04-27,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-02,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended / Consent Calendar Higher Education Committee; 010-000-000,2021-05-12,['committee-passage'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0023,2021-06-25,['became-law'],IL,102nd +Governor Approved,2021-07-26,['executive-signature'],IL,102nd +"Effective Date July 1, 2023",2022-05-16,[],IL,102nd +Assigned to Consumer Protection Committee,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Second Reading,2021-05-24,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-05-05,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2021-05-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-05,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Assigned to Health Care Licenses Committee,2021-05-13,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-05-10,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +"Effective Date January 1, 2022",2021-08-16,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-02,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Executive,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-05-07,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 018-000-000,2021-05-11,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 31, 2021",2021-05-30,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-03,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-03,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-05-04,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-23,[],IL,102nd +Removed Co-Sponsor Rep. Amy Grant,2021-03-11,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Do Pass as Amended Higher Education; 012-000-000,2021-04-14,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-05-25,[],IL,102nd +Assigned to Executive,2022-04-04,['referral-committee'],IL,102nd +"Senate Floor Amendment No. 1 Withdrawn by Sen. Napoleon Harris, III",2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2021-05-12,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +First Reading,2022-02-17,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-21,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-22,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-04-21,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 31, 2021",2021-05-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0143,2021-07-23,['became-law'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-14,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-06,[],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Second Reading,2022-04-01,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Chief House Sponsor Rep. Anna Moeller,2021-04-26,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Passed Both Houses,2021-05-19,[],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Immigration & Human Rights Committee; by Voice Vote,2022-03-16,['amendment-passage'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2021-05-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-27,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 059-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0091,2021-07-09,['became-law'],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2021-10-19,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Charles Meier,2021-04-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 13, 2021",2021-05-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2022-03-30,[],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +Assigned to Human Services Committee,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Criminal Law,2021-05-18,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Assigned to Human Services Committee,2021-04-28,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Third Reading - Consent Calendar - Passed 109-003-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2021-05-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-06-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Keith R. Wheeler,2021-05-25,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-30,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Second Reading - Short Debate,2021-03-17,['reading-2'],IL,102nd +Assigned to Human Rights,2022-03-16,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-05-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Bob Morgan,2021-05-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 013-001-000,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-16,[],IL,102nd +Chief House Sponsor Rep. Randy E. Frese,2021-05-20,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-05-18,[],IL,102nd +Chief Senate Sponsor Sen. Thomas Cullerton,2021-04-15,[],IL,102nd +Arrive in Senate,2022-03-28,['introduction'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Chief House Sponsor Rep. Deb Conroy,2021-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0019,2021-06-25,['became-law'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-23,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-17,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 013-002-000,2021-05-05,['committee-passage'],IL,102nd +Postponed - Education,2021-05-12,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2022-04-04,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +Third Reading - Standard Debate - Passed 111-000-001,2021-04-20,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-02-23,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Do Pass Executive; 015-000-000,2022-03-23,['committee-passage'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Public Act . . . . . . . . . 102-0196,2021-07-30,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Fine,2021-05-19,['amendment-passage'],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2021-05-26,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0030,2021-06-25,['became-law'],IL,102nd +"Effective Date August 3, 2021",2021-08-03,[],IL,102nd +Governor Approved,2021-07-26,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-09,[],IL,102nd +Assigned to Health,2022-03-16,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Rep. David A. Welter,2021-05-19,[],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - Passed 082-025-001,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-05-21,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-02-10,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-03-10,[],IL,102nd +Assigned to Licensed Activities,2022-03-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-08-09,[],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-04-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-27,[],IL,102nd +First Reading,2022-03-16,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-09-08,[],IL,102nd +To Income Tax Subcommittee,2022-01-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dan Caulkins,2021-05-19,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-22,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +House Committee Amendment No. 1 Adopted in Energy & Environment Committee; by Voice Vote,2022-02-15,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-05-31,['amendment-introduction'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-23,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-28,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-04-06,[],IL,102nd +To Executive- Firearms,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2022-11-29,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-04-08,[],IL,102nd +Do Pass as Amended Environment and Conservation; 009-000-000,2022-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-01-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-12-01,[],IL,102nd +Do Pass as Amended / Short Debate Energy & Environment Committee; 016-009-000,2022-02-15,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 009-000-000,2022-11-29,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-03,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-02-10,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-03,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-03-18,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-08-09,[],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-09-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-04-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-03-10,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Will Guzzardi,2022-03-04,[],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-01-04,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-19,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ann Gillespie,2022-03-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2022",2022-03-24,[],IL,102nd +Do Pass Health; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. David Koehler,2021-04-16,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-12-01,[],IL,102nd +Do Pass Financial Institutions; 007-000-000,2022-03-30,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-15,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-19,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-05-20,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-03-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-15,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-25,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Assigned to Judiciary,2021-05-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Javier L Cervantes,2023-01-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-29,[],IL,102nd +Third Reading - Short Debate - Passed 070-044-001,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-20,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2023-01-03,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-11-29,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas M. Bennett,2021-05-14,[],IL,102nd +Public Act . . . . . . . . . 102-0484,2021-08-20,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0446,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-22,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-11,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-08-31,[],IL,102nd +"Removed from Consent Calendar Status Rep. Maurice A. West, II",2021-05-12,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-04,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Greg Harris,2021-05-31,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Antonio Muñoz,2022-08-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sue Rezin,2023-01-09,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Third Reading - Passed; 044-014-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-03-29,[],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 004-002-000,2021-03-25,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-02-23,[],IL,102nd +Removed Co-Sponsor Rep. Greg Harris,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Laura M. Murphy,2022-04-05,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-10-06,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-30,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-14,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2022-03-23,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. William Davis,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-10-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2021-04-20,[],IL,102nd +Passed Both Houses,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-31,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-04-14,[],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Assigned to Mental Health & Addiction Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-04,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-01,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2022-03-30,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-22,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0830,2022-05-13,['became-law'],IL,102nd +Resolution Adopted,2021-04-28,['passage'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura M. Murphy,2022-04-04,['filing'],IL,102nd +Added Alternate Co-Sponsor Rep. C.D. Davidsmeyer,2022-03-15,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Bradley Stephens,2021-03-26,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-22,[],IL,102nd +"Alternate Co-Sponsor Removed Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2023-01-03,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-21,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-21,['referral-committee'],IL,102nd +Postponed - Executive,2022-04-05,[],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-19,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-02-24,[],IL,102nd +Do Pass Energy and Public Utilities; 013-005-000,2022-03-24,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-01-06,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Robert Peters,2022-04-07,['amendment-introduction'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-16,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-05,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-12,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Second Reading,2022-02-22,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-12-08,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Craig Wilcox,2023-01-04,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-12,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-03-07,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Daniel Swanson,2022-03-16,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 28, 2021",2021-10-27,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 017-000-000,2022-04-08,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2022-03-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-12-22,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Postponed - Energy and Public Utilities,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 015-000-000,2022-03-23,[],IL,102nd +Assigned to Appropriations-General Services Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-05-18,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dave Vella,2022-03-21,['amendment-introduction'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-11-30,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Omar Aquino,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-04-04,[],IL,102nd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-04-06,[],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 007-000-000,2022-04-04,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Mattie Hunter,2021-05-26,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jason A. Barickman,2021-04-28,['amendment-introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-04-01,[],IL,102nd +Removed Co-Sponsor Rep. Margaret Croke,2022-02-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-22,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-03,[],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2022-04-06,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Deb Conroy,2022-03-25,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-05,[],IL,102nd +Third Reading - Passed; 038-017-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 102-003-002,2022-03-01,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading October 20, 2021",2021-10-19,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Re-assigned to Energy and Public Utilities,2021-05-04,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Purusant to Senate Rule 3-8(b-1) the following amendments will remain in the Committee on Assignments.,2022-04-08,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-03,[],IL,102nd +Referred to Rules Committee,2022-03-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-11-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-06,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2021-05-17,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-02-25,[],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-10-14,[],IL,102nd +Assigned to Veterans Affairs,2021-05-10,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Lakesia Collins,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-16,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-03-09,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-04-04,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Second Reading,2022-11-29,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-000-006,2022-04-08,[],IL,102nd +House Floor Amendment No. 3 Tabled Pursuant to Rule 40,2022-03-03,['amendment-failure'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 043-009-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2022-02-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2023-01-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-06-16,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Cristina Castro,2021-10-26,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2022-04-07,[],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-27,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-01-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2022-04-01,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0769,2022-05-13,['became-law'],IL,102nd +Assigned to State Government Administration Committee,2022-03-07,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-21,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dave Syverson,2021-04-29,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2022-03-25,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-04-05,[],IL,102nd +Assigned to Criminal Law,2021-05-11,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-04-16,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Avery Bourne,2021-04-29,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-05,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-05,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2021-05-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-05-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-30,[],IL,102nd +Do Pass Insurance; 011-000-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2022-03-04,[],IL,102nd +Public Act . . . . . . . . . 102-0047,2021-07-09,['became-law'],IL,102nd +"Effective Date August 16, 2021",2021-08-16,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Katie Stuart,2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-22,[],IL,102nd +Third Reading - Short Debate - Passed 076-039-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 15, 2021",2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-16,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2022-03-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Public Act . . . . . . . . . 102-0385,2021-08-16,['became-law'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Postponed - Education,2021-05-05,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 4, 2022",2022-04-01,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +"Effective Date July 26, 2021",2021-07-26,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-02,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +"Effective Date January 1, 2022",2021-07-26,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-12,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2022-03-07,[],IL,102nd +Public Act . . . . . . . . . 102-0269,2021-08-06,['became-law'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-23,[],IL,102nd +First Reading,2021-05-19,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2021-05-18,[],IL,102nd +First Reading,2021-05-21,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-05,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Effective Date January 1, 2022",2021-08-16,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Debbie Meyers-Martin,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-19,[],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-23,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-27,[],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-03-22,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Postponed - Executive,2021-05-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-05-11,[],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 006-001-000,2021-05-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-04-23,[],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-29,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-04,['reading-3'],IL,102nd +Assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Do Pass as Amended / Short Debate Immigration & Human Rights Committee; 005-003-000,2022-03-16,['committee-passage'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-10-19,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-05-03,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Do Pass Criminal Law; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-22,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-21,[],IL,102nd +Do Pass Human Rights; 005-000-000,2022-03-24,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-31,[],IL,102nd +Chief House Sponsor Rep. Justin Slaughter,2021-04-30,[],IL,102nd +Public Act . . . . . . . . . 102-0591,2021-08-27,['became-law'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Mark Luft,2021-05-30,[],IL,102nd +Assigned to Healthcare Access and Availability,2022-03-16,['referral-committee'],IL,102nd +Assigned to Executive,2022-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-03,[],IL,102nd +Public Act . . . . . . . . . 102-0825,2022-05-16,['became-law'],IL,102nd +First Reading,2021-04-15,['reading-1'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-03-03,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Public Act . . . . . . . . . 102-1085,2022-06-10,['became-law'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2022-02-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0243,2021-08-03,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Third Reading - Short Debate - Passed 112-001-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Public Act . . . . . . . . . 102-0455,2021-08-20,['became-law'],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-03-17,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2022-03-23,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-04-04,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tom Demmer,2021-05-04,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robert Rita,2021-05-25,[],IL,102nd +"Effective Date October 28, 2021",2021-07-30,[],IL,102nd +Senate Floor Amendment No. 3 Pursuant to Senate Rule 3-8(b-1) this amendment will remain in the Committee on Assignments.,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-05-30,['referral-committee'],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-03,[],IL,102nd +Assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0374,2021-08-13,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 067-041-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Arrived in House,2021-05-07,['introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-18,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-10,[],IL,102nd +Arrive in Senate,2022-02-23,['introduction'],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0045,2021-07-09,['became-law'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2021-05-14,[],IL,102nd +Waive Posting Notice,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2021-05-21,[],IL,102nd +Assigned to Veterans Affairs,2021-05-10,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Do Pass Criminal Law; 010-000-000,2021-05-19,['committee-passage'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Education; 012-000-000,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Education,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-17,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-29,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Caulkins,2022-03-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +To Executive- Elections,2021-05-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Avery Bourne,2021-03-10,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-03-02,[],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2022-03-07,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-15,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2021-05-07,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tom Demmer,2021-05-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-05-10,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-11-16,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-18,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-30,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2021-10-25,['amendment-introduction'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-04-16,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-09-22,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2021-05-28,[],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Alternate Co-Sponsor Removed Rep. Thomas Morrison,2021-05-05,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Placed on Calendar Order of First Reading,2022-02-24,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-06,['amendment-failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2022-03-09,[],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-24,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-03,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-05-25,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +House Floor Amendment No. 4 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-11,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-31,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-04-05,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-20,[],IL,102nd +Governor Approved,2021-08-23,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-01,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - March 23, 2021",2021-03-19,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-25,['amendment-failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mattie Hunter,2022-11-28,['amendment-introduction'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Keith R. Wheeler,2022-03-10,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading February 25, 2022",2022-02-24,[],IL,102nd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2022-02-28,[],IL,102nd +Public Act . . . . . . . . . 102-0968,2022-05-27,['became-law'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-11-30,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-03-15,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2022-04-08,['amendment-introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Deb Conroy,2021-05-10,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-17,[],IL,102nd +Do Pass / Short Debate Higher Education Committee; 008-002-000,2022-03-16,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-1021,2022-05-27,['became-law'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-04-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 057-000-000,2022-04-08,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2021-04-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2022-03-09,[],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-25,[],IL,102nd +"Alternate Chief Sponsor Changed to Rep. Curtis J. Tarver, II",2022-02-28,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-22,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-01-04,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-21,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-03-30,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-02,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-23,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Aquino,2022-04-07,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 5, 2022",2022-04-04,[],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-02-07,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-02-17,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) the following amendments will remain in the Committee on Assignments.,2022-03-08,[],IL,102nd +Do Pass as Amended Education; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-03-31,[],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-14,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +First Reading,2021-03-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-03-17,[],IL,102nd +Assigned to Transportation,2022-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-10-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2022-03-21,['amendment-introduction'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-03-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Diane Pappas,2022-04-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-03,[],IL,102nd +Passed Both Houses,2022-03-23,[],IL,102nd +Chief Senate Sponsor Sen. Omar Aquino,2021-04-23,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-10-26,['amendment-failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-03-17,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-14,['amendment-passage'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2021-04-21,[],IL,102nd +Approved for Consideration Assignments,2022-01-05,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Sara Feigenholtz,2022-03-04,['amendment-introduction'],IL,102nd +Assigned to Education,2022-03-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 5 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-02-24,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-28,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2022-03-22,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2022-03-03,['amendment-failure'],IL,102nd +Assigned to Appropriations-Elementary & Secondary Education Committee,2022-03-07,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-03-15,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2022-03-25,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2023-01-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-02-24,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Remains in Judiciary - Criminal Committee,2021-05-12,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 8, 2022",2022-04-04,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Maura Hirschauer,2021-04-23,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Aquino,2021-05-06,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-03-03,[],IL,102nd +First Reading,2021-04-15,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-04-15,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Assigned to Higher Education Committee,2022-03-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-03-01,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-03-02,[],IL,102nd +Public Act . . . . . . . . . 102-0834,2022-05-13,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 102-001-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-28,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 101-008-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2021-05-13,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Ram Villivalam,2023-01-05,[],IL,102nd +Sponsor Removed Sen. Doris Turner,2022-04-04,[],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Consent Calendar - Passed 103-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-09,[],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-05,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lance Yednock,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-05-12,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-000-000,2022-03-23,['committee-passage'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Michael J. Zalewski,2021-10-28,['amendment-introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-03-08,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-02-17,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-01-04,[],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-27,[],IL,102nd +Judicial Note Requested by Rep. La Shawn K. Ford,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-05-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 30, 2022",2022-03-29,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Assigned to State Government,2021-04-28,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2021-04-15,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Chief House Sponsor Rep. Dave Vella,2022-02-28,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Labor & Commerce Committee; 015-011-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-03-03,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2021-10-27,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-07-07,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-10-18,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2021-09-01,[],IL,102nd +Third Reading - Short Debate - Passed 107-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-20,[],IL,102nd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2021-05-13,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-15,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +"House Floor Amendment No. 3 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-04-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-02,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-14,[],IL,102nd +Arrived in House,2021-05-26,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-05-04,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 015-000-000,2021-05-30,['committee-passage-favorable'],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2021-05-06,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-04-05,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-23,[],IL,102nd +Sent to the Governor,2022-04-19,['executive-receipt'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Alternate Co-Sponsor Removed Rep. Sonya M. Harper,2022-03-25,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Linda Holmes,2021-05-29,['filing'],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-24,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Chief House Sponsor Rep. Deb Conroy,2021-04-22,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Do Pass Agriculture; 011-000-000,2022-03-24,['committee-passage'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-02-05,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Public Act . . . . . . . . . 102-0279,2021-08-06,['became-law'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-25,['amendment-passage'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Michael Halpin,2021-05-20,['amendment-introduction'],IL,102nd +Recalled to Second Reading,2022-02-23,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-19,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Assigned to Executive Committee,2021-10-14,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-14,[],IL,102nd +Do Pass Executive; 017-000-000,2021-05-06,['committee-passage'],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0094,2021-07-09,['became-law'],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-06,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-04-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-21,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-05-04,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Alternate Co-Sponsor Removed Rep. Chris Bos,2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Revenue; 010-000-000,2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2023-01-10,[],IL,102nd +"Senate Floor Amendment No. 3 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments.",2022-01-26,[],IL,102nd +Senate Floor Amendment No. 4 Adopted; Morrison,2022-02-25,['amendment-passage'],IL,102nd +House Committee Amendment No. 2 Adopted in Judiciary - Civil Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 20, 2021",2021-05-19,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2021-04-22,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Third Reading - Short Debate - Passed 113-001-001,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2021-05-14,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Do Pass as Amended Judiciary; 006-000-000,2021-05-25,['committee-passage'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Chief Senate Sponsor Sen. Ann Gillespie,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-04,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0593,2021-08-27,['became-law'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-03,[],IL,102nd +Public Act . . . . . . . . . 102-0293,2021-08-06,['became-law'],IL,102nd +Suspend Rule 21 - Prevailed,2022-03-15,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Co-Sponsor Rep. Margaret Croke,2021-02-08,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +Second Reading,2021-05-24,['reading-2'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-05-25,[],IL,102nd +Arrived in House,2021-05-07,['introduction'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2021-04-19,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-04-14,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-28,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michael J. Zalewski,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-11,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-22,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-22,[],IL,102nd +Third Reading - Passed; 040-015-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Ann M. Williams,2021-04-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-18,['reading-2'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Third Reading - Short Debate - Passed 103-012-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Assigned to Healthcare Access and Availability,2022-03-16,['referral-committee'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-05-20,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-05,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-04-28,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Do Pass State Government; 009-000-000,2021-05-06,['committee-passage'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2022-03-24,[],IL,102nd +Be Adopted Health; 012-000-000,2022-04-04,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Morrison,2021-05-19,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2021-05-12,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2021-05-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-16,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-05-13,[],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Appropriations-Human Services Committee; 017-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-04-13,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-20,[],IL,102nd +Public Act . . . . . . . . . 102-0501,2021-08-20,['became-law'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Ethics & Elections Committee,2022-01-25,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-28,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2022-12-02,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-15,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-04,[],IL,102nd +Assigned to Pensions,2021-05-04,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0499,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-02-24,[],IL,102nd +Do Pass Criminal Law; 007-003-000,2021-05-19,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-13,[],IL,102nd +Third Reading - Passed; 053-004-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Public Act . . . . . . . . . 102-0536,2021-08-20,['became-law'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Rachelle Crowe,2022-03-28,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0463,2021-08-20,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-07-07,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2021-05-10,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2021-05-13,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-03-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Senate Floor Amendment No. 1 Withdrawn by Sen. Sally J. Turner,2021-05-28,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Anna Moeller,2022-03-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-04-05,[],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-04-23,['amendment-failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Johnson,2022-02-25,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Assigned to Health,2021-05-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2021-05-07,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-02-25,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-05-07,[],IL,102nd +Chief Sponsor Changed to Sen. Michael E. Hastings,2021-05-26,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2022-03-07,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Public Act . . . . . . . . . 102-0486,2021-08-20,['became-law'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-21,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Don Harmon,2021-05-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-14,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-03-31,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-17,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason A. Barickman,2021-05-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Public Act . . . . . . . . . 102-0894,2022-05-20,['became-law'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Lindsey LaPointe,2022-04-01,['amendment-introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2022-11-30,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-11-30,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2022-03-08,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 009-001-000,2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-05-17,[],IL,102nd +Public Act . . . . . . . . . 102-0893,2022-05-20,['became-law'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Senate Committee Amendment No. 3 Postponed - Executive,2022-02-24,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-04,['reading-3'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Assigned to Executive,2022-04-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Appropriations-Public Safety Committee,2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-03-03,[],IL,102nd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2022-03-02,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-07,[],IL,102nd +Public Act . . . . . . . . . 102-0832,2022-05-13,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-04-19,[],IL,102nd +Added as Co-Sponsor Sen. Diane Pappas,2022-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-23,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-12,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-06,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Remove Chief Co-Sponsor Rep. Daniel Didech,2022-02-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-04-01,[],IL,102nd +Second Reading,2023-01-04,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2022-03-30,[],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Arrive in Senate,2023-01-03,['introduction'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-05-13,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-10,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-05-03,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2022-03-03,[],IL,102nd +Arrive in Senate,2022-04-01,['introduction'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-08,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Energy & Environment Committee; 017-006-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-01,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-04-15,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Barbara Hernandez,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-28,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-24,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2023-01-04,[],IL,102nd +Arrived in House,2022-03-09,['introduction'],IL,102nd +Do Pass Transportation; 017-000-000,2022-03-29,['committee-passage'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Theresa Mah,2022-11-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2022-03-04,[],IL,102nd +Approved for Consideration Assignments,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-14,[],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Adopted; Cunningham,2021-04-21,['amendment-passage'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-04-27,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. Robert Rita,2021-04-30,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Thomas Morrison,2021-04-20,[],IL,102nd +Second Reading,2022-03-31,['reading-2'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-02-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-03-16,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-0837,2022-05-13,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-04-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 012-001-000,2022-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Chris Bos,2022-03-22,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-20,[],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2021-04-22,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. LaToya Greenwood,2022-03-18,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 101-010-000,2022-03-24,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2022-09-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Do Pass as Amended / Standard Debate Police & Fire Committee; 008-006-000,2021-04-15,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2022-03-16,[],IL,102nd +Assigned to Health,2022-03-02,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-10-27,['reading-2'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-02,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +House Committee Amendment No. 2 Fiscal Note Requested as Amended by Rep. Lakesia Collins,2021-04-14,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Assigned to Agriculture,2021-05-18,['referral-committee'],IL,102nd +State Debt Impact Note Requested by Rep. David A. Welter,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-02-10,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Moved to Suspend Rule 21 Rep. Natalie A. Manley,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-03-02,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Deanne M. Mazzochi,2021-04-21,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-06,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Removed Co-Sponsor Rep. Kelly M. Cassidy,2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0764,2022-05-13,['became-law'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-03-22,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Cristina Castro,2021-05-30,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Executive,2022-03-08,[],IL,102nd +Do Pass Judiciary; 007-000-000,2022-04-04,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Public Act . . . . . . . . . 102-0219,2021-07-30,['became-law'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. William Davis,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-07-21,[],IL,102nd +Assigned to Energy & Environment Committee,2022-03-07,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2021-05-05,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-1023,2022-05-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Do Pass as Amended Executive; 016-000-000,2021-05-19,['committee-passage'],IL,102nd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-01,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas M. Bennett,2021-05-06,[],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-22,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-26,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-19,[],IL,102nd +State Mandates Fiscal Note Requested by Rep. Brad Halbrook,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2021-05-12,[],IL,102nd +Do Pass as Amended Licensed Activities; 008-000-000,2021-05-06,['committee-passage'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Third Reading - Passed; 045-009-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kambium Buckner,2021-05-26,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2021-05-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-12,[],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Do Pass as Amended / Consent Calendar Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-23,[],IL,102nd +Recalled to Second Reading,2021-05-06,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-20,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Do Pass as Amended Labor; 015-000-000,2021-05-19,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Governor Approved,2021-08-19,['executive-signature'],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2021-05-12,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-22,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2021-05-12,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-08,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-17,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-10-20,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-02-22,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-29,['committee-passage-favorable'],IL,102nd +Reported Back To Criminal Law; 002-000-000,2021-05-18,[],IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Greg Harris,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor All Other Members of the House,2022-03-22,[],IL,102nd +Second Reading,2021-05-25,['reading-2'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Assigned to Appropriations,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-22,[],IL,102nd +Second Reading,2022-04-01,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-03-25,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0191,2021-07-30,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-03-09,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-16,[],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Approved for Consideration Rules Committee; 003-000-000,2021-05-11,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-14,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-19,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2021-04-13,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Laura Fine,2021-04-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Martwick,2021-05-31,['amendment-passage'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2022-03-31,[],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-22,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Public Act . . . . . . . . . 102-0200,2021-07-30,['became-law'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-05-20,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2022-03-24,[],IL,102nd +Public Act . . . . . . . . . 102-0924,2022-05-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-30,[],IL,102nd +Sent to the Governor,2022-04-18,['executive-receipt'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Balanced Budget Note Filed as Amended,2022-04-06,[],IL,102nd +Third Reading - Passed; 057-001-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments.",2022-04-05,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Assigned to Health,2021-05-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2022-02-15,['amendment-passage'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-28,[],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +Third Reading - Passed; 052-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 006-000-000,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-04,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas Morrison,2021-05-26,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-03-09,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-19,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-27,[],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2022-03-16,['amendment-passage'],IL,102nd +"Chief House Sponsor Rep. Maurice A. West, II",2022-04-06,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - April 6, 2022",2022-04-06,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Ethics & Elections Committee,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2022-03-28,[],IL,102nd +Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 4, 2022",2022-04-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2022-03-22,['amendment-introduction'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-04-28,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +"Alternate Chief Sponsor Changed to Rep. Lawrence Walsh, Jr.",2021-10-27,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-05-30,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading October 19, 2021",2021-10-13,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-23,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Sent to the Governor,2022-04-19,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 5, 2022",2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-27,[],IL,102nd +Governor Approved,2022-04-22,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 26, 2021",2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-16,[],IL,102nd +Assigned to Criminal Law,2021-05-10,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2021-05-06,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Cristina Castro,2021-05-28,['filing'],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-02-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-14,[],IL,102nd +To Appropriations- Health,2021-05-10,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2022-03-24,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-11,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-28,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0152,2021-07-23,['became-law'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-20,[],IL,102nd +"Alternate Chief Sponsor Changed to Rep. Edgar Gonzalez, Jr.",2021-05-03,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Revenue; 010-000-000,2021-04-21,[],IL,102nd +Public Act . . . . . . . . . 102-0749,2022-05-06,['became-law'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-02,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-20,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Frances Ann Hurley,2021-05-13,[],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Re-assigned to State Government,2021-10-13,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-07-21,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2022-03-30,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-01,[],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-13,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Insurance Committee; 016-000-000,2022-02-15,['committee-passage'],IL,102nd +Third Reading - Passed; 057-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 4 Adopted; Martwick,2021-05-06,['amendment-passage'],IL,102nd +Assigned to Veterans Affairs,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-14,[],IL,102nd +"Effective Date January 1, 2022",2021-08-19,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-25,['amendment-failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Passed Both Houses,2021-03-25,[],IL,102nd +Public Act . . . . . . . . . 102-0297,2021-08-06,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0330,2021-08-06,['became-law'],IL,102nd +Third Reading - Passed; 044-002-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Commerce,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Judicial Note Filed as Amended,2022-04-06,[],IL,102nd +Do Pass / Short Debate Higher Education Committee; 006-004-000,2021-05-12,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-25,['amendment-passage'],IL,102nd +"Placed on Calendar Order of First Reading April 28, 2021",2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-002-000,2021-05-31,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-001,2021-05-26,"['passage', 'reading-3']",IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Governor Approved,2021-08-03,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Katie Stuart,2021-05-21,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-05,[],IL,102nd +First Reading,2021-04-15,['reading-1'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-15,['amendment-passage'],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2022-03-18,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Martwick,2021-05-31,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Assigned to Local Government,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-25,['amendment-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-30,['amendment-passage'],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt Executive; 016-000-000,2022-03-09,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Do Pass as Amended / Short Debate Human Services Committee; 015-000-000,2022-03-16,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Do Pass Health; 014-000-000,2021-05-12,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-03-09,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-12,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2021-03-10,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Transportation: Vehicles & Safety Committee; 011-000-000,2021-05-12,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-17,[],IL,102nd +Public Act . . . . . . . . . 102-0213,2021-07-30,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0186,2021-07-30,['became-law'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-17,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-04-22,[],IL,102nd +Do Pass as Amended / Short Debate State Government Administration Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2022-03-01,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-27,[],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2021-05-05,['amendment-introduction'],IL,102nd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2022-03-18,['amendment-introduction'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Deb Conroy,2022-03-01,[],IL,102nd +Adopted Both Houses,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-04-16,[],IL,102nd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2021-04-23,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Steve Stadelman,2022-04-06,['filing'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-02-24,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-18,['amendment-passage'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Sonya M. Harper,2021-05-24,['amendment-introduction'],IL,102nd +"Effective Date August 16, 2021",2021-08-16,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Luft,2022-03-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 30, 2022",2022-03-29,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2022-03-16,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-26,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-14,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +"Placed on Calendar Order of 2nd Reading August 31, 2021",2021-08-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2022-04-01,['reading-1'],IL,102nd +Chief House Sponsor Rep. Lance Yednock,2022-03-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-04-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Public Act . . . . . . . . . 102-0841,2022-05-13,['became-law'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 076-038-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0879,2022-05-13,['became-law'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Karina Villa,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-02-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2022-11-22,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-09,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-04-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2021-05-03,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-05-05,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-05,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-15,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-04-06,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2022-03-11,[],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading January 5, 2023",2023-01-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2022-03-31,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-23,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Bradley Stephens,2022-03-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-01,[],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 017-011-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 5, 2022",2022-04-04,[],IL,102nd +Second Reading,2023-01-04,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Higher Education Committee,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Eva-Dina Delgado,2022-04-05,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Sara Feigenholtz,2022-04-08,[],IL,102nd +Assigned to Transportation,2022-03-22,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Terri Bryant,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-05-13,[],IL,102nd +Placed on Calendar Order of First Reading,2023-01-03,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2022-04-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-04-27,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-02-07,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-02-17,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0496,2021-08-20,['became-law'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-04,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Anna Moeller,2022-02-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Assigned to Health,2021-05-10,['referral-committee'],IL,102nd +Third Reading - Passed; 044-013-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-22,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-04-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Public Act . . . . . . . . . 102-0470,2021-08-20,['became-law'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Robert Peters,2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-0551,2021-08-20,['became-law'],IL,102nd +Chief House Sponsor Rep. C.D. Davidsmeyer,2021-04-27,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-02-09,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-04-21,[],IL,102nd +Public Act . . . . . . . . . 102-0557,2021-08-20,['became-law'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Public Act . . . . . . . . . 102-0548,2021-08-20,['became-law'],IL,102nd +Do Pass Pensions; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-12-02,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-07-07,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-24,[],IL,102nd +Public Act . . . . . . . . . 102-0447,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-12-01,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2021-05-14,[],IL,102nd +Chief Senate Sponsor Sen. Jacqueline Y. Collins,2021-04-22,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-05-20,[],IL,102nd +Third Reading - Short Debate - Passed 072-045-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-31,[],IL,102nd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2022-03-16,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-21,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-12,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-05-21,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-10-08,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-006-000,2021-05-06,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-01-11,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-09-08,['referral-committee'],IL,102nd +Do Pass Health; 014-000-000,2021-05-12,['committee-passage'],IL,102nd +Do Pass Health; 011-000-000,2021-05-19,['committee-passage'],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Lindsey LaPointe,2021-05-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-31,[],IL,102nd +Removed from Short Debate Status,2021-04-21,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Ethics,2021-05-18,[],IL,102nd +Assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-02-25,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michael T. Marron,2021-05-07,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Antonio Muñoz,2021-06-15,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2021-05-11,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 005-003-000,2022-03-16,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Celina Villanueva,2022-11-16,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 113-003-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-11-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-12,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. David Friess,2022-11-30,[],IL,102nd +Reported Back To Executive; 003-000-000,2021-05-26,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-16,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2022-02-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Housing Affordability Impact Note Requested as Amended by Rep. Deanne M. Mazzochi,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-09-21,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-24,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-04-05,[],IL,102nd +State Mandates Fiscal Note Requested by Rep. David A. Welter,2022-02-15,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-22,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-03-30,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-02,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-03-18,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0773,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-02-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2022-03-21,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-05-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-04-15,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2022-03-31,[],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-03,[],IL,102nd +Public Act . . . . . . . . . 102-0762,2022-05-13,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2021-05-18,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Elizabeth Hernandez,2021-10-28,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-04-27,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Karina Villa,2022-04-06,[],IL,102nd +Suspend Rule 21 - Prevailed 065-042-000,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Frances Ann Hurley,2021-05-11,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 30, 2021",2021-05-29,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Prescription Drug Affordability & Accessibility Committee,2021-03-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Fine,2021-05-12,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Do Pass as Amended Labor; 012-000-000,2021-05-19,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Third Reading - Short Debate - Passed 074-040-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Do Pass Healthcare Access and Availability; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-26,[],IL,102nd +Do Pass Executive; 017-000-000,2021-05-29,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2022-02-23,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2021-04-29,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 006-000-000,2021-05-11,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Sent to the Governor,2021-06-15,['executive-receipt'],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kathleen Willis,2021-03-17,['amendment-introduction'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 8, 2022",2022-04-04,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-26,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Adam Niemerg,2021-05-12,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Janet Yang Rohr,2022-02-24,['amendment-introduction'],IL,102nd +Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2022",2022-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Carol Ammons,2021-10-19,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-14,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-04-14,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 017-000-000,2021-05-20,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-14,[],IL,102nd +Public Act . . . . . . . . . 102-0401,2021-08-16,['became-law'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-16,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Health; 013-000-000,2021-05-19,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Do Pass / Short Debate Executive Committee; 013-000-000,2021-05-25,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2022-04-06,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-23,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 099-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2022-03-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-05-12,[],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-19,[],IL,102nd +Referred to Rules Committee,2021-05-21,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Recalled to Second Reading,2021-05-30,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Janet Yang Rohr,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-03,[],IL,102nd +Public Act . . . . . . . . . 102-0212,2021-07-30,['became-law'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-03-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2021-05-10,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jawaharial Williams,2021-05-19,[],IL,102nd +Referred to Rules Committee,2021-05-19,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 27, 2021",2021-05-26,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-23,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Chief Senate Sponsor Sen. Jason A. Barickman,2021-04-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-21,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Chief House Sponsor Rep. Jonathan Carroll,2021-05-07,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2022-04-06,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0163,2021-07-26,['became-law'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 20, 2021",2021-05-19,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-05-21,[],IL,102nd +Do Pass as Amended / Short Debate Human Services Committee; 015-000-000,2022-03-23,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Third Reading - Short Debate - Passed 098-016-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2022-04-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Do Pass / Consent Calendar Judiciary - Criminal Committee; 018-000-000,2021-05-11,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-12-29,[],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2021-04-27,[],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Public Act . . . . . . . . . 102-0197,2021-07-30,['became-law'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-03,[],IL,102nd +Public Act . . . . . . . . . 102-0185,2021-07-30,['became-law'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 009-006-000,2021-05-31,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael J. Zalewski,2021-05-12,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-10,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-12,[],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Executive,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-03-02,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-05-18,[],IL,102nd +Public Act . . . . . . . . . 102-0164,2021-07-26,['became-law'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-14,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-05-03,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 015-000-000,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Arrived in House,2021-05-27,['introduction'],IL,102nd +Public Act . . . . . . . . . 102-0396,2021-08-16,['became-law'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-05-11,[],IL,102nd +Public Act . . . . . . . . . 102-0039,2021-06-25,['became-law'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-17,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Meg Loughran Cappel,2021-04-30,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-30,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-24,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Financial Institutions,2022-03-23,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-10-28,[],IL,102nd +Do Pass Commerce; 008-000-000,2022-03-24,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-22,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-02-22,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2022-03-15,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Third Reading - Short Debate - Passed 105-002-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-04-04,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-01-08,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2021-03-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Alternate Co-Sponsor Removed Rep. Carol Ammons,2022-03-24,[],IL,102nd +Reported Back To Revenue & Finance Committee;,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-02-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Steven M. Landek,2022-04-05,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Mark Luft,2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-11-30,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2021-05-14,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-12-08,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-21,['referral-committee'],IL,102nd +Do Pass / Short Debate Appropriations-General Services Committee; 010-005-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2021-12-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2022-04-01,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Assigned to Judiciary,2022-03-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Alternate Chief Sponsor Changed to Sen. Steve Stadelman,2021-10-25,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - April 4, 2022",2022-04-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-02-24,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-04-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2022-03-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-06,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-16,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Alternate Chief Co-Sponsor Changed to Rep. Lakesia Collins,2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-16,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-03-01,[],IL,102nd +Waive Posting Notice,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-14,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-04,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2022-04-06,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-03,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Chapin Rose,2022-03-30,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Meg Loughran Cappel,2022-03-25,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading October 19, 2021",2021-10-13,[],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 013-000-000,2022-04-05,['committee-passage'],IL,102nd +Third Reading - Short Debate - Passed 090-020-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-24,[],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2022-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-05-05,[],IL,102nd +Assigned to Licensed Activities,2022-03-16,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2021-05-12,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-28,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2022-03-22,['amendment-passage'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2022-03-24,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-25,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-04-04,[],IL,102nd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2022-03-07,[],IL,102nd +Third Reading - Passed; 056-000-001,2021-10-28,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-01-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading February 23, 2022",2022-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-04-08,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Recalled to Second Reading,2022-03-31,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2023-01-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Omar Aquino,2022-04-05,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-11-30,[],IL,102nd +"Removed Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-04,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-03-30,[],IL,102nd +Assigned to Insurance Committee,2021-04-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-11,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-16,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-03-31,[],IL,102nd +Removed Co-Sponsor Rep. Dagmara Avelar,2022-02-25,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tony McCombie,2022-03-08,['amendment-introduction'],IL,102nd +Third Reading - Standard Debate - Passed 104-008-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2021-04-15,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-04-06,[],IL,102nd +First Reading,2022-03-28,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-18,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2022-11-30,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-09-07,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2022-03-25,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Removed from Consent Calendar Status Rep. Dan Caulkins,2021-05-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-08-09,[],IL,102nd +Removed Co-Sponsor Rep. Ryan Spain,2022-03-10,[],IL,102nd +Third Reading - Short Debate - Passed 064-033-003,2022-03-03,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2022-03-31,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-02-23,[],IL,102nd +Re-assigned to Health,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2022-03-21,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-11,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Assigned to Cities & Villages Committee,2021-05-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-01-04,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-03-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-04,[],IL,102nd +Assigned to Executive,2023-01-04,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Seth Lewis,2021-04-15,[],IL,102nd +Do Pass as Amended Revenue; 010-000-000,2022-11-29,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-0534,2021-08-20,['became-law'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Bill Cunningham,2021-05-30,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Assigned to Insurance Committee,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-03,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0549,2021-08-20,['became-law'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 011-007-000,2021-05-26,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-0562,2021-08-20,['became-law'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-12,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2023-01-09,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-04-22,[],IL,102nd +Third Reading - Passed; 050-000-002,2023-01-05,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-08-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2021-05-10,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-04-06,['amendment-failure'],IL,102nd +Second Reading - Short Debate,2021-10-20,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. LaToya Greenwood,2021-05-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2021-05-18,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-10-27,['amendment-introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Fiscal Note Requested - Withdrawn by Rep. Tom Demmer,2022-11-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-02-16,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Denyse Wang Stoneback,2021-03-22,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-08,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 3 Purusant to Senate Rule 3-8(b-1) the following amendments will remain in the Committee on Assignments.,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2022-02-17,[],IL,102nd +Assigned to Executive Committee,2022-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-06-16,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 109-000-002,2022-03-03,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0766,2022-05-13,['became-law'],IL,102nd +"Placed on Calendar Order of 3rd Reading November 30, 2022",2022-11-29,[],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0770,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-01-18,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Revenue & Finance Committee,2021-05-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-09,[],IL,102nd +Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +To Executive- Government Operations,2021-05-06,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-14,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2022-03-04,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 28, 2021",2021-05-27,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Criminal Law,2021-05-04,['referral-committee'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-01-05,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-05,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Terri Bryant,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2022-03-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-04-28,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 3 Adopted; D. Turner,2022-02-23,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Small Business,Tech Innovation, and Entrepreneurship Committee",2022-04-05,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2022-02-16,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-05-27,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-03-29,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-05-07,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Assigned to Health,2021-05-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-27,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-05-26,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-03-28,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Healthcare Access and Availability,2021-05-11,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-02-05,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-03,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions April 5, 2022",2022-04-04,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2022-03-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2021-05-05,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-22,[],IL,102nd +Second Reading,2021-10-19,['reading-2'],IL,102nd +Do Pass as Amended Education; 010-000-000,2021-05-12,['committee-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2021-03-24,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-16,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading November 29, 2022",2022-11-16,[],IL,102nd +Resolution Adopted,2022-04-08,['passage'],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 015-000-000,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,['committee-passage-favorable'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-05,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-19,[],IL,102nd +Chief Co-Sponsor Changed to Rep. David A. Welter,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Assigned to Transportation,2021-05-04,['referral-committee'],IL,102nd +Assigned to Higher Education,2022-03-16,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2021-05-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-30,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-28,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2022",2022-03-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. David Friess,2021-05-13,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0058,2021-07-09,['became-law'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2021-05-04,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-20,[],IL,102nd +Sent to the Governor,2021-06-21,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-22,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-21,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-22,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-20,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-04-15,[],IL,102nd +"Do Pass as Amended / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-05-13,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-20,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Senate Floor Amendment No. 3 Filed with Secretary by Sen. Napoleon Harris, III",2022-04-01,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0299,2021-08-06,['became-law'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2021-05-19,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Carol Ammons,2021-05-30,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2021-05-10,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Redistricting Committee,2021-05-28,[],IL,102nd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 014-001-000,2021-05-12,['committee-passage'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2021-05-14,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-05-13,['committee-passage'],IL,102nd +Governor Approved,2022-06-17,['executive-signature'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 26, 2021",2021-05-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Do Pass Executive; 015-000-000,2022-03-23,['committee-passage'],IL,102nd +Re-assigned to Labor,2021-10-13,['referral-committee'],IL,102nd +Second Reading,2022-02-10,['reading-2'],IL,102nd +Assigned to Counties & Townships Committee,2021-05-13,['referral-committee'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2023-01-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2021-05-28,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0092,2021-07-09,['became-law'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 070-045-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Assigned to Judiciary,2021-05-11,['referral-committee'],IL,102nd +Governor Approved,2021-07-26,['executive-signature'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-06,['amendment-failure'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-03-02,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Do Pass / Short Debate Executive Committee; 009-005-000,2022-03-15,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-29,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0133,2021-07-23,['became-law'],IL,102nd +House Floor Amendment No. 4 Adopted,2021-04-22,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Linda Holmes,2021-04-29,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Arrived in House,2021-05-12,['introduction'],IL,102nd +Do Pass as Amended Labor; 015-000-000,2021-05-19,['committee-passage'],IL,102nd +Do Pass State Government; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Revenue & Finance Committee,2021-05-24,[],IL,102nd +Co-Sponsor Rep. Katie Stuart,2021-02-08,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-04-05,[],IL,102nd +Public Act . . . . . . . . . 102-0048,2021-07-09,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Dagmara Avelar,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Emanuel Chris Welch,2021-10-18,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-02-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-02-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-03-02,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-04-05,[],IL,102nd +Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0061,2021-07-09,['became-law'],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-15,[],IL,102nd +Waive Posting Notice,2022-04-05,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jonathan Carroll,2021-04-19,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-21,['referral-committee'],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-04-28,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-05-26,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2022-03-25,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 011-000-000,2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-03-07,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-23,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-28,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-05-12,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2021-04-27,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-10-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-03-15,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Do Pass Executive; 016-000-000,2022-04-05,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2022-03-14,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-23,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-08,[],IL,102nd +House Floor Amendment No. 1 Fiscal Note Requested as Amended by Rep. Avery Bourne,2021-04-20,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-13,[],IL,102nd +Postponed - Transportation,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-10-26,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Dave Vella,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Laura M. Murphy,2022-02-17,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0824,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 015-000-000,2022-02-22,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-15,[],IL,102nd +Arrived in House,2021-10-27,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-01,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Behavioral and Mental Health; 010-000-000,2022-02-22,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-14,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-04-04,[],IL,102nd +Third Reading - Passed; 037-012-000,2022-03-09,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michelle Mussman,2022-03-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2022-03-31,[],IL,102nd +Assigned to Judiciary - Civil Committee,2022-03-17,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-04-07,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Alternate Co-Sponsor Removed Rep. Deb Conroy,2022-03-10,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-001,2022-03-31,"['passage', 'reading-3']",IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2022-11-30,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 5, 2022",2022-01-05,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Craig Wilcox,2022-03-23,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-05-13,[],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-02,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-05-26,[],IL,102nd +House Committee Amendment No. 1 Adopted in Housing Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Assigned to Licensed Activities,2021-05-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-04-04,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 010-003-000,2022-03-25,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-22,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-02,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-04-01,['amendment-failure'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-01,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2021-05-13,[],IL,102nd +Senate Committee Amendment No. 4 Adopted,2022-02-24,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Second Reading - Short Debate,2023-01-06,['reading-2'],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Sent to the Governor,2022-04-21,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2022-03-08,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-31,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-17,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-03-07,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2022-03-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-04-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-28,[],IL,102nd +Assigned to Judiciary - Civil Committee,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-21,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-24,[],IL,102nd +"Alternate Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-04-06,['amendment-failure'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-03-30,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 020-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Re-assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-11,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-05-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2023-01-06,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-11-16,[],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-02,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-07,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +"Committee Deadline Extended-Rule 9(b) May 28, 2021",2021-05-24,[],IL,102nd +Assigned to Labor,2022-03-16,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Public Act . . . . . . . . . 102-0533,2021-08-20,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-02,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-05,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Waive Posting Notice,2022-03-29,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-24,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-05-24,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Tim Butler,2021-05-05,[],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2022-02-24,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Arrived in House,2021-05-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-09-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-10,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-03-18,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-10-25,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-16,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2021-05-11,[],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-15,[],IL,102nd +Referred to Rules Committee,2022-03-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-20,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-10-20,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2022-02-08,[],IL,102nd +"Effective Date January 1, 2022",2021-08-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2021-04-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2021-03-19,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-21,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-11-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2021-05-18,[],IL,102nd +Do Pass State Government; 009-000-000,2021-05-06,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Meg Loughran Cappel,2022-04-05,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-10-19,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-05-20,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-04-04,[],IL,102nd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2021-04-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2022-03-30,[],IL,102nd +First Reading,2021-05-13,['reading-1'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-22,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading November 29, 2022",2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-17,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Kelly M. Cassidy,2021-04-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-07-07,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-01-04,[],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2022-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-03-08,[],IL,102nd +3/5 Vote Required,2021-09-01,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-05-12,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2022-03-04,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Public Act . . . . . . . . . 102-0775,2022-05-13,['became-law'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-04-20,['amendment-failure'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Third Reading - Passed; 053-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2022-03-08,[],IL,102nd +Third Reading - Passed; 048-000-000,2022-03-09,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-006-000,2023-01-06,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-03,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-03-16,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-15,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 008-004-000,2021-10-27,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-03-08,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-001-000,2021-10-28,['committee-passage-favorable'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Michael Halpin,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2022-03-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2022-03-31,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-16,[],IL,102nd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-05-11,[],IL,102nd +Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Michael Halpin,2022-03-02,[],IL,102nd +Pension Note Requested by Rep. La Shawn K. Ford,2021-04-16,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-04,[],IL,102nd +House Floor Amendment No. 4 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-05-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-01-04,[],IL,102nd +Do Pass / Short Debate Executive Committee; 015-000-000,2021-03-24,['committee-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-02-22,[],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-02-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-10-20,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Terry Hall,2023-01-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2022-03-09,[],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-03-25,[],IL,102nd +Third Reading - Passed; 039-016-002,2021-09-01,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-03-16,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2022-11-29,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-07-11,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-29,[],IL,102nd +Assigned to Judiciary,2021-05-11,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Eva-Dina Delgado,2021-05-03,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Scott M. Bennett,2022-03-29,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Chief House Sponsor Rep. Joyce Mason,2021-05-12,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-10-03,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-02,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-11,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 2 Rules Refers to Human Services Committee,2022-03-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0572,2021-08-23,['became-law'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-25,['reading-3'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Camille Y. Lilly,2021-10-25,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-04-08,[],IL,102nd +Third Reading - Short Debate - Passed 086-028-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 4 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Do Pass Labor; 015-000-000,2022-03-23,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-04-16,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Appropriations-Public Safety Committee,2022-03-02,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Margaret Croke,2021-05-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-04-15,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-02,[],IL,102nd +Public Act . . . . . . . . . 102-0794,2022-05-13,['became-law'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to Energy & Environment Committee,2022-03-22,['referral-committee'],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-20,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2023-01-06,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 069-038-004,2022-03-31,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-04,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-07-21,[],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 011-007-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-10-20,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Third Reading - Passed; 053-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Alternate Co-Sponsor Removed Rep. Ryan Spain,2021-05-05,[],IL,102nd +Do Pass as Amended Executive; 010-006-001,2021-05-27,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-0553,2021-08-20,['became-law'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Public Act . . . . . . . . . 102-0096,2021-07-09,['became-law'],IL,102nd +Second Reading,2022-03-28,['reading-2'],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +Third Reading - Passed; 032-013-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading February 15, 2022",2022-02-10,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-10-18,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-03-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading October 19, 2021",2021-10-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-24,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-27,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-31,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Do Pass as Amended Criminal Law; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 30, 2021",2021-05-29,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-05-30,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Cassidy,2021-05-24,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-14,[],IL,102nd +Second Reading,2021-05-26,['reading-2'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 22, 2021",2021-04-21,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 28, 2021",2021-05-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Amy Elik,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-15,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-05-10,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-29,[],IL,102nd +Third Reading - Short Debate - Passed 075-039-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +First Reading,2022-03-28,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2022-03-22,[],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-16,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-19,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2022-03-23,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-02-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-23,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 20, 2021",2021-10-19,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2022-03-28,[],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0082,2021-07-09,['became-law'],IL,102nd +Assigned to Pensions,2021-05-04,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas Morrison,2021-05-21,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Redistricting Committee; 006-004-000,2021-05-28,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-05-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2021-05-10,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-03-03,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Ann Gillespie,2021-04-28,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-04-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-26,[],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2021-05-11,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +"Effective Date January 1, 2023",2022-06-17,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +"Effective Date January 1, 2022",2021-07-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-05,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-05-13,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-04-19,[],IL,102nd +"Effective Date July 1, 2022",2021-07-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-14,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2022-03-16,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-13,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-20,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 114-000-002,2021-05-27,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-04-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-05,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Adriane Johnson,2021-05-11,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-04-29,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Revenue & Finance Committee; 010-007-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Third Reading - Passed; 053-004-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Assigned to Judiciary,2021-04-28,['referral-committee'],IL,102nd +Assigned to Energy & Environment Committee,2021-05-13,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Second Reading - Standard Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Assigned to Labor & Commerce Committee,2021-05-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-20,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-27,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Executive Committee,2021-05-24,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. William Davis,2021-05-27,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Arrived in House,2021-05-07,['introduction'],IL,102nd +Recalled to Second Reading,2021-05-26,['reading-2'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-19,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0265,2021-08-06,['became-law'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-05-10,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2021-05-06,[],IL,102nd +Public Act . . . . . . . . . 102-0367,2021-08-13,['became-law'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-03,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Co-Sponsor Rep. Bob Morgan,2021-02-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-12,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Assigned to Ethics & Elections Committee,2021-05-04,['referral-committee'],IL,102nd +Chief House Sponsor Rep. LaToya Greenwood,2021-05-12,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Julie A. Morrison,2022-03-25,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-11-30,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. David Friess,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Commerce,2021-05-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. John C. D'Amico,2021-10-28,[],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-03,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-1013,2022-05-27,['became-law'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2022-03-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Keith R. Wheeler,2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-1009,2022-05-27,['became-law'],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-03-10,[],IL,102nd +Do Pass State Government; 007-002-000,2022-04-05,['committee-passage'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 015-000-000,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-15,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-001,2022-04-05,"['passage', 'reading-3']",IL,102nd +Alternate Co-Sponsor Removed Rep. Kambium Buckner,2022-03-10,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-05,[],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2022-03-21,['amendment-introduction'],IL,102nd +Assigned to Insurance Committee,2022-03-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +Assigned to Criminal Law,2021-04-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2021-05-27,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-08,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-03-08,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Chief House Sponsor Rep. Kathleen Willis,2021-10-27,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-04-01,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1) the following amendments will remain in the Committee on Assignments.,2022-03-08,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2022-04-06,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2022-03-18,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jacqueline Y. Collins,2022-03-18,['amendment-introduction'],IL,102nd +Do Pass as Amended Judiciary; 007-000-000,2022-03-09,['committee-passage'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-19,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Sandra Hamilton,2022-03-31,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-04-05,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-07,[],IL,102nd +Arrived in House,2022-03-09,['introduction'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-05-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2022-04-08,[],IL,102nd +Recalled to Second Reading,2022-04-06,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Third Reading - Passed; 057-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Arrived in House,2022-04-01,['introduction'],IL,102nd +Do Pass as Amended Labor; 012-003-000,2022-03-23,['committee-passage'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-15,[],IL,102nd +Assigned to Higher Education Committee,2021-04-28,['referral-committee'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-23,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-02-17,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Do Pass as Amended / Short Debate Housing Committee; 015-008-000,2021-05-12,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Behavioral and Mental Health; 010-000-000,2022-02-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Robyn Gabel,2022-03-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Anna Moeller,2022-03-21,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-11-30,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2022-03-04,[],IL,102nd +Third Reading - Short Debate - Passed 070-042-000,2022-03-02,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Bob Morgan,2022-03-17,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2022-03-23,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-03-02,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2022-03-21,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-25,[],IL,102nd +Do Pass as Amended Executive; 012-000-000,2022-02-24,['committee-passage'],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2022-04-07,['amendment-introduction'],IL,102nd +"Removed Co-Sponsor Rep. Maurice A. West, II",2021-03-01,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2023-01-06,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-17,[],IL,102nd +Third Reading - Short Debate - Passed 104-001-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Terry Hall,2023-01-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2021-04-21,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-28,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-22,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 014-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-01,[],IL,102nd +Governor Approved,2021-08-24,['executive-signature'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Mattie Hunter,2022-11-29,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-03-19,['filing'],IL,102nd +Arrived in House,2021-05-25,['introduction'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Cities & Villages Committee,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-02-10,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-04-05,[],IL,102nd +State Debt Impact Note Filed,2022-02-15,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2022-03-30,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-05-10,['reading-1'],IL,102nd +Do Pass Agriculture; 011-000-000,2022-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-04-06,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Loughran-Cappel,2022-02-24,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-09-22,[],IL,102nd +Do Pass Executive; 015-000-000,2021-05-27,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-05-27,[],IL,102nd +Second Reading - Standard Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2022-04-06,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-28,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Lakesia Collins,2021-04-15,['amendment-introduction'],IL,102nd +Removed Co-Sponsor Rep. Joyce Mason,2022-03-31,[],IL,102nd +Removed from Consent Calendar Status Rep. Margaret Croke,2021-04-13,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-02-09,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-02,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-03,[],IL,102nd +Do Pass / Short Debate Ethics & Elections Committee; 012-000-000,2022-04-06,['committee-passage'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-29,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Do Pass Health; 012-000-000,2022-03-09,['committee-passage'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-19,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2021-10-19,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-11,[],IL,102nd +Third Reading - Passed; 035-015-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 057-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-12,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Debbie Meyers-Martin,2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 011-006-000,2021-05-06,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-05,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. David A. Welter,2021-04-08,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-07-07,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-07,['referral-committee'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-03-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-21,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-22,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-24,[],IL,102nd +Assigned to Appropriations-General Services Committee,2022-03-01,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-05-14,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2021-05-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Chief House Sponsor Rep. Elizabeth Hernandez,2021-04-26,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-12-01,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-05-07,[],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2021-05-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-15,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-05-11,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Alternate Co-Sponsor Removed Rep. Mark L. Walker,2021-09-08,[],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Public Act . . . . . . . . . 102-0429,2021-08-20,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +First Reading,2022-03-16,['reading-1'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +Public Act . . . . . . . . . 102-0438,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-13,[],IL,102nd +Chief Senate Sponsor Sen. Dan McConchie,2022-03-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Do Pass Executive; 016-000-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2021-05-31,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Kimberly A. Lightford,2021-04-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Waive Posting Notice,2022-04-05,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-02-15,[],IL,102nd +"Effective Date August 16, 2021",2021-08-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-26,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-30,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-18,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Moved to Suspend Rule 21 Rep. Natalie A. Manley,2021-05-31,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0139,2021-07-23,['became-law'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-05-11,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Third Reading - Short Debate - Passed 114-000-001,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Pensions,2021-05-25,[],IL,102nd +Sent to the Governor,2021-04-02,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-02-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +"Effective Date August 3, 2021",2021-08-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0393,2021-08-16,['became-law'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-03-09,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-26,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Jones,2021-05-30,['amendment-passage'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-10,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2022-03-25,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-14,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-05-19,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Kelly M. Burke,2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-0189,2021-07-30,['became-law'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As December 1, 2021",2021-10-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Do Pass Veterans Affairs; 005-000-000,2021-05-12,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Commerce; 010-000-000,2021-04-29,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-27,['amendment-failure'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2021",2021-05-11,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Patrick J. Joyce,2021-10-27,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-13,['reading-2'],IL,102nd +Assigned to Executive Committee,2022-04-07,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Seth Lewis,2022-03-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2021-04-22,[],IL,102nd +Chief Sponsor Changed to Sen. John Connor,2021-10-27,[],IL,102nd +Recalled to Second Reading,2021-05-30,['reading-2'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Mattie Hunter,2022-04-07,['filing'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-24,[],IL,102nd +Recalled to Second Reading,2022-03-09,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2021-05-30,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-24,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Revenue,2022-03-30,[],IL,102nd +Governor Approved,2022-04-22,['executive-signature'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-001-000,2021-05-24,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-21,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-01,['referral-committee'],IL,102nd +"Effective Date April 22, 2022",2022-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-21,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-21,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-18,[],IL,102nd +Assigned to Criminal Law,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-07-21,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-22,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2021-05-03,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As December 1, 2021",2021-10-13,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jackie Haas,2021-05-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-03,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-16,[],IL,102nd +Assigned to Health,2022-03-02,['referral-committee'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-07,['amendment-failure'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Third Reading - Passed; 056-002-000,2021-05-06,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0408,2021-08-19,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Third Reading - Passed; 055-001-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Fiscal Note Filed as Amended,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +Public Act . . . . . . . . . 102-0975,2022-05-27,['became-law'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2021-05-12,[],IL,102nd +Third Reading - Passed; 057-000-001,2022-04-06,"['passage', 'reading-3']",IL,102nd +Assigned to Human Services Committee,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-04-28,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-10,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-18,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Assigned to Executive,2021-05-20,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Balanced Budget Note Requested - Withdrawn by Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Do Pass as Amended Judiciary; 005-002-000,2021-05-25,['committee-passage'],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-05,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2021-05-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. William Davis,2021-05-18,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-30,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Keith R. Wheeler,2022-03-01,[],IL,102nd +Second Reading - Short Debate,2021-10-20,['reading-2'],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-02-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-02-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2022-03-15,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2023-01-03,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2023-01-05,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2021-09-08,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 006-000-000,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-04-06,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-04-23,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-03-10,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-02-17,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-14,[],IL,102nd +"Chief House Sponsor Rep. Curtis J. Tarver, II",2022-02-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-03,[],IL,102nd +Second Reading,2021-08-31,['reading-2'],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2021-05-20,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-23,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-001,2022-03-02,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-28,[],IL,102nd +Chief Senate Sponsor Sen. Darren Bailey,2021-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-22,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 5, 2023",2023-01-04,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2022-04-04,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-02-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-04-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2022-03-07,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +First Reading,2022-11-29,['reading-1'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-19,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2021-04-23,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2022-04-04,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Higher Education Committee; 010-000-000,2022-04-06,[],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2021-05-13,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-04,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-31,[],IL,102nd +Remove Chief Co-Sponsor Rep. Eva-Dina Delgado,2022-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2022-04-08,[],IL,102nd +Do Pass / Short Debate Higher Education Committee; 009-000-000,2022-03-16,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark L. Walker,2022-03-31,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-01-04,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-24,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-02-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2021-05-19,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-20,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Avery Bourne,2021-04-20,[],IL,102nd +House Floor Amendment No. 4 Rules Refers to Executive Committee,2022-04-01,[],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-11-16,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Miller,2022-11-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-04-13,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-10-27,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2022-04-07,[],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-01-19,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Higher Education Committee; 006-004-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-02-17,[],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +Senate Floor Amendment No. 4 Purusant to Senate Rule 3-8(b-1) the following amendments will remain in the Committee on Assignments.,2022-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0843,2022-05-13,['became-law'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-01-05,[],IL,102nd +Chief House Sponsor Rep. Jay Hoffman,2021-04-22,[],IL,102nd +To Criminal Law- Clear Compliance,2021-05-05,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-22,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-06-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Third Reading - Passed; 053-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-22,[],IL,102nd +Chief House Sponsor Rep. Anne Stava-Murray,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-04-04,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Removed from Consent Calendar Status Rep. Greg Harris,2021-05-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Celina Villanueva,2021-04-19,[],IL,102nd +Second Reading,2022-03-31,['reading-2'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2022-03-08,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +"Placed on Calendar Order of First Reading April 20, 2021",2021-04-19,['reading-1'],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Emil Jones, III",2022-03-22,[],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-11-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-03-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-04-06,[],IL,102nd +Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-02-24,[],IL,102nd +Do Pass / Short Debate Cities & Villages Committee; 009-000-000,2021-05-25,['committee-passage'],IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-08-09,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 23, 2021",2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-01-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Re-assigned to Health,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-03-03,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-02-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-02-11,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-02-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-09,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-17,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Patricia Van Pelt,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Robert Peters,2021-05-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-05-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2021-05-10,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Human Services Committee,2021-05-30,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Governor Approved,2021-08-03,['executive-signature'],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2021-04-19,[],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mike Simmons,2021-05-10,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +"Chief House Sponsor Rep. Maurice A. West, II",2021-04-22,[],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-14,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-11,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael Kelly,2022-03-03,[],IL,102nd +Public Act . . . . . . . . . 102-0156,2021-07-23,['became-law'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Keith R. Wheeler,2021-05-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2021-05-19,[],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-04-22,[],IL,102nd +Do Pass Veterans Affairs; 005-000-000,2021-05-19,['committee-passage'],IL,102nd +Assigned to Police & Fire Committee,2021-05-04,['referral-committee'],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Alternate Co-Sponsor Removed Rep. Anne Stava-Murray,2022-03-16,[],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Small Business,Tech Innovation, and Entrepreneurship Committee; 009-000-000",2022-04-06,[],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura Fine,2021-05-27,['filing'],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2021-05-21,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Do Pass as Amended Education; 010-001-000,2021-05-19,['committee-passage'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-18,['reading-2'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. John F. Curran,2021-05-29,['filing'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-30,[],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Alternate Chief Co-Sponsor Changed to Rep. William Davis,2021-05-14,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Public Act . . . . . . . . . 102-0193,2021-07-30,['became-law'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-30,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-03-10,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-04-23,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-31,['amendment-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - April 6, 2022",2022-04-06,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2021-05-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-06,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-05-19,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-20,[],IL,102nd +Public Act . . . . . . . . . 102-0130,2021-07-23,['became-law'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-25,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +Assigned to Veterans Affairs,2021-04-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-03-30,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-04,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Deb Conroy,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +Sent to the Governor,2022-04-18,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-30,['amendment-failure'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-05-11,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2021-05-19,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +House Committee Amendment No. 1 Adopted in Prescription Drug Affordability & Accessibility Committee; by Voice Vote,2021-03-25,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 056-000-000,2021-05-31,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-21,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-05-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2021-05-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Do Pass / Consent Calendar Appropriations-Human Services Committee; 022-000-000,2021-05-06,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-03-25,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Assigned to Health,2021-05-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-13,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2021-05-12,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Holmes,2021-05-30,['amendment-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-04,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-24,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Thaddeus Jones,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-05-12,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-10,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-23,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Assigned to Education,2021-04-28,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2021-05-25,['filing'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2021-08-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2022-04-04,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-000-000,2021-05-11,['committee-passage-favorable'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-02,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt Executive; 013-000-000,2021-05-13,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Burke,2022-03-24,[],IL,102nd +Removed Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-20,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Recalled to Second Reading,2022-04-05,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2022-04-07,['amendment-introduction'],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-11-30,[],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2022-03-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-28,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Chief Senate Sponsor Sen. Craig Wilcox,2022-03-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 22, 2021",2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Harris,2022-03-31,['amendment-passage'],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-12-22,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2022-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2022-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Arrived in House,2021-10-28,['introduction'],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-11,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-08,['referral-committee'],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-03-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-05,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-12-09,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 010-005-000,2023-01-06,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-22,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2023-01-06,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Revenue & Finance Committee,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2022-03-17,['amendment-introduction'],IL,102nd +Do Pass Licensed Activities; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-19,[],IL,102nd +Chief Senate Sponsor Sen. Celina Villanueva,2021-04-27,[],IL,102nd +Approved for Consideration Assignments,2022-03-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-02-28,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-04-04,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-03-16,[],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Will Guzzardi,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-03,[],IL,102nd +Assigned to State Government,2022-03-08,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0857,2022-05-13,['became-law'],IL,102nd +Chief Senate Sponsor Sen. Steve Stadelman,2022-03-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-23,[],IL,102nd +Assigned to Healthcare Access and Availability,2022-03-02,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-04-08,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2022-04-07,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-28,[],IL,102nd +Waive Posting Notice,2022-04-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2022-03-15,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-03-25,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-04-04,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Health,2022-03-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +House Floor Amendment No. 3 Tabled Pursuant to Rule 40,2021-04-16,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Energy and Public Utilities; 016-000-000,2022-03-31,[],IL,102nd +Do Pass / Short Debate Mental Health & Addiction Committee; 015-000-000,2021-05-06,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2022",2022-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-28,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Waive Posting Notice,2022-04-01,[],IL,102nd +First Reading,2022-03-30,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-04,[],IL,102nd +Do Pass as Amended Education; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Do Pass Licensed Activities; 006-000-000,2022-04-05,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Insurance Committee,2022-04-05,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2022-03-22,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-02-24,[],IL,102nd +Assigned to Executive,2021-05-04,['referral-committee'],IL,102nd +Sent to the Governor,2023-02-03,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2022-04-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-03-22,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-03-04,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-10-26,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-23,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading November 30, 2022",2022-11-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2021-05-25,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Passed Both Houses,2023-01-05,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-10-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-18,['referral-committee'],IL,102nd +Waive Posting Notice,2023-01-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-04-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-05-13,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jay Hoffman,2021-08-31,['amendment-introduction'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Neil Anderson,2023-01-09,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-28,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-002-000,2021-05-31,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2021-05-04,['amendment-introduction'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-01-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 019-000-000,2021-05-11,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-05-10,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Adopted; D. Turner,2021-04-21,['amendment-passage'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2022-04-06,['committee-passage'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Recalled to Second Reading,2023-01-09,['reading-2'],IL,102nd +Second Reading,2022-11-30,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +House Floor Amendment No. 3 Moved to Suspend Rule 21 Rep. Natalie A. Manley,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0563,2021-08-20,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-28,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-05-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-06,[],IL,102nd +Public Act . . . . . . . . . 102-0428,2021-08-20,['became-law'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Sent to the Governor,2023-02-03,['executive-receipt'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2021-10-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-17,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2021-10-21,[],IL,102nd +Public Act . . . . . . . . . 102-0422,2021-08-20,['became-law'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-08-31,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Karina Villa,2023-01-04,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-26,['amendment-failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-21,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2021-05-30,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Ryan Spain,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** March 23, 2021",2021-04-21,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2021-05-17,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-03-25,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-002-000,2021-03-18,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-05-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-10,[],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-08-30,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 015-000-000,2021-05-30,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-04,[],IL,102nd +Governor Approved,2022-04-22,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-04,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Second Reading,2022-03-28,['reading-2'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-25,['amendment-failure'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-05-28,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-05-20,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-04-04,[],IL,102nd +Recalled to Second Reading,2021-05-13,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-05-03,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Removed Co-Sponsor Rep. Michael Kelly,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2021-10-19,[],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Thomas Cullerton,2021-04-28,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Norine K. Hammond,2021-05-29,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Do Pass Executive; 016-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-05-11,[],IL,102nd +Do Pass as Amended / Consent Calendar Prescription Drug Affordability & Accessibility Committee; 018-000-000,2021-03-25,['committee-passage'],IL,102nd +Co-Sponsor Rep. Lindsey LaPointe,2021-02-08,[],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-05-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2021-05-12,['amendment-introduction'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Sara Feigenholtz,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-12,[],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2021-04-19,[],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0285,2021-08-06,['became-law'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2022-03-25,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Fine,2021-05-19,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Patricia Van Pelt,2021-04-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-03,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 078-030-001,2021-05-19,"['passage', 'reading-3']",IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2021-05-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-30,[],IL,102nd +Do Pass Education; 012-000-000,2021-05-05,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-05-24,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +"Committee Deadline Extended-Rule 9(b) May 28, 2021",2021-05-24,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0222,2021-07-30,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-23,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-25,['referral-committee'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2021-05-20,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-04-07,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-02,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-10,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-05,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 110-000-000,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Ozinga,2021-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0140,2021-07-23,['became-law'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2021-05-21,[],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0129,2021-07-23,['became-law'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Public Act . . . . . . . . . 102-0125,2021-07-23,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 065-047-001,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 31, 2021",2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Third Reading - Passed; 042-015-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-30,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Executive Committee,2022-02-24,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Laura Fine,2022-04-06,['filing'],IL,102nd +Third Reading - Consent Calendar - Passed 108-003-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-13,[],IL,102nd +Assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-31,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-03,[],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 005-001-000,2021-03-15,['committee-passage'],IL,102nd +"Effective Date August 3, 2021",2021-08-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2022-03-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-04-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-29,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Debbie Meyers-Martin,2022-02-17,[],IL,102nd +Removed Co-Sponsor Rep. Eva-Dina Delgado,2022-03-02,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Michael J. Zalewski,2022-02-24,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-06-16,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-04-28,[],IL,102nd +Re-assigned to Energy and Public Utilities,2021-05-10,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-04-07,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-01-20,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-11,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-05-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-02,['reading-1'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-03-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Bob Morgan,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 5 Purusant to Senate Rule 3-8(b-1) the following amendments will remain in the Committee on Assignments.,2022-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-04-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Recalled to Second Reading,2021-06-01,['reading-2'],IL,102nd +Do Pass Licensed Activities; 005-000-000,2022-03-23,['committee-passage'],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Environment and Conservation,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2022-03-04,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to Transportation,2022-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-01-04,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-02-24,[],IL,102nd +Waive Posting Notice,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-08-09,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2022-11-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-04-22,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-04-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2023-01-03,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Insurance,2021-04-20,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2022-04-05,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Education,2022-03-31,[],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Licenses Committee; 007-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-04-06,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-06,[],IL,102nd +Recalled to Second Reading,2022-04-06,['reading-2'],IL,102nd +To Executive- Cannabis,2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael J. Zalewski,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-04-28,[],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2022-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-17,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-03-14,[],IL,102nd +Do Pass / Short Debate Mental Health & Addiction Committee; 016-000-000,2021-05-13,['committee-passage'],IL,102nd +Third Reading - Short Debate - Passed 068-043-000,2021-04-14,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Crowe,2022-04-08,['amendment-passage'],IL,102nd +Re-assigned to Executive,2022-04-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2021-05-12,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2022-03-23,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Energy and Public Utilities; 016-000-000,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Public Act . . . . . . . . . 102-1024,2022-05-27,['became-law'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Insurance Committee; 015-000-000,2022-04-06,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-24,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Robert Peters,2022-04-07,['amendment-introduction'],IL,102nd +To Executive- Consolidation,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-10-26,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-23,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-04-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Chief House Sponsor Rep. Lamont J. Robinson, Jr.",2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-12-22,[],IL,102nd +Assigned to Higher Education Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-22,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +"House Floor Amendment No. 2 Rules Refers to Transportation: Regulation, Roads & Bridges Committee",2022-03-22,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-02-22,[],IL,102nd +Do Pass as Amended Financial Institutions; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-12-09,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2023-01-06,['amendment-introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-31,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Jason Huffman,2023-01-10,[],IL,102nd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments.",2022-04-06,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2023-01-05,[],IL,102nd +Removed Co-Sponsor Rep. La Shawn K. Ford,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Veterans' Affairs Committee,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-16,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2022-03-15,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2022-11-30,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 006-000-001,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-01,[],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2021-04-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-03-15,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2023-01-09,['amendment-introduction'],IL,102nd +Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-04-01,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-04-01,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2022-03-01,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-10-28,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-16,[],IL,102nd +"Effective Date February 10, 2023",2023-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2022-03-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-02-24,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-03-08,[],IL,102nd +Third Reading - Short Debate - Passed 072-042-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Scott M. Bennett,2022-03-30,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-13,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2022-03-16,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-24,[],IL,102nd +Second Reading,2021-10-19,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-01,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Energy and Public Utilities,2022-03-28,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 017-000-000,2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Carol Ammons,2021-05-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +"Effective Date January 1, 2022",2021-08-24,[],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-02,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-26,[],IL,102nd +Public Act . . . . . . . . . 102-0199,2021-07-30,['became-law'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Mark Batinick,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-05-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 27, 2021",2021-05-26,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Executive Committee; 013-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2022-02-25,['amendment-failure'],IL,102nd +Public Act . . . . . . . . . 102-1098,2022-06-17,['became-law'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-10,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-04-21,[],IL,102nd +Do Pass as Amended / Consent Calendar Executive Committee; 015-000-000,2021-05-20,['committee-passage'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-27,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-26,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2021-05-06,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-27,['amendment-failure'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. John Connor,2021-05-29,['filing'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2021-05-14,['amendment-introduction'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading March 29, 2022",2022-03-28,[],IL,102nd +Do Pass / Short Debate Counties & Townships Committee; 008-002-000,2021-05-20,['committee-passage'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2023-01-10,[],IL,102nd +Public Act . . . . . . . . . 102-0162,2021-07-26,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-11,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2022-02-17,['committee-passage-favorable'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Public Act . . . . . . . . . 102-1090,2022-06-10,['became-law'],IL,102nd +Chief Sponsor Changed to Sen. Antonio Muñoz,2022-03-29,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2021-05-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jason A. Barickman,2021-05-06,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-11,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-05-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-09-30,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Karina Villa,2022-02-15,['amendment-introduction'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-14,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-04-05,[],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-05-24,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Greg Harris,2021-10-19,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Assigned to Revenue,2021-04-28,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +Do Pass Pensions; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2021-05-05,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-05-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0318,2021-08-06,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2021-05-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. William Davis,2021-04-28,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas Morrison,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-21,['reading-2'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +"Effective Date July 1, 2022",2021-07-09,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2021-05-11,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Judiciary - Civil Committee,2021-05-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2021-04-29,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-12,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Public Act . . . . . . . . . 102-0144,2021-07-23,['became-law'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Brad Halbrook,2021-05-30,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-04,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Do Pass Higher Education; 010-000-000,2022-03-23,['committee-passage'],IL,102nd +Second Reading - Short Debate,2022-03-16,['reading-2'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Adriane Johnson,2021-05-29,['amendment-introduction'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-05-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-31,['amendment-passage'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-19,['committee-passage'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Kimberly A. Lightford,2021-10-19,[],IL,102nd +Arrived in House,2021-05-27,['introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0319,2021-08-06,['became-law'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-04-29,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-22,[],IL,102nd +First Reading,2021-05-12,['reading-1'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 112-001-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2021-05-04,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Morrison,2021-05-26,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-04-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jackie Haas,2021-05-27,[],IL,102nd +Chief House Sponsor Rep. Thomas M. Bennett,2021-04-22,[],IL,102nd +Removed Co-Sponsor Rep. Mark Batinick,2021-03-24,[],IL,102nd +"Chief House Sponsor Rep. Lawrence Walsh, Jr.",2021-05-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2022-04-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-22,[],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 015-000-000,2021-05-30,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-11-30,['referral-committee'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-20,[],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +House Floor Amendment No. 2 Adopted 072-045-000,2021-05-28,['amendment-passage'],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-25,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-07-25,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading November 29, 2022",2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2021-04-16,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John Connor,2021-05-12,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2021-05-30,['amendment-introduction'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-03-09,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Assigned to Ethics & Elections Committee,2022-03-07,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-24,[],IL,102nd +Public Act . . . . . . . . . 102-0782,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-03-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-30,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Eva-Dina Delgado,2021-05-03,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-01-04,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-01,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-05-21,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-27,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-04-01,[],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-10-20,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-10-28,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-04-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-03-17,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-11-29,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-16,[],IL,102nd +Arrived in House,2021-09-02,['introduction'],IL,102nd +House Floor Amendment No. 3 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-03-14,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Waive Posting Notice,2021-05-19,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Chief House Sponsor Rep. Anne Stava-Murray,2022-02-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-04-08,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Steven Reick,2021-05-05,[],IL,102nd +Chief Senate Sponsor Sen. Neil Anderson,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-01-12,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 011-007-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-15,[],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Tom Demmer,2021-05-11,[],IL,102nd +Assigned to Insurance,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-02,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-23,[],IL,102nd +Public Act . . . . . . . . . 102-0544,2021-08-20,['became-law'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-10-20,[],IL,102nd +To Clean Energy Subcommittee,2022-04-05,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-03-02,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +First Reading,2021-05-13,['reading-1'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0424,2021-08-20,['became-law'],IL,102nd +Approved for Consideration Assignments,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-02-16,[],IL,102nd +Public Act . . . . . . . . . 102-0515,2021-08-20,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-11-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +Assigned to Transportation,2021-05-04,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Third Reading - Short Debate - Passed 110-002-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-02-25,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-11,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-31,[],IL,102nd +Chief Senate Sponsor Sen. Steve Stadelman,2021-04-19,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-01,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-03-02,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Placed on Calendar - Consideration Postponed,2022-01-21,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2022-03-29,[],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-03-31,[],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Assigned to Executive,2022-03-28,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 25, 2022",2022-03-11,['reading-3'],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2021-04-27,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-22,['amendment-passage'],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-06,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-01-25,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2022-03-24,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Senate Floor Amendment No. 5 Be Approved for Consideration Assignments,2022-02-23,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-03-17,[],IL,102nd +Waive Posting Notice,2021-03-23,[],IL,102nd +Chief Co-Sponsor Changed to Rep. Katie Stuart,2022-03-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-04-06,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-14,[],IL,102nd +Public Act . . . . . . . . . 102-0955,2022-05-27,['became-law'],IL,102nd +Do Pass Executive; 016-000-000,2022-04-05,['committee-passage'],IL,102nd +Governor Approved,2021-08-19,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2022",2022-03-09,[],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-04-08,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Martin J. Moylan,2022-03-09,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 107-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-17,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2021-04-29,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-07,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Johnson,2022-04-06,['amendment-passage'],IL,102nd +Arrived in House,2022-04-07,['introduction'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2022-03-15,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-04-01,[],IL,102nd +Public Act . . . . . . . . . 102-0806,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-23,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2022-03-21,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-03,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2022-11-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2022-03-15,[],IL,102nd +Passed Both Houses,2022-03-23,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-02,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-03-21,['referral-committee'],IL,102nd +Arrived in House,2022-03-30,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2022-04-01,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Arrived in House,2022-03-30,['introduction'],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2021-05-05,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2023-01-08,['amendment-introduction'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2022-03-09,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Martin J. Moylan,2021-05-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Anne Stava-Murray,2022-03-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-23,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2021-05-13,['committee-passage'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-21,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2022-03-25,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-04-20,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-03,[],IL,102nd +To Criminal Law- Juvenile Court,2021-05-05,[],IL,102nd +Assigned to State Government Administration Committee,2022-03-07,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-20,[],IL,102nd +Do Pass Commerce; 010-000-000,2021-05-06,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2021-04-16,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-31,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-05-13,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-02-18,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +Removed Co-Sponsor Rep. Mike Murphy,2021-04-14,[],IL,102nd +Sponsor Removed Sen. Rachelle Crowe,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-02,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lamont J. Robinson, Jr.",2021-04-16,['amendment-introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +First Reading,2021-10-27,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-04-08,[],IL,102nd +Arrived in House,2022-03-29,['introduction'],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-03-02,[],IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +"Placed on Calendar Order of 2nd Reading February 25, 2022",2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-04-05,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-04-01,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2022-03-07,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-11-16,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-11-30,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Butler,2022-11-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-11-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-13,[],IL,102nd +Balanced Budget Note Requested by Rep. C.D. Davidsmeyer,2022-03-22,[],IL,102nd +House Floor Amendment No. 5 Filed with Clerk by Rep. Lindsey LaPointe,2022-04-01,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-30,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-14,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-06,['amendment-failure'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0075,2021-07-09,['became-law'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Emanuel Chris Welch,2022-04-07,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-13,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-05-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +Chief Senate Sponsor Sen. Steve Stadelman,2021-04-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-04-08,[],IL,102nd +Governor Approved,2021-04-02,['executive-signature'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Barbara Hernandez,2021-04-28,[],IL,102nd +Remove Chief Co-Sponsor Rep. Sue Scherer,2021-04-13,[],IL,102nd +Second Reading,2021-05-24,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2021-05-14,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-02,['amendment-passage'],IL,102nd +Do Pass Criminal Law; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Correctional Note Requested - Withdrawn by Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +"Effective Date April 22, 2022",2022-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0707,2022-04-22,['became-law'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-06,['amendment-passage'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-20,[],IL,102nd +Governor Approved,2021-08-03,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-30,[],IL,102nd +Third Reading - Short Debate - Passed 086-027-001,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-25,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Immigration & Human Rights Committee,2021-05-24,[],IL,102nd +Senate Floor Amendment No. 4 Adopted; Villa,2022-03-09,['amendment-passage'],IL,102nd +Sent to the Governor,2021-06-15,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Public Act . . . . . . . . . 102-0182,2021-07-30,['became-law'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-16,[],IL,102nd +Public Act . . . . . . . . . 102-0239,2021-08-03,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-05-25,[],IL,102nd +House Floor Amendment No. 2 Suspend Rule 21 - Prevailed 072-045-000,2021-05-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-10-20,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0221,2021-07-30,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Assigned to Health,2021-05-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-22,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Criminal Law,2021-05-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2021-05-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-07,[],IL,102nd +Recalled to Second Reading,2021-04-21,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. LaToya Greenwood,2021-05-30,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 26, 2021",2021-05-25,[],IL,102nd +Passed Both Houses,2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2021-05-10,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-03,[],IL,102nd +Public Act . . . . . . . . . 102-0392,2021-08-16,['became-law'],IL,102nd +"Effective Date January 1, 2022",2021-08-16,[],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-22,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Do Pass Criminal Law; 010-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-11,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2021-05-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-001-000,2021-05-28,['committee-passage-favorable'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Fred Crespo,2021-05-18,[],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-07-21,[],IL,102nd +Assigned to Education,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-10-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-03,[],IL,102nd +State Mandates Fiscal Note Filed,2021-04-15,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2021-10-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2022-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sue Rezin,2021-10-27,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2022-03-22,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to State Government,2022-04-07,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-24,['amendment-failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-25,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2022-03-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Frances Ann Hurley,2021-05-10,[],IL,102nd +Second Reading,2021-10-19,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-05-06,[],IL,102nd +Re-referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-15,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2021-10-22,['amendment-introduction'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Deb Conroy,2022-03-07,[],IL,102nd +Do Pass Executive; 015-000-000,2022-04-05,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-03-09,[],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2022-03-04,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2022-03-08,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Curran,2022-04-05,['amendment-passage'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-02-22,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Lakesia Collins,2021-05-11,['amendment-introduction'],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Robert Rita,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 014-000-000,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-04-07,['amendment-failure'],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2022-02-16,[],IL,102nd +Postponed - Revenue,2022-03-30,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2022-03-28,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-14,[],IL,102nd +Third Reading - Passed; 058-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 054-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sam Yingling,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-02,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Public Act . . . . . . . . . 102-0724,2022-05-06,['became-law'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Castro,2021-05-30,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Alternate Co-Sponsor Removed Rep. Michael Kelly,2022-03-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Public Act . . . . . . . . . 102-0777,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-03-02,[],IL,102nd +Recalled to Second Reading,2022-03-30,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2022",2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-02-22,[],IL,102nd +Referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Agriculture,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2021-10-27,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Balanced Budget Note Filed,2022-02-16,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-04-29,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-10-28,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-16,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-03-24,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-15,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Rita Mayfield,2022-03-01,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +First Reading,2021-02-10,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-09-29,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-13,[],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2021-05-21,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0423,2021-08-20,['became-law'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-08,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2021-05-12,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-05-21,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-05-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2021-05-10,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0567,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-22,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-05-28,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2021-04-28,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2021-10-25,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-05-07,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-10-14,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2021-06-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Third Reading - Passed; 046-013-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 012-003-000,2021-05-31,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-04-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-12,[],IL,102nd +"Placed on Calendar - Consideration Postponed April 21, 2021",2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-18,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-07-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas M. Bennett,2021-05-13,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-03-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-02-24,[],IL,102nd +Public Act . . . . . . . . . 102-0441,2021-08-20,['became-law'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-12-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2021-05-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-14,[],IL,102nd +Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2021-03-04,[],IL,102nd +Assigned to Energy & Environment Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-04-20,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2022-03-24,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Assigned to Energy & Environment Committee,2021-05-05,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-22,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Public Act . . . . . . . . . 102-0842,2022-05-13,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +Assigned to Criminal Law,2022-03-23,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-14,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 8, 2022",2022-04-04,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +First Reading,2022-04-01,['reading-1'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-05-05,[],IL,102nd +Referred to Rules Committee,2022-11-29,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Approved for Consideration Assignments,2022-01-05,[],IL,102nd +House Floor Amendment No. 1 State Mandates Fiscal Note Filed as Amended,2021-04-21,[],IL,102nd +Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-03-17,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2022-03-10,[],IL,102nd +Recalled to Second Reading,2022-04-06,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. David A. Welter,2022-04-06,[],IL,102nd +Third Reading - Consent Calendar - Passed 108-003-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-08-31,[],IL,102nd +Public Act . . . . . . . . . 102-0858,2022-05-13,['became-law'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2022-02-24,[],IL,102nd +Assigned to State Government Administration Committee,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-05,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-15,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Appropriations-Public Safety Committee; 011-007-000,2021-04-23,['committee-passage-favorable'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Chief House Sponsor Rep. Thomas M. Bennett,2022-02-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-09-08,[],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2022-03-30,[],IL,102nd +First Reading,2023-01-03,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-20,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. John Connor,2022-03-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-31,[],IL,102nd +Remove Chief Co-Sponsor Rep. Kathleen Willis,2021-04-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Diane Pappas,2022-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendments will remain in the Committee on Assignments.",2022-04-08,[],IL,102nd +Removed Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Public Utilities Committee,2022-04-05,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-17,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2022-02-14,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 105-000-000,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2023-01-05,[],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Thomas M. Bennett,2022-03-11,[],IL,102nd +Do Pass / Consent Calendar Energy & Environment Committee; 024-000-000,2021-05-11,['committee-passage'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Assigned to Health,2022-03-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2022-03-08,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 5, 2022",2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-05-05,[],IL,102nd +Removed Co-Sponsor Rep. Anne Stava-Murray,2022-03-31,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-03-31,[],IL,102nd +Removed Co-Sponsor Rep. Mary E. Flowers,2021-04-20,[],IL,102nd +Waive Posting Notice,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-02-14,[],IL,102nd +Do Pass Transportation; 017-002-000,2022-03-29,['committee-passage'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-04-21,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-24,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Do Pass / Consent Calendar State Government Administration Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-04-27,[],IL,102nd +Chief Senate Sponsor Sen. Sally J. Turner,2021-04-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-04-15,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +"Placed on Calendar - Consideration Postponed March 30, 2022",2022-03-30,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-15,['reading-2'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Assigned to State Government Administration Committee,2022-11-29,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Public Utilities Committee; 021-000-000,2022-04-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-22,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Jones,2022-04-06,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +"Alternate Chief Sponsor Changed to Rep. Marcus C. Evans, Jr.",2021-09-09,[],IL,102nd +Public Act . . . . . . . . . 102-0873,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-03,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Thomas Morrison,2021-05-31,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-09,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-03-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-04,['reading-3'],IL,102nd +Referred to Assignments,2023-01-03,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2022-03-23,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-15,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2022-03-23,[],IL,102nd +Assigned to Executive,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-04-05,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Eric Mattson,2023-01-05,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Housing Affordability Impact Note Filed as Amended,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Joyce,2022-03-30,['amendment-passage'],IL,102nd +Assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-04-21,[],IL,102nd +Arrive in Senate,2022-03-28,['introduction'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-10-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2022-02-17,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-16,[],IL,102nd +Referred to Rules Committee,2021-02-10,['referral-committee'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-04-05,[],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-07,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-04-30,['amendment-introduction'],IL,102nd +Second Reading,2022-03-28,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michael J. Zalewski,2021-10-28,[],IL,102nd +Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-20,[],IL,102nd +Governor Approved,2021-08-23,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2022-11-29,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Mattie Hunter,2022-11-29,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +House Floor Amendment No. 5 Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Fiscal Note Requested by Rep. C.D. Davidsmeyer,2022-03-22,[],IL,102nd +House Floor Amendment No. 3 Adopted,2022-03-02,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2022-03-15,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Rita Mayfield,2021-05-13,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Personnel & Pensions Committee,2021-05-29,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-12,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Frances Ann Hurley,2021-04-20,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-04-08,[],IL,102nd +Home Rule Note Requested - Withdrawn by Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0708,2022-04-22,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2022-03-17,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Do Pass / Short Debate Counties & Townships Committee; 008-001-000,2022-03-16,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 018-003-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2022-04-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2021-05-06,['amendment-failure'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Adriane Johnson,2021-04-28,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Second Reading,2021-05-26,['reading-2'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Note / Motion Filed - Note Act Does Not Apply Rep. Sue Scherer,2022-04-06,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-02,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-19,[],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-14,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Bush,2021-04-29,['amendment-passage'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Do Pass Labor; 011-002-000,2021-10-20,['committee-passage'],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Julie A. Morrison,2022-03-25,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 079-035-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 072-041-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-14,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. William Davis,2022-03-29,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Assigned to Higher Education,2021-05-10,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2022-03-24,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Ram Villivalam,2021-05-30,['filing'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 013-000-000,2022-03-29,[],IL,102nd +Chief Senate Sponsor Sen. Omar Aquino,2021-04-23,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-05,[],IL,102nd +Assigned to Cities & Villages Committee,2022-03-07,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-31,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Robyn Gabel,2021-10-22,[],IL,102nd +Third Reading - Short Debate - Passed 112-004-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Adopted; Stoller,2021-04-21,['amendment-passage'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Arrived in House,2022-03-30,['introduction'],IL,102nd +Fiscal Note Filed,2021-04-15,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-31,['amendment-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-11,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-30,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 091-023-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Pensions; 008-000-000,2021-05-26,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-22,['amendment-failure'],IL,102nd +Assigned to Environment and Conservation,2021-05-10,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Arrived in House,2022-03-29,['introduction'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Criminal Law; 009-000-000,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Adopted in Energy & Environment Committee; by Voice Vote,2022-03-22,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-05-03,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Recalled to Second Reading,2022-03-31,['reading-2'],IL,102nd +Approved for Consideration Assignments,2021-10-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-04-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Ethics & Elections Committee; 010-007-000,2021-05-30,['committee-passage-favorable'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Keith R. Wheeler,2021-10-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-18,[],IL,102nd +"Effective Date January 1, 2022",2021-08-03,[],IL,102nd +Governor Approved,2021-08-03,['executive-signature'],IL,102nd +Remove Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mike Murphy,2021-05-13,[],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2021-05-04,[],IL,102nd +Postponed - Health,2021-05-12,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Nicholas K. Smith,2022-03-25,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Do Pass Executive; 013-000-000,2021-05-27,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 20, 2021",2021-10-19,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mike Murphy,2021-05-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2022-03-18,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0383,2021-08-16,['became-law'],IL,102nd +Do Pass Local Government; 007-001-000,2021-05-12,['committee-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Third Reading - Passed; 043-010-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Arrived in House,2021-05-31,['introduction'],IL,102nd +Passed Both Houses,2022-04-05,[],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Keith R. Wheeler,2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Immigration & Human Rights Committee; 008-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +"Effective Date April 2, 2021",2021-04-02,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-09,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-04-28,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-08,['referral-committee'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-05,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2021-10-27,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-07-21,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2021-04-27,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-22,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. David A. Welter,2021-04-12,['amendment-introduction'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Public Act . . . . . . . . . 102-0512,2021-08-20,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 110-000-002,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-06-15,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Chief Sponsor Changed to Sen. Mattie Hunter,2021-10-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-12,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-000-000,2021-05-11,['committee-passage-favorable'],IL,102nd +Assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-05-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-16,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-05-21,[],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Delia C. Ramirez,2022-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-05-07,[],IL,102nd +Do Pass Health; 013-000-000,2021-05-19,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Emanuel Chris Welch,2022-03-21,[],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Third Reading - Passed; 034-017-001,2021-05-26,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-14,[],IL,102nd +Public Act . . . . . . . . . 102-0437,2021-08-20,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2022-04-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-07-07,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-04-05,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Sue Scherer,2021-05-18,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-05-18,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2021-05-28,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Health,2022-03-29,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Third Reading - Passed; 055-001-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-12-01,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Patricia Van Pelt,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-05-13,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-19,[],IL,102nd +Postponed - Transportation,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-05-07,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-02-09,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Robert Rita,2021-05-31,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-08-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-23,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Recalled to Second Reading,2022-04-06,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Chris Bos,2021-04-28,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-03-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Approved for Consideration Assignments,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-22,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Steve Stadelman,2021-10-28,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-1026,2022-05-27,['became-law'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-05-18,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-05-18,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2023-01-09,['referral-committee'],IL,102nd +Chief House Sponsor Rep. David Friess,2022-02-28,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Waive Posting Notice,2022-04-01,[],IL,102nd +Do Pass as Amended Executive; 014-000-000,2022-04-01,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 112-000-000,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-29,[],IL,102nd +Third Reading - Short Debate - Passed 105-006-001,2022-04-07,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-04,['reading-3'],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-03-18,[],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-04-04,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Assigned to Behavioral and Mental Health,2022-04-04,['referral-committee'],IL,102nd +Do Pass State Government; 009-000-000,2022-03-30,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-04-01,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 20, 2021",2021-10-19,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Crowe,2022-04-06,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-03-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-12,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-1138,2023-02-10,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-13,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-03-16,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Meg Loughran Cappel,2022-03-29,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-19,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-03-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Transportation,2022-02-22,[],IL,102nd +Third Reading - Short Debate - Passed 108-003-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-24,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-02-23,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2023-01-06,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-11-15,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +"House Floor Amendment No. 2 Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 010-000-000",2022-03-22,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-12-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Elizabeth Hernandez,2023-01-06,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2021-05-05,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 013-000-000,2022-04-07,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-10-28,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Third Reading - Passed; 032-015-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2022-02-24,['introduction'],IL,102nd +Waive Posting Notice,2023-01-05,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 089-007-003,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-04-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2023-01-10,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 057-000-001,2022-04-08,[],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +Referred to Assignments,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Omar Aquino,2022-04-06,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Veterans' Affairs Committee; 010-000-000,2022-04-06,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-22,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 8, 2022",2022-04-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-08,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-04-14,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michael Halpin,2022-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-11-30,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2021-05-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Do Pass as Amended Executive; 017-000-000,2022-04-06,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-01,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Mattie Hunter,2022-03-31,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2022-03-04,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-06-16,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Aaron M. Ortiz,2022-02-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-03,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-04-01,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Kelly M. Cassidy,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-23,[],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Napoleon Harris, III",2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-03,[],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2023-01-10,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-03-16,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-04-30,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-05-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-04-06,[],IL,102nd +Chief Senate Sponsor Sen. Michael E. Hastings,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Sara Feigenholtz,2022-04-08,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Cunningham,2022-04-07,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-01-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-01-05,[],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-05-19,[],IL,102nd +Removed Co-Sponsor Rep. Margaret Croke,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 6 Purusant to Senate Rule 3-8(b-1) the following amendments will remain in the Committee on Assignments.,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-04-04,[],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-05-10,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Mattson,2023-01-09,['amendment-passage'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Postponed - Executive,2023-01-05,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-05,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-21,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-001-000,2021-08-31,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2021-10-26,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-10-26,[],IL,102nd +Public Act . . . . . . . . . 102-1140,2023-02-10,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0421,2021-08-20,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-19,[],IL,102nd +Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +House Floor Amendment No. 3 Suspend Rule 21 - Prevailed 072-045-000,2021-05-31,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; D. Turner,2022-11-30,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-22,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading,2023-01-05,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-05-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading December 1, 2022",2022-11-30,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-20,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-14,[],IL,102nd +Public Act . . . . . . . . . 102-0430,2021-08-20,['became-law'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0461,2021-08-20,['became-law'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-006-000,2022-03-30,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0018,2021-06-25,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 009-006-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-03-03,[],IL,102nd +"Effective Date April 22, 2022; ; some provisions effective January 1, 2023",2022-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 29, 2022",2022-03-28,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 117-000-000,2021-10-27,[],IL,102nd +Approved for Consideration Assignments,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-02,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2022-03-16,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Education,2021-05-11,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Steve Stadelman,2021-05-30,['filing'],IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-05-13,[],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2021-05-13,['committee-passage'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-21,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jay Hoffman,2021-05-29,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +Do Pass Executive; 016-000-000,2021-05-19,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-20,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-19,['committee-passage'],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-16,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-03-07,[],IL,102nd +Public Act . . . . . . . . . 102-0074,2021-07-09,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Mental Health & Addiction Committee,2021-05-30,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Withdrawn by Sen. Christopher Belt,2021-05-13,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Kathleen Willis,2021-03-18,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-05,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 015-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Robert Peters,2021-05-21,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to State Government,2021-05-30,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Assigned to Insurance,2021-05-11,['referral-committee'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0123,2021-07-23,['became-law'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Education,2021-05-04,[],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Executive,2021-05-29,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-21,[],IL,102nd +Do Pass as Amended Judiciary; 007-000-000,2021-05-12,['committee-passage'],IL,102nd +Assigned to Insurance Committee,2021-05-24,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 061-048-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-19,[],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-23,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 117-000-000,2021-05-31,[],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2021-04-27,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-0245,2021-08-03,['became-law'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0214,2021-07-30,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-27,[],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-12,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Butler,2021-05-13,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Alternate Co-Sponsor Removed Rep. Delia C. Ramirez,2021-05-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-05-25,[],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Steve Stadelman,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2021-05-25,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0315,2021-08-06,['became-law'],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-15,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Assigned to Public Safety,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Insurance,2021-05-04,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-05-05,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2021-05-12,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0272,2021-08-06,['became-law'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-03-07,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Elizabeth Hernandez,2021-08-31,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Public Act . . . . . . . . . 102-0370,2021-08-13,['became-law'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +"Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-02-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-05-14,[],IL,102nd +Do Pass Health; 014-000-000,2021-05-12,['committee-passage'],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-05-05,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Thomas Cullerton,2021-05-07,['amendment-introduction'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Karina Villa,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-04-27,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-10-22,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +"Effective Date August 16, 2021",2021-08-16,[],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-03-30,[],IL,102nd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-05-12,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2022-04-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-03-03,[],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-01-04,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-22,[],IL,102nd +Do Pass Transportation; 017-000-000,2022-03-23,['committee-passage'],IL,102nd +Third Reading - Passed; 050-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-08-09,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-03-29,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-25,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-04-16,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2022-03-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-02-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +First Reading,2021-04-20,['reading-1'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Withdrawn by Sen. Cristina H. Pacione-Zayas,2021-06-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-05-13,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-09,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. David A. Welter,2021-05-25,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-24,[],IL,102nd +Chief House Sponsor Rep. Bob Morgan,2023-01-05,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2021-05-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Randy E. Frese,2022-03-03,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Assigned to Appropriations,2022-03-28,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2022-03-04,[],IL,102nd +Recalled to Second Reading,2022-02-23,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2021-05-10,['amendment-introduction'],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-03-31,[],IL,102nd +Chief House Sponsor Rep. Robyn Gabel,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2023-01-08,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2023-01-10,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-03-02,[],IL,102nd +"Effective Date August 19, 2021",2021-08-19,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2022-04-07,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-30,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2022-03-30,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2022-04-01,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-30,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-02,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-02-02,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-21,['executive-receipt'],IL,102nd +Second Reading - Short Debate,2022-04-05,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Licensed Activities,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-04-04,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Public Act . . . . . . . . . 102-0517,2021-08-20,['became-law'],IL,102nd +Do Pass / Short Debate Appropriations-Elementary & Secondary Education Committee; 016-000-000,2022-03-15,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-03,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Eva-Dina Delgado,2022-04-05,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-21,['referral-committee'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dan Brady,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-04-05,[],IL,102nd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2022-03-04,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-23,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2022-03-15,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kambium Buckner,2022-03-15,[],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-28,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2022-02-08,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +Do Pass as Amended Health; 014-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-05-26,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 009-006-000,2022-04-09,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Criminal Law,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-04-05,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 015-000-000,2022-11-30,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-02-17,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Assigned to Commerce,2022-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-16,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 010-005-000,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-08,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-15,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 014-000-000,2022-04-01,[],IL,102nd +Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2021-05-27,[],IL,102nd +Approved for Consideration Assignments,2022-04-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2022-04-06,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tim Butler,2022-03-23,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Michael Kelly,2022-03-21,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Postponed - Education,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Omar Aquino,2021-05-11,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-18,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-29,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2022-03-22,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2022-04-07,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - April 6, 2022",2022-04-06,[],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Public Act . . . . . . . . . 102-0734,2022-05-06,['became-law'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-16,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-12-13,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Mike Simmons,2022-02-23,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2021-05-24,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 010-009-000,2021-05-13,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-03-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2021-04-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-03-03,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-02-24,[],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Assigned to Ethics & Elections Committee,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-01-04,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-10-27,['amendment-failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-07-25,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-03-09,['amendment-failure'],IL,102nd +Sponsor Removed Sen. Jason Plummer,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-03-09,[],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Justin Slaughter,2021-05-25,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-04-05,[],IL,102nd +Second Reading,2022-11-29,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2022-03-04,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-12,['referral-committee'],IL,102nd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2021-04-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2021-09-02,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2022-11-29,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-10-28,['amendment-passage'],IL,102nd +Assigned to Executive Committee,2021-04-28,['referral-committee'],IL,102nd +Assigned to Personnel & Pensions Committee,2022-03-07,['referral-committee'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Jackie Haas,2022-03-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-03-16,[],IL,102nd +Do Pass Education; 010-003-000,2022-03-23,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-31,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-04-04,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-02-17,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas M. Bennett,2022-11-30,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +First Reading,2021-05-25,['reading-1'],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +Sent to the Governor,2021-05-24,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-03-19,['filing'],IL,102nd +Public Act . . . . . . . . . 102-0574,2021-08-24,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 073-042-001,2021-05-31,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-0113,2021-07-23,['became-law'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Second Reading,2021-10-19,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Delia C. Ramirez,2021-05-04,[],IL,102nd +Do Pass Healthcare Access and Availability; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0136,2021-07-23,['became-law'],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2021-05-26,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-05-27,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Public Act . . . . . . . . . 102-0069,2021-07-09,['became-law'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 28, 2021",2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-05-05,[],IL,102nd +Sent to the Governor,2021-06-15,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0060,2021-07-09,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 013-000-000,2021-05-25,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-05-27,['amendment-failure'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-05-25,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +Alternate Co-Sponsor Removed Rep. Lakesia Collins,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-22,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-05-18,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-02-15,['referral-committee'],IL,102nd +Assigned to Executive,2022-03-28,['referral-committee'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-14,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 022-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Chief Senate Sponsor Sen. Jason Plummer,2021-04-23,[],IL,102nd +House Committee Amendment No. 2 Adopted in Executive Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-10-20,[],IL,102nd +Chief Senate Sponsor Sen. Mike Simmons,2022-03-04,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-29,[],IL,102nd +Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Ozinga,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-22,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-05-31,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-04-01,[],IL,102nd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-02-23,['amendment-failure'],IL,102nd +Assigned to Executive Committee,2021-10-14,['referral-committee'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2021-05-11,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Third Reading - Passed; 055-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2021-05-14,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dan Caulkins,2021-05-10,[],IL,102nd +Assigned to State Government,2021-04-28,['referral-committee'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 019-000-000,2021-05-19,['committee-passage'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-02-05,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-03-03,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 28, 2021",2021-05-27,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to State Government Administration Committee,2021-05-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Do Pass Health; 011-002-000,2021-05-12,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-20,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dave Severin,2023-01-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Third Reading - Passed; 053-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2022-03-31,['amendment-introduction'],IL,102nd +Alternate Co-Sponsor Removed Rep. Andrew S. Chesney,2021-05-06,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2021-04-23,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Re-assigned to Health,2021-10-13,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 076-031-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-04-06,[],IL,102nd +Public Act . . . . . . . . . 102-0137,2021-07-23,['became-law'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-10-19,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Do Pass Revenue; 009-000-000,2021-05-06,['committee-passage'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-04-15,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-04-23,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2022-03-23,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-03,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0331,2021-08-06,['became-law'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-02,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Public Act . . . . . . . . . 102-0056,2021-07-09,['became-law'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-16,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2021-05-13,[],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Postponed - Education,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Healthcare Access and Availability,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-27,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Assigned to Higher Education,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-26,[],IL,102nd +Do Pass / Consent Calendar Labor & Commerce Committee; 027-000-000,2021-05-12,['committee-passage'],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-25,[],IL,102nd +Assigned to Behavioral and Mental Health,2021-04-28,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-22,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anthony DeLuca,2021-05-30,['amendment-introduction'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0451,2021-08-20,['became-law'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-01-12,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Suspend Rule 21 - Prevailed,2022-03-02,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Kathleen Willis,2021-03-15,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-04,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Keith R. Wheeler,2021-05-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading August 31, 2021",2021-08-26,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-02-10,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-02-16,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 008-006-000,2021-05-12,['committee-passage'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-02-24,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-15,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2023-01-06,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-19,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-13,['referral-committee'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Do Pass Insurance; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-31,[],IL,102nd +Assigned to Labor,2021-05-11,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2022-03-23,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Public Act . . . . . . . . . 102-0439,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-16,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Jason A. Barickman,2021-05-29,['filing'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Do Pass Pensions; 007-000-000,2022-03-30,['committee-passage'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-11-29,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-03,[],IL,102nd +Assigned to Insurance,2022-03-02,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-13,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-02-16,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-04-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Public Act . . . . . . . . . 102-0793,2022-05-13,['became-law'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +To Appropriations- Human Services,2022-03-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +To Unemployment Insurance,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-14,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-04,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 021-005-000,2021-04-22,['committee-passage-favorable'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-04-05,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-21,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2022-03-30,[],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-31,[],IL,102nd +Remove Chief Co-Sponsor Rep. Robyn Gabel,2021-10-20,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Suzanne Ness,2022-02-28,['amendment-introduction'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2023-01-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Alternate Co-Sponsor Removed Rep. Mike Murphy,2021-05-05,[],IL,102nd +Second Reading,2021-08-31,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-16,[],IL,102nd +House Committee Amendment No. 2 Adopted in Appropriations-Public Safety Committee; by Voice Vote,2022-03-02,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-04-22,['amendment-failure'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Insurance; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2022-11-30,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Governor Approved,2021-05-28,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-03-30,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-02,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-04-21,[],IL,102nd +Governor Approved,2021-08-24,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Bob Morgan,2021-05-12,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-04-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2021-04-16,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-10,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-22,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-21,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-02-23,[],IL,102nd +Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-04-01,[],IL,102nd +Assigned to Education,2021-05-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-20,[],IL,102nd +Do Pass Executive; 011-005-001,2021-03-24,['committee-passage'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +To Income Tax Subcommittee,2022-02-03,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-08,[],IL,102nd +Public Act . . . . . . . . . 102-0406,2021-08-19,['became-law'],IL,102nd +Do Pass Education; 012-001-000,2021-05-19,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-05-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jehan Gordon-Booth,2021-05-18,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-04-04,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2022-04-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-03-09,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-04-29,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Eva-Dina Delgado,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-03-31,[],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-19,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2022-12-19,[],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Daniel Didech,2021-05-13,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-03-03,[],IL,102nd +Passed Both Houses,2023-01-10,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-22,['amendment-failure'],IL,102nd +Assigned to Insurance,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-04-05,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0907,2022-05-27,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Fine,2022-02-23,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-03-28,[],IL,102nd +Do Pass Commerce; 008-000-000,2022-03-24,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2022-03-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-03-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Randy E. Frese,2021-11-19,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Tony McCombie,2022-04-01,[],IL,102nd +Second Reading,2022-02-25,['reading-2'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Third Reading - Passed; 054-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Do Pass Executive; 014-000-000,2022-04-05,['committee-passage'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-29,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2022-04-06,[],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Arrived in House,2022-03-30,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +To Appropriations- Health,2022-02-08,[],IL,102nd +Third Reading - Passed; 051-001-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Chief Sponsor Changed to Rep. Jay Hoffman,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2022-03-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Luft,2022-03-16,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-23,['amendment-failure'],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Marcus C. Evans, Jr.",2022-04-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Theresa Mah,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Celina Villanueva,2023-01-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2021-10-28,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-01,[],IL,102nd +"Chief Sponsor Changed to Sen. Emil Jones, III",2022-04-06,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 057-000-000,2022-04-07,[],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2022-03-23,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2022-03-29,[],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-03-24,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-14,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-04-05,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Higher Education Committee,2022-03-22,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-04-05,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Crowe,2022-04-06,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Ann Gillespie,2022-03-30,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-09,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-10-28,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-05-17,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Sen. Linda Holmes,2022-12-01,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-02,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading October 19, 2021",2021-10-13,[],IL,102nd +Arrived in House,2022-03-10,['introduction'],IL,102nd +Assigned to Judiciary,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-07-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading November 30, 2022",2022-11-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-03-14,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kathleen Willis,2021-10-28,[],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-05-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ann Gillespie,2022-11-29,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-10-28,['amendment-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-29,[],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2021-10-27,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-05-12,[],IL,102nd +Do Pass / Short Debate Personnel & Pensions Committee; 006-002-000,2022-03-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-01-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2022-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-04-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading August 31, 2021",2021-08-26,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-17,[],IL,102nd +Third Reading - Short Debate - Passed 061-041-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-10-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-09,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2022-03-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-05-31,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Michael E. Hastings,2021-06-15,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Executive,2022-04-06,[],IL,102nd +"Effective Date May 13, 2022; - Some Provisions Effective January 1, 2023",2022-05-13,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-06-16,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-05-14,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Balanced Budget Note Filed,2021-04-16,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Second Reading,2021-05-28,['reading-2'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-31,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Second Reading,2021-05-30,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2021-05-13,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2021-05-28,['filing'],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 3,2021-05-27,[],IL,102nd +"Senate Floor Amendment No. 4 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-02-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-31,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 30, 2021",2021-05-29,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-14,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-11,['amendment-passage'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Do Pass State Government; 006-003-000,2021-05-06,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2023-01-10,[],IL,102nd +Governor Approved,2021-08-03,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-02-22,['amendment-passage'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-10-19,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tony McCombie,2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-15,[],IL,102nd +Third Reading - Short Debate - Passed 095-018-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-05-26,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0309,2021-08-06,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2021-05-13,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-25,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Ram Villivalam,2022-11-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. LaToya Greenwood,2021-05-31,[],IL,102nd +Third Reading - Passed; 055-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Commerce; 010-000-000,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-19,[],IL,102nd +"Do Pass / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-05-13,['committee-passage'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to Criminal Law,2021-05-29,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-0159,2021-07-23,['became-law'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-31,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Scott M. Bennett,2021-05-28,['filing'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2021-05-25,[],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-26,['committee-passage-favorable'],IL,102nd +Sent to the Governor,2021-06-07,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading October 20, 2021",2021-10-19,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Public Act . . . . . . . . . 102-0109,2021-07-23,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Martin J. Moylan,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-02,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2022-03-23,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Robert Rita,2022-03-23,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0141,2021-07-23,['became-law'],IL,102nd +Assigned to Revenue,2021-05-04,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Sue Scherer,2021-05-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As December 1, 2021",2021-10-13,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-05-11,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Laura Fine,2021-05-28,['filing'],IL,102nd +"House Floor Amendment No. 3 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-000",2021-04-22,['committee-passage-favorable'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-02-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-20,[],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-05-26,['amendment-passage'],IL,102nd +Arrived in House,2021-05-27,['introduction'],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2022-04-01,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Do Pass Education; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +Do Pass as Amended / Consent Calendar Executive Committee; 014-000-000,2021-05-12,['committee-passage'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-18,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2021-10-21,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Criminal Law,2021-05-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Greg Harris,2021-05-18,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-21,['amendment-failure'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Removed Co-Sponsor Rep. Chris Bos,2021-04-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 012-007-000,2021-05-26,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 072-045-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-05,[],IL,102nd +Public Act . . . . . . . . . 102-0072,2021-07-09,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0050,2021-07-09,['became-law'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-04-29,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Arrived in House,2021-05-27,['introduction'],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-05-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2021-10-18,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-22,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-22,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-05-07,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2022-07-07,[],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-12,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-19,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Michael E. Hastings,2021-04-23,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2021-06-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2021-05-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-29,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Justin Slaughter,2022-02-22,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Health,2022-03-29,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-05-29,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-27,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-01-13,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-03-07,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michael T. Marron,2021-04-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-12-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-11,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-09-19,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Camille Y. Lilly,2021-10-26,['amendment-introduction'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 008-000-000,2021-05-13,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0449,2021-08-20,['became-law'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-21,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-22,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. William Davis,2021-10-27,['amendment-introduction'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-05-21,[],IL,102nd +Assigned to Appropriations,2021-04-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jackie Haas,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-05-18,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-05-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-10,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2021-05-04,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +"Effective Date January 1, 2022",2021-08-23,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-11-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +House Floor Amendment No. 5 Rules Refers to Executive Committee,2022-04-01,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Revenue; 009-001-000,2022-11-29,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Judicial Note Requested by Rep. C.D. Davidsmeyer,2022-03-22,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2021-05-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-04,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Do Pass Executive; 013-002-000,2022-04-05,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-02-14,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-16,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2022-04-06,[],IL,102nd +Assigned to Energy and Public Utilities,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-03-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-03-17,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 007-000-000,2023-01-05,[],IL,102nd +Do Pass / Short Debate Public Utilities Committee; 024-000-000,2021-03-22,['committee-passage'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-04-06,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2022-03-15,[],IL,102nd +Arrive in Senate,2022-04-01,['introduction'],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-09-09,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2022-03-15,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-04-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-11,[],IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Scott M. Bennett,2022-04-07,['amendment-introduction'],IL,102nd +Remove Chief Co-Sponsor Rep. Sonya M. Harper,2021-04-20,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-04-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-04-05,[],IL,102nd +Sent to the Governor,2022-04-19,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-03-24,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-08,['referral-committee'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2023-01-05,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2021-04-29,[],IL,102nd +Third Reading - Passed; 057-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 House Concurs 112-000-000,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 30, 2022",2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Do Pass Health; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +Approved for Consideration Assignments,2023-01-04,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-05-13,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2021-04-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2022-02-17,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-06,[],IL,102nd +"House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2021-04-15,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-02-16,[],IL,102nd +Assigned to Executive,2021-05-29,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 8, 2022",2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-02-10,[],IL,102nd +Public Act . . . . . . . . . 102-1028,2022-05-27,['became-law'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2021-04-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-25,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Lindsey LaPointe,2022-03-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2022-11-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2022-03-23,[],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Napoleon Harris, III",2021-05-21,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-28,['reading-1'],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-03,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 018-008-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-10-27,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-16,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2022-04-08,['amendment-introduction'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-02-24,['amendment-failure'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 29, 2022",2022-03-28,[],IL,102nd +Senate Committee Amendment No. 1 To Appropriations- Health,2021-05-12,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Remove Chief Co-Sponsor Rep. La Shawn K. Ford,2021-04-22,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-13,['amendment-passage'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Arrived in House,2021-05-30,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-02,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-05-31,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 007-000-000,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Personnel & Pensions Committee; 005-002-000,2021-05-30,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2021-05-04,['amendment-introduction'],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Senate Floor Amendment No. 1 Adopted; McConchie,2022-02-24,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-23,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-04-22,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Ram Villivalam,2021-10-25,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Energy & Environment Committee; 017-005-000,2022-03-22,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-21,[],IL,102nd +Arrived in House,2021-05-25,['introduction'],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Judicial Note Requested - Withdrawn by Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-26,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2021-05-12,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-05,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-19,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-30,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Waive Posting Notice,2022-04-07,[],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 017-005-000,2022-03-22,['committee-passage'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 20, 2021",2021-10-19,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +"Effective Date January 1, 2022",2021-08-03,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Health Care Licenses Committee,2021-05-13,[],IL,102nd +Arrived in House,2021-05-26,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Deanne M. Mazzochi,2021-05-30,[],IL,102nd +Sent to the Governor,2022-05-04,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0002,2021-04-02,['became-law'],IL,102nd +Third Reading - Passed; 038-000-000,2022-03-09,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Alternate Co-Sponsor Removed Rep. Delia C. Ramirez,2021-04-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2021-10-27,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-07-21,[],IL,102nd +Arrived in House,2021-05-07,['introduction'],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2022-03-15,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2022-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 27, 2021",2021-05-26,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-05-27,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2021-04-28,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 017-000-000,2022-04-07,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-02-23,[],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-31,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Bush,2021-04-29,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-10-20,[],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Do Pass Higher Education; 011-000-000,2021-05-19,['committee-passage'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2022-03-08,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2021-10-25,['amendment-introduction'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-30,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-31,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-03-04,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. LaToya Greenwood,2021-05-12,['amendment-introduction'],IL,102nd +Recalled to Second Reading,2021-05-26,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jason A. Barickman,2021-05-11,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dave Severin,2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-03,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Fine,2022-03-31,['amendment-passage'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-14,[],IL,102nd +Public Act . . . . . . . . . 102-0246,2021-08-03,['became-law'],IL,102nd +Remove Chief Co-Sponsor Rep. William Davis,2021-04-13,[],IL,102nd +Public Act . . . . . . . . . 102-0205,2021-07-30,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-04-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Do Pass / Consent Calendar Executive Committee; 015-000-000,2021-05-19,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-04-07,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2021-03-16,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-31,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2022-03-10,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Third Reading - Passed; 057-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 059-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-19,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-05-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0788,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-03-10,[],IL,102nd +Recalled to Second Reading,2022-11-30,['reading-2'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-08-09,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-09,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-01-04,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2023-01-05,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2021-05-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Arrive in Senate,2022-02-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-03-03,[],IL,102nd +Do Pass as Amended Health; 013-000-000,2021-04-20,['committee-passage'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Referred to Assignments,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-04-16,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief Senate Sponsor Sen. Ann Gillespie,2022-03-07,[],IL,102nd +Postponed - Insurance,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Pacione-Zayas,2021-06-01,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Executive; 016-000-000,2022-03-30,['committee-passage'],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Executive,2021-05-30,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Maurice A. West, II",2021-05-24,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2021-05-14,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-09,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas Morrison,2021-05-26,[],IL,102nd +Public Act . . . . . . . . . 102-0561,2021-08-20,['became-law'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-06-29,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-12-01,"['passage', 'reading-3']",IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0433,2021-08-20,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0565,2021-08-20,['became-law'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-21,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-04-22,[],IL,102nd +Waive Posting Notice,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-10-27,[],IL,102nd +Public Act . . . . . . . . . 102-0513,2021-08-20,['became-law'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-31,['amendment-passage'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Holmes,2023-01-05,['amendment-passage'],IL,102nd +Do Pass / Consent Calendar Consumer Protection Committee; 006-000-000,2021-05-11,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-11-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2021-08-31,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-05,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-04-22,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Public Act . . . . . . . . . 102-0880,2022-05-13,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2022-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 5, 2022",2022-01-05,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-19,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Laura Fine,2022-04-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2022-03-16,[],IL,102nd +House Floor Amendment No. 1 Fiscal Note Requested as Amended by Rep. Avery Bourne,2021-04-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Antonio Muñoz,2022-03-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-03-31,['amendment-failure'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Transportation; 017-000-000,2022-02-22,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-13,['amendment-failure'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Healthcare Access and Availability,2022-03-22,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Murphy,2022-04-06,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2022-04-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 073-030-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 111-000-000,2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Terry Hall,2023-01-09,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-01,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Health,2022-03-31,[],IL,102nd +Assigned to Revenue,2021-05-04,['referral-committee'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Doris Turner,2022-03-25,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Do Pass Judiciary; 007-000-000,2022-04-04,['committee-passage'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Recalled to Second Reading,2022-04-08,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-03-05,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Licensed Activities,2022-03-23,[],IL,102nd +First Reading,2021-10-29,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2022-02-24,['reading-1'],IL,102nd +Second Reading - Short Debate,2023-01-09,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2021-10-21,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Cunningham,2022-04-01,['amendment-passage'],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dan Brady,2022-03-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2022-03-29,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Chief House Sponsor Rep. Frances Ann Hurley,2021-04-28,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-03-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-11,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Cristina Castro,2021-05-25,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-12-22,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Chief Sponsor Changed to Sen. Celina Villanueva,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-22,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-03,[],IL,102nd +Removed Co-Sponsor Rep. Terra Costa Howard,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ann Gillespie,2022-03-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2022-03-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 8, 2022",2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-02-24,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-24,['amendment-passage'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2022-03-29,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Rita Mayfield,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-30,[],IL,102nd +Second Reading - Short Debate,2022-03-28,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-04-04,[],IL,102nd +Do Pass Education; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Bill Cunningham,2023-01-06,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-03,[],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Third Reading - Passed; 048-005-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2023-01-05,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-12,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Keith R. Wheeler,2022-03-16,[],IL,102nd +Governor Approved,2022-04-29,['executive-signature'],IL,102nd +Placed on Calendar - Consideration Postponed,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-03-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-07,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2022-03-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-02-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-03-30,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-04-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2023-01-10,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-03-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 017-000-000,2022-04-06,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ann Gillespie,2022-04-08,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 7 Purusant to Senate Rule 3-8(b-1) the following amendments will remain in the Committee on Assignments.,2022-04-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2022-03-09,[],IL,102nd +Removed Co-Sponsor Rep. Robert Rita,2022-01-20,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +To Criminal Law- Juvenile Court,2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-23,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Lance Yednock,2022-02-17,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Michael E. Hastings,2022-04-08,[],IL,102nd +Assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2021",2021-05-11,['reading-3'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Rachelle Crowe,2022-04-07,['amendment-introduction'],IL,102nd +House Concurs,2021-10-27,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Public Act . . . . . . . . . 102-0347,2021-08-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-08-31,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 007-000-000,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt Insurance; 011-000-000,2021-05-06,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to State Government,2022-04-04,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2021-04-26,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-13,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 24, 2021",2021-05-21,[],IL,102nd +Public Act . . . . . . . . . 102-0394,2021-08-16,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Do Pass Education; 014-000-000,2021-05-12,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-18,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Withdrawn by Sen. Christopher Belt,2021-05-13,[],IL,102nd +Do Pass / Consent Calendar Police & Fire Committee; 014-000-000,2021-05-13,['committee-passage'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-03-07,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-05-20,[],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-03-28,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0124,2021-07-23,['became-law'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0211,2021-07-30,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-20,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Charles Meier,2021-05-12,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Mental Health & Addiction Committee; 014-000-000,2021-05-30,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 30, 2022",2022-03-29,[],IL,102nd +Third Reading - Short Debate - Passed 072-043-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-001-000,2021-05-18,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-05-26,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +Removed Co-Sponsor Rep. Lakesia Collins,2022-03-03,[],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +First Reading,2021-02-08,['reading-1'],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-04-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-29,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt Education; 014-000-000,2021-05-05,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0111,2021-07-23,['became-law'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 016-000-000,2021-05-29,[],IL,102nd +Public Act . . . . . . . . . 102-0117,2021-07-23,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0024,2021-06-25,['became-law'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to State Government,2022-04-07,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-06,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-30,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) May 28, 2021",2021-05-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-25,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Executive Committee; 009-006-000,2022-02-24,['committee-passage-favorable'],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2021-10-25,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-04-22,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-24,[],IL,102nd +Public Act . . . . . . . . . 102-0322,2021-08-06,['became-law'],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0151,2021-07-23,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2021-05-21,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-05-03,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-21,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Don Harmon,2022-03-31,[],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-03-03,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Brian W. Stewart,2021-05-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2021-05-26,[],IL,102nd +House Floor Amendment No. 1 Motion Prevailed 065-043-000,2022-04-06,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Assigned to Revenue,2022-03-02,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0194,2021-07-30,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0705,2022-04-22,['became-law'],IL,102nd +Third Reading - Passed; 051-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-29,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-16,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2021-05-30,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 009-004-000,2021-05-12,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-01-04,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-22,[],IL,102nd +Public Act . . . . . . . . . 102-0355,2021-08-13,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-05-11,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-05-20,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dan McConchie,2021-05-20,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas Morrison,2021-05-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-07,['reading-1'],IL,102nd +Assigned to Health Care Availability & Accessibility Committee,2021-05-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-04-26,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Referred to Rules Committee,2021-02-08,['referral-committee'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-03,['referral-committee'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2021-05-12,[],IL,102nd +Chief Senate Sponsor Sen. Steve Stadelman,2022-03-07,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Loughran-Cappel,2021-05-05,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Elizabeth Hernandez,2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2022-04-07,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 31, 2021",2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Robert Peters,2021-05-21,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2021-04-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-25,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-21,['reading-1'],IL,102nd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Steven Reick,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-03-03,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-001-000,2021-03-18,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 State Mandates Fiscal Note Request as Amended is Inapplicable,2022-04-06,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-26,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Adopted Both Houses,2021-10-27,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2021-08-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-05-13,[],IL,102nd +Public Act . . . . . . . . . 102-0128,2021-07-23,['became-law'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-12,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Postponed - Insurance,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 4 Adopted; Belt,2021-05-13,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2021-05-28,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Frances Ann Hurley,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Sara Feigenholtz,2022-03-29,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0146,2021-07-23,['became-law'],IL,102nd +Recalled to Second Reading - Short Debate,2021-05-27,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 28, 2021",2021-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 015-000-000,2022-03-30,[],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +Public Act . . . . . . . . . 102-0227,2021-07-30,['became-law'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-18,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Thomas Cullerton,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2021-05-19,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-10-19,[],IL,102nd +"Senate Floor Amendment No. 4 Filed with Secretary by Sen. Napoleon Harris, III",2022-04-04,['amendment-introduction'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Recalled to Second Reading,2021-05-06,['reading-2'],IL,102nd +Recalled to Second Reading,2021-05-12,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 103-005-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Steve Stadelman,2021-05-30,['filing'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-05-13,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2022-03-02,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-05-24,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-16,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-23,[],IL,102nd +Third Reading - Passed; 058-001-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +"Effective Date January 1, 2022",2021-08-16,[],IL,102nd +Third Reading - Passed; 055-000-001,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-29,[],IL,102nd +Chief Senate Sponsor Sen. David Koehler,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-10-25,['referral-committee'],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 114-000-000,2021-05-30,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 118-000-000,2021-05-19,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Charles Meier,2021-05-30,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 30, 2021",2021-05-25,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-04-23,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 022-000-000,2021-05-25,['committee-passage'],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +House Floor Amendment No. 2 Judicial Note Filed as Amended,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2021-05-11,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-19,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Veterans Affairs,2021-05-11,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Barbara Hernandez,2021-05-06,[],IL,102nd +Approved for Consideration Rules Committee; 003-000-000,2021-05-11,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Robyn Gabel,2021-05-30,[],IL,102nd +Approved for Consideration Assignments,2022-01-05,[],IL,102nd +Governor Approved,2021-07-27,['executive-signature'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Celina Villanueva,2021-05-29,['filing'],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-05-29,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Kambium Buckner,2021-05-24,[],IL,102nd +Public Act . . . . . . . . . 102-0346,2021-08-13,['became-law'],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2021-05-29,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-19,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Rachelle Crowe,2021-05-25,['filing'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2021-05-11,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-16,[],IL,102nd +House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Avery Bourne,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Waive Posting Notice,2022-04-04,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2021-05-27,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 5, 2022",2022-04-04,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Referred to Rules Committee,2021-10-29,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Murphy,2022-04-06,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-11-09,[],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-11,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 019-000-000,2021-03-19,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Public Act . . . . . . . . . 102-0863,2022-05-13,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2022-03-25,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-03-23,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-04-07,[],IL,102nd +Do Pass as Amended State Government; 008-000-000,2023-01-05,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Luft,2022-03-15,[],IL,102nd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-19,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2022-04-06,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-12,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2022-03-08,[],IL,102nd +Removed Co-Sponsor Rep. Dave Severin,2022-03-16,[],IL,102nd +Second Reading - Short Debate,2022-02-24,['reading-2'],IL,102nd +Do Pass / Short Debate Immigration & Human Rights Committee; 007-001-000,2021-03-10,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-06,['reading-3'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Cunningham,2022-04-01,['amendment-passage'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-05-05,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-03,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +Removed Co-Sponsor Rep. Kelly M. Cassidy,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-12-22,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-04-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2023-01-09,['reading-2'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Greg Harris,2021-05-12,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2021-05-18,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2022-03-21,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-15,[],IL,102nd +"Effective Date April 29, 2022",2022-04-29,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-10-28,[],IL,102nd +Do Pass Revenue; 011-000-000,2021-05-13,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Rachelle Crowe,2022-04-08,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2021-05-27,[],IL,102nd +House Committee Amendment No. 1 Adopted in Personnel & Pensions Committee; by Voice Vote,2022-03-17,['amendment-passage'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 101-010-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading November 29, 2022",2022-11-16,[],IL,102nd +Assigned to Insurance,2022-03-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2023-01-06,['referral-committee'],IL,102nd +Postponed - Licensed Activities,2022-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-22,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Rachelle Crowe,2021-05-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-04-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-01,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Second Reading,2022-04-01,['reading-2'],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Postponed - Executive,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Education,2022-04-04,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Laura M. Murphy,2022-11-15,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-10-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-28,[],IL,102nd +Recalled to Second Reading,2022-02-23,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2023-01-09,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2022-01-05,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2023-01-05,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Cities & Villages Committee,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robert Rita,2021-05-14,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Assigned to Labor,2021-05-04,['referral-committee'],IL,102nd +Remove Chief Co-Sponsor Rep. Jonathan Carroll,2022-04-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Pacione-Zayas,2021-06-01,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-03,[],IL,102nd +Third Reading - Passed; 049-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-04-21,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-11,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Fine,2022-11-30,['amendment-passage'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 30, 2021",2021-04-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-03,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Do Pass / Short Debate Appropriations-Public Safety Committee; 012-000-000,2022-03-09,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2022-02-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-08-09,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-01-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-03-10,[],IL,102nd +3/5 Vote Required,2022-11-30,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-21,[],IL,102nd +Sponsor Removed Sen. Dale Fowler,2021-05-27,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Assigned to Education,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-05-31,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-25,['amendment-passage'],IL,102nd +"Alternate Chief Sponsor Changed to Rep. Maurice A. West, II",2021-05-30,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2021-05-14,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Third Reading - Passed; 054-000-000,2023-01-09,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-05,[],IL,102nd +Arrived in House,2022-12-01,['introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2021-05-05,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-08-31,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2021-10-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Bill Cunningham,2021-05-30,['amendment-introduction'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Do Pass Executive; 016-000-000,2023-01-06,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-24,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Javier L Cervantes,2022-11-30,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-25,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-18,[],IL,102nd +Assigned to Agriculture & Conservation Committee,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2022-04-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-06,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-03,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-01-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 3 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 8 Purusant to Senate Rule 3-8(b-1) the following amendments will remain in the Committee on Assignments.,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2022-03-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-01,[],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-03,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2023-01-10,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-18,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-01-05,[],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +Removed Co-Sponsor Rep. Chris Bos,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2022-04-08,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-21,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Do Pass as Amended Transportation; 019-000-000,2021-05-12,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-04-07,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-14,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-31,[],IL,102nd +Do Pass Health; 011-000-000,2021-10-19,['committee-passage'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Theresa Mah,2021-05-11,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-14,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2022-04-01,[],IL,102nd +Chief House Sponsor Rep. Lance Yednock,2022-02-24,[],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Do Pass Education; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-04-28,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Arrived in House,2021-05-31,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Cristina H. Pacione-Zayas,2021-05-27,[],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +"Effective Date January 1, 2023",2021-08-03,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-07-21,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Nicholas K. Smith,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2023-01-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-20,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-04-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 115-000-000,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-02-05,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-10-18,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-22,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2021-05-31,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2021-05-28,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Kelly M. Cassidy,2021-04-26,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-25,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jehan Gordon-Booth,2022-04-05,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 3 - May 28, 2021",2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2021-05-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-05,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2021-05-10,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 016-001-000,2021-05-13,['committee-passage'],IL,102nd +Recalled to Second Reading,2021-05-30,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-12,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2022-03-28,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Chief Senate Sponsor Sen. John F. Curran,2021-04-23,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-05-18,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2022-11-30,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 070-042-003,2021-05-20,"['passage', 'reading-3']",IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-20,[],IL,102nd +Public Act . . . . . . . . . 102-0088,2021-07-09,['became-law'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Arrived in House,2021-05-21,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael J. Zalewski,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-02,[],IL,102nd +"Effective Date January 1, 2022",2021-08-16,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Karina Villa,2022-02-24,['amendment-introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Justin Slaughter,2021-05-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Criminal Law,2021-05-18,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-19,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-04-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2022-04-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 116-000-000,2021-05-31,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Ram Villivalam,2021-05-29,['filing'],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2021-05-12,['committee-passage'],IL,102nd +Do Pass Revenue; 011-000-000,2021-05-13,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2022-03-04,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Public Act . . . . . . . . . 102-0592,2021-08-27,['became-law'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2021-05-06,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-10-21,['referral-committee'],IL,102nd +Do Pass Education; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 31, 2021",2021-05-30,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-05-26,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-27,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-05-11,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-19,[],IL,102nd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt Criminal Law; 009-000-000,2021-05-30,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2021-10-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-15,[],IL,102nd +Third Reading - Short Debate - Passed 104-002-005,2022-03-29,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-01,[],IL,102nd +Do Pass / Short Debate Police & Fire Committee; 015-000-000,2022-03-16,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Mark Luft,2021-04-16,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jay Hoffman,2022-12-01,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-02-23,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2022-03-21,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +House Committee Amendment No. 2 Adopted in Judiciary - Criminal Committee; by Voice Vote,2022-03-22,['amendment-passage'],IL,102nd +Sent to the Governor,2023-01-23,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2022-03-16,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Do Pass as Amended Transportation; 017-000-000,2022-03-29,['committee-passage'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Fine,2022-02-23,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-04-20,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Celina Villanueva,2023-01-09,['amendment-introduction'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Jacqueline Y. Collins,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-02,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2021-05-31,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-04-29,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-04-05,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-17,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +"Effective Date May 6, 2022",2022-05-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2022-02-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-02-15,[],IL,102nd +Do Pass / Short Debate Judiciary - Civil Committee; 015-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-01-04,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2021-12-09,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to State Government,2022-02-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-16,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2022-02-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2022",2022-03-24,[],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Third Reading - Passed; 040-018-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +Senate Concurs,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-19,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Brian W. Stewart,2022-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-11,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-22,[],IL,102nd +Public Act . . . . . . . . . 102-1033,2022-05-27,['became-law'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 24, 2021",2021-03-24,[],IL,102nd +Do Pass Insurance; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-09,[],IL,102nd +Assigned to Pensions,2021-05-04,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-02-22,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2021-04-20,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - April 4, 2022",2022-04-01,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Julie A. Morrison,2022-04-04,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-06,[],IL,102nd +"Assigned to Transportation: Regulation, Roads & Bridges Committee",2022-03-17,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-03-14,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - March 30, 2022",2022-03-29,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-10-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 8, 2022",2022-02-25,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2022-04-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2022-04-06,[],IL,102nd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 009-003-002,2022-03-23,['committee-passage'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Lance Yednock,2022-03-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-10-28,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-14,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +"House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Emil Jones, III",2022-04-06,['filing'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-12,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-29,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2022-03-15,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-30,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 107-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - April 4, 2022",2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-21,[],IL,102nd +Third Reading - Passed; 048-001-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-04-05,[],IL,102nd +"Alternate Co-Sponsor Removed Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2022-03-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-04-05,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Melinda Bush,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-04-05,['reading-2'],IL,102nd +Chief House Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +Third Reading - Passed; 045-006-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Justin Slaughter,2021-05-06,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-03-02,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2021-05-14,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-02-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Restorative Justice Committee,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2022-02-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-05-07,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Rachelle Crowe,2022-03-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-05-13,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-31,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-02,['amendment-failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-03-29,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2021-05-29,['referral-committee'],IL,102nd +"Alternate Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2022-03-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-03-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Brian W. Stewart,2022-03-31,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2021-05-13,[],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-04-22,['amendment-failure'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-20,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-08-31,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-10-21,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-04-08,[],IL,102nd +Third Reading - Short Debate - Passed 101-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-21,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Assigned to Higher Education Committee,2021-05-26,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-03-23,[],IL,102nd +Chief Senate Sponsor Sen. Celina Villanueva,2022-03-04,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +"Effective Date May 28, 2021",2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-21,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Public Act . . . . . . . . . 102-0871,2022-05-13,['became-law'],IL,102nd +Alternate Chief Sponsor Changed to Rep. La Shawn K. Ford,2021-05-29,[],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2022-03-18,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Postponed - Executive,2022-04-06,[],IL,102nd +Assigned to Prescription Drug Affordability & Accessibility Committee,2022-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-12-13,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2022-03-30,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Judicial Note Filed,2021-04-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joe Sosnowski,2022-03-31,[],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-06-16,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-02-17,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Elizabeth Hernandez,2021-10-28,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-14,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachelle Crowe,2021-06-01,['amendment-introduction'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Justin Slaughter,2021-05-25,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2022-03-10,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-11-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-03-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-01-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 015-000-000,2021-05-31,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-10-28,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Mary E. Flowers,2021-10-27,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-10-20,['reading-2'],IL,102nd +Assigned to Health Care Licenses Committee,2022-03-07,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-05-12,[],IL,102nd +Assigned to Insurance,2022-03-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-06-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-03-09,[],IL,102nd +Public Act . . . . . . . . . 102-0774,2022-05-13,['became-law'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 29, 2021",2021-05-28,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-001,2021-05-26,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2022-03-01,['amendment-introduction'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 112-000-000,2022-04-07,[],IL,102nd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Kelly M. Burke,2022-04-05,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-04-07,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0247,2021-08-03,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-001-000,2021-05-18,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-02-23,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-04,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Education,2022-03-28,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2022-03-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Chief House Sponsor Rep. Michael Halpin,2021-05-11,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-31,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Arrived in House,2022-04-05,['introduction'],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Will Guzzardi,2021-05-31,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2021-05-28,['filing'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 015-000-000,2021-05-13,['committee-passage'],IL,102nd +Remove Chief Co-Sponsor Rep. Rita Mayfield,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-02,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tim Butler,2022-04-07,[],IL,102nd +Assigned to Executive,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-02-23,[],IL,102nd +Arrived in House,2021-05-31,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Public Act . . . . . . . . . 102-0054,2021-07-09,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-05-12,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2022-03-04,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Michelle Mussman,2022-03-11,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0726,2022-05-06,['became-law'],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Sonya M. Harper,2021-05-25,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0038,2021-06-25,['became-law'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Hunter,2022-04-08,['amendment-passage'],IL,102nd +Assigned to Licensed Activities,2022-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Remove Chief Co-Sponsor Rep. Terra Costa Howard,2021-04-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-11,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-03,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Connor,2021-05-26,['amendment-passage'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 073-044-000,2021-06-01,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kathleen Willis,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-20,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 31, 2021",2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-10-25,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2022-03-08,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Simmons,2022-03-29,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Second Reading,2021-10-20,['reading-2'],IL,102nd +Third Reading - Passed; 055-000-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2021-05-31,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-20,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-24,['reading-2'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-20,[],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2021-04-21,[],IL,102nd +Do Pass / Short Debate Veterans' Affairs Committee; 010-000-000,2022-03-15,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-29,[],IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-10-27,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2021-05-10,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2022-03-09,['amendment-failure'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2022-03-22,[],IL,102nd +House Floor Amendment No. 2 Judicial Note Requested as Amended by Rep. Deanne M. Mazzochi,2021-05-30,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-26,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2021-05-14,['amendment-introduction'],IL,102nd +Third Reading - Passed; 056-000-000,2021-10-20,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Dave Vella,2022-04-03,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2022-01-05,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to State Government,2021-05-30,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-03,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-25,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-10-26,['amendment-introduction'],IL,102nd +Chief Co-Sponsor Changed to Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0314,2021-08-06,['became-law'],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Chris Bos,2022-03-24,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 089-025-000,2021-05-31,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - April 7, 2022",2022-04-07,[],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2021-04-19,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-26,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2022-03-28,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2022-04-08,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-05-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Greg Harris,2022-03-15,[],IL,102nd +Public Act . . . . . . . . . 102-0827,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-03-24,[],IL,102nd +Approved for Consideration Assignments,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. André Thapedi,2021-03-17,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2022-03-15,[],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2022-03-23,['committee-passage'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Cristina Castro,2022-11-30,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Placed on Calendar - Consideration Postponed,2021-04-23,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-04-06,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John Connor,2022-04-05,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-09-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-03,[],IL,102nd +Do Pass / Short Debate Prescription Drug Affordability & Accessibility Committee; 018-000-000,2022-02-16,['committee-passage'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading November 29, 2022",2022-11-16,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 31, 2021",2021-05-29,[],IL,102nd +Fiscal Note Requested by Rep. Tim Butler,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. Michael Halpin,2022-02-25,[],IL,102nd +Placed on Calendar Order of First Reading,2022-04-01,['reading-1'],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Governor Approved,2022-06-07,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-02-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 22, 2021",2021-04-21,[],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0839,2022-05-13,['became-law'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Chief House Sponsor Rep. Lakesia Collins,2023-01-05,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-10,[],IL,102nd +Second Reading,2021-08-31,['reading-2'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-01,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-03-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 27, 2021",2021-05-26,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Omar Aquino,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-01-05,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Assigned to Consumer Protection Committee,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-03-11,[],IL,102nd +Waive Posting Notice,2021-05-19,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2023-01-04,[],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-12-14,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Sara Feigenholtz,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-05-05,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-04-05,[],IL,102nd +Public Act . . . . . . . . . 102-0502,2021-08-20,['became-law'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2021-05-04,[],IL,102nd +Do Pass Executive; 016-000-000,2021-05-19,['committee-passage'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-22,[],IL,102nd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-19,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2022-11-16,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-005-000,2021-05-29,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-20,['amendment-passage'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-04-20,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Postponed - Health,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Ram Villivalam,2021-05-12,['amendment-introduction'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0452,2021-08-20,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-05-21,[],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-14,[],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-24,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-13,['committee-passage-favorable'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-07-07,[],IL,102nd +Recalled to Second Reading,2021-06-15,['reading-2'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0539,2021-08-20,['became-law'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-25,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Third Reading - Consideration Postponed,2021-04-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-05-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-19,[],IL,102nd +Assigned to Licensed Activities,2021-05-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-05-14,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0542,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2021-05-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-28,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-31,['committee-passage-favorable'],IL,102nd +Third Reading - Short Debate - Passed 111-000-001,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-03,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-13,[],IL,102nd +"Effective Date December 31, 2022",2021-08-24,[],IL,102nd +Public Act . . . . . . . . . 102-0569,2021-08-23,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2022-11-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-06-28,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-04-01,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-21,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2021-04-19,['amendment-introduction'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2022-11-30,[],IL,102nd +Land Conveyance Appraisal Note Requested by Rep. C.D. Davidsmeyer,2022-03-22,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Celina Villanueva,2022-11-29,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-03-02,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-005-000,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-02-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-04-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2021-05-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2022-03-28,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Energy & Environment Committee,2022-03-02,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Appropriations-Human Services Committee,2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-03-28,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-04-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 7, 2021",2021-04-30,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-05,[],IL,102nd +Home Rule Note Filed,2022-02-22,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Denyse Wang Stoneback,2021-04-20,['amendment-introduction'],IL,102nd +Postponed - Agriculture,2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-30,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-02-19,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-03-02,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-07-08,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2022-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2021-10-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2021-04-15,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +State Mandates Fiscal Note Filed,2022-02-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-03,[],IL,102nd +Third Reading - Short Debate - Passed 103-006-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +First Reading,2022-03-28,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2021-10-19,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-02,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2022-03-24,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Janet Yang Rohr,2021-04-20,['amendment-introduction'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-08-31,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-31,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-05-12,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-006-000,2021-10-26,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-14,[],IL,102nd +Third Reading - Standard Debate - Passed 061-049-001,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-21,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2021-04-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Munoz,2021-06-15,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-03-09,[],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-13,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Assigned to Executive Committee,2021-05-04,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Debbie Meyers-Martin,2021-05-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2022-11-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-04-05,[],IL,102nd +Public Act . . . . . . . . . 102-0425,2021-08-20,['became-law'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. William Davis,2021-10-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michael J. Zalewski,2021-05-31,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Do Pass Licensed Activities; 009-000-000,2021-05-13,['committee-passage'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Senate Floor Amendment No. 5 Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-05-19,[],IL,102nd +First Reading,2021-04-29,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-05-18,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2021-04-27,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-05-21,[],IL,102nd +Public Act . . . . . . . . . 102-0535,2021-08-20,['became-law'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2021-05-30,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-07-07,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2021-10-25,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. David Koehler,2021-05-30,['filing'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Michelle Mussman,2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2022-03-24,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Education,2022-03-28,[],IL,102nd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-05,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-16,[],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0312,2021-08-06,['became-law'],IL,102nd +"Senate Floor Amendment No. 3 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments",2022-03-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-10-20,[],IL,102nd +Public Act . . . . . . . . . 102-0224,2021-07-30,['became-law'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +"Effective Date January 1, 2022",2021-08-16,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-10,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2021-05-03,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0324,2021-08-06,['became-law'],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2021-04-23,[],IL,102nd +Public Act . . . . . . . . . 102-0105,2021-07-23,['became-law'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-27,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-10,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-10-26,['referral-committee'],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2022-03-23,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0326,2021-08-06,['became-law'],IL,102nd +To Executive- Procurement,2021-05-06,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2021-06-01,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0720,2022-05-06,['became-law'],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-20,[],IL,102nd +Public Act . . . . . . . . . 102-0349,2021-08-13,['became-law'],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Deanne M. Mazzochi,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2021-05-12,[],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Dan Brady,2021-05-26,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Pension Note Requested - Withdrawn by Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-26,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. John F. Curran,2021-04-20,[],IL,102nd +"House Committee Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-13,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Do Pass as Amended Revenue; 007-000-000,2022-04-07,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-08,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Third Reading - Passed; 054-003-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-31,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-02-23,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2021-05-04,[],IL,102nd +"Alternate Chief Sponsor Changed to Sen. Emil Jones, III",2022-03-25,[],IL,102nd +Arrived in House,2021-04-28,['introduction'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-03-11,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-27,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2022-03-25,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0379,2021-08-13,['became-law'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Michael Halpin,2022-04-05,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Theresa Mah,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-06-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading October 26, 2021",2021-10-20,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-04-29,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-03-09,[],IL,102nd +Recalled to Second Reading,2021-10-27,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura Fine,2022-04-07,['filing'],IL,102nd +Second Reading,2021-05-24,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Celina Villanueva,2021-05-28,['filing'],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-03-03,[],IL,102nd +Public Act . . . . . . . . . 102-0753,2022-05-06,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-03,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. William Davis,2021-05-07,[],IL,102nd +First Reading,2021-05-12,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0619,2021-08-27,['became-law'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-03-16,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-04-01,[],IL,102nd +Assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Seth Lewis,2022-03-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2021-05-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ryan Spain,2021-05-20,[],IL,102nd +"Effective Date July 1, 2022",2022-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0498,2021-08-20,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-31,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2022-02-23,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Frances Ann Hurley,2022-03-30,[],IL,102nd +Do Pass / Short Debate Housing Committee; 021-000-000,2022-03-23,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-0976,2022-05-27,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-22,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 016-000-000,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-21,[],IL,102nd +Governor Approved,2022-06-07,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-03-09,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Ann Gillespie,2021-05-30,['filing'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-08-31,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-04-07,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2022-04-07,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2021-04-29,[],IL,102nd +Public Act . . . . . . . . . 102-0831,2022-05-13,['became-law'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-03,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-15,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Second Reading,2023-01-04,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-05-21,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 009-006-000,2022-03-16,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-03-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-05-13,[],IL,102nd +Do Pass / Short Debate Higher Education Committee; 010-000-000,2022-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2021-04-26,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2021-09-09,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2022-04-06,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-15,[],IL,102nd +Waive Posting Notice,2021-05-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tim Butler,2022-02-25,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-17,[],IL,102nd +Public Act . . . . . . . . . 102-0305,2021-08-06,['became-law'],IL,102nd +Chief Senate Sponsor Sen. Patricia Van Pelt,2022-04-01,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-06,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 016-000-000,2022-11-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Omar Aquino,2022-03-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2022-03-24,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-24,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-17,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2022-02-17,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-05-05,[],IL,102nd +Postponed - Energy and Public Utilities,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-03-10,[],IL,102nd +Second Reading,2022-04-06,['reading-2'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2022-03-16,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2022-03-01,[],IL,102nd +Chief Sponsor Changed to Sen. Ann Gillespie,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Terry Hall,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-04-03,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +"Effective Date January 1, 2023",2022-06-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-24,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Laura M. Murphy,2022-11-29,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-14,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0578,2021-08-24,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 016-000-000,2022-11-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-06-28,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-04-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Pension Note Requested by Rep. C.D. Davidsmeyer,2022-03-22,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-19,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-11-29,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2023-01-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-04-04,[],IL,102nd +Assigned to Executive,2022-03-22,['referral-committee'],IL,102nd +Assigned to Labor & Commerce Committee,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Do Pass / Short Debate Agriculture & Conservation Committee; 005-003-000,2022-03-15,['committee-passage'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Arrived in House,2022-04-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-03-18,[],IL,102nd +Second Reading,2022-04-06,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-01-21,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2022-04-08,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Do Pass Executive; 009-005-000,2021-05-19,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading August 31, 2021",2021-08-26,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-05-25,[],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-15,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2022-03-10,[],IL,102nd +Third Reading - Short Debate - Passed 064-038-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-04-08,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2023-01-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2022-03-01,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2022-03-22,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Health; 011-000-000,2022-11-29,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-08-09,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-29,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Emanuel Chris Welch,2023-01-05,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2022-01-04,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-24,[],IL,102nd +Removed Co-Sponsor Rep. Michael Kelly,2022-04-06,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-20,[],IL,102nd +Second Reading,2022-03-31,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2021-05-14,[],IL,102nd +Assigned to Human Rights,2021-04-28,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Fine,2022-11-30,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-10-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-03-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-06-01,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-03-30,[],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2022-02-23,[],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-04-14,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-29,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2021-04-23,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-07-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-05-13,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-06,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2021-03-18,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-04-16,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2022-03-08,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-05-24,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-03,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2022-03-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-11,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Kambium Buckner,2021-05-24,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-18,[],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2021-04-21,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-25,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0400,2021-08-16,['became-law'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Sara Feigenholtz,2021-05-30,['filing'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 5 Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Arrived in House,2021-04-23,['introduction'],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0121,2021-07-23,['became-law'],IL,102nd +Senate Floor Amendment No. 4 Adopted; Loughran-Cappel,2021-05-05,['amendment-passage'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Robert Peters,2021-10-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Executive Committee,2021-05-30,[],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Pensions,2021-05-29,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Justin Slaughter,2021-05-30,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-19,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Terra Costa Howard,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-05-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Removed Co-Sponsor Rep. LaToya Greenwood,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Public Safety,2021-05-05,[],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Elizabeth Hernandez,2021-05-28,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-1064,2022-06-10,['became-law'],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Judicial Note Filed as Amended,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2021-05-11,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-04-27,[],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2022-04-06,['amendment-introduction'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mike Murphy,2021-05-19,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-02-10,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2022-03-08,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-11,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-16,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-25,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-29,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-04-26,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-25,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Terri Bryant,2021-05-28,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-20,[],IL,102nd +Placed on Calendar - Consideration Postponed,2021-05-11,[],IL,102nd +Public Act . . . . . . . . . 102-0142,2021-07-23,['became-law'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-13,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Do Pass / Consent Calendar Health Care Availability & Accessibility Committee; 013-000-000,2021-05-11,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2022-03-31,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-18,[],IL,102nd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2021-05-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-05-13,[],IL,102nd +Do Pass Education; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-19,['referral-committee'],IL,102nd +Assigned to Health,2021-04-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-28,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2022-04-07,[],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-10-26,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Redistricting Committee,2021-08-31,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-04-20,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2021-10-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 5, 2022",2022-01-05,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 27, 2021",2021-05-26,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Simmons,2021-05-12,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 4 Adopted; Holmes,2021-05-06,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-16,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-12,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Assigned to Local Government,2022-03-16,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Omar Aquino,2021-04-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-05-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-27,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 2 Adopted,2022-04-04,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-14,[],IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-03-30,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-11-09,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-04-07,[],IL,102nd +Chief Senate Sponsor Sen. Omar Aquino,2021-04-19,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Don Harmon,2023-01-09,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-02-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2022-04-01,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2022-03-11,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-05,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Third Reading - Short Debate - Passed 106-006-001,2022-03-30,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading April 4, 2022",2022-04-01,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-03-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0847,2022-05-13,['became-law'],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2022-04-01,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Second Reading,2022-11-29,['reading-2'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Do Pass as Amended / Short Debate Personnel & Pensions Committee; 008-000-000,2022-03-17,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Health; 012-000-000,2022-04-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-21,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-03-30,[],IL,102nd +Public Act . . . . . . . . . 102-0716,2022-04-29,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-03-25,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Celina Villanueva,2021-04-23,[],IL,102nd +Removed Co-Sponsor Rep. Maura Hirschauer,2022-03-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2021-05-11,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Second Reading,2022-04-06,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Barbara Hernandez,2021-03-15,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2022-03-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-01,[],IL,102nd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-002-000",2021-05-20,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-02-24,['amendment-passage'],IL,102nd +Assigned to Labor & Commerce Committee,2022-03-17,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2023-01-05,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - April 7, 2022",2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-03-24,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2021-05-30,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-23,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-04,['reading-3'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Laura M. Murphy,2022-11-15,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Koehler,2022-02-23,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-20,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Robyn Gabel,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-0882,2022-05-13,['became-law'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-12-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-10-22,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-03-17,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-25,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Anna Moeller,2021-04-20,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-04-06,[],IL,102nd +Arrived in House,2022-04-08,['introduction'],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-11-30,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-12-01,[],IL,102nd +Approved for Consideration Assignments,2023-01-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-12,[],IL,102nd +Do Pass as Amended Judiciary; 005-001-000,2021-05-25,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-21,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-05-25,[],IL,102nd +Arrived in House,2023-01-10,['introduction'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 014-000-000,2021-10-26,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Third Reading - Passed; 057-000-000,2022-11-30,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0419,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-04-22,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2021-05-12,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2021-05-30,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2023-01-06,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Do Pass Education; 010-005-000,2021-05-05,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Jackie Haas,2021-05-14,[],IL,102nd +Sponsor Removed Sen. Sally J. Turner,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0456,2021-08-20,['became-law'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-09,[],IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-29,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-16,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-12-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-06-01,['referral-committee'],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Seth Lewis,2022-03-30,[],IL,102nd +Public Act . . . . . . . . . 102-0759,2022-05-13,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2022-03-09,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-31,[],IL,102nd +Sponsor Removed Sen. Terri Bryant,2021-05-27,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-01-07,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-03-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Executive Committee,2021-09-03,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pension Note Filed,2021-04-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Assignments,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-14,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Recalled to Second Reading,2021-05-31,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2022-03-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2021-05-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-06-16,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-01-04,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-03-09,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2021-10-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-02-16,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Suzanne Ness,2022-03-01,['amendment-introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-04-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-04-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Darren Bailey,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-20,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-05-07,[],IL,102nd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2021-03-17,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-10-21,[],IL,102nd +Public Act . . . . . . . . . 102-0529,2021-08-20,['became-law'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-04,[],IL,102nd +House Floor Amendment No. 3 Tabled Pursuant to Rule 40,2021-04-22,['amendment-failure'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2022-03-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steven M. Landek,2021-05-28,[],IL,102nd +Assigned to Revenue,2021-05-10,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2021-10-12,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dan McConchie,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Postponed Judiciary,2021-05-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-31,[],IL,102nd +Third Reading - Passed; 049-005-001,2023-01-05,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended / Short Debate Appropriations-Public Safety Committee; 011-000-003,2022-03-02,['committee-passage'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-05-26,['amendment-passage'],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-11-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-03-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-10-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-05-06,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-18,[],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Transportation: Regulation, Roads & Bridges Committee",2021-05-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2021-05-17,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-04-05,[],IL,102nd +House Floor Amendment No. 3 Fiscal Note Requested as Amended by Rep. Steven Reick,2022-02-25,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-001-000,2022-03-23,['committee-passage-favorable'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-21,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-18,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-29,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-03-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-04-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2022-04-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-06,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-05-30,[],IL,102nd +"Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-29,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to Executive,2021-05-29,['referral-committee'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Greg Harris,2021-10-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +Public Act . . . . . . . . . 102-0033,2021-06-25,['became-law'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-10-19,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0079,2021-07-09,['became-law'],IL,102nd +Do Pass as Amended Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Short Debate - Passed 096-013-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2023-01-10,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dan Caulkins,2021-05-27,['amendment-introduction'],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Villivalam,2021-05-30,['amendment-passage'],IL,102nd +Arrived in House,2021-05-27,['introduction'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-02-05,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Doris Turner,2021-05-28,['filing'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-05-26,[],IL,102nd +Public Act . . . . . . . . . 102-0242,2021-08-03,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lakesia Collins,2021-05-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-07-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2021-05-26,[],IL,102nd +Assigned to Public Utilities Committee,2021-05-13,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-05-10,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Kelly M. Burke,2021-04-30,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Michael E. Hastings,2021-05-28,['filing'],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2022-04-01,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-14,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. LaToya Greenwood,2021-05-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Assigned to Health Care Availability & Accessibility Committee,2021-05-19,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Mary E. Flowers,2021-05-28,[],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Assigned to Transportation,2021-05-11,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2021-10-25,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0304,2021-08-06,['became-law'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2021-05-18,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2021-05-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-22,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 5 Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Third Reading - Passed; 058-001-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0295,2021-08-06,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-18,[],IL,102nd +Public Act . . . . . . . . . 102-0397,2021-08-16,['became-law'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Chief House Sponsor Rep. LaToya Greenwood,2021-05-21,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Public Act . . . . . . . . . 102-0300,2021-08-06,['became-law'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 011-006-000,2021-05-20,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2022-04-05,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Win Stoller,2021-05-27,['filing'],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Public Act . . . . . . . . . 102-0289,2021-08-06,['became-law'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-27,[],IL,102nd +Do Pass / Consent Calendar Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-31,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-05-13,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-20,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-20,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-04-04,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Education,2021-05-29,['referral-committee'],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Arrived in House,2021-05-26,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Michael E. Hastings,2021-06-15,['amendment-introduction'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2021-05-27,[],IL,102nd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 018-000-000,2022-03-22,['committee-passage'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Villivalam,2022-04-05,['amendment-passage'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 013-007-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-19,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2021-05-06,[],IL,102nd +Chief Sponsor Changed to Sen. Ram Villivalam,2022-11-22,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-06,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-02,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-07,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2023-01-05,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2022-03-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2022-03-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2022-04-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-02-23,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-01-05,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-04-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Charles Meier,2022-03-17,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 009-005-000,2021-05-13,[],IL,102nd +Public Act . . . . . . . . . 102-0741,2022-05-06,['became-law'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-04-05,[],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-04-03,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Do Pass as Amended Healthcare Access and Availability; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +Second Reading,2022-03-28,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2023-01-09,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Mike Simmons,2022-02-24,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-05-26,[],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-05-18,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Availability & Accessibility Committee; 008-005-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Second Reading,2022-04-06,['reading-2'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-08,[],IL,102nd +Do Pass as Amended Education; 010-004-001,2022-03-29,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 064-045-000,2022-04-09,"['passage', 'reading-3']",IL,102nd +Arrived in House,2022-04-01,['introduction'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2022-04-04,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mattie Hunter,2022-03-23,['amendment-introduction'],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-04-01,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2021-04-20,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Health Care Licenses Committee,2022-04-05,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2021-05-05,[],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2021-05-11,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 30, 2022",2022-03-29,[],IL,102nd +Assigned to Insurance Committee,2022-03-07,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ann Gillespie,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 5 Adopted; Fine,2022-02-23,['amendment-passage'],IL,102nd +Governor Approved,2023-01-23,['executive-signature'],IL,102nd +"Effective Date June 1, 2022",2021-08-20,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-03-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Criminal Law,2021-05-10,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-29,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-19,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura Fine,2022-04-04,['filing'],IL,102nd +Second Reading - Short Debate,2022-03-25,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 079-026-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2022-03-11,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Third Reading - Passed; 053-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Steve Stadelman,2021-10-28,['amendment-introduction'],IL,102nd +Recalled to Second Reading,2022-04-09,['reading-2'],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-23,[],IL,102nd +Postponed - Pensions,2021-05-12,[],IL,102nd +"Do Pass / Short Debate Transportation: Regulation, Roads & Bridges Committee; 012-000-000",2022-03-24,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Higher Education Committee; 009-000-000,2022-03-23,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Steve Stadelman,2022-03-30,['filing'],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-11,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-05-17,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2021-04-20,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura M. Murphy,2022-03-30,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-04-05,[],IL,102nd +Public Act . . . . . . . . . 102-0848,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-03,[],IL,102nd +Do Pass Education; 011-000-000,2021-05-19,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-09,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Human Services Committee,2022-04-05,['referral-committee'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2022-03-16,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-03-29,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +Public Act . . . . . . . . . 102-0007,2021-05-28,['became-law'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-21,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-13,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-03-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2021-05-13,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2021-03-23,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 28, 2021",2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-03-30,[],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2021-05-31,[],IL,102nd +Chief Sponsor Changed to Rep. Jay Hoffman,2021-05-31,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Robert Rita,2021-10-20,[],IL,102nd +Second Reading,2022-03-28,['reading-2'],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-19,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2021-05-29,[],IL,102nd +"Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-000-000",2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-10-25,['referral-committee'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-04-14,[],IL,102nd +"Do Pass / Consent Calendar Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-05-11,['committee-passage'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-05-13,[],IL,102nd +Third Reading - Passed; 052-005-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2021-05-13,[],IL,102nd +Third Reading - Standard Debate - Passed 100-016-001,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-05-31,[],IL,102nd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 015-000-000,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-04,[],IL,102nd +House Floor Amendment No. 4 Adopted,2021-05-26,['amendment-passage'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2021-05-30,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 5 Be Approved for Consideration Assignments,2022-02-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Do Pass as Amended Criminal Law; 009-001-000,2021-05-19,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-10-20,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-18,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2021-05-29,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 009-000-000,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-21,[],IL,102nd +First Reading,2021-05-21,['reading-1'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Greg Harris,2022-03-23,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-26,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 24, 2021",2021-05-21,[],IL,102nd +Public Act . . . . . . . . . 102-0381,2021-08-13,['became-law'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2021-04-23,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2022-04-06,[],IL,102nd +"Placed on Calendar Order of First Reading April 20, 2021",2021-04-19,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-26,[],IL,102nd +House Floor Amendment No. 2 Pension Note Requested as Amended by Rep. Steven Reick,2022-02-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-04-05,[],IL,102nd +Chief House Sponsor Rep. Bob Morgan,2022-02-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 28, 2021",2021-05-28,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Education,2021-05-18,[],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-05-26,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-18,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-05-30,[],IL,102nd +Do Pass as Amended Healthcare Access and Availability; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Public Act . . . . . . . . . 102-0025,2021-06-25,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0114,2021-07-23,['became-law'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Carol Ammons,2021-05-03,[],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-27,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-02-05,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Recommends Be Adopted Human Services Committee; 012-000-000,2023-01-10,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-31,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2021-05-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-05-18,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-06,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2022-07-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tony McCombie,2021-05-26,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-05,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-10,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Diane Pappas,2022-04-07,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2022-04-01,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2021-05-12,[],IL,102nd +"Effective Date January 1, 2022; - Some Provisions Effective July 01, 2022",2021-07-30,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-26,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +House Committee Amendment No. 2 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Second Reading,2021-10-19,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2021-05-21,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 090-009-000,2021-04-14,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Arrive in Senate,2022-02-23,['introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-03-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2022-03-22,[],IL,102nd +Third Reading - Short Debate - Passed 109-002-001,2021-10-28,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2021-09-03,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Rachelle Crowe,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-01-31,[],IL,102nd +Governor Approved,2022-05-17,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-04-04,[],IL,102nd +Sponsor Removed Sen. Donald P. DeWitte,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-01-04,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-002-000,2021-10-28,['committee-passage-favorable'],IL,102nd +Assigned to Ethics & Elections Committee,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-05-12,[],IL,102nd +Second Reading - Short Debate,2021-10-27,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael Halpin,2022-03-25,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +House Floor Amendment No. 4 Rules Refers to Revenue & Finance Committee,2021-05-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2023-01-03,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-06-16,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 062-038-002,2022-03-03,"['passage', 'reading-3']",IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Brady,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Castro,2021-05-31,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2022-04-07,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 27, 2021",2021-05-26,[],IL,102nd +State Debt Impact Note Filed,2021-04-16,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-007-000,2021-03-17,['committee-passage'],IL,102nd +Postponed - Executive,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-18,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-28,[],IL,102nd +Arrived in House,2023-01-05,['introduction'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Arrive in Senate,2022-04-05,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Cristina H. Pacione-Zayas,2022-10-19,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-20,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-03,[],IL,102nd +Chief House Sponsor Rep. Rita Mayfield,2022-02-28,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Arrive in Senate,2022-04-01,['introduction'],IL,102nd +Public Act . . . . . . . . . 102-0812,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-02-19,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-10-25,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dan Brady,2021-10-12,[],IL,102nd +Do Pass Revenue; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Chris Bos,2021-04-22,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jehan Gordon-Booth,2021-05-27,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-05-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2022-02-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Energy and Public Utilities,2022-03-30,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - April 4, 2022",2022-04-01,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-22,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2023-01-05,[],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2021-04-23,[],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Criminal Committee; 018-000-000,2021-05-11,['committee-passage'],IL,102nd +To Problem- Solving Courts,2021-05-12,[],IL,102nd +"Effective Date January 23, 2023",2023-01-23,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Public Utilities Committee,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Jim Durkin,2021-04-26,[],IL,102nd +Recalled to Second Reading,2021-10-28,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-02,[],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-04-06,[],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Napoleon Harris, III",2022-03-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-04-07,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2022-12-01,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-05-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 29, 2022",2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-22,[],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-10-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 7, 2022",2022-04-06,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 30, 2022",2022-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-08,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2021-05-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-04-08,[],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Ann Gillespie,2022-03-31,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-05,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-03-29,[],IL,102nd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 006-000-000,2022-02-17,['committee-passage'],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-11,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Paul Jacobs,2022-01-07,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2021",2021-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-02-23,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2022-03-23,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2022-04-06,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2022-04-01,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Harmon,2022-04-09,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Arrived in House,2022-03-29,['introduction'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2021-05-27,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-19,[],IL,102nd +Do Pass / Short Debate Higher Education Committee; 010-000-000,2022-03-16,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-02-10,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Daniel Didech,2022-04-06,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Second Reading,2021-05-28,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2022-03-02,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-15,[],IL,102nd +Assigned to Transportation,2022-03-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Transportation,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2022-03-16,[],IL,102nd +Third Reading - Short Debate - Passed 098-011-002,2022-02-23,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-04-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-05,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2021-05-10,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 014-000-000,2022-04-07,[],IL,102nd +Arrived in House,2022-03-30,['introduction'],IL,102nd +Do Pass Pensions; 006-000-000,2021-05-19,['committee-passage'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-21,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 017-000-000,2021-05-20,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-04-06,[],IL,102nd +Public Act . . . . . . . . . 102-0460,2021-08-20,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2022-03-29,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-01,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2023-01-09,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Assigned to Transportation,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-21,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2022-03-21,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2022-04-07,['referral-committee'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-11,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-06-28,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 016-000-000,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-19,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2021-05-30,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Karina Villa,2021-05-19,['amendment-introduction'],IL,102nd +State Debt Impact Note Requested by Rep. C.D. Davidsmeyer,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-21,[],IL,102nd +Governor Approved,2021-08-23,['executive-signature'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Revenue,2022-11-30,[],IL,102nd +House Floor Amendment No. 5 Recommends Be Adopted Executive Committee; 014-000-000,2022-04-01,['committee-passage-favorable'],IL,102nd +Suspend Rule 21 - Prevailed 071-043-000,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-02-23,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-31,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2022-03-01,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Do Pass as Amended Health; 009-005-000,2022-03-23,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0941,2022-05-27,['became-law'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Senate Concurs,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Education; 013-000-000,2022-03-29,[],IL,102nd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2021-10-27,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-11,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-05-18,['amendment-introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-04-07,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2022-03-25,['amendment-introduction'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-10,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Pensions,2021-05-29,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Anthony DeLuca,2021-04-28,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Will Guzzardi,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Joyce,2021-10-27,['amendment-passage'],IL,102nd +Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2021-04-14,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - April 4, 2022",2022-04-01,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Norine K. Hammond,2021-05-13,['amendment-introduction'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-19,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 28, 2021",2021-05-27,[],IL,102nd +Chief Sponsor Changed to Rep. Bob Morgan,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0956,2022-05-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-02-10,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-16,[],IL,102nd +"Chief Sponsor Changed to Rep. Lawrence Walsh, Jr.",2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Steven Reick,2021-05-11,[],IL,102nd +Arrived in House,2022-03-10,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2021-05-03,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Sponsor Removed Sen. Neil Anderson,2021-10-26,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Waive Posting Notice,2021-05-25,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-17,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-26,['referral-committee'],IL,102nd +State Debt Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2021-05-13,['amendment-passage'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0064,2021-07-09,['became-law'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-20,[],IL,102nd +Third Reading - Passed; 049-005-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-07-26,['executive-signature'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Deb Conroy,2021-05-11,['amendment-introduction'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-04-20,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2021-10-25,[],IL,102nd +Third Reading - Passed; 044-009-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Senate Concurs 058-001-000,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Health Care Licenses Committee,2022-04-05,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-23,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mark Batinick,2022-03-08,[],IL,102nd +Postponed - Executive,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Cities & Villages Committee,2022-04-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2021-10-26,[],IL,102nd +Do Pass / Consent Calendar Executive Committee; 014-000-000,2021-05-12,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Ann Gillespie,2021-05-28,['filing'],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-29,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-14,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jeff Keicher,2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-03-29,[],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0388,2021-08-16,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-05-30,[],IL,102nd +Sent to the Governor,2021-11-17,['executive-receipt'],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-05-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Public Act . . . . . . . . . 102-0208,2021-07-30,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0131,2021-07-23,['became-law'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-04,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-27,[],IL,102nd +Third Reading - Passed; 042-012-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Higher Education,2021-05-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Chief House Sponsor Rep. Frances Ann Hurley,2022-02-24,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Removed Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-15,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-03-02,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-02,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-02-19,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 011-006-000,2022-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +Fiscal Note Filed,2022-02-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2021-10-27,[],IL,102nd +Arrived in House,2022-03-30,['introduction'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Keith R. Wheeler,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-03-09,[],IL,102nd +Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Health,2021-05-17,[],IL,102nd +Public Act . . . . . . . . . 102-0538,2021-08-20,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-06-15,[],IL,102nd +Public Act . . . . . . . . . 102-0464,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-14,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Anthony DeLuca,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Referred to Assignments,2021-04-29,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Javier L Cervantes,2022-12-08,[],IL,102nd +Assigned to Healthcare Access and Availability,2021-05-11,['referral-committee'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Read in Full a Third Time,2021-05-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-07-07,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2021-05-12,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 5 Assignments Refers to Executive,2021-05-30,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2021-08-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-05-18,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Public Act . . . . . . . . . 102-0465,2021-08-20,['became-law'],IL,102nd +Second Reading,2021-05-24,['reading-2'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-001-000",2021-05-25,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-0444,2021-08-20,['became-law'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Alternate Co-Sponsor Removed Rep. Amy Elik,2021-05-04,[],IL,102nd +Assigned to State Government,2021-05-10,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-04-29,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-04-05,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2021-05-13,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Alternate Co-Sponsor Removed Rep. Anne Stava-Murray,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-01-04,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Eva-Dina Delgado,2021-05-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-02-16,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-04-22,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-05-05,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-03-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2023-01-05,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-02-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-20,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert F. Martwick,2022-03-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 7, 2022",2022-04-06,[],IL,102nd +Third Reading - Consent Calendar - First Day,2022-03-02,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading January 5, 2023",2023-01-04,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-21,[],IL,102nd +Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-03-10,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-04-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2022-03-15,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Kelly M. Burke,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-15,[],IL,102nd +Assigned to Health Care Availability & Accessibility Committee,2021-03-16,['referral-committee'],IL,102nd +Fiscal Note Filed,2021-05-17,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-06,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-01-05,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Do Pass Executive; 013-000-000,2021-05-29,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Patrick J. Joyce,2022-04-04,['filing'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-05-13,[],IL,102nd +"Rule 2-10(e) Third Reading Deadline Established As April 8, 2022",2022-04-05,['reading-3'],IL,102nd +Public Act . . . . . . . . . 102-0225,2021-07-30,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-11-30,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +First Reading,2022-04-01,['reading-1'],IL,102nd +"Effective Date June 7, 2022",2022-06-07,[],IL,102nd +Assigned to Licensed Activities,2021-05-10,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Executive,2022-04-06,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-06,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2021-04-26,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Eric Mattson,2023-01-05,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-09-09,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Public Act . . . . . . . . . 102-1045,2022-06-07,['became-law'],IL,102nd +Second Reading,2022-11-30,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-03-03,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2022-03-29,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-11-30,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-22,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-05-12,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Arrived in House,2022-11-30,['introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2023-01-09,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 018-000-000,2021-05-26,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2023-01-06,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jay Hoffman,2021-10-28,['amendment-introduction'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Public Act . . . . . . . . . 102-0448,2021-08-20,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0492,2021-08-20,['became-law'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 26, 2021",2021-05-25,[],IL,102nd +Public Act . . . . . . . . . 102-0488,2021-08-20,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 072-044-001,2021-05-31,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Kelly M. Burke,2022-12-01,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-28,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-002-000,2021-10-27,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-22,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Elizabeth Hernandez,2021-08-31,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Cristina Castro,2021-05-27,['filing'],IL,102nd +Sent to the Governor,2022-04-19,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0081,2021-07-09,['became-law'],IL,102nd +Third Reading - Consideration Postponed,2021-05-12,['reading-3'],IL,102nd +Third Reading - Consent Calendar - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-05-13,[],IL,102nd +Third Reading - Short Debate - Lost 040-021-007,2022-04-06,"['failure', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-26,[],IL,102nd +Do Pass Education; 011-000-000,2021-05-12,['committee-passage'],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to State Government,2022-04-05,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2021-05-14,['amendment-introduction'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Alternate Co-Sponsor Removed Rep. Lamont J. Robinson, Jr.",2022-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-20,[],IL,102nd +Arrived in House,2021-05-13,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2021-05-11,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Education,2021-05-25,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-06,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2022-03-08,[],IL,102nd +Governor Approved,2021-07-15,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-10-26,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-03,[],IL,102nd +Recalled to Second Reading,2022-04-07,['reading-2'],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +"Do Pass as Amended / Consent Calendar Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-05-13,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Do Pass Executive; 012-004-000,2022-04-05,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2022-03-18,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-007-000,2021-05-12,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-03-18,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-26,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Assigned to Criminal Law,2021-04-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2022-11-30,[],IL,102nd +First Reading,2021-04-21,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Randy E. Frese,2021-05-24,[],IL,102nd +"House Floor Amendment No. 2 Withdrawn by Rep. Marcus C. Evans, Jr.",2022-03-03,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-25,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Pensions; 008-000-000,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Veterans' Affairs Committee,2022-04-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-03,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 018-000-000,2021-05-11,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-05-25,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +Governor Approved,2022-06-09,['executive-signature'],IL,102nd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 012-000-000,2021-05-25,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-11,['amendment-passage'],IL,102nd +Second Reading,2021-05-05,['reading-2'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-03-18,[],IL,102nd +Do Pass as Amended Veterans Affairs; 004-001-000,2021-05-12,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to State Government,2021-05-31,['referral-committee'],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-10-25,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-05-30,['referral-committee'],IL,102nd +Assigned to State Government Administration Committee,2021-05-13,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Executive Committee; 015-000-000,2021-05-30,['committee-passage-favorable'],IL,102nd +Approved for Consideration Assignments,2021-10-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-05-29,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2021-04-20,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-05-24,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Recalled to Second Reading,2022-03-31,['reading-2'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 20, 2021",2021-05-19,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Commerce,2022-03-29,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2021-05-25,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-05-25,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2022-01-05,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0171,2021-07-27,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-23,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Third Reading - Short Debate - Passed 112-002-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-10-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-27,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-28,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Higher Education Committee,2021-05-24,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Frances Ann Hurley,2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-12,[],IL,102nd +Public Act . . . . . . . . . 102-0362,2021-08-13,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-05-25,[],IL,102nd +Assigned to Health,2022-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-22,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-03,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Ann Gillespie,2022-11-30,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 017-000-000,2022-04-08,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2023-01-10,[],IL,102nd +"Motion Filed to Reconsider Vote Rep. Lawrence Walsh, Jr.",2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-04-04,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-01-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Public Act . . . . . . . . . 102-0765,2022-05-13,['became-law'],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-03-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2022-03-09,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2021-05-03,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-12-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2022-04-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-01-24,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Villa,2022-04-06,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-08,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Kelly M. Burke,2022-03-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-03-03,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-10,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-24,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2023-01-05,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2021-04-30,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-08-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-31,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 7, 2021",2021-04-30,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2022-02-24,[],IL,102nd +3/5 Vote Required,2021-06-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2021-05-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-10,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-03-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-03-29,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2021-11-09,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-03-03,[],IL,102nd +First Reading,2022-03-31,['reading-1'],IL,102nd +Assigned to Agriculture & Conservation Committee,2021-05-04,['referral-committee'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2023-01-04,[],IL,102nd +Recalled to Second Reading,2022-04-05,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Craig Wilcox,2022-03-16,['amendment-introduction'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-14,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-23,[],IL,102nd +Public Act . . . . . . . . . 102-0751,2022-05-06,['became-law'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-04-05,[],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2022-01-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2021-05-24,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 2 Postponed - Executive,2022-04-06,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Mental Health & Addiction Committee,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-25,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-12-22,[],IL,102nd +Do Pass as Amended Education; 012-000-000,2022-04-04,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Jackie Haas,2022-03-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-12,[],IL,102nd +Assigned to Transportation,2021-05-11,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-09,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-30,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +"Effective Date May 6, 2022",2022-05-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-03-30,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Suzanne Ness,2022-03-14,[],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-1022,2022-05-27,['became-law'],IL,102nd +Third Reading - Passed; 049-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-04-05,[],IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-05-12,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 4, 2022",2022-04-01,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-22,[],IL,102nd +House Floor Amendment No. 2 Withdrawn by Rep. Margaret Croke,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-24,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2021-05-21,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-11-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 7, 2022",2022-04-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2022-03-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2023-01-09,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 8, 2022",2022-04-04,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Celina Villanueva,2022-04-07,['filing'],IL,102nd +Do Pass Insurance; 014-000-000,2022-03-30,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-04-01,[],IL,102nd +Third Reading - Short Debate - Passed 070-039-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 015-000-000,2022-04-07,[],IL,102nd +Third Reading - Passed; 059-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2022-04-07,[],IL,102nd +Second Reading,2023-01-05,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading November 30, 2022",2022-11-29,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Scott M. Bennett,2022-03-29,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 024-000-000,2022-03-23,['committee-passage'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Resolution Adopted 066-039-000,2022-03-31,['passage'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Melinda Bush,2022-02-18,['amendment-introduction'],IL,102nd +Assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-10-25,[],IL,102nd +Assigned to Veterans' Affairs Committee,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-04-06,[],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-14,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-04-06,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-02-18,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 054-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-05-31,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-25,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Adopted in Higher Education Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John F. Curran,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-29,[],IL,102nd +Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2021-03-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Recalled to Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +Recommends Be Adopted Rules Committee; 005-000-000,2022-01-19,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-15,[],IL,102nd +"Placed on Calendar Order of 2nd Reading April 5, 2022",2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-05-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2023-01-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-07,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Christopher Belt,2021-10-25,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 1",2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Butler,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2021-11-09,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2022-03-14,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-01,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-07,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - March 31, 2022",2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-28,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0747,2022-05-06,['became-law'],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 009-000-000,2021-05-25,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2021-05-25,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-14,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Patrick Windhorst,2022-03-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-31,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Second Reading - Short Debate,2022-03-28,['reading-2'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2022-11-15,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Adopted; Bennett,2022-04-05,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Ozinga,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-02-24,[],IL,102nd +House Floor Amendment No. 3 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2022-03-31,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-12-28,[],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-02-23,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Chief Sponsor Changed to Rep. LaToya Greenwood,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2022-02-16,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-05-13,['amendment-introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Bill Cunningham,2023-01-08,['amendment-introduction'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Arrived in House,2022-03-30,['introduction'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-03-25,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-20,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2022-03-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-28,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-03-23,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 016-000-000,2022-04-07,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2023-01-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 6, 2023",2023-01-05,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-01,['amendment-failure'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 29, 2021",2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-04-01,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 017-000-000,2022-04-06,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Celina Villanueva,2022-12-28,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 7, 2022",2022-04-06,[],IL,102nd +First Reading,2022-03-10,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-01-10,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Cassidy,2022-03-01,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-01-05,[],IL,102nd +Recalled to Second Reading,2022-04-08,['reading-2'],IL,102nd +Second Reading,2021-10-19,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Ann Gillespie,2022-04-08,[],IL,102nd +Do Pass Health; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2022-03-23,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Mattie Hunter,2021-04-27,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Ann Gillespie,2022-11-30,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-03-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-04-04,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-01-24,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-03-04,[],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-03-24,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Second Reading,2021-05-26,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-06,['referral-committee'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-11-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +Second Reading,2023-01-09,['reading-2'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2021-05-12,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0468,2021-08-20,['became-law'],IL,102nd +Removed Co-Sponsor Rep. Camille Y. Lilly,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michael J. Zalewski,2022-12-01,['amendment-introduction'],IL,102nd +"House Committee Amendment No. 2 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2021-05-13,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Do Pass as Amended Public Safety; 006-000-000,2021-05-12,['committee-passage'],IL,102nd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2021-05-25,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-06,['amendment-failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-03-08,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,[],IL,102nd +House Floor Amendment No. 3 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-03,[],IL,102nd +"Effective Date January 1, 2023",2022-06-09,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2021-05-14,[],IL,102nd +Assigned to Health,2021-05-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Adriane Johnson,2022-04-04,['filing'],IL,102nd +Governor Approved,2022-04-22,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dagmara Avelar,2022-04-04,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Veterans' Affairs Committee; 009-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 115-000-000,2021-06-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Bennett,2022-03-31,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-05-14,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-29,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Criminal Law,2021-05-29,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-18,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-10-26,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-03-03,[],IL,102nd +Third Reading - Passed; 040-013-000,2021-05-12,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to State Government,2021-05-31,['referral-committee'],IL,102nd +Be Adopted Transportation; 019-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Education; 013-000-000,2021-05-25,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-22,[],IL,102nd +Public Act . . . . . . . . . 102-0329,2021-08-06,['became-law'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Removed from Short Debate Status,2021-04-15,[],IL,102nd +Assigned to Energy and Public Utilities,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-10-26,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2021-05-25,['filing'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-23,[],IL,102nd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lawrence Walsh, Jr.",2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Anna Moeller,2021-05-30,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-25,[],IL,102nd +Third Reading - Standard Debate - Passed 069-043-000,2021-05-12,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +"Effective Date January 1, 2022",2021-07-15,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Withdrawn by Rep. Jay Hoffman,2021-05-31,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-20,[],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-19,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Avery Bourne,2021-05-12,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2021-04-26,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Withdrawn by Sen. Rachelle Crowe,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Michelle Mussman,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2021-05-14,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading October 27, 2021",2021-10-26,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 6, 2021",2021-05-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-05-25,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 009-006-000,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-26,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2021-05-17,['amendment-introduction'],IL,102nd +Do Pass Criminal Law; 009-000-000,2021-05-05,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-04-21,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Higher Education Committee; 006-004-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Third Reading - Short Debate - Passed 064-045-001,2021-05-27,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. William Davis,2021-05-13,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Redistricting Committee; 006-004-000,2021-08-31,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-03-18,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-17,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to State Government,2021-05-30,['referral-committee'],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2022-03-16,['committee-passage'],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Redistricting Committee,2021-05-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Ram Villivalam,2022-12-01,['amendment-introduction'],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-05-18,[],IL,102nd +Senate Floor Amendment No. 4 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-05-24,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-08-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Third Reading - Passed; 050-005-000,2021-06-01,"['passage', 'reading-3']",IL,102nd +3/5 Vote Required,2022-11-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Environment and Conservation; 006-000-000,2022-03-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Third Reading - Passed; 045-002-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-10,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-07-07,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2023-01-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-05,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-04-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Sims,2022-04-09,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-03-10,[],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-30,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Health,2022-04-04,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michelle Mussman,2021-04-20,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Steve Stadelman,2022-03-30,['filing'],IL,102nd +Senate Committee Amendment No. 3 Rule 3-9(a) / Re-referred to Assignments,2022-02-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Licensed Activities; 008-000-000,2022-02-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-03-25,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-04-05,[],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Harmon,2021-10-28,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-04-05,[],IL,102nd +Governor Approved,2022-04-29,['executive-signature'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Lance Yednock,2022-03-25,['amendment-introduction'],IL,102nd +Reported Back To Revenue & Finance Committee;,2022-02-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Chief House Sponsor Rep. Michael J. Zalewski,2022-04-06,[],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-03,[],IL,102nd +House Floor Amendment No. 5 Filed with Clerk by Rep. Stephanie A. Kifowit,2021-05-18,['amendment-introduction'],IL,102nd +"Added Alternate Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-04-01,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-1121,2023-01-23,['became-law'],IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-10-28,[],IL,102nd +Do Pass Behavioral and Mental Health; 006-000-000,2022-04-05,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 112-000-000,2022-04-07,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2022-04-04,['filing'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2022-03-21,[],IL,102nd +Senate Floor Amendment No. 4 Tabled Pursuant to Rule 5-4(a),2022-02-23,['amendment-failure'],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 009-000-000,2021-05-05,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2021-04-20,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2022-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2022-03-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-23,[],IL,102nd +Assigned to Housing Committee,2021-03-09,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Energy and Public Utilities; 016-000-000,2022-03-10,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2022-04-01,[],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Third Reading - Passed; 047-005-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2022-01-07,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-14,[],IL,102nd +Second Reading - Short Debate,2022-03-25,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2022-03-23,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Don Harmon,2023-01-09,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 017-000-000,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-05-26,[],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2022-03-22,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2022-03-18,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-03-02,[],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Public Utilities Committee,2022-04-05,['referral-committee'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt State Government; 008-000-000,2022-02-24,[],IL,102nd +Third Reading - Short Debate - Passed 073-035-000,2023-01-05,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-04-05,[],IL,102nd +Postponed - Transportation,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 21, 2021",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-02-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2022-03-16,[],IL,102nd +Do Pass Transportation; 017-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2022-03-15,[],IL,102nd +Third Reading - Passed; 058-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-14,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-04-07,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Human Services Committee,2022-04-08,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Assigned to Energy & Environment Committee,2022-03-07,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-10,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Energy and Public Utilities; 016-000-000,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-04,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-03-29,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-20,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Darren Bailey,2021-05-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael Kelly,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2022-03-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-30,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2, 3",2021-10-28,[],IL,102nd +Public Act . . . . . . . . . 102-0776,2022-05-13,['became-law'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2022-03-30,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-09-07,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-03-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2022-03-14,[],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +"Added as Chief Co-Sponsor Sen. Emil Jones, III",2021-05-26,[],IL,102nd +Housing Affordability Impact Note Filed,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2022-04-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-03-31,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-01-04,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-06-16,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-02-17,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Tom Demmer,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading,2021-05-28,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-31,[],IL,102nd +"Effective Date May 17, 2022",2022-05-17,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Laura M. Murphy,2021-06-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2022-03-16,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-22,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-10-27,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-20,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-01-04,[],IL,102nd +Third Reading - Passed; 042-010-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Fine,2022-03-30,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Bob Morgan,2021-05-13,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Melinda Bush,2021-05-28,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-03-23,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Jonathan Carroll,2022-02-28,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Placed on Calendar Order of First Reading,2022-02-23,['reading-1'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jehan Gordon-Booth,2022-04-05,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-05-28,['filing'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Adoption & Child Welfare Committee,2021-05-29,['referral-committee'],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-12,[],IL,102nd +Do Pass Education; 013-000-000,2021-05-19,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Darren Bailey,2022-03-09,[],IL,102nd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2021-05-30,['amendment-failure'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2021-05-18,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0190,2021-07-30,['became-law'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 24, 2022",2022-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 055-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 018-000-000,2021-05-20,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-03-18,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 31, 2021",2021-05-31,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Michael E. Hastings,2021-06-15,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 116-000-000,2021-05-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-23,[],IL,102nd +Recalled to Second Reading,2021-05-27,['reading-2'],IL,102nd +Placed on Calendar Order of Resolutions,2023-01-10,[],IL,102nd +Sent to the Governor,2022-04-26,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-13,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2021-10-26,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-05-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading October 20, 2021",2021-10-19,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-07-21,[],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Public Act . . . . . . . . . 102-0287,2021-08-06,['became-law'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Don Harmon,2021-06-01,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 101-014-000,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-23,[],IL,102nd +Assigned to Environment and Conservation,2021-05-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Public Act . . . . . . . . . 102-0093,2021-07-09,['became-law'],IL,102nd +Assigned to State Government,2021-05-11,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-31,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Do Pass / Consent Calendar Public Utilities Committee; 022-000-000,2021-05-20,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-25,[],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-10-20,['committee-passage'],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-1078,2022-06-10,['became-law'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Immigration & Human Rights Committee; 008-000-000,2022-04-07,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to State Government,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2021-05-31,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +House Committee Amendment No. 2 Adopted in Executive Committee; by Voice Vote,2021-10-20,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Lost 042-055-003,2021-04-22,"['failure', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Katie Stuart,2021-05-28,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Do Pass Behavioral and Mental Health; 007-004-000,2021-05-05,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2022-04-05,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2022-03-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-26,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 007-000-000,2021-05-30,[],IL,102nd +Assigned to Higher Education Committee,2022-03-07,['referral-committee'],IL,102nd +Third Reading - Passed; 044-012-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Assigned to Insurance Committee,2021-05-04,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0201,2021-07-30,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-26,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 058-001-000,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Referred to Rules Committee,2021-05-21,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Martin J. Moylan,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 29, 2022",2022-03-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-05-29,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Revenue,2021-05-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-26,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Public Act . . . . . . . . . 102-0073,2021-07-09,['became-law'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2021-05-11,[],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-02-05,[],IL,102nd +Third Reading - Short Debate - Passed 074-038-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Postponed - State Government,2022-04-05,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Linda Holmes,2021-05-25,['filing'],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. William Davis,2021-05-27,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +House Floor Amendment No. 3 Pension Note Requested as Amended by Rep. Steven Reick,2022-02-25,[],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Passed; 056-001-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-05-26,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to Judiciary,2021-05-29,['referral-committee'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Labor & Commerce Committee,2021-05-29,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 024-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-14,[],IL,102nd +House Committee Amendment No. 2 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-22,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 007-000-000,2021-05-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Antonio Muñoz,2021-10-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-05-07,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments; Pursuant to Senate Rule 3-9(b),2021-07-16,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-28,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Senate Floor Amendment No. 3 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Judiciary - Criminal Committee,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-05-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-11-17,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2021-05-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-04,[],IL,102nd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2021-05-20,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-10-25,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 008-004-000,2022-02-23,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-01-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +Placed on Calendar Order of First Reading,2022-04-01,['reading-1'],IL,102nd +"Chief Sponsor Changed to Rep. Lawrence Walsh, Jr.",2023-01-10,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2021-10-28,['referral-committee'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Dan Brady,2021-10-12,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-22,[],IL,102nd +Placed on Calendar Order of First Reading,2022-04-05,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2022-03-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-02-19,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-01-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-05-13,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 016-000-000,2022-04-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2022-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-04-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2022-03-21,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-03-03,[],IL,102nd +Do Pass / Short Debate Consumer Protection Committee; 006-000-000,2022-03-15,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-03-29,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Burke,2021-05-31,['amendment-introduction'],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 009-006-000,2021-09-09,['committee-passage-favorable'],IL,102nd +Assigned to Human Rights,2021-05-11,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-04-29,[],IL,102nd +Public Act . . . . . . . . . 102-0524,2021-08-20,['became-law'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Assigned to Public Safety,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-03-24,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-1046,2022-06-07,['became-law'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Third Reading - Passed; 052-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Kathleen Willis,2022-04-06,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-22,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 30, 2021",2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-02-22,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-03-09,[],IL,102nd +Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Recalled to Second Reading,2022-11-30,['reading-2'],IL,102nd +Removed from Consent Calendar Status Rep. Dan Brady,2021-05-18,[],IL,102nd +Waive Posting Notice,2022-04-05,[],IL,102nd +Assigned to Pensions,2022-03-02,['referral-committee'],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-01-05,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-05-18,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2023-01-05,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-21,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +Public Act . . . . . . . . . 102-0821,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Second Reading - Short Debate,2021-03-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-03-17,[],IL,102nd +Do Pass Licensed Activities; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Passed; 042-011-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-10,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-01-05,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Ann Gillespie,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading December 1, 2022",2022-11-30,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2022-03-30,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2021-10-19,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Higher Education,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-16,[],IL,102nd +Removed Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-03,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2022-03-07,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Ann Gillespie,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Don Harmon,2022-04-08,['amendment-introduction'],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2021-10-27,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2022-04-07,[],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-02-22,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-03-10,[],IL,102nd +Assigned to Executive,2022-03-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Celina Villanueva,2022-11-30,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Javier L Cervantes,2022-11-30,[],IL,102nd +House Floor Amendment No. 5 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-19,['referral-committee'],IL,102nd +State Mandates Fiscal Note Requested by Rep. C.D. Davidsmeyer,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 015-000-000,2022-11-30,['committee-passage-favorable'],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2021-05-30,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-31,['amendment-failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-06-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2021-05-27,[],IL,102nd +"Effective Date August 23, 2021",2021-08-23,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Antonio Muñoz,2021-05-29,['filing'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2022-04-06,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-08,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-04-14,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-04-19,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Cities & Villages Committee; 013-000-000,2022-04-06,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-03-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-14,[],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-05-29,['referral-committee'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2022-04-08,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-23,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Assigned to Personnel & Pensions Committee,2021-05-13,['referral-committee'],IL,102nd +Third Reading - Passed; 038-017-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2022-03-28,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt Education; 013-000-000,2022-03-29,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-04-08,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Bob Morgan,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Pensions; 008-000-000,2021-05-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2022-03-23,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-04-05,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 30, 2021",2021-05-29,[],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2022-03-23,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Labor & Commerce Committee,2021-05-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Scott M. Bennett,2022-04-08,[],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-01,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-03-30,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-18,['referral-committee'],IL,102nd +Third Reading - Passed; 046-009-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-27,['amendment-failure'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 013-000-000,2022-03-30,['committee-passage-favorable'],IL,102nd +Assigned to Transportation,2022-03-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0097,2021-07-09,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-03-29,[],IL,102nd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. Lawrence Walsh, Jr.",2022-04-06,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Health Care Licenses Committee,2021-05-26,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2021-05-19,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Assigned to Insurance,2022-03-08,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-03-15,[],IL,102nd +State Mandates Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2021-04-21,[],IL,102nd +"Effective Date July 1, 2022",2021-07-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-21,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2022-03-08,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2021-10-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Robert Rita,2021-05-11,[],IL,102nd +Third Reading - Short Debate - Passed 066-045-001,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2021-05-04,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-31,[],IL,102nd +"Effective Date July 26, 2021",2021-07-26,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - June 1, 2021",2021-06-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Neil Anderson,2021-10-27,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-05-21,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-02-23,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Note / Motion Filed - Note Act Does Not Apply Rep. Jay Hoffman,2021-05-31,[],IL,102nd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2021-05-11,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-11,[],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-03-31,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2022-03-24,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 016-000-000,2021-05-30,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. David Koehler,2021-05-30,['filing'],IL,102nd +Chief House Sponsor Rep. Terra Costa Howard,2022-03-10,[],IL,102nd +Resolution Adopted 108-000-001,2021-05-29,['passage'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-02-11,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Ram Villivalam,2021-04-21,['amendment-introduction'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Governor Approved,2021-12-10,['executive-signature'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2022-03-24,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-23,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Bob Morgan,2021-10-26,[],IL,102nd +Public Act . . . . . . . . . 102-0925,2022-05-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Chief House Sponsor Rep. Chris Bos,2022-02-25,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-05-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-20,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-08-31,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-04-05,[],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2022-03-10,[],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Camille Y. Lilly,2021-10-27,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-13,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-01-04,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-25,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. William Davis,2021-05-07,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 015-000-000,2021-05-13,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-29,[],IL,102nd +Public Act . . . . . . . . . 102-0482,2021-08-20,['became-law'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-14,[],IL,102nd +Do Pass State Government; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tim Butler,2021-05-31,[],IL,102nd +"Placed on Calendar Order of First Reading April 27, 2021",2021-04-23,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2021-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-20,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-24,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Assigned to Revenue,2021-05-04,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-05-31,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-06-15,"['passage', 'reading-3']",IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-12,[],IL,102nd +Public Act . . . . . . . . . 102-0485,2021-08-20,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-23,[],IL,102nd +3/5 Vote Required,2021-05-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-12-20,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-05-29,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-03-24,[],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2021-04-22,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-01-04,[],IL,102nd +Public Act . . . . . . . . . 102-0494,2021-08-20,['became-law'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Elizabeth Hernandez,2021-05-31,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Consumer Protection Committee,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-28,['amendment-failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-14,[],IL,102nd +Third Reading - Passed; 049-007-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2023-01-03,[],IL,102nd +Chief Senate Sponsor Sen. Patricia Van Pelt,2021-04-28,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-23,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-20,[],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 015-000-000,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0415,2021-08-20,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0443,2021-08-20,['became-law'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-15,['amendment-passage'],IL,102nd +Do Pass Revenue; 011-000-000,2021-05-13,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2021-05-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-04-30,[],IL,102nd +House Floor Amendment No. 4 Rules Refers to Judiciary - Criminal Committee,2022-03-01,[],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-24,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2021-05-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-13,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-13,['reading-2'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Arrived in House,2021-06-15,['introduction'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-14,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-08-31,['amendment-failure'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-03,[],IL,102nd +Senate Floor Amendment No. 2 Postponed - Executive,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-11-30,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-12-01,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2021-05-27,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Mattie Hunter,2022-12-01,['amendment-introduction'],IL,102nd +Land Conveyance Appraisal Note Filed,2022-03-22,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-05,[],IL,102nd +Public Act . . . . . . . . . 102-0568,2021-08-23,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 2, 3",2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-20,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-001,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2021-09-09,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-22,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-19,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Doris Turner,2022-04-08,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-24,[],IL,102nd +Assigned to Executive,2021-05-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2023-01-05,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Health,2022-04-05,['referral-committee'],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2022-04-05,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Craig Wilcox,2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-29,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2022-02-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-03-24,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 010-005-000,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2022-03-28,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-16,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Castro,2022-11-30,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2022-03-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-18,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-03-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-15,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2021-04-26,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading October 19, 2021",2021-10-13,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-08,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-03,[],IL,102nd +Recalled to Second Reading,2023-01-05,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-05-13,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2021-04-20,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-28,[],IL,102nd +Third Reading - Short Debate - Passed 083-020-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-01-04,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-14,[],IL,102nd +Do Pass Pensions; 008-001-000,2022-03-09,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-05,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-04-29,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 055-000-000,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-21,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Executive,2022-04-05,[],IL,102nd +Do Pass Public Safety; 005-000-000,2022-03-23,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Financial Institutions Committee,2021-04-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Burke,2022-04-07,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 2 Postponed - Higher Education,2021-05-05,[],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Eva-Dina Delgado,2022-04-05,['amendment-introduction'],IL,102nd +First Reading,2022-03-30,['reading-1'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Assigned to State Government,2022-03-02,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-10-27,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 015-004-000,2022-02-22,['committee-passage-favorable'],IL,102nd +Chief House Sponsor Rep. Natalie A. Manley,2022-02-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-02,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-02-22,[],IL,102nd +Removed Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-03,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Adriane Johnson,2021-10-19,[],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Revenue & Finance Committee,2022-03-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-04-08,[],IL,102nd +Sponsor Removed Sen. Dale Fowler,2021-05-28,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. David Friess,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-03-16,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0973,2022-05-27,['became-law'],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 006-003-000,2021-05-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-04-14,[],IL,102nd +Referred to Rules Committee,2021-04-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-22,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-02-11,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-05-20,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2021-05-27,[],IL,102nd +Governor Approved,2021-08-12,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Scott M. Bennett,2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-01,['amendment-passage'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-06-01,['filing'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Sponsor Removed Sen. Julie A. Morrison,2021-10-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. David A. Welter,2022-03-08,[],IL,102nd +Assigned to Education,2021-04-28,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 014-000-000,2021-05-29,[],IL,102nd +Chief House Sponsor Rep. Ann M. Williams,2021-04-30,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-29,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Public Act . . . . . . . . . 102-0209,2021-07-30,['became-law'],IL,102nd +Do Pass Education; 012-000-000,2021-05-05,['committee-passage'],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +First Reading,2022-03-10,['reading-1'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-23,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-03,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +Chief Senate Sponsor Sen. Christopher Belt,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-22,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-24,['amendment-passage'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-02-23,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2022-02-25,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 2 Motion Prevailed 071-045-001,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 017-007-000,2021-05-28,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Do Pass as Amended Health; 011-000-000,2021-05-19,['committee-passage'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +"Effective Date June 1, 2022",2021-12-10,[],IL,102nd +Recalled to Second Reading,2021-05-31,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-1052,2022-06-10,['became-law'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura M. Murphy,2021-05-29,['filing'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 025-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 112-000-000,2022-04-07,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Theresa Mah,2022-04-03,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2022-04-07,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2021-05-11,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Brian W. Stewart,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2021-05-27,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0157,2021-07-23,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 013-003-000,2021-10-26,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-11,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-29,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-21,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2022-03-24,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Higher Education,2021-05-29,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-001-000,2021-05-18,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 017-000-000,2022-04-08,[],IL,102nd +3/5 Vote Required,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2021-06-15,[],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 022-000-000,2022-04-07,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 115-003-000,2021-05-31,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-19,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-06-01,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-29,['committee-passage-favorable'],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0195,2021-07-30,['became-law'],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2022-03-04,[],IL,102nd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Mark Batinick,2021-08-09,[],IL,102nd +Chief Senate Sponsor Sen. Laura Ellman,2022-03-04,[],IL,102nd +Recalled to Second Reading,2022-03-31,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-03,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Omar Aquino,2022-02-24,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0802,2022-05-13,['became-law'],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-04-15,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-11-30,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2021-05-14,[],IL,102nd +Assigned to Energy & Environment Committee,2022-03-17,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Emanuel Chris Welch,2023-01-05,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. John F. Curran,2021-04-29,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-03-09,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-07-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Arrived in House,2021-06-08,['introduction'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Chief House Sponsor Rep. Lance Yednock,2021-04-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-26,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading January 10, 2023",2023-01-09,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-12-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-22,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Second Reading,2023-01-06,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-06-29,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 27, 2021",2021-05-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2021-10-25,[],IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2022-03-31,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. David Koehler,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2022-04-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2021-05-30,[],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Thomas M. Bennett,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-04-28,[],IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Arrived in House,2022-04-01,['introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Blaine Wilhour,2022-03-08,[],IL,102nd +Second Reading,2022-03-31,['reading-2'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-12-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-04-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2021-05-27,[],IL,102nd +Approved for Consideration Assignments,2022-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-01,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2021-05-12,[],IL,102nd +Assigned to Healthcare Access and Availability,2021-05-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-05-05,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-01,[],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2022-03-25,['amendment-passage'],IL,102nd +Do Pass as Amended / Consent Calendar Higher Education Committee; 010-000-000,2021-05-12,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Do Pass Executive; 015-000-000,2021-05-19,['committee-passage'],IL,102nd +Chief House Sponsor Rep. Greg Harris,2023-01-05,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-01-21,[],IL,102nd +Public Act . . . . . . . . . 102-1000,2022-05-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-05-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-04-15,[],IL,102nd +House Floor Amendment No. 3 Adopted,2022-04-06,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Doris Turner,2022-03-31,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2023-01-08,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2022-03-17,[],IL,102nd +Recalled to Second Reading,2022-04-07,['reading-2'],IL,102nd +Recalled to Second Reading,2022-04-06,['reading-2'],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-20,[],IL,102nd +Third Reading - Passed; 048-000-000,2023-01-06,"['passage', 'reading-3']",IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-25,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-29,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-02-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2022-03-31,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-02-23,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 014-002-001,2022-11-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +Public Act . . . . . . . . . 102-0365,2021-08-13,['became-law'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Recalled to Second Reading,2021-05-26,['reading-2'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Assigned to Executive,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2022-03-01,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2022-03-31,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2021-12-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-18,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Don Harmon,2023-01-09,['amendment-introduction'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-28,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-02-24,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-05-30,[],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2021-04-19,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Karina Villa,2022-04-07,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2021-04-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-05-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-01-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Referred to Rules Committee,2022-03-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 20, 2021",2021-10-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-01-10,[],IL,102nd +"Motion to Reconsider Vote - Withdrawn Rep. Lawrence Walsh, Jr.",2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-24,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-11-30,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Feigenholtz,2022-04-08,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2022-03-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-03-18,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michael J. Zalewski,2022-03-25,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-01-24,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Arrived in House,2021-05-27,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2021-05-26,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-05-31,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2022-01-05,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0102,2021-07-15,['became-law'],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-12,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-17,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-23,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-11,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2021-05-30,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-23,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2021-05-26,[],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-25,['referral-committee'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-10-26,[],IL,102nd +Do Pass Energy and Public Utilities; 017-000-000,2021-05-06,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-15,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Public Act . . . . . . . . . 102-0055,2021-07-09,['became-law'],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2022-03-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0611,2021-08-27,['became-law'],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +Second Reading,2021-04-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2021-05-17,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions May 20, 2021",2021-05-19,[],IL,102nd +Governor Approved,2021-08-17,['executive-signature'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-12,['amendment-failure'],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-27,['committee-passage-favorable'],IL,102nd +Chief Senate Sponsor Sen. Laura M. Murphy,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-10-26,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-19,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Second Reading,2022-04-06,['reading-2'],IL,102nd +"Do Pass as Amended / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2021-05-13,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Delia C. Ramirez,2021-05-27,[],IL,102nd +Arrived in House,2021-05-07,['introduction'],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Criminal Law; 009-000-000,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-29,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +House Concurs,2021-06-01,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-07,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2022-03-29,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 014-000-000,2021-10-20,['committee-passage'],IL,102nd +Legislation Considered in Special Session No. 1,2021-08-31,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-18,[],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-24,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Commerce,2021-05-29,['referral-committee'],IL,102nd +"Effective Date April 22, 2022",2022-04-22,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-1049,2022-06-09,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-12-01,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-17,['referral-committee'],IL,102nd +Assigned to Higher Education,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-25,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Third Reading - Short Debate - Passed 107-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +Assigned to Insurance,2022-03-16,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 5 Assignments Refers to Criminal Law,2021-05-24,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 30, 2021",2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2021-05-14,[],IL,102nd +Third Reading - Passed; 054-000-000,2021-05-06,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Greg Harris,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mattie Hunter,2021-10-27,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 117-000-000,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-04-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 011-004-000,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-05-28,[],IL,102nd +Governor Vetoed,2021-08-20,['executive-veto'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Crowe,2022-04-07,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 117-001-000,2021-05-31,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-25,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-05-26,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +House Floor Amendment No. 1 Senate Concurs 040-018-000,2021-05-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2022-03-10,[],IL,102nd +Public Act . . . . . . . . . 102-0587,2021-08-27,['became-law'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2021-05-18,[],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2023-01-05,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-20,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-28,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-30,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Anthony DeLuca,2021-10-28,['amendment-introduction'],IL,102nd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2022-04-01,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 5, 2022",2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-02-19,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2021-05-28,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Javier L Cervantes,2022-11-18,[],IL,102nd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. Lawrence Walsh, Jr.",2023-01-10,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-05,[],IL,102nd +Second Reading - Short Debate,2022-03-03,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-10-25,[],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2021-03-18,['amendment-failure'],IL,102nd +Second Reading,2021-05-24,['reading-2'],IL,102nd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 013-005-000,2021-05-20,['committee-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-03-04,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-20,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-21,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-03-23,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-04-05,[],IL,102nd +Re-referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Public Utilities Committee; 021-000-000,2022-04-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-28,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Labor & Commerce Committee; 029-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-05-26,[],IL,102nd +Chief Sponsor Changed to Sen. Robert F. Martwick,2021-10-19,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2022-04-01,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-31,[],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Commerce,2022-03-31,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2021-03-18,[],IL,102nd +First Reading,2022-04-06,['reading-1'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2022-03-08,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2021-04-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-14,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Alternate Co-Sponsor Removed Rep. Sue Scherer,2022-03-17,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Effective Date April 29, 2022",2022-04-29,[],IL,102nd +House Floor Amendment No. 5 Referred to Rules Committee,2021-05-18,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2022-03-29,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2022-04-01,[],IL,102nd +"Effective Date January 1, 2023; Some Provisions Effective May 27, 2022",2022-05-27,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-04-07,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 054-000-000,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2022-02-24,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-12,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-01-05,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-25,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Health; 012-000-000,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Energy and Public Utilities; 016-000-000,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Luft,2022-03-21,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-21,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2023-01-09,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ann Gillespie,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-30,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 114-000-000,2022-04-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-04-05,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-02-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2022-03-21,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 012-000-000,2022-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Licensed Activities,2022-03-30,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2021-05-28,[],IL,102nd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Margaret Croke,2022-03-29,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-03-25,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2022-02-17,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-03-09,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-23,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 055-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Criminal Law; 007-000-000,2022-03-23,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Arrived in House,2022-04-05,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-12-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2022-03-10,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-05,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Executive,2022-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2022-01-07,[],IL,102nd +Home Rule Note Filed,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-02-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-25,['amendment-failure'],IL,102nd +House Floor Amendment No. 2 Home Rule Note Requested as Amended by Rep. Tom Demmer,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-04-04,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2022-03-30,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2, 3 - October 28, 2021",2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-06-01,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2021-09-09,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2023-01-05,[],IL,102nd +Do Pass as Amended Judiciary; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 29, 2021",2021-05-28,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 015-000-000,2022-04-07,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-06-16,[],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Revenue & Finance Committee; 018-000-000,2021-05-26,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-10-13,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-01,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2021-10-28,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-05-12,[],IL,102nd +Recalled to Second Reading,2021-06-01,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-01-04,[],IL,102nd +Suspend Rule 21 - Prevailed 066-042-000,2021-05-29,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-04-06,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2022-03-30,[],IL,102nd +Public Act . . . . . . . . . 102-0887,2022-05-17,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-03-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-03-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt Judiciary; 007-000-000,2021-05-29,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Senate Floor Amendment No. 5 Adopted; Villa,2022-02-25,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-14,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2021-05-11,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2021-05-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-22,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-19,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-03-29,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2022-04-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2021-05-27,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 052-006-000,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0166,2021-07-26,['became-law'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-04-20,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 073-043-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 055-003-000,2021-10-26,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0116,2021-07-23,['became-law'],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Linda Holmes,2021-05-25,['filing'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-26,[],IL,102nd +Do Pass State Government; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Fine,2021-05-18,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-10-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +First Reading,2022-03-08,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-07-21,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-04-26,[],IL,102nd +Public Act . . . . . . . . . 102-0308,2021-08-06,['became-law'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-15,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Michael E. Hastings,2021-05-31,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Camille Y. Lilly,2021-05-30,[],IL,102nd +Assigned to State Government Administration Committee,2021-05-24,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-06-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Revenue; 008-000-000,2021-05-30,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-22,[],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Brian W. Stewart,2021-05-26,[],IL,102nd +Public Act . . . . . . . . . 102-0625,2021-08-27,['became-law'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2, 3",2021-05-31,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 008-001-000,2021-05-29,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-08,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-20,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 017-011-000,2021-05-30,[],IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-05-13,[],IL,102nd +"Effective Date August 16, 2021",2021-08-16,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-19,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2022-03-03,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-10-26,[],IL,102nd +Second Reading,2022-03-28,['reading-2'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2022-03-09,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Adoption & Child Welfare Committee; 005-000-000,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-02-05,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-04-22,['amendment-failure'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Do Pass Environment and Conservation; 009-000-000,2021-05-20,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. LaToya Greenwood,2021-05-27,[],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-001-000,2022-03-23,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Steven Reick,2022-02-25,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Terri Bryant,2021-05-28,['filing'],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0270,2021-08-06,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2021-06-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-19,[],IL,102nd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Robert Peters,2021-05-21,['amendment-introduction'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-05-12,[],IL,102nd +Chief Sponsor Changed to Sen. Christopher Belt,2021-06-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-04-05,[],IL,102nd +Assigned to Education,2021-05-10,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2022-02-23,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-31,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Recalled to Second Reading,2021-05-26,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Martwick,2021-05-27,['amendment-passage'],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-30,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2021-05-30,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Postponed - State Government,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-03,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-20,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-07-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-30,[],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Governor Approved,2022-04-27,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. William E Hauter,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-05-10,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2022-03-09,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-05-31,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-30,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-04-15,[],IL,102nd +Public Act . . . . . . . . . 102-0390,2021-08-16,['became-law'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Public Act . . . . . . . . . 102-0351,2021-08-13,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Third Reading - Passed; 055-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-14,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-05-25,['amendment-failure'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2021-04-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 29, 2022",2022-03-28,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. David Koehler,2021-05-21,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Pacione-Zayas,2021-05-26,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Kimberly A. Lightford,2021-10-28,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +House Floor Amendment No. 3 State Mandates Fiscal Note Requested as Amended by Rep. Steven Reick,2022-02-25,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt State Government; 009-000-000,2022-04-05,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-25,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-13,[],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-05-27,['amendment-failure'],IL,102nd +House Floor Amendment No. 1 Withdrawn by Rep. Greg Harris,2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2021-05-11,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. William Davis,2021-05-27,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2022-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Antonio Muñoz,2022-02-23,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 076-036-000,2021-06-01,[],IL,102nd +Senate Committee Amendment No. 3 Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-19,['committee-passage'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2021-03-29,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2022-04-08,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Recalled to Second Reading,2022-04-06,['reading-2'],IL,102nd +House Floor Amendment No. 1 Senate Concurs 056-000-000,2021-05-30,[],IL,102nd +Passed Both Houses,2021-10-26,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura M. Murphy,2021-05-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-10-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2021-05-27,[],IL,102nd +Third Reading - Passed; 053-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2021-05-07,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Senate Concurs 041-017-000,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2021-05-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0327,2021-08-06,['became-law'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Human Services Committee,2021-05-31,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2021-05-31,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2021-05-12,['amendment-introduction'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-26,[],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-29,['referral-committee'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-05-12,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2021-05-18,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2, 3 - May 31, 2021",2021-05-31,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-08,[],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-04-22,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-001-000,2022-04-05,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Thaddeus Jones,2021-05-11,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Assigned to Licensed Activities,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-02-05,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Placed on Calendar - Consideration Postponed,2021-05-27,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Christopher Belt,2021-06-01,['filing'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 116-000-001,2021-05-20,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 House Concurs 117-000-000,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-05-18,[],IL,102nd +First Reading,2021-05-14,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2022-03-30,['amendment-introduction'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Second Reading - Short Debate,2021-10-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) May 28, 2021",2021-05-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Brady,2021-05-27,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-14,[],IL,102nd +Recalled to Second Reading,2021-06-15,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Remove Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-03,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - January 6, 2023",2023-01-05,[],IL,102nd +Sponsor Removed Sen. Karina Villa,2021-10-25,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Laura Fine,2022-04-07,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Robyn Gabel,2022-03-31,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-04-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-21,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Kambium Buckner,2021-10-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2022-02-25,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-1019,2022-05-27,['became-law'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2022-03-17,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-0865,2022-05-13,['became-law'],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-04-05,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-11,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Public Utilities Committee,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Health,2022-04-05,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Brian W. Stewart,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 015-000-000,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-03,[],IL,102nd +Third Reading - Short Debate - Passed 072-035-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Celina Villanueva,2023-01-10,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-04-08,[],IL,102nd +Third Reading - Passed; 037-018-000,2022-04-09,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2022-03-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-04-07,[],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2022-03-31,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-16,[],IL,102nd +Third Reading - Passed; 056-001-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2022-04-07,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Sponsor Removed Sen. Doris Turner,2022-04-09,[],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-29,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Jacqueline Y. Collins,2022-03-23,[],IL,102nd +Public Act . . . . . . . . . 102-0822,2022-05-13,['became-law'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-02-18,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-12-01,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Public Utilities Committee; 021-000-000,2022-04-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2022-04-05,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2022-04-08,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Housing Committee,2021-05-19,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-03-18,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-11,[],IL,102nd +Assigned to Healthcare Access and Availability,2021-05-11,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2022-03-21,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-23,[],IL,102nd +Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2022-03-25,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Energy and Public Utilities,2022-04-04,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-04-22,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading,2022-03-31,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Re-referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-03-21,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-05-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2022-04-01,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2022-01-12,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-05,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-03-25,[],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-03-29,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2021-04-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-29,[],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-000-004,2021-10-28,[],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2022-03-04,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Public Act . . . . . . . . . 102-0715,2022-04-29,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0809,2022-05-13,['became-law'],IL,102nd +First Reading,2022-04-01,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-02-24,[],IL,102nd +Re-assigned to State Government,2022-11-22,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-04,[],IL,102nd +Assigned to Energy & Environment Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-03,['reading-2'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-10-25,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2021-04-21,[],IL,102nd +Assigned to Executive Committee,2022-04-05,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +First Reading,2022-04-05,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-18,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-01-05,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. LaToya Greenwood,2021-10-28,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-01-10,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2021-05-29,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +Do Pass as Amended / Consent Calendar Executive Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 011-005-000,2021-03-24,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. David Koehler,2021-10-25,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-08,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Murphy,2021-06-01,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2021-06-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2022-03-02,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-05-29,['amendment-introduction'],IL,102nd +Alternate Co-Sponsor Removed Rep. Katie Stuart,2022-03-14,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-04-04,[],IL,102nd +Arrived in House,2021-05-31,['introduction'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-03-25,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-01-04,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Elizabeth Hernandez,2022-01-05,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +State Mandates Fiscal Note Filed,2021-04-19,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-06-16,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-01-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Caulkins,2021-05-12,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-03-16,[],IL,102nd +"Chief Sponsor Changed to Sen. Napoleon Harris, III",2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-07,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-09-09,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2022-03-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-29,[],IL,102nd +House Floor Amendment No. 2 Judicial Note Requested as Amended by Rep. Tom Demmer,2021-10-28,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2022-03-30,[],IL,102nd +To Executive- Elections,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-14,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 006-003-000,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Johnson,2021-05-31,['amendment-passage'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Third Reading - Passed; 053-002-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading,2022-03-31,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2022-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Seth Lewis,2022-02-25,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-03,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Do Pass Insurance; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-01,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to State Government,2021-05-31,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2021-05-27,[],IL,102nd +Governor Approved,2021-07-27,['executive-signature'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Cities & Villages Committee,2022-04-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 115-000-000,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-20,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2021-05-06,['amendment-failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-29,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-06-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-16,[],IL,102nd +Governor Approved,2022-05-20,['executive-signature'],IL,102nd +Arrived in House,2022-04-08,['introduction'],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-19,[],IL,102nd +"Effective Date January 1, 2022",2021-08-12,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt Commerce; 010-000-000,2022-04-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0320,2021-08-06,['became-law'],IL,102nd +Referred to Assignments,2022-03-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 30, 2021",2021-05-29,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2021-05-12,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Antonio Muñoz,2021-05-29,['filing'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2021-10-27,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-02-23,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 103-011-000,2021-05-30,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Request as Amended is Inapplicable,2021-05-31,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Ram Villivalam,2021-04-21,['amendment-introduction'],IL,102nd +Removed from Consent Calendar Status Rep. La Shawn K. Ford,2021-05-24,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-28,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-28,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Higher Education; 012-002-000,2021-05-30,[],IL,102nd +Do Pass Education; 012-000-000,2021-05-05,['committee-passage'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2021-05-20,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2022-03-28,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 055-000-000,2021-05-30,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-02,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 102-006-000,2022-04-07,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2022-03-08,[],IL,102nd +"Effective Date August 3, 2021",2021-08-03,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2022-04-07,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-01,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2021-06-15,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-05-29,[],IL,102nd +Referred to Rules Committee,2022-03-10,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0049,2021-07-09,['became-law'],IL,102nd +Do Pass Transportation; 017-000-000,2022-04-04,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-29,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2021-10-26,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-03-16,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0153,2021-07-23,['became-law'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Public Act . . . . . . . . . 102-0680,2021-12-10,['became-law'],IL,102nd +Do Pass / Consent Calendar Personnel & Pensions Committee; 007-000-000,2021-05-20,['committee-passage'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Third Reading - Passed; 058-000-000,2021-10-27,"['passage', 'reading-3']",IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-06-01,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 057-000-000,2022-04-08,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Redistricting Committee; 006-004-000,2021-05-28,['committee-passage-favorable'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2022-03-30,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Postponed - Executive,2022-04-05,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As May 31, 2021",2021-05-21,['reading-3'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-22,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-05-19,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Eric Mattson,2023-01-05,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2021-05-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Health; 010-000-000,2022-04-06,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Camille Y. Lilly,2021-03-17,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-21,[],IL,102nd +Chief House Sponsor Rep. Kelly M. Cassidy,2021-04-26,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Feigenholtz,2023-01-05,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-05-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2022-04-07,[],IL,102nd +Do Pass Human Rights; 007-000-000,2021-05-20,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-15,[],IL,102nd +Second Reading,2021-05-30,['reading-2'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2022-03-14,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2021-04-26,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Deanne M. Mazzochi,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2021-04-29,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Chief Senate Sponsor Sen. Ann Gillespie,2022-03-07,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Don Harmon,2022-04-07,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-10-13,['reading-3'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-29,['amendment-passage'],IL,102nd +Approved for Consideration Assignments,2022-01-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2022",2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-03-18,[],IL,102nd +Public Act . . . . . . . . . 102-0931,2022-05-27,['became-law'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +Added as Co-Sponsor Sen. Diane Pappas,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2022-04-07,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2021-05-20,[],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-01-06,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2022-03-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-11-30,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Charles Meier,2021-09-09,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-04-05,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Assigned to Licensed Activities,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Charles Meier,2021-10-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-25,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-05-13,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 3,2021-08-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt Executive; 015-000-000,2021-05-31,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Kimberly A. Lightford,2023-01-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-14,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0497,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-01-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Mark Batinick,2021-05-13,[],IL,102nd +Public Act . . . . . . . . . 102-0477,2021-08-20,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2021-05-13,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2021-05-20,[],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2021-05-03,[],IL,102nd +Do Pass Healthcare Access and Availability; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Assigned to Executive Committee,2021-10-14,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2021-05-25,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-06-15,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-05-21,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Judiciary - Criminal Committee; 010-008-000,2022-03-02,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-12-01,['referral-committee'],IL,102nd +Do Pass as Amended Executive; 016-000-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-12-01,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0420,2021-08-20,['became-law'],IL,102nd +Judicial Note Filed,2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-08-25,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Revenue; 010-000-000,2022-11-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Ethics & Elections Committee,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-10-19,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Financial Institutions Committee; 008-000-000,2021-04-20,['committee-passage-favorable'],IL,102nd +Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Robyn Gabel,2022-04-07,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-07,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Castro,2021-10-27,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-09,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-10,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 21, 2021",2021-05-10,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2022-04-04,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Added Chief Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-02-24,[],IL,102nd +Second Reading - Standard Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Assigned to Energy & Environment Committee,2021-03-02,['referral-committee'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-03-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joe Sosnowski,2021-05-26,[],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-10-26,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Human Services Committee,2021-05-30,['referral-committee'],IL,102nd +Do Pass / Short Debate Insurance Committee; 012-000-000,2021-05-25,['committee-passage'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-14,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-05-26,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-24,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-31,[],IL,102nd +Recalled to Second Reading,2022-01-05,['reading-2'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-27,[],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2022-12-01,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-03,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 7, 2022",2022-04-06,[],IL,102nd +Arrive in Senate,2021-05-13,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-22,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2021-05-18,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-14,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-10-27,[],IL,102nd +Chief House Sponsor Rep. Stephanie A. Kifowit,2021-05-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2021-05-11,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2022-03-08,[],IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-04-27,[],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-07,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2021-05-18,[],IL,102nd +Do Pass Insurance; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0216,2021-07-30,['became-law'],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Public Utilities Committee,2021-05-29,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-05-17,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-05-28,['filing'],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-20,[],IL,102nd +Waive Posting Notice,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 016-000-000,2021-10-26,[],IL,102nd +Public Act . . . . . . . . . 102-0107,2021-07-23,['became-law'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Elizabeth Hernandez,2021-08-31,['amendment-introduction'],IL,102nd +Alternate Co-Sponsor Removed Rep. Carol Ammons,2021-05-19,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Pensions,2021-05-25,['referral-committee'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-05-26,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2022-03-29,[],IL,102nd +Third Reading - Standard Debate - Passed 088-014-001,2021-04-15,"['passage', 'reading-3']",IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Immigration & Human Rights Committee,2022-04-05,[],IL,102nd +Removed from Short Debate Status,2021-04-22,[],IL,102nd +"Effective Date January 1, 2022",2021-08-16,[],IL,102nd +Public Act . . . . . . . . . 102-0706,2022-04-22,['became-law'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 28, 2021",2021-05-27,[],IL,102nd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2022-03-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-03-30,[],IL,102nd +Third Reading - Passed; 055-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-05-24,[],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2021-04-19,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Patrick J. Joyce,2021-05-29,['filing'],IL,102nd +Public Act . . . . . . . . . 102-0350,2021-08-13,['became-law'],IL,102nd +Resolution Adopted,2021-05-31,['passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-18,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Commerce; 010-000-000,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2021-05-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** April 22, 2021",2021-04-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2021-05-05,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Recalled to Second Reading,2022-04-08,['reading-2'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2022-04-04,['referral-committee'],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +"Effective Date January 1, 2022",2021-08-17,[],IL,102nd +Arrived in House,2021-05-12,['introduction'],IL,102nd +Removed from Short Debate Status,2022-03-03,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2021-03-18,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Do Pass Higher Education; 013-000-000,2021-05-05,['committee-passage'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2021-05-14,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-19,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-10-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-25,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Senate Concurs 058-000-000,2021-05-31,[],IL,102nd +Placed on Calendar Total Veto,2021-08-31,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-05-17,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-04-08,[],IL,102nd +Do Pass / Short Debate Veterans' Affairs Committee; 010-000-000,2022-03-15,['committee-passage'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Licensed Activities,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Crowe,2021-05-26,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2022-03-29,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 3",2022-04-01,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-15,['reading-1'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Thomas Cullerton,2021-05-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2023-01-03,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-05-27,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2022-04-01,[],IL,102nd +Third Reading - Short Debate - Passed 100-000-003,2022-03-03,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2022-04-19,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-15,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3",2022-04-06,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2022-03-22,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2023-01-09,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0929,2022-05-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-05-31,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Antonio Muñoz,2021-04-28,[],IL,102nd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lamont J. Robinson, Jr.",2022-04-05,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Labor & Commerce Committee,2022-04-05,['referral-committee'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-02-23,[],IL,102nd +Third Reading - Short Debate - Passed 095-014-000,2021-04-14,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-06,[],IL,102nd +Arrived in House,2023-01-06,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Aquino,2022-04-07,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2021-04-28,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-27,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 017-000-000,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-05-05,[],IL,102nd +Third Reading - Short Debate - Passed 070-043-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-26,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Governor Approved,2022-06-24,['executive-signature'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2023-01-08,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-30,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-02-01,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-04-13,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Greg Harris,2023-01-05,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-16,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Castro,2022-04-06,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Thomas M. Bennett,2022-03-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-03-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Laura M. Murphy,2022-11-16,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-12-08,[],IL,102nd +Public Act . . . . . . . . . 102-0961,2022-05-27,['became-law'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-15,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-12,[],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 008-000-000,2022-03-25,['committee-passage'],IL,102nd +House Floor Amendment No. 3 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-12-29,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-06,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-25,[],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-02-23,['amendment-failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-22,[],IL,102nd +Public Act . . . . . . . . . 102-0868,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-03-29,[],IL,102nd +Arrived in House,2022-11-30,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael Kelly,2022-04-08,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2021-09-09,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Human Rights,2021-05-04,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-04-15,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-02-24,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Belt,2022-03-31,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 075-033-002,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2021-04-29,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-07-07,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2021-05-14,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-01-05,[],IL,102nd +Third Reading - Short Debate - Passed 109-002-000,2022-03-24,"['passage', 'reading-3']",IL,102nd +To Clean Energy Subcommittee,2022-04-05,[],IL,102nd +"Chief House Sponsor Rep. Jaime M. Andrade, Jr.",2021-06-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-04-27,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Michael Halpin,2022-11-30,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 8, 2023",2023-01-06,[],IL,102nd +Third Reading - Passed; 037-013-000,2023-01-10,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sue Rezin,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-06-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-29,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-22,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2021-10-28,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 3, 2 - June 1, 2021",2021-06-01,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +"Final Action Deadline Extended-9(b) January 10, 2023",2022-12-30,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-17,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2022-01-11,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Ann Gillespie,2022-04-08,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2022-03-09,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-01-24,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-08,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Assigned to Executive,2021-05-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-03-02,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2022-04-05,[],IL,102nd +Third Reading - Short Debate - Passed 066-035-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2022-11-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-03-25,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-18,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-01-24,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2022-03-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-11-28,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +To Wage Policy & Study Subcommittee,2021-03-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Assigned to Executive,2022-03-22,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-03-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-18,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-03-28,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2021-05-14,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-01-05,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jay Hoffman,2023-01-10,['amendment-introduction'],IL,102nd +Recalled to Second Reading,2022-11-30,['reading-2'],IL,102nd +Third Reading - Passed; 044-012-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-25,[],IL,102nd +First Reading,2021-06-15,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-16,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-03,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-04,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-24,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-24,[],IL,102nd +House Floor Amendment No. 3 Tabled Pursuant to Rule 40,2021-04-23,['amendment-failure'],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2022-03-07,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-04-08,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-25,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-31,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-07-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2021-05-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Brian W. Stewart,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-04-15,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Robert Rita,2021-05-14,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-18,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-24,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-10-26,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-23,[],IL,102nd +Public Act . . . . . . . . . 102-0402,2021-08-17,['became-law'],IL,102nd +Do Pass as Amended Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-0274,2021-08-06,['became-law'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Third Reading - Passed; 057-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Public Utilities Committee,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-04-23,[],IL,102nd +Do Pass / Short Debate Appropriations-Human Services Committee; 019-000-000,2022-03-24,['committee-passage'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Daniel Didech,2021-05-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-25,[],IL,102nd +Public Act . . . . . . . . . 102-0282,2021-08-06,['became-law'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 015-000-000,2021-05-30,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0120,2021-07-23,['became-law'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 010-000-000,2021-05-19,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-12-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-05-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-20,[],IL,102nd +Second Reading - Short Debate,2021-05-20,['reading-2'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-03-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-08-31,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-10-20,['reading-2'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 28, 2021",2021-05-27,[],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 010-000-000,2021-06-16,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2021-05-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Avery Bourne,2021-05-26,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-14,[],IL,102nd +Assigned to Higher Education Committee,2021-04-28,['referral-committee'],IL,102nd +Total Veto Stands - No Positive Action Taken,2021-09-29,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-05-26,[],IL,102nd +Third Reading - Short Debate - Passed 118-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Adopted; Castro,2022-04-08,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Harmon,2022-01-05,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-05-13,['reading-1'],IL,102nd +Third Reading - Passed; 054-003-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ann Gillespie,2021-05-11,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Public Utilities Committee; 024-000-000,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-26,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-10-26,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Pensions; 008-000-000,2021-05-26,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2021-05-10,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2021-03-16,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-15,[],IL,102nd +Public Act . . . . . . . . . 102-0386,2021-08-16,['became-law'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Neil Anderson,2021-05-29,['filing'],IL,102nd +Chief House Sponsor Rep. Greg Harris,2021-05-12,[],IL,102nd +House Floor Amendment No. 3 Withdrawn by Rep. Sonya M. Harper,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2022-03-31,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-07,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-31,[],IL,102nd +Sent to the Governor,2021-06-30,['executive-receipt'],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Sara Feigenholtz,2022-03-30,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Immigration & Human Rights Committee; 008-000-000,2022-04-07,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 007-000-000,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-03,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-04-01,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2022-03-03,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Assigned to Revenue,2022-03-30,['referral-committee'],IL,102nd +Do Pass Revenue; 009-000-000,2022-03-09,['committee-passage'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-15,[],IL,102nd +Chief Senate Sponsor Sen. Celina Villanueva,2022-03-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2021-05-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-06,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-04-13,[],IL,102nd +Public Act . . . . . . . . . 102-0371,2021-08-13,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 111-000-001,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-02-22,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Martin McLaughlin,2022-04-06,[],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2023-01-05,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2023-01-03,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-01-06,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 057-000-000,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tim Butler,2021-05-12,[],IL,102nd +Recalled to Second Reading,2023-01-08,['reading-2'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-01,[],IL,102nd +Do Pass Healthcare Access and Availability; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-1003,2022-05-27,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-22,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-15,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-06,['reading-3'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-06-24,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2022-04-01,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Seth Lewis,2022-04-07,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-11-16,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 113-000-001,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-05,['amendment-failure'],IL,102nd +Third Reading - Passed; 054-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-12-29,[],IL,102nd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2023-01-09,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-26,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +"Effective Date July 30, 2021",2021-07-30,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Health,2022-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2021-04-30,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2023-01-05,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-04-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 010-006-000,2021-05-31,[],IL,102nd +Sent to the Governor,2022-04-18,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-06-08,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Kathleen Willis,2022-04-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2022-03-25,[],IL,102nd +Third Reading - Short Debate - Passed 104-006-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Assigned to Energy & Environment Committee,2022-04-03,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-23,[],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Arrived in House,2022-04-07,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 024-000-000,2022-04-07,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-02-24,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-11,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Camille Y. Lilly,2021-12-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-10-28,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 085-020-000,2023-01-05,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-11-30,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-30,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-07-01,[],IL,102nd +Passed Both Houses,2023-01-10,[],IL,102nd +Third Reading - Passed; 042-012-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2023-01-06,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 072-044-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0552,2021-08-20,['became-law'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-06-01,['filing'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-04-07,[],IL,102nd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-02,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-03-29,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-10-28,['amendment-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2022-04-01,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-09-10,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2021-04-20,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-10-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-02,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Elizabeth Hernandez,2022-01-05,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2021-06-01,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-10,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2022-01-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-04-04,[],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Tom Demmer,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Keith R. Wheeler,2022-03-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-10,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-03-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Amy Elik,2021-05-12,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2022-03-21,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-06-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-06-01,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2022-04-06,[],IL,102nd +House Committee Amendment No. 3 Filed with Clerk by Rep. Anthony DeLuca,2021-11-29,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2022-03-08,['amendment-introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Fiscal Note Requested as Amended by Rep. Tom Demmer,2021-05-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-08-24,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Restorative Justice Committee; 004-002-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2022-11-23,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-04-22,[],IL,102nd +"Final Action Deadline Extended-9(b) January 10, 2023",2022-12-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-01-10,[],IL,102nd +Second Reading - Standard Debate,2021-04-21,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-04,[],IL,102nd +Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Fiscal Note Requested as Amended by Rep. Thomas Morrison,2021-03-19,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-02-24,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Labor & Commerce Committee,2023-01-05,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-06-01,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Fine,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-05-31,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Governor Approved,2022-06-16,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-12,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Higher Education,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Villivalam,2022-04-06,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Public Act . . . . . . . . . 102-0632,2021-08-27,['became-law'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Ann Gillespie,2021-05-31,['filing'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Do Pass Licensed Activities; 009-000-000,2021-05-13,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-03,[],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Sent to the Governor,2021-06-07,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Judiciary - Criminal Committee,2021-05-30,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0602,2021-08-27,['became-law'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Arrived in House,2021-05-30,['introduction'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0095,2021-07-09,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-27,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Third Reading - Passed; 055-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2021-04-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-30,[],IL,102nd +Assigned to Public Safety,2022-03-16,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Ram Villivalam,2021-06-15,[],IL,102nd +First Reading,2021-04-15,['reading-1'],IL,102nd +Assigned to Higher Education,2021-04-28,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-05-31,[],IL,102nd +Third Reading - Passed; 050-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2023-01-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2021-05-25,[],IL,102nd +"Effective Date April 27, 2022",2022-04-27,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-07-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. C.D. Davidsmeyer,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Third Reading - Passed; 056-001-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-05-27,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-10-20,['reading-2'],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas M. Bennett,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-02-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Fiscal Note Filed as Amended,2022-03-08,[],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-000-000",2021-05-30,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-0278,2021-08-06,['became-law'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2021-05-13,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 056-000-000,2021-10-20,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-28,[],IL,102nd +Added Chief Co-Sponsor Rep. David A. Welter,2022-04-08,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-27,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +House Concurs,2021-06-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2021-05-11,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-26,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-23,['amendment-passage'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2021-05-25,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-04-05,[],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Pension Note Filed as Amended,2022-02-25,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-30,[],IL,102nd +Do Pass Higher Education; 013-000-000,2021-05-12,['committee-passage'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Education,2021-05-29,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +"Senate Floor Amendment No. 5 Filed with Secretary by Sen. Napoleon Harris, III",2022-04-06,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Sent to the Governor,2021-11-22,['executive-receipt'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 3, 4",2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-04-26,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-19,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Hastings,2021-06-15,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-03-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-03-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2022-03-22,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2022-03-30,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-01-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Rules Referred to Judiciary - Civil Committee,2022-04-03,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-04-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 015-000-000,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 111-000-001,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 111-000-000,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-21,[],IL,102nd +Arrived in House,2022-04-09,['introduction'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-04-14,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Anna Moeller,2022-03-21,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Thomas M. Bennett,2022-01-06,['amendment-introduction'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2022-03-29,[],IL,102nd +Removed Co-Sponsor Rep. Elizabeth Hernandez,2022-03-03,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Daniel Didech,2022-01-18,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-10-26,[],IL,102nd +Assigned to Healthcare Access and Availability,2022-03-16,['referral-committee'],IL,102nd +Third Reading - Passed; 041-018-000,2021-10-28,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Martin J. Moylan,2022-04-06,[],IL,102nd +Public Act . . . . . . . . . 102-0950,2022-05-27,['became-law'],IL,102nd +Recalled to Second Reading - Standard Debate,2021-04-22,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 067-042-002,2022-03-29,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 5 Referred to Assignments,2023-01-10,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Health; 010-000-000,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-03,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2022-04-06,[],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2022-03-04,[],IL,102nd +Recalled to Second Reading,2022-03-23,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2022-04-01,[],IL,102nd +Arrived in House,2022-04-01,['introduction'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Loughran-Cappel,2022-03-31,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Mattie Hunter,2021-05-28,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Postponed - Executive,2021-10-28,[],IL,102nd +Third Reading - Passed; 055-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2022-04-07,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Eric Mattson,2023-01-08,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kambium Buckner,2021-10-22,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kambium Buckner,2022-03-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-03-31,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-11,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Public Utilities Committee,2021-04-21,[],IL,102nd +Third Reading - Short Debate - Passed 108-002-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2022-03-21,[],IL,102nd +Recalled to Second Reading,2022-04-09,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-05-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-03-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-12,[],IL,102nd +House Floor Amendment No. 3 Adopted,2022-12-01,['amendment-passage'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-03-31,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-02-18,[],IL,102nd +Public Act . . . . . . . . . 102-0948,2022-05-27,['became-law'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Natalie A. Manley,2022-04-05,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2022-04-07,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-20,[],IL,102nd +Resolution Adopted 057-036-005,2021-03-18,['passage'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-02-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-14,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-07,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to Energy and Public Utilities,2022-04-04,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-07,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-04-08,[],IL,102nd +House Floor Amendment No. 5 Rules Refers to Housing Committee,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-04-06,[],IL,102nd +Recalled to Second Reading,2022-03-10,['reading-2'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-03-25,[],IL,102nd +Re-assigned to Executive,2022-03-24,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 016-000-000,2021-05-29,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-06-02,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Human Services Committee,2021-05-18,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 011-005-000,2021-03-24,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-03,[],IL,102nd +Recalled to Second Reading,2022-04-08,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Higher Education,2021-05-12,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2021-10-19,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-03,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-02,[],IL,102nd +Assigned to Insurance,2022-03-16,['referral-committee'],IL,102nd +Second Reading,2021-05-28,['reading-2'],IL,102nd +House Floor Amendment No. 1 Balanced Budget Note Requested as Amended by Rep. David A. Welter,2022-02-23,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Castro,2021-10-27,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Rules Committee; 003-001-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-21,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) April 30, 2022",2022-03-31,[],IL,102nd +Re-assigned to Insurance,2021-05-10,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2021-05-31,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-20,[],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-04-14,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Judiciary - Criminal Committee; 010-008-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2021-05-04,[],IL,102nd +Chief Senate Sponsor Sen. Rachelle Crowe,2022-03-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Chapin Rose,2021-05-25,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-13,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-04-20,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Bob Morgan,2021-06-16,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Ram Villivalam,2021-05-19,['amendment-introduction'],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2021-05-13,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-31,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Linda Holmes,2021-08-31,['filing'],IL,102nd +Senate Floor Amendment No. 5 Recommend Do Adopt Executive; 015-000-000,2021-05-31,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Alternate Chief Sponsor Changed to Rep. Jehan Gordon-Booth,2021-05-30,[],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-01-04,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura M. Murphy,2021-05-04,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Elizabeth Hernandez,2021-10-18,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-01-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. David Friess,2021-05-20,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 020-004-000,2022-03-29,['committee-passage-favorable'],IL,102nd +Assigned to State Government Administration Committee,2022-03-07,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-24,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-28,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2022-03-28,['amendment-introduction'],IL,102nd +Governor Approved,2021-08-12,['executive-signature'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2022-03-30,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-05-29,[],IL,102nd +Arrived in House,2022-03-30,['introduction'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Murphy,2022-02-25,['amendment-passage'],IL,102nd +"Effective Date May 20, 2022; - The effective date of P.A. 102-892 is set forth in P.A. 102-891",2022-05-20,[],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-05-30,['referral-committee'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +"Effective Date July 27, 2021",2021-07-27,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-09,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-01,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 009-006-000,2021-10-26,['committee-passage-favorable'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-1007,2022-05-27,['became-law'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-06-01,['filing'],IL,102nd +Added Chief Co-Sponsor Rep. Jim Durkin,2022-04-07,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-06-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Morrison,2022-03-31,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to State Government,2021-05-31,['referral-committee'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2021-05-29,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2021-05-27,[],IL,102nd +Arrived in House,2021-05-07,['introduction'],IL,102nd +Do Pass as Amended Environment and Conservation; 009-000-000,2021-05-20,['committee-passage'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +Assigned to Pensions,2022-04-01,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-10-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0978,2022-05-27,['became-law'],IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0338,2021-08-12,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-05-30,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0653,2021-08-27,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-02-16,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2022-03-24,[],IL,102nd +Do Pass / Short Debate Judiciary - Criminal Committee; 018-000-000,2022-03-22,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 041-018-000,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0207,2021-07-30,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2022-03-08,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Arrived in House,2021-10-27,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-20,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 5, 2022",2022-04-04,[],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 042-015-000,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-11,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 115-000-000,2021-06-16,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2022-03-02,[],IL,102nd +Public Act . . . . . . . . . 102-0263,2021-08-06,['became-law'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-03-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mike Murphy,2021-05-04,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Carol Ammons,2022-03-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-02-23,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-05-12,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2022-02-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-25,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2022-04-08,[],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-0241,2021-08-03,['became-law'],IL,102nd +Reported Back To Executive; 003-000-000,2021-05-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. LaToya Greenwood,2021-05-20,[],IL,102nd +House Floor Amendment No. 2 Judicial Note Request as Amended is Inapplicable,2021-05-31,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2022-03-23,[],IL,102nd +Public Act . . . . . . . . . 102-0932,2022-05-27,['became-law'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Delia C. Ramirez,2021-05-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Thomas Cullerton,2021-05-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 5, 2022",2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-05-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Do Pass as Amended Criminal Law; 009-000-000,2022-03-29,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 House Concurs 113-000-000,2022-04-07,[],IL,102nd +Third Reading - Passed; 056-000-001,2022-11-30,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2021-04-15,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Terri Bryant,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-20,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2023-01-06,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-01-05,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-20,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-22,[],IL,102nd +Senate Floor Amendment No. 2 Purusant to Senate Rule 3-8(b-1) the following amendments will remain in the Committee on Assignments.,2022-04-08,[],IL,102nd +Second Reading,2022-03-28,['reading-2'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-21,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2021-04-29,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Chief House Sponsor Rep. Deb Conroy,2022-02-24,[],IL,102nd +Recalled to Second Reading,2021-05-28,['reading-2'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-09-09,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-09,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-20,[],IL,102nd +Second Reading,2021-10-19,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2021-05-31,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-03-17,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-03-23,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-29,[],IL,102nd +Second Reading,2021-05-24,['reading-2'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Lindsey LaPointe,2022-03-01,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2022-03-22,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-15,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-04-07,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-04-06,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2022-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 31, 2021",2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2022-02-28,['amendment-introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-22,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-04-05,['amendment-failure'],IL,102nd +Pension Note Filed,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2021-05-28,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2022-12-01,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Ethics & Elections Committee; 011-007-000,2021-05-31,['committee-passage-favorable'],IL,102nd +3/5 Vote Required,2022-12-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Steve Stadelman,2022-11-30,[],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2022-04-05,['amendment-failure'],IL,102nd +Recalled to Second Reading,2022-11-30,['reading-2'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +State Debt Impact Note Filed,2022-03-23,[],IL,102nd +Third Reading - Short Debate - Passed 093-011-005,2022-12-01,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-22,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Carol Ammons,2021-05-28,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Mental Health & Addiction Committee; 014-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Karina Villa,2021-05-25,['amendment-introduction'],IL,102nd +Recalled to Second Reading,2022-12-01,['reading-2'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-06-01,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 041-018-000,2021-05-31,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-30,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0183,2021-07-30,['became-law'],IL,102nd +Arrived in House,2021-05-31,['introduction'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2021-05-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-10-27,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 113-000-000,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-30,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Do Pass as Amended Licensed Activities; 006-000-000,2022-03-30,['committee-passage'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2021-05-24,[],IL,102nd +Public Act . . . . . . . . . 102-0154,2021-07-23,['became-law'],IL,102nd +Sent to the Governor,2021-06-15,['executive-receipt'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2021-05-29,[],IL,102nd +Third Reading - Short Debate - Passed 103-006-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-06-01,[],IL,102nd +Third Reading - Passed; 037-013-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-31,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Avery Bourne,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-05-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2022-03-16,[],IL,102nd +Third Reading - Short Debate - Passed 076-028-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +Do Pass / Short Debate Cities & Villages Committee; 011-000-000,2022-03-15,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 115-000-000,2021-06-16,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2022-03-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-0598,2021-08-27,['became-law'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Robyn Gabel,2021-10-27,['amendment-introduction'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Assigned to Labor & Commerce Committee,2021-05-05,['referral-committee'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-04-01,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-31,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 3 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2021-10-27,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Request as Amended is Inapplicable,2021-05-31,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 28, 2021",2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-04-05,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added Chief Co-Sponsor Rep. David A. Welter,2022-02-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2021-05-05,[],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +"Effective Date January 1, 2022",2021-08-16,[],IL,102nd +Do Pass as Amended / Consent Calendar State Government Administration Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +"Effective Date January 1, 2022",2021-08-12,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Rachelle Crowe,2022-04-07,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-04-01,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-05-12,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-0892,2022-05-20,['became-law'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Butler,2022-02-25,[],IL,102nd +Second Reading - Short Debate,2022-03-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-02-16,[],IL,102nd +Chief House Sponsor Rep. Natalie A. Manley,2021-05-07,[],IL,102nd +Arrived in House,2022-04-08,['introduction'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-05-30,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-25,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Mark Batinick,2021-05-30,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2021-05-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-05,['amendment-passage'],IL,102nd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2021-05-13,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 4 Adopted; Morrison,2022-03-31,['amendment-passage'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 3",2021-05-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2022-03-23,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2022-04-01,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 014-001-000,2021-05-30,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-06-01,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-14,[],IL,102nd +Public Act . . . . . . . . . 102-0169,2021-07-27,['became-law'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-03-03,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-27,[],IL,102nd +Sponsor Removed Sen. Chapin Rose,2021-05-12,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-04-04,[],IL,102nd +House Floor Amendment No. 1 Correctional Note Requested as Amended by Rep. David A. Welter,2022-02-23,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-10-19,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-03-02,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 29, 2021",2021-05-28,[],IL,102nd +Do Pass State Government; 007-000-000,2022-03-09,['committee-passage'],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-31,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Laura Ellman,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-22,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-15,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Harmon,2022-04-08,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 2 Postponed - Higher Education,2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Withdrawn by Rep. Eva-Dina Delgado,2022-04-05,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-04-27,[],IL,102nd +Public Act . . . . . . . . . 102-0440,2021-08-20,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-16,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2021-04-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Recalled to Second Reading,2021-05-31,['reading-2'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. LaToya Greenwood,2022-04-05,['amendment-introduction'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Alternate Co-Sponsor Removed Rep. Rita Mayfield,2021-10-28,[],IL,102nd +Sponsor Removed Sen. Jacqueline Y. Collins,2021-05-07,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Robert Rita,2021-05-31,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-02,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-10-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-01-04,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-05-05,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-05-14,[],IL,102nd +Do Pass / Standard Debate Labor & Commerce Committee; 016-011-000,2022-03-16,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-06-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-03-24,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2021-05-18,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-08-31,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-10-28,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-10-28,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2021-05-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Avery Bourne,2021-05-27,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Laura Fine,2021-04-26,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2021-04-23,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 013-000-000,2021-03-23,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 20, 2021",2021-10-19,[],IL,102nd +Senate Concurs,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-04-07,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Chief Senate Sponsor Sen. Mike Simmons,2022-03-04,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 30, 2022",2022-03-29,[],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Jay Hoffman,2021-09-09,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-02-15,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-14,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Executive,2022-04-06,[],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-15,['executive-receipt'],IL,102nd +Third Reading - Consent Calendar - Passed 104-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 048-006-000,2023-01-05,"['passage', 'reading-3']",IL,102nd +Assigned to Transportation,2021-05-04,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-18,['executive-receipt'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Terra Costa Howard,2022-03-15,['amendment-introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2022-03-23,[],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2021-04-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 29, 2022",2022-03-28,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-21,['reading-3'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-04-05,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Camille Y. Lilly,2021-03-18,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2022-04-07,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Daniel Didech,2021-04-21,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added as Chief Co-Sponsor Sen. John F. Curran,2021-05-31,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-02-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Aquino,2021-05-28,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-01-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 25, 2021",2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-15,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sue Rezin,2023-01-05,[],IL,102nd +Arrived in House,2022-11-30,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2022-03-14,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Chief Senate Sponsor Sen. Laura Ellman,2021-04-23,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-01-08,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-13,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Passed Both Houses,2023-01-05,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Maurice A. West, II",2021-05-31,['amendment-introduction'],IL,102nd +Third Reading - Passed; 042-013-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2021-07-28,[],IL,102nd +Public Act . . . . . . . . . 102-0531,2021-08-20,['became-law'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2022-11-30,['referral-committee'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-20,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-05-11,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-25,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Senate Floor Amendment No. 1 House Concurs 117-000-000,2021-05-31,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Do Pass Education; 011-000-000,2021-05-12,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Third Reading - Standard Debate - Passed 062-048-002,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2021-05-30,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Castro,2022-04-08,['amendment-passage'],IL,102nd +Recalled to Second Reading,2022-12-01,['reading-2'],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2021-05-19,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Do Pass as Amended / Consent Calendar Human Services Committee; 015-000-000,2021-03-16,['committee-passage'],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +First Reading,2021-05-12,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2022-03-31,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-10-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 016-000-000,2021-10-27,[],IL,102nd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2021-10-27,['amendment-introduction'],IL,102nd +Third Reading - Passed; 044-007-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-05-31,['amendment-failure'],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Recalled to Second Reading,2021-05-27,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Recalled to Second Reading,2021-10-27,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-05-26,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2022",2022-03-09,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 014-000-000,2021-05-30,['committee-passage-favorable'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2021-05-18,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-23,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Do Pass as Amended Insurance; 013-000-000,2021-05-27,['committee-passage'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-04-22,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2021-05-26,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2021-05-14,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +House Floor Amendment No. 4 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2021-05-14,[],IL,102nd +Assigned to Education,2021-04-28,['referral-committee'],IL,102nd +Do Pass as Amended Licensed Activities; 007-000-000,2021-05-26,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 108-000-000,2021-06-16,[],IL,102nd +Arrived in House,2021-05-25,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2021-03-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-05-28,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 057-000-000,2022-04-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2021-05-30,[],IL,102nd +Third Reading - Short Debate - Passed 072-044-001,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-20,[],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Emil Jones, III",2021-05-28,['amendment-introduction'],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Jacqueline Y. Collins,2021-05-28,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-18,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 015-000-000,2021-05-20,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-10-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - April 4, 2022",2022-04-01,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Public Act . . . . . . . . . 102-0206,2021-07-30,['became-law'],IL,102nd +Placed on Calendar - Consideration Postponed,2022-03-03,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-31,['referral-committee'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-001-000,2021-08-31,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2022-04-07,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2023-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2021-05-18,[],IL,102nd +Chief Senate Sponsor Sen. Celina Villanueva,2022-03-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2021-04-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-08,['amendment-failure'],IL,102nd +Recalled to Second Reading,2022-04-07,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-01-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Burke,2022-03-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2022-03-23,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Gillespie,2022-11-30,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-03-24,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2023-01-10,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-01,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2021-04-23,[],IL,102nd +Public Act . . . . . . . . . 102-0786,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-15,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-03,[],IL,102nd +Do Pass Education; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +Referred to Rules Committee,2021-06-15,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2021-05-14,[],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-07-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2023-01-05,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Public Act . . . . . . . . . 102-0810,2022-05-13,['became-law'],IL,102nd +Assigned to Transportation,2022-03-16,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Mary E. Flowers,2022-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-03-09,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-06,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Governor Approved,2022-06-24,['executive-signature'],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Seth Lewis,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Omar Aquino,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Kathleen Willis,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Adam Niemerg,2022-03-17,[],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-15,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-04-09,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Melinda Bush,2022-02-22,['amendment-introduction'],IL,102nd +Alternate Co-Sponsor Removed Rep. Theresa Mah,2021-12-14,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-25,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-05,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-15,[],IL,102nd +"Senate Floor Amendment No. 3 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-04-08,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Mental Health & Addiction Committee,2021-05-27,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-01-08,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 6 Filed with Secretary by Sen. Celina Villanueva,2023-01-10,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-23,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 110-000-000,2022-04-07,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Third Reading - Passed; 059-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2023-01-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2022-03-28,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-06-08,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Cunningham,2023-01-08,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-04-06,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-20,[],IL,102nd +Public Act . . . . . . . . . 102-0228,2021-07-30,['became-law'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-04-08,[],IL,102nd +Do Pass as Amended Local Government; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-14,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Third Reading - Passed; 055-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-12-29,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2022-04-07,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2022-11-16,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-23,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-01,[],IL,102nd +Public Act . . . . . . . . . 102-1099,2022-06-24,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Cities & Villages Committee; 013-000-000,2022-04-07,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to State Government,2022-04-04,[],IL,102nd +Arrived in House,2022-02-24,['introduction'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-07,[],IL,102nd +Third Reading - Short Debate - Passed 069-044-001,2022-03-30,"['passage', 'reading-3']",IL,102nd +Placed on Calendar - Consideration Postponed,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-15,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Labor & Commerce Committee,2022-04-06,['referral-committee'],IL,102nd +Third Reading - Passed; 037-016-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Arrived in House,2022-04-05,['introduction'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-04-25,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-12,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-04-01,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 31, 2021",2021-05-29,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Mattie Hunter,2022-03-24,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-06,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Don Harmon,2023-01-09,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-04-25,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-02-24,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2023-01-05,[],IL,102nd +Assigned to Executive,2021-05-04,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2022-11-14,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-03-25,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Human Services Committee; 014-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2021-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-05-25,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Recalled to Second Reading - Short Debate,2022-04-07,['reading-2'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Jason A. Barickman,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2022-03-31,[],IL,102nd +"Effective Date January 1, 2023",2022-06-16,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Katie Stuart,2021-10-25,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-001,2021-05-27,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2021-05-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael J. Zalewski,2021-05-13,[],IL,102nd +Postponed - Higher Education,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-02-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-05-27,[],IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-10-27,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-22,[],IL,102nd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-05-29,['amendment-introduction'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2021-04-20,[],IL,102nd +Assigned to Behavioral and Mental Health,2022-03-16,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 116-000-000,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2021-05-19,[],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-11,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-05-13,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Governor Approved,2021-12-17,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 5 Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Passed Both Houses,2021-10-20,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Labor & Commerce Committee,2021-05-31,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2021-05-05,[],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2021-04-23,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-03-23,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-05-25,[],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 3, 4 - May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2021-05-12,[],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-04,['referral-committee'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to State Government Administration Committee,2021-05-27,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-25,['referral-committee'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-06-15,[],IL,102nd +House Floor Amendment No. 3 Pension Note Filed as Amended,2022-02-25,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2022-04-05,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Kimberly A. Lightford,2021-10-28,['amendment-introduction'],IL,102nd +Arrived in House,2022-04-07,['introduction'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Michael E. Hastings,2021-06-01,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3",2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-26,['amendment-failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-03-03,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-30,[],IL,102nd +Public Act . . . . . . . . . 102-0800,2022-05-13,['became-law'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-20,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2021-05-12,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-18,[],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Christopher Belt,2021-06-01,['filing'],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2021-04-27,[],IL,102nd +Sent to the Governor,2022-04-19,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-05-31,[],IL,102nd +Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Rachelle Crowe,2021-06-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Thaddeus Jones,2022-03-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sue Rezin,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-02-25,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2023-01-10,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2021-05-30,[],IL,102nd +"Effective Date January 1, 2023",2021-08-27,[],IL,102nd +Public Act . . . . . . . . . 102-0712,2022-04-27,['became-law'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-07-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 2, 3",2021-05-27,[],IL,102nd +Third Reading - Passed; 038-017-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Alternate Chief Sponsor Changed to Sen. David Koehler,2021-10-25,[],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +3/5 Vote Required,2021-06-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2022-03-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-04-07,[],IL,102nd +Chief Senate Sponsor Sen. Celina Villanueva,2022-03-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2022-03-30,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-05-12,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Recalled to Second Reading,2021-06-01,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Assignments,2022-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-03-02,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-06-16,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Balanced Budget Note Requested as Amended by Rep. Tim Butler,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-01-04,[],IL,102nd +House Committee Amendment No. 1 Balanced Budget Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-03-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Judicial Note Filed as Amended,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-04-04,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2021-05-31,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-21,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-03-02,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-10-28,[],IL,102nd +Assigned to Judiciary,2021-05-04,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-02-24,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-29,[],IL,102nd +House Committee Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Thomas Morrison,2021-03-19,[],IL,102nd +House Committee Amendment No. 3 Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2021-10-27,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 020-000-000,2023-01-06,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-11-23,['referral-committee'],IL,102nd +Assigned to Executive,2022-04-04,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-21,[],IL,102nd +Approved for Consideration Assignments,2022-11-29,[],IL,102nd +House Committee Amendment No. 1 State Debt Impact Note Requested as Amended by Rep. Tom Demmer,2021-05-20,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-08,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Thomas Morrison,2021-08-31,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-03-09,[],IL,102nd +Third Reading - Short Debate - Passed 068-035-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-05-05,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Loughran-Cappel,2022-03-31,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-03-01,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-03-29,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0869,2022-05-13,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-22,['amendment-passage'],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Third Reading - Passed; 048-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-04-05,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Deb Conroy,2022-03-17,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-03,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Jacqueline Y. Collins,2021-04-21,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-02-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-28,[],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Napoleon Harris, III",2022-04-08,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Housing Committee; 015-006-000,2021-05-20,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-14,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 101-011-002,2022-04-08,[],IL,102nd +Recalled to Second Reading,2022-04-07,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Koehler,2022-03-10,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-04-05,[],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 013-001-000,2022-04-05,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Charles Meier,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-03-24,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 017-000-000,2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Energy and Public Utilities; 013-000-000,2022-04-06,[],IL,102nd +Assigned to Executive Committee,2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-18,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2022-02-22,[],IL,102nd +Resolution Adopted,2022-03-29,['passage'],IL,102nd +Removed Co-Sponsor Rep. Terra Costa Howard,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-12-01,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2022-01-26,['committee-passage'],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 021-000-000,2022-03-16,['committee-passage'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Delia C. Ramirez,2021-03-15,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Collins,2022-04-09,['amendment-passage'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-10-22,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2021-05-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-05-26,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Collins,2022-03-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Martin J. Moylan,2022-04-06,[],IL,102nd +Arrived in House,2021-10-28,['introduction'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-03-17,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-10-26,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-01-06,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 111-000-001,2022-04-07,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-12,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-04-07,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Eric Mattson,2023-01-08,['filing'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2022-04-06,[],IL,102nd +Final Action Deadline Extended-9(b),2022-03-28,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - March 30, 2022",2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2022-03-21,['amendment-introduction'],IL,102nd +Sponsor Removed Sen. Kimberly A. Lightford,2021-10-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2021-05-28,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2022-01-11,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark L. Walker,2022-03-31,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-06,['reading-3'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-30,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 5 Recommends Be Adopted Housing Committee; 015-006-000,2021-05-20,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Morrison,2022-04-07,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +3/5 Vote Required,2022-12-01,[],IL,102nd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt Energy and Public Utilities; 013-000-000,2022-04-06,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. John Connor,2022-03-30,['filing'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-20,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2021-05-14,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2021-05-28,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Brian W. Stewart,2022-03-24,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Senate Committee Amendment No. 2 House Concurs 100-012-000,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 017-000-000,2022-04-08,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Simmons,2022-02-25,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Avery Bourne,2022-03-30,[],IL,102nd +Third Reading - Short Debate - Passed 105-005-001,2022-03-23,"['passage', 'reading-3']",IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 021-000-000,2022-03-23,['committee-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-03-15,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-01-08,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Elizabeth Hernandez,2022-04-07,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Third Reading - Passed; 038-015-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Assigned to Insurance,2022-03-16,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-03-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-09,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Delia C. Ramirez,2021-10-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-31,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-03-18,[],IL,102nd +Public Act . . . . . . . . . 102-1079,2022-06-10,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Human Services Committee,2022-04-05,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-29,[],IL,102nd +Arrive in Senate,2022-02-23,['introduction'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-10-28,[],IL,102nd +Resolution Adopted,2021-05-30,['passage'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-001-000,2022-04-05,['committee-passage-favorable'],IL,102nd +"Effective Date May 27, 2022; - Some Provisions Effective January 1, 2023",2022-05-27,[],IL,102nd +Do Pass as Amended Transportation; 017-000-000,2022-03-23,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. La Shawn K. Ford,2022-04-05,[],IL,102nd +Second Reading - Short Debate,2022-03-01,['reading-2'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. David Friess,2021-05-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-23,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Senate Concurs,2022-04-06,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - March 30, 2022",2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-04-21,[],IL,102nd +"Effective Date May 6, 2022",2022-05-06,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-29,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-03-03,[],IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-10,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-04-21,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 005-003-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-28,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-04-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Redistricting Committee,2022-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-21,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2021-10-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Health,2021-10-26,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-01-10,[],IL,102nd +House Floor Amendment No. 3 Correctional Note Requested as Amended by Rep. Tim Butler,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Public Act . . . . . . . . . 102-0780,2022-05-13,['became-law'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +First Reading,2021-09-03,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-03-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2022-03-24,[],IL,102nd +House Committee Amendment No. 1 Correctional Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2022-03-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-03-29,[],IL,102nd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Third Reading - Passed; 059-000-000,2021-06-01,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-01-04,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-02,[],IL,102nd +Public Act . . . . . . . . . 102-0853,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-03-02,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-04-07,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Crowe,2021-06-01,['amendment-passage'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Assigned to Executive,2022-11-22,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2022-05-25,[],IL,102nd +House Floor Amendment No. 3 Tabled Pursuant to Rule 40,2022-04-05,['amendment-failure'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 037-017-003,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Hunter,2022-12-01,['amendment-passage'],IL,102nd +Governor Approved,2021-08-05,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-1095,2022-06-16,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2022-03-18,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 3 - May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2022-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-29,['amendment-failure'],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-03-30,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 009-000-000,2021-05-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Margaret Croke,2021-05-12,[],IL,102nd +Assigned to Executive,2021-04-28,['referral-committee'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0816,2022-05-13,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas M. Bennett,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-29,[],IL,102nd +Third Reading - Passed; 046-008-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 059-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-06-01,['referral-committee'],IL,102nd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Marcus C. Evans, Jr.",2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-12,[],IL,102nd +Sent to the Governor,2021-06-30,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-02-05,[],IL,102nd +Third Reading - Short Debate - Passed 068-043-000,2022-03-23,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 House Concurs 099-018-000,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 012-000-000,2022-04-01,[],IL,102nd +3/5 Vote Required,2021-06-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2021-10-28,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Ann Gillespie,2021-05-31,['filing'],IL,102nd +Chief Co-Sponsor Changed to Rep. Jonathan Carroll,2021-05-30,[],IL,102nd +Assigned to Executive,2021-05-04,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Katie Stuart,2021-04-22,[],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Public Act . . . . . . . . . 102-0106,2021-07-23,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-10-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2021-05-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-07,['amendment-passage'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Do Pass Behavioral and Mental Health; 009-000-000,2022-03-23,['committee-passage'],IL,102nd +Recalled to Second Reading,2021-06-15,['reading-2'],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to Judiciary,2021-05-25,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-26,[],IL,102nd +Do Pass as Amended Health; 011-000-000,2021-05-25,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to State Government Administration Committee,2021-05-27,['referral-committee'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 109-003-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-05-27,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2022-02-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-20,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-07-21,[],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 019-000-000,2021-05-11,['committee-passage'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Jason Huffman,2023-01-10,[],IL,102nd +"Effective Date June 1, 2022",2021-12-17,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Governor Approved,2021-07-26,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0654,2021-08-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2022-04-05,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2022-02-25,['amendment-failure'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2021-05-05,['amendment-introduction'],IL,102nd +Arrive in Senate,2021-05-26,['introduction'],IL,102nd +Sent to the Governor,2021-11-17,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2022-04-08,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-06-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-11,[],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Governor Approved,2022-04-22,['executive-signature'],IL,102nd +Recalled to Second Reading,2021-06-01,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. William Davis,2021-03-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 5 Be Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2021-05-27,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2022-04-08,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Assigned to Executive,2022-03-02,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-05-25,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Rachelle Crowe,2021-05-29,['filing'],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-05-13,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Rita Mayfield,2022-03-10,['amendment-introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 House Concurs 079-030-000,2023-01-06,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2022-11-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-21,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2021-10-28,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-02-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading November 30, 2022",2022-11-29,[],IL,102nd +Do Pass / Short Debate Executive Committee; 009-006-000,2022-04-06,['committee-passage'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Michael J. Zalewski,2023-01-09,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-08-31,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-23,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-03-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Jim Durkin,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-04,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-04,['reading-3'],IL,102nd +To Judiciary- Privacy,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-05-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Tom Demmer,2021-05-20,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 016-012-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Third Reading - Passed; 052-001-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Governor Approved,2022-04-19,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2022-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2023-01-05,[],IL,102nd +Second Reading,2022-03-31,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Police & Fire Committee,2022-03-02,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2021-04-29,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-22,[],IL,102nd +"Senate Floor Amendment No. 3 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-01-06,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2023-01-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-24,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2021-09-09,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-14,[],IL,102nd +Public Act . . . . . . . . . 102-0795,2022-05-13,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 015-000-000,2022-04-07,[],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-12,['committee-passage'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-04-28,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2022-03-31,[],IL,102nd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2022-03-16,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Public Act . . . . . . . . . 102-0856,2022-05-13,['became-law'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-04-21,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-15,[],IL,102nd +Third Reading - Consent Calendar - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-03-15,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-05-13,[],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-05-31,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-16,[],IL,102nd +Recalled to Second Reading,2022-04-07,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-27,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Prescription Drug Affordability & Accessibility Committee,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-05,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-04-22,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Public Act . . . . . . . . . 102-1054,2022-06-10,['became-law'],IL,102nd +Second Reading,2021-10-19,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 10, 2022",2022-03-09,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Meg Loughran Cappel,2022-03-31,[],IL,102nd +House Floor Amendment No. 1 Fiscal Note Requested as Amended by Rep. David A. Welter,2022-02-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-04-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Harmon,2022-04-08,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-20,[],IL,102nd +Second Reading,2021-05-12,['reading-2'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Verified,2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2022-03-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Removed Co-Sponsor Rep. Carol Ammons,2022-03-03,[],IL,102nd +Assigned to Mental Health & Addiction Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-04-22,[],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 018-011-000,2021-03-15,['committee-passage'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2022-12-01,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Villanueva,2022-11-30,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-05-25,['referral-committee'],IL,102nd +Governor Approved,2021-08-17,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-06-01,['filing'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Remove Chief Co-Sponsor Rep. Anna Moeller,2021-04-21,[],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-03,[],IL,102nd +Third Reading - Passed; 050-004-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 30, 2021",2021-05-29,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 040-016-000,2021-05-30,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 3 - May 24, 2021",2021-05-21,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-07,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 013-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Rachelle Crowe,2021-05-28,['filing'],IL,102nd +Governor Approved,2021-08-12,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2021-05-20,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-29,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +House Concurs,2021-06-16,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Sonya M. Harper,2021-10-28,[],IL,102nd +Do Pass as Amended Executive; 016-000-000,2021-05-27,['committee-passage'],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Assigned to Education,2022-03-23,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 072-045-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-02-16,[],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 4 Adopted; Gillespie,2022-04-05,['amendment-passage'],IL,102nd +Waive Posting Notice,2022-04-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-04-01,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-04-01,['amendment-failure'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-05-15,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0387,2021-08-16,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2022-03-16,[],IL,102nd +Third Reading - Passed; 051-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-1002,2022-05-27,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2021-05-29,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +"Alternate Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2021-10-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2022-03-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-28,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2021-05-31,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 007-000-000,2021-05-25,['committee-passage'],IL,102nd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2022-04-05,['amendment-introduction'],IL,102nd +First Reading,2021-05-11,['reading-1'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-25,[],IL,102nd +Public Act . . . . . . . . . 102-1082,2022-06-10,['became-law'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - April 4, 2022",2022-04-01,[],IL,102nd +"Do Pass as Amended / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2021-05-13,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-31,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sandra Hamilton,2022-02-25,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Recalled to Second Reading,2021-10-27,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0284,2021-08-06,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 100-005-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2021-05-30,[],IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2021-04-26,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Lakesia Collins,2022-04-01,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 008-001-000,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Assigned to Criminal Law,2021-05-04,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-14,[],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0180,2021-07-30,['became-law'],IL,102nd +Do Pass as Amended Licensed Activities; 007-000-000,2022-03-30,['committee-passage'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2022-04-04,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2021-05-30,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-24,[],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2022-03-29,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2021-04-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-02-23,[],IL,102nd +House Floor Amendment No. 3 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-08,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 005-003-000,2022-03-16,['committee-passage'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Tom Weber,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-0336,2021-08-12,['became-law'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Cyril Nichols,2021-04-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-10-28,['amendment-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Frances Ann Hurley,2021-05-27,[],IL,102nd +Third Reading - Short Debate - Passed 071-044-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Executive,2021-05-19,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-03-30,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-04-20,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-02,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-16,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-01-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-04-28,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2021-05-20,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-14,[],IL,102nd +Arrived in House,2021-05-21,['introduction'],IL,102nd +Public Act . . . . . . . . . 102-0546,2021-08-20,['became-law'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2022-03-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2021-05-05,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +To Licensed Activities- Special Issues,2021-05-13,[],IL,102nd +Alternate Chief Co-Sponsor Changed to Rep. Emanuel Chris Welch,2021-05-14,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-31,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-10-28,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Cunningham,2021-05-31,['amendment-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Bob Morgan,2021-06-16,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2021-08-31,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2021-10-19,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt State Government; 008-000-000,2022-04-05,[],IL,102nd +Third Reading - Short Debate - Passed 079-025-004,2022-03-01,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Chief House Sponsor Rep. Jay Hoffman,2022-02-24,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-12-29,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Patrick J. Joyce,2022-04-04,['filing'],IL,102nd +Third Reading - Passed; 055-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Karina Villa,2021-05-28,['filing'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Mike Simmons,2022-03-04,[],IL,102nd +Added Alternate Co-Sponsor All Other Members of the House,2022-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lamont J. Robinson, Jr.",2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-04-26,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 009-005-000,2023-01-05,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-02-22,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2021-04-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-12-28,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Assigned to Veterans Affairs,2021-10-13,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - March 31, 2022",2022-03-30,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-01-10,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Mental Health & Addiction Committee; 014-000-000,2021-05-27,['committee-passage-favorable'],IL,102nd +Second Reading - Short Debate,2022-03-28,['reading-2'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. John C. D'Amico,2021-05-27,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2021-10-22,[],IL,102nd +"Effective Date January 1, 2023",2022-06-24,[],IL,102nd +Senate Floor Amendment No. 5 Referred to Assignments,2023-01-09,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-02-23,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 024-000-000,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2022-04-01,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-05-12,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-07,['amendment-failure'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-08-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-05-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Mark Batinick,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-01-05,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Stephanie A. Kifowit,2023-01-06,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 111-000-001,2022-04-07,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +First Reading,2021-04-15,['reading-1'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2022-04-05,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-05,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-15,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-06,['amendment-failure'],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Recalled to Second Reading,2022-11-16,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2022-03-04,[],IL,102nd +Public Act . . . . . . . . . 102-0927,2022-05-27,['became-law'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-04-26,[],IL,102nd +Third Reading - Short Debate - Passed 096-009-003,2021-04-14,"['passage', 'reading-3']",IL,102nd +Chief Sponsor Changed to Rep. Greg Harris,2022-04-09,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-05-04,[],IL,102nd +Senate Floor Amendment No. 6 Referred to Assignments,2023-01-10,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Tabled,2023-01-08,['amendment-failure'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-19,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ryan Spain,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-04-06,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Michael J. Zalewski,2022-03-31,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-04-09,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-01-24,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Villa,2022-04-07,['amendment-passage'],IL,102nd +Arrived in House,2022-04-08,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-18,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Theresa Mah,2022-04-07,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Karina Villa,2021-04-21,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Fiscal Note Filed,2021-03-25,[],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2022-03-04,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Gillespie,2022-11-30,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-19,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2022-04-04,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lance Yednock,2022-03-28,[],IL,102nd +Public Act . . . . . . . . . 102-0781,2022-05-13,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2023-01-05,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-22,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-01-10,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Dave Severin,2022-12-01,[],IL,102nd +Sent to the Governor,2023-02-03,['executive-receipt'],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-30,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0530,2021-08-20,['became-law'],IL,102nd +"Added Alternate Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-05-13,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Assigned to Higher Education Committee,2021-05-04,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-01-08,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +Third Reading - Consideration Postponed,2022-03-03,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Senate Floor Amendment No. 5 Recommend Do Adopt Criminal Law; 006-000-000,2021-05-25,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-10-20,['amendment-failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2021-05-14,[],IL,102nd +House Floor Amendment No. 1 Withdrawn by Rep. Elizabeth Hernandez,2021-08-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-03-18,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-03-18,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Licensed Activities,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Peters,2021-10-27,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 27, 2021",2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-19,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2021-04-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Third Reading - Passed; 052-004-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-27,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-08,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2022-03-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-05-11,[],IL,102nd +First Reading,2021-05-13,['reading-1'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2022-03-24,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Third Reading - Passed; 041-016-000,2022-01-05,"['passage', 'reading-3']",IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 3,2021-05-31,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2021-05-26,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-05-28,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Thomas Morrison,2021-05-21,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Senate Floor Amendment No. 1 Withdrawn by Sen. Ram Villivalam,2022-12-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-04-29,[],IL,102nd +"Effective Date June 1, 2022",2021-08-13,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - April 7, 2022",2022-04-07,[],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2021-05-11,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2021-05-21,['amendment-introduction'],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 007-000-000,2021-05-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-20,[],IL,102nd +Referred to Rules Committee,2021-05-12,['referral-committee'],IL,102nd +Assigned to Insurance Committee,2021-05-13,['referral-committee'],IL,102nd +Assigned to Education,2021-04-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Public Act . . . . . . . . . 102-0062,2021-07-09,['became-law'],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2021-10-27,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0145,2021-07-23,['became-law'],IL,102nd +Arrived in House,2021-05-25,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Peters,2021-05-27,['amendment-passage'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-04-04,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Chief Sponsor Changed to Sen. Rachelle Crowe,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-18,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Margaret Croke,2021-05-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Do Pass Education; 015-000-000,2021-05-05,['committee-passage'],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +"House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Napoleon Harris, III",2021-05-31,['filing'],IL,102nd +House Concurs,2021-06-16,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. William Davis,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Do Pass Health; 009-002-000,2021-05-19,['committee-passage'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Joe Sosnowski,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-03,[],IL,102nd +Third Reading - Short Debate - Passed 085-030-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-0031,2021-06-25,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Butler,2021-05-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-03-31,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Bob Morgan,2023-01-05,[],IL,102nd +Do Pass as Amended Human Rights; 006-003-000,2021-05-06,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kambium Buckner,2021-10-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2022-03-22,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-04-23,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0815,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-07-07,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-04-08,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-22,[],IL,102nd +Do Pass Transportation; 017-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-23,[],IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-07-08,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-10-26,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-24,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2021-05-14,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Maura Hirschauer,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Mary E. Flowers,2022-12-01,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-03,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Recalled to Second Reading,2023-01-08,['reading-2'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-31,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 015-000-000,2022-12-01,[],IL,102nd +Governor Approved,2021-08-23,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-1128,2023-02-07,['became-law'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-28,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-1131,2023-02-10,['became-law'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2021-05-11,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-03-02,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-15,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-10,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Doris Turner,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-12-29,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-04-06,[],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Napoleon Harris, III",2021-05-31,[],IL,102nd +First Reading,2022-02-24,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2022-04-06,[],IL,102nd +Assigned to Insurance,2022-03-08,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-14,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2021-05-12,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-29,['amendment-failure'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2022-04-01,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Antonio Muñoz,2021-05-05,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2021-05-13,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Health,2022-03-28,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Greg Harris,2023-01-06,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0945,2022-05-27,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-04-15,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-04-12,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As December 1, 2021",2021-10-13,[],IL,102nd +Resolution Adopted 111-000-000,2022-03-29,['passage'],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +Senate Floor Amendment No. 5 Be Approved for Consideration Assignments,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-01-06,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-22,[],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Licensed Activities,2022-02-23,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-22,[],IL,102nd +Placed on Calendar Order of First Reading,2022-02-23,['reading-1'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Randy E. Frese,2022-01-06,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-04-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Doris Turner,2022-04-04,['filing'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-28,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Greg Harris,2022-04-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Arrived in House,2022-04-07,['introduction'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2022-04-07,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Ann Gillespie,2023-01-05,[],IL,102nd +Third Reading - Short Debate - Passed 094-005-003,2022-04-05,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Randy E. Frese,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 2 Withdrawn by Sen. Laura M. Murphy,2022-11-16,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-1100,2022-06-24,['became-law'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 5 Be Approved for Consideration Assignments,2023-01-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-04-26,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +"Alternate Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Bob Morgan,2022-04-05,[],IL,102nd +Recalled to Second Reading,2022-04-06,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 071-043-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-11-30,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-01-05,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +To Executive- Firearms,2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-07,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-01-25,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Gillespie,2022-04-09,['amendment-passage'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Removed Co-Sponsor Rep. Delia C. Ramirez,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-18,[],IL,102nd +Chief Senate Sponsor Sen. Patrick J. Joyce,2021-04-19,[],IL,102nd +Arrived in House,2021-05-27,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2021-05-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Second Reading,2021-05-28,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-21,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0294,2021-08-06,['became-law'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Withdrawn by Sen. Ram Villivalam,2022-12-01,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 057-000-000,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-04-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-03-24,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Third Reading - Standard Debate - Passed 062-036-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2021-03-19,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Adopted 072-043-000,2021-08-31,['amendment-passage'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-10-26,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 041-018-000,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-05,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-29,[],IL,102nd +Recalled to Second Reading,2021-05-26,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Jacqueline Y. Collins,2021-05-28,['filing'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Scott M. Bennett,2021-05-24,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0366,2021-08-13,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2021-05-18,[],IL,102nd +Passed Both Houses,2021-06-16,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +Arrived in House,2021-04-26,['introduction'],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-0636,2021-08-27,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-27,[],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-10-27,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Do Pass Education; 012-000-000,2021-05-05,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-25,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jonathan Carroll,2021-05-21,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-22,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Antonio Muñoz,2022-04-07,['filing'],IL,102nd +Public Act . . . . . . . . . 102-0352,2021-08-13,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0126,2021-07-23,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2021-04-29,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-05-14,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2022-04-05,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-26,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2021-05-26,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 114-000-000,2021-05-30,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 3 - May 31, 2021",2021-05-31,[],IL,102nd +Arrived in House,2022-01-05,['introduction'],IL,102nd +Public Act . . . . . . . . . 102-0590,2021-08-27,['became-law'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Education,2022-04-01,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Andrew S. Chesney,2021-03-24,['amendment-introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Joyce Mason,2021-05-26,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Third Reading - Passed; 039-018-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2021-05-12,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-27,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Licensed Activities; 006-000-000,2021-05-29,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Public Utilities Committee; 025-000-000,2021-10-27,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-25,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Criminal Committee; 018-000-000,2021-05-11,['committee-passage'],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-19,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-05-11,[],IL,102nd +Chief Sponsor Changed to Sen. Doris Turner,2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-05-06,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-01,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. LaToya Greenwood,2022-03-28,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2023-01-09,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2022-11-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2023-01-10,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-03,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 8, 2022",2022-04-04,[],IL,102nd +Assigned to Executive Committee,2021-03-02,['referral-committee'],IL,102nd +Passed Both Houses,2023-01-06,[],IL,102nd +House Committee Amendment No. 1 State Debt Impact Note Filed as Amended,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-09-01,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Removed Co-Sponsor Rep. Jim Durkin,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-26,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Tom Demmer,2021-04-22,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-03-10,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 037-017-003,2021-03-25,[],IL,102nd +House Floor Amendment No. 4 Tabled Pursuant to Rule 40,2022-04-05,['amendment-failure'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Do Pass Executive; 016-000-000,2022-11-30,['committee-passage'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Hunter,2022-12-01,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-05-25,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Mattie Hunter,2021-05-28,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-14,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-21,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sue Rezin,2021-10-26,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-05,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Revenue & Finance Committee,2022-03-28,[],IL,102nd +Assigned to Appropriations,2022-03-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2023-01-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2021-05-12,[],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2022-04-08,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Thomas M. Bennett,2022-02-22,['amendment-introduction'],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Public Utilities Committee; 023-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Recalled to Second Reading,2022-04-06,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-04-21,[],IL,102nd +Public Act . . . . . . . . . 102-0988,2022-05-27,['became-law'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 3 Tabled,2023-01-08,['amendment-failure'],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Simmons,2022-02-25,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Laura Ellman,2022-03-30,[],IL,102nd +Public Act . . . . . . . . . 102-0737,2022-05-06,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Butler,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2022-04-01,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-20,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Steve Stadelman,2021-10-28,['amendment-introduction'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Second Reading,2022-03-31,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2022-04-08,[],IL,102nd +Chief Sponsor Changed to Rep. Elizabeth Hernandez,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-28,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2022-04-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael J. Zalewski,2021-10-22,[],IL,102nd +Third Reading - Passed; 047-000-000,2022-03-10,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-20,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0730,2022-05-06,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2022-03-21,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-05-05,[],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Delia C. Ramirez,2021-05-21,[],IL,102nd +Third Reading - Passed; 031-019-000,2022-04-09,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Jacqueline Y. Collins,2022-04-06,['filing'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 027-000-000,2022-03-15,['committee-passage'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-14,[],IL,102nd +"House Floor Amendment No. 2 Withdrawn by Rep. Jaime M. Andrade, Jr.",2022-03-04,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Avery Bourne,2022-03-16,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-29,[],IL,102nd +Passed Both Houses,2022-03-23,[],IL,102nd +Do Pass Insurance; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2022-03-30,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-05,['amendment-passage'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +Third Reading - Passed; 040-000-000,2022-03-23,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-03-03,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Third Reading - Short Debate - Passed 095-008-002,2022-12-01,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Referred to Rules Committee,2021-09-03,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Fiscal Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-02,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-03-10,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-03-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-03-02,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2021-04-21,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Health; 013-000-000,2021-10-26,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-05-12,[],IL,102nd +House Floor Amendment No. 3 Fiscal Note Requested as Amended by Rep. Tim Butler,2022-03-03,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Napoleon Harris, III",2022-03-25,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Redistricting Committee; 006-004-000,2022-01-05,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-01-10,[],IL,102nd +House Floor Amendment No. 4 Rule 19(c) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-01-04,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-02-17,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2021-10-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2022-04-04,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Laura Ellman,2022-03-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-06-01,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Arrived in House,2021-06-01,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jay Hoffman,2021-05-31,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0332,2021-08-06,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-03-30,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-04-28,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-001,2021-05-26,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-10-28,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Kelly M. Cassidy,2021-05-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-05-29,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-05,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to State Government,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Hastings,2021-06-01,['amendment-passage'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-0032,2021-06-25,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-05-29,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 27, 2021",2021-05-26,[],IL,102nd +"Effective Date April 22, 2022",2022-04-22,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Robert Peters,2021-04-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2022-03-14,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-07-21,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. John Connor,2021-05-28,['filing'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Barbara Hernandez,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-02-05,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Removed Co-Sponsor Rep. Anthony DeLuca,2021-04-22,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 26, 2021",2021-05-25,[],IL,102nd +Governor Approved,2021-12-17,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2021-05-20,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Thomas M. Bennett,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-0252,2021-08-06,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-23,[],IL,102nd +Placed on Calendar Order of First Reading,2021-05-26,['reading-1'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2022-03-24,[],IL,102nd +Public Act . . . . . . . . . 102-0155,2021-07-23,['became-law'],IL,102nd +House Floor Amendment No. 3 Fiscal Note Filed as Amended,2022-02-28,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 008-001-000,2021-05-29,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2021-05-30,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Public Act . . . . . . . . . 102-0686,2021-12-17,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-04-22,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-05-10,[],IL,102nd +Public Act . . . . . . . . . 102-0115,2021-07-23,['became-law'],IL,102nd +Third Reading - Passed; 053-003-000,2021-06-15,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-04-20,[],IL,102nd +Public Act . . . . . . . . . 102-0302,2021-08-06,['became-law'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-06-14,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +"Effective Date July 26, 2021",2021-07-26,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Senate Committee Amendment No. 3 Pursuant to Senate Rule 3-8 (b-1) this amendment will remain in the Committee on Assignments.,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Higher Education; 014-000-000,2021-05-27,[],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +Recalled to Second Reading,2022-04-08,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-05-28,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Aaron M. Ortiz,2021-05-13,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2022-03-31,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Education,2021-05-24,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. John Connor,2021-05-28,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-04-05,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John F. Curran,2021-05-14,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-03-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 4 Tabled Pursuant to Rule 5-4(a),2022-02-25,['amendment-failure'],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2021-05-13,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-05-13,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-14,[],IL,102nd +Resolution Adopted by Voice Vote,2023-01-10,['passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-31,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Katie Stuart,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-30,[],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +"Effective Date January 1, 2022",2021-08-05,[],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-04-01,['reading-2'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Withdrawn by Sen. Don Harmon,2021-06-15,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Katie Stuart,2021-10-28,['amendment-introduction'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Second Reading - Short Debate,2021-04-15,['reading-2'],IL,102nd +House Floor Amendment No. 3 3/5 Vote Required,2021-08-31,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-24,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-03-04,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. John C. D'Amico,2021-05-31,[],IL,102nd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2021-10-20,['amendment-passage'],IL,102nd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2021-05-21,[],IL,102nd +Public Act . . . . . . . . . 102-0432,2021-08-20,['became-law'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2023-01-05,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-01-04,[],IL,102nd +Senate Floor Amendment No. 4 Adopted; Cunningham,2021-05-31,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-20,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt Executive; 010-006-000,2021-05-19,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-001-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-06-16,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Brady,2021-05-19,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2021-05-27,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-06-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Villanueva,2022-11-30,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - December 1, 2022",2022-12-01,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2021-05-26,[],IL,102nd +House Committee Amendment No. 1 Adopted in Higher Education Committee; by Voice Vote,2021-05-29,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-22,[],IL,102nd +"Effective Date January 1, 2022",2021-08-17,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Chief Sponsor Changed to Rep. Katie Stuart,2022-11-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2021-03-25,[],IL,102nd +Chief Senate Sponsor Sen. Ann Gillespie,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-05-13,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Passed; 036-019-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-15,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Neil Anderson,2023-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-22,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-002-000,2021-03-18,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2021-04-29,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Avery Bourne,2021-04-20,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2023-01-06,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2022-03-22,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-04-05,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +"Effective Date April 19, 2022",2022-04-19,[],IL,102nd +Assigned to Judiciary - Criminal Committee,2021-05-04,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-04-07,['reading-2'],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-05-31,[],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Police & Fire Committee,2022-03-02,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2022-04-06,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2021-09-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-02-17,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0566,2021-08-20,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-14,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Harmon,2022-04-07,['amendment-passage'],IL,102nd +Arrived in House,2023-01-05,['introduction'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-04-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 20, 2021",2021-10-19,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-03-17,[],IL,102nd +Re-assigned to Insurance,2022-01-05,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Do Pass as Amended Executive; 011-006-000,2022-04-05,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Home Rule Note Requested as Amended by Rep. David A. Welter,2022-02-23,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Rachelle Crowe,2022-03-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 13, 2021",2021-05-12,[],IL,102nd +House Floor Amendment No. 4 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-08,[],IL,102nd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2022-03-16,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Sue Scherer,2021-04-20,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +3/5 Vote Required,2021-10-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 095-016-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-06-16,[],IL,102nd +Third Reading - Short Debate - Passed 071-045-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Patrick J. Joyce,2022-04-04,['filing'],IL,102nd +Third Reading - Short Debate - Passed 071-024-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Governor Approved,2021-08-02,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-25,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 30, 2021",2021-05-29,[],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Recalled to Second Reading - Short Debate,2022-03-25,['reading-2'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-05-29,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-04-22,[],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +"Effective Date August 12, 2021",2021-08-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2021-05-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-14,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Melinda Bush,2022-04-04,['filing'],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 008-001-000,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0076,2021-07-09,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2022-03-28,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Personnel & Pensions Committee,2021-05-30,['referral-committee'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-03-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-11,[],IL,102nd +Do Pass Criminal Law; 009-000-000,2021-05-12,['committee-passage'],IL,102nd +Do Pass Pensions; 007-000-000,2022-04-05,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-14,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 077-036-000,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-03-31,['amendment-failure'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-02-18,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Laura Fine,2021-05-29,['filing'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Rita Mayfield,2021-05-31,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2022-02-25,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-02-25,['amendment-failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-04,['amendment-failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2022-03-17,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-04-14,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2022-04-08,[],IL,102nd +Chief Sponsor Changed to Sen. Mattie Hunter,2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2022-04-07,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-001,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-28,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-02-23,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-002-000,2021-10-27,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Deb Conroy,2021-05-17,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 014-000-000,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-03-24,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Scott M. Bennett,2021-05-25,['filing'],IL,102nd +Third Reading - Short Debate - Passed 074-033-001,2022-03-29,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0608,2021-08-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-25,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-10-26,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2021-05-24,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-31,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Fine,2022-03-08,[],IL,102nd +Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading August 31, 2021",2021-08-26,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-03,[],IL,102nd +"Effective Date July 30, 2021; Some Provisions Effective",2021-07-30,[],IL,102nd +Senate Floor Amendment No. 1 Withdrawn by Sen. Ram Villivalam,2021-10-27,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-04-27,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2021-05-25,[],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - March 31, 2022",2022-03-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2021-10-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2021-04-27,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +Public Act . . . . . . . . . 102-0940,2022-05-27,['became-law'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jackie Haas,2022-02-25,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2022-02-23,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-25,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading,2021-04-22,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-26,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +"Effective Date August 2, 2021",2021-08-02,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to State Government,2021-05-29,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0337,2021-08-12,['became-law'],IL,102nd +"Effective Date January 1, 2022; - Other provisions.",2021-06-25,[],IL,102nd +"Effective Date January 1, 2022; - Other provisions.",2021-06-25,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-21,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Human Services Committee,2022-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-25,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Patrick Windhorst,2021-05-25,[],IL,102nd +Added as Co-Sponsor Sen. Eric Mattson,2022-05-10,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Kelly M. Cassidy,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Chapin Rose,2021-05-29,['filing'],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Sent to the Governor,2021-07-15,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Sonya M. Harper,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Villivalam,2021-10-27,['amendment-passage'],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-31,[],IL,102nd +"Effective Date January 1, 2022; Some Provisions Effective",2021-07-30,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2022-04-01,[],IL,102nd +Second Reading,2021-08-31,['reading-2'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-17,['referral-committee'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-13,['referral-committee'],IL,102nd +Assigned to Adoption & Child Welfare Committee,2022-03-17,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-05,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-03-24,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 014-000-000,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-28,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-05,[],IL,102nd +Second Reading,2022-03-31,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0923,2022-05-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2022-04-07,[],IL,102nd +Sent to the Governor,2021-06-15,['executive-receipt'],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-14,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 016-010-000,2022-04-06,['committee-passage-favorable'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-02-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Thomas Morrison,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Housing Committee,2022-03-29,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-04-29,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Scott M. Bennett,2022-04-07,[],IL,102nd +Sponsor Removed Sen. Antonio Muñoz,2021-06-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-22,[],IL,102nd +Chief Sponsor Changed to Sen. Rachelle Crowe,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Transportation: Vehicles & Safety Committee,2022-04-05,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lakesia Collins,2022-04-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - April 4, 2022",2022-04-01,[],IL,102nd +House Floor Amendment No. 2 Balanced Budget Note Requested as Amended by Rep. Deanne M. Mazzochi,2021-10-27,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-05-24,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-02-25,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-10-27,['amendment-passage'],IL,102nd +"Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-04-05,['referral-committee'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2022-03-29,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2021-05-31,['amendment-introduction'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Public Act . . . . . . . . . 102-0034,2021-06-25,['became-law'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2021-04-21,[],IL,102nd +Sent to the Governor,2022-04-18,['executive-receipt'],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +"Senate Floor Amendment No. 4 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-01-08,['amendment-introduction'],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 005-003-000,2021-05-06,['committee-passage'],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2022-03-15,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Ann M. Williams,2021-09-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-12,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2022-03-04,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Katie Stuart,2022-11-30,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Energy & Environment Committee,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-15,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-03-18,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-05-31,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-07,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-04-05,[],IL,102nd +Third Reading - Passed; 048-007-001,2021-03-25,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-28,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0701,2022-04-19,['became-law'],IL,102nd +Assigned to Criminal Law,2022-03-29,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2022-03-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Seth Lewis,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2022-03-28,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2022-02-18,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-01-05,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Harmon,2022-04-07,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-07,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2021-05-07,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Gillespie,2022-04-07,['amendment-passage'],IL,102nd +Do Pass as Amended Executive; 015-000-000,2021-05-27,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2021-04-21,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-22,[],IL,102nd +Recalled to Second Reading,2023-01-05,['reading-2'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading November 29, 2022",2022-11-16,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-03-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Anne Stava-Murray,2022-03-21,[],IL,102nd +Arrive in Senate,2022-03-28,['introduction'],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Assigned to Health,2021-05-04,['referral-committee'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-16,[],IL,102nd +Do Pass as Amended / Short Debate Executive Committee; 009-006-000,2021-10-20,['committee-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-21,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Keith R. Wheeler,2021-05-31,[],IL,102nd +Assigned to Criminal Law,2022-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-27,[],IL,102nd +Sponsor Removed Sen. Dan McConchie,2021-05-21,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Withdrawn by Rep. LaToya Greenwood,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 5 Adopted; Cunningham,2021-05-31,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-15,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0518,2021-08-20,['became-law'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Robert Peters,2022-03-30,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2021-04-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2021-04-22,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 057-000-000,2021-08-31,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Recalled to Second Reading,2021-05-20,['reading-2'],IL,102nd +Read in Full a First Time,2021-05-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-05-06,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2023-01-05,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-22,[],IL,102nd +Fiscal Note Filed,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Villanueva,2022-11-30,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Mental Health & Addiction Committee; 009-006-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 016-000-000,2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Chief Sponsor Changed to Sen. Bill Cunningham,2022-12-01,[],IL,102nd +Public Act . . . . . . . . . 102-0403,2021-08-17,['became-law'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Do Pass as Amended / Short Debate Higher Education Committee; 006-004-000,2021-05-29,['committee-passage'],IL,102nd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 039-018-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-17,[],IL,102nd +Postponed - Insurance,2022-01-12,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-21,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-21,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-03-10,[],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 1 Housing Affordability Impact Note Requested as Amended by Rep. David A. Welter,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Higher Education,2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-10-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. John F. Curran,2022-03-09,[],IL,102nd +Third Reading - Passed; 040-017-000,2021-10-27,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 014-000-000,2022-04-06,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Anna Moeller,2021-05-26,[],IL,102nd +Chief House Sponsor Rep. Kambium Buckner,2021-04-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Arrived in House,2022-04-08,['introduction'],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 30, 2021",2021-05-25,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Villivalam,2022-12-01,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anthony DeLuca,2021-05-06,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-27,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2021-05-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Michelle Mussman,2021-06-16,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 057-000-000,2021-05-30,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2, 3",2021-03-19,[],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-10-26,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2021-05-18,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Public Act . . . . . . . . . 102-0080,2021-07-09,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-05-20,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Greg Harris,2021-05-03,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-05-24,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-24,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Scott M. Bennett,2021-05-31,['filing'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Public Act . . . . . . . . . 102-0290,2021-08-06,['became-law'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-03,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-21,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 5 Adopted; Peters,2021-05-26,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-26,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Elizabeth Hernandez,2022-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-19,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-21,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Robyn Gabel,2021-05-26,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 29, 2021",2021-05-29,[],IL,102nd +Do Pass / Consent Calendar Insurance Committee; 018-000-000,2021-05-20,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 29, 2021",2021-05-28,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Commerce,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 106-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 041-018-000,2021-05-28,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2, 4",2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Recalled to Second Reading,2021-10-27,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0354,2021-08-13,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2021-05-25,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Third Reading - Passed; 053-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2022-04-05,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-04-01,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-08-31,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +3/5 Vote Required,2021-10-27,[],IL,102nd +Public Act . . . . . . . . . 102-0108,2021-07-23,['became-law'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-16,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-04-26,[],IL,102nd +Approved for Consideration Assignments,2022-03-22,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2022-04-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Public Utilities Committee,2022-04-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-05-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2022-03-28,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2023-01-06,['referral-committee'],IL,102nd +Recalled to Second Reading,2023-01-09,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2021-05-27,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Dale Fowler,2022-02-23,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-02,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-04-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-04-26,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2023-01-06,[],IL,102nd +Assigned to Insurance,2021-05-10,['referral-committee'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-04,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2022-04-06,[],IL,102nd +Chief Senate Sponsor Sen. Celina Villanueva,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 3 Withdrawn by Sen. Laura M. Murphy,2022-11-16,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Greg Harris,2022-04-09,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-05,['referral-committee'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; D. Turner,2022-04-06,['amendment-passage'],IL,102nd +Chief Sponsor Changed to Rep. Anthony DeLuca,2022-04-06,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Health; 010-000-000,2022-03-29,[],IL,102nd +Referred to Rules Committee,2022-02-24,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-04-06,[],IL,102nd +Do Pass Executive; 014-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-05-13,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2022-04-07,[],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Education,2021-05-29,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2021-03-18,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-05-29,['amendment-passage'],IL,102nd +House Floor Amendment No. 3 Tabled Pursuant to Rule 40,2022-04-05,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 008-000-000,2022-02-23,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Cities & Villages Committee,2022-04-07,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2021-05-11,[],IL,102nd +Adopted Both Houses,2022-03-29,[],IL,102nd +Do Pass Veterans Affairs; 005-000-000,2021-10-19,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2023-01-10,[],IL,102nd +Governor Approved,2022-06-15,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Butler,2022-01-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Senate Floor Amendment No. 6 Be Approved for Consideration Assignments,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-12-29,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ann Gillespie,2023-01-05,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2022-03-17,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0952,2022-05-27,['became-law'],IL,102nd +Do Pass as Amended / Consent Calendar Revenue & Finance Committee; 017-000-000,2021-05-13,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Assigned to Insurance Committee,2022-03-31,['referral-committee'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-15,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2021-05-31,[],IL,102nd +Alternate Co-Sponsor Removed Rep. La Shawn K. Ford,2023-01-05,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-14,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2022-07-08,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-03-29,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-06,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Delia C. Ramirez,2021-10-26,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +House Floor Amendment No. 5 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-31,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0435,2021-08-20,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2021-05-12,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Thomas Cullerton,2021-05-12,[],IL,102nd +Chief Sponsor Changed to Rep. Sue Scherer,2022-12-01,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Robyn Gabel,2021-05-28,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2021-05-06,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +"Effective Date January 1, 2022",2021-08-23,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Villa,2023-01-08,['amendment-passage'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-04-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael J. Zalewski,2023-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2022-03-11,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Ann M. Williams,2022-04-08,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-03-28,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2021-05-21,[],IL,102nd +To Income Tax Subcommittee,2022-01-27,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Executive Committee,2022-04-03,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-03-25,[],IL,102nd +3/5 Vote Required,2022-11-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 057-000-000,2021-05-31,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2022-03-23,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-19,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 4 Filed with Secretary by Sen. Don Harmon,2021-05-26,['amendment-introduction'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0063,2021-07-09,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-04-28,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Public Safety,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-02-05,[],IL,102nd +Do Pass State Government; 008-000-000,2022-04-05,['committee-passage'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-03-30,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2021-03-30,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0607,2021-08-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-10-28,[],IL,102nd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt Judiciary; 008-000-000,2021-05-29,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Michael E. Hastings,2021-05-28,['filing'],IL,102nd +House Floor Amendment No. 2 Note / Motion Filed - Note Act Does Not Apply Rep. Janet Yang Rohr,2022-03-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-05-29,[],IL,102nd +Assigned to Higher Education,2021-05-11,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2021-05-28,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-07-21,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-14,[],IL,102nd +"Senate Floor Amendment No. 4 Withdrawn by Sen. Napoleon Harris, III",2022-04-08,[],IL,102nd +Third Reading - Passed; 056-001-000,2021-06-15,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Arrived in House,2021-05-26,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-16,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0656,2021-08-27,['became-law'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 017-000-000,2021-05-29,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2021-05-28,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-04-28,[],IL,102nd +Public Act . . . . . . . . . 102-0703,2022-04-22,['became-law'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Doris Turner,2021-05-27,['filing'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 025-000-000,2021-06-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-31,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - March 24, 2022",2022-03-24,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 27, 2021",2021-05-26,[],IL,102nd +Third Reading - Passed; 038-015-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2022-03-23,[],IL,102nd +Third Reading - Short Debate - Passed 094-007-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-04-27,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Rezin,2022-04-01,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-30,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2021-05-26,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Arrived in House,2021-06-15,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0791,2022-05-13,['became-law'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Ann Gillespie,2021-05-31,['filing'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-27,[],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2021-05-11,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-02-25,[],IL,102nd +Public Act . . . . . . . . . 102-1070,2022-06-10,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-0249,2021-08-05,['became-law'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-13,['referral-committee'],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Criminal Committee; 016-000-000,2021-05-13,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2022-04-08,[],IL,102nd +Public Act . . . . . . . . . 102-0167,2021-07-26,['became-law'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-05-29,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2022-03-30,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2021-05-11,[],IL,102nd +"Senate Floor Amendment No. 3 Motion Filed Concur Rep. Marcus C. Evans, Jr.",2021-05-31,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 013-000-000,2021-05-25,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Filed with Secretary Sen. Rachelle Crowe,2021-05-29,['filing'],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Butler,2021-05-20,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2021-05-29,['amendment-introduction'],IL,102nd +"Effective Date July 1, 2022",2021-12-17,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-10,[],IL,102nd +House Committee Amendment No. 2 Senate Concurs 058-000-000,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. C.D. Davidsmeyer,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Gillespie,2022-04-06,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-04-08,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 2, 3",2022-12-01,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-05,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to State Government,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-04-14,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Third Reading - Passed; 058-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +Removed Co-Sponsor Rep. Anne Stava-Murray,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-1012,2022-05-27,['became-law'],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-04-21,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Terra Costa Howard,2022-03-11,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-21,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-05-05,[],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2022-03-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-03-16,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 038-014-000,2023-01-09,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Public Utilities Committee; 023-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-31,[],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-10-22,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 014-000-000,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-05-18,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Human Services Committee,2022-04-05,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-03-23,[],IL,102nd +Public Act . . . . . . . . . 102-0997,2022-05-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2021-05-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Elizabeth Hernandez,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2022-03-24,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-04-07,[],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Transportation: Regulation, Roads & Bridges Committee",2022-04-07,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-10-26,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-08,[],IL,102nd +To Appropriations- Higher Education,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Healthcare Access and Availability,2022-03-22,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-02-22,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-09,['amendment-failure'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Third Reading - Standard Debate - Passed 070-041-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 4 Adopted; Cunningham,2023-01-08,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Simmons,2022-02-25,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2022-03-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Rachelle Crowe,2022-04-07,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to Criminal Law,2022-04-04,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Third Reading - Passed; 055-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Assigned to Revenue & Finance Committee,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-04-20,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2021-05-28,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-03-10,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-09-06,[],IL,102nd +Sent to the Governor,2022-04-21,['executive-receipt'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - March 31, 2022",2022-03-30,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-09-08,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2023-01-10,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2022-03-14,[],IL,102nd +House Committee Amendment No. 3 Rules Refers to Revenue & Finance Committee,2022-03-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-07,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Revenue & Finance Committee,2023-01-09,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 State Debt Impact Note Requested as Amended by Rep. Tom Demmer,2021-04-22,[],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-03-24,[],IL,102nd +Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-10-27,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Sent to the Governor,2023-02-03,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-12,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-11-29,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Butler,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-05-25,[],IL,102nd +Senate Floor Amendment No. 4 Adopted; Hunter,2022-12-01,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-04-05,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-11-30,[],IL,102nd +Senate Concurs,2021-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-23,[],IL,102nd +Referred to Rules Committee,2021-03-18,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-03-16,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Second Reading - Short Debate,2022-02-22,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Mark Luft,2021-05-12,[],IL,102nd +House Committee Amendment No. 1 Home Rule Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-01-10,[],IL,102nd +House Floor Amendment No. 3 Home Rule Note Requested as Amended by Rep. Tim Butler,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-01-04,[],IL,102nd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-03-10,[],IL,102nd +3/5 Vote Required,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2022-04-04,[],IL,102nd +Recalled to Second Reading,2021-10-27,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Barbara Hernandez,2022-03-23,[],IL,102nd +Fiscal Note Filed,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Tom Demmer,2022-01-05,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Gillespie,2022-04-09,['amendment-passage'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. LaToya Greenwood,2021-10-28,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-06-01,[],IL,102nd +House Floor Amendment No. 2 Judicial Note Requested as Amended by Rep. Tom Demmer,2022-01-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-09,[],IL,102nd +House Floor Amendment No. 3 Housing Affordability Impact Note Requested as Amended by Rep. Tim Butler,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2022-03-28,[],IL,102nd +Third Reading - Passed; 054-000-000,2021-06-01,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0771,2022-05-13,['became-law'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +"Effective Date August 1, 2023",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-03-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2023-01-10,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2022-03-23,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-04-14,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Koehler,2021-10-27,['amendment-passage'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-07-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-03-23,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 012-007-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-01-04,[],IL,102nd +Removed Co-Sponsor Rep. Dave Severin,2021-05-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 014-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Removed Co-Sponsor Rep. Janet Yang Rohr,2022-04-04,[],IL,102nd +Public Act . . . . . . . . . 102-0826,2022-05-13,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2022-03-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2021-10-28,[],IL,102nd +Chief Sponsor Changed to Rep. Martin J. Moylan,2021-06-14,[],IL,102nd +House Committee Amendment No. 1 Housing Affordability Impact Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-03-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-10,[],IL,102nd +Do Pass Education; 011-000-000,2021-05-12,['committee-passage'],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Tom Demmer,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 015-000-000,2023-01-10,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-24,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-10-20,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Approved for Consideration Assignments,2023-01-05,[],IL,102nd +Chief Senate Sponsor Sen. Sara Feigenholtz,2022-03-04,[],IL,102nd +Public Act . . . . . . . . . 102-1137,2023-02-10,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-11-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Chief Sponsor Changed to Sen. Celina Villanueva,2023-01-09,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Appropriations-Public Safety Committee,2022-03-30,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-24,['amendment-failure'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Sara Feigenholtz,2021-05-27,['filing'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-03-30,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-06-15,[],IL,102nd +First Reading,2021-05-26,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Debbie Meyers-Martin,2021-05-30,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2021-04-28,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0303,2021-08-06,['became-law'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Recalled to Second Reading,2021-05-26,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2021-05-20,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 053-003-000,2021-05-30,[],IL,102nd +House Floor Amendment No. 3 Note / Motion Filed - Note Act Does Not Apply Rep. Janet Yang Rohr,2022-03-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2022-03-22,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Blaine Wilhour,2022-03-30,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Linda Holmes,2022-03-24,['filing'],IL,102nd +Resolution Adopted,2021-05-30,['passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2021-05-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2022-03-23,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2021-05-29,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2022-03-18,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-02-25,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-04-09,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-14,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 27, 2021",2021-05-26,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Do Pass Higher Education; 011-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-20,[],IL,102nd +Public Act . . . . . . . . . 102-0688,2021-12-17,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-23,['referral-committee'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-16,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0617,2021-08-27,['became-law'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-02-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Second Reading,2021-05-30,['reading-2'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. John Connor,2021-05-28,['filing'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-07-21,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2021-05-30,[],IL,102nd +Recalled to Second Reading,2021-05-31,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-31,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Health,2021-05-30,['referral-committee'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Third Reading - Passed; 053-005-000,2021-06-01,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2021-06-15,['amendment-failure'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 3",2021-05-26,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Scott M. Bennett,2021-05-25,['filing'],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Personnel & Pensions Committee,2022-04-08,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-11,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-0311,2021-08-06,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 007-000-000,2021-10-28,[],IL,102nd +Do Pass Executive; 014-000-000,2021-05-13,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 057-000-000,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. William Davis,2021-05-18,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-03,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2021-05-29,[],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-10-28,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 010-004-001,2021-10-28,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-04-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 5 Adopted; Harris,2022-04-08,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 4 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Seth Lewis,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0296,2021-08-06,['became-law'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 115-000-000,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-13,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-30,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 113-000-000,2021-06-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-06-01,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Arrived in House,2022-03-10,['introduction'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-04-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2022-03-16,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-31,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Health,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-05-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +Senate Concurs,2023-01-09,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-25,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +House Floor Amendment No. 3 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Robyn Gabel,2022-03-11,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Joyce Mason,2022-04-04,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Arrived in House,2022-03-23,['introduction'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2022-02-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-05-29,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 3 - December 1, 2022",2022-12-01,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-30,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-04-09,[],IL,102nd +Third Reading - Short Debate - Passed 103-000-000,2022-03-28,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Arrived in House,2022-04-07,['introduction'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2021-10-26,[],IL,102nd +"Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Transportation: Regulation, Roads & Bridges Committee",2022-04-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 014-000-000,2022-04-07,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Housing Committee,2021-03-16,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Sonya M. Harper,2022-04-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-03-28,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 111-000-001,2022-04-07,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-10-28,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-04-01,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 4 Adopted; Simmons,2022-02-25,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-04-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-18,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2022-04-06,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0118,2021-07-23,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Fine,2022-04-08,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-20,[],IL,102nd +Public Act . . . . . . . . . 102-0846,2022-05-13,['became-law'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Neil Anderson,2022-03-31,['filing'],IL,102nd +Senate Concurs,2022-04-06,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2022-04-05,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-05,['amendment-failure'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2021-10-22,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +"Do Pass / Short Debate Museums, Arts, & Cultural Enhancements Committee; 009-000-000",2021-05-12,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Omar Aquino,2022-04-07,[],IL,102nd +Third Reading - Short Debate - Passed 107-007-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-12-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Eric Mattson,2022-05-25,[],IL,102nd +Governor Approved,2021-08-24,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-05,[],IL,102nd +Passed Both Houses,2021-03-25,[],IL,102nd +Second Reading,2022-11-30,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Postponed - Higher Education,2021-05-19,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-08,['amendment-failure'],IL,102nd +Third Reading - Short Debate - Passed 107-000-001,2022-04-05,"['passage', 'reading-3']",IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Second Reading,2022-04-06,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-05-18,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-18,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 006-003-000,2021-10-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-22,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. David Koehler,2022-02-01,['amendment-introduction'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2022-03-09,[],IL,102nd +House Floor Amendment No. 1 Judicial Note Requested as Amended by Rep. David A. Welter,2022-02-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +Arrived in House,2021-10-27,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-04-04,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 072-043-000,2021-10-28,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2021-05-21,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2021-05-27,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jehan Gordon-Booth,2023-01-05,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2021-05-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-20,[],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2022-03-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-19,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-05-31,[],IL,102nd +Third Reading - Short Debate - Passed 065-044-000,2021-04-20,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-24,[],IL,102nd +House Committee Amendment No. 1 State Mandates Fiscal Note Filed as Amended,2021-05-21,[],IL,102nd +Senate Concurs,2021-08-31,[],IL,102nd +Do Pass Health; 013-000-000,2021-05-12,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Mental Health & Addiction Committee,2021-04-21,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Villivalam,2021-05-20,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Fine,2021-04-22,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Consumer Protection Committee,2022-01-11,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-28,['reading-1'],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Tim Butler,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2021-05-28,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading October 19, 2021",2021-08-31,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - April 4, 2022",2022-04-01,[],IL,102nd +"Committee/Final Action Deadline Extended-9(b) May 28, 2021",2021-05-13,[],IL,102nd +Third Reading - Short Debate - Passed 110-001-000,2022-03-23,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 4 Adopted; Villivalam,2021-04-22,['amendment-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2022-03-17,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-25,['amendment-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0650,2021-08-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Steve Stadelman,2022-04-04,['filing'],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-05-31,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Third Reading - Short Debate - Passed 109-000-001,2022-04-05,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-05-28,['filing'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2021-10-26,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-02-23,[],IL,102nd +"Effective Date July 1, 2022",2021-08-27,[],IL,102nd +Assigned to Revenue & Finance Committee,2022-04-05,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Deanne M. Mazzochi,2021-10-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Revenue & Finance Committee,2022-04-08,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2022-04-07,[],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-14,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Energy & Environment Committee,2022-04-06,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2022-02-25,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2021-05-24,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-05-19,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-02-18,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-07,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3, 4",2022-03-31,[],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-05-29,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added as Chief Co-Sponsor Sen. Jil Tracy,2022-02-25,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert Peters,2022-04-04,['filing'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Personnel & Pensions Committee; 007-000-000,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-10-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-07,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Housing Committee; 017-000-000,2022-03-31,['committee-passage-favorable'],IL,102nd +"Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Health,2022-04-05,['referral-committee'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-04-30,[],IL,102nd +Assigned to Energy and Public Utilities,2021-04-28,['referral-committee'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2022-03-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2022-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +Public Act . . . . . . . . . 102-0020,2021-06-25,['became-law'],IL,102nd +House Committee Amendment No. 1 3/5 Vote Required,2021-06-01,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 24, 2021",2021-05-21,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 015-000-000,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-03,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0027,2021-06-25,['became-law'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Cassidy,2022-03-28,['amendment-introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Paul Jacobs,2021-05-25,[],IL,102nd +Third Reading - Short Debate - Passed 071-046-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Governor Approved,2022-05-26,['executive-signature'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0236,2021-08-02,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0606,2021-08-27,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0951,2022-05-27,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0257,2021-08-06,['became-law'],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to State Government,2022-04-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-27,[],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2021-10-14,[],IL,102nd +Third Reading - Short Debate - Passed 118-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0210,2021-07-30,['became-law'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-07,[],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-03-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-08,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Robyn Gabel,2021-09-09,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Julie A. Morrison,2022-11-29,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2022-05-03,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2022-03-15,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-02-22,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +Recalled to Second Reading,2022-04-07,['reading-2'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Elizabeth Hernandez,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2023-01-05,[],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0799,2022-05-13,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2021-05-27,[],IL,102nd +Added as Chief Co-Sponsor Sen. Don Harmon,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Mattson,2023-01-05,['amendment-passage'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2023-01-08,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-22,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-22,['amendment-failure'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Governor Approved,2022-05-05,['executive-signature'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-11-30,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-02-22,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-29,[],IL,102nd +"Effective Date May 27, 2022; - Some Provisions Effective October 1, 2023",2022-05-27,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-07,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-04-05,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-03-28,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +Balanced Budget Note Filed,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 099-009-000,2022-12-01,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Bill Cunningham,2022-12-01,['filing'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-11-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-29,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-23,[],IL,102nd +Chief Senate Sponsor Sen. Scott M. Bennett,2021-04-23,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. LaToya Greenwood,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Ann M. Williams,2022-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-30,['amendment-passage'],IL,102nd +Third Reading - Passed; 057-000-000,2022-11-30,"['passage', 'reading-3']",IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-03-10,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2022-04-07,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 008-006-000,2022-04-04,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-01-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-11,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2022-03-11,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-03,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-07-08,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-14,[],IL,102nd +House Floor Amendment No. 2 Withdrawn by Rep. LaToya Greenwood,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-12-20,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2021-10-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Bob Morgan,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-31,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0811,2022-05-13,['became-law'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Criminal Law,2021-05-29,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0600,2021-08-27,['became-law'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. John F. Curran,2022-03-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Denyse Wang Stoneback,2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-0615,2021-08-27,['became-law'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-05-20,['amendment-introduction'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-01-05,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-20,['reading-2'],IL,102nd +Second Reading,2021-05-25,['reading-2'],IL,102nd +3/5 Vote Required,2022-12-01,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 073-043-000,2021-08-31,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Land Conveyance Appraisal Note Filed as Amended,2022-03-04,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-26,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-06,['referral-committee'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2021-05-27,[],IL,102nd +"Effective Date July 1, 2022",2021-08-06,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2021-10-26,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2, 3 - March 23, 2021",2021-03-19,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Do Pass / Short Debate Higher Education Committee; 010-000-000,2022-03-16,['committee-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-06-16,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-26,['referral-committee'],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Assigned to Criminal Law,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Passed; 052-000-000,2021-10-27,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Hunter,2021-10-27,['amendment-passage'],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Do Pass Revenue; 011-000-000,2022-04-05,['committee-passage'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-27,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-29,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-23,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2, 4 - May 28, 2021",2021-05-27,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Commerce; 010-000-000,2022-04-01,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 014-001-000,2021-05-31,[],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-05-29,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2021-05-24,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Christopher Belt,2021-05-30,['filing'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2021-05-26,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-21,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-04-08,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2021-05-14,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 017-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Chris Bos,2021-05-12,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Antonio Muñoz,2022-04-07,['filing'],IL,102nd +Public Act . . . . . . . . . 102-0629,2021-08-27,['became-law'],IL,102nd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2022-04-01,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-04,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-26,[],IL,102nd +Assigned to Executive,2021-05-25,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-26,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 012-000-000,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 110-000-000,2022-04-07,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Anthony DeLuca,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; D. Turner,2022-04-06,['amendment-passage'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-06,[],IL,102nd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt Criminal Law; 009-000-000,2022-04-05,[],IL,102nd +Assigned to Human Rights,2021-04-28,['referral-committee'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0852,2022-05-13,['became-law'],IL,102nd +Motion Filed to Reconsider Vote Rep. Jennifer Gong-Gershowitz,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-09,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Steven Reick,2022-01-11,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Adopted; Murphy,2022-11-16,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2023-01-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Harmon,2023-01-09,['amendment-passage'],IL,102nd +"Senate Floor Amendment No. 4 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2022-04-08,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Mary E. Flowers,2022-04-08,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-17,['referral-committee'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2022-03-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-12-29,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2021-05-19,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jawaharial Williams,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-14,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2022-04-26,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-12,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. David Koehler,2021-05-31,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-001-000,2023-01-06,['committee-passage-favorable'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-03-02,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-02-23,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 23, 2022",2022-03-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael J. Zalewski,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-04-05,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to State Government,2022-04-04,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0854,2022-05-13,['became-law'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-02,['reading-2'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-04-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Public Utilities Committee,2022-04-07,['referral-committee'],IL,102nd +Do Pass / Short Debate Insurance Committee; 016-000-000,2022-04-06,['committee-passage'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-02,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Seth Lewis,2022-03-28,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-03-30,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Licensed Activities; 008-000-000,2022-02-23,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2021-05-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 009-004-000,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +Assigned to Licensed Activities,2022-03-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-10-19,[],IL,102nd +Assigned to Executive,2022-03-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Cities & Villages Committee,2022-04-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +"Effective Date June 15, 2022",2022-06-15,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2022-02-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Human Services Committee,2022-04-06,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-07,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2023-01-10,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-25,[],IL,102nd +Recalled to Second Reading,2022-03-30,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-06-29,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-12-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2021-05-13,[],IL,102nd +House Floor Amendment No. 5 Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Brady,2021-05-12,[],IL,102nd +Public Act . . . . . . . . . 102-0571,2021-08-23,['became-law'],IL,102nd +Chief Senate Sponsor Sen. Jacqueline Y. Collins,2021-04-23,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-10-28,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-06,[],IL,102nd +Public Act . . . . . . . . . 102-0412,2021-08-20,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-08,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-06,[],IL,102nd +Public Act . . . . . . . . . 102-0543,2021-08-20,['became-law'],IL,102nd +Recalled to Second Reading - Short Debate,2021-05-31,['reading-2'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 5 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-31,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-10-28,['amendment-passage'],IL,102nd +Assigned to Criminal Law,2021-05-18,['referral-committee'],IL,102nd +House Floor Amendment No. 2 3/5 Vote Required,2021-06-01,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Public Act . . . . . . . . . 102-0427,2021-08-20,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2021-05-12,[],IL,102nd +Assigned to Health,2021-05-10,['referral-committee'],IL,102nd +Third Reading - Passed; 051-000-000,2023-01-08,"['passage', 'reading-3']",IL,102nd +"House Floor Amendment No. 1 Withdrawn by Rep. Maurice A. West, II",2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-26,[],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +"Effective Date August 6, 2021; - Some Provisions Effective January 1, 2022",2021-08-06,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-04-14,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-05-31,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Third Reading - Passed; 052-001-000,2022-12-01,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Elizabeth Hernandez,2022-01-05,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2021-05-05,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-25,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +"Chief Sponsor Changed to Rep. Marcus C. Evans, Jr.",2022-04-08,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Maura Hirschauer,2022-04-01,[],IL,102nd +Recalled to Second Reading,2022-04-05,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2021-05-14,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jim Durkin,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-12,[],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-27,[],IL,102nd +House Floor Amendment No. 3 Land Conveyance Appraisal Note Filed as Amended,2022-03-04,[],IL,102nd +Public Act . . . . . . . . . 102-0277,2021-08-06,['became-law'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 28, 2021",2021-05-27,[],IL,102nd +Recalled to Second Reading,2022-04-01,['reading-2'],IL,102nd +To Criminal Law- Clear Compliance,2021-05-05,[],IL,102nd +Assigned to Energy and Public Utilities,2021-05-10,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2021-05-30,[],IL,102nd +Arrived in House,2021-05-27,['introduction'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-27,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Ann Gillespie,2021-05-25,[],IL,102nd +Public Act . . . . . . . . . 102-0286,2021-08-06,['became-law'],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Transportation: Regulation, Roads & Bridges Committee",2021-05-26,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-10-27,['amendment-failure'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Criminal Law,2021-05-29,['referral-committee'],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-04-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2021-05-29,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Mattie Hunter,2021-05-28,['filing'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2021-08-31,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2021-03-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2022-03-29,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - October 27, 2021",2021-10-26,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Referred to Rules Committee,2021-04-27,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 007-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-26,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2021-10-28,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 26, 2021",2021-05-25,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-11,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Energy and Public Utilities; 019-000-000,2021-05-20,[],IL,102nd +Sent to the Governor,2021-05-30,['executive-receipt'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-11,['referral-committee'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +Postponed - Executive,2022-03-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Arrived in House,2022-04-07,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-06-01,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 008-006-000,2022-04-04,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-03-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-11-30,['amendment-failure'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-01-28,[],IL,102nd +Approved for Consideration Assignments,2022-11-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Greg Harris,2021-10-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2021-05-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-03-29,[],IL,102nd +Recalled to Second Reading,2022-02-24,['reading-2'],IL,102nd +"Final Action Deadline Extended-9(b) January 10, 2023",2022-12-30,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Maura Hirschauer,2023-01-05,[],IL,102nd +House Floor Amendment No. 3 Adopted,2022-04-05,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-07-08,[],IL,102nd +Chief Senate Sponsor Sen. Patricia Van Pelt,2021-04-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2022-03-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-14,[],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-01-03,[],IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2023-01-10,[],IL,102nd +House Floor Amendment No. 3 Adopted,2023-01-06,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0992,2022-05-27,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-11-16,[],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-04-28,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-06,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-02-25,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-18,[],IL,102nd +Removed from Consent Calendar Status Rep. Barbara Hernandez,2021-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-1094,2022-06-15,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2023-01-10,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 104-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2022-03-22,[],IL,102nd +Do Pass Insurance; 008-003-000,2021-05-19,['committee-passage'],IL,102nd +Third Reading - Passed; 057-002-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-16,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Human Services Committee; 014-000-000,2022-04-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-06,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Doris Turner,2022-03-22,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2022-04-26,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 070-042-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-22,['amendment-passage'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 012-007-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 012-004-000,2023-01-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. William Davis,2022-01-18,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Antonio Muñoz,2021-05-07,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-04-07,[],IL,102nd +Second Reading,2021-10-19,['reading-2'],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt Licensed Activities; 008-000-000,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Denyse Wang Stoneback,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2022-03-18,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Adopted; Hunter,2022-03-30,['amendment-passage'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-09,['referral-committee'],IL,102nd +"Effective Date July 1, 2022",2022-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-04-26,[],IL,102nd +Senate Floor Amendment No. 4 Adopted; Harmon,2023-01-09,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-03-02,[],IL,102nd +"Effective Date July 1, 2022",2022-05-27,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Rita Mayfield,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-12,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 008-000-000,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Public Utilities Committee; 024-000-000,2022-04-07,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Cities & Villages Committee; 013-000-000,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-05,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-04-05,['amendment-failure'],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-05-27,['amendment-failure'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2022-12-01,['referral-committee'],IL,102nd +3/5 Vote Required,2022-12-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +"Placed on Calendar Order of 3rd Reading December 1, 2022",2022-11-30,[],IL,102nd +"Effective Date January 1, 2022",2021-08-24,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-05-25,[],IL,102nd +Sent to the Governor,2021-04-01,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt State Government; 007-000-000,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-02-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-20,[],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +House Committee Amendment No. 2 Senate Concurs 053-003-000,2021-05-30,[],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2022-03-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-05-28,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2021-05-18,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 115-000-000,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-05-20,[],IL,102nd +Governor Vetoed,2021-08-24,['executive-veto'],IL,102nd +Public Act . . . . . . . . . 102-0261,2021-08-06,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0634,2021-08-27,['became-law'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Burke,2021-05-19,['amendment-introduction'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-26,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Dale Fowler,2021-05-27,['filing'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-03-30,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-03-04,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - April 8, 2022",2022-04-09,[],IL,102nd +Assigned to Human Rights,2021-04-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Kambium Buckner,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. William Davis,2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-31,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +House Concurs,2021-06-16,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-02-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-04-28,[],IL,102nd +Recalled to Second Reading,2021-10-28,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-29,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Ethics & Elections Committee,2021-10-28,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Education,2021-05-18,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-28,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to Judiciary,2021-05-30,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-05-31,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +House Floor Amendment No. 2 Motion Prevailed 071-033-000,2022-03-01,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-05-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-28,[],IL,102nd +"Chief Sponsor Changed to Rep. Lawrence Walsh, Jr.",2021-06-15,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Health; 009-000-000,2021-05-30,[],IL,102nd +Do Pass as Amended Higher Education; 009-004-000,2021-05-12,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-07,[],IL,102nd +Third Reading - Passed; 046-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-06-15,['introduction'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Arrived in House,2021-06-01,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Jones,2021-05-31,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-05-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-07-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2021-06-01,[],IL,102nd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Katie Stuart,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-14,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 31, 2021",2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-05-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-31,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Personnel & Pensions Committee; 005-000-000,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 007-000-000,2021-05-29,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2021-05-29,[],IL,102nd +Senate Committee Amendment No. 4 Assignments Refers to Executive,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Koehler,2021-05-26,['amendment-passage'],IL,102nd +Third Reading - Passed; 053-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-05-29,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2022-03-22,[],IL,102nd +Third Reading - Passed; 051-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0273,2021-08-06,['became-law'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-30,[],IL,102nd +Public Act . . . . . . . . . 102-0761,2022-05-13,['became-law'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 State Debt Impact Note Filed as Amended,2022-01-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-04-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Martin J. Moylan,2021-06-14,[],IL,102nd +Removed Co-Sponsor Rep. Kathleen Willis,2022-04-04,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-04-09,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-10-28,[],IL,102nd +Recalled to Second Reading - Short Debate,2022-03-03,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Jonathan Carroll,2021-05-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 005-000-000,2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-01-05,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Mattson,2023-01-05,['amendment-passage'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Judicial Note Requested as Amended by Rep. Tim Butler,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-27,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2022-03-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2022-07-06,[],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-03-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 104-002-000,2023-01-10,[],IL,102nd +Third Reading - Short Debate - Passed 085-027-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Alternate Co-Sponsor Removed Rep. Daniel Didech,2022-03-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-05,[],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2022-03-24,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2021-03-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-11-29,[],IL,102nd +Assigned to Higher Education,2021-05-11,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Revenue & Finance Committee; 011-004-000,2023-01-10,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Resolutions,2021-10-27,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-11-01,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-03-24,[],IL,102nd +Chief Senate Sponsor Sen. Ann Gillespie,2022-03-07,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2021-04-22,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-03,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 011-005-000,2022-04-06,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2022-03-31,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-03-29,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-08-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-01-08,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2021-05-29,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-23,[],IL,102nd +Public Act . . . . . . . . . 102-0913,2022-05-27,['became-law'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Linda Holmes,2022-12-01,['filing'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Thomas M. Bennett,2022-02-25,['amendment-introduction'],IL,102nd +Chief House Sponsor Rep. Jay Hoffman,2022-03-10,[],IL,102nd +Do Pass as Amended Executive; 015-000-000,2022-03-30,['committee-passage'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-10-26,[],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-04-07,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-18,[],IL,102nd +Assigned to Executive Committee,2022-12-30,['referral-committee'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 115-000-000,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +"Effective Date May 6, 2022",2022-05-06,[],IL,102nd +House Floor Amendment No. 5 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 054-000-000,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-03-16,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-15,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Anna Moeller,2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-29,[],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Third Reading - Passed; 058-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2021-10-22,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-03-10,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0599,2021-08-27,['became-law'],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-05-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-05-28,[],IL,102nd +Passed Both Houses,2022-03-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2022-04-07,[],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-04-05,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2021-04-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Passed Both Houses,2023-01-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-31,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +House Committee Amendment No. 2 Adopted in Revenue & Finance Committee; by Voice Vote,2022-04-01,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0472,2021-08-20,['became-law'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Villa,2021-05-27,['amendment-passage'],IL,102nd +3/5 Vote Required,2022-12-01,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2021-05-29,['amendment-failure'],IL,102nd +State Mandates Fiscal Note Filed,2022-03-25,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +3/5 Vote Required,2022-11-30,[],IL,102nd +"Effective Date May 6, 2022",2022-05-06,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 115-000-000,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2022-03-28,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 089-025-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +"House Floor Amendment No. 4 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2022-04-07,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2022-02-25,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-05-29,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-24,['referral-committee'],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-10-14,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-05-31,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-02-19,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3",2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2021-10-28,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 31, 2021",2021-05-31,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Kelly M. Cassidy,2022-03-04,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Tony McCombie,2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Human Services Committee,2022-04-05,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 008-000-000,2022-04-05,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +"Effective Date January 1, 2024",2022-05-26,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Mary E. Flowers,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 038-019-000,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 118-000-000,2021-05-31,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2021-05-30,['referral-committee'],IL,102nd +3/5 Vote Required,2021-10-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Transportation: Vehicles & Safety Committee; 013-000-000,2022-04-06,[],IL,102nd +Recalled to Second Reading - Short Debate,2022-04-01,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2022-04-05,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - March 30, 2022",2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-22,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +Public Act . . . . . . . . . 102-0622,2021-08-27,['became-law'],IL,102nd +House Floor Amendment No. 3 Rules Refers to Health Care Licenses Committee,2021-05-19,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Health; 010-000-000,2022-04-06,[],IL,102nd +Passed Both Houses,2022-03-23,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 110-000-000,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0275,2021-08-06,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 103-006-004,2021-05-27,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Delia C. Ramirez,2021-05-20,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-05-29,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Assigned to Executive,2021-05-04,['referral-committee'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Melinda Bush,2022-04-04,['filing'],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2022-03-17,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2021-04-29,[],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-03-25,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2021-05-31,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-22,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Motion Filed to Reconsider Vote Rep. Jennifer Gong-Gershowitz,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Scott M. Bennett,2022-04-04,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-02-23,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Jay Hoffman,2022-04-05,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Judicial Note Requested as Amended by Rep. Deanne M. Mazzochi,2021-10-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 017-000-000,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-04-07,[],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Dave Syverson,2021-05-24,['filing'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Justin Slaughter,2021-05-30,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2022-03-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2021-05-29,[],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-10-26,['amendment-introduction'],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2022-04-07,[],IL,102nd +Arrived in House,2022-04-08,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 3 Referred to Assignments,2022-02-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 7, 2022",2022-04-06,[],IL,102nd +House Floor Amendment No. 1 Land Conveyance Appraisal Note Requested as Amended by Rep. David A. Welter,2022-02-23,[],IL,102nd +House Floor Amendment No. 3 Tabled Pursuant to Rule 40,2022-04-05,['amendment-failure'],IL,102nd +House Committee Amendment No. 1 Judicial Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Non-Concur Rep. Jay Hoffman,2021-05-31,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-21,[],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-10-27,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-04,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-10-20,['reading-2'],IL,102nd +Sponsor Removed Sen. Laura Ellman,2021-05-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-03-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2022-03-18,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-05-10,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-16,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-06-08,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2022-03-30,[],IL,102nd +Third Reading - Passed; 050-006-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-04-20,[],IL,102nd +Assigned to Labor & Commerce Committee,2021-05-24,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Villivalam,2021-05-20,['amendment-passage'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Sponsor Removed Sen. Win Stoller,2021-05-21,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-04-27,[],IL,102nd +Public Act . . . . . . . . . 102-0450,2021-08-20,['became-law'],IL,102nd +Passed Both Houses,2021-08-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-27,[],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Elizabeth Hernandez,2021-05-31,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-03-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2023-01-05,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-11,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Second Reading - Short Debate,2021-10-20,['reading-2'],IL,102nd +Assigned to Judiciary - Criminal Committee,2022-02-09,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Pension Note Filed as Amended,2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +House Floor Amendment No. 3 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jehan Gordon-Booth,2021-10-28,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robert Rita,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-03-25,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-09,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-02-22,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Julie A. Morrison,2022-11-29,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-04-05,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-31,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +Third Reading - Passed; 040-018-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +"Effective Date May 5, 2022",2022-05-05,[],IL,102nd +Third Reading - Short Debate - Passed 072-041-000,2021-03-18,"['passage', 'reading-3']",IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-08,['reading-3'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Adopted; Bennett,2022-04-07,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Mike Simmons,2021-04-23,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0970,2022-05-27,['became-law'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +House Committee Amendment No. 2 Adopted in Energy & Environment Committee; by Voice Vote,2022-03-22,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Prescription Drug Affordability & Accessibility Committee; 015-000-000,2022-03-03,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2021-05-11,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Katie Stuart,2022-11-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Third Reading - Passed; 045-009-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Alternate Co-Sponsor Removed Rep. Robyn Gabel,2021-09-09,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Margaret Croke,2022-03-18,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2021-05-28,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2023-01-08,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2022-03-30,[],IL,102nd +Public Act . . . . . . . . . 102-0259,2021-08-06,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Ann M. Williams,2023-01-06,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-05-04,[],IL,102nd +First Reading,2021-05-28,['reading-1'],IL,102nd +Do Pass Licensed Activities; 006-000-000,2022-03-30,['committee-passage'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2021-05-11,['amendment-passage'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Melinda Bush,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0884,2022-05-13,['became-law'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kambium Buckner,2021-09-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Sent to the Governor,2022-04-19,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-15,[],IL,102nd +Arrived in House,2022-04-09,['introduction'],IL,102nd +Do Pass as Amended / Short Debate Energy & Environment Committee; 019-002-000,2022-03-22,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Burke,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0718,2022-05-05,['became-law'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-03-18,['amendment-failure'],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2022-03-31,[],IL,102nd +Arrived in House,2022-04-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-01-06,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-13,[],IL,102nd +"Effective Date January 1, 2023",2021-08-20,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-11-29,['referral-committee'],IL,102nd +"Senate Floor Amendment No. 5 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-01-10,['amendment-introduction'],IL,102nd +Governor Approved,2021-08-24,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-11-30,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-04-22,[],IL,102nd +Assigned to Health,2022-03-16,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-05-14,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-15,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-02-28,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-23,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2022-04-08,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2022-04-01,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-05-05,[],IL,102nd +Public Act . . . . . . . . . 102-0855,2022-05-13,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-07,['amendment-failure'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Senate Committee Amendment No. 3 Assignments Refers to Insurance,2022-02-08,[],IL,102nd +House Floor Amendment No. 1 Pension Note Requested as Amended by Rep. David A. Welter,2022-02-23,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Johnson,2021-10-20,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2022-03-18,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Jennifer Gong-Gershowitz,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-05-19,[],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2021-04-22,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. LaToya Greenwood,2022-04-05,[],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Non-Concur Rep. Jay Hoffman,2021-05-31,[],IL,102nd +Removed Co-Sponsor Rep. Jim Durkin,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-04-04,[],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-04-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Land Conveyance Appraisal Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 3",2022-04-08,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-05-29,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +House Concurs,2022-12-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2022-12-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-03-29,[],IL,102nd +Third Reading - Passed; 049-005-000,2022-11-30,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Robyn Gabel,2021-05-27,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2022-04-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Tony McCombie,2022-03-31,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Michael E. Hastings,2021-06-15,[],IL,102nd +Do Pass / Consent Calendar Elementary & Secondary Education: School Curriculum & Policies Committee; 021-000-000,2021-05-19,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2022-04-08,['amendment-introduction'],IL,102nd +Third Reading - Short Debate - Passed 110-000-001,2022-03-29,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-05-28,[],IL,102nd +House Floor Amendment No. 2 State Debt Impact Note Requested as Amended by Rep. Deanne M. Mazzochi,2021-10-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Natalie A. Manley,2022-03-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lance Yednock,2022-02-25,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Chief House Sponsor Rep. Terra Costa Howard,2022-02-28,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Redistricting,2021-05-28,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) May 28, 2021",2021-05-24,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sandra Hamilton,2022-04-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2021-05-27,[],IL,102nd +Governor Approved,2021-08-19,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-04-14,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2021-10-27,['amendment-introduction'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Re-assigned to Human Services Committee,2022-03-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-02-19,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Executive Committee,2021-10-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-31,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 015-000-000,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-05-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-21,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 009-005-000,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-10-26,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 108-006-001,2021-05-27,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Seth Lewis,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-04,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2022-04-04,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0342,2021-08-13,['became-law'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-05-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2021-04-30,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Rachelle Crowe,2021-05-31,['filing'],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Public Act . . . . . . . . . 102-0040,2021-06-25,['became-law'],IL,102nd +Third Reading - Passed; 041-018-000,2021-10-27,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0738,2022-05-06,['became-law'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-02-23,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-05,[],IL,102nd +Public Act . . . . . . . . . 102-0902,2022-05-26,['became-law'],IL,102nd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Emil Jones, III",2022-04-07,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 007-000-000,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 111-000-000,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2022-03-29,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Rachelle Crowe,2022-04-07,['amendment-introduction'],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-29,[],IL,102nd +House Floor Amendment No. 2 3/5 Vote Required,2021-06-01,[],IL,102nd +Added as Chief Co-Sponsor Sen. John Connor,2022-04-07,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-01,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-24,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-30,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2022-03-22,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Third Reading - Passed; 058-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to State Government,2022-04-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Antonio Muñoz,2022-04-08,['amendment-introduction'],IL,102nd +Sent to the Governor,2022-04-21,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Brady,2021-05-19,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 111-000-000,2022-04-09,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0946,2022-05-27,['became-law'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2021-05-31,['amendment-failure'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Assigned to Health,2021-05-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-25,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-05-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Villivalam,2021-05-20,['amendment-passage'],IL,102nd +First Reading,2022-03-28,['reading-1'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 105-009-001,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 010-005-000,2022-03-30,[],IL,102nd +House Floor Amendment No. 4 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-10-20,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-21,[],IL,102nd +Sent to the Governor,2021-09-15,['executive-receipt'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Anthony DeLuca,2021-05-31,[],IL,102nd +Sponsor Removed Sen. Craig Wilcox,2021-05-21,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Bennett,2022-04-07,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Resolution Adopted,2021-05-21,['passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-30,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 041-018-000,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-02-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2022-04-06,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-04-22,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 112-000-000,2022-04-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-06,[],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Public Act . . . . . . . . . 102-0935,2022-05-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2022-03-29,[],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-01-03,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Public Utilities Committee; 024-000-000,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-04-07,[],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2022-04-05,['amendment-failure'],IL,102nd +Do Pass as Amended Healthcare Access and Availability; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +Do Pass Executive; 009-004-000,2021-05-13,['committee-passage'],IL,102nd +Arrive in Senate,2022-04-07,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-02-23,[],IL,102nd +Governor Approved,2022-04-27,['executive-signature'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-12,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-23,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2023-01-10,[],IL,102nd +Third Reading - Short Debate - Passed 063-035-000,2023-01-06,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-22,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-03-14,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-04,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-01-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-04-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Cities & Villages Committee; 013-000-000,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Meg Loughran Cappel,2022-03-28,['amendment-introduction'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-05-29,['amendment-failure'],IL,102nd +3/5 Vote Required,2022-11-16,[],IL,102nd +Assigned to Executive Committee,2022-01-25,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-08,[],IL,102nd +Public Act . . . . . . . . . 102-0426,2021-08-20,['became-law'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Third Reading - Passed; 052-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 5 Adopted; Harmon,2023-01-09,['amendment-passage'],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +"Senate Committee Amendment No. 2 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading October 20, 2021",2021-10-19,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Assigned to Transportation: Vehicles & Safety Committee,2022-03-07,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0910,2022-05-27,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-04-07,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-25,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Chapin Rose,2022-11-30,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-11,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-06-01,[],IL,102nd +Added Chief Co-Sponsor Rep. Robert Rita,2022-02-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2022-03-09,[],IL,102nd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-14,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Executive Committee; 008-006-000,2022-04-04,['committee-passage-favorable'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading November 30, 2022",2022-11-29,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-23,[],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2021-05-12,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-12,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-31,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-26,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2021-05-21,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 037-021-000,2021-06-01,[],IL,102nd +Public Act . . . . . . . . . 102-0550,2021-08-20,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-10-28,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-31,['amendment-passage'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Arrived in House,2023-01-09,['introduction'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-27,[],IL,102nd +Recalled to Second Reading,2021-05-31,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-05-11,[],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Governor Approved,2021-06-04,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0264,2021-08-06,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-05-20,[],IL,102nd +Public Act . . . . . . . . . 102-0637,2021-08-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2021-05-26,[],IL,102nd +Senate Committee Amendment No. 4 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2021-05-13,['amendment-passage'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Butler,2021-05-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-27,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Assigned to Transportation,2022-03-16,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-03-26,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-04-14,[],IL,102nd +Arrived in House,2021-10-27,['introduction'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Christopher Belt,2021-05-30,['filing'],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-06,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-1084,2022-06-10,['became-law'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-04-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-27,[],IL,102nd +House Floor Amendment No. 3 3/5 Vote Required,2021-06-01,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-29,[],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Villa,2022-04-05,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Criminal Law; 006-003-000,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0605,2021-08-27,['became-law'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Feigenholtz,2022-04-01,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0119,2021-07-23,['became-law'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-23,[],IL,102nd +3/5 Vote Required,2021-10-27,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-10-28,['reading-2'],IL,102nd +Arrived in House,2022-12-01,['introduction'],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-05-25,[],IL,102nd +Governor Approved,2021-07-26,['executive-signature'],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +"Effective Date August 16, 2021",2021-08-16,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2022-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 31, 2021",2021-05-31,[],IL,102nd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. Marcus C. Evans, Jr.",2022-04-08,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-28,[],IL,102nd +Added as Chief Co-Sponsor Sen. Robert Peters,2021-06-01,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2021-05-19,['amendment-introduction'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2021-10-25,['amendment-introduction'],IL,102nd +Legislation Considered in Special Session No. 1,2021-08-31,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-03-19,['filing'],IL,102nd +Public Act . . . . . . . . . 102-1063,2022-06-10,['became-law'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2021-10-27,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Ann Gillespie,2021-05-28,['filing'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Michael J. Zalewski,2021-04-27,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-27,[],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2021-05-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2021-05-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-07-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-10-26,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-03,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-04-27,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Holmes,2022-02-24,['amendment-passage'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-04-08,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-03,[],IL,102nd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 017-000-000,2022-04-01,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-03-28,[],IL,102nd +Public Act . . . . . . . . . 102-0722,2022-05-06,['became-law'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-04-06,[],IL,102nd +Third Reading - Passed; 046-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-03-24,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-04-05,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-03-29,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 068-041-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-0828,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-20,[],IL,102nd +Fiscal Note Filed,2021-03-16,[],IL,102nd +Public Act . . . . . . . . . 102-0958,2022-05-27,['became-law'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Bill Cunningham,2021-05-28,['filing'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-05-21,[],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2022-03-07,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-25,[],IL,102nd +Public Act . . . . . . . . . 102-1020,2022-05-27,['became-law'],IL,102nd +Removed Co-Sponsor Rep. Mary E. Flowers,2021-04-14,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2022-04-08,[],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-04-07,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Executive,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Education,2021-10-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Licensed Activities,2022-04-04,['referral-committee'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2021-10-28,[],IL,102nd +Sent to the Governor,2022-04-26,['executive-receipt'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +"Senate Committee Amendment No. 2 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-04-05,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +"Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-04-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Public Act . . . . . . . . . 102-1029,2022-05-27,['became-law'],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-04-23,[],IL,102nd +3/5 Vote Required,2021-10-29,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-05-05,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2022-12-01,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-03-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2021-05-28,[],IL,102nd +Do Pass Healthcare Access and Availability; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael J. Zalewski,2023-01-03,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-03-23,[],IL,102nd +Sent to the Governor,2023-01-20,['executive-receipt'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-03-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Removed Co-Sponsor Rep. Maura Hirschauer,2021-04-21,[],IL,102nd +Third Reading - Passed; 033-017-000,2023-01-08,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-14,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Will Guzzardi,2021-10-22,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-01-10,[],IL,102nd +Public Act . . . . . . . . . 102-0971,2022-05-27,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-05,[],IL,102nd +Arrived in House,2022-04-09,['introduction'],IL,102nd +House Floor Amendment No. 3 Land Conveyance Appraisal Note Requested as Amended by Rep. Tim Butler,2022-03-03,[],IL,102nd +"Removed Co-Sponsor Rep. Maurice A. West, II",2021-05-12,[],IL,102nd +Placed on Calendar - Consideration Postponed,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2021-10-27,"['passage', 'reading-3']",IL,102nd +Sponsor Removed Sen. Rachelle Crowe,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +Approved for Consideration Assignments,2022-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-03-31,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-06-14,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Ellman,2022-03-24,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-01-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-07-08,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Third Reading - Passed; 054-000-000,2022-12-01,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0576,2021-08-24,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-05-19,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-12-01,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2022-05-25,[],IL,102nd +Governor Approved,2021-05-28,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-04-05,[],IL,102nd +Public Act . . . . . . . . . 102-0254,2021-08-06,['became-law'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2021-05-26,[],IL,102nd +Public Act . . . . . . . . . 102-0281,2021-08-06,['became-law'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-14,[],IL,102nd +Third Reading - Passed; 042-015-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0313,2021-08-06,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-26,[],IL,102nd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Debbie Meyers-Martin,2021-05-30,[],IL,102nd +Recalled to Second Reading,2021-05-28,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-05-05,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Assignments Referred to Judiciary,2021-05-30,['referral-committee'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 016-000-000,2021-05-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2021-04-28,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-06-01,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-28,['amendment-failure'],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2021-05-18,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Mattie Hunter,2022-04-09,['filing'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-31,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Sims,2021-10-28,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +Recalled to Second Reading,2021-10-28,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0814,2022-05-13,['became-law'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to State Government,2021-05-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-02-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2022-03-30,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-23,[],IL,102nd +House Floor Amendment No. 3 Motion Prevailed 071-033-000,2022-03-01,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-04-22,['amendment-failure'],IL,102nd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lawrence Walsh, Jr.",2021-06-15,[],IL,102nd +Passed Both Houses,2021-06-16,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 3/5 Vote Required,2021-06-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2022-03-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-03-22,[],IL,102nd +House Floor Amendment No. 2 Balanced Budget Note Filed as Amended,2022-03-04,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 111-004-000,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-05-28,[],IL,102nd +Third Reading - Passed; 057-000-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-23,['amendment-passage'],IL,102nd +Arrived in House,2022-04-01,['introduction'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-26,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-19,['referral-committee'],IL,102nd +Do Pass Education; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Fiscal Note Requested by Rep. Avery Bourne,2021-05-14,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-12,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-31,[],IL,102nd +"Placed on Calendar Total Veto August 31, 2021",2021-08-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2021-05-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-31,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2021-05-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-04-29,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Ethics & Elections Committee; 011-005-000,2021-10-28,['committee-passage-favorable'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-04-07,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-06-15,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Health,2021-05-29,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to State Government,2021-05-25,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 014-000-000,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-07-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to State Government Administration Committee,2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-04-01,[],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas Morrison,2021-05-26,[],IL,102nd +Sponsor Removed Sen. Christopher Belt,2023-01-10,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-03-24,[],IL,102nd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2021-10-27,[],IL,102nd +Passed Both Houses,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-03-15,[],IL,102nd +Approved for Consideration Rules Committee; 003-001-000,2023-01-10,[],IL,102nd +House Committee Amendment No. 3 Tabled Pursuant to Rule 40,2022-03-24,['amendment-failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-01-05,['amendment-introduction'],IL,102nd +Postponed - State Government,2022-11-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2021-04-22,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Rules Refers to Energy & Environment Committee,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-11-02,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-10-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-05-14,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Do Pass / Short Debate Revenue & Finance Committee; 011-007-000,2022-03-24,['committee-passage'],IL,102nd +House Floor Amendment No. 2 State Debt Impact Note Filed as Amended,2021-04-22,[],IL,102nd +Assigned to Executive Committee,2022-02-01,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0803,2022-05-13,['became-law'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-09,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Balanced Budget Note Requested as Amended by Rep. Rita Mayfield,2022-03-15,[],IL,102nd +House Floor Amendment No. 3 Adopted,2023-01-10,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-12-20,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-05,['referral-committee'],IL,102nd +Sent to the Governor,2023-02-07,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-15,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2022-05-25,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-04-05,[],IL,102nd +"Effective Date July 1, 2021",2021-05-28,[],IL,102nd +Passed Both Houses,2022-12-01,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-12-01,['amendment-failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 071-043-000,2021-10-29,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-25,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0458,2021-08-20,['became-law'],IL,102nd +Arrived in House,2022-04-08,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-02-25,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 015-000-000,2021-05-29,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Linda Holmes,2022-12-01,['filing'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-03,[],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2023-01-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 30, 2021",2021-04-23,['reading-3'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-05-13,[],IL,102nd +Remove Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-01,[],IL,102nd +Approved for Consideration Assignments,2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Referred to Executive Committee,2023-01-04,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-04-08,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Christopher Belt,2021-10-26,['amendment-introduction'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Governor Approved,2023-01-23,['executive-signature'],IL,102nd +Arrived in House,2023-01-09,['introduction'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-04-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2022-03-31,[],IL,102nd +Do Pass / Short Debate Insurance Committee; 014-000-000,2022-03-15,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-0938,2022-05-27,['became-law'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Third Reading - Passed; 053-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Licensed Activities; 006-000-000,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-20,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-29,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Antonio Muñoz,2022-03-31,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2021-10-25,[],IL,102nd +House Committee Amendment No. 1 Fiscal Note Filed as Amended,2021-03-16,[],IL,102nd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. Jaime M. Andrade, Jr.",2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 112-000-000,2022-04-07,[],IL,102nd +Third Reading - Passed; 057-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-29,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Carol Ammons,2022-03-24,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2021-05-28,['amendment-introduction'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 110-000-002,2021-04-22,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 063-043-001,2021-05-27,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +Motion Filed to Reconsider Vote Rep. Jennifer Gong-Gershowitz,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 068-043-000,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Floor Amendment No. 4 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2022-03-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2021-10-28,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2022-03-16,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2021-05-26,[],IL,102nd +Public Act . . . . . . . . . 102-0921,2022-05-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-07-08,[],IL,102nd +Third Reading - Passed; 054-001-000,2023-01-05,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Martin J. Moylan,2021-06-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2021-10-19,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-04-04,[],IL,102nd +House Floor Amendment No. 3 Pension Note Requested as Amended by Rep. Tim Butler,2022-03-03,[],IL,102nd +House Floor Amendment No. 1 State Debt Impact Note Requested as Amended by Rep. David A. Welter,2022-02-23,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3",2022-04-09,[],IL,102nd +Third Reading - Consideration Postponed,2021-10-28,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-04,[],IL,102nd +House Floor Amendment No. 2 Pension Note Filed as Amended,2022-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-07,[],IL,102nd +Arrived in House,2021-10-27,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-07,[],IL,102nd +Removed Co-Sponsor Rep. Charles Meier,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 071-032-002,2022-03-31,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading,2022-03-31,['reading-2'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-11,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-03-10,[],IL,102nd +Do Pass Human Rights; 009-000-000,2021-05-06,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-20,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2022-03-22,[],IL,102nd +Chief Sponsor Changed to Rep. Lance Yednock,2021-06-15,[],IL,102nd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2021-04-22,['amendment-failure'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Total Veto Stands - No Positive Action Taken,2021-09-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2022-03-23,[],IL,102nd +House Floor Amendment No. 2 3/5 Vote Required,2021-06-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2021-05-28,['amendment-failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2021-05-12,[],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted State Government Administration Committee; 008-000-000,2022-04-07,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Do Pass Transportation; 017-000-000,2022-03-23,['committee-passage'],IL,102nd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt Judiciary; 005-002-000,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-001-000,2021-05-24,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2021-05-20,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Pacione-Zayas,2021-05-28,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-06-15,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-01,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-10-28,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2021-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0057,2021-07-09,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-08,['amendment-failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-04-06,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2022-03-24,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +"Chief Sponsor Changed to Rep. Lawrence Walsh, Jr.",2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-14,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to Executive,2021-05-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-06-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-20,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2021-05-26,[],IL,102nd +Chief House Sponsor Rep. Joyce Mason,2022-02-28,[],IL,102nd +House Floor Amendment No. 1 Fiscal Note Filed as Amended,2021-05-18,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Health; 011-000-000,2021-05-29,[],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0041,2021-06-25,['became-law'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Lightford,2021-10-28,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 116-000-000,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-07-07,[],IL,102nd +Third Reading - Passed; 041-015-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-07-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-04,[],IL,102nd +Public Act . . . . . . . . . 102-0616,2021-08-27,['became-law'],IL,102nd +House Floor Amendment No. 1 Senate Concurs 058-000-000,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-28,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to State Government,2021-05-25,['referral-committee'],IL,102nd +Do Pass as Amended Public Safety; 005-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Jackie Haas,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Katie Stuart,2021-05-26,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to State Government,2021-05-29,['referral-committee'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Redistricting; 008-004-000,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-05-18,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Omar Aquino,2021-04-28,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Balanced Budget Note Filed as Amended,2022-03-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0127,2021-07-23,['became-law'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-02-09,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2021-05-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +House Committee Amendment No. 1 Fiscal Note Filed as Amended,2021-05-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +Chief Senate Sponsor Sen. Thomas Cullerton,2021-04-22,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. William Davis,2021-05-27,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 28, 2021",2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steven M. Landek,2021-05-11,[],IL,102nd +Arrived in House,2021-05-31,['introduction'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Ann M. Williams,2022-02-24,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2021-05-31,[],IL,102nd +Senate Floor Amendment No. 4 Adopted; Villivalam,2021-05-20,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-16,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Anthony DeLuca,2021-05-31,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-25,[],IL,102nd +Public Act . . . . . . . . . 102-0511,2021-08-20,['became-law'],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +House Floor Amendment No. 3 Pension Note Filed as Amended,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-20,[],IL,102nd +Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-03-31,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. LaToya Greenwood,2021-10-28,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Mental Health & Addiction Committee; 014-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Governor Approved,2021-10-08,['executive-signature'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Karina Villa,2021-05-28,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 3/5 Vote Required,2022-12-01,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-29,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 4 Tabled Pursuant to Rule 5-4(a),2022-11-30,['amendment-failure'],IL,102nd +Passed Both Houses,2022-12-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-04-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-09-09,[],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-02-28,[],IL,102nd +Public Act . . . . . . . . . 102-0490,2021-08-20,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-22,[],IL,102nd +Arrived in House,2022-04-07,['introduction'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2023-01-06,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-03-25,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Third Reading - Short Debate - Passed 069-039-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-03-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2022-05-19,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dan Caulkins,2022-03-10,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-07,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-001,2022-04-01,"['passage', 'reading-3']",IL,102nd +Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 009-006-000,2021-05-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steven M. Landek,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-04-05,[],IL,102nd +Governor Approved,2022-06-02,['executive-signature'],IL,102nd +Removed Co-Sponsor Rep. Camille Y. Lilly,2021-04-21,[],IL,102nd +Third Reading - Short Debate - Passed 069-043-001,2021-05-20,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 5 Referred to Assignments,2023-01-10,['referral-committee'],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-04-05,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Do Pass as Amended / Consent Calendar Judiciary - Criminal Committee; 018-000-000,2021-05-11,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-1018,2022-05-27,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-03-09,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-03-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2021-05-27,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-04-22,[],IL,102nd +Arrived in House,2022-04-07,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2022-11-30,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +"Effective Date August 24, 2021",2021-08-24,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2022-04-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-04-04,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-04-05,[],IL,102nd +House Committee Amendment No. 1 Pension Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. LaToya Greenwood,2022-04-05,[],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0763,2022-05-13,['became-law'],IL,102nd +Assigned to Criminal Law,2022-03-16,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-21,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-10-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-20,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-06,['amendment-passage'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-04-21,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. Jonathan Carroll,2022-04-08,[],IL,102nd +House Concurs,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mark Batinick,2022-02-25,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 056-000-000,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2022-03-29,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Health,2021-05-25,['referral-committee'],IL,102nd +Arrived in House,2021-10-27,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-05-19,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Natalie A. Manley,2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 039-017-000,2022-04-06,[],IL,102nd +"House Floor Amendment No. 5 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2022-04-07,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Health Care Availability & Accessibility Committee,2021-05-30,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 069-044-000,2022-04-07,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-05-30,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-29,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-05,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 049-006-000,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0077,2021-07-09,['became-law'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 007-000-000,2022-04-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-10-26,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Deanne M. Mazzochi,2021-10-27,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2022-04-05,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2022-03-21,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 038-019-000,2021-06-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-04,[],IL,102nd +Senate Concurs,2022-04-06,[],IL,102nd +Arrived in House,2022-04-05,['introduction'],IL,102nd +Third Reading - Passed; 057-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-26,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-02-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-04-07,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +House Committee Amendment No. 3 Filed with Clerk by Rep. Stephanie A. Kifowit,2022-04-05,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Senate Concurs 041-018-000,2021-05-28,[],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-27,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Patrick J. Joyce,2022-04-04,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 015-000-000,2021-10-28,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 058-001-000,2021-05-30,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Passed Both Houses,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2021-05-27,[],IL,102nd +"Effective Date August 19, 2021",2021-08-19,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0659,2021-08-27,['became-law'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-02-23,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Anne Stava-Murray,2022-03-22,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-24,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Tony McCombie,2022-03-31,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-08,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Melinda Bush,2022-04-04,['filing'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 24, 2021",2021-05-21,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2021-05-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-03-29,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-04-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 009-005-000,2023-01-05,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-04-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2021-10-26,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-04,[],IL,102nd +Third Reading - Short Debate - Passed 089-004-001,2022-04-06,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-24,[],IL,102nd +Removed Co-Sponsor Rep. Delia C. Ramirez,2021-03-24,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-07-08,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-01-09,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +"Alternate Chief Sponsor Changed to Sen. Napoleon Harris, III",2021-05-06,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +House Floor Amendment No. 3 3/5 Vote Required,2021-06-01,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +House Floor Amendment No. 5 Adopted,2021-05-31,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2021-05-12,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-04-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-12,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 056-000-000,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Jim Durkin,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-02,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michael Kelly,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2022-03-22,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-11,[],IL,102nd +Do Pass as Amended Insurance; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-0915,2022-05-27,['became-law'],IL,102nd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Melinda Bush,2022-02-24,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 113-000-000,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Licensed Activities,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-03-30,['amendment-failure'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Keith R. Wheeler,2022-02-17,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2022-04-06,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 3,2021-05-29,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 3,2023-01-08,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Michael J. Zalewski,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-01-03,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-06,['amendment-failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-17,[],IL,102nd +Placed on Calendar Order of First Reading,2022-04-07,['reading-1'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Third Reading - Passed; 048-002-000,2022-11-16,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0112,2021-07-23,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-01-10,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Thomas Cullerton,2021-10-19,['amendment-introduction'],IL,102nd +Removed from Short Debate Status,2021-04-22,[],IL,102nd +"Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-22,[],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +"Effective Date April 27, 2022",2022-04-27,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 109-002-000,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 112-000-000,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-04-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2022-04-07,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Human Rights,2021-05-04,[],IL,102nd +Recalled to Second Reading,2023-01-06,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-03-22,[],IL,102nd +Chief Sponsor Changed to Rep. Eva-Dina Delgado,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-02-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-04-26,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,[],IL,102nd +House Committee Amendment No. 2 Senate Concurs 039-009-000,2022-04-08,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Public Act . . . . . . . . . 102-0840,2022-05-13,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2022-11-29,['amendment-introduction'],IL,102nd +Do Pass Insurance; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Alternate Co-Sponsor Removed Rep. LaToya Greenwood,2022-03-11,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-02-03,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 097-010-002,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-26,[],IL,102nd +Arrived in House,2022-11-30,['introduction'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-08,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +"Effective Date June 4, 2021",2021-06-04,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Koehler,2021-05-31,['amendment-passage'],IL,102nd +Sent to the Governor,2022-04-26,['executive-receipt'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-10-27,['filing'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-03,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2021-10-27,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 058-000-000,2021-10-27,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2022-04-08,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2021-05-25,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Rachelle Crowe,2021-05-31,['filing'],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Request as Amended is Inapplicable,2022-03-01,[],IL,102nd +Do Pass as Amended Executive; 009-005-000,2021-05-27,['committee-passage'],IL,102nd +"Senate Floor Amendment No. 2 Motion Filed Concur Rep. Marcus C. Evans, Jr.",2022-04-08,[],IL,102nd +Public Act . . . . . . . . . 102-1088,2022-06-10,['became-law'],IL,102nd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. Curtis J. Tarver, II",2021-05-29,[],IL,102nd +Public Act . . . . . . . . . 102-0078,2021-07-09,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0184,2021-07-30,['became-law'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. LaToya Greenwood,2021-05-28,['amendment-introduction'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-0398,2021-08-16,['became-law'],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 015-001-000,2021-05-13,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Criminal Law; 006-003-000,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Mattie Hunter,2021-05-28,['filing'],IL,102nd +House Floor Amendment No. 3 Senate Concurs 059-000-000,2021-06-01,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - August 31, 2021",2021-08-31,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2021-05-14,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-04-14,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-26,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-06,['committee-passage-favorable'],IL,102nd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2021-04-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Elizabeth Hernandez,2022-01-05,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-26,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Patrick Windhorst,2021-05-27,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-06-01,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 079-034-000,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 3,2022-12-01,[],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-10-28,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. LaToya Greenwood,2021-05-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kambium Buckner,2021-04-28,[],IL,102nd +"Effective Date July 26, 2021",2021-07-27,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-10-25,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-27,[],IL,102nd +Third Reading - Passed; 054-003-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-19,['referral-committee'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-14,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-31,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 056-002-000,2021-06-01,[],IL,102nd +Chief Sponsor Changed to Rep. Jay Hoffman,2022-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-04-26,[],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0011,2021-06-04,['became-law'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-03-19,['filing'],IL,102nd +Chief Sponsor Changed to Rep. Justin Slaughter,2021-10-27,[],IL,102nd +Public Act . . . . . . . . . 102-0604,2021-08-27,['became-law'],IL,102nd +Senate Concurs,2021-06-01,[],IL,102nd +Public Act . . . . . . . . . 102-0220,2021-07-30,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-23,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-26,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-05-20,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-10-26,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2021-05-26,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-12,[],IL,102nd +Third Reading - Passed; 058-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0067,2021-07-09,['became-law'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2021-10-27,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-30,[],IL,102nd +"Effective Date January 1, 2022",2021-07-12,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-08-31,['filing'],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 017-000-000,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Arrived in House,2021-10-27,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-01,['amendment-failure'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 038-018-000,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-14,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to State Government,2021-05-30,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0161,2021-07-27,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-10-28,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-11,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-31,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +House Floor Amendment No. 3 State Mandates Fiscal Note Request as Amended is Inapplicable,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2022-04-06,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 115-003-000,2021-05-31,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Third Reading - Passed; 037-015-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-04-16,['reading-3'],IL,102nd +Public Act . . . . . . . . . 102-0642,2021-08-27,['became-law'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-23,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0934,2022-05-27,['became-law'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-01-03,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 3 - May 30, 2021",2021-05-29,[],IL,102nd +Governor Approved,2022-04-27,['executive-signature'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Sam Yingling,2022-04-07,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Gillespie,2023-01-06,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. C.D. Davidsmeyer,2022-02-17,[],IL,102nd +Recalled to Second Reading,2022-04-09,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 117-000-000,2021-05-31,[],IL,102nd +Third Reading - Passed; 034-020-000,2023-01-09,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 013-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 5 Referred to Assignments,2022-02-24,['referral-committee'],IL,102nd +Arrived in House,2022-11-16,['introduction'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2021-05-11,[],IL,102nd +Added Chief Co-Sponsor Rep. Sandra Hamilton,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-04-05,[],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +Arrived in House,2022-03-30,['introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2021-05-05,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 115-000-000,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-20,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 3 - January 8, 2023",2023-01-08,[],IL,102nd +Assigned to Insurance,2022-04-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-03-02,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-04-12,[],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-02-25,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 4,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 016-000-000,2022-11-30,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 112-000-000,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0710,2022-04-27,['became-law'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - March 30, 2022",2022-03-29,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michael J. Zalewski,2022-04-08,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-29,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 113-000-000,2022-04-07,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0867,2022-05-13,['became-law'],IL,102nd +Senate Floor Amendment No. 1 House Concurs 072-042-000,2022-04-09,[],IL,102nd +Third Reading - Passed; 058-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Sponsor Removed Sen. Jacqueline Y. Collins,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Transportation,2022-03-28,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-04,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-01-05,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-02-24,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-07-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-14,[],IL,102nd +House Committee Amendment No. 1 State Mandates Fiscal Note Filed as Amended,2021-03-25,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Justin Slaughter,2022-04-05,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Jennifer Gong-Gershowitz,2022-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2021-10-26,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-04,[],IL,102nd +Public Act . . . . . . . . . 102-0006,2021-05-28,['became-law'],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-23,[],IL,102nd +Removed from Short Debate Status,2021-05-31,[],IL,102nd +Assigned to Criminal Law,2021-05-10,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Elizabeth Hernandez,2023-01-09,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2021-10-28,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2021-04-27,[],IL,102nd +Third Reading - Short Debate - Passed 110-003-000,2021-10-28,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Senate Concurs 037-021-000,2021-06-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-01-10,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2021-04-22,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-17,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-10-19,[],IL,102nd +Waive Posting Notice,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-11-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2022-03-14,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-01-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2022-03-14,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. John C. D'Amico,2021-05-26,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3",2022-11-30,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-14,[],IL,102nd +Chief Sponsor Changed to Rep. Lance Yednock,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-06-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Human Services Committee,2021-05-30,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-04-08,['amendment-failure'],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-06-01,[],IL,102nd +House Floor Amendment No. 2 Housing Affordability Impact Note Filed as Amended,2022-03-04,[],IL,102nd +Senate Floor Amendment No. 4 Adopted; Lightford,2021-10-28,['amendment-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-18,[],IL,102nd +Placed on Calendar Agreed Resolutions,2021-02-10,[],IL,102nd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2021-05-13,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lance Yednock,2021-06-15,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2021-05-20,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-04-14,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 006-003-000,2021-05-30,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2022-03-30,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 036-017-000,2021-06-01,[],IL,102nd +Arrived in House,2021-05-31,['introduction'],IL,102nd +Third Reading - Passed; 055-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-04-01,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Higher Education,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2021-05-26,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Anne Stava-Murray,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0307,2021-08-06,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-04-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-05-31,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-20,[],IL,102nd +Assigned to Judiciary,2021-05-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Public Act . . . . . . . . . 102-0316,2021-08-06,['became-law'],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +House Floor Amendment No. 4 Motion To Concur Recommended Do Adopt Judiciary; 005-002-000,2021-05-30,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Lindsey LaPointe,2021-05-29,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Second Reading - Standard Debate,2022-03-22,['reading-2'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Fred Crespo,2022-03-23,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +"Senate Floor Amendment No. 2 Motion Filed Concur Rep. Lawrence Walsh, Jr.",2021-06-15,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 039-016-000,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 116-000-000,2021-05-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-28,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2021-05-19,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-10-28,[],IL,102nd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2021-05-29,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Katie Stuart,2022-04-04,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Justin Slaughter,2021-05-31,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-18,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 015-000-000,2021-05-30,[],IL,102nd +Assigned to Licensed Activities,2021-05-29,['referral-committee'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Darren Bailey,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-03-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-07-21,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-26,['amendment-failure'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. John F. Curran,2021-05-20,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2021-05-05,[],IL,102nd +Senate Committee Amendment No. 2 House Concurs 073-044-000,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-08,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-25,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-08,[],IL,102nd +Second Reading - Short Debate,2022-04-01,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-04-05,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-05-05,[],IL,102nd +Remove Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Higher Education,2021-05-29,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Robyn Gabel,2023-01-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-31,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Recommend Do Adopt Executive; 015-000-000,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-10-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 112-000-000,2022-04-07,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +House Concurs,2021-10-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Brian W. Stewart,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 056-000-000,2022-04-08,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Camille Y. Lilly,2022-03-24,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2023-01-05,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas Morrison,2021-05-21,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-15,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2021-10-28,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Licensed Activities; 006-000-000,2022-04-05,[],IL,102nd +House Floor Amendment No. 4 Tabled Pursuant to Rule 40,2021-05-27,['amendment-failure'],IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Health; 015-000-000,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-31,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-26,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 2 Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2023-01-10,[],IL,102nd +"Effective Date January 23, 2023",2023-01-23,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2022-12-01,['referral-committee'],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2022-04-06,[],IL,102nd +Recalled to Second Reading,2022-04-07,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0829,2022-05-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-01,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Housing Affordability Impact Note Filed,2021-03-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-26,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-03,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-03-29,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-10,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2022-04-06,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 009-006-000,2021-10-26,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-10-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-01-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2022-03-10,[],IL,102nd +Assigned to Revenue,2022-03-16,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2022-02-01,[],IL,102nd +"Effective Date February 10, 2023",2023-02-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-03-15,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-01-05,[],IL,102nd +House Committee Amendment No. 2 Correctional Note Requested as Amended by Rep. Rita Mayfield,2022-03-15,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2022-04-09,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Governor Approved,2022-05-26,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-04-05,[],IL,102nd +Sent to the Governor,2022-12-20,['executive-receipt'],IL,102nd +Arrived in House,2022-12-01,['introduction'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-10-27,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Criminal Law,2022-03-24,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-06,['reading-3'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-07-08,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-11,[],IL,102nd +Chief Sponsor Changed to Rep. Greg Harris,2022-04-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. David A. Welter,2022-02-23,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-01-05,['amendment-failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-01-05,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Harris,2022-03-31,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-04-04,[],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Michael J. Zalewski,2022-04-07,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2022-03-03,['amendment-failure'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Elizabeth Hernandez,2022-01-05,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-04-07,[],IL,102nd +House Floor Amendment No. 3 Racial Impact Note Requested as Amended by Rep. Tim Butler,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-06-14,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Antonio Muñoz,2022-04-04,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-23,[],IL,102nd +Public Act . . . . . . . . . 102-0405,2021-08-19,['became-law'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-19,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 114-000-000,2021-06-01,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-04-05,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-27,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura M. Murphy,2021-05-25,['filing'],IL,102nd +Senate Concurs,2022-04-06,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 24, 2021",2021-05-21,[],IL,102nd +Public Act . . . . . . . . . 102-0957,2022-05-27,['became-law'],IL,102nd +Chief Senate Sponsor Sen. Mike Simmons,2022-03-07,[],IL,102nd +Postponed - Energy and Public Utilities,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-02-23,[],IL,102nd +House Floor Amendment No. 3 Balanced Budget Note Requested as Amended by Rep. Robyn Gabel,2021-10-27,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2021-05-28,[],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. C.D. Davidsmeyer,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-02-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +Senate Concurs,2021-05-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2022-02-25,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-21,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 015-000-000,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 054-000-000,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Natalie A. Manley,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-04-05,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-13,[],IL,102nd +Senate Concurs,2021-06-01,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 051-003-000,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-05-26,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Rachelle Crowe,2021-05-31,['filing'],IL,102nd +Third Reading - Consent Calendar - Passed 113-003-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-01,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-03-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-25,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Maura Hirschauer,2022-03-22,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-30,['amendment-passage'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Third Reading - Short Debate - Passed 107-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Health,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura M. Murphy,2021-10-26,[],IL,102nd +"Alternate Chief Sponsor Changed to Rep. Jaime M. Andrade, Jr.",2021-10-27,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Kelly M. Cassidy,2022-03-30,['amendment-introduction'],IL,102nd +House Committee Amendment No. 3 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-11,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-05-29,[],IL,102nd +House Floor Amendment No. 5 Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Availability & Accessibility Committee; 012-000-000,2021-05-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2022-03-29,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lindsey LaPointe,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2022-04-07,[],IL,102nd +"Effective Date May 6, 2022",2022-05-06,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2021-10-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Health; 014-000-000,2021-05-25,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-04-07,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Lindsey LaPointe,2022-04-05,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Revenue & Finance Committee,2023-01-06,['referral-committee'],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2021-05-27,[],IL,102nd +"Effective Date June 2, 2023",2022-06-02,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-31,[],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-03-25,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Executive Committee,2022-11-30,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2021-09-09,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +Chief Senate Sponsor Sen. Celina Villanueva,2021-04-27,[],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 3",2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2022-03-28,[],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2021-05-31,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-07,[],IL,102nd +Do Pass Health; 009-005-000,2022-03-23,['committee-passage'],IL,102nd +Chief Sponsor Changed to Rep. Kambium Buckner,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-22,[],IL,102nd +Third Reading - Short Debate - Passed 066-035-002,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-03-18,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-04-28,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-26,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2022-04-08,[],IL,102nd +First Reading,2021-04-15,['reading-1'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Public Act . . . . . . . . . 102-0573,2021-08-24,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-02-28,[],IL,102nd +Senate Floor Amendment No. 5 Be Approved for Consideration Assignments,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-22,[],IL,102nd +Do Pass Criminal Law; 009-000-000,2022-04-05,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas M. Bennett,2022-03-10,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Delia C. Ramirez,2021-05-21,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 4, 5",2021-05-31,[],IL,102nd +Arrive in Senate,2022-03-28,['introduction'],IL,102nd +House Floor Amendment No. 3 State Debt Impact Note Filed as Amended,2023-01-05,[],IL,102nd +House Floor Amendment No. 1 Motion Filed to Table Rep. Ann M. Williams,2022-02-25,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-23,['reading-2'],IL,102nd +Do Pass / Short Debate Labor & Commerce Committee; 019-004-000,2021-05-25,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-28,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-03-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-31,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Sponsor Removed Sen. Terri Bryant,2021-05-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2021-05-12,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +"Effective Date October 8, 2021",2021-10-08,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Third Reading - Short Debate - Passed 065-039-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2021-04-16,[],IL,102nd +Do Pass Higher Education; 011-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Martin J. Moylan,2021-05-31,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Celina Villanueva,2021-05-30,['filing'],IL,102nd +Third Reading - Passed; 037-018-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Carol Ammons,2021-05-29,['amendment-introduction'],IL,102nd +Arrived in House,2022-11-30,['introduction'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 052-000-000,2022-12-01,[],IL,102nd +Sent to the Governor,2022-12-20,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-07,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 3,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-23,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 State Debt Impact Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +Remove Chief Co-Sponsor Rep. Dave Vella,2021-05-12,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Do Pass Criminal Law; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2021-04-21,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-06,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Senate Committee Amendment No. 3 Rule 3-9(a) / Re-referred to Assignments,2022-02-10,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Request as Amended is Inapplicable,2021-04-22,[],IL,102nd +Third Reading - Passed; 037-019-000,2021-10-20,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2022-03-09,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading November 29, 2022",2022-11-16,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-04-04,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Laura M. Murphy,2022-11-30,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Remove Chief Co-Sponsor Rep. Amy Elik,2021-05-12,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2022-03-16,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2021-10-20,['introduction'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-21,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2022-06-01,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +House Floor Amendment No. 3 Adopted,2022-04-06,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-04-05,[],IL,102nd +House Committee Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2021-10-28,[],IL,102nd +Assigned to State Government,2022-03-16,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Arrived in House,2021-05-20,['introduction'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-03,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-16,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2021-05-13,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0491,2021-08-20,['became-law'],IL,102nd +House Floor Amendment No. 2 Motion Filed to Table Rep. Ann M. Williams,2022-02-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0666,2021-10-08,['became-law'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +House Floor Amendment No. 3 Balanced Budget Note Filed as Amended,2023-01-05,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Robert Peters,2022-04-04,['amendment-introduction'],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-28,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. Michael J. Zalewski,2021-05-31,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Health; 012-000-000,2022-04-08,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-02-26,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-25,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Anne Stava-Murray,2022-04-06,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-04-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2022-04-06,[],IL,102nd +"Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jaime M. Andrade, Jr.",2021-10-27,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Revenue,2022-04-05,['referral-committee'],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Suzanne Ness,2022-04-08,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2021-05-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-30,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-15,['executive-receipt'],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Antonio Muñoz,2022-04-08,['amendment-introduction'],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Recalled to Second Reading,2021-05-28,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-03-28,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2021-05-25,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-03-24,['referral-committee'],IL,102nd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-10-27,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 007-000-000,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0736,2022-05-06,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-27,[],IL,102nd +Sponsor Removed Sen. Jacqueline Y. Collins,2022-04-04,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-10,[],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-24,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2022-01-05,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 009-006-001,2021-10-26,[],IL,102nd +House Committee Amendment No. 4 Filed with Clerk by Rep. Stephanie A. Kifowit,2022-04-06,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-02-23,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-04-14,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-04-05,[],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2022-03-22,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Re-referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 28, 2021",2021-05-27,[],IL,102nd +3/5 Vote Required,2021-06-01,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2021-05-25,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Thomas M. Bennett,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-29,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2021-05-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2022-04-07,[],IL,102nd +"House Floor Amendment No. 6 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2022-04-07,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2022-04-07,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +House Concurs,2021-06-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-04-01,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Anne Stava-Murray,2022-03-09,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2023-01-10,[],IL,102nd +Recalled to Second Reading,2021-05-31,['reading-2'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Recalled to Second Reading,2023-01-10,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-04-07,[],IL,102nd +Third Reading - Passed; 055-002-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-04-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-03,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Chris Bos,2021-05-12,[],IL,102nd +Chief Senate Sponsor Sen. Ann Gillespie,2021-04-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-25,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Will Guzzardi,2022-04-07,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-09-09,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +First Reading,2022-03-10,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Third Reading - Short Debate - Passed 104-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading,2022-04-09,['reading-2'],IL,102nd +Chief Sponsor Changed to Rep. Jay Hoffman,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-05-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Greg Harris,2022-02-28,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2022-03-30,[],IL,102nd +Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2021-05-05,[],IL,102nd +Passed Both Houses,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-03-18,[],IL,102nd +Public Act . . . . . . . . . 102-1036,2022-06-02,['became-law'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Assigned to Immigration & Human Rights Committee,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Kambium Buckner,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Blaine Wilhour,2022-04-01,[],IL,102nd +"Final Action Deadline Extended-9(b) January 10, 2023",2022-12-30,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-28,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3",2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-23,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 3 - May 28, 2021",2021-05-27,[],IL,102nd +Third Reading - Short Debate - Passed 073-040-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Senate Concurs,2021-06-01,[],IL,102nd +Governor Approved,2022-12-21,['executive-signature'],IL,102nd +Senate Concurs,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Executive,2021-05-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-26,[],IL,102nd +Do Pass as Amended Executive; 010-004-002,2022-04-05,['committee-passage'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Frances Ann Hurley,2022-03-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-04-20,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-01-04,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-10-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2022-03-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Steven Reick,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2022-11-29,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Arrived in House,2021-06-08,['introduction'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-02-14,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Laura Ellman,2022-03-29,['amendment-introduction'],IL,102nd +"Final Action Deadline Extended-9(b) January 10, 2023",2022-12-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2021-05-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-04-26,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Assigned to Human Rights,2021-05-11,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-03-29,[],IL,102nd +Public Act . . . . . . . . . 102-0807,2022-05-13,['became-law'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-07-08,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-06,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-25,[],IL,102nd +Arrived in House,2022-02-25,['introduction'],IL,102nd +Third Reading - Passed; 039-016-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-06,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 114-000-000,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Jay Hoffman,2022-12-01,[],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Governor Approved,2022-04-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-03,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to State Government,2021-05-30,['referral-committee'],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Laura Fine,2021-10-26,[],IL,102nd +Public Act . . . . . . . . . 102-0070,2021-07-12,['became-law'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 038-018-000,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2021-05-20,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-04-28,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2022-04-01,[],IL,102nd +Third Reading - Passed; 059-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-04-01,['amendment-failure'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Rachelle Crowe,2021-05-31,['filing'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-29,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +House Floor Amendment No. 3 Correctional Note Requested as Amended by Rep. Robyn Gabel,2021-10-27,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-20,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-26,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-11,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-29,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0122,2021-07-23,['became-law'],IL,102nd +Senate Concurs,2021-06-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 011-006-000,2022-04-08,[],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2021-05-27,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0540,2021-08-20,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-05-12,[],IL,102nd +Arrived in House,2022-04-05,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-14,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-23,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Filed with Secretary Sen. Mattie Hunter,2021-05-28,['filing'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Justin Slaughter,2021-10-27,[],IL,102nd +3/5 Vote Required,2021-06-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-03-28,[],IL,102nd +Public Act . . . . . . . . . 102-0643,2021-08-27,['became-law'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Labor & Commerce Committee,2021-05-29,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to Executive,2021-10-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-08-31,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2021-10-28,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-29,[],IL,102nd +Recalled to Second Reading,2022-04-06,['reading-2'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +"Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2023-01-08,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3",2022-03-30,[],IL,102nd +Assigned to Health Care Licenses Committee,2022-03-07,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-03-10,[],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2022-03-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-06,[],IL,102nd +Senate Floor Amendment No. 4 Adopted; Sims,2022-04-09,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Gillespie,2023-01-06,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2022-02-17,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 072-042-000,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-01-09,['amendment-failure'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-03-02,[],IL,102nd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Laura M. Murphy,2021-05-29,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2023-01-10,[],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2021-04-23,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Jennifer Gong-Gershowitz,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Stacy M. Bennett,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Transportation; 017-000-000,2022-03-29,[],IL,102nd +First Reading,2022-04-07,['reading-1'],IL,102nd +Recalled to Second Reading,2022-02-25,['reading-2'],IL,102nd +Added Chief Co-Sponsor Rep. Daniel Didech,2022-04-07,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +To Executive- Procurement,2021-05-13,[],IL,102nd +Recalled to Second Reading,2022-11-30,['reading-2'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Third Reading - Standard Debate - Passed 067-043-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-07,[],IL,102nd +"Effective Date January 1, 2023",2022-04-27,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-01-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-04-27,[],IL,102nd +"Effective Date December 1, 2021",2021-08-20,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-23,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-04-14,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 4",2022-11-16,[],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2021-10-20,[],IL,102nd +Senate Committee Amendment No. 2 House Concurs 093-019-001,2022-04-08,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 3",2022-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2022-02-24,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Laura Fine,2021-05-29,['filing'],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2022-04-06,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2, 3",2021-10-28,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Do Pass Health; 011-000-000,2021-05-19,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2023-01-10,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Criminal Law,2021-05-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2021-05-24,[],IL,102nd +Third Reading - Short Debate - Passed 111-001-001,2021-05-31,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-04-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-01-09,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-03-11,[],IL,102nd +House Floor Amendment No. 3 State Debt Impact Note Requested as Amended by Rep. Tim Butler,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Revenue & Finance Committee,2021-06-15,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Greg Harris,2022-04-09,[],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Mary E. Flowers,2021-10-28,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-04-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2021-04-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-31,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Arrived in House,2023-01-05,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-10-27,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-01-05,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Education,2021-10-19,[],IL,102nd +Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 072-037-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-1134,2023-02-10,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-03-16,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 086-023-000,2023-01-10,"['passage', 'reading-3']",IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2021-05-31,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 010-006-000,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2021-03-15,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Fiscal Note Requested as Amended by Rep. Rita Mayfield,2022-03-15,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 054-000-000,2022-04-09,[],IL,102nd +Postponed - Revenue,2022-03-23,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Behavioral and Mental Health; 007-000-000,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-06-15,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-20,[],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-07-21,[],IL,102nd +Do Pass as Amended / Consent Calendar Revenue & Finance Committee; 018-000-000,2021-05-13,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2021-05-30,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-06-15,['referral-committee'],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Higher Education; 011-002-000,2021-05-30,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Third Reading - Passed; 040-017-000,2021-10-28,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-19,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2022-03-04,[],IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Terri Bryant,2021-05-29,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2021-05-31,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Avery Bourne,2022-03-30,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0624,2021-08-27,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-04-25,[],IL,102nd +"Senate Committee Amendment No. 2 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-27,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-04,[],IL,102nd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-26,[],IL,102nd +Public Act . . . . . . . . . 102-0268,2021-08-06,['became-law'],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Rules Referred to Human Services Committee,2021-05-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-02-10,[],IL,102nd +House Floor Amendment No. 3 Housing Affordability Impact Note Filed as Amended,2022-03-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-18,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-20,[],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 112-000-000,2022-04-08,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lindsey LaPointe,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2022-03-23,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura M. Murphy,2021-05-28,['filing'],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Senate Concurs,2022-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-05-11,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 042-017-000,2021-05-30,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Senate Committee Amendment No. 2 Adopted,2022-03-23,['amendment-passage'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 5,2021-05-28,[],IL,102nd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt State Government; 006-003-000,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +House Committee Amendment No. 2 Senate Concurs 048-010-000,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-05,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-20,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lawrence Walsh, Jr.",2021-06-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2022-04-06,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2022-03-22,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 036-017-000,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2022-04-08,['amendment-failure'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2021-05-19,['committee-passage-favorable'],IL,102nd +Arrived in House,2021-04-22,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-04-29,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-30,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 3, 5",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-30,[],IL,102nd +Approved for Consideration Assignments,2023-01-05,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-10,[],IL,102nd +Arrive in Senate,2022-04-01,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-10-28,[],IL,102nd +Second Reading,2022-03-31,['reading-2'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-22,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2023-01-05,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0996,2022-05-27,['became-law'],IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +Motion Filed to Reconsider Vote Rep. Greg Harris,2021-10-29,[],IL,102nd +Chief Sponsor Changed to Rep. Bob Morgan,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Peters,2022-04-07,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2022-04-06,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-10-26,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-04-28,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Appropriations-Elementary & Secondary Education Committee; 016-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-10-27,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2022-03-22,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2022-03-07,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-07,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Higher Education; 012-000-000,2021-05-30,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 4",2023-01-09,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-04-01,['reading-2'],IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-02-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2021-05-27,[],IL,102nd +House Committee Amendment No. 1 Housing Affordability Impact Note Filed as Amended,2021-03-17,[],IL,102nd +Public Act . . . . . . . . . 102-0735,2022-05-06,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2022-04-08,['referral-committee'],IL,102nd +Recalled to Second Reading,2023-01-10,['reading-2'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 071-041-000,2022-04-07,[],IL,102nd +Remove Chief Co-Sponsor Rep. Denyse Wang Stoneback,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-04-22,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Removed Co-Sponsor Rep. Amy Grant,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2022-12-01,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Public Act . . . . . . . . . 102-1120,2023-01-23,['became-law'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-04-05,[],IL,102nd +Governor Approved,2022-12-21,['executive-signature'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 3, 4",2022-12-01,[],IL,102nd +"Effective Date July 1, 2022; - Some Provisions Effective January 1, 2023",2022-05-26,[],IL,102nd +Public Act . . . . . . . . . 102-0901,2022-05-26,['became-law'],IL,102nd +Chief Sponsor Changed to Rep. Katie Stuart,2022-12-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-04-05,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 27, 2021",2021-05-26,[],IL,102nd +Public Act . . . . . . . . . 102-1111,2022-12-21,['became-law'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2021-05-30,[],IL,102nd +Do Pass as Amended Executive; 016-000-000,2022-03-23,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Revenue & Finance Committee,2021-06-15,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2021-05-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-05,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Natalie A. Manley,2022-03-07,[],IL,102nd +Chief House Sponsor Rep. Kathleen Willis,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 5 Motion Filed Concur Rep. Justin Slaughter,2021-05-29,[],IL,102nd +Added as Chief Co-Sponsor Sen. Christopher Belt,2021-05-31,[],IL,102nd +Recalled to Second Reading,2022-03-30,['reading-2'],IL,102nd +Resolution Adopted,2021-02-10,['passage'],IL,102nd +House Committee Amendment No. 2 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. John F. Curran,2021-05-26,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 072-042-000,2021-10-28,"['passage', 'reading-3']",IL,102nd +"Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-29,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Kathleen Willis,2021-05-31,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2021-05-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Assigned to Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-07-21,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Waive Posting Notice,2021-05-29,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-15,['reading-1'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2021-06-15,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-20,[],IL,102nd +Third Reading - Passed; 053-001-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2021-05-31,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-06-01,['referral-committee'],IL,102nd +Arrived in House,2022-04-08,['introduction'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Higher Education Committee,2022-04-05,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 051-006-000,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-04-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-22,[],IL,102nd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2021-05-28,['amendment-failure'],IL,102nd +Passed Both Houses,2022-03-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-10-28,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-05,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2022-03-23,[],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +House Floor Amendment No. 4 Senate Concurs 042-017-000,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Senate Concurs,2021-06-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Charles Meier,2021-05-20,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +"Effective Date July 1, 2022",2021-07-23,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 015-000-000,2021-05-30,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 3",2023-01-05,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-02-23,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-04-07,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-04-04,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Greg Harris,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Revenue & Finance Committee,2021-06-15,['referral-committee'],IL,102nd +House Floor Amendment No. 3 State Mandates Fiscal Note Requested as Amended by Rep. Tim Butler,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2023-01-05,[],IL,102nd +"To Sales, Amusement, & Other Taxes Subcommittee",2021-03-11,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Kimberly A. Lightford,2021-10-19,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Chief Sponsor Changed to Sen. Laura M. Murphy,2022-04-07,[],IL,102nd +Chief Sponsor Changed to Rep. William Davis,2021-10-27,[],IL,102nd +Re-assigned to Executive,2023-01-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2021-10-28,[],IL,102nd +Assigned to Energy and Public Utilities,2022-03-23,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Recalled to Second Reading,2023-01-05,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2021-05-31,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 3,2023-01-10,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Senate Concurs,2022-04-09,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2022-03-24,['amendment-introduction'],IL,102nd +House Committee Amendment No. 2 Home Rule Note Requested as Amended by Rep. Rita Mayfield,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-03-18,[],IL,102nd +House Committee Amendment No. 1 Adopted in Housing Committee; by Voice Vote,2021-03-17,['amendment-passage'],IL,102nd +Chief Sponsor Changed to Rep. Dave Vella,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2021-05-27,[],IL,102nd +Recalled to Second Reading,2021-10-28,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Withdrawn by Sen. Bill Cunningham,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-03-29,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 3, 5 - May 28, 2021",2021-05-27,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Appropriations-Elementary & Secondary Education Committee; 016-000-000,2022-03-02,['committee-passage-favorable'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Fred Crespo,2022-04-01,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-26,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Peters,2022-04-07,['amendment-passage'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 012-001-000,2021-10-26,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Greg Harris,2021-11-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-04-07,[],IL,102nd +House Committee Amendment No. 1 Tabled,2023-01-05,['amendment-failure'],IL,102nd +Placed on Calendar Order of First Reading,2022-04-01,['reading-1'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-01-09,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-20,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-04-22,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-03-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Bob Morgan,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Robyn Gabel,2023-01-09,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Chief Sponsor Changed to Rep. Anna Moeller,2022-04-06,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-22,['amendment-passage'],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert F. Martwick,2022-04-05,['amendment-introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-02-24,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 8, 2022",2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-05-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2022-04-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-27,[],IL,102nd +Recalled to Second Reading,2021-04-29,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-30,[],IL,102nd +Removed Co-Sponsor Rep. Terra Costa Howard,2021-04-21,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-04-07,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. C.D. Davidsmeyer,2021-04-23,[],IL,102nd +Public Act . . . . . . . . . 102-1110,2022-12-21,['became-law'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2021-05-29,['filing'],IL,102nd +Motion Filed to Reconsider Vote Rep. Amy Elik,2022-04-07,[],IL,102nd +Passed Both Houses,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Karina Villa,2021-05-29,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2021-06-15,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Michael E. Hastings,2021-05-24,['filing'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dan Ugaste,2021-05-25,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2021-05-10,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Burke,2022-03-16,[],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Sent to the Governor,2022-04-18,['executive-receipt'],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Do Pass Executive; 009-005-000,2021-05-13,['committee-passage'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +"Effective Date July 1, 2022",2021-08-06,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Sent to the Governor,2022-04-18,['executive-receipt'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - April 4, 2022",2022-04-01,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-02-28,[],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2022-04-07,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-26,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +House Floor Amendment No. 6 Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Laura Fine,2022-04-04,['filing'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2021-05-25,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-05,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) March 31, 2022",2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-04-14,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Robert Rita,2022-04-07,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Education,2021-05-25,['referral-committee'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Arrive in Senate,2022-02-23,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2022-01-05,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2021-10-26,[],IL,102nd +House Committee Amendment No. 4 Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Chief Sponsor Changed to Sen. Cristina H. Pacione-Zayas,2021-10-27,[],IL,102nd +Third Reading - Short Debate - Passed 066-044-002,2022-03-23,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2022-05-04,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Education,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Harmon,2021-05-28,['amendment-passage'],IL,102nd +Sent to the Governor,2021-05-30,['executive-receipt'],IL,102nd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2022-04-06,[],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-001-000,2022-03-31,['committee-passage-favorable'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Recalled to Second Reading,2022-04-09,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Sara Feigenholtz,2021-05-27,['filing'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Approved for Consideration Assignments,2022-04-04,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Revenue,2022-04-05,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2021-05-20,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Jennifer Gong-Gershowitz,2021-10-28,[],IL,102nd +Removed Co-Sponsor Rep. Mike Murphy,2021-05-12,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Do Pass State Government; 008-000-000,2022-03-23,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Pension Note Filed as Amended,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-05,[],IL,102nd +Public Act . . . . . . . . . 102-0819,2022-05-13,['became-law'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-16,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Economic Opportunity & Equity Committee,2022-04-05,['referral-committee'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2022-11-30,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2022-03-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-22,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2021-08-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-07-02,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Michael J. Zalewski,2021-05-31,[],IL,102nd +Chief Senate Sponsor Sen. Adriane Johnson,2022-03-28,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-03-09,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-05-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-05-19,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-05-25,[],IL,102nd +Chief Senate Sponsor Sen. Julie A. Morrison,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +House Floor Amendment No. 3 Land Conveyance Appraisal Note Filed as Amended,2023-01-06,[],IL,102nd +Chief House Sponsor Rep. Camille Y. Lilly,2021-05-20,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Celina Villanueva,2021-05-30,['filing'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 110-005-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-02-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-31,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2021-03-18,[],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-01-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2021-03-25,[],IL,102nd +"House Floor Amendment No. 2 Rules Refers to Museums, Arts, & Cultural Enhancements Committee",2021-05-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 4 Adopted; Sims,2023-01-10,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-12,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-28,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-05-29,[],IL,102nd +Assigned to Education,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Harmon,2022-04-09,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2022-04-03,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2021-05-27,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Koehler,2021-05-31,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-04-07,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-03-03,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-09-09,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jay Hoffman,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Barbara Hernandez,2021-05-29,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 012-002-000,2023-01-05,[],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-25,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Keith R. Wheeler,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2022-04-05,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Referred to Rules Committee,2022-03-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-09,['referral-committee'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +House Floor Amendment No. 3 Tabled Pursuant to Rule 40,2021-05-31,['amendment-failure'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +3/5 Vote Required,2021-06-01,[],IL,102nd +Third Reading - Standard Debate - Passed 072-046-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2, 3 - October 28, 2021",2021-10-28,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2023-01-09,[],IL,102nd +Do Pass Criminal Law; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Approved for Consideration Rules Committee; 003-001-000,2023-01-10,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Higher Education Committee,2021-05-30,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura Ellman,2021-05-24,['amendment-introduction'],IL,102nd +Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2021-10-19,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0147,2021-07-23,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 067-038-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-03-19,['filing'],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-04-23,[],IL,102nd +Public Act . . . . . . . . . 102-1092,2022-06-10,['became-law'],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2021-05-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-27,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2021-04-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2022-03-30,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2021-05-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-03-03,[],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +3/5 Vote Required,2021-06-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-12,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2021-05-28,['filing'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-05-29,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-08-31,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Labor & Commerce Committee,2022-04-08,['referral-committee'],IL,102nd +Arrived in House,2021-05-31,['introduction'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +"Effective Date January 1, 2023",2022-04-27,[],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-01,[],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-04-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2021-05-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 015-000-000,2021-10-26,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Elizabeth Hernandez,2021-10-27,[],IL,102nd +House Floor Amendment No. 3 Fiscal Note Requested as Amended by Rep. Robyn Gabel,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-20,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-29,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 056-000-000,2022-04-08,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2021-05-29,[],IL,102nd +"Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2021-05-27,['referral-committee'],IL,102nd +House Floor Amendment No. 4 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 115-000-000,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-05-29,[],IL,102nd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 015-000-000,2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2021-05-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2022-04-01,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-06-08,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-02-14,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-002-000,2022-01-05,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Dave Vella,2022-04-08,[],IL,102nd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. Maurice A. West, II",2023-01-04,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-03-29,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-05-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-15,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 010-000-000,2022-11-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-10-19,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. LaToya Greenwood,2022-03-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-01-05,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-04-06,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-07-11,[],IL,102nd +"Directed to Multiple Committees Healthcare Accessiblity Committee, Appropriations-Health Subcommittee",2021-05-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-09,[],IL,102nd +House Committee Amendment No. 1 Fiscal Note Filed as Amended,2021-03-25,[],IL,102nd +Arrived in House,2021-05-30,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-03,[],IL,102nd +Chief House Sponsor Rep. Emanuel Chris Welch,2022-02-25,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Judiciary - Criminal Committee,2022-04-06,[],IL,102nd +Public Act . . . . . . . . . 102-0532,2021-08-20,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Adopted; D. Turner,2022-03-23,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 011-003-000,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-25,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +"House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Elgie R. Sims, Jr.",2023-01-08,['filing'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-04-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-10-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-30,[],IL,102nd +Postponed-Executive,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-06,[],IL,102nd +"Senate Floor Amendment No. 2 Motion Filed Concur Rep. Edgar Gonzalez, Jr.",2022-04-06,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Bennett,2022-04-06,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Morrison,2022-11-30,['amendment-passage'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-01-10,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Chief Sponsor Changed to Rep. Michael Kelly,2022-11-29,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-06,['amendment-passage'],IL,102nd +Arrive in Senate,2022-04-06,['introduction'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-10,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-03-30,[],IL,102nd +House Concurs,2022-04-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-09,[],IL,102nd +Public Act . . . . . . . . . 102-0504,2021-08-20,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Adopted; McClure,2022-02-25,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-03-31,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Public Act . . . . . . . . . 102-0711,2022-04-27,['became-law'],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2022-04-08,['committee-passage-favorable'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-16,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John Connor,2022-04-04,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-03-02,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-03-08,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-17,[],IL,102nd +Senate Committee Amendment No. 3 Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-04-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As March 11, 2022",2022-02-25,['reading-3'],IL,102nd +Approved for Consideration Assignments,2022-11-16,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-04-29,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 House Concurs 110-000-000,2023-01-10,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-14,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-03-25,[],IL,102nd +Passed Both Houses,2023-01-10,[],IL,102nd +Placed on Calendar Order of First Reading,2022-04-06,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-19,[],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to Health,2021-05-30,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-02-25,[],IL,102nd +Recalled to Second Reading,2023-01-10,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Michael Kelly,2022-11-29,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 5 Assignments Refers to Licensed Activities,2022-03-02,[],IL,102nd +Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +3/5 Vote Required,2022-11-30,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Executive,2021-05-19,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Omar Aquino,2022-03-24,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +House Floor Amendment No. 2 3/5 Vote Required,2022-12-01,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 House Concurs 073-030-000,2023-01-10,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2023-01-08,['referral-committee'],IL,102nd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Maurice A. West, II",2022-04-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-05-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Brian W. Stewart,2021-10-20,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading November 29, 2022",2022-11-16,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-04-27,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Michael J. Zalewski,2022-04-08,['amendment-introduction'],IL,102nd +Third Reading - Passed; 034-019-001,2022-04-09,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended Human Rights; 009-000-000,2021-05-06,['committee-passage'],IL,102nd +Third Reading - Passed; 032-015-000,2023-01-06,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-23,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2022-04-04,['filing'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-03-02,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-21,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-29,[],IL,102nd +Recalled to Second Reading,2022-03-31,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-04-07,[],IL,102nd +Sent to the Governor,2022-05-04,['executive-receipt'],IL,102nd +Recalled to Second Reading,2022-04-08,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2022-03-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-03-16,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Criminal Law,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-02-14,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Second Reading,2022-11-30,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-10-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2022-04-08,[],IL,102nd +"Senate Floor Amendment No. 2 Motion Filed Concur Rep. Maurice A. West, II",2023-01-04,[],IL,102nd +House Floor Amendment No. 3 Fiscal Note Requested as Amended by Rep. Tim Butler,2022-01-05,[],IL,102nd +Second Reading,2022-04-06,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2022-03-14,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-24,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Doris Turner,2021-10-28,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-04-28,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 106-000-000,2023-01-10,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-22,[],IL,102nd +Chief Sponsor Changed to Sen. Ann Gillespie,2023-01-10,[],IL,102nd +House Floor Amendment No. 4 Tabled Pursuant to Rule 40,2021-05-31,['amendment-failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-04-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-14,[],IL,102nd +Arrived in House,2022-04-01,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +"Effective Date August 16, 2021",2021-08-16,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Public Act . . . . . . . . . 102-0713,2022-04-27,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 008-001-000,2021-05-31,[],IL,102nd +"Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-000-000",2021-05-27,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-12,['reading-2'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-03,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2021-04-29,[],IL,102nd +House Floor Amendment No. 2 3/5 Vote Required,2021-08-31,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Elizabeth Hernandez,2022-04-06,[],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 056-000-000,2022-04-08,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2021-10-28,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Human Rights,2021-05-29,['referral-committee'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +"Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Transportation: Regulation, Roads & Bridges Committee",2022-12-01,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-28,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-05-29,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-23,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Labor & Commerce Committee,2022-04-08,['referral-committee'],IL,102nd +Waive Posting Notice,2021-05-30,[],IL,102nd +Recalled to Second Reading,2021-10-26,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-26,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-20,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-31,[],IL,102nd +House Floor Amendment No. 3 Home Rule Note Requested as Amended by Rep. Robyn Gabel,2021-10-27,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-10-27,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-01,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2021-05-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-06-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-30,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-05-29,['committee-passage-favorable'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0179,2021-07-30,['became-law'],IL,102nd +Third Reading - Consent Calendar - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 House Concurs 114-000-000,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-09,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +First Reading,2022-02-25,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-07-11,[],IL,102nd +Assigned to Healthcare Access and Availability,2021-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Judiciary - Criminal Committee; 012-007-000,2022-04-07,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-03-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-01-05,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-04-04,[],IL,102nd +Chief House Sponsor Rep. Denyse Wang Stoneback,2022-02-28,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Anna Moeller,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Adopted; Peters,2022-04-07,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +Do Pass as Amended / Short Debate Housing Committee; 014-009-000,2021-03-17,['committee-passage'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-03-10,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-28,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-22,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Collins,2021-04-29,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-01-05,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-29,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-15,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Omar Aquino,2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-03-31,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-01-09,[],IL,102nd +Public Act . . . . . . . . . 102-0739,2022-05-06,['became-law'],IL,102nd +Recalled to Second Reading,2021-05-30,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Margaret Croke,2021-04-21,[],IL,102nd +Public Act . . . . . . . . . 102-1010,2022-05-27,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0919,2022-05-27,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Stadelman,2021-10-28,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Robyn Gabel,2023-01-09,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-04-20,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michael J. Zalewski,2023-01-05,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-10-26,[],IL,102nd +Passed Both Houses,2021-11-01,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Stephanie A. Kifowit,2022-03-31,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-05-04,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Anna Moeller,2022-04-01,[],IL,102nd +House Floor Amendment No. 3 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Assigned to Agriculture,2022-03-16,['referral-committee'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-05-05,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Lance Yednock,2022-04-08,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-04-05,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Mike Simmons,2022-04-06,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Linda Holmes,2021-05-27,['filing'],IL,102nd +Third Reading - Short Debate - Passed 084-033-000,2021-10-27,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +Do Pass as Amended Education; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Cunningham,2023-01-10,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-04-07,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Kimberly A. Lightford,2021-10-19,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 010-007-000,2021-06-16,[],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Greg Harris,2022-04-09,[],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Rules Committee; 003-001-000,2021-10-28,['committee-passage-favorable'],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2022-04-08,[],IL,102nd +Removed Co-Sponsor Rep. Natalie A. Manley,2023-01-05,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Energy & Environment Committee; 018-008-000,2022-03-03,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. William Davis,2021-10-27,[],IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-02-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-04-04,[],IL,102nd +House Floor Amendment No. 4 Rules Refers to Executive Committee,2022-04-08,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-06-03,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Higher Education Committee; 006-004-000,2021-05-30,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Katie Stuart,2022-12-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-04-27,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Mattie Hunter,2021-05-29,['filing'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-04-05,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-05,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 5,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2022-04-05,[],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 31, 2021",2021-05-29,[],IL,102nd +Chief Senate Sponsor Sen. Antonio Muñoz,2021-04-15,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +"Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-000-000",2021-05-30,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2021-05-26,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Human Services Committee; 015-000-000,2021-05-30,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-05-28,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0160,2021-07-23,['became-law'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-03-31,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +3/5 Vote Required,2021-06-01,[],IL,102nd +Public Act . . . . . . . . . 102-0276,2021-08-06,['became-law'],IL,102nd +Alternate Co-Sponsor Removed Rep. Dave Vella,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Morrison,2022-03-30,['amendment-passage'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Removed from Consent Calendar Status Rep. Michael J. Zalewski,2021-05-18,[],IL,102nd +Public Act . . . . . . . . . 102-0026,2021-06-25,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2021-06-15,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-07-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +"Senate Floor Amendment No. 2 Motion Filed Concur Rep. Lawrence Walsh, Jr.",2021-06-01,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-07,[],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0631,2021-08-27,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2022-03-24,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Revenue,2021-05-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2022-03-23,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Judiciary - Civil Committee,2021-05-30,['referral-committee'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-02-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-03-28,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Kathleen Willis,2021-05-31,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-10-28,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to State Government Administration Committee,2021-05-30,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0603,2021-08-27,['became-law'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0066,2021-07-09,['became-law'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-21,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Arrived in House,2021-10-28,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-04-06,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 013-000-000,2021-06-16,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - April 7, 2022",2022-04-07,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 059-000-000,2021-05-31,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 3 - January 10, 2023",2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2022-03-25,['amendment-introduction'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Housing Affordability Impact Note Requested as Amended by Rep. Rita Mayfield,2022-03-15,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-01-04,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Harmon,2023-01-05,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-03-23,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +"House Floor Amendment No. 2 Recommends Be Adopted Museums, Arts, & Cultural Enhancements Committee; 009-000-000",2021-05-25,['committee-passage-favorable'],IL,102nd +Assigned to Public Safety,2021-05-11,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-09,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-25,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-03-25,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-16,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 012-002-000,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-04-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Jay Hoffman,2022-04-07,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-15,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-03-18,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-07,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-03,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2021-04-28,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Keith R. Wheeler,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 5 Adopted; Sims,2023-01-10,['amendment-passage'],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Dan Caulkins,2022-03-10,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-01-04,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Governor Approved,2022-04-29,['executive-signature'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Koehler,2021-05-31,['amendment-passage'],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Added as Co-Sponsor Sen. Bill Cunningham,2021-05-31,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-08,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-03-09,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2021-09-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Economic Opportunity & Equity Committee,2022-04-05,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-04-05,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Natalie A. Manley,2022-03-21,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-11-30,['referral-committee'],IL,102nd +Removed from Standard Debate Status,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Personnel & Pensions Committee; 008-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 State Debt Impact Note Filed as Amended,2021-05-30,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-29,[],IL,102nd +Removed Co-Sponsor Rep. Jackie Haas,2021-05-12,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2021-05-31,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Amy Elik,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2021-04-23,[],IL,102nd +Sent to the Governor,2022-12-16,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 5 Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2022-11-30,[],IL,102nd +Motion Filed to Reconsider Vote Sen. Don Harmon,2021-06-01,[],IL,102nd +"House Floor Amendment No. 7 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2022-04-07,['amendment-introduction'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2022-05-10,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2021-05-25,['amendment-passage'],IL,102nd +Passed Both Houses,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 5, 2022",2022-04-04,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Greg Harris,2021-10-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kathleen Willis,2022-03-16,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-14,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-04-01,[],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Deb Conroy,2021-05-21,['amendment-introduction'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +"Senate Floor Amendment No. 3 Motion Filed Concur Rep. Edgar Gonzalez, Jr.",2022-04-06,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Mike Simmons,2022-04-04,['filing'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2022-04-07,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0267,2021-08-06,['became-law'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Chief Sponsor Changed to Sen. Linda Holmes,2021-05-30,[],IL,102nd +"Effective Date July 1, 2022",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-03-24,[],IL,102nd +Governor Approved,2022-04-22,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 116-000-000,2021-06-16,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-23,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Revenue; 011-000-000,2022-04-05,[],IL,102nd +Recalled to Second Reading,2022-04-09,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Crowe,2022-04-09,['amendment-passage'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Executive Committee,2021-10-27,['referral-committee'],IL,102nd +"Effective Date July 1, 2023",2022-05-27,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Assigned to Human Services Committee,2021-03-02,['referral-committee'],IL,102nd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-06-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-26,[],IL,102nd +Alternate Chief Co-Sponsor Removed Rep. Lakesia Collins,2022-02-25,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-24,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2022-04-07,[],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-04-05,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2022-03-23,[],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-10-26,[],IL,102nd +Sent to the Governor,2021-06-30,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Withdrawn by Rep. Kelly M. Cassidy,2022-04-01,[],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +Governor Approved,2021-06-04,['executive-signature'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-28,[],IL,102nd +Do Pass Education; 013-001-000,2022-03-29,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-04-27,[],IL,102nd +Placed on Calendar Order of First Reading,2022-02-23,['reading-1'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 013-000-000,2021-05-25,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-08,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 066-034-000,2022-01-05,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +House Committee Amendment No. 3 Rules Refers to Revenue & Finance Committee,2022-04-06,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Public Act . . . . . . . . . 102-0545,2021-08-20,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2021-05-20,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 014-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-10-27,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +First Reading,2022-03-28,['reading-1'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mark L. Walker,2021-05-26,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 4 Assignments Refers to Executive,2022-04-05,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-25,[],IL,102nd +Third Reading - Passed; 051-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-16,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Postponed - Health,2021-05-19,[],IL,102nd +Alternate Chief Sponsor Changed to Rep. Kambium Buckner,2022-04-08,[],IL,102nd +House Floor Amendment No. 3 Housing Affordability Impact Note Filed as Amended,2023-01-06,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-19,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Michael J. Zalewski,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2021-05-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-23,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-10-28,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2021-05-25,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Kambium Buckner,2022-04-08,['amendment-introduction'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Motion Filed to Reconsider Vote Rep. Suzanne Ness,2022-03-03,[],IL,102nd +Public Act . . . . . . . . . 102-0521,2021-08-20,['became-law'],IL,102nd +Second Reading - Short Debate,2021-05-20,['reading-2'],IL,102nd +Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0537,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-04-16,[],IL,102nd +House Floor Amendment No. 3 Correctional Note Filed as Amended,2023-01-06,[],IL,102nd +Governor Approved,2022-12-21,['executive-signature'],IL,102nd +Senate Floor Amendment No. 4 Postponed - Executive,2021-05-29,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to Executive,2021-05-30,['referral-committee'],IL,102nd +Passed Both Houses,2022-11-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Javier L Cervantes,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-04-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-07-01,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 31, 2021",2021-05-31,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2022-04-05,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Delia C. Ramirez,2021-05-26,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-01,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-03-25,[],IL,102nd +Third Reading - Passed; 057-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. John C. D'Amico,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-04-28,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0223,2021-07-30,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2021-05-11,['amendment-introduction'],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 115-000-000,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-10,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-04-15,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-03-03,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Chief Senate Sponsor Sen. Jacqueline Y. Collins,2022-03-04,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Judiciary - Criminal Committee,2022-04-09,['referral-committee'],IL,102nd +Third Reading - Passed; 055-000-000,2022-04-09,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 075-020-001,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-29,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-09-09,[],IL,102nd +"Effective Date April 29, 2022",2022-04-29,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-31,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2021-05-26,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-01-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-10,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-03-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-22,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Dan Brady,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jennifer Gong-Gershowitz,2021-10-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Extended Debate,2021-04-22,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Economic Opportunity & Equity Committee; 007-000-000,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-04-05,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Greg Harris,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Ethics & Elections Committee,2021-05-30,[],IL,102nd +Third Reading - Short Debate - Passed 104-003-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2022-03-28,['amendment-introduction'],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-03-25,[],IL,102nd +"Effective Date April 22, 2022",2022-04-22,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Linda Holmes,2021-05-30,['filing'],IL,102nd +Public Act . . . . . . . . . 102-0982,2022-05-27,['became-law'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-05-26,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Sara Feigenholtz,2021-05-27,['filing'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading March 30, 2022",2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Eric Mattson,2022-05-10,[],IL,102nd +Sent to the Governor,2022-04-21,['executive-receipt'],IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +"Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-04-05,['referral-committee'],IL,102nd +Third Reading - Passed; 041-018-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-04-14,[],IL,102nd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 024-000-000,2021-05-25,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Energy and Public Utilities,2021-05-25,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-05-11,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Revenue; 011-000-000,2022-04-05,[],IL,102nd +"Effective Date May 27, 2022; - Some Provisions Effective July 1, 2023",2022-05-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Joyce Mason,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-03-03,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2022-04-04,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-05-31,[],IL,102nd +Chief Sponsor Changed to Sen. Christopher Belt,2021-06-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2022-04-09,[],IL,102nd +House Committee Amendment No. 3 Adopted in Revenue & Finance Committee; by Voice Vote,2022-04-07,['amendment-passage'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +House Floor Amendment No. 7 Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +House Floor Amendment No. 3 Adopted,2022-04-01,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +"Effective Date June 4, 2021",2021-06-04,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2021-10-25,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 066-034-000,2022-01-05,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +House Concurs,2021-06-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-13,[],IL,102nd +Third Reading - Short Debate - Passed 071-039-003,2021-04-15,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2022-04-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-09,[],IL,102nd +Sent to the Governor,2021-06-22,['executive-receipt'],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Public Act . . . . . . . . . 102-0920,2022-05-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2021-04-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-08,[],IL,102nd +Public Act . . . . . . . . . 102-0962,2022-05-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-03-31,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2021-05-21,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-10-26,['reading-2'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2022-02-28,[],IL,102nd +Chief Senate Sponsor Sen. Dan McConchie,2022-02-23,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-03-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-03-30,[],IL,102nd +To Appropriations- Health,2021-05-10,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jennifer Gong-Gershowitz,2021-05-31,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-11,[],IL,102nd +Approved for Consideration Assignments,2022-11-22,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-07-11,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Jennifer Gong-Gershowitz,2022-04-06,[],IL,102nd +Referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-03-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to State Government,2021-05-30,['referral-committee'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-31,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-05-25,[],IL,102nd +Passed Both Houses,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-04-29,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Criminal Law,2021-05-25,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-28,[],IL,102nd +Senate Committee Amendment No. 2 Postponed - Executive,2021-05-19,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-02,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Jones,2022-04-08,['amendment-passage'],IL,102nd +Arrived in House,2023-01-06,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-29,[],IL,102nd +Assigned to Insurance,2021-05-04,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2021-04-23,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Withdrawn by Sen. Celina Villanueva,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-04-20,[],IL,102nd +Third Reading - Passed; 053-001-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-04,['reading-3'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-04-07,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Third Reading - Passed; 048-000-000,2022-02-25,"['passage', 'reading-3']",IL,102nd +Assigned to Licensed Activities,2022-03-22,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-24,[],IL,102nd +Public Act . . . . . . . . . 102-0972,2022-05-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-13,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Recalled to Second Reading,2021-10-20,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-03-25,[],IL,102nd +Sent to the Governor,2022-04-13,['executive-receipt'],IL,102nd +"Senate Floor Amendment No. 3 Motion Filed Concur Rep. Maurice A. West, II",2022-04-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2023-01-08,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Higher Education,2022-04-04,['referral-committee'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-03-25,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2022-04-28,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Loughran-Cappel,2022-03-31,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2022-03-14,[],IL,102nd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Michael Kelly,2022-11-29,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-04-06,[],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kambium Buckner,2022-04-01,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2022-11-30,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2023-02-07,['executive-receipt'],IL,102nd +"Effective Date January 1, 2023",2021-08-27,[],IL,102nd +Passed Both Houses,2023-01-10,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-04-06,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-09,['amendment-failure'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 045-008-000,2022-12-01,[],IL,102nd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt Health; 009-000-000,2021-05-30,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Senate Floor Amendment No. 5 Recommend Do Adopt Licensed Activities; 006-000-000,2022-03-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-03-29,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2022-03-22,[],IL,102nd +Chief Co-Sponsor Changed to Rep. Michael Halpin,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-05-26,[],IL,102nd +House Floor Amendment No. 3 Judicial Note Requested as Amended by Rep. Tim Butler,2022-01-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-02-14,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-14,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Cunningham,2022-11-30,['amendment-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +Sent to the Governor,2021-06-11,['executive-receipt'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-30,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-05-29,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Education,2021-05-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2021-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-04-29,[],IL,102nd +Governor Approved,2021-08-30,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-03-23,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Dave Syverson,2021-05-28,['filing'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Human Rights,2021-05-29,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-01-05,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 016-008-000,2022-04-09,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +House Floor Amendment No. 3 Housing Affordability Impact Note Requested as Amended by Rep. Robyn Gabel,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Fine,2021-10-26,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Appropriations-Public Safety Committee,2021-10-27,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-03-03,[],IL,102nd +Sent to the Governor,2021-06-30,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-30,['amendment-passage'],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 3,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 115-000-000,2021-10-28,[],IL,102nd +Public Act . . . . . . . . . 102-0395,2021-08-16,['became-law'],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +"Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-000-000",2021-05-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Randy E. Frese,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Elizabeth Hernandez,2021-10-27,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura M. Murphy,2021-08-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-04-28,[],IL,102nd +Public Act . . . . . . . . . 102-0051,2021-07-09,['became-law'],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Third Reading - Passed; 058-000-001,2021-05-30,"['passage', 'reading-3']",IL,102nd +"Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 012-001-000",2022-12-01,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2021-05-14,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 31, 2021",2021-05-30,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Added Chief Co-Sponsor Rep. Ryan Spain,2021-05-31,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Sponsor Removed Sen. Karina Villa,2021-05-31,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 040-017-000,2021-08-31,[],IL,102nd +House Committee Amendment No. 2 Senate Concurs 058-000-000,2021-10-28,[],IL,102nd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 008-001-000,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2021-05-12,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-29,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-20,[],IL,102nd +Waive Posting Notice,2023-01-04,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-05,[],IL,102nd +House Committee Amendment No. 2 Judicial Note Requested as Amended by Rep. Rita Mayfield,2022-03-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Butler,2021-05-31,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Celina Villanueva,2023-01-10,['filing'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Anthony DeLuca,2022-04-07,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2021-10-28,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-04-27,[],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Carol Ammons,2021-05-30,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-10,[],IL,102nd +First Reading,2021-04-15,['reading-1'],IL,102nd +Third Reading - Passed; 053-000-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Adopted; Hunter,2021-05-30,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-07,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-04-08,[],IL,102nd +Third Reading - Passed; 049-006-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-10,[],IL,102nd +House Floor Amendment No. 4 Adopted,2022-03-03,['amendment-passage'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2021-10-26,[],IL,102nd +Sent to the Governor,2021-11-02,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-05,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-01-09,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-04-22,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-04-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-01-09,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2021-10-27,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2021-04-27,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-05-05,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Insurance Committee,2022-04-08,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-01,[],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2021-04-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Luft,2022-04-04,[],IL,102nd +Third Reading - Passed; 043-011-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 4 House Concurs 110-000-002,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-04-25,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Robert F. Martwick,2022-04-05,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2022-05-26,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +First Reading,2022-04-01,['reading-1'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2023-01-05,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2022-04-01,[],IL,102nd +Do Pass Agriculture; 011-000-000,2022-03-24,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-05-04,[],IL,102nd +Senate Floor Amendment No. 3 Withdrawn by Sen. Steve Stadelman,2021-10-28,[],IL,102nd +"Removed Co-Sponsor Rep. Maurice A. West, II",2021-04-21,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-09,['referral-committee'],IL,102nd +Recalled to Second Reading - Short Debate,2021-10-28,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2022-04-07,[],IL,102nd +House Floor Amendment No. 3 Pension Note Filed as Amended,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Pension Note Filed as Amended,2022-02-23,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-03-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robert Rita,2023-01-05,[],IL,102nd +"Senate Floor Amendment No. 2 Motion Filed Concur Rep. Lawrence Walsh, Jr.",2023-01-06,[],IL,102nd +"Alternate Chief Sponsor Changed to Rep. Lawrence Walsh, Jr.",2022-04-08,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-03-31,[],IL,102nd +Chief Senate Sponsor Sen. Melinda Bush,2022-03-04,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 010-007-000,2021-06-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-05-28,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2021-05-19,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-20,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2021-10-19,['amendment-introduction'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-05-19,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-04-08,[],IL,102nd +"Effective Date June 10, 2022; - Some Provisions Effective January 1, 2023",2022-06-10,[],IL,102nd +Public Act . . . . . . . . . 102-0035,2021-06-25,['became-law'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-02-16,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 5 Motion Filed Concur Rep. William Davis,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0280,2021-08-06,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-10,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-08,[],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +Do Pass Licensed Activities; 006-000-000,2021-05-29,['committee-passage'],IL,102nd +Removed Co-Sponsor Rep. Thomas M. Bennett,2021-04-14,[],IL,102nd +Public Act . . . . . . . . . 102-0258,2021-08-06,['became-law'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Third Reading - Passed; 042-013-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Fiscal Note Filed as Amended,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-07-21,[],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Rules Referred to Judiciary - Criminal Committee,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Higher Education Committee; 010-000-000,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-04-30,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Bennett,2022-04-09,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-06-01,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Mike Simmons,2022-04-07,['filing'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2021-05-20,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted State Government Administration Committee; 008-000-000,2021-05-30,[],IL,102nd +First Reading,2021-04-15,['reading-1'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Revenue; 008-000-000,2021-05-30,[],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Removed from Consent Calendar Status Rep. Kelly M. Burke,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2022-03-23,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-18,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 095-015-002,2021-06-16,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +To Judiciary- Privacy,2021-05-12,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2021-10-28,['amendment-failure'],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-30,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - October 28, 2021",2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-10-28,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-06-01,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-08,['executive-receipt'],IL,102nd +Arrived in House,2021-05-26,['introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2021-05-20,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 111-000-000,2021-06-16,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2021-05-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2021-05-28,[],IL,102nd +House Committee Amendment No. 1 3/5 Vote Required,2021-06-01,[],IL,102nd +Senate Committee Amendment No. 2 House Concurs 118-000-000,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +House Concurs,2021-06-16,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Governor Approved,2021-06-10,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-19,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-03-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Public Act . . . . . . . . . 102-0627,2021-08-27,['became-law'],IL,102nd +Referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2021-05-21,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-10-19,['referral-committee'],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0310,2021-08-06,['became-law'],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-04-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Kathleen Willis,2021-05-31,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0012,2021-06-04,['became-law'],IL,102nd +Assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Public Act . . . . . . . . . 102-0187,2021-07-30,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-20,[],IL,102nd +Public Act . . . . . . . . . 102-1061,2022-06-10,['became-law'],IL,102nd +Arrived in House,2021-10-28,['introduction'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-10-28,['filing'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-02-18,[],IL,102nd +Sent to the Governor,2022-03-24,['executive-receipt'],IL,102nd +Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-06-01,[],IL,102nd +Arrived in House,2021-05-25,['introduction'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 112-000-000,2021-06-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-10,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2021-05-26,[],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 117-000-000,2021-05-31,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. William Davis,2021-05-20,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0271,2021-08-06,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-05-30,[],IL,102nd +Third Reading - Short Debate - Passed 076-024-002,2021-04-14,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-07-21,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 095-015-002,2021-06-16,[],IL,102nd +Public Act . . . . . . . . . 102-0655,2021-08-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Sent to the Governor,2021-06-15,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 30, 2021",2021-05-29,[],IL,102nd +Public Act . . . . . . . . . 102-0804,2022-05-13,['became-law'],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Recommends Be Adopted Judiciary - Criminal Committee; 019-000-000,2021-05-29,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-27,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura M. Murphy,2022-03-08,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 110-000-000,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-09,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2022-04-07,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +"Final Action Deadline Extended-9(b) March 31, 2022",2022-03-28,[],IL,102nd +Arrived in House,2021-04-30,['introduction'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Insurance Committee; 017-000-000,2022-04-08,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-05-04,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-05-05,[],IL,102nd +Public Act . . . . . . . . . 102-0981,2022-05-27,['became-law'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-05,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Robert F. Martwick,2022-04-05,['amendment-introduction'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2023-01-09,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-05-26,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Second Reading - Short Debate,2021-03-17,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-04-08,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-01-09,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-01-05,[],IL,102nd +Referred to Assignments,2022-04-01,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-001-000,2023-01-05,['committee-passage-favorable'],IL,102nd +Governor Approved,2021-11-23,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-10-27,[],IL,102nd +"Effective Date August 27, 2022",2022-05-27,[],IL,102nd +Third Reading - Passed; 040-017-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading March 25, 2022",2022-03-24,[],IL,102nd +Third Reading - Passed; 037-017-000,2023-01-10,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-06-04,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2021-05-04,[],IL,102nd +Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 014-000-000,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2022-03-17,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Veterans' Affairs Committee,2022-04-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 015-000-000,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 4 Adopted; Stadelman,2021-10-28,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 011-008-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 4 Adopted; Hunter,2021-05-30,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-05,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Doris Turner,2021-10-28,['filing'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Public Act . . . . . . . . . 102-0785,2022-05-13,['became-law'],IL,102nd +Third Reading - Passed; 039-016-000,2023-01-05,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-08,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2023-01-10,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-01-04,['amendment-introduction'],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2021-10-28,[],IL,102nd +House Committee Amendment No. 2 Land Conveyance Appraisal Note Requested as Amended by Rep. Rita Mayfield,2022-03-15,[],IL,102nd +Governor Approved,2022-06-29,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-04-05,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Health,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Katie Stuart,2022-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-04-18,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-03-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Thaddeus Jones,2022-04-05,[],IL,102nd +House Floor Amendment No. 4 Adopted,2021-10-28,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. William Davis,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-04-04,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +House Floor Amendment No. 1 State Debt Impact Note Filed as Amended,2022-02-23,[],IL,102nd +House Floor Amendment No. 3 State Debt Impact Note Filed as Amended,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-09,['referral-committee'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2023-01-05,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 009-005-000,2021-10-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-04-08,[],IL,102nd +"Senate Floor Amendment No. 3 Motion Filed Concur Rep. Lawrence Walsh, Jr.",2023-01-06,[],IL,102nd +First Reading,2022-02-23,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2022-04-07,[],IL,102nd +"Senate Floor Amendment No. 4 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-04-05,['referral-committee'],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-09,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Justin Slaughter,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2022-04-01,[],IL,102nd +Public Act . . . . . . . . . 102-0740,2022-05-06,['became-law'],IL,102nd +House Floor Amendment No. 4 Rules Refers to Energy & Environment Committee,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-25,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-05-13,[],IL,102nd +Public Act . . . . . . . . . 102-0657,2021-08-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2022-04-09,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-000-000,2022-03-30,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2022-04-07,[],IL,102nd +Governor Approved,2021-06-17,['executive-signature'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Sims,2021-10-26,['amendment-passage'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Assigned to Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +House Concurs,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-03-25,[],IL,102nd +Public Act . . . . . . . . . 102-1015,2022-05-27,['became-law'],IL,102nd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 017-000-000,2022-04-07,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-1091,2022-06-10,['became-law'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-03-04,[],IL,102nd +"Effective Date June 1, 2022",2021-08-27,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2021-10-27,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-05-12,[],IL,102nd +Public Act . . . . . . . . . 102-0926,2022-05-27,['became-law'],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0966,2022-05-27,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +House Floor Amendment No. 4 Rules Refers to Health Care Licenses Committee,2021-05-24,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Linda Holmes,2021-05-27,['filing'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Christopher Belt,2021-06-01,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-29,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-06,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-01,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-06-01,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-03-29,[],IL,102nd +Public Act . . . . . . . . . 102-0944,2022-05-27,['became-law'],IL,102nd +Third Reading - Passed; 056-000-000,2022-04-09,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Anna Moeller,2021-10-27,[],IL,102nd +Added as Chief Co-Sponsor Sen. Dale Fowler,2022-04-08,[],IL,102nd +Passed Both Houses,2021-06-16,[],IL,102nd +Public Act . . . . . . . . . 102-0709,2022-04-22,['became-law'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-04-05,[],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-04-27,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to State Government,2022-04-05,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0630,2021-08-27,['became-law'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Energy & Environment Committee,2022-04-05,['referral-committee'],IL,102nd +Governor Approved,2021-08-19,['executive-signature'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-03-04,[],IL,102nd +Third Reading - Passed; 040-017-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-03-25,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-03-18,[],IL,102nd +Assigned to Judiciary,2021-05-10,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-14,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2022-04-05,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Swanson,2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-01-05,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Public Act . . . . . . . . . 102-0714,2022-04-29,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2021-05-29,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-05-06,[],IL,102nd +House Floor Amendment No. 3 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Arrived in House,2022-04-09,['introduction'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-01,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-05-26,['referral-committee'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +"Added as Co-Sponsor Sen. Emil Jones, III",2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-09-09,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-03-03,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Third Reading - Passed; 030-021-001,2023-01-10,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 House Concurs 115-000-000,2021-05-30,[],IL,102nd +Postponed - Education,2021-05-05,[],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-04-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Judiciary - Criminal Committee; 012-007-000,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 075-020-001,2023-01-05,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-23,[],IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +Senate Floor Amendment No. 4 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Sponsor Removed Sen. Dale Fowler,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0487,2021-08-20,['became-law'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-20,['amendment-passage'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-05-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2022-03-29,[],IL,102nd +Motion to Reconsider Vote - Prevails 060-037-000,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-05-31,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-05-25,[],IL,102nd +Assigned to Criminal Law,2021-05-11,['referral-committee'],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Jehan Gordon-Booth,2023-01-10,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Motion Withdrawn Sen. Don Harmon,2021-06-01,[],IL,102nd +"Effective Date December 21, 2022",2022-12-21,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-05-31,['filing'],IL,102nd +Added Co-Sponsor Rep. Tim Butler,2021-04-23,[],IL,102nd +Chief Sponsor Changed to Rep. Michael J. Zalewski,2022-12-01,[],IL,102nd +Sent to the Governor,2022-12-16,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 5 Assignments Refers to Executive,2021-05-29,[],IL,102nd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt Executive; 015-000-000,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-04-05,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Jennifer Gong-Gershowitz,2022-04-06,[],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2023-01-05,[],IL,102nd +House Committee Amendment No. 2 Motion Filed to Table Rep. Natalie A. Manley,2022-03-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Removed Co-Sponsor Rep. Daniel Swanson,2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Economic Opportunity & Equity Committee; 007-000-000,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-22,['reading-2'],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +House Committee Amendment No. 1 Balanced Budget Note Filed as Amended,2021-05-30,[],IL,102nd +Third Reading - Extended Debate - Passed 071-043-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading January 5, 2022",2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-03,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +House Floor Amendment No. 4 Motion to Concur Assignments Referred to Human Rights,2021-05-29,['referral-committee'],IL,102nd +"Senate Floor Amendment No. 5 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2021-05-31,['amendment-introduction'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0255,2021-08-06,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-05-20,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 016-008-000,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-05-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Thomas Cullerton,2021-05-03,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-04-08,['referral-committee'],IL,102nd +Senate Concurs,2021-08-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Re-assigned to Executive Committee,2021-10-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Cassidy,2021-05-20,['amendment-introduction'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-31,[],IL,102nd +Governor Approved,2021-06-29,['executive-signature'],IL,102nd +Senate Concurs,2021-10-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-13,[],IL,102nd +House Floor Amendment No. 3 Judicial Note Requested as Amended by Rep. Robyn Gabel,2021-10-27,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-03-29,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Jacqueline Y. Collins,2021-05-31,['filing'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Thomas M. Bennett,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 2 House Concurs 115-000-000,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 009-000-000,2021-05-30,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +House Concurs,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2021-03-23,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-29,[],IL,102nd +Chief Sponsor Changed to Rep. Lindsey LaPointe,2022-04-01,[],IL,102nd +"Effective Date July 1, 2022",2022-06-10,[],IL,102nd +Do Pass as Amended Executive; 009-006-000,2021-05-30,['committee-passage'],IL,102nd +House Committee Amendment No. 1 3/5 Vote Required,2021-06-01,[],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-14,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-001,2021-10-28,"['passage', 'reading-3']",IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +"Effective Date January 1, 2022",2021-08-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-08-23,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Adopted,2022-03-01,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 House Concurs 080-014-001,2022-12-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2021-05-12,[],IL,102nd +"Effective Date October 30, 2021",2021-07-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2021-05-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-26,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-05-29,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-001-000,2022-04-09,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-03-03,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading,2022-03-09,['reading-2'],IL,102nd +House Floor Amendment No. 3 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Governor Approved,2022-06-02,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-19,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-20,[],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-04-09,['amendment-failure'],IL,102nd +Governor Approved,2022-04-19,['executive-signature'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-01-06,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8(b-1) this amendment will remain in the Committee on Assignments.,2021-05-29,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-05-14,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2022-03-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Steve McClure,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-23,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Camille Y. Lilly,2022-04-06,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Sent to the Governor,2023-02-02,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0638,2021-08-27,['became-law'],IL,102nd +Senate Floor Amendment No. 5 Adopted; Villanueva,2023-01-10,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-20,[],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-11,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 8, 2022",2022-04-04,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Higher Education; 008-000-000,2022-04-05,[],IL,102nd +Sponsor Removed Sen. Karina Villa,2023-01-08,[],IL,102nd +"Effective Date February 10, 2023",2023-02-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-11-30,['amendment-failure'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Health,2022-04-04,['referral-committee'],IL,102nd +First Reading,2022-04-06,['reading-1'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +House Floor Amendment No. 3 3/5 Vote Required,2022-12-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-13,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-02-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-03-22,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-11-29,['referral-committee'],IL,102nd +Do Pass / Short Debate Transportation: Vehicles & Safety Committee; 012-000-000,2022-03-16,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-03-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-31,[],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-04-07,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-05-14,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Steve Stadelman,2021-05-28,['filing'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Cullerton,2021-10-20,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-03-30,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patricia Van Pelt,2021-05-11,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-01-05,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 2nd Reading November 29, 2022",2022-11-22,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-07-11,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-03-09,[],IL,102nd +Arrive in Senate,2022-04-06,['introduction'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Kathleen Willis,2021-03-26,['amendment-introduction'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Janet Yang Rohr,2022-03-07,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 2, 5",2021-05-31,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to State Government,2021-05-30,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-01-10,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0523,2021-08-20,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-24,[],IL,102nd +Sent to the Governor,2023-02-07,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Postponed - Criminal Law,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-02-14,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jackie Haas,2022-03-14,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-04-09,[],IL,102nd +"Placed on Calendar Order of 3rd Reading December 1, 2022",2022-11-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 011-005-000,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-10-20,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-03-14,[],IL,102nd +House Floor Amendment No. 3 Pension Note Filed as Amended,2022-01-05,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-01-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2023-01-04,['referral-committee'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-03-30,[],IL,102nd +Recalled to Second Reading,2022-11-30,['reading-2'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-04-08,[],IL,102nd +House Floor Amendment No. 3 State Debt Impact Note Filed as Amended,2022-01-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael J. Zalewski,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2022-03-16,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-02-14,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2022-03-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-03-23,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Third Reading - Passed; 052-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of First Reading,2022-04-06,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-07-13,[],IL,102nd +Second Reading,2022-11-29,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Immigration & Human Rights Committee,2021-05-31,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-01-05,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-03-26,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Avery Bourne,2021-05-20,[],IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. John F. Curran,2021-05-12,[],IL,102nd +Public Act . . . . . . . . . 102-1062,2022-06-10,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-25,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Health,2021-05-29,['referral-committee'],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Tim Butler,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-06-01,[],IL,102nd +3/5 Vote Required,2021-10-26,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-30,[],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Public Act . . . . . . . . . 102-0328,2021-08-06,['became-law'],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2021-05-14,[],IL,102nd +Assigned to Higher Education Committee,2021-05-04,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-05-26,[],IL,102nd +Public Act . . . . . . . . . 102-0178,2021-07-30,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Land Conveyance Appraisal Note Requested as Amended by Rep. Robyn Gabel,2021-10-27,[],IL,102nd +Public Act . . . . . . . . . 102-1089,2022-06-10,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-01,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Laura Fine,2022-03-25,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Dan McConchie,2021-04-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2021-05-20,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Julie A. Morrison,2022-01-05,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Human Rights; 006-000-000,2021-05-29,[],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 057-000-000,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-03,[],IL,102nd +Passed Both Houses,2021-08-31,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-14,['reading-3'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Senate Floor Amendment No. 2 Balanced Budget Note Requested as Amended by Rep. Rita Mayfield,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 5 Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-09,[],IL,102nd +Passed Both Houses,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 115-000-000,2021-05-30,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2, 3",2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-04-01,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 055-000-000,2021-06-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +"Effective Date July 1, 2021",2021-06-29,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-08-31,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Maura Hirschauer,2022-04-09,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-03-03,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2022-04-04,[],IL,102nd +Public Act . . . . . . . . . 102-0954,2022-05-27,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Bush,2022-03-09,['amendment-passage'],IL,102nd +"Effective Date April 19, 2022; some provisions effective July 1, 2022; some provisions effective on the date Senate Bill 3023 of the 102nd General Assembly takes effect",2022-04-19,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-1132,2023-02-10,['became-law'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0977,2022-05-27,['became-law'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +"Effective Date June 2, 2022",2022-06-02,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3",2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-05-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-11-30,['amendment-failure'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-20,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 045-008-000,2022-12-01,[],IL,102nd +"Effective Date February 10, 2023",2023-02-10,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2022-11-29,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-13,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-8(b-1) this amendment will remain in the Committee on Assignments.,2021-05-29,[],IL,102nd +Arrived in House,2022-04-07,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2023-01-03,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0983,2022-05-27,['became-law'],IL,102nd +Arrived in House,2022-02-28,['introduction'],IL,102nd +Third Reading - Passed; 052-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Health; 012-000-000,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-11,[],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-04-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2022-04-07,[],IL,102nd +Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0480,2021-08-20,['became-law'],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +Sponsor Removed Sen. Linda Holmes,2023-01-08,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 6 Adopted; Villanueva,2023-01-10,['amendment-passage'],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2022-04-05,[],IL,102nd +Public Act . . . . . . . . . 102-1130,2023-02-10,['became-law'],IL,102nd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Michael J. Zalewski,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0413,2021-08-20,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0414,2021-08-20,['became-law'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2021-05-31,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura M. Murphy,2021-09-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2021-05-26,[],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-27,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 5 - May 31, 2021",2021-05-31,[],IL,102nd +Chief Senate Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-04-09,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-01-06,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Thaddeus Jones,2022-04-05,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +House Floor Amendment No. 3 Balanced Budget Note Filed as Amended,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-04-05,[],IL,102nd +Removed Co-Sponsor Rep. Emanuel Chris Welch,2022-02-23,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2021-10-20,[],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Executive Committee; 012-001-000,2022-04-08,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2023-01-05,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-03-15,[],IL,102nd +House Floor Amendment No. 4 Rules Refers to Revenue & Finance Committee,2022-04-08,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2023-01-04,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-10-28,[],IL,102nd +Arrived in House,2023-01-05,['introduction'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2023-01-10,[],IL,102nd +"Effective Date January 1, 2023",2022-06-29,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-10,[],IL,102nd +House Committee Amendment No. 2 Pension Note Requested as Amended by Rep. Rita Mayfield,2022-03-15,[],IL,102nd +Senate Committee Amendment No. 1 Postponed - Revenue,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-31,[],IL,102nd +Assigned to Executive Committee,2021-04-08,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2022-03-09,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Education,2021-05-24,[],IL,102nd +Public Act . . . . . . . . . 102-0348,2021-08-13,['became-law'],IL,102nd +"Effective Date June 10, 2021",2021-06-10,[],IL,102nd +Second Reading,2021-05-30,['reading-2'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-25,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-07-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-29,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Andrew S. Chesney,2021-04-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Mike Simmons,2022-04-07,['filing'],IL,102nd +Arrived in House,2022-03-30,['introduction'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 045-011-000,2021-06-01,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Governor Approved,2022-03-25,['executive-signature'],IL,102nd +House Concurs,2021-06-16,[],IL,102nd +Public Act . . . . . . . . . 102-0323,2021-08-06,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-30,[],IL,102nd +Reported Back To Judiciary; 003-000-000,2021-05-18,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Passed Both Houses,2021-06-16,[],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-06-01,[],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2021-05-19,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0660,2021-08-30,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2021-10-19,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Scott M. Bennett,2022-04-08,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0645,2021-08-27,['became-law'],IL,102nd +Governor Approved,2022-05-17,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Suzanne Ness,2021-05-27,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 4",2021-10-28,[],IL,102nd +House Concurs,2021-06-01,[],IL,102nd +Second Reading - Short Debate,2021-05-19,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 022-000-000,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to Executive,2021-03-23,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-04,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-10,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0649,2021-08-27,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0306,2021-08-06,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-04-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Butler,2022-03-17,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 107-001-003,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-29,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Assigned to Executive Committee,2022-03-28,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-05-27,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2021-05-05,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-05-05,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - October 27, 2021",2021-10-27,[],IL,102nd +Public Act . . . . . . . . . 102-0922,2022-05-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2022-05-26,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-04-20,[],IL,102nd +Public Act . . . . . . . . . 102-1006,2022-05-27,['became-law'],IL,102nd +Senate Floor Amendment No. 1 House Concurs 113-000-000,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2022-04-08,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-03-17,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Ann M. Williams,2022-04-01,[],IL,102nd +Added as Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-21,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-1001,2022-05-27,['became-law'],IL,102nd +"Effective Date May 6, 2022",2022-05-06,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2023-01-09,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to State Government Administration Committee,2022-04-07,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-01-09,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2023-01-06,[],IL,102nd +Public Act . . . . . . . . . 102-0963,2022-05-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-05-16,[],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-04-07,['amendment-failure'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Veterans' Affairs Committee; 010-000-000,2022-04-06,[],IL,102nd +Arrived in House,2023-01-10,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-10-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-30,[],IL,102nd +Second Reading - Short Debate,2023-01-05,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-04-05,[],IL,102nd +Chief House Sponsor Rep. Anna Moeller,2021-04-30,[],IL,102nd +"Effective Date November 23, 2021",2021-11-23,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0980,2022-05-27,['became-law'],IL,102nd +Governor Approved,2022-06-02,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 105-000-001,2022-03-03,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2022-03-25,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Health; 011-000-000,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-04-28,[],IL,102nd +House Floor Amendment No. 4 Rules Refers to Higher Education Committee,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2023-01-05,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Arrive in Senate,2022-04-06,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Criminal Law,2022-03-29,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2021-10-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 111-001-000,2022-04-07,[],IL,102nd +Removed Co-Sponsor Rep. Thomas M. Bennett,2021-05-12,[],IL,102nd +House Committee Amendment No. 1 Fiscal Note Filed as Amended,2021-05-30,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Natalie A. Manley,2021-04-22,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-03-22,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-001-000,2021-05-28,['committee-passage-favorable'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-11-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-05-31,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2023-01-10,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-04-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Frances Ann Hurley,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-05-21,[],IL,102nd +Do Pass Criminal Law; 009-000-000,2021-05-19,['committee-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-21,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-002-000,2022-04-08,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-05-21,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2023-01-03,[],IL,102nd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Assigned to Revenue & Finance Committee,2022-03-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-16,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2022-04-07,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2021-03-09,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2021-05-25,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-07,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2021-10-27,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2022-03-30,['amendment-introduction'],IL,102nd +Referred to Assignments,2022-02-23,['referral-committee'],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-06-01,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 008-000-000,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-27,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2022-04-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2021-04-27,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Public Act . . . . . . . . . 102-0987,2022-05-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2022-03-16,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 050-006-000,2022-04-08,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-03-09,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +"Effective Date June 17, 2021",2021-06-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-10-27,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-09,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. William Davis,2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-06-16,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Sims,2021-10-26,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Education,2021-05-30,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Energy & Environment Committee,2022-04-05,['referral-committee'],IL,102nd +Third Reading - Passed; 053-002-000,2022-04-09,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-30,[],IL,102nd +"Effective Date August 19, 2021",2021-08-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-04-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-04-23,[],IL,102nd +Public Act . . . . . . . . . 102-0198,2021-07-30,['became-law'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Consumer Protection Committee,2021-10-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-04-07,[],IL,102nd +Passed Both Houses,2022-01-05,[],IL,102nd +Second Reading,2021-05-18,['reading-2'],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-10-27,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0584,2021-08-27,['became-law'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-04,['reading-3'],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Energy & Environment Committee; 018-005-002,2022-04-07,['committee-passage-favorable'],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-04-06,[],IL,102nd +Sponsor Removed Sen. Jason Plummer,2021-05-26,[],IL,102nd +Sent to the Governor,2021-06-21,['executive-receipt'],IL,102nd +Assigned to Education,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-15,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-26,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-11,[],IL,102nd +Do Pass Education; 012-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tim Butler,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0875,2022-05-13,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0344,2021-08-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-05-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Public Safety,2021-05-12,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-05,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-03-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-09-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-03-11,[],IL,102nd +Arrived in House,2021-05-31,['introduction'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-03,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 066-036-000,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2021-05-29,[],IL,102nd +Public Act . . . . . . . . . 102-0862,2022-05-13,['became-law'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-05-18,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2021-04-20,['amendment-introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tim Butler,2022-03-14,[],IL,102nd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2022-04-09,['amendment-failure'],IL,102nd +Arrived in House,2023-01-10,['introduction'],IL,102nd +Passed Both Houses,2023-01-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-04-07,[],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2022-04-01,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 057-000-000,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 5 Recommend Do Adopt Executive; 005-000-000,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Michael J. Zalewski,2022-12-01,[],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +Public Act . . . . . . . . . 102-1113,2022-12-21,['became-law'],IL,102nd +Governor Approved,2022-12-21,['executive-signature'],IL,102nd +"Effective Date June 1, 2023",2022-12-21,[],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Katie Stuart,2022-12-01,[],IL,102nd +Public Act . . . . . . . . . 102-0407,2021-08-19,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Consumer Protection Committee,2021-10-28,['referral-committee'],IL,102nd +Arrived in House,2022-04-09,['introduction'],IL,102nd +"House Floor Amendment No. 8 Filed with Clerk by Rep. Lawrence Walsh, Jr.",2022-04-07,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-04-07,['amendment-failure'],IL,102nd +Chief Sponsor Changed to Rep. Elizabeth Hernandez,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-30,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-05-30,[],IL,102nd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-003-000,2021-05-25,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Senate Concurs 057-000-000,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-04-05,[],IL,102nd +House Floor Amendment No. 5 Filed with Clerk by Rep. Deb Conroy,2021-05-26,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-1014,2022-05-27,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2022-03-22,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Energy & Environment Committee,2022-04-05,['referral-committee'],IL,102nd +Arrived in House,2022-04-08,['introduction'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 050-006-000,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Christopher Belt,2021-06-01,['filing'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2021-10-28,[],IL,102nd +Sent to the Governor,2022-01-07,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2021-04-16,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-05-29,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-10-27,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 3,2022-04-01,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kambium Buckner,2021-10-27,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2021-06-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-04-26,[],IL,102nd +Public Act . . . . . . . . . 102-1081,2022-06-10,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-04-27,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-03-16,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-29,[],IL,102nd +Public Act . . . . . . . . . 102-0979,2022-05-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-04-26,[],IL,102nd +Public Act . . . . . . . . . 102-0646,2021-08-27,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0016,2021-06-17,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-05-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-26,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-06-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-03-31,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2022-04-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2021-10-27,[],IL,102nd +Chief Senate Sponsor Sen. Robert F. Martwick,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-03-12,[],IL,102nd +Second Reading - Short Debate,2022-03-30,['reading-2'],IL,102nd +Arrived in House,2022-04-09,['introduction'],IL,102nd +"Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-04-06,[],IL,102nd +House Floor Amendment No. 5 Motion to Concur Filed with Secretary Sen. Linda Holmes,2021-05-27,['filing'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Justin Slaughter,2022-04-05,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-05-13,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of First Reading,2022-04-06,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-23,[],IL,102nd +Governor Approved,2022-06-07,['executive-signature'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Executive Committee,2021-10-28,['referral-committee'],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Greg Harris,2022-04-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Kelly M. Cassidy,2023-01-05,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 111-001-000,2022-04-07,[],IL,102nd +House Committee Amendment No. 1 Adopted in Ethics & Elections Committee; by Voice Vote,2021-05-30,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2021-05-21,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Sent to the Governor,2021-06-11,['executive-receipt'],IL,102nd +House Floor Amendment No. 5 Filed with Clerk by Rep. Suzanne Ness,2022-03-04,['amendment-introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. David A. Welter,2021-05-25,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2021-05-20,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2023-01-10,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-30,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-01-05,[],IL,102nd +Waive Posting Notice,2021-05-17,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 4, 5",2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-04-06,[],IL,102nd +Do Pass / Short Debate Appropriations-Human Services Committee; 023-000-000,2022-03-17,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) May 28, 2021",2021-05-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2021-05-10,[],IL,102nd +Arrived in House,2022-04-09,['introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-03-18,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 27, 2021",2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-03-25,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2022-04-07,['amendment-introduction'],IL,102nd +Approved for Consideration Assignments,2022-03-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2021-05-17,[],IL,102nd +House Concurs,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2022-04-05,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2022-03-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-05-06,[],IL,102nd +Moved to Suspend Rule 21 Rep. Greg Harris,2021-05-29,[],IL,102nd +Sent to the Governor,2023-01-19,['executive-receipt'],IL,102nd +Chief Sponsor Changed to Rep. Kathleen Willis,2022-04-09,[],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Rules Committee; 003-001-000,2021-09-09,['committee-passage-favorable'],IL,102nd +Assigned to Criminal Law,2022-03-28,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-08,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-1066,2022-06-10,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-03-21,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-04-15,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Executive Committee,2022-04-08,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-10,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-10-07,[],IL,102nd +Do Pass as Amended Criminal Law; 008-000-000,2021-05-25,['committee-passage'],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +House Floor Amendment No. 4 Rules Refers to Executive Committee,2023-01-10,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Michael E. Hastings,2021-05-31,['filing'],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2023-01-10,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2021-05-26,[],IL,102nd +Public Act . . . . . . . . . 102-0042,2021-06-29,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-30,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-05-29,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-30,[],IL,102nd +Sent to the Governor,2021-11-24,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2021-05-20,[],IL,102nd +Sent to the Governor,2021-09-02,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 5 Assignments Refers to Executive,2021-05-31,[],IL,102nd +House Committee Amendment No. 2 Senate Concurs 057-000-000,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0620,2021-08-27,['became-law'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-05,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Jacqueline Y. Collins,2021-05-31,['filing'],IL,102nd +House Floor Amendment No. 2 3/5 Vote Required,2021-06-01,[],IL,102nd +Sent to the Governor,2022-12-06,['executive-receipt'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 115-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-10-26,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Second Reading,2021-05-30,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Correctional Note Requested as Amended by Rep. Rita Mayfield,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2022-01-05,['amendment-introduction'],IL,102nd +"Effective Date January 1, 2022",2021-08-16,[],IL,102nd +Public Act . . . . . . . . . 102-0626,2021-08-27,['became-law'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-09-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-06-01,[],IL,102nd +Removed from Consent Calendar Status Rep. Kelly M. Cassidy,2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2021-05-12,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2, 3 - October 28, 2021",2021-10-28,[],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-05-29,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Human Rights; 006-000-000,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 074-040-000,2022-04-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2021-05-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +House Floor Amendment No. 3 Pension Note Requested as Amended by Rep. Robyn Gabel,2021-10-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2022-04-01,[],IL,102nd +Public Act . . . . . . . . . 102-1083,2022-06-10,['became-law'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 070-028-006,2022-03-01,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Mark Luft,2022-03-03,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2022-03-14,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2022-03-16,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Murphy,2022-11-30,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Home Rule Note Filed as Amended,2022-01-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Executive Committee,2023-01-04,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-02-14,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Criminal Law; 007-003-000,2022-03-29,[],IL,102nd +"Alternate Chief Co-Sponsor Changed to Sen. Elgie R. Sims, Jr.",2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-01-05,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Non-Concur Rep. Jennifer Gong-Gershowitz,2021-06-16,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Healthcare Access and Availability,2021-05-12,[],IL,102nd +"Placed on Calendar Order of 3rd Reading November 30, 2022",2022-11-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-07-13,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-26,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-04-06,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 049-000-000,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-01-08,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2022-03-23,[],IL,102nd +Public Act . . . . . . . . . 102-1127,2023-02-10,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Cities & Villages Committee,2022-11-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-05-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Ann M. Williams,2022-04-06,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michael Halpin,2022-03-23,[],IL,102nd +Sponsor Removed Sen. Christopher Belt,2023-01-08,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Human Services Committee,2022-04-05,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2021-05-12,[],IL,102nd +Public Act . . . . . . . . . 102-0699,2022-04-19,['became-law'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to State Government Administration Committee,2022-04-07,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2022-04-05,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Eva-Dina Delgado,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-29,[],IL,102nd +Arrived in House,2022-11-30,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-04-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 19, 2021",2021-05-18,[],IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2022-04-08,[],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0949,2022-05-27,['became-law'],IL,102nd +Senate Concurs,2022-12-01,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Anne Stava-Murray,2022-04-09,[],IL,102nd +"Effective Date July 1, 2022",2021-08-13,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-03,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Bush,2022-03-09,['amendment-passage'],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-20,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-1041,2022-06-02,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-03-29,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2023-01-09,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-04-13,[],IL,102nd +Senate Committee Amendment No. 3 Pursuant to Senate Rule 3-8(b-1) this amendment will remain in the Committee on Assignments.,2021-05-29,[],IL,102nd +Chief House Sponsor Rep. Tony McCombie,2022-02-28,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-05-17,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-04-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2022-04-07,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Arrived in House,2022-03-30,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-04-05,[],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Higher Education Committee; 010-000-000,2021-05-31,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Third Reading - Short Debate - Passed 082-032-001,2021-05-20,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2021-05-21,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Eric Mattson,2022-05-18,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 096-012-001,2021-06-01,[],IL,102nd +Public Act . . . . . . . . . 102-1058,2022-06-10,['became-law'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-1068,2022-06-10,['became-law'],IL,102nd +Senate Floor Amendment No. 5 House Concurs 111-000-001,2022-04-08,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3",2021-05-28,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-29,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-05-30,[],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 31, 2021",2021-05-30,[],IL,102nd +Passed Both Houses,2021-06-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-03-29,[],IL,102nd +Assigned to Labor,2022-03-16,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-19,[],IL,102nd +"Effective Date March 25, 2022",2022-03-25,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 115-000-000,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-12,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Chief Sponsor Changed to Rep. Jay Hoffman,2021-10-28,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-10-28,['filing'],IL,102nd +Public Act . . . . . . . . . 102-0013,2021-06-10,['became-law'],IL,102nd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-03-24,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-07-21,[],IL,102nd +Sent to the Governor,2021-07-15,['executive-receipt'],IL,102nd +House Floor Amendment No. 3 Senate Concurs 045-011-000,2021-06-01,[],IL,102nd +Do Pass Executive; 011-004-000,2021-05-06,['committee-passage'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Sent to the Governor,2021-11-22,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 5 House Concurs 113-005-000,2021-05-31,[],IL,102nd +Governor Approved,2021-07-06,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. William Davis,2021-04-14,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2021-10-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-04-08,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-26,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Labor & Commerce Committee,2021-06-15,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 013-000-000,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2021-06-15,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-04-29,[],IL,102nd +First Reading,2021-04-28,['reading-1'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +"Effective Date May 17, 2022",2022-05-17,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Katie Stuart,2021-05-25,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-03-17,[],IL,102nd +Recalled to Second Reading,2021-10-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-01-06,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-04-07,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-01-05,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-03-03,[],IL,102nd +House Floor Amendment No. 4 Adopted,2022-04-08,['amendment-passage'],IL,102nd +Governor Approved,2022-05-16,['executive-signature'],IL,102nd +House Floor Amendment No. 1 Land Conveyance Appraisal Note Filed as Amended,2022-02-24,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2022-04-09,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-04-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-10-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Fine,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2022-03-10,[],IL,102nd +House Committee Amendment No. 2 Racial Impact Note Requested as Amended by Rep. Rita Mayfield,2022-03-15,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-01-05,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-002-000,2021-05-31,['committee-passage-favorable'],IL,102nd +Sponsor Removed Sen. Sally J. Turner,2023-01-10,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Doris Turner,2021-10-28,['filing'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2023-01-05,['amendment-passage'],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Revenue & Finance Committee; 010-007-000,2022-04-08,['committee-passage-favorable'],IL,102nd +"Committee Deadline Extended-Rule 9(b) April 23, 2021",2021-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-10-28,[],IL,102nd +Postponed - Revenue,2022-03-30,[],IL,102nd +Public Act . . . . . . . . . 102-1102,2022-06-29,['became-law'],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-03,['amendment-failure'],IL,102nd +First Reading,2021-05-04,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2022-04-07,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Rules Referred to Executive Committee,2023-01-09,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-04-05,['reading-2'],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-04-08,[],IL,102nd +Public Act . . . . . . . . . 102-0670,2021-11-23,['became-law'],IL,102nd +Third Reading - Passed; 056-000-000,2021-10-20,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-03-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-05-31,[],IL,102nd +"Effective Date January 1, 2023",2022-06-02,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-07,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-07,['referral-committee'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0727,2022-05-06,['became-law'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Recommends Be Adopted Revenue & Finance Committee; 016-000-000,2021-05-06,['committee-passage-favorable'],IL,102nd +Recalled to Second Reading,2021-10-27,['reading-2'],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Revenue,2021-05-29,['referral-committee'],IL,102nd +Recalled to Second Reading,2023-01-06,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-07,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2023-01-10,[],IL,102nd +Assigned to Energy and Public Utilities,2021-05-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-29,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Adopted,2023-01-05,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Arrived in House,2022-04-07,['introduction'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-03-10,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-05-26,[],IL,102nd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2021-10-27,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-01-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-01-05,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Munoz,2022-04-05,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2022-04-05,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Kelly M. Burke,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2022-03-17,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-07,[],IL,102nd +Third Reading - Passed; 055-000-000,2021-10-28,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3, 4",2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-21,[],IL,102nd +Governor Approved,2022-05-26,['executive-signature'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2022-04-06,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-01-09,[],IL,102nd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2021-05-30,['amendment-failure'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Pacione-Zayas,2023-01-06,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Belt,2021-10-27,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Fiscal Note Filed as Amended,2021-04-21,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-10-27,['referral-committee'],IL,102nd +Assigned to Labor,2021-04-28,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-1038,2022-06-02,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 009-006-000,2023-01-10,[],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2022-03-03,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Agriculture,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-03-10,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Placed on Calendar Order of Resolutions,2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2022-04-01,[],IL,102nd +Arrived in House,2021-10-20,['introduction'],IL,102nd +Postponed - Energy and Public Utilities,2021-05-20,[],IL,102nd +Do Pass as Amended Public Safety; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-0874,2022-05-13,['became-law'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Do Pass / Short Debate Executive Committee; 014-000-000,2022-04-04,['committee-passage'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Third Reading - Consideration Postponed,2021-05-26,['reading-3'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0325,2021-08-06,['became-law'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Revenue; 007-000-000,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2021-04-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Robyn Gabel,2022-03-18,[],IL,102nd +Referred to Rules Committee,2021-05-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-01-05,[],IL,102nd +House Floor Amendment No. 3 Judicial Note Filed as Amended,2022-03-03,[],IL,102nd +"Effective Date May 16, 2022",2022-05-16,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Lightford,2021-10-20,['amendment-passage'],IL,102nd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-01-06,[],IL,102nd +House Floor Amendment No. 1 Housing Affordability Impact Note Filed as Amended,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-08,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-03-27,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2022-03-22,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Norine K. Hammond,2022-04-05,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Loughran-Cappel,2022-04-07,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-04-05,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-05-31,['amendment-passage'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-05,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2022-04-08,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 096-012-001,2021-06-01,[],IL,102nd +Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2021-05-13,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-04-14,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Governor Approved,2021-12-17,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-0288,2021-08-06,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 016-000-000,2021-10-27,[],IL,102nd +Public Act . . . . . . . . . 102-0696,2022-03-25,['became-law'],IL,102nd +House Floor Amendment No. 1 Senate Concurs 058-000-000,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-29,[],IL,102nd +Chief Sponsor Changed to Rep. Katie Stuart,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-12-07,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-05-18,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-05-31,[],IL,102nd +Passed Both Houses,2021-05-20,[],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 116-000-000,2021-06-16,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Labor & Commerce Committee,2021-06-15,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Katie Stuart,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0888,2022-05-17,['became-law'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 015-000-000,2021-03-24,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-27,['referral-committee'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-30,['executive-receipt'],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Chapin Rose,2021-10-28,[],IL,102nd +"Effective Date July 6, 2021",2021-07-06,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2022-03-16,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Thomas Cullerton,2021-05-03,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2022-03-18,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0621,2021-08-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-24,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 116-001-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Arrived in House,2022-03-29,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 005-000-000,2021-10-20,[],IL,102nd +Public Act . . . . . . . . . 102-0029,2021-06-25,['became-law'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-07-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-30,[],IL,102nd +House Floor Amendment No. 4 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Sponsor Removed Sen. Dale Fowler,2023-01-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Do Pass as Amended Executive; 013-003-000,2023-01-05,['committee-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. William Davis,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +"Chief Sponsor Changed to Rep. Curtis J. Tarver, II",2023-01-05,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Executive Committee,2022-04-08,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Greg Harris,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-05-06,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Keith R. Wheeler,2022-03-14,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-27,['committee-passage-favorable'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 4,2022-04-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-06,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-09-09,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-01,[],IL,102nd +Suspend Rule 21 - Prevailed 066-042-000,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2022-04-01,[],IL,102nd +Governor Approved,2023-01-23,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2021-04-15,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-12,[],IL,102nd +First Reading,2022-01-05,['reading-1'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2021-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2021-05-18,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +Third Reading - Short Debate - Passed 073-031-008,2021-03-18,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading March 22, 2022",2022-03-16,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2021-10-28,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Suzy Glowiak Hilton,2021-05-27,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-05-10,[],IL,102nd +Chief Sponsor Changed to Rep. Jay Hoffman,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Kathleen Willis,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2022-04-05,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Jennifer Gong-Gershowitz,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-04-20,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-31,[],IL,102nd +Arrive in Senate,2022-04-05,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-01,['amendment-failure'],IL,102nd +Do Pass as Amended / Standard Debate Ethics & Elections Committee; 010-008-000,2021-05-30,['committee-passage'],IL,102nd +"Effective Date January 1, 2023",2022-06-07,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-04-06,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Natalie A. Manley,2021-04-23,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2023-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-10-28,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Mental Health & Addiction Committee,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Michael J. Zalewski,2022-12-01,[],IL,102nd +Public Act . . . . . . . . . 102-1114,2022-12-21,['became-law'],IL,102nd +Governor Amendatory Veto,2021-06-15,['executive-veto'],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-23,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-30,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Delia C. Ramirez,2021-10-27,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-06-01,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 036-017-000,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2021-04-19,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-13,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-11-09,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-04-28,[],IL,102nd +Public Act . . . . . . . . . 102-0256,2021-08-06,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2022-04-07,[],IL,102nd +House Floor Amendment No. 8 Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-30,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-07,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2021-05-29,[],IL,102nd +Governor Approved,2022-01-07,['executive-signature'],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2022-04-07,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-03-12,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Consumer Protection Committee; 005-000-000,2021-10-28,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Executive,2022-04-06,[],IL,102nd +House Floor Amendment No. 5 Motion to Concur Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Third Reading - Standard Debate - Passed 114-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2022-04-09,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Energy & Environment Committee; 026-000-000,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Greg Harris,2023-01-09,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2022-03-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +Sent to the Governor,2021-07-15,['executive-receipt'],IL,102nd +House Floor Amendment No. 5 Referred to Rules Committee,2021-05-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2022-04-09,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 3 - April 4, 2022",2022-04-01,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Elizabeth Hernandez,2021-05-28,[],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Assigned to Criminal Law,2022-03-28,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Ellman,2021-05-30,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Margaret Croke,2021-04-26,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2021-05-26,[],IL,102nd +Assigned to Judiciary,2021-05-11,['referral-committee'],IL,102nd +"Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-04-06,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-13,[],IL,102nd +Third Reading - Passed; 032-022-000,2021-10-26,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kathleen Willis,2021-05-21,[],IL,102nd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-20,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Recalled to Second Reading - Short Debate,2021-05-29,['reading-2'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +House Floor Amendment No. 5 Referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2021-05-24,[],IL,102nd +Governor Approved,2021-06-16,['executive-signature'],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-10,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2021-05-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-04-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Human Services Committee,2022-04-05,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 003-000-000,2021-05-11,[],IL,102nd +Passed Both Houses,2022-12-01,[],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-30,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-03-31,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted State Government Administration Committee; 008-000-000,2022-04-07,[],IL,102nd +Second Reading - Short Debate,2022-03-23,['reading-2'],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Rules Referred to Cities & Villages Committee,2022-11-29,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-03-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-05-10,[],IL,102nd +First Reading,2022-03-01,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-30,[],IL,102nd +Public Act . . . . . . . . . 102-0373,2021-08-13,['became-law'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 3,2022-11-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2021-04-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-07,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Deb Conroy,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-05-06,[],IL,102nd +Third Reading - Passed; 041-016-000,2023-01-10,"['passage', 'reading-3']",IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-07,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of First Reading March 8, 2022",2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 4 Adopted; Bush,2022-03-09,['amendment-passage'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2021-05-27,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2022-04-09,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 030-021-000,2023-01-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-04-25,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2022-03-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Burke,2022-03-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-02-15,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 103-006-003,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-11-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-29,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-01-12,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Filed as Amended,2022-01-05,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 5 Motion Filed Concur Rep. Michael J. Zalewski,2021-05-31,[],IL,102nd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2023-01-10,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 057-000-000,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 26, 2021",2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-10-13,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-01-10,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-21,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0382,2021-08-16,['became-law'],IL,102nd +Governor Approved,2021-12-10,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-01-05,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-19,[],IL,102nd +House Floor Amendment No. 4 Motion To Concur Recommended Do Adopt Human Rights; 006-000-000,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Alternate Chief Co-Sponsor Changed to Sen. Robert Peters,2022-04-01,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2021-05-13,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 055-000-000,2021-06-01,[],IL,102nd +Do Pass / Consent Calendar Higher Education Committee; 010-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2022-03-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Scott M. Bennett,2021-05-03,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Governor Approved,2022-12-06,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2021-05-29,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-20,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-05-19,[],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Arrive in Senate,2022-03-02,['introduction'],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +Removed Co-Sponsor Rep. Mark Luft,2022-03-03,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-27,[],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +House Floor Amendment No. 3 Racial Impact Note Requested as Amended by Rep. Robyn Gabel,2021-10-27,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2021-09-10,[],IL,102nd +Arrived in House,2021-10-27,['introduction'],IL,102nd +Governor Approved,2021-09-24,['executive-signature'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 31, 2021",2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 074-040-000,2022-04-09,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. John Connor,2021-10-28,['filing'],IL,102nd +"Alternate Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2021-05-20,[],IL,102nd +Senate Concurs,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2022-03-28,[],IL,102nd +Sponsor Removed Sen. Jacqueline Y. Collins,2021-10-19,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Health; 011-000-000,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Rita Mayfield,2021-10-28,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 24, 2021",2021-05-21,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 31, 2021",2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-04-06,[],IL,102nd +House Committee Amendment No. 2 State Debt Impact Note Requested as Amended by Rep. Rita Mayfield,2022-03-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-01-05,[],IL,102nd +Senate Committee Amendment No. 1 Motion Prevailed ; - Non-Concur,2021-06-16,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-07-14,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-12,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-04-06,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-07-14,[],IL,102nd +House Committee Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Rita Mayfield,2022-03-15,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-12,[],IL,102nd +Sponsor Removed Sen. Adriane Johnson,2021-08-16,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Rule 19(b) / Motion Referred to Rules Committee,2021-06-16,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2023-01-05,[],IL,102nd +First Reading,2022-04-06,['reading-1'],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Second Reading,2021-05-28,['reading-2'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-10-20,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Tom Demmer,2023-01-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-26,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 057-000-000,2021-05-31,[],IL,102nd +House Floor Amendment No. 5 Motion to Concur Filed with Secretary Sen. Michael E. Hastings,2021-05-31,['filing'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - January 10, 2023",2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2022-04-07,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - April 4, 2022",2022-04-01,[],IL,102nd +Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-11-30,[],IL,102nd +Third Reading - Passed; 047-000-002,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Assigned to Executive,2021-05-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-23,[],IL,102nd +Do Pass Insurance; 012-000-000,2021-05-19,['committee-passage'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-31,[],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2022-03-09,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2022-04-07,['amendment-introduction'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Ann M. Williams,2022-04-05,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Eva-Dina Delgado,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-05-06,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Human Services Committee; 014-000-000,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-23,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-11,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Eric Mattson,2022-05-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Cities & Villages Committee; 010-000-000,2022-11-29,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Third Reading - Passed; 036-018-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-04-07,[],IL,102nd +Senate Concurs,2023-01-08,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 5 Adopted; Bush,2022-03-09,['amendment-passage'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-01-10,['amendment-failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-04-14,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2022-03-14,[],IL,102nd +3/5 Vote Required,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-02-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-30,[],IL,102nd +Governor Approved,2022-06-03,['executive-signature'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2022-01-12,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Land Conveyance Appraisal Note Filed as Amended,2022-01-05,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-04-04,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2022-03-21,[],IL,102nd +Public Act . . . . . . . . . 102-0232,2021-07-30,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas Morrison,2021-05-21,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +"Effective Date December 10, 2021",2021-12-10,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-02,['reading-1'],IL,102nd +"Effective Date September 24, 2021",2021-09-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Delia C. Ramirez,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-10-27,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-10-27,[],IL,102nd +Senate Floor Amendment No. 5 Recommend Do Adopt Executive; 010-002-000,2021-05-31,[],IL,102nd +House Concurs,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-29,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Christopher Belt,2021-05-30,['filing'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2021-09-14,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Lindsey LaPointe,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-05-31,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-20,[],IL,102nd +House Floor Amendment No. 3 State Debt Impact Note Requested as Amended by Rep. Robyn Gabel,2021-10-27,[],IL,102nd +Senate Concurs,2021-06-01,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Senate Concurs 057-000-000,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0251,2021-08-06,['became-law'],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 015-000-000,2022-03-30,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-13,[],IL,102nd +Third Reading - Passed; 033-019-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Kimberly A. Lightford,2021-04-29,[],IL,102nd +"Effective Date December 6, 2022",2022-12-06,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 2 Home Rule Note Requested as Amended by Rep. Rita Mayfield,2021-10-28,[],IL,102nd +Public Act . . . . . . . . . 102-1074,2022-06-10,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 5 Recommends Be Adopted Rules Committee; 003-001-000,2022-03-04,['committee-passage-favorable'],IL,102nd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. Curtis J. Tarver, II",2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-23,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 040-015-000,2023-01-10,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-31,[],IL,102nd +Do Pass / Short Debate Executive Committee; 012-000-000,2021-04-14,['committee-passage'],IL,102nd +Waive Posting Notice,2022-04-05,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-03-30,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2022-03-31,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Assigned to Higher Education,2021-05-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-04-05,[],IL,102nd +House Floor Amendment No. 4 Adopted,2021-05-31,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Greg Harris,2023-01-09,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Kelly M. Burke,2023-01-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-04-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-07-06,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-03,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2023-01-06,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Adopted; Belt,2021-10-27,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-01-09,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-20,[],IL,102nd +Public Act . . . . . . . . . 102-0906,2022-05-27,['became-law'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-05,[],IL,102nd +"Placed on Calendar - Consideration Postponed May 27, 2021",2021-05-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-30,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 3 Postponed - Executive,2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2021-05-30,[],IL,102nd +"Effective Date January 1, 2023",2022-05-26,[],IL,102nd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Deb Conroy,2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2021-10-27,['filing'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael J. Zalewski,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2021-10-28,['amendment-failure'],IL,102nd +Public Act . . . . . . . . . 102-0483,2021-08-20,['became-law'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2022-04-07,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-10-20,[],IL,102nd +Do Pass / Short Debate Health Care Licenses Committee; 007-000-000,2022-03-23,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. William Davis,2022-04-07,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-04-30,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2021-05-06,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-03-10,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-21,[],IL,102nd +Governor Approved,2021-07-27,['executive-signature'],IL,102nd +Added Chief Co-Sponsor Rep. Jay Hoffman,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Judiciary - Civil Committee,2022-04-06,['referral-committee'],IL,102nd +Assigned to Criminal Law,2022-03-23,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Ann M. Williams,2021-10-27,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +House Floor Amendment No. 3 Fiscal Note Filed as Amended,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Lightford,2021-10-20,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Loughran-Cappel,2022-04-07,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2022-04-09,[],IL,102nd +Third Reading - Short Debate - Passed 089-014-003,2022-04-08,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-01-05,[],IL,102nd +House Floor Amendment No. 1 Balanced Budget Note Filed as Amended,2022-02-24,[],IL,102nd +Public Act . . . . . . . . . 102-0885,2022-05-16,['became-law'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-05-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2022-04-08,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-26,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jay Hoffman,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-07-21,[],IL,102nd +Public Act . . . . . . . . . 102-0043,2021-07-06,['became-law'],IL,102nd +"Effective Date June 1, 2022",2021-08-27,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-21,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 015-000-000,2021-03-24,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2021-05-20,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 016-009-000,2021-06-16,[],IL,102nd +Recalled to Second Reading,2021-10-20,['reading-2'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-29,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +House Concurs,2021-06-16,[],IL,102nd +Public Act . . . . . . . . . 102-0291,2021-08-06,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2021-04-28,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Cristina Castro,2022-03-22,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. David Koehler,2021-05-24,['filing'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Michael E. Hastings,2022-05-18,[],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Katie Stuart,2021-05-28,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Stephanie A. Kifowit,2022-03-31,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Andrew S. Chesney,2021-04-16,[],IL,102nd +"Effective Date December 17, 2021",2021-12-17,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2021-05-28,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-24,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2022-03-21,[],IL,102nd +House Concurs,2021-06-01,[],IL,102nd +Assigned to Insurance,2021-05-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2021-05-24,[],IL,102nd +Chief Senate Sponsor Sen. Thomas Cullerton,2021-04-27,[],IL,102nd +"Effective Date January 1, 2022",2021-06-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-22,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2021-05-27,[],IL,102nd +Chief Senate Sponsor Sen. Sue Rezin,2021-04-19,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Delia C. Ramirez,2021-05-21,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas Morrison,2021-05-21,[],IL,102nd +Read in Full a Second Time,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 1 Postponed - Higher Education,2021-05-25,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-10,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-29,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 041-018-000,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-04-23,[],IL,102nd +Placed on Calendar Amendatory Veto,2021-06-15,[],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2021-05-31,[],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2021-05-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 009-006-000,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Emanuel Chris Welch,2022-04-09,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-04-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-05-29,[],IL,102nd +House Floor Amendment No. 5 Filed with Clerk by Rep. Dan Ugaste,2021-09-09,['amendment-introduction'],IL,102nd +Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2022-03-18,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 5 Motion Filed Concur Rep. Greg Harris,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2022-03-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2022-03-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sandra Hamilton,2022-04-05,[],IL,102nd +Arrive in Senate,2021-03-19,['introduction'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2021-10-28,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-03-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-04-08,[],IL,102nd +"Effective Date January 23, 2023",2023-01-23,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-20,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-03-25,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-04-09,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-09,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Rules Committee; 003-001-000,2023-01-05,['committee-passage-favorable'],IL,102nd +First Reading,2022-04-06,['reading-1'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Public Act . . . . . . . . . 102-1047,2022-06-07,['became-law'],IL,102nd +Placed on Calendar 2nd Reading - Standard Debate,2021-05-30,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-22,[],IL,102nd +Placed on Calendar Order of First Reading,2022-04-05,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2022-03-31,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Chief Sponsor Changed to Rep. Kambium Buckner,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +House Committee Amendment No. 4 Tabled Pursuant to Rule 40,2022-04-07,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-03-16,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-10-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Katie Stuart,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2021-05-29,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Rep. Kelly M. Burke,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0150,2021-07-23,['became-law'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 015-000-001,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Consumer Protection Committee; 005-000-000,2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 109-000-000,2022-04-07,[],IL,102nd +To Judiciary- Property Law,2021-05-12,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Energy & Environment Committee; 026-000-000,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-06,[],IL,102nd +Chief Sponsor Changed to Rep. Jay Hoffman,2022-04-29,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Second Reading - Short Debate,2021-04-13,['reading-2'],IL,102nd +Arrived in House,2021-10-27,['introduction'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-07,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +"Effective Date January 7, 2022",2022-01-07,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2021-05-19,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted State Government Administration Committee; 008-000-000,2022-04-07,[],IL,102nd +Senate Concurs,2021-06-01,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-01,[],IL,102nd +"House Floor Amendment No. 2 Withdrawn by Rep. Lawrence Walsh, Jr.",2022-04-07,[],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2022-01-04,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ann Gillespie,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-04-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2022-03-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2022-04-09,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Sally J. Turner,2022-04-04,['filing'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2022-04-07,[],IL,102nd +Chief Co-Sponsor Changed to Sen. Laura Ellman,2021-05-30,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2021-04-19,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2021-05-29,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Chris Bos,2022-03-29,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2022-04-07,[],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +Added Chief Co-Sponsor Rep. Robyn Gabel,2022-04-29,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 112-000-000,2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2021-05-28,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to Judiciary,2021-05-29,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2022-04-09,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 015-000-001,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Katie Stuart,2022-04-08,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2021-10-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-03-17,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mark L. Walker,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2022-03-30,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2021-05-29,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 010-002-000,2021-05-30,[],IL,102nd +Assigned to Executive,2021-05-04,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2021-04-27,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-01-04,[],IL,102nd +House Floor Amendment No. 4 Adopted,2022-04-07,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-30,[],IL,102nd +Public Act . . . . . . . . . 102-0301,2021-08-06,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0693,2022-01-07,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 109-000-000,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-1103,2022-12-06,['became-law'],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-13,['amendment-passage'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-05-12,[],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Kambium Buckner,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-04-19,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Jennifer Gong-Gershowitz,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-19,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-10-27,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2022-03-03,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-29,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-20,[],IL,102nd +Public Act . . . . . . . . . 102-1119,2023-01-23,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-01,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Robyn Gabel,2022-03-18,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 017-000-000,2022-04-08,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2022-03-14,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Human Rights,2021-05-27,['referral-committee'],IL,102nd +Passed Both Houses,2021-03-25,[],IL,102nd +"Placed on Calendar Order of First Reading March 19, 2021",2021-03-19,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-04-05,[],IL,102nd +Do Pass Judiciary; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2023-01-10,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2022-04-09,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-03-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-03-18,[],IL,102nd +Third Reading - Short Debate - Passed 109-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2021-10-28,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-07,[],IL,102nd +Assigned to Human Services Committee,2021-05-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Executive Committee; 009-006-000,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-01-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jackie Haas,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2022-04-09,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2021-05-19,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-05-20,['committee-passage-favorable'],IL,102nd +Do Pass Education; 014-001-000,2021-05-19,['committee-passage'],IL,102nd +Assigned to Executive,2022-03-28,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-05-20,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +First Reading,2021-05-21,['reading-1'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 28, 2021",2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0014,2021-06-16,['became-law'],IL,102nd +Do Pass Health; 013-000-000,2021-05-25,['committee-passage'],IL,102nd +Third Reading - Short Debate - Passed 114-000-002,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Michael J. Zalewski,2022-12-01,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Recalled to Second Reading,2021-05-30,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-12-01,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2021-05-30,['amendment-introduction'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-04-07,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Emanuel Chris Welch,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-05,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-05-17,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-05,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2021-05-29,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Verified,2021-05-31,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +House Floor Amendment No. 3 State Mandates Fiscal Note Requested as Amended by Rep. Robyn Gabel,2021-10-27,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-03-02,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-03,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-21,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2021-05-31,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0663,2021-09-24,['became-law'],IL,102nd +Sent to the Governor,2021-06-30,['executive-receipt'],IL,102nd +"Effective Date January 1, 2022",2021-08-16,[],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 2 Housing Affordability Impact Note Requested as Amended by Rep. Rita Mayfield,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 011-002-002,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-08-03,[],IL,102nd +Public Act . . . . . . . . . 102-0682,2021-12-10,['became-law'],IL,102nd +Chief Sponsor Changed to Rep. Anthony DeLuca,2021-10-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-05-31,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. John Connor,2021-10-28,['filing'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 009-006-000,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-09-16,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2021-05-31,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-03-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2021-05-13,[],IL,102nd +3/5 Vote Required,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dan McConchie,2021-04-29,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-05-24,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2022-03-31,['amendment-introduction'],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-000,2021-05-21,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Cities & Villages Committee; 011-000-000,2022-11-30,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +First Reading,2022-03-09,['reading-1'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Referred to Rules Committee,2021-05-06,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Passed Both Houses,2023-01-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-09,[],IL,102nd +Third Reading - Short Debate - Passed 098-013-000,2021-04-14,"['passage', 'reading-3']",IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-05-13,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-09,['amendment-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Assigned to Human Services Committee,2022-03-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. LaToya Greenwood,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Revenue & Finance Committee,2022-12-01,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-03-31,['amendment-failure'],IL,102nd +Public Act . . . . . . . . . 102-0928,2022-05-27,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-01-10,['amendment-failure'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Ann M. Williams,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2022-06-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Eva-Dina Delgado,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-03-28,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Energy & Environment Committee; 026-000-000,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2021-04-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2022-04-07,[],IL,102nd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2021",2021-05-11,['reading-3'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Laura Ellman,2022-04-04,['filing'],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2022-04-07,[],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +Chief Senate Sponsor Sen. Bill Cunningham,2022-03-04,[],IL,102nd +House Floor Amendment No. 5 Referred to Rules Committee,2021-09-09,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-04-05,[],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Ellman,2022-04-08,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-01-05,[],IL,102nd +House Non-Concurs,2021-06-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-05-14,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-15,['amendment-failure'],IL,102nd +Sponsor Removed Sen. Doris Turner,2021-08-16,[],IL,102nd +Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-07-25,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Ann Gillespie,2023-01-10,['filing'],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2022-01-19,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 29, 2021",2021-05-28,[],IL,102nd +House Floor Amendment No. 5 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Amendatory Veto Motion - Motion Filed Accept Amendatory Veto Sen. Don Harmon,2021-06-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-04-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2021-06-01,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-14,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-03-21,[],IL,102nd +House Floor Amendment No. 4 Rules Refers to Police & Fire Committee,2022-01-19,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Eric Mattson,2022-05-10,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-02-15,[],IL,102nd +"Effective Date June 3, 2022",2022-06-03,[],IL,102nd +Third Reading - Passed; 039-018-000,2022-11-30,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Deb Conroy,2022-03-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-04-04,[],IL,102nd +House Floor Amendment No. 2 Housing Affordability Impact Note Filed as Amended,2022-01-06,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Andrew S. Chesney,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 016-009-000,2021-06-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-30,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-04-08,[],IL,102nd +Postponed - Executive,2022-03-23,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-29,[],IL,102nd +Recalled to Second Reading,2021-05-28,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2021-05-29,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 24, 2021",2021-05-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-05-13,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-05-19,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-24,['referral-committee'],IL,102nd +Passed Both Houses,2021-06-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-30,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Do Pass Labor; 015-000-000,2022-03-23,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-04,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-05-20,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +Public Act . . . . . . . . . 102-0595,2021-08-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-20,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 017-000-000,2022-04-08,[],IL,102nd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt Executive; 015-000-000,2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 074-037-000,2021-05-30,[],IL,102nd +Governor Approved,2021-07-15,['executive-signature'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Cunningham,2021-10-20,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0690,2021-12-17,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Bill Cunningham,2021-10-27,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-05-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2021-05-03,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Do Pass Labor; 012-003-000,2021-05-12,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-26,[],IL,102nd +Third Reading - Passed; 058-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-05-31,[],IL,102nd +"Effective Date January 1, 2022",2021-07-27,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-03-03,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-01-09,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-04-08,[],IL,102nd +Arrived in House,2021-05-30,['introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-10-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Deb Conroy,2022-04-07,[],IL,102nd +Second Reading - Short Debate,2022-04-04,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Celina Villanueva,2021-05-19,['amendment-introduction'],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2022-04-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 016-000-000,2022-04-07,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-01-06,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Stephanie A. Kifowit,2021-10-26,[],IL,102nd +Arrived in House,2021-10-28,['introduction'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-01-09,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-05-06,[],IL,102nd +Public Act . . . . . . . . . 102-0905,2022-05-26,['became-law'],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. William Davis,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-04-08,[],IL,102nd +Public Act . . . . . . . . . 102-1025,2022-05-27,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-01-10,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Delia C. Ramirez,2022-03-21,[],IL,102nd +Third Reading - Passed; 054-000-000,2023-01-06,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-01-05,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-03-31,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-11-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-30,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-25,[],IL,102nd +Recalled to Second Reading - Short Debate,2022-03-04,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-04-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-01-05,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +Senate Concurs,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2021-10-28,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Scott M. Bennett,2021-05-11,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Sandra Hamilton,2022-04-05,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-06-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-31,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-20,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Health Care Licenses Committee,2021-10-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-04-05,[],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2022-04-08,['amendment-failure'],IL,102nd +House Floor Amendment No. 1 Judicial Note Filed as Amended,2022-02-24,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-01-05,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Judiciary - Civil Committee,2022-04-06,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Land Conveyance Appraisal Note Filed as Amended,2022-03-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-09,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2022-04-07,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Norine K. Hammond,2022-04-05,[],IL,102nd +House Floor Amendment No. 3 Tabled Pursuant to Rule 40,2022-04-08,['amendment-failure'],IL,102nd +House Committee Amendment No. 1 Pension Note Filed as Amended,2023-01-05,[],IL,102nd +House Floor Amendment No. 3 Housing Affordability Impact Note Filed as Amended,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Health Care Licenses Committee,2021-10-28,['referral-committee'],IL,102nd +Third Reading - Passed; 037-017-000,2021-10-20,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Melinda Bush,2022-03-28,['amendment-introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-04-09,[],IL,102nd +House Floor Amendment No. 1 Correctional Note Filed as Amended,2022-02-24,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Executive Committee,2023-01-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-03-29,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-11-29,[],IL,102nd +Do Pass as Amended Revenue; 007-003-001,2022-04-05,['committee-passage'],IL,102nd +Passed Both Houses,2023-01-10,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Brian W. Stewart,2022-03-31,[],IL,102nd +Second Reading,2023-01-05,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-05-31,[],IL,102nd +House Floor Amendment No. 5 Adopted,2022-03-04,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Thaddeus Jones,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-04-14,[],IL,102nd +"Effective Date July 1, 2022",2021-08-27,[],IL,102nd +Third Reading - Passed; 037-017-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Sue Rezin,2021-05-21,['filing'],IL,102nd +Public Act . . . . . . . . . 102-0618,2021-08-27,['became-law'],IL,102nd +Sent to the Governor,2021-06-03,['executive-receipt'],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Curran,2021-05-28,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Jay Hoffman,2021-10-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Kambium Buckner,2022-04-05,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 078-033-000,2021-06-16,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-05-19,[],IL,102nd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2021-05-25,['amendment-passage'],IL,102nd +Sent to the Governor,2021-07-15,['executive-receipt'],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-10-27,['referral-committee'],IL,102nd +"Effective Date July 15, 2021",2021-07-15,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 017-000-000,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Rachelle Crowe,2021-05-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dave Syverson,2021-04-29,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 30, 2021",2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2021-05-20,[],IL,102nd +"Effective Date February 27, 2022",2021-08-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-20,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Mental Health & Addiction Committee,2022-04-05,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-13,[],IL,102nd +House Committee Amendment No. 1 3/5 Vote Required,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-20,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-03,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Health,2021-05-25,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-04,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-03-03,[],IL,102nd +Public Act . . . . . . . . . 102-0170,2021-07-27,['became-law'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Robert F. Martwick,2022-04-07,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-31,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-05-06,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2022-03-23,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Lakesia Collins,2022-04-07,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 4",2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. William Davis,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-04-04,['reading-2'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - January 8, 2023",2023-01-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-04-25,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Agriculture; 009-000-000,2022-03-31,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-19,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-22,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3, 4",2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-04-08,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2022-04-01,[],IL,102nd +Reported Back To Executive; 003-000-000,2021-05-26,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-01-09,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-01-09,['referral-committee'],IL,102nd +Arrived in House,2022-04-05,['introduction'],IL,102nd +Arrived in House,2023-01-06,['introduction'],IL,102nd +Senate Floor Amendment No. 4 Tabled Pursuant to Rule 5-4(a),2023-01-10,['amendment-failure'],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-01-10,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Jennifer Gong-Gershowitz,2022-04-06,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +3/5 Vote Required,2021-10-27,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-12-01,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-11,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-04-05,[],IL,102nd +Governor Approved,2021-08-25,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Third Reading - Short Debate - Passed 070-046-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +First Reading,2022-04-05,['reading-1'],IL,102nd +Chief Senate Sponsor Sen. Michael E. Hastings,2021-04-23,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2021-05-17,[],IL,102nd +House Committee Amendment No. 3 Filed with Clerk by Rep. Natalie A. Manley,2022-03-22,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Greg Harris,2023-01-05,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Steve McClure,2021-05-27,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2021-05-29,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 26, 2021",2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-27,[],IL,102nd +Third Reading - Short Debate - Passed 065-042-001,2021-05-29,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 056-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-05-26,[],IL,102nd +Referred to Rules Committee,2021-05-21,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +House Floor Amendment No. 5 Motion to Concur Assignments Referred to Judiciary,2021-05-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 24, 2021",2021-05-21,[],IL,102nd +Second Reading - Short Debate,2022-03-22,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-01-05,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-22,[],IL,102nd +Governor Approved,2021-08-26,['executive-signature'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0343,2021-08-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-04-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Thaddeus Jones,2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-07,[],IL,102nd +Arrive in Senate,2022-04-06,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2022-04-09,[],IL,102nd +Moved to Suspend Rule 21 Rep. Elizabeth Hernandez,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-20,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2021-04-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-29,[],IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Michelle Mussman,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-1032,2022-05-27,['became-law'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Senate Floor Amendment No. 4 House Concurs 109-000-000,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 071-045-000,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2022-04-07,[],IL,102nd +Assigned to Insurance,2021-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to Criminal Law,2022-04-04,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-30,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 3/5 Vote Required,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-03-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-03-16,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 112-001-000,2021-10-28,[],IL,102nd +"House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-000-000",2021-10-27,['committee-passage-favorable'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2022-03-30,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 049-003-000,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 112-000-000,2022-04-07,[],IL,102nd +Chief Sponsor Changed to Rep. Anna Moeller,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-30,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 3, 4",2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2022-04-05,[],IL,102nd +Public Act . . . . . . . . . 102-0588,2021-08-27,['became-law'],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-13,[],IL,102nd +Chief Senate Sponsor Sen. Omar Aquino,2021-03-19,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Suzanne Ness,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2022-03-14,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-03-22,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Referred to Rules Committee,2023-01-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-03-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2022-04-06,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-01-07,[],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Thomas Morrison,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 071-043-000,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-03,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jay Hoffman,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2022-03-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 102-002-000,2022-04-09,[],IL,102nd +Removed Co-Sponsor Rep. Kathleen Willis,2021-05-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ann Gillespie,2022-04-08,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-03-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-04-05,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-28,[],IL,102nd +Third Reading - Passed; 055-002-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-03-01,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2022-04-01,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 5 Adopted; Villa,2021-05-30,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-23,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Balanced Budget Note Filed as Amended,2022-01-06,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +House Floor Amendment No. 4 To Law Enforcement Subcommittee,2022-01-28,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-04-14,[],IL,102nd +Public Act . . . . . . . . . 102-1042,2022-06-03,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-02-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-04-04,[],IL,102nd +Arrived in House,2022-11-30,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-21,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Natalie A. Manley,2022-03-14,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2023-01-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-08-10,[],IL,102nd +House Committee Amendment No. 2 Adopted in Energy & Environment Committee; by Voice Vote,2022-03-15,['amendment-passage'],IL,102nd +Secretary's Desk - Non-Concurrence Senate Amendment(s) 1,2021-09-13,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-04-06,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-08-26,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 017-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2021-05-13,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-29,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Scott M. Bennett,2021-05-31,[],IL,102nd +Third Reading - Consent Calendar - Passed 112-000-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Public Act . . . . . . . . . 102-0384,2021-08-16,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2021-10-04,[],IL,102nd +Governor Approved,2021-08-02,['executive-signature'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Recalled to Second Reading,2022-01-05,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0021,2021-06-25,['became-law'],IL,102nd +House Floor Amendment No. 4 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Arrived in House,2021-05-31,['introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Anthony DeLuca,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 2 Judicial Note Requested as Amended by Rep. Rita Mayfield,2021-10-28,[],IL,102nd +"Effective Date January 1, 2022",2021-07-23,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-30,[],IL,102nd +First Reading,2022-03-02,['reading-1'],IL,102nd +Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Passed Both Houses,2021-05-21,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-31,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Land Conveyance Appraisal Note Filed as Amended,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Judiciary - Civil Committee,2022-04-05,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 009-006-000,2021-05-31,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-10-28,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2021-05-28,['filing'],IL,102nd +Public Act . . . . . . . . . 102-0372,2021-08-13,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-06-15,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-07,[],IL,102nd +Added Co-Sponsor Rep. Thaddeus Jones,2021-04-23,[],IL,102nd +Added Chief Co-Sponsor Rep. Fred Crespo,2022-11-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-27,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-22,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +Third Reading - Passed; 054-003-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 112-000-000,2022-04-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2022-03-08,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Referred to Assignments,2022-03-09,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Do Pass Licensed Activities; 006-000-000,2022-03-30,['committee-passage'],IL,102nd +"Final Action Deadline Extended-9(b) January 10, 2023",2022-12-30,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-04-14,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - April 7, 2022",2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert F. Martwick,2022-04-07,['amendment-introduction'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Maura Hirschauer,2021-05-25,[],IL,102nd +Third Reading - Passed; 049-000-000,2022-03-09,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-04-07,[],IL,102nd +House Floor Amendment No. 3 Adopted,2022-04-09,['amendment-passage'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Tony McCombie,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-07-05,[],IL,102nd +House Floor Amendment No. 4 Adopted,2021-09-09,['amendment-passage'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-01-08,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2021-06-01,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Amendatory Veto Motion - Motion Referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0478,2021-08-20,['became-law'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-03-23,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-01-10,['referral-committee'],IL,102nd +Third Reading - Passed; 040-016-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-04-27,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2021-06-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-01-10,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 3, 4",2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-04-27,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-29,['amendment-failure'],IL,102nd +Amendatory Veto Motion - Approved for Consideration Assignments,2021-06-15,[],IL,102nd +Public Act . . . . . . . . . 102-0805,2022-05-13,['became-law'],IL,102nd +Recalled to Second Reading,2021-05-31,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-31,[],IL,102nd +House Floor Amendment No. 3 Balanced Budget Note Filed as Amended,2021-10-27,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 009-006-000,2021-05-31,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. John Connor,2021-10-28,['filing'],IL,102nd +Public Act . . . . . . . . . 102-0110,2021-07-23,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Morrison,2022-01-05,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. John F. Curran,2021-10-07,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-08-02,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 2 Land Conveyance Appraisal Note Requested as Amended by Rep. Rita Mayfield,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2021-05-25,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 003-002-000,2022-04-03,['committee-passage-favorable'],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Public Act . . . . . . . . . 102-0321,2021-08-06,['became-law'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-10-28,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-24,['reading-2'],IL,102nd +Referred to Assignments,2022-03-02,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Thaddeus Jones,2021-05-31,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-06-16,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-08-26,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-31,[],IL,102nd +Governor Approved,2021-07-15,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-29,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 078-033-000,2021-06-16,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +House Floor Amendment No. 1 Senate Concurs 056-000-000,2021-05-31,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-27,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Dave Vella,2022-03-14,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-04-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2022-04-04,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-11-30,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2022-01-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Adam Niemerg,2022-03-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-31,[],IL,102nd +"Effective Date January 1, 2024",2022-05-13,[],IL,102nd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2021-04-23,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-11-21,[],IL,102nd +"Placed on Calendar Order of Non-Concurrence Senate Amendment(s) 1 - October 19, 2021",2021-09-13,[],IL,102nd +Do Pass as Amended Healthcare Access and Availability; 007-000-000,2021-05-19,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-01-05,[],IL,102nd +Do Pass as Amended / Short Debate Energy & Environment Committee; 017-009-000,2022-03-15,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-27,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 014-000-000,2023-01-05,[],IL,102nd +Assigned to Revenue & Finance Committee,2021-05-12,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-17,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-31,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Scott M. Bennett,2022-04-07,['filing'],IL,102nd +Arrived in House,2021-05-27,['introduction'],IL,102nd +Governor Approved,2021-08-19,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Health Care Availability & Accessibility Committee,2022-04-06,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-09,[],IL,102nd +Governor Approved,2022-06-16,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2022-03-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Cassidy,2021-05-20,['amendment-introduction'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to Energy and Public Utilities,2022-04-04,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-03-09,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-09-09,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Sent to the Governor,2022-12-07,['executive-receipt'],IL,102nd +Chief Co-Sponsor Changed to Rep. Fred Crespo,2022-11-30,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-07-08,[],IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2022-03-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Sent to the Governor,2023-01-08,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 015-000-000,2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2021-05-25,[],IL,102nd +Governor Approved,2021-08-24,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 096-000-004,2022-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-07-22,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +"Effective Date January 1, 2022",2021-08-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-05-13,[],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Health; 014-000-000,2021-05-25,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2022-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0614,2021-08-27,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0100,2021-07-15,['became-law'],IL,102nd +3/5 Vote Required,2021-10-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-03,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Governor Approved,2021-06-03,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 060-052-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 House Concurs 115-000-000,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-28,[],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +Public Act . . . . . . . . . 102-0266,2021-08-06,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0594,2021-08-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-04-25,[],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Public Act . . . . . . . . . 102-0253,2021-08-06,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-1077,2022-06-10,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-05-04,[],IL,102nd +Added as Co-Sponsor Sen. Jason Plummer,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 041-017-000,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Katie Stuart,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-03-29,[],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2021-04-19,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Mental Health & Addiction Committee; 012-000-000,2022-04-07,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-20,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Michael E. Hastings,2021-05-29,['filing'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2021-05-17,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 042-007-000,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 022-000-000,2021-05-25,['committee-passage'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 050-000-000,2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Home Rule Note Filed as Amended,2022-02-25,[],IL,102nd +Arrive in Senate,2022-04-05,['introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 016-000-000,2022-04-07,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +House Committee Amendment No. 1 State Debt Impact Note Filed as Amended,2023-01-05,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 4,2022-04-08,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-02-17,[],IL,102nd +Senate Committee Amendment No. 1 Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-04-09,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-10-20,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-001,2023-01-06,[],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Rules Committee; 005-000-000,2022-11-30,['committee-passage-favorable'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 6, 2023",2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-04-14,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2021-05-31,[],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2023-01-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-01-09,[],IL,102nd +Governor Approved,2022-05-26,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0475,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 070-031-000,2023-01-10,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-10-27,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-27,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt Criminal Law; 009-000-000,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-03-10,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Dave Vella,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 112-000-000,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Veterans' Affairs Committee,2021-10-26,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-04-26,[],IL,102nd +Chief Sponsor Changed to Sen. Christopher Belt,2023-01-08,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-31,[],IL,102nd +Resolution Adopted,2021-05-06,['passage'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-04-21,[],IL,102nd +Arrive in Senate,2022-04-06,['introduction'],IL,102nd +Third Reading - Passed; 053-001-000,2021-10-27,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-01-06,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2023-01-09,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Public Safety,2021-05-20,[],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kambium Buckner,2022-03-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2023-01-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2021-06-03,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Revenue & Finance Committee,2022-12-01,['referral-committee'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2022-04-09,[],IL,102nd +Suspend Rule 21 - Prevailed,2022-04-07,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2021-05-14,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2022-03-16,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2021-04-19,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2021-05-13,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-05-29,[],IL,102nd +Third Reading - Short Debate - Passed 110-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2022-04-09,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sam Yingling,2022-04-07,[],IL,102nd +Postponed - Executive,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Education,2022-03-31,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Anna Moeller,2021-10-27,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-10-27,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 040-017-000,2021-06-01,[],IL,102nd +"Effective Date January 1, 2022",2021-08-26,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 057-001-000,2021-05-30,[],IL,102nd +House Floor Amendment No. 3 Tabled Pursuant to Rule 40,2022-04-07,['amendment-failure'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Win Stoller,2021-05-21,['filing'],IL,102nd +Placed on Calendar Order of First Reading,2022-04-06,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-03-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-04-27,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 006-002-000,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jay Hoffman,2022-05-23,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Do Pass as Amended Energy and Public Utilities; 019-000-000,2021-05-20,['committee-passage'],IL,102nd +Recalled to Second Reading,2022-04-07,['reading-2'],IL,102nd +House Concurs,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 067-042-000,2022-01-05,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Governor Approved,2021-07-29,['executive-signature'],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2022-04-07,[],IL,102nd +House Floor Amendment No. 5 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-27,['committee-passage-favorable'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-14,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert F. Martwick,2022-03-31,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Removed Co-Sponsor Rep. Anthony DeLuca,2021-05-17,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +House Committee Amendment No. 3 Referred to Rules Committee,2022-03-22,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2023-01-05,[],IL,102nd +House Floor Amendment No. 2 Balanced Budget Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added Chief Co-Sponsor Rep. Keith R. Wheeler,2022-04-07,[],IL,102nd +Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2021-05-21,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-14,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-27,['amendment-failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-26,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-29,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2021-05-26,[],IL,102nd +Assigned to Education,2021-05-10,['referral-committee'],IL,102nd +Assigned to Criminal Law,2021-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 5 Motion to Concur Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-03,[],IL,102nd +Sent to the Governor,2021-04-02,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-03-18,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-04-21,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 3, 4 - October 28, 2021",2021-10-28,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-29,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2021-05-13,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-03-29,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2023-01-10,[],IL,102nd +First Reading,2021-03-19,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-04-28,[],IL,102nd +Public Act . . . . . . . . . 102-0860,2022-05-13,['became-law'],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Deb Conroy,2022-03-21,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-09,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-05-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 014-000-000,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 071-043-000,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Human Rights; 006-000-000,2021-05-29,[],IL,102nd +House Concurs,2022-04-09,[],IL,102nd +Third Reading - Short Debate - Passed 112-001-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 4 House Concurs 072-042-000,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2022-01-10,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2022-03-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Luft,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Burke,2021-05-06,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-20,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 2, 3",2021-05-27,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Suzanne Ness,2021-05-06,[],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-19,[],IL,102nd +Governor Approved,2022-06-02,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-03-01,[],IL,102nd +House Floor Amendment No. 2 Note / Motion Filed - Note Act Does Not Apply Rep. Barbara Hernandez,2021-05-20,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2022-03-03,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2022-03-29,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-01-10,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Seth Lewis,2022-04-01,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Governor Approved,2021-04-02,['executive-signature'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2022-04-07,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Cristina Castro,2022-04-06,[],IL,102nd +Governor Approved,2022-06-16,['executive-signature'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +House Concurs,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2021-05-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-19,[],IL,102nd +Do Pass Executive; 013-003-000,2022-04-05,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Robert Rita,2022-03-14,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-21,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-04-01,['reading-2'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-03-18,[],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2023-01-10,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-13,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-04-08,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2023-01-05,[],IL,102nd +House Floor Amendment No. 2 Correctional Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-10-28,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-05-18,[],IL,102nd +House Committee Amendment No. 4 Filed with Clerk by Rep. Natalie A. Manley,2022-03-23,['amendment-introduction'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 House Concurs 096-000-004,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Revenue & Finance Committee,2022-12-01,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-15,['executive-receipt'],IL,102nd +3/5 Vote Required,2021-06-15,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Joyce,2022-04-07,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-03-22,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 094-014-000,2022-04-09,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-16,['referral-committee'],IL,102nd +"Effective Date June 1, 2022",2021-07-29,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 112-001-000,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-04-14,[],IL,102nd +Chief Sponsor Changed to Sen. Robert F. Martwick,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-27,[],IL,102nd +House Floor Amendment No. 2 3/5 Vote Required,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2022-04-04,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2022-03-31,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-25,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2021-05-29,[],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2022-04-09,[],IL,102nd +Public Act . . . . . . . . . 102-1017,2022-05-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-04-01,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Suzanne Ness,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-05-23,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Mike Murphy,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 013-000-000,2022-04-01,[],IL,102nd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt Judiciary; 006-002-000,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-19,[],IL,102nd +House Floor Amendment No. 5 Tabled Pursuant to Rule 40,2022-04-07,['amendment-failure'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 057-001-000,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0986,2022-05-27,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Public Act . . . . . . . . . 102-0582,2021-08-26,['became-law'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-04-06,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-24,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2021-10-28,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 30, 2021",2021-05-29,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Pensions,2021-05-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-13,[],IL,102nd +Do Pass Education; 011-000-000,2021-05-19,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-01-05,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Transportation: Regulation, Roads & Bridges Committee",2022-04-06,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Governor Approved,2023-01-09,['executive-signature'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Judiciary - Criminal Committee,2022-04-08,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Melinda Bush,2021-05-21,['amendment-introduction'],IL,102nd +Passed Both Houses,2023-01-10,[],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Arrive in Senate,2021-04-15,['introduction'],IL,102nd +Recalled to Second Reading,2022-04-01,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt Energy and Public Utilities; 013-000-000,2022-04-06,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-20,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 083-033-000,2021-09-09,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2022-04-05,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Availability & Accessibility Committee; 013-000-000,2022-04-07,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-07-18,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2022-03-31,[],IL,102nd +Chief Sponsor Changed to Sen. Michael E. Hastings,2022-04-09,[],IL,102nd +Governor Approved,2022-04-29,['executive-signature'],IL,102nd +Removed Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +"Effective Date June 16, 2022; Some Provisions Effective January 1, 2023",2022-06-16,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +"Effective Date January 1, 2022",2021-08-19,[],IL,102nd +Governor Approved,2022-12-08,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 106-002-000,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-05-25,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-27,[],IL,102nd +Arrived in House,2022-03-10,['introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2022-03-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-04-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sandra Hamilton,2022-03-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-03-17,[],IL,102nd +Public Act . . . . . . . . . 102-0768,2022-05-13,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2022-03-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 016-000-000,2022-04-07,[],IL,102nd +House Floor Amendment No. 4 Rule 19(c) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Judicial Note Filed as Amended,2022-01-07,[],IL,102nd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Maurice A. West, II",2022-11-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Rita Mayfield,2021-04-14,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 054-000-000,2023-01-10,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 3, 4 - May 31, 2021",2021-05-31,[],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2021-06-01,[],IL,102nd +House Committee Amendment No. 1 3/5 Vote Required,2021-10-28,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-06-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-27,[],IL,102nd +Public Act . . . . . . . . . 102-0506,2021-08-20,['became-law'],IL,102nd +Second Reading,2021-05-28,['reading-2'],IL,102nd +House Floor Amendment No. 2 State Debt Impact Note Filed as Amended,2021-10-27,[],IL,102nd +Recalled to Second Reading - Short Debate,2022-04-05,['reading-2'],IL,102nd +Placed on Calendar Agreed Resolutions,2022-11-15,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. David Friess,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Denyse Wang Stoneback,2021-05-31,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-03-31,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Anthony DeLuca,2021-10-27,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to State Government,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Pension Note Requested as Amended by Rep. Rita Mayfield,2021-10-28,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-17,[],IL,102nd +Senate Floor Amendment No. 5 Adopted; Sims,2021-05-31,['amendment-passage'],IL,102nd +"Effective Date July 15, 2021",2021-07-15,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-01-05,[],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +House Concurs,2021-06-16,[],IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2022-03-04,[],IL,102nd +Public Act . . . . . . . . . 102-0235,2021-08-02,['became-law'],IL,102nd +Re-assigned to Criminal Law,2021-10-13,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2021-05-31,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Assigned to Executive,2022-03-22,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-10-28,[],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +Public Act . . . . . . . . . 102-0648,2021-08-27,['became-law'],IL,102nd +Sent to the Governor,2021-06-17,['executive-receipt'],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-29,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 112-000-000,2022-04-07,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-16,[],IL,102nd +Assigned to Appropriations,2021-05-19,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-10-14,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2023-01-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-11-30,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Arrived in House,2023-01-10,['introduction'],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-03-10,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-01-10,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-06-29,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-10-27,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2022-03-31,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-008-000,2022-03-23,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Celina Villanueva,2021-05-21,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-06-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2021-10-28,[],IL,102nd +Placed on Calendar Order of First Reading,2022-04-06,['reading-1'],IL,102nd +"Effective Date January 1, 2023",2022-05-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 058-000-000,2022-04-08,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Do Pass as Amended Executive; 017-000-000,2021-05-27,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-04-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-01-06,[],IL,102nd +House Floor Amendment No. 1 State Mandates Fiscal Note Filed as Amended,2021-04-22,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Christopher Belt,2023-01-08,['filing'],IL,102nd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Veterans' Affairs Committee; 010-000-000,2021-10-26,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 112-000-000,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-08,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +"Added Alternate Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-10-27,['amendment-failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-05-06,[],IL,102nd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Executive Committee,2023-01-09,['referral-committee'],IL,102nd +House Floor Amendment No. 1 State Mandates Fiscal Note Filed as Amended,2022-02-25,[],IL,102nd +House Floor Amendment No. 3 Correctional Note Filed as Amended,2022-03-11,[],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 2 Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Placed on Calendar Order of First Reading,2022-04-05,['reading-1'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 4 - April 8, 2022",2022-04-09,[],IL,102nd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-03-28,[],IL,102nd +Do Pass / Short Debate Executive Committee; 009-005-000,2023-01-05,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-02-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-10-19,[],IL,102nd +Arrived in House,2021-10-20,['introduction'],IL,102nd +"Effective Date January 1, 2022",2021-08-24,[],IL,102nd +Public Act . . . . . . . . . 102-0581,2021-08-25,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-08-17,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-13,[],IL,102nd +Public Act . . . . . . . . . 102-1071,2022-06-10,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2021-04-29,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-05-19,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-05,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 042-007-000,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-13,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Health,2021-05-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2021-10-28,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Bill Cunningham,2021-10-28,['amendment-introduction'],IL,102nd +House Concurs,2022-01-05,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2021-05-24,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-05,[],IL,102nd +Do Pass Executive; 011-006-000,2022-03-30,['committee-passage'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2021-04-19,[],IL,102nd +Public Act . . . . . . . . . 102-1072,2022-06-10,['became-law'],IL,102nd +"Effective Date June 3, 2021",2021-06-03,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 House Concurs 112-000-001,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-25,[],IL,102nd +Assigned to Insurance,2021-05-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-20,[],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Third Reading - Passed; 054-000-000,2021-10-20,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Senate Concurs 058-000-000,2021-03-25,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2022-03-30,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-20,['amendment-passage'],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 3/5 Vote Required,2021-10-28,[],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-01-05,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-03-30,[],IL,102nd +Third Reading - Short Debate - Passed 063-040-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2021-04-14,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 069-040-000,2023-01-06,[],IL,102nd +House Floor Amendment No. 4 Adopted,2022-11-30,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Seth Lewis,2021-05-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-11-30,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-04-01,[],IL,102nd +Sent to the Governor,2023-01-30,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2023-01-05,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-04-14,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2022-03-30,[],IL,102nd +Passed Both Houses,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2022-04-05,[],IL,102nd +Public Act . . . . . . . . . 102-0575,2021-08-24,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-13,[],IL,102nd +Governor Approved,2021-08-17,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. William Davis,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-05-06,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-04-07,[],IL,102nd +Chief Sponsor Changed to Rep. La Shawn K. Ford,2023-01-10,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2022-03-30,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-04-01,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0900,2022-05-26,['became-law'],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-05-30,[],IL,102nd +Arrived in House,2021-10-27,['introduction'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. LaToya Greenwood,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2021-05-13,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2022-04-01,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 3, 4, 5",2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2022-03-25,[],IL,102nd +House Committee Amendment No. 1 3/5 Vote Required,2021-10-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. La Shawn K. Ford,2022-04-06,[],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-06-15,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-04-26,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-03-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Dan Brady,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 013-002-000,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 117-000-000,2021-10-27,[],IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-04-07,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3",2021-10-20,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-04-08,[],IL,102nd +Chief Sponsor Changed to Sen. Bill Cunningham,2022-04-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-03-22,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 041-017-000,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2021-05-03,[],IL,102nd +Do Pass Energy and Public Utilities; 019-000-000,2021-05-20,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-05,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Health; 014-000-000,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Sent to the Governor,2021-06-07,['executive-receipt'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-03-30,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-13,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Michael E. Hastings,2021-05-29,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-05-25,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2022-03-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-04,[],IL,102nd +Arrived in House,2021-10-20,['introduction'],IL,102nd +Second Reading,2021-05-25,['reading-2'],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2021-10-28,[],IL,102nd +Passed Both Houses,2022-01-05,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-28,['amendment-failure'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Higher Education Committee,2021-05-29,['referral-committee'],IL,102nd +Senate Concurs,2021-03-25,[],IL,102nd +Public Act . . . . . . . . . 102-0341,2021-08-13,['became-law'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joe Sosnowski,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-05-19,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 30, 2021",2021-05-29,[],IL,102nd +Governor Approved,2021-08-05,['executive-signature'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2021-10-28,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-05-30,[],IL,102nd +House Floor Amendment No. 5 Senate Concurs 059-000-000,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-27,[],IL,102nd +"House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Elgie R. Sims, Jr.",2021-05-29,['filing'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-05-24,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. John F. Curran,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 4 House Concurs 096-000-004,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Revenue & Finance Committee,2022-12-01,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Robert Peters,2021-04-27,[],IL,102nd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2021-05-30,['amendment-failure'],IL,102nd +Governor Approved,2021-06-17,['executive-signature'],IL,102nd +Accept Amendatory Veto - Senate Passed 036-021-000,2021-06-15,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 3 - May 28, 2021",2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2022-03-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Greg Harris,2021-05-29,[],IL,102nd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2021",2021-05-13,['reading-3'],IL,102nd +"Effective Date April 2, 2021",2021-04-02,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-04-06,[],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-20,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Ann Gillespie,2022-04-08,['amendment-introduction'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +"Effective Date June 2, 2022",2022-06-02,[],IL,102nd +House Floor Amendment No. 2 Motion Prevailed 068-044-001,2021-05-20,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2021-04-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-03-03,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-03-01,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Charles Meier,2021-05-06,[],IL,102nd +Senate Floor Amendment No. 4 House Concurs 071-036-000,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Cunningham,2022-04-01,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2021-03-23,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2022-04-06,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-01-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-04-07,[],IL,102nd +"Effective Date January 1, 2023",2022-06-16,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-03-14,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2022-04-01,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-04-09,[],IL,102nd +Arrive in Senate,2021-03-19,['introduction'],IL,102nd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0758,2022-05-13,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0760,2022-05-13,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2021-04-26,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-01-05,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2021-05-04,[],IL,102nd +House Committee Amendment No. 4 Referred to Rules Committee,2022-03-23,['referral-committee'],IL,102nd +House Floor Amendment No. 6 Tabled Pursuant to Rule 40,2022-04-07,['amendment-failure'],IL,102nd +Recalled to Second Reading,2022-04-01,['reading-2'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Chris Bos,2022-03-30,['amendment-introduction'],IL,102nd +Added as Chief Co-Sponsor Sen. Laura Fine,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Darren Bailey,2022-03-31,[],IL,102nd +Do Pass Executive; 011-006-000,2021-05-27,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Anna Moeller,2021-10-27,[],IL,102nd +First Reading,2022-04-06,['reading-1'],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-05-31,[],IL,102nd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2021-10-27,[],IL,102nd +House Concurs,2021-10-28,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Revenue,2021-05-25,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-21,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-04,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Senate Floor Amendment No. 2 Racial Impact Note Requested as Amended by Rep. Rita Mayfield,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-04-27,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 040-017-000,2021-06-01,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-01-08,['referral-committee'],IL,102nd +Recommends Be Adopted Executive Committee; 015-000-000,2022-04-08,['committee-passage-favorable'],IL,102nd +Public Act . . . . . . . . . 102-0176,2021-07-29,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Joe Sosnowski,2021-05-27,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2021-04-20,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Frances Ann Hurley,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-04-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2022-03-23,[],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2021-05-30,[],IL,102nd +Governor Approved,2022-06-09,['executive-signature'],IL,102nd +House Concurs,2022-04-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-14,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 5 Motion To Concur Recommended Do Adopt Judiciary; 006-002-000,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-30,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Sent to the Governor,2021-05-30,['executive-receipt'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-07,[],IL,102nd +House Committee Amendment No. 2 Land Conveyance Appraisal Note Filed as Amended,2022-03-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2023-01-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +To Appropriations- Health,2021-05-19,[],IL,102nd +Senate Concurs,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael J. Zalewski,2023-01-10,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Kimberly A. Lightford,2021-05-31,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-04-27,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 108-006-001,2021-06-01,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 057-000-000,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-06-10,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2021-05-29,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 29, 2021",2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-04-07,[],IL,102nd +Removed from Consent Calendar Status Rep. Kelly M. Cassidy,2021-05-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Robert F. Martwick,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-1097,2022-06-16,['became-law'],IL,102nd +Chief House Sponsor Rep. Deb Conroy,2022-03-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2022-03-08,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +Chief Sponsor Changed to Rep. LaToya Greenwood,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Judiciary - Criminal Committee,2022-04-08,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 112-000-000,2022-04-07,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-15,['reading-1'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Will Guzzardi,2021-05-29,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to State Government,2022-04-08,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 115-000-000,2022-04-08,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2022-03-08,[],IL,102nd +"Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Transportation: Regulation, Roads & Bridges Committee",2022-04-06,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Health Care Licenses Committee,2022-04-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Fine,2022-04-01,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 House Concurs 104-001-000,2023-01-05,[],IL,102nd +Remove Chief Co-Sponsor Rep. Kathleen Willis,2021-05-25,[],IL,102nd +"Effective Date January 1, 2023",2022-12-08,[],IL,102nd +Do Pass as Amended Executive; 010-006-000,2021-05-19,['committee-passage'],IL,102nd +Sent to the Governor,2023-02-07,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0410,2021-08-19,['became-law'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 110-000-004,2022-04-09,"['passage', 'reading-3']",IL,102nd +Motion Filed to Reconsider Vote Rep. Delia C. Ramirez,2021-09-09,[],IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +"Effective Date April 29, 2022",2022-04-29,[],IL,102nd +Waive Posting Notice,2022-04-05,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Senate Floor Amendment No. 4 House Concurs 106-002-000,2022-11-30,[],IL,102nd +Governor Approved,2022-06-15,['executive-signature'],IL,102nd +House Committee Amendment No. 2 Senate Concurs 058-000-000,2022-04-06,[],IL,102nd +"Effective Date January 9, 2023; ; Some provisions effective on the date House Bill 4285 takes effect; some provisions effective 7-1-24.",2023-01-09,[],IL,102nd +Recalled to Second Reading,2022-04-05,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2022-03-18,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-11-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-07-07,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2022-03-22,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2021-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-04-05,[],IL,102nd +House Floor Amendment No. 3 Fiscal Note Filed as Amended,2022-01-07,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 057-000-000,2021-05-31,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-26,['amendment-passage'],IL,102nd +Passed Both Houses,2021-06-16,[],IL,102nd +Resolution Adopted,2022-11-15,['passage'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As December 1, 2021",2021-10-13,[],IL,102nd +Governor Approved,2021-08-03,['executive-signature'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +House Floor Amendment No. 3 State Debt Impact Note Filed as Amended,2021-10-27,[],IL,102nd +"Effective Date July 9, 2021",2021-07-09,[],IL,102nd +Public Act . . . . . . . . . 102-0099,2021-07-15,['became-law'],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Public Act . . . . . . . . . 102-0009,2021-06-03,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-25,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +Third Reading - Passed; 039-017-000,2022-01-05,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-30,[],IL,102nd +Third Reading - Short Debate - Passed 089-022-001,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Recalled to Second Reading,2022-03-31,['reading-2'],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2021-05-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-05-29,[],IL,102nd +Public Act . . . . . . . . . 102-1065,2022-06-10,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-18,[],IL,102nd +Public Act . . . . . . . . . 102-1087,2022-06-10,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Insurance Committee,2021-10-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Adopted; Fine,2022-03-31,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-10-14,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2021-06-15,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-26,['reading-3'],IL,102nd +"Effective Date January 1, 2022",2021-08-03,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-05-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0647,2021-08-27,['became-law'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Sent to the Governor,2021-07-15,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-05-29,[],IL,102nd +Public Act . . . . . . . . . 102-0644,2021-08-27,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-05,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-03-21,[],IL,102nd +House Floor Amendment No. 3 Pension Note Filed as Amended,2021-10-27,[],IL,102nd +Arrived in House,2022-01-05,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 057-000-000,2021-05-31,[],IL,102nd +"Effective Date August 1, 2022",2021-07-09,[],IL,102nd +Third Reading - Passed; 042-017-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0085,2021-07-09,['became-law'],IL,102nd +House Concurs,2022-11-30,[],IL,102nd +Passed Both Houses,2023-01-05,[],IL,102nd +Third Reading - Passed; 050-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-03-11,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-20,['reading-2'],IL,102nd +Senate Concurs,2022-04-06,[],IL,102nd +Public Act . . . . . . . . . 102-0717,2022-04-29,['became-law'],IL,102nd +Third Reading - Passed; 053-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2022-03-08,[],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-1105,2022-12-08,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0731,2022-05-06,['became-law'],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-15,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 115-000-000,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Insurance,2021-05-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2022-04-07,[],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2021-04-27,[],IL,102nd +Public Act . . . . . . . . . 102-0998,2022-05-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-1115,2023-01-09,['became-law'],IL,102nd +"Effective Date January 1, 2023",2022-06-15,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2022-04-07,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-04-09,['amendment-failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-29,[],IL,102nd +First Reading,2022-03-10,['reading-1'],IL,102nd +"Effective Date February 10, 2023",2023-02-10,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2021-09-09,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-04-05,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-20,[],IL,102nd +House Committee Amendment No. 2 Pension Note Filed as Amended,2022-03-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-04-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-29,[],IL,102nd +House Floor Amendment No. 2 3/5 Vote Required,2021-10-28,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 108-006-001,2021-06-01,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Passed Both Houses,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-11-29,[],IL,102nd +Public Act . . . . . . . . . 102-0520,2021-08-20,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2022-07-07,[],IL,102nd +House Floor Amendment No. 3 Judicial Note Filed as Amended,2022-01-07,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2022-03-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-22,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-04-15,[],IL,102nd +"Senate Floor Amendment No. 2 Motion Filed Concur Rep. Maurice A. West, II",2022-11-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-05-23,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Ellman,2022-04-05,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-05-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-13,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Senate Concurs,2021-10-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Greg Harris,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Higher Education Committee,2021-05-29,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-04,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-31,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +"Effective Date August 5, 2021",2021-08-05,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-10-20,[],IL,102nd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +Assigned to Health,2021-05-04,['referral-committee'],IL,102nd +Passed Both Houses,2021-03-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 26, 2021",2021-05-25,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 114-000-000,2022-04-07,[],IL,102nd +Sent to the Governor,2022-01-07,['executive-receipt'],IL,102nd +Do Pass Executive; 010-005-000,2022-03-30,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2022-03-30,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-05-30,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert Peters,2021-05-29,['filing'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 21, 2021",2021-05-20,[],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 013-002-000,2023-01-10,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +House Concurs,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2022-03-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2022-04-07,[],IL,102nd +First Reading,2022-04-06,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0732,2022-05-06,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Public Safety,2021-05-24,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 109-001-001,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Theresa Mah,2021-05-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 043-014-000,2021-10-27,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-03-25,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2021-04-21,[],IL,102nd +Chief Sponsor Changed to Rep. Emanuel Chris Welch,2023-01-10,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 3",2021-10-27,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. La Shawn K. Ford,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-04-26,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Judiciary - Criminal Committee,2021-06-15,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. La Shawn K. Ford,2022-04-06,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-03-30,[],IL,102nd +Third Reading - Short Debate - Passed 097-000-001,2022-11-30,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Diane Pappas,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2023-01-05,[],IL,102nd +Sent to the Governor,2023-02-03,['executive-receipt'],IL,102nd +Governor Approved,2023-02-03,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Jim Durkin,2021-04-14,[],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-13,[],IL,102nd +"Effective Date January 1, 2022",2021-08-17,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Brad Halbrook,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-04-09,[],IL,102nd +First Reading,2022-04-05,['reading-1'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-30,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Filed with Secretary Sen. Bill Cunningham,2022-04-09,['filing'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2022-02-25,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Joyce Mason,2021-10-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2023-01-05,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-04-07,['reading-2'],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Rules Referred to Health Care Licenses Committee,2022-04-07,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +Placed on Calendar Order of Resolutions,2022-04-08,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-04-04,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2023-01-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2022-04-09,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 041-015-000,2021-05-30,[],IL,102nd +Senate Concurs,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 2 State Debt Impact Note Requested as Amended by Rep. Rita Mayfield,2021-10-28,[],IL,102nd +Added as Co-Sponsor Sen. Robert F. Martwick,2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2021-04-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-04-05,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-05-17,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Re-Referred to Human Services Committee,2022-09-29,['referral-committee'],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2021-04-07,['amendment-introduction'],IL,102nd +House Floor Amendment No. 7 Tabled Pursuant to Rule 40,2022-04-07,['amendment-failure'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Revenue; 010-000-000,2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +Third Reading - Passed; 053-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Governor Approved,2021-06-04,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2022-03-31,[],IL,102nd +"Effective Date January 1, 2023",2022-06-09,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-30,[],IL,102nd +Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2022-03-23,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-04-14,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Villivalam,2022-04-01,['amendment-passage'],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-05-28,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2022-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 5 House Concurs 071-036-000,2023-01-10,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Cristina H. Pacione-Zayas,2021-05-28,['filing'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Cunningham,2022-04-01,['amendment-passage'],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-03-23,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-13,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-08,[],IL,102nd +Assigned to Appropriations-Human Services Committee,2022-01-11,['referral-committee'],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Jennifer Gong-Gershowitz,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-03-22,[],IL,102nd +"Placed on Calendar Order of First Reading March 19, 2021",2021-03-19,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-1096,2022-06-16,['became-law'],IL,102nd +Arrived in House,2022-04-07,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ann Gillespie,2021-05-24,['amendment-introduction'],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. La Shawn K. Ford,2021-05-17,['amendment-introduction'],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-04-09,[],IL,102nd +Public Act . . . . . . . . . 102-0001,2021-04-02,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2022-03-14,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added Chief Co-Sponsor Rep. Kambium Buckner,2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-03-30,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-1039,2022-06-02,['became-law'],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-03,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2021-05-11,['amendment-introduction'],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Request as Amended is Inapplicable,2021-05-20,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Deb Conroy,2021-04-21,['amendment-introduction'],IL,102nd +Do Pass Criminal Law; 009-000-001,2021-05-19,['committee-passage'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-24,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2021-05-26,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Pensions; 008-000-000,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-10-28,[],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Senate Floor Amendment No. 4 Tabled Pursuant to Rule 5-4(a),2021-05-30,['amendment-failure'],IL,102nd +"Effective Date June 17, 2021; Some Provisions Effective July 1, 2023",2021-06-17,[],IL,102nd +Verified,2021-06-15,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +House Concurs,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 000-000-000,2022-12-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-01-05,[],IL,102nd +Governor Approved,2022-06-08,['executive-signature'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 1 Motion Filed to Table Rep. Natalie A. Manley,2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Home Rule Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 009-006-000,2021-10-28,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-05-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2021-04-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2021-05-27,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Referred to Assignments,2022-04-09,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-04-27,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-24,['amendment-failure'],IL,102nd +Removed Co-Sponsor Rep. Martin J. Moylan,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-01-05,[],IL,102nd +"Effective Date June 8, 2022",2022-06-08,[],IL,102nd +House Floor Amendment No. 2 Housing Affordability Impact Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +"House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Elgie R. Sims, Jr.",2021-05-29,['filing'],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-26,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Committee Deadline Extended-Rule 9(b) May 28, 2021",2021-05-24,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-28,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2021-10-28,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-05-30,[],IL,102nd +"Effective Date June 4, 2021",2021-06-04,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-04-07,[],IL,102nd +Governor Approved,2021-08-19,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2022-11-29,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-01,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 041-015-000,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2021-04-07,['referral-committee'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2021-10-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 052-000-000,2023-01-09,[],IL,102nd +3/5 Vote Required,2021-06-01,[],IL,102nd +House Floor Amendment No. 8 Tabled Pursuant to Rule 40,2022-04-07,['amendment-failure'],IL,102nd +"Final Action Deadline Extended-9(b) May 31, 2021",2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-05-30,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Michael T. Marron,2021-10-27,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2022-03-31,[],IL,102nd +Sent to the Governor,2021-11-22,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Senate Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Rita Mayfield,2021-10-28,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0752,2022-05-06,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 022-000-000,2022-04-07,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-04-07,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Health Care Licenses Committee,2022-04-07,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-1050,2022-06-09,['became-law'],IL,102nd +Passed Both Houses,2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2022-03-31,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2022-03-30,[],IL,102nd +Arrived in House,2022-04-07,['introduction'],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-04-14,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-30,[],IL,102nd +Resolution Adopted 115-000-000,2022-04-08,['passage'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Thomas Cullerton,2021-05-30,[],IL,102nd +"Effective Date May 6, 2022",2022-05-06,[],IL,102nd +Remove Chief Co-Sponsor Rep. Kambium Buckner,2022-04-01,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-20,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-24,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Robyn Gabel,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2022-03-16,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-23,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2021-05-17,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Doris Turner,2022-01-05,[],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2021-03-19,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-21,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-04-06,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-07-19,[],IL,102nd +Arrive in Senate,2022-04-06,['introduction'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-04-08,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Assigned to Education,2021-05-18,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. William Davis,2022-01-12,[],IL,102nd +Passed Both Houses,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-03-01,[],IL,102nd +Public Act . . . . . . . . . 102-0845,2022-05-13,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-30,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Governor Approved,2022-04-19,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2021-05-11,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0015,2021-06-17,['became-law'],IL,102nd +Passed Both Houses,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 013-000-000,2022-12-01,[],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Arrived in House,2021-05-31,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-11-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-04-15,[],IL,102nd +House Floor Amendment No. 3 Housing Affordability Impact Note Filed as Amended,2022-01-07,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-07-07,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 009-006-000,2021-10-28,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2022-03-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-06-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-21,[],IL,102nd +House Committee Amendment No. 2 State Debt Impact Note Filed as Amended,2022-03-16,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Insurance Committee,2021-10-27,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-19,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-03-22,[],IL,102nd +Public Act . . . . . . . . . 102-0244,2021-08-03,['became-law'],IL,102nd +Assigned to Insurance,2022-03-16,['referral-committee'],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Scott M. Bennett,2021-10-15,['amendment-introduction'],IL,102nd +Added Chief Co-Sponsor Rep. Jeff Keicher,2022-04-07,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 061-047-000,2021-06-16,[],IL,102nd +Public Act . . . . . . . . . 102-0083,2021-07-09,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-27,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 3 Correctional Note Filed as Amended,2021-10-27,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Chief Sponsor Changed to Rep. Katie Stuart,2022-01-05,[],IL,102nd +Arrived in House,2021-05-31,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-05-30,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-19,[],IL,102nd +Governor Vetoed,2021-08-20,['executive-veto'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-27,[],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 2 Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-04-07,[],IL,102nd +Do Pass as Amended Insurance; 008-000-000,2022-04-05,['committee-passage'],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-15,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1) the following amendments will remain in the Committee on Assignments,2022-04-07,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-29,['committee-passage-favorable'],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-14,[],IL,102nd +Referred to Rules Committee,2022-03-10,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-05-25,[],IL,102nd +Sent to the Governor,2023-02-03,['executive-receipt'],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Public Act . . . . . . . . . 102-1093,2022-06-15,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2022-03-08,[],IL,102nd +Passed Both Houses,2022-11-30,[],IL,102nd +Public Act . . . . . . . . . 102-1129,2023-02-10,['became-law'],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +"Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 011-000-000",2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2021-09-09,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2022-03-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-04-27,[],IL,102nd +Senate Floor Amendment No. 4 House Concurs 108-006-001,2021-06-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-29,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2022-12-01,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 057-000-000,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2023-01-10,[],IL,102nd +Sent to the Governor,2023-01-30,['executive-receipt'],IL,102nd +Arrived in House,2021-06-15,['introduction'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Kimberly A. Lightford,2021-05-31,['filing'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2022-03-22,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 4, 2023",2023-01-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Dan Brady,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-02-18,[],IL,102nd +Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-10-25,['referral-committee'],IL,102nd +Second Reading - Short Debate,2023-01-06,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +"Effective Date February 10, 2023",2023-02-10,[],IL,102nd +"Effective Date February 3, 2023",2023-02-03,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 4,2022-11-30,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-04-04,[],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2022-03-07,[],IL,102nd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2023-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. C.D. Davidsmeyer,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-03-26,[],IL,102nd +Chief Sponsor Changed to Rep. Greg Harris,2021-10-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2021-10-28,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-21,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 112-002-000,2021-10-28,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2021-04-28,[],IL,102nd +Public Act . . . . . . . . . 102-0250,2021-08-05,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-05-06,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2021-05-30,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-05-21,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John F. Curran,2021-04-20,[],IL,102nd +Governor Approved,2022-05-19,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2021-05-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-05-04,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Higher Education Committee; 009-000-000,2021-05-30,[],IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2021-05-28,[],IL,102nd +Governor Approved,2022-01-07,['executive-signature'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John F. Curran,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Miller,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-12-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-04-07,[],IL,102nd +Arrived in House,2022-03-30,['introduction'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2022-03-28,['committee-passage-favorable'],IL,102nd +Passed Both Houses,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-04-27,[],IL,102nd +House Floor Amendment No. 2 3/5 Vote Required,2021-10-27,[],IL,102nd +Second Reading,2021-05-25,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Judiciary - Criminal Committee,2021-06-15,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-17,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-28,[],IL,102nd +Passed Both Houses,2022-04-01,[],IL,102nd +Public Act . . . . . . . . . 102-0363,2021-08-13,['became-law'],IL,102nd +Third Reading - Short Debate - Passed 088-027-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 House Concurs 085-024-000,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 109-001-001,2022-04-08,[],IL,102nd +Chief Sponsor Changed to Rep. Janet Yang Rohr,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Chief Senate Sponsor Sen. John Connor,2022-03-04,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-01-10,[],IL,102nd +Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-01-10,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Michael J. Zalewski,2021-05-30,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Arrive in Senate,2022-04-05,['introduction'],IL,102nd +Public Act . . . . . . . . . 102-0404,2021-08-17,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2021-05-14,[],IL,102nd +Placed on Calendar Order of First Reading,2022-04-05,['reading-1'],IL,102nd +Governor Approved,2022-05-20,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 011-007-000,2021-05-30,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-04,[],IL,102nd +Governor Approved,2021-07-28,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-1060,2022-06-10,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-06,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Higher Education Committee; 008-000-000,2021-05-30,[],IL,102nd +Sent to the Governor,2021-11-12,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Don Harmon,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 011-000-000,2021-05-25,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2021-05-05,[],IL,102nd +Recalled to Second Reading,2021-05-26,['reading-2'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-04-14,[],IL,102nd +"Effective Date January 7, 2022",2022-01-07,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Sent to the Governor,2021-04-01,['executive-receipt'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +"Effective Date May 19, 2022",2022-05-19,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Judiciary,2021-05-30,['referral-committee'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Second Reading,2022-03-30,['reading-2'],IL,102nd +Recalled to Second Reading,2021-10-28,['reading-2'],IL,102nd +Governor Approved,2022-05-25,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-20,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-17,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Fred Crespo,2021-05-29,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Margaret Croke,2021-04-28,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Education,2021-05-30,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0036,2021-06-25,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Greg Harris,2021-10-26,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2023-01-06,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-04-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Joyce Mason,2021-10-25,[],IL,102nd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2022-02-25,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jacqueline Y. Collins,2023-01-04,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-04-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2022-03-24,[],IL,102nd +Recalled to Second Reading,2023-01-06,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Demmer,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2021-04-21,[],IL,102nd +Public Act . . . . . . . . . 102-1125,2023-02-03,['became-law'],IL,102nd +Third Reading - Passed; 054-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 4 - December 1, 2022",2022-11-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Public Act . . . . . . . . . 102-1126,2023-02-10,['became-law'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2022-03-28,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2022-04-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 26, 2021",2021-05-25,[],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2023-01-10,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Suzy Glowiak Hilton,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 112-000-000,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 043-014-000,2021-10-27,[],IL,102nd +Approved for Consideration Assignments,2023-01-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-04-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 085-024-000,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-10,[],IL,102nd +Public Act . . . . . . . . . 102-0965,2022-05-27,['became-law'],IL,102nd +Senate Floor Amendment No. 1 House Concurs 095-010-002,2022-04-08,[],IL,102nd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-06-16,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-04-08,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2023-01-10,[],IL,102nd +House Floor Amendment No. 1 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-03-29,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2021-05-18,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-03-30,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2023-01-10,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 013-000-000,2022-12-01,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3, 5",2021-05-31,[],IL,102nd +Sent to the Governor,2022-12-20,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-04-27,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2021-05-30,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-07,[],IL,102nd +Third Reading - Passed; 040-017-000,2021-06-01,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 009-006-000,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2022-04-08,[],IL,102nd +House Floor Amendment No. 5 Senate Concurs 041-015-000,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jay Hoffman,2022-11-29,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2022-04-07,[],IL,102nd +Senate Concurs,2023-01-09,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-04-05,[],IL,102nd +Do Pass as Amended Insurance; 012-000-000,2021-05-19,['committee-passage'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 31, 2021",2021-05-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0729,2022-05-06,['became-law'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Darren Bailey,2022-04-09,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-20,[],IL,102nd +House Floor Amendment No. 5 Filed with Clerk by Rep. Stephanie A. Kifowit,2022-04-08,['amendment-introduction'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0010,2021-06-04,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. John F. Curran,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-10-27,['amendment-passage'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Third Reading - Short Debate - Passed 083-025-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Governor Amendatory Veto,2021-08-24,['executive-veto'],IL,102nd +Governor Approved,2021-12-10,['executive-signature'],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Effective Date January 1, 2022",2021-08-19,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-04-07,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Approved for Consideration Assignments,2022-11-15,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-05-20,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Be Approved for Consideration Assignments,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-04-27,[],IL,102nd +House Floor Amendment No. 2 Judicial Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-1048,2022-06-08,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-01-05,[],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2022-03-24,['amendment-failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2022-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2021-05-26,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Rachelle Crowe,2021-05-28,['filing'],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Public Act . . . . . . . . . 102-0481,2021-08-20,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-24,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +First Reading,2021-03-19,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2021-05-11,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Availability & Accessibility Committee; 012-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Recalled to Second Reading,2022-04-09,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2022-04-09,[],IL,102nd +Added as Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-01-05,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. LaToya Greenwood,2022-04-07,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Appropriations-Human Services Committee; 022-000-000,2022-03-24,['committee-passage-favorable'],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Seth Lewis,2022-03-16,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Education,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-08,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Greg Harris,2022-01-12,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2022-04-06,[],IL,102nd +Governor Approved,2021-07-28,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-03-25,[],IL,102nd +Third Reading - Passed; 051-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2023-01-24,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2022-03-30,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0914,2022-05-27,['became-law'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Cristina H. Pacione-Zayas,2021-05-28,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-04-07,[],IL,102nd +Third Reading - Short Debate - Passed 068-043-000,2021-05-20,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-29,[],IL,102nd +Placed on Calendar Order of First Reading,2022-04-06,['reading-1'],IL,102nd +"Effective Date April 19, 2022; Some Provisions Effective July 1, 2022",2022-04-19,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2022-03-01,[],IL,102nd +House Floor Amendment No. 4 Rules Refers to Executive Committee,2021-05-19,[],IL,102nd +House Floor Amendment No. 3 3/5 Vote Required,2021-10-28,[],IL,102nd +Placed on Calendar Amendatory Veto,2021-06-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-01-10,[],IL,102nd +Governor Approved,2023-02-03,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-04-27,[],IL,102nd +Senate Floor Amendment No. 5 House Concurs 108-006-001,2021-06-01,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Assigned to Executive,2023-01-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Janet Yang Rohr,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2021-05-20,['amendment-introduction'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Third Reading - Consent Calendar - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 3/5 Vote Required,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-05-27,[],IL,102nd +House Concurs,2021-06-16,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Executive Committee,2021-10-27,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 4, 5",2021-05-31,[],IL,102nd +Third Reading - Passed; 046-002-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Insurance Committee; 013-000-000,2021-10-27,[],IL,102nd +Do Pass Insurance; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Placed Calendar Total Veto,2021-08-31,[],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-10-15,['referral-committee'],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-04-05,[],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Filed as Amended,2021-10-27,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2022-04-07,[],IL,102nd +Arrived in House,2021-05-30,['introduction'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 30, 2021",2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-10-28,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-03-22,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-20,[],IL,102nd +Remove Chief Co-Sponsor Rep. Katie Stuart,2022-01-05,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-04-22,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2022-11-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-07-07,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-03-23,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +House Committee Amendment No. 2 Housing Affordability Impact Note Filed as Amended,2022-03-16,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2021-05-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-01-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2022-03-09,[],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2021-05-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-18,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2022-12-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-08,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +First Reading,2021-04-15,['reading-1'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-08,[],IL,102nd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 008-000-000,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-09-09,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-03-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2021-05-27,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +"Effective Date February 10, 2023",2023-02-10,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. La Shawn K. Ford,2022-04-07,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Arrived in House,2022-04-01,['introduction'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2022-04-07,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-05-29,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Assigned to Insurance,2022-03-16,['referral-committee'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-12-22,[],IL,102nd +Referred to Assignments,2021-04-15,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Insurance; 013-000-000,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-09-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-29,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 113-000-000,2022-04-07,[],IL,102nd +Assigned to Mental Health & Addiction Committee,2022-03-17,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. C.D. Davidsmeyer,2022-03-08,[],IL,102nd +Assigned to Transportation,2021-05-10,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 017-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2022-03-09,[],IL,102nd +Chief Sponsor Changed to Rep. Jehan Gordon-Booth,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-19,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Third Reading - Passed; 040-015-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Sent to the Governor,2022-12-09,['executive-receipt'],IL,102nd +Do Pass Insurance; 011-000-000,2022-03-23,['committee-passage'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Martwick,2022-04-07,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-1136,2023-02-10,['became-law'],IL,102nd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2022-04-08,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Executive Committee,2022-11-30,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 2 Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2022-03-24,[],IL,102nd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Robert Rita,2023-01-10,[],IL,102nd +Waive Posting Notice,2023-01-04,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Filed with Secretary Sen. Kimberly A. Lightford,2021-05-31,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-04-28,[],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Pacione-Zayas,2023-01-06,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +House Concurs,2021-06-01,[],IL,102nd +"Effective Date February 3, 2023",2023-02-03,[],IL,102nd +Amendatory Veto Motion - Motion Filed Accept Amendatory Veto Rep. Emanuel Chris Welch,2021-06-15,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-05-20,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-20,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2021-10-28,[],IL,102nd +Governor Approved,2021-07-27,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-10-15,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Insurance Committee; 013-000-000,2021-10-27,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Arrived in House,2022-03-31,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2022-04-05,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-01-05,[],IL,102nd +Chief Sponsor Changed to Rep. Justin Slaughter,2021-05-31,[],IL,102nd +"Effective Date July 1, 2023",2022-06-10,[],IL,102nd +House Floor Amendment No. 3 Home Rule Note Filed as Amended,2021-10-27,[],IL,102nd +Public Act . . . . . . . . . 102-0359,2021-08-13,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Blaine Wilhour,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 009-006-000,2021-10-27,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-30,[],IL,102nd +Passed Both Houses,2021-06-16,[],IL,102nd +Public Act . . . . . . . . . 102-0612,2021-08-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-10-28,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert Peters,2021-05-29,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-22,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2021-05-21,[],IL,102nd +House Committee Amendment No. 2 Correctional Note Filed as Amended,2022-03-16,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Emanuel Chris Welch,2023-01-05,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-31,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-04-07,[],IL,102nd +Senate Concurs,2021-10-27,[],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Filed as Amended,2021-05-21,[],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-04-22,[],IL,102nd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2022-04-01,[],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-10-27,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-10-27,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-01-10,[],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +"Placed on Calendar - Consideration Postponed January 4, 2023",2023-01-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steven M. Landek,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Will Guzzardi,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Criminal Committee; 013-005-000,2021-06-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-04-28,[],IL,102nd +Passed Both Houses,2023-01-10,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2022-03-28,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2021-05-30,['amendment-failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Third Reading - Passed; 047-003-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Postponed - Public Safety,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-01-10,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +House Floor Amendment No. 1 Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2022-02-18,[],IL,102nd +House Committee Amendment No. 1 Adopted in Appropriations-Human Services Committee; by Voice Vote,2022-03-24,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-04-07,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-02-25,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-04,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Land Conveyance Appraisal Note Filed as Amended,2023-01-06,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-10-25,['referral-committee'],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Andrew S. Chesney,2022-04-14,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-04-05,[],IL,102nd +"Effective Date May 25, 2022",2022-05-25,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Cunningham,2021-10-28,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0890,2022-05-19,['became-law'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Castro,2021-05-26,['amendment-passage'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Added as Alternate Co-Sponsor Sen. John F. Curran,2021-05-26,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 007-000-000,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 009-004-000,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-05,[],IL,102nd +Total Veto Stands,2021-09-15,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 31, 2022",2022-03-30,[],IL,102nd +"Effective Date July 28, 2021",2021-07-28,[],IL,102nd +"Effective Date May 20, 2022",2022-05-20,[],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Public Act . . . . . . . . . 102-0694,2022-01-07,['became-law'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-14,[],IL,102nd +Governor Approved,2021-04-06,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Withdrawn by Rep. Deb Conroy,2021-05-29,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-07,[],IL,102nd +Do Pass Insurance; 011-000-000,2021-05-13,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-05,[],IL,102nd +Senate Floor Amendment No. 4 House Concurs 112-002-000,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-18,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +Governor Approved,2021-11-15,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-04-28,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Randy E. Frese,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-01,['amendment-failure'],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2021-04-21,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2022-03-31,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 057-000-000,2021-10-28,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-01-01,['referral-committee'],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 013-001-000,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steven M. Landek,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-01,[],IL,102nd +Referred to Assignments,2021-03-19,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2021-10-28,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +"Effective Date July 28, 2021",2021-07-28,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Gillespie,2022-04-09,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0866,2022-05-13,['became-law'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +"Effective Date January 24, 2023",2023-01-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2022-04-09,[],IL,102nd +House Floor Amendment No. 5 Filed with Clerk by Rep. La Shawn K. Ford,2021-05-19,['amendment-introduction'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-06,['reading-3'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-03-16,[],IL,102nd +Public Act . . . . . . . . . 102-0698,2022-04-19,['became-law'],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-01-12,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2021-04-22,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-03-25,[],IL,102nd +Arrived in House,2022-04-01,['introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-04-07,[],IL,102nd +Second Reading - Short Debate,2022-03-25,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-05-11,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2022-01-05,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-03,[],IL,102nd +House Floor Amendment No. 2 Land Conveyance Appraisal Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-04-28,[],IL,102nd +House Floor Amendment No. 4 Senate Concurs 055-000-000,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-21,[],IL,102nd +House Committee Amendment No. 3 Tabled Pursuant to Rule 40,2022-03-24,['amendment-failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-12-01,[],IL,102nd +Governor Approved,2022-12-21,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Maura Hirschauer,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-04-28,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-11-15,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-05-30,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-07-13,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Recalled to Second Reading,2022-04-09,['reading-2'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2021-04-20,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Judicial Note Filed as Amended,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +Verified,2021-06-01,[],IL,102nd +Chief Sponsor Changed to Rep. Elizabeth Hernandez,2022-04-07,[],IL,102nd +Sent to the Governor,2022-04-21,['executive-receipt'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Passed Both Houses,2023-01-09,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-11-29,['referral-committee'],IL,102nd +Placed on Calendar Amendatory Veto,2021-08-31,[],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Transportation: Regulation, Roads & Bridges Committee",2022-04-07,['referral-committee'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-10-27,[],IL,102nd +Governor Approved,2021-07-23,['executive-signature'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +House Floor Amendment No. 5 Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Mattie Hunter,2021-05-30,['filing'],IL,102nd +Public Act . . . . . . . . . 102-0411,2021-08-19,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2021-06-01,['amendment-introduction'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. LaToya Greenwood,2022-04-07,[],IL,102nd +"Effective Date December 10, 2021",2021-12-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Darren Bailey,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 012-000-000,2021-04-14,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 015-000-000,2022-04-01,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2021-10-28,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0516,2021-08-20,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Moved to Suspend Rule 21 Rep. Carol Ammons,2021-05-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-10-28,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2021-05-30,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Suspend Rule 21 - Prevailed 073-042-000,2021-05-24,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Health,2021-05-29,['referral-committee'],IL,102nd +Read in Full a Third Time,2021-05-26,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2021-05-04,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-1109,2022-12-21,['became-law'],IL,102nd +Amendatory Veto Motion - Motion Referred to Rules Committee,2021-06-15,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-12-01,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-04-12,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Gillespie,2022-04-09,['amendment-passage'],IL,102nd +Third Reading - Short Debate - Passed 069-037-000,2022-03-03,"['passage', 'reading-3']",IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +House Floor Amendment No. 5 Referred to Rules Committee,2021-05-19,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-01-12,[],IL,102nd +Public Act . . . . . . . . . 102-1122,2023-01-24,['became-law'],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-25,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-10-28,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Commerce,2021-05-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-03-03,[],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2022-01-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-05-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2022-03-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-03-26,[],IL,102nd +First Reading,2022-04-06,['reading-1'],IL,102nd +Public Act . . . . . . . . . 102-0172,2021-07-28,['became-law'],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-04-09,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-04-01,[],IL,102nd +Second Reading,2022-04-06,['reading-2'],IL,102nd +Third Reading - Passed; 039-015-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Recalled to Second Reading,2021-05-26,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0292,2021-08-06,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2022-04-08,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2022-04-09,[],IL,102nd +Do Pass Criminal Law; 006-003-000,2022-04-05,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-22,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-01-05,[],IL,102nd +Removed Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-21,[],IL,102nd +House Floor Amendment No. 2 Pension Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +Senate Concurs,2022-04-09,[],IL,102nd +House Committee Amendment No. 4 Tabled Pursuant to Rule 40,2022-03-24,['amendment-failure'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2021-04-28,[],IL,102nd +Motion Filed to Reconsider Vote Sen. Christopher Belt,2021-06-01,[],IL,102nd +House Floor Amendment No. 5 Rules Refers to Revenue & Finance Committee,2022-04-08,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jehan Gordon-Booth,2022-04-07,[],IL,102nd +Sent to the Governor,2023-01-30,['executive-receipt'],IL,102nd +"Effective Date July 23, 2021",2021-07-23,[],IL,102nd +Amendatory Veto Motion - Motion Filed Accept Amendatory Veto Sen. Cristina Castro,2021-08-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2022-04-08,[],IL,102nd +Second Reading,2022-11-15,['reading-2'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-05-09,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-10-27,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Adopted; Munoz,2022-04-09,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-04,['amendment-passage'],IL,102nd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-04-05,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0681,2021-12-10,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2021-05-27,[],IL,102nd +"Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Transportation: Regulation, Roads & Bridges Committee",2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-05-31,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Pension Note Filed as Amended,2021-10-28,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Human Services Committee,2022-11-29,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Greg Harris,2021-10-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-06-01,['referral-committee'],IL,102nd +Removed Co-Sponsor Rep. Elizabeth Hernandez,2022-04-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2023-01-05,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Balanced Budget Note Filed as Amended,2022-03-16,[],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading August 31, 2021",2021-08-26,[],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Rules Referred to Mental Health & Addiction Committee,2021-05-30,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-04-29,[],IL,102nd +Public Act . . . . . . . . . 102-1124,2023-02-03,['became-law'],IL,102nd +Do Pass Executive; 010-005-000,2023-01-05,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-01-10,[],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +Recalled to Second Reading,2021-05-28,['reading-2'],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 109-002-000,2022-04-08,[],IL,102nd +Arrived in House,2021-05-26,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-29,[],IL,102nd +Governor Approved,2022-12-14,['executive-signature'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +House Committee Amendment No. 2 Senate Concurs 056-000-000,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-09-09,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Assigned to Executive,2021-03-23,['referral-committee'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-05-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2021-04-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2021-05-25,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2022-03-08,[],IL,102nd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-03-24,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +"Final Action Deadline Extended-9(b) January 10, 2023",2022-12-30,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-30,['executive-receipt'],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +House Floor Amendment No. 3 State Mandates Fiscal Note Filed as Amended,2021-10-27,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-07,[],IL,102nd +"Effective Date July 27, 2021",2021-07-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2022-04-05,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Criminal Law,2021-10-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-06-04,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-10-28,[],IL,102nd +House Floor Amendment No. 2 3/5 Vote Required,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-21,[],IL,102nd +Second Reading,2022-03-24,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Dan Ugaste,2021-10-27,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3",2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-1069,2022-06-10,['became-law'],IL,102nd +Senate Committee Amendment No. 4 Motion Filed Concur Rep. Justin Slaughter,2021-05-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 009-006-000,2021-10-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Katie Stuart,2022-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2021-05-27,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mike Murphy,2021-05-31,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 4 - January 5, 2023",2023-01-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-12-19,[],IL,102nd +Arrived in House,2022-04-01,['introduction'],IL,102nd +Public Act . . . . . . . . . 102-0796,2022-05-13,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-03-31,[],IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +First Reading,2022-04-05,['reading-1'],IL,102nd +Do Pass as Amended Higher Education; 011-000-000,2021-05-19,['committee-passage'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-01-10,[],IL,102nd +Sent to the Governor,2021-11-22,['executive-receipt'],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2022-03-29,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2022-03-09,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-05-21,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Chief Co-Sponsor Rep. Michael T. Marron,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-05-12,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Burke,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Emanuel Chris Welch,2023-01-10,[],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2023-01-10,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. William Davis,2022-04-01,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Arrived in House,2023-01-10,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Robyn Gabel,2022-04-01,[],IL,102nd +Sent to the Governor,2023-01-17,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Judiciary - Criminal Committee; 013-005-000,2021-06-16,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-03-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 3 Recommend Do Adopt Public Safety; 006-000-000,2021-05-25,[],IL,102nd +Passed Both Houses,2021-10-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Arrived in House,2021-05-31,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-01-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0994,2022-05-27,['became-law'],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Joyce Mason,2021-10-25,[],IL,102nd +Passed Both Houses,2022-04-14,[],IL,102nd +House Committee Amendment No. 1 Housing Affordability Impact Note Filed as Amended,2023-01-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-07,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-12-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2023-01-04,[],IL,102nd +Do Pass as Amended / Short Debate Appropriations-Human Services Committee; 019-000-000,2022-03-24,['committee-passage'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-02-18,[],IL,102nd +House Floor Amendment No. 1 Fiscal Note Filed as Amended,2022-02-25,[],IL,102nd +Public Act . . . . . . . . . 102-0633,2021-08-27,['became-law'],IL,102nd +House Concurs,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-04-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-05,[],IL,102nd +Public Act . . . . . . . . . 102-0898,2022-05-25,['became-law'],IL,102nd +Senate Floor Amendment No. 3 Withdrawn by Sen. Bill Cunningham,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-04-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2022-04-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2021-04-28,[],IL,102nd +"Effective Date November 15, 2021",2021-11-15,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 118-000-000,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-29,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +House Floor Amendment No. 4 Withdrawn by Rep. Deb Conroy,2021-05-29,[],IL,102nd +Public Act . . . . . . . . . 102-0891,2022-05-20,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0173,2021-07-28,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Seth Lewis,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 038-018-000,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steven M. Landek,2021-05-05,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Judiciary; 007-000-000,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-05-23,[],IL,102nd +"Effective Date April 6, 2021",2021-04-06,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2021-04-14,[],IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +House Floor Amendment No. 5 Adopted,2021-05-29,['amendment-passage'],IL,102nd +Third Reading - Passed; 038-018-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-30,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-03-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-05-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2021-05-13,[],IL,102nd +Removed Co-Sponsor Rep. Deanne M. Mazzochi,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2021-04-28,[],IL,102nd +Recalled to Second Reading,2021-05-28,['reading-2'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2022-04-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-05,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-05-29,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0668,2021-11-15,['became-law'],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0003,2021-04-06,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-04-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-05-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-12,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-31,[],IL,102nd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-04-22,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Human Services Committee,2022-04-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 107-004-000,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0985,2022-05-27,['became-law'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-05-21,[],IL,102nd +Public Act . . . . . . . . . 102-0772,2022-05-13,['became-law'],IL,102nd +Filed Without Signature,2022-01-25,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-03-31,[],IL,102nd +Governor Approved,2023-01-18,['executive-signature'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 5, 6",2023-01-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 House Concurs 104-000-000,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2023-01-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Kathleen Willis,2021-05-29,[],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-01-03,['amendment-introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2022-04-12,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2022-04-01,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Emanuel Chris Welch,2023-01-10,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Will Guzzardi,2021-05-30,[],IL,102nd +Sent to the Governor,2021-11-24,['executive-receipt'],IL,102nd +House Floor Amendment No. 4 Motion to Concur Filed with Secretary Sen. Laura M. Murphy,2023-01-04,['filing'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. Robert Rita,2021-06-01,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2022-04-01,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-04-18,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2023-01-04,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2022-03-01,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2021-10-25,['referral-committee'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-18,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura M. Murphy,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Fiscal Note Filed as Amended,2023-01-09,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Elizabeth Hernandez,2022-04-07,[],IL,102nd +Motion to Reconsider Vote - Prevails,2021-06-01,[],IL,102nd +Amendatory Veto Motion - Motion Referred to Assignments,2021-08-31,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading November 16, 2022",2022-11-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2022-03-31,[],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Sent to the Governor,2022-04-19,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Human Services Committee; 015-000-000,2022-11-29,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +Senate Floor Amendment No. 2 State Debt Impact Note Filed as Amended,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 4 Adopted; Cunningham,2021-10-28,['amendment-passage'],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-04-20,[],IL,102nd +"Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-04,[],IL,102nd +"Motion Filed to Reconsider Vote Rep. Jaime M. Andrade, Jr.",2021-10-27,[],IL,102nd +Added as Co-Sponsor Sen. Laura M. Murphy,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-05-09,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0942,2022-05-27,['became-law'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-05-30,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2022-04-08,[],IL,102nd +Public Act . . . . . . . . . 102-0134,2021-07-23,['became-law'],IL,102nd +Governor Approved,2023-02-17,['executive-signature'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jawaharial Williams,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Munoz,2022-04-09,['amendment-passage'],IL,102nd +Assigned to Education,2022-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2021-10-28,[],IL,102nd +Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-09,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-03-31,[],IL,102nd +Senate Floor Amendment No. 3 Adopted; Gillespie,2022-04-09,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-12,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to Commerce,2021-05-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2021-05-11,[],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Executive Committee; 015-000-000,2021-05-20,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Castro,2022-04-06,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2022-03-21,[],IL,102nd +Arrive in Senate,2022-03-04,['introduction'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-04-22,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Jeff Keicher,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-01-13,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2022-04-09,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-01-07,[],IL,102nd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2021-04-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Removed from Short Debate Status,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-10-28,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments; Pursuant to Senate Rule 3-9(b),2021-07-16,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Public Act . . . . . . . . . 102-0519,2021-08-20,['became-law'],IL,102nd +Assigned to Behavioral and Mental Health,2021-05-10,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Maura Hirschauer,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 084-009-000,2022-12-01,[],IL,102nd +Amendatory Veto Motion - Accept Motion Recommends Be Adopted Rules Committee; 003-002-000,2021-06-15,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-05-25,[],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +House Floor Amendment No. 2 State Debt Impact Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-04-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2023-01-05,[],IL,102nd +Do Pass / Short Debate Mental Health & Addiction Committee; 016-000-000,2022-03-24,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-28,[],IL,102nd +House Floor Amendment No. 2 Judicial Note Filed as Amended,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-10-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-05-30,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2022-04-05,[],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-1030,2022-05-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-22,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-10-28,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jennifer Gong-Gershowitz,2022-04-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2022",2022-03-24,[],IL,102nd +Senate Committee Amendment No. 4 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2021-05-30,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0168,2021-07-27,['became-law'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +"Effective Date December 14, 2022",2022-12-14,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-26,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +Assigned to Education,2021-04-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Bush,2021-05-28,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 1 House Concurs 075-040-000,2021-06-16,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 109-002-000,2022-04-08,[],IL,102nd +Waive Posting Notice,2021-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Jim Durkin,2022-03-08,[],IL,102nd +Public Act . . . . . . . . . 102-1086,2022-06-10,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0960,2022-05-27,['became-law'],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. David Friess,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Gillespie,2021-05-26,['amendment-passage'],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2022-03-09,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-27,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +"Chief Sponsor Changed to Rep. Jaime M. Andrade, Jr.",2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2021-09-09,[],IL,102nd +Third Reading - Short Debate - Passed 060-050-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +House Committee Amendment No. 2 Judicial Note Filed as Amended,2022-03-17,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-001-000,2023-01-05,['committee-passage-favorable'],IL,102nd +Added Chief Co-Sponsor Rep. Charles Meier,2021-06-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-01-10,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Mental Health & Addiction Committee; 014-000-000,2021-05-30,[],IL,102nd +Third Reading - Passed; 034-018-001,2023-01-06,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-08-30,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2023-01-05,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2022-03-25,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 2 Withdrawn by Rep. Emanuel Chris Welch,2023-01-05,[],IL,102nd +House Committee Amendment No. 2 Fiscal Note Filed as Amended,2022-03-21,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-10-27,[],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-10-19,['amendment-passage'],IL,102nd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Jennifer Gong-Gershowitz,2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-06-04,[],IL,102nd +Added as Co-Sponsor Sen. Javier L Cervantes,2022-11-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-03-23,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2022-04-05,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +House Floor Amendment No. 3 Judicial Note Filed as Amended,2021-10-27,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Mike Simmons,2021-05-28,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-04-26,[],IL,102nd +"Effective Date June 1, 2022",2021-08-13,[],IL,102nd +Senate Floor Amendment No. 5 Motion Filed Concur Rep. Justin Slaughter,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Katie Stuart,2022-01-05,[],IL,102nd +Public Act . . . . . . . . . 102-0361,2021-08-13,['became-law'],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 007-000-000,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-30,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-03-29,[],IL,102nd +Senate Floor Amendment No. 4 House Concurs 109-002-000,2022-04-08,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Frances Ann Hurley,2021-05-29,[],IL,102nd +Sent to the Governor,2021-06-21,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2022-04-08,[],IL,102nd +Public Act . . . . . . . . . 102-0469,2021-08-20,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-26,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 103-005-000,2022-04-08,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2021-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2022-03-09,[],IL,102nd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Edgar Gonzalez, Jr.",2021-05-27,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 075-040-000,2021-06-16,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Do Pass Education; 013-000-000,2021-05-25,['committee-passage'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-26,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-03-21,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2021-04-28,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2021-09-09,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2021-08-30,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 House Concurs 083-034-000,2021-05-31,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2023-01-05,[],IL,102nd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-01-06,['amendment-failure'],IL,102nd +Assigned to Insurance,2021-05-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-05-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-01-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Robert Rita,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Criminal Law,2021-05-24,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-02-25,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-01-04,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-10-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2022-03-01,[],IL,102nd +Second Reading - Short Debate,2022-03-25,['reading-2'],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-04-08,[],IL,102nd +Governor Approved,2021-11-30,['executive-signature'],IL,102nd +House Floor Amendment No. 4 Motion to Concur Referred to Assignments,2023-01-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-04-04,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2021-06-01,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-31,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 28, 2021",2021-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2021-05-06,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Do Pass as Amended Executive; 014-002-000,2021-05-19,['committee-passage'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 115-000-000,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2021-05-30,[],IL,102nd +Sent to the Governor,2021-11-22,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2021-05-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-29,[],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-05-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-31,[],IL,102nd +Removed Co-Sponsor Rep. Paul Jacobs,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Bennett,2021-05-28,['amendment-passage'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Motion Filed to Reconsider Vote ** Sen. Cristina Castro,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-04-29,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-03-30,[],IL,102nd +Public Act . . . . . . . . . 102-1118,2023-01-18,['became-law'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Chief Sponsor Changed to Rep. Kelly M. Cassidy,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2023-01-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-10-27,[],IL,102nd +Senate Floor Amendment No. 5 Motion Filed Concur Rep. Emanuel Chris Welch,2023-01-10,[],IL,102nd +"Effective Date June 1, 2022",2022-01-25,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-10,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Arrive in Senate,2021-05-21,['introduction'],IL,102nd +Public Act . . . . . . . . . 102-1107,2022-12-14,['became-law'],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-10-27,[],IL,102nd +Governor Approved,2021-08-02,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0909,2022-05-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-13,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Eva-Dina Delgado,2021-06-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2023-01-03,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 113-005-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2023-01-10,[],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-04-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2021-05-27,[],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. La Shawn K. Ford,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-04-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-01-05,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-05-26,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-10-28,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Unlimited Debate,2021-05-26,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-25,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Senate Committee Amendment No. 2 House Concurs 107-004-000,2022-04-07,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 108-000-000,2022-11-30,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Appropriations-Human Services Committee,2022-04-07,['referral-committee'],IL,102nd +House Floor Amendment No. 5 Recommends Be Adopted Revenue & Finance Committee; 017-000-000,2022-04-08,['committee-passage-favorable'],IL,102nd +"Effective Date February 17, 2023",2023-02-17,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-09,[],IL,102nd +Amendatory Veto Motion - Approved for Consideration Assignments,2021-08-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2022-04-08,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Robert Peters,2022-11-29,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 015-000-000,2021-05-31,[],IL,102nd +House Floor Amendment No. 3 3/5 Vote Required,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2021-04-20,[],IL,102nd +Third Reading - Passed; 037-018-000,2021-06-01,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2021-10-26,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2022-03-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Eric Mattson,2022-05-09,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 009-005-002,2021-06-01,[],IL,102nd +"Motion to Reconsider Vote - Withdrawn Rep. Jaime M. Andrade, Jr.",2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2022-03-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Brian W. Stewart,2022-03-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2022-04-04,[],IL,102nd +Public Act . . . . . . . . . 102-1080,2022-06-10,['became-law'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2021-05-27,[],IL,102nd +"Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Transportation: Regulation, Roads & Bridges Committee; 013-000-000",2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Greg Harris,2021-04-20,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Governor Approved,2022-04-22,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-02,['executive-receipt'],IL,102nd +Motion Filed to Reconsider Vote Rep. David A. Welter,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Correctional Note Filed as Amended,2021-10-28,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-0639,2021-08-27,['became-law'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-04-13,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Dave Vella,2021-10-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 7, 2022",2022-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2022-01-11,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-03,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2022-04-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2021-05-20,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Michael E. Hastings,2022-04-07,[],IL,102nd +Second Reading,2022-04-06,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jeff Keicher,2022-04-01,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Commerce; 010-000-000,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ryan Spain,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-01-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Fred Crespo,2022-04-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2021-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-29,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-04,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-04-22,[],IL,102nd +Sent to the Governor,2022-05-04,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 084-009-000,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Placed on Standard Debate,2021-06-16,[],IL,102nd +3/5 Vote Required,2021-06-16,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 084-009-000,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 5 Motion Filed Concur Rep. Maura Hirschauer,2021-05-31,[],IL,102nd +Governor Approved,2021-06-02,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Executive Committee,2021-10-26,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Appropriations-Human Services Committee; 022-000-000,2022-04-07,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Concurs,2022-11-30,[],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. LaToya Greenwood,2021-05-29,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. David A. Welter,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Balanced Budget Note Filed as Amended,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Brian W. Stewart,2022-04-06,[],IL,102nd +"Effective Date July 1, 2023",2022-04-22,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 114-000-000,2022-04-08,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 28, 2021",2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-04-20,['referral-committee'],IL,102nd +Third Reading - Short Debate - Passed 105-003-003,2022-04-04,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2022-03-31,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-10-28,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-05-09,[],IL,102nd +3/5 Vote Required,2021-06-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Randy E. Frese,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-20,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 058-000-000,2021-10-28,[],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-05-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2022-03-22,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2022-11-29,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2022-04-08,[],IL,102nd +3/5 Vote Required,2021-08-31,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kambium Buckner,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-1142,2023-02-17,['became-law'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Keith R. Wheeler,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert F. Martwick,2021-06-01,['amendment-introduction'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-25,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-28,[],IL,102nd +House Floor Amendment No. 2 Balanced Budget Note Filed as Amended,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-01-05,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Frances Ann Hurley,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2021-05-27,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-25,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-06-15,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-06-01,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-05-30,[],IL,102nd +Third Reading - Unlimited Debate - Passed 080-030-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Charles Meier,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Rules Refers to Appropriations-Human Services Committee,2022-01-19,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 7, 2022",2022-04-06,[],IL,102nd +Approved for Consideration Assignments,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-05-20,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2022-03-04,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Deb Conroy,2022-03-29,['amendment-introduction'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-04-09,[],IL,102nd +Third Reading - Passed; 033-017-000,2022-04-09,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-23,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael J. Zalewski,2021-05-29,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-01-19,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-04-09,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2021-05-11,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Javier L Cervantes,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Arrived in House,2023-01-06,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-04,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +Sponsor Removed Sen. Terri Bryant,2021-08-30,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Criminal Law; 007-000-000,2021-05-25,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-01-10,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-23,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-10-28,[],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0345,2021-08-13,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-10-27,[],IL,102nd +Public Act . . . . . . . . . 102-0641,2021-08-27,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-07-21,[],IL,102nd +Added as Co-Sponsor Sen. Linda Holmes,2022-05-24,[],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Jennifer Gong-Gershowitz,2022-04-01,[],IL,102nd +Do Pass as Amended Criminal Law; 010-000-000,2021-10-19,['committee-passage'],IL,102nd +House Floor Amendment No. 1 Senate Concurs 056-000-000,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-01-05,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Balanced Budget Note Filed as Amended,2021-10-27,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-05-30,[],IL,102nd +House Floor Amendment No. 3 Adopted,2023-01-05,['amendment-passage'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2022-03-21,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 26, 2021",2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-04-28,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-04-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-03-09,[],IL,102nd +House Concurs,2021-06-16,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Sent to the Governor,2021-11-24,['executive-receipt'],IL,102nd +Governor Approved,2021-08-10,['executive-signature'],IL,102nd +Do Pass / Short Debate Mental Health & Addiction Committee; 016-000-000,2022-03-24,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2021-05-27,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Assigned to Energy & Environment Committee,2022-03-22,['referral-committee'],IL,102nd +Third Reading - Passed; 044-013-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Frances Ann Hurley,2021-06-16,[],IL,102nd +Third Reading - Passed; 052-001-000,2021-05-26,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-09-09,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 107-004-000,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 111-001-000,2022-04-07,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-05-05,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-06,[],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-06,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2021-04-16,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Brad Halbrook,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2022-03-31,[],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Motion to Reconsider Vote Withdrawn,2022-04-13,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Third Reading - Short Debate - Passed 113-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2021-05-28,[],IL,102nd +Governor Approved,2021-11-30,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Kimberly A. Lightford,2021-05-28,['filing'],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2021-04-29,[],IL,102nd +3/5 Vote Required,2021-10-27,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-04-25,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-02-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-01-04,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-10-25,['referral-committee'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-14,[],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Rules Committee; 005-000-000,2021-06-01,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-03-31,[],IL,102nd +"Effective Date November 30, 2021",2021-11-30,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Assignments Referred to Local Government,2023-01-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2022-04-05,[],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Chief Co-Sponsor Changed to Rep. Dagmara Avelar,2022-04-05,[],IL,102nd +Public Act . . . . . . . . . 102-0695,2022-01-25,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2021-05-13,[],IL,102nd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt Commerce; 010-000-000,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2022-04-07,[],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-06-01,['referral-committee'],IL,102nd +Sent to the Governor,2023-02-03,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Denyse Wang Stoneback,2022-03-30,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0947,2022-05-27,['became-law'],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 5 Motion Filed Concur Rep. Kelly M. Cassidy,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-01-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-01-10,[],IL,102nd +Third Reading - Passed; 055-000-001,2022-04-09,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 015-000-000,2022-04-07,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0936,2022-05-27,['became-law'],IL,102nd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Will Guzzardi,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2022-04-01,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2023-01-03,[],IL,102nd +Placed on Calendar Order of First Reading,2021-05-21,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-05-31,[],IL,102nd +"Effective Date August 2, 2021",2021-08-02,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2021-05-31,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +"Effective Date February 10, 2023",2023-02-10,[],IL,102nd +Remove Chief Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0233,2021-08-02,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-13,[],IL,102nd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2023-01-04,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2023-01-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-06-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +Senate Floor Amendment No. 6 Motion Filed Concur Rep. Kelly M. Cassidy,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-01-10,[],IL,102nd +Arrived in House,2022-04-09,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2022-04-01,[],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-05-21,[],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-01,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2022-03-01,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2022-08-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2022-03-28,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-10-25,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-01-04,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-04-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-04-08,[],IL,102nd +"Effective Date November 30, 2021",2021-11-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-21,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2021-05-29,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2021-05-06,[],IL,102nd +Third Reading - Short Debate - Passed 108-000-000,2021-04-16,"['passage', 'reading-3']",IL,102nd +Third Reading - Passed; 032-018-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2021-04-29,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 116-001-001,2021-10-27,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Passed Both Houses,2022-04-13,[],IL,102nd +Governor Approved,2021-07-28,['executive-signature'],IL,102nd +Third Reading - Passed; 045-003-002,2021-05-28,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-06,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-05-30,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 4 Motion To Concur Recommended Do Adopt Local Government; 007-000-000,2023-01-05,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jehan Gordon-Booth,2022-04-05,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-06-01,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0675,2021-11-30,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2022-01-19,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-03,[],IL,102nd +Arrived in House,2022-04-07,['introduction'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-04-12,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-04,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-05-20,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-11,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-04-06,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Dave Vella,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-29,[],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Added as Co-Sponsor Sen. Christopher Belt,2022-01-21,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-23,['amendment-passage'],IL,102nd +First Reading,2022-03-04,['reading-1'],IL,102nd +Arrived in House,2022-04-09,['introduction'],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-03-25,[],IL,102nd +Second Reading - Standard Debate,2021-05-30,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-04-29,[],IL,102nd +Removed Co-Sponsor Rep. Jay Hoffman,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-01-05,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +House Concurs,2022-12-01,[],IL,102nd +Accept Amendatory Veto - House Passed 071-044-001,2021-06-16,[],IL,102nd +Do Pass Education; 012-000-000,2022-03-23,['committee-passage'],IL,102nd +Accept Amendatory Veto - Senate Passed 056-000-000,2021-08-31,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 110-000-000,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 114-000-000,2022-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 014-000-000,2021-10-26,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-08,[],IL,102nd +House Floor Amendment No. 5 Adopted,2022-04-08,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0702,2022-04-22,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0283,2021-08-06,['became-law'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Christopher Belt,2021-05-28,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2022-05-09,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-11-29,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sue Rezin,2022-03-31,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - October 28, 2021",2021-10-28,[],IL,102nd +House Floor Amendment No. 1 Adopted,2022-03-31,['amendment-passage'],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-04-04,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 1 House Concurs 109-002-001,2022-04-08,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Passed Both Houses,2022-11-30,[],IL,102nd +Third Reading - Passed; 044-012-000,2021-10-28,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Fiscal Note Filed as Amended,2021-10-28,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0917,2022-05-27,['became-law'],IL,102nd +"Effective Date June 2, 2021",2021-06-02,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-06-01,['referral-committee'],IL,102nd +Second Reading - Short Debate,2021-04-20,['reading-2'],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2022-04-08,[],IL,102nd +Senate Concurs,2021-10-28,[],IL,102nd +Third Reading - Passed; 053-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Senate Concurs 056-000-000,2021-05-31,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 4,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-10-28,[],IL,102nd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 013-007-000,2021-05-25,['committee-passage'],IL,102nd +Third Reading - Short Debate - Passed 115-000-001,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-06-01,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2021-05-30,[],IL,102nd +"Effective Date July 1, 2022",2021-08-20,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-26,[],IL,102nd +Governor Approved,2021-12-17,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-04-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2021-09-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-03-14,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2021-05-27,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-04-08,[],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Emil Jones, III",2022-03-29,[],IL,102nd +Arrive in Senate,2021-08-26,['introduction'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-05-26,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-26,['amendment-failure'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-05-27,[],IL,102nd +Second Reading,2021-05-26,['reading-2'],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed to Reconsider Vote Rep. Natalie A. Manley,2021-06-16,[],IL,102nd +"Effective Date January 1, 2022",2021-08-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-03-24,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-04-30,[],IL,102nd +Public Act . . . . . . . . . 102-0298,2021-08-06,['became-law'],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2021-10-28,[],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-04-06,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-10-19,[],IL,102nd +Senate Committee Amendment No. 4 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 House Concurs 062-051-003,2021-10-27,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-05-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-07-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2022-01-05,[],IL,102nd +Do Pass as Amended Executive; 014-002-000,2022-03-23,['committee-passage'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Education,2021-05-29,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Thaddeus Jones,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-04,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Recalled to Second Reading,2021-05-27,['reading-2'],IL,102nd +Second Reading,2023-01-05,['reading-2'],IL,102nd +Sponsor Removed Sen. Donald P. DeWitte,2021-08-30,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3",2023-01-06,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2021-05-14,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-01-10,[],IL,102nd +House Committee Amendment No. 1 3/5 Vote Required,2021-06-01,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2022-03-21,[],IL,102nd +House Floor Amendment No. 3 Note / Motion Filed - Note Act Does Not Apply Rep. Emanuel Chris Welch,2023-01-05,[],IL,102nd +House Floor Amendment No. 3 Motion Prevailed 064-039-000,2023-01-05,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Sam Yingling,2022-03-21,[],IL,102nd +House Floor Amendment No. 3 Fiscal Note Filed as Amended,2021-10-27,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2021-10-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-09-08,[],IL,102nd +Public Act . . . . . . . . . 102-1056,2022-06-10,['became-law'],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-31,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - April 6, 2022",2022-04-06,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 062-051-003,2021-10-27,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 009-002-000,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2022-01-05,[],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-31,['referral-committee'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Ann M. Williams,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2022-04-25,[],IL,102nd +"Effective Date June 1, 2022; ; Some Provisions Effective 12-17-2021",2021-12-17,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2021-05-04,[],IL,102nd +Second Reading - Short Debate,2022-03-25,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-03-22,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 071-043-000,2021-05-30,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Motion Filed to Reconsider Vote Rep. Natalie A. Manley,2021-06-16,[],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2021-05-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 27, 2021",2021-05-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-0335,2021-08-10,['became-law'],IL,102nd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2022-04-08,[],IL,102nd +Placed on Calendar Order of First Reading,2021-08-26,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2021-09-09,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-26,[],IL,102nd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Curtis J. Tarver, II",2023-01-06,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2023-01-10,[],IL,102nd +Sponsor Removed Sen. Jil Tracy,2021-08-30,[],IL,102nd +House Floor Amendment No. 3 3/5 Vote Required,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Rezin,2021-05-27,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2021-05-04,[],IL,102nd +"Placed on Calendar Order of 3rd Reading January 6, 2023",2023-01-05,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-06-01,['amendment-passage'],IL,102nd +Senate Concurs 053-000-000,2023-01-05,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-04-07,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Referred to Rules Committee,2023-01-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-002-000,2021-06-15,[],IL,102nd +Public Act . . . . . . . . . 102-1139,2023-02-10,['became-law'],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Charles Meier,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3",2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Javier L Cervantes,2023-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2021-05-31,[],IL,102nd +First Reading,2021-05-21,['reading-1'],IL,102nd +Do Pass Transportation; 019-000-000,2021-05-19,['committee-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2022-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Barbara Hernandez,2022-04-05,[],IL,102nd +Chief Senate Sponsor Sen. Karina Villa,2021-04-23,[],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Referred to Rules Committee,2023-01-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-04-07,[],IL,102nd +Third Reading - Short Debate - Passed 112-000-000,2022-03-30,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-01-04,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-03-04,['referral-committee'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-03,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2022-08-10,[],IL,102nd +Senate Committee Amendment No. 1 Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2022-04-09,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-30,[],IL,102nd +Arrive in Senate,2021-04-19,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-07,[],IL,102nd +"Effective Date July 28, 2021",2021-07-28,[],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-06,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Kimberly A. Lightford,2021-05-28,['filing'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Cristina H. Pacione-Zayas,2021-10-28,['filing'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2021-05-29,[],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-22,[],IL,102nd +3/5 Vote Required,2021-10-27,[],IL,102nd +Do Pass Insurance; 011-000-000,2021-05-13,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-03,[],IL,102nd +Public Act . . . . . . . . . 102-0671,2021-11-30,['became-law'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +Public Act . . . . . . . . . 102-0416,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-05-26,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2, 3",2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-06-08,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-25,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-05-30,[],IL,102nd +Both Houses Accepted Amendatory Veto,2021-06-16,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2021-05-31,[],IL,102nd +Passed Both Houses,2022-12-01,[],IL,102nd +Approved for Consideration Assignments,2022-11-15,[],IL,102nd +Third Reading - Passed; 044-011-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Steve Stadelman,2022-03-29,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3",2022-04-09,[],IL,102nd +Referred to Assignments,2022-03-04,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2022-01-21,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-07,['reading-3'],IL,102nd +Added Chief Co-Sponsor Rep. David A. Welter,2021-05-20,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-01-19,[],IL,102nd +Assigned to Executive,2021-04-15,['referral-committee'],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-1067,2022-06-10,['became-law'],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-05-29,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-23,['amendment-passage'],IL,102nd +Assigned to Education,2021-05-11,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2022-04-09,[],IL,102nd +Second Reading - Short Debate,2022-03-03,['reading-2'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Judiciary - Civil Committee,2022-04-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-04-29,[],IL,102nd +Public Act . . . . . . . . . 102-0818,2022-05-13,['became-law'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-05-27,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-04-01,[],IL,102nd +Held on Calendar Order of Second Reading - Standard Debate,2021-05-30,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-03-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-05-09,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-20,['amendment-passage'],IL,102nd +Sent to the Governor,2021-06-30,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Arrived in House,2021-08-31,['introduction'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 4 - April 7, 2022",2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2021-06-01,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Public Utilities Committee,2021-05-29,['referral-committee'],IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Sent to the Governor,2022-12-13,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Home Rule Note Filed as Amended,2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Scott M. Bennett,2022-11-30,[],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-04-20,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 014-000-000,2021-10-26,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jackie Haas,2022-03-08,[],IL,102nd +Arrived in House,2022-04-06,['introduction'],IL,102nd +Arrived in House,2021-10-28,['introduction'],IL,102nd +Do Pass Criminal Law; 009-000-000,2022-04-05,['committee-passage'],IL,102nd +Public Act . . . . . . . . . 102-0658,2021-08-27,['became-law'],IL,102nd +Motion Filed to Reconsider Vote Rep. Mark Batinick,2022-04-04,[],IL,102nd +Public Act . . . . . . . . . 102-0008,2021-06-02,['became-law'],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-08,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Filed with Secretary Sen. Michael E. Hastings,2022-04-07,['filing'],IL,102nd +Chief Sponsor Changed to Rep. Robert Rita,2021-10-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Public Utilities Committee; 024-000-000,2021-05-30,[],IL,102nd +Third Reading - Short Debate - Passed 110-000-001,2022-04-08,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 State Mandates Fiscal Note Filed as Amended,2021-10-28,[],IL,102nd +Placed on Calendar Amendatory Veto,2021-08-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-22,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-20,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Education,2021-05-29,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-05-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Avery Bourne,2022-04-04,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-11-30,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-06,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2022-03-08,[],IL,102nd +3/5 Vote Required,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2021-04-20,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0967,2022-05-27,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2021-06-01,[],IL,102nd +Sent to the Governor,2021-11-24,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Seth Lewis,2021-05-30,[],IL,102nd +House Floor Amendment No. 3 Racial Impact Note Requested as Amended by Rep. Robyn Gabel,2021-10-27,[],IL,102nd +Governor Approved,2022-12-14,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2021-05-11,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-04-20,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-05-30,[],IL,102nd +Do Pass / Short Debate Immigration & Human Rights Committee; 005-003-000,2021-05-29,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Mike Simmons,2022-01-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-10-28,[],IL,102nd +Governor Approved,2022-05-18,['executive-signature'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-05-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-12,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-23,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Deb Conroy,2022-03-29,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Judiciary - Civil Committee,2022-04-05,['referral-committee'],IL,102nd +Chief Sponsor Changed to Rep. Justin Slaughter,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-01-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Fiscal Note Requested by Rep. Thomas Morrison,2021-05-25,[],IL,102nd +Sent to the Governor,2021-06-30,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-04-22,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-26,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2, 3 - October 28, 2021",2021-10-28,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-05-30,[],IL,102nd +Returned to Governor for Certification,2021-06-17,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-11-15,[],IL,102nd +Sent to the Governor,2022-12-20,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2021-05-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-04-30,[],IL,102nd +Added as Co-Sponsor Sen. Ram Villivalam,2022-03-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-01-05,[],IL,102nd +"Senate Floor Amendment No. 3 Motion Filed Concur Rep. Curtis J. Tarver, II",2023-01-06,[],IL,102nd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2021-05-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-27,[],IL,102nd +House Floor Amendment No. 4 3/5 Vote Required,2021-06-01,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Michael E. Hastings,2021-08-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2021-05-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-04,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-01-05,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 067-041-000,2022-01-05,[],IL,102nd +Second Reading,2021-10-19,['reading-2'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-04-01,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Insurance Committee,2021-05-31,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-23,[],IL,102nd +House Concurs,2021-10-27,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-30,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 041-012-000,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-10-28,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert Peters,2022-04-06,['filing'],IL,102nd +Public Act . . . . . . . . . 102-1057,2022-06-10,['became-law'],IL,102nd +Senate Committee Amendment No. 4 House Concurs 079-036-000,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-09-10,[],IL,102nd +Senate Floor Amendment No. 2 Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Fiscal Note Request is Inapplicable,2023-01-05,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Bob Morgan,2022-03-21,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Michelle Mussman,2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-0991,2022-05-27,['became-law'],IL,102nd +Passed Both Houses,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2021-09-09,[],IL,102nd +Public Act . . . . . . . . . 102-0691,2021-12-17,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2021-06-16,[],IL,102nd +Chief Senate Sponsor Sen. Don Harmon,2021-08-26,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-03,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-04-26,[],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-03-17,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-03-24,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-25,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Blaine Wilhour,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 116-001-001,2021-10-27,[],IL,102nd +Sent to the Governor,2022-05-12,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0174,2021-07-28,['became-law'],IL,102nd +Placed on Calendar Order of First Reading,2021-04-19,['reading-1'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-28,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 14, 2021",2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-29,[],IL,102nd +Public Act . . . . . . . . . 102-0357,2021-08-13,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2021-05-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-26,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Sent to the Governor,2022-04-01,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2021-05-07,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 116-000-000,2021-06-16,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2023-01-10,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Senate Floor Amendment No. 6 Motion to Concur Referred to Rules Committee,2023-01-10,['referral-committee'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-04-03,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-04-08,[],IL,102nd +Referred to Assignments,2021-05-21,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-04-07,[],IL,102nd +Chief Sponsor Changed to Rep. Katie Stuart,2022-04-09,[],IL,102nd +Recalled to Second Reading,2023-01-05,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2022-04-01,[],IL,102nd +House Floor Amendment No. 4 Adopted,2021-06-01,['amendment-passage'],IL,102nd +"Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2022-04-05,['referral-committee'],IL,102nd +Senate Concurs,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-04-04,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2022-08-10,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 113-000-000,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-01-04,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-03-03,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2022-03-30,[],IL,102nd +Public Act . . . . . . . . . 102-0779,2022-05-13,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-08-11,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 113-000-000,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-01-04,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-03-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2022-04-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-06-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-03-21,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2022-04-05,[],IL,102nd +Passed Both Houses,2023-01-05,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2021-05-11,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Criminal Law,2021-05-29,['referral-committee'],IL,102nd +Chief Senate Sponsor Sen. Ram Villivalam,2021-04-19,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Melinda Bush,2021-05-24,['amendment-introduction'],IL,102nd +House Concurs,2021-10-27,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-30,[],IL,102nd +Assigned to Agriculture,2021-05-20,['referral-committee'],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ryan Spain,2021-05-04,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-05-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2021-05-28,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Cristina H. Pacione-Zayas,2021-10-28,['filing'],IL,102nd +Governor Approved,2022-04-05,['executive-signature'],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Nicholas K. Smith,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-19,[],IL,102nd +House Concurs,2021-06-16,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Fine,2023-01-05,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2023-01-10,[],IL,102nd +Governor Approved,2022-05-10,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Steven Reick,2022-04-01,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Karina Villa,2021-05-21,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Insurance Committee,2022-04-06,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Katie Stuart,2022-04-09,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 013-005-000,2022-04-04,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. John C. D'Amico,2021-05-31,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2023-01-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2023-01-10,[],IL,102nd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-04-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2023-01-05,[],IL,102nd +House Floor Amendment No. 5 Filed with Clerk by Rep. Natalie A. Manley,2022-03-28,['amendment-introduction'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-27,[],IL,102nd +House Floor Amendment No. 2 Land Conveyance Appraisal Note Filed as Amended,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 055-001-000,2021-05-30,[],IL,102nd +State Mandates Fiscal Note Requested by Rep. Thomas Morrison,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. John C. D'Amico,2021-05-26,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-04-22,[],IL,102nd +Governor Approved,2022-05-10,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +"Effective Date December 14, 2022; some provisions effective 1-1-23.",2022-12-14,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 009-000-000,2021-05-30,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Land Conveyance Appraisal Note Filed as Amended,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-11-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-03-23,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-08,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Sent to the Governor,2022-04-18,['executive-receipt'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 4",2021-10-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Natalie A. Manley,2022-04-06,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2022-04-08,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 116-000-000,2021-10-27,[],IL,102nd +House Floor Amendment No. 2 Withdrawn by Rep. Robyn Gabel,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2021-04-20,[],IL,102nd +Amendatory Veto Motion - Motion Filed Accept Amendatory Veto Rep. LaToya Greenwood,2021-08-31,[],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2022-03-08,[],IL,102nd +Recalled to Second Reading,2021-06-01,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2022-04-04,[],IL,102nd +Governor Approved,2021-12-16,['executive-signature'],IL,102nd +Second Reading,2022-04-05,['reading-2'],IL,102nd +Third Reading - Short Debate - Passed 110-000-001,2021-04-23,"['passage', 'reading-3']",IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-01-31,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Justin Slaughter,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Chris Miller,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2022-04-06,[],IL,102nd +House Floor Amendment No. 5 Recommends Be Adopted Rules Committee; 003-001-000,2021-05-24,['committee-passage-favorable'],IL,102nd +"Effective Date May 18, 2022",2022-05-18,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +Second Reading,2022-04-07,['reading-2'],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2021-05-11,[],IL,102nd +Added as Co-Sponsor Sen. Sara Feigenholtz,2022-01-21,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-29,[],IL,102nd +Governor Approved,2022-12-21,['executive-signature'],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2021-05-31,[],IL,102nd +Governor Certifies Changes,2021-06-17,[],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2022-11-15,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +First Reading,2021-08-26,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-03-24,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2021-06-16,[],IL,102nd +Third Reading - Short Debate - Passed 111-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ryan Spain,2022-03-23,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2021-09-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-04-26,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2022-03-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 3 Rule 19(b) / Motion Referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-05-31,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Mattie Hunter,2021-10-28,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-18,[],IL,102nd +Third Reading - Passed; 032-020-000,2023-01-10,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Executive Committee; 010-004-000,2023-01-10,['committee-passage-favorable'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Michael E. Hastings,2021-08-31,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-01-06,['referral-committee'],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +House Floor Amendment No. 4 Senate Concurs 039-017-000,2021-06-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-04,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-10-27,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-03-30,[],IL,102nd +"Placed on Calendar Order of 3rd Reading October 20, 2021",2021-10-19,[],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2021-09-14,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 067-041-000,2022-01-05,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 5 House Concurs 079-036-000,2021-05-31,[],IL,102nd +Judicial Note Request is Inapplicable,2023-01-05,[],IL,102nd +State Debt Impact Note Request is Inapplicable,2023-01-05,[],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-08-31,['referral-committee'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-28,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 039-017-000,2021-06-01,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2021-05-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-01-10,[],IL,102nd +Passed Both Houses,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-01-06,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Referred to Assignments,2021-08-26,['referral-committee'],IL,102nd +Arrived in House,2021-05-26,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2022-04-04,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-04-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-05-04,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Greg Harris,2021-09-09,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Michelle Mussman,2021-05-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2021-06-16,[],IL,102nd +Third Reading - Short Debate - Passed 102-000-000,2022-03-04,"['passage', 'reading-3']",IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2021-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-03-18,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-10-20,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-09-30,[],IL,102nd +Adopted Both Houses,2022-04-08,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-31,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2022-04-07,['referral-committee'],IL,102nd +"Effective Date April 5, 2022",2022-04-05,[],IL,102nd +Sent to the Governor,2021-11-22,['executive-receipt'],IL,102nd +Governor Approved,2021-07-15,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 075-039-000,2021-10-28,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-06,[],IL,102nd +House Concurs,2022-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-06,['amendment-passage'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2021-05-21,[],IL,102nd +Senate Floor Amendment No. 6 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2023-01-10,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2021-05-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Katie Stuart,2022-04-09,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2023-01-05,[],IL,102nd +Assigned to Health,2021-05-04,['referral-committee'],IL,102nd +Passed Both Houses,2021-06-16,[],IL,102nd +"Effective Date May 10, 2022",2022-05-10,[],IL,102nd +Removed Co-Sponsor Rep. Kelly M. Cassidy,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 5 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2022-03-23,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2022-04-03,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Insurance Committee; 017-000-000,2022-04-07,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-04-08,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-11,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-0356,2021-08-13,['became-law'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Assigned to Health Care Licenses Committee,2021-05-04,['referral-committee'],IL,102nd +Second Reading,2021-05-14,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-0610,2021-08-27,['became-law'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Criminal Law,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +First Reading,2021-04-19,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-30,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Passed Both Houses,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-24,['referral-committee'],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 5,2021-05-29,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jackie Haas,2021-05-29,[],IL,102nd +House Concurs,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2023-01-04,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-09-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-04-05,[],IL,102nd +Sent to the Governor,2023-01-30,['executive-receipt'],IL,102nd +Third Reading - Short Debate - Passed 096-011-001,2021-06-01,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2022-03-21,[],IL,102nd +"Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2022-04-06,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-18,[],IL,102nd +Public Act . . . . . . . . . 102-1112,2022-12-21,['became-law'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 116-000-000,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-11-15,['referral-committee'],IL,102nd +"Effective Date June 17, 2021; Some Provisions Effective July 1, 2021.",2021-06-17,[],IL,102nd +Public Act . . . . . . . . . 102-0380,2021-08-13,['became-law'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-04-21,[],IL,102nd +"Effective Date May 10, 2022",2022-05-10,[],IL,102nd +3/5 Vote Required,2021-10-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Robert Rita,2021-10-28,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Recalled to Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Joe Sosnowski,2022-04-04,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +House Floor Amendment No. 3 Housing Affordability Impact Note Requested as Amended - Withdrawn by Rep. Robyn Gabel,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2022-11-30,['amendment-introduction'],IL,102nd +Second Reading,2022-03-23,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-06,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-04-25,[],IL,102nd +"Effective Date December 16, 2021",2021-12-16,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Assignments Referred to Executive,2022-04-08,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-30,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas M. Bennett,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2022-03-08,[],IL,102nd +Amendatory Veto Motion - Motion Referred to Rules Committee,2021-08-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Martwick,2021-06-01,['amendment-passage'],IL,102nd +Public Act . . . . . . . . . 102-1106,2022-12-14,['became-law'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 6, 2022",2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2023-01-05,[],IL,102nd +House Floor Amendment No. 5 Referred to Rules Committee,2022-03-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Pension Note Filed as Amended,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. William Davis,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-03,[],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2021-05-26,[],IL,102nd +Balanced Budget Note Filed,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2021-04-22,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +"Effective Date August 20, 2021; - some provisions effective January 1, 2022",2021-08-20,[],IL,102nd +Governor Approved,2022-05-10,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-14,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2022-01-24,[],IL,102nd +House Floor Amendment No. 6 Filed with Clerk by Rep. La Shawn K. Ford,2021-05-25,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2021-04-23,[],IL,102nd +Public Act . . . . . . . . . 102-0889,2022-05-18,['became-law'],IL,102nd +"Placed on Calendar Order of 3rd Reading April 8, 2022",2022-04-07,[],IL,102nd +Second Reading - Short Debate,2021-05-29,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-02-07,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-10-28,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-11,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2021-04-20,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robert Rita,2022-04-09,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Appropriations-Human Services Committee,2022-03-30,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 111-000-000,2022-04-07,[],IL,102nd +"Effective Date May 10, 2022",2022-05-10,[],IL,102nd +Remove Chief Co-Sponsor Rep. Delia C. Ramirez,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2021-05-14,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-04-23,[],IL,102nd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2022-02-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. William Davis,2022-04-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2021-10-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Elizabeth Hernandez,2022-04-09,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) February 25, 2022",2022-02-18,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-03-10,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-29,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-04-08,[],IL,102nd +House Floor Amendment No. 6 Referred to Rules Committee,2021-05-25,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Appropriations-Human Services Committee; 020-000-000,2022-03-31,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-04-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Keith R. Wheeler,2021-05-11,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2022-04-08,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2021-10-27,[],IL,102nd +House Floor Amendment No. 6 Filed with Clerk by Rep. Natalie A. Manley,2022-03-29,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-05-03,[],IL,102nd +Public Act . . . . . . . . . 102-0017,2021-06-17,['became-law'],IL,102nd +Senate Floor Amendment No. 3 House Concurs 116-000-000,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-11-15,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Katie Stuart,2021-05-28,[],IL,102nd +House Floor Amendment No. 4 Motion To Concur Recommended Do Adopt Executive; 012-005-000,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-10-28,[],IL,102nd +Public Act . . . . . . . . . 102-0953,2022-05-27,['became-law'],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Martwick,2021-06-01,['amendment-passage'],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2021-05-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Seth Lewis,2021-04-21,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2022-03-08,[],IL,102nd +Public Act . . . . . . . . . 102-0755,2022-05-10,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2022-04-04,[],IL,102nd +House Floor Amendment No. 3 Land Conveyance Appraisal Note Requested as Amended - Withdrawn by Rep. Robyn Gabel,2021-10-27,[],IL,102nd +Amendatory Veto Motion - Accept Motion Recommends Be Adopted Rules Committee; 003-001-000,2021-08-31,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2023-01-10,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-04-26,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 116-000-000,2021-10-27,[],IL,102nd +Public Act . . . . . . . . . 102-0684,2021-12-16,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Insurance Committee,2022-04-07,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 24, 2022",2022-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-11-30,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +Judicial Note Filed,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael J. Zalewski,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0442,2021-08-20,['became-law'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0697,2022-04-05,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Insurance Committee; 016-000-000,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-03-31,[],IL,102nd +"Effective Date January 1, 2022",2021-07-15,[],IL,102nd +Passed Both Houses,2022-01-05,[],IL,102nd +Third Reading - Passed; 056-000-000,2021-10-20,"['passage', 'reading-3']",IL,102nd +Governor Approved,2021-12-17,['executive-signature'],IL,102nd +House Concurs,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2022-03-24,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2021-10-19,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2022-03-29,[],IL,102nd +Approved for Consideration Assignments,2022-03-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2022-03-22,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Motion Filed to Reconsider Vote Rep. Terra Costa Howard,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-04,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 28, 2021",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. John C. D'Amico,2021-09-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Justin Slaughter,2021-06-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-04-28,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2021-03-24,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2022-04-08,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-27,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 5, 6",2023-01-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-01-05,[],IL,102nd +Sent to the Governor,2023-02-07,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2023-01-06,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-01-10,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-05-05,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 039-017-000,2021-06-01,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Sponsor Removed Sen. Dave Syverson,2021-08-31,[],IL,102nd +Chief Sponsor Changed to Rep. Anna Moeller,2022-01-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-01-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2022-10-03,[],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-11,[],IL,102nd +House Floor Amendment No. 2 State Debt Impact Note Filed as Amended,2021-05-30,[],IL,102nd +Third Reading - Passed; 036-017-000,2023-01-05,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2023-01-10,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-06,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2021-06-16,[],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Katie Stuart,2022-04-09,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 31, 2021",2021-05-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Arrive in Senate,2022-03-07,['introduction'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-07,[],IL,102nd +Sent to the Governor,2022-04-29,['executive-receipt'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-04-08,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2022-04-07,[],IL,102nd +"Committee Deadline Extended-Rule 9(b) March 31, 2022",2022-03-23,[],IL,102nd +Assigned to Education,2021-05-26,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura M. Murphy,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0756,2022-05-10,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-04-08,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 5 - May 30, 2021",2021-05-29,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Higher Education Committee,2021-05-29,['referral-committee'],IL,102nd +Sent to the Governor,2021-11-22,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-05-25,[],IL,102nd +Do Pass Agriculture; 012-001-000,2021-05-27,['committee-passage'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-30,[],IL,102nd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-31,[],IL,102nd +Do Pass as Amended Health; 013-000-000,2021-05-12,['committee-passage'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 17, 2021",2021-05-14,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 016-000-000,2022-04-07,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Criminal Law; 009-000-000,2021-05-30,[],IL,102nd +Referred to Assignments,2021-04-19,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-1076,2022-06-10,['became-law'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-10-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Mattie Hunter,2021-10-28,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2022-03-21,[],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-06-01,['amendment-failure'],IL,102nd +Governor Approved,2023-03-17,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2022-03-21,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 115-000-000,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-06-01,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-1144,2023-03-17,['became-law'],IL,102nd +Do Pass Health; 014-000-000,2021-05-12,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-09,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-04-08,[],IL,102nd +Arrived in House,2023-01-05,['introduction'],IL,102nd +Placed on Calendar Order of First Reading,2022-03-07,['reading-1'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Scott M. Bennett,2022-04-08,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Avery Bourne,2022-03-23,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Senate Floor Amendment No. 1 House Concurs 113-000-000,2022-04-07,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Third Reading - Short Debate - Passed 066-013-002,2022-04-06,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Fine,2021-05-18,[],IL,102nd +Second Reading,2022-11-15,['reading-2'],IL,102nd +House Committee Amendment No. 1 Land Conveyance Appraisal Note Filed as Amended,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-10-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2022-03-30,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-03-14,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-01-04,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 017-000-000,2021-05-27,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2021-05-30,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-21,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Higher Education Committee; 008-001-000,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2021-04-20,[],IL,102nd +House Floor Amendment No. 5 Motion to Concur Filed with Secretary Sen. Melinda Bush,2021-05-30,['filing'],IL,102nd +Governor Approved,2021-11-30,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2021-10-28,['referral-committee'],IL,102nd +House Floor Amendment No. 1 Senate Concurs 051-000-000,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Criminal Law; 009-000-000,2021-05-30,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Sonya M. Harper,2021-05-31,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-05-26,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-05-30,[],IL,102nd +Home Rule Note Filed,2021-05-26,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Senate Floor Amendment No. 5 House Concurs 116-000-000,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-11,[],IL,102nd +Added as Co-Sponsor Sen. Karina Villa,2022-02-10,[],IL,102nd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-23,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-04-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 111-000-000,2022-04-07,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2021-05-31,[],IL,102nd +Recalled to Second Reading - Short Debate,2022-03-31,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Sent to the Governor,2021-07-15,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-04-21,[],IL,102nd +House Floor Amendment No. 6 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-25,['committee-passage-favorable'],IL,102nd +Third Reading - Passed; 054-000-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Ann Gillespie,2021-05-31,['filing'],IL,102nd +Public Act . . . . . . . . . 102-0754,2022-05-10,['became-law'],IL,102nd +House Floor Amendment No. 6 Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael J. Zalewski,2023-01-05,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-29,"['passage', 'reading-3']",IL,102nd +Accept Amendatory Veto - House Passed 109-000-000,2021-08-31,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-11-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-04-04,[],IL,102nd +House Floor Amendment No. 3 Racial Impact Note Requested as Amended - Withdrawn by Rep. Robyn Gabel,2021-10-27,[],IL,102nd +Public Act . . . . . . . . . 102-0916,2022-05-27,['became-law'],IL,102nd +House Floor Amendment No. 4 Senate Concurs 040-017-000,2022-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Insurance Committee; 017-000-000,2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-04-26,[],IL,102nd +Public Act . . . . . . . . . 102-0358,2021-08-13,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2022-03-08,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-10-28,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2021-05-06,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-06-01,[],IL,102nd +"Effective Date January 1, 2023",2022-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2022-04-08,[],IL,102nd +House Concurs,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Robert Rita,2021-10-28,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Approved for Consideration Rules Committee; 004-000-000,2022-02-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Greg Harris,2023-01-05,[],IL,102nd +Public Act . . . . . . . . . 102-0101,2021-07-15,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-12-13,[],IL,102nd +Arrived in House,2021-10-20,['introduction'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 095-014-000,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Public Utilities Committee,2021-05-29,['referral-committee'],IL,102nd +"Effective Date June 1, 2022",2021-12-17,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-06,[],IL,102nd +Sent to the Governor,2022-01-06,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2021-05-31,[],IL,102nd +Third Reading - Passed; 054-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2022-03-29,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 073-036-000,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-04-08,[],IL,102nd +Governor Approved,2022-06-03,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2021-05-27,[],IL,102nd +Governor Approved,2021-08-02,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Kimberly A. Lightford,2021-05-28,['filing'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 29, 2022",2022-03-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Health Care Licenses Committee,2021-05-29,['referral-committee'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jonathan Carroll,2021-05-27,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Terra Costa Howard,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-05-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-01-10,[],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-09-09,[],IL,102nd +Removed Co-Sponsor Rep. Justin Slaughter,2021-06-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-03-22,[],IL,102nd +Public Act . . . . . . . . . 102-1133,2023-02-10,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2021-05-06,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Lakesia Collins,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2023-01-06,[],IL,102nd +Senate Concurs,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Michael E. Hastings,2021-08-31,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2021-08-31,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0476,2021-08-20,['became-law'],IL,102nd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-01-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-01-10,[],IL,102nd +3/5 Vote Required,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. David A. Welter,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2022-03-29,[],IL,102nd +Public Act . . . . . . . . . 102-0685,2021-12-17,['became-law'],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2021-05-31,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-10-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Public Utilities Committee; 020-002-001,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-01-07,[],IL,102nd +Senate Committee Amendment No. 2 House Concurs 095-014-000,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2022-02-10,[],IL,102nd +Passed Both Houses,2022-03-31,[],IL,102nd +Governor Approved,2022-05-17,['executive-signature'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3",2022-02-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2023-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-04-08,[],IL,102nd +"Effective Date July 1, 2022",2022-05-13,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-04-01,[],IL,102nd +"Effective Date August 1, 2022",2021-08-02,[],IL,102nd +Senate Floor Amendment No. 4 House Concurs 073-036-000,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2022-03-29,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2021-05-27,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Delia C. Ramirez,2021-09-10,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-27,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John Connor,2021-05-04,[],IL,102nd +"Effective Date June 3, 2022",2022-06-03,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-06-23,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Health Care Licenses Committee,2021-05-29,['referral-committee'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Suzy Glowiak Hilton,2022-03-28,[],IL,102nd +Do Pass Executive; 011-001-000,2021-03-24,['committee-passage'],IL,102nd +Second Reading,2021-05-28,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-24,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Sonya M. Harper,2021-06-02,[],IL,102nd +"Effective Date January 1, 2023",2021-08-16,[],IL,102nd +"Effective Date November 30, 2021",2021-11-30,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2021-04-20,[],IL,102nd +House Floor Amendment No. 5 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 House Concurs 082-034-000,2021-05-30,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 016-000-000,2021-10-28,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading November 16, 2022",2022-11-15,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2021-05-14,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Keith R. Wheeler,2021-06-01,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Mattie Hunter,2021-10-28,['filing'],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2022-03-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-04-05,[],IL,102nd +"Rule 2-10 Committee Deadline Established As May 31, 2021",2021-05-26,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Brad Halbrook,2022-04-04,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 13, 2021",2021-05-12,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2022-04-09,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-04-08,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2022-04-06,['amendment-failure'],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Chief Senate Sponsor Sen. Patricia Van Pelt,2022-03-07,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-09,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-01-04,[],IL,102nd +House Committee Amendment No. 1 Home Rule Note Filed as Amended,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2022-10-26,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2021-04-21,[],IL,102nd +House Floor Amendment No. 3 Adopted 063-048-002,2021-10-27,['amendment-passage'],IL,102nd +House Floor Amendment No. 2 Adopted,2021-04-21,['amendment-passage'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2022-03-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-06,[],IL,102nd +Passed Both Houses,2021-10-27,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-04-26,[],IL,102nd +Both Houses Accepted Amendatory Veto,2021-08-31,[],IL,102nd +Public Act . . . . . . . . . 102-0733,2022-05-06,['became-law'],IL,102nd +Third Reading - Passed; 036-015-002,2021-06-01,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-30,[],IL,102nd +Passed Both Houses,2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-04-07,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-12-01,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2021-10-28,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steven M. Landek,2022-03-22,[],IL,102nd +House Floor Amendment No. 4 Adopted,2021-05-25,['amendment-passage'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Adopted,2022-03-31,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-05-31,[],IL,102nd +Added as Co-Sponsor Sen. Celina Villanueva,2022-03-09,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Greg Harris,2022-04-09,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Revenue & Finance Committee,2021-05-31,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-10-28,[],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2021-05-17,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0933,2022-05-27,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Janet Yang Rohr,2021-10-27,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2022-03-10,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Recalled to Second Reading,2022-04-07,['reading-2'],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-02-25,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Julie A. Morrison,2021-05-30,[],IL,102nd +Pension Note Filed,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-22,[],IL,102nd +House Concurs,2021-06-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-28,[],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-04,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-05-28,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Added as Chief Co-Sponsor Sen. Karina Villa,2021-05-30,[],IL,102nd +State Debt Impact Note Filed,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-04-22,[],IL,102nd +Arrived in House,2021-06-08,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-07,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Do Pass / Consent Calendar Health Care Licenses Committee; 008-000-000,2021-05-12,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-04-27,[],IL,102nd +Returned to Governor for Certification,2021-09-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Charles Meier,2022-03-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 29, 2021",2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2021-10-28,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Robert Rita,2021-10-28,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-10-27,[],IL,102nd +Sent to the Governor,2021-11-22,['executive-receipt'],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2023-01-10,[],IL,102nd +Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +"Effective Date August 6, 2021",2021-08-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2021-04-21,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2021-05-17,['referral-committee'],IL,102nd +House Floor Amendment No. 5 Withdrawn by Rep. La Shawn K. Ford,2021-05-25,[],IL,102nd +Chief Sponsor Changed to Sen. Adriane Johnson,2022-08-24,[],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-04-23,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Greg Harris,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2021-05-27,[],IL,102nd +"Effective Date June 1, 2022",2021-08-27,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Ann Gillespie,2021-05-31,['filing'],IL,102nd +Added Co-Sponsor Rep. Randy E. Frese,2022-03-24,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-03-10,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2021-05-11,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Revenue & Finance Committee,2021-05-31,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 3 Withdrawn by Sen. Robert F. Martwick,2022-04-07,[],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Higher Education Committee,2021-05-29,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 016-000-000,2022-11-16,[],IL,102nd +Public Act . . . . . . . . . 102-0596,2021-08-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2022-03-29,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Ann M. Williams,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-27,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Kimberly A. Lightford,2021-05-28,['filing'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 005-003-000,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0778,2022-05-13,['became-law'],IL,102nd +"Placed on Calendar Order of 2nd Reading March 24, 2021",2021-03-24,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - April 4, 2022",2022-04-01,[],IL,102nd +Public Act . . . . . . . . . 102-0238,2021-08-02,['became-law'],IL,102nd +Added Chief Co-Sponsor Rep. Emanuel Chris Welch,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-04,[],IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-09-10,[],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2022-04-08,[],IL,102nd +Public Act . . . . . . . . . 102-1043,2022-06-03,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2022-03-28,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Reconsider Vote - Withdrawn Rep. Natalie A. Manley,2021-06-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-01-05,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +"Effective Date May 17, 2022",2022-05-17,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2023-01-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-01-10,[],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Michael E. Hastings,2021-08-31,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-10-20,['amendment-failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-02-16,[],IL,102nd +Governor Approved,2022-01-07,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2022-03-30,[],IL,102nd +Sent to the Governor,2021-11-22,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 3 House Concurs 095-014-000,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-01-06,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-01-04,[],IL,102nd +House Committee Amendment No. 1 State Mandates Fiscal Note Filed as Amended,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-11-16,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 3, 4",2021-06-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-21,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2021-05-31,[],IL,102nd +House Floor Amendment No. 5 Motion to Concur Assignments Referred to Health,2021-05-30,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-05-28,['reading-2'],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2021-05-30,['committee-passage-favorable'],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2021-04-20,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Passed Both Houses,2021-06-02,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 016-000-000,2021-10-28,[],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-12-01,[],IL,102nd +Public Act . . . . . . . . . 102-0391,2021-08-16,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0672,2021-11-30,['became-law'],IL,102nd +Do Pass as Amended Behavioral and Mental Health; 010-000-000,2021-05-19,['committee-passage'],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-04-08,[],IL,102nd +Public Act . . . . . . . . . 102-0876,2022-05-13,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +First Reading,2022-03-07,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Miller,2022-04-04,[],IL,102nd +Passed Both Houses,2021-05-29,[],IL,102nd +Waive Posting Notice,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2022-04-09,[],IL,102nd +Public Act . . . . . . . . . 102-0628,2021-08-27,['became-law'],IL,102nd +Third Reading - Passed; 042-002-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-04-09,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Jennifer Gong-Gershowitz,2023-01-05,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-08,['amendment-failure'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2022-04-06,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Do Pass Education; 010-004-000,2021-05-30,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-01-05,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2022-04-04,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +Referred to Assignments,2022-03-07,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +Sent to the Governor,2021-06-15,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Bush,2021-05-28,['amendment-passage'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0360,2021-08-13,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-006-000,2022-12-01,[],IL,102nd +Placed on Calendar 2nd Reading - Consent Calendar,2021-05-12,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2021-10-28,[],IL,102nd +House Floor Amendment No. 5 Motion To Concur Recommended Do Adopt Health; 009-000-000,2021-05-30,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-04-21,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-01-04,[],IL,102nd +Added Co-Sponsor Rep. Paul Jacobs,2022-03-21,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2022-03-30,[],IL,102nd +House Committee Amendment No. 2 Home Rule Note Requested as Amended - Withdrawn by Rep. Rita Mayfield,2022-03-25,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 3, 4 - June 1, 2021",2021-06-01,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2021-05-17,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Recalled to Second Reading,2022-11-16,['reading-2'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Higher Education Committee; 010-000-000,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-06-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2022-04-08,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0262,2021-08-06,['became-law'],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2022-03-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-04-28,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-01-10,[],IL,102nd +Governor Approved,2021-12-17,['executive-signature'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2022-04-07,[],IL,102nd +Third Reading - Passed; 038-012-004,2021-05-31,"['passage', 'reading-3']",IL,102nd +Third Reading - Short Debate - Passed 064-052-002,2021-10-27,"['passage', 'reading-3']",IL,102nd +Governor Certifies Changes,2021-10-08,[],IL,102nd +Third Reading - Short Debate - Passed 117-000-000,2021-04-21,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-05-05,[],IL,102nd +House Floor Amendment No. 5 Rules Refers to Mental Health & Addiction Committee,2022-03-30,[],IL,102nd +Housing Affordability Impact Note Filed,2021-05-26,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +House Floor Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2021-05-11,[],IL,102nd +Public Act . . . . . . . . . 102-0585,2021-08-27,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Education,2021-05-17,[],IL,102nd +Do Pass Executive; 011-003-000,2021-04-21,['committee-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Third Reading - Short Debate - Passed 114-000-000,2022-03-31,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Janet Yang Rohr,2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-27,[],IL,102nd +Third Reading - Short Debate - Passed 068-047-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-31,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Adopted; Martwick,2022-04-07,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Rules Referred to Revenue & Finance Committee,2021-05-31,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2021-10-28,[],IL,102nd +House Floor Amendment No. 6 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Greg Harris,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2022-03-10,[],IL,102nd +Arrive in Senate,2021-04-27,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-01-06,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Ethics & Elections Committee,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Javier L Cervantes,2022-11-29,[],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2021-08-31,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-30,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-29,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 072-036-001,2023-01-06,[],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2021-09-13,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Reconsider Vote - Withdrawn Rep. Natalie A. Manley,2021-06-29,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura M. Murphy,2022-04-04,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-05-04,[],IL,102nd +Added Chief Co-Sponsor Rep. Greg Harris,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2022-03-29,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Ann M. Williams,2023-01-11,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 023-000-000,2021-05-28,[],IL,102nd +Second Reading,2021-03-24,['reading-2'],IL,102nd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2022-03-28,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 005-003-000,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0886,2022-05-17,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-01-05,[],IL,102nd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Michelle Mussman,2021-10-25,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-04-21,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-02-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2021-11-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-05-31,[],IL,102nd +"Effective Date January 7, 2022",2022-01-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 081-025-000,2021-06-01,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Daniel Didech,2022-04-07,[],IL,102nd +Governor Approved,2021-12-10,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-31,[],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-10-25,['referral-committee'],IL,102nd +House Concurs,2021-06-01,[],IL,102nd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +Public Act . . . . . . . . . 102-0692,2022-01-07,['became-law'],IL,102nd +Sponsor Removed Sen. Julie A. Morrison,2022-02-24,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-05-31,[],IL,102nd +"Placed on Calendar Order of 3rd Reading March 25, 2021",2021-03-24,[],IL,102nd +Senate Floor Amendment No. 1 Referred to Assignments,2022-03-28,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-05-04,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 070-044-000,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-04-08,[],IL,102nd +Passed Both Houses,2021-06-29,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 114-000-000,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2022-03-29,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Criminal Law,2021-05-29,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-01-10,[],IL,102nd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2021-09-13,[],IL,102nd +Passed Both Houses,2023-01-11,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Ethics & Elections Committee; 011-007-000,2021-05-31,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Robert Rita,2023-01-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-11-30,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 113-000-000,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 072-036-001,2023-01-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2023-01-10,[],IL,102nd +Governor Approved,2021-08-23,['executive-signature'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2022-02-09,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2023-01-05,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ryan Spain,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2022-03-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-01-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Mary E. Flowers,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2023-01-05,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - April 6, 2022",2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2022-04-04,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2022-03-08,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Diane Pappas,2022-03-23,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Governor Approved,2022-05-24,['executive-signature'],IL,102nd +House Floor Amendment No. 5 Senate Concurs 058-000-000,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-10-28,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 011-006-000,2022-12-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John F. Curran,2021-04-21,[],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas Morrison,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +House Committee Amendment No. 2 Racial Impact Note Requested as Amended - Withdrawn by Rep. Rita Mayfield,2022-03-25,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2021-06-11,[],IL,102nd +Governor Approved,2022-06-29,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 018-000-000,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2022-03-24,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2021-05-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-11,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-09,['referral-committee'],IL,102nd +"Placed on Calendar Order of 2nd Reading April 22, 2021",2021-04-21,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-27,['reading-1'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Cyril Nichols,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 2 Assignments Refers to Education,2021-05-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2021-10-28,[],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2022-03-31,['amendment-failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2021-05-28,[],IL,102nd +House Floor Amendment No. 6 Rules Refers to Mental Health & Addiction Committee,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2021-05-30,[],IL,102nd +Governor Approved,2021-06-25,['executive-signature'],IL,102nd +Senate Floor Amendment No. 1 Adopted; Harmon,2022-11-16,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Batinick,2021-05-12,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Delia C. Ramirez,2021-06-14,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-04-08,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Bob Morgan,2021-10-27,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Steven Reick,2022-03-08,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +"Effective Date October 8, 2021",2021-10-08,[],IL,102nd +"Effective Date December 17, 2021",2021-12-17,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-04-21,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Michael E. Hastings,2021-08-31,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +Fiscal Note Filed,2021-05-26,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Senate Floor Amendment No. 5 Referred to Assignments,2021-08-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-04-22,[],IL,102nd +Correctional Note Requested by Rep. Camille Y. Lilly,2021-05-26,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2021-10-28,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-26,[],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2021-05-30,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-11-16,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 018-000-000,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-18,[],IL,102nd +"Alternate Chief Co-Sponsor Removed Rep. Lamont J. Robinson, Jr.",2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-05-31,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-10-28,[],IL,102nd +Chief Senate Sponsor Sen. Mattie Hunter,2021-04-27,[],IL,102nd +Third Reading - Short Debate - Passed 070-033-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2022-03-25,['amendment-introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-04-08,[],IL,102nd +Third Reading - Passed; 058-000-000,2022-04-07,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Executive Committee,2021-10-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-04-21,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2022-03-10,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-09,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-05-11,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-01-04,[],IL,102nd +House Floor Amendment No. 5 Recommends Be Adopted Mental Health & Addiction Committee; 012-000-000,2022-03-31,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2021-05-28,[],IL,102nd +Assigned to Executive,2021-05-10,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-06-14,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0589,2021-08-27,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0665,2021-10-08,['became-law'],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0635,2021-08-27,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0939,2022-05-27,['became-law'],IL,102nd +"Effective Date May 6, 2022",2022-05-06,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2021-05-12,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 071-041-000,2021-10-28,[],IL,102nd +Arrive in Senate,2021-04-21,['introduction'],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Bob Morgan,2021-10-28,[],IL,102nd +Public Act . . . . . . . . . 102-0687,2021-12-17,['became-law'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-01-05,[],IL,102nd +Senate Committee Amendment No. 1 Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Housing Affordability Impact Note Filed as Amended,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Eric Mattson,2022-12-01,[],IL,102nd +Third Reading - Short Debate - Passed 064-043-000,2023-01-06,"['passage', 'reading-3']",IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Daniel Didech,2022-04-13,[],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-10-25,['referral-committee'],IL,102nd +Motion Filed to Reconsider Vote Rep. Jackie Haas,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-05-31,[],IL,102nd +"Effective Date December 10, 2021",2021-12-10,[],IL,102nd +Sponsor Removed Sen. John Connor,2022-02-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2022-04-01,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted - Lost Health Care Licenses Committee; 002-006-000,2021-04-21,['committee-passage-favorable'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Licensed Activities,2022-04-04,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. LaToya Greenwood,2023-01-10,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Criminal Law,2021-05-29,['referral-committee'],IL,102nd +Do Pass Education; 013-001-000,2021-05-05,['committee-passage'],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-30,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 070-044-000,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. David Friess,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2022-03-28,[],IL,102nd +Sent to the Governor,2023-01-24,['executive-receipt'],IL,102nd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2021-09-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-01-10,[],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +Passed Both Houses,2023-01-06,[],IL,102nd +"Effective Date August 23, 2021",2021-08-23,[],IL,102nd +"Effective Date June 29, 2022",2022-06-29,[],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +House Committee Amendment No. 2 State Mandates Fiscal Note Requested as Amended - Withdrawn by Rep. Rita Mayfield,2022-03-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-04-08,[],IL,102nd +Second Reading,2021-05-30,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2022-03-23,[],IL,102nd +"Effective Date January 1, 2022",2021-08-20,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tony McCombie,2022-04-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Mike Simmons,2022-04-06,['filing'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 066-040-000,2023-01-06,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Do Pass as Amended Insurance; 012-000-000,2021-05-19,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2022-03-21,[],IL,102nd +Recalled to Second Reading - Short Debate,2021-05-30,['reading-2'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2021-04-21,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2021-05-19,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-10-28,[],IL,102nd +Governor Approved,2021-08-06,['executive-signature'],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Third Reading - Passed; 046-010-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +"Effective Date May 24, 2022",2022-05-24,[],IL,102nd +"Effective Date June 25, 2021",2021-06-25,[],IL,102nd +Public Act . . . . . . . . . 102-0597,2021-08-27,['became-law'],IL,102nd +Senate Concurs,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-12-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-04-21,[],IL,102nd +Public Act . . . . . . . . . 102-0028,2021-06-25,['became-law'],IL,102nd +"Effective Date January 1, 2022",2021-08-06,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-30,['amendment-passage'],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-05-19,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Governor Approved,2021-07-30,['executive-signature'],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2022-12-01,[],IL,102nd +Public Act . . . . . . . . . 102-0897,2022-05-24,['became-law'],IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Second Reading - Short Debate,2022-03-25,['reading-2'],IL,102nd +Public Act . . . . . . . . . 102-1101,2022-06-29,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-09,[],IL,102nd +Assigned to Executive,2022-03-16,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 31, 2021",2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Ozinga,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2022-04-07,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2022-04-09,[],IL,102nd +Passed Both Houses,2023-01-06,[],IL,102nd +Public Act . . . . . . . . . 102-0453,2021-08-20,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Adam Niemerg,2022-03-23,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-03-22,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Delia C. Ramirez,2021-06-14,[],IL,102nd +Public Act . . . . . . . . . 102-1031,2022-05-27,['became-law'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 3",2021-10-28,[],IL,102nd +Public Act . . . . . . . . . 102-0723,2022-05-06,['became-law'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2023-01-10,[],IL,102nd +Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +House Concurs,2021-10-28,[],IL,102nd +Public Act . . . . . . . . . 102-0918,2022-05-27,['became-law'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2022-04-08,[],IL,102nd +"Placed on Calendar Order of First Reading April 22, 2021",2021-04-21,['reading-1'],IL,102nd +Added Alternate Co-Sponsor Rep. Keith P. Sommer,2022-03-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2021-05-11,[],IL,102nd +First Reading,2021-04-27,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-04-08,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 018-000-000,2021-05-31,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Mark Batinick,2021-05-27,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-04-07,['amendment-failure'],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-31,[],IL,102nd +House Floor Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-25,['amendment-failure'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Executive Committee,2021-10-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2022-03-31,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2022-04-09,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-21,[],IL,102nd +Public Act . . . . . . . . . 102-0908,2022-05-27,['became-law'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2022-03-10,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Public Act . . . . . . . . . 102-0525,2021-08-20,['became-law'],IL,102nd +Land Conveyance Appraisal Note Requested by Rep. Camille Y. Lilly,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2021-04-22,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 048-008-000,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John F. Curran,2021-05-30,[],IL,102nd +3/5 Vote Required,2022-11-16,[],IL,102nd +Public Act . . . . . . . . . 102-0022,2021-06-25,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Keith R. Wheeler,2022-03-30,[],IL,102nd +House Floor Amendment No. 6 Recommends Be Adopted Mental Health & Addiction Committee; 012-000-000,2022-03-31,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2023-01-04,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-01-06,[],IL,102nd +Public Act . . . . . . . . . 102-0570,2021-08-23,['became-law'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2023-01-10,[],IL,102nd +Re-assigned to Judiciary,2022-03-16,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Remains in Health Care Licenses Committee,2021-04-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-04-08,[],IL,102nd +Motion Withdrawn Rep. Jackie Haas,2021-06-02,[],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0678,2021-12-10,['became-law'],IL,102nd +Third Reading - Passed; 037-012-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 021-000-000,2021-10-26,[],IL,102nd +Passed Both Houses,2022-04-13,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-01-05,[],IL,102nd +Senate Floor Amendment No. 2 Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2021-05-13,['amendment-introduction'],IL,102nd +Chief Sponsor Changed to Sen. Don Harmon,2022-10-21,[],IL,102nd +House Floor Amendment No. 2 Housing Affordability Impact Note Filed as Amended,2021-05-31,[],IL,102nd +Assigned to Health,2023-01-04,['referral-committee'],IL,102nd +Motion Filed To Reconsider the Vote on Motion Rep. Ann M. Williams,2023-01-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. John F. Curran,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2023-01-10,[],IL,102nd +Governor Approved,2023-01-27,['executive-signature'],IL,102nd +Chief Co-Sponsor Changed to Sen. Michael E. Hastings,2021-09-13,[],IL,102nd +Governor Approved,2022-06-02,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 6, 2021",2021-05-05,[],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Criminal Law; 009-000-000,2021-05-30,[],IL,102nd +Governor Approved,2021-08-02,['executive-signature'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-03-25,[],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Licensed Activities; 006-000-000,2022-04-05,[],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Amy Grant,2021-05-30,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Chief Co-Sponsor Changed to Sen. Bill Cunningham,2021-09-13,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2023-01-10,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Criminal Law; 009-000-000,2021-05-30,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 054-000-000,2022-04-08,[],IL,102nd +"Effective Date January 1, 2022; - Some Provisions Effective January 01, 2024",2021-08-02,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-04-08,[],IL,102nd +"Effective Date January 1, 2023",2022-06-02,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-05-05,[],IL,102nd +"Effective Date January 27, 2023",2023-01-27,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2021-03-25,[],IL,102nd +Senate Floor Amendment No. 3 Rule 19(b) / Motion Referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Referred to Assignments,2021-04-27,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2023-01-05,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-30,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2023-01-06,[],IL,102nd +House Floor Amendment No. 1 Adopted,2021-04-22,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-22,[],IL,102nd +Sent to the Governor,2022-04-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-05-31,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-01,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2022-03-22,['amendment-introduction'],IL,102nd +Passed Both Houses,2021-06-02,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-13,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2023-01-04,['amendment-introduction'],IL,102nd +Motion to Reconsider Vote - Tabled,2023-01-06,['withdrawal'],IL,102nd +Added Co-Sponsor Rep. Tony McCombie,2022-03-22,[],IL,102nd +House Floor Amendment No. 2 Home Rule Note Filed as Amended,2021-05-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-25,[],IL,102nd +Recalled to Second Reading,2022-12-01,['reading-2'],IL,102nd +"Effective Date January 1, 2022",2021-07-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2021-04-21,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-05-28,[],IL,102nd +Public Act . . . . . . . . . 102-0260,2021-08-06,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-20,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-11-09,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Second Reading,2021-05-20,['reading-2'],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2021-05-20,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Miller,2022-03-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2022-04-09,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to State Government,2022-04-07,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas Morrison,2022-04-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2022-03-22,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Lilian Jimenez,2023-01-09,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2021-05-25,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 113-000-000,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-01-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Brady,2022-03-30,[],IL,102nd +Correctional Note Requested - Withdrawn by Rep. Camille Y. Lilly,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 6 Filed with Secretary by Sen. Michael E. Hastings,2021-10-27,['amendment-introduction'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 048-008-000,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ryan Spain,2022-03-08,[],IL,102nd +"Effective Date February 23, 2022",2021-08-27,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-07,[],IL,102nd +Held on Calendar Order of Second Reading - Consent Calendar,2021-05-13,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-06-14,['referral-committee'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 3 - October 28, 2021",2021-10-28,[],IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +Chief Senate Sponsor Sen. Linda Holmes,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2023-01-10,[],IL,102nd +Alternate Chief Co-Sponsor Changed to Rep. Mark Batinick,2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2021-05-31,[],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-05-25,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2022-04-09,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Senate Committee Amendment No. 2 Adopted,2021-05-18,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Anna Moeller,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 110-002-001,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Tim Ozinga,2022-03-10,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-04-21,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-04-08,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2022-03-31,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-11,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2021-05-30,[],IL,102nd +Third Reading - Passed; 050-000-000,2022-11-16,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-05-30,[],IL,102nd +Arrived in House,2022-11-16,['introduction'],IL,102nd +House Floor Amendment No. 3 Housing Affordability Impact Note Filed as Amended,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-04-08,[],IL,102nd +First Reading,2021-04-22,['reading-1'],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-07,[],IL,102nd +Added Chief Co-Sponsor Rep. Delia C. Ramirez,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2023-01-10,[],IL,102nd +Public Act . . . . . . . . . 102-0586,2021-08-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2022-03-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Consent Calendar,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Ethics & Elections Committee,2021-06-15,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-01-04,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 6 Referred to Assignments,2021-10-27,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Senate Concurs 048-008-000,2021-10-28,[],IL,102nd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. Camille Y. Lilly,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Fred Crespo,2021-04-22,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-03-28,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2021-05-31,[],IL,102nd +Do Pass as Amended Education; 009-004-000,2021-05-19,['committee-passage'],IL,102nd +Alternate Co-Sponsor Removed Rep. Lakesia Collins,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-05-31,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 010-004-000,2021-10-27,[],IL,102nd +House Floor Amendment No. 3 Tabled Pursuant to Rule 40,2021-05-25,['amendment-failure'],IL,102nd +Second Reading,2021-04-23,['reading-2'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mark Batinick,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-04-07,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 3",2023-01-06,[],IL,102nd +Sponsor Removed Sen. Jacqueline Y. Collins,2021-05-17,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2023-01-04,['referral-committee'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2023-01-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Martin McLaughlin,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-05,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-1123,2023-01-27,['became-law'],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-03-25,[],IL,102nd +Public Act . . . . . . . . . 102-1040,2022-06-02,['became-law'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2021-05-30,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2, 4",2021-09-13,[],IL,102nd +Sent to the Governor,2021-06-15,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0237,2021-08-02,['became-law'],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2022-05-09,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-04-27,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-01-05,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-22,['referral-committee'],IL,102nd +Arrived in House,2022-04-01,['introduction'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-04-22,[],IL,102nd +Sent to the Governor,2022-05-12,['executive-receipt'],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Thomas Morrison,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 2 House Concurs 114-000-000,2021-10-28,[],IL,102nd +Sent to the Governor,2021-06-30,['executive-receipt'],IL,102nd +Arrived in House,2022-04-08,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2022-04-04,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 113-000-000,2022-04-09,[],IL,102nd +Public Act . . . . . . . . . 102-0930,2022-05-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2022-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-03-23,[],IL,102nd +Sent to the Governor,2023-02-03,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 1 Adopted; Peters,2022-12-01,['amendment-passage'],IL,102nd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lamont J. Robinson, Jr.",2021-05-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0203,2021-07-30,['became-law'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 100-011-001,2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Omar Aquino,2021-04-21,[],IL,102nd +Public Act . . . . . . . . . 102-0652,2021-08-27,['became-law'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Sent to the Governor,2021-11-16,['executive-receipt'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-22,[],IL,102nd +House Floor Amendment No. 2 State Mandates Fiscal Note Filed as Amended,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2022-03-30,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-20,['referral-committee'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 21, 2021",2021-05-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Behavioral and Mental Health,2021-05-24,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-31,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2022-03-22,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-03-24,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Thomas M. Bennett,2022-04-04,[],IL,102nd +House Concurs,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2022-04-09,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 042-006-000,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-04-08,[],IL,102nd +"Effective Date February 17, 2023",2023-02-17,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2022-03-24,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-04-21,[],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Governor Approved,2021-12-03,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Adopted; Peters,2022-12-01,['amendment-passage'],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-30,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-30,[],IL,102nd +Senate Floor Amendment No. 4 House Concurs 110-002-001,2021-10-28,[],IL,102nd +Arrive in Senate,2021-05-26,['introduction'],IL,102nd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2021-05-31,[],IL,102nd +Waive Posting Notice,2022-03-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Rachelle Crowe,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Robert Rita,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-04-07,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-28,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 3",2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2021-05-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 27, 2021",2021-04-23,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2022-04-09,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Steven Reick,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Executive Committee; 010-004-000,2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Luft,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-01-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2021-05-30,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-11-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2022-04-08,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Ethics & Elections Committee,2021-06-15,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Vella,2022-03-08,[],IL,102nd +House Floor Amendment No. 3 Land Conveyance Appraisal Note Filed as Amended,2021-10-28,[],IL,102nd +Referred to Assignments,2021-04-22,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-10-28,[],IL,102nd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2022-04-30,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 6 Assignments Refers to Executive,2021-10-27,[],IL,102nd +Senate Concurs,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Jeff Keicher,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2021-05-26,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +House Concurs,2021-10-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-01,[],IL,102nd +Removed from Short Debate Status,2021-04-22,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Mike Murphy,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-03-22,[],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Michael T. Marron,2022-04-08,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-07-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-05,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-03-29,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Third Reading - Passed; 041-016-000,2021-03-25,"['passage', 'reading-3']",IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2, 4 - September 13, 2021",2021-09-13,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 3 - January 8, 2023",2023-01-06,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2021-05-18,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Health,2023-01-04,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-01-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lilian Jimenez,2023-01-10,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2021-04-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Robert Rita,2023-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2023-01-05,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura M. Murphy,2021-04-27,[],IL,102nd +Sponsor Removed Sen. Adriane Johnson,2021-05-18,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-01-10,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-04-22,[],IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-23,[],IL,102nd +Senate Floor Amendment No. 2 Housing Affordability Impact Note Filed as Amended,2021-10-29,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2022-04-04,[],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +Added Co-Sponsor Rep. Adam Niemerg,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-1073,2022-06-10,['became-law'],IL,102nd +"Senate Floor Amendment No. 2 Motion Filed Concur Rep. Lamont J. Robinson, Jr.",2021-05-29,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-03-25,[],IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Governor Approved,2021-07-22,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-09-13,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-01-10,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2021-05-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-01-10,[],IL,102nd +Sent to the Governor,2023-02-03,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2022-03-30,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-04-08,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2022-03-25,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Adam Niemerg,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-1141,2023-02-17,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Dave Vella,2022-04-08,[],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2022-03-24,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Lindsey LaPointe,2022-11-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-05-20,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Behavioral and Mental Health; 010-000-000,2021-05-25,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-22,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 100-011-001,2021-10-28,[],IL,102nd +Arrived in House,2021-05-27,['introduction'],IL,102nd +Public Act . . . . . . . . . 102-0623,2021-08-27,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael J. Zalewski,2021-05-30,[],IL,102nd +"Effective Date December 3, 2021",2021-12-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-04-21,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Tom Demmer,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 6 Recommend Do Adopt Executive; 010-000-004,2021-10-27,[],IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-04-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-04-07,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 3 - April 4, 2022",2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2022-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-05-31,[],IL,102nd +House Concurs,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-03-10,[],IL,102nd +Placed on Calendar Order of First Reading,2021-05-26,['reading-1'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 071-042-000,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-31,[],IL,102nd +Governor Approved,2021-08-02,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-19,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-05-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-01-04,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Seth Lewis,2022-03-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2021-04-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2021-05-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. David A. Welter,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2023-01-10,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-10-28,['filing'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Ethics & Elections Committee; 010-007-000,2021-06-16,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2022-04-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2021-04-27,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Ethics & Elections Committee; 010-007-000,2021-06-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-18,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2022-03-08,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 3, 5",2022-04-09,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2022-03-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steven M. Landek,2021-05-31,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura Fine,2022-04-04,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-19,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-06-01,[],IL,102nd +"Effective Date August 2, 2021",2021-08-02,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Darren Bailey,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2021-05-12,[],IL,102nd +Added as Co-Sponsor Sen. Omar Aquino,2021-06-01,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2022-03-10,[],IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2021-05-26,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-04-26,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 071-042-000,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2022-04-08,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As April 8, 2022",2022-03-31,[],IL,102nd +Sent to the Governor,2021-11-24,['executive-receipt'],IL,102nd +Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Recalled to Second Reading,2021-10-27,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Mark Luft,2021-04-22,[],IL,102nd +Public Act . . . . . . . . . 102-0474,2021-08-20,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2023-01-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2021-05-29,[],IL,102nd +House Floor Amendment No. 5 Adopted,2022-04-06,['amendment-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-01-10,[],IL,102nd +Public Act . . . . . . . . . 102-1135,2023-02-10,['became-law'],IL,102nd +Added Chief Co-Sponsor Rep. Deb Conroy,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Kelly M. Cassidy,2022-04-05,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0609,2021-08-27,['became-law'],IL,102nd +Sent to the Governor,2021-11-01,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-1055,2022-06-10,['became-law'],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2022-03-23,[],IL,102nd +Added Co-Sponsor Rep. Avery Bourne,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2023-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-04-27,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2023-01-10,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Second Reading,2022-03-29,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2021-05-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-03-25,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2021-09-13,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-07-22,[],IL,102nd +Public Act . . . . . . . . . 102-0339,2021-08-13,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-04-21,[],IL,102nd +Public Act . . . . . . . . . 102-0677,2021-12-03,['became-law'],IL,102nd +3/5 Vote Required,2021-10-28,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. John C. D'Amico,2021-05-30,[],IL,102nd +3/5 Vote Required,2022-12-01,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-11-29,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2021-05-25,[],IL,102nd +"Alternate Co-Sponsor Removed Rep. Lamont J. Robinson, Jr.",2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Norine K. Hammond,2022-04-07,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-04-09,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. David Friess,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-04-08,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-22,[],IL,102nd +House Floor Amendment No. 2 Judicial Note Filed as Amended,2021-06-01,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-03-30,[],IL,102nd +House Committee Amendment No. 1 Judicial Note Filed as Amended,2021-06-01,[],IL,102nd +"Final Action Deadline Extended-9(b) April 8, 2022",2022-03-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 4 House Concurs 100-011-001,2021-10-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Will Guzzardi,2021-05-29,[],IL,102nd +Third Reading - Passed; 036-016-000,2022-12-01,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-04-21,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2022-11-29,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-05-26,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2022-04-04,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Scott M. Bennett,2022-04-18,[],IL,102nd +Governor Approved,2022-05-26,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Jackie Haas,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-08,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2022-04-09,[],IL,102nd +House Floor Amendment No. 6 Adopted,2022-04-06,['amendment-passage'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-01-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2021-04-22,[],IL,102nd +Governor Approved,2021-11-30,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 1 Withdrawn by Sen. Michael E. Hastings,2021-10-27,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2021-05-26,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Terra Costa Howard,2023-01-10,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 3, 5 - April 8, 2022",2022-04-09,[],IL,102nd +Third Reading - Consent Calendar - First Day,2021-05-21,['reading-3'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-10-28,['filing'],IL,102nd +Placed on Standard Debate,2021-06-16,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 071-042-000,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2021-10-28,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2022-03-24,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-20,[],IL,102nd +Re-assigned to Executive,2022-03-31,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-03-30,[],IL,102nd +Public Act . . . . . . . . . 102-0234,2021-08-02,['became-law'],IL,102nd +Sent to the Governor,2021-06-07,['executive-receipt'],IL,102nd +Third Reading - Passed; 039-013-000,2021-04-29,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-04-25,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2021-06-01,[],IL,102nd +First Reading,2021-05-26,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2021-05-12,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 117-000-001,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-05-20,[],IL,102nd +Passed Both Houses,2021-03-25,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-09-13,['filing'],IL,102nd +"Placed on Calendar Order of 3rd Reading March 30, 2022",2022-03-29,[],IL,102nd +Public Act . . . . . . . . . 102-0103,2021-07-22,['became-law'],IL,102nd +Second Reading,2021-05-06,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2023-01-10,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Governor Approved,2021-08-05,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-01-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-04-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-10-28,[],IL,102nd +Third Reading - Standard Debate - Passed 105-002-003,2021-04-22,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2021-05-31,[],IL,102nd +Re-referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2021-11-09,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Labor & Commerce Committee,2021-05-29,['referral-committee'],IL,102nd +Do Pass as Amended Executive; 010-006-000,2021-05-19,['committee-passage'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0993,2022-05-27,['became-law'],IL,102nd +Sent to the Governor,2021-04-02,['executive-receipt'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Dave Severin,2022-03-10,[],IL,102nd +"Effective Date January 1, 2022",2021-08-05,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-09-13,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2023-01-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 10, 2021",2021-05-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-01-05,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 1,2022-03-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2021-04-27,[],IL,102nd +Senate Committee Amendment No. 1 Re-referred to Assignments,2022-03-24,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-11-17,[],IL,102nd +Added Co-Sponsor Rep. Chris Bos,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Health Care Licenses Committee,2022-04-05,['referral-committee'],IL,102nd +Sent to the Governor,2021-11-22,['executive-receipt'],IL,102nd +House Floor Amendment No. 2 Tabled Pursuant to Rule 40,2021-04-22,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Labor & Commerce Committee,2021-05-29,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Dan Caulkins,2022-04-07,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 099-007-005,2022-04-08,[],IL,102nd +"Effective Date January 1, 2023",2022-05-26,[],IL,102nd +Added as Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Seth Lewis,2022-03-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2022-04-04,[],IL,102nd +House Concurs,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2021-05-30,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2021-04-21,[],IL,102nd +Motion Filed to Reconsider Vote Sen. Don Harmon,2022-12-01,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2021-06-02,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. La Shawn K. Ford,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2022-04-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 013-000-000,2022-11-29,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Peters,2021-05-26,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2021-05-20,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0959,2022-05-27,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Antonio Muñoz,2021-04-27,[],IL,102nd +Third Reading - Consent Calendar - Passed 111-000-001,2021-05-26,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 House Concurs 070-041-000,2021-06-16,[],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2022-04-09,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2021-10-28,['referral-committee'],IL,102nd +Sponsor Removed Sen. Win Stoller,2023-01-05,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-06,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Lawrence Walsh, Jr.",2021-05-29,[],IL,102nd +State Mandates Fiscal Note Filed,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 6 Adopted; Hastings,2021-10-27,['amendment-passage'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +"Effective Date November 30, 2021",2021-11-30,[],IL,102nd +House Concurs,2022-04-09,[],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Passed Both Houses,2021-04-29,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-30,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2022-03-25,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 116-000-000,2021-05-31,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Laura Fine,2022-04-04,['filing'],IL,102nd +Arrived in House,2022-04-07,['introduction'],IL,102nd +Filed Without Signature,2021-08-09,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patricia Van Pelt,2022-03-31,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Seth Lewis,2021-05-12,[],IL,102nd +Referred to Assignments,2021-05-26,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-10-28,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2021-06-01,[],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +"Effective Date August 9, 2021",2021-08-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2021-10-28,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 4",2022-04-07,[],IL,102nd +Senate Floor Amendment No. 3 House Concurs 116-000-000,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2022-03-31,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-20,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 015-000-000,2021-05-12,['committee-passage'],IL,102nd +Assigned to Executive,2021-05-26,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Senate Concurs,2021-06-01,[],IL,102nd +Do Pass as Amended Executive; 015-000-000,2022-03-30,['committee-passage'],IL,102nd +Added Alternate Co-Sponsor Rep. C.D. Davidsmeyer,2022-03-25,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-10-28,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2022-04-06,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-01-05,[],IL,102nd +Added as Co-Sponsor Sen. Steven M. Landek,2021-05-29,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2021-05-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2021-04-27,[],IL,102nd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-10-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Greg Harris,2023-01-10,[],IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 070-041-000,2021-06-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deb Conroy,2022-04-09,[],IL,102nd +Passed Both Houses,2021-05-26,[],IL,102nd +Public Act . . . . . . . . . 102-0674,2021-11-30,['became-law'],IL,102nd +Correctional Note Filed,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2021-05-26,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +3/5 Vote Required,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2021-05-31,[],IL,102nd +Governor Approved,2021-12-10,['executive-signature'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 005-003-000,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-29,[],IL,102nd +Governor Approved,2021-12-03,['executive-signature'],IL,102nd +Assignments Re-refers to Executive,2022-03-24,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2021-05-29,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2021-04-22,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-01-10,[],IL,102nd +Public Act . . . . . . . . . 102-0248,2021-08-05,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-06,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Governor Approved,2021-04-27,['executive-signature'],IL,102nd +House Floor Amendment No. 4 Motion to Concur Filed with Secretary Sen. Don Harmon,2021-09-13,['filing'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2022-03-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-01-05,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - March 31, 2022",2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-04-27,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-26,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Thomas M. Bennett,2022-07-14,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2021-06-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2022-04-08,[],IL,102nd +Public Act . . . . . . . . . 102-0903,2022-05-26,['became-law'],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Keith R. Wheeler,2022-03-08,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-04-07,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Luft,2022-04-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2022-04-09,[],IL,102nd +Motion Prevailed,2022-12-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-04-21,[],IL,102nd +Placed on Calendar - Consideration Postponed,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-01-10,[],IL,102nd +Third Reading - Short Debate - Passed 078-030-000,2023-01-10,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2021-05-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2022-04-09,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Charles Meier,2022-04-04,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2022-03-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-31,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Sent to the Governor,2021-05-05,['executive-receipt'],IL,102nd +"Effective Date May 6, 2022; - Some Provisions Effective Jan 01, 2023",2022-05-06,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Referred to Assignments,2021-09-13,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 House Concurs 109-000-000,2022-11-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joyce Mason,2021-08-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +3/5 Vote Required,2022-12-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-05-30,[],IL,102nd +Third Reading - Passed; 043-016-000,2021-10-27,"['passage', 'reading-3']",IL,102nd +"Chief Senate Sponsor Sen. Emil Jones, III",2021-04-23,[],IL,102nd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2021-05-26,[],IL,102nd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-05-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-20,[],IL,102nd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-04-09,[],IL,102nd +Passed Both Houses,2021-06-01,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2021-05-12,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Darren Bailey,2022-03-29,[],IL,102nd +Waive Posting Notice,2021-05-26,[],IL,102nd +Public Act . . . . . . . . . 102-0334,2021-08-09,['became-law'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2021-10-29,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Behavioral and Mental Health,2022-04-04,['referral-committee'],IL,102nd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Patricia Van Pelt,2022-03-31,['amendment-introduction'],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Halpin,2022-03-25,[],IL,102nd +Senate Floor Amendment No. 4 House Concurs 116-000-000,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0651,2021-08-27,['became-law'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 010-006-000,2023-01-05,[],IL,102nd +Assigned to Labor & Commerce Committee,2022-03-01,['referral-committee'],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2022-04-06,[],IL,102nd +Sent to the Governor,2021-06-24,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2023-01-10,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to Executive,2021-10-28,['referral-committee'],IL,102nd +House Committee Amendment No. 3 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2022-04-09,['filing'],IL,102nd +House Concurs,2021-06-16,[],IL,102nd +Remove Chief Co-Sponsor Rep. Carol Ammons,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2021-04-27,[],IL,102nd +House Floor Amendment No. 4 Adopted,2023-01-05,['amendment-passage'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2022-05-10,['referral-committee'],IL,102nd +"Effective Date April 27, 2021",2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Nicholas K. Smith,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2021-05-10,['amendment-introduction'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-31,[],IL,102nd +"Effective Date December 10, 2021",2021-12-10,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-03-24,[],IL,102nd +"Effective Date December 3, 2021; ; some provisions effective 6-1-2022",2021-12-03,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 019-005-000,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 114-000-000,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 072-030-000,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Michael E. Hastings,2021-05-28,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Third Reading - Passed; 056-000-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Alternate Chief Sponsor Changed to Sen. Jacqueline Y. Collins,2023-01-05,[],IL,102nd +House Floor Amendment No. 4 Note / Motion Filed - Note Act Does Not Apply Rep. Kelly M. Cassidy,2023-01-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Keith P. Sommer,2022-03-10,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2021-05-12,['amendment-failure'],IL,102nd +Public Act . . . . . . . . . 102-0004,2021-04-27,['became-law'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-05-10,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2023-01-10,[],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 019-005-000,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0676,2021-12-03,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0679,2021-12-10,['became-law'],IL,102nd +Arrive in Senate,2021-04-23,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steven M. Landek,2021-05-31,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-04-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2021-05-30,[],IL,102nd +Third Reading - Passed; 038-017-000,2022-12-01,"['passage', 'reading-3']",IL,102nd +House Concurs,2022-11-30,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Ann M. Williams,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-1034,2022-05-27,['became-law'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0721,2022-05-06,['became-law'],IL,102nd +Second Reading,2021-05-21,['reading-2'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2022-03-08,[],IL,102nd +Governor Approved,2021-05-17,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2021-09-13,[],IL,102nd +Third Reading - Passed; 056-000-000,2022-04-08,"['passage', 'reading-3']",IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 2, 3",2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2022-04-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2021-08-23,[],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Margaret Croke,2023-01-10,[],IL,102nd +House Committee Amendment No. 3 Motion to Concur Referred to Assignments,2022-04-09,['referral-committee'],IL,102nd +Senate Floor Amendment No. 1 Motion Filed to Reconsider Vote Rep. Delia C. Ramirez,2021-06-16,[],IL,102nd +"Rule 2-10 Committee Deadline Established As April 4, 2022",2022-03-25,[],IL,102nd +Sent to the Governor,2021-11-22,['executive-receipt'],IL,102nd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 009-006-000,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-04-27,[],IL,102nd +Senate Committee Amendment No. 2 Referred to Assignments,2022-03-31,['referral-committee'],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2021-10-29,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-06-01,[],IL,102nd +"Effective Date January 1, 2023",2022-05-27,[],IL,102nd +Do Pass Executive; 017-000-000,2021-05-27,['committee-passage'],IL,102nd +Second Reading,2022-03-31,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-10-28,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2022-03-29,['amendment-introduction'],IL,102nd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Jay Hoffman,2022-04-07,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to Behavioral and Mental Health,2022-04-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2022-03-29,[],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2021-10-27,['amendment-failure'],IL,102nd +Fiscal Note Filed,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-05-26,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-20,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Chris Bos,2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2022-03-01,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-01,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2021-05-26,[],IL,102nd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2021-10-27,['amendment-failure'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-27,[],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion Filed to Reconsider Vote Rep. Delia C. Ramirez,2021-06-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Diane Pappas,2022-03-28,[],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2023-01-10,[],IL,102nd +Governor Approved,2021-12-17,['executive-signature'],IL,102nd +House Floor Amendment No. 5 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2022-04-09,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-04-28,[],IL,102nd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt Executive; 009-006-000,2021-10-28,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2021-06-01,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-05-27,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-10-29,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2021-10-28,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2022-04-01,[],IL,102nd +Public Act . . . . . . . . . 102-0911,2022-05-27,['became-law'],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Behavioral and Mental Health; 006-000-000,2022-04-05,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2021-05-27,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-20,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Placed on Calendar Order of First Reading,2021-04-23,['reading-1'],IL,102nd +Motion Filed to Reconsider Vote Rep. Margaret Croke,2022-04-07,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 118-000-000,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2022-04-09,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 085-028-002,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-04-28,[],IL,102nd +House Floor Amendment No. 4 Motion Prevailed 067-040-000,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2023-01-05,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2021-05-29,[],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2021-05-13,[],IL,102nd +Added Co-Sponsor Rep. Joe Sosnowski,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Education,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Joyce Mason,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-08-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Ann M. Williams,2023-01-10,[],IL,102nd +"Effective Date August 16, 2021",2021-08-16,[],IL,102nd +Arrived in House,2022-12-01,['introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-04-21,[],IL,102nd +Passed Both Houses,2022-11-30,[],IL,102nd +Added Co-Sponsor Rep. Amy Elik,2022-04-08,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 3 - April 9, 2022",2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2022-04-08,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 24, 2021",2021-05-21,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2022-04-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2022-03-08,[],IL,102nd +"Effective Date May 17, 2021",2021-05-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-31,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2021-09-13,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Blaine Wilhour,2022-04-04,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-04-08,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Be Approved for Consideration Assignments,2021-09-13,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-24,[],IL,102nd +Public Act . . . . . . . . . 102-0005,2021-05-17,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2022-03-08,[],IL,102nd +Third Reading - Passed; 039-017-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Michael E. Hastings,2022-04-09,['filing'],IL,102nd +Added Alternate Co-Sponsor Rep. Dave Severin,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-04-21,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2022-12-01,[],IL,102nd +Public Act . . . . . . . . . 102-0399,2021-08-16,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-09-16,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 4",2023-01-10,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Sent to the Governor,2022-12-20,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-05-20,[],IL,102nd +Governor Approved,2021-08-26,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-06-23,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-03-30,['amendment-passage'],IL,102nd +House Floor Amendment No. 5 Motion to Concur Referred to Assignments,2022-04-09,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 031-024-000,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-04-28,[],IL,102nd +"Effective Date December 17, 2021",2021-12-17,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 5, 6",2022-04-06,[],IL,102nd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2022-03-02,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2021-05-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2021-05-26,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 4 Tabled Pursuant to Rule 5-4(a),2021-10-27,['amendment-failure'],IL,102nd +"Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2022-04-01,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2022-04-07,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-05-31,[],IL,102nd +Governor Approved,2022-06-02,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt Behavioral and Mental Health; 006-000-000,2022-04-05,[],IL,102nd +Second Reading,2021-05-27,['reading-2'],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Brady,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-10-29,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-06-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John F. Curran,2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-11,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Ryan Spain,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-14,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2021-05-29,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Margaret Croke,2022-04-12,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 085-028-002,2021-05-31,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Chief Senate Sponsor Sen. Cristina Castro,2021-04-23,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-30,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-04-28,[],IL,102nd +House Floor Amendment No. 4 Fiscal Note Request as Amended is Inapplicable,2023-01-05,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-05-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Kelly M. Cassidy,2021-05-28,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Passed Both Houses,2022-04-12,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-05-30,[],IL,102nd +First Reading,2021-04-23,['reading-1'],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Anna Moeller,2021-05-14,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2022-03-10,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 013-000-000,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 2 Postponed - Executive,2021-05-29,[],IL,102nd +House Floor Amendment No. 4 Home Rule Note Request as Amended is Inapplicable,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2021-04-29,[],IL,102nd +"Effective Date August 26, 2021",2021-08-26,[],IL,102nd +Governor Approved,2022-12-21,['executive-signature'],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2022-03-09,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2021-09-23,[],IL,102nd +House Committee Amendment No. 1 3/5 Vote Required,2021-09-13,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-24,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2022-04-08,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2022-04-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2022-04-25,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2022-04-09,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Demmer,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Justin Slaughter,2022-12-01,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 4 - January 10, 2023",2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Ozinga,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-10-29,[],IL,102nd +"Effective Date June 2, 2022",2022-06-02,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-08,[],IL,102nd +Third Reading - Passed; 055-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2022-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-04-05,[],IL,102nd +Waive Posting Notice,2022-04-01,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 092-023-000,2021-10-28,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 28, 2021",2021-05-27,[],IL,102nd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2021-05-31,[],IL,102nd +Sent to the Governor,2021-06-30,['executive-receipt'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 5, 6 - April 6, 2022",2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-05-20,[],IL,102nd +Public Act . . . . . . . . . 102-0689,2021-12-17,['became-law'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Omar Aquino,2021-06-23,[],IL,102nd +Do Pass as Amended Executive; 011-006-000,2022-03-30,['committee-passage'],IL,102nd +Assigned to Insurance,2021-04-28,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Senate Concurs 031-024-000,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-01-10,[],IL,102nd +House Committee Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 5 Tabled Pursuant to Rule 5-4(a),2021-10-27,['amendment-failure'],IL,102nd +Adopted Both Houses,2021-05-26,[],IL,102nd +Land Conveyance Appraisal Note Filed,2021-05-28,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As December 1, 2021",2021-08-25,['reading-3'],IL,102nd +Approved for Consideration Assignments,2021-08-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-26,[],IL,102nd +Fiscal Note Filed,2021-05-28,[],IL,102nd +Arrived in House,2021-10-27,['introduction'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 28, 2021",2021-05-27,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2021-05-31,[],IL,102nd +Governor Amendatory Veto,2021-08-27,['executive-veto'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2021-05-28,[],IL,102nd +Arrived in House,2022-04-01,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2022-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-04-06,[],IL,102nd +Added Co-Sponsor Rep. Delia C. Ramirez,2021-10-29,[],IL,102nd +Public Act . . . . . . . . . 102-1037,2022-06-02,['became-law'],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-04-08,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-29,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 3 House Concurs 092-023-000,2021-10-28,[],IL,102nd +House Floor Amendment No. 5 Motion to Concur Filed with Secretary Sen. Meg Loughran Cappel,2022-04-06,['filing'],IL,102nd +House Floor Amendment No. 5 Motion to Concur Be Approved for Consideration Assignments,2022-04-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2021-06-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2021-04-28,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-01-10,[],IL,102nd +Senate Concurs,2021-10-28,[],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-03-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-04-29,[],IL,102nd +Third Reading - Short Debate - Passed 067-041-000,2023-01-05,"['passage', 'reading-3']",IL,102nd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2022-03-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2021-05-12,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2021-05-14,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Bradley Stephens,2022-03-10,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2022-04-01,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-05-31,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Referred to Assignments,2021-04-23,['referral-committee'],IL,102nd +Second Reading,2021-05-30,['reading-2'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Kimberly A. Lightford,2023-01-10,['filing'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Governor Approved,2022-05-06,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-24,[],IL,102nd +House Committee Amendment No. 1 Senate Concurs 037-017-003,2021-09-13,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2022-04-04,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Michael E. Hastings,2022-04-09,['filing'],IL,102nd +Public Act . . . . . . . . . 102-1108,2022-12-21,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0583,2021-08-26,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Bob Morgan,2021-09-23,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-03-09,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-22,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Justin Slaughter,2022-12-01,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-30,"['passage', 'reading-3']",IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Third Reading - Passed; 059-000-000,2021-05-29,"['passage', 'reading-3']",IL,102nd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-01-10,['referral-committee'],IL,102nd +House Floor Amendment No. 2 3/5 Vote Required,2021-09-13,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2022-04-09,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-25,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +"Effective Date May 6, 2022; - Some Provisions Effective Jan 01, 2023",2022-05-06,[],IL,102nd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2022-04-04,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +House Floor Amendment No. 5 Motion to Concur Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Margaret Croke,2021-09-28,[],IL,102nd +House Committee Amendment No. 2 Rules Refers to Labor & Commerce Committee,2022-03-15,[],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-04-22,[],IL,102nd +Sponsor Removed Sen. Brian W. Stewart,2022-04-09,[],IL,102nd +Second Reading,2022-03-31,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2021-06-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2021-04-28,[],IL,102nd +Verified,2021-10-28,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2021-05-31,[],IL,102nd +House Concurs,2021-10-28,[],IL,102nd +Placed on Calendar Amendatory Veto,2021-08-31,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2021-05-28,[],IL,102nd +Do Pass / Short Debate Energy & Environment Committee; 024-000-000,2022-03-29,['committee-passage'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-01,[],IL,102nd +Chief Sponsor Changed to Rep. Eva-Dina Delgado,2022-04-08,[],IL,102nd +House Floor Amendment No. 1 Senate Concurs 058-000-000,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Lindsey LaPointe,2021-10-29,[],IL,102nd +"Placed on Calendar Order of 2nd Reading August 31, 2021",2021-08-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-28,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 6,2021-10-27,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 31, 2021",2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Kelly M. Cassidy,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2021-04-29,[],IL,102nd +Do Pass as Amended Executive; 014-000-000,2022-04-01,['committee-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Adam Niemerg,2022-03-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2021-05-14,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2021-04-27,[],IL,102nd +Governor Approved,2021-08-16,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-06-07,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-06-08,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-04-27,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +"Effective Date January 1, 2022",2021-08-16,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-04-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2023-01-05,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-28,['referral-committee'],IL,102nd +Recalled to Second Reading,2021-05-19,['reading-2'],IL,102nd +Placed on Calendar Order of 2nd Reading,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. John C. D'Amico,2021-10-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Elik,2022-03-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2021-05-14,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2022-03-10,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2021-10-19,[],IL,102nd +House Floor Amendment No. 6 Motion to Concur Filed with Secretary Sen. Meg Loughran Cappel,2022-04-06,['filing'],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-16,['amendment-failure'],IL,102nd +House Floor Amendment No. 4 Motion to Concur Filed with Secretary Sen. Kimberly A. Lightford,2023-01-10,['filing'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2022-12-01,['referral-committee'],IL,102nd +Added as Chief Co-Sponsor Sen. Thomas Cullerton,2021-05-30,[],IL,102nd +"Effective Date January 1, 2023",2022-06-10,[],IL,102nd +Arrived in House,2021-05-29,['introduction'],IL,102nd +Governor Approved,2022-05-31,['executive-signature'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2021-05-25,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2022-04-09,[],IL,102nd +"Effective Date August 13, 2021",2021-08-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-04-04,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Public Act . . . . . . . . . 102-0719,2022-05-06,['became-law'],IL,102nd +House Floor Amendment No. 2 Senate Concurs 037-017-003,2021-09-13,[],IL,102nd +Removed Co-Sponsor Rep. C.D. Davidsmeyer,2021-10-27,[],IL,102nd +Pursuant to Senate Rule 3-9(b)(ii) this bill shall not be re-referred to the Committee on Assignment pursuant to Senate Rule 3-9(b).,2021-10-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2021-05-28,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 058-000-000,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-03-29,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2022-04-04,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 113-000-001,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steven M. Landek,2021-05-28,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-30,[],IL,102nd +Amendatory Veto Motion - Motion Filed Accept Amendatory Veto Sen. Ann Gillespie,2021-08-31,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Janet Yang Rohr,2021-10-28,[],IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-04-26,[],IL,102nd +Senate Floor Amendment No. 1 Motion to Reconsider Vote - Withdrawn Rep. Delia C. Ramirez,2021-06-30,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-01-10,[],IL,102nd +Sponsor Removed Sen. Dan McConchie,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Sonya M. Harper,2023-01-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 1, 2022",2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-04-29,[],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-04-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Omar Aquino,2022-04-01,[],IL,102nd +Sent to the Governor,2021-11-08,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2021-04-26,[],IL,102nd +Sponsor Removed Sen. Dale Fowler,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Reconsider Vote - Withdrawn Rep. Delia C. Ramirez,2021-06-30,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2021-05-31,[],IL,102nd +Amendatory Veto Motion - Motion Referred to Assignments,2021-08-31,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2022-03-30,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Janet Yang Rohr,2021-11-01,[],IL,102nd +Third Reading - Passed; 050-003-001,2021-05-28,"['passage', 'reading-3']",IL,102nd +Senate Floor Amendment No. 4 House Concurs 113-000-001,2022-04-08,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-04,[],IL,102nd +Second Reading,2021-10-19,['reading-2'],IL,102nd +Removed Co-Sponsor Rep. Norine K. Hammond,2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Villivalam,2021-05-19,['amendment-passage'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2021-10-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Greg Harris,2021-05-18,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Daniel Swanson,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Fred Crespo,2022-03-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2022-04-04,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Neil Anderson,2021-04-28,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0389,2021-08-16,['became-law'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-05-03,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-28,[],IL,102nd +House Floor Amendment No. 4 3/5 Vote Required,2021-09-13,[],IL,102nd +"Effective Date May 31, 2022",2022-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0340,2021-08-13,['became-law'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-25,[],IL,102nd +Public Act . . . . . . . . . 102-0912,2022-05-27,['became-law'],IL,102nd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-12-01,[],IL,102nd +Public Act . . . . . . . . . 102-1051,2022-06-10,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Dan McConchie,2021-05-30,[],IL,102nd +House Committee Amendment No. 2 Adopted in Labor & Commerce Committee; by Voice Vote,2022-03-16,['amendment-passage'],IL,102nd +House Floor Amendment No. 5 Motion to Concur Assignments Referred to State Government,2022-04-07,['referral-committee'],IL,102nd +Approved for Consideration Rules Committee; 003-002-000,2021-10-25,[],IL,102nd +House Floor Amendment No. 4 Motion to Concur Referred to Assignments,2023-01-10,['referral-committee'],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2021-05-29,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Deb Conroy,2021-05-30,[],IL,102nd +House Floor Amendment No. 5 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-10-25,[],IL,102nd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 018-008-000,2022-03-16,['committee-passage'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-04-09,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-27,[],IL,102nd +House Floor Amendment No. 4 Senate Concurs 037-017-003,2021-09-13,[],IL,102nd +Public Act . . . . . . . . . 102-1035,2022-05-31,['became-law'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-01-10,[],IL,102nd +Added as Co-Sponsor Sen. Jason A. Barickman,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 Recommends Be Adopted - Referred to Floor,2022-12-01,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2023-01-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading October 20, 2021",2021-10-19,[],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-05-28,[],IL,102nd +Removed Co-Sponsor Rep. Ryan Spain,2021-10-27,[],IL,102nd +Passed Both Houses,2021-11-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2022-03-29,[],IL,102nd +House Concurs,2022-04-08,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2022-03-30,[],IL,102nd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Curtis J. Tarver, II",2022-04-05,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-31,[],IL,102nd +Amendatory Veto Motion - Approved for Consideration Assignments,2021-08-31,[],IL,102nd +Passed Both Houses,2021-06-30,[],IL,102nd +Sponsor Removed Sen. Terri Bryant,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2021-04-27,[],IL,102nd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-04-30,[],IL,102nd +Governor Approved,2021-11-08,['executive-signature'],IL,102nd +Third Reading - Passed; 030-017-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Mental Health & Addiction Committee,2021-05-29,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-07-06,[],IL,102nd +"Effective Date January 1, 2022",2021-08-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2021-04-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2021-11-04,[],IL,102nd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2021-05-18,[],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-05-19,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-07-16,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2023-01-05,[],IL,102nd +Assigned to Insurance,2021-05-10,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Michael Kelly,2023-01-05,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-05-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2021-05-18,[],IL,102nd +"Added as Alternate Chief Co-Sponsor Sen. Napoleon Harris, III",2022-04-01,[],IL,102nd +Sent to the Governor,2021-11-12,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-20,[],IL,102nd +Added Alternate Co-Sponsor Rep. Andrew S. Chesney,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Dan Ugaste,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Mental Health & Addiction Committee,2021-05-29,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2021-04-28,[],IL,102nd +Public Act . . . . . . . . . 102-0613,2021-08-27,['became-law'],IL,102nd +Governor Approved,2021-07-22,['executive-signature'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 4 Motion to Concur Be Approved for Consideration Assignments,2023-01-10,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 055-001-000,2022-04-09,[],IL,102nd +Senate Concurs,2021-09-13,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-30,['referral-committee'],IL,102nd +House Floor Amendment No. 6 Motion to Concur Referred to Assignments,2022-04-07,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2021-10-25,[],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-17,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 003-001-000,2022-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Sue Rezin,2021-05-30,[],IL,102nd +"Effective Date June 1, 2022",2021-11-08,[],IL,102nd +Assigned to Health,2021-04-28,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2021-05-03,[],IL,102nd +House Committee Amendment No. 3 Senate Concurs 051-001-001,2022-04-09,[],IL,102nd +Verified,2022-04-01,[],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2023-01-10,[],IL,102nd +Sent to the Governor,2021-07-29,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Barbara Hernandez,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Suzanne Ness,2022-03-30,[],IL,102nd +Sent to the Governor,2021-11-30,['executive-receipt'],IL,102nd +3/5 Vote Required,2021-08-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2022-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +Removed Co-Sponsor Rep. Thomas M. Bennett,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2021-11-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. Greg Harris,2021-05-28,[],IL,102nd +Third Reading - Short Debate - Passed 060-048-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Chief Sponsor Changed to Rep. Ann M. Williams,2021-10-28,[],IL,102nd +Added Co-Sponsor Rep. Jay Hoffman,2021-12-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2022-03-29,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2022-04-05,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-05-31,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Accept Amendatory Veto - Senate Passed 058-000-000,2021-08-31,[],IL,102nd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2022-03-30,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0667,2021-11-08,['became-law'],IL,102nd +Added Co-Sponsor Rep. Daniel Didech,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-04-28,[],IL,102nd +House Floor Amendment No. 5 Senate Concurs 051-001-001,2022-04-09,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2021-05-03,[],IL,102nd +Governor Approved,2021-07-29,['executive-signature'],IL,102nd +Arrived in House,2022-04-03,['introduction'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Mental Health & Addiction Committee; 014-000-000,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2021-05-10,[],IL,102nd +Second Reading,2022-04-01,['reading-2'],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-05-18,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Dave Vella,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2022-04-04,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-25,"['passage', 'reading-3']",IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-11-15,[],IL,102nd +"Effective Date July 22, 2021",2021-07-22,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Fine,2021-04-29,[],IL,102nd +Added as Co-Sponsor Sen. Brian W. Stewart,2021-05-30,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2022-12-01,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Mental Health & Addiction Committee,2021-05-30,['referral-committee'],IL,102nd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2021-11-28,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2023-01-10,[],IL,102nd +Third Reading - Passed; 042-017-000,2021-05-28,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2023-01-10,[],IL,102nd +Passed Both Houses,2021-09-13,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 055-001-000,2022-04-09,[],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. La Shawn K. Ford,2021-10-26,['amendment-introduction'],IL,102nd +House Floor Amendment No. 6 Motion to Concur Assignments Referred to State Government,2022-04-07,['referral-committee'],IL,102nd +Second Reading - Short Debate,2022-03-24,['reading-2'],IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-01-05,[],IL,102nd +House Floor Amendment No. 6 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2022-04-07,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-03-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-01-05,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2021-10-26,['referral-committee'],IL,102nd +House Committee Amendment No. 1 Senate Concurs 038-016-000,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Kelly M. Cassidy,2022-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Steve McClure,2021-05-30,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Mental Health & Addiction Committee; 014-000-000,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2023-01-10,[],IL,102nd +Senate Concurs,2022-04-09,[],IL,102nd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-09-13,[],IL,102nd +Arrived in House,2021-05-28,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-04-28,[],IL,102nd +"Effective Date June 1, 2022",2021-07-29,[],IL,102nd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-01-10,[],IL,102nd +Senate Concurs,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-05-03,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-03,[],IL,102nd +House Floor Amendment No. 2 Referred to Rules Committee,2022-03-30,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Eric Mattson,2022-05-10,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Eric Mattson,2022-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2022-03-29,[],IL,102nd +Governor Approved,2021-07-15,['executive-signature'],IL,102nd +Governor Vetoed,2022-01-24,['executive-veto'],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-08-31,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 014-000-000,2022-04-06,[],IL,102nd +Senate Floor Amendment No. 6 Motion Filed Concur Rep. Ann M. Williams,2021-10-28,[],IL,102nd +Passed Both Houses,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-04-29,[],IL,102nd +Public Act . . . . . . . . . 102-0104,2021-07-22,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-05-10,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Mental Health & Addiction Committee; 014-000-000,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-11-16,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sue Scherer,2022-03-08,[],IL,102nd +Added Co-Sponsor Rep. Mark L. Walker,2022-03-10,[],IL,102nd +"Placed on Calendar Order of 3rd Reading April 4, 2022",2022-04-01,[],IL,102nd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2021-05-18,[],IL,102nd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2021-05-25,['amendment-failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-04,[],IL,102nd +Added Alternate Co-Sponsor Rep. Joe Sosnowski,2022-03-08,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +"Added Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-03-10,[],IL,102nd +Governor Approved,2021-11-16,['executive-signature'],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Mark Batinick,2022-04-04,[],IL,102nd +Arrived in House,2021-05-25,['introduction'],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-05-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-04,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Melinda Bush,2021-04-29,[],IL,102nd +Sponsor Removed Sen. Doris Turner,2022-04-04,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 115-000-000,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Laura Fine,2021-09-13,[],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-05-28,[],IL,102nd +Added Co-Sponsor Rep. Jonathan Carroll,2023-01-10,[],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Will Guzzardi,2022-12-01,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 2, 1",2021-05-30,[],IL,102nd +Third Reading - Short Debate - Passed 077-025-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Motion Filed to Reconsider Vote Rep. Ann M. Williams,2023-01-05,[],IL,102nd +House Floor Amendment No. 5 Senate Concurs 058-000-000,2022-04-07,[],IL,102nd +House Floor Amendment No. 4 Senate Concurs 038-016-000,2023-01-10,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-10-26,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 116-000-002,2021-05-31,[],IL,102nd +Alternate Co-Sponsor Removed Rep. Lance Yednock,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 6 Motion to Concur Referred to Rules Committee,2021-10-28,['referral-committee'],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +"Effective Date July 15, 2021",2021-07-15,[],IL,102nd +Added Alternate Co-Sponsor Rep. Mark Luft,2022-03-30,[],IL,102nd +Arrived in House,2021-08-31,['introduction'],IL,102nd +Added Co-Sponsor Rep. Maura Hirschauer,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-03-29,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2021-05-18,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 114-000-000,2022-04-07,[],IL,102nd +Governor Approved,2022-05-26,['executive-signature'],IL,102nd +Placed on Calendar Total Veto,2022-02-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2021-04-28,[],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +Public Act . . . . . . . . . 102-0177,2021-07-29,['became-law'],IL,102nd +Added Co-Sponsor Rep. Elizabeth Hernandez,2023-01-10,[],IL,102nd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-01-10,[],IL,102nd +Added as Co-Sponsor Sen. Cristina Castro,2022-04-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-04-30,[],IL,102nd +Placed on Calendar Amendatory Veto,2021-08-31,[],IL,102nd +Public Act . . . . . . . . . 102-0098,2021-07-15,['became-law'],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2021-05-31,[],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +"Effective Date January 1, 2023",2022-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Sam Yingling,2022-03-30,[],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-05-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2022-03-29,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2021-05-28,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 115-000-000,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 6 Motion to Concur Rules Referred to Energy & Environment Committee,2021-10-28,['referral-committee'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-05-11,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tim Butler,2022-03-08,[],IL,102nd +Total Veto Stands - No Positive Action Taken,2022-03-04,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2021-05-25,[],IL,102nd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2022-04-04,[],IL,102nd +"Effective Date November 16, 2021",2021-11-16,[],IL,102nd +Added Co-Sponsor Rep. Tom Weber,2022-03-10,[],IL,102nd +Third Reading - Passed; 058-000-000,2022-04-05,"['passage', 'reading-3']",IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2021-05-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2021-04-29,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. La Shawn K. Ford,2022-04-05,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2022-04-01,[],IL,102nd +Motion to Reconsider Vote - Tabled,2023-01-05,['withdrawal'],IL,102nd +House Floor Amendment No. 6 Senate Concurs 058-000-000,2022-04-07,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Anna Moeller,2021-05-29,[],IL,102nd +Sent to the Governor,2022-04-18,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Ann Gillespie,2021-09-13,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 31, 2021",2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Michelle Mussman,2022-12-01,[],IL,102nd +Senate Concurs,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2021-10-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kambium Buckner,2021-10-26,[],IL,102nd +Passed Both Houses,2023-01-10,[],IL,102nd +Governor Approved,2022-04-19,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Rita Mayfield,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +Sent to the Governor,2021-09-14,['executive-receipt'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +House Floor Amendment No. 4 State Mandates Fiscal Note Request as Amended is Inapplicable,2023-01-05,[],IL,102nd +Senate Concurs,2022-04-07,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2022-04-01,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Robyn Gabel,2022-12-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2021-05-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2022-03-29,[],IL,102nd +Amendatory Veto Motion - Motion Filed Accept Amendatory Veto Rep. Kelly M. Burke,2021-08-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Demmer,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2021-05-19,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Public Act . . . . . . . . . 102-0904,2022-05-26,['became-law'],IL,102nd +Added Co-Sponsor Rep. LaToya Greenwood,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-1053,2022-06-10,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2021-05-03,[],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Robert Rita,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-05-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. David Koehler,2021-04-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2021-05-11,[],IL,102nd +Senate Floor Amendment No. 6 Motion to Concur Recommends Be Adopted Energy & Environment Committee; 016-004-000,2021-10-28,[],IL,102nd +House Concurs,2021-05-30,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jennifer Gong-Gershowitz,2021-05-26,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Demmer,2022-03-08,[],IL,102nd +Arrived in House,2022-04-05,['introduction'],IL,102nd +Public Act . . . . . . . . . 102-0669,2021-11-16,['became-law'],IL,102nd +Added Co-Sponsor Rep. David A. Welter,2022-03-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-11-18,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. Theresa Mah,2022-03-30,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Swanson,2022-03-09,[],IL,102nd +"Added Co-Sponsor Rep. Maurice A. West, II",2022-03-10,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - April 5, 2022",2022-04-04,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-26,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-05-11,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Housing Committee,2022-04-05,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-05-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2021-04-29,[],IL,102nd +Senate Floor Amendment No. 6 House Concurs 083-033-000,2021-10-28,[],IL,102nd +Added Chief Co-Sponsor Rep. Thaddeus Jones,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Bob Morgan,2022-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Dave Syverson,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Carol Ammons,2021-10-26,[],IL,102nd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Anna Moeller,2021-05-29,[],IL,102nd +Governor Approved,2021-09-15,['executive-signature'],IL,102nd +"Effective Date April 19, 2022; Some Provisions Effective July 1, 2023",2022-04-19,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2023-01-10,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - April 4, 2022",2022-04-01,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2, 3, 4",2023-01-06,[],IL,102nd +Added Co-Sponsor Rep. Michael Halpin,2023-01-10,[],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2021-05-03,[],IL,102nd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2022-04-28,[],IL,102nd +Amendatory Veto Motion - Motion Referred to Rules Committee,2021-08-31,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Andrew S. Chesney,2021-05-31,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2022-07-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-03-30,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 014-000-000,2021-05-19,['committee-passage-favorable'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2021-05-28,[],IL,102nd +Sent to the Governor,2021-06-25,['executive-receipt'],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-05-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2022-03-31,[],IL,102nd +Amendatory Veto Motion - Accept Motion Recommends Be Adopted Rules Committee; 003-001-000,2021-08-31,['committee-passage-favorable'],IL,102nd +Added Co-Sponsor Rep. Keith R. Wheeler,2022-03-10,[],IL,102nd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2021-05-31,[],IL,102nd +Governor Approved,2022-06-10,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Suzanne Ness,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-05-04,[],IL,102nd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2022-04-29,[],IL,102nd +Added Co-Sponsor Rep. Anna Moeller,2021-05-30,[],IL,102nd +House Concurs,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Melinda Bush,2021-05-12,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Mary E. Flowers,2022-04-05,[],IL,102nd +Added Alternate Co-Sponsor Rep. David Friess,2022-03-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2022-04-04,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2021-05-26,[],IL,102nd +Second Reading - Short Debate,2022-03-30,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-04-30,[],IL,102nd +Added Co-Sponsor Rep. Carol Ammons,2022-04-06,[],IL,102nd +Do Pass Insurance; 011-000-000,2021-05-06,['committee-passage'],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 3, 4, 1 - January 8, 2023",2023-01-06,[],IL,102nd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Michael E. Hastings,2022-04-04,['filing'],IL,102nd +Sent to the Governor,2022-04-27,['executive-receipt'],IL,102nd +House Floor Amendment No. 3 Fiscal Note Filed as Amended,2021-10-26,[],IL,102nd +Sent to the Governor,2023-01-30,['executive-receipt'],IL,102nd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2022-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Sally J. Turner,2021-05-30,[],IL,102nd +Governor Approved,2021-08-25,['executive-signature'],IL,102nd +Added Co-Sponsor Rep. Natalie A. Manley,2023-01-10,[],IL,102nd +Public Act . . . . . . . . . 102-0700,2022-04-19,['became-law'],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-05-29,['referral-committee'],IL,102nd +"Effective Date September 15, 2021",2021-09-15,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-30,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0662,2021-09-15,['became-law'],IL,102nd +Senate Floor Amendment No. 3 House Concurs 068-041-000,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Theresa Mah,2023-01-10,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 1 House Concurs 071-040-000,2022-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Eric Mattson,2022-05-17,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +House Floor Amendment No. 3 Pension Note Filed as Amended,2021-10-26,[],IL,102nd +Governor Approved,2023-03-13,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Laura Ellman,2022-04-29,[],IL,102nd +Postponed - Health,2021-05-05,[],IL,102nd +Added Co-Sponsor Rep. Blaine Wilhour,2022-03-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-06-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2022-04-01,[],IL,102nd +Amendatory Veto Motion - Motion Lost 059-035-000,2021-08-31,[],IL,102nd +Second Reading - Short Debate,2021-05-25,['reading-2'],IL,102nd +"Effective Date June 10, 2022",2022-06-10,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +"Effective Date August 25, 2021; - some provisions effective January 1, 2022",2021-08-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Doris Turner,2021-05-03,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 10, 2021",2021-05-06,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Housing Committee; 014-008-000,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2021-05-12,[],IL,102nd +Added Co-Sponsor Rep. Deb Conroy,2021-05-30,[],IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2022-04-05,['referral-committee'],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-30,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-28,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Dan McConchie,2022-04-05,['filing'],IL,102nd +Added Alternate Co-Sponsor Rep. Deanne M. Mazzochi,2022-03-09,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 House Concurs 108-010-000,2021-05-31,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Health Care Availability & Accessibility Committee,2022-04-06,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Bradley Stephens,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Emanuel Chris Welch,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2021-05-12,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 062-043-001,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert Peters,2021-05-04,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2021-05-06,[],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added Co-Sponsor Rep. Anthony DeLuca,2021-10-28,[],IL,102nd +House Floor Amendment No. 3 State Debt Impact Note Filed as Amended,2021-10-26,[],IL,102nd +"Effective Date January 1, 2024",2023-03-13,[],IL,102nd +Added as Co-Sponsor Sen. Darren Bailey,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 071-040-000,2022-12-01,[],IL,102nd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-01-10,[],IL,102nd +Amendatory Veto Motion - Motion Filed Accept Amendatory Veto Rep. Kelly M. Burke,2021-09-08,[],IL,102nd +Senate Floor Amendment No. 4 House Concurs 068-041-000,2023-01-10,[],IL,102nd +Added as Co-Sponsor Sen. Robert Peters,2021-09-16,[],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2021-05-30,['referral-committee'],IL,102nd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to Labor,2022-04-04,['referral-committee'],IL,102nd +Governor Approved,2022-05-25,['executive-signature'],IL,102nd +Public Act . . . . . . . . . 102-0579,2021-08-25,['became-law'],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-1059,2022-06-10,['became-law'],IL,102nd +Added Co-Sponsor Rep. Ann M. Williams,2022-03-10,[],IL,102nd +House Floor Amendment No. 2 Adopted,2021-05-25,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2022-04-01,[],IL,102nd +"Effective Date August 20, 2021",2021-08-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2021-05-06,[],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-04-29,[],IL,102nd +Governor Approved,2022-05-23,['executive-signature'],IL,102nd +Postponed - Health,2021-05-12,[],IL,102nd +Public Act . . . . . . . . . 102-0522,2021-08-20,['became-law'],IL,102nd +Added Co-Sponsor Rep. Jawaharial Williams,2022-03-10,[],IL,102nd +"Rule 2-10 Third Reading Deadline Established As April 8, 2022",2022-04-01,['reading-3'],IL,102nd +Governor Approved,2021-07-29,['executive-signature'],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2021-05-25,[],IL,102nd +Added Co-Sponsor Rep. Dagmara Avelar,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-05-13,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Availability & Accessibility Committee; 013-000-000,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Thaddeus Jones,2022-03-14,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Added Alternate Co-Sponsor Rep. Brad Halbrook,2022-03-31,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2022-04-06,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2021-05-04,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2021-05-11,[],IL,102nd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt Labor; 010-004-000,2022-04-05,[],IL,102nd +"Effective Date January 1, 2023",2022-05-25,[],IL,102nd +House Concurs,2022-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Win Stoller,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-1143,2023-03-13,['became-law'],IL,102nd +House Floor Amendment No. 3 Judicial Note Filed as Amended,2021-10-26,[],IL,102nd +Senate Floor Amendment No. 5 House Concurs 068-041-000,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-05-30,[],IL,102nd +Added as Chief Co-Sponsor Sen. Cristina Castro,2021-10-19,[],IL,102nd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-01-10,[],IL,102nd +Amendatory Veto Motion - Motion Referred to Rules Committee,2021-09-08,['referral-committee'],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2021-05-30,[],IL,102nd +Senate Floor Amendment No. 3 Motion Filed to Reconsider Vote Rep. Ann M. Williams,2023-01-10,[],IL,102nd +Amendatory Veto Motion - Accept Motion Recommends Be Adopted Rules Committee; 003-001-000,2021-09-09,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 017-000-000,2022-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Mattie Hunter,2021-11-17,[],IL,102nd +Added Co-Sponsor Rep. Katie Stuart,2023-01-10,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Darren Bailey,2021-05-04,[],IL,102nd +Passed Both Houses,2022-12-01,[],IL,102nd +Added as Co-Sponsor Sen. Neil Anderson,2021-05-30,[],IL,102nd +House Committee Amendment No. 2 Senate Concurs 040-015-000,2022-04-08,[],IL,102nd +Public Act . . . . . . . . . 102-0899,2022-05-25,['became-law'],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-10-26,[],IL,102nd +Third Reading - Short Debate - Passed 116-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-03-10,[],IL,102nd +"Effective Date July 29, 2021",2021-07-29,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Suzy Glowiak Hilton,2022-04-05,['amendment-introduction'],IL,102nd +"Effective Date May 23, 2022",2022-05-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2021-05-12,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2021-05-13,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2021-05-13,[],IL,102nd +Sent to the Governor,2021-11-22,['executive-receipt'],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2022-04-07,[],IL,102nd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-001-000,2022-03-31,['committee-passage-favorable'],IL,102nd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tony McCombie,2022-03-21,['amendment-introduction'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Mark Batinick,2021-05-31,[],IL,102nd +House Concurs,2022-04-07,[],IL,102nd +House Committee Amendment No. 1 Referred to Rules Committee,2022-03-21,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Charles Meier,2022-03-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2021-05-18,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Second Reading,2021-05-13,['reading-2'],IL,102nd +Governor Approved,2021-11-30,['executive-signature'],IL,102nd +Governor Approved,2021-08-25,['executive-signature'],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2021-10-26,[],IL,102nd +Assigned to Licensed Activities,2021-05-05,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Terri Bryant,2021-05-30,[],IL,102nd +Sent to the Governor,2022-12-05,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Justin Slaughter,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 4 Motion Filed to Reconsider Vote Rep. Ann M. Williams,2023-01-10,[],IL,102nd +Accept Amendatory Veto - House Passed 074-041-000,2021-09-09,[],IL,102nd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-009-000,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Craig Wilcox,2022-04-06,[],IL,102nd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-11-17,[],IL,102nd +Senate Concurs,2022-04-08,[],IL,102nd +Postponed - Health,2021-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0895,2022-05-23,['became-law'],IL,102nd +Added Co-Sponsor Rep. Patrick Windhorst,2022-03-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2022-04-05,['referral-committee'],IL,102nd +Public Act . . . . . . . . . 102-0175,2021-07-29,['became-law'],IL,102nd +Added Co-Sponsor Rep. Janet Yang Rohr,2022-03-10,[],IL,102nd +Sent to the Governor,2021-06-16,['executive-receipt'],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2021-05-27,[],IL,102nd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Suzy Glowiak Hilton,2022-04-06,['amendment-introduction'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +"Effective Date January 1, 2022",2021-08-25,[],IL,102nd +"Effective Date November 30, 2021",2021-11-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-05-18,[],IL,102nd +Passed Both Houses,2022-04-07,[],IL,102nd +Added Alternate Co-Sponsor Rep. Amy Grant,2022-03-31,[],IL,102nd +House Committee Amendment No. 2 Filed with Clerk by Rep. Tony McCombie,2022-03-22,['amendment-introduction'],IL,102nd +Governor Approved,2022-05-24,['executive-signature'],IL,102nd +"Placed on Calendar Order of 3rd Reading May 14, 2021",2021-05-13,[],IL,102nd +Passed Both Houses,2022-04-08,[],IL,102nd +Added as Co-Sponsor Sen. Chapin Rose,2021-05-30,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-05-05,[],IL,102nd +Governor Approved,2022-12-06,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Balanced Budget Note Filed as Amended,2021-10-27,[],IL,102nd +Added Co-Sponsor Rep. Kambium Buckner,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 5 Motion Filed to Reconsider Vote Rep. Ann M. Williams,2023-01-10,[],IL,102nd +Added as Co-Sponsor Sen. Donald P. DeWitte,2022-04-06,[],IL,102nd +Added as Chief Co-Sponsor Sen. Melinda Bush,2022-02-23,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-30,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Frances Ann Hurley,2021-09-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2021-09-09,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 086-032-000,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-01-10,[],IL,102nd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-01-10,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2021-05-05,[],IL,102nd +"Effective Date December 6, 2022; ; some provisions effective 1-1-23.",2022-12-06,[],IL,102nd +Added as Co-Sponsor Sen. Jil Tracy,2021-05-30,[],IL,102nd +Do Pass Health; 011-002-000,2021-05-25,['committee-passage'],IL,102nd +Sent to the Governor,2022-04-19,['executive-receipt'],IL,102nd +House Floor Amendment No. 3 Land Conveyance Appraisal Note Filed as Amended,2021-10-27,[],IL,102nd +Senate Floor Amendment No. 3 Referred to Assignments,2022-04-06,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Lance Yednock,2022-03-10,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 28, 2021",2021-05-27,[],IL,102nd +Governor Approved,2021-07-09,['executive-signature'],IL,102nd +"Effective Date January 1, 2023",2022-05-24,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2021-05-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2021-05-18,[],IL,102nd +Public Act . . . . . . . . . 102-0673,2021-11-30,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0580,2021-08-25,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-18,[],IL,102nd +House Committee Amendment No. 2 Referred to Rules Committee,2022-03-22,['referral-committee'],IL,102nd +Added Alternate Co-Sponsor Rep. Joe Sosnowski,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Lance Yednock,2022-04-01,[],IL,102nd +Do Pass / Short Debate Human Services Committee; 014-000-000,2022-03-23,['committee-passage'],IL,102nd +Sent to the Governor,2022-05-06,['executive-receipt'],IL,102nd +Added as Alternate Co-Sponsor Sen. Thomas Cullerton,2021-05-19,[],IL,102nd +Public Act . . . . . . . . . 102-0896,2022-05-24,['became-law'],IL,102nd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2021-05-24,[],IL,102nd +House Floor Amendment No. 3 Housing Affordability Impact Note Filed as Amended,2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Daniel Didech,2021-09-09,[],IL,102nd +Senate Floor Amendment No. 3 Motion to Reconsider Vote - Withdrawn Rep. Ann M. Williams,2023-01-10,[],IL,102nd +Senate Committee Amendment No. 2 House Concurs 086-032-000,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Michael Kelly,2023-01-10,[],IL,102nd +Senate Concurs,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-05,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Antonio Muñoz,2021-05-30,['filing'],IL,102nd +"Placed on Calendar Order of 2nd Reading May 26, 2021",2021-05-25,[],IL,102nd +Public Act . . . . . . . . . 102-1104,2022-12-06,['became-law'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2022-04-06,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Jacqueline Y. Collins,2021-05-28,['filing'],IL,102nd +"Effective Date January 1, 2022",2021-07-09,[],IL,102nd +Added Co-Sponsor Rep. Sam Yingling,2022-03-10,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-28,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Michael J. Zalewski,2022-03-10,[],IL,102nd +Public Act . . . . . . . . . 102-0044,2021-07-09,['became-law'],IL,102nd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2022-04-06,[],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-002-000,2021-10-27,['committee-passage-favorable'],IL,102nd +"Placed on Calendar Order of 3rd Reading ** May 25, 2021",2021-05-24,[],IL,102nd +Added Alternate Co-Sponsor Rep. Kathleen Willis,2022-04-01,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Placed on Calendar 2nd Reading - Short Debate,2022-03-23,[],IL,102nd +Postponed - Insurance,2021-05-19,[],IL,102nd +"Effective Date January 1, 2023",2022-05-13,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +House Concurs,2021-05-31,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Reconsider Vote - Withdrawn Rep. Ann M. Williams,2023-01-10,[],IL,102nd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2021-09-09,[],IL,102nd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-01-10,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason A. Barickman,2021-05-10,[],IL,102nd +Second Reading,2021-05-26,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2021-05-11,[],IL,102nd +"Placed on Calendar Order of 3rd Reading May 27, 2021",2021-05-26,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Antonio Muñoz,2021-05-30,['filing'],IL,102nd +Public Act . . . . . . . . . 102-0817,2022-05-13,['became-law'],IL,102nd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2021-09-09,[],IL,102nd +Added as Co-Sponsor Sen. Patricia Van Pelt,2022-04-06,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 5 Motion to Reconsider Vote - Withdrawn Rep. Ann M. Williams,2023-01-10,[],IL,102nd +Added Alternate Co-Sponsor Rep. Denyse Wang Stoneback,2021-10-27,[],IL,102nd +Arrive in Senate,2022-03-22,['introduction'],IL,102nd +Senate Floor Amendment No. 1 Postponed - Executive,2022-04-06,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Health,2021-05-29,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2021-05-20,[],IL,102nd +Third Reading - Passed; 057-000-000,2021-05-27,"['passage', 'reading-3']",IL,102nd +"Added Alternate Co-Sponsor Rep. Lawrence Walsh, Jr.",2022-04-01,[],IL,102nd +House Committee Amendment No. 1 Tabled Pursuant to Rule 40,2022-03-23,['amendment-failure'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +House Committee Amendment No. 2 Tabled Pursuant to Rule 40,2022-03-23,['amendment-failure'],IL,102nd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2022-04-01,[],IL,102nd +Public Act . . . . . . . . . 102-0964,2022-05-27,['became-law'],IL,102nd +Passed Both Houses,2021-05-27,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Frances Ann Hurley,2021-09-10,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Passed Both Houses,2023-01-10,[],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +Added Co-Sponsor Rep. Martin J. Moylan,2023-01-10,[],IL,102nd +Senate Floor Amendment No. 2 Postponed - Executive,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2021-05-11,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2021-05-30,['referral-committee'],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Health; 011-000-000,2021-05-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2021-05-21,[],IL,102nd +Chief Senate Sponsor Sen. Ann Gillespie,2022-03-22,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2021-10-27,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2021-10-27,[],IL,102nd +Referred to Assignments,2022-03-22,['referral-committee'],IL,102nd +"Rule 2-10 Committee Deadline Established As May 29, 2021",2021-05-21,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patricia Van Pelt,2021-05-30,[],IL,102nd +Sent to the Governor,2021-06-23,['executive-receipt'],IL,102nd +House Floor Amendment No. 3 Filed with Clerk by Rep. Tony McCombie,2022-03-29,['amendment-introduction'],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2022-04-01,[],IL,102nd +Third Reading - Passed; 058-000-000,2021-05-31,"['passage', 'reading-3']",IL,102nd +Added as Co-Sponsor Sen. Patrick J. Joyce,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2021-05-11,[],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +Sent to the Governor,2023-01-10,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 3 Postponed - Executive,2022-04-06,[],IL,102nd +Both Houses Accepted Amendatory Veto,2021-09-10,[],IL,102nd +Added Co-Sponsor Rep. Lakesia Collins,2023-01-10,[],IL,102nd +Governor Approved,2021-08-20,['executive-signature'],IL,102nd +Sponsor Removed Sen. John F. Curran,2022-04-08,[],IL,102nd +Governor Approved,2023-01-10,['executive-signature'],IL,102nd +Senate Floor Amendment No. 5 House Concurs 070-039-000,2023-01-10,[],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Returned to Governor for Certification,2021-09-15,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2021-05-12,[],IL,102nd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2021-05-31,['referral-committee'],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2022-03-22,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2021-05-30,[],IL,102nd +Postponed - Insurance,2021-05-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2021-10-27,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jim Durkin,2022-04-01,[],IL,102nd +House Floor Amendment No. 3 Referred to Rules Committee,2022-03-29,['referral-committee'],IL,102nd +"Effective Date July 1, 2025",2021-08-20,[],IL,102nd +Governor Approved,2021-08-19,['executive-signature'],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2021-05-31,['referral-committee'],IL,102nd +"Effective Date January 1, 2022",2021-08-19,[],IL,102nd +Senate Concurs,2021-05-30,[],IL,102nd +Public Act . . . . . . . . . 102-0466,2021-08-20,['became-law'],IL,102nd +House Floor Amendment No. 2 Adopted,2022-04-01,['amendment-passage'],IL,102nd +Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2021-05-12,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Public Act . . . . . . . . . 102-0989,2022-05-27,['became-law'],IL,102nd +Senate Floor Amendment No. 6 House Concurs 070-039-000,2023-01-10,[],IL,102nd +"Effective Date January 10, 2023",2023-01-10,[],IL,102nd +Sponsor Removed Sen. Craig Wilcox,2022-04-08,[],IL,102nd +Governor Certifies Changes,2021-10-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Delia C. Ramirez,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2022-03-22,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-05-29,['referral-committee'],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added as Alternate Co-Sponsor Sen. Antonio Muñoz,2022-03-23,[],IL,102nd +Added Alternate Chief Co-Sponsor Rep. Emanuel Chris Welch,2021-10-27,[],IL,102nd +Held on Calendar Order of Second Reading - Short Debate,2022-03-29,['reading-2'],IL,102nd +Passed Both Houses,2021-05-30,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2021-05-31,[],IL,102nd +Public Act . . . . . . . . . 102-0409,2021-08-19,['became-law'],IL,102nd +Motion Filed to Reconsider Vote Rep. Ann M. Williams,2023-01-10,[],IL,102nd +Public Act . . . . . . . . . 102-1116,2023-01-10,['became-law'],IL,102nd +"Effective Date January 1, 2022",2021-10-08,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-01,[],IL,102nd +Sponsor Removed Sen. Sally J. Turner,2022-04-08,[],IL,102nd +Governor Vetoed,2021-08-27,['executive-veto'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2021-05-12,[],IL,102nd +Placed on Calendar Total Veto,2021-08-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2021-05-12,[],IL,102nd +Third Reading - Short Debate - Passed 105-000-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Sponsor Removed Sen. Donald P. DeWitte,2022-04-08,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Ann M. Williams,2023-01-11,[],IL,102nd +Public Act . . . . . . . . . 102-0664,2021-10-08,['became-law'],IL,102nd +House Floor Amendment No. 3 Home Rule Note Filed as Amended,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2022-03-24,[],IL,102nd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2021-05-31,[],IL,102nd +House Floor Amendment No. 3 Rules Refers to Human Services Committee,2022-03-30,[],IL,102nd +Sent to the Governor,2021-06-28,['executive-receipt'],IL,102nd +Governor Approved,2021-08-27,['executive-signature'],IL,102nd +House Floor Amendment No. 3 Recommends Be Adopted Human Services Committee; 015-000-000,2022-03-31,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 015-000-000,2021-05-31,[],IL,102nd +Passed Both Houses,2023-01-11,[],IL,102nd +Sponsor Removed Sen. Darren Bailey,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Frances Ann Hurley,2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2021-05-12,[],IL,102nd +Motion Filed Override Governor Veto Rep. Robyn Gabel,2021-08-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Brian W. Stewart,2022-03-24,[],IL,102nd +House Floor Amendment No. 3 State Mandates Fiscal Note Filed as Amended,2021-10-27,[],IL,102nd +House Floor Amendment No. 3 Correctional Note Filed as Amended,2021-10-27,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2022-03-24,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 015-000-000,2021-05-31,[],IL,102nd +Added as Co-Sponsor Sen. Antonio Muñoz,2022-03-31,[],IL,102nd +"Effective Date August 27, 2021",2021-08-27,[],IL,102nd +3/5 Vote Required,2021-08-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John F. Curran,2021-05-12,[],IL,102nd +Sponsor Removed Sen. Neil Anderson,2022-04-08,[],IL,102nd +Sent to the Governor,2023-01-12,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Katie Stuart,2022-04-01,[],IL,102nd +Sponsor Removed Sen. Terri Bryant,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. LaToya Greenwood,2022-04-01,[],IL,102nd +Governor Approved,2023-01-13,['executive-signature'],IL,102nd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2021-05-13,[],IL,102nd +Override Governor Veto - House Passed 112-001-000,2021-08-31,[],IL,102nd +Assigned to State Government,2022-03-28,['referral-committee'],IL,102nd +House Floor Amendment No. 4 Filed with Clerk by Rep. La Shawn K. Ford,2021-10-27,['amendment-introduction'],IL,102nd +Public Act . . . . . . . . . 102-0640,2021-08-27,['became-law'],IL,102nd +House Floor Amendment No. 3 Adopted,2022-04-01,['amendment-passage'],IL,102nd +House Floor Amendment No. 1 Senate Concurs 058-000-000,2021-05-31,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2021-05-31,[],IL,102nd +Placed on Calendar Order of 3rd Reading - Short Debate,2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2021-05-13,[],IL,102nd +Arrive in Senate,2021-08-31,['introduction'],IL,102nd +Sponsor Removed Sen. Jil Tracy,2022-04-08,[],IL,102nd +Added Alternate Co-Sponsor Rep. Elizabeth Hernandez,2022-04-01,[],IL,102nd +"Effective Date January 13, 2023",2023-01-13,[],IL,102nd +House Floor Amendment No. 4 Referred to Rules Committee,2021-10-27,['referral-committee'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2022-03-29,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2022-03-29,[],IL,102nd +House Floor Amendment No. 4 Pension Note Filed as Amended,2021-10-27,[],IL,102nd +Third Reading - Short Debate - Passed 100-004-000,2022-04-01,"['passage', 'reading-3']",IL,102nd +Senate Concurs,2021-05-31,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 2,2022-04-01,[],IL,102nd +Sponsor Removed Sen. Steve McClure,2022-04-08,[],IL,102nd +Public Act . . . . . . . . . 102-1117,2023-01-13,['became-law'],IL,102nd +"Placed Calendar Total Veto August 31, 2021",2021-08-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2021-05-14,[],IL,102nd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2021-05-14,['amendment-introduction'],IL,102nd +Motion Filed Override Governor Veto Sen. Ram Villivalam,2021-08-31,[],IL,102nd +Sponsor Removed Sen. Jason A. Barickman,2022-04-08,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - April 4, 2022",2022-04-01,[],IL,102nd +House Floor Amendment No. 4 Home Rule Note Filed as Amended,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-03-29,[],IL,102nd +Passed Both Houses,2021-05-31,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Andrew S. Chesney,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2022-04-01,[],IL,102nd +Added as Co-Sponsor Sen. John Connor,2021-05-31,[],IL,102nd +Sponsor Removed Sen. Dave Syverson,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. David Koehler,2022-04-04,['filing'],IL,102nd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2021-08-31,[],IL,102nd +Senate Committee Amendment No. 1 Referred to Assignments,2021-05-14,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2022-03-29,[],IL,102nd +House Floor Amendment No. 4 State Mandates Fiscal Note Filed as Amended,2021-10-27,[],IL,102nd +House Floor Amendment No. 4 State Debt Impact Note Filed as Amended,2021-10-27,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2022-03-29,[],IL,102nd +Added as Co-Sponsor Sen. Scott M. Bennett,2021-05-31,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Andrew S. Chesney,2022-04-01,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2021-05-17,[],IL,102nd +3/5 Vote Required,2021-08-31,[],IL,102nd +Sponsor Removed Sen. Win Stoller,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Sponsor Removed Sen. Sue Rezin,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Energy and Public Utilities,2022-04-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2021-05-17,[],IL,102nd +Override Governor Veto - Senate Passed 056-000-000,2021-08-31,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2022-03-29,[],IL,102nd +House Floor Amendment No. 4 Recommends Be Adopted Rules Committee; 004-000-000,2021-10-28,['committee-passage-favorable'],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2022-04-01,[],IL,102nd +Added Alternate Co-Sponsor Rep. Tom Weber,2021-05-31,[],IL,102nd +Sent to the Governor,2021-06-29,['executive-receipt'],IL,102nd +Added Alternate Co-Sponsor Rep. Blaine Wilhour,2022-04-01,[],IL,102nd +Both Houses Override Total Veto,2021-08-31,['veto-override-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve McClure,2021-05-17,[],IL,102nd +Sponsor Removed Sen. Dale Fowler,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Energy and Public Utilities; 013-000-000,2022-04-06,[],IL,102nd +House Floor Amendment No. 4 Balanced Budget Note Filed as Amended,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2022-03-29,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Karina Villa,2022-03-30,[],IL,102nd +House Floor Amendment No. 4 Housing Affordability Impact Note Filed as Amended,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Avery Bourne,2022-04-01,[],IL,102nd +Governor Approved,2021-08-13,['executive-signature'],IL,102nd +Sponsor Removed Sen. Chapin Rose,2022-04-08,[],IL,102nd +House Floor Amendment No. 2 Senate Concurs 057-000-000,2022-04-06,[],IL,102nd +"Effective Date January 1, 2022",2021-09-03,[],IL,102nd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2021-05-17,[],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2021-05-17,[],IL,102nd +Public Act . . . . . . . . . 102-0661,2021-09-03,['became-law'],IL,102nd +Sponsor Removed Sen. Jason Plummer,2022-04-08,[],IL,102nd +Senate Concurs,2022-04-06,[],IL,102nd +House Floor Amendment No. 4 Judicial Note Filed as Amended,2021-10-28,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2022-03-31,[],IL,102nd +"Effective Date January 1, 2022",2021-08-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2022-04-01,[],IL,102nd +Secretary's Desk - Concurrence House Amendment(s) 3,2022-04-01,[],IL,102nd +Public Act . . . . . . . . . 102-0353,2021-08-13,['became-law'],IL,102nd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Suzy Glowiak Hilton,2022-04-08,['amendment-introduction'],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2021-05-18,[],IL,102nd +Be Adopted State Government; 009-000-000,2022-04-05,['committee-passage-favorable'],IL,102nd +House Floor Amendment No. 4 Fiscal Note Filed as Amended,2021-10-28,[],IL,102nd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2021-10-28,[],IL,102nd +"Placed on Calendar Order of Secretary's Desk Resolutions April 6, 2022",2022-04-05,[],IL,102nd +"Placed on Calendar Order of Concurrence House Amendment(s) 3 - April 4, 2022",2022-04-01,[],IL,102nd +Senate Committee Amendment No. 1 Adopted,2021-05-19,['amendment-passage'],IL,102nd +Senate Floor Amendment No. 4 Referred to Assignments,2022-04-08,['referral-committee'],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2022-04-08,[],IL,102nd +Do Pass as Amended Licensed Activities; 008-000-000,2021-05-19,['committee-passage'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +House Committee Amendment No. 1 Correctional Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2021-10-28,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Steve McClure,2022-04-04,['filing'],IL,102nd +Added as Alternate Co-Sponsor Sen. John Connor,2022-04-05,[],IL,102nd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2022-04-04,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2022-04-07,[],IL,102nd +"Placed on Calendar Order of 2nd Reading May 20, 2021",2021-05-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-09,[],IL,102nd +House Floor Amendment No. 2 Correctional Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2021-10-28,[],IL,102nd +"Effective Date May 13, 2022",2022-05-13,[],IL,102nd +Public Act . . . . . . . . . 102-0820,2022-05-13,['became-law'],IL,102nd +Recalled to Second Reading - Standard Debate,2021-10-28,['reading-2'],IL,102nd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to Executive,2022-04-05,['referral-committee'],IL,102nd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2022-04-08,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2021-05-20,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Rachelle Crowe,2021-05-25,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Scott M. Bennett,2022-04-09,[],IL,102nd +House Floor Amendment No. 3 Adopted,2021-10-28,['amendment-passage'],IL,102nd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2022-04-08,[],IL,102nd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt Executive; 017-000-000,2022-04-06,[],IL,102nd +House Floor Amendment No. 3 Senate Concurs 057-000-000,2022-04-06,[],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. Jacqueline Y. Collins,2022-04-09,[],IL,102nd +Recalled to Second Reading,2022-04-09,['reading-2'],IL,102nd +"Rule 2-10 Third Reading Deadline Established As June 15, 2021",2021-05-31,['reading-3'],IL,102nd +House Floor Amendment No. 4 Adopted,2021-10-28,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading - Standard Debate,2021-10-28,[],IL,102nd +Resolution Adopted,2022-04-09,['passage'],IL,102nd +Senate Concurs,2022-04-06,[],IL,102nd +Rule 3-9(a) / Re-referred to Assignments,2021-06-15,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Adopted; Glowiak-Hilton,2022-04-09,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading,2022-04-09,[],IL,102nd +Approved for Consideration Assignments,2021-10-13,[],IL,102nd +Placed on Calendar - Consideration Postponed,2021-10-28,[],IL,102nd +Passed Both Houses,2022-04-06,[],IL,102nd +Adopted Both Houses,2022-04-09,[],IL,102nd +Added as Co-Sponsor Sen. Doris Turner,2022-04-29,[],IL,102nd +Third Reading - Passed; 042-010-000,2022-04-09,"['passage', 'reading-3']",IL,102nd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2021-10-28,[],IL,102nd +"Placed on Calendar Order of 2nd Reading October 19, 2021",2021-10-13,[],IL,102nd +"Rule 2-10 Committee/3rd Reading Deadline Established As December 1, 2021",2021-10-13,[],IL,102nd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2021-10-28,[],IL,102nd +Sent to the Governor,2022-05-05,['executive-receipt'],IL,102nd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2022-04-09,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2022-04-09,['amendment-failure'],IL,102nd +Alternate Co-Sponsor Removed Rep. Jehan Gordon-Booth,2021-10-28,[],IL,102nd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2021-10-15,['amendment-introduction'],IL,102nd +Governor Approved,2022-05-27,['executive-signature'],IL,102nd +"Effective Date May 27, 2022",2022-05-27,[],IL,102nd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2022-04-09,['amendment-failure'],IL,102nd +Senate Floor Amendment No. 2 Referred to Assignments,2021-10-15,['referral-committee'],IL,102nd +Sponsor Removed Sen. Cristina Castro,2021-11-09,[],IL,102nd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2021-10-19,[],IL,102nd +Public Act . . . . . . . . . 102-0990,2022-05-27,['became-law'],IL,102nd +Sponsor Removed Sen. Julie A. Morrison,2021-11-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2022-04-09,[],IL,102nd +Sponsor Removed Sen. Adriane Johnson,2021-11-09,[],IL,102nd +Second Reading,2021-10-19,['reading-2'],IL,102nd +"Placed on Calendar Order of 3rd Reading October 20, 2021",2021-10-19,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2022-04-09,[],IL,102nd +Sponsor Removed Sen. Melinda Bush,2021-11-09,[],IL,102nd +Rule 19(b) / Re-referred to Rules Committee,2021-11-29,['referral-committee'],IL,102nd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Win Stoller,2021-10-20,[],IL,102nd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 006-000-000,2021-10-20,[],IL,102nd +Arrived in House,2022-04-09,['introduction'],IL,102nd +Approved for Consideration Rules Committee; 005-000-000,2022-01-11,[],IL,102nd +Placed on Calendar - Consideration Postponed,2022-01-21,[],IL,102nd +Placed on Calendar Order of Concurrence Senate Amendment(s) 4,2022-04-09,[],IL,102nd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2021-10-20,[],IL,102nd +Recalled to Second Reading,2021-10-20,['reading-2'],IL,102nd +Chief Sponsor Changed to Rep. Kambium Buckner,2022-04-09,[],IL,102nd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2022-02-18,[],IL,102nd +Added as Co-Sponsor Sen. David Koehler,2022-02-18,[],IL,102nd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Kambium Buckner,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 2 Adopted; Castro,2021-10-20,['amendment-passage'],IL,102nd +Placed on Calendar Order of 3rd Reading,2021-10-20,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2022-04-09,['referral-committee'],IL,102nd +Added as Co-Sponsor Sen. Adriane Johnson,2022-02-23,[],IL,102nd +Rule 19(a) / Re-referred to Rules Committee,2022-04-11,['referral-committee'],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Rules Referred to Judiciary - Criminal Committee,2022-04-09,['referral-committee'],IL,102nd +Third Reading - Passed; 056-001-000,2021-10-20,"['passage', 'reading-3']",IL,102nd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2021-10-20,[],IL,102nd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2022-04-09,[],IL,102nd +Session Sine Die,2023-01-10,['failure'],IL,102nd +Added Co-Sponsor Rep. Sue Scherer,2022-04-09,[],IL,102nd +Arrived in House,2021-10-20,['introduction'],IL,102nd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2021-10-20,[],IL,102nd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Judiciary - Criminal Committee; 014-003-001,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Emanuel Chris Welch,2022-04-09,[],IL,102nd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Robyn Gabel,2021-10-20,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2021-10-20,['referral-committee'],IL,102nd +Added Co-Sponsor Rep. Kathleen Willis,2022-04-09,[],IL,102nd +Added Co-Sponsor Rep. Denyse Wang Stoneback,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Robyn Gabel,2021-10-20,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2021-10-20,['referral-committee'],IL,102nd +Added Chief Co-Sponsor Rep. Margaret Croke,2022-04-09,[],IL,102nd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2022-04-09,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Health Care Licenses Committee,2021-10-25,['referral-committee'],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Health Care Licenses Committee,2021-10-25,['referral-committee'],IL,102nd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2022-04-09,[],IL,102nd +Senate Floor Amendment No. 4 House Concurs 096-005-002,2022-04-09,[],IL,102nd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2021-10-26,[],IL,102nd +House Concurs,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2021-10-26,[],IL,102nd +Senate Committee Amendment No. 1 House Concurs 114-001-000,2021-10-28,[],IL,102nd +Passed Both Houses,2022-04-09,[],IL,102nd +Motion Filed to Reconsider Vote Rep. Margaret Croke,2022-04-09,[],IL,102nd +Senate Floor Amendment No. 2 House Concurs 114-001-000,2021-10-28,[],IL,102nd +House Concurs,2021-10-28,[],IL,102nd +Motion to Reconsider Vote - Withdrawn Rep. Margaret Croke,2022-04-12,[],IL,102nd +Sent to the Governor,2022-04-20,['executive-receipt'],IL,102nd +Passed Both Houses,2021-10-28,[],IL,102nd +Sent to the Governor,2021-11-22,['executive-receipt'],IL,102nd +Governor Approved,2022-05-13,['executive-signature'],IL,102nd +"Effective Date May 13, 2022; - Some Provisions Effective January 1, 2023",2022-05-13,[],IL,102nd +Governor Approved,2021-12-14,['executive-signature'],IL,102nd +"Effective Date October 1, 2022",2021-12-14,[],IL,102nd +Public Act . . . . . . . . . 102-0757,2022-05-13,['became-law'],IL,102nd +Public Act . . . . . . . . . 102-0683,2021-12-14,['became-law'],IL,102nd +Authored by Senators Holdman and Garten,2023-04-19,[],IN,2023 +Authored by Senator Zay,2023-01-10,[],IN,2023 +Authored by Senator Buck,2023-01-10,[],IN,2023 +"Representatives Greene R, Haggard C, Mayfield added as coauthors",2023-04-11,[],IN,2023 +Authored by Senator Bohacek,2023-01-12,[],IN,2023 +Authored by Senators Leising and Glick,2023-01-17,[],IN,2023 +Authored by Representative Mayfield,2023-01-19,[],IN,2023 +Authored by Senator Doriot,2023-04-24,[],IN,2023 +Authored by Senator Breaux,2023-01-10,[],IN,2023 +Senate sponsor: Senator Brown L,2023-04-06,[],IN,2023 +Authored by Senator Breaux,2023-01-10,[],IN,2023 +Authored by Representative Heine,2023-04-12,[],IN,2023 +Authored by Senator Leising,2023-01-09,[],IN,2023 +Authored by Senator Taylor G,2023-01-10,[],IN,2023 +Authored by Representative GiaQuinta,2023-02-02,[],IN,2023 +Authored by Senator Ford J.D.,2023-03-06,[],IN,2023 +Coauthored by Representatives VanNatter and Torr,2023-01-11,[],IN,2023 +Authored by Representative Slager,2023-01-11,[],IN,2023 +Authored by Representative Wesco,2023-01-10,[],IN,2023 +Senate sponsor: Senator Bray,2023-02-28,[],IN,2023 +Authored by Representative Culp,2023-01-10,[],IN,2023 +Authored by Representative Schaibley,2023-04-17,[],IN,2023 +Authored by Senator Charbonneau,2023-01-09,[],IN,2023 +Authored by Representative Aylesworth,2023-01-19,[],IN,2023 +Authored by Senators Pol and Bohacek,2023-01-19,[],IN,2023 +Authored by Senator Koch,2023-03-07,[],IN,2023 +Authored by Senator Walker G,2023-01-09,[],IN,2023 +Coauthored by Representatives O'Brien and Hall,2023-01-12,[],IN,2023 +Authored by Representative Pack,2023-04-18,[],IN,2023 +Authored by Senator Leising,2023-04-10,[],IN,2023 +Authored by Senator Ford J.D.,2023-04-10,[],IN,2023 +Authored by Senator Dernulc,2023-04-10,[],IN,2023 +Authored by Senator Ford J.D.,2023-04-10,[],IN,2023 +Authored by Representative Lindauer,2023-01-10,[],IN,2023 +Senate sponsor: Senator Alting,2023-02-21,[],IN,2023 +Authored by Representative Hatfield,2023-01-11,[],IN,2023 +Authored by Representative Smaltz,2023-01-17,[],IN,2023 +Authored by Representative Lehman,2023-02-14,[],IN,2023 +Authored by Senator Zay,2023-01-12,[],IN,2023 +Authored by Representative Pressel,2023-01-17,[],IN,2023 +Authored by Representative Bauer M,2023-01-10,[],IN,2023 +"Coauthored by Representatives Lehman, K Pierce, and Shackleford",2023-01-12,[],IN,2023 +Coauthored by Representatives Bartels and O'Brien,2023-01-12,[],IN,2023 +Senate sponsor: Senator Alting,2023-03-20,[],IN,2023 +Authored by Senator Niemeyer,2023-01-09,[],IN,2023 +Authored by Representative Heine,2023-01-17,[],IN,2023 +Authored by Senator Baldwin,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Coauthored by Representatives Lauer and Schaibley,2023-01-19,[],IN,2023 +"Coauthored by Representatives Soliday, Steuerwald, Moed",2023-01-19,[],IN,2023 +Authored by Senator Walker K,2023-01-10,[],IN,2023 +Authored by Senator Yoder,2023-01-12,[],IN,2023 +Senate sponsors: Senators Byrne and Garten,2023-04-24,[],IN,2023 +Authored by Senator Koch,2023-01-19,[],IN,2023 +Authored by Representative Haggard,2023-01-12,[],IN,2023 +Coauthored by Representatives Bauer M and Frye R,2023-01-17,[],IN,2023 +"Coauthored by Representatives Negele, Vermilion, Fleming",2023-01-19,[],IN,2023 +Authored by Senator Tomes,2023-01-11,[],IN,2023 +Authored by Senator Gaskill,2023-01-09,[],IN,2023 +Authored by Representative Negele,2023-01-17,[],IN,2023 +Authored by Representative Soliday,2023-01-17,[],IN,2023 +Authored by Senator Johnson,2023-01-11,[],IN,2023 +Authored by Senator Crider,2023-01-09,[],IN,2023 +Coauthored by Representative McNamara,2023-01-10,[],IN,2023 +Authored by Senator Crider,2023-01-09,[],IN,2023 +Authored by Representative Heaton,2023-01-19,[],IN,2023 +Authored by Representative Wesco,2023-04-24,[],IN,2023 +Senate sponsor: Senator Crider,2023-03-13,[],IN,2023 +Authored by Senators Brown L and Bray,2023-03-13,[],IN,2023 +Coauthored by Representative Barrett,2023-01-17,[],IN,2023 +Coauthored by Representatives McNamara and Hatfield,2023-01-19,[],IN,2023 +Authored by Senator Byrne,2023-03-16,[],IN,2023 +"Authored by Senators Ford J.D., Walker K, Taylor G",2023-03-14,[],IN,2023 +Authored by Senator Leising,2023-01-09,[],IN,2023 +Authored by Representative Shackleford,2023-01-10,[],IN,2023 +Authored by Representative Miller K,2023-01-19,[],IN,2023 +Authored by Representative Shackleford,2023-01-10,[],IN,2023 +Authored by Representative Hostettler,2023-01-17,[],IN,2023 +Authored by Representative Speedy,2023-01-17,[],IN,2023 +Authored by Representative Schaibley,2023-04-24,[],IN,2023 +Authored by Representative Miller D,2023-02-14,[],IN,2023 +Coauthored by Representatives Aylesworth and Errington,2023-01-19,[],IN,2023 +Authored by Senator Ford J.D.,2023-03-20,[],IN,2023 +Senate sponsor: Senator Alexander,2023-03-20,[],IN,2023 +Authored by Representative Klinker,2023-02-14,[],IN,2023 +Authored by Representative O'Brien,2023-01-19,[],IN,2023 +Authored by Representative Klinker,2023-01-17,[],IN,2023 +Senate sponsors: Senators Crider and Taylor G,2023-01-17,[],IN,2023 +"Coauthored by Representatives Cherry, Karickhoff, Errington",2023-01-10,[],IN,2023 +Authored by Representative Barrett,2023-02-20,[],IN,2023 +Authored by Senator Niemeyer,2023-01-09,[],IN,2023 +Authored by Representative Snow,2023-01-17,[],IN,2023 +Coauthored by Representative Smith V,2023-01-10,[],IN,2023 +Authored by Senator Niemeyer,2023-01-09,[],IN,2023 +Authored by Senator Qaddoura,2023-01-10,[],IN,2023 +Coauthored by Representative Schaibley,2023-01-10,[],IN,2023 +"Coauthored by Representatives King, Teshka, Patterson",2023-01-10,[],IN,2023 +Authored by Senator Taylor G,2023-01-10,[],IN,2023 +Coauthored by Representatives Engleman and Fleming,2023-01-10,[],IN,2023 +Authored by Representative McGuire,2023-01-19,[],IN,2023 +"Coauthored by Representatives Engleman, Thompson, Culp",2023-01-09,[],IN,2023 +Authored by Representative Haggard,2023-01-12,[],IN,2023 +Authored by Representative Pierce K,2023-01-17,[],IN,2023 +Authored by Representative Greene,2023-01-11,[],IN,2023 +Authored by Representative Sweet,2023-01-10,[],IN,2023 +Authored by Senator Qaddoura,2023-01-10,[],IN,2023 +"Authored by Senators Ford J.D., Baldwin, Walker K",2023-02-20,[],IN,2023 +Senate sponsor: Senator Charbonneau,2023-04-12,[],IN,2023 +Authored by Representative Errington,2023-01-10,[],IN,2023 +Authored by Representative Engleman,2023-01-17,[],IN,2023 +Authored by Representative Pryor,2023-01-10,[],IN,2023 +Authored by Representative Smith V,2023-01-11,[],IN,2023 +"Authored by Senators Becker, Niemeyer and Tomes",2023-01-19,[],IN,2023 +Coauthored by Representative Rowray,2023-01-10,[],IN,2023 +Authored by Representative GiaQuinta,2023-01-17,[],IN,2023 +Authored by Senator Ford J.D.,2023-02-28,[],IN,2023 +Authored by Representative Clere,2023-01-10,[],IN,2023 +Authored by Representative Manning,2023-01-19,[],IN,2023 +Authored by Representative Speedy,2023-01-17,[],IN,2023 +Authored by Representative Moseley,2023-01-17,[],IN,2023 +Authored by Representative Aylesworth,2023-01-10,[],IN,2023 +"Coauthored by Representatives Jordan, McNamara, Shackleford",2023-01-19,[],IN,2023 +Authored by Representative Lauer,2023-04-13,[],IN,2023 +Authored by Representative Speedy,2023-01-17,[],IN,2023 +Authored by Representative Barrett,2023-01-17,[],IN,2023 +Authored by Senator Breaux,2023-01-19,[],IN,2023 +Authored by Senator Ford J.D.,2023-02-28,[],IN,2023 +Coauthored by Representatives Soliday and Morris,2023-01-10,[],IN,2023 +Authored by Senator Byrne,2023-01-12,[],IN,2023 +Authored by Representative Olthoff,2023-01-17,[],IN,2023 +Authored by Senator Buchanan,2023-01-19,[],IN,2023 +Authored by Representative Lindauer,2023-01-17,[],IN,2023 +Authored by Representative Barrett,2023-01-19,[],IN,2023 +Authored by Representative Smith V,2023-01-17,[],IN,2023 +Authored by Representative Snow,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Senator Hunley,2023-01-10,[],IN,2023 +Authored by Representative Morris,2023-01-19,[],IN,2023 +Authored by Representative Smith V,2023-02-06,[],IN,2023 +Authored by Representative McGuire,2023-01-19,[],IN,2023 +"Coauthored by Representatives Ledbetter, Vermilion, Fleming",2023-01-17,[],IN,2023 +Authored by Representative Jeter,2023-01-19,[],IN,2023 +"Coauthored by Representatives VanNatter, Pierce K, Miller K",2023-01-19,[],IN,2023 +Authored by Representative Bauer M,2023-01-19,[],IN,2023 +Authored by Representative Sweet,2023-01-10,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Senate sponsor: Senator Niezgodski,2023-02-22,[],IN,2023 +Authored by Senator Doriot,2023-01-09,[],IN,2023 +Authored by Representative Steuerwald,2023-01-17,[],IN,2023 +Authored by Representative Soliday,2023-01-19,[],IN,2023 +Coauthored by Representatives Davis and Goodrich,2023-01-17,[],IN,2023 +Authored by Representative Summers,2023-01-19,[],IN,2023 +Authored by Representative Borders,2023-01-19,[],IN,2023 +"Coauthored by Representatives Engleman, Sweet, Johnson",2023-01-19,[],IN,2023 +Authored by Representative Moseley,2023-01-17,[],IN,2023 +Authored by Senator Walker K,2023-01-12,[],IN,2023 +Senate sponsor: Senator Hunley,2023-04-13,[],IN,2023 +Authored by Representative Manning,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Shackleford,2023-01-17,[],IN,2023 +"Coauthored by Representatives Hostettler, Meltzer, Haggard",2023-01-19,[],IN,2023 +Authored by Representative Mayfield,2023-01-19,[],IN,2023 +Authored by Representative Cash,2023-01-10,[],IN,2023 +Coauthored by Representative Teshka,2023-01-19,[],IN,2023 +Coauthored by Representative Judy,2023-01-19,[],IN,2023 +Authored by Senator Breaux,2023-01-10,[],IN,2023 +"Coauthored by Representatives Prescott, Lucas, Haggard",2023-01-19,[],IN,2023 +Authored by Senators Pol and Ford Jon,2023-01-19,[],IN,2023 +Authored by Senator Donato,2023-01-19,[],IN,2023 +"Coauthored by Representatives VanNatter, Gore, Clere",2023-01-19,[],IN,2023 +Coauthored by Representative Andrade,2023-01-17,[],IN,2023 +Coauthored by Representative O'Brien,2023-01-09,[],IN,2023 +Coauthored by Representative Zent,2023-01-17,[],IN,2023 +Authored by Representative Rowray,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Karickhoff,2023-01-10,[],IN,2023 +Authored by Representative Porter,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Bauer M,2023-01-17,[],IN,2023 +Authored by Representative Rowray,2023-01-19,[],IN,2023 +Authored by Senator Buck,2023-01-10,[],IN,2023 +Authored by Representative Culp,2023-01-19,[],IN,2023 +Authored by Representative Johnson,2023-01-17,[],IN,2023 +Authored by Senator Pol,2023-01-19,[],IN,2023 +"Coauthored by Representatives Smaltz, Bartels, VanNatter",2023-01-17,[],IN,2023 +Authored by Representative Judy,2023-01-19,[],IN,2023 +Coauthored by Representative Goodrich,2023-01-19,[],IN,2023 +Authored by Representative Morrison,2023-01-09,[],IN,2023 +Authored by Senator Zay,2023-02-13,[],IN,2023 +Coauthored by Representative Olthoff,2023-01-19,[],IN,2023 +Authored by Senator Freeman,2023-01-19,[],IN,2023 +Authored by Senator Zay,2023-01-19,[],IN,2023 +Coauthored by Representatives Bartels and Miller D,2023-01-19,[],IN,2023 +"Coauthored by Representatives Johnson, McGuire, O'Brien",2023-01-19,[],IN,2023 +Authored by Senators Buchanan and Busch,2023-01-11,[],IN,2023 +Coauthored by Representatives McNamara and Baird,2023-01-19,[],IN,2023 +Authored by Representative Smith V,2023-01-17,[],IN,2023 +Authored by Representative Porter,2023-01-19,[],IN,2023 +Authored by Representative McGuire,2023-01-19,[],IN,2023 +Authored by Senator Young M,2023-01-19,[],IN,2023 +Authored by Representative Manning,2023-01-10,[],IN,2023 +Coauthored by Representatives Lucas and Hatfield,2023-01-11,[],IN,2023 +Authored by Representative Jeter,2023-01-09,[],IN,2023 +Authored by Representative Moseley,2023-01-17,[],IN,2023 +Authored by Representative Schaibley,2023-01-11,[],IN,2023 +Authored by Senator Ford J.D.,2023-01-10,[],IN,2023 +Authored by Representative Ledbetter,2023-01-19,[],IN,2023 +Authored by Senator Ford Jon,2023-01-19,[],IN,2023 +Authored by Senator Messmer,2023-01-19,[],IN,2023 +Authored by Representative Hatcher,2023-01-17,[],IN,2023 +Coauthored by Representative Olthoff,2023-01-19,[],IN,2023 +Authored by Representative Heaton,2023-01-19,[],IN,2023 +"Coauthored by Representatives Morrison, Sweet and Hostettler",2023-01-19,[],IN,2023 +"Coauthored by Representatives Errington, Boy, Campbell",2023-01-17,[],IN,2023 +Representative Smaltz added as coauthor,2023-01-17,[],IN,2023 +Authored by Senators Charbonneau and Brown L,2023-01-10,[],IN,2023 +Authored by Representative Rowray,2023-01-19,[],IN,2023 +Authored by Senator Alexander,2023-01-19,[],IN,2023 +Coauthored by Representative Jackson,2023-01-17,[],IN,2023 +"Coauthored by Representatives Sweet, Cash, Jeter",2023-01-19,[],IN,2023 +"Coauthored by Representatives Hamilton, Campbell, Bauer M",2023-01-17,[],IN,2023 +Authored by Senator Ford J.D.,2023-01-10,[],IN,2023 +Authored by Senator Buchanan,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Coauthored by Representatives Heine, Morris, Bartlett",2023-01-19,[],IN,2023 +Authored by Representative Genda,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Engleman,2023-01-09,[],IN,2023 +Coauthored by Representative Criswell,2023-01-19,[],IN,2023 +Authored by Representative Torr,2023-01-10,[],IN,2023 +Authored by Senator Hunley,2023-04-18,[],IN,2023 +Coauthored by Representative Jeter,2023-01-17,[],IN,2023 +Authored by Representative Lauer,2023-01-10,[],IN,2023 +Authored by Senators Mishler and Bray,2023-04-10,[],IN,2023 +Coauthored by Representatives Lauer and Pierce K,2023-01-17,[],IN,2023 +Authored by Representative Klinker,2023-02-21,[],IN,2023 +Authored by Representative Genda,2023-01-17,[],IN,2023 +Authored by Representative DeVon,2023-01-17,[],IN,2023 +Authored by Representative Carbaugh,2023-01-17,[],IN,2023 +"Coauthored by Representatives Clere, Vermilion, Andrade",2023-01-19,[],IN,2023 +Authored by Representative Lindauer,2023-01-17,[],IN,2023 +Authored by Representative Manning,2023-01-10,[],IN,2023 +Authored by Representative Hatcher,2023-01-17,[],IN,2023 +Authored by Representative Boy,2023-01-10,[],IN,2023 +Authored by Senators Holdman and Garten,2023-03-27,[],IN,2023 +Coauthored by Representative Teshka,2023-01-17,[],IN,2023 +Authored by Representative Jeter,2023-01-11,[],IN,2023 +Authored by Representative Smith V,2023-01-17,[],IN,2023 +Authored by Representative Boy,2023-01-10,[],IN,2023 +Authored by Representative Johnson,2023-01-17,[],IN,2023 +Coauthored by Representatives King and Goodrich,2023-01-17,[],IN,2023 +Authored by Representative Smaltz,2023-01-10,[],IN,2023 +Authored by Senator Koch,2023-01-09,[],IN,2023 +"Coauthored by Representatives Errington, Boy, Campbell",2023-01-17,[],IN,2023 +Authored by Representative Campbell,2023-01-10,[],IN,2023 +Coauthored by Representative Clere,2023-01-10,[],IN,2023 +Authored by Representative VanNatter,2023-01-12,[],IN,2023 +Coauthored by Representatives May and Haggard,2023-01-17,[],IN,2023 +Authored by Senator Rogers,2023-01-12,[],IN,2023 +Authored by Representative DeVon,2023-01-17,[],IN,2023 +Authored by Senator Melton,2023-01-19,[],IN,2023 +Authored by Representative Carbaugh,2023-01-17,[],IN,2023 +Authored by Representative Cherry,2023-01-10,[],IN,2023 +Coauthored by Representative Pierce K,2023-01-10,[],IN,2023 +Coauthored by Representative Teshka,2023-01-17,[],IN,2023 +Authored by Representative Klinker,2023-01-10,[],IN,2023 +Authored by Representative Boy,2023-01-10,[],IN,2023 +Coauthored by Representative Manning,2023-01-17,[],IN,2023 +Senator Qaddoura added as second author,2023-02-02,[],IN,2023 +Coauthored by Representative Clere,2023-01-10,[],IN,2023 +Authored by Representative Lauer,2023-01-10,[],IN,2023 +Authored by Representative Pierce K,2023-01-10,[],IN,2023 +Authored by Representative Campbell,2023-01-10,[],IN,2023 +Authored by Representative Campbell,2023-01-10,[],IN,2023 +Coauthored by Representative Moed,2023-01-19,[],IN,2023 +Authored by Senator Leising,2023-02-21,[],IN,2023 +Authored by Representative Campbell,2023-01-10,[],IN,2023 +Authored by Representative Clere,2023-01-10,[],IN,2023 +Authored by Representative Campbell,2023-01-10,[],IN,2023 +Authored by Senator Buchanan,2023-01-12,[],IN,2023 +Authored by Senator Qaddoura,2023-01-10,[],IN,2023 +Coauthored by Senator Doriot,2023-01-19,[],IN,2023 +Authored by Senator Melton,2023-02-20,[],IN,2023 +Coauthored by Representative Pfaff,2023-01-17,[],IN,2023 +Authored by Representative Heaton,2023-01-11,[],IN,2023 +Authored by Representative Frye R,2023-01-10,[],IN,2023 +Authored by Senator Walker K,2023-02-06,[],IN,2023 +Authored by Representative Andrade,2023-03-09,[],IN,2023 +"Senate sponsors: Senators Qaddoura, Breaux, Pol",2023-04-18,[],IN,2023 +Authored by Representative Aylesworth,2023-01-10,[],IN,2023 +Authored by Representative Shackleford,2023-01-10,[],IN,2023 +Authored by Representative Gore,2023-01-10,[],IN,2023 +Authored by Representative Shackleford,2023-01-10,[],IN,2023 +Authored by Representative Huston,2023-01-09,[],IN,2023 +Authored by Representative Jeter,2023-01-09,[],IN,2023 +Authored by Representative Lehman,2023-01-10,[],IN,2023 +Coauthored by Representatives Goodrich and Teshka,2023-01-19,[],IN,2023 +Senate sponsor: Senator Niezgodski,2023-03-06,[],IN,2023 +Authored by Representative Jackson,2023-01-10,[],IN,2023 +Authored by Representative Gore,2023-01-10,[],IN,2023 +Authored by Representative Prescott,2023-01-10,[],IN,2023 +Coauthored by Representative Shackleford,2023-01-10,[],IN,2023 +Authored by Representative Moed,2023-01-10,[],IN,2023 +Coauthored by Representative Lehman,2023-01-11,[],IN,2023 +Senate sponsor: Senator Raatz,2023-04-12,[],IN,2023 +Authored by Representative Gore,2023-01-10,[],IN,2023 +Coauthored by Representative Smith V,2023-01-10,[],IN,2023 +Authored by Senator Hunley,2023-03-27,[],IN,2023 +Authored by Representative Lindauer,2023-01-10,[],IN,2023 +Coauthored by Representative Morrison,2023-01-11,[],IN,2023 +Coauthored by Representatives Bartels and O'Brien,2023-01-10,[],IN,2023 +Authored by Representative Frye R,2023-01-09,[],IN,2023 +Coauthored by Representatives Behning and McNamara,2023-01-19,[],IN,2023 +Authored by Representative Frye R,2023-04-13,[],IN,2023 +Authored by Senator Koch,2023-01-09,[],IN,2023 +Authored by Representative Behning,2023-01-19,[],IN,2023 +Authored by Senator Brown L,2023-01-19,[],IN,2023 +Authored by Representative Olthoff,2023-01-09,[],IN,2023 +Authored by Representative McGuire,2023-01-11,[],IN,2023 +Authored by Representative Johnson,2023-01-11,[],IN,2023 +"Coauthored by Representatives Behning, Prescott, Pryor",2023-01-11,[],IN,2023 +Coauthored by Representative Bauer M,2023-01-10,[],IN,2023 +Authored by Representative Lucas,2023-04-13,[],IN,2023 +Authored by Senator Brown L,2023-01-12,[],IN,2023 +Authored by Representative Hatfield,2023-01-11,[],IN,2023 +Authored by Senator Raatz,2023-01-12,[],IN,2023 +Authored by Representative DeVon,2023-01-11,[],IN,2023 +Authored by Representative Klinker,2023-01-10,[],IN,2023 +Authored by Representative Jackson,2023-01-10,[],IN,2023 +Authored by Representative Frye R,2023-01-10,[],IN,2023 +Coauthored by Representatives May and Engleman,2023-01-17,[],IN,2023 +Authored by Representative Engleman,2023-01-09,[],IN,2023 +Authored by Senator Dernulc,2023-01-12,[],IN,2023 +Authored by Senator Rogers,2023-01-12,[],IN,2023 +Coauthored by Representative Boy,2023-01-17,[],IN,2023 +Authored by Senator Freeman,2023-01-11,[],IN,2023 +Authored by Representative Lehman,2023-01-11,[],IN,2023 +Authored by Senator Koch,2023-01-09,[],IN,2023 +Authored by Representative Campbell,2023-01-10,[],IN,2023 +Authored by Senators Buchanan and Baldwin,2023-01-11,[],IN,2023 +Authored by Representative Lauer,2023-01-10,[],IN,2023 +Authored by Senator Koch,2023-01-09,[],IN,2023 +Authored by Senator Taylor G,2023-01-11,[],IN,2023 +Coauthored by Representative Criswell,2023-01-12,[],IN,2023 +Authored by Representative VanNatter,2023-01-11,[],IN,2023 +Authored by Senator Doriot,2023-04-24,[],IN,2023 +Authored by Senator Bray,2023-04-24,[],IN,2023 +Authored by Senator Sandlin,2023-01-11,[],IN,2023 +Authored by Representative Bartels,2023-01-10,[],IN,2023 +Authored by Senator Ford Jon,2023-01-11,[],IN,2023 +Authored by Senator Qaddoura,2023-01-12,[],IN,2023 +Authored by Senator Walker K,2023-01-09,[],IN,2023 +Coauthored by Representative Heine,2023-01-17,[],IN,2023 +Authored by Representative Sweet,2023-01-10,[],IN,2023 +Authored by Senator Breaux,2023-01-10,[],IN,2023 +Authored by Senator Zay,2023-01-12,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-01-09,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-01-09,[],IN,2023 +Authored by Senator Ford Jon,2023-01-11,[],IN,2023 +Authored by Representative Lucas,2023-01-11,[],IN,2023 +"Coauthored by Representatives Goodrich, Snow, Pfaff",2023-01-10,[],IN,2023 +Authored by Senator Buchanan,2023-01-11,[],IN,2023 +Authored by Representative Jackson,2023-01-10,[],IN,2023 +Authored by Senator Freeman,2023-04-11,[],IN,2023 +"Coauthored by Representatives Bartels, Miller D, Moed",2023-01-09,[],IN,2023 +Authored by Representative Shackleford,2023-01-09,[],IN,2023 +Authored by Senator Qaddoura,2023-01-19,[],IN,2023 +Authored by Senator Holdman,2023-01-11,[],IN,2023 +Authored by Representative Schaibley,2023-01-17,[],IN,2023 +Authored by Senator Young M,2023-01-19,[],IN,2023 +Coauthored by Representative Hamilton,2023-01-17,[],IN,2023 +Authored by Senators Becker and Leising,2023-01-12,[],IN,2023 +Authored by Representative Shackleford,2023-02-23,[],IN,2023 +Authored by Representative Negele,2023-01-17,[],IN,2023 +Authored by Senator Freeman,2023-01-11,[],IN,2023 +Senate sponsor: Senator Walker K,2023-02-20,[],IN,2023 +Authored by Senator Zay,2023-01-12,[],IN,2023 +Authored by Representative Schaibley,2023-01-17,[],IN,2023 +Authored by Senators Crider and Charbonneau,2023-03-23,[],IN,2023 +Authored by Representative Johnson,2023-01-11,[],IN,2023 +Authored by Representative Engleman,2023-04-20,[],IN,2023 +Authored by Senators Holdman and Bray,2023-04-11,[],IN,2023 +Authored by Senator Ford Jon,2023-01-19,[],IN,2023 +Authored by Senator Ford Jon,2023-01-19,[],IN,2023 +Authored by Representative Shackleford,2023-01-09,[],IN,2023 +Authored by Representative Heine,2023-01-09,[],IN,2023 +Authored by Senator Freeman,2023-01-11,[],IN,2023 +Authored by Senator Leising,2023-01-09,[],IN,2023 +Authored by Senator Rogers,2023-01-19,[],IN,2023 +Senate sponsor: Senator Charbonneau,2023-02-06,[],IN,2023 +"Coauthored by Representatives Ledbetter, Abbott, Judy",2023-01-09,[],IN,2023 +"Coauthored by Representatives Teshka, Lucas, Gore",2023-01-09,[],IN,2023 +Authored by Representative Heine,2023-01-09,[],IN,2023 +Authored by Representative Errington,2023-01-09,[],IN,2023 +Authored by Representative Morrison,2023-01-09,[],IN,2023 +Authored by Senator Holdman,2023-01-09,[],IN,2023 +Authored by Senator Yoder,2023-01-11,[],IN,2023 +Authored by Representative Torr,2023-01-09,[],IN,2023 +Authored by Representative Torr,2023-01-09,[],IN,2023 +Authored by Representative Lyness,2023-01-10,[],IN,2023 +Authored by Representative Heine,2023-01-09,[],IN,2023 +Authored by Representative Errington,2023-01-09,[],IN,2023 +Authored by Senator Yoder,2023-01-10,[],IN,2023 +Coauthored by Representatives Steuerwald and McNamara,2023-01-11,[],IN,2023 +Authored by Representative Cash,2023-01-10,[],IN,2023 +Coauthored by Representative Campbell,2023-01-11,[],IN,2023 +Authored by Representative Heaton,2023-01-11,[],IN,2023 +Coauthored by Representative Pfaff,2023-01-09,[],IN,2023 +Authored by Representative Bartlett,2023-01-11,[],IN,2023 +Authored by Senator Koch,2023-01-19,[],IN,2023 +Authored by Senator Ford Jon,2023-01-11,[],IN,2023 +Authored by Senator Koch,2023-01-12,[],IN,2023 +Authored by Representative Pryor,2023-01-09,[],IN,2023 +Authored by Representative Pack,2023-01-11,[],IN,2023 +Coauthored by Representatives Rowray and Bartlett,2023-01-09,[],IN,2023 +Authored by Representative Harris,2023-01-09,[],IN,2023 +Authored by Representative Engleman,2023-01-09,[],IN,2023 +Authored by Representative Miller D,2023-01-12,[],IN,2023 +Authored by Representative McNamara,2023-01-10,[],IN,2023 +Authored by Senator Bohacek,2023-01-09,[],IN,2023 +"Senate sponsors: Senators Ford J.D., Crider, Yoder",2023-02-02,[],IN,2023 +Authored by Senator Gaskill,2023-01-09,[],IN,2023 +Authored by Representative Torr,2023-01-09,[],IN,2023 +Authored by Representative Smith V,2023-04-18,[],IN,2023 +Authored by Senator Walker G,2023-04-11,[],IN,2023 +Authored by Representative Aylesworth,2023-01-17,[],IN,2023 +Authored by Senator Raatz,2023-01-12,[],IN,2023 +Authored by Senators Breaux and Glick,2023-04-06,[],IN,2023 +Authored by Representative Prescott,2023-04-12,[],IN,2023 +Authored by Senators Niemeyer and Dernulc,2023-02-02,[],IN,2023 +Coauthored by Representative Judy,2023-01-11,[],IN,2023 +Coauthored by Representative Campbell,2023-01-11,[],IN,2023 +Authored by Representative Bartlett,2023-01-11,[],IN,2023 +Authored by Representative Cash,2023-01-10,[],IN,2023 +Coauthored by Representatives DeVon and Jackson,2023-01-10,[],IN,2023 +Authored by Representative DeVon,2023-01-17,[],IN,2023 +"Authored by Senators Rogers, Mishler, Doriot",2023-04-04,[],IN,2023 +Coauthored by Representatives Negele and Fleming,2023-01-11,[],IN,2023 +Authored by Representative Slager,2023-01-17,[],IN,2023 +Authored by Senator Mishler,2023-01-12,[],IN,2023 +Authored by Representative Karickhoff,2023-01-10,[],IN,2023 +Authored by Senator Bassler,2023-01-19,[],IN,2023 +Authored by Representative Barrett,2023-01-17,[],IN,2023 +Authored by Senator Yoder,2023-04-04,[],IN,2023 +Coauthored by Representatives DeVon and Behning,2023-01-17,[],IN,2023 +"Coauthored by Representatives Jeter, King and McNamara",2023-01-12,[],IN,2023 +Authored by Representative McNamara,2023-01-10,[],IN,2023 +Authored by Representative Karickhoff,2023-01-10,[],IN,2023 +Authored by Senator Freeman,2023-01-09,[],IN,2023 +Authored by Representative O'Brien,2023-01-10,[],IN,2023 +Authored by Representative Lehman,2023-01-10,[],IN,2023 +Authored by Senator Holdman,2023-03-20,[],IN,2023 +Authored by Representative Carbaugh,2023-01-17,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Tomes,2023-01-09,[],IN,2023 +"Coauthored by Representatives Prescott, Morrison, Andrade",2023-01-09,[],IN,2023 +Authored by Representative Campbell,2023-03-23,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Deery,2023-01-19,[],IN,2023 +Authored by Senator Alting,2023-01-23,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Rogers,2023-01-19,[],IN,2023 +Coauthored by Representative Lauer,2023-01-09,[],IN,2023 +Authored by Representative Smaltz,2023-01-17,[],IN,2023 +Authored by Senator Crider,2023-01-09,[],IN,2023 +Authored by Representative Lucas,2023-01-11,[],IN,2023 +"Authored by Senators Buchanan, Rogers, Gaskill",2023-01-12,[],IN,2023 +Authored by Senator Bassler,2023-01-12,[],IN,2023 +Coauthored by Representative Lehman,2023-01-17,[],IN,2023 +Authored by Senators Buchanan and Bassler,2023-01-12,[],IN,2023 +Authored by Senator Leising,2023-01-10,[],IN,2023 +Authored by Representative Hatfield,2023-01-11,[],IN,2023 +Authored by Senator Leising,2023-01-17,[],IN,2023 +Coauthored by Representative Barrett,2023-01-17,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Coauthored by Representatives Frye R, Bartels, Campbell",2023-01-09,[],IN,2023 +Authored by Representative Summers,2023-03-23,[],IN,2023 +Authored by Representative Smith V,2023-03-16,[],IN,2023 +Authored by Senator Qaddoura,2023-01-10,[],IN,2023 +Authored by Representative Negele,2023-01-17,[],IN,2023 +Authored by Representative Moed,2023-01-09,[],IN,2023 +Authored by Senator Niezgodski,2023-01-19,[],IN,2023 +Senate sponsor: Senator Hunley,2023-03-21,[],IN,2023 +Authored by Representative Cherry,2023-01-09,[],IN,2023 +Authored by Representative Greene,2023-01-11,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Representative Wesco,2023-01-17,[],IN,2023 +Authored by Representative Davis,2023-01-17,[],IN,2023 +Authored by Senator Niezgodski,2023-01-09,[],IN,2023 +Authored by Senator Niezgodski,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-01-09,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Leising,2023-01-09,[],IN,2023 +Authored by Representative Aylesworth,2023-01-19,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Doriot,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Bohacek,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Hunley,2023-01-10,[],IN,2023 +"Coauthored by Representatives Jeter, Cherry, Steuerwald",2023-01-11,[],IN,2023 +Authored by Senator Koch,2023-01-19,[],IN,2023 +Authored by Senator Messmer,2023-01-17,[],IN,2023 +Authored by Senator Bohacek,2023-01-09,[],IN,2023 +Authored by Senator Charbonneau,2023-01-09,[],IN,2023 +Authored by Senator Niemeyer,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Alexander,2023-01-09,[],IN,2023 +Authored by Representative Pressel,2023-01-09,[],IN,2023 +Authored by Representative Morris,2023-01-19,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Tomes,2023-01-09,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-01-09,[],IN,2023 +Authored by Senator Ford J.D.,2023-01-09,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Crider,2023-01-09,[],IN,2023 +Authored by Senator Bohacek,2023-01-09,[],IN,2023 +Coauthored by Representatives Olthoff and Pierce K,2023-01-17,[],IN,2023 +Authored by Representative Speedy,2023-01-17,[],IN,2023 +Authored by Senator Tomes,2023-01-09,[],IN,2023 +Authored by Representative Moed,2023-01-10,[],IN,2023 +Authored by Senator Hunley,2023-01-19,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Freeman,2023-01-11,[],IN,2023 +Authored by Senator Holdman,2023-01-19,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Tomes,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senators Donato and Rogers,2023-01-09,[],IN,2023 +Authored by Senator Crider,2023-01-09,[],IN,2023 +"Coauthored by Representatives Teshka, Jeter, Heaton",2023-01-19,[],IN,2023 +Authored by Representative Ledbetter,2023-01-12,[],IN,2023 +Authored by Representative Summers,2023-01-11,[],IN,2023 +Authored by Senators Becker and Johnson,2023-01-19,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Ford J.D.,2023-01-09,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-01-09,[],IN,2023 +Coauthored by Representatives Davis and Smith V,2023-01-19,[],IN,2023 +Authored by Representative Miller K,2023-01-10,[],IN,2023 +Authored by Representative Moed,2023-01-11,[],IN,2023 +Authored by Senator Brown L,2023-01-12,[],IN,2023 +Coauthored by Representatives Davis and Steuerwald,2023-01-17,[],IN,2023 +Authored by Senator Melton,2023-01-19,[],IN,2023 +Authored by Representative Porter,2023-01-17,[],IN,2023 +Coauthored by Representative Jeter,2023-01-17,[],IN,2023 +"Coauthored by Representatives Engleman, Smaltz, Shackleford",2023-01-11,[],IN,2023 +Authored by Senators Sandlin and Tomes,2023-01-19,[],IN,2023 +Authored by Representative Ledbetter,2023-01-17,[],IN,2023 +Authored by Representative Cash,2023-01-10,[],IN,2023 +Authored by Senator Sandlin,2023-01-09,[],IN,2023 +Authored by Representative May,2023-01-12,[],IN,2023 +"Authored by Senators Doriot, Buck, Johnson",2023-01-19,[],IN,2023 +Authored by Representative VanNatter,2023-01-11,[],IN,2023 +Authored by Senators Pol and Glick,2023-01-19,[],IN,2023 +Coauthored by Representative Clere,2023-01-17,[],IN,2023 +Authored by Senator Breaux,2023-01-19,[],IN,2023 +Authored by Representative May,2023-01-12,[],IN,2023 +Authored by Senator Buchanan,2023-01-19,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +"Coauthored by Representatives Prescott, Teshka, Judy",2023-01-17,[],IN,2023 +Coauthored by Representatives Negele and Cherry,2023-01-17,[],IN,2023 +Authored by Senator Qaddoura,2023-01-19,[],IN,2023 +Authored by Senator Busch,2023-01-19,[],IN,2023 +Authored by Senator Dernulc,2023-01-19,[],IN,2023 +Authored by Representative Klinker,2023-01-17,[],IN,2023 +Authored by Senator Baldwin,2023-01-19,[],IN,2023 +Authored by Senator Donato,2023-01-19,[],IN,2023 +Authored by Representative Heine,2023-01-17,[],IN,2023 +Authored by Representative Lauer,2023-01-17,[],IN,2023 +Authored by Senator Rogers,2023-01-19,[],IN,2023 +Coauthored by Representatives McNamara and Jeter,2023-01-17,[],IN,2023 +Authored by Senators Leising and Freeman,2023-01-19,[],IN,2023 +Coauthored by Representatives Speedy and Lindauer,2023-01-12,[],IN,2023 +Authored by Senator Holdman,2023-01-19,[],IN,2023 +Coauthored by Representative Andrade,2023-01-17,[],IN,2023 +Authored by Senator Rogers,2023-01-19,[],IN,2023 +Authored by Senator Crider,2023-01-09,[],IN,2023 +Authored by Senator Yoder,2023-01-19,[],IN,2023 +Authored by Representative Speedy,2023-01-17,[],IN,2023 +Authored by Senator Ford Jon,2023-01-19,[],IN,2023 +Authored by Representative Sweet,2023-01-19,[],IN,2023 +Authored by Senator Breaux,2023-01-19,[],IN,2023 +Authored by Senator Koch,2023-01-19,[],IN,2023 +Authored by Senator Breaux,2023-01-19,[],IN,2023 +Authored by Representative Boy,2023-01-10,[],IN,2023 +Authored by Representative Manning,2023-01-10,[],IN,2023 +Authored by Representative Greene,2023-01-11,[],IN,2023 +Authored by Senator Breaux,2023-01-19,[],IN,2023 +Authored by Representative Olthoff,2023-01-10,[],IN,2023 +Authored by Senator Dernulc,2023-01-19,[],IN,2023 +Authored by Senator Tomes,2023-01-09,[],IN,2023 +Authored by Representative Negele,2023-01-17,[],IN,2023 +Authored by Representative Moed,2023-01-09,[],IN,2023 +Authored by Representative Moseley,2023-01-17,[],IN,2023 +Authored by Representative Heine,2023-01-17,[],IN,2023 +"Authored by Senators Gaskill, Garten, Bassler",2023-01-19,[],IN,2023 +Authored by Senator Walker G,2023-01-19,[],IN,2023 +Authored by Representative Bartels,2023-01-11,[],IN,2023 +Authored by Senator Melton,2023-01-19,[],IN,2023 +Authored by Senator Donato,2023-01-17,[],IN,2023 +Authored by Senator Byrne,2023-01-19,[],IN,2023 +Authored by Senator Brown L,2023-01-12,[],IN,2023 +Authored by Senator Qaddoura,2023-01-12,[],IN,2023 +Authored by Senator Bohacek,2023-01-09,[],IN,2023 +Authored by Senator Walker K,2023-01-12,[],IN,2023 +Authored by Senator Yoder,2023-01-11,[],IN,2023 +Authored by Senators Sandlin and Garten,2023-01-19,[],IN,2023 +Authored by Senator Koch,2023-01-09,[],IN,2023 +Authored by Representative Andrade,2023-02-02,[],IN,2023 +Authored by Senator Walker K,2023-01-09,[],IN,2023 +Authored by Senator Buck,2023-01-10,[],IN,2023 +Authored by Representative Porter,2023-01-17,[],IN,2023 +Authored by Representative Genda,2023-01-17,[],IN,2023 +Authored by Senator Donato,2023-01-09,[],IN,2023 +Authored by Senators Donato and Breaux,2023-01-19,[],IN,2023 +Authored by Representative Smaltz,2023-01-17,[],IN,2023 +Authored by Representative DeVon,2023-01-17,[],IN,2023 +Authored by Senator Becker,2023-01-19,[],IN,2023 +Authored by Representative Aylesworth,2023-01-10,[],IN,2023 +"Authored by Senators Messmer, Niemeyer, Garten",2023-01-19,[],IN,2023 +Authored by Senator Dernulc,2023-01-09,[],IN,2023 +Authored by Senators Pol and Bohacek,2023-01-19,[],IN,2023 +Authored by Senator Qaddoura,2023-01-10,[],IN,2023 +Authored by Senator Melton,2023-01-19,[],IN,2023 +Authored by Senator Ford J.D.,2023-01-10,[],IN,2023 +Authored by Senator Hunley,2023-01-19,[],IN,2023 +Authored by Senator Johnson,2023-02-09,[],IN,2023 +Authored by Representative Carbaugh,2023-01-17,[],IN,2023 +Authored by Senator Ford J.D.,2023-02-16,[],IN,2023 +Authored by Senator Freeman,2023-02-14,[],IN,2023 +Coauthored by Representative Lucas,2023-01-17,[],IN,2023 +Authored by Senator Ford Jon,2023-01-17,[],IN,2023 +Coauthored by Representatives Manning and Fleming,2023-01-17,[],IN,2023 +Authored by Senator Melton,2023-01-19,[],IN,2023 +Authored by Senator Donato,2023-01-17,[],IN,2023 +Authored by Senator Rogers,2023-01-19,[],IN,2023 +Authored by Senator Ford Jon,2023-01-12,[],IN,2023 +Authored by Representative Smaltz,2023-01-10,[],IN,2023 +Authored by Senator Holdman,2023-01-12,[],IN,2023 +Authored by Representative Barrett,2023-01-19,[],IN,2023 +Coauthored by Representative Andrade,2023-01-17,[],IN,2023 +Authored by Senator Buck,2023-01-19,[],IN,2023 +Authored by Senator Melton,2023-01-19,[],IN,2023 +Authored by Senator Ford J.D.,2023-01-10,[],IN,2023 +Authored by Senator Sandlin,2023-01-09,[],IN,2023 +Authored by Senator Leising,2023-02-07,[],IN,2023 +Authored by Representative Carbaugh,2023-01-11,[],IN,2023 +"Coauthored by Representatives Miller D, Zent, Fleming",2023-01-10,[],IN,2023 +Authored by Senator Tomes,2023-02-09,[],IN,2023 +Authored by Representative Frye R,2023-01-09,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-01-09,[],IN,2023 +Authored by Senator Walker G,2023-01-10,[],IN,2023 +Authored by Senator Young M,2023-01-19,[],IN,2023 +Authored by Representative Rowray,2023-01-19,[],IN,2023 +Authored by Representative Shackleford,2023-01-19,[],IN,2023 +Authored by Senators Charbonneau and Busch,2023-01-09,[],IN,2023 +Authored by Representative Smith V,2023-01-17,[],IN,2023 +Authored by Senator Bohacek,2023-04-03,[],IN,2023 +Coauthored by Representatives Behning and McGuire,2023-01-19,[],IN,2023 +Authored by Senator Taylor G,2023-01-10,[],IN,2023 +Referred to the House,2023-01-09,['referral'],IN,2023 +Coauthored by Representative Olthoff,2023-01-17,[],IN,2023 +Authored by Senator Niemeyer,2023-01-09,[],IN,2023 +Authored by Senator Qaddoura,2023-04-19,[],IN,2023 +Authored by Senator Taylor G,2023-01-10,[],IN,2023 +Authored by Senator Doriot,2023-01-09,[],IN,2023 +Coauthored by Representatives Aylesworth and Snow,2023-01-10,[],IN,2023 +Authored by Representative Karickhoff,2023-01-10,[],IN,2023 +Authored by Representative Campbell,2023-01-10,[],IN,2023 +Authored by Representative Manning,2023-01-10,[],IN,2023 +Authored by Representative Bauer M,2023-01-10,[],IN,2023 +Coauthored by Representative Garcia Wilburn,2023-01-17,[],IN,2023 +"Coauthored by Representatives Judy, Lucas, O'Brien",2023-01-09,[],IN,2023 +Authored by Representative Torr,2023-01-09,[],IN,2023 +Authored by Representative Hamilton,2023-01-09,[],IN,2023 +Authored by Representative Frye R,2023-01-09,[],IN,2023 +Authored by Representative Harris,2023-01-09,[],IN,2023 +Coauthored by Representatives Torr and VanNatter,2023-01-11,[],IN,2023 +Authored by Representative Aylesworth,2023-01-10,[],IN,2023 +Authored by Representative Campbell,2023-01-10,[],IN,2023 +Coauthored by Representative Fleming,2023-01-10,[],IN,2023 +Authored by Senator Ford Jon,2023-01-09,[],IN,2023 +"Authored by Senators Tomes, Sandlin, Buck",2023-04-11,[],IN,2023 +Authored by Representative Frye R,2023-01-09,[],IN,2023 +Authored by Senator Dernulc,2023-01-09,[],IN,2023 +Authored by Representative Frye R,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-04-24,[],IN,2023 +Authored by Representative Carbaugh,2023-01-11,[],IN,2023 +Authored by Representative Bartels,2023-01-10,[],IN,2023 +Coauthored by Representative Goodrich,2023-01-19,[],IN,2023 +Coauthored by Representative Karickhoff,2023-01-09,[],IN,2023 +Authored by Representative Lindauer,2023-01-10,[],IN,2023 +Authored by Representative Jackson,2023-01-10,[],IN,2023 +Authored by Representative Zent,2023-01-10,[],IN,2023 +"Authored by Senators Baldwin, Garten, Holdman",2023-01-09,[],IN,2023 +Authored by Representative Wesco,2023-01-10,[],IN,2023 +Authored by Senator Zay,2023-01-10,[],IN,2023 +Authored by Representative Karickhoff,2023-01-10,[],IN,2023 +Coauthored by Representatives Frye R and Zent,2023-01-10,[],IN,2023 +Authored by Representative Lindauer,2023-01-10,[],IN,2023 +"Coauthored by Representatives Frye R, Bartels, Miller D",2023-01-19,[],IN,2023 +Authored by Representative Gore,2023-01-10,[],IN,2023 +Authored by Representative Hamilton,2023-01-10,[],IN,2023 +Authored by Representative Zent,2023-01-10,[],IN,2023 +Authored by Representative Prescott,2023-01-10,[],IN,2023 +Authored by Senator Raatz,2023-01-19,[],IN,2023 +"Coauthored by Representatives Miller D, King, Abbott",2023-01-10,[],IN,2023 +Coauthored by Representative Aylesworth,2023-01-10,[],IN,2023 +Coauthored by Representative Carbaugh,2023-01-12,[],IN,2023 +Coauthored by Representative Moed,2023-01-17,[],IN,2023 +Coauthored by Representative Jeter,2023-01-17,[],IN,2023 +Authored by Representative Klinker,2023-01-17,[],IN,2023 +Coauthored by Representative Pfaff,2023-01-17,[],IN,2023 +Coauthored by Representative Miller K,2023-01-17,[],IN,2023 +Coauthored by Representative Bauer M,2023-01-17,[],IN,2023 +Authored by Representative Patterson,2023-01-17,[],IN,2023 +Authored by Representative Pierce M,2023-01-17,[],IN,2023 +Authored by Representative Campbell,2023-01-17,[],IN,2023 +Authored by Senator Walker K,2023-01-19,[],IN,2023 +Authored by Representative O'Brien,2023-03-13,[],IN,2023 +Representative Genda M added as coauthor,2023-01-12,[],IN,2023 +Authored by Representative Davis,2023-01-17,[],IN,2023 +Authored by Representative Soliday,2023-01-17,[],IN,2023 +Authored by Representative Andrade,2023-01-17,[],IN,2023 +Authored by Representative Carbaugh,2023-01-17,[],IN,2023 +Authored by Representative Wesco,2023-01-17,[],IN,2023 +Authored by Representative Speedy,2023-01-17,[],IN,2023 +Authored by Representative Pressel,2023-01-17,[],IN,2023 +Authored by Representative Andrade,2023-01-17,[],IN,2023 +Authored by Representative Lehman,2023-01-12,[],IN,2023 +Authored by Representative Miller D,2023-01-17,[],IN,2023 +Coauthored by Representatives Miller K and Pfaff,2023-01-17,[],IN,2023 +"Coauthored by Representatives Cherry, Baird, Prescott",2023-01-17,[],IN,2023 +Authored by Representative Speedy,2023-01-17,[],IN,2023 +Authored by Representative Bauer M,2023-01-17,[],IN,2023 +Coauthored by Representative Jackson,2023-01-17,[],IN,2023 +Authored by Representative Moseley,2023-01-17,[],IN,2023 +Authored by Representative Moseley,2023-01-17,[],IN,2023 +Coauthored by Representative Judy,2023-01-17,[],IN,2023 +Authored by Representative Harris,2023-01-17,[],IN,2023 +Authored by Representative Slager,2023-01-17,[],IN,2023 +Authored by Representative Culp,2023-01-17,[],IN,2023 +Authored by Representative Schaibley,2023-01-17,[],IN,2023 +"Coauthored by Representatives King, Carbaugh, Wesco",2023-01-17,[],IN,2023 +Authored by Representative Errington,2023-01-17,[],IN,2023 +Authored by Representative Carbaugh,2023-01-17,[],IN,2023 +Authored by Representative Bauer M,2023-01-17,[],IN,2023 +Authored by Representative Smith V,2023-01-17,[],IN,2023 +Authored by Representative Pierce K,2023-01-17,[],IN,2023 +"Coauthored by Representatives Ledbetter, Teshka, Payne",2023-01-17,[],IN,2023 +Coauthored by Representative Miller K,2023-01-17,[],IN,2023 +Authored by Representative Smith V,2023-01-17,[],IN,2023 +Authored by Representative Smith V,2023-01-17,[],IN,2023 +Authored by Representative Smaltz,2023-04-27,[],IN,2023 +Coauthored by Representatives Karickhoff and Pressel,2023-01-10,[],IN,2023 +Authored by Senator Koch,2023-01-09,[],IN,2023 +Authored by Senator Glick,2023-01-12,[],IN,2023 +"Coauthored by Representatives Engleman, DeLaney, Boy",2023-01-09,[],IN,2023 +Authored by Senator Byrne,2023-01-12,[],IN,2023 +Authored by Representative Errington,2023-01-09,[],IN,2023 +Authored by Senator Koch,2023-01-12,[],IN,2023 +Authored by Senator Qaddoura,2023-01-12,[],IN,2023 +Coauthored by Representative Cherry,2023-01-17,[],IN,2023 +Coauthored by Representative Porter,2023-01-09,[],IN,2023 +Authored by Representative DeVon,2023-01-11,[],IN,2023 +Authored by Representative McNamara,2023-01-10,[],IN,2023 +Authored by Representative Johnson,2023-01-11,[],IN,2023 +"Authored by Senators Yoder, Alting, Ford Jon",2023-01-12,[],IN,2023 +Coauthored by Representative Fleming,2023-01-17,[],IN,2023 +Authored by Representative Torr,2023-01-09,[],IN,2023 +Authored by Representative Bartels,2023-01-10,[],IN,2023 +Authored by Representative Haggard,2023-01-12,[],IN,2023 +Authored by Senators Becker and Leising,2023-01-12,[],IN,2023 +Authored by Senator Niezgodski,2023-01-12,[],IN,2023 +Authored by Senator Sandlin,2023-01-12,[],IN,2023 +Authored by Senator Yoder,2023-01-12,[],IN,2023 +Authored by Senator Qaddoura,2023-01-12,[],IN,2023 +Authored by Senator Yoder,2023-01-12,[],IN,2023 +Authored by Senator Zay,2023-01-12,[],IN,2023 +Authored by Senator Yoder,2023-01-12,[],IN,2023 +Authored by Senator Pol,2023-01-12,[],IN,2023 +Coauthored by Representative Zent,2023-01-11,[],IN,2023 +Coauthored by Representative Shackleford,2023-01-12,[],IN,2023 +Authored by Senator Pol,2023-01-12,[],IN,2023 +Authored by Senator Qaddoura,2023-01-12,[],IN,2023 +Authored by Representative Harris,2023-01-10,[],IN,2023 +Authored by Senator Hunley,2023-01-12,[],IN,2023 +Authored by Senator Messmer,2023-01-12,[],IN,2023 +Authored by Representative Smaltz,2023-01-10,[],IN,2023 +Authored by Representative Hatfield,2023-01-11,[],IN,2023 +Authored by Representative Campbell,2023-01-10,[],IN,2023 +Coauthored by Representative Jeter,2023-01-17,[],IN,2023 +Authored by Representative Jackson,2023-01-10,[],IN,2023 +Coauthored by Representatives Torr and Morrison,2023-01-11,[],IN,2023 +Authored by Senators Koch and Glick,2023-04-03,[],IN,2023 +Authored by Senator Glick,2023-01-19,[],IN,2023 +"Coauthored by Representatives Cherry, Baird, Prescott",2023-01-17,[],IN,2023 +Coauthored by Representative Hall,2023-01-12,[],IN,2023 +Authored by Senator Messmer,2023-01-12,[],IN,2023 +Authored by Representative Torr,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Baldwin,2023-01-12,[],IN,2023 +Authored by Senator Holdman,2023-01-12,[],IN,2023 +Authored by Representative Shackleford,2023-01-12,[],IN,2023 +Authored by Senator Charbonneau,2023-01-09,[],IN,2023 +Authored by Senator Glick,2023-01-19,[],IN,2023 +Authored by Senator Brown L,2023-01-09,[],IN,2023 +Authored by Representative Harris,2023-01-09,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-04-18,[],IN,2023 +Coauthored by Representative Steuerwald,2023-01-17,[],IN,2023 +Authored by Representative Davis,2023-04-12,[],IN,2023 +Authored by Senator Garten,2023-01-11,[],IN,2023 +"Coauthored by Representatives Behning, Davis, McNamara",2023-01-12,[],IN,2023 +Coauthored by Representative McNamara,2023-01-10,[],IN,2023 +Authored by Senators Gaskill and Rogers,2023-01-12,[],IN,2023 +Authored by Senator Johnson,2023-01-19,[],IN,2023 +Authored by Representative Hatfield,2023-01-11,[],IN,2023 +Withdrawn,2023-02-06,['withdrawal'],IN,2023 +Authored by Senator Young M,2023-01-09,[],IN,2023 +Authored by Representative McNamara,2023-01-10,[],IN,2023 +Authored by Senator Charbonneau,2023-01-09,[],IN,2023 +Authored by Senator Freeman,2023-01-11,[],IN,2023 +Authored by Senator Pol,2023-03-27,[],IN,2023 +Authored by Senator Zay,2023-01-12,[],IN,2023 +Authored by Senator Niemeyer,2023-01-09,[],IN,2023 +Authored by Representative Bauer M,2023-01-19,[],IN,2023 +Authored by Representative Carbaugh,2023-01-12,[],IN,2023 +Authored by Senator Zay,2023-01-12,[],IN,2023 +Authored by Representative Steuerwald,2023-01-17,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Pol,2023-01-19,[],IN,2023 +Authored by Senator Messmer,2023-01-12,[],IN,2023 +Authored by Senator Walker K,2023-01-09,[],IN,2023 +Authored by Senator Gaskill,2023-01-09,[],IN,2023 +Authored by Representative Behning,2023-01-19,[],IN,2023 +"Coauthored by Representatives McNamara, Jeter and Moseley",2023-01-12,[],IN,2023 +Authored by Representative VanNatter,2023-01-11,[],IN,2023 +Authored by Senator Messmer,2023-01-19,[],IN,2023 +Authored by Representative Soliday,2023-01-19,[],IN,2023 +Authored by Senators Becker and Leising,2023-01-09,[],IN,2023 +Authored by Senator Yoder,2023-01-12,[],IN,2023 +Authored by Senator Walker G,2023-01-19,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-01-30,[],IN,2023 +Authored by Senators Leising and Garten,2023-01-10,[],IN,2023 +Authored by Senator Doriot,2023-01-11,[],IN,2023 +Authored by Senator Taylor G,2023-01-31,[],IN,2023 +Authored by Senator Johnson,2023-01-11,[],IN,2023 +"Authored by Senators Garten, Taylor G, Bray",2023-01-31,[],IN,2023 +Authored by Senator Freeman,2023-01-19,[],IN,2023 +Coauthored by Representative O'Brien,2023-01-11,[],IN,2023 +Authored by Representative Speedy,2023-01-17,[],IN,2023 +Senate sponsor: Senator Ford Jon,2023-04-06,[],IN,2023 +Authored by Representative Karickhoff,2023-01-10,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Representative Morrison,2023-01-09,[],IN,2023 +Authored by Senator Taylor G,2023-04-20,[],IN,2023 +Coauthored by Representative Manning,2023-01-11,[],IN,2023 +"Senate sponsors: Senators Taylor G, Breaux, Melton",2023-02-06,[],IN,2023 +Authored by Senator Sandlin,2023-01-09,[],IN,2023 +Authored by Representative Karickhoff,2023-02-02,[],IN,2023 +Authored by Representative Pryor,2023-02-02,[],IN,2023 +Coauthored by Representative Goodrich,2023-01-19,[],IN,2023 +Authored by Senator Byrne,2023-01-23,[],IN,2023 +Authored by Representative Speedy,2023-01-17,[],IN,2023 +Authored by Representative Porter,2023-01-17,[],IN,2023 +Authored by Representative Vermilion,2023-01-09,[],IN,2023 +Authored by Senator Freeman,2023-01-11,[],IN,2023 +Coauthored by Representative Manning,2023-01-19,[],IN,2023 +"Senate sponsors: Senators Garten, Byrne, Perfect",2023-04-24,[],IN,2023 +Authored by Senator Freeman,2023-01-11,[],IN,2023 +Authored by Senator Bray,2023-04-24,[],IN,2023 +Authored by Senator Bray,2023-04-24,[],IN,2023 +Authored by Senator Bray,2023-04-24,[],IN,2023 +Authored by Representative Bartels,2023-01-19,[],IN,2023 +Authored by Representative Karickhoff,2023-01-10,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representative Teshka,2023-01-19,[],IN,2023 +"Coauthored by Senators Buchanan, Doriot, Messmer, Gaskill, Sandlin, Brown L, Johnson, Holdman, Deery, Bassler, Ford Jon, Byrne, Charbonneau, Niemeyer, Freeman, Leising, Alexander, Buck",2023-01-19,[],IN,2023 +"Coauthored by Representatives Ledbetter, Hamilton, Abbott",2023-01-19,[],IN,2023 +Authored by Senator Sandlin,2023-03-06,[],IN,2023 +Authored by Representative Sweet,2023-01-19,[],IN,2023 +Authored by Representative Smith V,2023-01-17,[],IN,2023 +Authored by Senator Young M,2023-01-09,[],IN,2023 +Coauthored by Representatives Lehman and Carbaugh,2023-01-12,[],IN,2023 +Authored by Representative Steuerwald,2023-03-30,[],IN,2023 +Authored by Representative Davis,2023-03-30,[],IN,2023 +"Coauthored by Representatives Frye R, Bartels, Morris",2023-01-11,[],IN,2023 +Authored by Representative Borders,2023-01-19,[],IN,2023 +Authored by Senator Bohacek,2023-01-09,[],IN,2023 +Authored by Senator Niemeyer,2023-01-09,[],IN,2023 +Authored by Representative Cherry,2023-01-09,[],IN,2023 +"Coauthored by Representatives Lindauer, Ledbetter, Lucas",2023-01-19,[],IN,2023 +Authored by Representative Rowray,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representative Bartels,2023-01-19,[],IN,2023 +Authored by Representative Sweet,2023-01-19,[],IN,2023 +Authored by Senator Leising,2023-01-19,[],IN,2023 +Authored by Representative Moseley,2023-01-17,[],IN,2023 +Authored by Senator Raatz,2023-01-19,[],IN,2023 +Authored by Senator Melton,2023-01-19,[],IN,2023 +Authored by Senator Melton,2023-01-19,[],IN,2023 +Authored by Senator Dernulc,2023-01-19,[],IN,2023 +Authored by Senator Gaskill,2023-01-19,[],IN,2023 +Coauthored by Representatives Shackleford and Schaibley,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representative Gore,2023-01-12,[],IN,2023 +Authored by Senator Rogers,2023-01-19,[],IN,2023 +Authored by Senator Melton,2023-01-19,[],IN,2023 +Authored by Senator Walker G,2023-01-19,[],IN,2023 +Authored by Senator Raatz,2023-01-19,[],IN,2023 +Authored by Senator Breaux,2023-01-19,[],IN,2023 +Authored by Senator Freeman,2023-01-19,[],IN,2023 +Authored by Senator Doriot,2023-01-19,[],IN,2023 +Authored by Senator Pol,2023-01-19,[],IN,2023 +Authored by Senator Pol,2023-01-19,[],IN,2023 +Coauthored by Representative Hamilton,2023-01-17,[],IN,2023 +Authored by Senator Melton,2023-01-19,[],IN,2023 +Authored by Senator Bray,2023-03-23,[],IN,2023 +Authored by Senators Niemeyer and Perfect,2023-01-19,[],IN,2023 +Authored by Senator Brown L,2023-01-19,[],IN,2023 +Authored by Senator Pol,2023-01-19,[],IN,2023 +Authored by Senator Melton,2023-01-19,[],IN,2023 +Authored by Senator Breaux,2023-01-19,[],IN,2023 +Authored by Senator Sandlin,2023-01-19,[],IN,2023 +Authored by Senator Zay,2023-01-19,[],IN,2023 +Authored by Representative Prescott,2023-01-17,[],IN,2023 +Authored by Representative Bauer M,2023-01-10,[],IN,2023 +"Authored by Senators Doriot, Rogers, Mishler",2023-03-28,[],IN,2023 +Coauthored by Representative Zent,2023-01-17,[],IN,2023 +Authored by Representative McNamara,2023-01-10,[],IN,2023 +Authored by Senator Ford J.D.,2023-04-19,[],IN,2023 +Authored by Representative Hostettler,2023-04-17,[],IN,2023 +Authored by Representative Andrade,2023-02-02,[],IN,2023 +Authored by Senator Buchanan,2023-01-11,[],IN,2023 +Authored by Representative Wesco,2023-01-17,[],IN,2023 +Authored by Senator Walker G,2023-03-28,[],IN,2023 +Authored by Representative Clere,2023-01-10,[],IN,2023 +Authored by Senator Sandlin,2023-01-09,[],IN,2023 +Coauthored by Representatives Porter and Cherry,2023-01-12,[],IN,2023 +Authored by Representative Lucas,2023-01-10,[],IN,2023 +Authored by Senator Leising,2023-01-09,[],IN,2023 +Authored by Senator Breaux,2023-03-30,[],IN,2023 +Senate sponsor: Senator Messmer,2023-03-30,[],IN,2023 +Coauthored by Representatives Behning and Karickhoff,2023-01-17,[],IN,2023 +"Coauthored by Representatives Karickhoff, May, Porter",2023-01-19,[],IN,2023 +Senate sponsor: Senator Crane,2023-03-09,[],IN,2023 +Authored by Representative Andrade,2023-02-02,[],IN,2023 +Authored by Senator Young M,2023-03-21,[],IN,2023 +Authored by Representative Jackson,2023-03-20,[],IN,2023 +Senate sponsor: Senator Deery,2023-02-28,[],IN,2023 +Authored by Senator Mishler,2023-01-12,[],IN,2023 +Authored by Senator Freeman,2023-01-12,[],IN,2023 +Senate sponsors: Senators Bray and Mishler,2023-04-17,[],IN,2023 +Authored by Senator Doriot,2023-01-09,[],IN,2023 +Authored by Senator Ford Jon,2023-01-11,[],IN,2023 +Senate sponsor: Senator Perfect,2023-04-11,[],IN,2023 +Authored by Representative Harris,2023-04-13,[],IN,2023 +Authored by Representative Slager,2023-01-11,[],IN,2023 +Authored by Senator Koch,2023-04-10,[],IN,2023 +Authored by Representative Huston,2023-01-09,[],IN,2023 +Authored by Representative Pryor,2023-04-18,[],IN,2023 +Authored by Senator Bassler,2023-04-13,[],IN,2023 +Authored by Representative Bauer M,2023-02-14,[],IN,2023 +Authored by Senator Walker K,2023-01-12,[],IN,2023 +Coauthored by Representatives Clere and Greene,2023-01-17,[],IN,2023 +Authored by Representative McGuire,2023-04-12,[],IN,2023 +Authored by Senator Baldwin,2023-01-19,[],IN,2023 +Authored by Senator Crider,2023-01-09,[],IN,2023 +"Authored by Senators Garten, Freeman, Ford Jon",2023-04-06,[],IN,2023 +Authored by Senators Sandlin and Freeman,2023-01-19,[],IN,2023 +"Authored by Senators Garten, Koch, Taylor G",2023-01-19,[],IN,2023 +Coauthored by Representatives Campbell and Bauer M,2023-01-10,[],IN,2023 +Authored by Representative Moed,2023-01-09,[],IN,2023 +Authored by Representative Heine,2023-01-09,[],IN,2023 +Authored by Representative Errington,2023-01-10,[],IN,2023 +Coauthored by Representatives Judy and Prescott,2023-01-09,[],IN,2023 +Coauthored by Representative Lauer,2023-01-11,[],IN,2023 +Authored by Senator Breaux,2023-01-11,[],IN,2023 +Authored by Representative O'Brien,2023-01-19,[],IN,2023 +Coauthored by Representatives Pressel and McGuire,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Senator Alexander,2023-01-19,[],IN,2023 +Authored by Representative Borders,2023-01-19,[],IN,2023 +Authored by Senator Qaddoura,2023-01-19,[],IN,2023 +Authored by Senator Taylor G,2023-01-19,[],IN,2023 +Authored by Representative Manning,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Soliday,2023-01-19,[],IN,2023 +Coauthored by Representative Hamilton,2023-01-12,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representatives Behning and Davis,2023-01-19,[],IN,2023 +Authored by Senator Qaddoura,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Frye R,2023-01-09,[],IN,2023 +Authored by Senator Raatz,2023-01-19,[],IN,2023 +Authored by Senator Pol,2023-01-19,[],IN,2023 +Coauthored by Representative Speedy,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Baird,2023-01-19,[],IN,2023 +Authored by Senator Byrne,2023-01-19,[],IN,2023 +Authored by Representative Slager,2023-01-19,[],IN,2023 +Authored by Representative Lauer,2023-01-10,[],IN,2023 +Authored by Senator Busch,2023-01-19,[],IN,2023 +Authored by Representative Rowray,2023-01-19,[],IN,2023 +Authored by Representative Rowray,2023-01-19,[],IN,2023 +"Coauthored by Representatives Sweet, Lucas, Haggard",2023-01-19,[],IN,2023 +Authored by Representative Bartels,2023-01-19,[],IN,2023 +Coauthored by Representatives Goodrich and Teshka,2023-01-19,[],IN,2023 +Authored by Representative Soliday,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Senator Pol,2023-01-19,[],IN,2023 +Authored by Senator Gaskill,2023-01-19,[],IN,2023 +Authored by Senator Young M,2023-01-19,[],IN,2023 +"Coauthored by Representatives Vermilion, Engleman, Summers",2023-01-19,[],IN,2023 +"Coauthored by Representatives Clere, Negele, Garcia Wilburn",2023-01-19,[],IN,2023 +"Coauthored by Representatives Zent, Vermilion, Barrett",2023-01-19,[],IN,2023 +Authored by Representative Bartlett,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Senators Rogers and Buchanan,2023-01-12,[],IN,2023 +Authored by Representative Harris,2023-01-19,[],IN,2023 +Authored by Representative Dvorak,2023-01-19,[],IN,2023 +Coauthored by Representative Hamilton,2023-01-19,[],IN,2023 +"Coauthored by Representatives Cherry, Goodrich, DeLaney",2023-01-19,[],IN,2023 +Coauthored by Representatives Andrade and Fleming,2023-01-19,[],IN,2023 +"Coauthored by Representatives Goodrich, Moseley, Davis",2023-01-19,[],IN,2023 +Authored by Representative Manning,2023-01-19,[],IN,2023 +Authored by Representative Borders,2023-01-19,[],IN,2023 +Authored by Senator Breaux,2023-01-19,[],IN,2023 +Authored by Representative Soliday,2023-01-17,[],IN,2023 +Coauthored by Representative Engleman,2023-01-09,[],IN,2023 +Coauthored by Representatives Snow and Judy,2023-01-19,[],IN,2023 +"Coauthored by Representatives Meltzer, Teshka, Bauer M",2023-01-19,[],IN,2023 +Authored by Representative King,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Summers,2023-01-19,[],IN,2023 +Authored by Representative Prescott,2023-01-19,[],IN,2023 +Authored by Representative McNamara,2023-01-10,[],IN,2023 +Authored by Representative O'Brien,2023-01-19,[],IN,2023 +"Coauthored by Representatives Vermilion, Bartels, Moed",2023-01-19,[],IN,2023 +Authored by Senator Young M,2023-01-19,[],IN,2023 +Authored by Representative Dvorak,2023-01-19,[],IN,2023 +Authored by Representative Manning,2023-01-19,[],IN,2023 +Authored by Representative Borders,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Borders,2023-01-19,[],IN,2023 +Authored by Representative Zent,2023-01-10,[],IN,2023 +Authored by Senator Pol,2023-01-19,[],IN,2023 +Authored by Representative McGuire,2023-01-11,[],IN,2023 +Coauthored by Representative Aylesworth,2023-01-19,[],IN,2023 +Authored by Senators Charbonneau and Pol,2023-01-17,[],IN,2023 +Authored by Senator Walker G,2023-01-10,[],IN,2023 +Authored by Senators Pol and Freeman,2023-01-31,[],IN,2023 +Coauthored by Representatives Zent and Pressel,2023-01-12,[],IN,2023 +Authored by Senator Busch,2023-01-19,[],IN,2023 +Coauthored by Representative Gore,2023-01-10,[],IN,2023 +Coauthored by Representative Schaibley,2023-01-19,[],IN,2023 +Authored by Senator Taylor G,2023-01-12,[],IN,2023 +Authored by Representative Cash,2023-01-09,[],IN,2023 +Authored by Senator Hunley,2023-01-10,[],IN,2023 +"Coauthored by Representatives Mayfield, Carbaugh, Porter",2023-01-19,[],IN,2023 +Authored by Senator Ford J.D.,2023-01-10,[],IN,2023 +Coauthored by Representatives Manning and Shackleford,2023-01-12,[],IN,2023 +Authored by Representative Pressel,2023-01-17,[],IN,2023 +Senate sponsor: Senator Yoder,2023-01-31,[],IN,2023 +Authored by Representative VanNatter,2023-01-11,[],IN,2023 +Senate sponsor: Senator Walker K,2023-03-23,[],IN,2023 +Authored by Representative Jeter,2023-01-09,[],IN,2023 +Authored by Senator Freeman,2023-03-20,[],IN,2023 +Authored by Representative Gore,2023-01-10,[],IN,2023 +Authored by Representative Morris,2023-01-19,[],IN,2023 +Authored by Representative Borders,2023-01-19,[],IN,2023 +Senate sponsors: Senators Garten and Byrne,2023-04-24,[],IN,2023 +Authored by Representative Zent,2023-01-10,[],IN,2023 +Authored by Representative Gore,2023-01-10,[],IN,2023 +Authored by Representative Gore,2023-01-10,[],IN,2023 +Authored by Representative Zent,2023-01-10,[],IN,2023 +Coauthored by Representatives Jeter and Negele,2023-01-12,[],IN,2023 +Coauthored by Representative Miller D,2023-01-10,[],IN,2023 +Authored by Representative Frye R,2023-04-24,[],IN,2023 +Authored by Representative Haggard,2023-04-24,[],IN,2023 +Authored by Representative Greene,2023-04-24,[],IN,2023 +Authored by Representative Moed,2023-01-09,[],IN,2023 +Authored by Representative Barrett,2023-04-24,[],IN,2023 +Authored by Representative Genda,2023-04-24,[],IN,2023 +Authored by Representative Pack,2023-01-11,[],IN,2023 +"Senate sponsors: Senators Garten, Byrne, Perfect",2023-04-24,[],IN,2023 +Authored by Representative Snow,2023-01-17,[],IN,2023 +Authored by Representative Smith V,2023-01-17,[],IN,2023 +"Authored by Senators Niezgodski, Mishler, Rogers",2023-02-13,[],IN,2023 +Authored by Senator Holdman,2023-04-24,[],IN,2023 +Authored by Senator Niemeyer,2023-01-11,[],IN,2023 +Authored by Senators Busch and Walker K,2023-04-24,[],IN,2023 +Authored by Senator Holdman,2023-01-11,[],IN,2023 +Authored by Representative Wesco,2023-01-12,[],IN,2023 +Authored by Senator Sandlin,2023-01-09,[],IN,2023 +Authored by Representative Pierce K,2023-02-21,[],IN,2023 +Authored by Senator Gaskill,2023-01-23,[],IN,2023 +Authored by Senator Brown L,2023-01-09,[],IN,2023 +"Coauthored by Representatives Fleming, Campbell, DeLaney",2023-01-17,[],IN,2023 +Authored by Representative Baird,2023-01-19,[],IN,2023 +Coauthored by Representatives Cherry and Judy,2023-01-17,[],IN,2023 +Authored by Senators Rogers and Donato,2023-01-17,[],IN,2023 +Authored by Representative Hatfield,2023-01-11,[],IN,2023 +Authored by Senator Rogers,2023-01-19,[],IN,2023 +Authored by Senator Baldwin,2023-01-09,[],IN,2023 +Coauthored by Representative Steuerwald,2023-01-17,[],IN,2023 +Authored by Senator Freeman,2023-01-11,[],IN,2023 +Authored by Representative Smaltz,2023-01-17,[],IN,2023 +Authored by Senator Brown L,2023-01-12,[],IN,2023 +Authored by Representative Miller D,2023-01-17,[],IN,2023 +Authored by Representative Bartlett,2023-01-11,[],IN,2023 +Authored by Representative Lindauer,2023-01-17,[],IN,2023 +Authored by Representative Torr,2023-01-09,[],IN,2023 +Coauthored by Representative Bartels,2023-01-19,[],IN,2023 +Authored by Senator Crider,2023-01-09,[],IN,2023 +Authored by Representative Vermilion,2023-01-11,[],IN,2023 +Authored by Senator Qaddoura,2023-01-10,[],IN,2023 +"Coauthored by Representatives Bartels, Jeter, Torr",2023-01-17,[],IN,2023 +Authored by Representative Karickhoff,2023-01-10,[],IN,2023 +Authored by Senator Ford J.D.,2023-01-10,[],IN,2023 +Authored by Representative Jeter,2023-01-09,[],IN,2023 +"Coauthored by Representatives Clere, Pierce K, Morris",2023-01-19,[],IN,2023 +Authored by Representative Mayfield,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Senator Ford J.D.,2023-02-20,[],IN,2023 +Senate sponsor: Senator Bray,2023-04-17,[],IN,2023 +Coauthored by Representative Davis,2023-01-17,[],IN,2023 +Senate sponsor: Senator Walker K,2023-04-17,[],IN,2023 +Authored by Senator Niemeyer,2023-01-11,[],IN,2023 +Authored by Representative Clere,2023-04-25,[],IN,2023 +"Coauthored by Representatives VanNatter, Torr, Hatfield",2023-01-19,[],IN,2023 +Authored by Senator Yoder,2023-01-11,[],IN,2023 +Authored by Senator Johnson,2023-01-11,[],IN,2023 +Authored by Senator Sandlin,2023-01-11,[],IN,2023 +Authored by Senator Freeman,2023-01-11,[],IN,2023 +Authored by Representative Culp,2023-01-19,[],IN,2023 +Authored by Representative Meltzer,2023-01-11,[],IN,2023 +Authored by Senator Ford Jon,2023-02-09,[],IN,2023 +Authored by Senator Doriot,2023-01-11,[],IN,2023 +Authored by Senator Yoder,2023-01-11,[],IN,2023 +Authored by Senator Freeman,2023-01-11,[],IN,2023 +Authored by Senator Alting,2023-01-11,[],IN,2023 +Authored by Senator Doriot,2023-01-11,[],IN,2023 +Authored by Representative Frye R,2023-01-09,[],IN,2023 +Authored by Senator Freeman,2023-01-19,[],IN,2023 +Authored by Senator Yoder,2023-01-11,[],IN,2023 +Authored by Senator Yoder,2023-01-11,[],IN,2023 +Authored by Senator Sandlin,2023-01-11,[],IN,2023 +Authored by Senator Ford Jon,2023-01-11,[],IN,2023 +Authored by Senator Alting,2023-01-11,[],IN,2023 +Authored by Senators Brown L and Rogers,2023-01-09,[],IN,2023 +Authored by Representative Frye R,2023-01-09,[],IN,2023 +Authored by Senators Leising and Becker,2023-01-09,[],IN,2023 +Authored by Senator Freeman,2023-01-11,[],IN,2023 +Coauthored by Representative Barrett,2023-01-17,[],IN,2023 +Authored by Representative Ledbetter,2023-03-28,[],IN,2023 +Authored by Representative Shackleford,2023-03-23,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-03-23,[],IN,2023 +Authored by Senator Hunley,2023-01-10,[],IN,2023 +Authored by Senator Tomes,2023-01-23,[],IN,2023 +Authored by Senator Holdman,2023-01-23,[],IN,2023 +Authored by Senator Walker K,2023-01-23,[],IN,2023 +Authored by Representative Clere,2023-01-10,[],IN,2023 +Authored by Senator Alting,2023-01-17,[],IN,2023 +Authored by Senator Pol,2023-01-17,[],IN,2023 +Authored by Senators Ford Jon and Young M,2023-02-16,[],IN,2023 +Authored by Senator Alting,2023-01-17,[],IN,2023 +Authored by Senator Rogers,2023-01-17,[],IN,2023 +Coauthored by Representatives Barrett and Fleming,2023-01-09,[],IN,2023 +"Coauthored by Representatives Snow, Boy, DeLaney",2023-01-09,[],IN,2023 +Coauthored by Representative Speedy,2023-01-17,[],IN,2023 +Authored by Senator Holdman,2023-01-19,[],IN,2023 +Authored by Representative Frye R,2023-03-13,[],IN,2023 +Authored by Senator Walker K,2023-03-16,[],IN,2023 +Authored by Representative VanNatter,2023-01-11,[],IN,2023 +Coauthored by Representative Aylesworth,2023-01-10,[],IN,2023 +Authored by Representative Karickhoff,2023-01-10,[],IN,2023 +Referred to the Senate,2022-11-22,['referral'],IN,2023 +Authored by Senator Koch,2023-01-09,[],IN,2023 +Authored by Senator Buck,2023-01-10,[],IN,2023 +Senate sponsor: Senator Taylor G,2023-04-17,[],IN,2023 +Authored by Representative Barrett,2023-01-12,[],IN,2023 +Coauthored by Representative Errington,2023-01-17,[],IN,2023 +"Authored by Senators Becker, Raatz, Leising",2023-01-12,[],IN,2023 +Authored by Representative Harris,2023-01-17,[],IN,2023 +Authored by Senator Hunley,2023-01-10,[],IN,2023 +"Authored by Senators Doriot, Niezgodski, Rogers",2023-01-09,[],IN,2023 +Authored by Representative Hatfield,2023-01-11,[],IN,2023 +Authored by Representative Schaibley,2023-03-13,[],IN,2023 +Authored by Senator Melton,2023-01-19,[],IN,2023 +Authored by Senator Walker K,2023-01-12,[],IN,2023 +Authored by Representative Lauer,2023-01-11,[],IN,2023 +Authored by Senator Niemeyer,2023-01-09,[],IN,2023 +Authored by Senator Breaux,2023-01-10,[],IN,2023 +Authored by Senator Walker K,2023-01-09,[],IN,2023 +Authored by Senator Baldwin,2023-01-12,[],IN,2023 +Authored by Representative Frye R,2023-03-13,[],IN,2023 +Senate sponsor: Senator Raatz,2023-04-03,[],IN,2023 +Authored by Senator Ford Jon,2023-01-19,[],IN,2023 +Authored by Senator Koch,2023-01-09,[],IN,2023 +Authored by Senator Sandlin,2023-01-09,[],IN,2023 +Authored by Representative Steuerwald,2023-01-17,[],IN,2023 +Authored by Senator Niezgodski,2023-01-09,[],IN,2023 +Authored by Senator Messmer,2023-01-12,[],IN,2023 +Authored by Representative Smith V,2023-01-17,[],IN,2023 +Authored by Senator Koch,2023-01-09,[],IN,2023 +Authored by Representative Clere,2023-01-10,[],IN,2023 +Authored by Senator Breaux,2023-01-10,[],IN,2023 +Authored by Representative Heine,2023-01-19,[],IN,2023 +Authored by Senator Deery,2023-01-10,[],IN,2023 +Authored by Senator Breaux,2023-01-10,[],IN,2023 +Authored by Senator Ford J.D.,2023-01-10,[],IN,2023 +Authored by Representative Ledbetter,2023-01-17,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Niemeyer,2023-01-09,[],IN,2023 +Authored by Senator Perfect,2023-01-09,[],IN,2023 +Authored by Senator Ford J.D.,2023-01-09,[],IN,2023 +Authored by Senator Bohacek,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Ford J.D.,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Young M,2023-01-09,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Bohacek,2023-01-09,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Brown L,2023-01-09,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Rogers,2023-01-09,[],IN,2023 +Authored by Senator Tomes,2023-01-09,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-01-09,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-01-09,[],IN,2023 +Authored by Senator Niezgodski,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-01-09,[],IN,2023 +Authored by Senator Niemeyer,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Ford J.D.,2023-01-09,[],IN,2023 +Authored by Senator Bohacek,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Bohacek,2023-01-09,[],IN,2023 +Authored by Senator Bohacek,2023-01-09,[],IN,2023 +Authored by Senator Doriot,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Perfect,2023-01-09,[],IN,2023 +Authored by Representative Carbaugh,2023-01-17,[],IN,2023 +Senate sponsor: Senator Taylor G,2023-03-20,[],IN,2023 +Authored by Senator Zay,2023-01-10,[],IN,2023 +Authored by Senator Bray,2023-03-09,[],IN,2023 +Authored by Senator Bohacek,2023-01-09,[],IN,2023 +Authored by Representative Cherry,2023-01-17,[],IN,2023 +Authored by Senators Ford J.D. and Baldwin,2023-03-20,[],IN,2023 +Authored by Senator Bohacek,2023-03-21,[],IN,2023 +Authored by Senator Ford J.D.,2023-01-10,[],IN,2023 +Authored by Senator Ford J.D.,2023-01-10,[],IN,2023 +Authored by Senator Breaux,2023-01-10,[],IN,2023 +Authored by Senator Gaskill,2023-01-09,[],IN,2023 +Authored by Senator Holdman,2023-01-12,[],IN,2023 +Authored by Senator Alexander,2023-01-10,[],IN,2023 +Authored by Senator Yoder,2023-01-10,[],IN,2023 +Authored by Senator Hunley,2023-01-10,[],IN,2023 +Authored by Senator Rogers,2023-01-12,[],IN,2023 +Authored by Senator Qaddoura,2023-01-10,[],IN,2023 +Authored by Representative Summers,2023-03-27,[],IN,2023 +Authored by Senator Buck,2023-01-10,[],IN,2023 +Authored by Senator Hunley,2023-01-10,[],IN,2023 +Authored by Senator Doriot,2023-01-10,[],IN,2023 +Authored by Representative Schaibley,2023-01-10,[],IN,2023 +Authored by Senator Hunley,2023-01-10,[],IN,2023 +Authored by Senator Walker G,2023-01-10,[],IN,2023 +Authored by Senator Breaux,2023-01-10,[],IN,2023 +Coauthored by Representative Porter,2023-01-09,[],IN,2023 +Authored by Senator Buck,2023-01-10,[],IN,2023 +Authored by Representative Lauer,2023-01-10,[],IN,2023 +Authored by Senator Charbonneau,2023-01-10,[],IN,2023 +Authored by Senator Bassler,2023-01-19,[],IN,2023 +Authored by Representative Pressel,2023-01-09,[],IN,2023 +Coauthored by Representatives Bartels and Jackson,2023-01-19,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Charbonneau,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Randolph Lonnie M,2023-01-09,[],IN,2023 +Authored by Senator Taylor G,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Bohacek,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Bray,2023-01-09,[],IN,2023 +Authored by Senator Bohacek,2023-01-09,[],IN,2023 +Authored by Representative Frye R,2023-03-13,[],IN,2023 +Authored by Representative Behning,2023-03-13,[],IN,2023 +Authored by Senator Johnson,2023-01-11,[],IN,2023 +Authored by Senator Sandlin,2023-01-09,[],IN,2023 +"Authored by Senators Johnson, Baldwin, Glick",2023-03-14,[],IN,2023 +Coauthored by Representative Teshka,2023-01-12,[],IN,2023 +Authored by Senator Freeman,2023-03-14,[],IN,2023 +Authored by Senator Holdman,2023-01-12,[],IN,2023 +Authored by Representative Schaibley,2023-01-10,[],IN,2023 +Authored by Senator Alexander,2023-01-09,[],IN,2023 +Authored by Senator Busch,2023-01-09,[],IN,2023 +Coauthored by Representative Clere,2023-01-10,[],IN,2023 +Authored by Senators Ford J.D. and Buchanan,2023-02-09,[],IN,2023 +Authored by Senator Charbonneau,2023-03-09,[],IN,2023 +Authored by Senator Messmer,2023-03-13,[],IN,2023 +Authored by Representative Klinker,2023-01-10,[],IN,2023 +Coauthored by Representatives Clere and Vermilion,2023-01-10,[],IN,2023 +Coauthored by Representatives Heaton and May,2023-01-10,[],IN,2023 +"Coauthored by Representatives DeVon, Teshka, Judy",2023-01-10,[],IN,2023 +Authored by Representative Rowray,2023-01-19,[],IN,2023 +Authored by Representative Engleman,2023-01-09,[],IN,2023 +Authored by Representative Prescott,2023-01-10,[],IN,2023 +Coauthored by Representative Harris,2023-01-11,[],IN,2023 +Authored by Representative Lauer,2023-01-09,[],IN,2023 +Authored by Representative Summers,2023-01-11,[],IN,2023 +Coauthored by Representative Meltzer,2023-01-09,[],IN,2023 +Authored by Representative Pryor,2023-01-09,[],IN,2023 +Authored by Representative Summers,2023-01-11,[],IN,2023 +Authored by Representative Pryor,2023-01-09,[],IN,2023 +Authored by Senator Leising,2023-01-09,[],IN,2023 +Authored by Representative Cash,2023-01-10,[],IN,2023 +Authored by Representative Olthoff,2023-01-09,[],IN,2023 +Authored by Representative Moed,2023-01-09,[],IN,2023 +Authored by Representative Pierce,2023-01-09,[],IN,2023 +Authored by Representative Porter,2023-01-09,[],IN,2023 +Authored by Representative Morrison,2023-01-09,[],IN,2023 +Authored by Representative Olthoff,2023-01-09,[],IN,2023 +Coauthored by Representative Cherry,2023-01-09,[],IN,2023 +Authored by Representative Shackleford,2023-01-09,[],IN,2023 +Authored by Representative Heine,2023-01-09,[],IN,2023 +Coauthored by Representative Manning,2023-01-09,[],IN,2023 +Coauthored by Representative Cherry,2023-01-17,[],IN,2023 +Authored by Representative Lauer,2023-01-10,[],IN,2023 +Authored by Representative Abbott,2023-01-10,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representatives Barrett and Lehman,2023-03-13,[],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Ledbetter,2023-04-06,[],IN,2023 +Authored by Representative Gore,2023-01-17,[],IN,2023 +Authored by Representative Lucas,2023-01-11,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Bartels,2023-01-09,[],IN,2023 +First reading: adopted voice vote,2023-03-23,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Financial Institutions,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Behning,2023-01-19,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Cherry,2023-04-17,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-13,"['passage', 'reading-1']",IN,2023 +Authored by Representative Goodrich,2023-01-11,[],IN,2023 +First reading: referred to Committee on Local Government,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Abbott,2023-01-11,[],IN,2023 +First reading: referred to Committee on Public Policy,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Agriculture,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative May,2023-01-19,[],IN,2023 +Authored by Representative Bauer M,2023-01-10,[],IN,2023 +Authored by Representative Garcia Wilburn,2023-01-12,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Davis,2023-01-17,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Judy,2023-01-11,[],IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"Coauthored by Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Brown L, Buchanan, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Johnson, Koch, Leising, Messmer, Mishler, Niemeyer, Raatz, Rogers, Walker K, Young M, Zay",2023-04-11,[],IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Insurance,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-27,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Davis,2023-01-19,[],IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Lyness,2023-04-11,[],IN,2023 +Authored by Representative Cherry,2023-01-09,[],IN,2023 +Authored by Representative Jackson,2023-01-10,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Lehman,2023-04-03,[],IN,2023 +First reading: referred to Committee on Education,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-13,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Lucas,2023-01-17,[],IN,2023 +Authored by Representative Porter,2023-04-17,[],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Abbott,2023-01-10,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Garcia Wilburn,2023-01-12,[],IN,2023 +Authored by Representative Schaibley,2023-01-11,[],IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative O'Brien,2023-01-19,[],IN,2023 +First reading: adopted voice vote,2023-04-10,"['passage', 'reading-1']",IN,2023 +Authored by Representative Abbott,2023-01-11,[],IN,2023 +First reading: adopted voice vote,2023-01-31,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Johnson,2023-01-17,[],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representative GiaQuinta,2023-01-09,[],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Wesco,2023-01-10,[],IN,2023 +First reading: adopted voice vote,2023-04-18,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Jackson,2023-01-10,[],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Lehman,2023-01-12,[],IN,2023 +First reading: referred to Committee on Appropriations,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Soliday,2023-01-17,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-28,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Andrade,2023-01-17,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +"Coauthored by Senators Yoder, Ford J.D., Breaux, Hunley, Melton, Niezgodski, Pol, Qaddoura, Randolph Lonnie M",2023-01-31,[],IN,2023 +Authored by Representative Gore,2023-01-17,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Andrade,2023-01-17,[],IN,2023 +First reading: adopted voice vote,2023-02-14,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Payne,2023-01-19,[],IN,2023 +Authored by Representative Hall,2023-01-10,[],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representatives Miller D and Bartels,2023-01-17,[],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-13,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Prescott,2023-01-17,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-16,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representative Gore,2023-04-12,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to the Committee on Roads and Transportation voice vote,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Mayfield,2023-04-17,[],IN,2023 +First reading: referred to Committee on Local Government,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative GiaQuinta,2023-01-17,[],IN,2023 +First reading: adopted voice vote,2023-02-20,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Culp,2023-01-17,[],IN,2023 +Authored by Representative Fleming,2023-01-10,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Agriculture and Rural Development,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Boy,2023-01-17,[],IN,2023 +Authored by Representative Garcia Wilburn,2023-04-17,[],IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Jeter,2023-01-17,[],IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Coauthored by Representatives Engleman, Fleming and Payne Z",2023-04-25,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Teshka,2023-01-17,[],IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Judy,2023-01-19,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Fleming,2023-01-19,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Olthoff,2023-01-17,[],IN,2023 +Authored by Representative Lucas,2023-01-17,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative GiaQuinta,2023-01-17,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Coauthored by Representatives Jeter, DeLaney, Lucas, Haggard, Bartels, Judy, Lindauer, Soliday, Pack, Zent, Pfaff, Cherry, Thompson, Jordan, Wesco, Speedy, Greene, Lauer, Rowray, Patterson, Barrett, Slager, Snow, Sweet, Baird, May, Teshka, O'Brien, Miller D, Goodrich, Payne, Criswell, Pryor, Pierce M, Manning, McGuire, Morris, Abbott, Garcia Wilburn, Hatcher, Olthoff, Culp, Gore, Jackson, Boy, Davis, Engleman, Frye R, Aylesworth, Clere, Cash, Fleming, Errington, Hall, Hamilton, Steuerwald, Behning",2023-04-27,[],IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Snow,2023-01-12,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Errington,2023-01-10,[],IN,2023 +Authored by Representative McNamara,2023-01-10,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-09,"['passage', 'reading-1']",IN,2023 +Authored by Representative Barrett,2023-01-17,[],IN,2023 +First reading: referred to Committee on Elections,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Snow,2023-01-09,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Agriculture and Rural Development,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Thompson,2023-01-17,[],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Lehman,2023-01-09,[],IN,2023 +First reading: adopted voice vote,2023-01-30,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Teshka,2023-01-09,[],IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Coauthored by Representatives Aylesworth, Abbott, Baird, Barrett, Bartels, Behning, Borders, Boy, Carbaugh, Cash, Cherry, Clere, Culp, Engleman, Errington, Fleming, Frye R, Goodrich, Gore, Hamilton, Harris, Heaton, Huston, Jackson, Jordan, Judy, Karickhoff, Klinker, Ledbetter, Lehman, Lindauer, Lucas, Lyness, Manning, May, Mayfield, McGuire, McNamara, Miller D, Morris, Morrison, Negele, Olthoff, Pack, Patterson, Pierce K, Prescott, Pressel, Slager, Smaltz, Snow, Soliday, Speedy, Steuerwald, Teshka, Thompson, Torr, VanNatter, Vermilion, Wesco, Zent",2023-03-13,[],IN,2023 +Authored by Representative Meltzer,2023-01-11,[],IN,2023 +"Coauthored by Representatives Greene, Haggard, Mayfield",2023-03-30,[],IN,2023 +First reading: referred to Committee on Education,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"Coauthored by Senators Busch, Bray, Taylor G, Baldwin",2023-04-06,[],IN,2023 +First reading: referred to Committee on Appropriations,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Gore,2023-01-17,[],IN,2023 +First reading: referred to Committee on Local Government,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Financial Institutions,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Behning,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Utilities,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Steuerwald,2023-01-12,[],IN,2023 +First reading: adopted voice vote,2023-01-19,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Utilities,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative O'Brien,2023-01-19,[],IN,2023 +First reading: referred to Committee on Public Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-01-23,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Garcia Wilburn,2023-01-12,[],IN,2023 +Authored by Representative Clere,2023-04-24,[],IN,2023 +First reading: referred to Committee on Insurance and Financial Institutions,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Goodrich,2023-01-19,[],IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Teshka,2023-01-09,[],IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Thompson,2023-01-17,[],IN,2023 +Authored by Representative Porter,2023-01-19,[],IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representative Steuerwald,2023-03-13,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Insurance,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Lehman,2023-01-09,[],IN,2023 +First reading: adopted voice vote,2023-01-23,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Agriculture and Rural Development,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Agriculture,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Payne,2023-01-19,[],IN,2023 +First reading: referred to Committee on Agriculture,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Behning,2023-01-19,[],IN,2023 +First reading: referred to Committee on Public Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representative Klinker,2023-03-13,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Insurance and Financial Institutions,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-01-19,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Fleming,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Hamilton,2023-01-19,[],IN,2023 +Authored by Representative Lauer,2023-01-09,[],IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Fleming,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Dvorak,2023-01-19,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted standing vote,2023-03-28,"['passage', 'reading-1']",IN,2023 +Authored by Representative Judy,2023-01-19,[],IN,2023 +Authored by Representative Bartels,2023-01-09,[],IN,2023 +Authored by Representative Hall,2023-01-11,[],IN,2023 +Authored by Representative Pfaff,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Bartels,2023-01-19,[],IN,2023 +Authored by Representative Fleming,2023-01-19,[],IN,2023 +First reading: referred to Committee on Appropriations,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Harris,2023-01-19,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-16,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-01-23,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Insurance and Financial Institutions,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Pressel,2023-01-09,[],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Morris,2023-01-19,[],IN,2023 +Coauthored by Senators Garten and Busch,2023-03-14,[],IN,2023 +Senate sponsors: Senators Bray and Taylor G,2022-11-22,[],IN,2023 +Authored by Representative Payne,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +"Coauthored by Senators Taylor G, Yoder, Breaux, Hunley, Melton, Niezgodski, Pol, Qaddoura, Randolph Lonnie M",2023-04-19,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representative Pressel,2023-01-10,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-17,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Judy,2023-01-19,[],IN,2023 +First reading: adopted voice vote,2023-02-02,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-14,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Agriculture,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to the Committee on Roads and Transportation voice vote,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and The Military,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Insurance and Financial Institutions,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Culp,2023-01-19,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Andrade,2023-01-17,[],IN,2023 +First reading: referred to Committee on Elections,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Aylesworth,2023-01-19,[],IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-27,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-03-28,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Miller K,2023-01-10,[],IN,2023 +First reading: referred to Committee on Local Government,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative McGuire,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-23,"['passage', 'reading-1']",IN,2023 +Authored by Representative Payne,2023-01-19,[],IN,2023 +"Coauthored by Senators Alting, Breaux, Ford J.D., Hunley, Melton, Niezgodski, Pol, Qaddoura, Randolph Lonnie M, Yoder",2023-01-12,[],IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-13,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-09,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Greene,2023-01-19,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-23,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Hamilton,2023-01-09,[],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-23,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Garcia Wilburn,2023-01-12,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +"Coauthored by Representatives Clere, Negele, Vermilion",2023-01-10,[],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"Coauthored by Senators Taylor G, Yoder, Ford J.D., Qaddoura, Melton, Niezgodski, Hunley, Randolph Lonnie M, Breaux",2023-01-31,[],IN,2023 +Authored by Representative Thompson,2023-01-12,[],IN,2023 +First reading: referred to Committee on Public Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Utilities,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Campbell,2023-01-31,[],IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Snow,2023-01-19,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Garcia Wilburn,2023-03-23,[],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Insurance and Financial Institutions,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Agriculture,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-20,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"Coauthored by Senators Byrne, Donato, Doriot, Gaskill, Buck, Ford Jon, Freeman, Raatz, Zay, Walker G, Messmer, Sandlin, Rogers, Tomes, Niemeyer, Buchanan, Alexander",2023-01-19,[],IN,2023 +"Coauthored by Representatives Harris, Bartlett, Hatcher, Jackson, Pack, Porter, Shackleford, Smith V, Summers",2023-02-02,[],IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Clere,2023-04-24,[],IN,2023 +Authored by Representative Bartels,2023-01-10,[],IN,2023 +Authored by Representative Pressel,2023-01-10,[],IN,2023 +First reading: adopted voice vote,2023-02-02,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Boy,2023-01-17,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Goodrich,2023-01-12,[],IN,2023 +First reading: adopted voice vote,2023-03-30,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Soliday,2023-01-12,[],IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Teshka,2023-01-17,[],IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-03-09,"['passage', 'reading-1']",IN,2023 +"Coauthored by Representatives Aylesworth, Baird, Bartels, Carbaugh, Cash, Cherry, Davis, Engleman, Frye R, Goodrich, Gore, Haggard, Hall, Jordan, Judy, King, Lauer, Lehman, Lucas, Manning, Mayfield, McGuire, Meltzer, Morris, Negele, Patterson, Pierce K, Prescott, Rowray, Schaibley, Slager, Smaltz, Snow, Soliday, Speedy, Steuerwald, Sweet, Teshka, Thompson, Vermilion, Wesco",2023-04-24,[],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Bartels,2023-03-30,[],IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"Coauthored by Representatives Haggard, Greene, Mayfield",2023-04-12,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +Authored by Representative Ledbetter,2023-01-17,[],IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +Authored by Representative Summers,2023-03-20,[],IN,2023 +Authored by Representative Clere,2023-04-24,[],IN,2023 +Cosponsors: Senators Randolph and Hunley,2023-02-06,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Fleming,2023-01-10,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Miller D,2023-01-12,[],IN,2023 +First reading: adopted voice vote,2023-04-18,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Davis,2023-01-10,[],IN,2023 +First reading: referred to Committee on Insurance and Financial Institutions,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Goodrich,2023-01-17,[],IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-13,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Senator Baldwin,2023-04-24,[],IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-09,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +"Coauthored by Senators Yoder, Ford J.D., Breaux, Hunley, Melton, Niezgodski, Pol, Qaddoura, Randolph Lonnie M",2023-04-20,[],IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Baird,2023-03-09,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-06,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-21,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-03-13,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-23,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-02,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-21,"['passage', 'reading-1']",IN,2023 +Authored by Representative Mayfield,2023-01-17,[],IN,2023 +Authored by Representative May,2023-01-12,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-20,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Pfaff,2023-01-17,[],IN,2023 +Authored by Representative Baird,2023-01-19,[],IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Ledbetter,2023-01-17,[],IN,2023 +First reading: referred to Committee on Elections,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +"Authored by Senators Rogers, Raatz, Donato",2023-01-19,[],IN,2023 +"Coauthored by Representatives Bartlett, DeLaney, Harris, Hatcher, Pack, Porter, Pryor, Shackleford, Smith V",2023-03-20,[],IN,2023 +First reading: adopted voice vote,2023-03-21,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Insurance,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Miller D,2023-01-12,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative McNamara,2023-01-17,[],IN,2023 +First reading: referred to Committee on Local Government,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representative Hamilton,2023-03-30,[],IN,2023 +Authored by Representative Mayfield,2023-01-17,[],IN,2023 +Authored by Representative Morrison,2023-02-28,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Engleman,2023-01-09,[],IN,2023 +First reading: adopted voice vote,2023-04-03,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Clere,2023-01-10,[],IN,2023 +First reading: referred to Committee on Public Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative McNamara,2023-01-17,[],IN,2023 +Authored by Representative Fleming,2023-01-19,[],IN,2023 +Authored by Representative Gore,2023-03-06,[],IN,2023 +First reading: referred to Committee on Local Government,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Commerce, Small Business and Economic Development",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Soliday,2023-04-12,[],IN,2023 +"Coauthored by Representatives Andrade, Aylesworth, Baird, Barrett, Bauer M, Boy, Carbaugh, Cherry, Clere, Culp, Davis, Dvorak, Engleman, Frye R, Garcia Wilburn, Goodrich, Gore, Haggard, Hall, Hamilton, Hatcher, Heaton, Jackson, Jordan, Judy, Ledbetter, Lehman, Lucas, Manning, Mayfield, McGuire, McNamara, Miller K, Morris, Negele, Patterson, Payne, Pierce K, Prescott, Rowray, Schaibley, Slager, Snow, Soliday, Steuerwald, Sweet, Teshka, Thompson, VanNatter, Wesco, Meltzer",2023-04-13,[],IN,2023 +Authored by Representative Porter,2023-04-13,[],IN,2023 +"Coauthored by Senators Bassler, Holdman, Qaddoura, Melton, Charbonneau",2023-04-10,[],IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Criswell,2023-01-10,[],IN,2023 +Authored by Representative Barrett,2023-04-12,[],IN,2023 +First reading: adopted voice vote,2023-04-13,"['passage', 'reading-1']",IN,2023 +"Coauthored by Representatives Aylesworth, Baird, Barrett, Carbaugh, Cherry, Criswell, Culp, Davis, Engleman, Frye R, Goodrich, Greene, Haggard, Jeter, Jordan, Lauer, Ledbetter, Lehman, Mayfield, McNamara, Miller D, Morrison, Negele, Payne, Prescott, Snow, Speedy, Sweet, Teshka, Thompson, VanNatter, Wesco, Zent",2023-04-13,[],IN,2023 +Authored by Representative Snow,2023-01-17,[],IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative McNamara,2023-01-17,[],IN,2023 +Authored by Representative Negele,2023-01-17,[],IN,2023 +Authored by Representative Culp,2023-01-17,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Boy,2023-01-17,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Commerce, Small Business and Economic Development",2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Utilities,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Barrett,2023-01-17,[],IN,2023 +"Cosponsors: Senators Taylor G, Yoder, Bassler, Niemeyer, Ford J.D., Charbonneau",2023-04-18,[],IN,2023 +Authored by Representative Miller D,2023-01-12,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Insurance,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Andrade,2023-01-17,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Andrade,2023-01-17,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Lucas,2023-01-17,[],IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Pfaff,2023-01-17,[],IN,2023 +Authored by Representative Pfaff,2023-01-17,[],IN,2023 +Authored by Representative Teshka,2023-01-17,[],IN,2023 +Authored by Representative Davis,2023-01-17,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Financial Institutions,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Miller D,2023-01-17,[],IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Teshka,2023-01-17,[],IN,2023 +Authored by Representative Pfaff,2023-01-17,[],IN,2023 +Authored by Representative Hall,2023-01-17,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Insurance,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative King,2023-01-17,[],IN,2023 +Authored by Representative Barrett,2023-01-17,[],IN,2023 +Authored by Representative Bauer M,2023-01-19,[],IN,2023 +"Authored by Senators Messmer, Glick, Niemeyer",2023-01-19,[],IN,2023 +First reading: referred to Committee on Insurance,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Behning,2023-01-19,[],IN,2023 +Authored by Representative Pierce M,2023-01-11,[],IN,2023 +First reading: adopted voice vote,2023-04-20,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Errington,2023-01-10,[],IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Haggard,2023-01-12,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Utilities,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-18,"['passage', 'reading-1']",IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-04-06,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-02-02,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Utilities,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Pressel,2023-01-09,[],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Prescott,2023-01-09,[],IN,2023 +Authored by Representative Pressel,2023-01-09,[],IN,2023 +First reading: adopted voice vote,2023-03-16,"['passage', 'reading-1']",IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Judy,2023-01-11,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Davis,2023-01-19,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Lucas,2023-01-17,[],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Soliday,2023-01-17,[],IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Senators Niezgodski and Mishler,2023-01-09,[],IN,2023 +"Coauthored by Senators Taylor G, Yoder, Ford J.D., Breaux, Hunley, Melton, Niezgodski, Pol and Randolph Lonnie M",2023-04-19,[],IN,2023 +First reading: adopted voice vote,2023-04-19,"['passage', 'reading-1']",IN,2023 +Authored by Representative Davis,2023-04-11,[],IN,2023 +Authored by Representative Klinker,2023-04-06,[],IN,2023 +First reading: adopted voice vote,2023-04-12,"['passage', 'reading-1']",IN,2023 +Coauthored by Representatives Andrade and Miller K,2023-02-02,[],IN,2023 +Coauthored by Representative Cash,2023-04-17,[],IN,2023 +Coauthored by Representative Karickhoff,2023-04-18,[],IN,2023 +Authored by Representative Klinker,2023-02-21,[],IN,2023 +Coauthored by Representatives Carbaugh and Mayfield,2023-02-14,[],IN,2023 +Authored by Representative Klinker,2023-03-20,[],IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Insurance,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-14,"['passage', 'reading-1']",IN,2023 +Authored by Representative Bartlett,2023-01-17,[],IN,2023 +First reading: adopted voice vote,2023-02-20,"['passage', 'reading-1']",IN,2023 +Authored by Representative Porter,2023-01-10,[],IN,2023 +Authored by Representative Harris,2023-01-10,[],IN,2023 +Authored by Representative Clere,2023-01-10,[],IN,2023 +Coauthored by Senator Buck,2023-02-20,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Financial Institutions,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Prescott,2023-01-10,[],IN,2023 +First reading: adopted voice vote,2023-02-28,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Commerce, Small Business and Economic Development",2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Payne,2023-01-19,[],IN,2023 +Authored by Representative Behning,2023-01-19,[],IN,2023 +Authored by Representative Payne,2023-01-19,[],IN,2023 +Authored by Representative Engleman,2023-01-09,[],IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Financial Institutions,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Morris,2023-01-19,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative VanNatter,2023-01-11,[],IN,2023 +First reading: referred to Committee on Insurance,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Heaton,2023-01-19,[],IN,2023 +Coauthored by Representatives Cherry and Snow,2023-01-19,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Payne,2023-01-19,[],IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-13,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Prescott,2023-01-19,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Judy,2023-01-19,[],IN,2023 +First reading: referred to Committee on Insurance and Financial Institutions,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Payne,2023-01-19,[],IN,2023 +First reading: referred to Committee on Financial Institutions,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-18,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Behning,2023-01-19,[],IN,2023 +Authored by Representative O'Brien,2023-01-19,[],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Cherry,2023-01-19,[],IN,2023 +Authored by Representative Morris,2023-01-19,[],IN,2023 +Authored by Representative Judy,2023-01-19,[],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Morris,2023-01-19,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Payne,2023-01-19,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Agriculture and Rural Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Payne,2023-01-19,[],IN,2023 +First reading: adopted voice vote,2023-02-28,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representative Cash,2023-01-11,[],IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Aylesworth,2023-01-09,[],IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Judy,2023-01-10,[],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Behning,2023-01-19,[],IN,2023 +First reading: referred to Committee on Local Government,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-14,"['passage', 'reading-1']",IN,2023 +Authored by Representative Errington,2023-03-20,[],IN,2023 +First reading: adopted voice vote,2023-03-20,"['passage', 'reading-1']",IN,2023 +Authored by Representative Boy,2023-01-19,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Agriculture and Rural Development,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +"Coauthored by Senators Breaux, Crider, Hunley, Qaddoura",2023-03-14,[],IN,2023 +First reading: adopted voice vote,2023-03-16,"['passage', 'reading-1']",IN,2023 +Authored by Representative VanNatter,2023-01-19,[],IN,2023 +Authored by Representative Porter,2023-01-17,[],IN,2023 +First reading: adopted voice vote,2023-03-13,"['passage', 'reading-1']",IN,2023 +Authored by Representative Frye R,2023-03-13,[],IN,2023 +First reading: referred to Committee on Appropriations,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Prescott,2023-01-10,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Rowray,2023-01-19,[],IN,2023 +Authored by Representative Olthoff,2023-01-17,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Jeter,2023-01-19,[],IN,2023 +Authored by Representative Olthoff,2023-01-19,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-10,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-04-10,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-04-10,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-04-10,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Utilities,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-07,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Lucas,2023-02-28,[],IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Goodrich,2023-01-11,[],IN,2023 +First reading: adopted voice vote,2023-03-06,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Utilities,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Utilities,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Vermilion,2023-01-17,[],IN,2023 +Authored by Representative Teshka,2023-01-19,[],IN,2023 +First reading: adopted voice vote,2023-04-03,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-09,"['passage', 'reading-1']",IN,2023 +Authored by Representative Clere,2023-01-10,[],IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-07,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Slager,2023-01-17,[],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-02,"['passage', 'reading-1']",IN,2023 +Authored by Representative Morrison,2023-01-17,[],IN,2023 +First reading: adopted voice vote,2023-02-14,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-02-16,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-09,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and The Military,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Insurance,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Ledbetter,2023-01-11,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Behning,2023-01-19,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Agriculture,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and The Military,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Summers,2023-03-21,[],IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative King,2023-01-17,[],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Vermilion,2023-01-17,[],IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representatives Pressel and Bartlett,2023-01-10,[],IN,2023 +Authored by Representative Rowray,2023-01-12,[],IN,2023 +Authored by Representative Goodrich,2023-01-17,[],IN,2023 +First reading: referred to Committee on Insurance and Financial Institutions,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Vermilion,2023-01-11,[],IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Clere,2023-01-10,[],IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Pack,2023-01-11,[],IN,2023 +Authored by Representative Cherry,2023-01-11,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Errington,2023-01-09,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Errington,2023-01-09,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Pack,2023-01-11,[],IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Bartels,2023-01-09,[],IN,2023 +Authored by Representative Aylesworth,2023-01-09,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-11,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-03-23,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Insurance and Financial Institutions,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Porter,2023-02-20,[],IN,2023 +First reading: adopted voice vote,2023-02-23,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Andrade,2023-01-17,[],IN,2023 +First reading: referred to Committee on Public Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Teshka,2023-01-09,[],IN,2023 +First reading: adopted voice vote,2023-04-11,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Andrade,2023-01-17,[],IN,2023 +First reading: referred to Committee on Education,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Goodrich,2023-01-19,[],IN,2023 +First reading: referred to Committee on Public Policy,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Lucas,2023-01-10,[],IN,2023 +Authored by Representative Lucas,2023-01-11,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Porter,2023-01-10,[],IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Jackson,2023-01-10,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representative GiaQuinta,2023-01-09,[],IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Agriculture and Rural Development,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-09,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-02-06,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Andrade,2023-01-17,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Fleming,2023-01-10,[],IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Moed,2023-01-10,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Utilities,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Schaibley,2023-01-12,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Negele,2023-01-17,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Teshka,2023-01-17,[],IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-23,"['passage', 'reading-1']",IN,2023 +Coauthored by Representative Klinker,2023-03-23,[],IN,2023 +First reading: adopted voice vote,2023-03-20,"['passage', 'reading-1']",IN,2023 +"Coauthored by Representatives Hatfield, Bartels, Miller D",2023-01-10,[],IN,2023 +First reading: adopted standing vote,2023-04-04,"['passage', 'reading-1']",IN,2023 +"Coauthored by Senators Niezgodski, Donato, Bohacek, Zay",2023-04-04,[],IN,2023 +First reading: adopted voice vote,2023-04-12,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-04-11,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Jeter,2023-01-11,[],IN,2023 +First reading: referred to Committee on Utilities,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Soliday,2023-02-06,[],IN,2023 +First reading: referred to Committee on Veterans Affairs and The Military,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Insurance and Financial Institutions,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Miller D,2023-01-17,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-20,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-21,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Authored by Senator Breaux,2023-02-06,[],IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representative Karickhoff,2023-01-12,[],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representative Campbell,2023-02-21,[],IN,2023 +Authored by Representative Boy,2023-01-17,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Boy,2023-01-17,[],IN,2023 +Authored by Representative Gore,2023-02-22,[],IN,2023 +First reading: adopted voice vote,2023-02-06,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Pressel,2023-01-10,[],IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +Authored by Representative Clere,2023-04-24,[],IN,2023 +Authored by Representative Miller D,2023-01-12,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Family and Children Services,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +"Coauthored by Representatives Engleman, Cash, Summers",2023-01-10,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Manning,2023-01-12,[],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-23,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Clere,2023-02-02,[],IN,2023 +Authored by Representative Goodrich,2023-01-11,[],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Clere,2023-01-10,[],IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-27,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-03-27,"['passage', 'reading-1']",IN,2023 +Representative Lindauer added as coauthor,2023-01-12,[],IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Representative Hamilton added as coauthor,2023-02-09,[],IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Education and Career Development,2023-02-02,"['committee-passage', 'referral-committee']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-01-19,"['committee-passage', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-01-19,"['committee-passage', 'referral-committee']",IN,2023 +Senator Qaddoura added as third author,2023-01-17,[],IN,2023 +"Coauthored by Representatives Karickhoff, Torr, Campbell",2023-02-02,[],IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Tax and Fiscal Policy,2023-02-09,"['committee-passage', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Senator Johnson added as second author,2023-01-17,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-02-06,"['committee-passage', 'referral-committee']",IN,2023 +Senators Leising and Breaux added as coauthors,2023-01-26,[],IN,2023 +Senator Walker G added as second author,2023-01-30,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-02-02,"['committee-passage', 'referral-committee']",IN,2023 +Representative Davis M added as coauthor,2023-01-12,[],IN,2023 +"Committee report: do pass, adopted",2023-02-06,['committee-passage'],IN,2023 +Senator Ford J.D. added as coauthor,2023-01-26,[],IN,2023 +Senator Charbonneau added as coauthor,2023-01-30,[],IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Representative Jeter C added as coauthor,2023-01-12,[],IN,2023 +"Committee report: do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Senator Qaddoura added as coauthor,2023-01-19,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Senator Qaddoura added as third author,2023-01-17,[],IN,2023 +Senator Koch added as second author,2023-01-26,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Senator Randolph added as coauthor,2023-02-09,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +Senator Raatz added as second author,2023-01-10,[],IN,2023 +Senator Ford J.D. added as coauthor,2023-01-17,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +Representative Frye added as coauthor,2023-02-07,[],IN,2023 +Senator Bohacek added as second author,2023-02-13,[],IN,2023 +Representatives Lehman and DeLaney added as coauthors,2023-01-31,[],IN,2023 +Senator Brown L added as second author,2023-01-30,[],IN,2023 +First reading: adopted voice vote,2023-02-06,"['passage', 'reading-1']",IN,2023 +Coauthored by Representative Frye R,2023-02-28,[],IN,2023 +Senator Busch added as second author,2023-02-13,[],IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-17,"['passage', 'reading-1']",IN,2023 +House sponsor: Representative Lehman,2023-03-20,[],IN,2023 +First reading: referred to Committee on Local Government,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Senator Charbonneau added as second author,2023-01-10,[],IN,2023 +Senator Doriot added as second author,2023-01-26,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +First reading: referred to the Committee on Public Policy,2023-04-13,"['reading-1', 'referral-committee']",IN,2023 +"Representatives Steuerwald, Frye, Miller K added as coauthors",2023-02-06,[],IN,2023 +First reading: adopted voice vote,2023-03-13,"['passage', 'reading-1']",IN,2023 +Senator Qaddoura added as third author,2023-01-17,[],IN,2023 +Representatives Barrett and Fleming added as coauthors,2023-02-09,[],IN,2023 +Senator Qaddoura added as third author,2023-01-11,[],IN,2023 +First reading: adopted voice vote,2023-04-19,"['passage', 'reading-1']",IN,2023 +Senator Leising added as second author,2023-01-26,[],IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Representative Clere added as coauthor,2023-01-30,[],IN,2023 +"Representatives Cash B, McGuire J, Smith, V. added as coauthors",2023-02-20,[],IN,2023 +Representative King J added as coauthor,2023-02-06,[],IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-21,"['passage', 'reading-1']",IN,2023 +Senator Ford Jon added as second author,2023-01-24,[],IN,2023 +First reading: adopted voice vote,2023-04-12,"['passage', 'reading-1']",IN,2023 +Representative Culp K added as coauthor,2023-01-17,[],IN,2023 +"Representatives Soliday, Pressel, Judy added as coauthors",2023-01-23,[],IN,2023 +First reading: adopted voice vote,2023-03-06,"['passage', 'reading-1']",IN,2023 +Senator Ford J.D. added as coauthor,2023-01-17,[],IN,2023 +First reading: adopted voice vote,2023-03-14,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Senator Becker added as second author,2023-01-24,[],IN,2023 +House sponsor: Representative Lauer,2023-04-11,[],IN,2023 +Senator Alexander added as second author,2023-01-17,[],IN,2023 +"Committee report: do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +Representative Judy added as coauthor,2023-02-07,[],IN,2023 +Senator Rogers added as third author,2023-01-24,[],IN,2023 +Senator Glick added as third author,2023-02-20,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +House sponsor: Representative Aylesworth,2023-02-21,[],IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Senator Niezgodski added as second author,2023-01-17,[],IN,2023 +Senator Breaux removed as author,2023-01-26,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Senator Deery added as coauthor,2023-01-24,[],IN,2023 +Senator Melton removed as author,2023-02-20,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-20,"['passage', 'reading-1']",IN,2023 +Senator Byrne added as coauthor,2023-01-17,[],IN,2023 +"Committee report: do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +"Representatives Engleman, Smaltz, Shackleford added as coauthors",2023-01-12,[],IN,2023 +Senator Walker G added as second author,2023-01-24,[],IN,2023 +"Coauthored by Representatives McNamara, Errington, Shackleford",2023-01-17,[],IN,2023 +"Committee report: do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-02-06,"['passage', 'reading-1']",IN,2023 +Senator Glick added as second author,2023-01-23,[],IN,2023 +Senator Charbonneau added as second author,2023-01-19,[],IN,2023 +Senator Walker K added as second author,2023-01-23,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Senator Dernulc added as second author,2023-01-11,[],IN,2023 +First reading: referred to Committee on Education,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Steuerwald,2023-03-07,[],IN,2023 +"Committee report: do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Representative Frye added as coauthor,2023-01-23,[],IN,2023 +Senator Taylor G removed as author,2023-01-26,[],IN,2023 +Senator Buchanan added as second author,2023-01-17,[],IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"Representatives Ledbetter C, Carbaugh, Porter added as coauthors",2023-01-31,[],IN,2023 +First reading: referred to the Committee on Roads and Transportation voice vote,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Representatives VanNatter and Hatfield added as coauthors,2023-02-06,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Representatives Heaton and Jeter C added as coauthors,2023-02-07,[],IN,2023 +"Committee report: do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +First reading: referred to Committee on Public Health,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Representative Payne Z added as coauthor,2023-01-23,[],IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-02-20,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Senator Rogers added as second author,2023-04-24,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Senator Ford Jon added as second author,2023-01-23,[],IN,2023 +First reading: adopted voice vote,2023-01-11,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Aylesworth,2023-02-07,[],IN,2023 +Representative Payne Z added as coauthor,2023-01-30,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +Representatives Morris and Carbaugh added as coauthors,2023-01-23,[],IN,2023 +Representative Payne Z added as coauthor,2023-02-06,[],IN,2023 +Senator Koch added as second author,2023-01-17,[],IN,2023 +Representative Olthoff added as coauthor,2023-01-12,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Senator Sandlin added as second author,2023-01-19,[],IN,2023 +House sponsor: Representative Garcia Wilburn,2023-02-28,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Senator Charbonneau added as second author,2023-02-02,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Withdrawn,2023-02-06,['withdrawal'],IN,2023 +Senator Holdman added as second author,2023-01-23,[],IN,2023 +Representative Olthoff added as coauthor,2023-02-13,[],IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Representative Payne Z added as coauthor,2023-01-12,[],IN,2023 +Senator Walker K added as second author,2023-01-17,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Senator Niezgodski added as second author,2023-01-19,[],IN,2023 +Representative Greene R added as coauthor,2023-01-24,[],IN,2023 +First reading: adopted voice vote,2023-04-06,"['passage', 'reading-1']",IN,2023 +Senator Holdman added as second author,2023-01-19,[],IN,2023 +Representative Prescott added as coauthor,2023-02-06,[],IN,2023 +First reading: referred to Committee on Local Government,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Pursuant to Senate Rule 68(b); reassigned to Committee on Tax and Fiscal Policy,2023-01-23,['referral-committee'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +First reading: referred to Committee on Public Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-01-19,"['committee-passage', 'referral-committee']",IN,2023 +Senator Charbonneau added as second author,2023-02-02,[],IN,2023 +Senator Brown L added as second author,2023-01-17,[],IN,2023 +Representative Clere added as coauthor,2023-01-24,[],IN,2023 +"Committee report: do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +Representative Andrade M added as coauthor,2023-01-17,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Representative Olthoff added as coauthor,2023-01-19,[],IN,2023 +Representative Bartels added as coauthor,2023-01-12,[],IN,2023 +First reading: referred to Committee on Education,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Representative Jeter C added as coauthor,2023-01-31,[],IN,2023 +"Committee report: do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-21,"['passage', 'reading-1']",IN,2023 +Representative Payne Z added as coauthor,2023-01-17,[],IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Senator Glick added as second author,2023-01-11,[],IN,2023 +Senator Young M added as coauthor,2023-01-19,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Senator Leising added as coauthor,2023-02-07,[],IN,2023 +Representative GiaQuinta added as coauthor,2023-01-24,[],IN,2023 +Representatives Heine and Porter added as coauthors,2023-01-24,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Representative Bartels added as coauthor,2023-01-12,[],IN,2023 +First reading: adopted voice vote,2023-04-10,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Senator Baldwin added as second author,2023-01-17,[],IN,2023 +Representative Lucas added as coauthor,2023-01-12,[],IN,2023 +"Committee report: do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-18,"['passage', 'reading-1']",IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson, Koch, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Raatz, Randolph, Rogers, Sandlin, Taylor G, Tomes, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2023-04-10,[],IN,2023 +First reading: referred to Committee on Agriculture and Rural Development,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +Senator Ford J.D. added as coauthor,2023-01-26,[],IN,2023 +Senator Walker K added as second author,2023-01-30,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-03-23,"['passage', 'reading-1']",IN,2023 +Senator Walker K added as second author,2023-01-30,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Hunley, Johnson, Koch, Leising, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Raatz, Randolph, Rogers, Sandlin, Taylor G, Tomes, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2023-04-11,[],IN,2023 +Representative Pressel added as coauthor,2023-01-24,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Representatives Vermilion A and Barrett added as coauthors,2023-01-19,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +Senator Yoder added as second author,2023-04-18,[],IN,2023 +Representative Lauer added as coauthor,2023-01-23,[],IN,2023 +"First reading: referred to Committee on Commerce, Small Business and Economic Development",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-02-16,"['committee-passage', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Representative McGuire J added as coauthor,2023-02-02,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Senator Randolph added as coauthor,2023-02-09,[],IN,2023 +First reading: adopted voice vote,2023-02-20,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Senator Ford J.D. added as third author,2023-01-17,[],IN,2023 +Senator Rogers added as second author,2023-01-19,[],IN,2023 +"First reading: referred to Committee on Commerce, Small Business and Economic Development",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Judy,2023-01-19,[],IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Financial Institutions,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Jeter,2023-02-14,[],IN,2023 +Representative McGuire J added as coauthor,2023-02-14,[],IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Senator Alting added as second author,2023-01-26,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-02-07,"['committee-passage', 'referral-committee']",IN,2023 +First reading: adopted standing vote,2023-01-09,"['passage', 'reading-1']",IN,2023 +Representative Hamilton added as coauthor,2023-01-26,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Senator Alting added as second author,2023-04-03,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Senators Brown L and Rogers added as coauthors,2023-01-19,[],IN,2023 +Representative Harris added as coauthor,2023-01-12,[],IN,2023 +"Committee report: do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +Representatives Pressel and Morris added as coauthors,2023-01-23,[],IN,2023 +First reading: adopted voice vote,2023-04-13,"['passage', 'reading-1']",IN,2023 +Representative Payne Z added as coauthor,2023-01-12,[],IN,2023 +Representative Bartels removed as author,2023-01-12,[],IN,2023 +Senator Rogers added as second author,2023-04-24,[],IN,2023 +First reading: adopted voice vote,2023-02-22,"['passage', 'reading-1']",IN,2023 +"Reassigned to Committee on Employment, Labor and Pensions",2023-01-17,[],IN,2023 +First reading: adopted voice vote,2023-02-21,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Senator Bray added as second author,2023-01-17,[],IN,2023 +Representative Pfaff added as coauthor,2023-01-17,[],IN,2023 +Representatives Olthoff and Schaibley added as coauthors,2023-01-12,[],IN,2023 +Representative Torr added as coauthor,2023-01-24,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +"Reassigned to Committee on Employment, Labor and Pensions",2023-01-12,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-02-14,"['committee-passage', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Representative Payne Z added as coauthor,2023-01-12,[],IN,2023 +Senator Busch added as third author,2023-01-26,[],IN,2023 +Representative Pressel added as coauthor,2023-01-12,[],IN,2023 +First reading: referred to Committee on Local Government,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Representative Klinker added as coauthor,2023-01-26,[],IN,2023 +Representative Slager added as coauthor,2023-01-12,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +Senator Leising added as second author,2023-02-09,[],IN,2023 +Representative Lucas added as coauthor,2023-01-09,[],IN,2023 +Senator Walker K added as second author,2023-01-10,[],IN,2023 +First reading: referred to Committee on Public Policy,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-02-06,"['committee-passage', 'referral-committee']",IN,2023 +"Senators Breaux, Ford J.D., Hunley, Melton, Niezgodski, Pol, Qaddoura, Randolph, Yoder added as coauthors",2023-01-19,[],IN,2023 +Senator Ford J.D. added as coauthor,2023-01-31,[],IN,2023 +First reading: referred to Committee on Education,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +Representatives Lucas and Miller K added as coauthors,2023-02-13,[],IN,2023 +First reading: adopted voice vote,2023-04-13,"['passage', 'reading-1']",IN,2023 +Withdrawn,2023-01-11,['withdrawal'],IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Senator Bohacek added as coauthor,2023-03-27,[],IN,2023 +Withdrawn,2023-01-11,['withdrawal'],IN,2023 +"Committee report: do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-01-09,"['passage', 'reading-1']",IN,2023 +Representative Torr added as coauthor,2023-04-24,[],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Coauthored by Representatives Lauer and Morrison,2023-04-12,[],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Representatives Schaibley and Genda M added as coauthors,2023-01-19,[],IN,2023 +House sponsor: Representative McNamara,2023-02-06,[],IN,2023 +Senator Bohacek added as second author,2023-01-31,[],IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Utilities,2023-01-24,"['committee-passage', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Coauthored by Representatives Engleman and Fleming,2023-04-24,[],IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Senator Hunley added as coauthor,2023-01-17,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +"Representatives Heaton, Morrison, Borders added as coauthors",2023-01-23,[],IN,2023 +Senator Perfect added as second author,2023-01-19,[],IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-02-14,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-01-23,['committee-passage'],IN,2023 +First reading: referred to Committee on Local Government,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-23,['committee-passage'],IN,2023 +Representatives Schaibley and Olthoff added as coauthors,2023-01-12,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-11,"['passage', 'reading-1']",IN,2023 +Representative Davis M added as coauthor,2023-01-12,[],IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Representative Pierce K added as coauthor,2023-02-06,[],IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +Representative Ledbetter C added as coauthor,2023-01-19,[],IN,2023 +Representative Hamilton added as coauthor,2023-01-26,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-02-02,"['passage', 'reading-1']",IN,2023 +Authored by Representative Errington,2023-04-18,[],IN,2023 +Senator Sandlin added as second author,2023-01-26,[],IN,2023 +Senator Ford Jon added as second author,2023-01-26,[],IN,2023 +Representative Negele added as coauthor,2023-01-31,[],IN,2023 +"Representatives Carbaugh, Lehman, Moseley added as coauthors",2023-01-31,[],IN,2023 +Representatives Miller D and Pack R added as coauthors,2023-01-23,[],IN,2023 +Senator Garten added as second author,2023-01-19,[],IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-20,"['passage', 'reading-1']",IN,2023 +Senator Buck removed as second author,2023-01-19,[],IN,2023 +Representative McGuire J added as coauthor,2023-01-23,[],IN,2023 +Representatives Vermilion A and Fleming added as coauthors,2023-01-23,[],IN,2023 +House sponsor: Representative Pierce M,2023-04-04,[],IN,2023 +Senator Garten added as coauthor,2023-01-23,[],IN,2023 +Senator Rogers added as second author,2023-01-19,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +First reading: referred to Committee on Education,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +Representative Teshka J added as coauthor,2023-01-19,[],IN,2023 +First reading: adopted standing vote,2023-04-04,"['passage', 'reading-1']",IN,2023 +Senator Dernulc added as second author,2023-01-17,[],IN,2023 +"Committee report: do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +Representative Clere added as coauthor,2023-01-30,[],IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-01-23,['committee-passage'],IN,2023 +Senator Dernulc added as second author,2023-01-17,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-04-17,"['passage', 'reading-1']",IN,2023 +Representative Rowray E added as coauthor,2023-01-19,[],IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +Senator Randolph added as coauthor,2023-02-09,[],IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +Pursuant to Senate Rule 68(b); reassigned to Committee on Education and Career Development,2023-01-19,['referral-committee'],IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Senator Niezgodski added as third author,2023-02-07,[],IN,2023 +"Representative Smith, V. added as coauthor",2023-01-17,[],IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-13,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Representative Olthoff added as coauthor,2023-01-26,[],IN,2023 +Senator Messmer added as coauthor,2023-01-26,[],IN,2023 +Senator Perfect removed as second author,2023-01-19,[],IN,2023 +Representative Moed added as coauthor,2023-01-31,[],IN,2023 +"Representatives Miller D, Pryor, Bartlett added as coauthors",2023-01-24,[],IN,2023 +Senator Randolph added as coauthor,2023-02-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Senator Walker G added as second author,2023-01-17,[],IN,2023 +First reading: adopted voice vote,2023-04-19,"['passage', 'reading-1']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-23,['committee-passage'],IN,2023 +Representative Fleming added as coauthor,2023-01-17,[],IN,2023 +"Reassigned to Committee on Family, Children and Human Affairs",2023-01-11,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +Senator Charbonneau added as second author,2023-01-11,[],IN,2023 +Coauthored by Representative Lindauer,2023-03-30,[],IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-03-09,"['passage', 'reading-1']",IN,2023 +Senator Becker added as second author,2023-02-13,[],IN,2023 +House sponsor: Representative Pack,2023-03-21,[],IN,2023 +First reading: adopted voice vote,2023-03-20,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Local Government,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-28,"['passage', 'reading-1']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +"Coauthored by Representatives Heaton, Rowray, Errington",2023-04-17,[],IN,2023 +Representative Lehman added as coauthor,2023-01-10,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-23,['committee-passage'],IN,2023 +Senator Melton added as coauthor,2023-02-02,[],IN,2023 +Coauthored by Representatives Carbaugh and Mayfield,2023-04-03,[],IN,2023 +First reading: adopted voice vote,2023-04-11,"['passage', 'reading-1']",IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Representative Moseley added as coauthor,2023-02-06,[],IN,2023 +First reading: adopted voice vote,2023-01-09,"['passage', 'reading-1']",IN,2023 +Senator Deery added as second author,2023-01-26,[],IN,2023 +House sponsor: Representative Steuerwald,2023-04-10,[],IN,2023 +Senate sponsor: Senator Doriot,2023-02-14,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-02-02,"['committee-passage', 'referral-committee']",IN,2023 +Senator Crider added as second author,2023-01-19,[],IN,2023 +First reading: adopted voice vote,2023-04-12,"['passage', 'reading-1']",IN,2023 +Senator Doriot added as second author,2023-01-19,[],IN,2023 +Senator Baldwin removed as author,2023-02-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Senator Byrne added as coauthor,2023-01-11,[],IN,2023 +"Senators Charbonneau, Brown L, Pol added as coauthors",2023-01-23,[],IN,2023 +First reading: referred to Committee on Agriculture and Rural Development,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Representative Pressel added as coauthor,2023-01-23,[],IN,2023 +First reading: referred to Committee on Education,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Senator Qaddoura added as third author,2023-01-17,[],IN,2023 +First reading: referred to Committee on Local Government,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Representative Meltzer J added as coauthor,2023-01-26,[],IN,2023 +First reading: referred to Committee on Education,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Tax and Fiscal Policy,2023-01-30,"['committee-passage', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Representative Andrade M added as coauthor,2023-01-19,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-03-13,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Senator Doriot added as second author,2023-01-19,[],IN,2023 +Representatives Karickhoff and Klinker added as coauthors,2023-02-06,[],IN,2023 +Representatives Prescott and Abbott D added as coauthors,2023-01-19,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-02-06,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-03-13,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Insurance,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Senator Baldwin added as third author,2023-01-19,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-01-31,"['committee-passage', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +First reading: adopted standing vote,2023-03-14,"['passage', 'reading-1']",IN,2023 +"Committee report: do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Representative Karickhoff added as coauthor,2023-01-19,[],IN,2023 +Senator Crider added as second author,2023-01-23,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Speedy,2023-03-14,[],IN,2023 +First reading: referred to Committee on Public Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Senator Doriot added as second author,2023-01-10,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Senator Walker K added as second author,2023-01-10,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-02-07,"['committee-passage', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-06,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Senator Tomes added as second author,2023-01-30,[],IN,2023 +Senator Raatz added as second author,2023-01-26,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Tax and Fiscal Policy,2023-01-31,"['committee-passage', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Insurance,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-01-12,"['passage', 'reading-1']",IN,2023 +Representative Frye added as coauthor,2023-01-12,[],IN,2023 +Representative Lucas added as coauthor,2023-01-12,[],IN,2023 +Senator Ford J.D. added as coauthor,2023-01-12,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Senator Pol added as coauthor,2023-01-10,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Representative Miller D added as coauthor,2023-02-14,[],IN,2023 +First reading: referred to Committee on Agriculture and Rural Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-01-31,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-01-31,"['passage', 'reading-1']",IN,2023 +Senator Charbonneau added as second author,2023-01-17,[],IN,2023 +Coauthored by Representatives Huston and Jeter,2023-03-23,[],IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-01-12,['committee-passage'],IN,2023 +Representative Baird added as coauthor,2023-01-23,[],IN,2023 +Senator Ford J.D. added as coauthor,2023-01-17,[],IN,2023 +Representative Clere added as coauthor,2023-01-24,[],IN,2023 +Reassigned to Committee on Courts and Criminal Code,2023-01-19,[],IN,2023 +Coauthored by Representatives Engleman and Fleming,2023-04-24,[],IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Soliday,2023-03-09,[],IN,2023 +Senator Randolph added as coauthor,2023-02-13,[],IN,2023 +"Representatives Morris, McNamara, Gore M added as coauthors",2023-01-30,[],IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-03-20,"['passage', 'reading-1']",IN,2023 +"Coauthored by Representatives Engleman, Fleming, Payne",2023-04-24,[],IN,2023 +Representative Behning added as coauthor,2023-02-20,[],IN,2023 +House sponsor: Representative Lehman,2023-04-24,[],IN,2023 +House sponsor: Representative Bauer M,2023-02-13,[],IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +House sponsor: Representative Mayfield,2023-03-09,[],IN,2023 +Representative Speedy added as coauthor,2023-01-23,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Senator Rogers added as second author,2023-01-12,[],IN,2023 +House sponsor: Representative Lindauer,2023-03-13,[],IN,2023 +Senator Rogers added as second author,2023-01-30,[],IN,2023 +"Committee report: do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-02-09,"['committee-passage', 'referral-committee']",IN,2023 +House sponsor: Representative Garcia Wilburn,2023-03-20,[],IN,2023 +Representative Lindauer added as coauthor,2023-01-30,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Senator Walker G added as third author,2023-01-24,[],IN,2023 +Senator Byrne added as coauthor,2023-01-11,[],IN,2023 +Senator Charbonneau added as second author,2023-03-21,[],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-01-23,"['committee-passage', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Withdrawn,2023-01-10,['withdrawal'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +First reading: referred to Committee on Local Government,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Senator Ford Jon added as second author,2023-01-11,[],IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +"Representatives Manning, Lyness, Moed added as coauthors",2023-01-19,[],IN,2023 +Senator Charbonneau added as second author,2023-02-06,[],IN,2023 +Representative Hatcher added as coauthor,2023-01-17,[],IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Representative Lucas added as coauthor,2023-01-17,[],IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Commerce, Small Business and Economic Development",2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Withdrawn,2023-01-11,['withdrawal'],IN,2023 +First reading: adopted voice vote,2023-04-11,"['passage', 'reading-1']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Representative McNamara added as coauthor,2023-01-12,[],IN,2023 +Senator Garten added as second author,2023-01-11,[],IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Representative GiaQuinta added as coauthor,2023-01-12,[],IN,2023 +Representative Bartels removed as author,2023-01-12,[],IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Senator Holdman added as second author,2023-01-10,[],IN,2023 +Senator Walker G added as second author,2023-01-23,[],IN,2023 +Representative Lauer added as coauthor,2023-01-12,[],IN,2023 +"Senators Ford Jon, Rogers, Walker K added as coauthors",2023-01-23,[],IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Representative McGuire J added as coauthor,2023-02-13,[],IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Representative Porter added as coauthor,2023-01-24,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Insurance,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Senate sponsor: Senator Ford Jon,2023-03-28,[],IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Teshka,2023-01-17,[],IN,2023 +Senator Brown L added as second author,2023-01-26,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Representative Lauer added as coauthor,2023-02-13,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-04-17,"['passage', 'reading-1']",IN,2023 +"Committee report: do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-17,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Judiciary,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Senator Becker added as second author,2023-01-17,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Senator Randolph added as second author,2023-02-09,[],IN,2023 +First reading: adopted voice vote,2023-04-25,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Education,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Schaibley,2023-02-09,[],IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Representative Pierce K added as coauthor,2023-01-23,[],IN,2023 +Senator Holdman added as second author,2023-01-19,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Senator Ford J.D. added as coauthor,2023-02-02,[],IN,2023 +First reading: referred to Committee on Public Policy,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-27,"['passage', 'reading-1']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"Representatives Frye, Slager, Bartels added as coauthors",2023-01-24,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Senator Buck added as second author,2023-01-17,[],IN,2023 +First reading: referred to Committee on Local Government,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +First reading: referred to Committee on Public Health,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Representative Summers added as coauthor,2023-01-12,[],IN,2023 +Senator Walker G added as second author,2023-01-24,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Representative Lindauer added as coauthor,2023-01-19,[],IN,2023 +Senator Byrne added as coauthor,2023-01-11,[],IN,2023 +Senator Bassler added as coauthor,2023-01-26,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-02-09,"['committee-passage', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +Representative Moseley added as coauthor,2023-01-12,[],IN,2023 +Representative Hall D added as coauthor,2023-01-12,[],IN,2023 +Senator Niezgodski added as second author,2023-01-17,[],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-01-31,"['committee-passage', 'referral-committee']",IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-06,['committee-passage'],IN,2023 +"Representative Smith, V. added as coauthor",2023-01-12,[],IN,2023 +Senator Ford Jon added as second author,2023-01-23,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Representative Bartels added as coauthor,2023-01-12,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative May,2023-04-03,[],IN,2023 +First reading: referred to Committee on Agriculture and Rural Development,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +First reading: referred to Committee on Local Government,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +Senator Freeman added as second author,2023-02-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Senator Becker added as second author,2023-02-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Elections,2023-02-09,"['committee-passage', 'referral-committee']",IN,2023 +Senator Buchanan added as second author,2023-01-19,[],IN,2023 +Representative Karickhoff added as coauthor,2023-01-17,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Senator Ford Jon added as second author,2023-02-06,[],IN,2023 +First reading: adopted voice vote,2023-04-12,"['passage', 'reading-1']",IN,2023 +Senator Zay added as coauthor,2023-01-23,[],IN,2023 +First reading: referred to Committee on Education,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Senator Glick added as third author,2023-01-19,[],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +House sponsor: Representative Mayfield,2023-03-23,[],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +Senator Bohacek added as second author,2023-01-30,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +Senator Bassler added as second author,2023-02-13,[],IN,2023 +First reading: referred to Committee on Public Health,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Moseley,2023-03-27,[],IN,2023 +Senator Rogers added as second author,2023-01-23,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Representative Bartels added as coauthor,2023-01-30,[],IN,2023 +Senator Rogers added as second author,2023-01-10,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Elections,2023-02-13,"['committee-passage', 'referral-committee']",IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Senator Freeman added as second author,2023-02-13,[],IN,2023 +Senator Leising added as second author,2023-01-19,[],IN,2023 +House sponsor: Representative Lehman,2023-01-23,[],IN,2023 +Representative Clere added as coauthor,2023-02-13,[],IN,2023 +First reading: referred to Committee on Natural Resources,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson, Koch, Leising, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Raatz, Rogers, Sandlin, Taylor G, Tomes, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2023-01-30,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Senator Randolph added as coauthor,2023-02-13,[],IN,2023 +Representatives Lauer and Olthoff added as coauthors,2023-01-30,[],IN,2023 +Representative Jackson added as coauthor,2023-02-09,[],IN,2023 +Senator Randolph added as coauthor,2023-02-09,[],IN,2023 +Senator Ford Jon added as coauthor,2023-02-02,[],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-02-02,"['committee-passage', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-23,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-03-13,"['passage', 'reading-1']",IN,2023 +Senator Crider added as second author,2023-02-02,[],IN,2023 +First reading: adopted voice vote,2023-01-31,"['passage', 'reading-1']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +House sponsor: Representative Jordan,2023-01-31,[],IN,2023 +Senator Crane added as second author,2023-02-02,[],IN,2023 +Representative Hamilton added as coauthor,2023-01-31,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-01-26,"['committee-passage', 'referral-committee']",IN,2023 +Coauthored by Representative McNamara,2023-04-06,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-01-09,"['reading-1', 'referral-committee']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Education and Career Development,2023-01-23,"['committee-passage', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-20,"['passage', 'reading-1']",IN,2023 +Representative Speedy added as coauthor,2023-01-12,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +Authored by Representative Porter,2023-02-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +Senator Holdman added as second author,2023-01-17,[],IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-02-02,"['passage', 'reading-1']",IN,2023 +"Committee report: do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Representative Wesco added as coauthor,2023-01-17,[],IN,2023 +Representative Lehman added as coauthor,2023-01-23,[],IN,2023 +House sponsor: Representative Huston,2023-03-16,[],IN,2023 +First reading: referred to Committee on Public Policy,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Representative Clere added as coauthor,2023-01-09,[],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +"Coauthored by Representatives Engleman, Fleming, Payne",2023-04-24,[],IN,2023 +First reading: referred to Committee on Education,2023-01-11,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-01-10,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Representatives Pressel and Manning added as coauthors,2023-01-12,[],IN,2023 +Representative Bartels added as coauthor,2023-01-26,[],IN,2023 +First reading: referred to Committee on Education,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Authored by Representative Huston,2022-11-22,[],IN,2023 +House sponsor: Representative Davis,2023-03-06,[],IN,2023 +Senator Brown L added as second author,2023-01-19,[],IN,2023 +Representative Payne Z added as coauthor,2023-02-06,[],IN,2023 +First reading: referred to Committee on Insurance,2023-01-12,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-03-30,"['passage', 'reading-1']",IN,2023 +"Committee report: do pass, adopted",2023-01-23,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-03-30,"['passage', 'reading-1']",IN,2023 +Senator Ford Jon added as third author,2023-01-19,[],IN,2023 +"Committee report: do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +House sponsor: Representative Judy,2023-04-24,[],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson, Koch, Leising, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Raatz, Randolph, Rogers, Sandlin, Taylor G, Tomes, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2023-03-09,[],IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Referred to the House,2023-04-24,['referral'],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-02-09,"['committee-passage', 'referral-committee']",IN,2023 +Representatives Cash B and Carbaugh added as coauthors,2023-02-20,[],IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +Representatives Bartels and Pack R added as coauthors,2023-01-17,[],IN,2023 +Senator Taylor G added as second author,2023-03-21,[],IN,2023 +Referred to the Senate,2023-03-21,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Senator Niemeyer added as second author,2023-01-23,[],IN,2023 +Amendment #1 (Brown L) prevailed; voice vote,2023-01-30,['amendment-passage'],IN,2023 +Senator Sandlin added as second author,2023-01-30,[],IN,2023 +"Coauthored by Representatives Harris, Jackson, Pack, Bartlett, Hatcher, Pryor, Shackleford, Smith V, Summers",2023-02-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +Representative Andrade M added as coauthor,2023-01-23,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +Referred to the House,2023-03-09,['referral'],IN,2023 +Senator Buchanan added as third author,2023-01-17,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Senator Bray removed as author,2023-02-09,[],IN,2023 +Senator Holdman added as second author,2023-01-24,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +Senators Rogers and Yoder added as coauthors,2023-01-26,[],IN,2023 +Representative Porter added as coauthor,2023-01-26,[],IN,2023 +Representative Haggard C added as coauthor,2023-01-26,[],IN,2023 +Senator Ford Jon removed as coauthor,2023-01-23,[],IN,2023 +Senator Mishler added as second author,2023-01-23,[],IN,2023 +Senator Tomes added as coauthor,2023-01-26,[],IN,2023 +Representatives Schaibley and Garcia Wilburn V added as coauthors,2023-01-23,[],IN,2023 +First reading: adopted voice vote,2023-03-30,"['passage', 'reading-1']",IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-02-06,['committee-passage'],IN,2023 +Representative Clere added as coauthor,2023-01-30,[],IN,2023 +Representatives Judy and Bartels added as coauthors,2023-01-12,[],IN,2023 +First reading: adopted voice vote,2023-03-23,"['passage', 'reading-1']",IN,2023 +Referred to the Senate,2023-02-01,['referral'],IN,2023 +Representative McGuire J added as coauthor,2023-02-16,[],IN,2023 +Second reading: ordered engrossed,2023-02-23,['reading-2'],IN,2023 +House sponsor: Representative Pierce M,2023-01-31,[],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Tax and Fiscal Policy,2023-01-23,"['committee-passage', 'referral-committee']",IN,2023 +Amendment #1 (Young M) prevailed; voice vote,2023-02-06,['amendment-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-01-30,['committee-passage'],IN,2023 +Senator Dernulc added as coauthor,2023-01-24,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +Senator Becker added as third author,2023-01-30,[],IN,2023 +Representative Pierce K added as coauthor,2023-01-12,[],IN,2023 +Senator Johnson added as coauthor,2023-01-17,[],IN,2023 +Senator Hunley added as coauthor,2023-01-12,[],IN,2023 +Representative Torr added as coauthor,2023-01-19,[],IN,2023 +Senator Yoder added as coauthor,2023-01-17,[],IN,2023 +Second reading: ordered engrossed,2023-01-26,['reading-2'],IN,2023 +Amendment #1 (Young M) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +"Senators Alexander, Baldwin, Bassler, Becker, Bohacek, Bray, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Johnson, Koch, Leising, Messmer, Mishler, Niemeyer, Perfect, Raatz, Rogers, Sandlin, Tomes, Walker G, Walker K, Young M, Zay added as coauthors",2023-01-17,[],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +"Senators Alexander, Alting, Bassler, Becker, Bohacek, Breaux, Brown L, Buchanan, Buck, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Gaskill, Glick, Holdman, Hunley, Johnson, Koch, Leising, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Raatz, Randolph, Rogers, Sandlin, Tomes, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2023-04-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +Senator Ford Jon added as second author,2023-02-13,[],IN,2023 +"Committee report: do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +Senator Messmer added as second author,2023-02-09,[],IN,2023 +Cosponsor: Representative Boy,2023-03-27,[],IN,2023 +Senator Dernulc added as second author,2023-02-14,[],IN,2023 +"Committee report: do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Senator Leising removed as coauthor,2023-01-26,[],IN,2023 +Second reading: ordered engrossed,2023-01-23,['reading-2'],IN,2023 +Senator Ford J.D. added as coauthor,2023-01-12,[],IN,2023 +Representative Abbott D added as coauthor,2023-01-19,[],IN,2023 +Referred to the House,2023-03-15,['referral'],IN,2023 +Senator Mishler added as second author,2023-02-13,[],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +Senator Koch added as second author,2023-01-30,[],IN,2023 +House sponsor: Representative Summers,2023-04-20,[],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-01-26,"['committee-passage', 'referral-committee']",IN,2023 +Amendment #1 (Zay) prevailed; voice vote,2023-02-13,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +Representative Cash B added as coauthor,2023-01-24,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Senator Gaskill added as second author,2023-02-21,[],IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +Coauthored by Representative GiaQuinta,2022-11-22,[],IN,2023 +Senator Bray removed as author,2023-02-13,[],IN,2023 +Senator Holdman added as second author,2023-01-23,[],IN,2023 +"Senators Alexander, Alting, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Gaskill, Holdman, Hunley, Koch, Leising, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Raatz, Randolph, Rogers, Sandlin, Taylor G, Tomes, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2023-03-14,[],IN,2023 +Representative Ledbetter C added as coauthor,2023-01-17,[],IN,2023 +Senator Freeman added as second author,2023-01-31,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-06,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-26,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +Representative Karickhoff added as coauthor,2023-01-30,[],IN,2023 +"Reassigned to Committee on Family, Children and Human Affairs",2023-01-19,[],IN,2023 +Referred to the House,2023-01-24,['referral'],IN,2023 +Representative Pack R added as coauthor,2023-03-13,[],IN,2023 +Senator Byrne added as third author,2023-01-26,[],IN,2023 +Senator Deery added as third author,2023-01-19,[],IN,2023 +Representative Lucas added as coauthor,2023-01-10,[],IN,2023 +Representatives Miller D and Jordan added as coauthors,2023-02-14,[],IN,2023 +Senator Mishler added as coauthor,2023-01-23,[],IN,2023 +Senator Buck added as second author,2023-01-24,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +Senator Ford Jon added as second author,2023-02-07,[],IN,2023 +Representative Moed added as coauthor,2023-01-30,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +Referred to the Senate,2023-04-18,['referral'],IN,2023 +Second reading: ordered engrossed,2023-01-26,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +Representative Cash B added as coauthor,2023-01-19,[],IN,2023 +Senator Garten added as coauthor,2023-01-30,[],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson, Koch, Leising, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Raatz, Randolph, Rogers, Sandlin, Taylor G, Tomes, Walker G, Yoder, Young M, Zay added as coauthors",2023-03-16,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Senator Gaskill added as second author,2023-02-02,[],IN,2023 +Senator Becker added as second author,2023-02-09,[],IN,2023 +Cosponsor: Representative Speedy,2023-03-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-24,[],IN,2023 +Representative Vermilion A added as coauthor,2023-01-19,[],IN,2023 +Senator Koch added as second author,2023-01-26,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +Senator Ford J.D. added as coauthor,2023-01-23,[],IN,2023 +Senator Niemeyer removed as author,2023-01-19,[],IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Representative Payne Z added as coauthor,2023-01-09,[],IN,2023 +Representative Hamilton added as coauthor,2023-01-26,[],IN,2023 +Senator Freeman added as coauthor,2023-01-23,[],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +Representative Jackson added as coauthor,2023-01-30,[],IN,2023 +"Committee report: do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +Senator Glick added as second author,2023-02-06,[],IN,2023 +Senator Holdman added as author,2023-02-06,[],IN,2023 +Amendment #3 (Breaux) failed; voice vote,2023-01-26,"['amendment-failure', 'failure']",IN,2023 +Senators Bassler and Alting added as coauthors,2023-01-31,[],IN,2023 +Senate sponsor: Senator Freeman,2023-04-12,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-06,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Senator Freeman added as second author,2023-02-14,[],IN,2023 +Representative Errington added as coauthor,2023-01-12,[],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-01-24,"['committee-passage', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Representative Harris added as coauthor,2023-03-20,[],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Johnson, Koch, Leising, Messmer, Mishler, Niemeyer, Perfect, Raatz, Rogers, Sandlin, Tomes, Walker G, Walker K, Young M, Zay added as coauthors",2023-02-02,[],IN,2023 +"Committee report: do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +Cosponsor: Representative Frye,2023-04-10,[],IN,2023 +Representative Porter added as coauthor,2023-01-24,[],IN,2023 +Referred to the Senate,2023-01-09,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Representatives Behning and Davis M added as coauthors,2023-01-30,[],IN,2023 +Cosponsor: Representative Bauer M,2023-01-31,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +Referred to the House,2023-03-23,['referral'],IN,2023 +Referred to the Senate,2023-04-12,['referral'],IN,2023 +Representative Garcia Wilburn V added as coauthor,2023-01-31,[],IN,2023 +Representative Clere added as coauthor,2023-01-30,[],IN,2023 +Representative Errington added as coauthor,2023-01-17,[],IN,2023 +Senator Koch added as second author,2023-02-09,[],IN,2023 +Senator Donato added as third author,2023-01-24,[],IN,2023 +"Committee report: do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +Representative May added as coauthor,2023-01-09,[],IN,2023 +Senator Gaskill added as coauthor,2023-02-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-30,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Senator Becker added as coauthor,2023-01-30,[],IN,2023 +First reading: adopted voice vote,2023-04-03,"['passage', 'reading-1']",IN,2023 +"Committee report: do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Senator Randolph added as coauthor,2023-02-16,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Representatives Pressel and Frye added as coauthors,2023-01-24,[],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +Representative Bartels added as coauthor,2023-01-12,[],IN,2023 +Second reading: ordered engrossed,2023-01-26,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +Senator Koch added as second author,2023-02-09,[],IN,2023 +Senator Walker K added as second author,2023-02-16,[],IN,2023 +Senator Rogers added as third author,2023-01-17,[],IN,2023 +Senator Buchanan added as third author,2023-01-24,[],IN,2023 +Senate sponsors: Senators Garten and Byrne,2023-04-25,[],IN,2023 +Referred to the Senate,2023-04-18,['referral'],IN,2023 +Senator Yoder added as coauthor,2023-01-17,[],IN,2023 +"Second reading: adopted Roll Call 12: yeas 91, nays 0",2023-01-19,"['passage', 'reading-2']",IN,2023 +Referred to the Senate,2023-04-18,['referral'],IN,2023 +Senator Bohacek added as second author,2023-02-07,[],IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-01-17,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-01-23,['reading-2'],IN,2023 +Representative Frye added as coauthor,2023-02-07,[],IN,2023 +Referred to the Senate,2023-03-29,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Senator Qaddoura added as third author,2023-02-09,[],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +Representative Judy added as coauthor,2023-01-19,[],IN,2023 +"Committee report: do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +Senator Messmer added as second author,2023-01-31,[],IN,2023 +Representative Jackson added as coauthor,2023-01-12,[],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Amendment #1 (Vermilion) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +First reading: adopted voice vote,2023-04-17,"['passage', 'reading-1']",IN,2023 +Representative Lindauer added as coauthor,2023-01-23,[],IN,2023 +Representative Klinker added as coauthor,2023-02-06,[],IN,2023 +Second reading: ordered engrossed,2023-01-19,['reading-2'],IN,2023 +First reading: adopted voice vote,2023-04-06,"['passage', 'reading-1']",IN,2023 +Second reading: ordered engrossed,2023-01-19,['reading-2'],IN,2023 +Senator Holdman removed as third author,2023-01-30,[],IN,2023 +Representative Andrade M added as coauthor,2023-01-30,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +"Second reading: adopted Roll Call 11: yeas 91, nays 0",2023-01-19,"['passage', 'reading-2']",IN,2023 +Representatives Judy and Meltzer J added as coauthors,2023-01-19,[],IN,2023 +Representatives Boy and Pressel added as coauthors,2023-01-24,[],IN,2023 +Representative Ledbetter C added as author,2023-01-12,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +Pursuant to Senate Rule 68(b); reassigned to Committee on Appropriations,2023-01-19,['referral-committee'],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Amendment #2 (Freeman) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +Representative Lucas added as coauthor,2023-01-23,[],IN,2023 +Senator Baldwin added as third author,2023-01-11,[],IN,2023 +Cosponsor: Representative Cash B,2023-02-09,[],IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +Representatives McGuire J and Hostettler added as coauthors,2023-01-23,[],IN,2023 +Representative Haggard C added as coauthor,2023-01-19,[],IN,2023 +Representative GiaQuinta removed as coauthor,2023-01-19,[],IN,2023 +Representative King J added as coauthor,2023-01-23,[],IN,2023 +Representative Gore M added as coauthor,2023-01-17,[],IN,2023 +Representative Lauer added as coauthor,2023-01-12,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-28,['referral'],IN,2023 +Representative Payne Z added as coauthor,2023-01-12,[],IN,2023 +Representatives Torr and Steuerwald added as coauthors,2023-02-16,[],IN,2023 +Second reading: ordered engrossed,2023-02-23,['reading-2'],IN,2023 +Senator Hunley added as coauthor,2023-01-19,[],IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +Referred to the House,2023-04-04,['referral'],IN,2023 +Representative May added as coauthor,2023-01-23,[],IN,2023 +Amendment #1 (Freeman) prevailed; voice vote,2023-02-23,['amendment-passage'],IN,2023 +Senator Niezgodski added as second author,2023-01-26,[],IN,2023 +Representative Cherry removed as coauthor,2023-02-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Senator Bohacek added as second author,2023-01-26,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +Senator Crider added as second author,2023-02-02,[],IN,2023 +"Committee report: do pass, adopted",2023-02-06,['committee-passage'],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson, Koch, Leising, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Raatz, Randolph, Rogers, Sandlin, Taylor G, Tomes, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2023-03-21,[],IN,2023 +Senator Taylor G removed as author,2023-01-23,[],IN,2023 +Amendment #1 (Glick) prevailed; voice vote,2023-02-23,['amendment-passage'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-02,[],IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +Representative Payne Z added as coauthor,2023-02-06,[],IN,2023 +Senator Raatz added as second author,2023-02-09,[],IN,2023 +Senator Baldwin added as second author,2023-02-09,[],IN,2023 +"Senate sponsors: Senators Taylor G, Qaddoura, Breaux",2023-03-20,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Cosponsors: Representatives Schaibley and Torr,2023-03-20,[],IN,2023 +Referred to the Senate,2023-03-09,['referral'],IN,2023 +Senator Busch added as second author,2023-01-30,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Representative Criswell C added as coauthor,2023-01-12,[],IN,2023 +Representative Aylesworth added as coauthor,2023-02-13,[],IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +Referred to the House,2023-03-13,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Senator Ford J.D. added as coauthor,2023-02-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Cosponsors: Representatives Dvorak and Teshka J,2023-02-13,[],IN,2023 +Representative Andrade M added as coauthor,2023-01-19,[],IN,2023 +Representative Hall D added as coauthor,2023-01-24,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Senator Zay added as second author,2023-02-06,[],IN,2023 +Representatives Morris and Teshka J added as coauthors,2023-01-23,[],IN,2023 +Representatives Snow C and Bartlett added as coauthors,2023-01-24,[],IN,2023 +Representative Criswell C added as author,2023-01-12,[],IN,2023 +Senator Buck added as coauthor,2023-03-27,[],IN,2023 +Referred to the Senate,2023-02-23,['referral'],IN,2023 +Senator Bohacek added as third author,2023-02-13,[],IN,2023 +Senators Ford Jon and Niemeyer added as coauthors,2023-01-19,[],IN,2023 +Representative Davis M added as coauthor,2023-01-24,[],IN,2023 +Referred to the Senate,2023-02-07,['referral'],IN,2023 +Referred to the Senate,2023-04-13,['referral'],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Senator Freeman added as third author,2023-01-17,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-02-13,['committee-passage'],IN,2023 +Referred to the House,2023-04-05,['referral'],IN,2023 +"Committee report: do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +Representative Jackson added as coauthor,2023-01-12,[],IN,2023 +Senator Yoder added as coauthor,2023-01-26,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Senator Freeman added as second author,2023-01-23,[],IN,2023 +Senator Rogers added as third author,2023-01-17,[],IN,2023 +Reassigned to Committee on Insurance,2023-01-19,[],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Amendment #1 (Freeman) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +Senator Randolph added as coauthor,2023-01-23,[],IN,2023 +Second reading: ordered engrossed,2023-01-23,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +Representative Olthoff added as coauthor,2023-01-24,[],IN,2023 +Representative Gore M added as coauthor,2023-01-12,[],IN,2023 +Senator Dernulc added as second author,2023-02-16,[],IN,2023 +Representative Campbell added as coauthor,2023-01-26,[],IN,2023 +Senator Taylor G added as second author,2023-01-19,[],IN,2023 +Representative Moed added as coauthor,2023-01-12,[],IN,2023 +Senator Niezgodski added as coauthor,2023-01-26,[],IN,2023 +"Committee report: do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +Representative Jackson added as coauthor,2023-01-30,[],IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-30,['committee-passage'],IN,2023 +Senator Alting added as third author,2023-01-10,[],IN,2023 +House sponsor: Representative Huston,2023-02-20,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Senator Crane added as second author,2023-02-13,[],IN,2023 +Representative Andrade M added as coauthor,2023-01-19,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +Senator Brown L added as second author,2023-01-23,[],IN,2023 +Representative Payne Z added as coauthor,2023-01-30,[],IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-13,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +Representative Payne Z added as coauthor,2023-01-30,[],IN,2023 +Representative Morris added as coauthor,2023-01-23,[],IN,2023 +Senator Pol added as coauthor,2023-01-17,[],IN,2023 +Representative Heaton added as coauthor,2023-01-31,[],IN,2023 +Amendment #1 (Becker) prevailed; voice vote,2023-02-21,['amendment-passage'],IN,2023 +Representatives Negele and Jeter C added as coauthors,2023-02-16,[],IN,2023 +"Representatives Bartels, Baird, DeLaney added as coauthors",2023-01-19,[],IN,2023 +Senator Qaddoura added as coauthor,2023-02-07,[],IN,2023 +Representative Clere added as coauthor,2023-01-30,[],IN,2023 +Referred to the Senate,2023-03-13,['referral'],IN,2023 +Senator Garten added as third author,2023-01-19,[],IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Representative Andrade M added as coauthor,2023-01-19,[],IN,2023 +Referred to the Senate,2023-04-06,['referral'],IN,2023 +Representative DeLaney added as coauthor,2023-01-24,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-19,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Senator Ford J.D. added as coauthor,2023-02-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +Representative Clere added as coauthor,2023-02-06,[],IN,2023 +Senate sponsor: Senator Buck,2023-04-24,[],IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Representative Gore M added as coauthor,2023-01-24,[],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +House sponsor: Representative Bauer M,2023-01-09,[],IN,2023 +Referred to the Senate,2023-01-09,['referral'],IN,2023 +"Committee report: do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +Reassigned to Committee on Public Health,2023-01-23,[],IN,2023 +Senator Raatz added as second author,2023-02-23,[],IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-01-23,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-02,[],IN,2023 +First reading: adopted voice vote,2023-04-12,"['passage', 'reading-1']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Representative Pryor added as coauthor,2023-02-13,[],IN,2023 +Representative Lauer added as coauthor,2023-01-19,[],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +Representative Fleming added as coauthor,2023-01-24,[],IN,2023 +Senator Doriot added as second author,2023-01-31,[],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson, Koch, Leising, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Raatz, Randolph, Rogers, Sandlin, Taylor G, Tomes, Walker G, Yoder, Young M, Zay added as coauthors",2023-02-06,[],IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Representative Sweet L added as coauthor,2023-01-12,[],IN,2023 +Senator Perfect added as third author,2023-01-26,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Tax and Fiscal Policy,2023-02-09,"['committee-passage', 'referral-committee']",IN,2023 +Referred to the Senate,2023-03-22,['referral'],IN,2023 +"Senators Gaskill, Buck, Zay, Bassler added as coauthors",2023-01-30,[],IN,2023 +First reading: adopted voice vote,2023-04-24,"['passage', 'reading-1']",IN,2023 +Representative Bartlett added as coauthor,2023-01-24,[],IN,2023 +Referred to the House,2023-03-21,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Senator Randolph added as coauthor,2023-02-27,[],IN,2023 +"Representatives Jeter C, King J, McNamara removed as coauthors",2023-01-19,[],IN,2023 +Senator Freeman added as second author,2023-01-30,[],IN,2023 +Representative Johnson added as coauthor,2023-02-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-01-26,['reading-2'],IN,2023 +Representative Bartels added as coauthor,2023-01-12,[],IN,2023 +Representative Miller D added as coauthor,2023-02-06,[],IN,2023 +Senator Qaddoura added as coauthor,2023-02-02,[],IN,2023 +Amendment #1 (Buchanan) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson, Koch, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Raatz, Randolph, Rogers, Sandlin, Taylor G, Tomes, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2023-02-07,[],IN,2023 +Referred to the Senate,2023-04-12,['referral'],IN,2023 +House sponsor: Representative Pack,2023-03-14,[],IN,2023 +Referred to the House,2023-04-12,['referral'],IN,2023 +Senator Bohacek added as second author,2023-01-24,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Representative May added as coauthor,2023-02-06,[],IN,2023 +Representative Schaibley added as coauthor,2023-01-23,[],IN,2023 +"Representatives Torr, Jeter C, Hatfield added as coauthors",2023-02-16,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Pursuant to Senate Rule 68(b); reassigned to Committee on Rules and Legislative Procedure,2023-02-21,['referral-committee'],IN,2023 +"Committee report: do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +Representative Jackson added as coauthor,2023-01-12,[],IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Pursuant to Senate Rule 68(b); reassigned to Committee on Health and Provider Services,2023-02-06,['referral-committee'],IN,2023 +Second reading: ordered engrossed,2023-01-26,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +Senator Glick added as third author,2023-01-24,[],IN,2023 +Senator Gaskill added as second author,2023-02-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-01-26,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +Representative Shackleford removed as coauthor,2023-01-26,[],IN,2023 +Representative Pierce M added as coauthor,2023-01-24,[],IN,2023 +Amendment #1 (Freeman) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-01-19,['reading-2'],IN,2023 +Senator Randolph added as coauthor,2023-02-16,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Senators Doriot and Qaddoura added as coauthors,2023-02-20,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-01-26,"['committee-passage', 'referral-committee']",IN,2023 +Senator Donato added as second author,2023-02-09,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-31,[],IN,2023 +Representative Miller D added as coauthor,2023-02-16,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Representatives Pressel and Andrade M added as coauthors,2023-01-12,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-01-30,['committee-passage'],IN,2023 +Referred to the Senate,2023-03-21,['referral'],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson, Koch, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Raatz, Randolph, Rogers, Sandlin, Taylor G, Tomes, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2023-02-21,[],IN,2023 +Senator Glick added as third author,2023-01-31,[],IN,2023 +Senator Charbonneau added as third author,2023-01-30,[],IN,2023 +Senator Bray removed as author,2023-01-24,[],IN,2023 +Representative Patterson L added as coauthor,2023-01-24,[],IN,2023 +Representatives Morris and Lehman added as coauthors,2023-02-20,[],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Senator Buchanan added as third author,2023-01-19,[],IN,2023 +Representatives King J and Hatfield added as coauthors,2023-02-09,[],IN,2023 +Representative May added as coauthor,2023-01-24,[],IN,2023 +Referred to the House,2023-02-14,['referral'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-01-19,"['reading-1', 'referral-committee']",IN,2023 +Senator Randolph added as coauthor,2023-02-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Senator Johnson removed as third author,2023-01-19,[],IN,2023 +Senator Messmer added as author,2023-02-20,[],IN,2023 +Senator Young M added as third author,2023-01-23,[],IN,2023 +Second reading: ordered engrossed,2023-02-27,['reading-2'],IN,2023 +Representative Cash B added as coauthor,2023-01-19,[],IN,2023 +Senator Doriot added as second author,2023-01-26,[],IN,2023 +Representative Schaibley added as coauthor,2023-01-19,[],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson, Leising, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Raatz, Randolph, Rogers, Sandlin, Taylor G, Tomes, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2023-03-07,[],IN,2023 +"Representatives Engleman, Smaltz, Shackleford removed as coauthors",2023-01-12,[],IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-01-19,['reading-2'],IN,2023 +Referred to the Senate,2023-03-21,['referral'],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +Senator Bohacek added as second author,2023-01-24,[],IN,2023 +Senator Bray removed as author,2023-02-02,[],IN,2023 +Representative Hamilton added as coauthor,2023-01-26,[],IN,2023 +Referred to the Senate,2023-02-21,['referral'],IN,2023 +Senator Charbonneau added as author,2023-01-26,[],IN,2023 +Senator Doriot added as second author,2023-01-26,[],IN,2023 +Senator Koch added as second author,2023-01-19,[],IN,2023 +House sponsor: Representative DeVon,2023-04-04,[],IN,2023 +First reading: adopted voice vote,2023-01-17,"['passage', 'reading-1']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Representative Miller D added as coauthor,2023-02-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Representative McGuire J added as coauthor,2023-01-19,[],IN,2023 +Senator Koch added as second author,2023-01-19,[],IN,2023 +Senator Pol added as coauthor,2023-01-31,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Representative Andrade M added as coauthor,2023-01-17,[],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-02-06,"['committee-passage', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Senator Koch added as second author,2023-01-23,[],IN,2023 +Senator Breaux added as coauthor,2023-01-26,[],IN,2023 +Senator Qaddoura added as third author,2023-02-13,[],IN,2023 +Senator Perfect added as third author,2023-01-23,[],IN,2023 +Representative Jackson added as coauthor,2023-01-24,[],IN,2023 +Second reading: ordered engrossed,2023-02-09,['reading-2'],IN,2023 +First reading: adopted voice vote,2023-02-02,"['passage', 'reading-1']",IN,2023 +"Committee report: do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +Senate sponsors: Senators Buchanan and Ford J.D.,2023-04-17,[],IN,2023 +Senator Charbonneau added as third author,2023-02-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +Representative Lucas added as coauthor,2023-01-12,[],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson, Koch, Leising, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Raatz, Randolph, Rogers, Sandlin, Taylor G, Tomes, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2023-02-06,[],IN,2023 +Senator Rogers added as second author,2023-02-13,[],IN,2023 +Senator Melton added as second author,2023-02-09,[],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Senator Ford J.D. added as coauthor,2023-01-26,[],IN,2023 +Representative Pryor added as coauthor,2023-01-24,[],IN,2023 +Representative GiaQuinta removed as coauthor,2023-02-02,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Senator Koch added as second author,2023-01-19,[],IN,2023 +Representatives Speedy and McGuire J added as coauthors,2023-01-19,[],IN,2023 +Representative Cash B added as coauthor,2023-02-16,[],IN,2023 +"Coauthored by Representatives Hamilton, Pierce M, Harris, Hatcher, Summers, GiaQuinta, Pryor, Pack, Klinker, Campbell, Jackson, Bartlett, Boy, DeLaney, Fleming, Pfaff, Garcia Wilburn, Bauer M, Porter, Speedy, Olthoff, Morrison, Slager, Aylesworth, Lindauer, Borders, Abbott, Schaibley, Negele, Zent",2023-04-18,[],IN,2023 +Senator Ford Jon added as third author,2023-01-26,[],IN,2023 +Senator Sandlin added as second author,2023-02-06,[],IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +Amendment #4 (Jeter) prevailed; voice vote,2023-01-23,['amendment-passage'],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +Senator Doriot added as second author,2023-02-14,[],IN,2023 +Senator Qaddoura added as third author,2023-02-07,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Referred to the Senate,2023-03-06,['referral'],IN,2023 +"Committee report: do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Representative Haggard C added as coauthor,2023-01-19,[],IN,2023 +Representatives Lindauer and Miller K added as coauthors,2023-01-24,[],IN,2023 +Senator Messmer added as second author,2023-02-14,[],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Senator Buck added as third author,2023-04-11,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +Senator Niezgodski added as author,2023-01-26,[],IN,2023 +Senator Ford Jon added as second author,2023-02-13,[],IN,2023 +Senator Holdman added as second author,2023-02-14,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-09,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +Senator Garten added as coauthor,2023-01-23,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-24,[],IN,2023 +Senator Messmer added as second author,2023-01-19,[],IN,2023 +Amendment #3 (Ford Jon) prevailed; voice vote,2023-02-16,['amendment-passage'],IN,2023 +Senator Yoder added as second author,2023-02-02,[],IN,2023 +House sponsor: Representative Thompson,2023-04-10,[],IN,2023 +"Committee report: do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +Senate sponsor: Senator Ford J.D.,2023-04-18,[],IN,2023 +Representative Pack R added as coauthor,2023-01-17,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-26,[],IN,2023 +Senator Tomes added as coauthor,2023-01-26,[],IN,2023 +Senator Becker added as coauthor,2023-02-20,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Senator Garten added as third author,2023-01-26,[],IN,2023 +First reading: adopted voice vote,2023-02-28,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-04-10,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-04-12,"['passage', 'reading-1']",IN,2023 +Senator Yoder added as third author,2023-01-23,[],IN,2023 +Representative Steuerwald added as coauthor,2023-01-19,[],IN,2023 +Representative Porter added as coauthor,2023-02-09,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Cosponsors: Representatives Dvorak and Teshka J,2023-01-09,[],IN,2023 +"Third reading: passed; Roll Call 179: yeas 31, nays 18",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Cosponsors: Representatives Wesco, Teshka J, Miller D, Culp K, Jordan, Abbott D, Pressel, Snow C, Manning, King J, Sweet L, Bauer M, Dvorak, Boy",2023-04-04,[],IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-19,[],IN,2023 +Senator Melton removed as second author,2023-02-14,[],IN,2023 +Amendment #1 (Harris) motion withdrawn,2023-02-22,"['amendment-withdrawal', 'withdrawal']",IN,2023 +Second reading: adopted voice vote,2023-02-02,"['passage', 'reading-2']",IN,2023 +Amendment #1 (Clere) prevailed; voice vote,2023-02-14,['amendment-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +Senators Brown L and Freeman added as coauthors,2023-01-26,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 127: yeas 93, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Buck added as third author,2023-02-14,[],IN,2023 +Senator Dernulc added as coauthor,2023-01-23,[],IN,2023 +"Senators Buchanan, Donato, Messmer added as coauthors",2023-02-14,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Referred to the House,2023-02-09,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-04-17,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-02-16,"['passage', 'reading-1']",IN,2023 +Representative McGuire J added as coauthor,2023-02-06,[],IN,2023 +Senator Raatz added as coauthor,2023-02-13,[],IN,2023 +Senator Alting added as second author,2023-02-07,[],IN,2023 +Senator Hunley added as coauthor,2023-02-09,[],IN,2023 +Senator Tomes added as third author,2023-01-26,[],IN,2023 +"Representatives Frye, Moseley, Andrade M added as coauthors",2023-01-23,[],IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +First reading: adopted voice vote,2023-03-09,"['passage', 'reading-1']",IN,2023 +"Amendment #1 (Hunley) failed; Roll Call 31: yeas 7, nays 38",2023-01-30,"['amendment-failure', 'failure']",IN,2023 +Senator Charbonneau added as second author,2023-01-19,[],IN,2023 +"Representatives Davis M, Aylesworth, Andrade M added as coauthors",2023-01-23,[],IN,2023 +Senator Yoder added as third author,2023-02-09,[],IN,2023 +First reading: adopted voice vote,2023-04-18,"['passage', 'reading-1']",IN,2023 +Senator Glick added as third author,2023-01-19,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-16,[],IN,2023 +Senator Tomes added as second author,2023-02-20,[],IN,2023 +Second reading: ordered engrossed,2023-01-23,['reading-2'],IN,2023 +Representative Pryor removed as coauthor,2023-01-30,[],IN,2023 +Second reading: ordered engrossed,2023-02-22,['reading-2'],IN,2023 +Referred to the Senate,2023-02-02,['referral'],IN,2023 +"Third reading: passed; Roll Call 149: yeas 44, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Walker K added as coauthor,2023-02-06,[],IN,2023 +"Senators Doriot, Buck, Byrne, Crider, Hunley added as coauthors",2023-02-14,[],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +"Representatives Pressel, Miller D, Abbott D added as coauthors",2023-01-24,[],IN,2023 +"Committee report: do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Senator Niemeyer added as coauthor,2023-02-27,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-07,[],IN,2023 +Amendment #4 (Goodrich) prevailed; voice vote,2023-02-02,['amendment-passage'],IN,2023 +Senator Brown L added as second author,2023-02-20,[],IN,2023 +Senator Becker added as coauthor,2023-02-13,[],IN,2023 +First reading: adopted voice vote,2023-02-09,"['passage', 'reading-1']",IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Senator Charbonneau added as second author,2023-02-13,[],IN,2023 +Representative Pfaff added as coauthor,2023-02-13,[],IN,2023 +Representative Patterson L added as coauthor,2023-02-06,[],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-22,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-24,[],IN,2023 +First reading: adopted voice vote,2023-03-27,"['passage', 'reading-1']",IN,2023 +Representative Johnson added as coauthor,2023-04-27,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-01-23,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 11: yeas 48, nays 0",2023-01-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Baldwin added as coauthor,2023-01-26,[],IN,2023 +Referred to the House,2023-02-22,['referral'],IN,2023 +Senator Walker K added as coauthor,2023-01-24,[],IN,2023 +First reading: adopted voice vote,2023-04-13,"['passage', 'reading-1']",IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +Amendment #1 (Pol) failed; voice vote,2023-01-30,"['amendment-failure', 'failure']",IN,2023 +Senator Donato added as third author,2023-02-06,[],IN,2023 +Senator Breaux added as second author,2023-01-26,[],IN,2023 +Senator Qaddoura added as coauthor,2023-01-26,[],IN,2023 +Senator Randolph added as coauthor,2023-02-09,[],IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Veterans Affairs and The Military,2023-01-26,"['committee-passage', 'referral-committee']",IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-31,[],IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +Senator Randolph added as third author,2023-01-19,[],IN,2023 +Second reading: ordered engrossed,2023-01-23,['reading-2'],IN,2023 +Amendment #1 (Lehman) prevailed; voice vote,2023-02-14,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-01-19,['reading-2'],IN,2023 +"Representatives McNamara, King J, Snow C added as coauthors",2023-01-23,[],IN,2023 +Committee report: Pursuant to Senate Rule 66(b); approved by Rules Committee as amended by Senate Committee on Homeland Security and Transportation.,2023-02-23,[],IN,2023 +Senator Randolph added as coauthor,2023-02-09,[],IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Representatives Olthoff and Summers added as coauthors,2023-01-30,[],IN,2023 +Representative McNamara added as coauthor,2023-01-24,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Senator Crane added as coauthor,2023-03-27,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-14,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-16,[],IN,2023 +Senate sponsor: Senator Alting,2023-01-23,[],IN,2023 +Senator Leising added as third author,2023-02-02,[],IN,2023 +Representative Bartlett added as coauthor,2023-01-24,[],IN,2023 +Senator Alting added as second author,2023-01-24,[],IN,2023 +Senators Johnson and Rogers added as coauthors,2023-01-26,[],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Senator Becker added as coauthor,2023-01-31,[],IN,2023 +"Representatives May, Miller D, GiaQuinta added as coauthors",2023-02-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 30: yeas 89, nays 8",2023-01-24,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Buchanan added as third author,2023-02-23,[],IN,2023 +"Cosponsors: Representatives Huston, Cherry, Porter",2023-04-10,[],IN,2023 +"Committee report: do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Senators Doriot and Tomes added as coauthors,2023-04-11,[],IN,2023 +Representative Jackson added as coauthor,2023-01-30,[],IN,2023 +Senator Rogers added as third author,2023-02-14,[],IN,2023 +Senate sponsors: Senators Alting and Koch,2023-02-07,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-02-23,"['passage', 'reading-1']",IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +Senator Alting added as second author,2023-02-23,[],IN,2023 +Representative Miller K added as coauthor,2023-01-26,[],IN,2023 +"Committee report: do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Representative Bartels added as coauthor,2023-01-12,[],IN,2023 +"Committee report: do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-04-17,"['passage', 'reading-1']",IN,2023 +Amendment #1 (Young M) prevailed; voice vote,2023-01-24,['amendment-passage'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-26,[],IN,2023 +Representative Payne Z added as coauthor,2023-01-30,[],IN,2023 +Second reading: ordered engrossed,2023-01-24,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-21,['reading-2'],IN,2023 +Senator Bassler added as third author,2023-02-21,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Referred to the Senate,2023-04-25,['referral'],IN,2023 +Senate sponsors: Senators Bray and Taylor G,2023-01-09,[],IN,2023 +Representatives Carbaugh and Fleming added as coauthors,2023-02-06,[],IN,2023 +Referred to the House,2023-02-07,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Referred to the Senate,2023-04-25,['referral'],IN,2023 +Senator Glick added as third author,2023-01-31,[],IN,2023 +Referred to the Senate,2023-04-12,['referral'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-27,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Representative Teshka J added as coauthor,2023-02-09,[],IN,2023 +Amendment #2 (Pol) failed; voice vote,2023-02-20,"['amendment-failure', 'failure']",IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-07,[],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +Senator Ford Jon added as second author,2023-01-26,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-22,['reading-2'],IN,2023 +Representative Miller D added as coauthor,2023-02-02,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Representative Fleming removed as coauthor,2023-02-13,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-02,[],IN,2023 +"Senators Freeman, Sandlin, Koch, Glick added as coauthors",2023-01-19,[],IN,2023 +Senator Holdman added as coauthor,2023-01-26,[],IN,2023 +Senator Charbonneau added as second author,2023-02-20,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-07,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-19,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Representatives May and Lucas added as coauthors,2023-01-19,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +Amendment #1 (Pol) failed; voice vote,2023-02-07,"['amendment-failure', 'failure']",IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +Amendment #1 (Moed) prevailed; voice vote,2023-01-23,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-01-23,['reading-2'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-02,[],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +"Senators Messmer, Zay, Byrne, Sandlin, Niemeyer added as coauthors",2023-01-26,[],IN,2023 +Representative Fleming added as coauthor,2023-01-19,[],IN,2023 +Representative Haggard C added as coauthor,2023-01-19,[],IN,2023 +"Committee report: do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Senator Messmer added as coauthor,2023-01-26,[],IN,2023 +Amendment #4 (Raatz) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +First reading: adopted voice vote,2023-03-09,"['passage', 'reading-1']",IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +"Representatives Harris, Jackson, Pack R, Bartlett, Hatcher, Porter, Pryor, Shackleford, Summers added as coauthors",2023-01-12,[],IN,2023 +Second reading: call withdrawn,2023-01-30,"['reading-2', 'withdrawal']",IN,2023 +Cosponsors: Representatives Schaibley and Garcia Wilburn V,2023-02-20,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-16,['reading-2'],IN,2023 +Senator Bohacek added as second author,2023-02-02,[],IN,2023 +Senator Koch added as coauthor,2023-01-30,[],IN,2023 +"Representatives Bartels, Miller D, Summers added as coauthors",2023-02-13,[],IN,2023 +First reading: adopted voice vote,2023-03-23,"['passage', 'reading-1']",IN,2023 +Referred to the Senate,2023-01-17,['referral'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-09,[],IN,2023 +Second reading: ordered engrossed,2023-01-23,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +"Cosponsors: Representatives Gore, Hamilton, Garcia Wilburn V, Andrade M, Bartlett, Pryor, Summers, Porter, DeLaney, Shackleford, McGuire J",2023-03-14,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-02,[],IN,2023 +Representative Carbaugh added as coauthor,2023-01-31,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +First reading: adopted voice vote,2023-03-14,"['passage', 'reading-1']",IN,2023 +Senator Walker K added as coauthor,2023-01-10,[],IN,2023 +Representative Bartels added as coauthor,2023-01-12,[],IN,2023 +"Senators Deery, Alexander, Byrne, Freeman, Koch, Donato, Sandlin, Holdman added as coauthors",2023-01-17,[],IN,2023 +Senator Baldwin added as second author,2023-02-02,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-27,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-02,[],IN,2023 +Amendment #1 (Soliday) prevailed; voice vote,2023-02-14,['amendment-passage'],IN,2023 +Senators Ford J.D. and Hunley added as coauthors,2023-01-19,[],IN,2023 +Amendment #4 (Negele) prevailed; voice vote,2023-02-16,['amendment-passage'],IN,2023 +"Committee report: do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +Senator Ford Jon added as coauthor,2023-02-02,[],IN,2023 +Senator Koch added as author,2023-01-24,[],IN,2023 +Representative McGuire J removed as coauthor,2023-01-30,[],IN,2023 +"Committee report: do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Senator Becker added as coauthor,2023-01-19,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Representative Goodrich added as coauthor,2023-01-19,[],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +Senator Raatz added as author,2023-02-02,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +First reading: adopted voice vote,2023-03-23,"['passage', 'reading-1']",IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Senator Pol added as third author,2023-01-24,[],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +First reading: adopted voice vote,2023-02-23,"['passage', 'reading-1']",IN,2023 +Second reading: ordered engrossed,2023-01-23,['reading-2'],IN,2023 +Referred to the House,2023-03-07,['referral'],IN,2023 +Referred to the Senate,2023-04-19,['referral'],IN,2023 +Representative Jordan added as cosponsor,2023-03-23,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +"Senators Bassler, Becker, Bohacek, Donato, Raatz added as coauthors",2023-01-30,[],IN,2023 +Referred to the Senate,2023-02-28,['referral'],IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Referred to the Senate,2023-04-18,['referral'],IN,2023 +Amendment #1 (Smaltz) prevailed; voice vote,2023-01-26,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +Senator Buck added as coauthor,2023-02-16,[],IN,2023 +Returned to the Senate,2023-03-27,['receipt'],IN,2023 +Representative Wesco added as coauthor,2023-03-20,[],IN,2023 +Senator Randolph added as coauthor,2023-02-09,[],IN,2023 +Senator Buck added as author,2023-02-09,[],IN,2023 +Senator Koch added as second author,2023-01-23,[],IN,2023 +Second reading: ordered engrossed,2023-01-26,['reading-2'],IN,2023 +"Amendment #1 (Campbell) failed; Roll Call 10: yeas 28, nays 64",2023-01-19,"['amendment-failure', 'failure']",IN,2023 +Amendment #2 (Freeman) prevailed; voice vote,2023-02-02,['amendment-passage'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-02,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Amendment #1 (Alexander) prevailed; voice vote,2023-01-26,['amendment-passage'],IN,2023 +"Representatives Steuerwald, Jeter C, GiaQuinta added as coauthors",2023-01-24,[],IN,2023 +"Committee report: do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +Senate sponsor: Senator Holdman,2023-01-19,[],IN,2023 +Second reading: ordered engrossed,2023-01-19,['reading-2'],IN,2023 +Representative Pryor added as coauthor,2023-02-09,[],IN,2023 +"Third reading: passed; Roll Call 42: yeas 48, nays 1",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-01-26,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +"Senate sponsors: Senators Holdman, Baldwin, Randolph Lonnie M",2023-02-14,[],IN,2023 +Amendment #2 (Perfect) prevailed; voice vote,2023-02-23,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +Senators Walker K and Perfect added as coauthors,2023-01-19,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-02,[],IN,2023 +"Third reading: passed; Roll Call 55: yeas 49, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Busch added as coauthor,2023-02-13,[],IN,2023 +Second reading: ordered engrossed,2023-02-23,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-13,['reading-2'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-02,[],IN,2023 +Senator Ford Jon added as author,2023-02-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-13,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +Amendment #2 (Soliday) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +"Amendment #1 (Qaddoura) failed; Roll Call 25: yeas 8, nays 40",2023-01-26,"['amendment-failure', 'failure']",IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Referred to the Senate,2023-04-06,['referral'],IN,2023 +Senator Charbonneau added as second author,2023-01-30,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Second reading: adopted standing vote,2023-02-16,"['passage', 'reading-2']",IN,2023 +Representative Clere added as coauthor,2023-01-31,[],IN,2023 +Referred to the House,2023-04-20,['referral'],IN,2023 +Referred to the Senate,2023-04-25,['referral'],IN,2023 +Senator Ford Jon removed as coauthor,2023-01-30,[],IN,2023 +"Amendment #1 (Boy) failed; Roll Call 143: yeas 27, nays 64",2023-02-16,"['amendment-failure', 'failure']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Senator Johnson added as second author,2023-02-02,[],IN,2023 +Second reading: ordered engrossed,2023-02-09,['reading-2'],IN,2023 +Senator Glick added as second author,2023-02-16,[],IN,2023 +Senator Randolph added as coauthor,2023-02-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Senator Perfect added as author,2023-01-19,[],IN,2023 +"Representatives Meltzer J, Gore M, Ledbetter C added as coauthors",2023-01-31,[],IN,2023 +Amendment #1 (Melton) prevailed; voice vote,2023-01-30,['amendment-passage'],IN,2023 +Senator Freeman added as second author,2023-01-23,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-02,[],IN,2023 +First reading: adopted voice vote,2023-03-09,"['passage', 'reading-1']",IN,2023 +"Cosponsors: Senators Hunley, Melton, Randolph",2023-03-20,[],IN,2023 +First reading: adopted voice vote,2023-03-06,"['passage', 'reading-1']",IN,2023 +Referred to the Senate,2023-04-18,['referral'],IN,2023 +Representative Teshka J added as coauthor,2023-02-07,[],IN,2023 +Second reading: ordered engrossed,2023-02-09,['reading-2'],IN,2023 +Senate sponsors: Senators Bray and Taylor G,2023-01-09,[],IN,2023 +First reading: adopted voice vote,2023-02-16,"['passage', 'reading-1']",IN,2023 +"Senators Tomes, Ford J.D., Hunley, Doriot added as coauthors",2023-01-26,[],IN,2023 +Senator Glick added as coauthor,2023-01-30,[],IN,2023 +Amendment #1 (Becker) prevailed; voice vote,2023-02-23,['amendment-passage'],IN,2023 +Representative Lucas added as coauthor,2023-02-06,[],IN,2023 +"Amendment #2 (Moseley) failed; Roll Call 8: yeas 31, nays 61",2023-01-19,"['amendment-failure', 'failure']",IN,2023 +Senator Charbonneau added as third author,2023-01-17,[],IN,2023 +Senator Alting added as second author,2023-02-06,[],IN,2023 +Representative Bauer M added as coauthor,2023-01-31,[],IN,2023 +"Amendment #1 (Pack) failed; Roll Call 9: yeas 26, nays 67",2023-01-19,"['amendment-failure', 'failure']",IN,2023 +Representative Judy added as coauthor,2023-02-06,[],IN,2023 +"Amendment #3 (Pryor) failed; Roll Call 32: yeas 28, nays 63",2023-01-26,"['amendment-failure', 'failure']",IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-04-25,"['passage', 'reading-1']",IN,2023 +Referred to the House,2023-04-24,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Representative Prescott added as coauthor,2023-02-13,[],IN,2023 +Senator Perfect added as third author,2023-02-06,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-23,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-01-19,['committee-passage'],IN,2023 +Representatives Bartels and Baird added as coauthors,2023-01-19,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +First reading: adopted voice vote,2023-04-19,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-04-19,"['passage', 'reading-1']",IN,2023 +Referred to the Senate,2023-04-25,['referral'],IN,2023 +Senator Johnson added as second author,2023-02-20,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-09,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-27,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 71: yeas 62, nays 35",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Doriot added as third author,2023-02-14,[],IN,2023 +First reading: referred to the Committee on Ways and Means,2023-02-06,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +Representative Garcia Wilburn V added as coauthor,2023-01-30,[],IN,2023 +First reading: adopted voice vote,2022-11-22,"['passage', 'reading-1']",IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +First reading: adopted voice vote,2023-04-19,"['passage', 'reading-1']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Senator Donato added as coauthor,2023-01-31,[],IN,2023 +Senators Bassler and Crider added as coauthors,2023-01-30,[],IN,2023 +Representative McNamara added as coauthor,2023-01-31,[],IN,2023 +Amendment #1 (Randolph Lonnie M) prevailed; voice vote,2023-02-23,['amendment-passage'],IN,2023 +Representative Gore M added as coauthor,2023-01-19,[],IN,2023 +Second reading: ordered engrossed,2023-01-19,['reading-2'],IN,2023 +Senator Yoder added as coauthor,2023-01-30,[],IN,2023 +Second reading: ordered engrossed,2023-02-09,['reading-2'],IN,2023 +First reading: adopted voice vote,2023-03-23,"['passage', 'reading-1']",IN,2023 +Referred to the House,2023-03-09,['referral'],IN,2023 +Referred to the House,2023-03-21,['referral'],IN,2023 +Amendment #1 (Holdman) prevailed; voice vote,2023-01-23,['amendment-passage'],IN,2023 +Senator Baldwin added as coauthor,2023-01-24,[],IN,2023 +Representatives Miller D and Negele added as coauthors,2023-01-17,[],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +"Representatives Jordan, Goodrich, Klinker added as coauthors",2023-02-06,[],IN,2023 +Senate sponsor: Senator Crider,2023-02-06,[],IN,2023 +Senators Koch and Bohacek added as coauthors,2023-01-31,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-03-21,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-03-21,"['passage', 'reading-1']",IN,2023 +"Committee report: do pass, adopted",2023-01-24,['committee-passage'],IN,2023 +Representative Garcia Wilburn V added as coauthor,2023-02-20,[],IN,2023 +Representative Bartlett added as coauthor,2023-01-24,[],IN,2023 +Senator Niezgodski added as coauthor,2023-01-24,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Senator Charbonneau added as second author,2023-02-02,[],IN,2023 +Second reading: ordered engrossed,2023-02-22,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 10: yeas 48, nays 0",2023-01-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Amendment #1 (Campbell) failed; Roll Call 142: yeas 28, nays 62",2023-02-16,"['amendment-failure', 'failure']",IN,2023 +Senator Donato added as second author,2023-02-06,[],IN,2023 +Second reading: ordered engrossed,2023-02-21,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Representative Bartels added as coauthor,2023-01-12,[],IN,2023 +Representative Teshka J added as coauthor,2023-01-19,[],IN,2023 +First reading: adopted voice vote,2023-03-20,"['passage', 'reading-1']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +Senator Gaskill added as second author,2023-02-06,[],IN,2023 +Senator Rogers added as third author,2023-02-09,[],IN,2023 +Senator Zay added as third author,2023-01-26,[],IN,2023 +Second reading: ordered engrossed,2023-01-26,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Referred to the Senate,2023-04-03,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Senator Charbonneau added as third author,2023-02-13,[],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-02-02,"['committee-passage', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-01-26,['reading-2'],IN,2023 +Amendment #1 (Pol) prevailed; voice vote,2023-01-26,['amendment-passage'],IN,2023 +Referred to the House,2023-03-16,['referral'],IN,2023 +Second reading: ordered engrossed,2023-01-23,['reading-2'],IN,2023 +Senator Baldwin added as second author,2023-02-23,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-01-30,['reading-2'],IN,2023 +Senator Buck added as third author,2023-01-31,[],IN,2023 +Senator Messmer added as coauthor,2023-01-26,[],IN,2023 +"Senators Hunley, Melton, Niezgodski, Pol, Qaddoura, Randolph, Taylor G added as coauthors",2023-02-21,[],IN,2023 +Representative Lauer added as coauthor,2023-01-23,[],IN,2023 +First reading: adopted voice vote,2023-03-30,"['passage', 'reading-1']",IN,2023 +Senator Randolph added as coauthor,2023-02-09,[],IN,2023 +Amendment #1 (DeLaney) failed; voice vote,2023-02-22,"['amendment-failure', 'failure']",IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 196: yeas 52, nays 39",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-01-26,['reading-2'],IN,2023 +Representative Wesco added as coauthor,2023-02-27,[],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-06,['committee-passage'],IN,2023 +Senator Ford J.D. added as coauthor,2023-02-06,[],IN,2023 +Senator Crane added as third author,2023-02-09,[],IN,2023 +Senator Walker K added as third author,2023-02-14,[],IN,2023 +Senator Koch added as third author,2023-01-30,[],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson, Koch, Leising, Melton, Messmer, Niemeyer, Perfect, Pol, Qaddoura, Raatz, Randolph, Sandlin, Taylor G, Tomes, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2023-02-13,[],IN,2023 +Referred to the Senate,2023-04-25,['referral'],IN,2023 +Referred to the Senate,2023-04-25,['referral'],IN,2023 +Referred to the Senate,2023-03-23,['referral'],IN,2023 +First reading: adopted voice vote,2023-02-06,"['passage', 'reading-1']",IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Senator Randolph added as coauthor,2023-02-16,[],IN,2023 +Senate sponsor: Senator Charbonneau,2023-02-06,[],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Representative Garcia Wilburn V added as coauthor,2023-01-31,[],IN,2023 +Placed back on second reading,2023-02-06,[],IN,2023 +Senator Baldwin added as second author,2023-02-06,[],IN,2023 +Referred to the Senate,2023-04-12,['referral'],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson, Leising, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Raatz, Randolph, Rogers, Sandlin, Taylor G, Tomes, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2023-04-10,[],IN,2023 +First reading: adopted voice vote,2023-04-13,"['passage', 'reading-1']",IN,2023 +Senator Walker G added as second author,2023-01-26,[],IN,2023 +Senator Niezgodski added as coauthor,2023-02-09,[],IN,2023 +Senator Rogers added as third author,2023-01-26,[],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson, Koch, Leising, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Raatz, Randolph, Rogers, Sandlin, Tomes, Walker G, Walker K, Yoder, Zay added as coauthors",2023-03-21,[],IN,2023 +Referred to the Senate,2023-03-30,['referral'],IN,2023 +Senator Breaux added as second author,2023-01-26,[],IN,2023 +Amendment #3 (Thompson) prevailed; voice vote,2023-02-22,['amendment-passage'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-26,[],IN,2023 +Senate sponsor: Senator Ford Jon,2023-01-31,[],IN,2023 +Representative Frye added as coauthor,2023-01-30,[],IN,2023 +Representative Torr added as coauthor,2023-01-24,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-24,[],IN,2023 +Senator Freeman added as second author,2023-03-06,[],IN,2023 +Representative Frye added as coauthor,2023-02-07,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-17,[],IN,2023 +First reading: adopted voice vote,2023-02-06,"['passage', 'reading-1']",IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-19,[],IN,2023 +Senator Yoder added as author,2023-01-23,[],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Gaskill, Glick, Holdman, Hunley, Johnson, Koch, Leising, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Raatz, Randolph, Rogers, Sandlin, Tomes, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2023-02-02,[],IN,2023 +"Senators Alexander, Pol, Randolph added as coauthors",2023-02-06,[],IN,2023 +Senator Bohacek added as third author,2023-01-26,[],IN,2023 +Amendment #1 (Messmer) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +Senate sponsor: Senator Mishler,2023-01-30,[],IN,2023 +Second reading: ordered engrossed,2023-02-22,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-27,['reading-2'],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +Representative Fleming added as coauthor,2023-01-31,[],IN,2023 +"Third reading: passed; Roll Call 58: yeas 98, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the House,2023-03-28,['referral'],IN,2023 +Amendment #2 (Freeman) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-06,['reading-2'],IN,2023 +Senator Crane added as coauthor,2023-01-30,[],IN,2023 +Representative Lauer added as coauthor,2023-02-21,[],IN,2023 +Senator Freeman added as third author,2023-01-24,[],IN,2023 +Amendment #1 (Pol) failed; voice vote,2023-02-20,"['amendment-failure', 'failure']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-04-12,"['passage', 'reading-1']",IN,2023 +Senator Qaddoura added as coauthor,2023-02-07,[],IN,2023 +Representative Johnson added as coauthor,2023-01-12,[],IN,2023 +Amendment #4 (Koch) prevailed; voice vote,2023-02-02,['amendment-passage'],IN,2023 +Amendment #1 (Frye R) prevailed; voice vote,2023-02-22,['amendment-passage'],IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Senator Freeman added as third author,2023-02-07,[],IN,2023 +Senator Becker added as third author,2023-02-09,[],IN,2023 +Referred to the House,2023-02-09,['referral'],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +"Amendment #3 (Fleming) failed; Roll Call 162: yeas 28, nays 69",2023-02-20,"['amendment-failure', 'failure']",IN,2023 +Representative Morrison added as coauthor,2023-01-30,[],IN,2023 +Representative O'Brien T added as coauthor,2023-02-07,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-07,[],IN,2023 +Representative Bauer M added as coauthor,2023-02-07,[],IN,2023 +Representative Criswell C added as coauthor,2023-01-19,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-09,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-27,['reading-2'],IN,2023 +Senators Tomes and Ford J.D. added as coauthors,2023-02-14,[],IN,2023 +"Third reading: passed; Roll Call 132: yeas 44, nays 3",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 42: yeas 94, nays 0",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: adopted voice vote,2023-04-20,"['passage', 'reading-1']",IN,2023 +Senator Dernulc added as coauthor,2023-02-13,[],IN,2023 +Returned to the House,2023-04-14,['receipt'],IN,2023 +"Third reading: passed; Roll Call 174: yeas 49, nays 0",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +"Amendment #1 (Qaddoura) failed; Roll Call 121: yeas 11, nays 37",2023-02-16,"['amendment-failure', 'failure']",IN,2023 +Second reading: adopted standing vote,2023-02-20,"['passage', 'reading-2']",IN,2023 +Representative Jackson added as coauthor,2023-02-09,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-02,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-01-30,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 202: yeas 48, nays 0",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative King,2023-01-31,[],IN,2023 +Returned to the Senate,2023-04-12,['receipt'],IN,2023 +"Third reading: passed; Roll Call 116: yeas 49, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Senator Johnson added as coauthor,2023-02-09,[],IN,2023 +Referred to the Senate,2023-03-21,['referral'],IN,2023 +"Third reading: passed; Roll Call 43: yeas 48, nays 1",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Pursuant to Senate Rule 68(b); reassigned to Committee on Rules and Legislative Procedure,2023-01-26,['referral-committee'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-07,[],IN,2023 +Senator Becker added as coauthor,2023-01-26,[],IN,2023 +"Third reading: passed; Roll Call 114: yeas 95, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsors: Senators Sandlin and Crider,2023-02-06,[],IN,2023 +"Third reading: passed; Roll Call 59: yeas 97, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Senator Walker G added as coauthor,2023-02-02,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-23,['reading-2'],IN,2023 +First reading: adopted voice vote,2023-01-09,"['passage', 'reading-1']",IN,2023 +Amendment #1 (Young M) prevailed; voice vote,2023-02-07,['amendment-passage'],IN,2023 +Senator Ford J.D. added as coauthor,2023-01-26,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-02,[],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Senator Sandlin added as second author,2023-02-27,[],IN,2023 +Senator Crider added as coauthor,2023-02-02,[],IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +Senate sponsor: Senator Tomes,2023-02-13,[],IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +Senators Johnson and Qaddoura added as coauthors,2023-02-06,[],IN,2023 +Senator Alting added as second author,2023-01-30,[],IN,2023 +Senate sponsor: Senator Rogers,2023-01-31,[],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +House sponsor: Representative Pressel,2023-01-23,[],IN,2023 +Second reading: ordered engrossed,2023-02-27,['reading-2'],IN,2023 +Returned to the House,2023-03-09,['receipt'],IN,2023 +First reading: adopted voice vote,2023-04-03,"['passage', 'reading-1']",IN,2023 +Second reading: ordered engrossed,2023-02-09,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 94: yeas 49, nays 0",2023-02-09,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-09,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Senators Bassler and Alting added as coauthors,2023-01-31,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-30,['committee-passage'],IN,2023 +House sponsor: Representative Heine,2023-02-07,[],IN,2023 +"Committee report: do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Representatives Bartels and Genda M added as coauthors,2023-03-21,[],IN,2023 +"Third reading: passed; Roll Call 171: yeas 49, nays 0",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Niemeyer added as coauthor,2023-01-19,[],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +Amendment #1 (Brown L) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +Senator Niemeyer added as second author,2023-02-14,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Amendment #2 (Becker) prevailed; voice vote,2023-02-23,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 54: yeas 49, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representatives Klinker and Morrison added as coauthors,2023-02-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Referred to the House,2023-03-22,['referral'],IN,2023 +First reading: adopted voice vote,2023-04-26,"['passage', 'reading-1']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Returned to the House,2023-04-19,['receipt'],IN,2023 +Returned to the House,2023-04-19,['receipt'],IN,2023 +Senators Baldwin and Buchanan added as coauthors,2023-01-24,[],IN,2023 +Senator Sandlin added as second author,2023-02-23,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-27,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 51: yeas 48, nays 1",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Koch,2023-01-24,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Senate sponsors: Senators Byrne and Zay,2023-02-14,[],IN,2023 +"Third reading: passed; Roll Call 85: yeas 39, nays 10",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Senate sponsors: Senators Doriot, Garten, Buck",2023-02-27,[],IN,2023 +"Senate sponsors: Senators Raatz, Walker K, Crane",2023-02-23,[],IN,2023 +Senator Qaddoura added as coauthor,2023-01-31,[],IN,2023 +Senate sponsor: Senator Messmer,2023-01-30,[],IN,2023 +Representative Fleming added as coauthor,2023-02-21,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Senate sponsors: Senators Doriot and Niemeyer,2023-02-13,[],IN,2023 +Senator Buck added as second author,2023-01-31,[],IN,2023 +Representative Harris added as coauthor,2023-02-22,[],IN,2023 +Senator Baldwin added as second author,2023-01-19,[],IN,2023 +Senate sponsor: Senator Glick,2023-01-31,[],IN,2023 +Senators Donato and Johnson added as coauthors,2023-02-14,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-13,['committee-passage'],IN,2023 +Senator Qaddoura removed as third author,2023-02-13,[],IN,2023 +Amendment #1 (Lehman) prevailed; voice vote,2023-01-19,['amendment-passage'],IN,2023 +Senator Sandlin added as second sponsor,2023-03-30,[],IN,2023 +Representative Klinker added as coauthor,2023-02-06,[],IN,2023 +Representative Payne Z added as coauthor,2023-01-23,[],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +Senator Charbonneau added as second author,2023-02-21,[],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +"Senators Sandlin, Bohacek, Freeman, Koch, Glick added as coauthors",2023-01-19,[],IN,2023 +Senator Deery added as coauthor,2023-01-26,[],IN,2023 +Second reading: ordered engrossed,2023-02-22,['reading-2'],IN,2023 +House sponsor: Representative Engleman,2023-01-31,[],IN,2023 +Senator Crane added as coauthor,2023-01-30,[],IN,2023 +Representative Campbell added as coauthor,2023-01-19,[],IN,2023 +Second reading: ordered engrossed,2023-01-19,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Referred to the House,2023-04-11,['referral'],IN,2023 +Senate sponsors: Senators Rogers and Garten,2023-02-21,[],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +Senator Bohacek added as second author,2023-02-06,[],IN,2023 +"Third reading: passed; Roll Call 139: yeas 37, nays 9",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 54: yeas 77, nays 21",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-04-06,"['passage', 'reading-1']",IN,2023 +"Third reading: passed; Roll Call 77: yeas 94, nays 4",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Niezgodski added as coauthor,2023-01-23,[],IN,2023 +Senator Ford Jon added as second author,2023-02-09,[],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 145: yeas 45, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Messmer,2023-02-21,[],IN,2023 +Returned to the Senate,2023-03-21,['receipt'],IN,2023 +First reading: adopted voice vote,2023-04-03,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-02-16,"['passage', 'reading-1']",IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +Representatives King J and Shackleford added as coauthors,2023-01-19,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-01-26,['reading-2'],IN,2023 +Senator Donato added as coauthor,2023-02-09,[],IN,2023 +Amendment #2 (Walker G) prevailed; voice vote,2023-02-23,['amendment-passage'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-16,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-30,['committee-passage'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-07,[],IN,2023 +Returned to the Senate,2023-03-22,['receipt'],IN,2023 +"Second reading: amended, ordered engrossed",2023-01-23,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 123: yeas 43, nays 6",2023-02-16,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: adopted voice vote,2023-04-06,"['passage', 'reading-1']",IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +Representative Gore M added as coauthor,2023-01-26,[],IN,2023 +Representatives Pressel and Lindauer added as coauthors,2023-01-19,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-23,['reading-2'],IN,2023 +Senator Donato added as cosponsor,2023-02-16,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-20,['reading-2'],IN,2023 +"Amendment #2 (Qaddoura) failed; Roll Call 26: yeas 8, nays 40",2023-01-26,"['amendment-failure', 'failure']",IN,2023 +First reading: adopted voice vote,2023-04-19,"['passage', 'reading-1']",IN,2023 +Senator Bohacek added as coauthor,2023-01-30,[],IN,2023 +Senator Bassler added as coauthor,2023-02-02,[],IN,2023 +Senator Ford Jon added as third author,2023-02-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +"Senators Koch, Glick, Taylor G, Pol, Sandlin added as coauthors",2023-02-07,[],IN,2023 +"Third reading: passed; Roll Call 34: yeas 45, nays 0",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-01-19,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Senator Taylor G added as coauthor,2023-01-31,[],IN,2023 +First reading: adopted voice vote,2023-02-09,"['passage', 'reading-1']",IN,2023 +Returned to the House,2023-03-23,['receipt'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Rule 105.1 suspended,2023-02-07,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-02,['reading-2'],IN,2023 +Senator Busch added as coauthor,2023-01-30,[],IN,2023 +First reading: adopted voice vote,2023-04-25,"['passage', 'reading-1']",IN,2023 +Senator Pol added as cosponsor,2023-02-06,[],IN,2023 +Senate sponsors: Senators Leising and Messmer,2023-02-13,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Returned to the House,2023-03-06,['receipt'],IN,2023 +Senator Qaddoura added as coauthor,2023-02-02,[],IN,2023 +First reading: adopted voice vote,2023-04-13,"['passage', 'reading-1']",IN,2023 +Senators Sandlin and Glick added as coauthors,2023-01-26,[],IN,2023 +Referred to the Senate,2023-01-20,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-01-19,['reading-2'],IN,2023 +First reading: adopted voice vote,2023-03-27,"['passage', 'reading-1']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +Senator Randolph added as coauthor,2023-02-09,[],IN,2023 +"Committee report: do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +House sponsor: Representative Engleman,2023-02-16,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-02,[],IN,2023 +Referred to the House,2023-03-06,['referral'],IN,2023 +"Amendment #1 (Errington) failed; Roll Call 33: yeas 27, nays 64",2023-01-26,"['amendment-failure', 'failure']",IN,2023 +"Third reading: passed; Roll Call 70: yeas 91, nays 4",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Amendment #14 (Porter) failed; Roll Call 203: yeas 28, nays 62",2023-02-22,"['amendment-failure', 'failure']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-22,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-01-31,['reading-2'],IN,2023 +First reading: adopted voice vote,2023-04-25,"['passage', 'reading-1']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-27,['reading-2'],IN,2023 +Amendment #3 (Freeman) prevailed; voice vote,2023-02-07,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 92: yeas 34, nays 15",2023-02-09,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Senate sponsors: Senators Taylor G, Freeman, Qaddoura",2023-02-14,[],IN,2023 +Returned to the House,2023-04-19,['receipt'],IN,2023 +Representatives Vermilion A and Shackleford added as coauthors,2023-01-31,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-17,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-04-25,"['passage', 'reading-1']",IN,2023 +Amendment #1 (Behning) prevailed; voice vote,2023-02-23,['amendment-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-02,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 19: yeas 50, nays 0",2023-01-24,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Returned to the Senate,2023-04-25,['receipt'],IN,2023 +"Third reading: passed; Roll Call 65: yeas 48, nays 1",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-01-26,['reading-2'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-17,[],IN,2023 +Senator Randolph added as coauthor,2023-02-09,[],IN,2023 +First reading: adopted voice vote,2023-04-25,"['passage', 'reading-1']",IN,2023 +Senator Pol added as third author,2023-02-09,[],IN,2023 +Senate sponsors: Senators Gaskill and Walker K,2023-02-21,[],IN,2023 +First reading: adopted voice vote,2022-11-22,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-03-27,"['passage', 'reading-1']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-03-20,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-03-23,"['passage', 'reading-1']",IN,2023 +Second reading: ordered engrossed,2023-02-09,['reading-2'],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +"Senate sponsors: Senators Freeman, Crider, Koch",2023-01-31,[],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Referred to the House,2023-02-14,['referral'],IN,2023 +Senator Gaskill added as coauthor,2023-01-24,[],IN,2023 +Second reading: ordered engrossed,2023-02-09,['reading-2'],IN,2023 +Senate sponsor: Senator Freeman,2023-01-23,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-13,['committee-passage'],IN,2023 +"Representatives DeVon, Goodrich, Jackson added as coauthors",2023-01-30,[],IN,2023 +"Third reading: passed; Roll Call 221: yeas 94, nays 0",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #2 (Wesco) prevailed; voice vote,2023-02-21,['amendment-passage'],IN,2023 +First reading: adopted voice vote,2023-04-25,"['passage', 'reading-1']",IN,2023 +Senate sponsor: Senator Johnson,2023-01-30,[],IN,2023 +Senator Raatz added as coauthor,2023-01-31,[],IN,2023 +Senator Randolph added as coauthor,2023-02-16,[],IN,2023 +Referred to the Senate,2023-02-07,['referral'],IN,2023 +Senate sponsors: Senators Freeman and Gaskill,2023-01-24,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-20,['reading-2'],IN,2023 +Returned to the Senate,2023-03-22,['receipt'],IN,2023 +Senator Bohacek added as coauthor,2023-01-26,[],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +Representative Jordan added as cosponsor,2023-02-14,[],IN,2023 +Senators Donato and Gaskill added as coauthors,2023-01-23,[],IN,2023 +"Third reading: passed; Roll Call 14: yeas 50, nays 0",2023-01-24,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 23: yeas 50, nays 0",2023-01-24,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #1 (Leising) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-02-16,"['committee-passage', 'referral-committee']",IN,2023 +Senate sponsor: Senator Walker K,2023-01-24,[],IN,2023 +Amendment #4 (Rogers) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-31,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Representative Moed added as coauthor,2023-02-20,[],IN,2023 +Senator Randolph added as coauthor,2023-02-16,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +Title Amended,2023-02-14,[],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +Senator Johnson added as third author,2023-01-24,[],IN,2023 +"Second reading: adopted Roll Call 23: yeas 95, nays 0",2023-01-23,"['passage', 'reading-2']",IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +"Amendment #2 (Ford J.D.) failed; Roll Call 159: yeas 9, nays 40",2023-02-27,"['amendment-failure', 'failure']",IN,2023 +Second reading: ordered engrossed,2023-01-26,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +Senate sponsor: Senator Crider,2023-01-31,[],IN,2023 +Representative Fleming added as coauthor,2023-02-20,[],IN,2023 +First reading: adopted voice vote,2023-03-13,"['passage', 'reading-1']",IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Senators Bohacek and Ford Jon added as coauthors,2023-02-02,[],IN,2023 +Returned to the Senate,2023-03-09,['receipt'],IN,2023 +Returned to the Senate,2023-04-12,['receipt'],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Senate sponsors: Senators Walker G and Donato,2023-01-31,[],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +Senate sponsors: Senators Alexander and Niezgodski,2023-02-21,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Senator Randolph added as coauthor,2023-02-21,[],IN,2023 +Second reading: ordered engrossed,2023-02-27,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-14,['reading-2'],IN,2023 +Representative Criswell C added as coauthor,2023-01-19,[],IN,2023 +"Third reading: passed; Roll Call 29: yeas 95, nays 1",2023-01-24,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-01-23,['reading-2'],IN,2023 +Representative Hatfield added as coauthor,2023-01-31,[],IN,2023 +Referred to the House,2023-02-21,['referral'],IN,2023 +Senate sponsor: Senator Walker G,2023-02-21,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-07,[],IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-23,['reading-2'],IN,2023 +Senator Messmer added as second author,2023-02-16,[],IN,2023 +Senator Garten added as third author,2023-02-02,[],IN,2023 +Senator Tomes added as second author,2023-01-30,[],IN,2023 +"Third reading: passed; Roll Call 68: yeas 70, nays 28",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 63: yeas 49, nays 0",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-04-20,"['passage', 'reading-1']",IN,2023 +Senate sponsors: Senators Alexander and Sandlin,2023-02-13,[],IN,2023 +Senator Buchanan added as third author,2023-02-02,[],IN,2023 +"Committee report: do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Returned to the House,2023-04-14,['receipt'],IN,2023 +Senators Ford J.D. and Hunley added as coauthors,2023-02-06,[],IN,2023 +Returned to the House,2023-03-23,['receipt'],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 62: yeas 99, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: adopted voice vote,2023-01-24,"['passage', 'reading-1']",IN,2023 +Senator Perfect added as coauthor,2023-01-26,[],IN,2023 +Senate sponsor: Senator Sandlin,2023-01-24,[],IN,2023 +First reading: adopted voice vote,2023-03-09,"['passage', 'reading-1']",IN,2023 +Placed back on second reading,2023-02-21,[],IN,2023 +"Senators Crider, Melton, Brown L, Baldwin added as coauthors",2023-01-30,[],IN,2023 +House sponsor: Representative Soliday,2023-01-23,[],IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 17: yeas 50, nays 0",2023-01-24,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-14,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 80: yeas 37, nays 12",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-01-26,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-22,['reading-2'],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Deery, Dernulc, Donato, Doriot, Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Johnson, Koch, Leising, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Raatz, Randolph, Rogers, Sandlin, Tomes, Walker G, Yoder, Young M, Zay added as coauthors",2023-03-14,[],IN,2023 +Representative Wesco added as coauthor,2023-02-06,[],IN,2023 +Representative Morrison added as coauthor,2023-02-13,[],IN,2023 +Returned to the House,2023-03-27,['receipt'],IN,2023 +Amendment #1 (Pryor) prevailed; voice vote,2023-02-16,['amendment-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Representative Jackson added as coauthor,2023-02-07,[],IN,2023 +Representative Frye added as coauthor,2023-01-30,[],IN,2023 +"Third reading: passed; Roll Call 88: yeas 48, nays 0",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Bohacek added as second author,2023-02-14,[],IN,2023 +Rule 105.1 suspended,2023-02-23,[],IN,2023 +Senate sponsor: Senator Koch,2023-02-21,[],IN,2023 +House sponsor: Representative VanNatter,2023-02-02,[],IN,2023 +Returned to the House,2023-03-15,['receipt'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-13,['committee-passage'],IN,2023 +Senate sponsor: Senator Ford Jon,2023-02-14,[],IN,2023 +Senator Ford J.D. added as coauthor,2023-01-12,[],IN,2023 +"Committee report: do pass, adopted",2023-01-31,['committee-passage'],IN,2023 +Amendment #1 (Judy) prevailed; voice vote,2023-02-09,['amendment-passage'],IN,2023 +"Senators Johnson, Crane, Ford J.D. added as coauthors",2023-01-24,[],IN,2023 +"Amendment #8 (DeLaney) failed; Roll Call 141: yeas 26, nays 64",2023-02-16,"['amendment-failure', 'failure']",IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-14,[],IN,2023 +Second reading: ordered engrossed,2023-02-27,['reading-2'],IN,2023 +Senator Charbonneau added as second author,2023-02-27,[],IN,2023 +Returned to the House,2023-02-09,['receipt'],IN,2023 +Senator Pol added as third author,2023-02-20,[],IN,2023 +Representative Judy added as coauthor,2023-01-19,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-14,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 115: yeas 49, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Amendment #1 (Porter) failed; Roll Call 65: yeas 29, nays 67",2023-02-02,"['amendment-failure', 'failure']",IN,2023 +"Third reading: passed; Roll Call 82: yeas 49, nays 0",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson, Koch, Leising, Melton, Messmer, Niemeyer, Perfect, Pol, Qaddoura, Raatz, Randolph, Sandlin, Taylor G, Tomes, Walker G, Walker K, Yoder, Young M added as coauthors",2023-04-04,[],IN,2023 +Second reading: ordered engrossed,2023-01-23,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-02-06,['committee-passage'],IN,2023 +Amendment #1 (Gaskill) prevailed; voice vote,2023-02-06,['amendment-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-16,['reading-2'],IN,2023 +Representative Shackleford removed as coauthor,2023-02-16,[],IN,2023 +Amendment #1 (Olthoff) prevailed; voice vote,2023-01-26,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 134: yeas 68, nays 24",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson, Koch, Leising, Melton, Messmer, Niemeyer, Perfect, Pol, Qaddoura, Raatz, Randolph, Rogers, Sandlin, Taylor G, Tomes, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2023-01-09,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Senator Qaddoura added as third author,2023-02-06,[],IN,2023 +First reading: adopted voice vote,2023-04-19,"['passage', 'reading-1']",IN,2023 +Representative Bartels added as coauthor,2023-01-31,[],IN,2023 +First reading: adopted voice vote,2023-02-07,"['passage', 'reading-1']",IN,2023 +House sponsor: Representative McNamara,2023-02-21,[],IN,2023 +First reading: adopted voice vote,2023-03-06,"['passage', 'reading-1']",IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +"Senators Charbonneau, Busch, Crider added as coauthors",2023-01-19,[],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Amendment #1 (Vermilion) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +Representatives Judy and Pryor added as coauthors,2023-01-31,[],IN,2023 +"Third reading: passed; Roll Call 22: yeas 50, nays 0",2023-01-24,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Lehman,2023-02-28,[],IN,2023 +Senator Becker added as coauthor,2023-02-20,[],IN,2023 +Senate sponsors: Senators Messmer and Alting,2023-02-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 220: yeas 65, nays 29",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Rogers added as second author,2023-02-09,[],IN,2023 +"Senators Ford Jon, Charbonneau, Busch, Randolph added as coauthors",2023-02-13,[],IN,2023 +Senator Buck added as third author,2023-01-19,[],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-26,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +Returned to the Senate,2023-04-18,['receipt'],IN,2023 +Returned to the House,2023-04-11,['receipt'],IN,2023 +"Third reading: passed; Roll Call 49: yeas 49, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 47: yeas 49, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Sandlin,2023-01-24,[],IN,2023 +Returned to the House,2023-03-09,['receipt'],IN,2023 +Senator Niezgodski added as coauthor,2023-02-02,[],IN,2023 +Senate sponsors: Senators Niemeyer and Perfect,2023-02-21,[],IN,2023 +Returned to the House,2023-03-23,['receipt'],IN,2023 +"Senators Buck, Doriot, Messmer added as coauthors",2023-01-26,[],IN,2023 +Senator Ford J.D. added as coauthor,2023-01-24,[],IN,2023 +"Committee report: do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +Representatives VanNatter and Fleming added as coauthors,2023-02-13,[],IN,2023 +"Third reading: passed; Roll Call 32: yeas 45, nays 0",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 104: yeas 48, nays 0",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Buck,2023-01-31,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-04-13,"['passage', 'reading-1']",IN,2023 +Senate sponsors: Senators Koch and Garten,2023-02-14,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Senator Gaskill added as second author,2023-02-27,[],IN,2023 +Senator Bohacek added as coauthor,2023-01-31,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-20,['reading-2'],IN,2023 +First reading: adopted voice vote,2023-02-14,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-04-25,"['passage', 'reading-1']",IN,2023 +Amendment #1 (Messmer) prevailed; voice vote,2023-02-02,['amendment-passage'],IN,2023 +Referred to the Senate,2023-04-19,['referral'],IN,2023 +Senate sponsor: Senator Brown L,2023-02-23,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-01-26,['reading-2'],IN,2023 +Senate sponsor: Senator Gaskill,2023-02-07,[],IN,2023 +Senate sponsor: Senator Becker,2023-01-31,[],IN,2023 +First reading: adopted voice vote,2023-01-09,"['passage', 'reading-1']",IN,2023 +First reading: adopted voice vote,2023-04-25,"['passage', 'reading-1']",IN,2023 +Amendment #3 (McGuire) prevailed; voice vote,2023-02-13,['amendment-passage'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-02-16,"['committee-passage', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 117: yeas 94, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-26,[],IN,2023 +"Third reading: passed; Roll Call 29: yeas 48, nays 0",2023-01-26,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #1 (Culp) prevailed; voice vote,2023-02-13,['amendment-passage'],IN,2023 +Returned to the Senate,2023-02-16,['receipt'],IN,2023 +Pursuant to Senate Rule 35 (c); technical correction committee report adopted,2023-02-23,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Representative Pfaff added as coauthor,2023-02-06,[],IN,2023 +"Third reading: passed; Roll Call 137: yeas 44, nays 2",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Senators Melton, Alting, Charbonneau added as coauthors",2023-01-30,[],IN,2023 +Returned to the House,2023-04-18,['receipt'],IN,2023 +Second reading: ordered engrossed,2023-01-23,['reading-2'],IN,2023 +Amendment #1 (Morrison) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-01-24,['reading-2'],IN,2023 +Amendment #1 (Lehman) prevailed; voice vote,2023-02-23,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +Returned to the House,2023-02-24,['receipt'],IN,2023 +Representative Wesco added as coauthor,2023-01-19,[],IN,2023 +"Senators Dernulc, Sandlin, Charbonneau, Glick, Gaskill, Ford Jon, Johnson, Byrne added as coauthors",2023-03-27,[],IN,2023 +"Amendment #1 (Pol) failed; Roll Call 13: yeas 11, nays 39",2023-01-24,"['amendment-failure', 'failure']",IN,2023 +Senator Becker added as third author,2023-02-23,[],IN,2023 +Senate sponsor: Senator Alting,2023-01-30,[],IN,2023 +Representative Miller D added as coauthor,2023-01-31,[],IN,2023 +"Committee report: do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 18: yeas 98, nays 0",2023-01-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-31,[],IN,2023 +Second reading: ordered engrossed,2023-02-22,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 86: yeas 91, nays 0",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Senators Donato, Crider, Yoder added as coauthors",2023-02-09,[],IN,2023 +"Amendment #2 (Pol) failed; Roll Call 75: yeas 10, nays 39",2023-02-07,"['amendment-failure', 'failure']",IN,2023 +Senator Rogers added as coauthor,2023-04-10,[],IN,2023 +"Senators Brown L, Becker, Yoder, Bohacek added as coauthors",2023-02-16,[],IN,2023 +Returned to the House,2023-02-24,['receipt'],IN,2023 +Senator Charbonneau added as second author,2023-02-23,[],IN,2023 +Senator Alexander added as coauthor,2023-02-14,[],IN,2023 +"Third reading: passed; Roll Call 96: yeas 93, nays 0",2023-02-09,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 92: yeas 71, nays 23",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Yoder added as coauthor,2023-02-14,[],IN,2023 +Amendment #2 (Hatfield) prevailed; voice vote,2023-01-23,['amendment-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +Second reading: adopted voice vote,2023-04-13,"['passage', 'reading-2']",IN,2023 +Senate sponsor: Senator Byrne,2023-01-23,[],IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +"Senate sponsors: Senators Koch, Holdman, Becker",2023-02-07,[],IN,2023 +Representatives Morrison and Lauer added as coauthors,2023-02-13,[],IN,2023 +Senate sponsors: Senators Donato and Raatz,2023-02-23,[],IN,2023 +Referred to the House,2023-04-11,['referral'],IN,2023 +"Third reading: passed; Roll Call 52: yeas 40, nays 9",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +"Senate sponsors: Senators Bohacek, Glick, Pol",2023-02-21,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Senator Randolph added as coauthor,2023-02-27,[],IN,2023 +Second reading: ordered engrossed,2023-02-07,['reading-2'],IN,2023 +Returned to the House,2023-04-25,['receipt'],IN,2023 +Senator Johnson added as coauthor,2023-01-23,[],IN,2023 +"Third reading: passed; Roll Call 128: yeas 91, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +Senator Melton added as coauthor,2023-02-16,[],IN,2023 +Senator Randolph added as coauthor,2023-02-23,[],IN,2023 +Second reading: ordered engrossed,2023-02-27,['reading-2'],IN,2023 +"Amendment #1 (Barrett) prevailed; Roll Call 112: yeas 68, nays 27",2023-02-14,['amendment-passage'],IN,2023 +Amendment #2 (Judy) prevailed; voice vote,2023-02-09,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 85: yeas 91, nays 1",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Holdman,2023-02-09,[],IN,2023 +Senator Yoder added as second author,2023-02-02,[],IN,2023 +"Senate sponsors: Senators Donato, Raatz, Byrne",2023-02-23,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-01-23,['reading-2'],IN,2023 +Senator Qaddoura added as coauthor,2023-01-17,[],IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 26: yeas 97, nays 0",2023-01-24,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative McNamara,2023-04-13,[],IN,2023 +Referred to the Senate,2023-02-08,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +Representative Errington added as coauthor,2023-01-19,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-20,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +Amendment #1 (Barrett) prevailed; voice vote,2023-02-22,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 147: yeas 31, nays 13",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Karickhoff,2023-01-24,[],IN,2023 +Representatives McNamara and Gore M added as coauthors,2023-01-24,[],IN,2023 +Senator Young M added as third author,2023-02-27,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-20,[],IN,2023 +House sponsor: Representative Soliday,2023-01-24,[],IN,2023 +"Amendment #5 (Hunley) failed; Roll Call 160: yeas 12, nays 37",2023-02-27,"['amendment-failure', 'failure']",IN,2023 +Senator Crane added as coauthor,2023-02-20,[],IN,2023 +House sponsor: Representative Torr,2023-01-31,[],IN,2023 +Amendment #2 (Behning) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +Representative Haggard C added as coauthor,2023-01-19,[],IN,2023 +Representative Judy added as coauthor,2023-01-31,[],IN,2023 +Senate sponsors: Senators Freeman and Taylor G,2023-02-21,[],IN,2023 +Senators Doriot and Tomes added as coauthors,2023-03-27,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-14,[],IN,2023 +Senate sponsor: Senator Ford Jon,2023-02-14,[],IN,2023 +Amendment #1 (Holdman) prevailed; voice vote,2023-02-23,['amendment-passage'],IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Senate sponsor: Senator Koch,2023-02-20,[],IN,2023 +Returned to the House,2023-01-09,['receipt'],IN,2023 +Senator Busch added as coauthor,2023-02-02,[],IN,2023 +Senate sponsor: Senator Messmer,2023-02-07,[],IN,2023 +Referred to the House,2023-04-05,['referral'],IN,2023 +"Third reading: passed; Roll Call 140: yeas 46, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-20,['reading-2'],IN,2023 +Representative Clere added as coauthor,2023-02-16,[],IN,2023 +House sponsor: Representative Behning,2023-01-31,[],IN,2023 +"Amendment #7 (Johnson) failed; Roll Call 214: yeas 29, nays 66",2023-02-23,"['amendment-failure', 'failure']",IN,2023 +"Third reading: passed; Roll Call 40: yeas 95, nays 1",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-01-24,['referral'],IN,2023 +"Third reading: passed; Roll Call 41: yeas 93, nays 0",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-27,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 180: yeas 92, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Zent,2023-02-07,[],IN,2023 +"Third reading: passed; Roll Call 84: yeas 49, nays 0",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Senators Hunley, Ford J.D., Donato, Rogers added as coauthors",2023-02-07,[],IN,2023 +Senate sponsor: Senator Charbonneau,2023-02-14,[],IN,2023 +Returned to the House,2023-04-25,['receipt'],IN,2023 +Second reading: ordered engrossed,2023-02-23,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 189: yeas 65, nays 28",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 71: yeas 44, nays 5",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 117: yeas 40, nays 9",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #2 (DeLaney) motion withdrawn,2023-02-13,"['amendment-withdrawal', 'withdrawal']",IN,2023 +"Third reading: passed; Roll Call 39: yeas 46, nays 0",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the Senate,2023-03-13,['receipt'],IN,2023 +"Third reading: passed; Roll Call 21: yeas 50, nays 0",2023-01-24,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 55: yeas 96, nays 1",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Placed back on second reading,2023-02-13,[],IN,2023 +Amendment #2 (Porter) ruled out of order,2023-02-02,[],IN,2023 +Second reading: ordered engrossed,2023-02-27,['reading-2'],IN,2023 +Amendment #1 (Zay) prevailed; voice vote,2023-01-26,['amendment-passage'],IN,2023 +First reading: adopted voice vote,2023-01-26,"['passage', 'reading-1']",IN,2023 +Senate sponsors: Senators Doriot and Messmer,2023-01-31,[],IN,2023 +"Third reading: passed; Roll Call 174: yeas 69, nays 25",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Niezgodski added as coauthor,2023-02-23,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 60: yeas 98, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 145: yeas 67, nays 27",2023-02-16,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #1 (Pryor) ruled out of order,2023-02-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-01-26,['reading-2'],IN,2023 +House sponsor: Representative Olthoff,2023-01-30,[],IN,2023 +House sponsor: Representative Jeter,2023-01-26,[],IN,2023 +Senate sponsor: Senator Crider,2023-01-23,[],IN,2023 +Senator Baldwin added as third author,2023-01-24,[],IN,2023 +Senator Crider added as second author,2023-02-27,[],IN,2023 +"Third reading: passed; Roll Call 18: yeas 50, nays 0",2023-01-24,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 126: yeas 42, nays 5",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Perfect,2023-01-24,[],IN,2023 +Representative Cherry added as coauthor,2023-02-14,[],IN,2023 +Amendment #1 (Messmer) prevailed; voice vote,2023-02-23,['amendment-passage'],IN,2023 +Senate sponsor: Senator Donato,2023-02-14,[],IN,2023 +Returned to the House,2023-04-14,['receipt'],IN,2023 +"Senate sponsors: Senators Glick, Leising, Becker",2023-02-20,[],IN,2023 +"Third reading: passed; Roll Call 183: yeas 89, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #1 (Negele) prevailed; voice vote,2023-02-02,['amendment-passage'],IN,2023 +First reading: adopted voice vote,2023-02-27,"['passage', 'reading-1']",IN,2023 +Amendment #2 (Smaltz) prevailed; voice vote,2023-02-13,['amendment-passage'],IN,2023 +Senate sponsor: Senator Koch,2023-02-06,[],IN,2023 +Representative Schaibley removed as coauthor,2023-02-13,[],IN,2023 +"Third reading: passed; Roll Call 16: yeas 50, nays 0",2023-01-24,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Bohacek added as coauthor,2023-02-13,[],IN,2023 +Returned to the House,2023-02-09,['receipt'],IN,2023 +Amendment #1 (Barrett) prevailed; voice vote,2023-02-16,['amendment-passage'],IN,2023 +Amendment #2 (Barrett) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 57: yeas 98, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 205: yeas 27, nays 21",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsors: Senators Messmer and Ford Jon,2023-02-14,[],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-01-31,"['committee-passage', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Senator Melton added as coauthor,2023-02-23,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-06,['reading-2'],IN,2023 +House sponsor: Representative Aylesworth,2023-02-06,[],IN,2023 +Second reading: ordered engrossed,2023-02-09,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Senate sponsors: Senators Ford Jon and Messmer,2023-02-06,[],IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 109: yeas 99, nays 0",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #2 (Pol) failed; voice vote,2023-01-24,"['amendment-failure', 'failure']",IN,2023 +"Senate sponsors: Senators Brown L, Buchanan, Garten",2023-02-16,[],IN,2023 +"Third reading: passed; Roll Call 122: yeas 95, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 144: yeas 45, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 78: yeas 49, nays 0",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-26,[],IN,2023 +Senator Yoder added as coauthor,2023-02-06,[],IN,2023 +Senator Brown L added as second author,2023-02-21,[],IN,2023 +First reading: adopted voice vote,2023-04-20,"['passage', 'reading-1']",IN,2023 +House sponsor: Representative Soliday,2023-02-14,[],IN,2023 +"Third reading: passed; Roll Call 45: yeas 47, nays 2",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House,2023-03-06,['receipt'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-02-02,"['committee-passage', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-13,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-01-23,['reading-2'],IN,2023 +Senator Yoder added as coauthor,2023-01-31,[],IN,2023 +Returned to the House,2023-01-25,['receipt'],IN,2023 +"Third reading: passed; Roll Call 25: yeas 96, nays 0",2023-01-24,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Clere,2023-02-13,[],IN,2023 +Amendment #2 (Morris) prevailed; voice vote,2023-02-23,['amendment-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-23,['reading-2'],IN,2023 +House sponsor: Representative Karickhoff,2023-01-24,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-20,['reading-2'],IN,2023 +Senator Rogers added as third author,2023-02-27,[],IN,2023 +Returned to the House,2023-04-19,['receipt'],IN,2023 +House sponsor: Representative Slager,2023-01-24,[],IN,2023 +First reading: adopted voice vote,2023-02-16,"['passage', 'reading-1']",IN,2023 +"Third reading: passed; Roll Call 156: yeas 48, nays 0",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Cosponsors: Representatives Manning and Negele,2023-01-23,[],IN,2023 +Returned to the Senate,2023-03-09,['receipt'],IN,2023 +Senator Melton added as third author,2023-02-14,[],IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +House sponsor: Representative Manning,2023-02-07,[],IN,2023 +Representative Andrade M added as coauthor,2023-02-21,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Cosponsor: Representative Schaibley,2023-02-28,[],IN,2023 +Senate sponsor: Senator Brown L,2023-01-30,[],IN,2023 +Returned to the Senate,2023-02-15,['receipt'],IN,2023 +Referred to the House,2023-02-03,['referral'],IN,2023 +Referred to the House,2023-03-15,['referral'],IN,2023 +Senator Leising removed as coauthor,2023-02-16,[],IN,2023 +"Senate sponsors: Senators Raatz, Buck, Rogers",2023-01-31,[],IN,2023 +"Third reading: passed; Roll Call 79: yeas 77, nays 21",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 52: yeas 96, nays 2",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 148: yeas 44, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Jordan added as coauthor,2023-02-21,[],IN,2023 +Returned to the House,2023-04-20,['receipt'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +Amendment #2 (Cherry) prevailed; voice vote,2023-02-16,['amendment-passage'],IN,2023 +"Committee report: do pass, adopted",2023-02-07,['committee-passage'],IN,2023 +"Senators Charbonneau, Busch, Crider, Raatz added as coauthors",2023-01-30,[],IN,2023 +Senate sponsor: Senator Busch,2023-02-23,[],IN,2023 +Senate sponsors: Senators Byrne and Doriot,2023-01-30,[],IN,2023 +House sponsor: Representative Ledbetter,2023-02-07,[],IN,2023 +House sponsor: Representative Soliday,2023-02-21,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-02-16,"['committee-passage', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 197: yeas 90, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +Senator Johnson added as coauthor,2023-01-19,[],IN,2023 +Representative Speedy added as coauthor,2023-02-23,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-02,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 231: yeas 93, nays 0",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-02-02,"['committee-passage', 'referral-committee']",IN,2023 +Senator Freeman added as coauthor,2023-02-13,[],IN,2023 +"Amendment #1 (DeLaney) failed; Roll Call 100: yeas 29, nays 67",2023-02-13,"['amendment-failure', 'failure']",IN,2023 +First reading: adopted voice vote,2023-03-09,"['passage', 'reading-1']",IN,2023 +Senator Rogers added as cosponsor,2023-04-19,[],IN,2023 +"Third reading: passed; Roll Call 67: yeas 49, nays 0",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Tomes,2023-02-14,[],IN,2023 +Senate sponsor: Senator Byrne,2023-01-30,[],IN,2023 +First reading: adopted voice vote,2023-04-03,"['passage', 'reading-1']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +First reading: adopted voice vote,2023-03-30,"['passage', 'reading-1']",IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Returned to the House,2023-04-04,['receipt'],IN,2023 +Senate sponsor: Senator Garten,2023-02-20,[],IN,2023 +"Third reading: passed; Roll Call 108: yeas 47, nays 1",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Cherry,2023-01-30,[],IN,2023 +Amendment #1 (Deery) prevailed; voice vote,2023-02-13,['amendment-passage'],IN,2023 +Amendment #1 (Judy) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +"Amendment #2 (Sweet) prevailed; Roll Call 204: yeas 53, nays 34",2023-02-22,['amendment-passage'],IN,2023 +House sponsor: Representative O'Brien,2023-02-06,[],IN,2023 +House sponsor: Representative Speedy,2023-01-24,[],IN,2023 +Senator Randolph added as coauthor,2023-02-09,[],IN,2023 +House sponsor: Representative Aylesworth,2023-02-20,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Senator Mishler added as coauthor,2023-02-14,[],IN,2023 +"Third reading: passed; Roll Call 50: yeas 49, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-22,['reading-2'],IN,2023 +Referred to the Senate,2023-02-01,['referral'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-31,[],IN,2023 +Senate sponsors: Senators Rogers and Garten,2023-02-20,[],IN,2023 +House sponsor: Representative Behning,2023-02-07,[],IN,2023 +Senator Donato added as third author,2023-01-31,[],IN,2023 +"Third reading: passed; Roll Call 9: yeas 47, nays 1",2023-01-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Brown L,2023-01-31,[],IN,2023 +Senator Leising added as coauthor,2023-01-26,[],IN,2023 +Senator Holdman added as third author,2023-01-26,[],IN,2023 +Senate sponsor: Senator Koch,2023-02-20,[],IN,2023 +"Third reading: passed; Roll Call 138: yeas 44, nays 2",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the Senate,2023-02-16,['receipt'],IN,2023 +Senator Doriot added as third author,2023-01-26,[],IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +Returned to the House,2023-04-10,['receipt'],IN,2023 +Senate sponsor: Senator Raatz,2023-01-19,[],IN,2023 +"Third reading: passed; Roll Call 167: yeas 49, nays 0",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative May,2023-02-16,[],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +Amendment #1 (Walker K) prevailed; voice vote,2023-02-09,['amendment-passage'],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-24,"['reading-1', 'referral-committee']",IN,2023 +Amendment #3 (Niemeyer) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +Senator Charbonneau added as coauthor,2023-01-30,[],IN,2023 +"Third reading: passed; Roll Call 124: yeas 75, nays 20",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Moed added as coauthor,2023-01-30,[],IN,2023 +Senator Yoder added as coauthor,2023-02-02,[],IN,2023 +Amendment #1 (Dvorak) prevailed; voice vote,2023-02-16,['amendment-passage'],IN,2023 +Senator Tomes added as coauthor,2023-02-23,[],IN,2023 +"Third reading: passed; Roll Call 179: yeas 66, nays 26",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-02-13,['committee-passage'],IN,2023 +"Senate sponsors: Senators Sandlin, Crider, Baldwin",2023-02-23,[],IN,2023 +Referred to the Senate,2023-02-07,['referral'],IN,2023 +House sponsor: Representative May,2023-02-09,[],IN,2023 +Amendment #1 (Lehman) prevailed; voice vote,2023-01-19,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 66: yeas 49, nays 0",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 35: yeas 44, nays 0",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 178: yeas 93, nays 1",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House,2022-11-22,['receipt'],IN,2023 +Returned to the Senate,2023-03-23,['receipt'],IN,2023 +"Third reading: passed; Roll Call 107: yeas 97, nays 1",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #1 (Jackson) prevailed; voice vote,2023-02-21,['amendment-passage'],IN,2023 +Amendment #2 (Johnson) prevailed; voice vote,2023-02-13,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 14: yeas 98, nays 0",2023-01-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 47: yeas 96, nays 0",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 28: yeas 96, nays 0",2023-01-24,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Randolph added as coauthor,2023-02-27,[],IN,2023 +Senator Qaddoura added as coauthor,2023-02-14,[],IN,2023 +Senate sponsor: Senator Becker,2023-01-31,[],IN,2023 +"Third reading: passed; Roll Call 181: yeas 67, nays 28",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Thompson,2023-02-27,[],IN,2023 +Senator Ford J.D. added as coauthor,2023-02-16,[],IN,2023 +Representative Andrade M added as coauthor,2023-02-09,[],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Senator Randolph added as coauthor,2023-02-02,[],IN,2023 +House sponsor: Representative DeVon,2023-01-31,[],IN,2023 +Representative Moed added as coauthor,2023-02-09,[],IN,2023 +Referred to the Senate,2023-02-07,['referral'],IN,2023 +Senator Randolph added as coauthor,2023-02-23,[],IN,2023 +"Third reading: passed; Roll Call 196: yeas 39, nays 10",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 102: yeas 97, nays 0",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Speedy,2023-02-09,[],IN,2023 +"Third reading: passed; Roll Call 143: yeas 29, nays 16",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Cosponsors: Representatives Vermilion A and Garcia Wilburn V,2023-01-31,[],IN,2023 +"Senators Koch, Doriot, Donato added as coauthors",2023-01-30,[],IN,2023 +Senator Donato added as coauthor,2023-01-31,[],IN,2023 +Cosponsor: Representative GiaQuinta,2023-02-07,[],IN,2023 +Senator Randolph added as coauthor,2023-02-02,[],IN,2023 +Representative Jeter C added as coauthor,2023-02-06,[],IN,2023 +Amendment #2 (Freeman) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-01-30,['committee-passage'],IN,2023 +"Committee report: without recommendation, adopted",2023-01-26,[],IN,2023 +Returned to the House,2023-04-26,['receipt'],IN,2023 +"Third reading: passed; Roll Call 27: yeas 96, nays 0",2023-01-24,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 137: yeas 62, nays 27",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-02,[],IN,2023 +"Third reading: passed; Roll Call 219: yeas 94, nays 0",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-23,['reading-2'],IN,2023 +Amendment #8 (Smith V) failed; voice vote,2023-02-20,"['amendment-failure', 'failure']",IN,2023 +Senator Deery added as second author,2023-02-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +Senate sponsors: Senators Koch and Baldwin,2023-02-23,[],IN,2023 +Senator Becker added as coauthor,2023-01-26,[],IN,2023 +Senate sponsor: Senator Perfect,2023-01-23,[],IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +House sponsor: Representative Miller D,2023-02-21,[],IN,2023 +Senate sponsor: Senator Walker K,2023-02-07,[],IN,2023 +"Third reading: passed; Roll Call 79: yeas 36, nays 13",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +"Committee report: do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Representative Bauer M added as coauthor,2023-02-07,[],IN,2023 +Returned to the House,2023-03-31,['receipt'],IN,2023 +"Third reading: passed; Roll Call 44: yeas 87, nays 7",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-01-19,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 51: yeas 78, nays 19",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 243: yeas 94, nays 0",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Sandlin added as second author,2023-02-27,[],IN,2023 +Senator Randolph added as coauthor,2023-02-23,[],IN,2023 +Senate sponsor: Senator Crider,2023-02-14,[],IN,2023 +Amendment #6 (Morrison) prevailed; voice vote,2023-02-14,['amendment-passage'],IN,2023 +House sponsor: Representative Negele,2023-01-31,[],IN,2023 +Representative Porter added as coauthor,2023-01-31,[],IN,2023 +House sponsor: Representative Morrison,2023-02-27,[],IN,2023 +Senator Randolph added as coauthor,2023-02-27,[],IN,2023 +"Third reading: passed; Roll Call 102: yeas 47, nays 1",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the Senate,2023-04-03,['receipt'],IN,2023 +Referred to the Senate,2023-02-01,['referral'],IN,2023 +Senator Yoder added as coauthor,2023-02-06,[],IN,2023 +Representative Judy removed as coauthor,2023-02-07,[],IN,2023 +"Third reading: passed; Roll Call 68: yeas 49, nays 0",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #2 (Perfect) prevailed; voice vote,2023-02-07,['amendment-passage'],IN,2023 +"Senate sponsors: Senators Glick, Leising, Garten",2023-02-14,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +House sponsor: Representative Teshka,2023-02-14,[],IN,2023 +House sponsor: Representative Steuerwald,2023-02-28,[],IN,2023 +House sponsor: Representative Rowray,2023-02-20,[],IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +Referred to the Senate,2023-01-31,['referral'],IN,2023 +Amendment #1 (Holdman) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +Senators Buchanan and Donato added as coauthors,2023-02-14,[],IN,2023 +Senator Bohacek removed as coauthor,2023-01-30,[],IN,2023 +Senator Randolph added as coauthor,2023-02-09,[],IN,2023 +Amendment #3 (Wesco) prevailed; voice vote,2023-02-21,['amendment-passage'],IN,2023 +"Senate sponsors: Senators Rogers, Raatz, Walker K",2023-02-23,[],IN,2023 +First reading: adopted voice vote,2023-02-21,"['passage', 'reading-1']",IN,2023 +Returned to the Senate,2023-04-25,['receipt'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-23,['reading-2'],IN,2023 +Returned to the House,2023-04-25,['receipt'],IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 49: yeas 99, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Koch added as second author,2023-02-27,[],IN,2023 +"Third reading: passed; Roll Call 116: yeas 95, nays 1",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Representatives Miller K, McNamara, Speedy, Payne Z, Abbott D, Zent, Lauer, Errington, Patterson L, Dvorak, May, Baird, Haggard C, Teshka J, Miller D, Heine, Snow C, Goodrich, Judy, McGuire J, Morris, Pierce M, Cherry, Thompson, Garcia Wilburn V, King J, Pressel, Lucas, Sweet L, Culp K, Engleman, Criswell C, Rowray E, Soliday, Frye, Aylesworth, Hamilton, Hall D, Davis M, Clere added as coauthors",2023-03-23,[],IN,2023 +"Amendment #2 (Pierce) failed; Roll Call 34: yeas 30, nays 61",2023-01-26,"['amendment-failure', 'failure']",IN,2023 +Returned to the House,2023-04-25,['receipt'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-07,[],IN,2023 +Returned to the House,2023-03-27,['receipt'],IN,2023 +"Third reading: passed; Roll Call 70: yeas 49, nays 0",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Frye added as coauthor,2023-01-23,[],IN,2023 +"Third reading: passed; Roll Call 201: yeas 92, nays 0",2023-02-22,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senators Garten and Raatz added as coauthors,2023-01-26,[],IN,2023 +Returned to the House,2023-02-07,['receipt'],IN,2023 +Second reading: ordered engrossed,2023-01-26,['reading-2'],IN,2023 +Returned to the Senate,2023-02-10,['receipt'],IN,2023 +Representative Miller D added as coauthor,2023-02-06,[],IN,2023 +Senator Walker K added as coauthor,2023-02-06,[],IN,2023 +Representative Miller K added as coauthor,2023-02-07,[],IN,2023 +Amendment #1 (Ford J.D.) prevailed; voice vote,2023-02-23,['amendment-passage'],IN,2023 +Representative Jordan added as coauthor,2023-01-19,[],IN,2023 +"Third reading: passed; Roll Call 15: yeas 50, nays 0",2023-01-24,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Koch,2023-02-23,[],IN,2023 +First reading: adopted voice vote,2023-02-06,"['passage', 'reading-1']",IN,2023 +Senate sponsors: Senators Brown L and Alexander,2023-02-21,[],IN,2023 +"Third reading: passed; Roll Call 190: yeas 93, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +House sponsor: Representative Teshka,2023-02-21,[],IN,2023 +Returned to the House,2023-04-10,['receipt'],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +Referred to the Senate,2023-02-07,['referral'],IN,2023 +Senate sponsors: Senators Ford Jon and Garten,2023-01-23,[],IN,2023 +House sponsor: Representative Zent,2023-01-31,[],IN,2023 +"Third reading: passed; Roll Call 103: yeas 95, nays 0",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-23,['reading-2'],IN,2023 +Senator Ford Jon added as coauthor,2023-02-02,[],IN,2023 +Cosponsor: Representative Lauer,2023-01-23,[],IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +Amendment #1 (Boy) failed; voice vote,2023-02-06,"['amendment-failure', 'failure']",IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +Returned to the Senate,2023-04-20,['receipt'],IN,2023 +"Reread second time: amended, ordered engrossed",2023-02-07,['reading-2'],IN,2023 +First reading: adopted voice vote,2023-02-09,"['passage', 'reading-1']",IN,2023 +Cosponsor: Representative Bartels,2023-02-16,[],IN,2023 +Returned to the Senate,2023-03-21,['receipt'],IN,2023 +Second reading: ordered engrossed,2023-02-23,['reading-2'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-01-31,[],IN,2023 +Returned to the House,2023-04-14,['receipt'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-13,[],IN,2023 +"Senators Charbonneau, Niezgodski, Qaddoura added as coauthors",2023-02-02,[],IN,2023 +First reading: adopted voice vote,2023-04-13,"['passage', 'reading-1']",IN,2023 +Senator Niezgodski added as cosponsor,2023-02-16,[],IN,2023 +Returned to the House,2023-01-09,['receipt'],IN,2023 +"Third reading: passed; Roll Call 106: yeas 99, nays 0",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the Senate,2023-04-25,['receipt'],IN,2023 +"Third reading: passed; Roll Call 108: yeas 99, nays 0",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-01-26,['committee-passage'],IN,2023 +Returned to the House,2023-04-25,['receipt'],IN,2023 +Senate sponsors: Senators Messmer and Crider,2023-02-13,[],IN,2023 +Senators Ford J.D. and Breaux added as coauthors,2023-01-26,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-21,['reading-2'],IN,2023 +Senators Pol and Yoder added as coauthors,2023-02-16,[],IN,2023 +"Third reading: passed; Roll Call 182: yeas 42, nays 7",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Andrade M removed as coauthor,2023-02-22,[],IN,2023 +Referred to the Senate,2023-01-25,['referral'],IN,2023 +Amendment #5 (Holdman) prevailed; voice vote,2023-02-16,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 169: yeas 26, nays 23",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #1 (Young M) prevailed; voice vote,2023-02-13,['amendment-passage'],IN,2023 +Senator Bohacek added as third author,2023-01-30,[],IN,2023 +Second reading: ordered engrossed,2023-02-21,['reading-2'],IN,2023 +Representatives Hatfield and Criswell C added as coauthors,2023-01-30,[],IN,2023 +"Third reading: passed; Roll Call 187: yeas 94, nays 1",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Returned to the Senate,2023-02-22,['receipt'],IN,2023 +"Third reading: passed; Roll Call 64: yeas 49, nays 0",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Wesco,2023-02-06,[],IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-21,['reading-2'],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +Representative Pierce K added as coauthor,2023-01-23,[],IN,2023 +House sponsor: Representative May,2023-01-30,[],IN,2023 +Senator Ford J.D. added as third author,2023-02-14,[],IN,2023 +"Third reading: passed; Roll Call 119: yeas 96, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Referred to the Senate,2023-01-24,['referral'],IN,2023 +Cosponsor: Representative Baird,2023-02-20,[],IN,2023 +"Senate sponsors: Senators Raatz, Ford J.D., Melton",2023-02-27,[],IN,2023 +Senator Raatz added as coauthor,2023-01-26,[],IN,2023 +House sponsor: Representative Slager,2023-02-13,[],IN,2023 +"Third reading: passed; Roll Call 199: yeas 36, nays 12",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #1 (Young M) prevailed; voice vote,2023-02-07,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 192: yeas 89, nays 1",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +House sponsor: Representative Teshka,2023-02-06,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-01-19,['reading-2'],IN,2023 +Referred to the House,2023-02-10,['referral'],IN,2023 +"Third reading: passed; Roll Call 100: yeas 49, nays 0",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-01,['referral'],IN,2023 +Senate sponsors: Senators Baldwin and Holdman,2023-02-22,[],IN,2023 +Second reading: ordered engrossed,2023-01-26,['reading-2'],IN,2023 +Cosponsor: Representative Steuerwald,2023-01-24,[],IN,2023 +"Senate sponsors: Senators Niemeyer, Bohacek, Dernulc",2023-02-13,[],IN,2023 +Cosponsor: Senator Ford J.D.,2023-02-23,[],IN,2023 +House sponsor: Representative Behning,2023-02-06,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +Senator Young M added as coauthor,2023-02-23,[],IN,2023 +Senator Baldwin added as coauthor,2023-02-07,[],IN,2023 +Returned to the House,2023-04-19,['receipt'],IN,2023 +Senate sponsors: Senators Freeman and Pol,2023-02-21,[],IN,2023 +Returned to the House,2023-02-09,['receipt'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-16,['reading-2'],IN,2023 +Referred to the House,2023-02-17,['referral'],IN,2023 +Senate sponsor: Senator Freeman,2023-01-23,[],IN,2023 +"Third reading: passed; Roll Call 111: yeas 49, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the Senate,2023-03-09,['receipt'],IN,2023 +Senator Rogers removed as third author,2023-02-09,[],IN,2023 +"Third reading: passed; Roll Call 173: yeas 47, nays 2",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Raatz added as coauthor,2023-01-31,[],IN,2023 +Senate sponsors: Senators Freeman and Sandlin,2023-02-14,[],IN,2023 +Cosponsors: Representatives Judy and Miller D,2023-02-16,[],IN,2023 +"Third reading: passed; Roll Call 36: yeas 40, nays 5",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Charbonneau removed as coauthor,2023-02-02,[],IN,2023 +Second reading: ordered engrossed,2023-02-02,['reading-2'],IN,2023 +Referred to the Senate,2023-02-01,['referral'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-27,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-09,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 80: yeas 97, nays 0",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-04-04,['committee-passage'],IN,2023 +Amendment #4 (Niemeyer) prevailed; voice vote,2023-02-09,['amendment-passage'],IN,2023 +Amendment #13 (Pryor) prevailed; voice vote,2023-02-22,['amendment-passage'],IN,2023 +Senators Crider and Raatz added as coauthors,2023-02-23,[],IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +House sponsor: Representative Ledbetter,2023-02-27,[],IN,2023 +Referred to the Senate,2023-01-20,['referral'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-23,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 37: yeas 45, nays 0",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Mishler,2023-02-06,[],IN,2023 +Cosponsor: Representative Negele,2023-02-06,[],IN,2023 +"Third reading: passed; Roll Call 87: yeas 39, nays 9",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-20,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 218: yeas 85, nays 2",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 33: yeas 44, nays 1",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Amendment #2 (DeLaney) failed; Roll Call 101: yeas 30, nays 66",2023-02-13,"['amendment-failure', 'failure']",IN,2023 +Returned to the Senate,2023-02-07,['receipt'],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +House sponsor: Representative Prescott,2023-01-24,[],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +"Cosponsors: Representatives Clere, Errington, Pryor",2023-02-21,[],IN,2023 +"Third reading: passed; Roll Call 87: yeas 93, nays 0",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-13,['reading-2'],IN,2023 +Cosponsors: Representatives Klinker and Porter,2023-01-30,[],IN,2023 +Senator Tomes added as third author,2023-02-07,[],IN,2023 +Senator Crider added as coauthor,2023-02-16,[],IN,2023 +Senator Messmer added as third author,2023-01-31,[],IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative May,2023-01-23,[],IN,2023 +First reading: referred to Committee on Local Government,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 22: yeas 96, nays 1",2023-01-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 228: yeas 95, nays 0",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-14,['referral'],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-06,['committee-passage'],IN,2023 +Senator Young M added as coauthor,2023-02-23,[],IN,2023 +House sponsor: Representative Jeter,2023-02-21,[],IN,2023 +Senate sponsor: Senator Koch,2023-02-07,[],IN,2023 +"Amendment #2 (DeLaney) failed; Roll Call 160: yeas 28, nays 67",2023-02-20,"['amendment-failure', 'failure']",IN,2023 +Senator Becker added as third author,2023-02-13,[],IN,2023 +Representative Criswell C added as coauthor,2023-02-23,[],IN,2023 +"Third reading: passed; Roll Call 240: yeas 90, nays 5",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Pursuant to Senate Rule 68(b); reassigned to Committee on Appropriations,2023-01-26,['referral-committee'],IN,2023 +"Senate sponsors: Senators Raatz, Holdman, Brown L",2023-02-14,[],IN,2023 +Referred to the Senate,2023-01-31,['referral'],IN,2023 +Cosponsor: Representative Behning,2023-02-21,[],IN,2023 +"Third reading: passed; Roll Call 38: yeas 95, nays 1",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-01,['referral'],IN,2023 +Cosponsor: Representative Culp K,2023-02-27,[],IN,2023 +"Third reading: passed; Roll Call 188: yeas 49, nays 0",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Bassler,2023-01-23,[],IN,2023 +Referred to the Senate,2023-02-28,['referral'],IN,2023 +"Third reading: passed; Roll Call 169: yeas 73, nays 24",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Amendment #3 (Bartels) prevailed; voice vote,2023-02-02,['amendment-passage'],IN,2023 +Representative Andrade M added as coauthor,2023-01-24,[],IN,2023 +First reading: referred to Committee on Local Government,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Senate sponsor: Senator Baldwin,2023-01-31,[],IN,2023 +"Third reading: passed; Roll Call 170: yeas 49, nays 0",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Doriot added as third author,2023-02-27,[],IN,2023 +Returned to the Senate,2023-04-13,['receipt'],IN,2023 +Amendment #1 (Busch) prevailed; voice vote,2023-02-06,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 83: yeas 49, nays 0",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senators Gaskill and Alting added as coauthors,2023-01-26,[],IN,2023 +"Third reading: passed; Roll Call 166: yeas 59, nays 39",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +Senator Crider added as coauthor,2023-01-31,[],IN,2023 +"Third reading: passed; Roll Call 104: yeas 97, nays 1",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-27,['reading-2'],IN,2023 +House sponsor: Representative Jeter,2023-02-06,[],IN,2023 +Representative Lauer added as coauthor,2023-01-23,[],IN,2023 +"Third reading: passed; Roll Call 132: yeas 94, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Senate sponsor: Senator Koch,2023-02-07,[],IN,2023 +"Third reading: passed; Roll Call 168: yeas 72, nays 25",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #5 (Prescott) prevailed; voice vote,2023-02-14,['amendment-passage'],IN,2023 +Senator Qaddoura added as coauthor,2023-02-02,[],IN,2023 +Senators Dernulc and Tomes added as coauthors,2023-01-31,[],IN,2023 +House sponsor: Representative Morrison,2023-02-13,[],IN,2023 +"Third reading: passed; Roll Call 61: yeas 98, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Bassler added as coauthor,2023-02-02,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Cosponsor: Representative King J,2023-02-14,[],IN,2023 +House sponsor: Representative Jeter,2023-02-21,[],IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +Senator Breaux added as coauthor,2023-02-07,[],IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Representative DeLaney added as coauthor,2023-03-27,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Senators Crane and Hunley added as coauthors,2023-02-07,[],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +Referred to the Senate,2023-02-14,['referral'],IN,2023 +Senate sponsor: Senator Freeman,2023-02-07,[],IN,2023 +Returned to the Senate,2023-03-30,['receipt'],IN,2023 +Referred to the House,2023-02-10,['referral'],IN,2023 +House sponsor: Representative Torr,2023-02-28,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-07,['reading-2'],IN,2023 +Senate sponsor: Senator Brown L,2023-02-13,[],IN,2023 +"Third reading: passed; Roll Call 172: yeas 45, nays 4",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 136: yeas 91, nays 2",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-14,['referral'],IN,2023 +Senate sponsor: Senator Raatz,2023-02-21,[],IN,2023 +Cosponsors: Representatives Bartels and King J,2023-01-31,[],IN,2023 +"Senate sponsors: Senators Baldwin, Crider, Walker K",2023-02-23,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-02-09,['committee-passage'],IN,2023 +Returned to the House,2023-02-17,['receipt'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-20,['reading-2'],IN,2023 +Cosponsor: Representative Lindauer,2023-02-20,[],IN,2023 +First reading: referred to Committee on Elections,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 62: yeas 49, nays 0",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Cosponsors: Representatives Gore M, Moseley, Boy",2023-02-28,[],IN,2023 +"Third reading: passed; Roll Call 128: yeas 29, nays 18",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House,2023-04-04,['receipt'],IN,2023 +Cosponsor: Representative Cherry,2023-02-27,[],IN,2023 +First reading: referred to Committee on Local Government,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Senate sponsors: Senators Johnson and Leising,2023-02-20,[],IN,2023 +Senator Messmer added as second author,2023-01-23,[],IN,2023 +House sponsor: Representative Snow,2023-01-31,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +Returned to the House,2023-04-20,['receipt'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-14,['reading-2'],IN,2023 +Representative Barrett added as coauthor,2023-01-31,[],IN,2023 +Referred to the Senate,2023-01-25,['referral'],IN,2023 +"Third reading: passed; Roll Call 46: yeas 96, nays 0",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 86: yeas 47, nays 1",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +Referred to the Senate,2023-02-08,['referral'],IN,2023 +Cosponsors: Representatives Steuerwald and Meltzer J,2023-01-26,[],IN,2023 +"Third reading: passed; Roll Call 136: yeas 43, nays 3",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 89: yeas 92, nays 0",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsors: Senators Brown L and Messmer,2023-02-16,[],IN,2023 +Referred to the Senate,2023-01-25,['referral'],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-09,['reading-2'],IN,2023 +Senate sponsor: Senator Messmer,2023-02-21,[],IN,2023 +Senator Buck added as coauthor,2023-01-26,[],IN,2023 +Senator Zay added as coauthor,2023-01-23,[],IN,2023 +Senator Qaddoura added as coauthor,2023-02-23,[],IN,2023 +Senator Leising added as second author,2023-02-16,[],IN,2023 +"Senators Pol, Becker, Ford J.D., Tomes added as coauthors",2023-02-14,[],IN,2023 +Returned to the Senate,2023-01-27,['receipt'],IN,2023 +Representative O'Brien T added as coauthor,2023-02-21,[],IN,2023 +Returned to the Senate,2023-02-28,['receipt'],IN,2023 +"Third reading: passed; Roll Call 195: yeas 89, nays 1",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-01-24,['referral'],IN,2023 +Rule 105.1 suspended,2023-01-19,[],IN,2023 +"Third reading: passed; Roll Call 97: yeas 37, nays 12",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Placed back on second reading,2023-01-24,[],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +Referred to the Senate,2023-02-14,['referral'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-07,[],IN,2023 +Senate sponsors: Senators Alexander and Sandlin,2023-02-06,[],IN,2023 +"Third reading: passed; Roll Call 165: yeas 68, nays 28",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsors: Senators Niemeyer and Crider,2023-01-30,[],IN,2023 +"Third reading: passed; Roll Call 193: yeas 90, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 175: yeas 94, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Bohacek removed as coauthor,2023-02-02,[],IN,2023 +Senate sponsors: Senators Walker G and Ford Jon,2023-02-20,[],IN,2023 +"Third reading: passed; Roll Call 180: yeas 40, nays 9",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +"Third reading: passed; Roll Call 230: yeas 94, nays 0",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-23,['reading-2'],IN,2023 +"Senators Walker K, Walker G, Sandlin added as coauthors",2023-01-23,[],IN,2023 +"Third reading: passed; Roll Call 188: yeas 53, nays 40",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Frye R,2023-01-30,[],IN,2023 +House sponsor: Representative Soliday,2023-02-21,[],IN,2023 +Referred to the House,2023-02-22,['referral'],IN,2023 +House sponsor: Representative Aylesworth,2023-02-20,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-16,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 45: yeas 96, nays 0",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Crider added as second author,2023-01-23,[],IN,2023 +Senator Dernulc added as coauthor,2023-02-02,[],IN,2023 +House sponsor: Representative McNamara,2023-01-31,[],IN,2023 +Referred to the Senate,2023-01-25,['referral'],IN,2023 +"Third reading: passed; Roll Call 53: yeas 98, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Steuerwald added as coauthor,2023-02-23,[],IN,2023 +Representative GiaQuinta removed as coauthor,2023-02-14,[],IN,2023 +Referred to the House,2023-04-14,['referral'],IN,2023 +"Third reading: passed; Roll Call 223: yeas 94, nays 0",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Amendment #3 (Porter) failed; Roll Call 163: yeas 29, nays 68",2023-02-20,"['amendment-failure', 'failure']",IN,2023 +"Third reading: passed; Roll Call 194: yeas 41, nays 8",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senators Qaddoura and Niezgodski added as coauthors,2023-01-30,[],IN,2023 +Senator Johnson added as third author,2023-02-23,[],IN,2023 +"Reread second time: amended, ordered engrossed",2023-02-23,['reading-2'],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Cosponsor: Representative Pfaff,2023-02-13,[],IN,2023 +House sponsor: Representative Jeter,2023-01-31,[],IN,2023 +Second reading: ordered engrossed,2023-02-22,['reading-2'],IN,2023 +Senate sponsors: Senators Glick and Raatz,2023-02-23,[],IN,2023 +Representative Jordan added as cosponsor,2023-03-13,[],IN,2023 +Senator Yoder added as coauthor,2023-02-20,[],IN,2023 +"Third reading: passed; Roll Call 178: yeas 40, nays 9",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsors: Senators Alting and Busch,2023-02-20,[],IN,2023 +"Third reading: passed; Roll Call 130: yeas 46, nays 1",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative O'Brien,2023-02-23,[],IN,2023 +Senator Brown L added as third author,2023-01-30,[],IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +Senator Donato added as third author,2023-02-02,[],IN,2023 +First reading: referred to the Committee on Roads and Transportation,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-02,['reading-2'],IN,2023 +House sponsor: Representative Davis,2023-02-21,[],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Representative Pack R added as coauthor,2023-02-13,[],IN,2023 +First reading: adopted voice vote,2023-04-13,"['passage', 'reading-1']",IN,2023 +Senate sponsor: Senator Raatz,2023-01-30,[],IN,2023 +Placed back on second reading,2023-02-20,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Senator Freeman added as coauthor,2023-03-27,[],IN,2023 +Senator Randolph added as coauthor,2023-02-27,[],IN,2023 +Cosponsor: Senator Qaddoura,2023-02-07,[],IN,2023 +Senator Busch added as coauthor,2023-02-13,[],IN,2023 +Senator Byrne added as coauthor,2023-02-02,[],IN,2023 +"Amendment #10 (Hatfield) failed; Roll Call 216: yeas 29, nays 63",2023-02-23,"['amendment-failure', 'failure']",IN,2023 +House sponsor: Representative McNamara,2023-01-24,[],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Referred to the Senate,2023-02-01,['referral'],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Referred to the Senate,2023-01-31,['referral'],IN,2023 +Representative VanNatter added as coauthor,2023-01-24,[],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-26,"['reading-1', 'referral-committee']",IN,2023 +First reading: adopted voice vote,2023-04-12,"['passage', 'reading-1']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-02,['reading-2'],IN,2023 +Referred to the House,2023-01-25,['referral'],IN,2023 +Amendment #1 (Young M) prevailed; voice vote,2023-02-09,['amendment-passage'],IN,2023 +Representative Lauer added as cosponsor,2023-03-21,[],IN,2023 +"Third reading: passed; Roll Call 28: yeas 48, nays 0",2023-01-26,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-01-24,['reading-2'],IN,2023 +Amendment #1 (Randolph Lonnie M) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +Senator Young M added as coauthor,2023-02-13,[],IN,2023 +"Third reading: passed; Roll Call 193: yeas 49, nays 0",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-22,['reading-2'],IN,2023 +House sponsor: Representative Thompson,2023-02-14,[],IN,2023 +Amendment #2 (Young M) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 20: yeas 98, nays 0",2023-01-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Engleman,2023-01-24,[],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +Representatives Carbaugh and Porter added as coauthors,2023-02-13,[],IN,2023 +Senator Randolph added as coauthor,2023-02-07,[],IN,2023 +Second reading: ordered engrossed,2023-02-23,['reading-2'],IN,2023 +Returned to the Senate,2023-02-16,['receipt'],IN,2023 +"Third reading: passed; Roll Call 147: yeas 86, nays 7",2023-02-16,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-02-02,['committee-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-22,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 112: yeas 49, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +"Cosponsors: Representatives Carbaugh, Smith, V., Klinker",2023-01-31,[],IN,2023 +"Third reading: passed; Roll Call 175: yeas 49, nays 0",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Lauer added as cosponsor,2023-03-21,[],IN,2023 +Referred to the House,2023-01-25,['referral'],IN,2023 +Referred to the Senate,2023-02-01,['referral'],IN,2023 +"Second reading: amended, ordered engrossed",2023-01-26,['reading-2'],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +"Committee report: do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-07,['referral'],IN,2023 +Senator Pol added as coauthor,2023-01-23,[],IN,2023 +House sponsor: Representative Genda,2023-02-21,[],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +Cosponsor: Senator Alexander,2023-02-20,[],IN,2023 +House sponsor: Representative Frye R,2023-01-24,[],IN,2023 +Referred to the House,2023-02-09,['referral'],IN,2023 +"Third reading: passed; Roll Call 186: yeas 49, nays 0",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Senators Becker, Glick, Leising added as coauthors",2023-01-19,[],IN,2023 +"Third reading: passed; Roll Call 156: yeas 94, nays 1",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: adopted voice vote,2023-03-21,"['passage', 'reading-1']",IN,2023 +Senator Randolph added as coauthor,2023-02-07,[],IN,2023 +Cosponsors: Representatives Olthoff and Andrade M,2023-01-24,[],IN,2023 +Referred to the House,2023-02-07,['referral'],IN,2023 +House sponsor: Representative Morrison,2023-02-28,[],IN,2023 +Referred to the Senate,2023-02-10,['referral'],IN,2023 +"Third reading: passed; Roll Call 173: yeas 91, nays 3",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 135: yeas 92, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Ford Jon added as coauthor,2023-01-26,[],IN,2023 +Second reading: ordered engrossed,2023-02-09,['reading-2'],IN,2023 +House sponsor: Representative Slager,2023-02-07,[],IN,2023 +House sponsor: Representative Engleman,2023-02-06,[],IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +"Third reading: passed; Roll Call 105: yeas 48, nays 0",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +House sponsor: Representative Jeter,2023-02-21,[],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +Cosponsor: Senator Glick,2023-01-31,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Referred to the Senate,2023-02-07,['referral'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-16,['reading-2'],IN,2023 +Referred to the Senate,2023-02-01,['referral'],IN,2023 +House sponsor: Representative Soliday,2023-02-07,[],IN,2023 +Senator Johnson added as coauthor,2023-02-02,[],IN,2023 +Amendment #4 (Holdman) prevailed; voice vote,2023-02-23,['amendment-passage'],IN,2023 +"Amendment #6 (Hunley) failed; Roll Call 161: yeas 16, nays 33",2023-02-27,"['amendment-failure', 'failure']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Senate sponsors: Senators Alting and Hunley,2023-02-06,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-13,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 72: yeas 44, nays 5",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 157: yeas 96, nays 1",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representatives Karickhoff and Shackleford added as coauthors,2023-02-21,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-20,['reading-2'],IN,2023 +Referred to the House,2023-02-22,['referral'],IN,2023 +Senate sponsors: Senators Perfect and Walker K,2023-02-27,[],IN,2023 +"Third reading: passed; Roll Call 197: yeas 34, nays 14",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +"Amendment #3 (Miller K) failed; Roll Call 99: yeas 31, nays 64",2023-02-13,"['amendment-failure', 'failure']",IN,2023 +Amendment #1 (Brown L) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +"Committee report: do pass, adopted",2023-02-21,['committee-passage'],IN,2023 +Amendment #5 (Behning) prevailed; voice vote,2023-02-23,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 78: yeas 70, nays 27",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the House,2023-02-15,['referral'],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +Senator Alting added as coauthor,2023-02-09,[],IN,2023 +Cosponsor: Representative Olthoff,2023-02-07,[],IN,2023 +"Third reading: passed; Roll Call 164: yeas 73, nays 24",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-08,['referral'],IN,2023 +Senator Randolph added as coauthor,2023-02-07,[],IN,2023 +Senator Crane added as coauthor,2023-01-30,[],IN,2023 +Cosponsors: Representatives Miller D and King J,2023-02-06,[],IN,2023 +Second reading: ordered engrossed,2023-02-27,['reading-2'],IN,2023 +House sponsor: Representative Thompson,2023-02-28,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-09,['reading-2'],IN,2023 +"Senators Crane, Messmer, Tomes, Buck, Doriot added as coauthors",2023-02-02,[],IN,2023 +First reading: referred to Committee on Family and Children Services,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Senator Walker K added as coauthor,2023-02-02,[],IN,2023 +Senator Becker added as coauthor,2023-02-20,[],IN,2023 +"Third reading: passed; Roll Call 56: yeas 48, nays 1",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-17,['referral'],IN,2023 +"Third reading: passed; Roll Call 155: yeas 97, nays 0",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senators Hunley and Leising added as coauthors,2023-02-02,[],IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-02-27,['reading-2'],IN,2023 +House sponsor: Representative Pressel,2023-02-27,[],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Senator Busch added as coauthor,2023-02-20,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-01-24,['referral'],IN,2023 +Cosponsor: Representative Hatfield,2023-02-23,[],IN,2023 +Referred to the Senate,2023-02-08,['referral'],IN,2023 +Referred to the House,2023-01-27,['referral'],IN,2023 +House sponsor: Representative Behning,2023-02-13,[],IN,2023 +"Third reading: passed; Roll Call 152: yeas 92, nays 5",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +Senate sponsors: Senators Glick and Brown L,2023-02-06,[],IN,2023 +"Third reading: passed; Roll Call 119: yeas 47, nays 2",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 248: yeas 75, nays 19",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Cosponsor: Representative Steuerwald,2023-02-21,[],IN,2023 +First reading: referred to Committee on Elections,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Senate sponsors: Senators Brown L and Johnson,2023-02-13,[],IN,2023 +Referred to the Senate,2023-02-01,['referral'],IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-01,['referral'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-13,['reading-2'],IN,2023 +House sponsor: Representative Cherry,2023-02-20,[],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +First reading: referred to Committee on Local Government,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-01-25,['referral'],IN,2023 +"Third reading: passed; Roll Call 93: yeas 95, nays 0",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the Senate,2023-04-12,['receipt'],IN,2023 +Senator Leising added as coauthor,2023-03-27,[],IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-14,['referral'],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +"Third reading: passed; Roll Call 153: yeas 93, nays 4",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 38: yeas 44, nays 0",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Niemeyer,2023-02-23,[],IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-07,['referral'],IN,2023 +"Third reading: passed; Roll Call 233: yeas 94, nays 0",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 141: yeas 46, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Steuerwald,2023-02-28,[],IN,2023 +"Appeal the ruling of the chair (Pryor); ruling of the chair sustained Roll Call 98: yeas 69, nays 29",2023-02-13,[],IN,2023 +Referred to the Senate,2023-01-31,['referral'],IN,2023 +First reading: referred to Committee on Local Government,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +Senate sponsor: Senator Bassler,2023-02-14,[],IN,2023 +First reading: referred to Committee on Public Health,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Returned to the Senate,2023-04-13,['receipt'],IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +Referred to the Senate,2023-01-31,['referral'],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Judy,2023-02-07,[],IN,2023 +House sponsor: Representative Prescott,2023-02-28,[],IN,2023 +"Third reading: passed; Roll Call 222: yeas 94, nays 0",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Mishler added as coauthor,2023-02-23,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-23,['reading-2'],IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 241: yeas 94, nays 0",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Cosponsors: Representatives Jackson, Slager, Harris",2023-02-21,[],IN,2023 +First reading: referred to Committee on Public Policy,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Senate sponsor: Senator Walker K,2023-02-21,[],IN,2023 +Referred to the Senate,2023-02-01,['referral'],IN,2023 +Amendment #3 (Bassler) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 20: yeas 50, nays 0",2023-01-24,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Pressel added as cosponsor,2023-02-23,[],IN,2023 +"Amendment #5 (Hatfield) failed; Roll Call 208: yeas 29, nays 65",2023-02-23,"['amendment-failure', 'failure']",IN,2023 +"Third reading: passed; Roll Call 247: yeas 94, nays 0",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-21,['referral'],IN,2023 +Cosponsor: Representative King J,2023-02-21,[],IN,2023 +"Third reading: passed; Roll Call 91: yeas 81, nays 13",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 167: yeas 86, nays 12",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 43: yeas 95, nays 0",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 191: yeas 91, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsors: Senators Rogers and Garten,2023-02-07,[],IN,2023 +Referred to the House,2023-02-15,['referral'],IN,2023 +"Third reading: passed; Roll Call 184: yeas 89, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Ford Jon,2023-02-21,[],IN,2023 +Referred to the House,2023-01-25,['referral'],IN,2023 +First reading: referred to Committee on Public Health,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-21,['referral'],IN,2023 +Senate sponsors: Senators Brown L and Charbonneau,2023-02-21,[],IN,2023 +"Third reading: passed; Roll Call 239: yeas 95, nays 0",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to the Committee on Rules and Legislative Procedures,2023-04-27,"['reading-1', 'referral-committee']",IN,2023 +Senate sponsors: Senators Busch and Niemeyer,2023-02-23,[],IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Senator Baldwin added as coauthor,2023-01-24,[],IN,2023 +Representative Cash B added as coauthor,2023-02-16,[],IN,2023 +"Appeal the ruling of the chair (Porter); ruling of the chair sustained. Roll Call 66: yeas 67, nays 27",2023-02-02,[],IN,2023 +House sponsor: Representative McNamara,2023-02-28,[],IN,2023 +"Senate sponsors: Senators Rogers, Niezgodski, Young M",2023-02-20,[],IN,2023 +Referred to the House,2023-01-25,['referral'],IN,2023 +Senator Sandlin added as coauthor,2023-01-19,[],IN,2023 +"Third reading: passed; Roll Call 72: yeas 94, nays 3",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Lehman,2023-02-28,[],IN,2023 +"Senate sponsors: Senators Freeman, Rogers, Glick",2023-02-20,[],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +First reading: referred to Committee on Insurance and Financial Institutions,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Morrison,2023-02-06,[],IN,2023 +Referred to the House,2023-02-09,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Returned to the Senate,2023-03-22,['receipt'],IN,2023 +Senate sponsor: Senator Raatz,2023-02-14,[],IN,2023 +Placed back on second reading,2023-02-21,[],IN,2023 +Referred to the House,2023-02-09,['referral'],IN,2023 +Referred to the House,2023-01-25,['referral'],IN,2023 +"Third reading: passed; Roll Call 118: yeas 47, nays 2",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Senate sponsors: Senators Buck, Buchanan, Deery",2023-02-14,[],IN,2023 +Senator Deery added as coauthor,2023-01-26,[],IN,2023 +Referred to the House,2023-01-27,['referral'],IN,2023 +Referred to the Senate,2023-01-31,['referral'],IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +First reading: referred to Committee on Local Government,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Senate sponsors: Senators Walker K, Hunley, Qaddoura",2023-02-14,[],IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 74: yeas 97, nays 0",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Soliday,2023-02-14,[],IN,2023 +"Amendment #1 (DeLaney) failed; Roll Call 207: yeas 27, nays 65",2023-02-23,"['amendment-failure', 'failure']",IN,2023 +Senator Charbonneau added as second sponsor,2023-03-06,[],IN,2023 +Amendment #2 (Jeter) prevailed; voice vote,2023-02-21,['amendment-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-27,['reading-2'],IN,2023 +Referred to the House,2023-02-01,['referral'],IN,2023 +Referred to the Senate,2023-02-17,['referral'],IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Randolph added as coauthor,2023-02-21,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Cosponsors: Representatives Abbott D and Pfaff,2023-02-28,[],IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +Amendment #6 (Jeter) prevailed; voice vote,2023-01-26,['amendment-passage'],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Soliday,2023-02-28,[],IN,2023 +House sponsor: Representative Behning,2023-02-21,[],IN,2023 +"Committee report: do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +Senator Randolph added as coauthor,2023-02-07,[],IN,2023 +Senator Baldwin added as coauthor,2023-01-24,[],IN,2023 +House sponsor: Representative Lehman,2023-02-13,[],IN,2023 +"Amendment #10 (Ford J.D.) failed; Roll Call 162: yeas 11, nays 38",2023-02-27,"['amendment-failure', 'failure']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-27,['reading-2'],IN,2023 +Senate sponsors: Senators Deery and Ford Jon,2023-02-21,[],IN,2023 +Representative Prescott added as coauthor,2023-01-19,[],IN,2023 +"Amendment #3 (Yoder) failed; Roll Call 151: yeas 9, nays 39",2023-02-23,"['amendment-failure', 'failure']",IN,2023 +Senator Holdman added as second author,2023-02-23,[],IN,2023 +First reading: referred to Committee on Local Government,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +Cosponsors: Representatives Jeter C and Greene R,2023-02-21,[],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Second reading: ordered engrossed,2023-02-23,['reading-2'],IN,2023 +Senator Glick added as third author,2023-01-23,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Meltzer,2023-01-26,[],IN,2023 +Amendment #1 (Gaskill) prevailed; voice vote,2023-01-30,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 186: yeas 95, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 185: yeas 45, nays 4",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-20,['reading-2'],IN,2023 +"Senators Melton, Breaux, Bohacek added as coauthors",2023-02-02,[],IN,2023 +Senator Qaddoura added as coauthor,2023-02-02,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-06,['reading-2'],IN,2023 +Senator Randolph added as coauthor,2023-02-23,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-13,['reading-2'],IN,2023 +First reading: referred to Committee on Financial Institutions,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-08,['referral'],IN,2023 +"Third reading: passed; Roll Call 17: yeas 98, nays 0",2023-01-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 142: yeas 46, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-01-30,['reading-2'],IN,2023 +Cosponsor: Representative Goodrich,2023-01-24,[],IN,2023 +"Third reading: passed; Roll Call 113: yeas 48, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +"Third reading: passed; Roll Call 48: yeas 49, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Cosponsor: Representative Steuerwald,2023-02-21,[],IN,2023 +Cosponsor: Representative Abbott D,2023-01-23,[],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-01-24,"['reading-1', 'referral-committee']",IN,2023 +Cosponsor: Representative Hatfield,2023-02-27,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-09,['reading-2'],IN,2023 +Senators Ford Jon and Bohacek added as coauthors,2023-02-27,[],IN,2023 +Second reading: ordered engrossed,2023-02-27,['reading-2'],IN,2023 +Referred to the House,2023-02-17,['referral'],IN,2023 +"Senate sponsors: Senators Raatz, Melton, Ford Jon",2023-02-16,[],IN,2023 +First reading: referred to Committee on Local Government,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Alting added as third author,2023-01-30,[],IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Senate sponsors: Senators Niemeyer, Randolph Lonnie M, Yoder",2023-02-22,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Behning,2023-02-28,[],IN,2023 +Amendment #1 (Hunley) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +Senator Randolph added as coauthor,2023-02-27,[],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-28,['committee-passage'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +First reading: referred to Committee on Veterans Affairs and The Military,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-02-07,"['committee-passage', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 90: yeas 93, nays 0",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 190: yeas 49, nays 0",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-01-25,['referral'],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Amendment #1 (Hatfield) prevailed; voice vote,2023-02-02,['amendment-passage'],IN,2023 +Senator Qaddoura added as coauthor,2023-02-13,[],IN,2023 +Amendment #10 (Young M) failed; voice vote,2023-02-09,"['amendment-failure', 'failure']",IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +Senator Baldwin added as coauthor,2023-02-21,[],IN,2023 +Referred to the Senate,2023-01-24,['referral'],IN,2023 +Senator Perfect added as cosponsor,2023-03-28,[],IN,2023 +"Third reading: passed; Roll Call 94: yeas 95, nays 0",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Public Policy,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Speedy,2023-02-27,[],IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Referred to the House,2023-02-14,['referral'],IN,2023 +Senator Randolph added as coauthor,2023-02-13,[],IN,2023 +"Amendment #4 (Pryor) failed; Roll Call 111: yeas 28, nays 65",2023-02-14,"['amendment-failure', 'failure']",IN,2023 +"Third reading: passed; Roll Call 91: yeas 39, nays 10",2023-02-09,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +"Senators Alexander, Alting, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Glick, Holdman, Hunley, Johnson, Koch, Leising, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Raatz, Randolph, Rogers, Sandlin, Taylor G, Tomes, Walker G, Yoder, Young M, Zay added as coauthors",2023-02-20,[],IN,2023 +"Amendment #1 (Pfaff) failed; Roll Call 171: yeas 28, nays 67",2023-02-21,"['amendment-failure', 'failure']",IN,2023 +Amendment #3 (Hunley) failed; voice vote,2023-02-16,"['amendment-failure', 'failure']",IN,2023 +Representative Lauer added as cosponsor,2023-03-21,[],IN,2023 +Referred to the House,2023-02-07,['referral'],IN,2023 +"Third reading: passed; Roll Call 244: yeas 92, nays 1",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 37: yeas 96, nays 1",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 19: yeas 74, nays 24",2023-01-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Leising,2023-02-06,[],IN,2023 +"Third reading: passed; Roll Call 168: yeas 48, nays 1",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Manning,2023-02-07,[],IN,2023 +"Third reading: passed; Roll Call 46: yeas 48, nays 1",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Randolph added as coauthor,2023-02-23,[],IN,2023 +"Committee report: do pass, adopted",2023-03-13,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 15: yeas 61, nays 37",2023-01-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-14,['referral'],IN,2023 +"Third reading: passed; Roll Call 154: yeas 96, nays 0",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Vermilion,2023-02-27,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-07,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-02-23,['reading-2'],IN,2023 +House sponsor: Representative Thompson,2023-02-27,[],IN,2023 +Second reading: ordered engrossed,2023-02-09,['reading-2'],IN,2023 +Cosponsor: Senator Randolph,2023-02-13,[],IN,2023 +"Third reading: passed; Roll Call 93: yeas 49, nays 0",2023-02-09,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Torr,2023-02-14,[],IN,2023 +Senate sponsor: Senator Garten,2023-01-23,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +House sponsor: Representative Clere,2023-01-30,[],IN,2023 +Cosponsor: Representative Bauer M,2023-02-06,[],IN,2023 +"Senate sponsors: Senators Rogers, Bassler, Buchanan",2023-02-14,[],IN,2023 +Senator Taylor G added as coauthor,2023-01-30,[],IN,2023 +Cosponsor: Senator Johnson,2023-02-14,[],IN,2023 +Amendment #12 (Hamilton) prevailed; voice vote,2023-02-22,['amendment-passage'],IN,2023 +Referred to the House,2023-01-25,['referral'],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +"Senate sponsors: Senators Ford Jon, Garten, Yoder",2023-02-16,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-20,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 88: yeas 92, nays 0",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Cosponsor: Senator Qaddoura,2023-02-23,[],IN,2023 +Referred to the Senate,2023-01-31,['referral'],IN,2023 +Senator Randolph added as coauthor,2023-02-21,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Referred to the House,2023-02-21,['referral'],IN,2023 +House sponsor: Representative Slager,2023-02-13,[],IN,2023 +"Senate sponsors: Senators Zay, Crider, Koch",2023-02-21,[],IN,2023 +Referred to the House,2023-02-07,['referral'],IN,2023 +Referred to the Senate,2023-02-21,['referral'],IN,2023 +Representative Fleming added as coauthor,2023-02-22,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Cosponsors: Representatives Pressel and Harris,2023-02-13,[],IN,2023 +Referred to the Senate,2023-02-14,['referral'],IN,2023 +"Third reading: passed; Roll Call 50: yeas 97, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +First reading: referred to the Committee on Roads and Transportation,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative McGuire,2023-02-06,[],IN,2023 +Senate sponsors: Senators Messmer and Garten,2023-02-07,[],IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +"Senators Donato, Johnson, Hunley added as coauthors",2023-02-21,[],IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +House sponsor: Representative Baird,2023-01-30,[],IN,2023 +Amendment #1 (Young M) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Soliday,2023-02-28,[],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-01-31,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-13,['committee-passage'],IN,2023 +Senator Breaux added as coauthor,2023-02-28,[],IN,2023 +Senator Walker G added as coauthor,2023-02-14,[],IN,2023 +House sponsor: Representative Morris,2023-02-20,[],IN,2023 +"Committee report: do pass, adopted",2023-03-09,['committee-passage'],IN,2023 +Senator Baldwin added as second author,2023-02-14,[],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +Senator Baldwin added as coauthor,2023-02-06,[],IN,2023 +"Third reading: passed; Roll Call 191: yeas 40, nays 9",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Randolph added as coauthor,2023-02-27,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Slager,2023-02-28,[],IN,2023 +Amendment #1 (Charbonneau) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +Senator Randolph added as coauthor,2023-02-07,[],IN,2023 +Representative Olthoff added as cosponsor,2023-03-13,[],IN,2023 +Amendment #7 (Brown L) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +"Amendment #3 (DeLaney) failed; Roll Call 161: yeas 28, nays 67",2023-02-20,"['amendment-failure', 'failure']",IN,2023 +Senator Rogers added as coauthor,2023-01-26,[],IN,2023 +Senator Randolph added as coauthor,2023-02-07,[],IN,2023 +Amendment #11 (Brown L) prevailed; voice vote,2023-02-07,['amendment-passage'],IN,2023 +Senator Crane added as coauthor,2023-02-21,[],IN,2023 +House sponsor: Representative Lindauer,2023-02-27,[],IN,2023 +"Third reading: passed; Roll Call 53: yeas 49, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +Referred to the Senate,2023-01-31,['referral'],IN,2023 +Senate sponsors: Senators Holdman and Buchanan,2023-02-21,[],IN,2023 +"Senate sponsors: Senators Freeman, Garten, Niezgodski",2023-02-27,[],IN,2023 +Referred to the House,2023-02-07,['referral'],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Senate sponsor: Senator Bassler,2023-01-23,[],IN,2023 +Second reading: ordered engrossed,2023-02-13,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 226: yeas 94, nays 0",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 158: yeas 97, nays 0",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +"Third reading: passed; Roll Call 109: yeas 48, nays 0",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: adopted standing vote,2023-04-10,"['passage', 'reading-2']",IN,2023 +"Third reading: passed; Roll Call 73: yeas 97, nays 0",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Prescott,2023-01-30,[],IN,2023 +Referred to the Senate,2023-02-21,['referral'],IN,2023 +Referred to the Senate,2023-02-01,['referral'],IN,2023 +Referred to the Senate,2023-02-21,['referral'],IN,2023 +Referred to the House,2023-02-09,['referral'],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Senator Buck added as third author,2023-01-23,[],IN,2023 +Senator Buchanan added as coauthor,2023-02-02,[],IN,2023 +Representative Criswell C added as coauthor,2023-02-22,[],IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +Amendment #1 (Cherry) prevailed; voice vote,2023-02-13,['amendment-passage'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-02-14,[],IN,2023 +House sponsor: Representative Clere,2023-02-06,[],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +"Senators Rogers, Baldwin, Buchanan, Walker G, Niemeyer, Melton, Qaddoura added as coauthors",2023-01-26,[],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +"Third reading: passed; Roll Call 56: yeas 97, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 229: yeas 95, nays 0",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 106: yeas 48, nays 0",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Cosponsor: Senator Buchanan,2023-02-27,[],IN,2023 +"Committee report: do pass, adopted",2023-03-21,['committee-passage'],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 203: yeas 48, nays 0",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsors: Senators Glick and Messmer,2023-02-14,[],IN,2023 +House sponsor: Representative McNamara,2023-02-13,[],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +Referred to the House,2023-02-28,['referral'],IN,2023 +Senator Ford Jon added as coauthor,2023-02-09,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Returned to the House,2023-04-11,['receipt'],IN,2023 +"Committee report: do pass, adopted",2023-04-04,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 84: yeas 92, nays 0",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-07,['referral'],IN,2023 +"Committee report: do pass, adopted",2023-03-20,['committee-passage'],IN,2023 +House sponsor: Representative Soliday,2023-01-31,[],IN,2023 +Senator Ford J.D. added as cosponsor,2023-03-13,[],IN,2023 +First reading: referred to Committee on Education,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-01-24,['referral'],IN,2023 +Referred to the Senate,2023-02-01,['referral'],IN,2023 +Senator Randolph added as coauthor,2023-02-21,[],IN,2023 +Cosponsor: Representative Abbott D,2023-01-30,[],IN,2023 +First reading: referred to Committee on Utilities,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 61: yeas 48, nays 0",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #1 (Sandlin) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 114: yeas 34, nays 15",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #1 (Donato) prevailed; voice vote,2023-02-02,['amendment-passage'],IN,2023 +First reading: referred to Committee on Education,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Amendment #1 (Pol) failed; Roll Call 122: yeas 9, nays 39",2023-02-16,"['amendment-failure', 'failure']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-28,['referral'],IN,2023 +Referred to the Senate,2023-02-08,['referral'],IN,2023 +"Third reading: passed; Roll Call 200: yeas 64, nays 28",2023-02-22,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 133: yeas 92, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Cosponsor: Representative GiaQuinta,2023-02-06,[],IN,2023 +First reading: referred to Committee on Natural Resources,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-03-23,['reading-2'],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Senator Walker K added as coauthor,2023-02-06,[],IN,2023 +Senator Bohacek added as second sponsor,2023-03-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 155: yeas 48, nays 0",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Baird,2023-02-14,[],IN,2023 +"Third reading: passed; Roll Call 125: yeas 94, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Donato,2023-02-27,[],IN,2023 +"Third reading: passed; Roll Call 146: yeas 92, nays 0",2023-02-16,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +First reading: referred to Committee on Agriculture and Rural Development,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-21,['referral'],IN,2023 +Cosponsor: Representative Engleman,2023-02-13,[],IN,2023 +Referred to the House,2023-02-01,['referral'],IN,2023 +Amendment #16 (DeLaney) ruled out of order,2023-02-22,[],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Cosponsor: Senator Busch,2023-02-21,[],IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-01-24,['referral'],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-21,['referral'],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative King,2023-02-21,[],IN,2023 +"Third reading: passed; Roll Call 129: yeas 91, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Cosponsors: Representatives Miller D, Aylesworth, Abbott D",2023-02-20,[],IN,2023 +Second reading: ordered engrossed,2023-02-23,['reading-2'],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-07,['referral'],IN,2023 +"Third reading: passed; Roll Call 21: yeas 97, nays 1",2023-01-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Cosponsor: Representative Pfaff,2023-01-30,[],IN,2023 +Cosponsors: Representatives Miller D and Bartels,2023-02-14,[],IN,2023 +First reading: referred to Committee on Natural Resources,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Amendment #5 (Rogers) prevailed; voice vote,2023-02-21,['amendment-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-14,['reading-2'],IN,2023 +House sponsor: Representative Lehman,2023-02-09,[],IN,2023 +"Senate sponsors: Senators Holdman, Garten, Baldwin",2023-02-14,[],IN,2023 +Amendment #1 (Rogers) prevailed; voice vote,2023-02-14,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-03-13,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 177: yeas 94, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Public Health,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-15,['referral'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-13,['reading-2'],IN,2023 +First reading: referred to Committee on Natural Resources,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-01-24,['referral'],IN,2023 +First reading: referred to Committee on Family and Children Services,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Senator Rogers added as third author,2023-01-24,[],IN,2023 +Senator Crider added as coauthor,2023-02-06,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Bohacek added as second sponsor,2023-03-13,[],IN,2023 +House sponsor: Representative Steuerwald,2023-02-28,[],IN,2023 +"Third reading: passed; Roll Call 138: yeas 87, nays 3",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Alting added as second sponsor,2023-03-30,[],IN,2023 +Referred to the House,2023-02-28,['referral'],IN,2023 +Senator Yoder added as cosponsor,2023-03-13,[],IN,2023 +Referred to the House,2023-02-28,['referral'],IN,2023 +"Senators Doriot, Koch, Leising added as coauthors",2023-02-21,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-20,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-08,['referral'],IN,2023 +Senate sponsor: Senator Brown L,2023-01-31,[],IN,2023 +Referred to the House,2023-02-14,['referral'],IN,2023 +House sponsor: Representative Manning,2023-02-07,[],IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Cosponsor: Representative Morrison,2023-02-28,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-20,['reading-2'],IN,2023 +Senator Randolph added as coauthor,2023-02-21,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-21,['committee-passage'],IN,2023 +Referred to the Senate,2023-01-24,['referral'],IN,2023 +Second reading: ordered engrossed,2023-02-27,['reading-2'],IN,2023 +House sponsor: Representative Vermilion,2023-01-31,[],IN,2023 +"Third reading: passed; Roll Call 59: yeas 28, nays 19",2023-02-02,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-09,['reading-2'],IN,2023 +First reading: referred to Committee on Family and Children Services,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Amendment #4 (Yoder) failed; Roll Call 165: yeas 12, nays 37",2023-02-27,"['amendment-failure', 'failure']",IN,2023 +Amendment #4 (DeLaney) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +Amendment #2 (Errington) ruled out of order,2023-02-02,[],IN,2023 +Amendment #1 (Koch) prevailed; voice vote,2023-02-14,['amendment-passage'],IN,2023 +Cosponsors: Representatives Jordan and Prescott,2023-02-27,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-20,"['committee-passage', 'referral-committee']",IN,2023 +Senator Busch added as coauthor,2023-01-30,[],IN,2023 +Senator Alexander added as third sponsor,2023-03-14,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +Referred to the House,2023-02-09,['referral'],IN,2023 +House sponsor: Representative Jeter,2023-02-28,[],IN,2023 +Referred to the Senate,2023-02-08,['referral'],IN,2023 +First reading: referred to Committee on Insurance and Financial Institutions,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +Senators Bohacek and Walker G added as coauthors,2023-02-09,[],IN,2023 +Senator Doriot added as second sponsor,2023-03-16,[],IN,2023 +Amendment #6 (Yoder) failed; voice vote,2023-02-07,"['amendment-failure', 'failure']",IN,2023 +First reading: referred to Committee on Natural Resources,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-22,['referral'],IN,2023 +Referred to the House,2023-02-09,['referral'],IN,2023 +House sponsor: Representative Wesco,2023-02-27,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-07,"['committee-passage', 'referral-committee']",IN,2023 +Senator Leising added as second author,2023-02-27,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-03,['committee-passage'],IN,2023 +House sponsor: Representative Steuerwald,2023-02-09,[],IN,2023 +Amendment #5 (Sandlin) prevailed; voice vote,2023-04-04,['amendment-passage'],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-07,['referral'],IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +Senator Koch added as cosponsor,2023-04-06,[],IN,2023 +Referred to the Senate,2023-02-23,['referral'],IN,2023 +House sponsor: Representative Torr,2023-01-31,[],IN,2023 +"Cosponsors: Representatives Barrett, Prescott, Lindauer",2023-01-30,[],IN,2023 +"Third reading: passed; Roll Call 95: yeas 48, nays 1",2023-02-09,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 131: yeas 94, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the House,2023-02-28,['referral'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-20,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-03-09,['committee-passage'],IN,2023 +Referred to the Senate,2023-01-24,['referral'],IN,2023 +Cosponsors: Representatives Heaton and Pfaff,2023-02-06,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +"Cosponsors: Representatives Davis M, Klinker, Smith, V.",2023-02-28,[],IN,2023 +Referred to the Senate,2023-02-28,['referral'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-27,['reading-2'],IN,2023 +Senator Tomes added as coauthor,2023-01-31,[],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Senator Becker added as cosponsor,2023-02-28,[],IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 202: yeas 92, nays 0",2023-02-22,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Pol added as coauthor,2023-01-30,[],IN,2023 +Senate sponsor: Senator Koch,2023-01-30,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-14,['referral'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 16: yeas 97, nays 0",2023-01-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Glick,2023-02-20,[],IN,2023 +Amendment #1 (Walker K) prevailed; voice vote,2023-01-30,['amendment-passage'],IN,2023 +"Cosponsors: Representatives Lindauer, Bartels, Hamilton",2023-02-28,[],IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +Cosponsor: Senator Qaddoura,2023-02-16,[],IN,2023 +Senator Niezgodski added as coauthor,2023-02-27,[],IN,2023 +Representatives Negele and Aylesworth added as cosponsors,2023-02-23,[],IN,2023 +Referred to the House,2023-02-22,['referral'],IN,2023 +Second reading: ordered engrossed,2023-02-22,['reading-2'],IN,2023 +Senate sponsors: Senators Raatz and Crane,2023-02-27,[],IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-02-09,"['committee-passage', 'referral-committee']",IN,2023 +"Senators Becker, Buck, Ford J.D. added as coauthors",2023-01-23,[],IN,2023 +Representative Fleming added as coauthor,2023-02-13,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Amendment #6 (Clere) prevailed; voice vote,2023-02-22,['amendment-passage'],IN,2023 +First reading: referred to Committee on Public Health,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Reread second time: amended, ordered engrossed",2023-02-21,['reading-2'],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 201: yeas 48, nays 0",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Appropriations,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 73: yeas 42, nays 7",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Breaux added as coauthor,2023-02-02,[],IN,2023 +"Senate sponsors: Senators Buck, Gaskill, Johnson",2023-02-14,[],IN,2023 +"Committee report: do pass, adopted",2023-03-13,['committee-passage'],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 130: yeas 73, nays 19",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the House,2023-02-09,['referral'],IN,2023 +Cosponsors: Representatives DeVon and May,2023-02-28,[],IN,2023 +Referred to the Senate,2023-02-28,['referral'],IN,2023 +"Amendment #3 (Gore) failed; Roll Call 209: yeas 29, nays 66",2023-02-23,"['amendment-failure', 'failure']",IN,2023 +"Committee report: do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +Representatives Hall D and Heaton added as cosponsors,2023-03-16,[],IN,2023 +"Third reading: passed; Roll Call 82: yeas 91, nays 6",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Johnson,2023-02-21,[],IN,2023 +Referred to the House,2023-01-25,['referral'],IN,2023 +"Third reading: passed; Roll Call 185: yeas 90, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-21,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +Cosponsor: Representative Smaltz,2023-02-06,[],IN,2023 +"Third reading: passed; Roll Call 139: yeas 66, nays 24",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Judiciary,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +Senator Freeman added as second author,2023-02-21,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-04,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-07,['referral'],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 154: yeas 48, nays 0",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Cosponsors: Representatives Ledbetter C and DeLaney,2023-02-21,[],IN,2023 +Senator Bohacek added as cosponsor,2023-03-16,[],IN,2023 +Amendment #9 (Pol) failed; voice vote,2023-02-27,"['amendment-failure', 'failure']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-23,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-09,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-06,['reading-2'],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-09,['referral'],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-13,['committee-passage'],IN,2023 +Senate sponsor: Senator Leising,2023-02-20,[],IN,2023 +House sponsor: Representative Morrison,2023-02-28,[],IN,2023 +Senator Bohacek added as cosponsor,2023-03-13,[],IN,2023 +"Committee report: do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +Referred to the House,2023-02-28,['referral'],IN,2023 +House sponsor: Representative McGuire,2023-02-14,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Cosponsor: Representative Culp K,2023-02-20,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-21,['referral'],IN,2023 +Second reading: adopted voice vote,2023-04-13,"['passage', 'reading-2']",IN,2023 +Senator Crane added as third author,2023-02-28,[],IN,2023 +House sponsor: Representative Miller D,2023-02-21,[],IN,2023 +Representative Moed added as coauthor,2023-02-23,[],IN,2023 +"Third reading: passed; Roll Call 227: yeas 80, nays 15",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Koch added as second sponsor,2023-03-20,[],IN,2023 +Senate sponsors: Senators Leising and Niemeyer,2023-02-07,[],IN,2023 +"Committee report: do pass, adopted",2023-03-20,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 105: yeas 69, nays 30",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Utilities,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-03-20,['committee-passage'],IN,2023 +Referred to the House,2023-02-22,['referral'],IN,2023 +"Senate sponsors: Senators Byrne, Garten, Niezgodski",2023-02-27,[],IN,2023 +Senator Young M added as coauthor,2023-03-27,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 76: yeas 97, nays 0",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsor: Senator Crider,2023-02-20,[],IN,2023 +Referred to the House,2023-02-14,['referral'],IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 181: yeas 37, nays 12",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Davis,2023-01-31,[],IN,2023 +Senator Walker K added as coauthor,2023-02-20,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-27,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 103: yeas 47, nays 0",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Randolph added as coauthor,2023-02-28,[],IN,2023 +Senate sponsor: Senator Crider,2023-02-21,[],IN,2023 +"Third reading: passed; Roll Call 198: yeas 39, nays 9",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Niezgodski removed as coauthor,2023-02-06,[],IN,2023 +Senators Qaddoura and Melton added as coauthors,2023-02-07,[],IN,2023 +"Third reading: passed; Roll Call 107: yeas 48, nays 0",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 194: yeas 90, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-01-30,['reading-2'],IN,2023 +Cosponsors: Representatives McNamara and Steuerwald,2023-01-26,[],IN,2023 +Senate sponsors: Senators Rogers and Garten,2023-02-27,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Insurance and Financial Institutions,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Rule 105.1 suspended,2023-01-30,[],IN,2023 +Representative Fleming added as coauthor,2023-02-21,[],IN,2023 +Senator Rogers added as coauthor,2023-02-13,[],IN,2023 +"Reread second time: amended, ordered engrossed",2023-01-26,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 27: yeas 34, nays 15",2023-01-26,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-23,['reading-2'],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-03-16,"['committee-passage', 'referral-committee']",IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +"Committee report: do pass, adopted",2023-03-21,['committee-passage'],IN,2023 +"Senators Byrne, Dernulc, Donato, Doriot added as coauthors",2023-02-27,[],IN,2023 +"Committee report: do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-03-09,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 118: yeas 96, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Judy,2023-02-14,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Policy,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-02-20,['reading-2'],IN,2023 +Referred to the Senate,2023-02-21,['referral'],IN,2023 +Cosponsors: Representatives Vermilion A and Carbaugh,2023-02-28,[],IN,2023 +Referred to the Senate,2023-02-07,['referral'],IN,2023 +Senator Ford Jon added as coauthor,2023-01-23,[],IN,2023 +Cosponsor: Representative Torr,2023-02-28,[],IN,2023 +"Third reading: passed; Roll Call 225: yeas 91, nays 0",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Senate sponsors: Senators Walker G, Ford Jon, Pol",2023-02-27,[],IN,2023 +"Senate sponsors: Senators Walker G, Rogers, Holdman",2023-02-06,[],IN,2023 +First reading: referred to Committee on Utilities,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-01-31,['referral'],IN,2023 +Referred to the Senate,2023-02-21,['referral'],IN,2023 +Senate sponsors: Senators Freeman and Tomes,2023-02-07,[],IN,2023 +Referred to the House,2023-02-22,['referral'],IN,2023 +Representative Olthoff added as coauthor,2023-02-16,[],IN,2023 +"Reread second time: amended, ordered engrossed",2023-02-20,['reading-2'],IN,2023 +House sponsor: Representative Vermilion,2023-01-24,[],IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +Senators Walker K and Niezgodski added as cosponsors,2023-02-23,[],IN,2023 +Second reading: ordered engrossed,2023-02-27,['reading-2'],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 246: yeas 90, nays 1",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 113: yeas 94, nays 1",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-28,['committee-passage'],IN,2023 +House sponsor: Representative May,2023-01-30,[],IN,2023 +"Committee report: do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +"Cosponsors: Representatives Andrade M, Moseley, Boy",2023-02-27,[],IN,2023 +"Senators Garten, Glick, Breaux added as coauthors",2023-02-02,[],IN,2023 +Representative Pierce K added as coauthor,2023-02-20,[],IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +Senator Becker added as coauthor,2023-02-28,[],IN,2023 +"Committee report: do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +Cosponsors: Representatives Frye and Jeter C,2023-02-14,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 120: yeas 91, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Senate sponsors: Senators Freeman, Rogers, Raatz",2023-02-21,[],IN,2023 +"Senate sponsors: Senators Crider, Johnson and Busch",2023-02-23,[],IN,2023 +"Committee report: do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +"Senate sponsors: Senators Baldwin, Garten, Crider",2023-02-07,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 176: yeas 46, nays 3",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senators Raatz and Alexander added as coauthors,2023-01-26,[],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +Senator Baldwin added as coauthor,2023-01-31,[],IN,2023 +Second reading: ordered engrossed,2023-03-23,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 166: yeas 49, nays 0",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-03-27,['reading-2'],IN,2023 +Referred to the Senate,2023-02-08,['referral'],IN,2023 +Referred to the House,2023-01-24,['referral'],IN,2023 +Senate sponsor: Senator Charbonneau,2023-02-16,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-21,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +First reading: referred to Committee on Public Health,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-04-06,['reading-2'],IN,2023 +"Representatives Lindauer, Borders, Rowray E, Bartels, Abbott D, King J, Heaton, Morrison, Miller D added as coauthors",2023-01-30,[],IN,2023 +"Senate sponsors: Senators Bohacek, Charbonneau, Zay",2023-02-23,[],IN,2023 +"Amendment #6 (Johnson) failed; Roll Call 210: yeas 29, nays 64",2023-02-23,"['amendment-failure', 'failure']",IN,2023 +Committee report: do pass adopted; reassigned to Committee on Tax and Fiscal Policy,2023-03-28,"['committee-passage', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 146: yeas 45, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Reread second time: amended, ordered engrossed",2023-02-22,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 81: yeas 49, nays 0",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Qaddoura added as coauthor,2023-01-30,[],IN,2023 +Cosponsor: Representative Ledbetter C,2023-01-24,[],IN,2023 +"Committee report: do pass, adopted",2023-03-09,['committee-passage'],IN,2023 +Senator Ford J.D. added as coauthor,2023-02-06,[],IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +Senator Niezgodski added as cosponsor,2023-03-07,[],IN,2023 +"Cosponsors: Representatives Ledbetter C, Clere, Gore M",2023-02-14,[],IN,2023 +Senator Yoder added as cosponsor,2023-03-07,[],IN,2023 +Senator Walker G added as second sponsor,2023-03-06,[],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Referred to the House,2023-02-14,['referral'],IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Amendment #2 (Pol) failed; Roll Call 163: yeas 16, nays 33",2023-02-27,"['amendment-failure', 'failure']",IN,2023 +Senator Becker added as third sponsor,2023-02-27,[],IN,2023 +Referred to the Senate,2023-02-21,['referral'],IN,2023 +Senator Young M added as second sponsor,2023-03-27,[],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 183: yeas 49, nays 0",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Slager removed as sponsor,2023-02-13,[],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-28,['referral'],IN,2023 +Senator Melton added as coauthor,2023-02-13,[],IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-03-28,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +"Committee report: do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +Referred to the House,2023-01-27,['referral'],IN,2023 +Referred to the House,2023-02-28,['referral'],IN,2023 +"Cosponsors: Representatives Bauer M, O'Brien T, DeVon",2023-02-21,[],IN,2023 +"Third reading: passed; Roll Call 182: yeas 92, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +First reading: referred to Committee on Public Policy,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +Senate sponsors: Senators Brown L and Alexander,2023-02-14,[],IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +"Third reading: passed; Roll Call 199: yeas 58, nays 34",2023-02-22,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House,2023-04-14,['receipt'],IN,2023 +Referred to the House,2023-02-07,['referral'],IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +Senator Randolph added as cosponsor,2023-03-30,[],IN,2023 +Second reading: ordered engrossed,2023-03-23,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Lindauer,2023-02-27,[],IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Senate sponsor: Senator Freeman,2023-01-30,[],IN,2023 +"Senate sponsors: Senators Buchanan, Rogers, Johnson",2023-02-27,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +House sponsor: Representative Manning,2023-02-06,[],IN,2023 +Senator Niezgodski added as third author,2023-02-06,[],IN,2023 +"Committee report: do pass, adopted",2023-03-09,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 237: yeas 85, nays 11",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-08,['referral'],IN,2023 +House sponsor: Representative Jeter,2023-01-26,[],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Senator Crane added as coauthor,2023-02-20,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-14,['referral'],IN,2023 +Second reading: ordered engrossed,2023-03-30,['reading-2'],IN,2023 +Senator Rogers added as second sponsor,2023-03-30,[],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-03-07,"['committee-passage', 'referral-committee']",IN,2023 +Amendment #2 (Young M) failed; voice vote,2023-03-21,"['amendment-failure', 'failure']",IN,2023 +First reading: referred to Committee on Local Government,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +Senator Rogers added as second sponsor,2023-03-23,[],IN,2023 +Representative Torr added as cosponsor,2023-04-04,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-13,['committee-passage'],IN,2023 +Senator Bassler added as coauthor,2023-01-26,[],IN,2023 +First reading: referred to Committee on Local Government,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-15,['referral'],IN,2023 +Senator Pol added as coauthor,2023-02-21,[],IN,2023 +Referred to the Senate,2023-02-28,['referral'],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Cosponsor: Representative Sweet L,2023-01-30,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Becker added as coauthor,2023-02-28,[],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +First reading: referred to Committee on Education,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Representative Barrett added as coauthor,2023-02-23,[],IN,2023 +Referred to the Senate,2023-02-07,['referral'],IN,2023 +"Third reading: passed; Roll Call 121: yeas 86, nays 9",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Barrett added as cosponsor,2023-04-10,[],IN,2023 +Senator Doriot added as third sponsor,2023-03-14,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +Cosponsor: Representative Slager,2023-02-28,[],IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-21,['referral'],IN,2023 +"Committee report: do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 245: yeas 94, nays 0",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Koch added as third author,2023-02-21,[],IN,2023 +Amendment #1 (Koch) prevailed; voice vote,2023-02-06,['amendment-passage'],IN,2023 +"Committee report: do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-28,['referral'],IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-03-13,['reading-2'],IN,2023 +Referred to the Senate,2023-02-21,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +Referred to the House,2023-02-15,['referral'],IN,2023 +House sponsor: Representative Cash,2023-02-28,[],IN,2023 +House sponsor: Representative Vermilion,2023-02-23,[],IN,2023 +"Committee report: do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +Senate sponsors: Senators Raatz and Rogers,2023-02-21,[],IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Cosponsors: Representatives DeVon, Pierce K, Rowray E",2023-01-31,[],IN,2023 +Senator Randolph added as coauthor,2023-02-07,[],IN,2023 +Representative Hall D added as cosponsor,2023-03-16,[],IN,2023 +Representative King J added as cosponsor,2023-04-11,[],IN,2023 +Amendment #12 (Donato) prevailed; voice vote,2023-04-06,['amendment-passage'],IN,2023 +House sponsor: Representative King,2023-02-28,[],IN,2023 +Amendment #1 (Walker G) prevailed; voice vote,2023-03-21,['amendment-passage'],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +House sponsor: Representative Steuerwald,2023-02-13,[],IN,2023 +Senator Qaddoura added as cosponsor,2023-03-14,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +Senator Zay added as coauthor,2023-03-27,[],IN,2023 +Representative Hamilton added as cosponsor,2023-02-09,[],IN,2023 +"Committee report: do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Cosponsor: Senator Becker,2023-02-07,[],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +"Third reading: passed; Roll Call 75: yeas 97, nays 0",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +House sponsor: Representative DeVon,2023-02-28,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-28,['committee-passage'],IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-03-28,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Senators Ford J.D., Ford Jon, Hunley added as coauthors",2023-02-27,[],IN,2023 +Referred to the Senate,2023-02-08,['referral'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-23,"['committee-passage', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-28,['referral'],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-03-16,"['committee-passage', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-21,['referral'],IN,2023 +House sponsor: Representative Snow,2023-02-06,[],IN,2023 +"Third reading: passed; Roll Call 242: yeas 94, nays 0",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Amendment #1 (Hunley) prevailed; voice vote,2023-03-20,['amendment-passage'],IN,2023 +First reading: referred to Committee on Education,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +"Third reading: passed; Roll Call 148: yeas 92, nays 1",2023-02-16,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Local Government,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Senator Walker G added as second sponsor,2023-02-28,[],IN,2023 +Senator Randolph added as coauthor,2023-02-21,[],IN,2023 +Senator Randolph added as coauthor,2023-02-27,[],IN,2023 +"Committee report: do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +Senator Garten added as third sponsor,2023-03-13,[],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-03-13,"['committee-passage', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 99: yeas 48, nays 1",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Representative Andrade M added as coauthor,2023-02-07,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-03-07,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 58: yeas 47, nays 0",2023-02-02,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-03-23,['reading-2'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 127: yeas 47, nays 0",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Cosponsor: Representative Steuerwald,2023-02-13,[],IN,2023 +First reading: referred to Committee on Veterans Affairs and The Military,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 76: yeas 45, nays 5",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Slager,2023-02-28,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +Representative Porter added as coauthor,2023-02-13,[],IN,2023 +"Senators Byrne, Koch, Zay added as cosponsors",2023-03-20,[],IN,2023 +Senator Ford Jon added as coauthor,2023-02-09,[],IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-01,['referral'],IN,2023 +Senator Crane added as coauthor,2023-02-28,[],IN,2023 +Second reading: adopted standing vote,2023-04-10,"['passage', 'reading-2']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-07,['reading-2'],IN,2023 +Senator Raatz added as coauthor,2023-01-31,[],IN,2023 +Senator Hunley added as cosponsor,2023-03-13,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-20,"['committee-passage', 'referral-committee']",IN,2023 +Amendment #3 (Gaskill) prevailed; voice vote,2023-04-10,['amendment-passage'],IN,2023 +Referred to the House,2023-02-10,['referral'],IN,2023 +First reading: referred to Committee on Appropriations,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-23,"['committee-passage', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Senator Ford J.D. added as cosponsor,2023-03-20,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-03-20,['committee-passage'],IN,2023 +Senator Messmer added as coauthor,2023-02-21,[],IN,2023 +Senator Koch added as second sponsor,2023-03-20,[],IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +Referred to the House,2023-02-22,['referral'],IN,2023 +Amendment #1 (Taylor G) prevailed; voice vote,2023-03-28,['amendment-passage'],IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Amendment #1 (Ledbetter) prevailed; voice vote,2023-02-22,['amendment-passage'],IN,2023 +Senator Leising added as second sponsor,2023-03-13,[],IN,2023 +Representative Haggard C added as cosponsor,2023-02-20,[],IN,2023 +"Senate sponsors: Senators Messmer, Alting, Walker K",2023-02-14,[],IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Senator Johnson added as cosponsor,2023-03-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-03,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-03-13,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-27,['reading-2'],IN,2023 +House sponsor: Representative Judy,2023-02-14,[],IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +Senator Ford J.D. added as cosponsor,2023-03-09,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-02,['reading-2'],IN,2023 +Representative Cash B added as cosponsor,2023-03-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-09,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-10,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-23,['referral'],IN,2023 +Referred to the House,2023-02-09,['referral'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-16,['reading-2'],IN,2023 +Senators Donato and Breaux added as cosponsors,2023-04-13,[],IN,2023 +Cosponsors: Representatives Cherry and Pfaff,2023-02-27,[],IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-03-20,['committee-passage'],IN,2023 +Senator Rogers added as second sponsor,2023-03-23,[],IN,2023 +Referred to the House,2023-02-28,['referral'],IN,2023 +"Senate sponsors: Senators Koch, Ford Jon, Rogers",2023-02-22,[],IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +House sponsor: Representative Miller D,2023-02-02,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-01-30,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +Senator Randolph added as coauthor,2023-02-21,[],IN,2023 +"Third reading: passed; Roll Call 204: yeas 48, nays 0",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Local Government,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-09,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-17,['referral'],IN,2023 +"Amendment #3 (Ford J.D.) failed; Roll Call 300: yeas 18, nays 30",2023-04-04,"['amendment-failure', 'failure']",IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-03-09,"['committee-passage', 'referral-committee']",IN,2023 +Referred to the House,2023-02-22,['referral'],IN,2023 +Referred to the House,2023-02-07,['referral'],IN,2023 +"Senate sponsors: Senators Crider, Koch, Pol",2023-02-14,[],IN,2023 +Amendment #1 (Bohacek) prevailed; voice vote,2023-03-20,['amendment-passage'],IN,2023 +House sponsor: Representative Teshka,2023-02-23,[],IN,2023 +Representative Frye added as coauthor,2023-01-30,[],IN,2023 +Senator Gaskill added as coauthor,2023-02-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-04-04,"['committee-passage', 'referral-committee']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-02,['reading-2'],IN,2023 +Referred to the House,2023-02-15,['referral'],IN,2023 +Senator Pol added as coauthor,2023-02-06,[],IN,2023 +"Committee report: do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +Amendment #6 (Pfaff) failed; voice vote,2023-02-20,"['amendment-failure', 'failure']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Referred to the House,2023-02-01,['referral'],IN,2023 +Senate sponsor: Senator Koch,2023-02-21,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-13,['committee-passage'],IN,2023 +First reading: referred to Committee on Agriculture and Rural Development,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-07,['referral'],IN,2023 +Second reading: ordered engrossed,2023-04-06,['reading-2'],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Amendment #11 (Crider) prevailed; voice vote,2023-02-09,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 176: yeas 94, nays 0",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Haggard C added as cosponsor,2023-02-20,[],IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +"Amendment #11 (GiaQuinta) failed; Roll Call 205: yeas 26, nays 61",2023-02-22,"['amendment-failure', 'failure']",IN,2023 +House sponsor: Representative Barrett,2023-02-13,[],IN,2023 +Representative Moseley added as cosponsor,2023-02-16,[],IN,2023 +First reading: referred to Committee on Agriculture,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-27,['reading-2'],IN,2023 +Cosponsor: Representative Andrade M,2023-01-31,[],IN,2023 +"Committee report: do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +First reading: referred to Committee on Insurance and Financial Institutions,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +Representative Frye added as cosponsor,2023-03-16,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 126: yeas 87, nays 9",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to the Committee on Roads and Transportation,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-01-24,['referral'],IN,2023 +Cosponsors: Representatives Carbaugh and Heine,2023-02-21,[],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-01-24,['referral'],IN,2023 +House sponsor: Representative Jeter,2023-02-09,[],IN,2023 +Referred to the House,2023-02-21,['referral'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-14,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 236: yeas 85, nays 10",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-04-11,['reading-2'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Randolph added as coauthor,2023-02-27,[],IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +First reading: referred to Committee on Local Government,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Bassler added as coauthor,2023-01-30,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +"Senators Crane, Walker G, Doriot, Perfect added as coauthors",2023-01-30,[],IN,2023 +Senator Messmer added as third author,2023-02-14,[],IN,2023 +Senator Raatz added as third author,2023-01-30,[],IN,2023 +Senator Messmer added as coauthor,2023-01-24,[],IN,2023 +"Amendment #2 (Ford J.D.) failed; Roll Call 134: yeas 13, nays 33",2023-02-21,"['amendment-failure', 'failure']",IN,2023 +"Committee report: do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Cosponsors: Representatives GiaQuinta and Miller K,2023-02-09,[],IN,2023 +Senate sponsor: Senator Gaskill,2023-02-14,[],IN,2023 +Cosponsor: Senator Koch,2023-02-14,[],IN,2023 +"Third reading: passed; Roll Call 192: yeas 47, nays 2",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-01,['referral'],IN,2023 +Senator Buchanan added as second sponsor,2023-03-13,[],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +"Second reading: adopted Roll Call 267: yeas 85, nays 0",2023-03-16,"['passage', 'reading-2']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-14,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-04,['committee-passage'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 123: yeas 71, nays 24",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-04-04,['committee-passage'],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-03-16,"['committee-passage', 'referral-committee']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Wesco,2023-02-20,[],IN,2023 +Cosponsor: Representative Frye,2023-02-13,[],IN,2023 +Cosponsor: Representative Steuerwald,2023-02-09,[],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Cosponsors: Representatives Heine and O'Brien T,2023-02-02,[],IN,2023 +Returned to the Senate,2023-03-16,['receipt'],IN,2023 +Referred to the House,2023-02-28,['referral'],IN,2023 +"Committee report: do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +"Senate sponsors: Senators Ford Jon, Niezgodski, Mishler",2023-02-14,[],IN,2023 +Referred to the Senate,2023-02-08,['referral'],IN,2023 +Representative Behning added as cosponsor,2023-02-23,[],IN,2023 +Representative Pack R added as cosponsor,2023-04-06,[],IN,2023 +"Committee report: do pass, adopted",2023-03-20,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-28,['referral'],IN,2023 +Referred to the House,2023-02-22,['referral'],IN,2023 +Cosponsor: Representative Thompson,2023-02-06,[],IN,2023 +"Third reading: passed; Roll Call 232: yeas 49, nays 0",2023-03-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Teshka,2023-02-28,[],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Senator Crane added as coauthor,2023-01-31,[],IN,2023 +First reading: referred to Committee on Public Policy,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Randolph added as cosponsor,2023-04-06,[],IN,2023 +First reading: referred to Committee on Insurance,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Randolph added as cosponsor,2023-03-21,[],IN,2023 +House sponsor: Representative Barrett,2023-02-07,[],IN,2023 +Referred to the House,2023-02-28,['referral'],IN,2023 +Senator Gaskill added as coauthor,2023-01-30,[],IN,2023 +Senator Rogers added as cosponsor,2023-03-13,[],IN,2023 +"Committee report: do pass, adopted",2023-03-07,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-03-13,['committee-passage'],IN,2023 +House sponsor: Representative Steuerwald,2023-02-28,[],IN,2023 +Senator Randolph added as cosponsor,2023-03-23,[],IN,2023 +Referred to the Senate,2023-01-31,['referral'],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Slager,2023-02-02,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-28,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 131: yeas 40, nays 7",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-03-20,['reading-2'],IN,2023 +Cosponsor: Senator Raatz,2023-02-22,[],IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +First reading: referred to Committee on Agriculture and Rural Development,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 219: yeas 47, nays 0",2023-03-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Johnson added as coauthor,2023-02-21,[],IN,2023 +"Third reading: passed; Roll Call 124: yeas 49, nays 0",2023-02-16,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Niezgodski added as coauthor,2023-02-09,[],IN,2023 +Senator Ford Jon added as second sponsor,2023-03-13,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-03-23,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 355: yeas 71, nays 26",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +Senator Raatz added as coauthor,2023-02-28,[],IN,2023 +"Committee report: do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-22,['reading-2'],IN,2023 +Amendment #1 (Doriot) prevailed; voice vote,2023-03-23,['amendment-passage'],IN,2023 +"Committee report: do pass, adopted",2023-03-20,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-20,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-03-23,['reading-2'],IN,2023 +First reading: referred to Committee on Public Policy,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Appeal the ruling of the chair (Errington); ruling of the chair sustained. Roll Call 64: yeas 66, nays 27",2023-02-02,[],IN,2023 +"Third reading: passed; Roll Call 153: yeas 42, nays 5",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-20,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 207: yeas 36, nays 12",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 129: yeas 39, nays 8",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 101: yeas 47, nays 2",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +Senators Koch and Gaskill added as coauthors,2023-02-16,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-20,['reading-2'],IN,2023 +First reading: referred to Committee on Judiciary,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 90: yeas 49, nays 0",2023-02-09,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Walker K added as coauthor,2023-02-13,[],IN,2023 +Representative Prescott added as cosponsor,2023-03-07,[],IN,2023 +"Third reading: passed; Roll Call 44: yeas 49, nays 0",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-03-07,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +First reading: referred to Committee on Natural Resources,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Second reading: amended, ordered engrossed",2023-04-04,['reading-2'],IN,2023 +"Amendment #1 (Errington) failed; Roll Call 365: yeas 33, nays 56",2023-04-06,"['amendment-failure', 'failure']",IN,2023 +"Third reading: passed; Roll Call 378: yeas 96, nays 1",2023-04-10,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 383: yeas 47, nays 0",2023-04-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Placed back on second reading,2023-02-23,[],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +"Amendment #1 (Pol) failed; Roll Call 214: yeas 14, nays 33",2023-03-14,"['amendment-failure', 'failure']",IN,2023 +Representative Porter added as cosponsor,2023-03-16,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 215: yeas 47, nays 0",2023-03-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-03-13,['reading-2'],IN,2023 +Senator Qaddoura added as third author,2023-02-07,[],IN,2023 +Senator Messmer added as cosponsor,2023-03-09,[],IN,2023 +First reading: referred to Committee on Education,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-03-27,['reading-2'],IN,2023 +Senator Buck added as third sponsor,2023-03-20,[],IN,2023 +First reading: referred to Committee on Local Government,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-10,['reading-2'],IN,2023 +First reading: referred to Committee on Local Government,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 236: yeas 43, nays 0",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Natural Resources,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-28,['committee-passage'],IN,2023 +Representative Davis M removed as coauthor,2023-02-16,[],IN,2023 +"Third reading: passed; Roll Call 195: yeas 43, nays 5",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #1 (Doriot) prevailed; voice vote,2023-03-23,['amendment-passage'],IN,2023 +House sponsor: Representative Slager,2023-02-13,[],IN,2023 +Senator Ford Jon added as cosponsor,2023-03-09,[],IN,2023 +Senator Messmer added as cosponsor,2023-03-07,[],IN,2023 +Referred to the House,2023-02-14,['referral'],IN,2023 +"Cosponsors: Representatives Thompson, Hatcher and Soliday",2023-02-28,[],IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Ford Jon, Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson, Koch, Leising, Melton, Messmer, Mishler, Niemeyer, Niezgodski, Perfect, Pol, Qaddoura, Randolph, Rogers, Sandlin, Taylor G, Tomes, Walker G, Walker K, Yoder, Young M, Zay added as cosponsors",2023-04-10,[],IN,2023 +First reading: referred to Committee on Public Health,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Representative Frye added as cosponsor,2023-03-16,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +Cosponsors: Representatives Carbaugh and Heine,2023-02-14,[],IN,2023 +Amendment #1 (Rogers) prevailed; voice vote,2023-04-06,['amendment-passage'],IN,2023 +Senator Rogers added as cosponsor,2023-03-13,[],IN,2023 +Second reading: ordered engrossed,2023-04-12,['reading-2'],IN,2023 +Senator Yoder added as cosponsor,2023-04-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-28,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 255: yeas 49, nays 1",2023-03-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-14,['referral'],IN,2023 +First reading: referred to Committee on Family and Children Services,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Cosponsor: Senator Niezgodski,2023-02-14,[],IN,2023 +"Cosponsors: Representatives DeVon, Bauer M, Miller D",2023-02-23,[],IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +Representatives Rowray E and Heine added as cosponsors,2023-03-14,[],IN,2023 +Representative Culp K added as cosponsor,2023-03-13,[],IN,2023 +Senator Koch added as second sponsor,2023-04-06,[],IN,2023 +Senator Buck added as second sponsor,2023-04-10,[],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-22,['reading-2'],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +Senator Young M added as third author,2023-02-27,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-20,['committee-passage'],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Representative Jordan added as cosponsor,2023-04-03,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senate sponsor: Senator Baldwin,2023-02-27,[],IN,2023 +Senator Donato added as coauthor,2023-01-30,[],IN,2023 +Senator Walker G added as coauthor,2023-02-02,[],IN,2023 +"Amendment #3 (Ford J.D.) failed; Roll Call 135: yeas 13, nays 33",2023-02-21,"['amendment-failure', 'failure']",IN,2023 +Senator Niezgodski added as coauthor,2023-01-24,[],IN,2023 +Senator Alting added as coauthor,2023-02-14,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-23,"['committee-passage', 'referral-committee']",IN,2023 +Representative Pierce M added as cosponsor,2023-03-07,[],IN,2023 +Senator Doriot added as coauthor,2023-02-06,[],IN,2023 +House sponsor: Representative Negele,2023-02-07,[],IN,2023 +"Senate sponsors: Senators Charbonneau, Garten, Brown L",2023-02-27,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-06,['reading-2'],IN,2023 +Referred to the House,2023-02-09,['referral'],IN,2023 +House sponsor: Representative Clere,2023-02-13,[],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +Representatives Ledbetter C and Cash B added as cosponsors,2023-03-30,[],IN,2023 +"Third reading: passed; Roll Call 83: yeas 97, nays 0",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Yoder added as coauthor,2023-01-30,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-28,['referral'],IN,2023 +First reading: referred to Committee on Natural Resources,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +Senator Freeman added as second sponsor,2023-03-13,[],IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +House sponsor: Representative Thompson,2023-02-27,[],IN,2023 +First reading: referred to Committee on Elections,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-27,['reading-2'],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-03-21,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 39: yeas 77, nays 19",2023-01-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Cosponsors: Representatives Steuerwald and McNamara,2023-01-26,[],IN,2023 +Senator Baldwin added as coauthor,2023-02-06,[],IN,2023 +Second reading: ordered engrossed,2023-04-17,['reading-2'],IN,2023 +Senator Randolph added as coauthor,2023-02-21,[],IN,2023 +Cosponsor: Representative Shackleford,2023-02-23,[],IN,2023 +"Committee report: do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +Representative Heaton added as cosponsor,2023-03-14,[],IN,2023 +Senator Becker added as third sponsor,2023-03-27,[],IN,2023 +"Committee report: do pass, adopted",2023-03-27,['committee-passage'],IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Senators Johnson, Melton, Messmer, Mishler added as coauthors",2023-02-27,[],IN,2023 +"Third reading: passed; Roll Call 302: yeas 96, nays 0",2023-03-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 339: yeas 49, nays 0",2023-04-10,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-03-30,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-04-04,['committee-passage'],IN,2023 +Referred to the House,2023-02-15,['referral'],IN,2023 +Referred to the House,2023-02-28,['referral'],IN,2023 +Second reading: ordered engrossed,2023-03-13,['reading-2'],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Representative Olthoff added as sponsor,2023-02-13,[],IN,2023 +Amendment #2 (Taylor G) failed; voice vote,2023-03-28,"['amendment-failure', 'failure']",IN,2023 +Second reading: ordered engrossed,2023-03-30,['reading-2'],IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Senate sponsors: Senators Becker, Melton, Breaux",2023-02-21,[],IN,2023 +First reading: referred to Committee on Public Health,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Senate sponsors: Senators Freeman, Donato, Raatz",2023-02-22,[],IN,2023 +Senator Baldwin added as second sponsor,2023-04-03,[],IN,2023 +Senator Niezgodski added as cosponsor,2023-03-09,[],IN,2023 +Senator Pol added as third sponsor,2023-03-21,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-03-20,['committee-passage'],IN,2023 +Senator Melton added as coauthor,2023-01-26,[],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +Senator Crane added as coauthor,2023-02-28,[],IN,2023 +Representative Rowray E added as cosponsor,2023-02-27,[],IN,2023 +"Committee report: do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +First reading: referred to Committee on Judiciary,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Amendment #1 (Yoder) failed; voice vote,2023-03-28,"['amendment-failure', 'failure']",IN,2023 +Representative Hall D added as cosponsor,2023-03-16,[],IN,2023 +First reading: referred to Committee on Commerce and Technology,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Amendment #1 (Mayfield) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +"Committee report: do pass, adopted",2023-03-21,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-03-21,['committee-passage'],IN,2023 +Amendment #7 (Harris) ruled out of order,2023-04-13,[],IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Appropriations,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Breaux added as cosponsor,2023-03-28,[],IN,2023 +"Third reading: passed; Roll Call 149: yeas 91, nays 0",2023-02-16,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #3 (Culp) prevailed; voice vote,2023-03-30,['amendment-passage'],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Corrections and Criminal Law,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Representative Criswell C added as cosponsor,2023-03-13,[],IN,2023 +First reading: referred to Committee on Family and Children Services,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-07,['referral'],IN,2023 +House sponsor: Representative Speedy,2023-02-21,[],IN,2023 +"Amendment #1 (Harris) failed; Roll Call 211: yeas 29, nays 66",2023-02-23,"['amendment-failure', 'failure']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Senators Bohacek, Donato, Yoder, Breaux added as coauthors",2023-01-24,[],IN,2023 +Senator Doriot added as coauthor,2023-02-21,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-09,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-20,['committee-passage'],IN,2023 +Senator Rogers added as second sponsor,2023-03-20,[],IN,2023 +Senator Melton added as cosponsor,2023-03-09,[],IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Behning,2023-02-28,[],IN,2023 +Amendment #3 (Pol) prevailed; voice vote,2023-03-20,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 224: yeas 92, nays 0",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Referred to the House,2023-02-22,['referral'],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-03-09,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Local Government,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Senator Freeman added as second sponsor,2023-03-23,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-03-30,[],IN,2023 +Second reading: ordered engrossed,2023-03-14,['reading-2'],IN,2023 +Amendment #1 (Baldwin) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Referred to the House,2023-02-21,['referral'],IN,2023 +Senator Buck added as second sponsor,2023-03-16,[],IN,2023 +First reading: referred to Committee on Utilities,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Judiciary,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 292: yeas 48, nays 0",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #1 (Sandlin) prevailed; voice vote,2023-04-03,['amendment-passage'],IN,2023 +Referred to the Senate,2023-02-28,['referral'],IN,2023 +Amendment #2 (Ford Jon) prevailed; voice vote,2023-04-06,['amendment-passage'],IN,2023 +First reading: referred to Committee on Education,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-03-09,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +Senator Melton added as coauthor,2023-01-31,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Senator Ford J.D. added as cosponsor,2023-03-14,[],IN,2023 +Senator Donato added as second sponsor,2023-03-13,[],IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-04,['committee-passage'],IN,2023 +Representative Miller D added as cosponsor,2023-03-14,[],IN,2023 +"Third reading: passed; Roll Call 369: yeas 48, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +"Cosponsors: Representatives Barrett, Carbaugh, Fleming",2023-02-28,[],IN,2023 +"Cosponsors: Representatives Teshka J, McGuire J, Speedy",2023-02-28,[],IN,2023 +Senator Ford J.D. added as cosponsor,2023-03-13,[],IN,2023 +Second reading: ordered engrossed,2023-03-27,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-21,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +Senator Alexander added as coauthor,2023-01-31,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-21,['committee-passage'],IN,2023 +"Amendment #11 (Yoder) failed; Roll Call 335: yeas 14, nays 34",2023-04-06,"['amendment-failure', 'failure']",IN,2023 +Cosponsor: Representative Gore M,2023-02-13,[],IN,2023 +Senator Niezgodski added as coauthor,2023-02-06,[],IN,2023 +Cosponsor: Representative Bauer M,2023-02-28,[],IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-04-13,['reading-2'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Senator Crane added as second sponsor,2023-03-28,[],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +First reading: referred to Committee on Tax and Fiscal Policy,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-07,['referral'],IN,2023 +Senator Ford J.D. added as coauthor,2023-02-06,[],IN,2023 +"Amendment #2 (Gore) failed; Roll Call 212: yeas 29, nays 66",2023-02-23,"['amendment-failure', 'failure']",IN,2023 +"Committee report: do pass, adopted",2023-03-09,['committee-passage'],IN,2023 +Returned to the House with amendments,2023-04-11,['receipt'],IN,2023 +Senator Pol added as third sponsor,2023-03-13,[],IN,2023 +Second reading: ordered engrossed,2023-03-30,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 268: yeas 49, nays 0",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senators Walker K and Breaux added as cosponsors,2023-04-06,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Second reading: amended, ordered engrossed",2023-04-17,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-28,['committee-passage'],IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +Senators Ford J.D. and Breaux added as coauthors,2023-02-13,[],IN,2023 +Referred to the Senate,2023-02-28,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +Senator Bohacek added as coauthor,2023-01-30,[],IN,2023 +"Senators Niemeyer, Niezgodski, Pol, Qaddoura added as coauthors",2023-02-27,[],IN,2023 +"Third reading: passed; Roll Call 294: yeas 37, nays 10",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Public Health,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +Amendment #2 (Hatcher) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Referred to the House,2023-02-22,['referral'],IN,2023 +Second reading: ordered engrossed,2023-03-13,['reading-2'],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Senator Doriot added as third sponsor,2023-03-28,[],IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +Senator Walker K added as second sponsor,2023-03-16,[],IN,2023 +"Third reading: passed; Roll Call 245: yeas 42, nays 0",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +Second reading: ordered engrossed,2023-04-13,['reading-2'],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-04-06,"['committee-passage', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +Representative Judy added as cosponsor,2023-03-14,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Senator Holdman added as second sponsor,2023-03-20,[],IN,2023 +Rule 105.1 suspended,2023-02-07,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-09,"['committee-passage', 'referral-committee']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-04-06,"['committee-passage', 'referral-committee']",IN,2023 +Representative Hall D added as cosponsor,2023-03-16,[],IN,2023 +Second reading: ordered engrossed,2023-03-28,['reading-2'],IN,2023 +Representative Manning added as cosponsor,2023-03-13,[],IN,2023 +Second reading: ordered engrossed,2023-03-27,['reading-2'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Tax and Fiscal Policy,2023-03-20,"['committee-passage', 'referral-committee']",IN,2023 +Senator Yoder added as coauthor,2023-02-06,[],IN,2023 +Second reading: ordered engrossed,2023-03-23,['reading-2'],IN,2023 +Returned to the House without amendments,2023-04-12,['receipt'],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +Returned to the House with amendments,2023-04-04,['receipt'],IN,2023 +Representative Moseley added as cosponsor,2023-03-30,[],IN,2023 +Cosponsor: Representative Goodrich,2023-02-28,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-20,['reading-2'],IN,2023 +Senator Ford Jon added as cosponsor,2023-03-16,[],IN,2023 +Referred to the House,2023-01-25,['referral'],IN,2023 +Senator Ford Jon added as cosponsor,2023-03-09,[],IN,2023 +"Committee report: do pass, adopted",2023-03-28,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-03-07,['committee-passage'],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-03-30,"['committee-passage', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-17,['referral'],IN,2023 +Second reading: ordered engrossed,2023-03-23,['reading-2'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-03-21,[],IN,2023 +Amendment #2 (Barrett) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-03-28,['reading-2'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-06,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +Senator Pol added as cosponsor,2023-03-13,[],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +"Third reading: passed; Roll Call 335: yeas 88, nays 2",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representatives Olthoff and Andrade M removed as cosponsors,2023-02-13,[],IN,2023 +Returned to the Senate without amendments,2023-03-28,['receipt'],IN,2023 +Senator Ford J.D. added as cosponsor,2023-03-27,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 449: yeas 50, nays 0",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Senate,2023-01-31,['referral'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-30,"['committee-passage', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 310: yeas 47, nays 1",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 41: yeas 47, nays 2",2023-01-31,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Cosponsors: Representatives Vermilion A, Olthoff, Jackson",2023-02-13,[],IN,2023 +First reading: referred to Committee on Local Government,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Tomes added as coauthor,2023-02-06,[],IN,2023 +Senator Randolph added as coauthor,2023-02-28,[],IN,2023 +"Amendment #5 (Ford J.D.) failed; Roll Call 336: yeas 9, nays 39",2023-04-06,"['amendment-failure', 'failure']",IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-04-04,[],IN,2023 +Amendment #1 (Glick) prevailed; voice vote,2023-03-20,['amendment-passage'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-16,"['committee-passage', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 376: yeas 48, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-03-13,['reading-2'],IN,2023 +Amendment #4 (Walker G) prevailed; voice vote,2023-04-06,['amendment-passage'],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-03-16,"['committee-passage', 'referral-committee']",IN,2023 +Senator Koch added as third sponsor,2023-04-03,[],IN,2023 +"Third reading: passed; Roll Call 263: yeas 48, nays 0",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 222: yeas 47, nays 0",2023-03-16,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-04-03,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +Senator Johnson added as second sponsor,2023-03-16,[],IN,2023 +"Third reading: passed; Roll Call 249: yeas 47, nays 0",2023-03-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 238: yeas 30, nays 13",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-03-07,['committee-passage'],IN,2023 +"Cosponsors: Representatives Vermilion A, Barrett, Shackleford",2023-02-07,[],IN,2023 +Second reading: ordered engrossed,2023-03-27,['reading-2'],IN,2023 +"Cosponsors: Representatives Heine, Lehman, Prescott",2023-02-27,[],IN,2023 +"Amendment #8 (Pol) failed; Roll Call 164: yeas 12, nays 37",2023-02-27,"['amendment-failure', 'failure']",IN,2023 +"Third reading: passed; Roll Call 250: yeas 32, nays 15",2023-03-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the House,2023-02-22,['referral'],IN,2023 +Referred to the House,2023-02-24,['referral'],IN,2023 +Amendment #1 (Alting) prevailed; voice vote,2023-03-30,['amendment-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 260: yeas 93, nays 0",2023-03-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Miller D added as cosponsor,2023-03-13,[],IN,2023 +Amendment #1 (Gaskill) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Senator Mishler added as cosponsor,2023-03-20,[],IN,2023 +"Third reading: passed; Roll Call 273: yeas 94, nays 0",2023-03-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-04-06,"['committee-passage', 'referral-committee']",IN,2023 +Pursuant to Senate Rule 68(b); reassigned to Committee on Health and Provider Services,2023-03-07,['referral-committee'],IN,2023 +Senator Raatz added as third sponsor,2023-03-16,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-30,['reading-2'],IN,2023 +"Senators Koch, Doriot, Yoder, Donato added as cosponsors",2023-03-21,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Senator Niezgodski added as cosponsor,2023-03-06,[],IN,2023 +Senator Ford J.D. added as cosponsor,2023-03-16,[],IN,2023 +First reading: referred to Committee on Local Government,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Second reading: ordered engrossed,2023-04-06,['reading-2'],IN,2023 +Referred to the Senate,2023-02-23,['referral'],IN,2023 +Senator Hunley removed as second sponsor,2023-03-20,[],IN,2023 +"Committee report: do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-04-06,"['committee-passage', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Senator Young M added as coauthor,2023-02-21,[],IN,2023 +Senator Tomes added as cosponsor,2023-03-13,[],IN,2023 +"Third reading: passed; Roll Call 282: yeas 94, nays 0",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +Senate sponsor: Senator Charbonneau,2023-02-06,[],IN,2023 +Senator Sandlin added as second sponsor,2023-03-21,[],IN,2023 +Senator Brown L added as third sponsor,2023-03-13,[],IN,2023 +Returned to the House with amendments,2023-04-14,['receipt'],IN,2023 +House sponsor: Representative Lehman,2023-02-09,[],IN,2023 +House sponsor: Representative Schaibley,2023-02-23,[],IN,2023 +Amendment #5 (Teshka) motion withdrawn,2023-03-28,"['amendment-withdrawal', 'withdrawal']",IN,2023 +Senator Buck added as coauthor,2023-01-30,[],IN,2023 +Amendment #1 (Messmer) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Representative Pryor added as cosponsor,2023-02-23,[],IN,2023 +First reading: referred to Committee on Public Policy,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Second reading: amended, ordered engrossed",2023-02-21,['reading-2'],IN,2023 +Referred to the Senate,2023-02-28,['referral'],IN,2023 +"Third reading: passed; Roll Call 277: yeas 86, nays 4",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Placed back on second reading,2023-03-20,[],IN,2023 +Referred to the House,2023-02-24,['referral'],IN,2023 +Senator Yoder added as cosponsor,2023-03-07,[],IN,2023 +"Committee report: do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +Referred to the House,2023-02-10,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-28,['committee-passage'],IN,2023 +Senator Doriot added as second sponsor,2023-03-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Placed back on second reading,2023-03-20,[],IN,2023 +"Committee report: do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-03-23,['reading-2'],IN,2023 +Senator Walker K added as second sponsor,2023-03-23,[],IN,2023 +"Third reading: passed; Roll Call 246: yeas 40, nays 2",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Randolph added as cosponsor,2023-03-23,[],IN,2023 +"Amendment #2 (Ford J.D.) failed; Roll Call 299: yeas 12, nays 36",2023-04-04,"['amendment-failure', 'failure']",IN,2023 +Amendment #2 (Hunley) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-28,['committee-passage'],IN,2023 +Representative Morris added as coauthor,2023-02-16,[],IN,2023 +"Committee report: do pass, adopted",2023-03-20,['committee-passage'],IN,2023 +Amendment #1 (Leising) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +Referred to the House,2023-01-25,['referral'],IN,2023 +Senator Brown L added as coauthor,2023-02-02,[],IN,2023 +Amendment #2 (Bassler) prevailed; voice vote,2023-03-28,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 237: yeas 42, nays 1",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Cosponsor: Representative Manning,2023-02-07,[],IN,2023 +Second reading: ordered engrossed,2023-03-14,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +Referred to the House,2023-02-09,['referral'],IN,2023 +Referred to the House,2023-02-07,['referral'],IN,2023 +"Third reading: passed; Roll Call 411: yeas 94, nays 0",2023-04-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Donato added as cosponsor,2023-04-13,[],IN,2023 +Rule 105.1 suspended,2023-02-23,[],IN,2023 +Returned to the Senate with amendments,2023-04-11,['receipt'],IN,2023 +Representative Manning added as cosponsor,2023-03-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-09,['committee-passage'],IN,2023 +Senator Bassler added as coauthor,2023-02-28,[],IN,2023 +House sponsor: Representative Negele,2023-02-28,[],IN,2023 +Returned to the House without amendments,2023-03-15,['receipt'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +House sponsor: Representative Schaibley,2023-02-20,[],IN,2023 +Amendment #2 (Young M) failed; voice vote,2023-03-23,"['amendment-failure', 'failure']",IN,2023 +House sponsor: Representative Pressel,2023-02-16,[],IN,2023 +Representatives Huston and added as cosponsors,2023-03-14,[],IN,2023 +House sponsor: Representative Manning,2023-02-20,[],IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Returned to the House without amendments,2023-03-21,['receipt'],IN,2023 +Senator Taylor G added as cosponsor,2023-03-20,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-15,['referral'],IN,2023 +"Third reading: passed; Roll Call 234: yeas 66, nays 29",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-21,['committee-passage'],IN,2023 +First reading: referred to Committee on Veterans Affairs and The Military,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-03-16,"['committee-passage', 'referral-committee']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Amendment #1 (Bohacek) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +Returned to the House without amendments,2023-03-15,['receipt'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-02-23,['committee-passage'],IN,2023 +Representative Prescott added as cosponsor,2023-03-27,[],IN,2023 +Senator Crane added as cosponsor,2023-03-28,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Amendment #3 (Brown L) prevailed; voice vote,2023-03-27,['amendment-passage'],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Education and Career Development,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +"Second reading: amended, ordered engrossed",2023-03-23,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-03-27,['reading-2'],IN,2023 +Senator Doriot added as third sponsor,2023-04-10,[],IN,2023 +Senators Brown L and Freeman added as coauthors,2023-02-20,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Senator Rogers added as cosponsor,2023-03-13,[],IN,2023 +"Committee report: do pass, adopted",2023-03-13,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +House sponsor: Representative King,2023-02-28,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-09,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 243: yeas 41, nays 2",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-03-21,['committee-passage'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Senators Buck and Byrne added as cosponsors,2023-04-04,[],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Returned to the House with amendments,2023-03-28,['receipt'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-27,"['committee-passage', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Referred to the House,2023-02-01,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-09,['committee-passage'],IN,2023 +Senator Charbonneau added as second sponsor,2023-03-23,[],IN,2023 +"Cosponsors: Representatives Goodrich, Behning, Davis M",2023-02-28,[],IN,2023 +Representative Baird added as cosponsor,2023-03-27,[],IN,2023 +Representative Hamilton added as cosponsor,2023-04-03,[],IN,2023 +Cosponsors: Representatives Frye and Olthoff,2023-02-13,[],IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-15,['referral'],IN,2023 +"Third reading: passed; Roll Call 115: yeas 96, nays 0",2023-02-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Amendment #3 (Pol) failed; voice vote,2023-04-06,"['amendment-failure', 'failure']",IN,2023 +Second reading: ordered engrossed,2023-03-30,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +House sponsor: Representative Schaibley,2023-01-31,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-27,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 184: yeas 49, nays 0",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-13,['committee-passage'],IN,2023 +Senator Raatz added as coauthor,2023-02-21,[],IN,2023 +"Third reading: passed; Roll Call 69: yeas 49, nays 0",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House,2023-04-11,['receipt'],IN,2023 +"Third reading: passed; Roll Call 371: yeas 48, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-04-10,['committee-passage'],IN,2023 +"Amendment #2 (Pierce) failed; Division of the House: yeas 27, nays 61",2023-04-06,"['amendment-failure', 'failure']",IN,2023 +Senator Freeman added as second sponsor,2023-03-09,[],IN,2023 +House sponsor: Representative McNamara,2023-02-13,[],IN,2023 +Representative Andrade M added as cosponsor,2023-03-21,[],IN,2023 +Senator Randolph added as coauthor,2023-02-09,[],IN,2023 +Representative Frye added as coauthor,2023-02-22,[],IN,2023 +"Third reading: passed; Roll Call 278: yeas 47, nays 0",2023-03-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Utilities,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +Senator Yoder added as coauthor,2023-01-31,[],IN,2023 +Senator Randolph added as coauthor,2023-02-13,[],IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-03-20,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Amendment #6 (Garten) prevailed; voice vote,2023-04-11,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-21,"['committee-passage', 'referral-committee']",IN,2023 +"Cosponsors: Representatives Olthoff, Teshka J, DeVon",2023-02-02,[],IN,2023 +Returned to the Senate with amendments,2023-04-05,['receipt'],IN,2023 +"Third reading: passed; Roll Call 172: yeas 70, nays 25",2023-02-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Senators Melton and Niezgodski added as cosponsors,2023-04-11,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Tax and Fiscal Policy,2023-03-14,"['committee-passage', 'referral-committee']",IN,2023 +First reading: referred to Committee on Natural Resources,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Senator Crane added as cosponsor,2023-03-09,[],IN,2023 +Representative Ledbetter C added as cosponsor,2023-03-28,[],IN,2023 +Signed by the Speaker,2023-03-22,['passage'],IN,2023 +House sponsor: Representative Bartels,2023-02-28,[],IN,2023 +Representative Jackson added as cosponsor,2023-03-14,[],IN,2023 +"Third reading: passed; Roll Call 331: yeas 90, nays 0",2023-03-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Dernulc added as cosponsor,2023-03-28,[],IN,2023 +Amendment #1 (Messmer) prevailed; voice vote,2023-04-06,['amendment-passage'],IN,2023 +Returned to the House with amendments,2023-03-31,['receipt'],IN,2023 +Referred to the House,2023-02-14,['referral'],IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 69: yeas 97, nays 0",2023-02-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Rogers added as second sponsor,2023-03-20,[],IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +Returned to the House with amendments,2023-04-12,['receipt'],IN,2023 +Senator Young M added as third sponsor,2023-03-14,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Representative McGuire J added as cosponsor,2023-03-13,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-16,"['committee-passage', 'referral-committee']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-16,"['committee-passage', 'referral-committee']",IN,2023 +Cosponsor: Representative Davis M,2023-02-28,[],IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Amendment #6 (Holdman) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +Senator Alexander added as second sponsor,2023-03-13,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Cosponsor: Representative Steuerwald,2023-02-13,[],IN,2023 +Returned to the House with amendments,2023-03-22,['receipt'],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-28,['reading-2'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Returned to the House without amendments,2023-03-22,['receipt'],IN,2023 +Referred to the House,2023-02-22,['referral'],IN,2023 +Senator Breaux added as cosponsor,2023-03-14,[],IN,2023 +Referred to the Senate,2023-02-23,['referral'],IN,2023 +Senators Doriot and Ford Jon added as coauthors,2023-02-02,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-23,['reading-2'],IN,2023 +Referred to the Senate,2023-02-17,['referral'],IN,2023 +"Amendment #1 (Judy) prevailed; Division of the House: yeas 64, nays 29",2023-03-27,['amendment-passage'],IN,2023 +Returned to the House without amendments,2023-03-22,['receipt'],IN,2023 +"Committee report: do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +First reading: referred to Committee on Financial Institutions,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +House sponsor: Representative Manning,2023-02-06,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +Referred to the Senate,2023-02-15,['referral'],IN,2023 +Second reading: ordered engrossed,2023-03-13,['reading-2'],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-03-13,"['committee-passage', 'referral-committee']",IN,2023 +"Second reading: amended, ordered engrossed",2023-04-17,['reading-2'],IN,2023 +"Amendment #2 (Young M) failed; Roll Call 397: yeas 15, nays 30",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Amendment #2 (Speedy) prevailed; voice vote,2023-03-28,['amendment-passage'],IN,2023 +Returned to the House with amendments,2023-03-22,['receipt'],IN,2023 +Signed by the Speaker,2023-03-22,['passage'],IN,2023 +Representative Lauer added as coauthor,2023-02-23,[],IN,2023 +"Representatives Goodrich, Pack R, Haggard C, Teshka J, May, Baird, Pierce K, Prescott, Snow C, Smith, V., Johnson, Olthoff, Slager, Miller D, O'Brien T, Engleman, Smaltz, Negele, Manning, McGuire J, Meltzer J, Culp K, Lucas, Sweet L, Garcia Wilburn V, Lehman, Errington, Schaibley, Patterson L, Vermilion A, Harris, Hamilton, Miller K, Judy, Abbott D, Zent, VanNatter, Clere, Rowray E, Pryor, Pfaff, Pierce M, Wesco, Jordan, Thompson, Cherry, Davis M, GiaQuinta, Hatfield, Hall D, Bartels, Aylesworth, Frye, Boy, Jackson, Heine, Andrade M added as coauthors",2023-04-17,[],IN,2023 +Representative Gore M added as cosponsor,2023-03-20,[],IN,2023 +"Third reading: passed; Roll Call 252: yeas 49, nays 0",2023-03-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 358: yeas 96, nays 0",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-03-28,['committee-passage'],IN,2023 +Senators Ford Jon and Tomes added as coauthors,2023-01-30,[],IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +"Cosponsors: Representatives DeVon, King J, Jackson",2023-02-16,[],IN,2023 +Amendment #1 (Teshka) prevailed; voice vote,2023-04-11,['amendment-passage'],IN,2023 +Cosponsor: Representative Pack R,2023-02-20,[],IN,2023 +Second reading: ordered engrossed,2023-03-23,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-03-27,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-13,['reading-2'],IN,2023 +Amendment #1 (Baldwin) prevailed; voice vote,2023-04-03,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-04-17,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-07,['committee-passage'],IN,2023 +Senator Freeman removed as coauthor,2023-02-21,[],IN,2023 +Referred to the House,2023-02-14,['referral'],IN,2023 +First reading: referred to Committee on Insurance and Financial Institutions,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-02-03,['referral'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-13,['committee-passage'],IN,2023 +Second reading: call withdrawn,2023-03-28,"['reading-2', 'withdrawal']",IN,2023 +"Committee report: do pass, adopted",2023-03-09,['committee-passage'],IN,2023 +Representative Vermilion A added as cosponsor,2023-03-16,[],IN,2023 +Senator Koch added as second sponsor,2023-04-06,[],IN,2023 +"Amendment #4 (Pol) failed; Roll Call 333: yeas 18, nays 30",2023-04-06,"['amendment-failure', 'failure']",IN,2023 +Referred to the House,2023-02-21,['referral'],IN,2023 +Returned to the Senate with amendments,2023-04-13,['receipt'],IN,2023 +Second reading: ordered engrossed,2023-03-27,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 338: yeas 38, nays 11",2023-04-10,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate sponsors: Senators Mishler and Garten,2023-02-23,[],IN,2023 +Representative Lauer added as cosponsor,2023-03-21,[],IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 372: yeas 36, nays 12",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #7 (Freeman) prevailed; voice vote,2023-03-20,['amendment-passage'],IN,2023 +Motion to dissent filed,2023-04-12,['filing'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Cosponsor: Representative Barrett,2023-02-23,[],IN,2023 +Senators Crane and Ford J.D. added as cosponsors,2023-03-28,[],IN,2023 +Amendment #4 (Glick) prevailed; voice vote,2023-03-27,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-04-06,['reading-2'],IN,2023 +Representatives Barrett and Fleming added as cosponsors,2023-04-10,[],IN,2023 +"Third reading: passed; Roll Call 338: yeas 92, nays 0",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Senators Raatz, Crane, Dernulc, Donato, Ford J.D. added as cosponsors",2023-03-09,[],IN,2023 +Second reading: ordered engrossed,2023-03-30,['reading-2'],IN,2023 +Returned to the Senate without amendments,2023-03-22,['receipt'],IN,2023 +Second reading: ordered engrossed,2023-04-17,['reading-2'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +"Second reading: amended, ordered engrossed",2023-03-27,['reading-2'],IN,2023 +Senate sponsors: Senators Raatz and Garten,2023-02-21,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-03-23,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-03-09,[],IN,2023 +Referred to the House,2023-02-21,['referral'],IN,2023 +Cosponsors: Representatives Ledbetter C and O'Brien T,2023-02-28,[],IN,2023 +Senator Glick added as second sponsor,2023-03-16,[],IN,2023 +"Amendment #1 (Hunley) failed; Roll Call 213: yeas 13, nays 34",2023-03-14,"['amendment-failure', 'failure']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Representatives Lehman and Snow C added as cosponsors,2023-04-11,[],IN,2023 +Motion to concur filed,2023-04-10,['filing'],IN,2023 +Senator Garten added as second sponsor,2023-03-23,[],IN,2023 +Second reading: ordered engrossed,2023-03-27,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-03-27,['reading-2'],IN,2023 +Senator Ford J.D. added as cosponsor,2023-03-14,[],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-03-27,['reading-2'],IN,2023 +Senator Randolph added as coauthor,2023-02-09,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +"Reread second time: amended, ordered engrossed",2023-02-27,['reading-2'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-03-30,[],IN,2023 +"Third reading: passed; Roll Call 254: yeas 48, nays 1",2023-03-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Homeland Security and Transportation,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 313: yeas 95, nays 0",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to concur filed,2023-04-18,['filing'],IN,2023 +Cosponsors: Representatives Olthoff and Lauer,2023-01-31,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-03-13,['reading-2'],IN,2023 +Amendment #5 (Walker K) prevailed; voice vote,2023-04-11,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 231: yeas 45, nays 4",2023-03-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-04-17,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-04-12,['reading-2'],IN,2023 +Representative Olthoff added as cosponsor,2023-03-21,[],IN,2023 +Senators Deery and Rogers added as cosponsors,2023-04-10,[],IN,2023 +Second reading: ordered engrossed,2023-03-27,['reading-2'],IN,2023 +Motion to dissent filed,2023-04-17,['filing'],IN,2023 +Senator Yoder added as cosponsor,2023-03-09,[],IN,2023 +Second reading: ordered engrossed,2023-04-13,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 224: yeas 39, nays 8",2023-03-16,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-03-21,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-03-30,['reading-2'],IN,2023 +Senator Messmer added as coauthor,2023-02-23,[],IN,2023 +Amendment #1 (Baird) prevailed; voice vote,2023-03-21,['amendment-passage'],IN,2023 +Referred to the House,2023-02-09,['referral'],IN,2023 +Referred to the House,2023-02-10,['referral'],IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-09,"['committee-passage', 'referral-committee']",IN,2023 +Senator Donato added as cosponsor,2023-03-13,[],IN,2023 +House sponsor: Representative King,2023-01-31,[],IN,2023 +Senator Bohacek added as third sponsor,2023-03-28,[],IN,2023 +"Third reading: passed; Roll Call 266: yeas 88, nays 0",2023-03-16,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Public Health,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Pol added as cosponsor,2023-03-20,[],IN,2023 +Representative McNamara added as cosponsor,2023-04-04,[],IN,2023 +"Third reading: passed; Roll Call 333: yeas 92, nays 0",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House with amendments,2023-04-12,['receipt'],IN,2023 +"Third reading: passed; Roll Call 300: yeas 95, nays 0",2023-03-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-23,"['committee-passage', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-27,['committee-passage'],IN,2023 +First reading: referred to Committee on Education,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Dernulc added as second sponsor,2023-04-04,[],IN,2023 +Senator Charbonneau added as second sponsor,2023-03-23,[],IN,2023 +Senator Ford J.D. added as cosponsor,2023-03-16,[],IN,2023 +Senator Charbonneau added as cosponsor,2023-03-30,[],IN,2023 +Placed back on second reading,2023-03-20,[],IN,2023 +"Third reading: passed; Roll Call 228: yeas 49, nays 0",2023-03-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +Representative Errington added as cosponsor,2023-03-16,[],IN,2023 +Second reading: ordered engrossed,2023-03-13,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-30,['reading-2'],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Motion to dissent filed,2023-04-11,['filing'],IN,2023 +Referred to the House,2023-01-31,['referral'],IN,2023 +First reading: referred to Committee on Rules and Legislative Procedure,2023-03-09,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 271: yeas 94, nays 0",2023-03-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Pack R added as cosponsor,2023-03-20,[],IN,2023 +"Committee report: do pass, adopted",2023-03-09,['committee-passage'],IN,2023 +First reading: referred to Committee on Insurance and Financial Institutions,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Returned to the House without amendments,2023-04-19,['receipt'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-03-09,['reading-2'],IN,2023 +Senator Breaux added as cosponsor,2023-03-28,[],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +"Third reading: passed; Roll Call 302: yeas 48, nays 0",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +Representative Heaton added as cosponsor,2023-03-14,[],IN,2023 +Representative Shackleford added as cosponsor,2023-04-06,[],IN,2023 +"Third reading: passed; Roll Call 273: yeas 49, nays 0",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Hunley added as cosponsor,2023-03-30,[],IN,2023 +Senator Charbonneau added as cosponsor,2023-03-16,[],IN,2023 +"Senators Sandlin, Taylor G, Yoder, Zay added as coauthors",2023-02-27,[],IN,2023 +Senator Alting added as cosponsor,2023-03-20,[],IN,2023 +Signed by the President Pro Tempore,2023-03-30,['passage'],IN,2023 +Returned to the House without amendments,2023-03-22,['receipt'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +Returned to the House without amendments,2023-03-16,['receipt'],IN,2023 +"Third reading: passed; Roll Call 382: yeas 96, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 312: yeas 94, nays 1",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +First reading: referred to Committee on Financial Institutions,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Returned to the House with amendments,2023-04-04,['receipt'],IN,2023 +Second reading: ordered engrossed,2023-04-11,['reading-2'],IN,2023 +Representatives Slager and Andrade M added as cosponsors,2023-02-14,[],IN,2023 +First reading: referred to Committee on Public Health,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +Returned to the Senate without amendments,2023-04-04,['receipt'],IN,2023 +Returned to the Senate without amendments,2023-03-15,['receipt'],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-16,"['committee-passage', 'referral-committee']",IN,2023 +"Second reading: amended, ordered engrossed",2023-03-20,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-03-27,['reading-2'],IN,2023 +Senator Niezgodski added as cosponsor,2023-03-21,[],IN,2023 +First reading: referred to Committee on Education,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 336: yeas 85, nays 5",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Ford Jon added as second sponsor,2023-03-27,[],IN,2023 +Senator Randolph added as coauthor,2023-02-06,[],IN,2023 +Senator Randolph added as coauthor,2023-02-13,[],IN,2023 +"Committee report: do pass, adopted",2023-03-21,['committee-passage'],IN,2023 +Referred to the House,2023-02-22,['referral'],IN,2023 +First reading: referred to Committee on Local Government,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Amendment #4 (Yoder) failed; voice vote,2023-04-06,"['amendment-failure', 'failure']",IN,2023 +"Third reading: passed; Roll Call 241: yeas 42, nays 0",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House without amendments,2023-03-29,['receipt'],IN,2023 +Amendment #4 (Perfect) prevailed; voice vote,2023-03-30,['amendment-passage'],IN,2023 +"Amendment #4 (Bauer M) failed; Roll Call 213: yeas 28, nays 66",2023-02-23,"['amendment-failure', 'failure']",IN,2023 +Returned to the House with amendments,2023-03-22,['receipt'],IN,2023 +Senator Yoder added as coauthor,2023-02-28,[],IN,2023 +"Third reading: passed; Roll Call 437: yeas 97, nays 1",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-03-30,['reading-2'],IN,2023 +Senator Hunley added as cosponsor,2023-04-06,[],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Charbonneau added as second sponsor,2023-04-06,[],IN,2023 +Amendment #2 (Thompson) prevailed; voice vote,2023-04-11,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 436: yeas 50, nays 0",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Perfect added as second sponsor,2023-03-28,[],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Referred to the House,2023-02-07,['referral'],IN,2023 +Senator Charbonneau added as cosponsor,2023-03-09,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"Senators Ford J.D., Hunley, Pol, Deery added as coauthors",2023-02-07,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Tax and Fiscal Policy,2023-04-06,"['committee-passage', 'referral-committee']",IN,2023 +Representative Klinker added as cosponsor,2023-03-30,[],IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +Referred to the House,2023-02-28,['referral'],IN,2023 +Returned to the House with amendments,2023-03-24,['receipt'],IN,2023 +Returned to the House without amendments,2023-03-24,['receipt'],IN,2023 +Motion to dissent filed,2023-04-04,['filing'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-13,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-20,['committee-passage'],IN,2023 +Senator Walker K added as cosponsor,2023-03-21,[],IN,2023 +"Committee report: do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-03-21,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 200: yeas 35, nays 13",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 77: yeas 50, nays 0",2023-02-07,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Olthoff added as cosponsor,2023-03-28,[],IN,2023 +First reading: referred to Committee on Public Health,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Senator Buck added as cosponsor,2023-03-28,[],IN,2023 +Signed by the President Pro Tempore,2023-03-21,['passage'],IN,2023 +"Representatives Abbott D, Andrade M, Aylesworth, Baird, Barrett, Bauer M, Boy, Cherry, Criswell C, Clere, Culp K, Davis M, Engleman, Garcia Wilburn V, Goodrich, Gore M, Hamilton, Hatcher, Hatfield, Heaton, Jackson, Lauer, Ledbetter C, Lehman, Lucas, May, McNamara, Miller K, Pfaff, Rowray E, Slager, Soliday, Steuerwald, Sweet L, Teshka J, Zent added as coauthors",2023-02-07,[],IN,2023 +"Committee report: amend do pass, adopted",2023-02-16,['committee-passage'],IN,2023 +Representative Criswell C added as cosponsor,2023-03-21,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-06,['reading-2'],IN,2023 +Senator Glick added as cosponsor,2023-03-23,[],IN,2023 +Amendment #5 (Smith V) motion withdrawn voice vote,2023-04-13,"['amendment-withdrawal', 'withdrawal']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-04-06,"['committee-passage', 'referral-committee']",IN,2023 +"Second reading: amended, ordered engrossed",2023-04-13,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-04,['committee-passage'],IN,2023 +Senator Leising added as cosponsor,2023-03-28,[],IN,2023 +"Third reading: passed; Roll Call 217: yeas 47, nays 0",2023-03-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Olthoff added as cosponsor,2023-04-04,[],IN,2023 +Senator Qaddoura removed as third sponsor,2023-03-20,[],IN,2023 +Senator Bohacek added as cosponsor,2023-03-30,[],IN,2023 +"Senators Charbonneau, Becker, Bohacek added as cosponsors",2023-03-09,[],IN,2023 +Second reading: ordered engrossed,2023-03-30,['reading-2'],IN,2023 +Referred to the House,2023-02-14,['referral'],IN,2023 +Senators Dernulc and Pol added as cosponsors,2023-03-13,[],IN,2023 +Senator Crane added as cosponsor,2023-03-09,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-30,"['committee-passage', 'referral-committee']",IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-03-30,"['committee-passage', 'referral-committee']",IN,2023 +Senator Dernulc added as third sponsor,2023-03-13,[],IN,2023 +"Committee report: do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Senator Sandlin added as second sponsor,2023-03-20,[],IN,2023 +Second reading: ordered engrossed,2023-03-13,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 339: yeas 94, nays 0",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-27,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-03-28,['committee-passage'],IN,2023 +House sponsor: Representative Soliday,2023-02-07,[],IN,2023 +Senator Rogers added as cosponsor,2023-03-13,[],IN,2023 +Second reading: ordered engrossed,2023-03-30,['reading-2'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Senator Busch added as cosponsor,2023-03-28,[],IN,2023 +Senator Becker added as cosponsor,2023-03-21,[],IN,2023 +Returned to the House without amendments,2023-03-21,['receipt'],IN,2023 +First reading: referred to Committee on Education,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Senator Doriot added as cosponsor,2023-03-14,[],IN,2023 +Senator Randolph added as coauthor,2023-02-07,[],IN,2023 +Senator Becker added as third sponsor,2023-04-06,[],IN,2023 +Representative Hostettler added as cosponsor,2023-04-04,[],IN,2023 +Senator Niezgodski added as cosponsor,2023-03-20,[],IN,2023 +Returned to the House with amendments,2023-04-05,['receipt'],IN,2023 +"Representatives Cash B, Hatcher, Klinker added as cosponsors",2023-03-20,[],IN,2023 +Returned to the Senate with amendments,2023-04-12,['receipt'],IN,2023 +Signed by the Speaker,2023-03-22,['passage'],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Representative Heaton removed as cosponsor,2023-03-21,[],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +Amendment #1 (Crider) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +"Committee report: do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 343: yeas 49, nays 0",2023-04-10,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to concur filed,2023-04-18,['filing'],IN,2023 +"Third reading: passed; Roll Call 297: yeas 39, nays 8",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 269: yeas 49, nays 0",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 281: yeas 38, nays 9",2023-03-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the Senate without amendments,2023-04-04,['receipt'],IN,2023 +Returned to the Senate without amendments,2023-03-16,['receipt'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-04-06,"['committee-passage', 'referral-committee']",IN,2023 +Senator Randolph added as cosponsor,2023-03-27,[],IN,2023 +"Third reading: passed; Roll Call 305: yeas 48, nays 0",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +House dissented from Senate amendments,2023-04-11,[],IN,2023 +"Third reading: passed; Roll Call 274: yeas 92, nays 2",2023-03-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Frye added as cosponsor,2023-03-16,[],IN,2023 +Referred to Committee on Ways and Means pursuant to House Rule 127,2023-03-23,[],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +"Committee report: do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Returned to the Senate without amendments,2023-03-29,['receipt'],IN,2023 +"Third reading: passed; Roll Call 385: yeas 37, nays 10",2023-04-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the Senate without amendments,2023-03-21,['receipt'],IN,2023 +Referred to the House,2023-02-14,['referral'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-06,['reading-2'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Signed by the President Pro Tempore,2023-03-20,['passage'],IN,2023 +Amendment #1 (Pryor) prevailed; voice vote,2023-04-11,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 244: yeas 31, nays 10",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Environmental Affairs,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 230: yeas 49, nays 0",2023-03-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +Representative Bartels added as cosponsor,2023-03-20,[],IN,2023 +Second reading: ordered engrossed,2023-03-23,['reading-2'],IN,2023 +Senator Randolph added as coauthor,2023-02-16,[],IN,2023 +House sponsor: Representative Behning,2023-02-28,[],IN,2023 +Senator Qaddoura added as cosponsor,2023-04-03,[],IN,2023 +"Third reading: passed; Roll Call 421: yeas 49, nays 0",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +"First reading: referred to Committee on Family, Children and Human Affairs",2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +Cosponsors: Representatives Davis M and Hall D,2023-01-31,[],IN,2023 +Representative Olthoff removed as coauthor,2023-04-04,[],IN,2023 +Pursuant to Senate Rule 68(b); reassigned to Committee on Tax and Fiscal Policy,2023-03-28,['referral-committee'],IN,2023 +"Committee report: do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +Returned to the Senate with amendments,2023-03-28,['receipt'],IN,2023 +Second reading: ordered engrossed,2023-03-30,['reading-2'],IN,2023 +Returned to the House without amendments,2023-04-05,['receipt'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-04-17,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 258: yeas 90, nays 0",2023-03-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Torr added as cosponsor,2023-02-02,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +Returned to the Senate with amendments,2023-03-21,['receipt'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Amendment #1 (Young M) failed; voice vote,2023-04-04,"['amendment-failure', 'failure']",IN,2023 +"Third reading: passed; Roll Call 286: yeas 73, nays 22",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Baldwin added as cosponsor,2023-03-28,[],IN,2023 +"Third reading: passed; Roll Call 206: yeas 33, nays 15",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Amendment #1 (Hunley) failed; voice vote,2023-04-17,"['amendment-failure', 'failure']",IN,2023 +"Third reading: passed; Roll Call 256: yeas 91, nays 0",2023-03-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +Senator Byrne added as cosponsor,2023-03-28,[],IN,2023 +Motion to dissent filed,2023-04-06,['filing'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-03-23,"['committee-passage', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 267: yeas 49, nays 0",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the Senate with amendments,2023-04-04,['receipt'],IN,2023 +Senator Qaddoura added as cosponsor,2023-03-21,[],IN,2023 +Senator Bohacek added as coauthor,2023-02-07,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +Senators Ford Jon and Charbonneau added as cosponsors,2023-03-30,[],IN,2023 +Amendment #6 (Deery) prevailed; voice vote,2023-03-30,['amendment-passage'],IN,2023 +Motion to concur filed,2023-03-27,['filing'],IN,2023 +Returned to the Senate without amendments,2023-04-18,['receipt'],IN,2023 +"Amendment #8 (DeLaney) failed; Roll Call 215: yeas 29, nays 66",2023-02-23,"['amendment-failure', 'failure']",IN,2023 +Senator Randolph added as cosponsor,2023-04-06,[],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 293: yeas 33, nays 15",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Cash B added as coauthor,2023-02-07,[],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-03-16,"['committee-passage', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 280: yeas 46, nays 0",2023-03-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +House dissented from Senate amendments,2023-04-04,[],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-04-06,"['committee-passage', 'referral-committee']",IN,2023 +Representatives Heaton and Fleming added as cosponsors,2023-04-17,[],IN,2023 +"Third reading: passed; Roll Call 256: yeas 50, nays 0",2023-03-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to concur filed,2023-03-30,['filing'],IN,2023 +Representative Frye added as cosponsor,2023-03-06,[],IN,2023 +Representative Barrett added as cosponsor,2023-03-20,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-28,['committee-passage'],IN,2023 +Returned to the House with amendments,2023-03-29,['receipt'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-13,['reading-2'],IN,2023 +Representative Harris added as cosponsor,2023-03-23,[],IN,2023 +"Third reading: passed; Roll Call 239: yeas 41, nays 2",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Alting added as cosponsor,2023-04-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +First reading: referred to Committee on Financial Institutions,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Second reading: adopted Roll Call 269: yeas 95, nays 0",2023-03-20,"['passage', 'reading-2']",IN,2023 +First reading: referred to Committee on Ways and Means,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Signed by the President Pro Tempore,2023-03-23,['passage'],IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +Referred to the House,2023-02-17,['referral'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 304: yeas 96, nays 0",2023-03-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 386: yeas 97, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Returned to the Senate with amendments,2023-03-22,['receipt'],IN,2023 +Signed by the President Pro Tempore,2023-03-23,['passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 308: yeas 90, nays 6",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Ford J.D. added as cosponsor,2023-03-23,[],IN,2023 +Amendment #2 (Thompson) prevailed; voice vote,2023-04-11,['amendment-passage'],IN,2023 +Senator Becker added as second sponsor,2023-03-14,[],IN,2023 +Referred to the House,2023-02-21,['referral'],IN,2023 +"Third reading: passed; Roll Call 270: yeas 48, nays 1",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 157: yeas 28, nays 20",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-16,"['committee-passage', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +Returned to the House with amendments,2023-04-11,['receipt'],IN,2023 +"Amendment #1 (Young M) failed; Roll Call 226: yeas 16, nays 33",2023-03-20,"['amendment-failure', 'failure']",IN,2023 +Second reading: ordered engrossed,2023-03-13,['reading-2'],IN,2023 +Representative Gore M added as cosponsor,2023-04-10,[],IN,2023 +"Senators Byrne, Tomes, Doriot added as cosponsors",2023-03-30,[],IN,2023 +"Third reading: passed; Roll Call 233: yeas 47, nays 2",2023-03-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 258: yeas 50, nays 0",2023-03-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House with amendments,2023-03-28,['receipt'],IN,2023 +Second reading: ordered engrossed,2023-03-14,['reading-2'],IN,2023 +Amendment #1 (Bassler) prevailed; voice vote,2023-03-28,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 187: yeas 42, nays 7",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the Senate with amendments,2023-03-29,['receipt'],IN,2023 +Amendment #6 (Ford J.D.) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Amendment #1 (Ford J.D.) failed; voice vote,2023-04-17,"['amendment-failure', 'failure']",IN,2023 +"Third reading: passed; Roll Call 409: yeas 95, nays 0",2023-04-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 423: yeas 49, nays 0",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Randolph added as coauthor,2023-02-23,[],IN,2023 +Returned to the House without amendments,2023-03-28,['receipt'],IN,2023 +Representative Criswell C added as cosponsor,2023-03-30,[],IN,2023 +Second reading: ordered engrossed,2023-03-30,['reading-2'],IN,2023 +Returned to the Senate with amendments,2023-03-31,['receipt'],IN,2023 +Referred to the Senate,2023-02-07,['referral'],IN,2023 +First reading: referred to Committee on Public Health,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Motion to concur filed,2023-04-18,['filing'],IN,2023 +Motion to dissent filed,2023-04-03,['filing'],IN,2023 +Senator Byrne removed as coauthor,2023-02-28,[],IN,2023 +Senator Breaux added as cosponsor,2023-03-14,[],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-03-23,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 261: yeas 92, nays 0",2023-03-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Signed by the President Pro Tempore,2023-03-23,['passage'],IN,2023 +Returned to the Senate with amendments,2023-04-05,['receipt'],IN,2023 +Motion to concur filed,2023-04-04,['filing'],IN,2023 +"Third reading: passed; Roll Call 437: yeas 39, nays 11",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-04-17,['reading-2'],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +"Cosponsors: Representatives May, Lindauer, Karickhoff",2023-02-06,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-27,['reading-2'],IN,2023 +Representative Judy added as cosponsor,2023-03-20,[],IN,2023 +Referred to the House,2023-02-03,['referral'],IN,2023 +Representative Rowray E added as cosponsor,2023-02-27,[],IN,2023 +Senator Gaskill added as second sponsor,2023-03-28,[],IN,2023 +Senator Alting added as cosponsor,2023-04-11,[],IN,2023 +"Third reading: passed; Roll Call 220: yeas 47, nays 0",2023-03-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to concur filed,2023-03-30,['filing'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +Senator Alting added as coauthor,2023-02-13,[],IN,2023 +Amendment #9 (Gaskill) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +First reading: referred to Committee on Veterans Affairs and Public Safety,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Donato added as third sponsor,2023-03-21,[],IN,2023 +"Third reading: passed; Roll Call 229: yeas 49, nays 0",2023-03-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-04-06,['reading-2'],IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Randolph added as cosponsor,2023-04-03,[],IN,2023 +Cosponsor: Representative Jeter C,2023-02-28,[],IN,2023 +First reading: referred to Committee on Public Policy,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +House dissented from Senate amendments,2023-04-17,[],IN,2023 +Pursuant to Senate Rule 68(b); reassigned to Committee on Tax and Fiscal Policy,2023-03-09,['referral-committee'],IN,2023 +Returned to the House with amendments,2023-03-16,['receipt'],IN,2023 +Amendment #1 (Hunley) prevailed; voice vote,2023-03-28,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 307: yeas 48, nays 0",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Harris added as cosponsor,2023-03-27,[],IN,2023 +Senator Qaddoura added as cosponsor,2023-03-20,[],IN,2023 +Representative Andrade M added as cosponsor,2023-03-09,[],IN,2023 +"Third reading: passed; Roll Call 445: yeas 32, nays 18",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Senator Bassler added as coauthor,2023-01-31,[],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2023-03-21,"['committee-passage', 'referral-committee']",IN,2023 +Referred to the House,2023-02-10,['referral'],IN,2023 +"Committee report: do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 272: yeas 49, nays 0",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Byrne added as cosponsor,2023-03-09,[],IN,2023 +Senator Charbonneau added as cosponsor,2023-03-27,[],IN,2023 +"House concurred in Senate amendments; Roll Call 400: yeas 92, nays 1",2023-04-11,[],IN,2023 +"Third reading: passed; Roll Call 387: yeas 97, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-02-14,['committee-passage'],IN,2023 +Referred to the Senate,2023-02-22,['referral'],IN,2023 +"Third reading: passed; Roll Call 452: yeas 50, nays 0",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-16,"['committee-passage', 'referral-committee']",IN,2023 +Returned to the Senate with amendments,2023-04-04,['receipt'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Referred to the House,2023-02-24,['referral'],IN,2023 +"Reread second time: amended, ordered engrossed",2023-03-27,['reading-2'],IN,2023 +Senate dissented from House amendments,2023-04-13,[],IN,2023 +First reading: referred to Committee on Elections and Apportionment,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 272: yeas 93, nays 0",2023-03-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #6 (Teshka) prevailed; voice vote,2023-04-03,['amendment-passage'],IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +Motion to dissent filed,2023-04-19,['filing'],IN,2023 +"Amendment #5 (Pol) failed; Roll Call 334: yeas 13, nays 35",2023-04-06,"['amendment-failure', 'failure']",IN,2023 +First reading: referred to Committee on Local Government,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Senator Zay added as second sponsor,2023-03-13,[],IN,2023 +Senators Charbonneau and Niezgodski added as cosponsors,2023-04-17,[],IN,2023 +Senator Randolph added as cosponsor,2023-04-06,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-03,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-11,['reading-2'],IN,2023 +Representative Pierce M added as cosponsor,2023-04-04,[],IN,2023 +Referred to the House,2023-02-01,['referral'],IN,2023 +"Senate sponsors: Senators Johnson, Dernulc, Breaux",2023-02-23,[],IN,2023 +First reading: referred to Committee on Appropriations,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 380: yeas 46, nays 2",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Johnson added as cosponsor,2023-03-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +"Reread second time: amended, ordered engrossed",2023-03-21,['reading-2'],IN,2023 +"Concurrence failed for lack of constitutional majority; Roll Call 459: yeas 19, nays 22",2023-04-19,['failure'],IN,2023 +Representative Andrade M added as cosponsor,2023-03-13,[],IN,2023 +Senator Garten added as second sponsor,2023-03-27,[],IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +Representative Lehman added as cosponsor,2023-03-14,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 266: yeas 49, nays 0",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 425: yeas 48, nays 0",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 253: yeas 49, nays 0",2023-03-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Lehman added as cosponsor,2023-03-09,[],IN,2023 +"Amendment #1 (Pol) failed; Roll Call 366: yeas 20, nays 28",2023-04-11,"['amendment-failure', 'failure']",IN,2023 +"Second reading: amended, ordered engrossed",2023-03-28,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-03-30,['reading-2'],IN,2023 +First reading: referred to Committee on Education,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Amendment #2 (Young M) prevailed; voice vote,2023-03-20,['amendment-passage'],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +Motion to concur filed,2023-04-06,['filing'],IN,2023 +"Third reading: passed; Roll Call 350: yeas 95, nays 0",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +House conferees appointed: Torr and Campbell,2023-04-18,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-20,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 287: yeas 47, nays 0",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Pol added as cosponsor,2023-03-09,[],IN,2023 +Amendment #1 (Garten) prevailed; voice vote,2023-02-27,['amendment-passage'],IN,2023 +Motion to concur filed,2023-03-27,['filing'],IN,2023 +Returned to the Senate without amendments,2023-03-28,['receipt'],IN,2023 +Amendment #2 (Zay) prevailed; voice vote,2023-03-28,['amendment-passage'],IN,2023 +Returned to the Senate with amendments,2023-04-13,['receipt'],IN,2023 +"Committee report: do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +"Committee report: do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +Concurrence withdrawn,2023-04-20,['withdrawal'],IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +Returned to the House with amendments,2023-04-05,['receipt'],IN,2023 +Senator Yoder added as cosponsor,2023-03-20,[],IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 316: yeas 89, nays 4",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Sandlin added as third sponsor,2023-03-27,[],IN,2023 +"Third reading: passed; Roll Call 262: yeas 92, nays 1",2023-03-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +Motion to concur filed,2023-04-12,['filing'],IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +Returned to the House without amendments,2023-04-19,['receipt'],IN,2023 +Senator Tomes added as cosponsor,2023-03-21,[],IN,2023 +"Third reading: passed; Roll Call 223: yeas 34, nays 13",2023-03-16,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Rowray E added as cosponsor,2023-02-27,[],IN,2023 +"Third reading: passed; Roll Call 296: yeas 90, nays 0",2023-03-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Speedy,2023-02-28,[],IN,2023 +Amendment #4 (Young M) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Senator Crane added as cosponsor,2023-03-28,[],IN,2023 +Senator Johnson added as cosponsor,2023-04-03,[],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Amendment #3 (Bassler) prevailed; voice vote,2023-03-28,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 329: yeas 90, nays 0",2023-03-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 359: yeas 94, nays 3",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the Senate with amendments,2023-04-12,['receipt'],IN,2023 +"Third reading: passed; Roll Call 271: yeas 49, nays 0",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Amendment #1 (Porter) failed; Roll Call 144: yeas 28, nays 64",2023-02-16,"['amendment-failure', 'failure']",IN,2023 +Returned to the House without amendments,2023-03-21,['receipt'],IN,2023 +Signed by the President of the Senate,2023-04-04,['passage'],IN,2023 +First reading: referred to Committee on Education and Career Development,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 291: yeas 46, nays 2",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House with amendments,2023-04-19,['receipt'],IN,2023 +"Committee report: do pass, adopted",2023-03-09,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 377: yeas 85, nays 12",2023-04-10,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to dissent filed,2023-04-12,['filing'],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Amendment #1 (Ford Jon) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-03-27,['reading-2'],IN,2023 +First reading: referred to Committee on Insurance,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 263: yeas 93, nays 0",2023-03-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the Senate with amendments,2023-04-12,['receipt'],IN,2023 +First reading: referred to Committee on Education,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +House conferees appointed: Engleman and Johnson,2023-04-14,[],IN,2023 +"Third reading: passed; Roll Call 274: yeas 49, nays 0",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #1 (Speedy) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Returned to the House without amendments,2023-03-29,['receipt'],IN,2023 +Signed by the President Pro Tempore,2023-03-21,['passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-20,['reading-2'],IN,2023 +"Amendment #9 (Meltzer) prevailed; Division of the House: yeas 60, nays 29",2023-04-03,['amendment-passage'],IN,2023 +Representative Andrade M added as cosponsor,2023-03-13,[],IN,2023 +Representative Garcia Wilburn V added as cosponsor,2023-03-20,[],IN,2023 +First reading: referred to Committee on Appropriations,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Senator Donato added as third sponsor,2023-03-13,[],IN,2023 +Senate dissented from House amendments,2023-04-19,[],IN,2023 +Motion to concur filed,2023-04-18,['filing'],IN,2023 +Motion to dissent filed,2023-04-06,['filing'],IN,2023 +"Third reading: passed; Roll Call 368: yeas 48, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-03-21,['committee-passage'],IN,2023 +First reading: referred to Committee on Education,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Amendment #7 (Ford J.D.) failed; voice vote,2023-04-06,"['amendment-failure', 'failure']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 438: yeas 32, nays 17",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Teshka,2023-02-23,[],IN,2023 +Returned to the House without amendments,2023-03-28,['receipt'],IN,2023 +"Third reading: passed; Roll Call 308: yeas 48, nays 0",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Rules and Legislative Procedures,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Returned to the House with amendments,2023-03-29,['receipt'],IN,2023 +Representative Garcia Wilburn V added as cosponsor,2023-04-11,[],IN,2023 +"Third reading: passed; Roll Call 351: yeas 92, nays 2",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Breaux added as third sponsor,2023-03-14,[],IN,2023 +Amendment #1 (Johnson) prevailed; voice vote,2023-04-10,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 353: yeas 96, nays 0",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House with amendments,2023-04-12,['receipt'],IN,2023 +First reading: referred to Committee on Natural Resources,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-03-09,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-11,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 232: yeas 92, nays 0",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Moed added as cosponsor,2023-04-03,[],IN,2023 +Signed by the President of the Senate,2023-03-23,['passage'],IN,2023 +"House concurred in Senate amendments; Roll Call 372: yeas 89, nays 0",2023-04-06,[],IN,2023 +"Third reading: passed; Roll Call 257: yeas 49, nays 1",2023-03-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-03-30,[],IN,2023 +Motion to concur filed,2023-04-06,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +Senator Baldwin added as cosponsor,2023-03-27,[],IN,2023 +Senator Yoder added as cosponsor,2023-03-13,[],IN,2023 +"Third reading: passed; Roll Call 451: yeas 45, nays 5",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the Senate with amendments,2023-03-15,['receipt'],IN,2023 +Senator Charbonneau added as coauthor,2023-02-06,[],IN,2023 +"Third reading: passed; Roll Call 301: yeas 96, nays 0",2023-03-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Lindauer removed as cosponsor,2023-03-27,[],IN,2023 +Representative Pryor added as cosponsor,2023-03-20,[],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Amendment #1 (Glick) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 277: yeas 47, nays 0",2023-03-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Yoder added as cosponsor,2023-03-09,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-03-16,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Returned to the Senate with amendments,2023-03-29,['receipt'],IN,2023 +Returned to the House with amendments,2023-03-15,['receipt'],IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +"House concurred in Senate amendments; Roll Call 371: yeas 88, nays 0",2023-04-06,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-11,['reading-2'],IN,2023 +House dissented from Senate amendments,2023-04-04,[],IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +Returned to the House with amendments,2023-04-12,['receipt'],IN,2023 +Representatives Bartels and Gore M added as cosponsors,2023-03-13,[],IN,2023 +"House concurred in Senate amendments; Roll Call 444: yeas 86, nays 4",2023-04-18,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-17,['reading-2'],IN,2023 +Referred to the House,2023-02-14,['referral'],IN,2023 +Senator Byrne added as third author,2023-02-28,[],IN,2023 +Representative Barrett added as cosponsor,2023-03-20,[],IN,2023 +Second reading: ordered engrossed,2023-04-17,['reading-2'],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-02-27,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +Senator Johnson added as cosponsor,2023-03-20,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Placed back on second reading,2023-04-10,[],IN,2023 +Representatives Cash B and Fleming added as cosponsors,2023-03-14,[],IN,2023 +Senator Breaux added as cosponsor,2023-03-21,[],IN,2023 +Representative Meltzer J added as cosponsor,2023-03-13,[],IN,2023 +First reading: referred to Committee on Elections,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Returned to the House with amendments,2023-03-29,['receipt'],IN,2023 +Cosponsors: Representatives Teshka J and Davis M,2023-02-28,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Returned to the House with amendments,2023-03-15,['receipt'],IN,2023 +Senator Ford Jon added as cosponsor,2023-04-13,[],IN,2023 +Returned to the House without amendments,2023-03-31,['receipt'],IN,2023 +Motion to dissent filed,2023-04-19,['filing'],IN,2023 +"Amendment #1 (Pierce) failed; Roll Call 265: yeas 29, nays 60",2023-03-16,"['amendment-failure', 'failure']",IN,2023 +Signed by the President Pro Tempore,2023-03-30,['passage'],IN,2023 +Second reading: ordered engrossed,2023-03-23,['reading-2'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-04-06,"['committee-passage', 'referral-committee']",IN,2023 +Amendment #8 (Charbonneau) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +"Third reading: passed; Roll Call 288: yeas 45, nays 2",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Second reading: ordered engrossed,2023-04-17,['reading-2'],IN,2023 +Representative Miller D added as cosponsor,2023-03-14,[],IN,2023 +Representative Morris added as coauthor,2023-02-07,[],IN,2023 +Senator Tomes added as coauthor,2023-04-18,[],IN,2023 +"Third reading: passed; Roll Call 342: yeas 44, nays 5",2023-04-10,"['passage', 'reading-3', 'reading-3']",IN,2023 +House conferees appointed: Pressel and Errington,2023-04-06,[],IN,2023 +Representative Judy added as cosponsor,2023-03-07,[],IN,2023 +Representative Davis M removed as sponsor,2023-03-23,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-03-28,[],IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +Amendment #1 (Freeman) prevailed; voice vote,2023-03-14,['amendment-passage'],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Returned to the House with amendments,2023-03-22,['receipt'],IN,2023 +Senator Tomes added as cosponsor,2023-04-03,[],IN,2023 +"Third reading: passed; Roll Call 303: yeas 48, nays 0",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Tomes added as cosponsor,2023-03-13,[],IN,2023 +Second reading: ordered engrossed,2023-03-30,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-03-30,['reading-2'],IN,2023 +Returned to the Senate without amendments,2023-04-04,['receipt'],IN,2023 +Senator Hunley added as third sponsor,2023-03-20,[],IN,2023 +Senator Koch added as cosponsor,2023-03-13,[],IN,2023 +Senator Yoder added as cosponsor,2023-04-06,[],IN,2023 +Returned to the House with amendments,2023-03-22,['receipt'],IN,2023 +Senator Randolph added as cosponsor,2023-04-06,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Representatives Harris and Hatcher added as cosponsors,2023-04-13,[],IN,2023 +Senator Ford J.D. added as cosponsor,2023-03-27,[],IN,2023 +"Third reading: passed; Roll Call 430: yeas 97, nays 0",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Randolph added as cosponsor,2023-03-27,[],IN,2023 +Representative Klinker removed as cosponsor,2023-04-04,[],IN,2023 +Returned to the House without amendments,2023-03-31,['receipt'],IN,2023 +Representative Gore M added as cosponsor,2023-03-23,[],IN,2023 +Senators Rogers and Yoder added as cosponsors,2023-03-16,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +Returned to the House without amendments,2023-04-04,['receipt'],IN,2023 +Amendment #9 (DeLaney) ruled out of order,2023-02-23,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-30,['reading-2'],IN,2023 +Amendment #5 (Rogers) prevailed; voice vote,2023-04-03,['amendment-passage'],IN,2023 +Cosponsors: Representatives Jeter C and Steuerwald,2023-02-07,[],IN,2023 +Amendment #1 (Crider) prevailed; voice vote,2023-02-09,['amendment-passage'],IN,2023 +Motion to concur filed,2023-04-12,['filing'],IN,2023 +Returned to the House with amendments,2023-03-29,['receipt'],IN,2023 +Senator Charbonneau added as cosponsor,2023-03-23,[],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +House dissented from Senate amendments,2023-04-06,[],IN,2023 +Returned to the Senate without amendments,2023-03-15,['receipt'],IN,2023 +Senator Brown L added as second sponsor,2023-04-10,[],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +House sponsor: Representative Torr,2023-02-28,[],IN,2023 +"Senators Pol, Bohacek, Tomes, Dernulc added as cosponsors",2023-03-28,[],IN,2023 +Returned to the Senate with amendments,2023-03-22,['receipt'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Second reading: ordered engrossed,2023-04-04,['reading-2'],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-02-07,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 442: yeas 50, nays 0",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Randolph added as cosponsor,2023-04-06,[],IN,2023 +Returned to the House with amendments,2023-03-21,['receipt'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Representative McNamara added as coauthor,2023-04-04,[],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-03-16,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-04,['committee-passage'],IN,2023 +Senator Glick added as coauthor,2023-01-31,[],IN,2023 +Amendment #2 (Freeman) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +Senator Randolph added as cosponsor,2023-04-06,[],IN,2023 +"Committee report: do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 303: yeas 96, nays 0",2023-03-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House with amendments,2023-03-22,['receipt'],IN,2023 +Representative Bartels added as cosponsor,2023-03-20,[],IN,2023 +Signed by the Speaker,2023-03-22,['passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-11,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 345: yeas 37, nays 12",2023-04-10,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +First reading: referred to Committee on Public Health,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Returned to the House with amendments,2023-04-14,['receipt'],IN,2023 +Representative Hamilton added as cosponsor,2023-04-11,[],IN,2023 +Signed by the President Pro Tempore,2023-03-21,['passage'],IN,2023 +Senate conferees appointed: Messmer and Qaddoura,2023-04-13,[],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Returned to the House with amendments,2023-04-05,['receipt'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Returned to the House with amendments,2023-04-04,['receipt'],IN,2023 +Signed by the President Pro Tempore,2023-03-20,['passage'],IN,2023 +"House concurred in Senate amendments; Roll Call 446: yeas 92, nays 1",2023-04-18,[],IN,2023 +Returned to the House with amendments,2023-04-11,['receipt'],IN,2023 +Senator Randolph added as cosponsor,2023-04-03,[],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Second reading: ordered engrossed,2023-04-13,['reading-2'],IN,2023 +Motion to dissent filed,2023-04-25,['filing'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +Representatives Hamilton and Pack R added as cosponsors,2023-03-21,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-17,['reading-2'],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-03-23,['passage'],IN,2023 +"Third reading: passed; Roll Call 285: yeas 95, nays 0",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 362: yeas 95, nays 2",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to dissent filed,2023-04-06,['filing'],IN,2023 +Amendment #1 (Ford Jon) prevailed; voice vote,2023-03-21,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +Senator Yoder added as cosponsor,2023-04-06,[],IN,2023 +"Committee report: do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +Motion to dissent filed,2023-04-06,['filing'],IN,2023 +"House concurred in Senate amendments; Roll Call 373: yeas 89, nays 0",2023-04-06,[],IN,2023 +"House concurred in Senate amendments; Roll Call 319: yeas 71, nays 24",2023-03-28,[],IN,2023 +Returned to the Senate without amendments,2023-03-13,['receipt'],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Referred to the House,2023-02-09,['referral'],IN,2023 +Representative McNamara added as sponsor,2023-03-23,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-03-30,[],IN,2023 +"Third reading: passed; Roll Call 280: yeas 85, nays 9",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #3 (Porter) ruled out of order,2023-04-03,[],IN,2023 +Returned to the Senate without amendments,2023-03-21,['receipt'],IN,2023 +Motion to dissent filed,2023-04-19,['filing'],IN,2023 +House dissented from Senate amendments,2023-04-06,[],IN,2023 +"Senate concurred in House amendments; Roll Call 312: yeas 48, nays 0",2023-04-04,[],IN,2023 +Motion to dissent filed,2023-04-04,['filing'],IN,2023 +Second reading: ordered engrossed,2023-04-06,['reading-2'],IN,2023 +Senator Randolph added as cosponsor,2023-03-27,[],IN,2023 +Motion to dissent filed,2023-03-15,['filing'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +"Third reading: passed; Roll Call 444: yeas 50, nays 0",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Randolph added as coauthor,2023-01-31,[],IN,2023 +"Third reading: passed; Roll Call 287: yeas 94, nays 1",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #3 (Raatz) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +Signed by the President Pro Tempore,2023-03-20,['passage'],IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +Representative Pack R added as cosponsor,2023-03-23,[],IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +"House advisors appointed: Morris, Morrison, Bauer M and Jackson",2023-04-06,[],IN,2023 +Motion to concur filed,2023-03-27,['filing'],IN,2023 +"Third reading: passed; Roll Call 433: yeas 94, nays 4",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Reread second time: amended, ordered engrossed",2023-03-21,['reading-2'],IN,2023 +Amendment #9 (Charbonneau) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +"Committee report: do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 216: yeas 42, nays 5",2023-03-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the Senate without amendments,2023-03-28,['receipt'],IN,2023 +Amendment #1 (Ford J.D.) failed; voice vote,2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Amendment #1 (Thompson) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Representative Cash B added as cosponsor,2023-04-04,[],IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +Motion to dissent filed,2023-04-10,['filing'],IN,2023 +Amendment #1 (McNamara) prevailed; voice vote,2023-03-27,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-04-13,['reading-2'],IN,2023 +Amendment #4 (Freeman) prevailed; voice vote,2023-03-14,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 367: yeas 84, nays 3",2023-04-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-13,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-04-13,['reading-2'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +"Third reading: passed; Roll Call 218: yeas 47, nays 0",2023-03-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-02-23,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +"Third reading: passed; Roll Call 289: yeas 47, nays 0",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to dissent filed,2023-04-06,['filing'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +"Amendment #1 (Qaddoura) failed; Roll Call 283: yeas 13, nays 34",2023-04-03,"['amendment-failure', 'failure']",IN,2023 +Signed by the Speaker,2023-03-22,['passage'],IN,2023 +Amendment #4 (Garten) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +Senators Becker and Raatz added as coauthors,2023-02-07,[],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +"Third reading: passed; Roll Call 296: yeas 47, nays 0",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to dissent filed,2023-04-17,['filing'],IN,2023 +Senate dissented from House amendments,2023-04-19,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-09,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +Senator Bohacek added as cosponsor,2023-03-20,[],IN,2023 +Amendment #1 (Charbonneau) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +"Senate concurred in House amendments; Roll Call 390: yeas 46, nays 1",2023-04-13,[],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Senator Qaddoura added as cosponsor,2023-03-20,[],IN,2023 +Motion to concur filed,2023-03-30,['filing'],IN,2023 +Motion to concur filed,2023-03-27,['filing'],IN,2023 +Representatives Campbell and Harris added as coauthors,2023-02-07,[],IN,2023 +Returned to the House without amendments,2023-04-11,['receipt'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Representative Frye added as cosponsor,2023-04-10,[],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +Senator Yoder added as cosponsor,2023-03-23,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 337: yeas 91, nays 0",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +House conferees appointed: Lehman and Smith V,2023-04-06,[],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +"Committee report: do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +"Third reading: passed; Roll Call 349: yeas 97, nays 0",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate advisors appointed: Melton and Ford Jon,2023-04-13,[],IN,2023 +Amendment #4 (Crider) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Returned to the House with amendments,2023-04-11,['receipt'],IN,2023 +Signed by the President Pro Tempore,2023-03-20,['passage'],IN,2023 +"Third reading: passed; Roll Call 454: yeas 40, nays 10",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +First reading: referred to Committee on Public Health,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 375: yeas 48, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +House dissented from Senate amendments,2023-04-06,[],IN,2023 +Motion to concur filed,2023-04-24,['filing'],IN,2023 +Returned to the Senate with amendments,2023-03-22,['receipt'],IN,2023 +Amendment #6 (Bassler) prevailed; voice vote,2023-04-11,['amendment-passage'],IN,2023 +Senator Randolph added as cosponsor,2023-03-28,[],IN,2023 +Returned to the Senate with amendments,2023-04-18,['receipt'],IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +Senator Johnson removed as coauthor,2023-02-28,[],IN,2023 +Returned to the House with amendments,2023-04-05,['receipt'],IN,2023 +Placed back on second reading,2023-04-12,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Senator Breaux removed as cosponsor,2023-04-06,[],IN,2023 +Returned to the Senate with amendments,2023-04-05,['receipt'],IN,2023 +"Senate concurred in House amendments; Roll Call 311: yeas 45, nays 3",2023-04-04,[],IN,2023 +"Senators Leising, Perfect, Yoder added as cosponsors",2023-04-04,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 424: yeas 49, nays 0",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to concur filed,2023-03-28,['filing'],IN,2023 +Motion to concur filed,2023-03-27,['filing'],IN,2023 +Second reading: ordered engrossed,2023-04-17,['reading-2'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Returned to the House with amendments,2023-04-19,['receipt'],IN,2023 +Amendment #4 (Lehman) prevailed; voice vote,2023-03-27,['amendment-passage'],IN,2023 +Amendment #1 (Mishler) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +House dissented from Senate amendments,2023-04-25,[],IN,2023 +Signed by the President of the Senate,2023-04-04,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Senator Pol added as cosponsor,2023-04-03,[],IN,2023 +Senator Becker removed as second sponsor,2023-03-21,[],IN,2023 +"Third reading: passed; Roll Call 385: yeas 94, nays 2",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House with amendments,2023-04-19,['receipt'],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Senators Charbonneau and Melton added as cosponsors,2023-04-17,[],IN,2023 +"House advisors appointed: Goodrich, Teshka and Miller K",2023-04-18,[],IN,2023 +Senator Dernulc added as cosponsor,2023-03-16,[],IN,2023 +"House concurred in Senate amendments; Roll Call 441: yeas 68, nays 21",2023-04-18,[],IN,2023 +"Third reading: passed; Roll Call 357: yeas 96, nays 1",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +Amendment #2 (Glick) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Motion to concur filed,2023-04-12,['filing'],IN,2023 +Amendment #2 (Messmer) prevailed; voice vote,2023-04-11,['amendment-passage'],IN,2023 +"Committee report: do pass, adopted",2023-03-28,['committee-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-27,['reading-2'],IN,2023 +Signed by the President Pro Tempore,2023-03-30,['passage'],IN,2023 +"House concurred in Senate amendments; Roll Call 327: yeas 92, nays 2",2023-03-28,[],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Motion to dissent filed,2023-04-20,['filing'],IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-28,['reading-2'],IN,2023 +Motion to concur filed,2023-04-24,['filing'],IN,2023 +Amendment #2 (Slager) prevailed; voice vote,2023-03-27,['amendment-passage'],IN,2023 +Amendment #1 (Slager) prevailed; voice vote,2023-03-21,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 281: yeas 92, nays 1",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-04-06,['reading-2'],IN,2023 +Senator Koch added as coauthor,2023-02-06,[],IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +Motion to concur filed,2023-04-10,['filing'],IN,2023 +Returned to the House with amendments,2023-03-21,['receipt'],IN,2023 +House conferees appointed: McNamara and Moed,2023-04-06,[],IN,2023 +House dissented from Senate amendments,2023-04-06,[],IN,2023 +Motion to concur filed,2023-04-19,['filing'],IN,2023 +Public Law 82,2023-04-20,['became-law'],IN,2023 +"Committee report: do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Returned to the Senate with amendments,2023-03-29,['receipt'],IN,2023 +Returned to the House without amendments,2023-03-16,['receipt'],IN,2023 +"Cosponsors: Representatives Behning, King J, Jordan",2023-02-23,[],IN,2023 +Returned to the House with amendments,2023-04-04,['receipt'],IN,2023 +Returned to the Senate with amendments,2023-03-15,['receipt'],IN,2023 +"Senate concurred in House amendments; Roll Call 320: yeas 48, nays 0",2023-04-04,[],IN,2023 +Representative Olthoff added as cosponsor,2023-03-13,[],IN,2023 +First reading: referred to Committee on Judiciary,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Committee report: do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +Amendment #1 (Raatz) prevailed; voice vote,2023-04-10,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 315: yeas 86, nays 8",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +"Third reading: passed; Roll Call 383: yeas 94, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House with amendments,2023-04-05,['receipt'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Senators Ford J.D. and Leising added as cosponsors,2023-03-14,[],IN,2023 +"Senate concurred in House amendments; Roll Call 392: yeas 47, nays 0",2023-04-13,[],IN,2023 +"Senate concurred in House amendments; Roll Call 355: yeas 48, nays 0",2023-04-10,[],IN,2023 +Returned to the Senate with amendments,2023-04-05,['receipt'],IN,2023 +Returned to the Senate without amendments,2023-03-28,['receipt'],IN,2023 +"Third reading: passed; Roll Call 407: yeas 86, nays 8",2023-04-12,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House with amendments,2023-03-21,['receipt'],IN,2023 +Amendment #2 (Slager) prevailed; voice vote,2023-04-12,['amendment-passage'],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Returned to the Senate with amendments,2023-03-24,['receipt'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Senator Randolph added as cosponsor,2023-03-28,[],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Senator Tomes added as coauthor,2023-01-31,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-04-06,"['committee-passage', 'referral-committee']",IN,2023 +Motion to concur filed,2023-04-18,['filing'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-10,['reading-2'],IN,2023 +Senator Randolph added as cosponsor,2023-03-23,[],IN,2023 +"Third reading: passed; Roll Call 265: yeas 49, nays 0",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House with amendments,2023-03-31,['receipt'],IN,2023 +Amendment #4 (Bassler) prevailed; voice vote,2023-03-28,['amendment-passage'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +"Third reading: passed; Roll Call 348: yeas 96, nays 1",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 435: yeas 96, nays 2",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-04-13,['reading-2'],IN,2023 +"Cosponsors: Representatives Pressel, Harris, Johnson",2023-02-28,[],IN,2023 +Returned to the Senate without amendments,2023-04-05,['receipt'],IN,2023 +Senator Glick added as cosponsor,2023-03-27,[],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Representative Rowray E added as cosponsor,2023-02-27,[],IN,2023 +"Committee report: do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-02-16,['reading-2'],IN,2023 +Returned to the Senate,2023-03-21,['receipt'],IN,2023 +Returned to the Senate with amendments,2023-04-05,['receipt'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-16,"['committee-passage', 'referral-committee']",IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Senator Rogers added as cosponsor,2023-04-17,[],IN,2023 +Referred to the Senate,2023-02-24,['referral'],IN,2023 +Senator Rogers added as cosponsor,2023-03-06,[],IN,2023 +Motion to dissent filed,2023-04-12,['filing'],IN,2023 +Returned to the House with amendments,2023-04-04,['receipt'],IN,2023 +Senator Alting added as cosponsor,2023-03-28,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +Public Law 11,2023-04-05,['became-law'],IN,2023 +Representatives Lauer and Jeter C added as cosponsors,2023-03-13,[],IN,2023 +Motion to concur filed,2023-04-20,['filing'],IN,2023 +Second reading: ordered engrossed,2023-03-13,['reading-2'],IN,2023 +Returned to the Senate with amendments,2023-04-11,['receipt'],IN,2023 +Senators Leising and Byrne added as cosponsors,2023-03-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-20,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 242: yeas 43, nays 0",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House with amendments,2023-03-28,['receipt'],IN,2023 +"Third reading: passed; Roll Call 314: yeas 93, nays 1",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to concur filed,2023-04-20,['filing'],IN,2023 +Public Law 14,2023-04-05,['became-law'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-13,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-03-13,['committee-passage'],IN,2023 +Senator Doriot added as third sponsor,2023-04-11,[],IN,2023 +Returned to the Senate without amendments,2023-03-15,['receipt'],IN,2023 +Representative Olthoff added as cosponsor,2023-03-13,[],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-03-23,[],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-04,['committee-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-03,['reading-2'],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Motion to concur filed,2023-03-27,['filing'],IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +"House advisors appointed: Olthoff, May and Summers",2023-04-14,[],IN,2023 +"Third reading: passed; Roll Call 340: yeas 82, nays 11",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate dissented from House amendments,2023-04-13,[],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-13,['reading-2'],IN,2023 +Amendment #1 (Judy) prevailed; voice vote,2023-04-03,['amendment-passage'],IN,2023 +"Senate concurred in House amendments; Roll Call 357: yeas 48, nays 0",2023-04-10,[],IN,2023 +Returned to the House with amendments,2023-03-29,['receipt'],IN,2023 +Returned to the Senate without amendments,2023-03-21,['receipt'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Returned to the House with amendments,2023-04-12,['receipt'],IN,2023 +Motion to concur filed,2023-04-24,['filing'],IN,2023 +"Third reading: passed; Roll Call 240: yeas 32, nays 10",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +House conferees appointed: Behning and Smith V,2023-04-20,[],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Returned to the Senate without amendments,2023-04-05,['receipt'],IN,2023 +Returned to the Senate with amendments,2023-03-31,['receipt'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +Rule 105.1 suspended,2023-03-14,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Motion to concur filed,2023-03-23,['filing'],IN,2023 +Senator Randolph added as cosponsor,2023-03-27,[],IN,2023 +"Third reading: passed; Roll Call 443: yeas 41, nays 9",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +"House advisors appointed: Meltzer, King and Gore",2023-04-06,[],IN,2023 +Representative Lyness added as cosponsor,2023-03-14,[],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Motion to dissent filed,2023-04-19,['filing'],IN,2023 +"House concurred in Senate amendments; Roll Call 480: yeas 95, nays 0",2023-04-24,[],IN,2023 +Amendment #7 (Koch) prevailed; voice vote,2023-03-28,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 433: yeas 50, nays 0",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House with amendments,2023-03-22,['receipt'],IN,2023 +Second reading: ordered engrossed,2023-03-28,['reading-2'],IN,2023 +Signed by the President Pro Tempore,2023-03-20,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-28,['reading-2'],IN,2023 +Motion to concur filed,2023-04-06,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +"House concurred in Senate amendments; Roll Call 472: yeas 87, nays 3",2023-04-20,[],IN,2023 +"Third reading: passed; Roll Call 189: yeas 49, nays 0",2023-02-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Bohacek added as second sponsor,2023-03-16,[],IN,2023 +First reading: referred to Committee on Public Health,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +"Senate concurred in House amendments; Roll Call 322: yeas 48, nays 0",2023-04-04,[],IN,2023 +Amendment #4 (Glick) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Signed by the Governor,2023-04-05,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Motion to dissent filed,2023-04-19,['filing'],IN,2023 +Returned to the Senate with amendments,2023-03-29,['receipt'],IN,2023 +"House concurred in Senate amendments; Roll Call 326: yeas 94, nays 0",2023-03-28,[],IN,2023 +Returned to the Senate with amendments,2023-03-22,['receipt'],IN,2023 +Returned to the Senate without amendments,2023-04-05,['receipt'],IN,2023 +"Third reading: passed; Roll Call 446: yeas 45, nays 5",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the Senate with amendments,2023-04-12,['receipt'],IN,2023 +"Reread second time: amended, ordered engrossed",2023-04-11,['reading-2'],IN,2023 +Senator Randolph added as cosponsor,2023-04-06,[],IN,2023 +Senate conferees appointed: Rogers and Randolph Lonnie M,2023-04-24,[],IN,2023 +Amendment #1 (Freeman) prevailed; voice vote,2023-03-30,['amendment-passage'],IN,2023 +Placed back on second reading,2023-03-30,[],IN,2023 +Motion to dissent filed,2023-04-12,['filing'],IN,2023 +Representatives Jeter C and Hamilton added as cosponsors,2023-03-13,[],IN,2023 +Senator Qaddoura added as cosponsor,2023-03-30,[],IN,2023 +Returned to the House with amendments,2023-03-29,['receipt'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Senate dissented from House amendments,2023-04-18,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-04-06,"['committee-passage', 'referral-committee']",IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 422: yeas 49, nays 0",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Placed back on second reading,2023-04-11,[],IN,2023 +Senate conferees appointed: Gaskill and Pol,2023-04-18,[],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Amendment #74 (Mishler) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +Amendment #1 (Boy) prevailed; voice vote,2023-03-27,['amendment-passage'],IN,2023 +Returned to the Senate with amendments,2023-04-12,['receipt'],IN,2023 +"Third reading: passed; Roll Call 367: yeas 48, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +Second reading: ordered engrossed,2023-03-27,['reading-2'],IN,2023 +"House concurred in Senate amendments; Roll Call 465: yeas 93, nays 0",2023-04-20,[],IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +"House concurred in Senate amendments; Roll Call 450: yeas 91, nays 3",2023-04-18,[],IN,2023 +Returned to the Senate with amendments,2023-04-12,['receipt'],IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Motion to concur filed,2023-04-18,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Returned to the Senate with amendments,2023-04-05,['receipt'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Representative Barrett added as cosponsor,2023-03-21,[],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Amendment #3 (Pressel) prevailed; voice vote,2023-04-10,['amendment-passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-17,['passage'],IN,2023 +"Senate concurred in House amendments; Roll Call 391: yeas 47, nays 0",2023-04-13,[],IN,2023 +Motion to concur filed,2023-03-30,['filing'],IN,2023 +Referred to the House,2023-02-24,['referral'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Returned to the Senate with amendments,2023-04-18,['receipt'],IN,2023 +"Senate concurred in House amendments; Roll Call 313: yeas 46, nays 2",2023-04-04,[],IN,2023 +Signed by the Governor,2023-04-05,['executive-signature'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-03-16,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-12,['reading-2'],IN,2023 +Senator Breaux removed as third sponsor,2023-03-21,[],IN,2023 +"Third reading: passed; Roll Call 426: yeas 30, nays 18",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 255: yeas 70, nays 21",2023-03-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +Returned to the Senate with amendments,2023-03-29,['receipt'],IN,2023 +Senate dissented from House amendments,2023-04-20,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-21,['reading-2'],IN,2023 +First reading: referred to Committee on Health and Provider Services,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +House conferees appointed: Miller D and Campbell,2023-04-06,[],IN,2023 +Motion to concur filed,2023-04-06,['filing'],IN,2023 +Motion to dissent filed,2023-04-05,['filing'],IN,2023 +Motion to concur filed,2023-04-20,['filing'],IN,2023 +Senator Randolph added as cosponsor,2023-04-03,[],IN,2023 +"Third reading: passed; Roll Call 344: yeas 33, nays 15",2023-04-10,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +"House advisors appointed: Pierce K, McGuire and DeLaney",2023-04-20,[],IN,2023 +"Third reading: passed; Roll Call 426: yeas 98, nays 0",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +House conferees appointed: Pressel and Harris,2023-04-14,[],IN,2023 +Returned to the House without amendments,2023-03-29,['receipt'],IN,2023 +"House concurred in Senate amendments; Roll Call 464: yeas 92, nays 0",2023-04-20,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-10,['reading-2'],IN,2023 +Signed by the Speaker,2023-02-20,['passage'],IN,2023 +"Representatives Cherry, Pryor, Boy added as cosponsors",2023-03-13,[],IN,2023 +Senator Crane added as cosponsor,2023-04-06,[],IN,2023 +Senator Yoder added as coauthor,2023-01-31,[],IN,2023 +"House concurred in Senate amendments; Roll Call 397: yeas 94, nays 1",2023-04-11,[],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-03,['reading-2'],IN,2023 +Representative Gore M added as cosponsor,2023-03-13,[],IN,2023 +Amendment #1 (Hatfield) motion withdrawn voice vote,2023-04-13,"['amendment-withdrawal', 'withdrawal']",IN,2023 +Motion to concur filed,2023-03-27,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +Motion to concur filed,2023-04-04,['filing'],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Referred to the House,2023-02-07,['referral'],IN,2023 +Returned to the Senate with amendments,2023-04-04,['receipt'],IN,2023 +"House concurred in Senate amendments; Roll Call 481: yeas 93, nays 1",2023-04-24,[],IN,2023 +Signed by the President Pro Tempore,2023-03-30,['passage'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-16,"['committee-passage', 'referral-committee']",IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Second reading: ordered engrossed,2023-04-06,['reading-2'],IN,2023 +Signed by the Speaker,2023-03-22,['passage'],IN,2023 +Senate dissented from House amendments,2023-04-18,[],IN,2023 +Motion to concur filed,2023-04-06,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Motion to dissent filed,2023-04-19,['filing'],IN,2023 +Senator Melton added as coauthor,2023-02-28,[],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Senator Pol added as cosponsor,2023-03-21,[],IN,2023 +Returned to the House with amendments,2023-03-29,['receipt'],IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +First reading: referred to Committee on Courts and Criminal Code,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Public Law 93,2023-04-20,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +House dissented from Senate amendments,2023-04-12,[],IN,2023 +Motion to concur filed,2023-04-06,['filing'],IN,2023 +Amendment #7 (Bassler) prevailed; voice vote,2023-04-11,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 436: yeas 95, nays 2",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representatives Jeter C and Greene R removed as cosponsors,2023-03-23,[],IN,2023 +"Senate concurred in House amendments; Roll Call 330: yeas 30, nays 18",2023-04-04,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-17,['reading-2'],IN,2023 +Returned to the House with amendments,2023-04-04,['receipt'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +"Amendment #2 (Qaddoura) failed; Roll Call 284: yeas 11, nays 37",2023-04-03,"['amendment-failure', 'failure']",IN,2023 +Signed by the President of the Senate,2023-03-29,['passage'],IN,2023 +Motion to concur filed,2023-04-10,['filing'],IN,2023 +Returned to the House with amendments,2023-04-04,['receipt'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Senator Buck added as cosponsor,2023-03-14,[],IN,2023 +House dissented from Senate amendments,2023-04-17,[],IN,2023 +Senator Niezgodski added as coauthor,2023-02-09,[],IN,2023 +Motion to concur filed,2023-04-05,['filing'],IN,2023 +Placed back on second reading,2023-03-20,[],IN,2023 +House dissented from Senate amendments,2023-04-06,[],IN,2023 +Senator Qaddoura added as coauthor,2023-02-07,[],IN,2023 +House dissented from Senate amendments,2023-04-06,[],IN,2023 +Senator Ford J.D. added as cosponsor,2023-04-18,[],IN,2023 +"House concurred in Senate amendments; Roll Call 321: yeas 95, nays 0",2023-03-28,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +"House concurred in Senate amendments; Roll Call 342: yeas 92, nays 2",2023-04-03,[],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +House conferees appointed: Lindauer and Pryor,2023-04-14,[],IN,2023 +Amendment #3 (Thompson) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 340: yeas 49, nays 0",2023-04-10,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President Pro Tempore,2023-04-17,['passage'],IN,2023 +Public Law 135,2023-05-01,['became-law'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-17,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-14,['reading-2'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Committee report: do pass adopted; reassigned to Committee on Tax and Fiscal Policy,2023-03-23,"['committee-passage', 'referral-committee']",IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +"Third reading: passed; Roll Call 384: yeas 95, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Senator Qaddoura added as cosponsor,2023-03-27,[],IN,2023 +Signed by the Speaker,2023-04-06,['passage'],IN,2023 +Second reading: ordered engrossed,2023-04-17,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 305: yeas 96, nays 0",2023-03-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Public Law 32,2023-04-20,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Returned to the Senate without amendments,2023-04-04,['receipt'],IN,2023 +Public Law 253,2023-04-26,['became-law'],IN,2023 +"House advisors appointed: Schaibley, Cash, DeLaney and Pfaff",2023-04-06,[],IN,2023 +"House concurred in Senate amendments; Roll Call 323: yeas 93, nays 1",2023-03-28,[],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +House conferees appointed: Miller D and Harris,2023-04-25,[],IN,2023 +Amendment #2 (Leising) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Amendment #3 (Jeter) prevailed; voice vote,2023-04-04,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 270: yeas 64, nays 29",2023-03-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +Signed by the Governor,2023-04-05,['executive-signature'],IN,2023 +Second reading: ordered engrossed,2023-04-17,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-17,['reading-2'],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Public Law 79,2023-04-20,['became-law'],IN,2023 +Returned to the Senate with amendments,2023-04-05,['receipt'],IN,2023 +House dissented from Senate amendments,2023-04-19,[],IN,2023 +Motion to dissent filed,2023-04-19,['filing'],IN,2023 +"House concurred in Senate amendments; Roll Call 395: yeas 95, nays 0",2023-04-11,[],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +"Third reading: passed; Roll Call 346: yeas 49, nays 0",2023-04-10,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to concur filed,2023-04-20,['filing'],IN,2023 +Signed by the Speaker,2023-03-22,['passage'],IN,2023 +Motion to concur filed,2023-04-24,['filing'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-17,['reading-2'],IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +Signed by the Speaker,2023-03-22,['passage'],IN,2023 +Returned to the Senate without amendments,2023-03-22,['receipt'],IN,2023 +Amendment #2 (King) prevailed; voice vote,2023-04-10,['amendment-passage'],IN,2023 +Senator Rogers added as cosponsor,2023-04-18,[],IN,2023 +House dissented from Senate amendments,2023-04-06,[],IN,2023 +"House concurred in Senate amendments; Roll Call 325: yeas 65, nays 29",2023-03-28,[],IN,2023 +House conferees appointed: Pressel and Gore,2023-04-11,[],IN,2023 +"Third reading: passed; Roll Call 439: yeas 50, nays 0",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 377: yeas 48, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 379: yeas 28, nays 20",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Amendment #1 (Bartels) prevailed; voice vote,2023-03-27,['amendment-passage'],IN,2023 +"Third reading: passed; Roll Call 283: yeas 89, nays 5",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House with amendments,2023-04-04,['receipt'],IN,2023 +Senator Bohacek added as cosponsor,2023-03-14,[],IN,2023 +Public Law 19,2023-04-20,['became-law'],IN,2023 +Returned to the Senate with amendments,2023-03-22,['receipt'],IN,2023 +Amendment #3 (Rogers) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +"Amendment #2 (Errington) failed; Roll Call 299: yeas 32, nays 64",2023-03-27,"['amendment-failure', 'failure']",IN,2023 +"House concurred in Senate amendments; Roll Call 479: yeas 95, nays 0",2023-04-24,[],IN,2023 +"Third reading: passed; Roll Call 286: yeas 31, nays 17",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Returned to the Senate with amendments,2023-04-18,['receipt'],IN,2023 +Returned to the House with amendments,2023-04-12,['receipt'],IN,2023 +Senate conferees appointed: Niemeyer and Yoder,2023-04-13,[],IN,2023 +Signed by the President Pro Tempore,2023-03-30,['passage'],IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +"Third reading: passed; Roll Call 356: yeas 68, nays 29",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +Public Law 254,2023-04-26,['became-law'],IN,2023 +House conferees appointed: Pressel and Pierce M,2023-04-06,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-13,['reading-2'],IN,2023 +House dissented from Senate amendments,2023-04-10,[],IN,2023 +Second reading: ordered engrossed,2023-04-17,['reading-2'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Referred to the Senate,2023-02-08,['referral'],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-27,['reading-2'],IN,2023 +Returned to the House without amendments,2023-03-28,['receipt'],IN,2023 +Returned to the Senate with amendments,2023-04-06,['receipt'],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +"Third reading: passed; Roll Call 431: yeas 97, nays 1",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House without amendments,2023-03-29,['receipt'],IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +First reading: referred to Committee on Education,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +House conferees appointed: Engleman and Hatfield,2023-04-20,[],IN,2023 +Rule 105.1 suspended,2023-02-27,[],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Placed back on second reading,2023-03-16,[],IN,2023 +Returned to the Senate with amendments,2023-03-28,['receipt'],IN,2023 +Returned to the Senate with amendments,2023-04-18,['receipt'],IN,2023 +"Senate concurred in House amendments; Roll Call 360: yeas 49, nays 0",2023-04-10,[],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +"Third reading: passed; Roll Call 448: yeas 50, nays 0",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +"Third reading: passed; Roll Call 297: yeas 90, nays 0",2023-03-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +"Amendment #1 (Summers) failed; Roll Call 375: yeas 28, nays 67",2023-04-10,"['amendment-failure', 'failure']",IN,2023 +Senator Bohacek added as cosponsor,2023-04-17,[],IN,2023 +Motion to concur filed,2023-04-20,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-18,['passage'],IN,2023 +"Third reading: passed; Roll Call 450: yeas 50, nays 0",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Buck added as cosponsor,2023-03-14,[],IN,2023 +Motion to concur filed,2023-04-10,['filing'],IN,2023 +"Third reading: passed; Roll Call 453: yeas 50, nays 0",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +House conferees appointed: Miller D and Hatfield,2023-04-06,[],IN,2023 +House conferees appointed: Lehman and Pierce M,2023-04-06,[],IN,2023 +Returned to the Senate without amendments,2023-03-22,['receipt'],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +Public Law 7,2023-04-05,['became-law'],IN,2023 +"Amendment #4 (Qaddoura) failed; Roll Call 285: yeas 9, nays 39",2023-04-03,"['amendment-failure', 'failure']",IN,2023 +House conferees appointed: Morris and Errington,2023-04-11,[],IN,2023 +Motion to concur filed,2023-04-10,['filing'],IN,2023 +Motion to concur filed,2023-04-05,['filing'],IN,2023 +Public Law 85,2023-04-20,['became-law'],IN,2023 +House conferees appointed: Behning and DeLaney,2023-04-18,[],IN,2023 +"Representatives Soliday, Prescott, Abbott D, McGuire J, Morris, Lehman, May, Teshka J, Bartels, Judy, Greene R, Lauer, Goodrich, Mayfield, Snow C, Davis M, Morrison, Borders, Behning, Haggard C, Culp K, Lucas, Sweet L, Frye, Aylesworth, Ledbetter C, Payne Z, Engleman, Heaton, Cherry, Jordan, Patterson L, Vermilion A, Barrett, DeVon, Criswell C, Steuerwald, King J, Miller D, Pressel, Cash B, Jeter C, Heine added as coauthors",2023-02-27,[],IN,2023 +Public Law 92,2023-04-20,['became-law'],IN,2023 +Public Law 6,2023-04-05,['became-law'],IN,2023 +First reading: referred to Committee on Government and Regulatory Reform,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +House conferees appointed: Lehman and Fleming,2023-04-19,[],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Amendment #8 (Bassler) prevailed; voice vote,2023-04-11,['amendment-passage'],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +"Third reading: passed; Roll Call 98: yeas 49, nays 0",2023-02-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +"House advisors appointed: Frye R, Haggard and Campbell",2023-04-11,[],IN,2023 +Returned to the House without amendments,2023-03-15,['receipt'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-03-21,['passage'],IN,2023 +Returned to the House without amendments,2023-04-11,['receipt'],IN,2023 +Amendment #4 (May) prevailed; voice vote,2023-03-28,['amendment-passage'],IN,2023 +Senate advisors appointed: Niezgodski and Perfect,2023-04-13,[],IN,2023 +Signed by the President of the Senate,2023-03-29,['passage'],IN,2023 +Senator Randolph added as coauthor,2023-02-07,[],IN,2023 +"Representatives Davis M, Jeter C, Greene R added as cosponsors",2023-03-23,[],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +"Third reading: passed; Roll Call 441: yeas 50, nays 0",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +"House concurred in Senate amendments; Roll Call 392: yeas 89, nays 5",2023-04-11,[],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +Signed by the President of the Senate,2023-03-29,['passage'],IN,2023 +Public Law 156,2023-05-01,['became-law'],IN,2023 +Second reading: ordered engrossed,2023-04-13,['reading-2'],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +First reading: referred to Committee on Veterans Affairs and The Military,2023-02-23,"['reading-1', 'referral-committee']",IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Returned to the House with amendments,2023-04-11,['receipt'],IN,2023 +Motion to concur filed,2023-04-24,['filing'],IN,2023 +Amendment #1 (Vermilion) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Amendment #1 (Johnson) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +Public Law 15,2023-04-20,['became-law'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +"Reread second time: amended, ordered engrossed",2023-04-13,['reading-2'],IN,2023 +"House advisors appointed: Heaton, Borders and Pfaff",2023-04-14,[],IN,2023 +Motion to concur filed,2023-04-18,['filing'],IN,2023 +Senator Randolph added as cosponsor,2023-04-11,[],IN,2023 +Signed by the President Pro Tempore,2023-03-23,['passage'],IN,2023 +Amendment #3 (Zay) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-27,['reading-2'],IN,2023 +Representative Rowray E added as cosponsor,2023-02-27,[],IN,2023 +Returned to the House with amendments,2023-04-19,['receipt'],IN,2023 +Amendment #2 (Hatfield) motion withdrawn,2023-04-04,"['amendment-withdrawal', 'withdrawal']",IN,2023 +"House concurred in Senate amendments; Roll Call 467: yeas 93, nays 0",2023-04-20,[],IN,2023 +Returned to the Senate with amendments,2023-04-05,['receipt'],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-27,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 447: yeas 44, nays 6",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Ford J.D. added as cosponsor,2023-03-23,[],IN,2023 +House advisors appointed: Torr and Bauer M,2023-04-20,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +House conferees appointed: Zent and Fleming,2023-04-19,[],IN,2023 +Returned to the House with amendments,2023-04-04,['receipt'],IN,2023 +"House concurred in Senate amendments; Roll Call 489: yeas 63, nays 29",2023-04-24,[],IN,2023 +Returned to the House with amendments,2023-04-19,['receipt'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +"House advisors appointed: Soliday, Morris, Hall and Hamilton",2023-04-06,[],IN,2023 +House advisors appointed: O'Brien and Pfaff,2023-04-25,[],IN,2023 +"Senate concurred in House amendments; Roll Call 328: yeas 48, nays 0",2023-04-04,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +House conferees appointed: McNamara and Gore,2023-04-06,[],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +"Third reading: passed; Roll Call 311: yeas 95, nays 1",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Lehman removed as conferee,2023-04-10,[],IN,2023 +Motion to dissent filed,2023-04-10,['filing'],IN,2023 +Public Law 39,2023-04-20,['became-law'],IN,2023 +Motion to concur filed,2023-04-19,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +"Third reading: passed; Roll Call 422: yeas 98, nays 0",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Returned to the Senate with amendments,2023-04-12,['receipt'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Returned to the House with amendments,2023-04-12,['receipt'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +"Third reading: passed; Roll Call 432: yeas 37, nays 13",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Harris removed as cosponsor,2023-04-03,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Motion to concur filed,2023-04-20,['filing'],IN,2023 +"Senate concurred in House amendments; Roll Call 352: yeas 48, nays 0",2023-04-10,[],IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-03-23,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +Motion to dissent filed,2023-04-17,['filing'],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +"Third reading: passed; Roll Call 275: yeas 94, nays 0",2023-03-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 284: yeas 81, nays 14",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +House sponsor: Representative Judy,2023-02-28,[],IN,2023 +House dissented from Senate amendments,2023-04-06,[],IN,2023 +"Senate concurred in House amendments; Roll Call 457: yeas 37, nays 5",2023-04-19,[],IN,2023 +"Third reading: passed; Roll Call 376: yeas 97, nays 0",2023-04-10,"['passage', 'reading-3', 'reading-3']",IN,2023 +"House concurred in Senate amendments; Roll Call 370: yeas 89, nays 0",2023-04-06,[],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Returned to the House with amendments,2023-04-19,['receipt'],IN,2023 +House dissented from Senate amendments,2023-04-19,[],IN,2023 +"House advisors appointed: Karickhoff, Zent and Harris",2023-04-06,[],IN,2023 +House dissented from Senate amendments,2023-04-19,[],IN,2023 +"Committee report: amend do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +"Senate concurred in House amendments; Roll Call 329: yeas 45, nays 3",2023-04-04,[],IN,2023 +Motion to concur filed,2023-04-06,['filing'],IN,2023 +Representative Teshka J added as cosponsor,2023-03-13,[],IN,2023 +First reading: referred to Committee on Local Government,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Second reading: amended, ordered engrossed",2023-04-10,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-13,['reading-2'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Senator Brown L added as second sponsor,2023-03-21,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Representative Morris added as coauthor,2023-04-24,[],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +Placed back on second reading,2023-04-11,[],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Senator Randolph added as cosponsor,2023-04-03,[],IN,2023 +Senate conferees appointed: Freeman and Taylor G,2023-04-13,[],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Public Law 56,2023-04-20,['became-law'],IN,2023 +Returned to the House with amendments,2023-03-22,['receipt'],IN,2023 +"Senate concurred in House amendments; Roll Call 325: yeas 48, nays 0",2023-04-04,[],IN,2023 +"House concurred in Senate amendments; Roll Call 470: yeas 55, nays 39",2023-04-20,[],IN,2023 +Senator Tomes added as cosponsor,2023-04-03,[],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-17,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Senator Gaskill added as third sponsor,2023-04-10,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-27,['reading-2'],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +House conferees appointed: Speedy and Miller K,2023-04-20,[],IN,2023 +Amendment #72 (Bohacek) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +"House concurred in Senate amendments; Roll Call 344: yeas 93, nays 0",2023-04-03,[],IN,2023 +Senate conferees appointed: Raatz and Hunley,2023-04-20,[],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Senator Crane added as cosponsor,2023-04-17,[],IN,2023 +Returned to the Senate with amendments,2023-04-18,['receipt'],IN,2023 +Motion to concur filed,2023-04-05,['filing'],IN,2023 +"House advisors appointed: Lauer, Patterson and Hamilton",2023-04-14,[],IN,2023 +Returned to the House without amendments,2023-03-28,['receipt'],IN,2023 +"Senate advisors appointed: Randolph Lonnie M, Rogers and Brown L",2023-04-18,[],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +"Third reading: passed; Roll Call 378: yeas 48, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +First reading: referred to Committee on Education,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Amendment #1 (Schaibley) prevailed; voice vote,2023-04-11,['amendment-passage'],IN,2023 +Public Law 20,2023-04-20,['became-law'],IN,2023 +Motion to concur filed,2023-04-12,['filing'],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +"Third reading: passed; Roll Call 227: yeas 48, nays 0",2023-03-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Pryor added as cosponsor,2023-04-03,[],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +"Amendment #1 (Ford J.D.) failed; Roll Call 260: yeas 9, nays 39",2023-03-28,"['amendment-failure', 'failure']",IN,2023 +"Committee report: amend do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +Returned to the House without amendments,2023-04-18,['receipt'],IN,2023 +Motion to concur filed,2023-03-27,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-02-20,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Senate conferees appointed: Holdman and Randolph Lonnie M,2023-04-18,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +"Third reading: passed; Roll Call 279: yeas 40, nays 6",2023-03-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +"Third reading: passed; Roll Call 259: yeas 92, nays 0",2023-03-14,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the Speaker,2023-03-22,['passage'],IN,2023 +"Third reading: passed; Roll Call 412: yeas 89, nays 6",2023-04-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Referred to the House,2023-02-02,['referral'],IN,2023 +Motion to concur filed,2023-03-30,['filing'],IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 294: yeas 89, nays 1",2023-03-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Senate dissented from House amendments,2023-04-19,[],IN,2023 +Senate dissented from House amendments,2023-04-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +"House concurred in Senate amendments; Roll Call 343: yeas 70, nays 24",2023-04-03,[],IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +House dissented from Senate amendments,2023-04-19,[],IN,2023 +"Committee report: do pass, adopted",2023-04-13,['committee-passage'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Amendment #3 (Hunley) prevailed; voice vote,2023-04-03,['amendment-passage'],IN,2023 +Senator Gaskill added as second sponsor,2023-03-28,[],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +"Senate concurred in House amendments; Roll Call 353: yeas 48, nays 0",2023-04-10,[],IN,2023 +"House concurred in Senate amendments; Roll Call 401: yeas 93, nays 0",2023-04-11,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-30,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 361: yeas 95, nays 2",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +"House concurred in Senate amendments; Roll Call 442: yeas 89, nays 0",2023-04-18,[],IN,2023 +"Committee report: do pass, adopted",2023-03-16,['committee-passage'],IN,2023 +House conferees appointed: Karickhoff and Hatfield,2023-04-14,[],IN,2023 +Senate advisors appointed: Holdman and Pol,2023-04-24,[],IN,2023 +Public Law 69,2023-04-20,['became-law'],IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +Senator Yoder added as cosponsor,2023-04-06,[],IN,2023 +"Third reading: passed; Roll Call 384: yeas 47, nays 0",2023-04-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Second reading: ordered engrossed,2023-04-13,['reading-2'],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Returned to the Senate with amendments,2023-03-13,['receipt'],IN,2023 +Senate conferees appointed: Leising and Ford J.D.,2023-04-18,[],IN,2023 +Senator Alting added as cosponsor,2023-04-11,[],IN,2023 +"House concurred in Senate amendments; Roll Call 320: yeas 95, nays 0",2023-03-28,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-04,['committee-passage'],IN,2023 +Motion to concur filed,2023-03-30,['filing'],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Motion to concur filed,2023-04-19,['filing'],IN,2023 +Returned to the Senate with amendments,2023-03-24,['receipt'],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +"Senate concurred in House amendments; Roll Call 321: yeas 47, nays 1",2023-04-04,[],IN,2023 +"Senate concurred in House amendments; Roll Call 467: yeas 46, nays 1",2023-04-24,[],IN,2023 +House conferees appointed: Lindauer and Harris,2023-04-14,[],IN,2023 +Amendment #2 (Lehman) prevailed; voice vote,2023-04-06,['amendment-passage'],IN,2023 +Returned to the Senate with amendments,2023-04-05,['receipt'],IN,2023 +Public Law 60,2023-04-20,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Senate dissented from House amendments,2023-04-18,[],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-24,['passage'],IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +Signed by the President Pro Tempore,2023-03-21,['passage'],IN,2023 +House conferees appointed: Bartels and Bartlett,2023-04-19,[],IN,2023 +Signed by the President of the Senate,2023-04-04,['passage'],IN,2023 +House conferees appointed: Lehman and Fleming,2023-04-06,[],IN,2023 +Returned to the Senate with amendments,2023-03-22,['receipt'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +"Senate concurred in House amendments; Roll Call 389: yeas 47, nays 0",2023-04-13,[],IN,2023 +"Senate advisors appointed: Hunley, Becker and Glick",2023-04-18,[],IN,2023 +"Cosponsors: Representatives Jeter C, Carbaugh, VanNatter",2023-02-28,[],IN,2023 +Returned to the Senate with amendments,2023-04-11,['receipt'],IN,2023 +"House concurred in Senate amendments; Roll Call 341: yeas 94, nays 0",2023-04-03,[],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Senate dissented from House amendments,2023-04-17,[],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +"House advisors appointed: Rowray, Torr, Speedy and Garcia Wilburn",2023-04-14,[],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +House conferees appointed: Torr and Gore,2023-04-20,[],IN,2023 +Returned to the Senate without amendments,2023-03-15,['receipt'],IN,2023 +Representative Porter added as cosponsor,2023-04-11,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Senator Becker added as third sponsor,2023-03-21,[],IN,2023 +House conferees appointed: Behning and Pfaff,2023-04-19,[],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Senator Randolph added as cosponsor,2023-03-23,[],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Public Law 38,2023-04-20,['became-law'],IN,2023 +Returned to the House with amendments,2023-03-21,['receipt'],IN,2023 +"Senate concurred in House amendments; Roll Call 358: yeas 40, nays 9",2023-04-10,[],IN,2023 +Representative Goodrich added as cosponsor,2023-04-04,[],IN,2023 +"Committee report: do pass, adopted",2023-03-21,['committee-passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-14,['committee-passage'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +"Senate concurred in House amendments; Roll Call 327: yeas 32, nays 16",2023-04-04,[],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Senate conferees appointed: Doriot and Breaux,2023-04-11,[],IN,2023 +Placed back on second reading,2023-04-11,[],IN,2023 +Senate advisors appointed: Qaddoura and Glick,2023-04-13,[],IN,2023 +"Third reading: passed; Roll Call 427: yeas 47, nays 1",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Amendment #1 (Raatz) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +"House concurred in Senate amendments; Roll Call 322: yeas 68, nays 26",2023-03-28,[],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Third reading: passed; Roll Call 309: yeas 45, nays 3",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +Public Law 142,2023-05-01,['became-law'],IN,2023 +Senate advisors appointed: Melton and Busch,2023-04-18,[],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +"Third reading: passed; Roll Call 424: yeas 81, nays 17",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President of the Senate,2023-02-20,['passage'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Amendment #2 (Baird) prevailed; voice vote,2023-04-12,['amendment-passage'],IN,2023 +Senator Bohacek added as cosponsor,2023-04-13,[],IN,2023 +First reading: referred to Committee on Roads and Transportation,2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +"Amendment #2 (Ford J.D.) failed; Roll Call 261: yeas 17, nays 31",2023-03-28,"['amendment-failure', 'failure']",IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +"Reread second time: amended, ordered engrossed",2023-04-03,['reading-2'],IN,2023 +"Senate concurred in House amendments; Roll Call 350: yeas 48, nays 0",2023-04-10,[],IN,2023 +"Third reading: passed; Roll Call 276: yeas 45, nays 0",2023-03-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +Public Law 141,2023-05-01,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-26,['filing'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Returned to the Senate with amendments,2023-04-13,['receipt'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +"House concurred in Senate amendments; Roll Call 398: yeas 95, nays 0",2023-04-11,[],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Senator Yoder added as cosponsor,2023-03-30,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +"Third reading: passed; Roll Call 389: yeas 96, nays 1",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the House with amendments,2023-04-11,['receipt'],IN,2023 +"Amendment #2 (Hunley) failed; Roll Call 394: yeas 15, nays 34",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +House conferees appointed: Baird and Boy,2023-04-20,[],IN,2023 +"Third reading: passed; Roll Call 309: yeas 96, nays 0",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Rogers added as second sponsor,2023-03-30,[],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Returned to the House with amendments,2023-04-12,['receipt'],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Senator Johnson added as cosponsor,2023-04-17,[],IN,2023 +Representative Shackleford added as cosponsor,2023-03-16,[],IN,2023 +Motion to concur filed,2023-03-27,['filing'],IN,2023 +Returned to the House with amendments,2023-04-12,['receipt'],IN,2023 +"House advisors appointed: Slager, Pierce K and Moseley",2023-04-20,[],IN,2023 +Amendment #60 (Freeman) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +Representative Garcia Wilburn V added as cosponsor,2023-02-13,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-10,['committee-passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the President of the Senate,2023-03-29,['passage'],IN,2023 +Senate advisors appointed: Qaddoura and Donato,2023-04-20,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Public Law 31,2023-04-20,['became-law'],IN,2023 +Amendment #1 (Donato) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +"Senate concurred in House amendments; Roll Call 347: yeas 48, nays 0",2023-04-10,[],IN,2023 +Senator Randolph added as cosponsor,2023-04-03,[],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +CCR # 1 filed in the House,2023-04-20,['filing'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Returned to the House with amendments,2023-04-14,['receipt'],IN,2023 +Senate conferees appointed: Zay and Hunley,2023-04-18,[],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Signed by the Speaker,2023-04-06,['passage'],IN,2023 +"House advisors appointed: Clere, Abbott and Miller K",2023-04-06,[],IN,2023 +Returned to the House with amendments,2023-04-19,['receipt'],IN,2023 +Amendment #7 (Koch) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Signed by the Speaker,2023-03-22,['passage'],IN,2023 +Returned to the House without amendments,2023-04-12,['receipt'],IN,2023 +"House advisors appointed: Soliday, Jeter, Pressel and Bauer M",2023-04-11,[],IN,2023 +Signed by the Governor,2023-04-05,['executive-signature'],IN,2023 +"House advisors appointed: King, Hostettler, Ledbetter and Hatfield",2023-04-19,[],IN,2023 +Senators Crane and Doriot added as cosponsors,2023-04-18,[],IN,2023 +Public Law 152,2023-05-01,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Public Law 90,2023-04-20,['became-law'],IN,2023 +"Senate concurred in House amendments; Roll Call 318: yeas 45, nays 3",2023-04-04,[],IN,2023 +Senate conferees appointed: Charbonneau and Qaddoura,2023-04-25,[],IN,2023 +"House concurred in Senate amendments; Roll Call 455: yeas 90, nays 0",2023-04-19,[],IN,2023 +Senators Crane and Ford J.D. added as cosponsors,2023-03-14,[],IN,2023 +Representative Wesco added as coauthor,2023-02-27,[],IN,2023 +"Senate concurred in House amendments; Roll Call 473: yeas 38, nays 12",2023-04-25,[],IN,2023 +House dissented from Senate amendments,2023-04-10,[],IN,2023 +"Third reading: passed; Roll Call 431: yeas 49, nays 1",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +Motion to concur filed,2023-04-06,['filing'],IN,2023 +"Senate concurred in House amendments; Roll Call 460: yeas 33, nays 7",2023-04-19,[],IN,2023 +Returned to the Senate with amendments,2023-03-29,['receipt'],IN,2023 +Returned to the House with amendments,2023-04-19,['receipt'],IN,2023 +Public Law 81,2023-04-20,['became-law'],IN,2023 +Amendment #5 (Brown L) prevailed; voice vote,2023-03-20,['amendment-passage'],IN,2023 +"House concurred in Senate amendments; Roll Call 396: yeas 95, nays 0",2023-04-11,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-03,['reading-2'],IN,2023 +Returned to the Senate without amendments,2023-04-18,['receipt'],IN,2023 +Public Law 47,2023-04-20,['became-law'],IN,2023 +"House advisors appointed: Lehman, O'Brien and Garcia Wilburn",2023-04-06,[],IN,2023 +House sponsor: Representative Vermilion,2023-02-13,[],IN,2023 +"Reread second time: amended, ordered engrossed",2023-03-28,['reading-2'],IN,2023 +Public Law 77,2023-04-20,['became-law'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-10,['reading-2'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Representative Carbaugh added as conferee,2023-04-10,[],IN,2023 +Returned to the House with amendments,2023-04-19,['receipt'],IN,2023 +Representative Moed added as cosponsor,2023-02-09,[],IN,2023 +Public Law 3,2023-04-05,['became-law'],IN,2023 +Public Law 75,2023-04-20,['became-law'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +"Senate concurred in House amendments; Roll Call 348: yeas 48, nays 0",2023-04-10,[],IN,2023 +Public Law 57,2023-04-20,['became-law'],IN,2023 +Motion to concur filed,2023-04-13,['filing'],IN,2023 +Returned to the Senate with amendments,2023-04-18,['receipt'],IN,2023 +Motion to dissent filed,2023-04-19,['filing'],IN,2023 +Representative Cash B added as cosponsor,2023-03-23,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Senate conferees appointed: Koch and Ford J.D.,2023-04-13,[],IN,2023 +"House concurred in Senate amendments; Roll Call 393: yeas 94, nays 0",2023-04-11,[],IN,2023 +"House concurred in Senate amendments; Roll Call 468: yeas 93, nays 0",2023-04-20,[],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +"Amendment #1 (Becker) prevailed; Roll Call 363: yeas 30, nays 17",2023-04-11,['amendment-passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-04,['committee-passage'],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +"Third reading: passed; Roll Call 425: yeas 98, nays 0",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-04-04,['reading-2'],IN,2023 +Representative Campbell added as cosponsor,2023-04-03,[],IN,2023 +Signed by the Speaker,2023-04-06,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Returned to the House with amendments,2023-04-19,['receipt'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Motion to dissent filed,2023-04-19,['filing'],IN,2023 +"House advisors appointed: Carbaugh, Mayfield, Borders and Campbell",2023-04-19,[],IN,2023 +Signed by the Governor,2023-04-05,['executive-signature'],IN,2023 +Motion to concur filed,2023-04-13,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +First reading: referred to Committee on Education,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Motion to dissent filed,2023-04-13,['filing'],IN,2023 +Motion to concur filed,2023-04-20,['filing'],IN,2023 +"House advisors appointed: Sweet, Negele and Pryor",2023-04-06,[],IN,2023 +Signed by the President Pro Tempore,2023-03-23,['passage'],IN,2023 +Amendment #2 (Johnson) prevailed; voice vote,2023-02-20,['amendment-passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-03-30,[],IN,2023 +Motion to concur filed,2023-04-10,['filing'],IN,2023 +Senate conferees appointed: Sandlin and Niezgodski,2023-04-13,[],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Tax and Fiscal Policy,2023-03-07,"['committee-passage', 'referral-committee']",IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-13,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 317: yeas 63, nays 30",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +"Third reading: passed; Roll Call 432: yeas 97, nays 1",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Returned to the Senate with amendments,2023-03-21,['receipt'],IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +"Third reading: passed; Roll Call 310: yeas 76, nays 19",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Motion to dissent filed,2023-04-19,['filing'],IN,2023 +Public Law 63,2023-04-20,['became-law'],IN,2023 +"House advisors appointed: Clere, McGuire, Pfaff and Smith V",2023-04-18,[],IN,2023 +Public Law 30,2023-04-20,['became-law'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Senate conferees appointed: Freeman and Taylor G,2023-04-20,[],IN,2023 +Public Law 8,2023-04-05,['became-law'],IN,2023 +Senate conferees appointed: Gaskill and Qaddoura,2023-04-20,[],IN,2023 +Motion to dissent filed,2023-04-20,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +"Amendment #1 (Qaddoura) failed; Roll Call 332: yeas 16, nays 32",2023-04-06,"['amendment-failure', 'failure']",IN,2023 +Returned to the Senate with amendments,2023-04-06,['receipt'],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +"Third reading: passed; Roll Call 428: yeas 88, nays 8",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to dissent filed,2023-04-19,['filing'],IN,2023 +Returned to the Senate with amendments,2023-03-29,['receipt'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +"Third reading: passed; Roll Call 354: yeas 97, nays 0",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +Returned to the Senate with amendments,2023-04-18,['receipt'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Public Law 16,2023-04-20,['became-law'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Senate advisors appointed: Hunley, Garten and Bohacek",2023-04-13,[],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Motion to concur filed,2023-04-20,['filing'],IN,2023 +"Senate concurred in House amendments; Roll Call 326: yeas 48, nays 0",2023-04-04,[],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +Senator Niezgodski added as cosponsor,2023-03-21,[],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +"Senate concurred in House amendments; Roll Call 428: yeas 48, nays 0",2023-04-17,[],IN,2023 +Public Law 117,2023-05-01,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Motion to dissent filed,2023-04-19,['filing'],IN,2023 +House dissented from Senate amendments,2023-04-19,[],IN,2023 +Senate advisors appointed: Randolph Lonnie M and Buck,2023-04-20,[],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Motion to concur filed,2023-03-21,['filing'],IN,2023 +Returned to the House with amendments,2023-04-19,['receipt'],IN,2023 +Senator Breaux added as cosponsor,2023-04-18,[],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the Governor,2023-04-05,['executive-signature'],IN,2023 +Referred to the House,2023-02-09,['referral'],IN,2023 +"Third reading: passed; Roll Call 373: yeas 39, nays 9",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +House dissented from Senate amendments,2023-04-19,[],IN,2023 +Representative Behning added as advisor,2023-04-10,[],IN,2023 +"Third reading: passed; Roll Call 388: yeas 97, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +CCR # 1 filed in the Senate,2023-04-26,['filing'],IN,2023 +Second reading: ordered engrossed,2023-04-03,['reading-2'],IN,2023 +Public Law 100,2023-05-01,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Senate dissented from House amendments,2023-04-19,[],IN,2023 +"Third reading: passed; Roll Call 330: yeas 89, nays 1",2023-03-30,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Cosponsor: Representative Negele,2023-02-13,[],IN,2023 +"Reread second time: amended, ordered engrossed",2023-03-20,['reading-2'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +"Third reading: passed; Roll Call 238: yeas 66, nays 30",2023-02-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to concur filed,2023-04-20,['filing'],IN,2023 +Senator Randolph added as cosponsor,2023-04-03,[],IN,2023 +Senate dissented from House amendments,2023-04-19,[],IN,2023 +Returned to the Senate with amendments,2023-03-29,['receipt'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Senate conferees appointed: Buck and Taylor G,2023-04-13,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-26,['filing'],IN,2023 +Senate conferees appointed: Alting and Pol,2023-04-13,[],IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-24,['passage'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Public Law 40,2023-04-20,['became-law'],IN,2023 +Motion to concur filed,2023-04-20,['filing'],IN,2023 +Senate conferees appointed: Garten and Niezgodski,2023-04-13,[],IN,2023 +"Senate concurred in House amendments; Roll Call 356: yeas 42, nays 6",2023-04-10,[],IN,2023 +House conferees appointed: Olthoff and Jackson,2023-04-11,[],IN,2023 +Signed by the President Pro Tempore,2023-03-23,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-26,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Senator Ford Jon added as cosponsor,2023-03-14,[],IN,2023 +"House concurred in Senate amendments; Roll Call 391: yeas 64, nays 32",2023-04-11,[],IN,2023 +Returned to the Senate with amendments,2023-03-24,['receipt'],IN,2023 +Senate conferees appointed: Messmer and Taylor G,2023-04-13,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-02-20,['reading-2'],IN,2023 +Returned to the Senate with amendments,2023-04-18,['receipt'],IN,2023 +Senate advisors appointed: Pol and Rogers,2023-04-13,[],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +"House concurred in Senate amendments; Roll Call 466: yeas 92, nays 0",2023-04-20,[],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Senate advisors appointed: Melton and Koch,2023-04-25,[],IN,2023 +House dissented from Senate amendments,2023-04-13,[],IN,2023 +"Amendment #3 (Ford J.D.) failed; Roll Call 364: yeas 13, nays 33",2023-04-11,"['amendment-failure', 'failure']",IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +"Committee report: amend do pass, adopted",2023-03-30,['committee-passage'],IN,2023 +Amendment #5 (Freeman) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +"House concurred in Senate amendments; Roll Call 451: yeas 91, nays 2",2023-04-18,[],IN,2023 +Signed by the Governor,2023-04-05,['executive-signature'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Public Law 62,2023-04-20,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Amendment #3 (Ford J.D.) failed; Roll Call 262: yeas 16, nays 32",2023-03-28,"['amendment-failure', 'failure']",IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Senators Niezgodski and Breaux added as cosponsors,2023-03-21,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Senate conferees appointed: Bassler and Qaddoura,2023-04-24,[],IN,2023 +Signed by the President Pro Tempore,2023-04-17,['passage'],IN,2023 +Senate conferees appointed: Brown L and Taylor G,2023-04-19,[],IN,2023 +"Third reading: passed; Roll Call 352: yeas 93, nays 4",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Senator Yoder added as cosponsor,2023-04-13,[],IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +Motion to dissent filed,2023-04-17,['filing'],IN,2023 +"House advisors appointed: Borders, Rowray and Shackleford",2023-04-06,[],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Motion to concur filed,2023-04-18,['filing'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Returned to the House with amendments,2023-04-05,['receipt'],IN,2023 +"Amendment #1 (Hamilton) failed; Roll Call 403: yeas 27, nays 66",2023-04-12,"['amendment-failure', 'failure']",IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Returned to the Senate with amendments,2023-03-29,['receipt'],IN,2023 +Motion to concur filed,2023-04-18,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +"House advisors appointed: Lindauer, Abbott, Prescott and Jackson",2023-04-20,[],IN,2023 +Amendment #4 (Holdman) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-20,['filing'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Public Law 151,2023-05-01,['became-law'],IN,2023 +Senate advisors appointed: Ford J.D. and Messmer,2023-04-18,[],IN,2023 +House dissented from Senate amendments,2023-04-18,[],IN,2023 +Senator Breaux removed as coauthor,2023-04-25,[],IN,2023 +Senate dissented from House amendments,2023-04-18,[],IN,2023 +"Senate advisors appointed: Yoder, Niemeyer and Byrne",2023-04-11,[],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-11,['reading-2'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-17,['reading-2'],IN,2023 +Motion to concur filed,2023-03-27,['filing'],IN,2023 +House conferees appointed: Heine and GiaQuinta,2023-04-18,[],IN,2023 +"Third reading: passed; Roll Call 151: yeas 98, nays 0",2023-02-20,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +First reading: referred to Committee on Ways and Means,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 304: yeas 47, nays 0",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Amendment #4 (Ford J.D.) failed; Roll Call 395: yeas 16, nays 33",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +"House advisors appointed: Abbott, Pressel, Hostettler and Boy",2023-04-14,[],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Second reading: ordered engrossed,2023-03-20,['reading-2'],IN,2023 +"Third reading: passed; Roll Call 380: yeas 98, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 306: yeas 48, nays 0",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President Pro Tempore,2023-03-20,['passage'],IN,2023 +Senator Randolph added as cosponsor,2023-03-30,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Motion to concur filed,2023-04-20,['filing'],IN,2023 +"Third reading: passed; Roll Call 278: yeas 85, nays 6",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Second reading: amended, ordered engrossed",2023-04-13,['reading-2'],IN,2023 +Returned to the Senate with amendments,2023-04-18,['receipt'],IN,2023 +Motion to concur filed,2023-04-18,['filing'],IN,2023 +"House advisors appointed: Miller D, Lehman, Campbell and Pierce K",2023-04-19,[],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +House dissented from Senate amendments,2023-04-19,[],IN,2023 +Second reading: ordered engrossed,2023-03-27,['reading-2'],IN,2023 +Senator Pol added as coauthor,2023-04-04,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +"Amendment #1 (Moed) failed; Roll Call 364: yeas 33, nays 58",2023-04-06,"['amendment-failure', 'failure']",IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Returned to the Senate without amendments,2023-03-21,['receipt'],IN,2023 +"House advisors appointed: Clere, Jordan and Smith V",2023-04-19,[],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Second reading: ordered engrossed,2023-03-16,['reading-2'],IN,2023 +Dissent withdrawn,2023-04-18,['withdrawal'],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Senate conferees appointed: Niemeyer and Niezgodski,2023-04-18,[],IN,2023 +Public Law 112,2023-05-01,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Public Law 73,2023-04-20,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Public Law 18,2023-04-20,['became-law'],IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Public Law 21,2023-04-20,['became-law'],IN,2023 +Returned to the House without amendments,2023-03-31,['receipt'],IN,2023 +"Amendment #1 (Shackleford) failed; Roll Call 290: yeas 29, nays 56",2023-03-23,"['amendment-failure', 'failure']",IN,2023 +Motion to concur filed,2023-04-12,['filing'],IN,2023 +Senator Raatz added as coauthor,2023-02-28,[],IN,2023 +Public Law 71,2023-04-20,['became-law'],IN,2023 +Public Law 34,2023-04-20,['became-law'],IN,2023 +House conferees appointed: Behning and Smith V,2023-04-18,[],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +Returned to the House with amendments,2023-03-31,['receipt'],IN,2023 +Public Law 110,2023-05-01,['became-law'],IN,2023 +Motion to dissent filed,2023-04-20,['filing'],IN,2023 +"House advisors appointed: Steuerwald, Negele, McNamara and Pierce M",2023-04-20,[],IN,2023 +Public Law 9,2023-04-05,['became-law'],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Public Law 88,2023-04-20,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Senate conferees appointed: Holdman and Melton,2023-04-19,[],IN,2023 +"House concurred in Senate amendments; Roll Call 324: yeas 94, nays 0",2023-03-28,[],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +"Amendment #3 (Teshka) prevailed; Roll Call 404: yeas 63, nays 29",2023-04-12,['amendment-passage'],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Public Law 109,2023-05-01,['became-law'],IN,2023 +Amendment #4 (Pressel) prevailed; voice vote,2023-04-12,['amendment-passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Returned to the Senate with amendments,2023-04-12,['receipt'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +"Senate concurred in House amendments; Roll Call 319: yeas 48, nays 0",2023-04-04,[],IN,2023 +House dissented from Senate amendments,2023-04-17,[],IN,2023 +"House concurred in Senate amendments; Roll Call 443: yeas 89, nays 1",2023-04-18,[],IN,2023 +Senate conferees appointed: Garten and Pol,2023-04-20,[],IN,2023 +Motion to concur filed,2023-04-19,['filing'],IN,2023 +"Third reading: passed; Roll Call 264: yeas 48, nays 0",2023-03-28,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +"Third reading: passed; Roll Call 420: yeas 49, nays 0",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Miller D added as cosponsor,2023-03-21,[],IN,2023 +Signed by the Speaker,2023-03-22,['passage'],IN,2023 +Public Law 35,2023-04-20,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +"Senate concurred in House amendments; Roll Call 316: yeas 47, nays 1",2023-04-04,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Second reading: ordered engrossed,2023-04-17,['reading-2'],IN,2023 +"Senate concurred in House amendments; Roll Call 464: yeas 46, nays 0",2023-04-20,[],IN,2023 +Public Law 89,2023-04-20,['became-law'],IN,2023 +"Third reading: passed; Roll Call 295: yeas 45, nays 1",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Amendment #5 (Ford J.D.) failed; Roll Call 396: yeas 10, nays 39",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Motion to concur filed,2023-04-04,['filing'],IN,2023 +Returned to the House with amendments,2023-04-05,['receipt'],IN,2023 +Returned to the Senate with amendments,2023-04-12,['receipt'],IN,2023 +"House concurred in Senate amendments; Roll Call 447: yeas 93, nays 0",2023-04-18,[],IN,2023 +Public Law 46,2023-04-20,['became-law'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Senate conferees appointed: Freeman and Pol,2023-04-20,[],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Senate conferees appointed: Glick and Qaddoura,2023-04-18,[],IN,2023 +Senator Glick added as cosponsor,2023-04-04,[],IN,2023 +Signed by the Governor,2023-04-05,['executive-signature'],IN,2023 +Senate dissented from House amendments,2023-04-18,[],IN,2023 +"Third reading: passed; Roll Call 279: yeas 94, nays 0",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: amend do pass, adopted",2023-03-23,['committee-passage'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Concurrence withdrawn; House dissented from Senate amendments,2023-04-20,['withdrawal'],IN,2023 +Returned to the Senate without amendments,2023-02-20,['receipt'],IN,2023 +"House concurred in Senate amendments; Roll Call 318: yeas 93, nays 2",2023-03-28,[],IN,2023 +"House advisors appointed: Snow, Judy and Miller K",2023-04-18,[],IN,2023 +Returned to the Senate with amendments,2023-04-05,['receipt'],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Third reading: passed; Roll Call 430: yeas 41, nays 9",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Third reading: passed; Roll Call 406: yeas 94, nays 0",2023-04-12,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to concur filed,2023-04-18,['filing'],IN,2023 +Public Law 122,2023-05-01,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +Public Law 157,2023-05-01,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2023-03-23,"['committee-passage', 'referral-committee']",IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Public Law 76,2023-04-20,['became-law'],IN,2023 +Senate conferees appointed: Sandlin and Taylor G,2023-04-18,[],IN,2023 +Senate advisors appointed: Randolph Lonnie M and Baldwin,2023-04-19,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +House conferees appointed: Clere and Jackson,2023-04-18,[],IN,2023 +Senator Donato removed as advisor,2023-04-26,[],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Senate advisors appointed: Pol and Koch,2023-04-19,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-24,['filing'],IN,2023 +Senate conferees appointed: Glick and Breaux,2023-04-20,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 476: yeas 92, nays 1",2023-04-24,[],IN,2023 +Senate advisors appointed: Gaskill and Taylor G,2023-04-24,[],IN,2023 +"Amendment #2 (DeLaney) failed; Roll Call 405: yeas 32, nays 62",2023-04-12,"['amendment-failure', 'failure']",IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Amendment #67 (Messmer) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Motion to concur filed,2023-04-19,['filing'],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-28,['reading-2'],IN,2023 +Public Law 22,2023-04-20,['became-law'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"House concurred in Senate amendments; Roll Call 448: yeas 67, nays 27",2023-04-18,[],IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +Senate advisors appointed: Yoder and Gaskill,2023-04-18,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +"Third reading: passed; Roll Call 374: yeas 48, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Reread second time: amended, ordered engrossed",2023-04-12,['reading-2'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Senator Tomes added as coauthor,2023-02-28,[],IN,2023 +"Third reading: passed; Roll Call 295: yeas 90, nays 0",2023-03-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to concur filed,2023-04-20,['filing'],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +"Reread second time: amended, ordered engrossed",2023-04-12,['reading-2'],IN,2023 +"Amendment #2 (Shackleford) failed; Roll Call 291: yeas 28, nays 58",2023-03-23,"['amendment-failure', 'failure']",IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +Senate conferees appointed: Rogers and Ford J.D.,2023-04-20,[],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Motion to dissent filed,2023-04-06,['filing'],IN,2023 +Public Law 86,2023-04-20,['became-law'],IN,2023 +"Senate concurred in House amendments; Roll Call 388: yeas 46, nays 1",2023-04-13,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-06,['reading-2'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Public Law 12,2023-04-05,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +"Senate concurred in House amendments; Roll Call 324: yeas 48, nays 0",2023-04-04,[],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +House conferees appointed: Thompson and Pryor,2023-04-19,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"House advisors appointed: Davis, Payne, Klinker and Pfaff",2023-04-18,[],IN,2023 +Senate conferees appointed: Baldwin and Randolph Lonnie M,2023-04-13,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 523: yeas 88, nays 0",2023-04-27,[],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Second reading: ordered engrossed,2023-04-06,['reading-2'],IN,2023 +Returned to the Senate with amendments,2023-04-05,['receipt'],IN,2023 +Signed by the President Pro Tempore,2023-04-18,['passage'],IN,2023 +Amendment #1 (Behning) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-11,['reading-2'],IN,2023 +Representative Hostettler added as coauthor,2023-02-27,[],IN,2023 +Senate conferees appointed: Brown L and Melton,2023-04-20,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Concurrence withdrawn,2023-04-10,['withdrawal'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 526: yeas 94, nays 0",2023-04-27,[],IN,2023 +"Third reading: passed; Roll Call 301: yeas 32, nays 16",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Senators Glick, Yoder, Breaux added as cosponsors",2023-03-14,[],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Senator Messmer added as coauthor,2023-02-13,[],IN,2023 +Returned to the Senate with amendments,2023-03-31,['receipt'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Senate conferees appointed: Donato and Hunley,2023-04-11,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Senator Melton removed as second sponsor,2023-04-11,[],IN,2023 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +House conferees appointed: Behning and Smith V,2023-04-20,[],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Public Law 83,2023-04-20,['became-law'],IN,2023 +Public Law 91,2023-04-20,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Senate dissented from House amendments,2023-04-18,[],IN,2023 +CCR # 1 filed in the House,2023-04-20,['filing'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +House dissented from Senate amendments,2023-04-19,[],IN,2023 +"Third reading: passed; Roll Call 368: yeas 70, nays 19",2023-04-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +House dissented from Senate amendments,2023-04-20,[],IN,2023 +Senate advisors appointed: Randolph Lonnie M and Baldwin,2023-04-20,[],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +"Amendment #4 (McGuire) prevailed; Roll Call 346: yeas 95, nays 0",2023-04-04,['amendment-passage'],IN,2023 +Public Law 17,2023-04-20,['became-law'],IN,2023 +Senator Johnson added as coauthor,2023-02-21,[],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +House conferees appointed: Speedy and Pfaff,2023-04-18,[],IN,2023 +Public Law 27,2023-04-20,['became-law'],IN,2023 +Public Law 131,2023-05-01,['became-law'],IN,2023 +Motion to concur filed,2023-04-19,['filing'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 518: yeas 94, nays 0",2023-04-26,[],IN,2023 +Public Law 54,2023-04-20,['became-law'],IN,2023 +Motion to dissent filed,2023-04-13,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Senate concurred in House amendments; Roll Call 247: yeas 29, nays 12",2023-03-21,[],IN,2023 +Senator Gaskill added as cosponsor,2023-03-23,[],IN,2023 +House conferees appointed: Vermilion and Porter,2023-04-19,[],IN,2023 +House conferees appointed: Behning and Hamilton,2023-04-20,[],IN,2023 +"House concurred in Senate amendments; Roll Call 463: yeas 66, nays 27",2023-04-20,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +Amendment #6 (Freeman) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +"House concurred in Senate amendments; Roll Call 462: yeas 86, nays 4",2023-04-20,[],IN,2023 +Senate advisors appointed: Ford J.D. and Buck,2023-04-13,[],IN,2023 +Senate advisors appointed: Yoder and Byrne,2023-04-13,[],IN,2023 +"Third reading: passed; Roll Call 360: yeas 86, nays 11",2023-04-04,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Public Law 227,2023-05-04,['became-law'],IN,2023 +Senate advisors appointed: Randolph Lonnie M and Brown L,2023-04-13,[],IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Motion to concur filed,2023-04-20,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +Returned to the Senate with amendments,2023-04-18,['receipt'],IN,2023 +House dissented from Senate amendments,2023-04-19,[],IN,2023 +Senate advisors appointed: Pol and Freeman,2023-04-13,[],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-19,['filing'],IN,2023 +"Third reading: passed; Roll Call 235: yeas 42, nays 1",2023-03-21,"['passage', 'reading-3', 'reading-3']",IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Public Law 36,2023-04-20,['became-law'],IN,2023 +Public Law 66,2023-04-20,['became-law'],IN,2023 +Returned to the Senate with amendments,2023-04-12,['receipt'],IN,2023 +"House concurred in Senate amendments; Roll Call 469: yeas 93, nays 0",2023-04-20,[],IN,2023 +"House advisors appointed: Rowray, Lauer, Pack and Summers",2023-04-11,[],IN,2023 +Signed by the President of the Senate,2023-03-23,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Senate advisors appointed: Yoder and Johnson,2023-04-20,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +"Amendment #2 (Smith V) failed; Roll Call 417: yeas 30, nays 63",2023-04-13,"['amendment-failure', 'failure']",IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +"Senate concurred in House amendments; Roll Call 462: yeas 37, nays 9",2023-04-20,[],IN,2023 +Public Law 53,2023-04-20,['became-law'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Public Law 133,2023-05-01,['became-law'],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Public Law 68,2023-04-20,['became-law'],IN,2023 +"House advisors appointed: Davis, Teshka and DeLaney",2023-04-20,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Public Law 124,2023-05-01,['became-law'],IN,2023 +Senator Breaux removed as third sponsor,2023-04-11,[],IN,2023 +Returned to the Senate with amendments,2023-04-05,['receipt'],IN,2023 +"Senate concurred in House amendments; Roll Call 361: yeas 45, nays 4",2023-04-10,[],IN,2023 +Motion to concur filed,2023-04-12,['filing'],IN,2023 +"Senate advisors appointed: Ford J.D., Raatz and Tomes",2023-04-11,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Motion to concur filed,2023-04-06,['filing'],IN,2023 +Senator Randolph removed as coauthor,2023-03-21,[],IN,2023 +"House advisors appointed: Judy, O'Brien and Klinker",2023-04-18,[],IN,2023 +Public Law 64,2023-04-20,['became-law'],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Motion to dissent filed,2023-04-12,['filing'],IN,2023 +Senator Rogers added as coauthor,2023-02-13,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Public Law 44,2023-04-20,['became-law'],IN,2023 +Senator Randolph added as cosponsor,2023-04-06,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +"Third reading: passed; Roll Call 152: yeas 41, nays 7",2023-02-23,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-25,['filing'],IN,2023 +Senator Walker G added as cosponsor,2023-03-14,[],IN,2023 +Returned to the House with amendments,2023-04-05,['receipt'],IN,2023 +"Amendment #1 (Moseley) failed; Roll Call 347: yeas 31, nays 64",2023-04-04,"['amendment-failure', 'failure']",IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 509: yeas 44, nays 5",2023-04-27,[],IN,2023 +House conferees appointed: Barrett and Porter,2023-04-19,[],IN,2023 +"Amendment #4 (Ford J.D.) failed; Roll Call 365: yeas 8, nays 38",2023-04-11,"['amendment-failure', 'failure']",IN,2023 +Motion to dissent filed,2023-04-12,['filing'],IN,2023 +CCR # 1 filed in the House,2023-04-19,['filing'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +"House advisors appointed: Pressel, Soliday, Heine, Porter and Johnson",2023-04-20,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Senate conferees appointed: Walker K and Hunley,2023-04-13,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Public Law 78,2023-04-20,['became-law'],IN,2023 +House conferees appointed: Behning and Klinker,2023-04-20,[],IN,2023 +Signed by the Governor,2023-04-05,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Senator Holdman added as cosponsor,2023-03-23,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-26,['filing'],IN,2023 +Senate dissented from House amendments,2023-04-13,[],IN,2023 +Senate conferees appointed: Holdman and Randolph Lonnie M,2023-04-18,[],IN,2023 +"Senate sponsors: Senators Holdman, Koch, Busch",2023-02-27,[],IN,2023 +"House concurred in Senate amendments; Roll Call 482: yeas 95, nays 0",2023-04-24,[],IN,2023 +"House advisors appointed: Carbaugh, Ledbetter and Fleming",2023-04-19,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Senator Garten added as advisor,2023-04-24,[],IN,2023 +Returned to the House with amendments,2023-03-22,['receipt'],IN,2023 +CCR # 1 filed in the House,2023-04-25,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +"Senate concurred in House amendments; Roll Call 315: yeas 42, nays 6",2023-04-04,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-13,['reading-2'],IN,2023 +Motion to concur filed,2023-04-12,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +House conferees appointed: Morrison and Harris,2023-04-20,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-20,['filing'],IN,2023 +Public Law 116,2023-05-01,['became-law'],IN,2023 +"Committee report: do pass, adopted",2023-03-07,['committee-passage'],IN,2023 +Motion to dissent filed,2023-04-19,['filing'],IN,2023 +CCR # 1 filed in the House,2023-04-24,['filing'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Senate dissented from House amendments,2023-04-18,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 507: yeas 48, nays 1",2023-04-27,[],IN,2023 +Public Law 48,2023-04-20,['became-law'],IN,2023 +House conferees appointed: Slager and Bauer M,2023-04-18,[],IN,2023 +"House concurred in Senate amendments; Roll Call 471: yeas 90, nays 0",2023-04-20,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +CCR # 1 filed in the House,2023-04-24,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +"House concurred in Senate amendments; Roll Call 369: yeas 89, nays 0",2023-04-06,[],IN,2023 +Public Law 143,2023-05-01,['became-law'],IN,2023 +Public Law 134,2023-05-01,['became-law'],IN,2023 +"Amendment #3 (Shackleford) failed; Roll Call 292: yeas 28, nays 59",2023-03-23,"['amendment-failure', 'failure']",IN,2023 +Referred to the House,2023-03-01,['referral'],IN,2023 +Public Law 42,2023-04-20,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Senate advisors appointed: Qaddoura and Raatz,2023-04-20,[],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +Motion to dissent filed,2023-04-06,['filing'],IN,2023 +Returned to the House with amendments,2023-04-05,['receipt'],IN,2023 +Returned to the House with amendments,2023-03-29,['receipt'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +"House advisors appointed: DeVon, Goodrich, Greene and Summers",2023-04-18,[],IN,2023 +Amendment #1 (Walker G) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Motion to concur filed,2023-04-06,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Public Law 193,2023-05-04,['became-law'],IN,2023 +"Senate concurred in House amendments; Roll Call 458: yeas 40, nays 2",2023-04-19,[],IN,2023 +"Third reading: passed; Roll Call 410: yeas 95, nays 0",2023-04-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Public Law 84,2023-04-20,['became-law'],IN,2023 +House conferees appointed: Thompson and Porter,2023-04-19,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +House conferees appointed: Slager and Hatcher,2023-04-18,[],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Representative Speedy removed as conferee,2023-04-26,[],IN,2023 +"Third reading: passed; Roll Call 435: yeas 50, nays 0",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Senate advisors appointed: Qaddoura, Holdman and Gaskill",2023-04-13,[],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +CCR # 1 filed in the House,2023-04-24,['filing'],IN,2023 +Senator Hunley removed as conferee,2023-04-26,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Representatives DeLaney and Porter added as cosponsors,2023-02-20,[],IN,2023 +Amendment #2 (Lehman) prevailed; voice vote,2023-03-30,['amendment-passage'],IN,2023 +Public Law 137,2023-05-01,['became-law'],IN,2023 +Public Law 80,2023-04-20,['became-law'],IN,2023 +Returned to the Senate without amendments,2023-03-22,['receipt'],IN,2023 +"Senate concurred in House amendments; Roll Call 466: yeas 41, nays 7",2023-04-24,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Returned to the Senate with amendments,2023-03-24,['receipt'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Senator Becker added as cosponsor,2023-04-11,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-24,['filing'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Senate advisors appointed: Taylor G and Sandlin,2023-04-20,[],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Returned to the Senate with amendments,2023-03-22,['receipt'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Public Law 87,2023-04-20,['became-law'],IN,2023 +"Third reading: passed; Roll Call 381: yeas 79, nays 19",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senator Dernulc added as cosponsor,2023-03-30,[],IN,2023 +Senate advisors appointed: Leising and Qaddoura,2023-04-20,[],IN,2023 +"House concurred in Senate amendments; Roll Call 478: yeas 90, nays 4",2023-04-24,[],IN,2023 +Signed by the Speaker,2023-04-06,['passage'],IN,2023 +House conferees appointed: Behning and Smith V,2023-04-20,[],IN,2023 +Signed by the President Pro Tempore,2023-04-17,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-24,['passage'],IN,2023 +Second reading: ordered engrossed,2023-04-17,['reading-2'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Senate advisors appointed: Pol and Freeman,2023-04-18,[],IN,2023 +House dissented from Senate amendments,2023-04-06,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Public Law 52,2023-04-20,['became-law'],IN,2023 +House dissented from Senate amendments,2023-04-18,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-12,['reading-2'],IN,2023 +Public Law 106,2023-05-01,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Public Law 158,2023-05-01,['became-law'],IN,2023 +Public Law 153,2023-05-01,['became-law'],IN,2023 +House conferees appointed: Steuerwald and Moseley,2023-04-18,[],IN,2023 +"Third reading: passed; Roll Call 427: yeas 73, nays 25",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Senate concurred in House amendments; Roll Call 314: yeas 48, nays 0",2023-04-04,[],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 469: yeas 44, nays 0",2023-04-24,[],IN,2023 +Public Law 229,2023-05-04,['became-law'],IN,2023 +Returned to the Senate with amendments,2023-04-12,['receipt'],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Representative Judy removed as advisor,2023-04-20,[],IN,2023 +Senate advisors appointed: Breaux and Leising,2023-04-18,[],IN,2023 +Motion to concur filed,2023-04-12,['filing'],IN,2023 +Returned to the House with amendments,2023-04-04,['receipt'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 506: yeas 49, nays 0",2023-04-27,[],IN,2023 +"House advisors appointed: Snow, Clere, Smaltz and DeLaney",2023-04-19,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +House dissented from Senate amendments,2023-04-18,[],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Senate advisors appointed: Taylor G and Koch,2023-04-20,[],IN,2023 +Signed by the President of the Senate,2023-04-04,['passage'],IN,2023 +Senator Charbonneau added as cosponsor,2023-04-18,[],IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +"Senate concurred in House amendments; Roll Call 351: yeas 48, nays 0",2023-04-10,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"House advisors appointed: McGuire, Cash and Klinker",2023-04-20,[],IN,2023 +House dissented from Senate amendments,2023-04-06,[],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Public Law 99,2023-05-01,['became-law'],IN,2023 +Senate conferees appointed: Ford Jon and Ford J.D.,2023-04-20,[],IN,2023 +Motion to concur filed,2023-04-10,['filing'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +"Amendment #4 (Shackleford) failed; Roll Call 293: yeas 27, nays 60",2023-03-23,"['amendment-failure', 'failure']",IN,2023 +"First reading: referred to Committee on Employment, Labor and Pensions",2023-03-06,"['reading-1', 'referral-committee']",IN,2023 +"House advisors appointed: Thompson, Soliday, Olthoff, Harris, Jackson and Smith V",2023-04-18,[],IN,2023 +"House advisors appointed: Morrison, Payne, Smaltz and Jackson",2023-04-18,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Public Law 101,2023-05-01,['became-law'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Representative Pfaff removed as conferee,2023-04-24,[],IN,2023 +CCR # 1 filed in the House,2023-04-24,['filing'],IN,2023 +House conferees appointed: Aylesworth and Hamilton,2023-04-18,[],IN,2023 +"House advisors appointed: Cherry, Snow, Smaltz, Greene and Hamilton",2023-04-19,[],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Senator Randolph added as cosponsor,2023-04-06,[],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Returned to the Senate with amendments,2023-04-12,['receipt'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Public Law 61,2023-04-20,['became-law'],IN,2023 +Senator Sandlin added as cosponsor,2023-04-17,[],IN,2023 +CCR # 1 filed in the House,2023-04-24,['filing'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Representative Heine removed as conferee,2023-04-20,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-03-30,['reading-2'],IN,2023 +Returned to the Senate with amendments,2023-04-13,['receipt'],IN,2023 +Senate conferees appointed: Holdman and Melton,2023-04-19,[],IN,2023 +Representative Bartels removed as conferee,2023-04-25,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Public Law 125,2023-05-01,['became-law'],IN,2023 +CCR # 1 filed in the Senate,2023-04-25,['filing'],IN,2023 +Signed by the Governor,2023-04-05,['executive-signature'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Public Law 105,2023-05-01,['became-law'],IN,2023 +Signed by the Governor,2023-02-22,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Returned to the Senate with amendments,2023-04-18,['receipt'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Public Law 183,2023-05-04,['became-law'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +"House advisors appointed: McNamara, Thompson, Jordan and Gore",2023-04-18,[],IN,2023 +"Third reading: passed; Roll Call 438: yeas 63, nays 36",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +House conferees appointed: Goodrich and Klinker,2023-04-11,[],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +"Senate concurred in House amendments; Roll Call 387: yeas 47, nays 0",2023-04-13,[],IN,2023 +Amendment #12 (Ford J.D.) failed; voice vote,2023-04-17,"['amendment-failure', 'failure']",IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Returned to the House with amendments,2023-04-12,['receipt'],IN,2023 +Public Law 123,2023-05-01,['became-law'],IN,2023 +Public Law 107,2023-05-01,['became-law'],IN,2023 +Public Law 230,2023-05-04,['became-law'],IN,2023 +Public Law 67,2023-04-20,['became-law'],IN,2023 +Motion to concur filed,2023-04-03,['filing'],IN,2023 +Motion to dissent filed,2023-04-13,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Public Law 139,2023-05-01,['became-law'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +"Third reading: passed; Roll Call 290: yeas 36, nays 12",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-24,['passage'],IN,2023 +House conferees appointed: Bartels and Campbell,2023-04-18,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Public Law 145,2023-05-01,['became-law'],IN,2023 +Motion to dissent filed,2023-03-30,['filing'],IN,2023 +Public Law 59,2023-04-20,['became-law'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Representative Heaton added as conferee,2023-04-26,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 497: yeas 82, nays 0",2023-04-25,[],IN,2023 +Motion to concur filed,2023-04-06,['filing'],IN,2023 +CCR # 1 filed in the Senate,2023-04-24,['filing'],IN,2023 +Senator Donato added as conferee,2023-04-26,[],IN,2023 +Public Law 65,2023-04-20,['became-law'],IN,2023 +House conferees appointed: Speedy and Pack,2023-04-19,[],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-03-23,['passage'],IN,2023 +Senate conferees appointed: Bohacek and Qaddoura,2023-04-20,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Public Law 113,2023-05-01,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Senator Qaddoura added as cosponsor,2023-03-23,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +Motion to concur filed,2023-04-06,['filing'],IN,2023 +Senate conferees appointed: Freeman and Qaddoura,2023-04-20,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 554: yeas 96, nays 0",2023-04-27,[],IN,2023 +"Amendment #3 (Smith V) failed; Roll Call 418: yeas 29, nays 63",2023-04-13,"['amendment-failure', 'failure']",IN,2023 +Public Law 51,2023-04-20,['became-law'],IN,2023 +Public Law 248,2023-05-04,['became-law'],IN,2023 +CCR # 1 filed in the Senate,2023-04-25,['filing'],IN,2023 +CCR # 1 filed in the House,2023-04-25,['filing'],IN,2023 +Signed by the Governor,2023-03-22,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Referred to the Senate,2023-02-28,['referral'],IN,2023 +House conferees appointed: Engleman and Errington,2023-04-18,[],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 471: yeas 46, nays 0",2023-04-24,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-24,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Senator Gaskill added as second sponsor,2023-04-13,[],IN,2023 +Returned to the House with amendments,2023-03-15,['receipt'],IN,2023 +Senate conferees appointed: Rogers and Yoder,2023-04-19,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +House sponsor: Representative Barrett,2023-02-23,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-04,['reading-2'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 460: yeas 90, nays 1",2023-04-20,[],IN,2023 +Public Law 149,2023-05-01,['became-law'],IN,2023 +"House advisors appointed: Payne, Wesco and Pfaff",2023-04-20,[],IN,2023 +Senate advisors appointed: Niezgodski and Baldwin,2023-04-18,[],IN,2023 +"Senate concurred in House amendments; Roll Call 386: yeas 38, nays 9",2023-04-13,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Motion to concur filed,2023-04-04,['filing'],IN,2023 +"House advisors appointed: Pressel, Morris, Lyness and Fleming",2023-04-20,[],IN,2023 +Second reading: ordered engrossed,2023-03-09,['reading-2'],IN,2023 +House conferees appointed: Behning and Smith V,2023-04-18,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-24,['filing'],IN,2023 +Public Law 148,2023-05-01,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Public Law 198,2023-05-04,['became-law'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Senator Leising added as second sponsor,2023-04-11,[],IN,2023 +Senate conferees appointed: Raatz and Hunley,2023-04-20,[],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +Concurrence withdrawn,2023-04-13,['withdrawal'],IN,2023 +Senator Raatz removed as advisor,2023-04-26,[],IN,2023 +"Senate concurred in House amendments; Roll Call 354: yeas 48, nays 0",2023-04-10,[],IN,2023 +Senate dissented from House amendments,2023-04-13,[],IN,2023 +Senator Yoder added as coauthor,2023-02-13,[],IN,2023 +House dissented from Senate amendments,2023-04-19,[],IN,2023 +"Third reading: passed; Roll Call 341: yeas 44, nays 5",2023-04-10,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Motion to concur filed,2023-04-24,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +"House advisors appointed: Cash, Olthoff and Fleming",2023-04-19,[],IN,2023 +Senate dissented from House amendments,2023-04-13,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Public Law 154,2023-05-01,['became-law'],IN,2023 +Senate advisors appointed: Ford J.D. and Walker G,2023-04-13,[],IN,2023 +Public Law 13,2023-04-05,['became-law'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 525: yeas 88, nays 0",2023-04-27,[],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Public Law 127,2023-05-01,['became-law'],IN,2023 +CCR # 1 filed in the Senate,2023-04-25,['filing'],IN,2023 +Representative Hatfield removed as conferee,2023-04-27,[],IN,2023 +"Third reading: passed; Roll Call 419: yeas 41, nays 8",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate dissented from House amendments,2023-04-18,[],IN,2023 +Senator Randolph added as cosponsor,2023-03-27,[],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 529: yeas 49, nays 1",2023-04-27,[],IN,2023 +Signed by the President of the Senate,2023-03-22,['passage'],IN,2023 +Motion to concur filed,2023-03-20,['filing'],IN,2023 +Cosponsors: Representatives Karickhoff and DeLaney,2023-02-23,[],IN,2023 +Returned to the House with amendments,2023-04-11,['receipt'],IN,2023 +House conferees appointed: May and Johnson,2023-04-14,[],IN,2023 +Public Law 128,2023-05-01,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Public Law 102,2023-05-01,['became-law'],IN,2023 +"House advisors appointed: Goodrich, Cash and DeLaney",2023-04-18,[],IN,2023 +"House concurred in Senate amendments; Roll Call 390: yeas 99, nays 0",2023-04-11,[],IN,2023 +CCR # 1 filed in the House,2023-04-24,['filing'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-25,['filing'],IN,2023 +Public Law 184,2023-05-04,['became-law'],IN,2023 +House conferees appointed: McNamara and Gore,2023-04-14,[],IN,2023 +Referred to the House,2023-02-14,['referral'],IN,2023 +Senator Hunley removed as conferee,2023-04-26,[],IN,2023 +Senator Melton added as third sponsor,2023-04-11,[],IN,2023 +Public Law 96,2023-05-01,['became-law'],IN,2023 +Senate conferees appointed: Ford Jon and Ford J.D.,2023-04-20,[],IN,2023 +Senator Young M added as coauthor,2023-04-13,[],IN,2023 +Senate conferees appointed: Raatz and Hunley,2023-04-20,[],IN,2023 +"Third reading: passed; Roll Call 366: yeas 88, nays 1",2023-04-06,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Senate advisors appointed: Hunley and Garten,2023-04-19,[],IN,2023 +"House advisors appointed: Morrison, Aylesworth and Bauer M",2023-04-18,[],IN,2023 +"Senate concurred in House amendments; Roll Call 359: yeas 49, nays 0",2023-04-10,[],IN,2023 +Senate advisors appointed: Niezgodski and Sandlin,2023-04-20,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 544: yeas 93, nays 1",2023-04-27,[],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 508: yeas 49, nays 0",2023-04-27,[],IN,2023 +Public Law 144,2023-05-01,['became-law'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Motion to withdraw CCR #1: prevailed,2023-04-20,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Senate conferees appointed: Charbonneau and Hunley,2023-04-20,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 484: yeas 94, nays 0",2023-04-24,[],IN,2023 +Senate conferees appointed: Glick and Yoder,2023-04-18,[],IN,2023 +House conferees appointed: Thompson and Porter,2023-04-18,[],IN,2023 +"Amendment #7 (DeLaney) failed; Roll Call 419: yeas 30, nays 64",2023-04-13,"['amendment-failure', 'failure']",IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 506: yeas 89, nays 0",2023-04-26,[],IN,2023 +Representative Steuerwald added as conferee,2023-04-27,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 507: yeas 91, nays 0",2023-04-26,[],IN,2023 +Public Law 29,2023-04-20,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Public Law 159,2023-05-01,['became-law'],IN,2023 +"Third reading: passed; Roll Call 254: yeas 91, nays 0",2023-03-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 491: yeas 84, nays 0",2023-04-25,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Public Law 136,2023-05-01,['became-law'],IN,2023 +"House concurred in Senate amendments; Roll Call 487: yeas 71, nays 23",2023-04-24,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +First reading: referred to Committee on Pensions and Labor,2023-03-01,"['reading-1', 'referral-committee']",IN,2023 +"Third reading: passed; Roll Call 440: yeas 37, nays 13",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +Public Law 150,2023-05-01,['became-law'],IN,2023 +Motion to dissent filed,2023-04-13,['filing'],IN,2023 +House conferees appointed: Schaibley and Hatfield,2023-04-19,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Senate advisors appointed: Qaddoura and Crane,2023-04-20,[],IN,2023 +Public Law 49,2023-04-20,['became-law'],IN,2023 +"Senate advisors appointed: Randolph Lonnie M, Charbonneau and Zay",2023-04-20,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +House dissented from Senate amendments,2023-04-19,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +"Senate advisors appointed: Yoder, Garten and Crane",2023-04-20,[],IN,2023 +House dissented from Senate amendments,2023-04-04,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Amendment #13 (Ford J.D.) failed; Roll Call 398: yeas 11, nays 38",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +"House advisors appointed: Miller D, Lehman and DeLaney",2023-04-18,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 485: yeas 74, nays 20",2023-04-24,[],IN,2023 +Senate conferees appointed: Mishler and Melton,2023-04-19,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-26,['filing'],IN,2023 +Senate conferees appointed: Raatz and Ford J.D.,2023-04-24,[],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Returned to the Senate with amendments,2023-04-18,['receipt'],IN,2023 +Senate conferees appointed: Freeman and Randolph Lonnie M,2023-04-18,[],IN,2023 +Motion to concur filed,2023-04-17,['filing'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +"Senate concurred in House amendments; Roll Call 323: yeas 48, nays 0",2023-04-04,[],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Public Law 114,2023-05-01,['became-law'],IN,2023 +Public Law 41,2023-04-20,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Representative Manning added as conferee,2023-04-25,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +"Senate concurred in House amendments; Roll Call 317: yeas 48, nays 0",2023-04-04,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Motion to dissent filed,2023-04-12,['filing'],IN,2023 +Public Law 74,2023-04-20,['became-law'],IN,2023 +Second reading: ordered engrossed,2023-04-10,['reading-2'],IN,2023 +Second reading: ordered engrossed,2023-03-23,['reading-2'],IN,2023 +"Committee report: do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Public Law 50,2023-04-20,['became-law'],IN,2023 +Representative DeLaney added as conferee,2023-04-24,[],IN,2023 +"House advisors appointed: Ledbetter, Abbott and Boy",2023-04-18,[],IN,2023 +Public Law 95,2023-05-01,['became-law'],IN,2023 +"Third reading: passed; Roll Call 434: yeas 42, nays 8",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +Public Law 4,2023-04-05,['became-law'],IN,2023 +Public Law 1,2023-02-22,['became-law'],IN,2023 +"Third reading: passed; Roll Call 334: yeas 93, nays 0",2023-04-03,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Public Law 37,2023-04-20,['became-law'],IN,2023 +Senate advisors appointed: Niezgodski and Buchanan,2023-04-19,[],IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-25,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +House dissented from Senate amendments,2023-04-18,[],IN,2023 +Motion to dissent filed,2023-04-12,['filing'],IN,2023 +"House advisors appointed: Davis, Payne and Gore",2023-04-19,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-26,['filing'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 476: yeas 45, nays 0",2023-04-25,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-26,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-17,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +House conferees appointed: Judy and Pack,2023-04-06,[],IN,2023 +"House advisors appointed: Karickhoff, McGuire and Pfaff",2023-04-11,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Returned to the House without amendments,2023-04-18,['receipt'],IN,2023 +CCR # 1 filed in the Senate,2023-04-24,['filing'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 496: yeas 84, nays 0",2023-04-25,[],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +"House concurred in Senate amendments; Roll Call 394: yeas 95, nays 0",2023-04-11,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Representative Judy added as conferee,2023-04-20,[],IN,2023 +Returned to the House with amendments,2023-04-04,['receipt'],IN,2023 +Senate dissented from House amendments,2023-04-13,[],IN,2023 +Public Law 72,2023-04-20,['became-law'],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +Public Law 33,2023-04-20,['became-law'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 520: yeas 87, nays 7",2023-04-26,[],IN,2023 +"Amendment #16 (Ford J.D.) failed; Roll Call 399: yeas 10, nays 39",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Public Law 45,2023-04-20,['became-law'],IN,2023 +Senate conferees appointed: Garten and Pol,2023-04-20,[],IN,2023 +Signed by the President Pro Tempore,2023-04-26,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Senate dissented from House amendments,2023-04-13,[],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Public Law 26,2023-04-20,['became-law'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Senate advisors appointed: Pol and Crider,2023-04-18,[],IN,2023 +Senate advisors appointed: Deery and Yoder,2023-04-24,[],IN,2023 +"House concurred in Senate amendments; Roll Call 456: yeas 89, nays 1",2023-04-19,[],IN,2023 +Senate dissented from House amendments,2023-04-18,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Motion to concur filed,2023-04-18,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Senate conferees appointed: Rogers and Yoder,2023-04-13,[],IN,2023 +House conferees appointed: Bartels and Fleming,2023-04-06,[],IN,2023 +Senate dissented from House amendments,2023-04-18,[],IN,2023 +"House advisors appointed: Lucas, Haggard and Gore",2023-04-06,[],IN,2023 +Public Law 55,2023-04-20,['became-law'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Public Law 98,2023-05-01,['became-law'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 481: yeas 48, nays 1",2023-04-25,[],IN,2023 +Motion to concur filed,2023-04-27,['filing'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 492: yeas 84, nays 0",2023-04-25,[],IN,2023 +Motion to concur filed,2023-04-10,['filing'],IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Representative Heine added as advisor,2023-04-20,[],IN,2023 +"Senate advisors appointed: Randolph Lonnie M, Charbonneau, Niemeyer and Dernulc",2023-04-19,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +CCR # 1 filed in the House,2023-04-25,['filing'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Representative DeLaney removed as conferee,2023-04-26,[],IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +Returned to the Senate with amendments,2023-04-04,['receipt'],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +House conferees appointed: Goodrich and DeLaney,2023-04-19,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 517: yeas 39, nays 9",2023-04-27,[],IN,2023 +Signed by the President Pro Tempore,2023-04-06,['passage'],IN,2023 +Senate conferees appointed: Glick and Breaux,2023-04-24,[],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 482: yeas 36, nays 13",2023-04-25,[],IN,2023 +House conferees appointed: Vermilion and Garcia Wilburn,2023-04-19,[],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 491: yeas 40, nays 9",2023-04-26,[],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-04-06,[],IN,2023 +Representative Wesco added as cosponsor,2023-03-23,[],IN,2023 +House conferees appointed: Carbaugh and Shackleford,2023-04-18,[],IN,2023 +Concurrence withdrawn; House dissented from Senate amendments,2023-04-12,['withdrawal'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Public Law 199,2023-05-04,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +"Third reading: passed; Roll Call 370: yeas 48, nays 0",2023-04-11,"['passage', 'reading-3', 'reading-3']",IN,2023 +Representative Davis removed as advisor,2023-04-24,[],IN,2023 +Returned to the Senate without amendments,2023-03-13,['receipt'],IN,2023 +CCR # 2 filed in the House,2023-04-25,['filing'],IN,2023 +Public Law 120,2023-05-01,['became-law'],IN,2023 +CCR # 1 filed in the Senate,2023-04-24,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-13,['reading-2'],IN,2023 +"House concurred in Senate amendments; Roll Call 288: yeas 94, nays 0",2023-03-21,[],IN,2023 +"Senate advisors appointed: Breaux, Charbonneau and Busch",2023-04-18,[],IN,2023 +Representative Judy removed as advisor,2023-04-26,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 483: yeas 43, nays 6",2023-04-25,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 496: yeas 50, nays 0",2023-04-26,[],IN,2023 +"House advisors appointed: Torr, Meltzer, Hatcher and Pierce M",2023-04-14,[],IN,2023 +Signed by the Speaker,2023-03-22,['passage'],IN,2023 +Senator Qaddoura added as coauthor,2023-02-23,[],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Public Law 161,2023-05-01,['became-law'],IN,2023 +Public Law 111,2023-05-01,['became-law'],IN,2023 +Returned to the Senate with amendments,2023-04-06,['receipt'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Motion to concur filed,2023-04-13,['filing'],IN,2023 +Senate conferees appointed: Niemeyer and Niezgodski,2023-04-19,[],IN,2023 +Senate dissented from House amendments,2023-04-13,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Senate advisors appointed: Melton and Busch,2023-04-20,[],IN,2023 +Senate advisors appointed: Ford J.D. and Rogers,2023-04-20,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +"House advisors appointed: Lehman, Barrett, Carbaugh, Snow and Fleming",2023-04-19,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +"Senators Walker K, Walker G, Rogers, Buchanan added as cosponsors",2023-03-28,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Senator Raatz added as conferee,2023-04-26,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 495: yeas 50, nays 0",2023-04-26,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Senator Breaux added as cosponsor,2023-04-11,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 522: yeas 49, nays 1",2023-04-27,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 508: yeas 90, nays 1",2023-04-26,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-25,['filing'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Senator Rogers added as cosponsor,2023-03-06,[],IN,2023 +Signed by the President Pro Tempore,2023-04-17,['passage'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +"House advisors appointed: Miller D, Sweet and Moed",2023-04-14,[],IN,2023 +"House advisors appointed: Heine, Prescott and Harris",2023-04-18,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Senate conferees appointed: Raatz and Ford J.D.,2023-04-18,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Senate advisors appointed: Hunley and Deery,2023-04-20,[],IN,2023 +Representative Clere added as cosponsor,2023-02-14,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Third reading: passed; Roll Call 434: yeas 64, nays 33",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Public Law 25,2023-04-20,['became-law'],IN,2023 +"Senate advisors appointed: Yoder, Byrne and Glick",2023-04-19,[],IN,2023 +First reading: referred to Committee on Public Health,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Public Law 2,2023-03-22,['became-law'],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 493: yeas 84, nays 0",2023-04-25,[],IN,2023 +Representative Cash removed as advisor,2023-04-26,[],IN,2023 +Senate conferees appointed: Charbonneau and Yoder,2023-04-20,[],IN,2023 +Returned to the House with amendments,2023-04-12,['receipt'],IN,2023 +House conferees appointed: Negele and Fleming,2023-04-18,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Representative Speedy removed as conferee,2023-04-26,[],IN,2023 +Referred to the House,2023-02-24,['referral'],IN,2023 +Public Law 182,2023-05-04,['became-law'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Motion to dissent filed,2023-04-12,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 489: yeas 49, nays 0",2023-04-26,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +Signed by the Speaker,2023-04-03,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-03-20,['passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-06,['committee-passage'],IN,2023 +Public Law 147,2023-05-01,['became-law'],IN,2023 +Senate advisors appointed: Qaddoura and Rogers,2023-04-18,[],IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +CCR # 2 filed in the Senate,2023-04-25,['filing'],IN,2023 +Public Law 118,2023-05-01,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Senate conferees appointed: Crider and Taylor G,2023-04-18,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +House dissented from Senate amendments,2023-04-18,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +House conferees appointed: King and Fleming,2023-04-18,[],IN,2023 +Public Law 243,2023-05-04,['became-law'],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +CCR # 1 filed in the House,2023-04-24,['filing'],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Public Law 160,2023-05-01,['became-law'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +Senate conferees appointed: Zay and Pol,2023-04-18,[],IN,2023 +"House concurred in Senate amendments; Roll Call 449: yeas 92, nays 2",2023-04-18,[],IN,2023 +Public Law 155,2023-05-01,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +Senate conferees appointed: Rogers and Ford J.D.,2023-04-18,[],IN,2023 +Public Law 242,2023-05-04,['became-law'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Returned to the House with amendments,2023-04-12,['receipt'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 516: yeas 83, nays 12",2023-04-26,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 512: yeas 49, nays 0",2023-04-27,[],IN,2023 +"House concurred in Senate amendments; Roll Call 399: yeas 64, nays 30",2023-04-11,[],IN,2023 +Signed by the President Pro Tempore,2023-04-26,['passage'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +Public Law 58,2023-04-20,['became-law'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Public Law 165,2023-05-04,['became-law'],IN,2023 +Public Law 23,2023-04-20,['became-law'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"Third reading: passed; Roll Call 306: yeas 65, nays 30",2023-03-27,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Committee report: do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +Senate advisors appointed: Alexander and Qaddoura,2023-04-24,[],IN,2023 +Motion to dissent filed,2023-04-19,['filing'],IN,2023 +Motion to concur filed,2023-04-06,['filing'],IN,2023 +Signed by the Speaker,2023-04-11,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 502: yeas 85, nays 0",2023-04-25,[],IN,2023 +Representative Teshka added as conferee,2023-04-26,[],IN,2023 +Public Law 209,2023-05-04,['became-law'],IN,2023 +Public Law 130,2023-05-01,['became-law'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 532: yeas 94, nays 0",2023-04-27,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +"House advisors appointed: Clere, Culp and Hatfield",2023-04-19,[],IN,2023 +House conferees appointed: Davis and Gore,2023-04-14,[],IN,2023 +House conferees appointed: Manning and Moed,2023-04-14,[],IN,2023 +Representative Pack removed as conferee,2023-04-24,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-19,['filing'],IN,2023 +"Senate advisors appointed: Ford J.D., Bassler and Crane",2023-04-13,[],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 479: yeas 47, nays 1",2023-04-25,[],IN,2023 +Senate conferees appointed: Zay and Hunley,2023-04-11,[],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 546: yeas 92, nays 3",2023-04-27,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +"House advisors appointed: Barrett, Lehman, Schaibley and Porter",2023-04-18,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 518: yeas 41, nays 7",2023-04-27,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +"House advisors appointed: Huston, Behning, Davis, McNamara, Klinker, Pfaff and Smith V",2023-04-19,[],IN,2023 +"House concurred in Senate amendments; Roll Call 537: yeas 91, nays 3",2023-04-27,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Senate advisors appointed: Taylor G and Koch,2023-04-20,[],IN,2023 +"Amendment #17 (Ford J.D.) failed; Roll Call 400: yeas 15, nays 34",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 533: yeas 95, nays 0",2023-04-27,[],IN,2023 +Public Law 24,2023-04-20,['became-law'],IN,2023 +Senate conferees appointed: Leising and Qaddoura,2023-04-18,[],IN,2023 +"House advisors appointed: Barrett, Criswell, Hatfield and Shackleford",2023-04-06,[],IN,2023 +"Senate concurred in House amendments; Roll Call 474: yeas 27, nays 23",2023-04-25,[],IN,2023 +Public Law 94,2023-05-01,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-26,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 541: yeas 90, nays 4",2023-04-27,[],IN,2023 +Signed by the President of the Senate,2023-04-18,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +House dissented from Senate amendments,2023-04-19,[],IN,2023 +"Senate concurred in House amendments; Roll Call 349: yeas 48, nays 0",2023-04-10,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 504: yeas 39, nays 10",2023-04-27,[],IN,2023 +Representative Davis added as conferee,2023-04-24,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-19,['filing'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 547: yeas 93, nays 2",2023-04-27,[],IN,2023 +Senator Koch removed as advisor,2023-04-26,[],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 505: yeas 49, nays 0",2023-04-27,[],IN,2023 +Signed by the President Pro Tempore,2023-04-26,['passage'],IN,2023 +Motion to dissent filed,2023-04-13,['filing'],IN,2023 +Senate advisors appointed: Hunley and Donato,2023-04-18,[],IN,2023 +Public Law 196,2023-05-04,['became-law'],IN,2023 +Senate conferees appointed: Charbonneau and Breaux,2023-04-11,[],IN,2023 +Public Law 103,2023-05-01,['became-law'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 459: yeas 91, nays 0",2023-04-20,[],IN,2023 +Senate advisors appointed: Breaux and Garten,2023-04-18,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +"Amendment #19 (Yoder) failed; Roll Call 401: yeas 12, nays 37",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Public Law 180,2023-05-04,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Public Law 138,2023-05-01,['became-law'],IN,2023 +Senate conferees appointed: Raatz and Hunley,2023-04-20,[],IN,2023 +Senate conferees appointed: Charbonneau and Breaux,2023-04-19,[],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Senate advisors appointed: Ford J.D. and Crider,2023-04-11,[],IN,2023 +"House advisors appointed: Jeter, Haggard, Steuerwald and Hatcher",2023-04-14,[],IN,2023 +Senate conferees appointed: Brown L and Yoder,2023-04-20,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Senator Raatz removed as advisor,2023-04-27,[],IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 488: yeas 48, nays 0",2023-04-26,[],IN,2023 +Second reading: ordered engrossed,2023-04-13,['reading-2'],IN,2023 +Returned to the Senate without amendments,2023-03-28,['receipt'],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Public Law 212,2023-05-04,['became-law'],IN,2023 +"House advisors appointed: Lehman, Bartels, Morris, GiaQuinta and Miller K",2023-04-14,[],IN,2023 +Public Law 214,2023-05-04,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +First reading: referred to Committee on Public Health,2023-02-28,"['reading-1', 'referral-committee']",IN,2023 +Second reading: ordered engrossed,2023-04-13,['reading-2'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Public Law 255,2023-04-26,['became-law'],IN,2023 +CCR # 1 filed in the Senate,2023-04-26,['filing'],IN,2023 +"House advisors appointed: Vermilion, Barrett and Summers",2023-04-18,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-24,['filing'],IN,2023 +CCR # 1 filed in the Senate,2023-04-26,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Returned to the Senate with amendments,2023-04-18,['receipt'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Senate advisors appointed: Breaux and Garten,2023-04-20,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +"Rules Suspended. Conference Committee Report 2: adopted by the House; Roll Call 505: yeas 87, nays 1",2023-04-26,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Senate advisors appointed: Pol, Charbonneau and Crane",2023-04-18,[],IN,2023 +Senator Crane added as cosponsor,2023-04-06,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-25,['filing'],IN,2023 +House conferees appointed: Pressel and DeLaney,2023-04-18,[],IN,2023 +Public Law 108,2023-05-01,['became-law'],IN,2023 +"House advisors appointed: Barrett, Carbaugh, Zent, Hatfield and Porter",2023-04-18,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 553: yeas 95, nays 0",2023-04-27,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 490: yeas 48, nays 0",2023-04-26,[],IN,2023 +Public Law 232,2023-05-04,['became-law'],IN,2023 +Senate advisors appointed: Ford J.D. and Bohacek,2023-04-18,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +House dissented from Senate amendments,2023-04-19,[],IN,2023 +Representative Bartels added as cosponsor,2023-03-07,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-25,['filing'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 484: yeas 45, nays 4",2023-04-25,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Representative Smith V removed as conferee,2023-04-26,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Representative Judy added as conferee,2023-04-26,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Senate dissented from House amendments,2023-04-13,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Motion to concur filed,2023-04-17,['filing'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 549: yeas 92, nays 0",2023-04-27,[],IN,2023 +Signed by the President Pro Tempore,2023-04-04,['passage'],IN,2023 +Signed by the Speaker,2023-03-22,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-20,['filing'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Amendment #1 (Holdman) prevailed; voice vote,2023-04-11,['amendment-passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 519: yeas 94, nays 0",2023-04-26,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-24,['filing'],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"Conference Committee Report 2: adopted by the Senate; Roll Call 494: yeas 32, nays 18",2023-04-26,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Public Law 224,2023-05-04,['became-law'],IN,2023 +Senator Garten removed as advisor,2023-04-27,[],IN,2023 +"House advisors appointed: Haggard, Patterson, Criswell and Harris",2023-04-18,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 515: yeas 91, nays 2",2023-04-26,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-25,['filing'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Motion to concur filed,2023-04-27,['filing'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Signed by the President of the Senate,2023-03-29,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-17,['passage'],IN,2023 +House conferees appointed: King and Smith V,2023-04-14,[],IN,2023 +Representative Cherry added as cosponsor,2023-03-16,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 524: yeas 88, nays 1",2023-04-27,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 494: yeas 85, nays 0",2023-04-25,[],IN,2023 +CCR # 1 filed in the House,2023-04-24,['filing'],IN,2023 +"House concurred in Senate amendments; Roll Call 445: yeas 90, nays 0",2023-04-18,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Representative Cash added as conferee,2023-04-26,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 528: yeas 42, nays 8",2023-04-27,[],IN,2023 +Rule 105.1 suspended,2023-03-13,[],IN,2023 +Senator Ford Jon added as cosponsor,2023-04-13,[],IN,2023 +Senate conferees appointed: Brown L and Yoder,2023-04-18,[],IN,2023 +CCR # 1 filed in the House,2023-04-25,['filing'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Senate conferees appointed: Bassler and Niezgodski,2023-04-19,[],IN,2023 +House dissented from Senate amendments,2023-04-13,[],IN,2023 +Senate advisors appointed: Ford J.D. and Garten,2023-04-20,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Senator Ford J.D. removed as conferee,2023-04-27,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Senator Freeman removed as advisor,2023-04-25,[],IN,2023 +Signed by the President Pro Tempore,2023-04-13,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-26,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +House conferees appointed: Pressel and Jackson,2023-04-18,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-19,['filing'],IN,2023 +House conferees appointed: Lucas and DeLaney,2023-04-19,[],IN,2023 +"Third reading: passed; Roll Call 429: yeas 96, nays 0",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Senate conferees appointed: Gaskill and Pol,2023-04-19,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-03-29,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 521: yeas 40, nays 10",2023-04-27,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Senate advisors appointed: Breaux and Rogers,2023-04-20,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 516: yeas 47, nays 0",2023-04-27,[],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Senate advisors appointed: Melton and Bohacek,2023-04-19,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 527: yeas 95, nays 0",2023-04-27,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +House conferees appointed: Baird and Hamilton,2023-04-19,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 551: yeas 87, nays 8",2023-04-27,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-20,['filing'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Public Law 174,2023-05-04,['became-law'],IN,2023 +Senate conferees appointed: Brown L and Niezgodski,2023-04-18,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +"Amendment #20 (Yoder) failed; Roll Call 402: yeas 13, nays 36",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Senate advisors appointed: Yoder and Bohacek,2023-04-11,[],IN,2023 +Senator Pol removed as conferee,2023-04-26,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 510: yeas 46, nays 3",2023-04-27,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 461: yeas 91, nays 0",2023-04-20,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Public Law 132,2023-05-01,['became-law'],IN,2023 +"House advisors appointed: DeVon, Jordan, Genda and Pfaff",2023-04-18,[],IN,2023 +Motion to concur filed,2023-04-24,['filing'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 470: yeas 39, nays 7",2023-04-24,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +"House advisors appointed: Prescott, Abbott, Lindauer and Boy",2023-04-19,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 527: yeas 49, nays 1",2023-04-27,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Amendment #56 (Pol) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +House conferees appointed: Olthoff and Summers,2023-04-18,[],IN,2023 +Public Law 169,2023-05-04,['became-law'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Senator Koch added as conferee,2023-04-26,[],IN,2023 +Public Law 221,2023-05-04,['became-law'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Public Law 43,2023-04-20,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-03-29,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-18,['passage'],IN,2023 +"House advisors appointed: Lehman, Judy and Smith V",2023-04-19,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 528: yeas 95, nays 0",2023-04-27,[],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Senator Raatz added as conferee,2023-04-27,[],IN,2023 +Representative Davis removed as advisor,2023-04-27,[],IN,2023 +Senate advisors appointed: Melton and Perfect,2023-04-18,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Representative Schaibley removed as advisor,2023-04-27,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 563: yeas 98, nays 0",2023-04-28,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 545: yeas 93, nays 1",2023-04-27,[],IN,2023 +Senator Rogers removed as advisor,2023-04-26,[],IN,2023 +Senator Taylor G removed as conferee,2023-04-25,[],IN,2023 +Senate advisors appointed: Randolph Lonnie M and Rogers,2023-04-19,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Public Law 129,2023-05-01,['became-law'],IN,2023 +Public Law 28,2023-04-20,['became-law'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-04,['committee-passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"Third reading: passed; Roll Call 418: yeas 49, nays 0",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Public Law 5,2023-04-05,['became-law'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 566: yeas 93, nays 0",2023-04-28,[],IN,2023 +Public Law 217,2023-05-04,['became-law'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 515: yeas 35, nays 14",2023-04-27,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Public Law 70,2023-04-20,['became-law'],IN,2023 +Public Law 170,2023-05-04,['became-law'],IN,2023 +Senate advisors appointed: Melton and Garten,2023-04-18,[],IN,2023 +Public Law 115,2023-05-01,['became-law'],IN,2023 +CCR # 1 filed in the Senate,2023-04-20,['filing'],IN,2023 +Public Law 119,2023-05-01,['became-law'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 501: yeas 85, nays 0",2023-04-25,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Senator Yoder removed as conferee,2023-04-27,[],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Senate conferees appointed: Crider and Ford J.D.,2023-04-20,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +CCR # 1 filed in the Senate,2023-04-24,['filing'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-24,['filing'],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 510: yeas 90, nays 1",2023-04-26,[],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 485: yeas 49, nays 0",2023-04-25,[],IN,2023 +Senate advisors appointed: Randolph Lonnie M and Alting,2023-04-19,[],IN,2023 +"Representatives Barrett, DeVon, Ledbetter C, McNamara, Lindauer, Baird, Rowray E, Schaibley, Cherry, Meltzer J, Karickhoff, O'Brien T, Lauer, Olthoff, McGuire J, Zent, Frye, Pressel, Slager, Manning, Engleman, Abbott D, Shackleford, Andrade M added as cosponsors",2023-03-13,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-11,['reading-2'],IN,2023 +Public Law 252,2023-05-04,['became-law'],IN,2023 +"House advisors appointed: Davis, Hall, Behning and Pfaff",2023-04-14,[],IN,2023 +Public Law 204,2023-05-04,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Senate dissented from House amendments,2023-04-18,[],IN,2023 +"House concurred in Senate amendments; Roll Call 538: yeas 94, nays 0",2023-04-27,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 511: yeas 49, nays 0",2023-04-27,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-04-04,[],IN,2023 +Signed by the President Pro Tempore,2023-04-21,['passage'],IN,2023 +Senate conferees appointed: Gaskill and Ford J.D.,2023-04-18,[],IN,2023 +Public Law 215,2023-05-04,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 562: yeas 96, nays 0",2023-04-28,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +House conferees appointed: Snow and Pryor,2023-04-19,[],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 493: yeas 50, nays 0",2023-04-26,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Rule 105.1 suspended,2023-03-20,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Public Law 126,2023-05-01,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Senator Raatz added as cosponsor,2023-04-17,[],IN,2023 +Signed by the Governor,2023-04-05,['executive-signature'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 533: yeas 50, nays 0",2023-04-28,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-25,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-26,['passage'],IN,2023 +Senate advisors appointed: Hunley and Charbonneau,2023-04-20,[],IN,2023 +Signed by the Governor,2023-04-20,['executive-signature'],IN,2023 +Public Law 222,2023-05-04,['became-law'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 475: yeas 92, nays 0",2023-04-24,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 539: yeas 49, nays 0",2023-04-28,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Senate conferees appointed: Rogers and Yoder,2023-04-18,[],IN,2023 +"Third reading: passed; Roll Call 382: yeas 38, nays 9",2023-04-13,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 498: yeas 82, nays 0",2023-04-25,[],IN,2023 +Public Law 219,2023-05-04,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Senator Garten added as conferee,2023-04-27,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 499: yeas 82, nays 0",2023-04-25,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Representative DeLaney removed as conferee,2023-04-27,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-24,['filing'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-26,['filing'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +"Amendment #55 (Pol) failed; Roll Call 403: yeas 12, nays 37",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Motion to withdraw CCR #1: prevailed,2023-04-25,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Senator Yoder removed as conferee,2023-04-26,[],IN,2023 +"House advisors appointed: Clere, Greene, O'Brien and Pryor",2023-04-18,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Speaker,2023-03-29,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Senator Freeman added as conferee,2023-04-25,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +Public Law 185,2023-05-04,['became-law'],IN,2023 +Returned to the Senate without amendments,2023-04-18,['receipt'],IN,2023 +Representative Carbaugh removed as conferee,2023-04-27,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-26,['filing'],IN,2023 +Senate conferees appointed: Holdman and Ford J.D.,2023-04-20,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Representative Miller D removed as advisor,2023-04-26,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 542: yeas 94, nays 1",2023-04-27,[],IN,2023 +Public Law 235,2023-05-04,['became-law'],IN,2023 +"House concurred in Senate amendments; Roll Call 477: yeas 94, nays 0",2023-04-24,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 514: yeas 44, nays 5",2023-04-27,[],IN,2023 +Public Law 191,2023-05-04,['became-law'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 537: yeas 49, nays 1",2023-04-28,[],IN,2023 +Public Law 216,2023-05-04,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Senate advisors appointed: Hunley, Garten and Baldwin",2023-04-20,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Representative Davis added as conferee,2023-04-27,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-24,['filing'],IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Public Law 188,2023-05-04,['became-law'],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +Public Law 176,2023-05-04,['became-law'],IN,2023 +Amendment #49 (Niezgodski) failed; voice vote,2023-04-17,"['amendment-failure', 'failure']",IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 524: yeas 50, nays 0",2023-04-27,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Representative Schaibley added as conferee,2023-04-27,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Public Law 200,2023-05-04,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Public Law 197,2023-05-04,['became-law'],IN,2023 +Public Law 226,2023-05-04,['became-law'],IN,2023 +Senate conferees appointed: Donato and Yoder,2023-04-18,[],IN,2023 +Public Law 140,2023-05-01,['became-law'],IN,2023 +Public Law 247,2023-05-04,['became-law'],IN,2023 +Senator Rogers added as conferee,2023-04-26,[],IN,2023 +Public Law 10,2023-04-05,['became-law'],IN,2023 +CCR # 1 filed in the Senate,2023-04-25,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Representative Campbell removed as conferee,2023-04-26,[],IN,2023 +Signed by the Speaker,2023-04-21,['passage'],IN,2023 +CCR # 2 filed in the Senate,2023-04-26,['filing'],IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Senate advisors appointed: Hunley and Raatz,2023-04-18,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 477: yeas 40, nays 8",2023-04-25,[],IN,2023 +"Representatives Goodrich, Pierce K, Mayfield, Culp K, Lucas, Lehman, Miller D, Snow C, Haggard C, Harris, Bauer M, Hatcher, Garcia Wilburn V, Campbell, Smith, V., Boy, Gore M, Jackson, Hamilton, Miller K, Summers, Porter, Moed, Davis M, GiaQuinta, Hatfield, Patterson L added as cosponsors",2023-03-20,[],IN,2023 +"Committee report: amend do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 535: yeas 69, nays 28",2023-04-27,[],IN,2023 +"House advisors appointed: Thompson, O'Brien, Rowray and Harris",2023-04-19,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 478: yeas 49, nays 0",2023-04-25,[],IN,2023 +Senator Charbonneau removed as advisor,2023-04-27,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Returned to the House with amendments,2023-04-14,['receipt'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +CCR # 1 filed in the House,2023-04-25,['filing'],IN,2023 +"Senate advisors appointed: Yoder, Raatz and Rogers",2023-04-18,[],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 468: yeas 45, nays 0",2023-04-24,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 487: yeas 48, nays 0",2023-04-26,[],IN,2023 +Representative Lehman removed as advisor,2023-04-27,[],IN,2023 +Public Law 178,2023-05-04,['became-law'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 535: yeas 50, nays 0",2023-04-28,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-26,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Public Law 225,2023-05-04,['became-law'],IN,2023 +Senator Ford J.D. removed as conferee,2023-04-27,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Senator Deery added as advisor,2023-04-19,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 520: yeas 39, nays 10",2023-04-27,[],IN,2023 +Representative Pryor added as cosponsor,2023-03-20,[],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Rule 105.1 suspended,2023-04-18,[],IN,2023 +Public Law 244,2023-05-04,['became-law'],IN,2023 +Motion to concur filed,2023-04-24,['filing'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 509: yeas 90, nays 1",2023-04-26,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Representative Hatfield removed as conferee,2023-04-27,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-26,['passage'],IN,2023 +Amendment #22 (Barrett) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +House conferees appointed: Behning and DeLaney,2023-04-18,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Public Law 194,2023-05-04,['became-law'],IN,2023 +Public Law 220,2023-05-04,['became-law'],IN,2023 +Amendment #84 (Niezgodski) failed; voice vote,2023-04-17,"['amendment-failure', 'failure']",IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 531: yeas 94, nays 1",2023-04-27,[],IN,2023 +Representative Miller D added as conferee,2023-04-26,[],IN,2023 +Senator Hunley removed as conferee,2023-04-27,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +CCR # 2 filed in the House,2023-04-26,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Senate advisors appointed: Breaux and Brown L,2023-04-18,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 486: yeas 94, nays 0",2023-04-24,[],IN,2023 +CCR # 1 filed in the House,2023-04-25,['filing'],IN,2023 +Motion to concur filed,2023-04-26,['filing'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 560: yeas 66, nays 28",2023-04-27,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Public Law 97,2023-05-01,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 530: yeas 92, nays 3",2023-04-27,[],IN,2023 +Representative DeLaney removed as conferee,2023-04-25,[],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Signed by the Governor,2023-04-05,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 555: yeas 90, nays 7",2023-04-27,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 530: yeas 50, nays 0",2023-04-27,[],IN,2023 +Senator Crider added as advisor,2023-04-19,[],IN,2023 +Representative Smaltz added as conferee,2023-04-25,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 501: yeas 37, nays 11",2023-04-27,[],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 480: yeas 49, nays 0",2023-04-25,[],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Public Law 186,2023-05-04,['became-law'],IN,2023 +Senator Buchanan added as conferee,2023-04-27,[],IN,2023 +Public Law 239,2023-05-04,['became-law'],IN,2023 +"Amendment #22 (Qaddoura) failed; Roll Call 404: yeas 10, nays 39",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 503: yeas 40, nays 9",2023-04-27,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-26,['filing'],IN,2023 +Motion to withdraw CCR #1: prevailed,2023-04-25,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 2: adopted by the House; Roll Call 514: yeas 93, nays 0",2023-04-26,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"House concurred in Senate amendments; Roll Call 512: yeas 89, nays 1",2023-04-26,[],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Public Law 205,2023-05-04,['became-law'],IN,2023 +Rule 105.1 suspended,2023-03-30,[],IN,2023 +Public Law 233,2023-05-04,['became-law'],IN,2023 +Public Law 250,2023-05-04,['became-law'],IN,2023 +Representative Lehman added as conferee,2023-04-27,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"House concurred in Senate amendments; Roll Call 488: yeas 66, nays 29",2023-04-24,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"House advisors appointed: Teshka, Davis, Klinker, Pfaff and Smith V",2023-04-18,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Senator Charbonneau added as conferee,2023-04-27,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Representatives Bartels, Jordan, Thompson added as coauthors",2023-04-18,[],IN,2023 +Public Law 179,2023-05-04,['became-law'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Senator Raatz removed as advisor,2023-04-24,[],IN,2023 +Amendment #2 (Jordan) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Public Law 210,2023-05-04,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Public Law 207,2023-05-04,['became-law'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 492: yeas 50, nays 0",2023-04-26,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Public Law 146,2023-05-01,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Public Law 241,2023-05-04,['became-law'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Motion to concur filed,2023-04-19,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Public Law 171,2023-05-04,['became-law'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Representative Errington added as cosponsor,2023-03-30,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Public Law 245,2023-05-04,['became-law'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Amendment #3 (Jordan) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Public Law 163,2023-05-04,['became-law'],IN,2023 +Senator Ford J.D. removed as conferee,2023-04-24,[],IN,2023 +Public Law 240,2023-05-04,['became-law'],IN,2023 +Representative DeLaney removed as conferee,2023-04-27,[],IN,2023 +Representative Teshka removed as advisor,2023-04-27,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Public Law 104,2023-05-01,['became-law'],IN,2023 +Senator Garten removed as advisor,2023-04-25,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Public Law 238,2023-05-04,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +"Amendment #24 (Qaddoura) failed; Roll Call 405: yeas 11, nays 38",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +CCR # 2 filed in the Senate,2023-04-26,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 550: yeas 72, nays 21",2023-04-27,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Conference Committee Report 2: adopted by the Senate; Roll Call 498: yeas 48, nays 1",2023-04-26,[],IN,2023 +Public Law 195,2023-05-04,['became-law'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Public Law 208,2023-05-04,['became-law'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 513: yeas 29, nays 19",2023-04-27,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 525: yeas 40, nays 9",2023-04-27,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 534: yeas 40, nays 10",2023-04-28,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Public Law 251,2023-05-04,['became-law'],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +"Amendment #28 (Qaddoura) failed; Roll Call 407: yeas 11, nays 38",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Senator Ford J.D. removed as conferee,2023-04-25,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Representative Speedy removed as conferee,2023-04-26,[],IN,2023 +Senator Raatz added as conferee,2023-04-24,[],IN,2023 +Representative Prescott added as conferee,2023-04-27,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Public Law 177,2023-05-04,['became-law'],IN,2023 +Public Law 181,2023-05-04,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Committee report: amend do pass, adopted",2023-04-04,['committee-passage'],IN,2023 +Representative DeLaney removed as conferee,2023-04-27,[],IN,2023 +Rule 105.1 suspended,2023-04-19,[],IN,2023 +Amendment #28 (Prescott) motion withdrawn,2023-04-13,"['amendment-withdrawal', 'withdrawal']",IN,2023 +Public Law 192,2023-05-04,['became-law'],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 564: yeas 76, nays 20",2023-04-28,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Public Law 172,2023-05-04,['became-law'],IN,2023 +CCR # 1 filed in the Senate,2023-04-24,['filing'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 559: yeas 90, nays 7",2023-04-27,[],IN,2023 +"Amendment #18 (DeLaney) failed; Roll Call 414: yeas 32, nays 62",2023-04-13,"['amendment-failure', 'failure']",IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2023-04-04,[],IN,2023 +Representative Pack R added as coauthor,2023-04-19,[],IN,2023 +Representative Teshka added as conferee,2023-04-27,[],IN,2023 +Senator Garten added as conferee,2023-04-25,[],IN,2023 +Public Law 223,2023-05-04,['became-law'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Amendment #29 (Qaddoura) failed; Roll Call 408: yeas 11, nays 38",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Representative Smaltz added as conferee,2023-04-26,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Senator Johnson removed as coauthor,2023-04-27,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 536: yeas 66, nays 28",2023-04-27,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 519: yeas 47, nays 1",2023-04-27,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 558: yeas 75, nays 22",2023-04-27,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Motion to withdraw CCR #2: prevailed,2023-04-26,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 543: yeas 95, nays 0",2023-04-27,[],IN,2023 +Public Law 246,2023-05-04,['became-law'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 531: yeas 35, nays 15",2023-04-27,[],IN,2023 +Amendment #30 (Qaddoura) failed; voice vote,2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Public Law 187,2023-05-04,['became-law'],IN,2023 +Representative Smaltz removed as conferee,2023-04-25,[],IN,2023 +Public Law 206,2023-05-04,['became-law'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 536: yeas 35, nays 15",2023-04-28,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Senator Raatz removed as advisor,2023-04-27,[],IN,2023 +Rule 105.1 suspended,2023-04-04,[],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +Public Law 234,2023-05-04,['became-law'],IN,2023 +"House concurred in Senate amendments; Roll Call 454: yeas 89, nays 0",2023-04-19,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +CCR # 1 filed in the House,2023-04-24,['filing'],IN,2023 +Amendment #11 (Cash) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +Signed by the Speaker,2023-04-24,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 540: yeas 76, nays 17",2023-04-27,[],IN,2023 +Representative Fleming added as cosponsor,2023-04-04,[],IN,2023 +Senator Yoder removed as conferee,2023-04-27,[],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +"Amendment #21 (Porter) failed; Roll Call 415: yeas 30, nays 65",2023-04-13,"['amendment-failure', 'failure']",IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 495: yeas 85, nays 0",2023-04-25,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Public Law 190,2023-05-04,['became-law'],IN,2023 +Public Law 237,2023-05-04,['became-law'],IN,2023 +Public Law 175,2023-05-04,['became-law'],IN,2023 +CCR # 3 filed in the Senate,2023-04-26,['filing'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Amendment #31 (Qaddoura) failed; Roll Call 409: yeas 11, nays 38",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Representative Teshka added as conferee,2023-04-25,[],IN,2023 +Public Law 167,2023-05-04,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Public Law 213,2023-05-04,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +CCR # 2 filed in the House,2023-04-26,['filing'],IN,2023 +Public Law 231,2023-05-04,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Amendment #33 (Qaddoura) failed; Roll Call 410: yeas 11, nays 38",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +CCR # 1 filed in the Senate,2023-04-26,['filing'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 523: yeas 42, nays 8",2023-04-27,[],IN,2023 +Amendment #8 (Jeter) prevailed; voice vote,2023-04-13,['amendment-passage'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 475: yeas 45, nays 0",2023-04-25,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 532: yeas 45, nays 5",2023-04-28,[],IN,2023 +Senator Raatz added as conferee,2023-04-27,[],IN,2023 +Signed by the President Pro Tempore,2023-04-25,['passage'],IN,2023 +"Committee report: do pass, adopted",2023-04-11,['committee-passage'],IN,2023 +Public Law 236,2023-05-04,['became-law'],IN,2023 +Signed by the President of the Senate,2023-04-26,['passage'],IN,2023 +Rule 105.1 suspended,2023-04-11,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Amendment #19 (DeLaney) motion withdrawn,2023-04-13,"['amendment-withdrawal', 'withdrawal']",IN,2023 +Signed by the President Pro Tempore,2023-04-26,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Public Law 166,2023-05-04,['became-law'],IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +"Amendment #35 (Qaddoura) failed; Roll Call 411: yeas 10, nays 39",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +CCR # 3 filed in the House,2023-04-26,['filing'],IN,2023 +"Amendment #36 (Qaddoura) failed; Roll Call 412: yeas 10, nays 39",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Public Law 249,2023-05-04,['became-law'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 513: yeas 72, nays 22",2023-04-26,[],IN,2023 +"Rules Suspended. Conference Committee Report 3: adopted by the House; Roll Call 521: yeas 80, nays 13",2023-04-26,[],IN,2023 +"Second reading: amended, ordered engrossed",2023-04-13,['reading-2'],IN,2023 +Representative Pfaff added as cosponsor,2023-04-11,[],IN,2023 +Public Law 121,2023-05-01,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +Public Law 203,2023-05-04,['became-law'],IN,2023 +"Motion to Suspend House Rule 118 (DeLaney) failed; Roll Call 416: yeas 27, nays 68",2023-04-13,['failure'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Rule 105.1 suspended,2023-04-13,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 526: yeas 36, nays 13",2023-04-27,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Governor,2023-05-01,['executive-signature'],IN,2023 +Public Law 228,2023-05-04,['became-law'],IN,2023 +Public Law 202,2023-05-04,['became-law'],IN,2023 +"Conference Committee Report 1: adopted by the Senate; Roll Call 497: yeas 41, nays 8",2023-04-26,[],IN,2023 +"Amendment #37 (Qaddoura) failed; Roll Call 413: yeas 10, nays 38",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +"Rules Suspended. Conference Committee Report 3: adopted by the Senate; Roll Call 502: yeas 41, nays 7",2023-04-27,[],IN,2023 +"Amendment #38 (Qaddoura) failed; Roll Call 414: yeas 12, nays 36",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"Third reading: passed; Roll Call 423: yeas 78, nays 21",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 556: yeas 65, nays 31",2023-04-27,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Representative Cash B added as cosponsor,2023-04-13,[],IN,2023 +Public Law 211,2023-05-04,['became-law'],IN,2023 +Second reading: ordered engrossed,2023-04-13,['reading-2'],IN,2023 +Public Law 168,2023-05-04,['became-law'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Rule 105.1 suspended,2023-04-17,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +"Amendment #41 (Qaddoura) failed; Roll Call 415: yeas 10, nays 38",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Amendment #27 (Qaddoura) failed; Roll Call 406: yeas 10, nays 39",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Representatives Abbott D, Schaibley, Torr, Harris, Pfaff, Pryor, Smith, V., Shackleford, Porter, Summers, Klinker, Bauer M, Hatcher, Garcia Wilburn V, Andrade M, Hamilton, Miller K, Moed, Campbell, Fleming, Pack R, Jackson, Boy, Gore M, Moseley, Bartlett, GiaQuinta added as cosponsors",2023-04-17,[],IN,2023 +"Third reading: passed; Roll Call 421: yeas 96, nays 3",2023-04-17,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"Representatives Negele, Heine, McNamara, Rowray E, Vermilion A, Pressel, Olthoff, Manning, Soliday, Genda M, DeVon, Zent added as cosponsors",2023-04-17,[],IN,2023 +Rule 105.1 suspended,2023-04-17,[],IN,2023 +"Amendment #44 (Qaddoura) failed; Roll Call 416: yeas 10, nays 38",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Public Law 218,2023-05-04,['became-law'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"Amendment #45 (Qaddoura) failed; Roll Call 417: yeas 10, nays 38",2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Public Law 173,2023-05-04,['became-law'],IN,2023 +Returned to the Senate with amendments,2023-04-18,['receipt'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Representative Moseley added as cosponsor,2023-04-17,[],IN,2023 +Returned to the Senate with amendments,2023-04-18,['receipt'],IN,2023 +Public Law 189,2023-05-04,['became-law'],IN,2023 +Motion to dissent filed,2023-04-20,['filing'],IN,2023 +Amendment #46 (Qaddoura) failed; voice vote,2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Amendment #58 (Hunley) failed; voice vote,2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Senate dissented from House amendments,2023-04-20,[],IN,2023 +Motion to concur filed,2023-04-20,['filing'],IN,2023 +"Senate concurred in House amendments; Roll Call 463: yeas 46, nays 0",2023-04-20,[],IN,2023 +Senate conferees appointed: Charbonneau and Yoder,2023-04-20,[],IN,2023 +Amendment #69 (Randolph Lonnie M) failed; voice vote,2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Amendment #71 (Randolph Lonnie M) failed; voice vote,2023-04-17,"['amendment-failure', 'failure']",IN,2023 +"Senate advisors appointed: Breaux, Garten and Busch",2023-04-20,[],IN,2023 +Signed by the President Pro Tempore,2023-04-24,['passage'],IN,2023 +House conferees appointed: Barrett and DeLaney,2023-04-20,[],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Amendment #70 (Randolph Lonnie M) failed; voice vote,2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Amendment #78 (Breaux) failed; voice vote,2023-04-17,"['amendment-failure', 'failure']",IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +"House advisors appointed: Vermilion, Ledbetter, Zent, Fleming and Porter",2023-04-20,[],IN,2023 +Senator Johnson removed as coauthor,2023-04-25,[],IN,2023 +Public Law 162,2023-05-04,['became-law'],IN,2023 +Amendment #80 (Breaux) failed; voice vote,2023-04-17,"['amendment-failure', 'failure']",IN,2023 +"Second reading: amended, ordered engrossed",2023-04-17,['reading-2'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +CCR # 1 filed in the Senate,2023-04-26,['filing'],IN,2023 +CCR # 1 filed in the House,2023-04-26,['filing'],IN,2023 +Amendment #54 (Pol) prevailed; voice vote,2023-04-17,['amendment-passage'],IN,2023 +Senator Holdman added as third sponsor,2023-04-17,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 529: yeas 74, nays 21",2023-04-27,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 500: yeas 39, nays 10",2023-04-27,[],IN,2023 +Senator Melton added as cosponsor,2023-04-17,[],IN,2023 +"Third reading: passed; Roll Call 455: yeas 40, nays 10",2023-04-18,"['passage', 'reading-3', 'reading-3']",IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +Motion to dissent filed,2023-04-18,['filing'],IN,2023 +Returned to the House with amendments,2023-04-18,['receipt'],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Public Law 164,2023-05-04,['became-law'],IN,2023 +House dissented from Senate amendments,2023-04-19,[],IN,2023 +House conferees appointed: Thompson and Porter,2023-04-19,[],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +"House advisors appointed: Jordan, Cherry, Mayfield, Heaton, Snow, Clere, Slager, Heine, DeLaney, Harris, Pryor and Judy",2023-04-19,[],IN,2023 +Senate conferees appointed: Mishler and Melton,2023-04-19,[],IN,2023 +"Senate advisors appointed: Qaddoura, Niezgodski, Garten, Bassler, Holdman, Charbonneau and Busch",2023-04-19,[],IN,2023 +Representative Cherry removed as advisor,2023-04-27,[],IN,2023 +Representative Porter removed as conferee,2023-04-27,[],IN,2023 +Representative Cherry added as conferee,2023-04-27,[],IN,2023 +Senator Garten removed as advisor,2023-04-27,[],IN,2023 +Senator Melton removed as conferee,2023-04-27,[],IN,2023 +Senator Garten added as conferee,2023-04-27,[],IN,2023 +CCR # 1 filed in the House,2023-04-27,['filing'],IN,2023 +CCR # 1 filed in the Senate,2023-04-27,['filing'],IN,2023 +Signed by the President Pro Tempore,2023-04-28,['passage'],IN,2023 +Signed by the President of the Senate,2023-04-28,['passage'],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 565: yeas 70, nays 27",2023-04-28,[],IN,2023 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 538: yeas 39, nays 10",2023-04-28,[],IN,2023 +Signed by the Speaker,2023-05-01,['passage'],IN,2023 +Signed by the Governor,2023-05-04,['executive-signature'],IN,2023 +Public Law 201,2023-05-04,['became-law'],IN,2023 +INTRODUCED BY SENATOR ROGER VICTORY,2023-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2024-04-23,['introduction'],MI,2023-2024 +introduced by Representative Gregory Alexander,2024-06-11,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2024-04-23,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2024-02-13,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2024-04-23,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative William Bruck,2023-11-03,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Mai Xiong,2024-06-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2024-04-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2024-01-18,['introduction'],MI,2023-2024 +introduced by Representative Dale Zorn,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Matt Maddock,2024-06-06,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2024-05-14,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2024-01-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Natalie Price,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Mai Xiong,2024-06-06,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Kevin Coleman,2023-04-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2024-06-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2024-03-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Tom Kunse,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2023-03-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-07-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2024-06-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-09-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2023-06-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative William Bruck,2024-06-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-03-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2023-05-03,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-05-02,['introduction'],MI,2023-2024 +introduced by Representative Matt Hall,2023-09-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2024-07-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-06-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-09-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-10-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2024-01-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JON BUMSTEAD,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2024-06-18,['introduction'],MI,2023-2024 +introduced by Representative Andrew W. Beeler,2023-11-09,['introduction'],MI,2023-2024 +introduced by the Speaker on behalf of the entire membership,2024-06-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAMIR SINGH,2023-01-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-10-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-10-11,['introduction'],MI,2023-2024 +introduced by Representative Steve Carra,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Neil Friske,2023-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-03-07,['introduction'],MI,2023-2024 +introduced by Representative Mike Harris,2023-06-13,['introduction'],MI,2023-2024 +introduced by Representative Reggie Miller,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Angela Rigas,2023-02-15,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2024-05-16,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-09-13,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2024-06-18,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-10-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2024-04-17,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2023-06-20,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2023-03-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2024-05-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-03-15,['introduction'],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-01-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-09-19,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2023-03-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-11-01,['introduction'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +introduced by Representative Jamie Thompson,2024-05-14,['introduction'],MI,2023-2024 +introduced by Representative Andrew Fink,2023-02-07,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2024-01-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-03-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2024-03-07,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2024-01-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAMIR SINGH,2023-01-11,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Alicia St. Germaine,2024-05-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-06-21,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-06-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2023-02-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-09-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-05-02,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-09-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Jim Haadsma,2023-05-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2024-02-28,['introduction'],MI,2023-2024 +introduced by Representative Reggie Miller,2024-04-30,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2023-10-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-05-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-04-26,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-02-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-10-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2024-02-28,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2024-05-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2023-10-10,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2023-05-03,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2024-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2024-09-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-03-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-05-09,['introduction'],MI,2023-2024 +rule suspended,2024-02-22,[],MI,2023-2024 +introduced by Representative Julie M. Rogers,2024-02-29,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Sarah Lightner,2023-05-23,['introduction'],MI,2023-2024 +laid over one day under the rules,2024-06-25,[],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2023-01-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2024-01-11,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-05-09,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2024-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-02-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2024-05-02,['introduction'],MI,2023-2024 +introduced by Representative William Bruck,2023-09-28,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-04-19,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2024-04-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-01-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2024-05-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative Brian BeGole,2024-04-24,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-02-08,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Steve Carra,2023-06-14,['introduction'],MI,2023-2024 +introduced by Representative Matt Bierlein,2023-05-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-05-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2024-06-18,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2023-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-07-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2024-06-04,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Stephanie Young,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2024-02-20,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2023-09-28,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-06-04,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-04-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-01-18,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Dylan Wegela,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Matt Maddock,2024-06-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2024-02-13,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-06-14,['introduction'],MI,2023-2024 +introduced by Representative Cameron Cavitt,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Matt Maddock,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-05-02,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2024-08-15,['introduction'],MI,2023-2024 +introduced by Representative Tom Kunse,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2024-03-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2024-05-02,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Matt Maddock,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Bradley Slagh,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-09-13,['introduction'],MI,2023-2024 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2024-06-18,[],MI,2023-2024 +introduced by Representative Matt Maddock,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Brian BeGole,2023-06-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-09-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-06-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Cameron Cavitt,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Tullio Liberati,2023-02-22,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2024-02-07,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2023-03-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-03-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER VICTORY,2023-06-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-02-21,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2024-06-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2023-06-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2024-02-29,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-02-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-04-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2024-03-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2024-05-22,['introduction'],MI,2023-2024 +introduced by Representative Bryan Posthumus,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative Natalie Price,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Matt Hall,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2024-05-22,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-11-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-04-20,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-02-22,['introduction'],MI,2023-2024 +introduced by Representative Brian BeGole,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-06-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-05-03,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-05-22,['introduction'],MI,2023-2024 +introduced by Representative Andrew Fink,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Donni Steele,2023-01-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Steve Carra,2024-03-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2024-06-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAMIR SINGH,2023-01-11,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-04-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-04-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-05-22,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-09-20,['introduction'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-05-01,[],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-05-22,['introduction'],MI,2023-2024 +introduced by Representative Kevin Coleman,2023-10-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2024-01-18,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-02-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-06-06,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-06-06,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-10-10,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2023-05-09,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-10-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2024-02-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-03-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-06-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-02-21,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2023-09-19,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-04-19,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2024-02-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative William Bruck,2023-11-01,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2023-06-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-06-06,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2024-06-18,['introduction'],MI,2023-2024 +introduced by Representative Brian BeGole,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2024-02-07,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-06-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2024-03-12,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-10-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2023-05-16,['introduction'],MI,2023-2024 +ROLL CALL: ROLL CALL # 215 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +introduced by Representative Jasper Martus,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2024-02-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2023-02-02,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-06-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-10-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2023-04-19,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2024-03-07,['introduction'],MI,2023-2024 +introduced by Representative Mike Hoadley,2024-06-18,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2024-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-02-07,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-05-24,['introduction'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-09,['amendment-failure'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-05-03,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2023-03-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ARIC NESBITT,2024-02-07,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-03-08,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-10-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Robert J. Bezotte,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2024-02-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2024-06-13,['introduction'],MI,2023-2024 +introduced by Representative Donni Steele,2023-11-03,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2023-05-09,['introduction'],MI,2023-2024 +introduced by Representative Kevin Coleman,2023-03-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2024-08-13,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Bradley Slagh,2023-05-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-05-03,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-10-26,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-06-14,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2024-08-13,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-05-30,['introduction'],MI,2023-2024 +introduced by Representative Dale Zorn,2023-01-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-01-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2024-02-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-03-21,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2023-06-22,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2024-08-13,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-06-06,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2024-04-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR LANA THEIS,2023-01-17,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Tullio Liberati,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-06-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2024-03-12,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2023-04-19,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-02-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2024-08-13,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2024-01-30,['introduction'],MI,2023-2024 +introduced by Representative Rachelle Smit,2023-03-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-04-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2023-05-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-01-18,['introduction'],MI,2023-2024 +introduced by Representative Pauline Wendzel,2023-02-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Pauline Wendzel,2023-01-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2023-06-20,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-05-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2024-06-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2024-03-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2023-03-15,['introduction'],MI,2023-2024 +bill ordered enrolled,2024-02-20,[],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-10-11,['introduction'],MI,2023-2024 +introduced by Representative Sarah Lightner,2023-10-12,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2024-06-13,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-05-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2023-04-19,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2023-01-24,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-11-01,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2023-05-24,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-03-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-04-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-02-21,['introduction'],MI,2023-2024 +introduced by Representative Natalie Price,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Mike Mueller,2023-03-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN DALEY,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-05-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-03-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Mike Mueller,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2024-03-05,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2024-05-07,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Karen Whitsett,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-04-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-03-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-01-19,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2024-06-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-09-20,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-06-13,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER VICTORY,2024-05-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-05-03,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN N. DAMOOSE,2023-01-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2023-06-06,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-09-20,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-10-26,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2023-05-02,['introduction'],MI,2023-2024 +introduced by Representative Mike Hoadley,2023-11-03,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative William Bruck,2023-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2024-02-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-05-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-10-05,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Kimberly Edwards,2024-02-20,['introduction'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +introduced by Representative Jenn Hill,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-05-02,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-09-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-02-21,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-05-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-02-01,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-06-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-04-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-06-27,['introduction'],MI,2023-2024 +introduced by Representative Mike Mueller,2023-05-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-09-27,['introduction'],MI,2023-2024 +introduced by Representative Matt Bierlein,2024-02-21,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-09-20,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2023-06-22,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2024-03-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2023-02-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER VICTORY,2023-03-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2023-04-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-09-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2023-05-02,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2024-02-07,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-09-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-09-19,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-10-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-10-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-04-19,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2024-05-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2024-02-13,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Ken Borton,2023-07-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-07-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-09-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-09-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2024-06-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2024-02-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR LANA THEIS,2023-02-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-05-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-01-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-05-24,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2024-02-20,['introduction'],MI,2023-2024 +introduced by Representative Erin Byrnes,2024-02-13,['introduction'],MI,2023-2024 +introduced by Representative Matt Hall,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2024-03-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-04-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-03-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-09-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2024-05-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-09-27,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Sarah Lightner,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-01-26,['introduction'],MI,2023-2024 +introduced by Representative Thomas Kuhn,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2024-05-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative Phil Green,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Dylan Wegela,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Mike Harris,2023-09-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-01-19,['introduction'],MI,2023-2024 +introduced by Representative Rachelle Smit,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Cameron Cavitt,2023-11-07,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Dale Zorn,2023-05-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-09-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-04-20,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Jim Haadsma,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Angela Rigas,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Jaime Churches,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2024-05-01,['introduction'],MI,2023-2024 +"REASSIGNED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-05,[],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2024-05-07,['introduction'],MI,2023-2024 +introduced by Representative Bradley Slagh,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2023-06-07,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-06-22,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-10-10,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2024-05-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-10-11,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-09-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2024-05-07,['introduction'],MI,2023-2024 +introduced by Representative Karen Whitsett,2024-06-20,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2023-02-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-06-06,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Karen Whitsett,2023-06-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER VICTORY,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-09-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER VICTORY,2024-05-07,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-06-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Pat Outman,2023-01-24,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-04-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-09-12,['introduction'],MI,2023-2024 +referred to second reading,2024-06-20,[],MI,2023-2024 +introduced by Representative Helena Scott,2023-05-02,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-03-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-03-09,['introduction'],MI,2023-2024 +read a third time,2024-08-13,['reading-3'],MI,2023-2024 +introduced by Representative Mike Hoadley,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2024-02-21,['introduction'],MI,2023-2024 +introduced by Representative Erin Byrnes,2023-06-06,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-02-01,['introduction'],MI,2023-2024 +INSERTED FULL TITLE,2024-04-24,[],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Andrew W. Beeler,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative William Bruck,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-05-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RICK OUTMAN,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2024-05-21,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR LANA THEIS,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2024-02-13,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2024-05-23,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2023-11-02,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-05-30,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-09-20,['introduction'],MI,2023-2024 +introduced by Representative Joseph Fox,2024-03-05,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR WINNIE BRINKS,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative Jim Haadsma,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2024-05-23,['introduction'],MI,2023-2024 +introduced by Representative Thomas Kuhn,2023-06-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-09-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2024-04-09,['introduction'],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2024-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR LANA THEIS,2023-01-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JON BUMSTEAD,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Cameron Cavitt,2024-05-23,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-11-01,['introduction'],MI,2023-2024 +introduced by Representative Timothy Beson,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Matt Maddock,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-10-11,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-09-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-06-07,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2024-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative Jim Haadsma,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2024-04-09,['introduction'],MI,2023-2024 +introduced by Representative Ken Borton,2023-04-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2024-02-20,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2024-03-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-09-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-10-12,['introduction'],MI,2023-2024 +introduced by Representative Cameron Cavitt,2024-04-30,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2023-10-11,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-10-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-04-09,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Donni Steele,2024-06-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-06-06,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2023-06-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2024-04-09,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-09-13,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Steve Carra,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-09-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-03-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Neil Friske,2023-02-22,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-02-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2024-04-09,['introduction'],MI,2023-2024 +introduced by Representative Andrew W. Beeler,2023-05-24,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-10-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Natalie Price,2023-09-13,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-03-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Mike Harris,2023-03-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2024-02-27,['introduction'],MI,2023-2024 +introduced by Representative Brian BeGole,2023-09-27,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2024-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2024-03-12,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2023-06-13,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2024-06-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-04-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-03-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Pauline Wendzel,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-06-27,['introduction'],MI,2023-2024 +introduced by Representative Pat Outman,2023-05-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-03-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-11-02,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2024-03-19,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2024-04-09,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-06-21,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-02-02,['introduction'],MI,2023-2024 +introduced by Representative Alicia St. Germaine,2024-02-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2023-10-12,['introduction'],MI,2023-2024 +introduced by Representative Kimberly Edwards,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2024-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-03-23,['introduction'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +introduced by Representative Angela Witwer,2023-05-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR LANA THEIS,2024-04-09,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative Angela Rigas,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative William Bruck,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Karen Whitsett,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Mike Hoadley,2024-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER VICTORY,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Pat Outman,2024-03-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2024-04-16,['introduction'],MI,2023-2024 +introduced by Representative Pat Outman,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2024-02-20,['introduction'],MI,2023-2024 +introduced by Representative Angela Rigas,2024-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-02-07,['introduction'],MI,2023-2024 +introduced by Representative Reggie Miller,2023-05-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-04-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-09-27,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-10-05,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Dale Zorn,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Dylan Wegela,2024-05-09,['introduction'],MI,2023-2024 +introduced by Representative Pat Outman,2023-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-01-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-04-20,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-10-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2023-05-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Robert J. Bezotte,2023-02-07,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-02-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2024-04-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-10-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Rachelle Smit,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-09-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-11-01,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-10-26,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2024-08-15,['introduction'],MI,2023-2024 +introduced by Representative Pauline Wendzel,2023-03-08,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2023-10-26,['introduction'],MI,2023-2024 +introduced by Representative Cameron Cavitt,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2024-06-06,['introduction'],MI,2023-2024 +introduced by Representative Jaime Churches,2023-02-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-05-24,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2024-08-15,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-10-10,['introduction'],MI,2023-2024 +introduced by Representative Dylan Wegela,2023-05-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-11-01,['introduction'],MI,2023-2024 +introduced by Representative Mike Hoadley,2023-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-10-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR WINNIE BRINKS,2023-10-03,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2024-04-09,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2023-03-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2023-11-08,['introduction'],MI,2023-2024 +introduced by Representative Robert J. Bezotte,2024-06-06,['introduction'],MI,2023-2024 +introduced by Representative Jim Haadsma,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-06-12,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-10-10,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-03-21,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-03-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-03-02,['introduction'],MI,2023-2024 +referred to second reading,2024-06-20,[],MI,2023-2024 +introduced by Representative Mike McFall,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-10-05,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Dale Zorn,2023-02-08,['introduction'],MI,2023-2024 +introduced by Representative Karen Whitsett,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2024-06-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Stephanie Young,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-05-09,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2023-05-09,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2023-01-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN DALEY,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Pauline Wendzel,2023-10-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-05-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Gregory Alexander,2023-03-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-09-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-05-03,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-02-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Pat Outman,2023-01-31,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative Jim Haadsma,2024-06-06,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Mike Hoadley,2024-02-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2023-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-04-20,['introduction'],MI,2023-2024 +introduced by Representative Ken Borton,2023-05-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-04-19,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2023-06-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Reggie Miller,2023-04-19,['introduction'],MI,2023-2024 +introduced by Representative Dylan Wegela,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-08-24,['introduction'],MI,2023-2024 +introduced by Representative Brian BeGole,2024-06-06,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2023-06-22,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-03-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2023-10-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-05-30,['introduction'],MI,2023-2024 +introduced by the Speaker on behalf of the entire membership,2024-01-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-10-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR LANA THEIS,2024-02-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2023-05-02,['introduction'],MI,2023-2024 +introduced by Representative Bradley Slagh,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2023-02-15,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Mai Xiong,2024-06-06,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2024-06-18,['introduction'],MI,2023-2024 +introduced by Representative Dylan Wegela,2023-09-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-02-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Jaime Churches,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Mike Mueller,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Kimberly Edwards,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2023-10-31,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2024-09-17,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2024-03-06,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-06-22,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2023-10-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-10-05,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2024-03-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-06-22,['introduction'],MI,2023-2024 +introduced by Representative Phil Green,2023-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-05-17,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2024-06-06,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2024-03-12,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Reggie Miller,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-09-17,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2024-03-12,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-05-02,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2024-06-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-03-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2024-09-17,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-04-26,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-10-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN DALEY,2023-10-11,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-10-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2024-04-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Andrew W. Beeler,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Jaime Churches,2024-06-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-04-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Donni Steele,2024-06-12,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2024-03-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-01-26,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2024-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-03-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2024-09-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-09-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-03-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2024-06-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR WINNIE BRINKS,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative Alicia St. Germaine,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-09-28,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-02-22,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2024-04-24,['introduction'],MI,2023-2024 +introduced by Representative Donni Steele,2024-02-07,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2024-06-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2024-04-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RICK OUTMAN,2024-02-01,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2024-04-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2024-02-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-05-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-06-06,['introduction'],MI,2023-2024 +introduced by Representative Nancy DeBoer,2024-04-24,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-06-14,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-04-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-05-18,['introduction'],MI,2023-2024 +introduced by Representative Pat Outman,2023-01-31,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2024-06-18,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-11-03,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-10-10,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Jaime Churches,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-03-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-02-14,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Andrew Fink,2024-06-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative Jerry Neyer,2024-06-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Erin Byrnes,2024-06-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ARIC NESBITT,2023-11-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2024-01-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-10-19,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-01-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2024-06-12,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-03-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-02-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-06-07,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Kimberly Edwards,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2024-06-06,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-06-12,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-04-26,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Phil Green,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2023-10-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-06-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-03-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-02-15,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2024-06-06,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2024-02-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-02-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER VICTORY,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2023-10-26,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-10-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-05-03,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-01-11,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-01-24,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2024-06-06,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Mike Mueller,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative Kimberly Edwards,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Natalie Price,2023-06-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2024-02-13,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-05-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-03-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-10-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2024-03-12,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2023-10-19,['introduction'],MI,2023-2024 +introduced by Representative Kimberly Edwards,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Robert J. Bezotte,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Robert J. Bezotte,2024-06-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-04-19,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2024-03-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-01-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Dale Zorn,2024-06-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2024-01-11,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2024-03-06,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-09-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN DALEY,2024-04-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-09-27,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-03-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2023-10-26,['introduction'],MI,2023-2024 +introduced by Representative Donni Steele,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-05-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-05-22,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2024-01-23,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2023-01-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2024-01-16,['introduction'],MI,2023-2024 +introduced by Representative Phil Green,2023-05-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Steve Carra,2023-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2023-09-19,['introduction'],MI,2023-2024 +introduced by Representative Timothy Beson,2023-03-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-01-24,['introduction'],MI,2023-2024 +introduced by Representative Rachelle Smit,2024-05-14,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-06-22,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2024-03-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2024-02-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2024-02-07,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2023-03-08,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2023-09-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Cameron Cavitt,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2024-02-14,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-09-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-06-22,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-09-19,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-09-12,['introduction'],MI,2023-2024 +introduced by Representative Mai Xiong,2024-05-14,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-06-27,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2024-05-14,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2024-05-15,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2024-05-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2024-05-07,['introduction'],MI,2023-2024 +introduced by Representative Neil Friske,2024-05-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2024-03-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2024-06-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2024-02-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Kimberly Edwards,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2024-04-30,['introduction'],MI,2023-2024 +introduced by Representative Mike Harris,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2024-06-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2024-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2024-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2024-05-16,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-09-28,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2023-09-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2024-04-10,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-09-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Tullio Liberati,2024-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RICK OUTMAN,2024-05-22,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2024-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2024-06-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-11-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2024-02-28,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Mai Xiong,2024-06-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2024-06-11,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-07-20,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-03-07,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2024-04-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Mai Xiong,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2024-05-08,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2024-03-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-03-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-06-27,['introduction'],MI,2023-2024 +referred to second reading,2024-06-12,[],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-04-23,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2024-04-23,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2023-10-26,['introduction'],MI,2023-2024 +introduced by Representative Alicia St. Germaine,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-06-27,['introduction'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +placed on immediate passage,2024-02-22,[],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2024-04-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-04-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-04-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2024-04-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2024-04-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2024-04-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2024-04-10,['introduction'],MI,2023-2024 +laid over one day under the rules,2023-03-01,[],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2024-04-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2024-04-10,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2024-06-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2024-06-11,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-07-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-06-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-06-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-06-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-06-13,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2024-02-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-01-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RICK OUTMAN,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Donni Steele,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Reggie Miller,2023-10-10,['introduction'],MI,2023-2024 +introduced by Representative Matt Bierlein,2023-10-05,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2023-03-09,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 263 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +PASSED ROLL CALL # 259 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-06-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2024-06-20,['introduction'],MI,2023-2024 +introduced by Representative Gregory Alexander,2024-03-14,['introduction'],MI,2023-2024 +introduced by the Speaker on behalf of the entire membership,2024-01-18,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Thomas Kuhn,2024-06-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-05-02,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2024-04-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2023-11-01,['introduction'],MI,2023-2024 +introduced by Representative Gregory Alexander,2023-02-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-01-19,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2024-06-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-01-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-01-19,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2024-03-07,['introduction'],MI,2023-2024 +introduced by Representative Dylan Wegela,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-09-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-11-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-06-27,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2024-02-13,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2024-04-23,['introduction'],MI,2023-2024 +referred to second reading,2024-06-12,[],MI,2023-2024 +introduced by Representative Will Snyder,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative Tullio Liberati,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Tullio Liberati,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2023-01-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-06-12,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2024-06-05,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Pauline Wendzel,2023-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2024-06-05,['introduction'],MI,2023-2024 +introduced by Representative Jaime Churches,2024-06-05,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2023-10-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-06-14,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Thomas Kuhn,2023-05-17,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2024-02-13,['introduction'],MI,2023-2024 +introduced by Representative Donni Steele,2024-06-12,['introduction'],MI,2023-2024 +introduced by Representative Donni Steele,2023-06-14,['introduction'],MI,2023-2024 +introduced by the Speaker on behalf of the entire membership,2024-01-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2024-06-05,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2024-06-05,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2024-06-05,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-10-05,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2023-10-03,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2024-03-19,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2024-02-28,['introduction'],MI,2023-2024 +introduced by Representative Mike Hoadley,2023-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-06-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-07-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2024-06-04,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative Joseph Fox,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-10-19,['introduction'],MI,2023-2024 +introduced by Representative Dale Zorn,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2024-06-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2024-08-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-08-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-08-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-08-15,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-05-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2024-08-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2024-08-15,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-03-08,['introduction'],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2024-06-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2024-06-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-01-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-03-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-06-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2024-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-06-06,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-06-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-10-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2024-02-07,['introduction'],MI,2023-2024 +introduced by the Speaker on behalf of the entire membership,2024-03-06,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2023-08-23,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-03-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-06-05,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2024-02-22,['introduction'],MI,2023-2024 +referred to second reading,2024-06-05,[],MI,2023-2024 +introduced by Representative Jaime Greene,2024-06-13,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2024-06-13,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2023-08-23,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-09-13,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2024-08-13,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2024-08-13,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2023-06-06,['introduction'],MI,2023-2024 +introduced by Representative Neil Friske,2023-02-22,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-10-19,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2023-06-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-09-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RICK OUTMAN,2023-10-11,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-10-03,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR WINNIE BRINKS,2024-01-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-09-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-09-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-06-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-06-13,['introduction'],MI,2023-2024 +introduced by Representative Matt Bierlein,2024-03-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2024-06-13,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2023-10-12,['introduction'],MI,2023-2024 +introduced by Representative Kimberly Edwards,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative Alicia St. Germaine,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Erin Byrnes,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-09-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2024-02-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-01-19,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Bryan Posthumus,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2024-05-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2024-05-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-05-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2024-05-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2024-05-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-09-13,['introduction'],MI,2023-2024 +introduced by Representative Rachelle Smit,2024-03-05,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JON BUMSTEAD,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2023-03-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2024-04-24,['introduction'],MI,2023-2024 +introduced by Representative Steve Carra,2024-06-04,['introduction'],MI,2023-2024 +introduced by Representative Mike Harris,2024-06-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-09-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2024-05-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-09-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-01-26,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR LANA THEIS,2024-04-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Jim Haadsma,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-09-05,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Mike Harris,2024-05-23,['introduction'],MI,2023-2024 +introduced by Representative Greg VanWoerkom,2024-05-23,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2024-05-23,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2023-05-24,['introduction'],MI,2023-2024 +introduced by Representative Kimberly Edwards,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2024-06-13,['introduction'],MI,2023-2024 +introduced by Representative Greg VanWoerkom,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Pauline Wendzel,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Phil Green,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Matt Bierlein,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Mike Hoadley,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2024-01-17,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2024-06-12,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-04-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-01-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-10-03,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Mike Hoadley,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Pauline Wendzel,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Nancy DeBoer,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2024-04-30,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Kimberly Edwards,2023-04-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-04-20,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2023-10-11,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-05-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-05-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-05-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-10-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-05-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-05-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-05-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2024-09-17,['introduction'],MI,2023-2024 +introduced by Representative Robert J. Bezotte,2023-11-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2023-09-20,['introduction'],MI,2023-2024 +introduced by Representative Alicia St. Germaine,2023-02-15,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Nancy DeBoer,2024-06-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2024-09-17,['introduction'],MI,2023-2024 +introduced by Representative Jim Haadsma,2024-09-17,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2024-09-17,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2024-09-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-06-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-09-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-06-12,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-06-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2024-06-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2024-06-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2024-06-12,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-06-06,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2024-06-11,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative Angela Rigas,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Pat Outman,2023-01-31,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-05-02,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-11-02,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2024-01-30,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2024-06-12,['introduction'],MI,2023-2024 +introduced by Representative Kimberly Edwards,2024-07-30,['introduction'],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2024-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-09-13,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-06-13,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2024-04-23,['introduction'],MI,2023-2024 +introduced by Representative Jaime Churches,2024-04-23,['introduction'],MI,2023-2024 +introduced by Representative Tullio Liberati,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Matt Bierlein,2024-04-23,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative Jaime Churches,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative Thomas Kuhn,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative Ken Borton,2024-04-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2024-03-07,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-04-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2024-03-12,['introduction'],MI,2023-2024 +introduced by Representative Brian BeGole,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Dylan Wegela,2024-01-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-09-12,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2024-06-12,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2024-04-23,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2023-10-12,['introduction'],MI,2023-2024 +introduced by Representative Tom Kunse,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2023-01-25,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Erin Byrnes,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Donni Steele,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Jerry Neyer,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-05-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2024-09-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2024-09-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2024-09-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JON BUMSTEAD,2023-03-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-06-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2024-09-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2024-09-11,['introduction'],MI,2023-2024 +conference report received,2024-06-27,[],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2023-06-22,['introduction'],MI,2023-2024 +laid over one day under the rules,2023-06-27,[],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2024-04-17,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 633 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2023-11-01,['passage'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +introduced by Representative Cameron Cavitt,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2024-06-12,['introduction'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-11-07,['amendment-failure'],MI,2023-2024 +PASSED ROLL CALL # 438 YEAS 21 NAYS 16 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +full title agreed to,2023-06-27,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +introduced by Representative Pauline Wendzel,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2023-02-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-10-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Andrew Fink,2023-02-07,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-05-10,['introduction'],MI,2023-2024 +introduced by Representative Thomas Kuhn,2023-06-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2023-03-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Angela Rigas,2023-05-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ARIC NESBITT,2023-10-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-04-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-06-21,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-02-14,['introduction'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-01,['committee-passage'],MI,2023-2024 +introduced by Representative Matt Bierlein,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2024-02-29,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-06-06,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 640 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-02,['passage'],MI,2023-2024 +introduced by Representative Jerry Neyer,2023-03-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-05-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-05-17,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-11-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-01-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-03-09,['introduction'],MI,2023-2024 +notice given to discharge committee,2023-09-05,[],MI,2023-2024 +introduced by Representative Jennifer Conlin,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2024-05-23,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2024-05-23,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2024-05-23,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2024-05-23,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-08-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2024-04-24,['introduction'],MI,2023-2024 +introduced by Representative Ken Borton,2024-04-09,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-04-24,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2024-04-24,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-10-05,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-06-06,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2024-03-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR WINNIE BRINKS,2024-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-02-08,['introduction'],MI,2023-2024 +introduced by Representative Jaime Churches,2024-03-19,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Robert J. Bezotte,2023-06-13,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Matt Maddock,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-03-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Alicia St. Germaine,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2023-09-13,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2024-05-09,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-04-26,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2023-10-12,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2024-01-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2024-02-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2024-02-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-05-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-01-26,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-09-05,['introduction'],MI,2023-2024 +introduced by Representative Mike Harris,2024-03-12,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2023-01-24,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-05-09,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2024-01-23,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-09-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-05-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-10-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2024-02-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAMIR SINGH,2023-01-11,['introduction'],MI,2023-2024 +introduced by Representative Bryan Posthumus,2023-06-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-07-20,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-09-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2024-05-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-01-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-02-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-07-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-01-17,['introduction'],MI,2023-2024 +introduced by Representative Neil Friske,2023-02-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-09-05,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2023-05-03,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2023-03-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2024-05-09,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Donni Steele,2024-06-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2024-02-13,['introduction'],MI,2023-2024 +introduced by Representative Mike Hoadley,2023-09-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-02-07,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Matt Hall,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2024-02-29,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-10-10,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2024-02-01,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-09-12,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2023-05-24,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-07-19,['introduction'],MI,2023-2024 +introduced by Representative Tom Kunse,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Mike Harris,2024-02-29,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2023-10-11,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-11-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2023-10-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-06-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Angela Rigas,2023-05-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2024-01-10,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-02-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Neil Friske,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Natalie Price,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-04-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2023-09-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-11-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JON BUMSTEAD,2024-01-10,['introduction'],MI,2023-2024 +introduced by Representative Robert J. Bezotte,2023-10-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2024-01-11,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-10-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-09-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-02-22,['introduction'],MI,2023-2024 +introduced by Representative Phil Green,2023-08-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-09-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN N. DAMOOSE,2023-01-17,['introduction'],MI,2023-2024 +introduced by Representative Karen Whitsett,2023-04-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-10-19,['introduction'],MI,2023-2024 +introduced by Representative Neil Friske,2023-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2024-02-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-10-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-10-18,['introduction'],MI,2023-2024 +introduced by Representative Dylan Wegela,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Sarah Lightner,2023-10-11,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-05-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-05-24,['introduction'],MI,2023-2024 +introduced by Representative Dale Zorn,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2023-07-20,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-09-20,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-10-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2023-10-26,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-08-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2024-02-07,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2023-03-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Matt Hall,2023-03-08,['introduction'],MI,2023-2024 +introduced by Representative Dale Zorn,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Pauline Wendzel,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Robert J. Bezotte,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2023-01-19,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-09-20,['introduction'],MI,2023-2024 +introduced by Representative Kevin Coleman,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Dale Zorn,2023-05-24,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Andrew W. Beeler,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-04-19,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-04-20,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative William Bruck,2023-10-04,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-06-14,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-06-22,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-10-03,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Greg VanWoerkom,2023-05-24,['introduction'],MI,2023-2024 +introduced by Representative Reggie Miller,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-10-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN DALEY,2023-06-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-04-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-10-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Angela Rigas,2023-01-31,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2023-06-07,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-11-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2023-10-03,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2023-10-04,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-02-08,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-03-21,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Thomas Kuhn,2023-11-03,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2023-10-12,['introduction'],MI,2023-2024 +introduced by Representative Tullio Liberati,2024-01-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-04-19,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-01-11,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative Robert J. Bezotte,2023-04-20,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2023-06-13,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2024-02-13,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-06-07,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2024-01-18,['introduction'],MI,2023-2024 +introduced by Representative Matt Hall,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2023-10-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-05-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2023-03-08,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2023-06-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-09-12,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-04-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-08-24,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-06-27,['introduction'],MI,2023-2024 +introduced by Representative Bradley Slagh,2023-10-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Angela Rigas,2023-10-12,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2024-02-21,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2024-02-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Alicia St. Germaine,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-09-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR LANA THEIS,2023-05-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-08-24,['introduction'],MI,2023-2024 +introduced by Representative Jim Haadsma,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-05-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-05-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-04-19,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Neil Friske,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative Dale Zorn,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2024-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Mike Harris,2023-09-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-05-03,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-03-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2023-11-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN DALEY,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2023-10-12,['introduction'],MI,2023-2024 +introduced by Representative Mike Mueller,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-02-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-03-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-07-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-06-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-02-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-03-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-03-08,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2023-10-26,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-10-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-09-06,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Kevin Coleman,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2023-10-05,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2024-01-16,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-02-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Karen Whitsett,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-03-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2024-03-07,['introduction'],MI,2023-2024 +introduced by Representative Rachelle Smit,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Steve Carra,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2023-09-12,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2024-02-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-10-12,['introduction'],MI,2023-2024 +introduced by Representative Pat Outman,2023-02-15,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-11-01,['introduction'],MI,2023-2024 +introduced by Representative Jim Haadsma,2023-07-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-02-08,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2023-03-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2024-03-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2024-02-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Natalie Price,2023-09-28,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2023-10-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-03-06,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-07-20,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2023-01-19,['introduction'],MI,2023-2024 +introduced by Representative Sarah Lightner,2023-02-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-01-24,['introduction'],MI,2023-2024 +introduced by Representative Kevin Coleman,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Neil Friske,2023-06-06,['introduction'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-11-09,['committee-passage'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2024-01-17,['introduction'],MI,2023-2024 +introduced by Representative Mike Mueller,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2023-09-28,['introduction'],MI,2023-2024 +introduced by Representative Neil Friske,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Andrew Fink,2023-09-28,['introduction'],MI,2023-2024 +introduced by Representative Ken Borton,2023-10-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-05-09,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-04-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-10-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2023-10-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-06-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-02-02,['introduction'],MI,2023-2024 +introduced by the Speaker on behalf of the entire membership,2023-02-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2023-05-09,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Pat Outman,2023-01-31,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-09-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-10-04,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Dylan Wegela,2023-05-17,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-05-30,['introduction'],MI,2023-2024 +introduced by Representative Bradley Slagh,2023-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative Jim Haadsma,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2023-06-27,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2023-09-05,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-10-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2023-10-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Joseph Fox,2024-03-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-02-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-02-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-03-19,['introduction'],MI,2023-2024 +introduced by Representative Stephanie Young,2023-02-22,['introduction'],MI,2023-2024 +introduced by Representative Jaime Churches,2023-04-26,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-04-20,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-06-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2024-03-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative William Bruck,2024-01-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-10-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2024-02-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-09-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-06-06,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2024-06-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-04-19,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-04-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Thomas Kuhn,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-09-06,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2023-04-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-03-21,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-02-01,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2023-02-15,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2024-02-13,['introduction'],MI,2023-2024 +introduced by Representative Phil Green,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative Greg VanWoerkom,2023-09-27,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Pauline Wendzel,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2023-09-28,['introduction'],MI,2023-2024 +introduced by Representative Donni Steele,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-09-12,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-10-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-10-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-05-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-03-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2023-01-25,['introduction'],MI,2023-2024 +introduced by Representative Dylan Wegela,2023-09-28,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-04-20,['introduction'],MI,2023-2024 +introduced by Representative Dale Zorn,2023-01-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-10-12,['introduction'],MI,2023-2024 +introduced by Representative Joseph Fox,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-10-10,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2023-04-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-09-19,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-02-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-09-19,['introduction'],MI,2023-2024 +introduced by the Speaker on behalf of the entire membership,2024-01-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-05-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Angela Rigas,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-01-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JON BUMSTEAD,2024-02-28,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-05-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Kevin Coleman,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-06-27,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2023-02-09,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2024-02-06,['introduction'],MI,2023-2024 +introduced by Representative Jerry Neyer,2023-05-18,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-05-03,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2024-02-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-05-09,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2024-06-11,['introduction'],MI,2023-2024 +introduced by Representative Joseph Fox,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative Pauline Wendzel,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2024-02-21,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-06-27,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Karen Whitsett,2023-09-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative William Bruck,2024-01-23,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-03-08,['introduction'],MI,2023-2024 +introduced by Representative Cameron Cavitt,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Natalie Price,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-10-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2024-06-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2024-05-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Matt Hall,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-02-06,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-09-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-04-20,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-08-23,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Erin Byrnes,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Rachelle Smit,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-03-16,['introduction'],MI,2023-2024 +referred to second reading,2024-05-22,[],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2024-02-07,['introduction'],MI,2023-2024 +introduced by Representative Phil Green,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2024-02-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-11-02,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2024-06-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN N. DAMOOSE,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-11-01,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-01-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-10-26,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2023-05-17,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-10-10,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2024-03-12,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-06-22,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-08-24,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2023-05-24,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-09-17,['introduction'],MI,2023-2024 +introduced by Representative Karen Whitsett,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2023-07-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-09-12,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-10-04,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2024-05-09,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Thomas Kuhn,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Gregory Alexander,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2023-05-03,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-03-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-03-06,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Rachelle Smit,2024-02-06,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2023-05-03,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-05-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2023-05-18,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-06-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Donni Steele,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Kevin Coleman,2023-05-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-06-22,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2024-09-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR WINNIE BRINKS,2024-01-24,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-09-17,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2024-02-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-09-17,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2024-05-22,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-09-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAMIR SINGH,2023-01-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-09-17,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2023-01-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2024-02-28,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2024-04-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-05-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-09-20,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2023-05-17,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-05-30,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-09-26,['introduction'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-26,[],MI,2023-2024 +introduced by Representative Carol Glanville,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Mike Harris,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2024-01-17,['introduction'],MI,2023-2024 +introduced by Representative Kevin Coleman,2023-02-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-03-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-11-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Jim Haadsma,2024-04-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2024-09-17,['introduction'],MI,2023-2024 +introduced by Representative Matt Bierlein,2024-04-09,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2024-04-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2024-02-07,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-03-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN DALEY,2024-09-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-03-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2024-09-17,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-06-14,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-03-21,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-05-30,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Andrew W. Beeler,2024-04-24,['introduction'],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +introduced by Representative Pat Outman,2023-02-15,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-06-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RICK OUTMAN,2023-09-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2024-05-23,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2023-06-07,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2023-06-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-05-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Sarah Lightner,2024-02-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-05-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-11-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-07-20,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2024-01-23,['introduction'],MI,2023-2024 +introduced by Representative Andrew Fink,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Andrew W. Beeler,2024-01-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Gregory Alexander,2023-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2024-01-11,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2023-10-11,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-11-03,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2024-02-28,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2023-05-17,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-10-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2024-04-16,['introduction'],MI,2023-2024 +introduced by Representative Andrew Fink,2024-03-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-04-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2024-04-24,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2023-10-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2023-03-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2024-04-23,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2023-11-14,['introduction'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-01,[],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-03-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-03-23,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 299 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-17,['passage'],MI,2023-2024 +introduced by Representative Kara Hope,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Mike Hoadley,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2024-04-23,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2024-06-13,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2024-04-24,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 734 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +introduced by Representative Joseph Aragona,2023-10-11,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-06-13,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Nancy DeBoer,2024-09-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2023-04-20,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Natalie Price,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Cameron Cavitt,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Robert J. Bezotte,2023-01-31,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-02-15,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Bradley Slagh,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2024-03-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2023-10-05,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-06-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-03-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-03-12,['introduction'],MI,2023-2024 +introduced by Representative Joseph Fox,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2024-06-12,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-06-12,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2023-01-26,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2023-06-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2024-06-12,['introduction'],MI,2023-2024 +introduced by Representative Andrew Fink,2023-05-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2024-06-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2024-01-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2024-06-12,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2023-03-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-03-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2024-06-12,['introduction'],MI,2023-2024 +introduced by Representative Neil Friske,2024-01-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2024-01-25,['introduction'],MI,2023-2024 +introduced by Representative Thomas Kuhn,2023-06-27,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Reggie Miller,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2023-05-17,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2023-03-02,['introduction'],MI,2023-2024 +referred to second reading,2023-11-08,[],MI,2023-2024 +introduced by Representative Alicia St. Germaine,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2024-09-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-03-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR LANA THEIS,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2023-02-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-02-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-06-13,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Alicia St. Germaine,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-09-11,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2024-05-09,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2024-05-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-10-04,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2024-05-09,['introduction'],MI,2023-2024 +introduced by Representative Robert J. Bezotte,2024-05-09,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2024-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-03-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-09-19,['introduction'],MI,2023-2024 +introduced by Representative Greg VanWoerkom,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2023-11-14,['introduction'],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2024-05-14,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2024-05-14,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Angela Rigas,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2023-04-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-03-08,['introduction'],MI,2023-2024 +introduced by Representative Kimberly Edwards,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-06-13,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2023-01-24,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2024-03-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2024-04-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2024-02-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-10-12,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2023-06-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2024-05-22,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR WINNIE BRINKS,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2024-05-14,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-03-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-02-21,['introduction'],MI,2023-2024 +introduced by Representative Bradley Slagh,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-10-05,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-03-06,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-06-13,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2023-10-26,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2023-10-26,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2024-05-02,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2024-07-31,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2024-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-09-20,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2024-07-31,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative Dale Zorn,2023-10-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2024-07-31,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2024-02-14,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2024-07-31,['introduction'],MI,2023-2024 +introduced by Representative Gregory Alexander,2024-05-14,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2024-05-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-01-24,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2024-03-12,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2024-04-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-11-07,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-04-23,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-05-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-05-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JON BUMSTEAD,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2024-04-23,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Matt Bierlein,2023-11-03,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2024-03-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-07-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Greg VanWoerkom,2024-04-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2024-05-08,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2024-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2023-06-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-02-07,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2024-06-11,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-03-08,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2024-06-11,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2024-06-11,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR WINNIE BRINKS,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative Thomas Kuhn,2023-05-02,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-09-19,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2024-07-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-04-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-09-13,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-09-13,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-10-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-03-07,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-10-04,['introduction'],MI,2023-2024 +introduced by Representative Phil Green,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-10-10,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Natalie Price,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2023-05-09,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-10-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-02-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-02-01,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-06-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RICK OUTMAN,2023-02-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Rachelle Smit,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2024-02-07,['introduction'],MI,2023-2024 +introduced by Representative Karen Whitsett,2023-03-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RICK OUTMAN,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Angela Rigas,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Andrew Fink,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2024-03-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-01-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Reggie Miller,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Nancy DeBoer,2023-02-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-11-01,['introduction'],MI,2023-2024 +introduced by Representative Tullio Liberati,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2024-05-16,['introduction'],MI,2023-2024 +introduced by Representative Karen Whitsett,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2024-03-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-02-22,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2024-05-14,['introduction'],MI,2023-2024 +introduced by Representative Tom Kunse,2024-04-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2024-07-30,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-04-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-03-06,['introduction'],MI,2023-2024 +introduced by Representative Pat Outman,2024-06-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2024-02-07,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-06-27,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2024-02-14,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-09-27,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-10-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Reggie Miller,2024-06-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN N. DAMOOSE,2023-01-19,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-01-11,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Thomas Kuhn,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR LANA THEIS,2023-01-17,['introduction'],MI,2023-2024 +introduced by Representative Greg VanWoerkom,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN DALEY,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Mark Tisdel,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-09-12,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-04-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2024-05-09,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-10-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Mike Harris,2023-06-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-06-25,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2023-10-26,['introduction'],MI,2023-2024 +introduced by Representative Natalie Price,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Ann M. Bollin,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ARIC NESBITT,2023-05-24,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-10-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-10-05,['introduction'],MI,2023-2024 +introduced by Representative Tullio Liberati,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Sarah Lightner,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Jaime Churches,2023-10-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2024-03-12,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-05-30,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-10-26,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2023-09-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2024-01-30,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-09-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Mike Mueller,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-07-20,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Erin Byrnes,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2023-05-03,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2023-10-19,['introduction'],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Robert J. Bezotte,2023-02-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-03-16,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 581 Yeas 63 Nays 43 Excused 0 Not Voting 4,2023-11-09,['passage'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-03-01,['introduction'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +introduced by Representative Kimberly Edwards,2023-05-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2024-04-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-11-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-04-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-05-24,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2023-02-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-07-20,['introduction'],MI,2023-2024 +referred to second reading,2024-05-16,[],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-02-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2024-02-21,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2024-03-19,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-10-05,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-01-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2024-04-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2024-04-10,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2024-02-20,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2024-03-13,['introduction'],MI,2023-2024 +returned from Senate without amendment,2023-11-01,[],MI,2023-2024 +introduced by Representative Jaime Churches,2023-02-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-09-20,['introduction'],MI,2023-2024 +introduced by Representative Kevin Coleman,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative Erin Byrnes,2024-05-07,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2023-06-14,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-05-02,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Thomas Kuhn,2023-07-20,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2024-02-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-01-17,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-05-18,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2023-06-27,['introduction'],MI,2023-2024 +introduced by Representative Matt Bierlein,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2024-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-02-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2023-10-05,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2024-04-10,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-05-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-10-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative Cameron Cavitt,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-09-19,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2023-09-20,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2023-03-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2024-02-07,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-10-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative Kevin Coleman,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative Donni Steele,2023-02-15,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2024-05-16,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2024-04-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-06-22,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2024-04-18,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-10-12,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-10-05,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Mike Harris,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Donni Steele,2023-06-14,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2024-06-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-09-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2024-04-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2023-10-05,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-10-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-06-13,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative Bill Schuette,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-04-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-09-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-03-07,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2024-02-06,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Mai Xiong,2024-06-20,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2023-05-18,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-11-01,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-10-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-06-13,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Brian BeGole,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Joseph Fox,2023-02-15,['introduction'],MI,2023-2024 +introduced by Representative Mike Hoadley,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-05-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAMIR SINGH,2023-01-11,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Dylan Wegela,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-10-03,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Neil Friske,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative Matt Bierlein,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-10-04,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2024-01-30,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-05-10,['introduction'],MI,2023-2024 +introduced by Representative Pauline Wendzel,2023-06-14,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-03-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-11-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-03-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Mike Hoadley,2023-06-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2024-04-24,['introduction'],MI,2023-2024 +introduced by Representative Andrew Fink,2023-02-15,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-01-26,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2024-02-06,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2023-10-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2023-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2024-02-29,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-06-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-03-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-04-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-06-13,['introduction'],MI,2023-2024 +introduced by Representative Matt Bierlein,2023-02-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2024-06-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-02-07,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2023-01-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2024-06-20,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Thomas Kuhn,2024-02-07,['introduction'],MI,2023-2024 +referred to second reading,2023-05-04,[],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2024-02-29,['introduction'],MI,2023-2024 +introduced by the Speaker on behalf of the entire membership,2024-03-06,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2023-06-22,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2024-03-06,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-06-27,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Angela Rigas,2023-04-19,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN DALEY,2023-03-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Stephanie Young,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Mike Mueller,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-10-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN DALEY,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2023-09-27,['introduction'],MI,2023-2024 +full title agreed to,2024-06-11,[],MI,2023-2024 +introduced by Representative Kevin Coleman,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2023-01-26,['introduction'],MI,2023-2024 +introduced by Representative Jerry Neyer,2023-03-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Jaime Churches,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Erin Byrnes,2023-09-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-10-04,['introduction'],MI,2023-2024 +introduced by Representative Brian BeGole,2023-06-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-05-02,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2023-06-27,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-10-04,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Joseph Fox,2023-04-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-04-11,['introduction'],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +introduced by Representative Matt Bierlein,2023-05-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Pat Outman,2023-09-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-06-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2023-11-08,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2023-10-05,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2024-02-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-07-20,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Alicia St. Germaine,2023-04-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-03-08,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-03-21,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2023-10-03,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2024-01-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2023-10-05,['introduction'],MI,2023-2024 +introduced by Representative Erin Byrnes,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-10-26,['introduction'],MI,2023-2024 +introduced by Representative Karen Whitsett,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Pat Outman,2023-03-21,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-04-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Jerry Neyer,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Matt Hall,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2024-05-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative Phil Green,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-10-12,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-11-03,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2024-01-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-01-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2024-05-08,['introduction'],MI,2023-2024 +introduced by Representative Mike Harris,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2023-05-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-03-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-04-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-10-10,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-10-18,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-05-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-02-09,['introduction'],MI,2023-2024 +introduced by Representative Matt Bierlein,2024-06-05,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2024-03-19,['introduction'],MI,2023-2024 +introduced by Representative Neil Friske,2024-06-04,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Brian BeGole,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Greg VanWoerkom,2024-05-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2024-05-02,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2024-08-15,['introduction'],MI,2023-2024 +introduced by Representative Jerry Neyer,2024-03-05,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2024-08-15,['introduction'],MI,2023-2024 +introduced by Representative Angela Rigas,2024-05-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2024-08-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2024-08-15,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-11-08,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Reggie Miller,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Dale Zorn,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative William Bruck,2024-05-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative Rachelle Smit,2024-03-05,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2023-03-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Andrew W. Beeler,2024-03-05,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN DALEY,2023-03-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-05-18,['introduction'],MI,2023-2024 +introduced by Representative Pat Outman,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Robert J. Bezotte,2024-02-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Nancy DeBoer,2024-03-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2023-11-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-07-20,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2024-01-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-04-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2024-03-07,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2024-02-07,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-09-28,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative Jim Haadsma,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-04-11,['introduction'],MI,2023-2024 +introduced by Representative Jerry Neyer,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2024-02-06,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2023-04-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-10-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-02-27,['introduction'],MI,2023-2024 +introduced by Representative Joseph Fox,2024-02-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-04-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-08-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2023-11-01,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2024-04-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2024-04-23,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-02-22,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-07-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2024-06-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-06-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2024-02-01,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-10-25,['introduction'],MI,2023-2024 +laid over one day under the rules,2023-11-08,[],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-01-18,['introduction'],MI,2023-2024 +introduced by Representative Reggie Miller,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Greg VanWoerkom,2023-04-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2024-06-05,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-09-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2024-06-05,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2023-10-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2024-06-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-05-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Sarah Lightner,2023-02-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2024-03-06,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-06-13,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-05-24,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-10-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2024-01-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative Pat Outman,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Karen Whitsett,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2024-01-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2024-01-18,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-10-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2024-03-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2023-04-20,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2024-02-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative William Bruck,2024-01-23,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2024-08-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2023-10-05,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2023-03-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2023-11-03,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2024-06-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-06-13,['introduction'],MI,2023-2024 +introduced by Representative Dale Zorn,2023-01-19,['introduction'],MI,2023-2024 +introduced by Representative Stephanie Young,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-10-17,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR LANA THEIS,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Mike Mueller,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative Steve Carra,2024-02-27,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-09-20,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-07-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2024-06-13,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2024-02-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Nancy DeBoer,2023-02-15,['introduction'],MI,2023-2024 +introduced by Representative Timothy Beson,2023-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2023-03-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2023-05-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-03-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-02-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-09-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-05-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Andrew Fink,2023-02-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2024-05-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2024-06-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2024-05-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR LANA THEIS,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-07-18,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2024-05-07,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-03-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-02-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2024-05-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-10-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-02-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Andrew W. Beeler,2024-05-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-05-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR LANA THEIS,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2024-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2023-10-26,['introduction'],MI,2023-2024 +introduced by Representative Donni Steele,2024-05-02,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Jerry Neyer,2023-05-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-01-17,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-06-14,['introduction'],MI,2023-2024 +introduced by Representative Neil Friske,2023-05-04,['introduction'],MI,2023-2024 +introduced by Representative Pat Outman,2023-09-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-06-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER VICTORY,2024-02-29,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RICK OUTMAN,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Robert J. Bezotte,2024-05-07,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-11-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Angela Rigas,2023-02-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-06-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-03-08,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAN LAUWERS,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2024-02-13,['introduction'],MI,2023-2024 +introduced by Representative Ken Borton,2024-05-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2024-06-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-07-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2024-02-20,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2023-10-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN DALEY,2023-10-11,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER VICTORY,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2023-02-14,['introduction'],MI,2023-2024 +introduced by Representative Mike Hoadley,2024-05-07,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Kelly Breen,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2024-04-23,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-08-23,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-03-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-09-13,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Matt Hall,2024-01-17,['introduction'],MI,2023-2024 +introduced by Representative Reggie Miller,2023-11-14,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2024-05-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2023-02-09,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2024-05-14,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-05-24,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-05-30,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-10-04,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Andrew W. Beeler,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-09-07,['introduction'],MI,2023-2024 +introduced by Representative Douglas Wozniak,2023-05-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-05-03,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Matt Bierlein,2024-05-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-10-11,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-06-13,['introduction'],MI,2023-2024 +introduced by Representative Andrew W. Beeler,2024-05-07,['introduction'],MI,2023-2024 +introduced by Representative Kimberly Edwards,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-05-11,['introduction'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-10-10,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-02-21,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2023-10-04,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2024-05-30,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 669 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-05-07,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2023-02-07,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-03-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN DALEY,2023-09-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHELE HOITENGA,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RICK OUTMAN,2023-11-01,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2024-05-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SUE SHINK,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-08-23,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2024-03-14,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-05-10,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-03-22,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2023-04-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-06-22,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2024-05-07,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2024-05-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Natalie Price,2023-04-11,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-06-06,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative John R. Roth,2023-09-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2023-11-08,['introduction'],MI,2023-2024 +introduced by Representative Ranjeev Puri,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Greg VanWoerkom,2023-11-01,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-10-10,['introduction'],MI,2023-2024 +introduced by Representative Kimberly Edwards,2023-10-19,['introduction'],MI,2023-2024 +introduced by Representative Rachelle Smit,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-03-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2023-09-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-10-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-10-04,['introduction'],MI,2023-2024 +introduced by Representative Helena Scott,2023-03-08,['introduction'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2024-02-07,['introduction'],MI,2023-2024 +introduced by Representative Stephanie Young,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-04-25,['introduction'],MI,2023-2024 +introduced by Representative Andrew W. Beeler,2024-05-07,['introduction'],MI,2023-2024 +introduced by Representative Tullio Liberati,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-09-20,['introduction'],MI,2023-2024 +introduced by Representative Gregory Markkanen,2023-02-15,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-02-01,['introduction'],MI,2023-2024 +introduced by Representative Emily Dievendorf,2023-10-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-10-04,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2023-06-07,['introduction'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-10-03,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-10-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-09-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-05-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2023-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-04-20,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2024-05-22,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-05-24,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2023-10-24,['introduction'],MI,2023-2024 +introduced by Representative Natalie Price,2024-05-30,['introduction'],MI,2023-2024 +introduced by Representative Kevin Coleman,2023-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Phil Skaggs,2023-09-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOSEPH BELLINO,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Jennifer Conlin,2023-03-23,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2024-05-21,['introduction'],MI,2023-2024 +introduced by Representative Jim Haadsma,2024-05-21,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-05-24,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Phil Green,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Neil Friske,2023-05-25,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Tom Kunse,2023-06-28,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-06-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2023-02-22,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-03-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR EDWARD MCBROOM,2023-09-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-06-07,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Jaime Churches,2024-03-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-10-11,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2024-01-30,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-09-28,['introduction'],MI,2023-2024 +introduced by Representative Matt Bierlein,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative James DeSana,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Natalie Price,2024-04-30,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2024-06-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-02-08,['introduction'],MI,2023-2024 +introduced by Representative Julie Brixie,2024-02-14,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2024-05-23,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-10-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2023-11-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-10-10,['introduction'],MI,2023-2024 +introduced by Representative Gregory Alexander,2023-06-07,['introduction'],MI,2023-2024 +introduced by Representative Alicia St. Germaine,2023-03-14,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2023-09-28,['introduction'],MI,2023-2024 +introduced by Representative Phil Green,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-01-12,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2023-06-13,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-09-20,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-09-27,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Brenda Carter,2023-10-25,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-05-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2023-02-02,['introduction'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-06-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-03-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Jason Morgan,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Dale Zorn,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Greg VanWoerkom,2023-02-28,['introduction'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-09-19,['introduction'],MI,2023-2024 +introduced by Representative David Prestin,2023-06-13,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-04-26,['introduction'],MI,2023-2024 +introduced by Representative Joey Andrews,2023-07-18,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-06-06,['introduction'],MI,2023-2024 +introduced by Representative Jasper Martus,2023-09-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SYLVIA SANTANA,2023-03-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2024-05-01,['introduction'],MI,2023-2024 +introduced by Representative Dylan Wegela,2023-04-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2024-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-02-02,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MALLORY MCMORROW,2023-05-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR THOMAS ALBERT,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-03-12,['introduction'],MI,2023-2024 +introduced by Representative Jenn Hill,2023-01-18,['introduction'],MI,2023-2024 +introduced by Representative Andrew Fink,2023-02-15,['introduction'],MI,2023-2024 +introduced by Representative Denise Mentzer,2024-06-27,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-09-26,['introduction'],MI,2023-2024 +introduced by Representative Nate Shannon,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-04-26,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-04-27,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-10-04,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-02-14,['introduction'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2023-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2023-06-07,['introduction'],MI,2023-2024 +introduced by Representative Tullio Liberati,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Cameron Cavitt,2024-04-25,['introduction'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-06-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-10-05,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-04-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR RUTH JOHNSON,2024-02-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-02-29,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Mike Mueller,2023-02-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR PAUL WOJNO,2024-05-22,['introduction'],MI,2023-2024 +introduced by Representative Natalie Price,2023-04-12,['introduction'],MI,2023-2024 +introduced by Representative Reggie Miller,2023-09-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN DAMOOSE,2024-05-22,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-10-10,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2023-02-15,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2024-02-01,['introduction'],MI,2023-2024 +introduced by Representative Will Snyder,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Steve Carra,2023-09-06,['introduction'],MI,2023-2024 +introduced by Representative Nancy DeBoer,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Lori Stone,2023-05-09,['introduction'],MI,2023-2024 +introduced by Representative David W. Martin,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-11-01,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Jamie Thompson,2023-11-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2023-02-08,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-03-23,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-03-02,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-03-01,['introduction'],MI,2023-2024 +introduced by Representative Mike Mueller,2024-05-09,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2023-02-22,['introduction'],MI,2023-2024 +introduced by Representative Christine Morse,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Laurie Pohutsky,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Andrew Fink,2024-03-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-03-21,['introduction'],MI,2023-2024 +introduced by Representative Andrew W. Beeler,2024-04-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Joseph Aragona,2023-05-16,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-10-05,['introduction'],MI,2023-2024 +introduced by Representative Jaime Greene,2023-06-13,['introduction'],MI,2023-2024 +introduced by Representative Tyrone Carter,2024-02-29,['introduction'],MI,2023-2024 +introduced by Representative Matt Bierlein,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Joseph Fox,2023-03-07,['introduction'],MI,2023-2024 +introduced by Representative Angela Witwer,2023-01-12,['introduction'],MI,2023-2024 +introduced by Representative Gina Johnsen,2023-02-14,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-11-01,['introduction'],MI,2023-2024 +introduced by Representative John Fitzgerald,2024-02-29,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2024-03-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-06-08,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2023-11-09,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Carol Glanville,2024-02-13,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-10-12,['introduction'],MI,2023-2024 +introduced by Representative Kara Hope,2024-01-16,['introduction'],MI,2023-2024 +introduced by Representative Betsy Coffia,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Rachel Hood,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Matt Maddock,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Cameron Cavitt,2024-03-19,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JIM RUNESTAD,2023-05-03,['introduction'],MI,2023-2024 +introduced by Representative Andrew Fink,2024-06-26,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-03-13,['introduction'],MI,2023-2024 +introduced by Representative Sarah Lightner,2023-05-23,['introduction'],MI,2023-2024 +introduced by Representative Mike McFall,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Steve Carra,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Josh Schriver,2024-02-22,['introduction'],MI,2023-2024 +introduced by Representative Regina Weiss,2023-09-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-09-19,['introduction'],MI,2023-2024 +introduced by Representative Brad Paquette,2023-09-14,['introduction'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-10-17,['introduction'],MI,2023-2024 +introduced by Representative Curtis VanderWall,2023-05-16,['introduction'],MI,2023-2024 +introduced by Representative Jason Hoskins,2023-06-15,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2023-06-28,['introduction'],MI,2023-2024 +introduced by Representative Thomas Kuhn,2024-01-16,['introduction'],MI,2023-2024 +introduced by Representative Donavan McKinney,2023-10-04,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JON BUMSTEAD,2023-11-01,['introduction'],MI,2023-2024 +introduced by Representative Samantha Steckloff,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Pauline Wendzel,2023-11-09,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2024-02-28,['introduction'],MI,2023-2024 +introduced by Representative Kathy Schmaltz,2024-03-21,['introduction'],MI,2023-2024 +introduced by Representative Veronica Paiz,2024-03-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JONATHAN LINDSEY,2023-11-08,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-01-17,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2023-04-13,['introduction'],MI,2023-2024 +introduced by Representative Pauline Wendzel,2023-03-08,['introduction'],MI,2023-2024 +introduced by Representative Luke Meerman,2024-03-20,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-03-16,['introduction'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-09-20,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ROGER HAUCK,2023-02-16,['introduction'],MI,2023-2024 +introduced by Representative Angela Rigas,2024-03-06,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MICHAEL WEBBER,2023-03-15,['introduction'],MI,2023-2024 +introduced by Representative Graham Filler,2023-03-09,['introduction'],MI,2023-2024 +introduced by Representative Kristian Grant,2023-05-25,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR MARK HUIZENGA,2023-09-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR ERIKA GEISS,2023-09-27,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-04-27,['introduction'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2024-02-14,['reading-1'],MI,2023-2024 +postponed for the day,2023-02-15,[],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-02-21,['referral-committee'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-09-20,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-04-17,['referral-committee'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +read a first time,2023-05-02,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-04-25,['referral-committee'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2023-05-23,['referral-committee'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +adopted,2023-04-26,['passage'],MI,2023-2024 +adopted,2023-03-22,['passage'],MI,2023-2024 +read a first time,2024-01-23,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-06,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-04-25,['referral-committee'],MI,2023-2024 +read a first time,2024-03-13,['reading-1'],MI,2023-2024 +read a first time,2023-09-20,['reading-1'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-03,['referral-committee'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +referred to Committee on Appropriations,2024-04-23,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-04-27,['referral-committee'],MI,2023-2024 +read a first time,2023-09-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-10-05,['referral-committee'],MI,2023-2024 +read a first time,2024-03-12,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-16,['referral-committee'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-02-01,['referral-committee'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2024-01-30,['reading-1'],MI,2023-2024 +adopted,2023-03-01,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-01,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +read a first time,2023-03-22,['reading-1'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-03-23,['referral-committee'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-04-11,[],MI,2023-2024 +adopted,2023-02-08,['passage'],MI,2023-2024 +postponed temporarily,2023-10-24,[],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-03-01,['referral-committee'],MI,2023-2024 +adopted,2023-03-01,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-10-04,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2023-10-05,['reading-1'],MI,2023-2024 +rule 71 suspended,2024-05-15,[],MI,2023-2024 +read a first time,2024-05-08,['reading-1'],MI,2023-2024 +postponed for the day,2024-05-01,[],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2024-06-26,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-14,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-02,['referral-committee'],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +adopted,2024-05-09,['passage'],MI,2023-2024 +read a first time,2024-03-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2024-05-01,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-09-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-01,['referral-committee'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-02-28,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-03-14,['referral-committee'],MI,2023-2024 +adopted,2024-05-09,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-06-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-06-11,['referral-committee'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-03-06,['referral-committee'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-02-28,['referral-committee'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-06-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-04-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-06-13,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-01-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-06-28,['referral-committee'],MI,2023-2024 +postponed for the day,2024-05-02,[],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2024-03-06,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-05-22,['referral-committee'],MI,2023-2024 +read a first time,2024-04-23,['reading-1'],MI,2023-2024 +read a first time,2024-04-23,['reading-1'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-05-09,['referral-committee'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-25,['referral-committee'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2024-06-25,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-06-27,['referral-committee'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-10-24,['referral-committee'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +introduced by Representative William Bruck,2023-10-26,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2023-03-07,['introduction'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-03-09,['introduction'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-04-10,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-04-10,['referral-committee'],MI,2023-2024 +read a first time,2023-10-05,['reading-1'],MI,2023-2024 +INTRODUCED BY SENATOR KRISTEN MCDONALD RIVET,2023-09-12,['introduction'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-04-10,['referral-committee'],MI,2023-2024 +introduced by Representative Carrie Rheingans,2023-06-27,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-04-10,['referral-committee'],MI,2023-2024 +rule 71 suspended,2024-05-07,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-09,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-09-14,['referral-committee'],MI,2023-2024 +read a first time,2024-02-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-04-18,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2024-04-18,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-04-10,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-04-18,['referral-committee'],MI,2023-2024 +read a first time,2023-09-19,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-04-18,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-04-18,['referral-committee'],MI,2023-2024 +read a first time,2024-05-16,['reading-1'],MI,2023-2024 +adopted,2024-04-18,['passage'],MI,2023-2024 +adopted,2024-04-18,['passage'],MI,2023-2024 +adopted,2024-04-18,['passage'],MI,2023-2024 +read a first time,2023-10-05,['reading-1'],MI,2023-2024 +adopted,2024-06-20,['passage'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-06-13,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-03-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-02-06,['referral-committee'],MI,2023-2024 +adopted,2024-06-20,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-06-13,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +read a first time,2023-05-10,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-03-02,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-22,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-24,['referral-committee'],MI,2023-2024 +read a first time,2023-01-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-06-13,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-06-13,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-06-13,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-20,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-06-20,[],MI,2023-2024 +introduced by Representative Felicia Brabec,2023-04-11,['introduction'],MI,2023-2024 +read a first time,2024-03-06,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-09,['referral-committee'],MI,2023-2024 +introduced by Representative Jay DeBoyer,2023-02-28,['introduction'],MI,2023-2024 +adopted,2023-01-26,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-28,['referral-committee'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +introduced by Representative Julie Brixie,2024-02-22,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-03-22,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-11-09,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-07-20,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-03-08,['referral-committee'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +read a first time,2023-10-05,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-03-09,['referral-committee'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +read a first time,2024-06-05,['reading-1'],MI,2023-2024 +read a first time,2024-06-04,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2024-05-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-08-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-08-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-08-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-08-15,['referral-committee'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-03-22,['referral-committee'],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +read a first time,2023-05-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-03-14,['referral-committee'],MI,2023-2024 +adopted,2024-03-06,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-07-20,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-04-19,[],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-25,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-04-23,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2024-01-18,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-06-28,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-06-05,[],MI,2023-2024 +RULES SUSPENDED,2024-06-05,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2024-05-22,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-03-06,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2024-01-18,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2024-01-18,['referral-committee'],MI,2023-2024 +read a first time,2024-08-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-12,['referral-committee'],MI,2023-2024 +adopted,2023-04-20,['passage'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-13,['referral-committee'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-13,['referral-committee'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-06-28,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-05-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-05-01,['referral-committee'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-05-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-05-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-05-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-05-01,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-05-01,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-05-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-05-01,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-05-01,[],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +adopted,2023-04-27,['passage'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-03-07,['referral-committee'],MI,2023-2024 +read a first time,2023-11-02,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-06,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-06-04,[],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2023-08-23,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-09-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-02-09,['referral-committee'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +introduced by Representative Abraham Aiyash,2023-10-10,['introduction'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-14,['referral-committee'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-10-04,['reading-1'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-09-20,['reading-1'],MI,2023-2024 +read a first time,2024-05-22,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2024-04-30,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2024-05-23,['reading-1'],MI,2023-2024 +adopted,2023-04-13,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-10-11,['referral-committee'],MI,2023-2024 +read a first time,2024-05-23,['reading-1'],MI,2023-2024 +read a first time,2024-05-23,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-11-01,[],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +read a first time,2023-06-13,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +read a first time,2024-05-23,['reading-1'],MI,2023-2024 +read a first time,2024-05-01,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-05-24,['referral-committee'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-04-12,['referral-committee'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-06,['referral-committee'],MI,2023-2024 +read a first time,2023-05-09,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +adopted,2023-03-01,['passage'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-02-01,['referral-committee'],MI,2023-2024 +read a first time,2024-02-29,['reading-1'],MI,2023-2024 +read a first time,2024-02-29,['reading-1'],MI,2023-2024 +read a first time,2024-02-13,['reading-1'],MI,2023-2024 +read a first time,2024-01-16,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-05-03,['referral-committee'],MI,2023-2024 +read a first time,2024-03-13,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2024-01-16,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-11-08,['referral-committee'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2024-02-28,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-03-07,['referral-committee'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-18,['referral-committee'],MI,2023-2024 +read a first time,2023-06-27,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-05-04,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-06-27,['referral-committee'],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +read a first time,2023-09-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-05-30,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-11-09,['referral-committee'],MI,2023-2024 +rule 71 suspended,2024-02-06,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-04-20,['referral-committee'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-02-22,['referral-committee'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-22,['referral-committee'],MI,2023-2024 +read a first time,2024-09-17,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +read a first time,2023-10-04,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-04-12,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-03-13,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-09,['referral-committee'],MI,2023-2024 +read a first time,2023-03-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-22,['referral-committee'],MI,2023-2024 +read a first time,2024-09-17,['reading-1'],MI,2023-2024 +read a first time,2024-09-17,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-22,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-09-17,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-09-17,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-09-17,['referral-committee'],MI,2023-2024 +read a first time,2023-01-17,['reading-1'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-04-11,['referral-committee'],MI,2023-2024 +read a first time,2023-05-17,['reading-1'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-01-17,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2024-09-17,['referral-committee'],MI,2023-2024 +read a first time,2024-02-07,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-09-17,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-09-17,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-04-13,[],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +read a first time,2024-04-24,['reading-1'],MI,2023-2024 +read a first time,2023-06-13,['reading-1'],MI,2023-2024 +read a first time,2023-06-07,['reading-1'],MI,2023-2024 +read a first time,2023-06-07,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-05-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-07-20,['referral-committee'],MI,2023-2024 +read a first time,2024-01-23,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-11-03,['reading-1'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +read a first time,2024-03-12,['reading-1'],MI,2023-2024 +read a first time,2024-04-23,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-23,['referral-committee'],MI,2023-2024 +read a first time,2024-04-23,['reading-1'],MI,2023-2024 +read a first time,2024-04-24,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-09-14,['referral-committee'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +rule 71 suspended,2024-06-12,[],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2024-03-13,['referral-committee'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-12,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-06-12,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-12,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-12,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-06-12,[],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-09-19,[],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +adopted,2023-01-12,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-01-24,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-10-12,['referral-committee'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-06-28,[],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +read a first time,2024-07-31,['reading-1'],MI,2023-2024 +read a first time,2024-07-31,['reading-1'],MI,2023-2024 +read a first time,2024-07-31,['reading-1'],MI,2023-2024 +read a first time,2024-07-31,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-11-07,['referral-committee'],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-10-03,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +adopted,2024-06-11,['passage'],MI,2023-2024 +substitute (H-1) adopted,2024-06-11,[],MI,2023-2024 +adopted,2024-06-11,['passage'],MI,2023-2024 +read a first time,2024-07-30,['reading-1'],MI,2023-2024 +read a first time,2024-07-30,['reading-1'],MI,2023-2024 +read a first time,2024-07-30,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-05-09,['reading-1'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-02-01,[],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-02-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-07-30,['referral-committee'],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +read a first time,2023-02-01,['reading-1'],MI,2023-2024 +read a first time,2023-02-01,['reading-1'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2024-07-30,['referral-committee'],MI,2023-2024 +read a first time,2024-04-09,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-03-14,['referral-committee'],MI,2023-2024 +read a first time,2024-03-12,['reading-1'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +read a first time,2024-05-16,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-07-30,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-07-30,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +adopted,2023-10-24,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-01-12,['referral-committee'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-07-30,['referral-committee'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-09-14,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-02-01,[],MI,2023-2024 +RULES SUSPENDED,2023-02-01,[],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-10-04,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-07-20,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-10-04,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-09-13,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-09-13,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-04-13,['referral-committee'],MI,2023-2024 +read a first time,2023-09-19,['reading-1'],MI,2023-2024 +read a first time,2023-05-02,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2024-04-23,['reading-1'],MI,2023-2024 +read a first time,2024-04-18,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2024-03-13,['reading-1'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +read a first time,2024-04-23,['reading-1'],MI,2023-2024 +read a first time,2024-04-18,['reading-1'],MI,2023-2024 +read a first time,2024-04-18,['reading-1'],MI,2023-2024 +read a first time,2024-04-23,['reading-1'],MI,2023-2024 +read a first time,2024-05-15,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-01-24,['referral-committee'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +adopted,2024-02-14,['passage'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-10-03,['referral-committee'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +read a first time,2023-06-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-03-06,['referral-committee'],MI,2023-2024 +read a first time,2023-10-05,['reading-1'],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-02-21,['referral-committee'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-02-07,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-04-10,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-03-08,['referral-committee'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2024-03-07,['introduction'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-02-01,['reading-1'],MI,2023-2024 +read a first time,2024-05-09,['reading-1'],MI,2023-2024 +read a first time,2024-05-09,['reading-1'],MI,2023-2024 +read a first time,2024-05-09,['reading-1'],MI,2023-2024 +read a first time,2024-05-09,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-01-18,['referral-committee'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-02-08,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2023-06-27,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-01-25,['referral-committee'],MI,2023-2024 +read a first time,2024-01-10,['reading-1'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +read a first time,2023-01-26,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-03-12,[],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-02-15,['referral-committee'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2023-01-31,['reading-1'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-10-12,['introduction'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +laid over one day under the rules,2023-05-17,[],MI,2023-2024 +introduced by Representative Jenn Hill,2023-05-04,['introduction'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-08,['referral-committee'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-10-03,['referral-committee'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +adopted,2023-05-17,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-02-28,['referral-committee'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-10-11,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2024-01-23,['reading-1'],MI,2023-2024 +adopted,2024-02-20,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-05-11,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-05-23,[],MI,2023-2024 +introduced by Representative Phil Skaggs,2024-02-22,['introduction'],MI,2023-2024 +adopted,2024-04-24,['passage'],MI,2023-2024 +adopted,2024-04-24,['passage'],MI,2023-2024 +adopted,2023-01-18,['passage'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-05-30,['referral-committee'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-09-26,['referral-committee'],MI,2023-2024 +read a first time,2024-04-09,['reading-1'],MI,2023-2024 +adopted,2024-04-24,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-04-27,[],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-05-23,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +INTRODUCED BY SENATOR VERONICA KLINEFELT,2023-05-23,['introduction'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +rule 71 suspended,2024-04-24,[],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +adopted,2024-05-22,['passage'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-01-24,[],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +adopted,2023-01-12,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +postponed for the day,2023-06-20,[],MI,2023-2024 +read a first time,2023-05-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-10-03,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-05-02,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-05-03,['referral-committee'],MI,2023-2024 +adopted,2023-11-09,['passage'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-03-16,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +read a first time,2024-03-12,['reading-1'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +read a first time,2023-05-17,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-10-26,['referral-committee'],MI,2023-2024 +read a first time,2023-01-18,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-01,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-01-18,['referral-committee'],MI,2023-2024 +read a first time,2023-11-02,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-08-24,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-05-23,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-04-11,['referral-committee'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-04-27,['introduction'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2023-08-23,['reading-1'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +read a first time,2024-01-23,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-05-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-02-13,['referral-committee'],MI,2023-2024 +rule 71 suspended,2023-04-25,[],MI,2023-2024 +referred to Committee on Government Operations,2024-02-06,['referral-committee'],MI,2023-2024 +adopted,2023-02-09,['passage'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-04-27,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-09-27,[],MI,2023-2024 +RULES SUSPENDED,2023-09-07,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2024-03-06,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +read a first time,2023-09-20,['reading-1'],MI,2023-2024 +read a first time,2023-03-16,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-21,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-01,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-09-19,[],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-19,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-06-08,['referral-committee'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-05,['referral-committee'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-03-02,[],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-01,['referral-committee'],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-10-10,[],MI,2023-2024 +RULES SUSPENDED,2024-05-22,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-05-22,['referral-committee'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-02-29,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-10-05,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-06-07,[],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +read a first time,2023-10-04,['reading-1'],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-04-27,[],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-04-26,['reading-1'],MI,2023-2024 +postponed for the day,2023-01-18,[],MI,2023-2024 +read a first time,2024-03-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-02-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-03-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-05-24,['referral-committee'],MI,2023-2024 +read a first time,2023-04-19,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-04-13,[],MI,2023-2024 +RULES SUSPENDED,2023-03-23,[],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-04-26,[],MI,2023-2024 +read a first time,2023-01-18,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-16,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-02-02,[],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-05-18,['reading-1'],MI,2023-2024 +read a first time,2023-09-27,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-01-12,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +adopted,2023-06-07,['passage'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-02-08,[],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +adopted,2023-09-28,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-07,['referral-committee'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-05-24,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-05-30,['referral-committee'],MI,2023-2024 +adopted,2024-05-21,['passage'],MI,2023-2024 +adopted,2024-05-21,['passage'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-01-12,['referral-committee'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-09-19,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-10-12,['referral-committee'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +read a first time,2023-06-07,['reading-1'],MI,2023-2024 +rule 71 suspended,2024-02-13,[],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-10-04,['referral-committee'],MI,2023-2024 +adopted,2024-06-27,['passage'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +read a first time,2023-02-01,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-05-25,['referral-committee'],MI,2023-2024 +read a first time,2024-02-07,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-03-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-10-24,['referral-committee'],MI,2023-2024 +read a first time,2023-05-11,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2023-11-08,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-01-12,['referral-committee'],MI,2023-2024 +read a first time,2023-10-19,['reading-1'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +adopted,2023-11-01,['passage'],MI,2023-2024 +read a first time,2023-09-13,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-02-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-06-22,['referral-committee'],MI,2023-2024 +read a first time,2023-04-20,['reading-1'],MI,2023-2024 +read a first time,2023-01-18,['reading-1'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2023-06-08,['referral-committee'],MI,2023-2024 +read a first time,2023-05-10,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-10-24,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-09-19,['referral-committee'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +read a first time,2023-02-07,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-02-21,['referral-committee'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-06-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-10-11,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-03,['referral-committee'],MI,2023-2024 +read a first time,2023-05-18,['reading-1'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-10-04,['reading-1'],MI,2023-2024 +read a first time,2023-05-30,['reading-1'],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-09-13,['referral-committee'],MI,2023-2024 +adopted,2023-03-23,['passage'],MI,2023-2024 +read a first time,2023-03-15,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-23,['referral-committee'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +read a first time,2024-02-20,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2024-02-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-03-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-02-29,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-06-27,['referral-committee'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-10-24,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-03-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-05-25,['referral-committee'],MI,2023-2024 +read a first time,2023-09-28,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-05-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-03-08,['referral-committee'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +adopted,2024-02-14,['passage'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-03-16,['referral-committee'],MI,2023-2024 +read a first time,2024-02-27,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +read a first time,2023-01-19,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-03-02,[],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-03-09,['referral-committee'],MI,2023-2024 +read a first time,2023-10-05,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +read a first time,2024-01-23,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-13,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-10-04,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-03-02,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-09-07,['introduction'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-02-01,['referral-committee'],MI,2023-2024 +read a first time,2023-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-04-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-04-19,['referral-committee'],MI,2023-2024 +adopted,2024-02-14,['passage'],MI,2023-2024 +postponed temporarily,2024-02-06,[],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-03-23,['referral-committee'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +read a first time,2023-09-28,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2024-02-14,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-06-08,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-03-15,['reading-1'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +read a first time,2023-03-16,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-03-22,[],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-05-11,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-08,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-04-13,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-03-02,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-05-02,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-01-12,['referral-committee'],MI,2023-2024 +read a first time,2024-01-30,['reading-1'],MI,2023-2024 +read a first time,2023-11-03,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-05-23,['referral-committee'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-03-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-04-26,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2024-01-11,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +postponed for the day,2023-04-26,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2024-02-06,['referral-committee'],MI,2023-2024 +read a first time,2023-09-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-05-02,['reading-1'],MI,2023-2024 +adopted,2023-04-13,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2023-10-04,['reading-1'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-06-27,['referral-committee'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-09-27,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-25,['referral-committee'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +read a first time,2023-01-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-04-19,['reading-1'],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +adopted by unanimous standing vote,2024-03-06,['passage'],MI,2023-2024 +read a first time,2024-02-29,['reading-1'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +read a first time,2023-05-11,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2024-02-07,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-02-07,['referral-committee'],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-03-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-04-27,['referral-committee'],MI,2023-2024 +read a first time,2024-02-29,['reading-1'],MI,2023-2024 +adopted,2023-09-26,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-16,['referral-committee'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-03-02,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2024-01-30,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-06,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +read a first time,2023-11-02,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +read a first time,2023-10-04,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-04-24,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-10-03,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-01-11,[],MI,2023-2024 +RULES SUSPENDED,2023-05-04,[],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-02-01,['reading-1'],MI,2023-2024 +adopted,2023-11-01,['passage'],MI,2023-2024 +adopted,2023-11-09,['passage'],MI,2023-2024 +read a first time,2023-05-18,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-04-19,['referral-committee'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +adopted,2023-03-22,['passage'],MI,2023-2024 +read a first time,2023-10-05,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-01-18,[],MI,2023-2024 +RULES SUSPENDED,2023-09-19,[],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +adopted,2023-01-12,['passage'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-03-23,[],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-02-07,['referral-committee'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-09-20,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-10-19,['referral-committee'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2023-06-27,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2023-05-18,['reading-1'],MI,2023-2024 +read a first time,2023-07-20,['reading-1'],MI,2023-2024 +read a first time,2023-01-18,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-09-20,['referral-committee'],MI,2023-2024 +rule 71 suspended,2023-04-27,[],MI,2023-2024 +read a first time,2024-02-20,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-03-19,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-02-22,['referral-committee'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-02-21,['referral-committee'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-09-14,[],MI,2023-2024 +read a first time,2023-02-07,['reading-1'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-05-24,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-09,['referral-committee'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +read a first time,2023-09-28,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-03-12,['referral-committee'],MI,2023-2024 +adopted,2023-10-12,['passage'],MI,2023-2024 +read a first time,2023-02-01,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +adopted,2023-04-27,['passage'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +adopted,2023-05-24,['passage'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +read a first time,2023-09-12,['reading-1'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +adopted,2023-01-11,['passage'],MI,2023-2024 +adopted,2024-02-07,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-01-19,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-18,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-14,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-09-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-04-25,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-04-13,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-10-03,['referral-committee'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-10,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-02-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-02-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-06-26,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +read a first time,2023-11-03,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-10-17,['referral-committee'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-09-20,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-10-04,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-13,['referral-committee'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2023-05-17,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-04-20,['reading-1'],MI,2023-2024 +read a first time,2023-06-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-01-18,['referral-committee'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-01-12,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-03-13,[],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2024-01-11,['referral-committee'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-02-02,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-09-19,[],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-03-23,['referral-committee'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-11-01,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-09-20,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-05-25,['referral-committee'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +adopted,2023-05-04,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-06,['referral-committee'],MI,2023-2024 +read a first time,2023-02-01,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2023-09-12,['referral-committee'],MI,2023-2024 +read a first time,2024-02-14,['reading-1'],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-02-07,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-16,['referral-committee'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +adopted,2023-06-27,['passage'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2024-02-21,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-10-24,['referral-committee'],MI,2023-2024 +adopted,2023-05-11,['passage'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-01-17,['referral-committee'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-03-21,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-02-08,['referral-committee'],MI,2023-2024 +rule 71 suspended,2023-11-09,[],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-02-07,[],MI,2023-2024 +adopted,2023-04-13,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-09-26,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-02-16,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-06,['referral-committee'],MI,2023-2024 +read a first time,2023-09-19,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-09-28,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-10-10,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-06-13,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-01-12,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-04-20,['referral-committee'],MI,2023-2024 +adopted,2023-03-08,['passage'],MI,2023-2024 +read a first time,2023-09-19,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2023-03-22,['reading-1'],MI,2023-2024 +read a first time,2024-02-14,['reading-1'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-10-04,['referral-committee'],MI,2023-2024 +adopted,2023-05-11,['passage'],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2024-01-17,['referral-committee'],MI,2023-2024 +read a first time,2023-03-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-10-11,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-03-08,['referral-committee'],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +read a first time,2023-09-13,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-14,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-06-27,['reading-1'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-02-15,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-10-10,[],MI,2023-2024 +rule 71 suspended,2023-03-23,[],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2023-11-03,['reading-1'],MI,2023-2024 +read a first time,2024-02-07,['reading-1'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-03-22,[],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +read a first time,2023-02-01,['reading-1'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-05-11,['referral-committee'],MI,2023-2024 +read a first time,2024-02-07,['reading-1'],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-22,['referral-committee'],MI,2023-2024 +read a first time,2024-01-30,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-11-08,['referral-committee'],MI,2023-2024 +adopted,2024-03-05,['passage'],MI,2023-2024 +adopted,2024-03-19,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-02-09,['referral-committee'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-10-24,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-10-03,['referral-committee'],MI,2023-2024 +read a first time,2024-03-13,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-06-27,['referral-committee'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-04-13,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-04-11,['referral-committee'],MI,2023-2024 +postponed for the day,2023-02-15,[],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-09-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-06-27,['referral-committee'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-16,['referral-committee'],MI,2023-2024 +read a first time,2023-05-09,['reading-1'],MI,2023-2024 +read a first time,2023-10-05,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-01-17,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-01-12,['referral-committee'],MI,2023-2024 +read a first time,2023-10-19,['reading-1'],MI,2023-2024 +read a first time,2023-05-30,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-10-05,['referral-committee'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +adopted,2023-03-02,['passage'],MI,2023-2024 +read a first time,2023-06-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-03-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-03-06,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-01,['referral-committee'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +adopted,2023-03-08,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-02,['referral-committee'],MI,2023-2024 +read a first time,2024-03-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-06-13,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2023-10-03,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-01-11,[],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +adopted,2023-05-03,['passage'],MI,2023-2024 +read a first time,2023-05-11,['reading-1'],MI,2023-2024 +read a first time,2023-01-19,['reading-1'],MI,2023-2024 +read a first time,2023-06-13,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +read a first time,2023-09-20,['reading-1'],MI,2023-2024 +read a first time,2024-01-30,['reading-1'],MI,2023-2024 +read a first time,2023-03-22,['reading-1'],MI,2023-2024 +read a first time,2023-05-11,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-11-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-02-01,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-01-17,['referral-committee'],MI,2023-2024 +postponed for the day,2023-02-15,[],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-11-09,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +adopted,2024-05-14,['passage'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +read a first time,2023-01-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-04-26,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-07-20,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-05-24,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-01-17,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-04-17,['referral-committee'],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +read a first time,2024-02-20,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-05-25,['referral-committee'],MI,2023-2024 +read a first time,2023-10-04,['reading-1'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-05-11,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-02-22,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-05-02,['referral-committee'],MI,2023-2024 +rule 71 suspended,2023-06-22,[],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +substitute (H-1) adopted,2024-03-13,[],MI,2023-2024 +read a first time,2023-05-30,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-09-28,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-10-26,['referral-committee'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-03-14,['referral-committee'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-01-25,['referral-committee'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +read a first time,2024-02-13,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-17,['referral-committee'],MI,2023-2024 +read a first time,2023-04-19,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-03-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-06-15,['referral-committee'],MI,2023-2024 +read a first time,2024-02-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-04-12,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-03-02,['referral-committee'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-04-19,['reading-1'],MI,2023-2024 +adopted,2023-01-11,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-01-12,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-03-13,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-03-21,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-09-27,['referral-committee'],MI,2023-2024 +read a first time,2023-08-23,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +read a first time,2024-02-13,['reading-1'],MI,2023-2024 +read a first time,2024-02-07,['reading-1'],MI,2023-2024 +read a first time,2023-03-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2024-01-18,['referral-committee'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-05-17,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-03-05,[],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +read a first time,2023-01-18,['reading-1'],MI,2023-2024 +read a first time,2023-06-13,['reading-1'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-03-02,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-04-26,['referral-committee'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +read a first time,2023-04-19,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2024-06-25,['referral-committee'],MI,2023-2024 +read a first time,2023-01-18,['reading-1'],MI,2023-2024 +read a first time,2023-10-04,['reading-1'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +rule 71 suspended,2023-05-09,[],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-01-18,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-03-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-09-27,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +adopted,2023-06-07,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-04-27,[],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +read a first time,2023-06-13,['reading-1'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +read a first time,2023-05-09,['reading-1'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +adopted,2023-02-08,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-22,['referral-committee'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-02-28,[],MI,2023-2024 +referred to Committee on Government Operations,2023-10-03,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +adopted,2023-03-21,['passage'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-09-19,['referral-committee'],MI,2023-2024 +read a first time,2023-05-30,['reading-1'],MI,2023-2024 +read a first time,2023-05-03,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-01-11,['referral-committee'],MI,2023-2024 +rule 71 suspended,2023-02-08,[],MI,2023-2024 +read a first time,2024-02-20,['reading-1'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-03-22,['referral-committee'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-25,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-25,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-01-18,['referral-committee'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-04-10,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-04-10,[],MI,2023-2024 +introduced by Representative Sharon MacDonell,2023-06-15,['introduction'],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-05-07,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-05-07,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-05-07,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-05-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-06-27,['referral-committee'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2024-05-07,['referral-committee'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-05-07,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-05-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-05-07,['referral-committee'],MI,2023-2024 +introduced by Representative Sarah Lightner,2024-01-10,['introduction'],MI,2023-2024 +RULES SUSPENDED,2024-04-09,[],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-03-23,['referral-committee'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-04-09,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-04-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2024-04-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-04-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-04-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2024-04-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-04-09,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-04-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-04-09,['referral-committee'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-05-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-01-11,['referral-committee'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-04-16,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2024-04-16,['referral-committee'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-06-06,['reading-1'],MI,2023-2024 +adopted,2024-06-18,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-18,['referral-committee'],MI,2023-2024 +read a first time,2024-04-23,['reading-1'],MI,2023-2024 +read a first time,2024-05-16,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-18,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-04-17,[],MI,2023-2024 +read a first time,2024-01-16,['reading-1'],MI,2023-2024 +read a first time,2024-03-13,['reading-1'],MI,2023-2024 +introduced by Representative Tullio Liberati,2024-03-20,['introduction'],MI,2023-2024 +read a first time,2023-10-18,['reading-1'],MI,2023-2024 +adopted,2024-04-30,['passage'],MI,2023-2024 +adopted,2024-05-02,['passage'],MI,2023-2024 +read a first time,2023-05-09,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-05-02,['referral-committee'],MI,2023-2024 +introduced by Representative Matt Bierlein,2023-09-27,['introduction'],MI,2023-2024 +RULES SUSPENDED,2024-05-02,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-05-02,['referral-committee'],MI,2023-2024 +read a first time,2024-06-04,['reading-1'],MI,2023-2024 +read a first time,2024-06-04,['reading-1'],MI,2023-2024 +read a first time,2024-06-04,['reading-1'],MI,2023-2024 +read a first time,2024-08-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-05-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-09-20,['referral-committee'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2024-03-07,['introduction'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-06,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-06,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-06-06,['referral-committee'],MI,2023-2024 +AMENDMENT(S) WITHDRAWN,2024-05-09,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-03-07,['introduction'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +substitute (H-1) adopted,2024-06-13,[],MI,2023-2024 +read a first time,2024-08-13,['reading-1'],MI,2023-2024 +read a first time,2024-08-13,['reading-1'],MI,2023-2024 +read a first time,2024-08-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-10-03,['referral-committee'],MI,2023-2024 +read a first time,2024-08-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2024-01-18,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-13,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-13,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-04-19,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2023-09-20,['reading-1'],MI,2023-2024 +read a first time,2023-09-20,['reading-1'],MI,2023-2024 +rule 71 suspended,2024-05-01,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-09,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-02-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-09-20,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-09-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-10-24,['referral-committee'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-05-24,['referral-committee'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-03-13,['referral-committee'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +introduced by Representative Denise Mentzer,2024-05-21,['introduction'],MI,2023-2024 +introduced by Representative Matt Koleszar,2023-10-26,['introduction'],MI,2023-2024 +read a first time,2024-02-21,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2024-05-21,['reading-1'],MI,2023-2024 +read a first time,2024-05-23,['reading-1'],MI,2023-2024 +read a first time,2024-05-23,['reading-1'],MI,2023-2024 +read a first time,2024-05-23,['reading-1'],MI,2023-2024 +read a first time,2024-05-23,['reading-1'],MI,2023-2024 +read a first time,2024-05-23,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-30,['referral-committee'],MI,2023-2024 +read a first time,2024-05-01,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2024-04-30,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-08-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-08-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-04-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-06-12,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-05-30,['referral-committee'],MI,2023-2024 +read a first time,2023-10-05,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-05-30,['referral-committee'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-05-30,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-05-30,['referral-committee'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-02-01,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-09-17,[],MI,2023-2024 +read a first time,2024-09-17,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-09-17,['referral-committee'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2024-04-24,['reading-1'],MI,2023-2024 +read a first time,2024-04-24,['reading-1'],MI,2023-2024 +read a first time,2024-04-24,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-12,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-06-12,[],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-12,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-12,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +adopted,2024-06-11,['passage'],MI,2023-2024 +read a first time,2023-10-19,['reading-1'],MI,2023-2024 +read a first time,2024-06-12,['reading-1'],MI,2023-2024 +adopted,2024-06-11,['passage'],MI,2023-2024 +read a first time,2024-07-30,['reading-1'],MI,2023-2024 +read a first time,2024-07-30,['reading-1'],MI,2023-2024 +read a first time,2024-07-30,['reading-1'],MI,2023-2024 +read a first time,2024-07-30,['reading-1'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-07-30,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-07-30,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-07-30,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-07-30,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-07-30,['referral-committee'],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +read a first time,2024-03-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-07-30,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-06-14,['referral-committee'],MI,2023-2024 +INTRODUCED BY SENATOR STEPHANIE CHANG,2023-10-24,['introduction'],MI,2023-2024 +adopted by unanimous standing vote,2024-06-11,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-09-13,['referral-committee'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-05-14,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-06-21,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-09-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-09-11,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-09-11,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-09-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-09-11,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-09-11,['referral-committee'],MI,2023-2024 +introduced by Representative Penelope Tsernoglou,2023-10-12,['introduction'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-05-23,[],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +adopted,2024-04-24,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-24,['referral-committee'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-05-04,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-04-24,[],MI,2023-2024 +RULES SUSPENDED,2024-05-22,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-05-22,['referral-committee'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-05-22,[],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-10-03,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2024-05-22,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-05-22,['referral-committee'],MI,2023-2024 +adopted,2024-03-19,['passage'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +rule 71 suspended,2024-02-14,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-02-21,['referral-committee'],MI,2023-2024 +read a first time,2024-02-27,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +adopted,2023-10-18,['passage'],MI,2023-2024 +read a first time,2024-02-01,['reading-1'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-19,['referral-committee'],MI,2023-2024 +read a first time,2024-05-01,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-10-03,['referral-committee'],MI,2023-2024 +read a first time,2023-11-03,['reading-1'],MI,2023-2024 +read a first time,2023-02-01,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +read a first time,2023-01-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-03-21,['referral-committee'],MI,2023-2024 +read a first time,2023-03-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-06,['referral-committee'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-04-27,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-14,['referral-committee'],MI,2023-2024 +read a first time,2024-01-30,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +read a first time,2023-05-11,['reading-1'],MI,2023-2024 +read a first time,2023-04-19,['reading-1'],MI,2023-2024 +referred to Committee on Appropriations,2023-01-24,['referral-committee'],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-05-11,['referral-committee'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-13,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-01-17,['referral-committee'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-02,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-04-11,['referral-committee'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +postponed for the day,2023-05-02,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-02-21,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-06-28,['referral-committee'],MI,2023-2024 +adopted,2024-02-21,['passage'],MI,2023-2024 +read a first time,2024-03-13,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-09-19,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-04-19,['referral-committee'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2024-06-12,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2024-02-20,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-03-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-01-26,['referral-committee'],MI,2023-2024 +adopted,2023-03-02,['passage'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-11-07,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-13,['referral-committee'],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +adopted,2024-05-09,['passage'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-06,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2023-06-06,['reading-1'],MI,2023-2024 +adopted,2023-05-02,['passage'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2023-05-30,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-03-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-10-24,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-01-17,['referral-committee'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +adopted,2023-09-06,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-03-05,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-04-25,['referral-committee'],MI,2023-2024 +read a first time,2023-09-27,['reading-1'],MI,2023-2024 +read a first time,2023-03-22,['reading-1'],MI,2023-2024 +read a first time,2023-10-19,['reading-1'],MI,2023-2024 +read a first time,2023-03-22,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +read a first time,2023-09-13,['reading-1'],MI,2023-2024 +read a first time,2023-09-12,['reading-1'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-27,['referral-committee'],MI,2023-2024 +read a first time,2023-06-13,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +read a first time,2024-03-06,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2024-06-12,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +introduced by Representative Jimmie Wilson,2023-03-09,['introduction'],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-23,['referral-committee'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-01-19,['referral-committee'],MI,2023-2024 +read a first time,2023-10-05,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-02,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-03-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-09-13,['referral-committee'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-05-24,['referral-committee'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-10-03,[],MI,2023-2024 +read a first time,2023-03-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-10-12,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2023-10-10,['introduction'],MI,2023-2024 +read a first time,2023-03-16,['reading-1'],MI,2023-2024 +read a first time,2023-01-24,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-03-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-05-03,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-03-02,['referral-committee'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-03-07,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-02,['referral-committee'],MI,2023-2024 +postponed for the day,2023-02-15,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-05-23,['referral-committee'],MI,2023-2024 +adopted,2023-03-01,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-09-07,['referral-committee'],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-03-13,['referral-committee'],MI,2023-2024 +read a first time,2023-06-27,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +adopted,2023-05-02,['passage'],MI,2023-2024 +read a first time,2023-04-26,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-04-13,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-01-26,['referral-committee'],MI,2023-2024 +read a first time,2023-09-28,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-03-19,['referral-committee'],MI,2023-2024 +read a first time,2024-06-18,['reading-1'],MI,2023-2024 +adopted,2024-04-18,['passage'],MI,2023-2024 +rule 71 suspended,2024-04-18,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-05-09,['referral-committee'],MI,2023-2024 +rule 71 suspended,2024-04-18,[],MI,2023-2024 +read a first time,2024-03-13,['reading-1'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-11-03,['reading-1'],MI,2023-2024 +read a first time,2023-01-18,['reading-1'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-09-26,['referral-committee'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2023-01-18,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2024-06-18,['reading-1'],MI,2023-2024 +adopted,2024-03-05,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-03-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-02-16,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-18,['referral-committee'],MI,2023-2024 +read a first time,2023-02-01,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-01-24,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-10-19,['referral-committee'],MI,2023-2024 +adopted,2024-04-18,['passage'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +adopted,2023-01-11,['passage'],MI,2023-2024 +read a first time,2024-03-06,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +RULES SUSPENDED,2024-04-23,[],MI,2023-2024 +adopted,2024-04-23,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-23,['referral-committee'],MI,2023-2024 +read a first time,2023-11-03,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2024-02-22,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2024-01-18,['reading-1'],MI,2023-2024 +read a first time,2024-06-18,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2024-01-18,['reading-1'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-03-14,['referral-committee'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-04-11,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-09-19,[],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-23,['referral-committee'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-03-09,['referral-committee'],MI,2023-2024 +read a first time,2023-05-03,['reading-1'],MI,2023-2024 +read a first time,2023-05-02,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-06-28,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-09-19,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-01-11,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-10-11,['referral-committee'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-06-13,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-24,['referral-committee'],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-06-20,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-06-26,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2023-03-23,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-03-15,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-09-19,[],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +INTRODUCED BY SENATOR MARY CAVANAGH,2023-10-17,['introduction'],MI,2023-2024 +read a first time,2023-02-07,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2024-01-30,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-01-11,[],MI,2023-2024 +read a first time,2024-03-13,['reading-1'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +adopted,2023-02-08,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-02,['referral-committee'],MI,2023-2024 +read a first time,2023-09-20,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-09-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2024-02-28,['referral-committee'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2023-02-02,['reading-1'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-10-26,['referral-committee'],MI,2023-2024 +read a first time,2024-02-28,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +substitute (H-1) adopted,2023-10-10,[],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-06-15,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2024-02-29,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-17,['referral-committee'],MI,2023-2024 +read a first time,2023-01-24,['reading-1'],MI,2023-2024 +read a first time,2023-05-09,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +read a first time,2023-09-28,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-01-18,['referral-committee'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-05-25,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +adopted,2023-05-16,['passage'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +read a first time,2024-06-18,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +read a first time,2023-09-28,['reading-1'],MI,2023-2024 +rule 71 suspended,2023-02-28,[],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2023-04-20,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2023-10-24,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2024-02-13,['reading-1'],MI,2023-2024 +read a first time,2023-03-15,['reading-1'],MI,2023-2024 +read a first time,2023-05-02,['reading-1'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +rule 71 suspended,2024-03-19,[],MI,2023-2024 +rule 71 suspended,2023-01-18,[],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-09-13,['reading-1'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-06-22,['referral-committee'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2024-02-07,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-06-22,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-04-27,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-06-07,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-02-29,['referral-committee'],MI,2023-2024 +read a first time,2024-06-18,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-01-12,['referral-committee'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2023-11-01,['reading-1'],MI,2023-2024 +read a first time,2023-04-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-03,['referral-committee'],MI,2023-2024 +adopted,2023-11-09,['passage'],MI,2023-2024 +read a first time,2023-01-24,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-06,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-01-11,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-04-20,['referral-committee'],MI,2023-2024 +adopted,2023-09-20,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-06-15,['referral-committee'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +read a first time,2023-02-01,['reading-1'],MI,2023-2024 +read a first time,2023-06-06,['reading-1'],MI,2023-2024 +read a first time,2023-05-09,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-03-12,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-09-14,['referral-committee'],MI,2023-2024 +adopted,2023-09-19,['passage'],MI,2023-2024 +adopted,2023-11-01,['passage'],MI,2023-2024 +read a first time,2023-04-19,['reading-1'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-03-12,['referral-committee'],MI,2023-2024 +adopted,2024-02-07,['passage'],MI,2023-2024 +read a first time,2024-06-18,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-04-19,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-02-02,['reading-1'],MI,2023-2024 +read a first time,2024-03-13,['reading-1'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +read a first time,2023-05-03,['reading-1'],MI,2023-2024 +read a first time,2024-06-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-02-07,['referral-committee'],MI,2023-2024 +read a first time,2023-05-09,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-23,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-06,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-23,['referral-committee'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-03,['referral-committee'],MI,2023-2024 +rule 71 suspended,2023-01-18,[],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +read a first time,2023-05-30,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-01-12,['referral-committee'],MI,2023-2024 +rule 71 suspended,2024-02-14,[],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-06-22,['referral-committee'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-01-17,['referral-committee'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-04-19,['reading-1'],MI,2023-2024 +adopted,2023-02-09,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-03-21,['referral-committee'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-02-01,['referral-committee'],MI,2023-2024 +adopted,2023-01-12,['passage'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-06-20,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-04-11,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-10-11,['referral-committee'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-03-16,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-01,['referral-committee'],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-21,['referral-committee'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-05-18,['referral-committee'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-14,['referral-committee'],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-01-19,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-05-03,[],MI,2023-2024 +RULES SUSPENDED,2023-06-06,[],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2024-03-07,['referral-committee'],MI,2023-2024 +read a first time,2023-11-03,['reading-1'],MI,2023-2024 +read a first time,2023-06-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-02-07,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-05,['referral-committee'],MI,2023-2024 +read a first time,2024-02-20,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-04-20,['referral-committee'],MI,2023-2024 +adopted,2023-05-02,['passage'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +postponed for the day,2023-05-02,[],MI,2023-2024 +RULES SUSPENDED,2023-09-27,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +read a first time,2024-02-07,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-01,['referral-committee'],MI,2023-2024 +postponed for the day,2023-04-26,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +adopted,2023-10-17,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-10-26,['referral-committee'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-07-20,['referral-committee'],MI,2023-2024 +read a first time,2024-02-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2024-06-26,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-02-14,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-09-19,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-05-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-10-24,['referral-committee'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-01-17,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-04-19,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-09-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-09-27,['referral-committee'],MI,2023-2024 +adopted,2024-03-13,['passage'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-03-05,[],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +adopted,2023-09-14,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-01-19,['referral-committee'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-09-12,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-04-20,[],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +read a first time,2024-05-01,['reading-1'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2024-06-20,['reading-1'],MI,2023-2024 +adopted,2023-06-22,['passage'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-03-21,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-10-11,['referral-committee'],MI,2023-2024 +substitute (H-1) adopted,2023-09-12,[],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-03-02,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-04-11,['referral-committee'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2023-01-24,['reading-1'],MI,2023-2024 +read a first time,2023-03-22,['reading-1'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-09-12,['referral-committee'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-10-03,['reading-1'],MI,2023-2024 +read a first time,2023-06-06,['reading-1'],MI,2023-2024 +rule 71 suspended,2023-04-27,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2024-02-01,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +substitute (H-1) adopted,2023-05-03,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-03-14,['referral-committee'],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +read a first time,2023-11-02,['reading-1'],MI,2023-2024 +read a first time,2023-09-20,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-02-16,[],MI,2023-2024 +rule 71 suspended,2023-11-09,[],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-11-09,['referral-committee'],MI,2023-2024 +introduced by Representative Angela Witwer,2023-02-14,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-09-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-03-23,['referral-committee'],MI,2023-2024 +read a first time,2023-11-01,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-11,['referral-committee'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-05-23,['referral-committee'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2023-04-12,['referral-committee'],MI,2023-2024 +read a first time,2024-02-20,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-03-21,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-10-12,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-10-11,['reading-1'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-04-27,['referral-committee'],MI,2023-2024 +adopted,2024-03-13,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-06,['referral-committee'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-03-09,['referral-committee'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +rule 71 suspended,2023-02-09,[],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-10-03,['referral-committee'],MI,2023-2024 +adopted,2023-09-13,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-11-09,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-09-27,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-03-12,['referral-committee'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +adopted,2023-06-27,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-04-25,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-03-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-11-02,['referral-committee'],MI,2023-2024 +rule 71 suspended,2024-03-19,[],MI,2023-2024 +adopted,2023-04-27,['passage'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-06-21,['reading-1'],MI,2023-2024 +read a first time,2023-02-02,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-09-26,['referral-committee'],MI,2023-2024 +read a first time,2023-03-16,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-23,['referral-committee'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +adopted,2023-05-02,['passage'],MI,2023-2024 +read a first time,2023-05-11,['reading-1'],MI,2023-2024 +rule 71 suspended,2023-04-13,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-04-16,['referral-committee'],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +read a first time,2024-02-20,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-09-27,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-02-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2023-01-12,['referral-committee'],MI,2023-2024 +adopted,2023-03-21,['passage'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-04-20,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-10-19,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-02,['referral-committee'],MI,2023-2024 +read a first time,2023-02-07,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-02-07,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-10-11,['referral-committee'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-10-10,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-01,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-11-08,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-10-04,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-02,['referral-committee'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +adopted,2023-02-08,['passage'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-04-25,['referral-committee'],MI,2023-2024 +read a first time,2023-05-09,['reading-1'],MI,2023-2024 +read a first time,2023-05-09,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-04-12,[],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-04-25,['referral-committee'],MI,2023-2024 +read a first time,2023-02-02,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-09-20,['referral-committee'],MI,2023-2024 +read a first time,2023-01-31,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2024-02-01,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-06-26,[],MI,2023-2024 +read a first time,2023-04-19,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-04-20,['referral-committee'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +rule 71 suspended,2023-04-19,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-08-24,['referral-committee'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-10-26,['referral-committee'],MI,2023-2024 +adopted by unanimous standing vote,2024-01-17,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-02-07,['referral-committee'],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-10-03,['reading-1'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-04-27,['referral-committee'],MI,2023-2024 +adopted,2023-02-01,['passage'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +adopted,2023-10-31,['passage'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +read a first time,2024-03-06,['reading-1'],MI,2023-2024 +adopted,2024-05-08,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-10-05,['referral-committee'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2024-03-12,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +read a first time,2024-03-12,['reading-1'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-03-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-10-11,['referral-committee'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-04-24,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-09-07,['referral-committee'],MI,2023-2024 +read a first time,2024-03-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2024-03-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-09-13,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-02-01,['referral-committee'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +read a first time,2024-02-07,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-09-14,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-02-01,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-02-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-06,['referral-committee'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-05-18,['referral-committee'],MI,2023-2024 +read a first time,2023-01-31,['reading-1'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-09-07,[],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-02-14,[],MI,2023-2024 +RULES SUSPENDED,2023-04-27,[],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-03-15,[],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-11-08,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-19,['referral-committee'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-04-13,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-06-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-09-14,['referral-committee'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +read a first time,2024-03-13,['reading-1'],MI,2023-2024 +rule 71 suspended,2023-06-27,[],MI,2023-2024 +read a first time,2023-04-26,['reading-1'],MI,2023-2024 +adopted,2023-10-25,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-03-08,[],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +read a first time,2024-02-13,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +adopted,2023-05-03,['passage'],MI,2023-2024 +read a first time,2023-02-01,['reading-1'],MI,2023-2024 +adopted,2023-01-11,['passage'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +adopted,2023-01-18,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-03-13,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2024-03-13,['referral-committee'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-03-12,['referral-committee'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2023-10-03,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-04-19,['referral-committee'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-09-27,['referral-committee'],MI,2023-2024 +read a first time,2023-03-16,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-02-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-01-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-09-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-09-07,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-01-31,['referral-committee'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-12,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-01-12,['referral-committee'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-02-14,['referral-committee'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-07-20,['referral-committee'],MI,2023-2024 +read a first time,2023-09-28,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-04-27,['referral-committee'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2023-01-17,['referral-committee'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +read a first time,2024-03-12,['reading-1'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-03-07,['referral-committee'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-05-09,['referral-committee'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-04-27,[],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-12,['referral-committee'],MI,2023-2024 +read a first time,2023-09-05,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-03-06,['referral-committee'],MI,2023-2024 +read a first time,2023-06-07,['reading-1'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +read a first time,2023-05-03,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-06-06,['referral-committee'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-14,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-16,['referral-committee'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-06-27,[],MI,2023-2024 +RULES SUSPENDED,2024-06-12,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +substitute (H-1) offered,2023-05-23,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-12,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-04-27,[],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-12,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-06-15,['referral-committee'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-10-03,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-05-01,['referral-committee'],MI,2023-2024 +read a first time,2024-04-23,['reading-1'],MI,2023-2024 +read a first time,2024-06-13,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2024-02-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +read a first time,2023-10-04,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-12,['referral-committee'],MI,2023-2024 +read a first time,2023-09-28,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-07-20,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-02-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-04-25,['referral-committee'],MI,2023-2024 +read a first time,2023-07-20,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-23,['referral-committee'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-01-19,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-06-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-06-06,['referral-committee'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-10-03,['referral-committee'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2023-05-11,['referral-committee'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-02-28,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-03-21,['referral-committee'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +adopted,2023-02-28,['passage'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +read a first time,2023-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-02-29,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-01,['referral-committee'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-01-24,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-04-19,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-03-09,['referral-committee'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-02-01,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-06-06,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-09-12,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-05-30,['reading-1'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-04-19,['referral-committee'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-02-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-06-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2023-06-13,['reading-1'],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +read a first time,2023-07-19,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-03-13,['referral-committee'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-06,['referral-committee'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2023-01-25,['referral-committee'],MI,2023-2024 +read a first time,2024-05-01,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-29,['referral-committee'],MI,2023-2024 +introduced by Representative Matt Bierlein,2023-10-12,['introduction'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-11,['referral-committee'],MI,2023-2024 +adopted,2024-06-11,['passage'],MI,2023-2024 +adopted,2024-04-18,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2023-06-08,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-06-13,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2024-05-22,['referral-committee'],MI,2023-2024 +read a first time,2023-11-01,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-09-26,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-02-22,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-09-26,['referral-committee'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-05-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-06-26,['referral-committee'],MI,2023-2024 +adopted,2024-02-13,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2024-01-17,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-01-18,['referral-committee'],MI,2023-2024 +read a first time,2023-05-17,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-04-10,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-03-02,[],MI,2023-2024 +read a first time,2023-09-19,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2024-06-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-09-07,['referral-committee'],MI,2023-2024 +read a first time,2023-09-20,['reading-1'],MI,2023-2024 +read a first time,2023-01-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-04-12,['referral-committee'],MI,2023-2024 +read a first time,2023-03-22,['reading-1'],MI,2023-2024 +adopted,2024-03-19,['passage'],MI,2023-2024 +read a first time,2023-09-28,['reading-1'],MI,2023-2024 +read a first time,2024-06-12,['reading-1'],MI,2023-2024 +read a first time,2024-01-10,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +adopted,2023-02-28,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2024-07-30,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-05-16,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-05-16,[],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2024-07-30,['reading-1'],MI,2023-2024 +read a first time,2023-10-19,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2024-06-06,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-05-16,['referral-committee'],MI,2023-2024 +read a first time,2024-07-30,['reading-1'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-08,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-06-04,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-06-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2023-11-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2024-06-06,['referral-committee'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-09-28,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-11-08,['referral-committee'],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-01-10,[],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +read a first time,2024-04-30,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-06-27,['referral-committee'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2024-01-11,['referral-committee'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-05-01,[],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +adopted,2024-05-01,['passage'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +adopted,2023-05-04,['passage'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +read a first time,2024-05-01,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-09-06,['referral-committee'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-04-25,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-02-22,['referral-committee'],MI,2023-2024 +adopted,2023-01-18,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +read a first time,2023-01-31,['reading-1'],MI,2023-2024 +read a first time,2023-08-24,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-02-06,['referral-committee'],MI,2023-2024 +read a first time,2023-09-28,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-10-24,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-06-26,['referral-committee'],MI,2023-2024 +rule 71 suspended,2023-04-25,[],MI,2023-2024 +INTRODUCED BY SENATOR JEFF IRWIN,2024-03-07,['introduction'],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +read a first time,2024-03-13,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-17,['referral-committee'],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-14,['referral-committee'],MI,2023-2024 +read a first time,2023-05-11,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-09-20,['referral-committee'],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-01-17,['referral-committee'],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +read a first time,2024-06-12,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-08-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-04-25,['referral-committee'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-19,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +read a first time,2023-06-27,['reading-1'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-15,['referral-committee'],MI,2023-2024 +adopted,2024-05-15,['passage'],MI,2023-2024 +read a first time,2024-06-13,['reading-1'],MI,2023-2024 +adopted,2023-05-09,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-02-01,['referral-committee'],MI,2023-2024 +read a first time,2024-02-13,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-11-09,['referral-committee'],MI,2023-2024 +adopted,2024-05-15,['passage'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-02-16,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-05-02,['referral-committee'],MI,2023-2024 +adopted,2024-05-14,['passage'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-10-24,['referral-committee'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +adopted,2023-03-01,['passage'],MI,2023-2024 +read a first time,2023-11-02,['reading-1'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2023-06-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-03-14,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-10-18,[],MI,2023-2024 +read a first time,2023-05-11,['reading-1'],MI,2023-2024 +adopted,2024-05-14,['passage'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-10-11,['reading-1'],MI,2023-2024 +read a first time,2024-01-30,['reading-1'],MI,2023-2024 +read a first time,2023-09-12,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-13,['referral-committee'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-08-15,['referral-committee'],MI,2023-2024 +read a first time,2023-09-19,['reading-1'],MI,2023-2024 +adopted by unanimous standing vote,2024-01-17,['passage'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-10-03,['reading-1'],MI,2023-2024 +adopted,2024-03-05,['passage'],MI,2023-2024 +read a first time,2023-05-11,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-08-15,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-05-24,[],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-07,['referral-committee'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-01-18,['reading-1'],MI,2023-2024 +read a first time,2024-07-30,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-06-22,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-02,['referral-committee'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-08-15,['referral-committee'],MI,2023-2024 +read a first time,2023-09-20,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +read a first time,2023-07-20,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2024-02-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-02-07,['referral-committee'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2024-03-13,['referral-committee'],MI,2023-2024 +read a first time,2024-01-18,['reading-1'],MI,2023-2024 +read a first time,2023-05-11,['reading-1'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +read a first time,2023-09-20,['reading-1'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-04-25,[],MI,2023-2024 +read a first time,2023-09-20,['reading-1'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-08-15,['referral-committee'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-05-11,['referral-committee'],MI,2023-2024 +read a first time,2023-10-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-04-27,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-06-13,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-05-16,[],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2024-03-07,['introduction'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-02-07,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-10-04,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2024-05-01,['referral-committee'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-18,['referral-committee'],MI,2023-2024 +read a first time,2023-06-27,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-02-20,[],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-10-26,['referral-committee'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +read a first time,2023-08-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-09-26,['referral-committee'],MI,2023-2024 +adopted,2024-03-13,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-04-13,['referral-committee'],MI,2023-2024 +read a first time,2023-09-27,['reading-1'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-03-23,['referral-committee'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +adopted,2024-05-14,['passage'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2023-02-02,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-08-24,['referral-committee'],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-03-02,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-09-13,['referral-committee'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +adopted by unanimous standing vote,2023-02-15,['passage'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-10-19,['referral-committee'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-01-24,[],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-09-13,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +read a first time,2023-06-13,['reading-1'],MI,2023-2024 +read a first time,2023-09-19,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-03-09,['referral-committee'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +read a first time,2023-06-27,['reading-1'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-08-15,['referral-committee'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +read a first time,2023-01-19,['reading-1'],MI,2023-2024 +adopted,2023-05-09,['passage'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2024-03-07,['introduction'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-09-26,['referral-committee'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-03-01,['referral-committee'],MI,2023-2024 +adopted,2023-01-12,['passage'],MI,2023-2024 +read a first time,2024-06-04,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-01-26,[],MI,2023-2024 +adopted,2023-06-14,['passage'],MI,2023-2024 +read a first time,2023-05-09,['reading-1'],MI,2023-2024 +read a first time,2023-01-31,['reading-1'],MI,2023-2024 +read a first time,2024-01-16,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2024-04-23,['reading-1'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-05-25,['referral-committee'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +postponed for the day,2023-04-12,[],MI,2023-2024 +adopted,2023-03-23,['passage'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2023-09-28,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2024-03-13,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +adopted,2023-01-26,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2023-06-07,['reading-1'],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-04-26,['referral-committee'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +read a first time,2024-04-23,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +read a first time,2024-01-23,['reading-1'],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-04-11,[],MI,2023-2024 +read a first time,2023-04-19,['reading-1'],MI,2023-2024 +read a first time,2023-10-04,['reading-1'],MI,2023-2024 +adopted,2023-04-20,['passage'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +adopted,2023-02-28,['passage'],MI,2023-2024 +read a first time,2024-04-18,['reading-1'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2024-04-18,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-07-20,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2024-06-13,['referral-committee'],MI,2023-2024 +read a first time,2024-04-23,['reading-1'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +rule 71 suspended,2023-06-07,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-04-27,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +adopted,2024-01-17,['passage'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2024-04-18,['reading-1'],MI,2023-2024 +read a first time,2024-02-13,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-09-14,[],MI,2023-2024 +read a first time,2024-06-12,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-12,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-08-24,['referral-committee'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-05-24,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-13,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-03-14,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-16,['referral-committee'],MI,2023-2024 +read a first time,2024-01-16,['reading-1'],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +adopted,2024-02-28,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-06-08,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-09-12,['referral-committee'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +read a first time,2023-10-03,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-16,['referral-committee'],MI,2023-2024 +read a first time,2024-04-23,['reading-1'],MI,2023-2024 +adopted,2024-05-01,['passage'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-02-13,['referral-committee'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2024-05-01,['referral-committee'],MI,2023-2024 +read a first time,2023-06-13,['reading-1'],MI,2023-2024 +read a first time,2023-01-18,['reading-1'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-09-26,['referral-committee'],MI,2023-2024 +adopted,2023-10-05,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-03-09,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2024-06-05,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-01-25,['referral-committee'],MI,2023-2024 +read a first time,2024-06-05,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-04-11,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2024-06-05,['reading-1'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2024-06-12,['reading-1'],MI,2023-2024 +read a first time,2023-06-06,['reading-1'],MI,2023-2024 +adopted,2023-03-16,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +adopted by unanimous standing vote,2024-01-17,['passage'],MI,2023-2024 +adopted,2024-05-01,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-03-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-03,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +read a first time,2024-04-18,['reading-1'],MI,2023-2024 +read a first time,2023-10-04,['reading-1'],MI,2023-2024 +read a first time,2024-02-13,['reading-1'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-05-17,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-04-24,['referral-committee'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-09-06,['referral-committee'],MI,2023-2024 +read a first time,2023-05-11,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-09-13,['referral-committee'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-04-19,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-14,['referral-committee'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +read a first time,2023-04-20,['reading-1'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2024-05-30,['reading-1'],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +adopted,2023-05-02,['passage'],MI,2023-2024 +read a first time,2024-02-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-10-03,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-01-10,[],MI,2023-2024 +read a first time,2024-06-05,['reading-1'],MI,2023-2024 +read a first time,2023-04-20,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-04-25,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-01-19,['referral-committee'],MI,2023-2024 +read a first time,2024-09-11,['reading-1'],MI,2023-2024 +read a first time,2024-06-05,['reading-1'],MI,2023-2024 +read a first time,2023-10-03,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-09-11,['referral-committee'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-06-28,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-10-03,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-03-23,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-01,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-03-05,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-03-21,['referral-committee'],MI,2023-2024 +read a first time,2023-06-06,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-09-12,['referral-committee'],MI,2023-2024 +read a first time,2024-06-12,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-09-11,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-09-19,[],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-09-11,['referral-committee'],MI,2023-2024 +read a first time,2023-10-05,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-09-11,['referral-committee'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-03-07,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-05-23,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2024-09-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-03-21,['referral-committee'],MI,2023-2024 +read a first time,2023-06-27,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +read a first time,2023-04-20,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-10-11,['referral-committee'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-03-16,['introduction'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2024-06-05,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-02-22,['referral-committee'],MI,2023-2024 +read a first time,2024-04-17,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-09-20,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-06-18,[],MI,2023-2024 +read a first time,2023-10-03,['reading-1'],MI,2023-2024 +INTRODUCED BY SENATOR JEREMY MOSS,2023-10-24,['introduction'],MI,2023-2024 +read a first time,2024-01-16,['reading-1'],MI,2023-2024 +read a first time,2023-01-19,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +introduced by Representative Stephanie A. Young,2023-05-25,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-06-15,['referral-committee'],MI,2023-2024 +adopted,2023-01-11,['passage'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +adopted,2024-05-01,['passage'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +read a first time,2023-09-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-04-19,['referral-committee'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +introduced by Representative Kara Hope,2023-09-07,['introduction'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +introduced by Representative Jaime Churches,2023-03-09,['introduction'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2024-01-30,['reading-1'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +introduced by Representative Cynthia Neeley,2023-04-11,['introduction'],MI,2023-2024 +read a first time,2023-10-19,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +adopted,2024-02-21,['passage'],MI,2023-2024 +introduced by Representative Sharon MacDonell,2023-03-22,['introduction'],MI,2023-2024 +read a first time,2023-02-01,['reading-1'],MI,2023-2024 +read a first time,2024-02-13,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +read a first time,2023-06-06,['reading-1'],MI,2023-2024 +read a first time,2024-06-12,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-27,['referral-committee'],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +read a first time,2023-10-03,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-11-02,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-10-17,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-09-26,['referral-committee'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +read a first time,2023-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-09-27,['referral-committee'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2024-01-23,['reading-1'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-04-25,['referral-committee'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +read a first time,2023-02-07,['reading-1'],MI,2023-2024 +read a first time,2024-08-13,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +introduced by Representative Julie M. Rogers,2023-05-16,['introduction'],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +read a first time,2023-05-10,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +adopted,2023-02-01,['passage'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2023-11-03,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-10-03,['referral-committee'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2024-08-13,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2023-01-19,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-05-11,['referral-committee'],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-10-18,[],MI,2023-2024 +referred to Committee on Government Operations,2024-06-04,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2024-05-22,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-04-19,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-04-11,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-06-08,[],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-04-30,[],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-11-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-01-18,['referral-committee'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-06-21,['referral-committee'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-03,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-10-03,['referral-committee'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +adopted,2023-03-08,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-03-21,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +read a first time,2023-09-05,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +read a first time,2024-02-29,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-01-19,['referral-committee'],MI,2023-2024 +read a first time,2023-04-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-06,['referral-committee'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +INTRODUCED BY SENATOR SAM SINGH,2023-05-03,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-11-01,['referral-committee'],MI,2023-2024 +adopted,2024-05-01,['passage'],MI,2023-2024 +INTRODUCED BY SENATOR DARRIN CAMILLERI,2023-08-24,['introduction'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2024-04-23,['reading-1'],MI,2023-2024 +read a first time,2023-08-23,['reading-1'],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-10-18,['referral-committee'],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +adopted,2024-05-01,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-05-02,[],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-05-04,[],MI,2023-2024 +adopted,2024-06-13,['passage'],MI,2023-2024 +rule 71 suspended,2023-04-20,[],MI,2023-2024 +RULES SUSPENDED,2023-05-17,[],MI,2023-2024 +read a first time,2024-05-23,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-04-11,['referral-committee'],MI,2023-2024 +postponed for the day,2023-11-08,[],MI,2023-2024 +read a first time,2023-09-20,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-05-11,['referral-committee'],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +adopted,2023-01-11,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-03-09,['referral-committee'],MI,2023-2024 +adopted,2024-06-13,['passage'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +adopted,2024-05-23,['passage'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +adopted,2024-05-23,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-03-23,[],MI,2023-2024 +adopted,2024-05-23,['passage'],MI,2023-2024 +adopted by unanimous standing vote,2024-01-18,['passage'],MI,2023-2024 +read a first time,2023-01-18,['reading-1'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +adopted,2023-09-12,['passage'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-04,['referral-committee'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-06-13,['referral-committee'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2024-02-07,['reading-1'],MI,2023-2024 +read a first time,2024-06-12,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-05-23,[],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-06-28,['referral-committee'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-06-13,['introduction'],MI,2023-2024 +read a first time,2023-08-23,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-16,['referral-committee'],MI,2023-2024 +read a first time,2023-06-27,['reading-1'],MI,2023-2024 +read a first time,2023-10-11,['reading-1'],MI,2023-2024 +introduced by Representative Jenn Hill,2024-04-25,['introduction'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-01-19,['referral-committee'],MI,2023-2024 +INTRODUCED BY SENATOR SARAH ANTHONY,2024-06-13,['introduction'],MI,2023-2024 +read a first time,2024-06-12,['reading-1'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +read a first time,2023-04-20,['reading-1'],MI,2023-2024 +rule 71 suspended,2024-04-24,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-05-30,['referral-committee'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2024-04-09,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-05-16,['referral-committee'],MI,2023-2024 +adopted,2024-04-24,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-24,['referral-committee'],MI,2023-2024 +adopted,2023-10-05,['passage'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-14,['referral-committee'],MI,2023-2024 +read a first time,2023-10-05,['reading-1'],MI,2023-2024 +read a first time,2023-04-13,['reading-1'],MI,2023-2024 +rule 71 suspended,2023-03-23,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +adopted,2023-02-08,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-06-05,['referral-committee'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-05-01,[],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-05-23,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-05-30,['referral-committee'],MI,2023-2024 +read a first time,2023-06-06,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-03-09,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2024-06-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-01-24,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-05-30,['referral-committee'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2024-02-13,['reading-1'],MI,2023-2024 +rule suspended,2023-01-18,[],MI,2023-2024 +RULES SUSPENDED,2024-05-16,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-05-30,['referral-committee'],MI,2023-2024 +read a first time,2023-08-23,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-02-08,[],MI,2023-2024 +read a first time,2023-09-28,['reading-1'],MI,2023-2024 +adopted,2023-10-04,['passage'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-05-30,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-06-06,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-01,['referral-committee'],MI,2023-2024 +read a first time,2023-06-13,['reading-1'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-05-30,['referral-committee'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2024-09-17,['reading-1'],MI,2023-2024 +read a first time,2024-06-27,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-06-13,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-06-07,['referral-committee'],MI,2023-2024 +read a first time,2024-06-12,['reading-1'],MI,2023-2024 +read a first time,2023-03-02,['reading-1'],MI,2023-2024 +read a first time,2023-11-02,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-09-07,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +read a first time,2023-03-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +adopted,2023-04-12,['passage'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-09-20,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-03-01,['referral-committee'],MI,2023-2024 +read a first time,2023-11-01,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-09-07,['referral-committee'],MI,2023-2024 +read a first time,2023-02-15,['reading-1'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-10-24,['referral-committee'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +read a first time,2024-06-20,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-04-10,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-04-10,[],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-06-28,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-07,['referral-committee'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2023-10-03,['reading-1'],MI,2023-2024 +introduced by Representative Angela Witwer,2023-01-12,['introduction'],MI,2023-2024 +read a first time,2024-02-07,['reading-1'],MI,2023-2024 +read a first time,2023-10-19,['reading-1'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +adopted,2023-03-16,['passage'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-04-10,['referral-committee'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-02-01,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-04-10,['referral-committee'],MI,2023-2024 +substitute (H-1) adopted,2024-05-09,[],MI,2023-2024 +read a first time,2023-11-14,['reading-1'],MI,2023-2024 +read a first time,2023-09-05,['reading-1'],MI,2023-2024 +read a first time,2023-09-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-04-18,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-04-10,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-02-08,['referral-committee'],MI,2023-2024 +read a first time,2023-10-17,['reading-1'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-04-10,['referral-committee'],MI,2023-2024 +adopted,2023-01-18,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-04-10,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-04-10,['referral-committee'],MI,2023-2024 +read a first time,2023-04-26,['reading-1'],MI,2023-2024 +read a first time,2023-09-13,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-04-10,['referral-committee'],MI,2023-2024 +read a first time,2024-09-17,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-06-08,['referral-committee'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-08-23,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-03-15,[],MI,2023-2024 +RULES SUSPENDED,2023-06-28,[],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +INTRODUCED BY SENATOR KEVIN HERTEL,2023-03-07,['introduction'],MI,2023-2024 +read a first time,2024-09-17,['reading-1'],MI,2023-2024 +read a first time,2023-09-14,['reading-1'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +introduced by Representative Noah Arbit,2023-08-23,['introduction'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-01-24,[],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-02-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-05-17,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2024-02-27,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-02-15,['referral-committee'],MI,2023-2024 +read a first time,2023-03-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-02-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2024-06-11,['reading-1'],MI,2023-2024 +read a first time,2024-09-17,['reading-1'],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-03-14,['referral-committee'],MI,2023-2024 +read a first time,2023-06-27,['reading-1'],MI,2023-2024 +read a first time,2023-02-01,['reading-1'],MI,2023-2024 +read a first time,2023-09-05,['reading-1'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-01-26,['referral-committee'],MI,2023-2024 +adopted by unanimous standing vote,2024-03-06,['passage'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-05-09,[],MI,2023-2024 +adopted,2023-10-12,['passage'],MI,2023-2024 +read a first time,2023-11-01,['reading-1'],MI,2023-2024 +read a first time,2024-09-17,['reading-1'],MI,2023-2024 +read a first time,2024-03-12,['reading-1'],MI,2023-2024 +adopted,2024-04-23,['passage'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-16,['referral-committee'],MI,2023-2024 +read a first time,2024-01-23,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-03-02,['referral-committee'],MI,2023-2024 +read a first time,2023-03-22,['reading-1'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +read a first time,2024-06-12,['reading-1'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +referred to Committee on Education,2023-01-24,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-09-26,['referral-committee'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-05-23,['referral-committee'],MI,2023-2024 +read a first time,2023-07-18,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-04-23,[],MI,2023-2024 +read a first time,2023-03-22,['reading-1'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-10-24,['introduction'],MI,2023-2024 +RULES SUSPENDED,2024-02-07,[],MI,2023-2024 +adopted,2023-09-06,['passage'],MI,2023-2024 +read a first time,2023-09-19,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-06-08,['referral-committee'],MI,2023-2024 +read a first time,2024-03-12,['reading-1'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-02-01,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-03-14,[],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-25,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-06-27,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-02,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-02-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-03-22,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-05-09,['referral-committee'],MI,2023-2024 +read a first time,2023-05-09,['reading-1'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +adopted,2023-05-11,['passage'],MI,2023-2024 +adopted,2024-02-14,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2024-02-07,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-02-07,[],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-22,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-01-11,[],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-09-17,['referral-committee'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-09-14,['referral-committee'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-07-20,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-09-17,['referral-committee'],MI,2023-2024 +adopted,2024-05-08,['passage'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +referred to Committee on Agriculture,2023-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-05,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2023-05-04,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-05-25,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-07,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-03-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-01,['committee-passage'],MI,2023-2024 +referred to Committee on Agriculture,2023-09-26,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-18,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-10,['committee-passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-06-22,['referral-committee'],MI,2023-2024 +ADOPTED,2023-01-26,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-03,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-03,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-23,['referral-committee'],MI,2023-2024 +ADOPTED,2024-04-30,['passage'],MI,2023-2024 +read a first time,2024-05-21,['reading-1'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-03,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-05-21,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2023-10-18,['committee-passage'],MI,2023-2024 +adopted,2023-01-18,['passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-07-18,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-09-05,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-15,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-05-25,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-05-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-05-23,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-03-12,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-24,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-04-30,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-21,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-25,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-09-07,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-04-13,['referral-committee'],MI,2023-2024 +ADOPTED,2023-03-16,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-28,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-04-25,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-18,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-09-26,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2024-01-23,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-12,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-12,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-06-28,['referral-committee'],MI,2023-2024 +adopted,2023-04-20,['passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-28,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-05-25,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-04-11,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-09-19,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-05-04,['committee-passage'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-11-01,[],MI,2023-2024 +referred to Committee on Health Policy,2023-11-02,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-25,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-15,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-07-18,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-18,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-09-11,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-09-17,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-09-17,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-09-17,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-09-17,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-12,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-27,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-06-18,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-28,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-04-24,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-05-23,['referral-committee'],MI,2023-2024 +ADOPTED,2024-06-12,['passage'],MI,2023-2024 +referred to Committee on Agriculture,2023-09-14,['referral-committee'],MI,2023-2024 +ADOPTED,2023-09-19,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-12,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-24,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-05-22,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-02-22,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-18,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-07-30,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-23,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-04,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-01-31,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-11,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2023-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-11-02,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-01-30,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-03-16,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-4),2023-10-19,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-04-30,['committee-passage'],MI,2023-2024 +INTRODUCED BY SENATOR JOHN CHERRY,2024-03-07,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-26,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-10-25,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-05-02,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-12,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-12,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-06-13,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-04-23,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-23,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-12,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-27,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-04-18,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-05-02,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-04-23,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-06-21,['committee-passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-01-16,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-05,['committee-passage'],MI,2023-2024 +ADOPTED,2023-06-08,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-23,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-09-28,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-04-18,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2024-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-12,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-09,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2024-03-14,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-24,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-04,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-25,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-09-11,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-09-11,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-09-11,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-09-11,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-09-11,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-09-11,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-03-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-19,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2024-06-12,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-09-11,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-06-28,['referral-committee'],MI,2023-2024 +SENATOR REMOVED AS SPONSOR: MICHAEL WEBBER,2023-06-28,[],MI,2023-2024 +ADOPTED,2023-03-23,['passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-10,['committee-passage'],MI,2023-2024 +referred to Committee on Elections,2023-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-09-14,['referral-committee'],MI,2023-2024 +ADOPTED,2024-09-11,['passage'],MI,2023-2024 +referred to Committee on Higher Education,2023-06-22,['referral-committee'],MI,2023-2024 +read a first time,2023-03-16,['reading-1'],MI,2023-2024 +referred to Committee on Health Policy,2024-04-17,['referral-committee'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2024-01-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-10-24,['referral-committee'],MI,2023-2024 +read a first time,2023-05-25,['reading-1'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-20,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-04,['referral-committee'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +referred to Committee on Judiciary,2023-06-15,['referral-committee'],MI,2023-2024 +read a first time,2023-03-22,['reading-1'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +referred to Committee on Education,2023-02-01,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-03-05,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-15,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-12,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-02-07,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-05-10,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-06-14,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-06-15,['referral-committee'],MI,2023-2024 +ADOPTED,2023-11-09,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-05-04,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-25,['referral-committee'],MI,2023-2024 +ADOPTED,2023-10-18,['passage'],MI,2023-2024 +ADOPTED,2023-06-08,['passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-23,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-07,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-02-14,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-05-03,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-29,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-08-24,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-01-12,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-03-08,['referral-committee'],MI,2023-2024 +ADOPTED,2023-05-04,['passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility, and Infrastructure",2023-01-18,['referral-committee'],MI,2023-2024 +ADOPTED,2023-05-17,['passage'],MI,2023-2024 +adopted,2023-11-09,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-05,['referral-committee'],MI,2023-2024 +ADOPTED,2023-03-23,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-03-22,['committee-passage'],MI,2023-2024 +referred to Committee on Labor,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +ADOPTED,2024-05-23,['passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-02-07,['referral-committee'],MI,2023-2024 +referred to Committee on Higher Education,2023-08-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-02-21,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-04-13,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-05-04,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +adopted,2024-04-24,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-04-09,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-05-25,['committee-passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-10-05,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-03-20,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-02-14,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-20,['referral-committee'],MI,2023-2024 +ADOPTED,2024-05-16,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-09-07,['referral-committee'],MI,2023-2024 +ADOPTED,2023-02-08,['passage'],MI,2023-2024 +referred to Committee on Elections,2023-10-12,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-06-13,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-04-27,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-02,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-03,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2023-05-02,['committee-passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-11-01,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-03,['committee-passage'],MI,2023-2024 +adopted,2024-05-09,['passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-23,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-11-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-04-11,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-19,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-04-11,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-13,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-10-17,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-04-27,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-26,['referral-committee'],MI,2023-2024 +ADOPTED,2024-05-09,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-09-07,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-10-12,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +POSTPONED FOR THE DAY,2024-01-24,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-21,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-24,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-05,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-11-07,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-03-12,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-01-23,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-22,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-28,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-05-09,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-19,['referral-committee'],MI,2023-2024 +ADOPTED,2024-03-14,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-03-07,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-07,['referral-committee'],MI,2023-2024 +ADOPTED,2023-01-11,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-04,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-03,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-03,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-5),2023-01-25,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-17,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-09-28,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-03-22,['committee-passage'],MI,2023-2024 +ADOPTED,2023-04-27,['passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-09-05,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-03,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-21,['committee-passage'],MI,2023-2024 +postponed for the day,2023-05-23,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-07-18,['referral-committee'],MI,2023-2024 +ADOPTED,2023-04-27,['passage'],MI,2023-2024 +referred to Committee on Labor,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-02-13,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-28,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-09,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-23,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-01-19,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-01-12,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-02,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-02-29,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-10,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-02,['committee-passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-04-27,['referral-committee'],MI,2023-2024 +ADOPTED,2024-02-01,['passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-09-12,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-26,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-06-13,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-10-12,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-07-19,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-03-14,['referral-committee'],MI,2023-2024 +notice given to discharge committee,2023-10-11,[],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-01,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-25,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-06-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-03,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-01-17,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-25,['referral-committee'],MI,2023-2024 +POSTPONED FOR THE DAY,2023-03-02,[],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-06-27,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-03,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-03-22,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-01-10,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-15,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-09-28,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-26,['referral-committee'],MI,2023-2024 +ADOPTED,2024-01-10,['passage'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-09-19,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-03-13,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-25,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-10-17,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-10,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-02,['committee-passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-28,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-08-24,['referral-committee'],MI,2023-2024 +adopted,2023-04-25,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-24,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-12,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2023-05-04,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2023-11-14,['committee-passage'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-13,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-10-12,['referral-committee'],MI,2023-2024 +ADOPTED,2023-10-18,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-11,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-26,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-05-04,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-19,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-12,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-11,['referral-committee'],MI,2023-2024 +ADOPTED,2023-05-24,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-01-18,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-03,['committee-passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-07-20,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-11,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-09-20,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-23,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-18,['referral-committee'],MI,2023-2024 +ADOPTED,2023-05-16,['passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-02,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-28,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2023-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-09-27,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-08-22,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-02-02,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-4),2023-05-04,['committee-passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-03-08,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-21,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-03-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-26,['committee-passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-21,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-01-19,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-01-31,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-02-14,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-04-11,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-06-27,['referral-committee'],MI,2023-2024 +adopted,2023-04-19,['passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2023-05-24,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-01-12,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-01-12,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-19,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-21,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-05-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-04,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-01-23,['referral-committee'],MI,2023-2024 +referred to Committee on Higher Education,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-07-18,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-10,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-02-14,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-01-16,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-09,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-04-26,['committee-passage'],MI,2023-2024 +referred to Committee on Labor,2023-09-13,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-19,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-03-02,['referral-committee'],MI,2023-2024 +ADOPTED,2024-01-24,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-06-22,['referral-committee'],MI,2023-2024 +ADOPTED,2023-03-02,['passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-09,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-06-22,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-07,['referral-committee'],MI,2023-2024 +ADOPTED,2024-02-20,['passage'],MI,2023-2024 +ADOPTED,2024-02-07,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-08,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2023-09-26,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-22,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2023-09-20,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-26,['committee-passage'],MI,2023-2024 +ADOPTED,2023-06-22,['passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-03,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-19,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-09-12,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-19,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-02-14,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-11-02,['referral-committee'],MI,2023-2024 +referred to Committee on Higher Education,2023-06-27,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-03,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-30,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-03-20,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-05-04,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-07,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-07,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-26,[],MI,2023-2024 +referred to Committee on Elections,2024-03-13,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-24,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-03-20,['committee-passage'],MI,2023-2024 +referred to Committee on Elections,2024-06-12,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-04-30,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-03-07,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-09-20,['referral-committee'],MI,2023-2024 +ADOPTED,2024-05-16,['passage'],MI,2023-2024 +referred to Committee on Higher Education,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-24,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-05-23,['committee-passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-09-28,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-09-20,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-04-23,['committee-passage'],MI,2023-2024 +referred to Committee on Labor,2023-09-07,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-22,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-24,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-26,[],MI,2023-2024 +referred to Committee on Elections,2023-05-17,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2024-05-01,['referral-committee'],MI,2023-2024 +ADOPTED,2023-06-13,['passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-04-25,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-31,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-26,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-06-26,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-09-19,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-07,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-26,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-26,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-25,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-07-20,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-04,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-04-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-05-02,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-10-31,['committee-passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-02-22,['referral-committee'],MI,2023-2024 +ADOPTED,2024-06-27,['passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-06-07,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-05-10,[],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-06-13,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +ADOPTED,2023-05-11,['passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-03-23,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-03-14,['referral-committee'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2024-06-13,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-09,['committee-passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-03-12,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +referred to Committee on Elections,2023-03-22,['referral-committee'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2023-10-26,['referral-committee'],MI,2023-2024 +ADOPTED,2024-04-23,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-28,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-11-01,['referral-committee'],MI,2023-2024 +read a first time,2023-08-23,['reading-1'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-16,['referral-committee'],MI,2023-2024 +ADOPTED,2023-03-15,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-03-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-10-03,['referral-committee'],MI,2023-2024 +read a first time,2023-01-12,['reading-1'],MI,2023-2024 +ADOPTED,2024-04-10,['passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-06-20,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-14,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-07-18,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-09,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-13,['committee-passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-20,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-12,['committee-passage'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2024-02-13,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-12,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-17,['referral-committee'],MI,2023-2024 +substitute (H-1) adopted,2023-03-23,[],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-10,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-08,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-03-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-06-13,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-06-13,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-20,[],MI,2023-2024 +ADOPTED,2024-06-20,['passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-09-07,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-03-21,['referral-committee'],MI,2023-2024 +ADOPTED,2023-05-02,['passage'],MI,2023-2024 +referred to Committee on Education,2024-04-23,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-09-05,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-03,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-06-08,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-19,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-09,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2023-10-12,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2023-05-04,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-25,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2024-02-13,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-01-19,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-04-27,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-03,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-02-22,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-04-27,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-10-12,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-17,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2024-01-30,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-28,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-05-04,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-03-05,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-03-20,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-06-18,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-01-19,['referral-committee'],MI,2023-2024 +roll call Roll Call # 2 Yeas 100 Nays 9 Excused 0 Not Voting 1,2023-01-11,[],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2024-06-05,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-12,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +referred to Committee on Judiciary,2023-06-27,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-03,['committee-passage'],MI,2023-2024 +referred to Committee on Higher Education,2024-06-05,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-06-05,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-20,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-17,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-05-09,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-13,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-03,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2024-06-05,['referral-committee'],MI,2023-2024 +referred to Committee on Higher Education,2024-06-05,['referral-committee'],MI,2023-2024 +referred to Committee on Higher Education,2024-06-05,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-06-13,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-01-18,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-03,['referral-committee'],MI,2023-2024 +ADOPTED,2024-03-19,['passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-07,['referral-committee'],MI,2023-2024 +ADOPTED,2023-09-14,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-13,['referral-committee'],MI,2023-2024 +adopted,2023-06-07,['passage'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2023-05-11,['referral-committee'],MI,2023-2024 +ADOPTED,2023-06-27,['passage'],MI,2023-2024 +ADOPTED,2023-04-11,['passage'],MI,2023-2024 +referred to Committee on Labor,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-12,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-04,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-06-07,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-02-14,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-03-02,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-01-18,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-11,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-23,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-03-08,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +INTRODUCED BY SENATOR ROSEMARY BAYER,2024-03-07,['introduction'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-26,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-04-27,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-06-13,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-05-10,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-05-02,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-09-13,['committee-passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-04-30,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-05-09,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-04,['referral-committee'],MI,2023-2024 +AMENDMENT(S) ADOPTED,2024-02-07,['amendment-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-12,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-02-01,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-12,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-08-23,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-16,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-08-23,['referral-committee'],MI,2023-2024 +ADOPTED,2023-02-01,['passage'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-14,['referral-committee'],MI,2023-2024 +read a first time,2024-04-25,['reading-1'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-26,[],MI,2023-2024 +ADOPTED,2023-05-11,['passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-08-23,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-08-13,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-04-20,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-08-13,['referral-committee'],MI,2023-2024 +ADOPTED,2024-03-19,['passage'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-02,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-19,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-09-12,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-10-03,['referral-committee'],MI,2023-2024 +ADOPTED,2024-01-10,['passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-08-13,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-09-26,['referral-committee'],MI,2023-2024 +referred to Committee on Higher Education,2024-02-22,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-14,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-12,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-03-13,['referral-committee'],MI,2023-2024 +referred to Committee on Higher Education,2023-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-10-12,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-12,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-09,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-01-18,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +ADOPTED,2023-06-28,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-09-07,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-09-20,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-07,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-06-27,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-04-13,['referral-committee'],MI,2023-2024 +ADOPTED,2024-05-01,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-04-20,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-09-13,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-06-08,['referral-committee'],MI,2023-2024 +rule suspended,2023-04-13,[],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-13,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-05-25,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-09-07,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-28,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-20,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-06-22,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-06-07,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-09-11,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-21,['referral-committee'],MI,2023-2024 +adopted,2023-04-27,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-28,['committee-passage'],MI,2023-2024 +adopted,2024-02-13,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-21,['committee-passage'],MI,2023-2024 +ADOPTED,2023-11-08,['passage'],MI,2023-2024 +referred to Committee on Education,2024-09-11,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-04-30,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-09-13,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-05,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-01-26,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-05-02,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-13,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2024-06-12,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-07,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-02-22,['referral-committee'],MI,2023-2024 +ADOPTED,2024-06-12,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-04-27,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-26,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-01-10,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-04,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-26,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-06-21,['committee-passage'],MI,2023-2024 +POSTPONED FOR THE DAY,2023-02-16,[],MI,2023-2024 +referred to Committee on Agriculture,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-09-20,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-01-12,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-03-20,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-09-11,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-09-20,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-09-27,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-09-11,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-11,['referral-committee'],MI,2023-2024 +read a first time,2023-02-28,['reading-1'],MI,2023-2024 +referred to Committee on Tax Policy,2024-09-17,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-07-18,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-02-28,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-02-01,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-09-11,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-03-19,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-02,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-04-27,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-01-18,['referral-committee'],MI,2023-2024 +ADOPTED,2024-01-24,['passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-09-11,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-01-30,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-05,['committee-passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-04-19,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-05,['committee-passage'],MI,2023-2024 +referred to Committee on Agriculture,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-09-11,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2024-02-14,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-27,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-04-11,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-11-09,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-07,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-27,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-04,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-04-11,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-02,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-06-14,['committee-passage'],MI,2023-2024 +referred to Committee on Education,2023-02-14,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-09-19,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-04-13,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +ADOPTED,2023-05-11,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-29,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-11,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-13,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-07,['referral-committee'],MI,2023-2024 +read a first time,2023-04-11,['reading-1'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-27,['committee-passage'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-05-11,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-09-17,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-06-21,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-25,['committee-passage'],MI,2023-2024 +referred to Committee on Elections,2024-03-06,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-07,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-02-21,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-01-12,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-09-11,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-05,['committee-passage'],MI,2023-2024 +referred to Committee on Education,2023-02-14,['referral-committee'],MI,2023-2024 +ADOPTED,2024-06-20,['passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-02-01,[],MI,2023-2024 +referred to Committee on Government Operations,2024-03-20,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-20,[],MI,2023-2024 +referred to Committee on Government Operations,2024-05-07,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-03-08,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-13,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-01-26,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-09-11,['referral-committee'],MI,2023-2024 +adopted,2024-05-09,['passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-20,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2023-06-21,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-29,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-09-19,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-19,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-20,[],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-26,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-06-21,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-08,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-03-21,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-09-11,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-10,['referral-committee'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-03-07,[],MI,2023-2024 +referred to Committee on Government Operations,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2023-06-28,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2024-06-18,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-11-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-02-22,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-01-30,['referral-committee'],MI,2023-2024 +ADOPTED,2024-09-17,['passage'],MI,2023-2024 +referred to Committee on Labor,2023-01-26,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-09-11,['referral-committee'],MI,2023-2024 +rule suspended,2024-02-07,[],MI,2023-2024 +ADOPTED,2023-06-07,['passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-05-09,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-09-13,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-03-13,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2024-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-03-20,['referral-committee'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-03-07,[],MI,2023-2024 +adopted,2023-06-22,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-02,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +adopted,2024-05-15,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-10,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-01-17,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-25,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-21,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-04,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-05-09,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-09,['referral-committee'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2024-05-09,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-23,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-19,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-05-23,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Higher Education,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-04-13,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2024-05-01,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-02-01,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-01,['committee-passage'],MI,2023-2024 +ADOPTED,2023-01-11,['passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-02-14,['referral-committee'],MI,2023-2024 +ADOPTED,2023-05-04,['passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-17,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-02-01,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-20,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-20,[],MI,2023-2024 +referred to Committee on Criminal Justice,2024-01-30,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2024-02-20,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-05-04,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-03-13,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-18,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-18,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-05-21,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-01-18,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-06-05,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-12,['committee-passage'],MI,2023-2024 +referred to Committee on Higher Education,2023-10-05,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-28,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-06-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-14,['referral-committee'],MI,2023-2024 +adopted,2023-10-25,['passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-20,[],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-05,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-05-14,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-04-13,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-08,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-15,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-02-13,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-05-10,['referral-committee'],MI,2023-2024 +ADOPTED,2023-01-18,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-21,['committee-passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2024-03-06,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-04,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-19,['referral-committee'],MI,2023-2024 +ADOPTED,2023-04-11,['passage'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-06-14,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-02-01,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-15,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-10,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +ADOPTED,2023-03-23,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-05,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Higher Education,2023-09-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-26,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-02,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-19,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-04,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-01-24,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-26,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-17,['referral-committee'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-11-01,[],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-04-13,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-06-13,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-04-17,['committee-passage'],MI,2023-2024 +adopted,2024-04-24,['passage'],MI,2023-2024 +referred to Committee on Education,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-05-17,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-20,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-07,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-09-19,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-04-11,['referral-committee'],MI,2023-2024 +ADOPTED,2023-04-27,['passage'],MI,2023-2024 +referred to Committee on Elections,2024-03-13,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-16,['referral-committee'],MI,2023-2024 +ADOPTED,2023-06-27,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-04-23,['committee-passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-02,['referral-committee'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2023-04-11,['referral-committee'],MI,2023-2024 +adopted,2023-02-28,['passage'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-04,['referral-committee'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-11-14,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-02-07,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-02-13,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-05-18,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-07,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-13,['committee-passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-07-20,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-11-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-22,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-01-18,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-03-06,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-06-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-25,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-25,['committee-passage'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +ADOPTED,2023-06-28,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-09-26,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-03,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-06,['committee-passage'],MI,2023-2024 +referred to Committee on Elections,2023-03-22,['referral-committee'],MI,2023-2024 +adopted,2024-05-07,['passage'],MI,2023-2024 +adopted,2023-04-27,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-01-12,['referral-committee'],MI,2023-2024 +read a first time,2023-06-27,['reading-1'],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-26,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-20,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-21,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-26,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-01-12,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-05,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-06-13,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-05-25,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-06-13,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-03-02,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-27,['committee-passage'],MI,2023-2024 +referred to Committee on Education,2023-06-13,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2024-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-12,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-09-12,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-02,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-05,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-06-12,['committee-passage'],MI,2023-2024 +referred to Committee on Education,2023-02-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-09-26,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-11-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-26,['committee-passage'],MI,2023-2024 +ADOPTED,2023-09-14,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-22,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-02-07,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-09-27,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-25,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-04-27,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2024-07-31,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-09,['referral-committee'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-06-27,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-07-31,['referral-committee'],MI,2023-2024 +adopted,2023-01-26,['passage'],MI,2023-2024 +referred to Committee on Education,2023-02-14,['referral-committee'],MI,2023-2024 +ADOPTED,2023-04-27,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-05-18,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-15,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-25,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-10,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-03-21,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-27,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-04,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-28,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-07-31,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-24,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-03-16,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-09-07,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-09,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-07-31,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-05-24,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-01-12,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-03-14,['referral-committee'],MI,2023-2024 +adopted,2024-05-08,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-28,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-21,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-04,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-05-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-05-24,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-28,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-11-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-06-14,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-02,['committee-passage'],MI,2023-2024 +adopted,2023-01-18,['passage'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-03-21,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-03-05,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-02-01,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-05-25,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-02-02,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-05-24,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-04-09,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-03,['committee-passage'],MI,2023-2024 +referred to Committee on Labor,2023-05-09,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-03-12,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-09,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-02-20,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-25,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-11-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-11-14,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-09-07,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-17,['referral-committee'],MI,2023-2024 +adopted,2023-02-28,['passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-05,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-05-15,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-07-18,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-05-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-09,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-23,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2023-05-24,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-28,['referral-committee'],MI,2023-2024 +ADOPTED,2023-05-24,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-26,['committee-passage'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-04-23,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-04-18,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-08,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-09,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-02-14,['referral-committee'],MI,2023-2024 +referred to Committee on Higher Education,2023-08-23,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-04,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-10-19,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-09-12,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-04-18,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-01-18,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-13,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-19,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-04-18,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-11-02,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-04-18,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-07,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-03-15,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-21,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-06-12,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-02-07,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-03-14,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-03-22,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-02-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-05-11,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-31,['committee-passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-03-20,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-02-28,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-06-11,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-19,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-02-01,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-29,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2024-03-13,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-03-20,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-04-27,['committee-passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-03-23,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-03-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-18,['committee-passage'],MI,2023-2024 +ADOPTED,2023-04-13,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-24,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-14,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-09-07,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-18,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-21,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-06-13,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-06-14,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-04-13,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-05-01,['referral-committee'],MI,2023-2024 +ADOPTED,2023-03-23,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-04-23,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-02-20,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-27,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-05-14,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-10-19,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-09-19,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-03-23,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-03-12,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-03-08,['referral-committee'],MI,2023-2024 +adopted,2024-06-11,['passage'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-03-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-24,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-01-19,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-01,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-05-02,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-05-16,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-04-25,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-02-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-01,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-06-21,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-26,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-26,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-19,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-01-30,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-10-26,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-03-05,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-12,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-02-14,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-07-30,['referral-committee'],MI,2023-2024 +ADOPTED,2023-04-13,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-12,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-05-04,['committee-passage'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +referred to Committee on Labor,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-07-30,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-04-23,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-27,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-31,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-01-26,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-25,['committee-passage'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +ADOPTED,2024-06-04,['passage'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-03-13,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-07-30,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-07-18,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-13,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-11-03,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-12,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-10,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-04-13,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-03-02,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-04-11,['referral-committee'],MI,2023-2024 +ADOPTED,2023-02-01,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-01-12,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-06-18,['committee-passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-27,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-06-22,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-06-08,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-06-14,['committee-passage'],MI,2023-2024 +referred to Committee on Education,2024-04-24,['referral-committee'],MI,2023-2024 +ADOPTED,2023-04-26,['passage'],MI,2023-2024 +ADOPTED,2024-02-01,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-09,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-03-08,['committee-passage'],MI,2023-2024 +ADOPTED,2023-02-01,['passage'],MI,2023-2024 +reported with recommendation without amendment,2024-04-24,['committee-passage'],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +referred to Committee on Health Policy,2023-09-07,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-05-07,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-11-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-26,['committee-passage'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-07-30,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-02-28,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-10-26,['committee-passage'],MI,2023-2024 +referred to Committee on Education,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-02-14,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-11-02,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-06-13,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-01-23,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-05-04,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-22,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-01-18,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-03-21,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-03-12,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-18,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +ADOPTED,2024-05-23,['passage'],MI,2023-2024 +referred to Committee on Agriculture,2023-05-24,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-09,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +ADOPTED,2023-09-19,['passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-09-17,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-26,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-03-14,['committee-passage'],MI,2023-2024 +ADOPTED,2024-05-01,['passage'],MI,2023-2024 +ADOPTED,2023-09-27,['passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2024-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-03-02,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-21,['committee-passage'],MI,2023-2024 +referred to Committee on Education,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-06-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-05-07,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-04-25,['committee-passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-06-07,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-07,['referral-committee'],MI,2023-2024 +ADOPTED,2023-02-02,['passage'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-05-11,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-09-28,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-28,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-03-14,['committee-passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-15,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-24,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-03-02,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-29,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-12,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-05-18,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-07,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-06-07,['referral-committee'],MI,2023-2024 +AMENDMENT(S) ADOPTED,2024-02-07,['amendment-passage'],MI,2023-2024 +ADOPTED,2024-03-13,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-07,['committee-passage'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-05-23,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-01-16,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-11-09,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-04,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-04-25,['committee-passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-09-27,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-27,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-06-21,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-17,['referral-committee'],MI,2023-2024 +adopted,2023-02-28,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-09-26,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-06-13,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-02,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-07,['referral-committee'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-11-01,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-05-16,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-01-19,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-09-12,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-03,['committee-passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-03,['referral-committee'],MI,2023-2024 +POSTPONED FOR THE DAY,2023-03-02,[],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-01-23,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-07,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-20,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-03-12,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-02-14,['committee-passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-05,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-10-17,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-01-18,[],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-26,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2024-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-26,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-02-22,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2024-01-23,['referral-committee'],MI,2023-2024 +adopted,2023-04-25,['passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2024-01-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-13,['committee-passage'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-07,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-01-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-04-27,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-04,['referral-committee'],MI,2023-2024 +ADOPTED,2023-11-01,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-02-13,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-15,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-24,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-05-23,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-04,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-21,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-11,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Higher Education,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-03-08,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-03-19,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-04,['referral-committee'],MI,2023-2024 +ADOPTED,2023-11-08,['passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-05,[],MI,2023-2024 +referred to Committee on Labor,2023-09-13,['referral-committee'],MI,2023-2024 +ADOPTED,2024-06-05,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-06-21,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +ADOPTED,2024-06-05,['passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-14,['referral-committee'],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +notice given to discharge committee,2024-05-02,[],MI,2023-2024 +referred to Committee on Appropriations,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-03,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-06-28,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-25,['referral-committee'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-03-07,[],MI,2023-2024 +ADOPTED,2023-02-08,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-09-27,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-06-06,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-21,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-06-13,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-13,['committee-passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-07,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-26,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-04-25,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-04-12,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-27,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-06-27,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-06,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-09,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-03-12,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-26,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-04-18,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-09-20,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-25,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2024-03-20,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-19,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2023-06-14,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-07,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +referred to Committee on Government Operations,2024-04-23,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-05-09,['committee-passage'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-03-14,['referral-committee'],MI,2023-2024 +adopted,2024-02-07,['passage'],MI,2023-2024 +referred to Committee on Agriculture,2023-01-12,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-10,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-22,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-19,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-04-11,['referral-committee'],MI,2023-2024 +ADOPTED,2023-09-07,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-5),2024-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2024-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-05-25,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2024-02-14,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-02-21,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-03-14,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-03-07,['referral-committee'],MI,2023-2024 +adopted,2023-03-23,['passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-09-28,['referral-committee'],MI,2023-2024 +ADOPTED,2023-03-02,['passage'],MI,2023-2024 +ADOPTED,2023-04-19,['passage'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-03-07,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +introduced by Representative Amos O'Neal,2023-03-09,['introduction'],MI,2023-2024 +referred to Committee on Tax Policy,2024-02-14,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-26,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-20,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-23,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-19,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-05-18,['referral-committee'],MI,2023-2024 +vote on adoption reconsidered,2023-11-09,[],MI,2023-2024 +referred to Committee on Health Policy,2023-09-07,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-16,['referral-committee'],MI,2023-2024 +ADOPTED,2023-06-08,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-05,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-03-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +referred to Committee on Labor,2023-09-20,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-05,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-11-14,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-12,['committee-passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-26,[],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-24,['referral-committee'],MI,2023-2024 +ADOPTED,2023-05-02,['passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-04-24,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-05-25,['referral-committee'],MI,2023-2024 +adopted,2023-11-09,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-09-07,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-28,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-04-20,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-03,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-09-07,['referral-committee'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-24,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-03-07,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-02-07,['committee-passage'],MI,2023-2024 +adopted,2024-03-13,['passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-15,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-02-22,['referral-committee'],MI,2023-2024 +ADOPTED,2023-01-11,['passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-04-11,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-05-09,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2024-09-11,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-03-08,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-09,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-04,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-06,['referral-committee'],MI,2023-2024 +referred to Committee on Higher Education,2023-08-23,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-10-05,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-03-16,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-04,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-18,['referral-committee'],MI,2023-2024 +per Rule 41 referred to Committee on Agriculture,2023-05-23,[],MI,2023-2024 +referred to Committee on Government Operations,2024-02-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-22,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-06-05,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-15,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-03-23,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2024-04-24,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-10,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-10-12,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-16,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-14,['referral-committee'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-03-07,[],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-09-11,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-02,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-09-17,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-06-08,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-02-14,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-09-11,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-09-19,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-19,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-24,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-14,['committee-passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-09-27,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-01-31,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-10,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-26,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-01-30,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-16,['referral-committee'],MI,2023-2024 +ADOPTED,2024-02-07,['passage'],MI,2023-2024 +referred to Committee on Education,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-03,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-05-22,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-01-12,['referral-committee'],MI,2023-2024 +ADOPTED,2023-09-19,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-02-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-28,['referral-committee'],MI,2023-2024 +adopted,2023-06-21,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-04-13,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children, and Seniors",2023-02-01,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-03-14,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-03-16,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-11-09,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-03-14,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-26,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2024-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-16,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-05,['committee-passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility, and Infrastructure",2023-01-12,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-11,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +adopted,2024-06-12,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-07-18,['referral-committee'],MI,2023-2024 +ADOPTED,2024-03-12,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2024-06-18,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-06-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-12,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2024-06-12,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-12,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-06-18,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-06-18,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-06-18,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-06-18,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2024-06-18,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-06-18,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-06-18,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-04,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-11-08,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-05-21,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-22,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-20,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-25,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-25,['committee-passage'],MI,2023-2024 +ADOPTED,2024-04-16,['passage'],MI,2023-2024 +ADOPTED,2024-04-17,['passage'],MI,2023-2024 +referred to Committee on Tax Policy,2024-01-16,['referral-committee'],MI,2023-2024 +read a first time,2023-09-27,['reading-1'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-06-08,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2024-03-05,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-19,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-03-19,['committee-passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-02-21,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-05,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-19,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-05,['committee-passage'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-06-22,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-03-21,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-10,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-05,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-04-23,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-05,['committee-passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-03-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-02-21,['committee-passage'],MI,2023-2024 +introduced by Representative Alabas Farhat,2024-02-21,['introduction'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-19,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-05,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-10-10,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-19,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-05-21,['committee-passage'],MI,2023-2024 +adopted,2024-04-18,['passage'],MI,2023-2024 +adopted,2024-04-18,['passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-09-07,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-03,['committee-passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-06-22,['referral-committee'],MI,2023-2024 +ADOPTED,2024-04-23,['passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-11-03,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-01-18,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-01-18,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-07-18,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-19,['referral-committee'],MI,2023-2024 +referred to Committee on Higher Education,2023-10-17,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-5),2023-04-25,['committee-passage'],MI,2023-2024 +ADOPTED,2023-01-11,['passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-05-04,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-02-28,['referral-committee'],MI,2023-2024 +adopted,2023-10-10,['passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-04-19,[],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2023-05-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-15,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-07-18,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-01-18,[],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-19,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-06-14,['referral-committee'],MI,2023-2024 +transmitted,2024-02-07,[],MI,2023-2024 +referred to Committee on Government Operations,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-02-02,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-05-03,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-06-20,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-12,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-01,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-04-11,['referral-committee'],MI,2023-2024 +ADOPTED,2023-09-27,['passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-06-22,['referral-committee'],MI,2023-2024 +adopted,2023-04-27,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-13,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-11-02,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-04-25,['committee-passage'],MI,2023-2024 +ADOPTED,2023-04-20,['passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +adopted,2023-09-12,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-15,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-06-22,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-03-22,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-09-28,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-04-13,['referral-committee'],MI,2023-2024 +read a first time,2023-02-14,['reading-1'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-11,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-06-14,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-04-25,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-11,['referral-committee'],MI,2023-2024 +adopted,2023-04-13,['passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-27,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-05,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +referred to Committee on Elections,2023-03-02,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-11-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-10-04,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-26,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-14,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2024-02-01,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-06-27,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-03-06,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-02-21,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-03-12,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-02,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-08,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-03-12,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-04-27,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-01-31,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-25,['referral-committee'],MI,2023-2024 +ADOPTED,2024-02-14,['passage'],MI,2023-2024 +ADOPTED,2023-04-27,['passage'],MI,2023-2024 +ADOPTED,2023-03-15,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-11-14,['committee-passage'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-24,['referral-committee'],MI,2023-2024 +adopted,2023-06-27,['passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-26,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-01,['referral-committee'],MI,2023-2024 +roll call Roll Call # 3 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-01-11,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-09-07,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2024-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-28,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-02-14,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-06-22,['referral-committee'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2023-03-07,['referral-committee'],MI,2023-2024 +ADOPTED,2023-03-21,['passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-13,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-16,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-04-19,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-09-14,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-04,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-03-02,['referral-committee'],MI,2023-2024 +ADOPTED,2023-04-27,['passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-03-05,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-06-13,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-05-09,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-28,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-06-14,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-20,['referral-committee'],MI,2023-2024 +adopted,2023-02-08,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-03,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-05-30,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-19,['committee-passage'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2023-03-23,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +ADOPTED,2023-02-28,['passage'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +referred to Committee on Elections,2023-04-13,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-10,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2023-03-23,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-11-14,['referral-committee'],MI,2023-2024 +adopted,2023-05-09,['passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-01-18,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-02-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-03,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-07,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-06-13,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-01-18,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-12,['referral-committee'],MI,2023-2024 +ADOPTED,2024-03-05,['passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-05-17,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-07,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-5),2023-05-04,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-08-23,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-01-12,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-04-19,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-09-07,['referral-committee'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-03-07,[],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-13,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2023-10-18,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-25,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-13,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-16,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-28,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-06-13,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-03,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-07,['referral-committee'],MI,2023-2024 +ADOPTED,2023-03-16,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-04-25,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-03,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-13,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-02-15,['referral-committee'],MI,2023-2024 +ADOPTED,2023-03-08,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-13,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +ADOPTED,2023-04-13,['passage'],MI,2023-2024 +ADOPTED,2023-09-07,['passage'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-06-15,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-10,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-13,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-06-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +ADOPTED,2024-02-01,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-27,['committee-passage'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-07,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2023-09-26,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-03-09,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-21,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-04-25,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-03-07,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-03-12,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-09-26,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-10-03,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-01-12,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-03-16,[],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-06-22,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-09-21,['committee-passage'],MI,2023-2024 +substitute (H-1) adopted,2023-04-19,[],MI,2023-2024 +referred to Committee on Judiciary,2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-04-19,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-05-25,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-01-31,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-02-02,['referral-committee'],MI,2023-2024 +ADOPTED,2023-04-12,['passage'],MI,2023-2024 +referred to Committee on Elections,2023-05-09,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-05-09,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-03-21,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-10,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-05-23,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-02-01,[],MI,2023-2024 +referred to Committee on Judiciary,2023-02-28,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-08,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-03-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-19,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-02-07,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-24,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-04-27,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-06-28,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-16,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-11,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2024-02-20,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-23,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-16,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-02-02,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-06-21,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-09-07,['referral-committee'],MI,2023-2024 +adopted,2024-03-19,['passage'],MI,2023-2024 +referred to Committee on Labor,2023-10-17,['referral-committee'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2023-09-27,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-24,['referral-committee'],MI,2023-2024 +adopted,2023-02-09,['passage'],MI,2023-2024 +referred to Committee on Labor,2023-04-11,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-03-22,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-09,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-05-25,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-24,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2024-02-20,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-06-28,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-06-14,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-01,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-07,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-14,['referral-committee'],MI,2023-2024 +adopted,2023-11-09,['passage'],MI,2023-2024 +ADOPTED,2023-02-16,['passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-09-20,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-02,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-01-12,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-05-09,['committee-passage'],MI,2023-2024 +adopted,2023-05-03,['passage'],MI,2023-2024 +referred to Committee on Education,2023-11-14,['referral-committee'],MI,2023-2024 +adopted,2023-04-27,['passage'],MI,2023-2024 +referred to Committee on Elections,2023-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-03,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-05,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-02,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-01-24,['referral-committee'],MI,2023-2024 +notice given to discharge committee,2023-03-21,[],MI,2023-2024 +referred to Committee on Government Operations,2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-28,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-09-07,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-03-07,['committee-passage'],MI,2023-2024 +ADOPTED,2024-03-05,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-04-11,['referral-committee'],MI,2023-2024 +SENATOR REMOVED AS SPONSOR: DAYNA POLEHANKI,2023-10-31,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-10-26,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-06-13,['referral-committee'],MI,2023-2024 +ADOPTED,2024-02-14,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-09-07,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-07,['referral-committee'],MI,2023-2024 +adopted,2023-05-09,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-09-07,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-20,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-06-27,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-11-03,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-02-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-06-06,['referral-committee'],MI,2023-2024 +ADOPTED,2023-05-03,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-17,['referral-committee'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2024-03-05,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-04-25,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-03-09,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-05-23,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-03,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-24,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-16,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-04,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-04-20,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-24,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-03,['committee-passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-04-19,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-07,['referral-committee'],MI,2023-2024 +adopted,2024-02-14,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-02,['committee-passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-06-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-04-25,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-09,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-03-02,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-24,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-03,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-06-21,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-09,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-02-01,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-10-10,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-28,['committee-passage'],MI,2023-2024 +ADOPTED,2023-01-11,['passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-01-24,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-11-01,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-02-14,['referral-committee'],MI,2023-2024 +ADOPTED,2023-04-27,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-02-07,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-28,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-09-13,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-16,['referral-committee'],MI,2023-2024 +adopted,2023-01-18,['passage'],MI,2023-2024 +adopted,2024-03-19,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-26,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-05-02,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-13,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +referred to Committee on Appropriations,2023-04-13,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-04-20,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-04-11,['referral-committee'],MI,2023-2024 +adopted,2023-02-28,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-28,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-02-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-14,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2023-05-23,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-04-13,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-28,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-04-25,['committee-passage'],MI,2023-2024 +referred to Committee on Education,2023-01-24,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-10-31,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-02-29,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-02,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-09-20,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-06-14,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-01-30,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-02-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-03-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-19,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-06-20,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-04-12,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-15,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-02-22,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-26,['committee-passage'],MI,2023-2024 +ADOPTED,2023-01-11,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-02,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-05-03,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-04-13,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-19,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-08,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-06-15,['referral-committee'],MI,2023-2024 +ADOPTED,2023-06-27,['passage'],MI,2023-2024 +referred to Committee on Education,2024-03-06,['referral-committee'],MI,2023-2024 +ADOPTED,2023-11-09,['passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-04,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-02,['committee-passage'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-02-01,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-01-18,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-09-26,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-01-18,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-03,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-28,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-03-22,['committee-passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-04-27,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-10-03,['committee-passage'],MI,2023-2024 +adopted,2023-02-28,['passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-06-14,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-16,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-09-28,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-01-24,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-16,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-16,['referral-committee'],MI,2023-2024 +ADOPTED,2023-10-03,['passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-10-26,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-04-25,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-04-26,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2023-05-25,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-10-17,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-21,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-09-26,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-05,['referral-committee'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-12,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-06,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-06-13,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-14,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-10,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-09-12,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-09-13,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-22,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-03-22,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-27,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2023-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-03-05,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-06-06,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-04-11,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-03,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-06-14,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-10,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-03-09,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-11-14,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-11-07,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-09-07,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-07,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-02-28,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-04-27,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-05-02,['committee-passage'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-02-20,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-13,['referral-committee'],MI,2023-2024 +postponed temporarily,2023-05-04,[],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-07-18,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-09-26,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-25,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-21,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2023-05-09,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-08,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-01-25,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-04-19,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-11,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-10-12,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2024-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-03-23,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-01-30,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-24,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-16,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-01-18,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-05-25,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-05-25,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-02-01,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-03,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-08,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-03-09,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-06-14,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-02-01,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-27,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-03-22,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-03-09,['referral-committee'],MI,2023-2024 +substitute (H-1) adopted,2024-02-14,[],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-10,['referral-committee'],MI,2023-2024 +ADOPTED,2024-05-22,['passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-02-22,['referral-committee'],MI,2023-2024 +ADOPTED,2024-05-22,['passage'],MI,2023-2024 +ADOPTED,2024-05-22,['passage'],MI,2023-2024 +ADOPTED,2024-04-24,['passage'],MI,2023-2024 +referred to Committee on Labor,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-03-20,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-03-20,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-03-20,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-05-04,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-03-05,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-05-17,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-05-04,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-05-04,['referral-committee'],MI,2023-2024 +ADOPTED,2024-05-23,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-4),2023-10-26,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-05-02,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-14,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-05-15,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-04-30,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-12,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-05-02,['committee-passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-04-09,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-03-05,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-27,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-05-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-07-30,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-07-30,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-07-30,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-07-30,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-07-30,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-07-30,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-05-23,['referral-committee'],MI,2023-2024 +ADOPTED,2024-06-12,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-24,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2024-04-24,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-11-14,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-09-17,['referral-committee'],MI,2023-2024 +ADOPTED,2024-09-17,['passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-09-17,[],MI,2023-2024 +referred to Committee on Education,2023-10-25,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2023-10-25,['referral-committee'],MI,2023-2024 +SENATOR REMOVED AS SPONSOR: MARK HUIZENGA,2024-09-18,[],MI,2023-2024 +referred to Committee on Criminal Justice,2024-01-16,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-10-11,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-20,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-09-19,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-09-19,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-09-19,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Ethics and Oversight,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-04-25,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-05-01,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-04-25,['referral-committee'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2024-05-01,['referral-committee'],MI,2023-2024 +notice given to discharge committee,2024-04-30,[],MI,2023-2024 +referred to Committee on Tax Policy,2024-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-05-23,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/23/2024,2024-05-28,[],MI,2023-2024 +referred to Committee on Government Operations,2024-05-23,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2024-05-21,['referral-committee'],MI,2023-2024 +read a first time,2023-10-26,['reading-1'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Education,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-04-25,['committee-passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-05-30,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-05-30,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-11-01,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-18,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-10-10,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-05-15,['committee-passage'],MI,2023-2024 +introduced by Representative Alabas Farhat,2023-03-14,['introduction'],MI,2023-2024 +adopted,2024-05-01,['passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-09-20,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-09-20,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-04-19,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-02-13,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-08-13,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-08-13,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-08-13,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-08-13,['referral-committee'],MI,2023-2024 +adopted,2024-06-13,['passage'],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-05-02,['committee-passage'],MI,2023-2024 +INTRODUCED BY SENATOR SEAN MCCANN,2024-03-07,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-02-15,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-16,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-02-22,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-11,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-08-15,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-04,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-04,['referral-committee'],MI,2023-2024 +ADOPTED,2024-05-02,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-09,['referral-committee'],MI,2023-2024 +transmitted,2024-04-30,[],MI,2023-2024 +referred to Committee on Health Policy,2023-10-18,['referral-committee'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-04-23,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-06-13,['committee-passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2024-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2024-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-06-06,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2024-04-10,['committee-passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2024-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2024-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-06-06,['referral-committee'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2024-06-06,['referral-committee'],MI,2023-2024 +ADOPTED,2024-04-09,['passage'],MI,2023-2024 +read a first time,2024-01-10,['reading-1'],MI,2023-2024 +ADOPTED,2024-05-07,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-04,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-04,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-01-12,['referral-committee'],MI,2023-2024 +read a first time,2023-06-15,['reading-1'],MI,2023-2024 +ADOPTED,2024-04-10,['passage'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2023-10-26,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-03-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-02-20,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-04-13,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-03-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-02-20,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-03-06,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-05-07,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-05-07,['committee-passage'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Agriculture,2023-05-25,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Higher Education,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-25,['referral-committee'],MI,2023-2024 +ADOPTED,2024-06-26,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-06-21,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-13,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-03-14,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-06-12,['committee-passage'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-06-26,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-03-14,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-18,['committee-passage'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-06-26,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-26,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-06-26,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-24,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/20/2024,2024-06-20,[],MI,2023-2024 +referred to Committee on Elections,2024-05-01,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-04-25,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Elections,2024-03-13,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2024-03-13,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2024-03-13,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-17,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2024-05-01,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-02-22,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-06-08,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2024-03-13,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-06-27,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-06-27,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-27,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/01/2024,2024-05-02,[],MI,2023-2024 +bill electronically reproduced 06/14/2023,2023-06-15,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 05/30/2023,2023-06-06,[],MI,2023-2024 +bill electronically reproduced 02/13/2024,2024-02-14,[],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +bill electronically reproduced 02/7/2024,2024-02-13,[],MI,2023-2024 +printed joint resolution filed 02/20/2024,2024-02-21,[],MI,2023-2024 +bill electronically reproduced 02/01/2023,2023-02-02,[],MI,2023-2024 +bill electronically reproduced 03/16/2023,2023-03-21,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/12/2024,2024-06-13,[],MI,2023-2024 +bill electronically reproduced 09/20/2023,2023-09-26,[],MI,2023-2024 +received in House,2023-01-11,['introduction'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-05-02,[],MI,2023-2024 +printed joint resolution filed 11/02/2023,2023-11-02,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +bill electronically reproduced 06/06/2023,2023-06-07,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-19,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 05/30/2023,2023-06-06,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 03/05/2024,2024-03-06,[],MI,2023-2024 +bill electronically reproduced 05/14/2024,2024-05-15,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +rule suspended,2024-06-20,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-03-06,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/04/2024,2024-06-05,[],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 02/7/2024,2024-02-13,[],MI,2023-2024 +bill electronically reproduced 06/22/2023,2023-06-27,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 06/06/2023,2023-06-07,[],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-19,[],MI,2023-2024 +bill electronically reproduced 06/22/2023,2023-06-27,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 10/05/2023,2023-10-10,[],MI,2023-2024 +bill electronically reproduced 01/16/2024,2024-01-17,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 09/27/2023,2023-09-28,[],MI,2023-2024 +bill electronically reproduced 10/11/2023,2023-10-12,[],MI,2023-2024 +rule suspended,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 05/17/2023,2023-05-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-22,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 03/22/2023,2023-03-23,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-09-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-19,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-09-19,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/01/2024,2024-05-02,[],MI,2023-2024 +bill electronically reproduced 06/13/2023,2023-06-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-09-19,['referral-committee'],MI,2023-2024 +adopted,2023-03-08,['passage'],MI,2023-2024 +bill electronically reproduced 03/06/2024,2024-03-07,[],MI,2023-2024 +bill electronically reproduced 02/13/2024,2024-02-14,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-11-02,[],MI,2023-2024 +bill electronically reproduced 02/29/2024,2024-03-05,[],MI,2023-2024 +bill electronically reproduced 05/09/2023,2023-05-10,[],MI,2023-2024 +bill electronically reproduced 10/03/2023,2023-10-04,[],MI,2023-2024 +bill electronically reproduced 03/05/2024,2024-03-06,[],MI,2023-2024 +bill electronically reproduced 06/13/2023,2023-06-14,[],MI,2023-2024 +bill electronically reproduced 03/22/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-07,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 10/19/2023,2023-10-24,[],MI,2023-2024 +bill electronically reproduced 03/05/2024,2024-03-06,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-09-28,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 03/22/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 06/18/2024,2024-06-20,[],MI,2023-2024 +bill electronically reproduced 06/22/2023,2023-06-27,[],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +motion to discharge committee approved,2023-03-22,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-04-30,['committee-passage'],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-25,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-04-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-10-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-12,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 04/19/2023,2023-04-20,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-07,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/05/2023,2023-10-10,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-14,[],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 09/13/2023,2023-09-14,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-07-18,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 03/16/2023,2023-03-21,[],MI,2023-2024 +bill electronically reproduced 09/12/2023,2023-09-13,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 10/10/2023,2023-10-11,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-28,['referral-committee'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 10/10/2023,2023-10-11,[],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-02-27,['committee-passage'],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 06/14/2023,2023-06-15,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-02-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-09-19,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/13/2023,2023-06-14,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-07-18,[],MI,2023-2024 +bill electronically reproduced 05/16/2024,2024-05-16,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-4),2023-10-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/09/2023,2023-05-10,[],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 04/23/2024,2024-04-24,[],MI,2023-2024 +bill electronically reproduced 06/07/2023,2023-06-08,[],MI,2023-2024 +bill electronically reproduced 06/13/2023,2023-06-14,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +bill electronically reproduced 05/17/2023,2023-05-18,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 10/10/2023,2023-10-11,[],MI,2023-2024 +bill electronically reproduced 03/06/2024,2024-03-07,[],MI,2023-2024 +bill electronically reproduced 05/01/2024,2024-05-02,[],MI,2023-2024 +bill electronically reproduced 03/13/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 01/31/2023,2023-02-01,[],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-05,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/04/2023,2023-10-05,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-06-12,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-06-13,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +bill electronically reproduced 05/02/2023,2023-05-03,[],MI,2023-2024 +bill electronically reproduced 03/12/2024,2024-03-13,[],MI,2023-2024 +bill electronically reproduced 03/05/2024,2024-03-06,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +referred to Committee on Labor,2023-03-09,['referral-committee'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 04/19/2023,2023-04-20,[],MI,2023-2024 +adopted,2023-04-19,['passage'],MI,2023-2024 +bill electronically reproduced 06/04/2024,2024-06-05,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-06-27,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/01/2024,2024-02-06,[],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 04/19/2023,2023-04-20,[],MI,2023-2024 +bill electronically reproduced 09/20/2023,2023-09-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-06-21,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-12,[],MI,2023-2024 +bill electronically reproduced 09/20/2023,2023-09-26,[],MI,2023-2024 +bill electronically reproduced 03/15/2023,2023-03-16,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 05/03/2023,2023-05-04,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-04-19,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 01/31/2023,2023-02-01,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +bill electronically reproduced 02/02/2023,2023-02-02,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-05-02,[],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +bill electronically reproduced 05/02/2023,2023-05-03,[],MI,2023-2024 +bill electronically reproduced 04/19/2023,2023-04-20,[],MI,2023-2024 +bill electronically reproduced 06/14/2023,2023-06-15,[],MI,2023-2024 +bill electronically reproduced 03/21/2023,2023-03-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 06/14/2023,2023-06-15,[],MI,2023-2024 +bill electronically reproduced 05/09/2023,2023-05-10,[],MI,2023-2024 +RULES SUSPENDED,2024-02-13,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-11-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 05/09/2023,2023-05-10,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 02/13/2024,2024-02-14,[],MI,2023-2024 +bill electronically reproduced 02/02/2023,2023-02-02,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-12,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 05/24/2023,2023-05-25,[],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +received in House,2023-01-11,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-24,['referral-committee'],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 05/14/2024,2024-05-15,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-15,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-09-27,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-05,['referral-committee'],MI,2023-2024 +bill electronically reproduced 01/30/2024,2024-01-31,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-15,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +printed joint resolution filed 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +read a first time,2023-03-14,['reading-1'],MI,2023-2024 +bill electronically reproduced 02/01/2024,2024-02-06,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 05/03/2023,2023-05-04,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-18,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/18/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-05-02,[],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-24,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-22,['committee-passage'],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +bill electronically reproduced 03/21/2023,2023-03-22,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 05/09/2023,2023-05-10,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 10/10/2023,2023-10-11,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-04-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 08/14/2024,2024-08-14,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2024-03-05,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-10-31,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 06/18/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 06/18/2024,2024-06-20,[],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +bill electronically reproduced 01/30/2024,2024-01-31,[],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 05/11/2023,2023-05-16,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-02-01,[],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 04/19/2023,2023-04-20,[],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +rule suspended,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 03/18/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-05-15,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/18/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +rule suspended,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-15,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-04-30,['committee-passage'],MI,2023-2024 +bill electronically reproduced 03/13/2024,2024-03-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-05,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 04/26/2023,2023-04-27,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-19,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/09/2023,2023-05-10,[],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +bill electronically reproduced 01/18/2024,2024-01-23,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-13,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/30/2023,2023-06-06,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-25,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2024-04-10,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 02/07/2023,2023-02-08,[],MI,2023-2024 +bill electronically reproduced 04/20/2023,2023-04-25,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 01/18/2024,2024-01-23,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-10,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 11/03/2023,2023-11-07,[],MI,2023-2024 +bill electronically reproduced 10/03/2023,2023-10-04,[],MI,2023-2024 +bill electronically reproduced 03/06/2024,2024-03-07,[],MI,2023-2024 +bill electronically reproduced 02/27/2024,2024-02-28,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-02-20,['referral-committee'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-02,[],MI,2023-2024 +received in House,2024-06-27,['introduction'],MI,2023-2024 +bill electronically reproduced 09/20/2023,2023-09-26,[],MI,2023-2024 +bill electronically reproduced 02/13/2024,2024-02-14,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 02/01/2023,2023-02-02,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-24,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 04/09/2024,2024-04-10,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-10-31,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 04/27/2023,2023-05-02,[],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-06-28,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-01-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-10-10,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 01/24/2023,2023-01-25,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-18,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 03/13/2024,2024-03-14,[],MI,2023-2024 +adopted,2023-05-04,['passage'],MI,2023-2024 +bill electronically reproduced 03/05/2024,2024-03-06,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +bill electronically reproduced 06/22/2023,2023-06-27,[],MI,2023-2024 +bill electronically reproduced 09/28/2023,2023-10-03,[],MI,2023-2024 +bill electronically reproduced 06/06/2024,2024-06-11,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-02,[],MI,2023-2024 +bill electronically reproduced 11/01/2023,2023-11-02,[],MI,2023-2024 +bill electronically reproduced 02/01/2023,2023-02-02,[],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +bill electronically reproduced 10/03/2023,2023-10-04,[],MI,2023-2024 +bill electronically reproduced 03/13/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 06/18/2024,2024-06-20,[],MI,2023-2024 +bill electronically reproduced 04/27/2023,2023-05-02,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-22,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-05,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-11,['referral-committee'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-14,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-14,[],MI,2023-2024 +bill electronically reproduced 06/18/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 05/14/2024,2024-05-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-5),2023-04-25,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-01-10,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 04/19/2023,2023-04-20,[],MI,2023-2024 +bill electronically reproduced 02/7/2024,2024-02-13,[],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-03,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-11-01,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 08/14/2024,2024-08-14,[],MI,2023-2024 +bill electronically reproduced 02/07/2023,2023-02-08,[],MI,2023-2024 +bill electronically reproduced 04/27/2023,2023-05-02,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 02/20/2024,2024-02-21,[],MI,2023-2024 +bill electronically reproduced 05/11/2023,2023-05-16,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-06-13,['referral-committee'],MI,2023-2024 +bill electronically reproduced 07/31/2024,2024-07-31,[],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/16/2023,2023-03-21,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-11-08,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-06-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 07/31/2024,2024-07-31,[],MI,2023-2024 +bill electronically reproduced 07/31/2024,2024-07-31,[],MI,2023-2024 +bill electronically reproduced 07/31/2024,2024-07-31,[],MI,2023-2024 +bill electronically reproduced 06/18/2024,2024-06-20,[],MI,2023-2024 +bill electronically reproduced 07/31/2024,2024-07-31,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-02-20,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/02/2023,2023-02-02,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 06/18/2024,2024-06-20,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-05-02,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/21/2023,2023-06-22,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-19,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-02-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 02/7/2024,2024-02-13,[],MI,2023-2024 +bill electronically reproduced 02/20/2024,2024-02-21,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-09-20,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +bill electronically reproduced 03/16/2023,2023-03-21,[],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-19,[],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 09/28/2023,2023-10-03,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 07/31/2024,2024-07-31,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 08/14/2024,2024-08-14,[],MI,2023-2024 +bill electronically reproduced 10/19/2023,2023-10-24,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-04-20,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 01/24/2023,2023-01-25,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +printed joint resolution filed 06/14/2023,2023-06-15,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +adopted,2024-02-14,['passage'],MI,2023-2024 +bill electronically reproduced 06/22/2023,2023-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 09/27/2023,2023-09-28,[],MI,2023-2024 +received in House,2023-01-12,['introduction'],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +RULES SUSPENDED,2024-05-02,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2023-05-23,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/13/2024,2024-02-14,[],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 11/03/2023,2023-11-07,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 05/24/2023,2023-05-25,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-05-02,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/28/2023,2023-10-03,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 06/20/2023,2023-06-21,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-03-19,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-04-27,[],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +bill electronically reproduced 06/12/2024,2024-06-13,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-28,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-07,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/20/2023,2023-06-21,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 11/07/2023,2023-11-08,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +bill electronically reproduced 10/18/2023,2023-10-19,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 06/12/2024,2024-06-13,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 02/02/2023,2023-02-02,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-05-25,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 10/10/2023,2023-10-11,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-03-22,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/13/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 03/16/2023,2023-03-21,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-27,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 06/27/2023,2023-06-28,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-14,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-14,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 04/27/2023,2023-05-02,[],MI,2023-2024 +bill electronically reproduced 10/10/2023,2023-10-11,[],MI,2023-2024 +read a first time,2024-02-21,['reading-1'],MI,2023-2024 +bill electronically reproduced 09/28/2023,2023-10-03,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 05/24/2023,2023-05-25,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-06-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-03-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-06-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/11/2023,2023-10-12,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-24,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 05/21/2024,2024-05-22,[],MI,2023-2024 +bill electronically reproduced 02/21/2024,2024-02-22,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-10-19,[],MI,2023-2024 +bill electronically reproduced 05/23/2024,2024-05-28,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-04-23,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-06-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-05-23,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2023-10-18,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 02/13/2024,2024-02-14,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-15,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 08/14/2024,2024-08-14,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 03/12/2024,2024-03-13,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-09-28,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 02/20/2024,2024-02-21,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 03/05/2024,2024-03-06,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-10-31,['committee-passage'],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 01/24/2023,2023-01-25,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 02/01/2023,2023-02-02,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 04/24/2024,2024-04-25,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 03/16/2023,2023-03-21,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-06-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-03-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 03/12/2024,2024-03-13,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-22,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-03-21,['committee-passage'],MI,2023-2024 +bill electronically reproduced 09/13/2023,2023-09-14,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 04/19/2023,2023-04-20,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-01,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 06/06/2023,2023-06-07,[],MI,2023-2024 +bill electronically reproduced 10/10/2023,2023-10-11,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +rule suspended,2024-05-23,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 03/18/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 06/27/2023,2023-06-28,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 05/23/2024,2024-05-28,[],MI,2023-2024 +bill electronically reproduced 03/16/2023,2023-03-21,[],MI,2023-2024 +bill electronically reproduced 09/18/2024,2024-09-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2024-06-18,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-09-17,[],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +bill electronically reproduced 02/14/2024,2024-02-20,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 11/03/2023,2023-11-07,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 01/16/2024,2024-01-17,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 06/14/2023,2023-06-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-11,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-01-26,['committee-passage'],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 05/23/2024,2024-05-28,[],MI,2023-2024 +bill electronically reproduced 05/23/2024,2024-05-28,[],MI,2023-2024 +bill electronically reproduced 08/23/2023,2023-08-24,[],MI,2023-2024 +bill electronically reproduced 05/23/2024,2024-05-28,[],MI,2023-2024 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2023-10-03,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 11/01/2023,2023-11-02,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-02-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +received in House,2023-03-21,['introduction'],MI,2023-2024 +bill electronically reproduced 06/27/2023,2023-06-28,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 11/03/2023,2023-11-07,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-21,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-25,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-03-16,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-03-21,['committee-passage'],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-03-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 05/01/2024,2024-05-02,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-04-27,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +referred to Committee on Elections,2023-10-12,['referral-committee'],MI,2023-2024 +printed joint resolution filed 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 02/20/2024,2024-02-21,[],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-03-20,['referral-committee'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-05-04,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 02/02/2023,2023-02-02,[],MI,2023-2024 +bill electronically reproduced 05/03/2023,2023-05-04,[],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 06/13/2024,2024-06-18,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 06/13/2024,2024-06-18,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-05-10,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 05/03/2023,2023-05-04,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 09/05/2023,2023-09-06,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 04/24/2024,2024-04-25,[],MI,2023-2024 +bill electronically reproduced 05/09/2023,2023-05-10,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-22,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 06/12/2024,2024-06-13,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-09,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 09/28/2023,2023-10-03,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-27,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 09/28/2023,2023-10-03,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-03,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-5),2023-01-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-18,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +ADOPTED AS AMENDED,2024-02-07,['passage'],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +printed joint resolution filed 05/16/2023,2023-05-17,[],MI,2023-2024 +received in House,2023-01-12,['introduction'],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-19,[],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 06/13/2024,2024-06-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-14,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-06-18,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-03-15,['committee-passage'],MI,2023-2024 +bill electronically reproduced 02/14/2024,2024-02-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-09,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/18/2024,2024-09-18,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 03/22/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 03/12/2024,2024-03-13,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-05-10,[],MI,2023-2024 +bill electronically reproduced 09/19/2023,2023-09-20,[],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-10-24,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +bill electronically reproduced 05/09/2023,2023-05-10,[],MI,2023-2024 +bill electronically reproduced 05/24/2023,2023-05-25,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 02/01/2023,2023-02-02,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +bill electronically reproduced 03/12/2024,2024-03-13,[],MI,2023-2024 +bill electronically reproduced 03/05/2024,2024-03-06,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 09/18/2024,2024-09-18,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 03/22/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 01/23/2024,2024-01-24,[],MI,2023-2024 +bill electronically reproduced 11/01/2023,2023-11-02,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 08/23/2023,2023-08-24,[],MI,2023-2024 +referred to Committee on Government Operations,2023-08-23,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 03/12/2024,2024-03-13,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-11-07,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/18/2024,2024-09-18,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 09/05/2023,2023-09-06,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 06/27/2023,2023-06-28,[],MI,2023-2024 +bill electronically reproduced 05/24/2023,2023-05-25,[],MI,2023-2024 +ADOPTED,2024-01-25,['passage'],MI,2023-2024 +bill electronically reproduced 09/18/2024,2024-09-18,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-05-23,['committee-passage'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2024-05-01,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +bill electronically reproduced 04/26/2023,2023-04-27,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-09-11,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/13/2023,2023-09-14,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-04-11,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 10/03/2023,2023-10-04,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 08/23/2023,2023-08-24,[],MI,2023-2024 +referred to Committee on Appropriations,2023-01-12,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 10/19/2023,2023-10-24,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-04-11,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/20/2024,2024-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-05-23,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-27,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-01,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-05-25,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 06/12/2024,2024-06-13,[],MI,2023-2024 +bill electronically reproduced 11/01/2023,2023-11-02,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 11/02/2023,2023-11-02,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-05-02,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-13,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/16/2023,2023-03-21,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-20,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-27,[],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 04/27/2023,2023-05-02,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-06-05,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-12,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-05-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/13/2023,2023-06-14,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2024-05-16,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-05-04,[],MI,2023-2024 +bill electronically reproduced 02/13/2024,2024-02-14,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-05,[],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-03-19,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 06/06/2023,2023-06-07,[],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +bill electronically reproduced 06/27/2023,2023-06-28,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-09-19,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 03/15/2023,2023-03-16,[],MI,2023-2024 +adopted,2023-03-23,['passage'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 10/05/2023,2023-10-10,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 10/10/2023,2023-10-11,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-05-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/18/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 04/09/2024,2024-04-10,[],MI,2023-2024 +bill electronically reproduced 06/14/2023,2023-06-15,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-02-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-05-04,[],MI,2023-2024 +bill electronically reproduced 08/23/2023,2023-08-24,[],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-20,[],MI,2023-2024 +bill electronically reproduced 09/05/2023,2023-09-06,[],MI,2023-2024 +bill electronically reproduced 02/7/2024,2024-02-13,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-20,[],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 09/19/2023,2023-09-20,[],MI,2023-2024 +referred to Committee on Tax Policy,2024-04-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-19,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 09/05/2023,2023-09-06,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-03-22,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/23/2024,2024-04-24,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 03/05/2024,2024-03-06,[],MI,2023-2024 +bill electronically reproduced 03/21/2023,2023-03-22,[],MI,2023-2024 +bill electronically reproduced 03/18/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 06/12/2024,2024-06-13,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-10-25,['committee-passage'],MI,2023-2024 +bill electronically reproduced 08/23/2023,2023-08-24,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-12,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/29/2024,2024-03-05,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-06-08,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-10-19,[],MI,2023-2024 +bill electronically reproduced 01/23/2024,2024-01-24,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-28,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-05-04,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2023-10-12,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 09/20/2023,2023-09-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 02/13/2024,2024-02-14,[],MI,2023-2024 +bill electronically reproduced 04/20/2023,2023-04-25,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +bill electronically reproduced 08/14/2024,2024-08-14,[],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-24,[],MI,2023-2024 +bill electronically reproduced 11/03/2023,2023-11-07,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 04/27/2023,2023-05-02,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-07-18,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +received in House,2023-06-28,['introduction'],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 06/14/2023,2023-06-15,[],MI,2023-2024 +bill electronically reproduced 05/10/2023,2023-05-11,[],MI,2023-2024 +bill electronically reproduced 08/14/2024,2024-08-14,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-07-18,[],MI,2023-2024 +bill electronically reproduced 04/27/2023,2023-05-02,[],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-05-18,['committee-passage'],MI,2023-2024 +bill electronically reproduced 09/13/2023,2023-09-14,[],MI,2023-2024 +bill electronically reproduced 02/07/2023,2023-02-08,[],MI,2023-2024 +bill electronically reproduced 08/14/2024,2024-08-14,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-27,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 04/20/2023,2023-04-25,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 01/30/2024,2024-01-31,[],MI,2023-2024 +bill electronically reproduced 02/01/2023,2023-02-02,[],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-17,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/05/2024,2024-03-06,[],MI,2023-2024 +referred to Committee on Elections,2023-05-16,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 02/7/2024,2024-02-13,[],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-03-22,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-04-11,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 06/06/2023,2023-06-07,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-18,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/05/2024,2024-03-06,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-03,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2023-03-09,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +referred to Committee on Health Policy,2023-09-07,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-05-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/19/2023,2023-10-24,[],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-24,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-11-01,['committee-passage'],MI,2023-2024 +received in House,2024-03-19,['introduction'],MI,2023-2024 +bill electronically reproduced 06/05/2024,2024-06-06,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-18,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/17/2024,2024-04-18,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 01/16/2024,2024-01-17,[],MI,2023-2024 +referred to Committee on Judiciary,2023-03-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-03-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 06/22/2023,2023-06-27,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 06/27/2023,2023-06-28,[],MI,2023-2024 +rule suspended,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 06/06/2023,2023-06-07,[],MI,2023-2024 +adopted,2023-05-16,['passage'],MI,2023-2024 +bill electronically reproduced 06/12/2024,2024-06-13,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/12/2024,2024-06-13,[],MI,2023-2024 +bill electronically reproduced 06/05/2024,2024-06-06,[],MI,2023-2024 +bill electronically reproduced 06/12/2024,2024-06-13,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 06/05/2024,2024-06-06,[],MI,2023-2024 +bill electronically reproduced 09/12/2023,2023-09-13,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-19,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 04/20/2023,2023-04-25,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 09/28/2023,2023-10-03,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2023-10-18,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/17/2023,2023-05-18,[],MI,2023-2024 +bill electronically reproduced 10/03/2023,2023-10-04,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 02/13/2024,2024-02-14,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +bill electronically reproduced 06/12/2024,2024-06-13,[],MI,2023-2024 +referred to Committee on Education,2023-10-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/14/2023,2023-06-15,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-05-25,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 10/04/2023,2023-10-05,[],MI,2023-2024 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2024-01-10,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 06/05/2024,2024-06-06,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 06/05/2024,2024-06-06,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-09,['referral-committee'],MI,2023-2024 +bill electronically reproduced 01/23/2024,2024-01-24,[],MI,2023-2024 +bill electronically reproduced 06/05/2024,2024-06-06,[],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 06/13/2023,2023-06-14,[],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +referred to Committee on Labor,2024-05-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/06/2023,2023-06-07,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-19,[],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 04/23/2024,2024-04-24,[],MI,2023-2024 +bill electronically reproduced 10/03/2023,2023-10-04,[],MI,2023-2024 +bill electronically reproduced 10/03/2023,2023-10-04,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-02-01,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-05,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 01/16/2024,2024-01-17,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 03/21/2023,2023-03-22,[],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +bill electronically reproduced 04/19/2023,2023-04-20,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +bill electronically reproduced 10/04/2023,2023-10-05,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 05/24/2023,2023-05-25,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 04/23/2024,2024-04-24,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +bill electronically reproduced 01/16/2024,2024-01-17,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-14,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-05-02,[],MI,2023-2024 +bill electronically reproduced 10/10/2023,2023-10-11,[],MI,2023-2024 +bill electronically reproduced 09/13/2023,2023-09-14,[],MI,2023-2024 +bill electronically reproduced 05/09/2023,2023-05-10,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-05-04,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +bill electronically reproduced 03/21/2023,2023-03-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-04-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/13/2024,2024-02-14,[],MI,2023-2024 +bill electronically reproduced 01/31/2023,2023-02-01,[],MI,2023-2024 +bill electronically reproduced 04/23/2024,2024-04-24,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-06-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-24,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 03/21/2023,2023-03-22,[],MI,2023-2024 +bill electronically reproduced 04/27/2023,2023-05-02,[],MI,2023-2024 +bill electronically reproduced 09/19/2023,2023-09-20,[],MI,2023-2024 +printed joint resolution filed 03/14/2023,2023-03-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/18/2024,2024-04-23,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 03/21/2023,2023-03-22,[],MI,2023-2024 +received in House,2024-01-24,['introduction'],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 06/22/2023,2023-06-27,[],MI,2023-2024 +bill electronically reproduced 04/23/2024,2024-04-24,[],MI,2023-2024 +bill electronically reproduced 03/21/2023,2023-03-22,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 06/22/2023,2023-06-27,[],MI,2023-2024 +bill electronically reproduced 03/18/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-05-04,[],MI,2023-2024 +bill electronically reproduced 02/02/2023,2023-02-02,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 08/22/2023,2023-08-23,[],MI,2023-2024 +bill electronically reproduced 06/04/2024,2024-06-05,[],MI,2023-2024 +bill electronically reproduced 06/27/2023,2023-06-28,[],MI,2023-2024 +bill electronically reproduced 03/13/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 04/23/2024,2024-04-24,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 09/27/2023,2023-09-28,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 06/07/2023,2023-06-08,[],MI,2023-2024 +bill electronically reproduced 10/18/2023,2023-10-19,[],MI,2023-2024 +bill electronically reproduced 06/12/2024,2024-06-13,[],MI,2023-2024 +bill electronically reproduced 03/18/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +bill electronically reproduced 09/20/2023,2023-09-26,[],MI,2023-2024 +bill electronically reproduced 05/11/2023,2023-05-16,[],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 06/12/2024,2024-06-13,[],MI,2023-2024 +bill electronically reproduced 07/20/2023,2023-08-22,[],MI,2023-2024 +bill electronically reproduced 06/13/2023,2023-06-14,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-04-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 05/11/2023,2023-05-16,[],MI,2023-2024 +bill electronically reproduced 09/20/2023,2023-09-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-12,['referral-committee'],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-19,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 10/03/2023,2023-10-04,[],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +printed joint resolution filed 10/12/2023,2023-10-17,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 05/11/2023,2023-05-16,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-12,['committee-passage'],MI,2023-2024 +bill electronically reproduced 09/19/2023,2023-09-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/11/2023,2023-10-12,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-05-02,[],MI,2023-2024 +bill electronically reproduced 09/12/2023,2023-09-13,[],MI,2023-2024 +bill electronically reproduced 10/19/2023,2023-10-24,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-27,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-4),2024-04-30,['committee-passage'],MI,2023-2024 +bill electronically reproduced 06/27/2023,2023-06-28,[],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +bill electronically reproduced 11/02/2023,2023-11-02,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-03,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-19,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2023-11-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/27/2023,2023-06-28,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-03-20,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 05/07/2024,2024-05-08,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-05-04,[],MI,2023-2024 +printed joint resolution filed 01/18/2024,2024-01-23,[],MI,2023-2024 +bill electronically reproduced 05/07/2024,2024-05-08,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 02/13/2024,2024-02-14,[],MI,2023-2024 +bill electronically reproduced 01/30/2024,2024-01-31,[],MI,2023-2024 +bill electronically reproduced 05/07/2024,2024-05-08,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-26,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-16,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-24,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 03/13/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 11/02/2023,2023-11-02,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +roll call Roll Call # 63 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-04-25,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 05/24/2023,2023-05-25,[],MI,2023-2024 +bill electronically reproduced 08/24/2023,2023-09-05,[],MI,2023-2024 +bill electronically reproduced 05/11/2023,2023-05-16,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-03-20,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/27/2023,2023-06-28,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-02,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 05/11/2023,2023-05-16,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-03-13,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 04/30/2024,2024-05-01,[],MI,2023-2024 +bill electronically reproduced 03/18/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 09/28/2023,2023-10-03,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +printed joint resolution filed 09/27/2023,2023-09-27,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-4),2023-10-19,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/28/2023,2023-10-03,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-10,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-04-30,['committee-passage'],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-05-23,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 06/22/2023,2023-06-27,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 06/12/2024,2024-06-13,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 01/31/2023,2023-02-01,[],MI,2023-2024 +bill electronically reproduced 01/10/2024,2024-01-16,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 09/28/2023,2023-10-03,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/22/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 09/20/2023,2023-09-26,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-03,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-26,[],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-03-07,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/04/2023,2023-10-05,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-04-23,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 01/17/2024,2024-01-18,[],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 07/31/2024,2024-07-31,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-14,[],MI,2023-2024 +bill electronically reproduced 11/01/2023,2023-11-02,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +referred to Committee on Elections,2023-10-12,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-18,['referral-committee'],MI,2023-2024 +adopted,2023-06-27,['passage'],MI,2023-2024 +motion to discharge committee rejected,2023-10-12,[],MI,2023-2024 +bill electronically reproduced 05/01/2024,2024-05-02,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-22,['referral-committee'],MI,2023-2024 +bill electronically reproduced 07/19/2023,2023-07-20,[],MI,2023-2024 +bill electronically reproduced 05/17/2023,2023-05-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-31,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/30/2024,2024-05-01,[],MI,2023-2024 +bill electronically reproduced 06/13/2023,2023-06-14,[],MI,2023-2024 +bill electronically reproduced 04/26/2023,2023-04-27,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-04-27,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 09/12/2023,2023-09-13,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-02,[],MI,2023-2024 +bill electronically reproduced 04/27/2023,2023-05-02,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 10/10/2023,2023-10-11,[],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-09-19,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-03-07,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +bill electronically reproduced 02/29/2024,2024-03-05,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-05-02,[],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-24,[],MI,2023-2024 +bill electronically reproduced 04/20/2023,2023-04-25,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 06/06/2023,2023-06-07,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 09/20/2023,2023-09-26,[],MI,2023-2024 +bill electronically reproduced 07/20/2023,2023-08-22,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 04/23/2024,2024-04-24,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 09/28/2023,2023-10-03,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-09-13,['referral-committee'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-05-02,[],MI,2023-2024 +bill electronically reproduced 02/13/2024,2024-02-14,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-10,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/07/2023,2023-06-08,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-06-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-11-02,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 03/06/2024,2024-03-07,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-25,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-19,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/20/2023,2023-09-26,[],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +bill electronically reproduced 03/16/2023,2023-03-21,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 03/21/2024,2024-04-09,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 01/16/2024,2024-01-17,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +ADOPTED AS AMENDED,2024-02-07,['passage'],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-21,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-09-26,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-11-09,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/13/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 03/19/2024,2024-03-20,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 03/21/2023,2023-03-22,[],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 02/13/2024,2024-02-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-27,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +bill electronically reproduced 03/05/2024,2024-03-05,[],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 02/29/2024,2024-03-05,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-04-27,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +printed joint resolution filed 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 02/21/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 05/09/2023,2023-05-10,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-28,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +motion to discharge committee approved,2023-04-13,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-20,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-17,['committee-passage'],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-04-27,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/27/2023,2023-05-02,[],MI,2023-2024 +bill electronically reproduced 05/11/2023,2023-05-16,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-02-21,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +bill electronically reproduced 10/04/2023,2023-10-05,[],MI,2023-2024 +bill electronically reproduced 03/18/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 04/26/2023,2023-04-27,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +bill electronically reproduced 03/05/2024,2024-03-06,[],MI,2023-2024 +bill electronically reproduced 02/14/2024,2024-02-20,[],MI,2023-2024 +bill electronically reproduced 03/12/2024,2024-03-13,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 10/04/2023,2023-10-05,[],MI,2023-2024 +bill electronically reproduced 04/19/2023,2023-04-20,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 05/01/2024,2024-05-02,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-10-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-06-12,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-19,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-24,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +bill electronically reproduced 05/18/2023,2023-05-23,[],MI,2023-2024 +bill electronically reproduced 06/13/2023,2023-06-14,[],MI,2023-2024 +bill electronically reproduced 09/27/2023,2023-09-28,[],MI,2023-2024 +bill electronically reproduced 09/20/2023,2023-09-26,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-02-14,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 05/23/2024,2024-05-28,[],MI,2023-2024 +printed joint resolution filed 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 05/23/2024,2024-05-28,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 05/23/2024,2024-05-28,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2023-06-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-20,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/13/2023,2023-06-14,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-03-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/23/2024,2024-05-28,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 09/27/2023,2023-09-28,[],MI,2023-2024 +bill electronically reproduced 10/05/2023,2023-10-10,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 05/24/2023,2023-05-25,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 05/22/2024,2024-05-23,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-03-16,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +printed joint resolution filed 03/13/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 10/03/2023,2023-10-04,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +ADOPTED,2023-02-21,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/20/2023,2023-09-26,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 02/01/2023,2023-02-02,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/04/2023,2023-10-05,[],MI,2023-2024 +bill electronically reproduced 02/7/2024,2024-02-13,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-06-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +bill electronically reproduced 09/20/2023,2023-09-26,[],MI,2023-2024 +bill electronically reproduced 05/11/2023,2023-05-16,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 10/19/2023,2023-10-24,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2023-06-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/19/2023,2023-09-20,[],MI,2023-2024 +bill electronically reproduced 10/10/2023,2023-10-11,[],MI,2023-2024 +bill electronically reproduced 09/13/2023,2023-09-14,[],MI,2023-2024 +bill electronically reproduced 03/13/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 04/20/2023,2023-04-25,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-19,[],MI,2023-2024 +adopted,2023-06-27,['passage'],MI,2023-2024 +bill electronically reproduced 09/28/2023,2023-10-03,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 05/01/2024,2024-05-02,[],MI,2023-2024 +bill electronically reproduced 05/10/2023,2023-05-11,[],MI,2023-2024 +bill electronically reproduced 10/10/2023,2023-10-11,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 01/30/2024,2024-01-31,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/30/2024,2024-05-01,[],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-10,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 02/07/2023,2023-02-08,[],MI,2023-2024 +bill electronically reproduced 03/13/2024,2024-03-14,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-22,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 06/13/2023,2023-06-14,[],MI,2023-2024 +bill electronically reproduced 06/13/2023,2023-06-14,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/22/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 05/18/2023,2023-05-23,[],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +bill electronically reproduced 04/27/2023,2023-05-02,[],MI,2023-2024 +printed joint resolution filed 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +bill electronically reproduced 10/04/2023,2023-10-05,[],MI,2023-2024 +bill electronically reproduced 05/30/2023,2023-06-06,[],MI,2023-2024 +bill electronically reproduced 05/07/2024,2024-05-08,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 08/23/2023,2023-08-24,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +bill electronically reproduced 04/19/2023,2023-04-20,[],MI,2023-2024 +bill electronically reproduced 03/15/2023,2023-03-16,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 05/11/2023,2023-05-16,[],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +rule suspended,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 02/20/2024,2024-02-21,[],MI,2023-2024 +rule suspended,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 09/19/2023,2023-09-20,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-06-14,['referral-committee'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-05-04,[],MI,2023-2024 +bill electronically reproduced 05/07/2024,2024-05-08,[],MI,2023-2024 +bill electronically reproduced 05/30/2024,2024-06-04,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 02/13/2024,2024-02-14,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-06-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 11/02/2023,2023-11-02,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 05/07/2024,2024-05-08,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 05/24/2023,2023-05-25,[],MI,2023-2024 +bill electronically reproduced 03/22/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 05/11/2023,2023-05-16,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-14,[],MI,2023-2024 +bill electronically reproduced 09/28/2023,2023-10-03,[],MI,2023-2024 +bill electronically reproduced 05/07/2024,2024-05-08,[],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 05/24/2023,2023-05-25,[],MI,2023-2024 +bill electronically reproduced 01/23/2024,2024-01-24,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +bill electronically reproduced 04/20/2023,2023-04-25,[],MI,2023-2024 +bill electronically reproduced 05/07/2024,2024-05-08,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 03/15/2023,2023-03-16,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 02/27/2024,2024-02-28,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-24,[],MI,2023-2024 +bill electronically reproduced 05/07/2024,2024-05-08,[],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-03-07,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 10/05/2023,2023-10-10,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-02-13,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 05/07/2024,2024-05-08,[],MI,2023-2024 +bill electronically reproduced 01/23/2024,2024-01-24,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 10/04/2023,2023-10-05,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-13,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 05/24/2023,2023-05-25,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-02-13,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-21,['referral-committee'],MI,2023-2024 +motion to discharge committee rejected,2024-05-07,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 09/13/2023,2023-09-14,[],MI,2023-2024 +referred to Committee on Criminal Justice,2023-09-07,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-09-27,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/07/2024,2024-05-08,[],MI,2023-2024 +bill electronically reproduced 06/06/2023,2023-06-07,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-13,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/27/2023,2023-06-28,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-06,['referral-committee'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-04-19,[],MI,2023-2024 +bill electronically reproduced 05/07/2024,2024-05-08,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-19,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-05-09,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-17,['committee-passage'],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 02/14/2024,2024-02-20,[],MI,2023-2024 +bill electronically reproduced 09/28/2023,2023-10-03,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 05/18/2023,2023-05-23,[],MI,2023-2024 +rule suspended,2023-10-25,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +printed joint resolution filed 03/05/2024,2024-03-06,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 03/05/2024,2024-03-06,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-12,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 03/15/2023,2023-03-16,[],MI,2023-2024 +bill electronically reproduced 11/03/2023,2023-11-07,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 05/02/2023,2023-05-03,[],MI,2023-2024 +bill electronically reproduced 03/18/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 02/14/2024,2024-02-20,[],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 06/04/2024,2024-06-05,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 03/16/2023,2023-03-21,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 06/04/2024,2024-06-05,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-04-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/7/2024,2024-02-13,[],MI,2023-2024 +bill electronically reproduced 06/05/2024,2024-06-06,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 10/10/2023,2023-10-11,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2023-03-22,['committee-passage'],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-09-19,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 01/30/2024,2024-01-31,[],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +bill electronically reproduced 11/03/2023,2023-11-07,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +bill electronically reproduced 02/01/2023,2023-02-02,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 05/30/2023,2023-06-06,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-05,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +rule suspended,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 03/21/2023,2023-03-22,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-03-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/28/2024,2024-02-29,[],MI,2023-2024 +bill electronically reproduced 09/13/2023,2023-09-14,[],MI,2023-2024 +bill electronically reproduced 10/05/2023,2023-10-10,[],MI,2023-2024 +bill electronically reproduced 05/02/2023,2023-05-03,[],MI,2023-2024 +bill electronically reproduced 02/7/2024,2024-02-13,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-04-27,[],MI,2023-2024 +bill electronically reproduced 06/11/2024,2024-06-12,[],MI,2023-2024 +bill electronically reproduced 10/04/2023,2023-10-05,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +bill electronically reproduced 09/27/2023,2023-09-28,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-02-28,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-19,[],MI,2023-2024 +bill electronically reproduced 01/30/2024,2024-01-31,[],MI,2023-2024 +bill electronically reproduced 04/19/2023,2023-04-20,[],MI,2023-2024 +bill electronically reproduced 02/14/2024,2024-02-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-05,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/27/2023,2023-05-02,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-03-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/07/2024,2024-05-08,[],MI,2023-2024 +bill electronically reproduced 02/29/2024,2024-03-05,[],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +referred to Committee on Health Policy,2023-04-11,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +bill electronically reproduced 05/11/2023,2023-05-16,[],MI,2023-2024 +bill electronically reproduced 05/07/2024,2024-05-08,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-21,[],MI,2023-2024 +bill electronically reproduced 02/7/2024,2024-02-13,[],MI,2023-2024 +bill electronically reproduced 03/06/2024,2024-03-07,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-05,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 03/18/2023,2023-03-09,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-20,[],MI,2023-2024 +bill electronically reproduced 01/26/2023,2023-01-26,[],MI,2023-2024 +bill electronically reproduced 02/29/2024,2024-03-05,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-20,[],MI,2023-2024 +bill electronically reproduced 05/08/2024,2024-05-09,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-06-21,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-22,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-27,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 01/26/2023,2023-01-26,[],MI,2023-2024 +bill electronically reproduced 01/30/2024,2024-01-31,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-02-22,[],MI,2023-2024 +motion to discharge committee approved,2024-02-07,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 11/02/2023,2023-11-02,[],MI,2023-2024 +bill electronically reproduced 05/10/2023,2023-05-11,[],MI,2023-2024 +bill electronically reproduced 03/21/2023,2023-03-22,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 10/04/2023,2023-10-05,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-01,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 02/01/2023,2023-02-02,[],MI,2023-2024 +bill electronically reproduced 10/05/2023,2023-10-10,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-20,[],MI,2023-2024 +bill electronically reproduced 03/13/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 05/18/2023,2023-05-23,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-12,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 10/05/2023,2023-10-10,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-21,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-20,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +received in House,2023-01-19,['introduction'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 06/14/2023,2023-06-15,[],MI,2023-2024 +bill electronically reproduced 10/05/2023,2023-10-10,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 03/07/2023,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 05/16/2024,2024-05-16,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-06-13,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 09/19/2023,2023-09-20,[],MI,2023-2024 +bill electronically reproduced 09/20/2023,2023-09-26,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-04-23,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/14/2023,2023-06-15,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 02/13/2024,2024-02-14,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +bill electronically reproduced 05/18/2023,2023-05-23,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 07/20/2023,2023-08-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-13,['referral-committee'],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/20/2024,2024-02-21,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +referred to Committee on Agriculture,2023-06-27,['referral-committee'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-05-09,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-07,['committee-passage'],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +bill electronically reproduced 10/05/2023,2023-10-10,[],MI,2023-2024 +bill electronically reproduced 06/22/2023,2023-06-27,[],MI,2023-2024 +bill electronically reproduced 02/07/2023,2023-02-08,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +bill electronically reproduced 05/24/2023,2023-05-25,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-03-16,[],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 05/02/2023,2023-05-03,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2023-10-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 05/30/2023,2023-06-06,[],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/28/2023,2023-10-03,[],MI,2023-2024 +bill electronically reproduced 01/24/2023,2023-01-25,[],MI,2023-2024 +bill electronically reproduced 03/14/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 02/01/2023,2023-02-02,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 05/09/2023,2023-05-10,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-02-20,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 10/05/2023,2023-10-10,[],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-09,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 09/12/2023,2023-09-13,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 03/22/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-31,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-02-01,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-24,['referral-committee'],MI,2023-2024 +bill electronically reproduced 01/30/2024,2024-01-31,[],MI,2023-2024 +bill electronically reproduced 10/19/2023,2023-10-24,[],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 06/13/2023,2023-06-14,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +bill electronically reproduced 04/27/2023,2023-05-02,[],MI,2023-2024 +bill electronically reproduced 05/14/2024,2024-05-15,[],MI,2023-2024 +bill electronically reproduced 03/12/2024,2024-03-13,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/16/2024,2024-05-16,[],MI,2023-2024 +bill electronically reproduced 02/01/2023,2023-02-02,[],MI,2023-2024 +bill electronically reproduced 02/01/2023,2023-02-02,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +bill electronically reproduced 03/05/2024,2024-03-06,[],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +rule suspended,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 05/30/2023,2023-06-06,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-01-26,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 03/13/2024,2024-03-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-31,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 06/22/2023,2023-06-27,[],MI,2023-2024 +bill electronically reproduced 04/27/2023,2023-05-02,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 05/09/2023,2023-05-10,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-06-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-08,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 04/27/2023,2023-05-02,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-10-26,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/26/2024,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 11/06/2023,2023-11-07,[],MI,2023-2024 +bill electronically reproduced 07/31/2024,2024-07-31,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-12,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 07/31/2024,2024-07-31,[],MI,2023-2024 +bill electronically reproduced 07/31/2024,2024-07-31,[],MI,2023-2024 +bill electronically reproduced 06/14/2023,2023-06-15,[],MI,2023-2024 +bill electronically reproduced 04/23/2024,2024-04-24,[],MI,2023-2024 +bill electronically reproduced 09/19/2023,2023-09-20,[],MI,2023-2024 +bill electronically reproduced 07/31/2024,2024-07-31,[],MI,2023-2024 +bill electronically reproduced 05/02/2023,2023-05-03,[],MI,2023-2024 +bill electronically reproduced 03/18/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 04/23/2024,2024-04-24,[],MI,2023-2024 +bill electronically reproduced 04/18/2024,2024-04-23,[],MI,2023-2024 +bill electronically reproduced 04/18/2024,2024-04-23,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-18,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-04-27,[],MI,2023-2024 +bill electronically reproduced 03/23/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +printed joint resolution filed 03/13/2024,2024-03-14,[],MI,2023-2024 +printed joint resolution filed 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 03/21/2023,2023-03-22,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 04/18/2024,2024-04-23,[],MI,2023-2024 +bill electronically reproduced 04/18/2024,2024-04-23,[],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +bill electronically reproduced 04/18/2024,2024-04-23,[],MI,2023-2024 +bill electronically reproduced 05/24/2023,2023-05-25,[],MI,2023-2024 +bill electronically reproduced 04/18/2024,2024-04-23,[],MI,2023-2024 +bill electronically reproduced 04/23/2024,2024-04-24,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 05/15/2024,2024-05-16,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-11-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-02,[],MI,2023-2024 +bill electronically reproduced 04/23/2024,2024-04-24,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 05/14/2024,2024-05-15,[],MI,2023-2024 +bill electronically reproduced 05/14/2024,2024-05-15,[],MI,2023-2024 +printed joint resolution filed 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 08/01/2024,2024-08-01,[],MI,2023-2024 +bill electronically reproduced 10/10/2023,2023-10-11,[],MI,2023-2024 +bill electronically reproduced 08/01/2024,2024-08-01,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +bill electronically reproduced 08/01/2024,2024-08-01,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 08/01/2024,2024-08-01,[],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-06,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/13/2023,2023-06-14,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 10/05/2023,2023-10-10,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +adopted,2024-05-08,['passage'],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-15,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 01/24/2023,2023-01-25,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-14,['committee-passage'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-04-17,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 05/14/2024,2024-05-15,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 05/14/2024,2024-05-15,[],MI,2023-2024 +bill electronically reproduced 06/27/2023,2023-06-28,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-05-02,['committee-passage'],MI,2023-2024 +bill electronically reproduced 03/06/2024,2024-03-07,[],MI,2023-2024 +bill electronically reproduced 05/09/2024,2024-05-14,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 05/17/2023,2023-05-18,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 02/01/2023,2023-02-02,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-09-26,['committee-passage'],MI,2023-2024 +bill electronically reproduced 05/09/2024,2024-05-14,[],MI,2023-2024 +bill electronically reproduced 05/09/2024,2024-05-14,[],MI,2023-2024 +bill electronically reproduced 05/09/2024,2024-05-14,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-06-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2023-06-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-02,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 06/27/2023,2023-06-28,[],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 01/10/2024,2024-01-16,[],MI,2023-2024 +bill electronically reproduced 04/13/2023,2023-04-19,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 01/26/2023,2023-01-26,[],MI,2023-2024 +printed joint resolution filed 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 06/22/2023,2023-06-27,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 03/12/2024,2024-03-13,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-19,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 01/31/2023,2023-02-01,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 09/11/2024,2024-09-11,[],MI,2023-2024 +substitute (H-1) adopted,2024-02-29,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 04/20/2023,2023-04-25,[],MI,2023-2024 +referred to Committee on Elections,2023-10-12,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/24/2024,2024-04-25,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-05-09,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 04/24/2024,2024-04-25,[],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +printed joint resolution filed 04/23/2024,2024-04-24,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-05-04,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-27,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-5),2024-03-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-10-19,[],MI,2023-2024 +printed joint resolution filed 04/23/2024,2024-04-24,[],MI,2023-2024 +rule suspended,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 03/12/2024,2024-03-13,[],MI,2023-2024 +bill electronically reproduced 04/12/2023,2023-04-13,[],MI,2023-2024 +bill electronically reproduced 10/25/2023,2023-10-26,[],MI,2023-2024 +bill electronically reproduced 11/03/2023,2023-11-07,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 03/13/2024,2024-03-14,[],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 10/11/2023,2023-10-12,[],MI,2023-2024 +bill electronically reproduced 01/23/2024,2024-01-24,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-01-18,[],MI,2023-2024 +bill electronically reproduced 01/23/2024,2024-01-24,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-03,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/07/2023,2023-06-08,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 06/07/2023,2023-06-08,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 06/13/2023,2023-06-14,[],MI,2023-2024 +referred to Committee on Appropriations,2024-02-22,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-18,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/24/2024,2024-04-25,[],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +bill electronically reproduced 03/02/2023,2023-03-07,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 03/21/2023,2023-03-22,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-26,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-10-19,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/7/2024,2024-02-13,[],MI,2023-2024 +bill electronically reproduced 04/09/2024,2024-04-10,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-04-27,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-24,['referral-committee'],MI,2023-2024 +received in House,2023-04-27,['introduction'],MI,2023-2024 +bill electronically reproduced 03/21/2023,2023-03-22,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +bill electronically reproduced 02/20/2024,2024-02-21,[],MI,2023-2024 +rule suspended,2023-10-25,[],MI,2023-2024 +bill electronically reproduced 05/23/2023,2023-05-24,[],MI,2023-2024 +bill electronically reproduced 05/17/2023,2023-05-18,[],MI,2023-2024 +bill electronically reproduced 02/15/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 01/17/2023,2023-01-18,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-05,['referral-committee'],MI,2023-2024 +bill electronically reproduced 07/18/2023,2023-07-19,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 09/18/2024,2024-09-18,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 09/18/2024,2024-09-18,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2024-06-18,['referral-committee'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-14,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2024-03-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/18/2023,2023-05-23,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-11-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/16/2023,2023-03-21,[],MI,2023-2024 +rule 71 suspended,2023-11-09,[],MI,2023-2024 +bill electronically reproduced 10/03/2023,2023-10-04,[],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-15,['committee-passage'],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-27,[],MI,2023-2024 +bill electronically reproduced 10/04/2023,2023-10-05,[],MI,2023-2024 +bill electronically reproduced 10/17/2023,2023-10-18,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 09/18/2024,2024-09-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-07,['referral-committee'],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +bill electronically reproduced 09/18/2024,2024-09-18,[],MI,2023-2024 +bill electronically reproduced 03/12/2024,2024-03-13,[],MI,2023-2024 +bill electronically reproduced 10/10/2023,2023-10-11,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-06-18,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-12,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 01/19/2023,2023-01-19,[],MI,2023-2024 +bill electronically reproduced 09/14/2023,2023-09-19,[],MI,2023-2024 +bill electronically reproduced 06/08/2023,2023-06-13,[],MI,2023-2024 +bill electronically reproduced 09/26/2023,2023-09-27,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-19,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +bill electronically reproduced 04/25/2023,2023-04-26,[],MI,2023-2024 +referred to Committee on Tax Policy,2023-04-27,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +bill electronically reproduced 02/22/2023,2023-02-22,[],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-11-09,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-06-12,['referral-committee'],MI,2023-2024 +bill electronically reproduced 08/23/2023,2023-08-24,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-03-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 09/12/2023,2023-09-13,[],MI,2023-2024 +bill electronically reproduced 09/27/2023,2023-09-28,[],MI,2023-2024 +bill electronically reproduced 03/18/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 06/27/2024,2024-06-27,[],MI,2023-2024 +bill electronically reproduced 01/23/2024,2024-01-24,[],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +bill electronically reproduced 05/24/2023,2023-05-25,[],MI,2023-2024 +bill electronically reproduced 11/09/2023,2023-11-14,[],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +bill electronically reproduced 06/28/2023,2023-06-29,[],MI,2023-2024 +bill electronically reproduced 03/05/2024,2024-03-06,[],MI,2023-2024 +bill electronically reproduced 06/27/2023,2023-06-28,[],MI,2023-2024 +bill electronically reproduced 02/01/2023,2023-02-02,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-18,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-06-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 11/14/2023,2023-12-31,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-03-15,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-18,['committee-passage'],MI,2023-2024 +bill electronically reproduced 04/27/2023,2023-05-02,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-24,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-05-02,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-04-27,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-31,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-09-26,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-23,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-13,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-25,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-03,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-02,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-04-12,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-03-15,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-21,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-21,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-09-19,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-25,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-19,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-06-13,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-26,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-07,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-03-07,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-05-04,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-05-23,['committee-passage'],MI,2023-2024 +placed on second reading,2023-10-25,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-24,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-12,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-26,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-03-16,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-02-07,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-01-18,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-23,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-11-02,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-10,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4),2024-06-26,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-02,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-05,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-25,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-02-14,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-18,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-28,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-17,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-20,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-22,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-10),2023-03-14,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-09-20,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-02-14,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-01-17,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-09-12,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2024-02-13,[],MI,2023-2024 +referred to Committee on Government Operations,2024-01-17,['referral-committee'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-22,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-26,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-31,['committee-passage'],MI,2023-2024 +adopted,2024-02-29,['passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-18,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-4),2023-05-30,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-12,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-18,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-04-20,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-01-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-02-14,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-05-04,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-04-26,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-03-14,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-21,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-03-07,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-21,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-07,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Health Policy,2023-07-18,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-11-08,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-18,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-26,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-06-14,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-09-20,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3) AND AMENDMENT(S),2024-06-25,['committee-passage'],MI,2023-2024 +placed on second reading,2023-10-25,[],MI,2023-2024 +referred to Committee on Appropriations,2023-03-09,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-08,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-16,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-06-25,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-25,['committee-passage'],MI,2023-2024 +bill electronically reproduced 05/04/2023,2023-05-09,[],MI,2023-2024 +adopted,2023-11-09,['passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-27,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-05-14,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-05-18,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2024-01-10,[],MI,2023-2024 +reported with recommendation without amendment,2023-05-23,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-17,[],MI,2023-2024 +per Rule 41 referred to Committee on Regulatory Reform,2023-02-28,[],MI,2023-2024 +referred to Committee on Tax Policy,2023-10-04,['referral-committee'],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2024-01-10,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-05-22,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-22,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-04,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-11) AND AMENDMENT(S),2024-05-09,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2024-01-10,[],MI,2023-2024 +rule suspended,2023-10-11,[],MI,2023-2024 +notice given to discharge committee,2023-09-19,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-31,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-19,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-05-02,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-01,['committee-passage'],MI,2023-2024 +placed on second reading,2023-10-25,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-11,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-19,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-04-19,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-15,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-03,['committee-passage'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-15,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-02-14,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-04-19,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-17,[],MI,2023-2024 +placed on motions and resolutions,2023-04-13,[],MI,2023-2024 +reported with recommendation without amendment,2023-04-19,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-04,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-04-26,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-09-19,[],MI,2023-2024 +reported with recommendation without amendment,2023-09-12,['committee-passage'],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +"reported with recommendation for referral to Committee on Military, Veterans and Homeland Security",2024-03-12,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-05-15,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-04-09,['committee-passage'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-03,[],MI,2023-2024 +reported with recommendation with substitute (H-3),2024-05-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-02-14,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-01-18,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-05-15,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-12,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2023-06-14,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-05-02,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-23,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-31,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-22,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-24,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-22,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-06-25,['committee-passage'],MI,2023-2024 +"REASSIGNED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-01-11,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-21,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-20,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-02-27,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-21,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-28,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-06-26,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-05-16,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-05-04,['committee-passage'],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-12,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2024-01-10,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-24,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-04-26,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-31,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-10-31,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-06-25,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-03-06,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-06-22,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-22,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-03-08,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-04-30,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-05-14,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2024-01-10,[],MI,2023-2024 +reported with recommendation without amendment,2023-09-20,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-03-22,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2024-01-18,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-25,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-09-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-03-14,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-31,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-01,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-30,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-05-02,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-02-21,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2024-01-10,[],MI,2023-2024 +reported with recommendation without amendment,2024-06-05,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-01-26,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-04-26,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-18,['committee-passage'],MI,2023-2024 +placed on second reading,2023-10-25,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-04-30,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-12,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2024-02-13,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-28,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2024-05-15,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-21,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-20,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-04,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-02-27,['committee-passage'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-13,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-05-02,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-03,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-06-12,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-10-31,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-08,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-04-11,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-03,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-17,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-09-27,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-09-28,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-22,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-20,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-04-27,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-13,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-06,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-26,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2023-06-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-24,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-02-01,['referral-committee'],MI,2023-2024 +per Rule 41 referred to Committee on Local Government and Municipal Finance,2024-02-14,[],MI,2023-2024 +reported with recommendation without amendment,2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2024-05-22,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-05-21,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-19,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-25,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-04,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-16,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-05-04,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-25,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-06-14,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-03-15,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-05-04,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-09-13,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-08,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-05-02,['referral-committee'],MI,2023-2024 +notice given to discharge committee,2024-02-13,[],MI,2023-2024 +placed on second reading,2023-10-25,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-23,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-23,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-04-19,['committee-passage'],MI,2023-2024 +rule suspended,2023-10-31,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-04-26,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-10,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-09-26,[],MI,2023-2024 +placed on second reading,2023-10-25,[],MI,2023-2024 +reported with recommendation without amendment,2024-06-11,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-01-17,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-16,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-03-22,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-31,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-01-11,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-03,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-21,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-11,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-06-26,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-04,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-06-11,['committee-passage'],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +notice given to discharge committee,2024-02-13,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-02-22,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-04,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-17,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-02,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-10-19,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-11-08,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-03-15,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-06-04,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-03,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-18,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-03-14,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-02-22,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-18,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-22,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-09-19,[],MI,2023-2024 +referred to Committee on Education,2024-01-17,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-03-06,['committee-passage'],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-20,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-4),2023-05-23,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Labor,2023-04-13,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-06,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2024-02-13,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-04-27,['referral-committee'],MI,2023-2024 +notice given to discharge committee,2024-02-13,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-03-16,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-26,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-10-26,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-10-25,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2024-02-13,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-03,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-03-22,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-27,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-03-16,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-18,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-04-26,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-04-27,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-07,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-06-04,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-02-20,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-04-20,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-13,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-08,['referral-committee'],MI,2023-2024 +bill electronically reproduced 06/27/2023,2023-06-28,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-31,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-31,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-03-01,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-05-09,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-09-20,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-04-27,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-02-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-06,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-10-24,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-19,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-04-17,['referral-committee'],MI,2023-2024 +per Rule 41 referred to Committee on Local Government and Municipal Finance,2023-09-27,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-11-07,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-18,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-06-18,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-22,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-18,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-03-12,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-17,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-22,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-14,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-25,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-3),2024-04-18,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-02-07,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-06-13,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-05-02,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-20,['committee-passage'],MI,2023-2024 +placed on second reading,2023-10-25,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-22,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-05-22,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-21,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-17,['committee-passage'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-06-06,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-25,['committee-passage'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +reported with recommendation without amendment,2024-05-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-20,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-02,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-07,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-01-19,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-25,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-31,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-03-12,['committee-passage'],MI,2023-2024 +bill electronically reproduced 10/10/2023,2023-10-11,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-18,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-31,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-05-02,[],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-06-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-12,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-22,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-20,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-11,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-05-02,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-17,['committee-passage'],MI,2023-2024 +transmitted,2023-06-27,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-20,['committee-passage'],MI,2023-2024 +reported with recommendation for referral to Committee on Health Policy,2023-02-28,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-05-15,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-21,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-04-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-03-15,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-01,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2024-06-18,[],MI,2023-2024 +reported with recommendation without amendment,2024-03-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-05-02,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-05-21,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-06-22,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-09-26,[],MI,2023-2024 +reported with recommendation without amendment,2023-05-04,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-27,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-31,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-08,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-06-13,['committee-passage'],MI,2023-2024 +placed on motions and resolutions,2024-02-07,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-02,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2024-02-13,[],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-10-03,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-02-22,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-03-16,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-05-22,['committee-passage'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-22,[],MI,2023-2024 +reported with recommendation for referral to Committee on Judiciary,2023-04-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-03-12,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-11,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-20,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-01,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-03-14,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-17,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-17,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-23,['committee-passage'],MI,2023-2024 +"REASSIGNED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-01-11,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-06-28,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-24,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-03-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-17,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-23,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-25,['committee-passage'],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-06-14,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-03-06,['committee-passage'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-03,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-21,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3) AND AMENDMENT(S),2024-06-26,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-14,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-02,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-12,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-18,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-31,['committee-passage'],MI,2023-2024 +rule suspended,2024-06-26,[],MI,2023-2024 +rule suspended,2023-01-26,[],MI,2023-2024 +notice given to discharge committee,2024-02-13,[],MI,2023-2024 +reported with recommendation without amendment,2023-03-01,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-07,['committee-passage'],MI,2023-2024 +bill electronically reproduced 02/28/2023,2023-03-01,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-14,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-02-07,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-05-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-04-18,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-24,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-08,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-02-27,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2023-06-14,['committee-passage'],MI,2023-2024 +bill electronically reproduced 02/22/2024,2024-02-22,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-30,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2024-06-18,['committee-passage'],MI,2023-2024 +adopted,2023-01-11,['passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2024-06-18,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-24,['committee-passage'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-04-30,[],MI,2023-2024 +reported with recommendation without amendment,2023-05-18,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-06-25,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-18,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-15,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-04-26,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2023-04-20,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-17,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Local Government and Municipal Finance,2024-02-14,[],MI,2023-2024 +referred to Committee on Health Policy,2023-09-14,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-18,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-05-02,['referral-committee'],MI,2023-2024 +placed on second reading,2023-10-25,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-25,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-02-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-11-01,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-14,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-05-17,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-03,['committee-passage'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-05-02,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-26,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-5),2023-06-13,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-03-14,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-31,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-06-25,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-07,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-31,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-05,['committee-passage'],MI,2023-2024 +referred to Committee on Labor,2023-06-21,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-10-25,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH AMENDMENT(S),2023-03-16,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-02-22,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-18,['committee-passage'],MI,2023-2024 +rule suspended,2024-06-27,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-17,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-12,[],MI,2023-2024 +reported with recommendation without amendment,2023-05-23,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-10,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-04-30,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-27,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-04,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-01-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-19,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-14,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-02,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2024-01-24,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-24,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-07,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-18,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-04-11,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-05-02,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-10-18,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-26,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-16,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-21,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-19,['committee-passage'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON APPROPRIATIONS,2024-02-01,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-06,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-03-08,['committee-passage'],MI,2023-2024 +placed on second reading,2023-10-25,[],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-17,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-13,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-05-22,['committee-passage'],MI,2023-2024 +rule suspended,2023-11-09,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-06-22,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2023-05-09,['referral-committee'],MI,2023-2024 +per Rule 41 referred to Committee on Local Government and Municipal Finance,2024-02-14,[],MI,2023-2024 +"REASSIGNED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-01-11,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-06,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-08,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-06,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-28,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-06,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2024-06-18,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-18,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-4),2024-05-15,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-18,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-31,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-17,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-04,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-18,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-03-14,['referral-committee'],MI,2023-2024 +per Rule 41 referred to Committee on Local Government and Municipal Finance,2024-05-15,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-26,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-13,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-31,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-17,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-24,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-04-24,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-17,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2024-06-18,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-02-22,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-10-12,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-20,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-22,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-02-27,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-03-06,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-17,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2024-02-13,[],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-03-12,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-03,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-02-29,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-01-17,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-06-04,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-15,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Local Government and Municipal Finance,2024-02-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-04-27,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-30,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-02-07,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-25,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-04-12,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-09-13,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-30,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-09-13,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-21,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-02-27,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-02,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2023-06-14,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-24,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-10-19,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Local Government and Municipal Finance,2024-02-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-09-20,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Regulatory Reform,2023-02-28,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-25,['committee-passage'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-22,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-22,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-16,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-19,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2024-02-13,[],MI,2023-2024 +reported with recommendation without amendment,2024-02-20,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2024-01-10,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-10,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-09-17,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-04-26,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-01-26,[],MI,2023-2024 +bill electronically reproduced 02/14/2023,2023-02-15,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-06-26,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-11,['committee-passage'],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-5),2023-05-04,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-23,['committee-passage'],MI,2023-2024 +adopted,2023-03-21,['passage'],MI,2023-2024 +per Rule 41 referred to Committee on Local Government and Municipal Finance,2024-02-14,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-17,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-17,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-23,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-09-20,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-08,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-26,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-09-19,[],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2024-01-10,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-07,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-03-12,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-25,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-06-13,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-02-06,['committee-passage'],MI,2023-2024 +reported with recommendation with amendment(s),2023-10-05,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-20,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-21,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2024-06-18,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-03,['committee-passage'],MI,2023-2024 +referred to Committee on Higher Education,2023-06-20,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-03-13,['committee-passage'],MI,2023-2024 +placed on motions and resolutions,2023-03-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-14,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-20,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-20,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-03-12,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-28,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-05-22,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-18,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-03,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-14,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-20,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-23,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-14,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-6) AND AMENDMENT(S),2023-10-26,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-09-26,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-03-07,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-20,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-03-07,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +reported with recommendation without amendment,2023-03-21,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-17,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-22,['committee-passage'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-10-24,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-06-12,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-08,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-23,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-4),2023-06-22,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-03-14,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-10-25,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-25,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-16,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-10-26,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-04,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-16,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-06,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-12,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-02,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Local Government and Municipal Finance,2024-02-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-05-22,['committee-passage'],MI,2023-2024 +placed on second reading,2024-06-20,[],MI,2023-2024 +placed on second reading,2023-10-25,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-28,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-09,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-12,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-09-20,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-11-02,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH AMENDMENT(S),2024-02-28,['committee-passage'],MI,2023-2024 +received in House,2023-10-04,['introduction'],MI,2023-2024 +reported with recommendation without amendment,2023-10-03,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-03,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-06-27,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-17,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-11,['committee-passage'],MI,2023-2024 +rule suspended,2024-06-25,[],MI,2023-2024 +reported with recommendation without amendment,2023-05-17,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-18,['committee-passage'],MI,2023-2024 +placed on second reading,2024-05-23,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-01,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-04-26,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-05-17,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-03-21,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-06-14,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2024-01-10,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-03-07,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-04-20,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-23,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-05-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-19,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-04-23,['committee-passage'],MI,2023-2024 +bill electronically reproduced 06/15/2023,2023-06-20,[],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2024-01-10,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-21,['committee-passage'],MI,2023-2024 +"REASSIGNED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-01-11,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-16,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-14,['referral-committee'],MI,2023-2024 +roll call Roll Call # 10 Yeas 98 Nays 5 Excused 0 Not Voting 5,2024-02-14,[],MI,2023-2024 +reported with recommendation without amendment,2023-05-17,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-06-13,[],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-09-20,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-03-19,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-03-22,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-02-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-05-22,['committee-passage'],MI,2023-2024 +rule suspended,2023-01-26,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4),2023-05-11,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-10,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-01,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-09-28,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-07,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-12,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-20,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-03,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-12,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-16,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-16,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3) AND AMENDMENT(S),2023-11-01,['committee-passage'],MI,2023-2024 +"REASSIGNED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-01-11,[],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-09-20,['committee-passage'],MI,2023-2024 +bill electronically reproduced 01/10/2024,2024-01-16,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-06,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-11-08,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-19,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-03-22,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-03-21,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-06,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Judiciary,2024-02-28,[],MI,2023-2024 +reported with recommendation without amendment,2023-04-19,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-10-11,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-02,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-19,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4) AND AMENDMENT(S),2023-10-26,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-20,['committee-passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-10-12,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-02,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-23,['committee-passage'],MI,2023-2024 +referred to Committee on Higher Education,2023-06-20,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-02-07,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2024-04-16,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-02-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-06-25,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-22,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-10,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-09-20,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-05-10,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-08,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-02,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-02-07,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-04-23,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-11-01,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-13,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-24,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-03,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-25,['committee-passage'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-22,[],MI,2023-2024 +reported with recommendation without amendment,2023-05-30,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-14,['committee-passage'],MI,2023-2024 +ADOPTED,2024-02-13,['passage'],MI,2023-2024 +"REASSIGNED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-01-11,[],MI,2023-2024 +reported with recommendation without amendment,2024-06-18,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-04-23,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-22,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-05-02,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-04-23,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-18,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-13,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-18,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-25,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-18,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +adopted,2023-01-11,['passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-13,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-31,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-19,['committee-passage'],MI,2023-2024 +bill electronically reproduced 03/20/2024,2024-03-21,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-25,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-5),2024-05-14,['committee-passage'],MI,2023-2024 +referred to second reading,2023-04-11,[],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-06-06,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-03-06,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-28,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-15,['committee-passage'],MI,2023-2024 +ADOPTED,2024-05-02,['passage'],MI,2023-2024 +adopted,2023-01-12,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-14,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-04-19,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2024-03-06,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-27,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-01-18,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Government Operations,2023-07-18,[],MI,2023-2024 +reported with recommendation with substitute (H-5),2024-02-07,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-03-21,['referral-committee'],MI,2023-2024 +bill electronically reproduced 09/27/2023,2023-09-28,[],MI,2023-2024 +referred to Committee on Government Operations,2024-01-17,['referral-committee'],MI,2023-2024 +per Rule 41 referred to Committee on Government Operations,2024-01-10,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-10-31,['referral-committee'],MI,2023-2024 +per Rule 41 referred to Committee on Government Operations,2023-07-18,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-31,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2024-05-02,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-08,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-20,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-26,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-18,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-18,['committee-passage'],MI,2023-2024 +SENATOR REMOVED AS SPONSOR: SYLVIA SANTANA,2023-09-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-22,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-02-27,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-19,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-23,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-03-06,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2024-04-10,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-04-09,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-01-24,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-21,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-05-02,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-11,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-16,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-04-23,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-11,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-09,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-5),2023-04-25,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-03-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-04-20,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-03,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-04-11,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-06-13,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-17,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2024-01-10,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-10-11,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Local Government and Municipal Finance,2024-02-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-30,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2024-02-13,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-23,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-13,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-04-27,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-19,['committee-passage'],MI,2023-2024 +received in House,2024-02-13,['introduction'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-03-15,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-17,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-04-11,['committee-passage'],MI,2023-2024 +received in House,2024-01-10,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-14,['referral-committee'],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2023-09-12,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-03-14,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-06,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-20,['committee-passage'],MI,2023-2024 +"REASSIGNED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-01-11,[],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-05-04,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-21,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-04-26,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-04-12,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-03-05,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-04-12,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-13,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-06-13,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-26,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-22,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-09-26,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-05,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-25,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-13,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-23,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-03-08,[],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-03-23,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-04-12,['committee-passage'],MI,2023-2024 +referred to Committee on Labor,2023-09-20,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-05-04,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-02-29,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-13,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-11-08,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-17,['committee-passage'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-03-15,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-11,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-03-22,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-22,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-06-06,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-09-28,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-25,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-11-07,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-24,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-01-17,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-24,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-09-28,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-09-06,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2024-02-13,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-10,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-03-14,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-06,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-04-11,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-03,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-03,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-26,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-11,['committee-passage'],MI,2023-2024 +placed on second reading,2023-10-25,[],MI,2023-2024 +reported with recommendation without amendment,2023-05-16,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Local Government and Municipal Finance,2024-02-14,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-21,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-28,['committee-passage'],MI,2023-2024 +adopted,2023-06-28,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2023-05-04,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-02-13,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-19,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-25,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-14,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-16,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-06,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-03-12,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-06-06,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-20,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-5),2023-04-12,['committee-passage'],MI,2023-2024 +"REASSIGNED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-01-11,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-03,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-02,['referral-committee'],MI,2023-2024 +bill electronically reproduced 10/12/2023,2023-10-17,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-01,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-08,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-31,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-05-09,['referral-committee'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-02-01,[],MI,2023-2024 +adopted,2024-03-19,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-05-04,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-03,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-31,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-04-11,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-16,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-18,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-19,['committee-passage'],MI,2023-2024 +adopted,2024-01-24,['passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-05-04,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-28,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-04-19,['committee-passage'],MI,2023-2024 +rule suspended,2023-05-11,[],MI,2023-2024 +"REASSIGNED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-01-11,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-20,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-04,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-25,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-4),2023-09-26,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-13,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-02,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-10-10,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-03,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-04-26,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Local Government and Municipal Finance,2024-02-14,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-21,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-13,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-13,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-06-22,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4),2023-10-19,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-07,['committee-passage'],MI,2023-2024 +referred to Committee on Higher Education,2023-10-18,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-06-21,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-27,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Judiciary,2023-02-07,[],MI,2023-2024 +reported with recommendation without amendment,2023-09-27,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2023-05-04,['referral-committee'],MI,2023-2024 +per Rule 41 referred to Committee on Health Policy,2024-01-18,[],MI,2023-2024 +adopted,2023-05-24,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-11,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-10-17,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-03-16,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-09-26,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-10,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-04-20,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-08,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-19,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-10-19,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-17,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-14,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-06,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-19,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-21,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2023-05-04,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-02-14,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-02-06,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-23,['committee-passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-01-17,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-13,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-10-24,[],MI,2023-2024 +notice given to discharge committee,2023-04-11,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-28,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-04-11,[],MI,2023-2024 +reported with recommendation without amendment,2023-03-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-4),2023-05-04,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-03,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-03-22,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2024-01-24,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-21,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-02,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-18,['committee-passage'],MI,2023-2024 +"REASSIGNED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-01-11,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-21,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-06-13,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-18,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-26,['committee-passage'],MI,2023-2024 +referred to Committee on Higher Education,2023-10-18,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-05,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-5),2023-01-26,['committee-passage'],MI,2023-2024 +adopted,2023-01-12,['passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-09-20,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-20,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2023-05-02,['referral-committee'],MI,2023-2024 +"REASSIGNED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-01-11,[],MI,2023-2024 +received in House,2024-05-21,['introduction'],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2024-01-10,[],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2024-01-10,[],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2024-01-10,[],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2024-01-10,[],MI,2023-2024 +reported with recommendation with substitute (H-4),2024-05-23,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-10-25,['referral-committee'],MI,2023-2024 +bill electronically reproduced 05/16/2023,2023-05-17,[],MI,2023-2024 +bill electronically reproduced 03/22/2023,2023-03-23,[],MI,2023-2024 +bill electronically reproduced 04/11/2023,2023-04-12,[],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +bill electronically reproduced 09/07/2023,2023-09-12,[],MI,2023-2024 +bill electronically reproduced 05/25/2023,2023-05-30,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-11-01,['referral-committee'],MI,2023-2024 +bill electronically reproduced 03/16/2023,2023-03-21,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-11,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-12,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-05-14,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-02-21,['committee-passage'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-04-30,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-04-30,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-05,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-06-26,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-09-11,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-10-04,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-03-05,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Government Operations,2024-04-30,[],MI,2023-2024 +motion to discharge committee rejected,2024-05-02,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-11,['committee-passage'],MI,2023-2024 +bill electronically reproduced 10/26/2023,2023-10-31,[],MI,2023-2024 +bill electronically reproduced 05/21/2024,2024-05-22,[],MI,2023-2024 +reported with recommendation without amendment,2024-03-06,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-11,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-10-19,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-01,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-04-23,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-21,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-22,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-05-15,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-11-07,[],MI,2023-2024 +bill electronically reproduced 04/25/2024,2024-04-30,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-05-02,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-24,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-03-19,['committee-passage'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2024-06-05,[],MI,2023-2024 +notice given to discharge committee,2023-11-07,[],MI,2023-2024 +notice given to discharge committee,2023-11-07,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-15,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-05-22,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-04-30,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-05-02,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-05-02,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-05-02,['committee-passage'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-04-30,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-31,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-18,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-12,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-21,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-02-21,['committee-passage'],MI,2023-2024 +referred to second reading,2024-04-18,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-06,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-10-17,['committee-passage'],MI,2023-2024 +referred to second reading,2024-05-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-19,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-04,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-20,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-20,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-20,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-20,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-18,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-06-18,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-20,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-18,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-24,['committee-passage'],MI,2023-2024 +bill electronically reproduced 01/12/2023,2023-01-17,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-05-23,['referral-committee'],MI,2023-2024 +bill electronically reproduced 08/23/2023,2023-08-24,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-11,['committee-passage'],MI,2023-2024 +bill electronically reproduced 10/24/2023,2023-10-25,[],MI,2023-2024 +reported with recommendation without amendment,2024-06-11,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-01-17,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-04,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-04,['committee-passage'],MI,2023-2024 +adopted,2024-06-27,['passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-04,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-25,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-25,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-01,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-18,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-26,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-16,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-02,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-04-23,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-05-16,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-05-16,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-05-23,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-02,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-18,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-26,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-26,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-31,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-16,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-02,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-16,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-23,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-19,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-05-18,['referral-committee'],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +referred to second reading,2024-04-23,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-11,[],MI,2023-2024 +referred to second reading,2023-10-03,[],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +rule suspended,2023-02-01,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-05-09,['committee-passage'],MI,2023-2024 +referred to second reading,2024-06-12,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-11,[],MI,2023-2024 +referred to second reading,2023-04-11,[],MI,2023-2024 +referred to second reading,2023-04-11,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-08,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-18,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-01,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-15,[],MI,2023-2024 +referred to second reading,2023-09-27,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-05-09,['committee-passage'],MI,2023-2024 +referred to second reading,2023-03-15,[],MI,2023-2024 +reported with recommendation without amendment,2024-05-23,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2024-05-07,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-02-27,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-05-02,[],MI,2023-2024 +referred to Committee on Government Operations,2024-02-13,['referral-committee'],MI,2023-2024 +referred to second reading,2023-04-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-11,[],MI,2023-2024 +SUBSTITUTE (S-5) CONCURRED IN,2023-04-25,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-10,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-11,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4),2023-05-10,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-19,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-23,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-4) CONCURRED IN,2023-10-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-05,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-03-19,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +referred to second reading,2023-05-30,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-11,[],MI,2023-2024 +referred to second reading,2024-03-06,[],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-26,[],MI,2023-2024 +referred to second reading,2023-04-12,[],MI,2023-2024 +adopted by unanimous standing vote,2024-01-10,['passage'],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +referred to second reading,2023-09-28,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-13,['committee-passage'],MI,2023-2024 +referred to second reading,2023-04-20,[],MI,2023-2024 +referred to second reading,2023-04-19,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2024-01-24,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-16,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-01,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-23,[],MI,2023-2024 +referred to second reading,2023-10-03,[],MI,2023-2024 +referred to second reading,2023-10-03,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-04-30,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-05-22,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-26,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-17,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-08,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-09-28,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2023-05-10,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-05-10,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-24,[],MI,2023-2024 +returned to Senate,2023-01-12,[],MI,2023-2024 +referred to second reading,2024-02-06,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-07,['committee-passage'],MI,2023-2024 +returned to Senate,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-03,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +referred to second reading,2023-10-18,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-18,[],MI,2023-2024 +referred to second reading,2024-03-05,[],MI,2023-2024 +referred to second reading,2023-04-12,[],MI,2023-2024 +referred to second reading,2023-05-23,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +referred to second reading,2024-05-02,[],MI,2023-2024 +referred to second reading,2023-03-14,[],MI,2023-2024 +reported with recommendation without amendment,2024-05-23,['committee-passage'],MI,2023-2024 +referred to second reading,2023-03-07,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-20,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2023-11-01,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-20,[],MI,2023-2024 +referred to second reading,2024-03-05,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-04-19,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-07,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-23,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-16,['committee-passage'],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +notice given to discharge committee,2023-04-12,[],MI,2023-2024 +referred to second reading,2024-02-14,[],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-23,[],MI,2023-2024 +reported with recommendation without amendment,2024-05-23,['committee-passage'],MI,2023-2024 +referred to second reading,2023-03-22,[],MI,2023-2024 +referred to second reading,2024-06-04,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-01,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2024-05-07,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +referred to second reading,2024-05-16,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-11,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-03,[],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +HOUSE CONCURRENCE RECEIVED,2024-07-30,[],MI,2023-2024 +referred to second reading,2023-10-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-04-30,['referral-committee'],MI,2023-2024 +motion to discharge committee postponed for day,2024-02-14,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +referred to second reading,2023-05-10,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-28,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-04-12,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-09-11,[],MI,2023-2024 +referred to second reading,2023-10-19,[],MI,2023-2024 +referred to second reading,2023-06-22,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-04-12,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-10-19,[],MI,2023-2024 +referred to second reading,2023-09-13,[],MI,2023-2024 +referred to Committee on Tax Policy,2024-02-07,['referral-committee'],MI,2023-2024 +referred to second reading,2023-05-24,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-17,['committee-passage'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON HEALTH POLICY,2023-04-26,[],MI,2023-2024 +referred to second reading,2023-06-06,[],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-03-15,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-05-22,[],MI,2023-2024 +referred to second reading,2023-10-03,[],MI,2023-2024 +referred to second reading,2024-02-21,[],MI,2023-2024 +referred to second reading,2023-09-06,[],MI,2023-2024 +motion to discharge committee approved,2023-11-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-05-07,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-22,[],MI,2023-2024 +referred to second reading,2024-06-04,[],MI,2023-2024 +referred to second reading,2023-11-02,[],MI,2023-2024 +RULES SUSPENDED,2024-02-14,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-06-18,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +referred to second reading,2024-04-23,[],MI,2023-2024 +referred to second reading,2023-04-11,[],MI,2023-2024 +referred to second reading,2023-04-12,[],MI,2023-2024 +referred to second reading,2024-05-16,[],MI,2023-2024 +motion to discharge committee approved,2023-05-11,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-05-23,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-18,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-19,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-11,[],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-04-12,['committee-passage'],MI,2023-2024 +referred to second reading,2023-11-02,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-25,[],MI,2023-2024 +referred to second reading,2023-09-28,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-11-02,['committee-passage'],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-02,[],MI,2023-2024 +reported with recommendation without amendment,2023-05-17,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-06-26,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-10-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-11,[],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +referred to second reading,2023-03-23,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +referred to second reading,2024-02-29,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +notice given to discharge committee,2023-03-15,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-06,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-23,['committee-passage'],MI,2023-2024 +referred to second reading,2023-09-13,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-03-16,['committee-passage'],MI,2023-2024 +referred to second reading,2023-05-10,[],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +motion to discharge committee approved,2023-11-08,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-05,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-20,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-05-10,['committee-passage'],MI,2023-2024 +referred to second reading,2024-03-19,[],MI,2023-2024 +referred to second reading,2023-04-20,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +referred to second reading,2023-09-28,[],MI,2023-2024 +referred to second reading,2023-10-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-19,[],MI,2023-2024 +referred to second reading,2024-02-13,[],MI,2023-2024 +referred to second reading,2024-03-06,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-19,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-06-07,['committee-passage'],MI,2023-2024 +referred to second reading,2024-06-04,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-27,['committee-passage'],MI,2023-2024 +referred to second reading,2023-06-14,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-11-08,[],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +referred to second reading,2023-05-23,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +notice given to discharge committee,2023-10-31,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-06-06,[],MI,2023-2024 +referred to second reading,2024-03-12,[],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-06-12,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-10-19,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-05-02,[],MI,2023-2024 +referred to second reading,2023-04-26,[],MI,2023-2024 +referred to second reading,2024-05-21,[],MI,2023-2024 +referred to second reading,2023-09-13,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-26,[],MI,2023-2024 +referred to second reading,2023-09-27,[],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +referred to second reading,2023-10-10,[],MI,2023-2024 +referred to second reading,2024-05-21,[],MI,2023-2024 +notice given to discharge committee,2023-04-12,[],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +referred to second reading,2023-10-03,[],MI,2023-2024 +notice given to discharge committee,2023-04-12,[],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +referred to second reading,2024-05-22,[],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-04,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2024-02-13,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-20,['committee-passage'],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +referred to second reading,2023-06-06,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-05,[],MI,2023-2024 +referred to second reading,2023-06-08,[],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-06-20,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-19,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-04-25,['committee-passage'],MI,2023-2024 +returned to Senate,2023-06-28,[],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +referred to second reading,2024-06-04,[],MI,2023-2024 +adopted by unanimous standing vote,2024-05-21,['passage'],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-22,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-04-09,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-06,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +referred to second reading,2023-10-25,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +referred to second reading,2023-03-21,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-25,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-12,['committee-passage'],MI,2023-2024 +referred to second reading,2024-04-24,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-07,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF RESOLUTIONS,2023-05-25,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +referred to second reading,2023-09-13,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-11,['committee-passage'],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +SUBSTITUTE (S-5) CONCURRED IN,2023-01-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-16,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-01-17,[],MI,2023-2024 +reported with recommendation without amendment,2024-04-23,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-09-19,[],MI,2023-2024 +referred to second reading,2023-05-04,[],MI,2023-2024 +referred to second reading,2023-11-02,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-03-14,[],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-31,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-10-25,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-06-13,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-03-16,['committee-passage'],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +"per Rule 41 referred to Committee on Energy, Communications, and Technology",2024-04-30,[],MI,2023-2024 +referred to second reading,2023-06-14,[],MI,2023-2024 +referred to second reading,2023-06-06,[],MI,2023-2024 +referred to second reading,2023-09-28,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-20,[],MI,2023-2024 +referred to second reading,2023-05-23,[],MI,2023-2024 +referred to second reading,2023-09-13,[],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-04-18,['committee-passage'],MI,2023-2024 +referred to second reading,2024-02-21,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-04,[],MI,2023-2024 +motion to discharge committee postponed for day,2024-02-14,[],MI,2023-2024 +referred to second reading,2023-06-06,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-10-11,[],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +returned to Senate,2024-01-24,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-06-22,[],MI,2023-2024 +referred to second reading,2024-05-16,[],MI,2023-2024 +referred to second reading,2024-04-23,[],MI,2023-2024 +referred to second reading,2024-01-24,[],MI,2023-2024 +referred to second reading,2023-03-08,[],MI,2023-2024 +motion to discharge committee approved,2023-11-08,[],MI,2023-2024 +referred to second reading,2023-05-04,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-17,[],MI,2023-2024 +referred to second reading,2023-06-06,[],MI,2023-2024 +reported with recommendation with substitute (H-4),2024-03-13,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-05-10,['committee-passage'],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-11,[],MI,2023-2024 +referred to second reading,2023-03-22,[],MI,2023-2024 +referred to second reading,2023-10-18,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-04-18,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-01-18,[],MI,2023-2024 +referred to second reading,2024-02-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-05-22,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-06-14,[],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +RULES SUSPENDED,2024-05-15,[],MI,2023-2024 +referred to second reading,2024-05-15,[],MI,2023-2024 +referred to second reading,2024-05-02,[],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-04-09,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-24,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-24,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-11,[],MI,2023-2024 +referred to second reading,2023-09-06,[],MI,2023-2024 +motion to discharge committee approved,2023-10-31,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-02-22,[],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-08,['committee-passage'],MI,2023-2024 +referred to second reading,2024-04-18,[],MI,2023-2024 +referred to second reading,2024-04-18,[],MI,2023-2024 +referred to second reading,2023-10-25,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +referred to second reading,2024-05-21,[],MI,2023-2024 +referred to second reading,2024-05-21,[],MI,2023-2024 +referred to second reading,2023-11-08,[],MI,2023-2024 +referred to second reading,2023-03-16,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-04,['committee-passage'],MI,2023-2024 +returned to Senate,2023-01-11,[],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +referred to second reading,2023-05-04,[],MI,2023-2024 +SUBSTITUTE (S-2) AS AMENDED CONCURRED IN,2023-04-20,[],MI,2023-2024 +referred to second reading,2023-03-07,[],MI,2023-2024 +referred to second reading,2023-05-18,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-04,[],MI,2023-2024 +referred to second reading,2023-05-23,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-03-16,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2023-06-14,[],MI,2023-2024 +referred to second reading,2023-03-22,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-18,['committee-passage'],MI,2023-2024 +referred to second reading,2023-10-03,[],MI,2023-2024 +referred to second reading,2023-05-18,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-31,[],MI,2023-2024 +motion to discharge committee rejected,2023-09-20,[],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +referred to second reading,2023-03-15,[],MI,2023-2024 +REASSIGNED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-10-03,[],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +adopted,2023-04-13,['passage'],MI,2023-2024 +referred to second reading,2023-04-19,[],MI,2023-2024 +referred to second reading,2023-06-07,[],MI,2023-2024 +referred to second reading,2023-09-28,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-02-14,[],MI,2023-2024 +referred to second reading,2023-10-03,[],MI,2023-2024 +referred to second reading,2023-05-04,[],MI,2023-2024 +referred to second reading,2023-03-22,[],MI,2023-2024 +referred to second reading,2023-06-22,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-09,['committee-passage'],MI,2023-2024 +referred to second reading,2023-06-22,[],MI,2023-2024 +referred to second reading,2024-02-14,[],MI,2023-2024 +referred to second reading,2023-09-28,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-03-16,['committee-passage'],MI,2023-2024 +referred to second reading,2023-03-01,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-09,['committee-passage'],MI,2023-2024 +referred to second reading,2023-05-30,[],MI,2023-2024 +referred to second reading,2023-09-13,[],MI,2023-2024 +motion to discharge committee postponed for day,2024-02-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-01-26,['committee-passage'],MI,2023-2024 +motion to discharge committee rejected,2023-09-20,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +referred to second reading,2023-03-08,[],MI,2023-2024 +referred to second reading,2023-05-04,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-08,['committee-passage'],MI,2023-2024 +motion to discharge committee postponed for day,2024-02-14,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +RULES SUSPENDED,2024-02-14,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-27,['committee-passage'],MI,2023-2024 +referred to second reading,2023-03-15,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-14,[],MI,2023-2024 +referred to second reading,2023-03-15,[],MI,2023-2024 +referred to second reading,2023-03-22,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-28,[],MI,2023-2024 +referred to second reading,2023-04-26,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-10-19,[],MI,2023-2024 +referred to second reading,2024-02-14,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +motion to discharge committee rejected,2023-09-20,[],MI,2023-2024 +referred to second reading,2023-09-12,[],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-15,['referral-committee'],MI,2023-2024 +referred to second reading,2023-03-22,[],MI,2023-2024 +referred to second reading,2023-04-19,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-09-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-11,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-05-10,['committee-passage'],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +PASSED ROLL CALL # 540 YEAS 30 NAYS 8 EXCUSED 0 NOT VOTING 0,2023-10-18,['passage'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-03-07,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-14,['committee-passage'],MI,2023-2024 +referred to second reading,2023-05-10,[],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +motion to discharge committee rejected,2023-09-20,[],MI,2023-2024 +referred to second reading,2023-05-23,[],MI,2023-2024 +referred to second reading,2023-05-18,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-03-16,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-31,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-14,[],MI,2023-2024 +referred to second reading,2023-06-14,[],MI,2023-2024 +referred to second reading,2023-05-04,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-04-19,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-31,[],MI,2023-2024 +referred to second reading,2023-06-06,[],MI,2023-2024 +referred to second reading,2023-03-21,[],MI,2023-2024 +referred to second reading,2023-04-11,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +referred to second reading,2023-04-26,[],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-03,[],MI,2023-2024 +referred to second reading,2023-06-27,[],MI,2023-2024 +referred to second reading,2023-11-08,[],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2023-03-22,['referral-committee'],MI,2023-2024 +referred to second reading,2024-02-14,[],MI,2023-2024 +referred to second reading,2024-02-07,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-09,['committee-passage'],MI,2023-2024 +referred to second reading,2023-03-01,[],MI,2023-2024 +referred to second reading,2023-03-08,[],MI,2023-2024 +referred to second reading,2023-10-17,[],MI,2023-2024 +referred to second reading,2024-03-12,[],MI,2023-2024 +adopted,2024-02-07,['passage'],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +referred to second reading,2023-09-12,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +ADOPTED,2023-11-09,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2023-05-10,['committee-passage'],MI,2023-2024 +motion to discharge committee postponed for day,2024-02-14,[],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +referred to second reading,2023-03-15,[],MI,2023-2024 +referred to second reading,2023-05-23,[],MI,2023-2024 +referred to second reading,2023-09-13,[],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-03-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-10,['committee-passage'],MI,2023-2024 +referred to second reading,2023-05-30,[],MI,2023-2024 +referred to second reading,2023-04-26,[],MI,2023-2024 +motion to discharge committee rejected,2023-09-20,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-13,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-11-07,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-22,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-07,['committee-passage'],MI,2023-2024 +referred to second reading,2023-04-26,[],MI,2023-2024 +referred to second reading,2023-10-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-31,[],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +PASSED ROLL CALL # 539 YEAS 30 NAYS 8 EXCUSED 0 NOT VOTING 0,2023-10-18,['passage'],MI,2023-2024 +referred to second reading,2024-02-14,[],MI,2023-2024 +referred to second reading,2023-03-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-03-02,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-11,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +motion to discharge committee postponed for day,2024-02-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-02-07,['committee-passage'],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-06,[],MI,2023-2024 +referred to second reading,2023-05-23,[],MI,2023-2024 +referred to second reading,2023-10-17,[],MI,2023-2024 +referred to second reading,2023-10-25,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-06-22,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-21,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-03,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-03,[],MI,2023-2024 +referred to second reading,2023-10-25,[],MI,2023-2024 +motion to discharge committee postponed for day,2024-02-14,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-06-22,[],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +referred to second reading,2023-04-26,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +referred to second reading,2023-05-23,[],MI,2023-2024 +SUBSTITUTE (S-2) AS AMENDED CONCURRED IN,2023-06-14,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-27,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-28,[],MI,2023-2024 +referred to second reading,2023-06-07,[],MI,2023-2024 +motion to discharge committee postponed for day,2024-02-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-27,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-22,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-06-13,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-01,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +referred to second reading,2023-05-23,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-03-12,['committee-passage'],MI,2023-2024 +referred to second reading,2023-05-04,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2023-06-14,[],MI,2023-2024 +referred to second reading,2023-06-07,[],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +referred to second reading,2023-05-18,[],MI,2023-2024 +referred to second reading,2023-10-18,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-01-11,[],MI,2023-2024 +motion to discharge committee postponed for day,2024-02-14,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-01-18,[],MI,2023-2024 +referred to second reading,2023-04-20,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-01-11,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-19,[],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-03,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-31,['committee-passage'],MI,2023-2024 +referred to second reading,2023-06-22,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-24,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +referred to second reading,2023-06-08,[],MI,2023-2024 +referred to second reading,2023-10-10,[],MI,2023-2024 +referred to second reading,2023-03-22,[],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-11,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-04,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-03-16,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-03-16,[],MI,2023-2024 +referred to second reading,2023-03-16,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +PASSED ROLL CALL # 469 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +rule suspended,2023-01-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-22,['referral-committee'],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-17,[],MI,2023-2024 +referred to second reading,2023-05-23,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +referred to second reading,2024-02-07,[],MI,2023-2024 +referred to second reading,2023-03-15,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +referred to second reading,2023-10-25,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +SUBSTITUTE (S-10) CONCURRED IN,2023-03-14,[],MI,2023-2024 +motion to discharge committee postponed for day,2024-02-14,[],MI,2023-2024 +referred to second reading,2023-05-30,[],MI,2023-2024 +referred to second reading,2023-04-26,[],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-03-06,['committee-passage'],MI,2023-2024 +motion to discharge committee approved,2023-10-11,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-19,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-04-19,['committee-passage'],MI,2023-2024 +referred to second reading,2023-04-19,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-03,['committee-passage'],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2023-05-10,['committee-passage'],MI,2023-2024 +motion to discharge committee postponed for day,2024-02-14,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-11-08,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +RULES SUSPENDED,2023-09-07,[],MI,2023-2024 +recommendation concurred in,2023-02-28,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-25,['committee-passage'],MI,2023-2024 +motion to discharge committee approved,2023-01-26,[],MI,2023-2024 +referred to second reading,2023-04-12,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-06-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-08,[],MI,2023-2024 +referred to second reading,2023-04-19,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-02-21,['committee-passage'],MI,2023-2024 +referred to second reading,2023-10-12,[],MI,2023-2024 +referred to second reading,2023-10-18,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-10-26,[],MI,2023-2024 +REASSIGNED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-10-03,[],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-02,[],MI,2023-2024 +reported with recommendation without amendment,2023-04-11,['committee-passage'],MI,2023-2024 +referred to second reading,2023-09-12,[],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-05-22,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-17,[],MI,2023-2024 +referred to second reading,2024-05-22,[],MI,2023-2024 +referred to second reading,2024-05-02,[],MI,2023-2024 +referred to second reading,2024-05-02,[],MI,2023-2024 +recommendation concurred in,2024-03-12,[],MI,2023-2024 +referred to second reading,2024-05-22,[],MI,2023-2024 +referred to second reading,2024-04-24,[],MI,2023-2024 +referred to second reading,2024-05-02,[],MI,2023-2024 +referred to second reading,2024-04-24,[],MI,2023-2024 +referred to second reading,2024-05-22,[],MI,2023-2024 +referred to second reading,2024-05-02,[],MI,2023-2024 +referred to second reading,2024-05-02,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-04,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-04-24,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-23,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-23,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-23,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-23,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-16,['committee-passage'],MI,2023-2024 +bill electronically reproduced 03/09/2023,2023-03-09,[],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +bill electronically reproduced 03/14/2023,2023-03-15,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-10,['committee-passage'],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-05-02,['referral-committee'],MI,2023-2024 +referred to second reading,2024-05-02,[],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-05-02,['committee-passage'],MI,2023-2024 +referred to second reading,2024-05-02,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-01,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2024-05-02,['committee-passage'],MI,2023-2024 +referred to second reading,2024-02-21,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2024-05-07,['committee-passage'],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2024-04-30,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-10-31,[],MI,2023-2024 +referred to second reading,2024-03-06,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-31,[],MI,2023-2024 +referred to second reading,2024-06-05,[],MI,2023-2024 +referred to second reading,2024-06-04,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +referred to second reading,2024-06-12,[],MI,2023-2024 +referred to second reading,2024-05-15,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +referred to second reading,2024-02-27,[],MI,2023-2024 +referred to second reading,2023-10-03,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-09-26,[],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +SUBSTITUTE (S-11) AS AMENDED CONCURRED IN,2024-05-09,[],MI,2023-2024 +referred to second reading,2024-03-06,[],MI,2023-2024 +SUBSTITUTE (S-3) AS AMENDED CONCURRED IN,2024-06-26,[],MI,2023-2024 +SUBSTITUTE (S-4) CONCURRED IN,2024-06-26,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-06-26,[],MI,2023-2024 +referred to second reading,2024-04-23,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-01,['committee-passage'],MI,2023-2024 +referred to second reading,2024-02-27,[],MI,2023-2024 +referred to second reading,2024-03-12,[],MI,2023-2024 +referred to second reading,2024-03-12,[],MI,2023-2024 +referred to second reading,2023-05-18,[],MI,2023-2024 +referred to second reading,2023-05-18,[],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-22,['committee-passage'],MI,2023-2024 +referred to second reading,2024-03-06,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-06-14,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-06-28,[],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +referred to second reading,2023-10-12,[],MI,2023-2024 +referred to second reading,2023-10-12,[],MI,2023-2024 +referred to second reading,2024-02-27,[],MI,2023-2024 +referred to second reading,2024-05-22,[],MI,2023-2024 +referred to second reading,2024-04-24,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-05-15,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-05-15,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-05-15,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-15,[],MI,2023-2024 +referred to second reading,2024-05-02,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-22,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-12,[],MI,2023-2024 +referred to second reading,2024-06-05,[],MI,2023-2024 +reported with recommendation without amendment,2023-09-19,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-12,[],MI,2023-2024 +referred to second reading,2023-10-25,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-24,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-05-23,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-12,[],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +referred to second reading,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-20,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-18,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-20,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-18,[],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +reported with recommendation without amendment,2023-09-13,['committee-passage'],MI,2023-2024 +referred to second reading,2023-10-25,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-28,['committee-passage'],MI,2023-2024 +referred to second reading,2024-06-12,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-11,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-02-22,[],MI,2023-2024 +referred to second reading,2024-06-04,[],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +referred to second reading,2024-06-04,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-01-17,[],MI,2023-2024 +referred to second reading,2024-06-04,[],MI,2023-2024 +referred to second reading,2024-06-04,[],MI,2023-2024 +referred to second reading,2024-02-07,[],MI,2023-2024 +referred to second reading,2024-03-19,[],MI,2023-2024 +motion to discharge committee approved,2024-06-26,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-06-25,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-25,[],MI,2023-2024 +SUBSTITUTE (S-3) AS AMENDED CONCURRED IN,2024-06-25,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-06-25,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-25,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-06-25,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-01,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +referred to second reading,2023-11-02,[],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-26,[],MI,2023-2024 +referred to second reading,2023-11-02,[],MI,2023-2024 +referred to second reading,2023-11-02,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-26,[],MI,2023-2024 +referred to second reading,2024-05-16,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-10-11,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-21,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-11,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-10-11,[],MI,2023-2024 +referred to second reading,2024-06-04,[],MI,2023-2024 +motion to discharge committee approved,2024-06-20,[],MI,2023-2024 +referred to second reading,2024-05-21,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-20,['committee-passage'],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +read a second time,2024-06-11,['reading-2'],MI,2023-2024 +referred to second reading,2023-11-02,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-11,[],MI,2023-2024 +referred to second reading,2023-04-20,[],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-10-19,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-04-11,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-23,[],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-14,[],MI,2023-2024 +referred to second reading,2024-05-16,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-15,[],MI,2023-2024 +referred to second reading,2024-04-23,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-24,[],MI,2023-2024 +reported with recommendation without amendment,2024-05-23,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-31,['committee-passage'],MI,2023-2024 +referred to second reading,2023-10-05,[],MI,2023-2024 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2023-06-14,[],MI,2023-2024 +reported with recommendation with amendment(s),2023-04-11,['committee-passage'],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-10-11,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2024-05-07,['committee-passage'],MI,2023-2024 +bill electronically reproduced 02/21/2024,2024-02-22,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-25,['committee-passage'],MI,2023-2024 +referred to second reading,2023-09-13,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-16,['committee-passage'],MI,2023-2024 +referred to second reading,2023-09-13,[],MI,2023-2024 +referred to second reading,2023-05-30,[],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2024-03-19,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-04-12,[],MI,2023-2024 +referred to second reading,2023-06-06,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-07,['committee-passage'],MI,2023-2024 +motion to discharge committee approved,2023-06-14,[],MI,2023-2024 +referred to second reading,2023-05-18,[],MI,2023-2024 +referred to second reading,2024-02-07,[],MI,2023-2024 +motion to discharge committee approved,2024-06-20,[],MI,2023-2024 +referred to second reading,2023-06-07,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-03-19,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +referred to second reading,2023-05-30,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-09,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-03-22,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-23,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-05-22,[],MI,2023-2024 +referred to second reading,2024-02-14,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-06-25,[],MI,2023-2024 +referred to second reading,2023-03-15,[],MI,2023-2024 +motion to discharge committee postponed for day,2024-02-14,[],MI,2023-2024 +motion to discharge committee approved,2023-01-26,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +referred to second reading,2024-02-29,[],MI,2023-2024 +referred to second reading,2024-03-06,[],MI,2023-2024 +referred to second reading,2024-06-04,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-03,[],MI,2023-2024 +SUBSTITUTE (S-4) CONCURRED IN,2023-05-11,[],MI,2023-2024 +referred to second reading,2024-03-12,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-03-16,['committee-passage'],MI,2023-2024 +referred to second reading,2023-03-01,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-04-18,['committee-passage'],MI,2023-2024 +referred to second reading,2023-10-10,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +referred to second reading,2023-04-19,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-02-27,[],MI,2023-2024 +referred to second reading,2024-04-24,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-28,[],MI,2023-2024 +referred to second reading,2023-10-12,[],MI,2023-2024 +referred to second reading,2024-03-06,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-10,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-27,['committee-passage'],MI,2023-2024 +referred to second reading,2023-06-07,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-24,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-03,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-02-22,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-22,[],MI,2023-2024 +referred to second reading,2023-10-12,[],MI,2023-2024 +SUBSTITUTE (S-5) CONCURRED IN,2023-06-13,[],MI,2023-2024 +referred to second reading,2023-10-12,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +adopted by Senate - referred to the Clerk for record,2024-05-02,['passage'],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-13,[],MI,2023-2024 +referred to second reading,2024-05-16,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-04-30,['referral-committee'],MI,2023-2024 +SUBSTITUTE (S-3) AS AMENDED CONCURRED IN,2023-11-01,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +referred to second reading,2024-05-15,[],MI,2023-2024 +referred to Committee on Judiciary,2024-03-05,['referral-committee'],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2024-04-10,[],MI,2023-2024 +reported with recommendation without amendment,2024-05-22,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-06-26,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2023-03-16,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-06,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-18,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-19,[],MI,2023-2024 +returned to Senate,2023-01-12,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +referred to second reading,2023-03-21,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-14,[],MI,2023-2024 +referred to second reading,2023-06-06,[],MI,2023-2024 +referred to second reading,2024-04-24,[],MI,2023-2024 +referred to second reading,2023-04-19,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-18,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-10-11,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-08,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-11-08,[],MI,2023-2024 +referred to second reading,2024-05-15,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2024-03-06,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-19,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-28,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-06,[],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +referred to second reading,2023-06-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-06,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-06,[],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-05-02,['referral-committee'],MI,2023-2024 +referred to second reading,2024-06-04,[],MI,2023-2024 +reported with recommendation without amendment,2024-02-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-08,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-05-10,['committee-passage'],MI,2023-2024 +PASSED ROLL CALL # 468 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +reported with recommendation with substitute (H-4),2023-10-11,['committee-passage'],MI,2023-2024 +referred to second reading,2024-04-23,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-06-22,[],MI,2023-2024 +motion to discharge committee approved,2023-11-09,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-23,['committee-passage'],MI,2023-2024 +referred to second reading,2024-02-14,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2024-04-16,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-16,['committee-passage'],MI,2023-2024 +referred to second reading,2024-05-22,[],MI,2023-2024 +referred to second reading,2023-10-10,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-19,[],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +referred to second reading,2023-05-10,[],MI,2023-2024 +SUBSTITUTE (S-4) AS AMENDED CONCURRED IN,2023-10-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-17,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-22,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-06-25,[],MI,2023-2024 +referred to second reading,2023-06-06,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-03,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-21,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +referred to second reading,2023-11-08,[],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-01-18,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-02,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +referred to second reading,2023-03-08,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-23,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-25,[],MI,2023-2024 +referred to second reading,2023-10-18,[],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-27,[],MI,2023-2024 +referred to second reading,2023-09-13,[],MI,2023-2024 +referred to second reading,2023-09-13,[],MI,2023-2024 +referred to second reading,2024-04-23,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-25,[],MI,2023-2024 +referred to second reading,2024-04-24,[],MI,2023-2024 +referred to second reading,2023-10-03,[],MI,2023-2024 +referred to second reading,2024-02-14,[],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-07,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-11-01,[],MI,2023-2024 +referred to second reading,2023-11-02,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-4),2024-04-30,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-22,['referral-committee'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-11-01,[],MI,2023-2024 +referred to second reading,2023-06-07,[],MI,2023-2024 +referred to second reading,2023-05-30,[],MI,2023-2024 +referred to second reading,2023-04-11,[],MI,2023-2024 +PASSED ROLL CALL # 470 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +referred to second reading,2024-02-07,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-18,[],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-24,[],MI,2023-2024 +referred to second reading,2023-06-14,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2024-01-24,[],MI,2023-2024 +adopted by Senate - referred to the Clerk for record,2024-02-13,['passage'],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2024-05-07,['committee-passage'],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +referred to second reading,2023-10-10,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-14,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-17,[],MI,2023-2024 +referred to second reading,2024-06-04,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-01-11,[],MI,2023-2024 +referred to second reading,2023-05-18,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-22,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-08,['committee-passage'],MI,2023-2024 +referred to second reading,2024-04-23,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-07,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-06-25,[],MI,2023-2024 +referred to second reading,2024-04-23,[],MI,2023-2024 +referred to second reading,2023-05-18,[],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-10-31,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-27,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-03-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-03-08,['committee-passage'],MI,2023-2024 +referred to Committee on Elections,2023-05-11,['referral-committee'],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +SUBSTITUTE (S-6) AS AMENDED CONCURRED IN,2023-10-26,[],MI,2023-2024 +referred to second reading,2023-10-17,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-13,[],MI,2023-2024 +referred to second reading,2023-03-21,[],MI,2023-2024 +referred to second reading,2024-05-02,[],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-22,[],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +notice given to discharge committee,2023-11-07,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-25,[],MI,2023-2024 +referred to second reading,2023-03-23,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-10-11,[],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +referred to second reading,2024-06-12,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-03,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +referred to second reading,2023-03-08,[],MI,2023-2024 +referred to second reading,2023-05-23,[],MI,2023-2024 +referred to second reading,2023-05-23,[],MI,2023-2024 +referred to second reading,2023-10-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-05-22,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +referred to second reading,2023-06-22,[],MI,2023-2024 +referred to second reading,2023-09-28,[],MI,2023-2024 +referred to second reading,2024-03-12,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +referred to second reading,2023-10-25,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-16,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-10-26,[],MI,2023-2024 +motion to discharge committee approved,2024-06-27,[],MI,2023-2024 +referred to second reading,2024-03-13,[],MI,2023-2024 +adopted,2023-03-22,['passage'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-16,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-03,[],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-09-27,['amendment-passage'],MI,2023-2024 +referred to second reading,2023-10-12,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-02,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-14,['committee-passage'],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +SUBSTITUTE (S-4) CONCURRED IN,2023-10-11,[],MI,2023-2024 +referred to second reading,2023-10-05,[],MI,2023-2024 +returned to Senate,2023-01-11,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-05-22,[],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-28,[],MI,2023-2024 +referred to second reading,2024-02-06,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +referred to second reading,2023-10-25,[],MI,2023-2024 +referred to second reading,2023-11-09,[],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-03-12,[],MI,2023-2024 +referred to second reading,2023-06-07,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +motion to discharge committee rejected,2023-09-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-06,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-19,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +reported with recommendation without amendment,2024-05-23,['committee-passage'],MI,2023-2024 +referred to second reading,2023-03-08,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +referred to second reading,2024-04-23,[],MI,2023-2024 +referred to second reading,2023-11-02,[],MI,2023-2024 +referred to second reading,2024-02-22,[],MI,2023-2024 +referred to second reading,2024-05-16,[],MI,2023-2024 +referred to second reading,2024-04-23,[],MI,2023-2024 +returned to Senate,2023-03-21,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-5),2023-05-10,['committee-passage'],MI,2023-2024 +referred to second reading,2024-04-23,[],MI,2023-2024 +referred to second reading,2023-06-14,[],MI,2023-2024 +AMENDMENT(S) CONCURRED IN,2024-02-28,[],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +postponed for the day,2023-10-04,[],MI,2023-2024 +referred to second reading,2023-10-03,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-06-26,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-03-07,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-31,[],MI,2023-2024 +referred to second reading,2023-06-27,[],MI,2023-2024 +referred to second reading,2023-04-26,[],MI,2023-2024 +RULES SUSPENDED,2023-01-26,[],MI,2023-2024 +referred to second reading,2023-10-18,[],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-25,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-17,['committee-passage'],MI,2023-2024 +referred to second reading,2023-04-26,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-09-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-03,[],MI,2023-2024 +referred to second reading,2023-10-10,[],MI,2023-2024 +referred to second reading,2024-02-20,[],MI,2023-2024 +motion to discharge committee approved,2024-06-25,[],MI,2023-2024 +motion to discharge committee postponed for day,2024-02-14,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-11-01,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-07,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-12,['committee-passage'],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +referred to second reading,2023-10-19,[],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +referred to second reading,2023-05-17,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-22,[],MI,2023-2024 +AMENDMENT(S) CONCURRED IN,2023-03-16,[],MI,2023-2024 +referred to second reading,2023-10-25,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-04-30,['committee-passage'],MI,2023-2024 +referred to second reading,2023-10-25,[],MI,2023-2024 +reported with recommendation without amendment,2024-05-23,['committee-passage'],MI,2023-2024 +referred to second reading,2023-03-07,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-22,['referral-committee'],MI,2023-2024 +referred to second reading,2023-06-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-18,[],MI,2023-2024 +referred to second reading,2023-09-20,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-09-17,[],MI,2023-2024 +PASSED ROLL CALL # 2 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2024-01-25,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-28,[],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-19,[],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +read a second time,2023-11-02,['reading-2'],MI,2023-2024 +read a second time,2023-06-27,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +PASSED ROLL CALL # 324 YEAS 34 NAYS 4 EXCUSED 0 NOT VOTING 0,2023-06-07,['passage'],MI,2023-2024 +read a second time,2024-06-27,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-01-26,[],MI,2023-2024 +referred to second reading,2023-11-08,[],MI,2023-2024 +read a second time,2024-06-13,['reading-2'],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 329 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-06-08,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-22,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2024-05-02,['committee-passage'],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +referred to second reading,2023-10-17,[],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +read a second time,2023-10-18,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-04-18,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH AMENDMENT(S),2023-03-16,[],MI,2023-2024 +read a second time,2023-06-22,['reading-2'],MI,2023-2024 +HOUSE CONCURRENCE RECEIVED,2023-03-23,[],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2024-06-11,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 448 YEAS 29 NAYS 7 EXCUSED 2 NOT VOTING 0,2023-09-07,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-10-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-11-08,[],MI,2023-2024 +placed on second reading,2024-06-25,[],MI,2023-2024 +read a second time,2024-02-21,['reading-2'],MI,2023-2024 +referred to second reading,2024-06-12,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-07,[],MI,2023-2024 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2024-05-07,[],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +received on 09/27/2023,2023-09-27,['introduction'],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-22,[],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-08,[],MI,2023-2024 +read a second time,2024-06-11,['reading-2'],MI,2023-2024 +referred to second reading,2024-02-14,[],MI,2023-2024 +PASSED ROLL CALL # 107 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2023-03-22,['passage'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-05-10,[],MI,2023-2024 +placed on second reading,2024-06-20,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2024-01-17,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-04-30,[],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +read a second time,2023-05-11,['reading-2'],MI,2023-2024 +read a second time,2023-09-26,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-02-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-22,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-06-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-06-22,[],MI,2023-2024 +read a second time,2023-09-12,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-25,[],MI,2023-2024 +read a second time,2024-03-13,['reading-2'],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +read a second time,2023-09-26,['reading-2'],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +reported with recommendation without amendment,2023-05-16,['committee-passage'],MI,2023-2024 +placed on third reading,2024-06-11,[],MI,2023-2024 +read a second time,2023-09-26,['reading-2'],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +read a second time,2024-06-04,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2024-04-16,[],MI,2023-2024 +read a second time,2023-04-25,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-11,[],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-06-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-10-19,[],MI,2023-2024 +read a second time,2024-06-25,['reading-2'],MI,2023-2024 +read a second time,2023-06-14,['reading-2'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +read a second time,2024-01-17,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-16,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-23,[],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +read a second time,2024-05-14,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-03-08,[],MI,2023-2024 +referred to second reading,2024-04-23,[],MI,2023-2024 +transmitted,2023-03-22,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-15,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-14,[],MI,2023-2024 +PASSED ROLL CALL # 149 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-05-04,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-13,[],MI,2023-2024 +referred to second reading,2023-04-11,[],MI,2023-2024 +read a second time,2024-02-20,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-24,[],MI,2023-2024 +RULES SUSPENDED,2023-10-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-6) AS AMENDED,2023-10-26,[],MI,2023-2024 +read a second time,2024-06-25,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-03-14,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +read a second time,2023-05-18,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2023-06-14,[],MI,2023-2024 +PASSED ROLL CALL # 578 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +read a second time,2024-06-13,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-10-11,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4) AS AMENDED,2023-10-26,[],MI,2023-2024 +read a second time,2023-04-13,['reading-2'],MI,2023-2024 +read a second time,2023-10-24,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +reported with recommendation with substitute (H-3),2024-05-14,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-16,[],MI,2023-2024 +read a second time,2023-10-24,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-06-25,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4),2023-10-11,[],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +read a second time,2023-10-24,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-22,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-16,[],MI,2023-2024 +read a second time,2024-02-06,['reading-2'],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +read a second time,2023-06-07,['reading-2'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-11-02,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-03-07,[],MI,2023-2024 +adopted,2023-10-05,['passage'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +placed on second reading,2023-06-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-04-12,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-01-18,[],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-03,[],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +read a second time,2024-06-13,['reading-2'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-06-26,['amendment-failure'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-07,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2024-03-19,[],MI,2023-2024 +read a second time,2023-03-23,['reading-2'],MI,2023-2024 +read a second time,2023-06-27,['reading-2'],MI,2023-2024 +read a second time,2023-10-18,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-03,[],MI,2023-2024 +PASSED ROLL CALL # 210 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-04,['passage'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 42 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-02-29,['passage'],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-03-19,[],MI,2023-2024 +read a second time,2024-06-25,['reading-2'],MI,2023-2024 +read a second time,2023-10-04,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-02,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +read a second time,2024-06-18,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-27,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-03-22,[],MI,2023-2024 +PASSED ROLL CALL # 272 YEAS 27 NAYS 11 EXCUSED 0 NOT VOTING 0,2024-06-25,['passage'],MI,2023-2024 +read a second time,2024-06-12,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-09,[],MI,2023-2024 +read a second time,2024-04-24,['reading-2'],MI,2023-2024 +read a second time,2023-11-02,['reading-2'],MI,2023-2024 +placed on second reading,2023-01-26,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-08,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-14,[],MI,2023-2024 +referred to second reading,2024-04-23,[],MI,2023-2024 +read a second time,2023-03-22,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 51 YEAS 26 NAYS 12 EXCUSED 0 NOT VOTING 0,2024-03-12,['passage'],MI,2023-2024 +read a second time,2024-01-17,['reading-2'],MI,2023-2024 +HOUSE CONCURRENCE RECEIVED,2023-01-12,[],MI,2023-2024 +PASSED ROLL CALL # 300 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +read a second time,2023-10-11,['reading-2'],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2023-03-08,['reading-2'],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-5) CONCURRED IN,2023-05-10,[],MI,2023-2024 +read a second time,2023-10-03,['reading-2'],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 150 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-05-04,['passage'],MI,2023-2024 +read a second time,2023-05-18,['reading-2'],MI,2023-2024 +read a second time,2023-03-08,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4),2023-05-11,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-02-22,[],MI,2023-2024 +read a second time,2023-06-27,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 500 YEAS 20 NAYS 17 EXCUSED 0 NOT VOTING 1,2023-10-04,['passage'],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2024-06-13,['reading-2'],MI,2023-2024 +read a second time,2023-09-12,['reading-2'],MI,2023-2024 +read a second time,2023-10-03,['reading-2'],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) WITHDRAWN,2023-11-02,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-02-27,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-03-22,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-14,[],MI,2023-2024 +read a second time,2024-05-01,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-07,[],MI,2023-2024 +read a second time,2024-04-24,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-27,[],MI,2023-2024 +RULES SUSPENDED,2023-06-28,[],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-27,[],MI,2023-2024 +PASSED ROLL CALL # 541 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-18,['passage'],MI,2023-2024 +referred to second reading,2023-10-10,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4) AND AMENDMENT(S),2024-05-02,['committee-passage'],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-5),2023-06-13,[],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +PASSED ROLL CALL # 151 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-05-04,['passage'],MI,2023-2024 +read a second time,2024-03-13,['reading-2'],MI,2023-2024 +read a second time,2023-09-12,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-06-22,[],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +read a second time,2024-04-24,['reading-2'],MI,2023-2024 +read a second time,2024-02-13,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-11-01,[],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +read a second time,2024-03-13,['reading-2'],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-06-26,[],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-07,['committee-passage'],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-22,['committee-passage'],MI,2023-2024 +read a second time,2023-03-08,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-17,[],MI,2023-2024 +read a second time,2023-10-19,['reading-2'],MI,2023-2024 +received on 09/27/2023,2023-09-27,['introduction'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-11-01,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-13,[],MI,2023-2024 +read a second time,2024-05-21,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-18,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-03-16,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-11-01,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3) AS AMENDED,2023-11-01,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-18,[],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2023-10-19,['reading-2'],MI,2023-2024 +referred to second reading,2024-05-22,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-03-13,['committee-passage'],MI,2023-2024 +read a second time,2023-10-04,['reading-2'],MI,2023-2024 +read a second time,2024-03-13,['reading-2'],MI,2023-2024 +read a second time,2023-09-12,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-05-24,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2024-04-10,[],MI,2023-2024 +read a second time,2023-10-18,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-2) AS AMENDED CONCURRED IN,2023-03-16,[],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 579 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +read a second time,2024-06-13,['reading-2'],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2024-01-24,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH AMENDMENT(S),2024-02-28,[],MI,2023-2024 +PASSED ROLL CALL # 326 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-06-07,['passage'],MI,2023-2024 +placed on second reading,2024-06-27,[],MI,2023-2024 +read a second time,2023-03-21,['reading-2'],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +HOUSE CONCURRENCE RECEIVED,2023-01-18,[],MI,2023-2024 +SUBSTITUTE (S-2) AS AMENDED CONCURRED IN,2024-05-07,[],MI,2023-2024 +read a second time,2023-05-23,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 537 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2023-10-18,['passage'],MI,2023-2024 +read a second time,2023-10-24,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-03-12,[],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +read a second time,2023-06-06,['reading-2'],MI,2023-2024 +read a second time,2024-05-22,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 50 YEAS 26 NAYS 12 EXCUSED 0 NOT VOTING 0,2024-03-12,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-31,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +read a second time,2023-05-23,['reading-2'],MI,2023-2024 +read a second time,2023-10-18,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-10-11,[],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-08,[],MI,2023-2024 +read a second time,2023-09-14,['reading-2'],MI,2023-2024 +read a second time,2024-05-02,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2024-06-13,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 309 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +read a second time,2024-06-25,['reading-2'],MI,2023-2024 +read a second time,2023-09-19,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-2) DEFEATED,2023-05-17,[],MI,2023-2024 +read a second time,2024-05-21,['reading-2'],MI,2023-2024 +read a second time,2024-04-24,['reading-2'],MI,2023-2024 +read a second time,2023-06-06,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-10-03,['reading-2'],MI,2023-2024 +read a second time,2023-09-12,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 146 YEAS 33 NAYS 5 EXCUSED 0 NOT VOTING 0,2023-05-03,['passage'],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +HOUSE CONCURRENCE RECEIVED,2023-06-29,[],MI,2023-2024 +read a second time,2023-09-26,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-16,[],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +motion to discharge committee approved,2023-02-01,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE,2024-05-22,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-16,[],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-05-10,[],MI,2023-2024 +referred to second reading,2024-02-13,[],MI,2023-2024 +read a second time,2023-09-13,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-07,[],MI,2023-2024 +referred to second reading,2023-10-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-10-17,[],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-2) ADOPTED,2024-06-05,[],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 325 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-06-07,['passage'],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +read a second time,2023-09-06,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-05-23,[],MI,2023-2024 +PASSED ROLL CALL # 547 YEAS 30 NAYS 8 EXCUSED 0 NOT VOTING 0,2023-10-18,['passage'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) ADOPTED,2023-10-12,[],MI,2023-2024 +PASSED ROLL CALL # 49 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-03-12,['passage'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +read a second time,2023-04-25,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-03-21,['committee-passage'],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-07,[],MI,2023-2024 +read a second time,2023-05-18,['reading-2'],MI,2023-2024 +read a second time,2024-06-11,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-2) AS AMENDED CONCURRED IN,2023-11-01,[],MI,2023-2024 +read a second time,2024-06-20,['reading-2'],MI,2023-2024 +read a second time,2024-06-25,['reading-2'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-24,['committee-passage'],MI,2023-2024 +read a second time,2024-04-24,['reading-2'],MI,2023-2024 +read a second time,2024-06-25,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +read a second time,2024-06-04,['reading-2'],MI,2023-2024 +motion to discharge committee withdrawn,2023-05-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-04-12,[],MI,2023-2024 +RULES SUSPENDED,2023-10-19,[],MI,2023-2024 +RULES SUSPENDED,2023-06-22,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-10-19,[],MI,2023-2024 +read a second time,2024-06-11,['reading-2'],MI,2023-2024 +read a second time,2024-06-25,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +read a second time,2024-06-18,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-12,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-11,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-10-11,[],MI,2023-2024 +read a second time,2023-09-19,['reading-2'],MI,2023-2024 +read a second time,2024-05-09,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-06-22,[],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +read a second time,2024-06-12,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-18,[],MI,2023-2024 +read a second time,2023-09-19,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2024-05-07,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-4) CONCURRED IN,2023-05-10,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4),2023-10-19,[],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 5 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2024-01-25,['passage'],MI,2023-2024 +read a second time,2023-03-16,['reading-2'],MI,2023-2024 +read a second time,2024-01-18,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-11-01,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-05-09,[],MI,2023-2024 +RULES SUSPENDED,2024-06-20,[],MI,2023-2024 +read a second time,2023-03-16,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 592 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-25,['passage'],MI,2023-2024 +SUBSTITUTE (S-2) AS AMENDED CONCURRED IN,2023-05-10,[],MI,2023-2024 +HOUSE CONCURRENCE RECEIVED,2024-03-20,[],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-04-19,[],MI,2023-2024 +notice given to discharge committee,2023-04-13,[],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2024-05-07,[],MI,2023-2024 +read a second time,2024-06-13,['reading-2'],MI,2023-2024 +read a second time,2023-06-28,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-10-19,[],MI,2023-2024 +read a second time,2023-05-16,['reading-2'],MI,2023-2024 +placed on second reading,2023-11-08,[],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-06-18,[],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2023-10-24,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-18,[],MI,2023-2024 +read a second time,2023-10-19,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-15,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-20,[],MI,2023-2024 +read a second time,2023-06-27,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-03-16,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-11-08,[],MI,2023-2024 +read a second time,2024-04-18,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-02-27,[],MI,2023-2024 +read a second time,2023-04-25,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-05-02,['referral-committee'],MI,2023-2024 +read a second time,2023-10-24,['reading-2'],MI,2023-2024 +notice given to discharge committee,2023-04-13,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-05-15,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-20,[],MI,2023-2024 +read a second time,2023-09-12,['reading-2'],MI,2023-2024 +referred to second reading,2024-06-20,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-10-18,['reading-2'],MI,2023-2024 +read a second time,2024-02-14,['reading-2'],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-21,['committee-passage'],MI,2023-2024 +referred to second reading,2024-04-23,[],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2024-06-20,[],MI,2023-2024 +PASSED ROLL CALL # 467 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-04,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-26,[],MI,2023-2024 +PASSED ROLL CALL # 273 YEAS 27 NAYS 11 EXCUSED 0 NOT VOTING 0,2024-06-25,['passage'],MI,2023-2024 +HOUSE CONCURRENCE RECEIVED,2024-01-25,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +read a second time,2023-03-08,['reading-2'],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-11,[],MI,2023-2024 +referred to second reading,2024-03-13,[],MI,2023-2024 +read a second time,2023-06-28,['reading-2'],MI,2023-2024 +read a second time,2023-09-13,['reading-2'],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-05-09,[],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-05,['committee-passage'],MI,2023-2024 +read a second time,2023-04-27,['reading-2'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-11-02,['amendment-failure'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-08,[],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-10-11,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-10,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-03-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-05-02,['referral-committee'],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +referred to second reading,2023-10-19,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +placed on second reading,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 529 YEAS 34 NAYS 3 EXCUSED 1 NOT VOTING 0,2023-10-12,['passage'],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +read a second time,2023-04-13,['reading-2'],MI,2023-2024 +read a second time,2023-10-04,['reading-2'],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +read a second time,2023-05-02,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2024-01-24,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-23,[],MI,2023-2024 +read a second time,2023-10-18,['reading-2'],MI,2023-2024 +read a second time,2023-10-24,['reading-2'],MI,2023-2024 +referred to second reading,2023-11-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-07,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2024-06-20,[],MI,2023-2024 +read a second time,2024-02-29,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-05-10,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +read a second time,2023-04-13,['reading-2'],MI,2023-2024 +read a second time,2023-10-03,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 153 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-05-04,['passage'],MI,2023-2024 +PASSED ROLL CALL # 577 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-20,['committee-passage'],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +read a second time,2023-09-12,['reading-2'],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-15,[],MI,2023-2024 +read a second time,2023-03-22,['reading-2'],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +read a second time,2024-02-28,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 648 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-02,['passage'],MI,2023-2024 +read a second time,2023-11-02,['reading-2'],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +read a second time,2024-05-21,['reading-2'],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +REFERRED TO SECRETARY FOR RECORD,2024-07-30,[],MI,2023-2024 +SUBSTITUTE (S-1) ADOPTED,2024-09-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-04-12,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-28,[],MI,2023-2024 +referred to second reading,2023-10-17,[],MI,2023-2024 +RULES SUSPENDED,2023-05-23,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-09-27,['amendment-failure'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-5),2023-01-26,[],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-05-07,[],MI,2023-2024 +placed on second reading,2023-11-08,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-02-14,[],MI,2023-2024 +read a second time,2023-04-13,['reading-2'],MI,2023-2024 +placed on second reading,2023-05-11,[],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +read a second time,2023-06-14,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-04-12,[],MI,2023-2024 +PASSED ROLL CALL # 292 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-11-02,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-05,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-06-26,[],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +POSTPONED TEMPORARILY,2023-10-12,[],MI,2023-2024 +PASSED ROLL CALL # 499 YEAS 20 NAYS 17 EXCUSED 0 NOT VOTING 1,2023-10-04,['passage'],MI,2023-2024 +read a second time,2023-04-27,['reading-2'],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +referred to second reading,2023-06-06,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-05-10,[],MI,2023-2024 +read a second time,2023-06-14,['reading-2'],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-06-07,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-11,[],MI,2023-2024 +read a second time,2024-06-13,['reading-2'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-06-06,[],MI,2023-2024 +read a second time,2024-06-04,['reading-2'],MI,2023-2024 +referred to second reading,2023-06-27,[],MI,2023-2024 +read a second time,2023-10-04,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2024-06-26,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-05-18,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-12,[],MI,2023-2024 +HOUSE CONCURRENCE RECEIVED,2023-01-18,[],MI,2023-2024 +read a second time,2023-10-19,['reading-2'],MI,2023-2024 +notice given to discharge committee,2023-04-13,[],MI,2023-2024 +returned to Senate,2024-01-10,[],MI,2023-2024 +referred to second reading,2023-05-04,[],MI,2023-2024 +referred to second reading,2024-06-12,[],MI,2023-2024 +read a second time,2023-09-14,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-05,[],MI,2023-2024 +read a second time,2023-05-24,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-03-14,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-09-19,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-19,[],MI,2023-2024 +read a second time,2023-10-19,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-04-09,[],MI,2023-2024 +read a second time,2023-10-24,['reading-2'],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2023-04-19,['reading-2'],MI,2023-2024 +ADOPTED,2023-06-07,['passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-07,[],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 305 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +PASSED ROLL CALL # 296 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-17,['passage'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +referred to second reading,2023-05-11,[],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-09-19,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-10-25,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-03-16,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-04-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-06-13,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-5),2023-04-25,[],MI,2023-2024 +read a second time,2023-10-03,['reading-2'],MI,2023-2024 +read a second time,2023-10-04,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-11,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +read a second time,2023-09-06,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-03-02,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +referred to second reading,2024-03-06,[],MI,2023-2024 +read a second time,2023-03-02,['reading-2'],MI,2023-2024 +placed on second reading,2023-10-11,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-04-19,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2023-10-18,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-10-11,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-09-26,['amendment-failure'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-21,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-09,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-31,[],MI,2023-2024 +read a second time,2024-03-13,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-04-19,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-02-14,[],MI,2023-2024 +read a second time,2023-03-08,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 155 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-05-04,['passage'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-01,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2023-06-14,[],MI,2023-2024 +read a second time,2023-06-14,['reading-2'],MI,2023-2024 +read a second time,2023-05-23,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 148 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2023-05-04,['passage'],MI,2023-2024 +PASSED ROLL CALL # 649 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-02,['passage'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-01-18,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-26,[],MI,2023-2024 +referred to second reading,2023-10-03,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-01-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-31,[],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2024-03-12,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 476 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-11-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-10-31,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-04-30,['referral-committee'],MI,2023-2024 +read a second time,2024-05-22,['reading-2'],MI,2023-2024 +read a second time,2023-03-21,['reading-2'],MI,2023-2024 +read a second time,2023-09-28,['reading-2'],MI,2023-2024 +read a second time,2024-02-28,['reading-2'],MI,2023-2024 +read a second time,2023-06-28,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-07,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-25,[],MI,2023-2024 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2024-05-07,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +read a second time,2024-04-24,['reading-2'],MI,2023-2024 +read a second time,2023-09-19,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-08,[],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-07,['committee-passage'],MI,2023-2024 +read a second time,2023-03-08,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2023-05-10,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-06-25,[],MI,2023-2024 +read a second time,2024-02-14,['reading-2'],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-2) AS AMENDED CONCURRED IN,2024-05-02,[],MI,2023-2024 +PASSED ROLL CALL # 294 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-04-09,[],MI,2023-2024 +PASSED ROLL CALL # 293 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +referred to second reading,2023-10-04,[],MI,2023-2024 +read a second time,2023-06-06,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-25,[],MI,2023-2024 +PASSED ROLL CALL # 590 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-25,['passage'],MI,2023-2024 +referred to second reading,2024-03-12,[],MI,2023-2024 +received on 10/18/2023,2023-10-18,['introduction'],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-02,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-06-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3) AS AMENDED,2024-06-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-10-19,[],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-06-22,[],MI,2023-2024 +read a second time,2023-09-19,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 289 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +referred to second reading,2023-04-11,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-06-25,[],MI,2023-2024 +PASSED ROLL CALL # 591 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-25,['passage'],MI,2023-2024 +placed on second reading,2024-06-26,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +referred to second reading,2024-04-24,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2023-06-14,[],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2024-03-05,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-11,[],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-28,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-14,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-09-19,['reading-2'],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +placed on second reading,2023-10-31,[],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +PASSED ROLL CALL # 4 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2024-01-25,['passage'],MI,2023-2024 +read a second time,2024-06-13,['reading-2'],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-04-18,[],MI,2023-2024 +read a second time,2024-06-13,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-02-22,[],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-07,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-10-18,['amendment-failure'],MI,2023-2024 +read a second time,2023-05-23,['reading-2'],MI,2023-2024 +read a second time,2024-06-13,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-28,[],MI,2023-2024 +RULES SUSPENDED,2023-06-22,[],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2023-06-22,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-02-22,[],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +read a second time,2024-02-06,['reading-2'],MI,2023-2024 +read a second time,2023-10-24,['reading-2'],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-11-07,[],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +received on 10/18/2023,2023-10-18,['introduction'],MI,2023-2024 +referred to second reading,2024-05-22,[],MI,2023-2024 +read a second time,2023-10-19,['reading-2'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-03-14,['amendment-failure'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-01-11,[],MI,2023-2024 +read a second time,2024-06-18,['reading-2'],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-28,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2023-06-27,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-01-18,[],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-08,[],MI,2023-2024 +referred to second reading,2023-09-13,[],MI,2023-2024 +PASSED ROLL CALL # 492 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-04,['passage'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-05-10,[],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 28 YEAS 32 NAYS 5 EXCUSED 1 NOT VOTING 0,2024-02-22,['passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-04,['committee-passage'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-18,[],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +read a second time,2023-05-11,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 533 YEAS 24 NAYS 13 EXCUSED 1 NOT VOTING 0,2023-10-12,['passage'],MI,2023-2024 +RULES SUSPENDED,2024-06-20,[],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-10,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-01-11,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-18,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-10-26,['amendment-failure'],MI,2023-2024 +read a second time,2024-04-18,['reading-2'],MI,2023-2024 +read a second time,2023-06-22,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-02-21,[],MI,2023-2024 +RULES SUSPENDED,2024-06-20,[],MI,2023-2024 +read a second time,2023-10-19,['reading-2'],MI,2023-2024 +read a second time,2023-06-27,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-03-14,[],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-03,[],MI,2023-2024 +RULES SUSPENDED,2024-06-20,[],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 466 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +reported with recommendation with substitute (H-3),2023-10-19,['committee-passage'],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +RULES SUSPENDED,2024-06-20,[],MI,2023-2024 +read a second time,2024-06-20,['reading-2'],MI,2023-2024 +referred to second reading,2023-05-04,[],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2023-06-14,['reading-2'],MI,2023-2024 +referred to second reading,2023-05-10,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-12,[],MI,2023-2024 +RULES SUSPENDED,2023-05-24,[],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +referred to second reading,2023-05-23,[],MI,2023-2024 +HOUSE CONCURRENCE RECEIVED,2023-01-12,[],MI,2023-2024 +referred to second reading,2024-04-24,[],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +read a second time,2023-05-23,['reading-2'],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-10-11,[],MI,2023-2024 +read a second time,2024-02-27,['reading-2'],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-12,[],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +read a second time,2023-06-06,['reading-2'],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +read a second time,2023-10-10,['reading-2'],MI,2023-2024 +read a second time,2024-06-12,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2023-04-20,[],MI,2023-2024 +read a second time,2023-03-22,['reading-2'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-06-14,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-02-07,[],MI,2023-2024 +ADOPTED,2024-05-15,['passage'],MI,2023-2024 +read a second time,2023-10-19,['reading-2'],MI,2023-2024 +read a second time,2024-06-25,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-22,[],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 528 YEAS 34 NAYS 3 EXCUSED 1 NOT VOTING 0,2023-10-12,['passage'],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-04,[],MI,2023-2024 +RULES SUSPENDED,2023-06-22,[],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-04,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-05-15,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-05-15,[],MI,2023-2024 +read a second time,2023-06-07,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 377 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-22,['passage'],MI,2023-2024 +read a second time,2023-04-20,['reading-2'],MI,2023-2024 +read a second time,2023-03-16,['reading-2'],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-03-16,[],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2024-06-04,['reading-2'],MI,2023-2024 +read a second time,2024-03-12,['reading-2'],MI,2023-2024 +read a second time,2023-03-22,['reading-2'],MI,2023-2024 +read a second time,2024-03-13,['reading-2'],MI,2023-2024 +read a second time,2023-06-22,['reading-2'],MI,2023-2024 +motion to discharge committee approved,2023-11-01,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-03-16,[],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +read a second time,2023-10-24,['reading-2'],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +read a second time,2023-03-22,['reading-2'],MI,2023-2024 +read a second time,2024-04-18,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-03-16,[],MI,2023-2024 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2023-05-10,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-10-11,[],MI,2023-2024 +read a second time,2024-04-18,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2023-06-14,[],MI,2023-2024 +RULES SUSPENDED,2023-10-11,[],MI,2023-2024 +read a second time,2023-09-14,['reading-2'],MI,2023-2024 +adopted by Senate - referred to the Clerk for record,2023-11-14,['passage'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-10-19,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +RULES SUSPENDED,2024-06-26,[],MI,2023-2024 +read a second time,2023-03-22,['reading-2'],MI,2023-2024 +read a second time,2023-03-16,['reading-2'],MI,2023-2024 +referred to second reading,2023-10-18,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-06-13,[],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +read a second time,2023-06-28,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-06-28,[],MI,2023-2024 +received on 09/27/2023,2023-09-27,['introduction'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-06-14,[],MI,2023-2024 +motion to discharge committee approved,2023-01-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-03-16,[],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +read a second time,2023-09-28,['reading-2'],MI,2023-2024 +read a second time,2024-04-18,['reading-2'],MI,2023-2024 +read a second time,2023-10-10,['reading-2'],MI,2023-2024 +referred to second reading,2023-06-22,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-22,['committee-passage'],MI,2023-2024 +read a second time,2023-03-16,['reading-2'],MI,2023-2024 +read a second time,2024-06-13,['reading-2'],MI,2023-2024 +read a second time,2024-06-04,['reading-2'],MI,2023-2024 +read a second time,2024-06-25,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 538 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2023-10-18,['passage'],MI,2023-2024 +RULES SUSPENDED,2024-06-26,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2024-05-07,['committee-passage'],MI,2023-2024 +placed on second reading,2024-06-20,[],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2024-06-04,['reading-2'],MI,2023-2024 +placed on second reading,2023-11-09,[],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +read a second time,2023-06-06,['reading-2'],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-06-22,[],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-31,[],MI,2023-2024 +read a second time,2023-03-16,['reading-2'],MI,2023-2024 +read a second time,2023-10-19,['reading-2'],MI,2023-2024 +read a second time,2023-04-13,['reading-2'],MI,2023-2024 +roll call Roll Call # 58 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-04-13,[],MI,2023-2024 +read a second time,2023-05-23,['reading-2'],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +read a second time,2023-03-08,['reading-2'],MI,2023-2024 +read a second time,2024-03-13,['reading-2'],MI,2023-2024 +read a second time,2023-03-02,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +read a second time,2024-03-13,['reading-2'],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +read a second time,2023-09-12,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-03-16,['reading-2'],MI,2023-2024 +read a second time,2023-10-24,['reading-2'],MI,2023-2024 +read a second time,2024-05-21,['reading-2'],MI,2023-2024 +re-referred to Committee on Economic Development and Small Business,2023-10-25,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-09,[],MI,2023-2024 +read a second time,2023-10-04,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-06-14,[],MI,2023-2024 +read a second time,2023-09-19,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +placed on second reading,2023-01-26,[],MI,2023-2024 +read a second time,2023-09-12,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-06-26,[],MI,2023-2024 +read a second time,2023-10-03,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-11-01,[],MI,2023-2024 +read a second time,2024-02-29,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 330 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-06-08,['passage'],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4),2024-06-26,[],MI,2023-2024 +referred to second reading,2023-10-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-10-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3) AS AMENDED,2024-06-26,[],MI,2023-2024 +PASSED ROLL CALL # 209 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-04,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-10),2023-03-14,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-09,[],MI,2023-2024 +referred to second reading,2023-06-27,[],MI,2023-2024 +read a second time,2024-05-21,['reading-2'],MI,2023-2024 +referred to second reading,2024-05-23,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-05-11,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-11) AS AMENDED,2024-05-09,[],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +referred to second reading,2024-05-02,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-03-07,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-03-16,[],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-09-27,['amendment-failure'],MI,2023-2024 +ADOPTED,2023-09-07,['passage'],MI,2023-2024 +read a second time,2023-06-28,['reading-2'],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +read a second time,2023-09-26,['reading-2'],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 10 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-02-13,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-06-22,[],MI,2023-2024 +placed on third reading,2024-03-05,[],MI,2023-2024 +RULES SUSPENDED,2024-05-09,[],MI,2023-2024 +substitute (H-2) adopted,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-06-06,[],MI,2023-2024 +PASSED ROLL CALL # 244 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-12,['passage'],MI,2023-2024 +PASSED ROLL CALL # 106 YEAS 32 NAYS 6 EXCUSED 0 NOT VOTING 0,2023-03-22,['passage'],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-03-16,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +placed on third reading,2023-09-19,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-31,[],MI,2023-2024 +RULES SUSPENDED,2023-06-22,[],MI,2023-2024 +RULES SUSPENDED,2023-06-28,[],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +PASSED ROLL CALL # 75 YEAS 35 NAYS 2 EXCUSED 1 NOT VOTING 0,2023-03-15,['passage'],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +received on 01/25/2024,2024-01-30,['introduction'],MI,2023-2024 +substitute (H-1) adopted,2024-06-13,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-03-12,['amendment-failure'],MI,2023-2024 +substitute (H-2) adopted and amended,2023-05-10,[],MI,2023-2024 +SUBSTITUTE (S-2) ADOPTED,2024-03-19,[],MI,2023-2024 +substitute (H-2) adopted,2024-06-13,[],MI,2023-2024 +PASSED ROLL CALL # 102 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-04-30,['passage'],MI,2023-2024 +PASSED ROLL CALL # 29 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-02-27,['passage'],MI,2023-2024 +PASSED ROLL CALL # 49 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-03-09,['passage'],MI,2023-2024 +PASSED ROLL CALL # 546 YEAS 26 NAYS 12 EXCUSED 0 NOT VOTING 0,2023-10-18,['passage'],MI,2023-2024 +substitute (H-1) adopted and amended,2023-05-10,[],MI,2023-2024 +substitute (H-1) adopted,2023-03-16,[],MI,2023-2024 +substitute (H-3) adopted and amended,2023-05-10,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-23,[],MI,2023-2024 +placed on third reading,2024-06-13,[],MI,2023-2024 +RULES SUSPENDED,2023-06-28,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-22,[],MI,2023-2024 +substitute (H-2) adopted,2023-04-13,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-19,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +placed on third reading,2023-10-24,[],MI,2023-2024 +PASSED ROLL CALL # 35 YEAS 25 NAYS 13 EXCUSED 0 NOT VOTING 0,2024-02-27,['passage'],MI,2023-2024 +read a second time,2024-06-13,['reading-2'],MI,2023-2024 +placed on third reading,2024-02-06,[],MI,2023-2024 +substitute (H-4) adopted,2023-06-13,[],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +placed on third reading,2023-06-22,[],MI,2023-2024 +PASSED ROLL CALL # 692 YEAS 30 NAYS 5 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +placed on third reading,2023-05-23,[],MI,2023-2024 +read a first time,2023-10-18,['reading-1'],MI,2023-2024 +substitute (H-1) adopted,2023-10-31,[],MI,2023-2024 +placed on third reading,2023-10-19,[],MI,2023-2024 +PASSED ROLL CALL # 58 YEAS 24 NAYS 13 EXCUSED 0 NOT VOTING 1,2024-03-14,['passage'],MI,2023-2024 +substitute (H-1) adopted,2023-03-08,[],MI,2023-2024 +PASSED ROLL CALL # 1 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2024-01-25,['passage'],MI,2023-2024 +placed on third reading,2024-06-18,[],MI,2023-2024 +RULES SUSPENDED,2023-06-28,[],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +substitute (H-1) adopted,2023-10-12,[],MI,2023-2024 +substitute (H-2) adopted and amended,2024-05-08,[],MI,2023-2024 +substitute (H-3) adopted,2023-05-10,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +placed on third reading,2024-02-14,[],MI,2023-2024 +RULES SUSPENDED,2023-01-18,[],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-05-10,[],MI,2023-2024 +read a second time,2023-09-27,['reading-2'],MI,2023-2024 +placed on third reading,2023-03-02,[],MI,2023-2024 +substitute (H-2) adopted,2023-09-20,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-13,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-27,[],MI,2023-2024 +substitute (H-2) adopted,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 257 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +substitute (H-2) adopted,2024-03-13,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-25,[],MI,2023-2024 +referred to second reading,2023-05-04,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-11,[],MI,2023-2024 +received on 10/12/2023,2023-10-12,['introduction'],MI,2023-2024 +received on 10/04/2023,2023-10-04,['introduction'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-20,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +substitute (H-2) adopted,2024-06-26,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-21,[],MI,2023-2024 +substitute (H-2) adopted,2024-03-12,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-10,[],MI,2023-2024 +PASSED ROLL CALL # 255 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +PASSED ROLL CALL # 3 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2024-01-25,['passage'],MI,2023-2024 +substitute (H-2) adopted,2023-10-12,[],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-25,[],MI,2023-2024 +received on 02/22/2024,2024-02-22,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 595 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-26,['passage'],MI,2023-2024 +placed on third reading,2024-04-18,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-20,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-03-01,['amendment-failure'],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +substitute (H-1) adopted and amended,2023-06-22,[],MI,2023-2024 +substitute (H-1) adopted,2023-03-16,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-03-14,[],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-27,[],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-10-31,['committee-passage'],MI,2023-2024 +PASSED ROLL CALL # 152 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-05-04,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-20,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-19,[],MI,2023-2024 +substitute (H-1) adopted and amended,2024-05-08,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-24,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +received on 09/27/2023,2023-09-27,['introduction'],MI,2023-2024 +referred to second reading,2023-10-19,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-20,[],MI,2023-2024 +substitute (H-3) adopted,2024-06-20,[],MI,2023-2024 +read a second time,2023-05-11,['reading-2'],MI,2023-2024 +substitute (H-1) adopted,2024-05-21,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-09,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +placed on third reading,2023-09-12,[],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 247 YEAS 27 NAYS 11 EXCUSED 0 NOT VOTING 0,2024-06-18,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-03-08,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +substitute (H-2) adopted,2023-06-14,[],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +substitute (H-1) adopted,2023-10-12,[],MI,2023-2024 +REFERRED TO SECRETARY FOR RECORD,2023-01-12,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-25,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-05-23,[],MI,2023-2024 +received on 06/07/2023,2023-06-07,['introduction'],MI,2023-2024 +substitute (H-4) adopted,2023-06-13,[],MI,2023-2024 +substitute (H-3) adopted,2023-11-01,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-09,[],MI,2023-2024 +substitute (H-2) adopted and amended,2024-05-08,[],MI,2023-2024 +substitute (H-1) adopted,2023-09-20,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +read a second time,2023-01-26,['reading-2'],MI,2023-2024 +placed on third reading,2024-02-27,[],MI,2023-2024 +substitute (H-1) adopted and amended,2023-10-31,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-08,[],MI,2023-2024 +substitute (H-2) adopted,2023-05-10,[],MI,2023-2024 +placed on third reading,2023-09-19,[],MI,2023-2024 +PASSED ROLL CALL # 246 YEAS 27 NAYS 10 EXCUSED 0 NOT VOTING 1,2024-06-18,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-08,[],MI,2023-2024 +substitute (H-2) adopted,2024-05-08,[],MI,2023-2024 +placed on third reading,2023-06-06,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +read a second time,2024-06-13,['reading-2'],MI,2023-2024 +amended,2023-10-04,[],MI,2023-2024 +placed on third reading,2023-10-10,[],MI,2023-2024 +placed on third reading,2024-06-25,[],MI,2023-2024 +placed on third reading,2024-06-12,[],MI,2023-2024 +placed on third reading,2023-09-12,[],MI,2023-2024 +RULES SUSPENDED,2023-04-20,[],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +adopted by Senate - referred to the Clerk for record,2024-05-15,['passage'],MI,2023-2024 +substitute (H-2) adopted,2023-03-22,[],MI,2023-2024 +substitute (H-2) adopted,2023-11-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-02-07,[],MI,2023-2024 +RULES SUSPENDED,2024-06-26,[],MI,2023-2024 +SUBSTITUTE (S-2) DEFEATED,2023-09-27,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-19,[],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-03,[],MI,2023-2024 +AMENDMENT(S) ADOPTED,2024-06-05,['amendment-passage'],MI,2023-2024 +substitute (H-2) adopted,2023-10-25,[],MI,2023-2024 +received on 10/12/2023,2023-10-12,['introduction'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-08,[],MI,2023-2024 +placed on third reading,2024-02-29,[],MI,2023-2024 +PASSED ROLL CALL # 187 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-05-10,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-22,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-25,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-01,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-10-05,['amendment-failure'],MI,2023-2024 +substitute (H-2) adopted,2024-05-08,[],MI,2023-2024 +PASSED ROLL CALL # 233 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-05,['passage'],MI,2023-2024 +PASSED ROLL CALL # 232 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-05,['passage'],MI,2023-2024 +substitute (H-1) adopted,2023-05-10,[],MI,2023-2024 +PASSED ROLL CALL # 231 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-05,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-06-22,[],MI,2023-2024 +placed on third reading,2023-04-20,[],MI,2023-2024 +substitute (H-1) adopted,2023-03-16,[],MI,2023-2024 +placed on third reading,2023-06-07,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-12,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-03-16,[],MI,2023-2024 +placed on third reading,2024-06-04,[],MI,2023-2024 +received on 06/04/2024,2024-06-04,['introduction'],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +substitute (H-1) adopted,2024-03-13,[],MI,2023-2024 +substitute (H-1) adopted,2023-09-20,[],MI,2023-2024 +placed on third reading,2023-06-22,[],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +read a second time,2024-02-29,['reading-2'],MI,2023-2024 +substitute (H-2) adopted,2023-09-20,[],MI,2023-2024 +substitute (H-1) adopted,2024-04-18,[],MI,2023-2024 +RULES SUSPENDED,2023-10-26,[],MI,2023-2024 +substitute (H-3) adopted,2023-03-22,[],MI,2023-2024 +placed on third reading,2023-10-24,[],MI,2023-2024 +RULES SUSPENDED,2024-06-26,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-28,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-03-16,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2023-05-10,[],MI,2023-2024 +substitute (H-2) adopted and amended,2023-05-10,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-11,[],MI,2023-2024 +substitute (H-1) adopted,2024-04-18,[],MI,2023-2024 +PASSED ROLL CALL # 526 YEAS 26 NAYS 11 EXCUSED 1 NOT VOTING 0,2023-10-12,['passage'],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +placed on third reading,2023-09-14,[],MI,2023-2024 +received on 06/08/2023,2023-06-08,['introduction'],MI,2023-2024 +substitute (H-1) adopted,2023-10-19,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-26,[],MI,2023-2024 +read a second time,2024-06-25,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2024-06-26,[],MI,2023-2024 +substitute (H-1) adopted,2023-03-22,[],MI,2023-2024 +substitute (H-1) adopted,2023-03-16,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-10,[],MI,2023-2024 +read a second time,2023-11-02,['reading-2'],MI,2023-2024 +substitute (H-1) adopted,2024-05-08,[],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +RULES SUSPENDED,2023-03-14,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-06-14,['amendment-passage'],MI,2023-2024 +substitute (H-1) adopted,2023-11-08,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-28,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-03-02,[],MI,2023-2024 +substitute (H-1) adopted,2023-09-06,[],MI,2023-2024 +substitute (H-2) adopted and amended,2024-05-08,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +RULES SUSPENDED,2023-06-28,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-09,[],MI,2023-2024 +read a second time,2024-03-13,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-10-11,[],MI,2023-2024 +substitute (H-3) adopted,2024-06-26,[],MI,2023-2024 +substitute (H-1) adopted,2023-03-02,[],MI,2023-2024 +read a second time,2023-10-05,['reading-2'],MI,2023-2024 +read a second time,2023-10-11,['reading-2'],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +read a first time,2023-09-27,['reading-1'],MI,2023-2024 +SUBSTITUTE (S-2) ADOPTED,2023-04-20,[],MI,2023-2024 +placed on third reading,2023-10-18,[],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +PASSED ROLL CALL # 457 YEAS 23 NAYS 14 EXCUSED 0 NOT VOTING 1,2023-09-26,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-09,[],MI,2023-2024 +substitute (H-2) adopted,2023-03-22,[],MI,2023-2024 +substitute (H-1) adopted,2024-03-13,[],MI,2023-2024 +placed on motions and resolutions,2023-01-26,[],MI,2023-2024 +placed on third reading,2023-10-19,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +SUBSTITUTE (S-5) ADOPTED,2024-03-19,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-13,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-04-19,[],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +placed on third reading,2023-03-08,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +PASSED ROLL CALL # 14 YEAS 31 NAYS 7 EXCUSED 0 NOT VOTING 0,2024-02-14,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-09,[],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +substitute (H-3) adopted,2024-06-26,[],MI,2023-2024 +RULES SUSPENDED,2023-10-11,[],MI,2023-2024 +received on 05/04/2023,2023-05-04,['introduction'],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +substitute (H-2) adopted,2024-06-26,[],MI,2023-2024 +RULES SUSPENDED,2023-06-22,[],MI,2023-2024 +placed on third reading,2023-09-28,[],MI,2023-2024 +placed on third reading,2023-05-23,[],MI,2023-2024 +received on 11/02/2023,2023-11-02,['introduction'],MI,2023-2024 +placed on third reading,2023-06-14,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +placed on third reading,2024-04-18,[],MI,2023-2024 +substitute (H-3) adopted and amended,2024-06-26,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-25,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-01,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +amended,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-10-10,[],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +received on 05/04/2023,2023-05-04,['introduction'],MI,2023-2024 +substitute (H-1) adopted,2023-03-16,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-01-26,[],MI,2023-2024 +PASSED ROLL CALL # 307 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +SUBSTITUTE (S-3) ADOPTED,2024-03-19,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-01,[],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +read a second time,2023-10-18,['reading-2'],MI,2023-2024 +placed on third reading,2024-03-12,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-21,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-01,[],MI,2023-2024 +SUBSTITUTE (S-5) ADOPTED,2024-03-19,[],MI,2023-2024 +adopted by Senate - referred to the Clerk for record,2023-09-07,['passage'],MI,2023-2024 +received on 09/27/2023,2023-09-27,['introduction'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-02,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-22,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-22,[],MI,2023-2024 +placed on third reading,2024-04-24,[],MI,2023-2024 +placed on third reading,2023-03-21,[],MI,2023-2024 +substitute (H-1) adopted,2024-02-28,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-28,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-07,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2024-05-07,[],MI,2023-2024 +postponed temporarily,2024-06-25,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +placed on third reading,2024-04-24,[],MI,2023-2024 +RULES SUSPENDED,2024-06-26,[],MI,2023-2024 +RULES SUSPENDED,2023-03-08,[],MI,2023-2024 +substitute (H-1) adopted,2023-09-19,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-04,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-13,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-07,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +placed on third reading,2024-06-13,[],MI,2023-2024 +placed on third reading,2023-03-08,[],MI,2023-2024 +PASSED ROLL CALL # 286 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2023-05-10,[],MI,2023-2024 +substitute (H-2) adopted and amended,2023-05-10,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2024-05-02,[],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-26,[],MI,2023-2024 +PASSED ROLL CALL # 92 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2024-04-10,['passage'],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +substitute (H-3) adopted,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-06-06,[],MI,2023-2024 +placed on third reading,2023-09-28,[],MI,2023-2024 +PASSED ROLL CALL # 288 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +received on 10/18/2023,2023-10-18,['introduction'],MI,2023-2024 +received on 10/25/2023,2023-10-25,['introduction'],MI,2023-2024 +read a first time,2023-10-18,['reading-1'],MI,2023-2024 +substitute (H-3) adopted,2024-06-26,[],MI,2023-2024 +substitute (H-2) adopted and amended,2023-05-10,[],MI,2023-2024 +PASSED ROLL CALL # 147 YEAS 35 NAYS 3 EXCUSED 0 NOT VOTING 0,2023-05-03,['passage'],MI,2023-2024 +PASSED ROLL CALL # 13 YEAS 31 NAYS 7 EXCUSED 0 NOT VOTING 0,2024-02-14,['passage'],MI,2023-2024 +PASSED ROLL CALL # 285 YEAS 35 NAYS 3 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-10-19,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-25,[],MI,2023-2024 +AMENDMENT(S) WITHDRAWN,2024-06-26,[],MI,2023-2024 +SUBSTITUTE (S-2) AS AMENDED CONCURRED IN,2024-05-07,[],MI,2023-2024 +substitute (H-2) adopted,2024-06-26,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-21,[],MI,2023-2024 +ADOPTED,2023-11-09,['passage'],MI,2023-2024 +substitute (H-1) adopted,2023-06-21,[],MI,2023-2024 +placed on third reading,2023-09-19,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +substitute (H-3) adopted,2023-09-20,[],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +substitute (H-1) adopted,2023-09-26,[],MI,2023-2024 +placed on third reading,2023-05-11,[],MI,2023-2024 +PASSED ROLL CALL # 295 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-06-26,['amendment-failure'],MI,2023-2024 +received on 10/25/2023,2023-10-25,['introduction'],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-26,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +placed on third reading,2023-09-26,[],MI,2023-2024 +substitute (H-1) adopted and amended,2023-06-21,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-25,[],MI,2023-2024 +PASSED ROLL CALL # 639 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-11-02,['passage'],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +substitute (H-1) adopted,2024-03-13,[],MI,2023-2024 +substitute (H-4) adopted,2023-09-14,[],MI,2023-2024 +read a second time,2023-10-24,['reading-2'],MI,2023-2024 +placed on third reading,2023-09-26,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +placed on third reading,2024-06-13,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +PASSED ROLL CALL # 520 YEAS 30 NAYS 7 EXCUSED 1 NOT VOTING 0,2023-10-12,['passage'],MI,2023-2024 +received on 03/22/2023,2023-03-22,['introduction'],MI,2023-2024 +placed on third reading,2023-06-06,[],MI,2023-2024 +received on 01/25/2024,2024-01-30,['introduction'],MI,2023-2024 +placed on third reading,2024-06-13,[],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-24,[],MI,2023-2024 +PASSED ROLL CALL # 88 YEAS 20 NAYS 15 EXCUSED 3 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +substitute (H-1) adopted,2023-10-19,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-13,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-12,[],MI,2023-2024 +placed on third reading,2023-11-02,[],MI,2023-2024 +placed on third reading,2023-06-27,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-19,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-14,[],MI,2023-2024 +RULES SUSPENDED,2023-06-22,[],MI,2023-2024 +received on 06/08/2023,2023-06-08,['introduction'],MI,2023-2024 +RULES SUSPENDED,2023-06-28,[],MI,2023-2024 +substitute (H-2) adopted,2023-05-10,[],MI,2023-2024 +received on 10/18/2023,2023-10-18,['introduction'],MI,2023-2024 +received on 10/20/2023,2023-10-24,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 342 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +placed on third reading,2024-06-13,[],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-01,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-20,[],MI,2023-2024 +received on 05/04/2023,2023-05-04,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 34 YEAS 26 NAYS 12 EXCUSED 0 NOT VOTING 0,2024-02-27,['passage'],MI,2023-2024 +amended,2023-03-22,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-13,[],MI,2023-2024 +PASSED ROLL CALL # 340 YEAS 26 NAYS 12 EXCUSED 0 NOT VOTING 0,2023-06-08,['passage'],MI,2023-2024 +PASSED ROLL CALL # 122 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-04-19,['passage'],MI,2023-2024 +placed on third reading,2024-06-13,[],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +RULES SUSPENDED,2023-05-24,[],MI,2023-2024 +RULES SUSPENDED,2023-10-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-22,[],MI,2023-2024 +placed on third reading,2024-01-17,[],MI,2023-2024 +read a second time,2023-06-22,['reading-2'],MI,2023-2024 +substitute (H-1) adopted,2023-10-18,[],MI,2023-2024 +PASSED ROLL CALL # 9 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-01-26,['passage'],MI,2023-2024 +placed on third reading,2023-10-18,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-5),2023-05-10,[],MI,2023-2024 +REFERRED TO SECRETARY FOR RECORD,2023-03-23,[],MI,2023-2024 +substitute (H-2) adopted,2023-03-08,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-24,[],MI,2023-2024 +substitute (H-2) adopted,2023-06-13,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-20,[],MI,2023-2024 +PASSED ROLL CALL # 57 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-03-13,['passage'],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-10-04,['amendment-passage'],MI,2023-2024 +PASSED ROLL CALL # 61 YEAS 26 NAYS 11 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-03-23,['referral-committee'],MI,2023-2024 +substitute (H-1) adopted,2023-09-20,[],MI,2023-2024 +substitute (H-1) adopted,2023-09-20,[],MI,2023-2024 +received on 10/04/2023,2023-10-04,['introduction'],MI,2023-2024 +substitute (H-1) adopted,2023-06-27,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-13,[],MI,2023-2024 +substitute (H-3) adopted,2023-10-24,[],MI,2023-2024 +received on 06/25/2024,2024-06-25,['introduction'],MI,2023-2024 +placed on third reading,2024-06-18,[],MI,2023-2024 +placed on third reading,2023-03-23,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-13,[],MI,2023-2024 +placed on third reading,2023-03-08,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-17,['amendment-failure'],MI,2023-2024 +RULES SUSPENDED,2023-10-26,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-02,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +received on 02/29/2024,2024-03-05,['introduction'],MI,2023-2024 +placed on third reading,2024-01-17,[],MI,2023-2024 +substitute (H-3) adopted,2023-06-27,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-13,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-03-09,['amendment-failure'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-25,['referral-committee'],MI,2023-2024 +substitute (H-1) adopted,2023-05-11,[],MI,2023-2024 +placed on third reading,2023-09-12,[],MI,2023-2024 +substitute (H-2) adopted,2023-04-25,[],MI,2023-2024 +RULES SUSPENDED,2023-05-23,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +received on 05/04/2023,2023-05-04,['introduction'],MI,2023-2024 +received on 06/04/2024,2024-06-04,['introduction'],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +read a second time,2023-06-14,['reading-2'],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +read a second time,2023-01-26,['reading-2'],MI,2023-2024 +placed on third reading,2023-10-11,[],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +substitute (H-1) adopted,2024-04-24,[],MI,2023-2024 +PASSED ROLL CALL # 489 YEAS 26 NAYS 12 EXCUSED 0 NOT VOTING 0,2023-10-03,['passage'],MI,2023-2024 +substitute (H-1) adopted,2024-04-24,[],MI,2023-2024 +RULES SUSPENDED,2024-06-26,[],MI,2023-2024 +referred to second reading,2024-03-13,[],MI,2023-2024 +substitute (H-1) adopted,2023-03-21,[],MI,2023-2024 +received on 06/06/2023,2023-06-07,['introduction'],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +RULES SUSPENDED,2023-03-08,[],MI,2023-2024 +RULES SUSPENDED,2024-04-16,[],MI,2023-2024 +substitute (H-3) adopted,2023-05-18,[],MI,2023-2024 +SUBSTITUTE (S-3) ADOPTED,2024-06-26,[],MI,2023-2024 +PASSED ROLL CALL # 143 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-05-03,['passage'],MI,2023-2024 +substitute (H-1) adopted,2023-10-03,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +placed on third reading,2023-09-12,[],MI,2023-2024 +PASSED ROLL CALL # 650 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-02,['passage'],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +RULES SUSPENDED,2023-06-22,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-03-22,[],MI,2023-2024 +PASSED ROLL CALL # 341 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +substitute (H-1) adopted,2023-06-13,[],MI,2023-2024 +read a second time,2024-06-12,['reading-2'],MI,2023-2024 +substitute (H-2) adopted,2024-06-04,[],MI,2023-2024 +amended,2023-04-13,[],MI,2023-2024 +placed on third reading,2024-06-12,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-28,[],MI,2023-2024 +REFERRED TO SECRETARY FOR RECORD,2023-01-18,[],MI,2023-2024 +PASSED ROLL CALL # 96 YEAS 21 NAYS 15 EXCUSED 2 NOT VOTING 0,2024-04-16,['passage'],MI,2023-2024 +substitute (H-5) adopted,2024-05-02,[],MI,2023-2024 +RULES SUSPENDED,2023-01-18,[],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +RULES SUSPENDED,2024-02-14,[],MI,2023-2024 +placed on third reading,2023-03-08,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +received on 10/20/2023,2023-10-24,['introduction'],MI,2023-2024 +substitute (H-3) adopted,2023-05-10,[],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-09,[],MI,2023-2024 +PASSED ROLL CALL # 344 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +placed on third reading,2023-10-24,[],MI,2023-2024 +substitute (H-1) adopted,2024-02-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-03-16,[],MI,2023-2024 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2024-05-02,[],MI,2023-2024 +PASSED ROLL CALL # 308 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +PASSED ROLL CALL # 154 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-05-04,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2024-05-07,['committee-passage'],MI,2023-2024 +PASSED ROLL CALL # 646 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-02,['passage'],MI,2023-2024 +substitute (H-1) adopted,2023-05-23,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2024-05-07,[],MI,2023-2024 +placed on third reading,2023-05-18,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-07,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-08,[],MI,2023-2024 +substitute (H-3) adopted and amended,2024-05-08,[],MI,2023-2024 +PASSED ROLL CALL # 287 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-11-01,[],MI,2023-2024 +read a first time,2023-09-27,['reading-1'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2024-03-06,[],MI,2023-2024 +substitute (H-2) adopted,2023-06-13,[],MI,2023-2024 +substitute (H-5) adopted,2024-06-04,[],MI,2023-2024 +SUBSTITUTE (S-2) ADOPTED,2024-03-19,[],MI,2023-2024 +PASSED ROLL CALL # 76 YEAS 33 NAYS 4 EXCUSED 1 NOT VOTING 0,2023-03-15,['passage'],MI,2023-2024 +REFERRED TO SECRETARY FOR RECORD,2023-01-12,[],MI,2023-2024 +PASSED ROLL CALL # 306 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +placed on third reading,2024-06-11,[],MI,2023-2024 +PASSED ROLL CALL # 542 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-18,['passage'],MI,2023-2024 +placed on third reading,2024-06-11,[],MI,2023-2024 +PASSED ROLL CALL # 719 YEAS 23 NAYS 14 EXCUSED 1 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +read a first time,2023-09-27,['reading-1'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-22,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-03,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-08,[],MI,2023-2024 +PASSED ROLL CALL # 212 YEAS 25 NAYS 13 EXCUSED 0 NOT VOTING 0,2024-06-04,['passage'],MI,2023-2024 +substitute (H-2) adopted,2023-09-20,[],MI,2023-2024 +RULES SUSPENDED,2023-10-26,[],MI,2023-2024 +PASSED ROLL CALL # 290 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +read a second time,2023-10-18,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-05-17,[],MI,2023-2024 +read a second time,2024-02-28,['reading-2'],MI,2023-2024 +placed on third reading,2023-06-22,[],MI,2023-2024 +placed on third reading,2024-06-25,[],MI,2023-2024 +RULES SUSPENDED,2023-10-19,[],MI,2023-2024 +RULES SUSPENDED,2023-03-08,[],MI,2023-2024 +SUBSTITUTE (S-3) WITHDRAWN,2023-10-12,[],MI,2023-2024 +placed on third reading,2023-05-23,[],MI,2023-2024 +RULES SUSPENDED,2023-10-19,[],MI,2023-2024 +substitute (H-2) adopted,2023-09-20,[],MI,2023-2024 +RULES SUSPENDED,2023-11-01,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-01,[],MI,2023-2024 +received on 05/04/2023,2023-05-04,['introduction'],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +substitute (H-1) adopted,2023-10-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-03-22,[],MI,2023-2024 +PASSED ROLL CALL # 54 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-03-12,['passage'],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-25,[],MI,2023-2024 +RULES SUSPENDED,2023-10-11,[],MI,2023-2024 +placed on third reading,2024-06-25,[],MI,2023-2024 +placed on third reading,2024-06-25,[],MI,2023-2024 +placed on immediate passage,2024-06-11,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-04-30,[],MI,2023-2024 +substitute (H-2) adopted,2023-06-20,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-14,[],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +returned to Senate,2023-10-05,[],MI,2023-2024 +PASSED ROLL CALL # 41 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-02-29,['passage'],MI,2023-2024 +placed on third reading,2024-06-25,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +substitute (H-3) adopted,2023-09-20,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-31,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +referred to second reading,2023-11-08,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-31,[],MI,2023-2024 +placed on third reading,2024-02-06,[],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-18,[],MI,2023-2024 +placed on third reading,2023-10-04,[],MI,2023-2024 +substitute (H-1) adopted,2024-03-13,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +amended,2023-11-09,[],MI,2023-2024 +read a second time,2024-06-20,['reading-2'],MI,2023-2024 +placed on third reading,2024-05-01,[],MI,2023-2024 +placed on third reading,2024-02-13,[],MI,2023-2024 +placed on third reading,2023-10-04,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-21,[],MI,2023-2024 +substitute (H-2) adopted,2023-09-20,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-21,[],MI,2023-2024 +placed on third reading,2023-09-12,[],MI,2023-2024 +RULES SUSPENDED,2024-09-17,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-10,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +RULES SUSPENDED,2024-06-26,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-13,[],MI,2023-2024 +placed on third reading,2024-02-21,[],MI,2023-2024 +substitute (H-3) adopted,2023-09-20,[],MI,2023-2024 +placed on third reading,2023-09-26,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-10-12,['amendment-failure'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +substitute (H-2) adopted,2023-10-31,[],MI,2023-2024 +substitute (H-2) adopted,2023-10-31,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-07,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-08,[],MI,2023-2024 +placed on third reading,2024-04-24,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-09,[],MI,2023-2024 +PASSED ROLL CALL # 37 YEAS 23 NAYS 15 EXCUSED 0 NOT VOTING 0,2024-02-28,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-04-18,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-22,[],MI,2023-2024 +substitute (H-2) adopted,2024-03-13,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-19,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-12,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2023-03-16,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +substitute (H-4) adopted,2024-06-26,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-09-19,[],MI,2023-2024 +received on 06/07/2023,2023-06-07,['introduction'],MI,2023-2024 +placed on third reading,2024-06-27,[],MI,2023-2024 +received on 09/07/2023,2023-09-07,['introduction'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +substitute (H-3) adopted,2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-05-10,[],MI,2023-2024 +substitute (H-2) adopted,2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-07,[],MI,2023-2024 +substitute (H-1) adopted,2023-09-12,[],MI,2023-2024 +received on 10/18/2023,2023-10-18,['introduction'],MI,2023-2024 +SUBSTITUTE (S-4) AS AMENDED CONCURRED IN,2024-05-02,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-10-19,['amendment-failure'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-24,[],MI,2023-2024 +placed on third reading,2024-05-22,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +placed on third reading,2023-10-18,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-20,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +placed on third reading,2024-01-17,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-06-04,['amendment-failure'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2024-05-07,[],MI,2023-2024 +RULES SUSPENDED,2023-10-26,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-01,[],MI,2023-2024 +read a second time,2024-06-27,['reading-2'],MI,2023-2024 +amended,2023-11-02,[],MI,2023-2024 +received on 03/12/2024,2024-03-12,['introduction'],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2024-03-19,[],MI,2023-2024 +substitute (H-3) adopted,2024-06-26,[],MI,2023-2024 +SUBSTITUTE (S-2) ADOPTED,2023-10-19,[],MI,2023-2024 +motion to discharge committee postponed for day,2023-04-19,[],MI,2023-2024 +RULES SUSPENDED,2023-01-26,[],MI,2023-2024 +SUBSTITUTE (S-1) ADOPTED,2024-03-19,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-24,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-11,[],MI,2023-2024 +PASSED ROLL CALL # 506 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-10,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-04-25,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-22,[],MI,2023-2024 +received on 10/25/2023,2023-10-25,['introduction'],MI,2023-2024 +substitute (H-1) adopted,2023-10-12,[],MI,2023-2024 +placed on third reading,2023-06-28,[],MI,2023-2024 +placed on third reading,2023-10-18,[],MI,2023-2024 +received on 09/27/2023,2023-09-27,['introduction'],MI,2023-2024 +substitute (H-2) adopted,2023-06-13,[],MI,2023-2024 +RULES SUSPENDED,2023-03-08,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +placed on third reading,2023-11-02,[],MI,2023-2024 +received on 10/20/2023,2023-10-24,['introduction'],MI,2023-2024 +RULES SUSPENDED,2023-06-28,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-06-07,[],MI,2023-2024 +substitute (H-2) adopted,2023-06-14,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +substitute (H-2) adopted and amended,2023-10-04,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-19,[],MI,2023-2024 +PASSED ROLL CALL # 235 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-05,['passage'],MI,2023-2024 +placed on third reading,2023-09-26,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-13,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-13,[],MI,2023-2024 +PASSED ROLL CALL # 236 YEAS 29 NAYS 9 EXCUSED 0 NOT VOTING 0,2024-06-05,['passage'],MI,2023-2024 +placed on third reading,2023-09-06,[],MI,2023-2024 +RULES SUSPENDED,2023-06-22,[],MI,2023-2024 +substitute (H-1) adopted,2023-09-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2024-05-07,[],MI,2023-2024 +RULES SUSPENDED,2023-10-19,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-01,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2023-05-10,[],MI,2023-2024 +REFERRED TO SECRETARY FOR RECORD,2024-03-20,[],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 36 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-02-28,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2024-05-07,[],MI,2023-2024 +RULES SUSPENDED,2023-10-19,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +substitute (H-1) adopted,2023-09-20,[],MI,2023-2024 +substitute (H-4) adopted,2023-10-24,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-31,[],MI,2023-2024 +placed on third reading,2023-06-27,[],MI,2023-2024 +placed on third reading,2024-04-18,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-05-09,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-08,[],MI,2023-2024 +substitute (H-3) adopted,2023-10-24,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2024-05-07,['committee-passage'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +placed on third reading,2024-02-14,[],MI,2023-2024 +RULES SUSPENDED,2024-06-26,[],MI,2023-2024 +read a second time,2024-05-21,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 186 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-05-10,['passage'],MI,2023-2024 +substitute (H-2) adopted and amended,2023-05-10,[],MI,2023-2024 +substitute (H-6) adopted,2023-03-08,[],MI,2023-2024 +REFERRED TO SECRETARY FOR RECORD,2024-01-25,[],MI,2023-2024 +PASSED ROLL CALL # 242 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-12,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-11,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-28,[],MI,2023-2024 +PASSED ROLL CALL # 645 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-02,['passage'],MI,2023-2024 +referred to second reading,2024-06-05,[],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-10,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-20,[],MI,2023-2024 +received on 10/12/2023,2023-10-12,['introduction'],MI,2023-2024 +placed on third reading,2023-04-13,[],MI,2023-2024 +placed on third reading,2023-10-04,[],MI,2023-2024 +placed on third reading,2023-05-02,[],MI,2023-2024 +substitute (H-1) adopted,2024-03-13,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-07,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-05-10,[],MI,2023-2024 +substitute (H-1) adopted,2023-03-16,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-09,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-20,[],MI,2023-2024 +placed on third reading,2024-03-13,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-08,[],MI,2023-2024 +placed on third reading,2023-04-13,[],MI,2023-2024 +received on 11/02/2023,2023-11-02,['introduction'],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +substitute (H-1) adopted,2024-05-21,[],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +PASSED ROLL CALL # 333 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2024-09-17,['passage'],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +read a second time,2023-05-11,['reading-2'],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +substitute (H-5) adopted,2023-04-13,[],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +PASSED ROLL CALL # 124 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-04-19,['passage'],MI,2023-2024 +RULES SUSPENDED,2024-06-26,[],MI,2023-2024 +PASSED ROLL CALL # 532 YEAS 24 NAYS 13 EXCUSED 1 NOT VOTING 0,2023-10-12,['passage'],MI,2023-2024 +received on 10/04/2023,2023-10-04,['introduction'],MI,2023-2024 +substitute (H-1) adopted,2023-10-25,[],MI,2023-2024 +substitute (H-1) adopted and amended,2024-05-08,[],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-06-07,['amendment-passage'],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +placed on third reading,2024-06-04,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +substitute (H-2) adopted,2023-06-13,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-26,[],MI,2023-2024 +PASSED ROLL CALL # 536 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-18,['passage'],MI,2023-2024 +placed on third reading,2023-09-14,[],MI,2023-2024 +PASSED ROLL CALL # 239 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-11,['passage'],MI,2023-2024 +HOUSE CONCURRENCE RECEIVED,2024-01-11,[],MI,2023-2024 +RULES SUSPENDED,2023-10-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-07,[],MI,2023-2024 +placed on third reading,2023-05-24,[],MI,2023-2024 +received on 05/17/2023,2023-05-17,['introduction'],MI,2023-2024 +substitute (H-1) adopted,2023-10-12,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-03-16,[],MI,2023-2024 +placed on third reading,2023-10-03,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-13,[],MI,2023-2024 +PASSED ROLL CALL # 91 YEAS 36 NAYS 0 EXCUSED 1 NOT VOTING 1,2024-04-10,['passage'],MI,2023-2024 +received on 05/03/2023,2023-05-03,['introduction'],MI,2023-2024 +substitute (H-1) adopted,2023-11-01,[],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-13,[],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-06-08,['amendment-failure'],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-21,[],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +PASSED ROLL CALL # 208 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-04,['passage'],MI,2023-2024 +PASSED ROLL CALL # 524 YEAS 28 NAYS 9 EXCUSED 1 NOT VOTING 0,2023-10-12,['passage'],MI,2023-2024 +received on 03/12/2024,2024-03-12,['introduction'],MI,2023-2024 +substitute (H-3) adopted,2023-04-25,[],MI,2023-2024 +PASSED ROLL CALL # 338 YEAS 25 NAYS 13 EXCUSED 0 NOT VOTING 0,2023-06-08,['passage'],MI,2023-2024 +substitute (H-1) adopted,2024-06-20,[],MI,2023-2024 +placed on third reading,2024-06-04,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-25,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-19,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-25,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-13,[],MI,2023-2024 +PASSED ROLL CALL # 521 YEAS 31 NAYS 6 EXCUSED 1 NOT VOTING 0,2023-10-12,['passage'],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +placed on third reading,2024-05-09,[],MI,2023-2024 +substitute (H-1) adopted and amended,2024-05-08,[],MI,2023-2024 +substitute (H-1) adopted,2023-09-19,[],MI,2023-2024 +placed on third reading,2024-06-12,[],MI,2023-2024 +RULES SUSPENDED,2024-06-12,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +placed on third reading,2024-06-11,[],MI,2023-2024 +RULES SUSPENDED,2023-10-19,[],MI,2023-2024 +placed on second reading,2023-05-17,[],MI,2023-2024 +placed on third reading,2024-04-24,[],MI,2023-2024 +placed on third reading,2024-06-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2023-11-01,[],MI,2023-2024 +placed on third reading,2024-06-11,[],MI,2023-2024 +RULES SUSPENDED,2024-06-26,[],MI,2023-2024 +received on 10/18/2023,2023-10-18,['introduction'],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-05-23,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +PASSED ROLL CALL # 544 YEAS 35 NAYS 3 EXCUSED 0 NOT VOTING 0,2023-10-18,['passage'],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-05-10,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +REFERRED TO SECRETARY FOR RECORD,2023-06-29,[],MI,2023-2024 +placed on third reading,2023-10-04,[],MI,2023-2024 +placed on third reading,2023-09-12,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +placed on third reading,2023-06-06,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-06-14,['amendment-failure'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-10-25,[],MI,2023-2024 +PASSED ROLL CALL # 454 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-09-26,['passage'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +placed on third reading,2023-10-24,[],MI,2023-2024 +placed on third reading,2023-09-19,[],MI,2023-2024 +read a second time,2023-05-11,['reading-2'],MI,2023-2024 +motion to discharge committee postponed for day,2023-04-19,[],MI,2023-2024 +read a second time,2023-10-05,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-03-14,[],MI,2023-2024 +placed on third reading,2023-05-18,[],MI,2023-2024 +placed on third reading,2023-04-19,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-13,[],MI,2023-2024 +PASSED ROLL CALL # 522 YEAS 31 NAYS 6 EXCUSED 1 NOT VOTING 0,2023-10-12,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-05-10,[],MI,2023-2024 +read a second time,2023-09-14,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-11-02,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-23,[],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-05-07,[],MI,2023-2024 +PASSED ROLL CALL # 475 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +PASSED ROLL CALL # 121 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2023-04-19,['passage'],MI,2023-2024 +placed on third reading,2023-04-27,[],MI,2023-2024 +substitute (H-1) adopted and amended,2023-10-18,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-11,[],MI,2023-2024 +substitute (H-1) adopted,2024-02-28,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +received on 05/04/2023,2023-05-04,['introduction'],MI,2023-2024 +placed on third reading,2024-02-29,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-24,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-20,[],MI,2023-2024 +placed on third reading,2023-04-27,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +RULES SUSPENDED,2023-05-23,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-10,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +substitute (H-1) adopted,2023-09-13,[],MI,2023-2024 +received on 06/25/2024,2024-06-25,['introduction'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-21,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +HOUSE CONCURRENCE RECEIVED,2024-05-22,[],MI,2023-2024 +RULES SUSPENDED,2024-06-20,[],MI,2023-2024 +motion to discharge committee postponed for day,2023-04-19,[],MI,2023-2024 +substitute (H-2) adopted,2023-04-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-03-16,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +RULES SUSPENDED,2024-06-20,[],MI,2023-2024 +placed on second reading,2023-11-01,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-19,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-03,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-06-20,['amendment-failure'],MI,2023-2024 +PASSED ROLL CALL # 252 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +substitute (H-2) adopted,2024-01-18,[],MI,2023-2024 +substitute (H-1) not adopted,2023-09-12,[],MI,2023-2024 +placed on third reading,2024-06-13,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-16,[],MI,2023-2024 +RULES SUSPENDED,2023-10-11,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-04-19,[],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +placed on third reading,2023-03-16,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-05-09,[],MI,2023-2024 +received on 01/25/2024,2024-01-30,['introduction'],MI,2023-2024 +substitute (H-1) adopted,2023-05-10,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4),2023-05-10,[],MI,2023-2024 +placed on third reading,2023-05-18,[],MI,2023-2024 +PASSED ROLL CALL # 256 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +SUBSTITUTE (S-2) ADOPTED,2023-10-12,[],MI,2023-2024 +placed on third reading,2024-06-18,[],MI,2023-2024 +PASSED ROLL CALL # 123 YEAS 29 NAYS 9 EXCUSED 0 NOT VOTING 0,2023-04-19,['passage'],MI,2023-2024 +read a second time,2024-06-18,['reading-2'],MI,2023-2024 +placed on third reading,2023-09-13,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-20,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-03,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-04-26,['amendment-failure'],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-14,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-08,[],MI,2023-2024 +substitute (H-1) adopted,2023-03-22,[],MI,2023-2024 +substitute (H-2) adopted,2023-09-20,[],MI,2023-2024 +PASSED ROLL CALL # 234 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-05,['passage'],MI,2023-2024 +read a second time,2024-03-19,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-03-21,[],MI,2023-2024 +REFERRED TO SECRETARY FOR RECORD,2023-01-18,[],MI,2023-2024 +placed on third reading,2023-09-12,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +placed on second reading,2023-02-01,[],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +received on 04/10/2024,2024-04-10,['introduction'],MI,2023-2024 +read a third time,2023-06-07,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 346 YEAS 27 NAYS 11 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +placed on third reading,2023-10-03,[],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +placed on third reading,2024-01-18,[],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +substitute (H-2) adopted,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +PASSED ROLL CALL # 517 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2023-10-11,['passage'],MI,2023-2024 +PASSED ROLL CALL # 599 YEAS 32 NAYS 6 EXCUSED 0 NOT VOTING 0,2023-10-26,['passage'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +received on 09/26/2023,2023-09-26,['introduction'],MI,2023-2024 +placed on third reading,2023-10-03,[],MI,2023-2024 +read a third time,2023-05-23,['reading-3'],MI,2023-2024 +substitute (H-1) adopted,2023-06-13,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +read a first time,2023-05-17,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 121 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-09,['passage'],MI,2023-2024 +PASSED ROLL CALL # 87 YEAS 20 NAYS 15 EXCUSED 3 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +substitute (H-1) adopted,2023-05-11,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-19,[],MI,2023-2024 +PASSED ROLL CALL # 135 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-04-26,['passage'],MI,2023-2024 +placed on immediate passage,2023-09-19,[],MI,2023-2024 +received on 10/10/2023,2023-10-10,['introduction'],MI,2023-2024 +read a third time,2023-09-27,['reading-3'],MI,2023-2024 +received on 06/05/2024,2024-06-05,['introduction'],MI,2023-2024 +received on 06/11/2024,2024-06-11,['introduction'],MI,2023-2024 +VOTE RECONSIDERED,2023-10-18,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-05,[],MI,2023-2024 +placed on third reading,2023-10-04,[],MI,2023-2024 +read a third time,2023-05-23,['reading-3'],MI,2023-2024 +placed on third reading,2023-10-19,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +read a first time,2023-10-04,['reading-1'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-14,[],MI,2023-2024 +placed on immediate passage,2023-04-19,[],MI,2023-2024 +PASSED ROLL CALL # 329 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-11-01,[],MI,2023-2024 +placed on third reading,2024-06-13,[],MI,2023-2024 +received on 10/12/2023,2023-10-12,['introduction'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-11-01,[],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +RULES SUSPENDED,2023-05-10,[],MI,2023-2024 +read a third time,2023-09-06,['reading-3'],MI,2023-2024 +placed on third reading,2023-09-14,[],MI,2023-2024 +read a second time,2023-02-01,['reading-2'],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +PASSED ROLL CALL # 316 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2023-05-23,['passage'],MI,2023-2024 +received on 10/12/2023,2023-10-12,['introduction'],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +RULES SUSPENDED,2023-11-02,[],MI,2023-2024 +placed on third reading,2023-06-14,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-26,[],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +received on 04/19/2023,2023-04-19,['introduction'],MI,2023-2024 +read a third time,2024-05-09,['reading-3'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-06-08,['amendment-failure'],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +substitute (H-7) adopted,2023-04-13,[],MI,2023-2024 +placed on immediate passage,2023-10-12,[],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +placed on third reading,2023-05-11,[],MI,2023-2024 +received on 09/27/2023,2023-09-27,['introduction'],MI,2023-2024 +placed on third reading,2023-10-18,[],MI,2023-2024 +read a third time,2023-09-13,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 362 YEAS 30 NAYS 8 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +placed on third reading,2023-06-14,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-14,['amendment-failure'],MI,2023-2024 +received on 09/17/2024,2024-09-17,['introduction'],MI,2023-2024 +placed on third reading,2024-05-21,[],MI,2023-2024 +received on 04/19/2023,2023-04-19,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 263 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-11,['passage'],MI,2023-2024 +read a third time,2023-05-03,['reading-3'],MI,2023-2024 +read a first time,2023-11-02,['reading-1'],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +placed on third reading,2024-02-28,[],MI,2023-2024 +placed on immediate passage,2023-04-13,[],MI,2023-2024 +substitute (H-2) adopted,2023-11-09,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-28,[],MI,2023-2024 +RULES SUSPENDED,2024-06-20,[],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +read a third time,2023-10-04,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2023-05-10,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-09,[],MI,2023-2024 +read a third time,2024-03-05,['reading-3'],MI,2023-2024 +substitute (H-2) adopted,2023-06-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-07,[],MI,2023-2024 +placed on third reading,2023-10-24,[],MI,2023-2024 +placed on third reading,2024-03-13,[],MI,2023-2024 +placed on immediate passage,2023-04-13,[],MI,2023-2024 +read a third time,2023-05-02,['reading-3'],MI,2023-2024 +substitute (H-2) adopted,2023-03-22,[],MI,2023-2024 +read a third time,2023-05-03,['reading-3'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-23,[],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 264 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +placed on third reading,2023-03-16,[],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +read a third time,2023-11-02,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2023-05-10,[],MI,2023-2024 +received on 11/02/2023,2023-11-02,['introduction'],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +substitute (H-2) adopted,2023-09-13,[],MI,2023-2024 +placed on third reading,2023-06-28,[],MI,2023-2024 +received on 06/12/2024,2024-06-12,['introduction'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-03-08,[],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +received on 05/10/2023,2023-05-10,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 262 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +placed on third reading,2023-04-25,[],MI,2023-2024 +PASSED ROLL CALL # 264 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-11,['passage'],MI,2023-2024 +read a third time,2024-05-22,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 104 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-03-22,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-08,[],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +REFERRED TO SECRETARY FOR RECORD,2024-05-22,[],MI,2023-2024 +read a third time,2024-02-20,['reading-3'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +substitute (H-2) adopted,2024-06-26,[],MI,2023-2024 +SUBSTITUTE (S-2) AS AMENDED CONCURRED IN,2024-05-07,[],MI,2023-2024 +substitute (H-4) adopted,2024-03-19,[],MI,2023-2024 +placed on third reading,2023-10-24,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-20,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-08,[],MI,2023-2024 +read a third time,2024-04-24,['reading-3'],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +placed on immediate passage,2023-06-27,[],MI,2023-2024 +read a third time,2023-10-19,['reading-3'],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-20,[],MI,2023-2024 +placed on third reading,2023-05-16,[],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +placed on third reading,2023-10-19,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-26,[],MI,2023-2024 +read a first time,2023-09-27,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 254 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +placed on third reading,2023-10-24,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-08,[],MI,2023-2024 +received on 06/20/2024,2024-06-20,['introduction'],MI,2023-2024 +substitute (H-2) adopted,2023-10-12,[],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 321 YEAS 29 NAYS 9 EXCUSED 0 NOT VOTING 0,2023-05-24,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-09,['amendment-failure'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-19,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2023-05-09,[],MI,2023-2024 +substitute (H-2) adopted,2023-09-12,[],MI,2023-2024 +received on 06/05/2024,2024-06-05,['introduction'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-01-26,[],MI,2023-2024 +SUBSTITUTE (S-3) DEFEATED,2023-04-20,[],MI,2023-2024 +received on 06/05/2024,2024-06-05,['introduction'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-11,[],MI,2023-2024 +PASSED ROLL CALL # 68 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-05-10,[],MI,2023-2024 +placed on immediate passage,2023-03-16,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-09,[],MI,2023-2024 +placed on immediate passage,2023-06-28,[],MI,2023-2024 +PASSED ROLL CALL # 266 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-05-09,[],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 636 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2023-11-01,['passage'],MI,2023-2024 +read a first time,2024-01-30,['reading-1'],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-19,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-15,['amendment-failure'],MI,2023-2024 +RULES SUSPENDED,2023-05-10,[],MI,2023-2024 +received on 02/28/2024,2024-02-28,['introduction'],MI,2023-2024 +received on 06/20/2024,2024-06-20,['introduction'],MI,2023-2024 +read a third time,2024-05-14,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-22,[],MI,2023-2024 +placed on third reading,2023-09-19,[],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +read a third time,2024-06-13,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-12,[],MI,2023-2024 +placed on third reading,2023-09-19,[],MI,2023-2024 +received on 10/12/2023,2023-10-12,['introduction'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-04-27,['amendment-failure'],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +PASSED ROLL CALL # 523 YEAS 26 NAYS 11 EXCUSED 1 NOT VOTING 0,2023-10-12,['passage'],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +placed on third reading,2024-06-25,[],MI,2023-2024 +read a third time,2024-06-12,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 63 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-19,[],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +received on 04/19/2023,2023-04-19,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 571 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +received on 06/04/2024,2024-06-04,['introduction'],MI,2023-2024 +placed on third reading,2024-06-25,[],MI,2023-2024 +placed on immediate passage,2023-10-12,[],MI,2023-2024 +read a third time,2024-04-30,['reading-3'],MI,2023-2024 +read a third time,2024-06-12,['reading-3'],MI,2023-2024 +placed on immediate passage,2024-06-25,[],MI,2023-2024 +placed on third reading,2024-06-20,[],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-11-01,[],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 89 YEAS 20 NAYS 15 EXCUSED 3 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-26,[],MI,2023-2024 +received on 06/08/2023,2023-06-08,['introduction'],MI,2023-2024 +read a first time,2023-10-18,['reading-1'],MI,2023-2024 +substitute (H-1) adopted,2023-11-09,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-03-21,[],MI,2023-2024 +read a third time,2024-06-12,['reading-3'],MI,2023-2024 +placed on third reading,2023-04-25,[],MI,2023-2024 +read a first time,2024-03-12,['reading-1'],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +received on 10/12/2023,2023-10-12,['introduction'],MI,2023-2024 +received on 06/05/2024,2024-06-05,['introduction'],MI,2023-2024 +RULES SUSPENDED,2023-05-23,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +placed on immediate passage,2023-10-12,[],MI,2023-2024 +received on 10/18/2023,2023-10-18,['introduction'],MI,2023-2024 +substitute (H-2) adopted,2023-10-31,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-16,[],MI,2023-2024 +PASSED ROLL CALL # 339 YEAS 25 NAYS 13 EXCUSED 0 NOT VOTING 0,2023-06-08,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-05-10,[],MI,2023-2024 +read a first time,2023-05-03,['reading-1'],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +read a third time,2023-09-27,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-16,[],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +read a third time,2023-09-13,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-05-24,[],MI,2023-2024 +REFERRED TO SECRETARY FOR RECORD,2024-01-11,[],MI,2023-2024 +read a third time,2023-09-27,['reading-3'],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +read a third time,2024-04-24,['reading-3'],MI,2023-2024 +read a third time,2023-06-07,['reading-3'],MI,2023-2024 +substitute (H-4) adopted,2023-01-26,[],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +read a first time,2023-06-07,['reading-1'],MI,2023-2024 +substitute (H-2) adopted,2023-06-21,[],MI,2023-2024 +placed on immediate passage,2024-06-25,[],MI,2023-2024 +placed on third reading,2024-05-21,[],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +substitute (H-2) adopted,2023-11-01,[],MI,2023-2024 +RULES SUSPENDED,2023-05-09,[],MI,2023-2024 +read a third time,2023-06-07,['reading-3'],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-16,[],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +substitute (H-2) adopted,2023-10-12,[],MI,2023-2024 +PASSED ROLL CALL # 703 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-06-18,['amendment-failure'],MI,2023-2024 +placed on immediate passage,2023-09-19,[],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +placed on third reading,2024-06-13,[],MI,2023-2024 +RULES SUSPENDED,2023-01-26,[],MI,2023-2024 +placed on third reading,2023-10-04,[],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a third time,2023-10-19,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-08,[],MI,2023-2024 +read a third time,2024-06-13,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 471 YEAS 24 NAYS 14 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +placed on third reading,2023-10-18,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-04-20,[],MI,2023-2024 +read a third time,2024-02-28,['reading-3'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-02-08,['amendment-failure'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +substitute (H-2) adopted,2024-06-25,[],MI,2023-2024 +read a first time,2023-10-18,['reading-1'],MI,2023-2024 +placed on third reading,2023-03-22,[],MI,2023-2024 +referred to Committee on Elections,2023-10-18,['referral-committee'],MI,2023-2024 +substitute (H-4) adopted,2023-11-08,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-26,[],MI,2023-2024 +read a third time,2024-03-13,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-09-19,[],MI,2023-2024 +placed on third reading,2023-10-19,[],MI,2023-2024 +substitute (H-2) adopted,2023-10-25,[],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 237 YEAS 29 NAYS 9 EXCUSED 0 NOT VOTING 0,2024-06-05,['passage'],MI,2023-2024 +placed on third reading,2023-10-03,[],MI,2023-2024 +PASSED ROLL CALL # 407 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 86 YEAS 20 NAYS 15 EXCUSED 3 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +PASSED ROLL CALL # 408 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +read a third time,2023-09-13,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 109 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-05-02,['passage'],MI,2023-2024 +received on 05/10/2023,2023-05-10,['introduction'],MI,2023-2024 +read a third time,2024-03-05,['reading-3'],MI,2023-2024 +substitute (H-2) adopted,2023-10-25,[],MI,2023-2024 +PASSED ROLL CALL # 134 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-09,['passage'],MI,2023-2024 +PASSED ROLL CALL # 374 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-22,['passage'],MI,2023-2024 +read a first time,2023-09-27,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 503 YEAS 21 NAYS 16 EXCUSED 1 NOT VOTING 0,2023-10-05,['passage'],MI,2023-2024 +received on 06/05/2024,2024-06-05,['introduction'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-02,[],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +received on 06/05/2024,2024-06-05,['introduction'],MI,2023-2024 +received on 06/18/2024,2024-06-18,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 635 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2023-11-01,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-22,[],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +placed on immediate passage,2023-04-20,[],MI,2023-2024 +placed on third reading,2023-03-16,[],MI,2023-2024 +placed on third reading,2024-05-22,[],MI,2023-2024 +substitute (H-3) adopted,2023-10-12,[],MI,2023-2024 +PASSED ROLL CALL # 644 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-02,['passage'],MI,2023-2024 +PASSED ROLL CALL # 112 YEAS 25 NAYS 13 EXCUSED 0 NOT VOTING 0,2023-03-23,['passage'],MI,2023-2024 +read a third time,2023-06-08,['reading-3'],MI,2023-2024 +substitute (H-4) adopted,2024-06-26,[],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +read a third time,2024-06-11,['reading-3'],MI,2023-2024 +placed on third reading,2024-02-29,[],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +placed on immediate passage,2023-03-21,[],MI,2023-2024 +substitute (H-3) adopted,2023-06-28,[],MI,2023-2024 +placed on third reading,2024-03-13,[],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-05-09,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-16,[],MI,2023-2024 +substitute (H-2) adopted,2023-06-28,[],MI,2023-2024 +placed on third reading,2024-04-18,[],MI,2023-2024 +placed on third reading,2024-06-25,[],MI,2023-2024 +placed on third reading,2023-06-14,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-03-22,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-09,['amendment-failure'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-19,[],MI,2023-2024 +read a third time,2023-10-12,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2023-05-10,[],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +PASSED ROLL CALL # 518 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2023-10-11,['passage'],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-14,['amendment-failure'],MI,2023-2024 +placed on third reading,2024-04-18,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +read a third time,2023-10-25,['reading-3'],MI,2023-2024 +received on 10/12/2023,2023-10-12,['introduction'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +read a third time,2023-09-26,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-16,[],MI,2023-2024 +PASSED ROLL CALL # 317 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-08,[],MI,2023-2024 +received on 02/14/2024,2024-02-14,['introduction'],MI,2023-2024 +placed on third reading,2023-10-05,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +SUBSTITUTE (S-3) ADOPTED,2024-03-12,[],MI,2023-2024 +read a third time,2024-04-30,['reading-3'],MI,2023-2024 +placed on third reading,2023-10-19,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-03-16,[],MI,2023-2024 +substitute (H-2) adopted,2023-10-25,[],MI,2023-2024 +substitute (H-2) adopted,2023-03-22,[],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +substitute (H-1) not adopted,2023-11-02,[],MI,2023-2024 +PASSED BY 3/4 VOTE ROLL CALL # 347 YEAS 29 NAYS 9 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +placed on immediate passage,2023-09-20,[],MI,2023-2024 +placed on third reading,2023-09-19,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-22,[],MI,2023-2024 +placed on third reading,2024-06-04,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-07,[],MI,2023-2024 +substitute (H-2) adopted,2023-06-28,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-03-07,['amendment-failure'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-26,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-14,[],MI,2023-2024 +read a third time,2024-03-06,['reading-3'],MI,2023-2024 +placed on third reading,2023-09-06,[],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +read a third time,2023-06-07,['reading-3'],MI,2023-2024 +received on 06/12/2024,2024-06-12,['introduction'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-28,[],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +substitute (H-2) adopted,2024-05-08,[],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +read a third time,2024-02-20,['reading-3'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +placed on immediate passage,2023-05-11,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-11,[],MI,2023-2024 +read a third time,2023-09-26,['reading-3'],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +substitute (H-2) adopted,2023-11-09,[],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +substitute (H-1) adopted,2023-10-31,[],MI,2023-2024 +adopted by Senate - referred to the Clerk for record,2023-11-09,['passage'],MI,2023-2024 +read a first time,2024-01-30,['reading-1'],MI,2023-2024 +placed on third reading,2024-06-13,[],MI,2023-2024 +substitute (H-2) adopted,2024-03-13,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-28,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-28,[],MI,2023-2024 +received on 10/18/2023,2023-10-18,['introduction'],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-06-26,['amendment-failure'],MI,2023-2024 +PASSED ROLL CALL # 80 YEAS 20 NAYS 15 EXCUSED 3 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +placed on third reading,2024-06-13,[],MI,2023-2024 +read a first time,2023-10-25,['reading-1'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +placed on third reading,2023-09-26,[],MI,2023-2024 +received on 02/27/2024,2024-02-27,['introduction'],MI,2023-2024 +placed on third reading,2023-04-13,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-22,[],MI,2023-2024 +received on 03/09/2023,2023-03-09,['introduction'],MI,2023-2024 +placed on third reading,2023-03-02,[],MI,2023-2024 +placed on immediate passage,2023-03-08,[],MI,2023-2024 +placed on third reading,2023-10-11,[],MI,2023-2024 +received on 03/15/2023,2023-03-15,['introduction'],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +placed on third reading,2023-03-16,[],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +received on 04/30/2024,2024-04-30,['introduction'],MI,2023-2024 +placed on third reading,2023-05-23,[],MI,2023-2024 +referred to Committee on Appropriations,2023-09-27,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 376 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-22,['passage'],MI,2023-2024 +PASSED ROLL CALL # 343 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +placed on immediate passage,2023-10-12,[],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +read a third time,2023-10-17,['reading-3'],MI,2023-2024 +substitute (H-3) adopted,2024-03-12,[],MI,2023-2024 +placed on third reading,2023-10-19,[],MI,2023-2024 +received on 02/27/2024,2024-02-27,['introduction'],MI,2023-2024 +read a third time,2023-10-19,['reading-3'],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +received on 11/08/2023,2023-11-09,['introduction'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +RULES SUSPENDED,2023-05-10,[],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +referred to Committee on Elections,2023-10-18,['referral-committee'],MI,2023-2024 +received on 09/26/2023,2023-09-26,['introduction'],MI,2023-2024 +read a third time,2024-02-07,['reading-3'],MI,2023-2024 +received on 03/22/2023,2023-03-22,['introduction'],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +PASSED ROLL CALL # 130 YEAS 30 NAYS 7 EXCUSED 1 NOT VOTING 0,2023-04-20,['passage'],MI,2023-2024 +received on 03/14/2024,2024-03-14,['introduction'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-03-08,[],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2023-05-09,[],MI,2023-2024 +received on 01/25/2024,2024-01-30,['introduction'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-28,[],MI,2023-2024 +placed on third reading,2024-02-28,[],MI,2023-2024 +read a third time,2023-05-24,['reading-3'],MI,2023-2024 +substitute (H-2) adopted,2023-10-12,[],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +substitute (H-3) adopted,2023-10-12,[],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +placed on third reading,2024-03-13,[],MI,2023-2024 +read a third time,2023-11-02,['reading-3'],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-01-18,[],MI,2023-2024 +RULES SUSPENDED,2023-05-10,[],MI,2023-2024 +substitute (H-1) adopted and amended,2023-10-31,[],MI,2023-2024 +PASSED ROLL CALL # 328 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +placed on immediate passage,2023-03-02,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-08,[],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +substitute (H-2) adopted,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-09-27,[],MI,2023-2024 +adopted,2023-01-26,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +RULES SUSPENDED,2024-05-02,[],MI,2023-2024 +placed on third reading,2024-03-13,[],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +received on 06/20/2024,2024-06-20,['introduction'],MI,2023-2024 +RULES SUSPENDED,2023-04-19,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +PASSED ROLL CALL # 78 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 2,2024-03-19,['passage'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-06-14,['amendment-failure'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2024-05-07,[],MI,2023-2024 +placed on third reading,2023-05-11,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +read a second time,2023-05-10,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 265 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +placed on immediate passage,2023-03-08,[],MI,2023-2024 +received on 02/14/2024,2024-02-14,['introduction'],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +read a first time,2023-10-04,['reading-1'],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-05-11,['amendment-passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-11,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-08,[],MI,2023-2024 +placed on third reading,2023-06-27,[],MI,2023-2024 +received on 06/20/2024,2024-06-20,['introduction'],MI,2023-2024 +placed on third reading,2023-03-16,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-05-09,[],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +received on 01/25/2024,2024-01-30,['introduction'],MI,2023-2024 +substitute (H-2) adopted,2024-05-08,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 32 YEAS 23 NAYS 15 EXCUSED 0 NOT VOTING 0,2023-03-01,['passage'],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +received on 10/26/2023,2023-10-31,['introduction'],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +PASSED ROLL CALL # 258 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +substitute (H-1) adopted,2023-03-22,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-06-22,[],MI,2023-2024 +read a third time,2024-04-23,['reading-3'],MI,2023-2024 +placed on third reading,2023-03-16,[],MI,2023-2024 +AMENDMENT(S) WITHDRAWN,2023-03-15,[],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 261 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +received on 05/04/2023,2023-05-04,['introduction'],MI,2023-2024 +placed on third reading,2023-06-27,[],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +placed on immediate passage,2023-11-01,[],MI,2023-2024 +placed on immediate passage,2024-06-25,[],MI,2023-2024 +placed on third reading,2023-10-19,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-22,[],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +read a first time,2023-11-02,['reading-1'],MI,2023-2024 +read a third time,2023-06-20,['reading-3'],MI,2023-2024 +placed on third reading,2023-10-24,[],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +substitute (H-2) adopted,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +received on 04/10/2024,2024-04-10,['introduction'],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +read a second time,2023-10-24,['reading-2'],MI,2023-2024 +read a first time,2023-09-27,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 260 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +read a third time,2023-05-24,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-26,[],MI,2023-2024 +placed on third reading,2024-06-20,[],MI,2023-2024 +placed on third reading,2024-05-21,[],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +substitute (H-1) adopted,2023-05-11,[],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +placed on immediate passage,2023-10-12,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +read a third time,2023-10-17,['reading-3'],MI,2023-2024 +substitute (H-1) adopted,2023-06-21,[],MI,2023-2024 +placed on immediate passage,2023-06-27,[],MI,2023-2024 +PASSED ROLL CALL # 52 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-03-09,['passage'],MI,2023-2024 +received on 02/7/2024,2024-02-13,['introduction'],MI,2023-2024 +read a third time,2023-06-20,['reading-3'],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +placed on third reading,2024-05-21,[],MI,2023-2024 +placed on immediate passage,2023-10-12,[],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +read a third time,2023-05-24,['reading-3'],MI,2023-2024 +substitute (H-1) adopted and amended,2024-05-08,[],MI,2023-2024 +placed on third reading,2023-06-27,[],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +substitute (H-4) adopted,2023-10-18,[],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-01-18,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-06-27,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-02-14,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +PASSED ROLL CALL # 365 YEAS 30 NAYS 8 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +read a first time,2024-01-30,['reading-1'],MI,2023-2024 +placed on immediate passage,2023-06-13,[],MI,2023-2024 +read a first time,2023-10-18,['reading-1'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +HOUSE CONCURRENCE RECEIVED,2023-10-10,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +received on 05/04/2023,2023-05-04,['introduction'],MI,2023-2024 +read a third time,2023-11-02,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 51 YEAS 25 NAYS 13 EXCUSED 0 NOT VOTING 0,2023-03-09,['passage'],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +placed on third reading,2024-02-28,[],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-08,[],MI,2023-2024 +placed on third reading,2023-05-11,[],MI,2023-2024 +PASSED ROLL CALL # 295 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-17,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +substitute (H-2) adopted,2023-10-25,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-26,[],MI,2023-2024 +read a third time,2024-06-13,['reading-3'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +read a third time,2024-06-12,['reading-3'],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +read a third time,2024-06-04,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-16,[],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +substitute (H-2) adopted,2023-10-12,[],MI,2023-2024 +placed on third reading,2023-10-24,[],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-17,[],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +placed on third reading,2023-10-19,[],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +received on 02/29/2024,2024-03-05,['introduction'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-19,[],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +received on 03/20/2024,2024-03-20,['introduction'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-07,[],MI,2023-2024 +placed on third reading,2024-03-13,[],MI,2023-2024 +received on 10/18/2023,2023-10-18,['introduction'],MI,2023-2024 +read a third time,2023-09-13,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 558 YEAS 23 NAYS 15 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +read a third time,2024-06-12,['reading-3'],MI,2023-2024 +read a first time,2024-06-04,['reading-1'],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +read a third time,2023-10-25,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 375 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-22,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-22,[],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +placed on immediate passage,2023-03-08,[],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +read a third time,2023-09-27,['reading-3'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-08,[],MI,2023-2024 +PASSED ROLL CALL # 319 YEAS 24 NAYS 14 EXCUSED 0 NOT VOTING 0,2023-05-24,['passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-27,['referral-committee'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +received on 11/02/2023,2023-11-02,['introduction'],MI,2023-2024 +received on 02/27/2024,2024-02-27,['introduction'],MI,2023-2024 +read a third time,2023-11-02,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +placed on immediate passage,2024-06-25,[],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +placed on third reading,2023-05-23,[],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-10-12,['amendment-passage'],MI,2023-2024 +placed on third reading,2023-03-22,[],MI,2023-2024 +read a first time,2023-03-22,['reading-1'],MI,2023-2024 +read a first time,2023-10-18,['reading-1'],MI,2023-2024 +placed on third reading,2023-10-19,[],MI,2023-2024 +RULES SUSPENDED,2023-05-09,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +received on 02/28/2024,2024-02-28,['introduction'],MI,2023-2024 +received on 11/09/2023,2023-11-09,['introduction'],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +placed on third reading,2024-05-14,[],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +read a first time,2023-06-07,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 556 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +read a third time,2023-05-24,['reading-3'],MI,2023-2024 +placed on third reading,2023-10-18,[],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +read a third time,2024-04-30,['reading-3'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +substitute (H-4) adopted,2024-06-26,[],MI,2023-2024 +received on 03/12/2024,2024-03-12,['introduction'],MI,2023-2024 +received on 11/02/2023,2023-11-02,['introduction'],MI,2023-2024 +placed on immediate passage,2024-04-24,[],MI,2023-2024 +placed on third reading,2023-09-14,[],MI,2023-2024 +received on 03/13/2024,2024-03-13,['introduction'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-19,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +placed on third reading,2023-03-21,[],MI,2023-2024 +read a third time,2023-09-13,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +placed on third reading,2024-06-13,[],MI,2023-2024 +received on 06/08/2023,2023-06-08,['introduction'],MI,2023-2024 +received on 04/19/2023,2023-04-19,['introduction'],MI,2023-2024 +placed on third reading,2023-10-24,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +read a second time,2024-03-13,['reading-2'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-26,[],MI,2023-2024 +referred to Committee on Appropriations,2023-09-27,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 65 YEAS 35 NAYS 2 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +read a third time,2023-09-27,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4) AS AMENDED,2024-05-02,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +placed on third reading,2023-11-02,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-06-22,['amendment-failure'],MI,2023-2024 +placed on third reading,2023-06-07,[],MI,2023-2024 +substitute (H-2) adopted,2023-10-12,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-01,[],MI,2023-2024 +PASSED ROLL CALL # 647 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-02,['passage'],MI,2023-2024 +substitute (H-4) adopted,2023-10-31,[],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +POSTPONED FOR THE DAY,2024-05-09,[],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-19,[],MI,2023-2024 +substitute (H-2) adopted,2023-09-12,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +placed on third reading,2024-06-04,[],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +read a third time,2023-10-17,['reading-3'],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +placed on third reading,2024-05-02,[],MI,2023-2024 +PASSED ROLL CALL # 211 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2024-06-04,['passage'],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +PASSED ROLL CALL # 111 YEAS 25 NAYS 13 EXCUSED 0 NOT VOTING 0,2023-03-23,['passage'],MI,2023-2024 +placed on third reading,2023-04-13,[],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-24,[],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +received on 10/03/2023,2023-10-03,['introduction'],MI,2023-2024 +placed on third reading,2024-04-24,[],MI,2023-2024 +placed on third reading,2024-03-13,[],MI,2023-2024 +received on 03/12/2024,2024-03-12,['introduction'],MI,2023-2024 +read a second time,2024-05-22,['reading-2'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 575 YEAS 23 NAYS 14 EXCUSED 0 NOT VOTING 1,2023-10-19,['passage'],MI,2023-2024 +placed on third reading,2024-06-04,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-14,['amendment-failure'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 527 YEAS 32 NAYS 5 EXCUSED 1 NOT VOTING 0,2023-10-12,['passage'],MI,2023-2024 +read a third time,2024-02-06,['reading-3'],MI,2023-2024 +substitute (H-2) adopted,2024-06-18,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-22,[],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +read a third time,2024-02-07,['reading-3'],MI,2023-2024 +read a third time,2023-09-27,['reading-3'],MI,2023-2024 +placed on third reading,2023-10-03,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-26,[],MI,2023-2024 +placed on third reading,2024-04-24,[],MI,2023-2024 +read a first time,2024-03-12,['reading-1'],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +PASSED ROLL CALL # 110 YEAS 25 NAYS 13 EXCUSED 0 NOT VOTING 0,2023-03-23,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-26,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +received on 05/03/2023,2023-05-03,['introduction'],MI,2023-2024 +read a third time,2024-02-27,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-16,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-12,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-11,[],MI,2023-2024 +substitute (H-3) adopted,2024-06-26,[],MI,2023-2024 +placed on immediate passage,2023-10-11,[],MI,2023-2024 +received on 03/15/2023,2023-03-15,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 447 YEAS 24 NAYS 13 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +placed on third reading,2023-01-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-03-22,[],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-21,[],MI,2023-2024 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2024-05-07,[],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +placed on immediate passage,2023-03-23,[],MI,2023-2024 +placed on third reading,2023-06-22,[],MI,2023-2024 +read a third time,2024-06-11,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 108 YEAS 28 NAYS 10 EXCUSED 0 NOT VOTING 0,2023-03-23,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +received on 06/04/2024,2024-06-04,['introduction'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-10-18,[],MI,2023-2024 +PASSED ROLL CALL # 368 YEAS 32 NAYS 6 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +placed on third reading,2023-10-03,[],MI,2023-2024 +RULES SUSPENDED,2023-05-10,[],MI,2023-2024 +read a third time,2023-05-24,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +motion to refer to third reading reconsidered,2024-06-26,[],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +received on 10/12/2023,2023-10-12,['introduction'],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +received on 01/26/2023,2023-01-26,['introduction'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-09-17,[],MI,2023-2024 +PASSED ROLL CALL # 79 YEAS 20 NAYS 15 EXCUSED 3 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +substitute (H-2) adopted,2024-02-20,[],MI,2023-2024 +read a third time,2023-09-13,['reading-3'],MI,2023-2024 +received on 05/03/2023,2023-05-03,['introduction'],MI,2023-2024 +placed on third reading,2024-06-27,[],MI,2023-2024 +read a first time,2024-02-22,['reading-1'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +placed on immediate passage,2023-03-08,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-10-04,['amendment-failure'],MI,2023-2024 +read a third time,2023-10-19,['reading-3'],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 301 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +read a third time,2023-10-19,['reading-3'],MI,2023-2024 +placed on third reading,2023-06-14,[],MI,2023-2024 +placed on immediate passage,2024-06-25,[],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +RULES SUSPENDED,2023-05-10,[],MI,2023-2024 +substitute (H-2) adopted,2024-06-26,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-13,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +RULES SUSPENDED,2023-03-16,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-01,['amendment-failure'],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +read a first time,2023-09-07,['reading-1'],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 598 YEAS 32 NAYS 6 EXCUSED 0 NOT VOTING 0,2023-10-26,['passage'],MI,2023-2024 +substitute (H-1) adopted,2023-10-24,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-16,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-31,[],MI,2023-2024 +placed on third reading,2023-06-14,[],MI,2023-2024 +placed on third reading,2024-06-20,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +received on 03/19/2024,2024-03-19,['introduction'],MI,2023-2024 +placed on third reading,2023-03-08,[],MI,2023-2024 +read a first time,2023-10-04,['reading-1'],MI,2023-2024 +read a first time,2024-06-04,['reading-1'],MI,2023-2024 +placed on third reading,2024-05-21,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-11,[],MI,2023-2024 +placed on immediate passage,2024-06-27,[],MI,2023-2024 +received on 11/02/2023,2023-11-02,['introduction'],MI,2023-2024 +placed on immediate passage,2024-06-25,[],MI,2023-2024 +substitute (H-2) adopted,2023-06-20,[],MI,2023-2024 +placed on third reading,2024-03-13,[],MI,2023-2024 +read a third time,2023-10-10,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2024-05-02,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +read a first time,2023-06-07,['reading-1'],MI,2023-2024 +placed on third reading,2023-10-24,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-28,[],MI,2023-2024 +substitute (H-4) adopted,2023-05-18,[],MI,2023-2024 +PASSED ROLL CALL # 101 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-04-30,['passage'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +read a third time,2024-06-11,['reading-3'],MI,2023-2024 +read a third time,2023-06-07,['reading-3'],MI,2023-2024 +read a third time,2024-05-07,['reading-3'],MI,2023-2024 +read a third time,2024-05-07,['reading-3'],MI,2023-2024 +read a third time,2023-09-26,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-04-16,[],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +substitute (H-2) adopted and amended,2023-11-09,[],MI,2023-2024 +placed on immediate passage,2024-01-17,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-23,[],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +received on 04/16/2024,2024-04-17,['introduction'],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +PASSED ROLL CALL # 327 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2023-06-07,['passage'],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +PASSED ROLL CALL # 283 YEAS 34 NAYS 4 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +read a third time,2024-06-11,['reading-3'],MI,2023-2024 +placed on third reading,2024-06-13,[],MI,2023-2024 +placed on third reading,2023-04-25,[],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2024-05-02,[],MI,2023-2024 +passed; given immediate effect Roll Call # 156 Yeas 99 Nays 10 Excused 0 Not Voting 1,2024-06-11,['passage'],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +read a third time,2023-05-02,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 221 Yeas 92 Nays 17 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +placed on third reading,2024-02-20,[],MI,2023-2024 +passed; given immediate effect Roll Call # 281 Yeas 88 Nays 20 Excused 0 Not Voting 2,2023-09-13,['passage'],MI,2023-2024 +read a first time,2024-03-13,['reading-1'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-04,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 105 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-05-01,['passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-03-12,['referral-committee'],MI,2023-2024 +substitute (H-2) adopted,2023-10-25,[],MI,2023-2024 +placed on immediate passage,2023-05-11,[],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +placed on immediate passage,2023-09-20,[],MI,2023-2024 +read a third time,2023-10-04,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-04-13,[],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +read a third time,2024-05-01,['reading-3'],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-04,['referral-committee'],MI,2023-2024 +received on 03/09/2023,2023-03-09,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 379 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2023-06-22,['passage'],MI,2023-2024 +postponed temporarily,2023-06-14,[],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +read a third time,2023-10-19,['reading-3'],MI,2023-2024 +read a third time,2024-05-15,['reading-3'],MI,2023-2024 +read a third time,2023-10-25,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-11-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 190 Yeas 104 Nays 5 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +placed on immediate passage,2023-03-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 5 Yeas 100 Nays 6 Excused 0 Not Voting 2,2024-02-07,['passage'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +read a third time,2023-03-23,['reading-3'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-08,[],MI,2023-2024 +read a third time,2024-06-25,['reading-3'],MI,2023-2024 +read a third time,2024-01-17,['reading-3'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +REFERRED TO SECRETARY FOR RECORD,2023-10-10,[],MI,2023-2024 +received on 05/17/2023,2023-05-17,['introduction'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-10-26,['amendment-failure'],MI,2023-2024 +read a first time,2024-03-05,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 169 Yeas 77 Nays 32 Excused 0 Not Voting 1,2024-06-13,['passage'],MI,2023-2024 +placed on immediate passage,2023-10-31,[],MI,2023-2024 +read a third time,2023-03-08,['reading-3'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 315 YEAS 28 NAYS 10 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 233 Yeas 108 Nays 0 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 471 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-11-02,['passage'],MI,2023-2024 +placed on immediate passage,2023-09-20,[],MI,2023-2024 +placed on immediate passage,2023-11-02,[],MI,2023-2024 +received on 03/19/2024,2024-03-19,['introduction'],MI,2023-2024 +read a third time,2024-03-19,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 268 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 307 Yeas 71 Nays 38 Excused 0 Not Voting 1,2023-09-26,['passage'],MI,2023-2024 +received on 06/04/2024,2024-06-04,['introduction'],MI,2023-2024 +substitute (H-1) adopted,2024-02-06,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-14,['amendment-failure'],MI,2023-2024 +read a third time,2024-06-11,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 199 Yeas 102 Nays 7 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +read a third time,2023-03-08,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 241 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-12,['passage'],MI,2023-2024 +read a first time,2023-03-15,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 98 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2023-03-16,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 383 Yeas 63 Nays 46 Excused 0 Not Voting 1,2023-10-19,['passage'],MI,2023-2024 +PASSED ROLL CALL # 406 YEAS 30 NAYS 6 EXCUSED 2 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +received on 03/20/2024,2024-03-20,['introduction'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +read a first time,2023-11-02,['reading-1'],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +placed on third reading,2024-06-12,[],MI,2023-2024 +passed; given immediate effect Roll Call # 139 Yeas 100 Nays 6 Excused 0 Not Voting 4,2023-06-07,['passage'],MI,2023-2024 +re-referred to Committee on Economic Development and Small Business,2023-10-31,[],MI,2023-2024 +referred to Committee on Judiciary,2024-01-30,['referral-committee'],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +read a third time,2023-06-13,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +placed on immediate passage,2024-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 194 Yeas 101 Nays 8 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +placed on immediate passage,2024-06-20,[],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +substitute (H-2) adopted,2024-06-12,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-04,[],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-18,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 12 YEAS 30 NAYS 8 EXCUSED 0 NOT VOTING 0,2024-02-14,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 159 Yeas 60 Nays 48 Excused 0 Not Voting 2,2024-06-12,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-10-26,['amendment-failure'],MI,2023-2024 +PASSED ROLL CALL # 372 YEAS 35 NAYS 2 EXCUSED 1 NOT VOTING 0,2023-06-22,['passage'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +received on 05/24/2023,2023-05-24,['introduction'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +read a first time,2023-10-18,['reading-1'],MI,2023-2024 +read a first time,2023-11-02,['reading-1'],MI,2023-2024 +read a third time,2023-10-24,['reading-3'],MI,2023-2024 +received on 10/20/2023,2023-10-24,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 46 Yeas 104 Nays 5 Excused 0 Not Voting 1,2024-04-30,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-09,['amendment-failure'],MI,2023-2024 +received on 03/23/2023,2023-03-23,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 280 Yeas 87 Nays 21 Excused 0 Not Voting 2,2023-09-13,['passage'],MI,2023-2024 +PASSED ROLL CALL # 405 YEAS 25 NAYS 12 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +reported with recommendation without amendment,2023-10-11,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2024-05-02,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +placed on third reading,2023-09-12,[],MI,2023-2024 +passed; given immediate effect Roll Call # 152 Yeas 67 Nays 42 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +read a third time,2024-06-25,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 372 Yeas 92 Nays 18 Excused 0 Not Voting 0,2023-10-17,['passage'],MI,2023-2024 +received on 05/09/2024,2024-05-09,['introduction'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-03-22,['referral-committee'],MI,2023-2024 +received on 03/20/2024,2024-03-20,['introduction'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +placed on third reading,2024-06-18,[],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-06-26,['referral-committee'],MI,2023-2024 +received on 10/20/2023,2023-10-24,['introduction'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +read a third time,2023-10-04,['reading-3'],MI,2023-2024 +received on 11/02/2023,2023-11-02,['introduction'],MI,2023-2024 +read a first time,2023-05-03,['reading-1'],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 171 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-14,['passage'],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +PASSED ROLL CALL # 373 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-22,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-10,[],MI,2023-2024 +read a third time,2023-10-04,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2024-05-07,[],MI,2023-2024 +read a first time,2024-06-04,['reading-1'],MI,2023-2024 +returned to second reading,2024-06-26,[],MI,2023-2024 +read a third time,2023-05-24,['reading-3'],MI,2023-2024 +read a first time,2023-05-03,['reading-1'],MI,2023-2024 +substitute (H-1) adopted,2023-05-24,[],MI,2023-2024 +VOTE RECONSIDERED,2024-06-26,[],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-02-22,['referral-committee'],MI,2023-2024 +placed on immediate passage,2023-09-20,[],MI,2023-2024 +read a third time,2023-06-20,['reading-3'],MI,2023-2024 +referred to Committee on Elections,2023-09-07,['referral-committee'],MI,2023-2024 +read a first time,2024-04-17,['reading-1'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-08,['referral-committee'],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 603 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-26,['passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-06-07,['referral-committee'],MI,2023-2024 +placed on third reading,2023-05-18,[],MI,2023-2024 +PASSED ROLL CALL # 426 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 93 YEAS 31 NAYS 5 EXCUSED 2 NOT VOTING 0,2024-04-16,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 306 Yeas 100 Nays 9 Excused 0 Not Voting 1,2023-09-26,['passage'],MI,2023-2024 +received on 04/30/2024,2024-04-30,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 289 Yeas 88 Nays 22 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +substitute (H-5) adopted,2023-10-18,[],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 193 Yeas 101 Nays 8 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +read a third time,2023-11-02,['reading-3'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-18,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 6 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-01-18,['passage'],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +PASSED ROLL CALL # 41 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-03-08,['passage'],MI,2023-2024 +read a third time,2024-04-18,['reading-3'],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-16,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-10-24,['referral-committee'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +received on 06/07/2023,2023-06-07,['introduction'],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 230 Yeas 99 Nays 9 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +read a third time,2023-10-24,['reading-3'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-10-19,['amendment-failure'],MI,2023-2024 +passed; given immediate effect Roll Call # 187 Yeas 104 Nays 5 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +read a third time,2024-05-01,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 92 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-03-16,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-04,['referral-committee'],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +read a first time,2024-03-12,['reading-1'],MI,2023-2024 +received on 06/22/2023,2023-06-22,['introduction'],MI,2023-2024 +received on 10/20/2023,2023-10-24,['introduction'],MI,2023-2024 +placed on immediate passage,2023-11-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 316 Yeas 68 Nays 42 Excused 0 Not Voting 0,2023-09-27,['passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-04,['referral-committee'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-03-08,['amendment-failure'],MI,2023-2024 +PASSED BY 3/4 VOTE ROLL CALL # 348 YEAS 29 NAYS 9 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +PASSED ROLL CALL # 498 YEAS 20 NAYS 17 EXCUSED 0 NOT VOTING 1,2023-10-04,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-06-07,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-10-11,['committee-passage'],MI,2023-2024 +PASSED ROLL CALL # 525 YEAS 26 NAYS 11 EXCUSED 1 NOT VOTING 0,2023-10-12,['passage'],MI,2023-2024 +read a first time,2024-02-27,['reading-1'],MI,2023-2024 +placed on immediate passage,2023-03-22,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-09,[],MI,2023-2024 +read a first time,2024-02-28,['reading-1'],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 227 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +read a third time,2023-06-20,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 124 Yeas 107 Nays 0 Excused 0 Not Voting 3,2023-05-24,['passage'],MI,2023-2024 +read a first time,2023-11-02,['reading-1'],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 566 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +placed on immediate passage,2023-03-21,[],MI,2023-2024 +read a third time,2024-04-24,['reading-3'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +read a first time,2023-04-19,['reading-1'],MI,2023-2024 +substitute (H-1) adopted,2024-03-13,[],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 357 YEAS 23 NAYS 15 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +placed on immediate passage,2023-09-20,[],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-06-26,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 532 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +read a third time,2023-06-08,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 634 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2023-11-01,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 314 Yeas 106 Nays 4 Excused 0 Not Voting 0,2023-09-27,['passage'],MI,2023-2024 +PASSED ROLL CALL # 109 YEAS 25 NAYS 13 EXCUSED 0 NOT VOTING 0,2023-03-23,['passage'],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +SUBSTITUTE (S-5) ADOPTED,2023-10-19,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-06-14,['amendment-failure'],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +read a third time,2023-11-02,['reading-3'],MI,2023-2024 +read a first time,2023-10-03,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 198 Yeas 100 Nays 9 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +placed on immediate passage,2023-11-01,[],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +PASSED ROLL CALL # 367 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +PASSED ROLL CALL # 320 YEAS 24 NAYS 14 EXCUSED 0 NOT VOTING 0,2023-05-24,['passage'],MI,2023-2024 +read a third time,2024-05-02,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 539 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +received on 10/12/2023,2023-10-12,['introduction'],MI,2023-2024 +read a first time,2024-03-12,['reading-1'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-04,['referral-committee'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-06-26,['amendment-failure'],MI,2023-2024 +substitute (H-3) adopted,2024-05-22,[],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +received on 03/20/2024,2024-03-20,['introduction'],MI,2023-2024 +received on 06/28/2023,2023-06-28,['introduction'],MI,2023-2024 +placed on immediate passage,2023-09-20,[],MI,2023-2024 +read a third time,2024-05-02,['reading-3'],MI,2023-2024 +received on 03/23/2023,2023-03-23,['introduction'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-04,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 313 Yeas 106 Nays 4 Excused 0 Not Voting 0,2023-09-27,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 16 Yeas 105 Nays 0 Excused 0 Not Voting 3,2024-02-27,['passage'],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +read a third time,2024-06-12,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 290 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2023-05-11,['passage'],MI,2023-2024 +PASSED ROLL CALL # 314 YEAS 28 NAYS 10 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +read a third time,2023-10-11,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 165 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +substitute (H-4) adopted,2023-06-21,[],MI,2023-2024 +read a first time,2023-01-26,['reading-1'],MI,2023-2024 +placed on immediate passage,2023-01-26,[],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 151 Yeas 105 Nays 4 Excused 0 Not Voting 1,2024-06-11,['passage'],MI,2023-2024 +received on 03/23/2023,2023-03-23,['introduction'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +read a first time,2024-09-17,['reading-1'],MI,2023-2024 +read a third time,2023-10-19,['reading-3'],MI,2023-2024 +substitute (H-3) adopted,2023-10-24,[],MI,2023-2024 +PASSED ROLL CALL # 420 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +passed; given immediate effect Roll Call # 279 Yeas 89 Nays 19 Excused 0 Not Voting 2,2023-09-13,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-16,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-10,[],MI,2023-2024 +passed; given immediate effect Roll Call # 150 Yeas 105 Nays 4 Excused 0 Not Voting 1,2024-06-11,['passage'],MI,2023-2024 +PASSED ROLL CALL # 64 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 188 Yeas 104 Nays 5 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +read a third time,2024-06-25,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 386 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-10-19,['passage'],MI,2023-2024 +PASSED ROLL CALL # 332 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2024-09-17,['passage'],MI,2023-2024 +placed on third reading,2024-06-13,[],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +read a first time,2024-03-19,['reading-1'],MI,2023-2024 +placed on immediate passage,2023-09-20,[],MI,2023-2024 +PASSED ROLL CALL # 82 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-03-16,['passage'],MI,2023-2024 +received on 10/26/2023,2023-10-31,['introduction'],MI,2023-2024 +placed on immediate passage,2023-06-14,[],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 516 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2023-10-11,['passage'],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +placed on immediate passage,2023-03-08,[],MI,2023-2024 +read a third time,2024-05-22,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 343 Yeas 60 Nays 50 Excused 0 Not Voting 0,2023-10-10,['passage'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +read a third time,2023-10-25,['reading-3'],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 305 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2023-05-17,['passage'],MI,2023-2024 +read a third time,2024-04-18,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 153 Yeas 56 Nays 53 Excused 0 Not Voting 1,2024-06-11,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 54 Yeas 56 Nays 1 Excused 0 Not Voting 53,2024-05-07,['passage'],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +PASSED ROLL CALL # 315 YEAS 33 NAYS 5 EXCUSED 0 NOT VOTING 0,2023-05-23,['passage'],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +read a first time,2024-02-28,['reading-1'],MI,2023-2024 +read a first time,2024-06-20,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 278 Yeas 70 Nays 38 Excused 0 Not Voting 2,2023-09-13,['passage'],MI,2023-2024 +received on 10/11/2023,2023-10-11,['introduction'],MI,2023-2024 +read a third time,2023-11-02,['reading-3'],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 66 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +received on 03/22/2023,2023-03-22,['introduction'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 85 Yeas 80 Nays 27 Excused 0 Not Voting 3,2024-05-14,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-16,[],MI,2023-2024 +referred to Committee on Judiciary,2023-10-18,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2024-06-04,['reading-1'],MI,2023-2024 +placed on third reading,2024-05-21,[],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-06-25,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 105 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-03-22,['passage'],MI,2023-2024 +motion to refer to third reading reconsidered,2023-10-12,[],MI,2023-2024 +received on 05/11/2023,2023-05-16,['introduction'],MI,2023-2024 +placed on third reading,2023-02-01,[],MI,2023-2024 +read a first time,2024-06-05,['reading-1'],MI,2023-2024 +received on 10/26/2023,2023-10-31,['introduction'],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +placed on immediate passage,2023-09-19,[],MI,2023-2024 +placed on third reading,2024-03-19,[],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2024-05-07,[],MI,2023-2024 +placed on immediate passage,2023-10-31,[],MI,2023-2024 +read a third time,2023-10-04,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 160 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 12 Yeas 86 Nays 20 Excused 0 Not Voting 2,2024-02-20,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 141 Yeas 103 Nays 3 Excused 0 Not Voting 4,2023-06-07,['passage'],MI,2023-2024 +read a first time,2024-06-05,['reading-1'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-05-17,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +read a third time,2023-11-02,['reading-3'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +received on 03/20/2024,2024-03-20,['introduction'],MI,2023-2024 +received on 04/26/2023,2023-04-26,['introduction'],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-10-19,['amendment-failure'],MI,2023-2024 +placed on third reading,2023-05-11,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 175 Yeas 109 Nays 0 Excused 0 Not Voting 1,2024-06-13,['passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-04,['referral-committee'],MI,2023-2024 +read a first time,2023-10-18,['reading-1'],MI,2023-2024 +read a third time,2023-10-25,['reading-3'],MI,2023-2024 +read a third time,2023-09-19,['reading-3'],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-03-12,['referral-committee'],MI,2023-2024 +received on 05/24/2023,2023-05-24,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 323 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-27,['passage'],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +PASSED ROLL CALL # 259 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +read a first time,2024-06-11,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 119 Yeas 88 Nays 18 Excused 0 Not Voting 4,2023-05-23,['passage'],MI,2023-2024 +POSTPONED FOR THE DAY,2023-10-18,[],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +placed on third reading,2023-10-05,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +read a third time,2023-10-12,['reading-3'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +amended,2023-05-23,[],MI,2023-2024 +passed; given immediate effect Roll Call # 40 Yeas 96 Nays 11 Excused 0 Not Voting 1,2024-04-24,['passage'],MI,2023-2024 +placed on immediate passage,2023-09-20,[],MI,2023-2024 +placed on immediate passage,2023-04-25,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-16,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 321 Yeas 105 Nays 5 Excused 0 Not Voting 0,2023-09-27,['passage'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +received on 05/23/2023,2023-05-23,['introduction'],MI,2023-2024 +substitute (H-4) adopted,2023-09-06,[],MI,2023-2024 +passed; given immediate effect Roll Call # 537 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 448 Yeas 58 Nays 52 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +PASSED ROLL CALL # 93 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-03-16,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 167 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-03-14,['amendment-failure'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 389 Yeas 109 Nays 0 Excused 0 Not Voting 1,2023-10-19,['passage'],MI,2023-2024 +read a third time,2023-10-24,['reading-3'],MI,2023-2024 +substitute (H-1) adopted,2023-10-31,[],MI,2023-2024 +read a third time,2024-06-18,['reading-3'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-27,['referral-committee'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +read a third time,2023-05-17,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 222 Yeas 100 Nays 9 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-10,[],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 263 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +read a third time,2023-09-27,['reading-3'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 548 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +placed on immediate passage,2024-06-25,[],MI,2023-2024 +read a third time,2023-10-24,['reading-3'],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +read a third time,2023-04-19,['reading-3'],MI,2023-2024 +read a third time,2023-10-19,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 82 Yeas 69 Nays 38 Excused 0 Not Voting 3,2024-05-09,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-02,[],MI,2023-2024 +passed; given immediate effect Roll Call # 500 Yeas 80 Nays 29 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +received on 10/12/2023,2023-10-12,['introduction'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +PASSED ROLL CALL # 335 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-09-17,['passage'],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-06-26,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 167 Yeas 103 Nays 7 Excused 0 Not Voting 0,2024-06-12,['passage'],MI,2023-2024 +placed on immediate passage,2023-03-22,[],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +read a first time,2023-04-19,['reading-1'],MI,2023-2024 +received on 03/19/2024,2024-03-19,['introduction'],MI,2023-2024 +read a third time,2023-10-25,['reading-3'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 8 YEAS 27 NAYS 11 EXCUSED 0 NOT VOTING 0,2023-01-26,['passage'],MI,2023-2024 +read a first time,2023-04-19,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 702 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-03,['referral-committee'],MI,2023-2024 +placed on third reading,2023-04-13,[],MI,2023-2024 +read a third time,2023-10-12,['reading-3'],MI,2023-2024 +read a first time,2024-06-20,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 337 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-06-08,['passage'],MI,2023-2024 +PASSED ROLL CALL # 129 YEAS 22 NAYS 14 EXCUSED 2 NOT VOTING 0,2024-05-09,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 267 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 196 Yeas 100 Nays 9 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +read a third time,2023-06-20,['reading-3'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-10-19,['amendment-failure'],MI,2023-2024 +read a first time,2023-09-27,['reading-1'],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 157 Yeas 59 Nays 49 Excused 0 Not Voting 2,2024-06-12,['passage'],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +placed on immediate passage,2023-05-11,[],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +received on 03/19/2024,2024-03-19,['introduction'],MI,2023-2024 +read a third time,2023-06-20,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 569 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +PASSED ROLL CALL # 172 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-14,['passage'],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +received on 10/20/2023,2023-10-24,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 283 Yeas 92 Nays 16 Excused 0 Not Voting 2,2023-09-13,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-23,[],MI,2023-2024 +read a first time,2023-04-19,['reading-1'],MI,2023-2024 +read a third time,2024-05-22,['reading-3'],MI,2023-2024 +read a third time,2023-04-13,['reading-3'],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +SUBSTITUTE (S-1) ADOPTED,2023-06-28,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-09,[],MI,2023-2024 +passed; given immediate effect Roll Call # 315 Yeas 110 Nays 0 Excused 0 Not Voting 0,2023-09-27,['passage'],MI,2023-2024 +read a third time,2023-10-12,['reading-3'],MI,2023-2024 +referred to Committee on Elections,2023-11-02,['referral-committee'],MI,2023-2024 +placed on third reading,2023-09-12,[],MI,2023-2024 +VOTE RECONSIDERED,2023-04-20,[],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +placed on immediate passage,2024-06-25,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +placed on immediate passage,2024-06-20,[],MI,2023-2024 +passed; given immediate effect Roll Call # 546 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 165 Yeas 108 Nays 2 Excused 0 Not Voting 0,2024-06-12,['passage'],MI,2023-2024 +defeated Roll Call # 55 Yeas 55 Nays 6 Excused 0 Not Voting 49,2024-05-07,[],MI,2023-2024 +received on 06/08/2023,2023-06-08,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 45 Yeas 104 Nays 5 Excused 0 Not Voting 1,2024-04-30,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-04,['referral-committee'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-01,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-20,[],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +read a third time,2023-05-24,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 332 Yeas 75 Nays 33 Excused 0 Not Voting 2,2023-10-04,['passage'],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-10,[],MI,2023-2024 +received on 03/20/2024,2024-03-20,['introduction'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-09,['amendment-failure'],MI,2023-2024 +read a third time,2024-06-25,['reading-3'],MI,2023-2024 +read a third time,2023-03-16,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 19 Yeas 104 Nays 3 Excused 0 Not Voting 1,2024-03-05,['passage'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-10,[],MI,2023-2024 +read a third time,2023-10-25,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 207 Yeas 68 Nays 41 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-24,['referral-committee'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-09,['amendment-failure'],MI,2023-2024 +read a third time,2023-04-13,['reading-3'],MI,2023-2024 +read a first time,2023-10-10,['reading-1'],MI,2023-2024 +received on 06/20/2024,2024-06-20,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 75 Yeas 102 Nays 5 Excused 0 Not Voting 3,2023-05-02,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-09,[],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +placed on third reading,2023-03-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 79 Yeas 94 Nays 14 Excused 0 Not Voting 2,2023-05-03,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-10,[],MI,2023-2024 +read a first time,2024-06-05,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 91 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-03-16,['passage'],MI,2023-2024 +PASSED ROLL CALL # 317 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-05-23,['passage'],MI,2023-2024 +received on 11/01/2023,2023-11-01,['introduction'],MI,2023-2024 +referred to Committee on Tax Policy,2024-01-30,['referral-committee'],MI,2023-2024 +received on 06/20/2024,2024-06-20,['introduction'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-12,['referral-committee'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +placed on immediate passage,2023-06-20,[],MI,2023-2024 +referred to Committee on Judiciary,2023-10-25,['referral-committee'],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-10-19,['amendment-failure'],MI,2023-2024 +passed; given immediate effect Roll Call # 76 Yeas 95 Nays 13 Excused 0 Not Voting 2,2023-05-03,['passage'],MI,2023-2024 +received on 05/11/2023,2023-05-16,['introduction'],MI,2023-2024 +placed on immediate passage,2023-03-16,[],MI,2023-2024 +passed; given immediate effect Roll Call # 473 Yeas 109 Nays 0 Excused 0 Not Voting 1,2023-11-02,['passage'],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +placed on immediate passage,2023-09-20,[],MI,2023-2024 +read a third time,2024-02-07,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-10,[],MI,2023-2024 +PASSED ROLL CALL # 137 YEAS 27 NAYS 10 EXCUSED 1 NOT VOTING 0,2023-04-27,['passage'],MI,2023-2024 +read a first time,2023-11-02,['reading-1'],MI,2023-2024 +placed on immediate passage,2023-06-28,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 316 YEAS 28 NAYS 10 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +PASSED ROLL CALL # 515 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-11,['passage'],MI,2023-2024 +AMENDMENT(S) ADOPTED,2024-05-15,['amendment-passage'],MI,2023-2024 +placed on third reading,2023-09-13,[],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +read a first time,2024-06-05,['reading-1'],MI,2023-2024 +placed on immediate passage,2023-09-19,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-10,[],MI,2023-2024 +read a third time,2023-10-04,['reading-3'],MI,2023-2024 +read a first time,2024-06-12,['reading-1'],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-06-25,['referral-committee'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 206 Yeas 76 Nays 33 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-06-22,['amendment-failure'],MI,2023-2024 +read a first time,2024-04-10,['reading-1'],MI,2023-2024 +read a first time,2023-05-10,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 42 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-03-08,['passage'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +received on 06/20/2024,2024-06-20,['introduction'],MI,2023-2024 +read a third time,2023-05-02,['reading-3'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +motion to refer to third reading reconsidered,2024-05-08,[],MI,2023-2024 +read a third time,2024-05-22,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 535 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +received on 03/09/2023,2023-03-09,['introduction'],MI,2023-2024 +received on 03/01/2023,2023-03-01,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 424 Yeas 68 Nays 42 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +PASSED ROLL CALL # 5 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-01-18,['passage'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +placed on third reading,2023-03-22,[],MI,2023-2024 +PASSED ROLL CALL # 369 YEAS 24 NAYS 13 EXCUSED 1 NOT VOTING 0,2023-06-22,['passage'],MI,2023-2024 +read a third time,2023-10-12,['reading-3'],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +received on 06/28/2023,2023-06-28,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 126 Yeas 102 Nays 5 Excused 0 Not Voting 3,2023-05-24,['passage'],MI,2023-2024 +placed on immediate passage,2023-10-31,[],MI,2023-2024 +received on 06/20/2024,2024-06-20,['introduction'],MI,2023-2024 +placed on third reading,2023-01-26,[],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +PASSED ROLL CALL # 142 YEAS 24 NAYS 11 EXCUSED 3 NOT VOTING 0,2024-05-09,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 501 Yeas 79 Nays 30 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +placed on immediate passage,2024-05-21,[],MI,2023-2024 +read a third time,2023-03-02,['reading-3'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 140 Yeas 105 Nays 1 Excused 0 Not Voting 4,2023-06-07,['passage'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 166 Yeas 62 Nays 47 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +read a third time,2023-10-24,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-10-31,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-09,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-06-07,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 716 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-09,[],MI,2023-2024 +placed on immediate passage,2023-11-01,[],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 420 Yeas 81 Nays 29 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 138 Yeas 105 Nays 1 Excused 0 Not Voting 4,2023-06-07,['passage'],MI,2023-2024 +read a third time,2023-09-28,['reading-3'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +substitute (H-1) adopted,2023-06-20,[],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +amended,2023-06-14,[],MI,2023-2024 +read a first time,2023-10-31,['reading-1'],MI,2023-2024 +placed on immediate passage,2023-03-16,[],MI,2023-2024 +referred to Committee on Tax Policy,2024-01-30,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 373 Yeas 92 Nays 18 Excused 0 Not Voting 0,2023-10-17,['passage'],MI,2023-2024 +placed on immediate passage,2023-09-20,[],MI,2023-2024 +read a third time,2023-09-27,['reading-3'],MI,2023-2024 +SUBSTITUTE (S-7) ADOPTED,2024-06-26,[],MI,2023-2024 +received on 11/08/2023,2023-11-09,['introduction'],MI,2023-2024 +placed on immediate passage,2023-04-13,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 421 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +read a first time,2023-10-18,['reading-1'],MI,2023-2024 +received on 06/18/2024,2024-06-18,['introduction'],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 714 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-16,[],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +read a third time,2023-09-19,['reading-3'],MI,2023-2024 +returned to Senate,2023-01-26,[],MI,2023-2024 +received on 09/27/2023,2023-09-27,['introduction'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-14,['amendment-failure'],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +placed on immediate passage,2023-06-27,[],MI,2023-2024 +placed on third reading,2024-03-13,[],MI,2023-2024 +read a third time,2023-06-20,['reading-3'],MI,2023-2024 +read a third time,2023-10-12,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-01-26,[],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +received on 06/20/2024,2024-06-20,['introduction'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-06-26,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 384 Yeas 79 Nays 30 Excused 0 Not Voting 1,2023-10-19,['passage'],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 170 Yeas 109 Nays 0 Excused 0 Not Voting 1,2024-06-13,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-05-02,[],MI,2023-2024 +referred to Committee on Health Policy,2023-10-25,['referral-committee'],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +read a third time,2023-10-19,['reading-3'],MI,2023-2024 +read a first time,2024-02-14,['reading-1'],MI,2023-2024 +received on 03/20/2024,2024-03-20,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 132 YEAS 33 NAYS 4 EXCUSED 1 NOT VOTING 0,2023-04-20,['passage'],MI,2023-2024 +PASSED ROLL CALL # 20 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2023-02-08,['passage'],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +read a third time,2024-03-19,['reading-3'],MI,2023-2024 +referred to Committee on Education,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-12,['referral-committee'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2024-03-05,['referral-committee'],MI,2023-2024 +read a first time,2024-02-27,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 422 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +placed on third reading,2023-05-11,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-09-17,['amendment-failure'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +read a first time,2024-06-18,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 26 Yeas 94 Nays 12 Excused 0 Not Voting 2,2024-03-13,['passage'],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +read a third time,2023-10-12,['reading-3'],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-18,['referral-committee'],MI,2023-2024 +read a third time,2023-03-08,['reading-3'],MI,2023-2024 +read a third time,2023-10-24,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-11-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 125 Yeas 107 Nays 0 Excused 0 Not Voting 3,2023-05-24,['passage'],MI,2023-2024 +received on 06/28/2023,2023-06-28,['introduction'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +substitute (H-1) adopted,2024-02-28,[],MI,2023-2024 +passed; given immediate effect Roll Call # 197 Yeas 100 Nays 9 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +received on 06/05/2024,2024-06-05,['introduction'],MI,2023-2024 +read a first time,2024-06-20,['reading-1'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 181 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-20,['passage'],MI,2023-2024 +substitute (H-1) adopted,2023-06-28,[],MI,2023-2024 +read a third time,2023-10-04,['reading-3'],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +read a third time,2023-09-27,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-04-19,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-11,[],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-12,['referral-committee'],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +referred to Committee on Health Policy,2023-10-25,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 574 YEAS 23 NAYS 14 EXCUSED 0 NOT VOTING 1,2023-10-19,['passage'],MI,2023-2024 +read a third time,2024-05-22,['reading-3'],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 310 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +read a third time,2023-09-19,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-03-16,[],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 34 YEAS 28 NAYS 10 EXCUSED 0 NOT VOTING 0,2023-03-07,['passage'],MI,2023-2024 +read a first time,2023-05-10,['reading-1'],MI,2023-2024 +read a third time,2023-03-08,['reading-3'],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +received on 05/09/2024,2024-05-09,['introduction'],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 436 Yeas 104 Nays 6 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +received on 06/22/2023,2023-06-22,['introduction'],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +passed; given immediate effect Roll Call # 20 Yeas 94 Nays 13 Excused 0 Not Voting 1,2024-03-05,['passage'],MI,2023-2024 +received on 05/02/2024,2024-05-02,['introduction'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-04,['referral-committee'],MI,2023-2024 +placed on immediate passage,2023-03-02,[],MI,2023-2024 +received on 10/05/2023,2023-10-05,['introduction'],MI,2023-2024 +received on 06/22/2023,2023-06-22,['introduction'],MI,2023-2024 +read a third time,2023-04-20,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-02,[],MI,2023-2024 +read a first time,2024-06-05,['reading-1'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-11-02,['referral-committee'],MI,2023-2024 +read a third time,2023-05-24,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 282 Yeas 90 Nays 18 Excused 0 Not Voting 2,2023-09-13,['passage'],MI,2023-2024 +read a third time,2023-10-25,['reading-3'],MI,2023-2024 +read a first time,2024-06-05,['reading-1'],MI,2023-2024 +read a third time,2024-06-25,['reading-3'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-06-08,['referral-committee'],MI,2023-2024 +placed on immediate passage,2023-05-11,[],MI,2023-2024 +read a third time,2023-09-27,['reading-3'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +read a third time,2023-10-11,['reading-3'],MI,2023-2024 +received on 11/01/2023,2023-11-01,['introduction'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-27,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 374 Yeas 90 Nays 20 Excused 0 Not Voting 0,2023-10-17,['passage'],MI,2023-2024 +received on 06/22/2023,2023-06-22,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 37 Yeas 83 Nays 24 Excused 0 Not Voting 1,2024-04-23,['passage'],MI,2023-2024 +placed on immediate passage,2023-03-16,[],MI,2023-2024 +read a third time,2024-06-04,['reading-3'],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +placed on immediate passage,2023-03-16,[],MI,2023-2024 +passed; given immediate effect Roll Call # 391 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-10-19,['passage'],MI,2023-2024 +read a first time,2023-03-15,['reading-1'],MI,2023-2024 +read a first time,2024-02-27,['reading-1'],MI,2023-2024 +read a third time,2023-06-20,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 360 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +read a third time,2023-10-24,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 143 Yeas 93 Nays 14 Excused 0 Not Voting 3,2023-06-08,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 533 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +received on 03/23/2023,2023-03-23,['introduction'],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +placed on immediate passage,2023-09-20,[],MI,2023-2024 +read a first time,2024-04-30,['reading-1'],MI,2023-2024 +read a third time,2024-03-05,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-09-20,[],MI,2023-2024 +referred to Committee on Labor,2024-06-26,['referral-committee'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-16,[],MI,2023-2024 +placed on third reading,2023-06-28,[],MI,2023-2024 +received on 06/20/2024,2024-06-20,['introduction'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-06-22,['amendment-failure'],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +placed on immediate passage,2024-06-25,[],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 356 YEAS 23 NAYS 15 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 229 Yeas 97 Nays 11 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +read a first time,2023-11-08,['reading-1'],MI,2023-2024 +POSTPONED TEMPORARILY,2023-03-15,[],MI,2023-2024 +read a third time,2024-03-19,['reading-3'],MI,2023-2024 +placed on third reading,2024-03-12,[],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +passed; given immediate effect Roll Call # 185 Yeas 106 Nays 3 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-04,['referral-committee'],MI,2023-2024 +substitute (H-1) adopted,2023-11-01,[],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +read a third time,2023-03-21,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 418 Yeas 68 Nays 42 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 288 Yeas 90 Nays 20 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +placed on immediate passage,2023-09-20,[],MI,2023-2024 +PASSED ROLL CALL # 358 YEAS 23 NAYS 15 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +PASSED ROLL CALL # 53 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2024-03-12,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-10,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-10-26,['amendment-failure'],MI,2023-2024 +PASSED ROLL CALL # 96 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2023-03-16,['passage'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 421 Yeas 83 Nays 27 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +placed on third reading,2023-06-28,[],MI,2023-2024 +read a first time,2023-09-26,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 445 Yeas 59 Nays 51 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +read a third time,2024-04-30,['reading-3'],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +received on 11/02/2023,2023-11-02,['introduction'],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +PASSED ROLL CALL # 336 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-09-17,['passage'],MI,2023-2024 +substitute (H-1) adopted and amended,2023-05-10,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-10,[],MI,2023-2024 +received on 06/20/2024,2024-06-20,['introduction'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 124 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-09,['passage'],MI,2023-2024 +PASSED ROLL CALL # 265 YEAS 25 NAYS 13 EXCUSED 0 NOT VOTING 0,2023-05-11,['passage'],MI,2023-2024 +placed on immediate passage,2023-03-22,[],MI,2023-2024 +received on 10/11/2023,2023-10-11,['introduction'],MI,2023-2024 +placed on immediate passage,2023-03-16,[],MI,2023-2024 +substitute (H-3) adopted,2023-10-24,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +placed on immediate passage,2023-06-13,[],MI,2023-2024 +PASSED ROLL CALL # 40 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-03-08,['passage'],MI,2023-2024 +read a first time,2024-03-14,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 352 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-10-12,['passage'],MI,2023-2024 +PASSED ROLL CALL # 164 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-14,['passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-06-26,['referral-committee'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-16,[],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +postponed temporarily,2023-03-08,[],MI,2023-2024 +PASSED ROLL CALL # 366 YEAS 30 NAYS 8 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +read a third time,2024-04-30,['reading-3'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 39 Yeas 96 Nays 11 Excused 0 Not Voting 1,2024-04-24,['passage'],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +read a first time,2024-02-13,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 11 Yeas 88 Nays 18 Excused 0 Not Voting 2,2024-02-20,['passage'],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +passed; given immediate effect Roll Call # 205 Yeas 76 Nays 33 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +read a first time,2024-06-20,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 309 Yeas 95 Nays 14 Excused 0 Not Voting 1,2023-09-26,['passage'],MI,2023-2024 +VOTE RECONSIDERED,2024-06-26,[],MI,2023-2024 +placed on third reading,2024-06-25,[],MI,2023-2024 +read a third time,2024-06-25,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 81 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-03-16,['passage'],MI,2023-2024 +read a first time,2024-04-10,['reading-1'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 404 Yeas 109 Nays 0 Excused 0 Not Voting 1,2023-10-25,['passage'],MI,2023-2024 +read a first time,2023-05-04,['reading-1'],MI,2023-2024 +read a first time,2024-01-30,['reading-1'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-09,[],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +PASSED ROLL CALL # 97 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2023-03-16,['passage'],MI,2023-2024 +PASSED ROLL CALL # 364 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 47 Yeas 104 Nays 5 Excused 0 Not Voting 1,2024-04-30,['passage'],MI,2023-2024 +substitute (H-2) adopted,2023-11-02,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +read a third time,2023-05-11,['reading-3'],MI,2023-2024 +read a third time,2023-10-24,['reading-3'],MI,2023-2024 +read a first time,2024-02-14,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 334 YEAS 21 NAYS 15 EXCUSED 2 NOT VOTING 0,2024-09-17,['passage'],MI,2023-2024 +SUBSTITUTE (S-1) OFFERED,2023-06-28,[],MI,2023-2024 +read a third time,2024-06-11,['reading-3'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +PASSED ROLL CALL # 514 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-11,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 189 Yeas 104 Nays 5 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +placed on third reading,2023-03-22,[],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-04,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 4 Yeas 105 Nays 1 Excused 0 Not Voting 2,2024-02-07,['passage'],MI,2023-2024 +read a first time,2023-03-22,['reading-1'],MI,2023-2024 +read a third time,2023-06-20,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 127 Yeas 102 Nays 5 Excused 0 Not Voting 3,2023-05-24,['passage'],MI,2023-2024 +substitute (H-3) adopted and amended,2023-11-02,[],MI,2023-2024 +placed on immediate passage,2023-09-19,[],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +received on 04/20/2023,2023-04-20,['introduction'],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +read a third time,2023-09-20,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 371 YEAS 34 NAYS 3 EXCUSED 1 NOT VOTING 0,2023-06-22,['passage'],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +referred to Committee on Appropriations,2023-09-27,['referral-committee'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +placed on third reading,2023-06-28,[],MI,2023-2024 +read a first time,2024-01-30,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 476 Yeas 106 Nays 3 Excused 0 Not Voting 1,2023-11-02,['passage'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 358 Yeas 106 Nays 4 Excused 0 Not Voting 0,2023-10-12,['passage'],MI,2023-2024 +PASSED ROLL CALL # 513 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-11,['passage'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +placed on immediate passage,2023-09-20,[],MI,2023-2024 +AMENDMENT(S) WITHDRAWN,2023-06-14,[],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-10,[],MI,2023-2024 +passed; given immediate effect Roll Call # 417 Yeas 72 Nays 38 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 22 Yeas 94 Nays 13 Excused 0 Not Voting 1,2024-03-06,['passage'],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +read a third time,2023-09-12,['reading-3'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +read a third time,2024-03-19,['reading-3'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-03-14,['amendment-failure'],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +read a first time,2024-06-12,['reading-1'],MI,2023-2024 +received on 06/20/2024,2024-06-20,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 137 Yeas 100 Nays 6 Excused 0 Not Voting 4,2023-06-07,['passage'],MI,2023-2024 +placed on immediate passage,2023-03-22,[],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +read a third time,2024-03-13,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 261 Yeas 85 Nays 23 Excused 0 Not Voting 2,2023-06-28,['passage'],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +received on 03/12/2024,2024-03-12,['introduction'],MI,2023-2024 +motion to refer to third reading reconsidered,2023-03-22,[],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 6 Yeas 106 Nays 0 Excused 0 Not Voting 2,2024-02-07,['passage'],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +passed; given immediate effect Roll Call # 219 Yeas 68 Nays 41 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-18,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 123 Yeas 102 Nays 5 Excused 0 Not Voting 3,2023-05-24,['passage'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-10,['amendment-failure'],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +transmitted,2023-11-02,[],MI,2023-2024 +transmitted,2024-04-23,[],MI,2023-2024 +transmitted,2023-06-21,[],MI,2023-2024 +received on 06/22/2023,2023-06-22,['introduction'],MI,2023-2024 +reported with recommendation without amendment,2023-10-11,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 149 Yeas 95 Nays 14 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-06-14,['referral-committee'],MI,2023-2024 +received on 02/08/2023,2023-02-08,['introduction'],MI,2023-2024 +postponed temporarily,2023-06-28,[],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +SUBSTITUTE (S-2) ADOPTED,2024-06-26,[],MI,2023-2024 +read a first time,2023-10-11,['reading-1'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +read a third time,2024-06-25,['reading-3'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 240 Yeas 109 Nays 0 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +rule suspended,2023-11-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 241 Yeas 109 Nays 0 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 220 Yeas 106 Nays 4 Excused 0 Not Voting 0,2024-06-25,['passage'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +received on 03/07/2023,2023-03-07,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 22 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-03-08,['passage'],MI,2023-2024 +adverse roll call,2024-02-13,[],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-06-26,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-10-11,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-06-26,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-04-10,['referral-committee'],MI,2023-2024 +referred to Committee on Labor,2024-06-26,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-25,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-06-26,['referral-committee'],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +transmitted,2023-10-17,[],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-02-14,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 304 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 220 Yeas 93 Nays 16 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +read a third time,2023-09-20,['reading-3'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 287 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-19,['passage'],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-26,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-04-25,['committee-passage'],MI,2023-2024 +transmitted,2024-03-06,[],MI,2023-2024 +PASSED ROLL CALL # 363 YEAS 30 NAYS 8 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +referred to Committee on Tax Policy,2024-06-12,['referral-committee'],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 74 Yeas 68 Nays 39 Excused 0 Not Voting 3,2023-05-02,['passage'],MI,2023-2024 +placed on immediate passage,2023-10-31,[],MI,2023-2024 +passed; given immediate effect Roll Call # 195 Yeas 101 Nays 8 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-09,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-03-06,['committee-passage'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +received on 06/28/2023,2023-06-28,['introduction'],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-02-27,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-11-08,['referral-committee'],MI,2023-2024 +transmitted,2023-10-17,[],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-02-27,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2024-04-30,['referral-committee'],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +passed; given immediate effect Roll Call # 443 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-03-14,['referral-committee'],MI,2023-2024 +placed on second reading,2024-05-08,[],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-06-28,['amendment-passage'],MI,2023-2024 +read a third time,2023-10-17,['reading-3'],MI,2023-2024 +transmitted,2024-02-07,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-03-22,['referral-committee'],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 328 Yeas 104 Nays 4 Excused 0 Not Voting 2,2023-09-28,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 179 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-20,['passage'],MI,2023-2024 +postponed temporarily,2024-06-27,[],MI,2023-2024 +received on 11/09/2023,2023-11-09,['introduction'],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-06-20,['referral-committee'],MI,2023-2024 +read a third time,2023-05-11,['reading-3'],MI,2023-2024 +read a first time,2024-06-20,['reading-1'],MI,2023-2024 +received on 05/11/2023,2023-05-16,['introduction'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-06-20,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2024-01-30,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 215 Yeas 77 Nays 32 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +read a first time,2024-06-20,['reading-1'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-31,['referral-committee'],MI,2023-2024 +read a first time,2024-06-20,['reading-1'],MI,2023-2024 +substitute (H-3) adopted,2023-09-27,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-19,['committee-passage'],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-03-15,['amendment-passage'],MI,2023-2024 +read a first time,2024-06-20,['reading-1'],MI,2023-2024 +referred to Committee on Health Policy,2023-05-04,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 565 Yeas 104 Nays 3 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 401 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-10-24,['passage'],MI,2023-2024 +transmitted,2023-06-20,[],MI,2023-2024 +passed; given immediate effect Roll Call # 549 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +read a first time,2024-06-20,['reading-1'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-05-11,[],MI,2023-2024 +read a third time,2023-10-12,['reading-3'],MI,2023-2024 +referred to Committee on Agriculture,2024-06-18,['referral-committee'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 356 Yeas 92 Nays 18 Excused 0 Not Voting 0,2023-10-12,['passage'],MI,2023-2024 +motion to refer to third reading reconsidered,2024-05-08,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-26,['committee-passage'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +transmitted,2023-06-07,[],MI,2023-2024 +passed; given immediate effect Roll Call # 168 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 415 Yeas 108 Nays 2 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +read a first time,2024-06-18,['reading-1'],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +substitute (H-2) adopted,2024-06-20,[],MI,2023-2024 +transmitted,2023-10-19,[],MI,2023-2024 +received on 04/20/2023,2023-04-20,['introduction'],MI,2023-2024 +reported with recommendation without amendment,2024-02-13,['committee-passage'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 446 Yeas 63 Nays 47 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +substitute (H-3) adopted,2023-10-24,[],MI,2023-2024 +read a first time,2024-06-05,['reading-1'],MI,2023-2024 +reported with recommendation without amendment,2024-05-14,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 416 Yeas 73 Nays 37 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-10,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 353 Yeas 106 Nays 4 Excused 0 Not Voting 0,2023-10-12,['passage'],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +read a first time,2023-10-05,['reading-1'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2024-06-05,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2024-06-05,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2024-06-05,['referral-committee'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +read a third time,2023-03-16,['reading-3'],MI,2023-2024 +transmitted,2023-06-08,[],MI,2023-2024 +PASSED ROLL CALL # 370 YEAS 36 NAYS 0 EXCUSED 1 NOT VOTING 1,2023-06-22,['passage'],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-03-16,['amendment-failure'],MI,2023-2024 +transmitted,2023-06-27,[],MI,2023-2024 +defeated Roll Call # 28 Yeas 53 Nays 45 Excused 0 Not Voting 10,2024-03-19,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-03-16,[],MI,2023-2024 +passed; given immediate effect Roll Call # 43 Yeas 103 Nays 6 Excused 0 Not Voting 1,2024-04-30,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-10,['amendment-failure'],MI,2023-2024 +read a third time,2023-03-22,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 85 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-03-16,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 44 Yeas 103 Nays 6 Excused 0 Not Voting 1,2024-04-30,['passage'],MI,2023-2024 +transmitted,2023-09-26,[],MI,2023-2024 +placed on immediate passage,2024-06-25,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-03-16,[],MI,2023-2024 +substitute (H-3) adopted,2023-10-24,[],MI,2023-2024 +transmitted,2023-10-25,[],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +placed on third reading,2023-11-02,[],MI,2023-2024 +passed; given immediate effect Roll Call # 290 Yeas 99 Nays 11 Excused 0 Not Voting 0,2023-09-20,['passage'],MI,2023-2024 +placed on immediate passage,2023-06-28,[],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +HOUSE CONCURRENCE RECEIVED,2023-01-31,[],MI,2023-2024 +transmitted,2024-04-24,[],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +received on 06/22/2023,2023-06-22,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 390 Yeas 63 Nays 46 Excused 0 Not Voting 1,2023-10-19,['passage'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +substitute (H-2) adopted and amended,2024-06-11,[],MI,2023-2024 +read a third time,2023-10-17,['reading-3'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +reported with recommendation without amendment,2024-02-14,['committee-passage'],MI,2023-2024 +transmitted,2023-10-12,[],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +transmitted,2023-06-07,[],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a third time,2023-03-16,['reading-3'],MI,2023-2024 +substitute (H-3) adopted,2023-10-24,[],MI,2023-2024 +placed on immediate passage,2023-03-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 31 Yeas 55 Nays 41 Excused 0 Not Voting 12,2024-03-19,['passage'],MI,2023-2024 +transmitted,2023-05-24,[],MI,2023-2024 +passed; given immediate effect Roll Call # 16 Yeas 58 Nays 50 Excused 0 Not Voting 2,2023-03-02,['passage'],MI,2023-2024 +substitute (H-4) adopted,2024-03-19,[],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 244 Yeas 104 Nays 4 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +read a third time,2023-03-16,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 143 Yeas 56 Nays 47 Excused 0 Not Voting 7,2024-05-22,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 403 Yeas 109 Nays 0 Excused 0 Not Voting 1,2023-10-25,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 142 Yeas 56 Nays 47 Excused 0 Not Voting 7,2024-05-22,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 141 Yeas 56 Nays 47 Excused 0 Not Voting 7,2024-05-22,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-09,['amendment-failure'],MI,2023-2024 +passed; given immediate effect Roll Call # 285 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-19,['passage'],MI,2023-2024 +PASSED ROLL CALL # 339 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-09-17,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 336 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-10-04,['passage'],MI,2023-2024 +transmitted,2024-03-05,[],MI,2023-2024 +Rep. Joseph Aragona removed as cosponsor,2023-11-01,[],MI,2023-2024 +read a third time,2023-10-17,['reading-3'],MI,2023-2024 +read a third time,2023-09-20,['reading-3'],MI,2023-2024 +received on 09/17/2024,2024-09-17,['introduction'],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +received on 09/17/2024,2024-09-17,['introduction'],MI,2023-2024 +VOTE RECONSIDERED,2024-09-17,[],MI,2023-2024 +PASSED ROLL CALL # 74 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-03-14,['passage'],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-09,['amendment-failure'],MI,2023-2024 +read a first time,2023-11-02,['reading-1'],MI,2023-2024 +received on 05/09/2024,2024-05-09,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 355 Yeas 100 Nays 10 Excused 0 Not Voting 0,2023-10-12,['passage'],MI,2023-2024 +read a third time,2023-06-13,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 414 Yeas 102 Nays 7 Excused 0 Not Voting 1,2023-10-31,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 319 Yeas 93 Nays 17 Excused 0 Not Voting 0,2023-09-27,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 538 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +SUBSTITUTE (S-3) DEFEATED,2023-03-16,[],MI,2023-2024 +read a first time,2023-09-27,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 317 Yeas 74 Nays 36 Excused 0 Not Voting 0,2023-09-27,['passage'],MI,2023-2024 +received on 10/11/2023,2023-10-11,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 531 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +substitute (H-2) adopted,2023-09-12,[],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +read a third time,2024-02-29,['reading-3'],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +read a third time,2023-03-02,['reading-3'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-09-26,['referral-committee'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-09,['amendment-failure'],MI,2023-2024 +passed; given immediate effect Roll Call # 27 Yeas 98 Nays 5 Excused 0 Not Voting 5,2024-03-19,['passage'],MI,2023-2024 +PASSED ROLL CALL # 125 YEAS 24 NAYS 14 EXCUSED 0 NOT VOTING 0,2023-04-19,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 178 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-20,['passage'],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 262 Yeas 57 Nays 53 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 280 Yeas 81 Nays 27 Excused 0 Not Voting 2,2024-06-27,['passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +transmitted,2023-05-24,[],MI,2023-2024 +passed; given immediate effect Roll Call # 279 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 274 Yeas 58 Nays 52 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +placed on immediate passage,2023-11-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 439 Yeas 58 Nays 52 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +AMENDMENT(S) RULED NOT GERMANE,2023-01-26,[],MI,2023-2024 +transmitted,2024-03-13,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2024-05-02,[],MI,2023-2024 +passed; given immediate effect Roll Call # 146 Yeas 79 Nays 29 Excused 0 Not Voting 2,2024-06-04,['passage'],MI,2023-2024 +read a third time,2023-09-20,['reading-3'],MI,2023-2024 +received on 05/09/2024,2024-05-09,['introduction'],MI,2023-2024 +placed on immediate passage,2023-06-28,[],MI,2023-2024 +received on 05/14/2024,2024-05-14,['introduction'],MI,2023-2024 +received on 10/11/2023,2023-10-11,['introduction'],MI,2023-2024 +transmitted,2024-04-30,[],MI,2023-2024 +read a third time,2023-09-19,['reading-3'],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +amended,2023-06-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 19 Yeas 64 Nays 45 Excused 0 Not Voting 1,2023-03-08,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-10,['amendment-failure'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-02,['amendment-failure'],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +received on 03/08/2023,2023-03-08,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 36 Yeas 57 Nays 51 Excused 0 Not Voting 2,2023-03-21,['passage'],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +amended,2023-10-11,[],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +received on 11/09/2023,2023-11-09,['introduction'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-13,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 180 Yeas 109 Nays 0 Excused 0 Not Voting 1,2023-06-20,['passage'],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-02-14,['referral-committee'],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 102 Yeas 103 Nays 4 Excused 0 Not Voting 3,2023-05-11,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 21 Yeas 93 Nays 14 Excused 0 Not Voting 1,2024-03-05,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-10,['amendment-failure'],MI,2023-2024 +transmitted,2023-09-13,[],MI,2023-2024 +placed on immediate passage,2023-01-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 350 Yeas 110 Nays 0 Excused 0 Not Voting 0,2023-10-12,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 57 Yeas 56 Nays 50 Excused 0 Not Voting 4,2024-05-08,['passage'],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +received on 03/16/2023,2023-03-21,['introduction'],MI,2023-2024 +read a third time,2023-04-13,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 158 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-14,['passage'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +read a third time,2023-03-16,['reading-3'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-12,['referral-committee'],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +read a third time,2023-09-20,['reading-3'],MI,2023-2024 +read a third time,2023-03-16,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 61 Yeas 106 Nays 0 Excused 0 Not Voting 4,2023-04-20,['passage'],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 17 Yeas 100 Nays 6 Excused 0 Not Voting 2,2024-02-28,['passage'],MI,2023-2024 +read a first time,2023-11-08,['reading-1'],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +transmitted,2023-05-24,[],MI,2023-2024 +placed on third reading,2023-10-24,[],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +read a first time,2023-03-01,['reading-1'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +placed on third reading,2023-05-10,[],MI,2023-2024 +read a third time,2023-09-20,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 151 Yeas 79 Nays 30 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 217 Yeas 106 Nays 4 Excused 0 Not Voting 0,2024-06-25,['passage'],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +received on 06/28/2023,2023-06-28,['introduction'],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +transmitted,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 465 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +received on 10/20/2023,2023-10-24,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 629 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-26,['passage'],MI,2023-2024 +transmitted,2024-02-20,[],MI,2023-2024 +read a third time,2023-10-17,['reading-3'],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +title amended,2023-11-02,[],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 56 Yeas 56 Nays 50 Excused 0 Not Voting 4,2024-05-08,['passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-03-15,['referral-committee'],MI,2023-2024 +substitute (H-3) adopted,2023-06-20,[],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +received on 06/12/2024,2024-06-12,['introduction'],MI,2023-2024 +received on 03/23/2023,2023-03-23,['introduction'],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 25 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-03-08,['passage'],MI,2023-2024 +received on 02/14/2024,2024-02-14,['introduction'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-06-26,['referral-committee'],MI,2023-2024 +received on 06/27/2023,2023-06-28,['introduction'],MI,2023-2024 +read a first time,2023-11-02,['reading-1'],MI,2023-2024 +referred to Committee on Education,2024-04-17,['referral-committee'],MI,2023-2024 +received on 01/18/2023,2023-01-18,['introduction'],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +transmitted,2023-09-27,[],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-03-12,['referral-committee'],MI,2023-2024 +transmitted,2024-06-11,[],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +transmitted,2024-06-11,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-11-09,['referral-committee'],MI,2023-2024 +read a third time,2023-04-13,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 158 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +transmitted,2024-06-13,[],MI,2023-2024 +amended,2024-06-11,[],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +transmitted,2024-06-13,[],MI,2023-2024 +referred to Committee on Health Policy,2023-03-15,['referral-committee'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +amended,2023-06-14,[],MI,2023-2024 +read a third time,2024-06-13,['reading-3'],MI,2023-2024 +referred to Committee on Judiciary,2023-06-14,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 145 Yeas 80 Nays 27 Excused 0 Not Voting 3,2023-06-13,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 158 Yeas 56 Nays 53 Excused 0 Not Voting 1,2024-06-12,['passage'],MI,2023-2024 +received on 06/22/2023,2023-06-22,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 613 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-26,['passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-11-02,['referral-committee'],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2023-10-18,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 218 Yeas 106 Nays 4 Excused 0 Not Voting 0,2024-06-25,['passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +transmitted,2023-09-13,[],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 337 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-10-04,['passage'],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 333 Yeas 76 Nays 32 Excused 0 Not Voting 2,2023-10-04,['passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-06-04,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-05-03,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 302 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +read a third time,2023-09-20,['reading-3'],MI,2023-2024 +rule suspended,2024-06-26,[],MI,2023-2024 +placed on immediate passage,2023-05-18,[],MI,2023-2024 +received on 04/16/2024,2024-04-17,['introduction'],MI,2023-2024 +placed on third reading,2023-10-18,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-03-08,[],MI,2023-2024 +substitute (H-1) adopted,2024-04-18,[],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 475 Yeas 79 Nays 30 Excused 0 Not Voting 1,2023-11-02,['passage'],MI,2023-2024 +transmitted,2023-06-27,[],MI,2023-2024 +reported with recommendation without amendment,2024-06-12,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-05,['committee-passage'],MI,2023-2024 +PASSED ROLL CALL # 39 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-03-08,['passage'],MI,2023-2024 +received on 10/12/2023,2023-10-12,['introduction'],MI,2023-2024 +transmitted,2023-06-27,[],MI,2023-2024 +transmitted,2023-05-24,[],MI,2023-2024 +received on 10/20/2023,2023-10-24,['introduction'],MI,2023-2024 +read a third time,2023-03-21,['reading-3'],MI,2023-2024 +received on 11/01/2023,2023-11-01,['introduction'],MI,2023-2024 +read a third time,2023-09-20,['reading-3'],MI,2023-2024 +placed on third reading,2024-03-13,[],MI,2023-2024 +passed; given immediate effect Roll Call # 413 Yeas 57 Nays 53 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-10-03,['referral-committee'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 53 Yeas 97 Nays 7 Excused 0 Not Voting 6,2024-05-02,['passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-08,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 164 Yeas 108 Nays 2 Excused 0 Not Voting 0,2024-06-12,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 52 Yeas 91 Nays 13 Excused 0 Not Voting 6,2024-05-02,['passage'],MI,2023-2024 +received on 05/11/2023,2023-05-16,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 345 Yeas 88 Nays 20 Excused 0 Not Voting 2,2023-10-11,['passage'],MI,2023-2024 +read a third time,2023-01-26,['reading-3'],MI,2023-2024 +placed on third reading,2023-10-24,[],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +received on 06/28/2023,2023-06-28,['introduction'],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +transmitted,2023-06-21,[],MI,2023-2024 +passed; given immediate effect Roll Call # 223 Yeas 84 Nays 26 Excused 0 Not Voting 0,2024-06-25,['passage'],MI,2023-2024 +received on 03/19/2024,2024-03-19,['introduction'],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-03-16,[],MI,2023-2024 +read a first time,2023-10-31,['reading-1'],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +received on 10/11/2023,2023-10-11,['introduction'],MI,2023-2024 +reported with recommendation without amendment,2024-05-21,['committee-passage'],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 550 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +received on 05/23/2023,2023-05-23,['introduction'],MI,2023-2024 +transmitted,2024-06-11,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-02-13,['referral-committee'],MI,2023-2024 +transmitted,2023-09-13,[],MI,2023-2024 +received on 05/01/2024,2024-05-01,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 238 Yeas 109 Nays 0 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +read a third time,2023-05-11,['reading-3'],MI,2023-2024 +reported with recommendation without amendment,2024-06-12,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 191 Yeas 104 Nays 5 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +read a first time,2023-03-09,['reading-1'],MI,2023-2024 +transmitted,2023-06-21,[],MI,2023-2024 +passed; given immediate effect Roll Call # 88 Yeas 107 Nays 0 Excused 0 Not Voting 3,2024-05-15,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 221 Yeas 106 Nays 4 Excused 0 Not Voting 0,2024-06-25,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 1 Yeas 104 Nays 0 Excused 0 Not Voting 4,2024-01-17,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 262 Yeas 100 Nays 8 Excused 0 Not Voting 2,2023-06-28,['passage'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-03-05,['referral-committee'],MI,2023-2024 +transmitted,2023-06-27,[],MI,2023-2024 +read a first time,2024-03-19,['reading-1'],MI,2023-2024 +read a third time,2023-09-20,['reading-3'],MI,2023-2024 +transmitted,2023-09-26,[],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +transmitted,2023-11-02,[],MI,2023-2024 +passed; given immediate effect Roll Call # 24 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-03-08,['passage'],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 602 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-26,['passage'],MI,2023-2024 +read a third time,2023-11-02,['reading-3'],MI,2023-2024 +read a first time,2023-05-17,['reading-1'],MI,2023-2024 +referred to Committee on Education,2024-03-12,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 224 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +postponed temporarily,2023-03-23,[],MI,2023-2024 +passed; given immediate effect Roll Call # 434 Yeas 104 Nays 6 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +transmitted,2024-02-07,[],MI,2023-2024 +read a third time,2023-03-08,['reading-3'],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 408 Yeas 62 Nays 47 Excused 0 Not Voting 1,2023-10-25,['passage'],MI,2023-2024 +substitute (H-3) adopted,2023-10-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 225 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +received on 06/22/2023,2023-06-22,['introduction'],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 51 Yeas 89 Nays 16 Excused 0 Not Voting 5,2024-05-01,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 259 Yeas 100 Nays 8 Excused 0 Not Voting 2,2023-06-28,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 340 Yeas 69 Nays 39 Excused 0 Not Voting 2,2023-10-04,['passage'],MI,2023-2024 +read a third time,2023-09-20,['reading-3'],MI,2023-2024 +referred to Committee on Agriculture,2024-03-13,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 214 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +transmitted,2023-06-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 181 Yeas 89 Nays 20 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +transmitted,2024-05-07,[],MI,2023-2024 +passed; given immediate effect Roll Call # 184 Yeas 98 Nays 11 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +amended,2024-04-18,[],MI,2023-2024 +transmitted,2024-06-11,[],MI,2023-2024 +passed; given immediate effect Roll Call # 253 Yeas 107 Nays 3 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +amended,2023-06-14,[],MI,2023-2024 +received on 10/04/2023,2023-10-04,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 140 Yeas 56 Nays 47 Excused 0 Not Voting 7,2024-05-22,['passage'],MI,2023-2024 +transmitted,2023-10-10,[],MI,2023-2024 +read a third time,2023-03-08,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 405 Yeas 109 Nays 0 Excused 0 Not Voting 1,2023-10-25,['passage'],MI,2023-2024 +read a third time,2023-09-20,['reading-3'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-03-19,['referral-committee'],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +read a first time,2024-04-30,['reading-1'],MI,2023-2024 +transmitted,2023-10-19,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +transmitted,2023-09-13,[],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +received on 05/17/2023,2023-05-17,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 385 Yeas 86 Nays 23 Excused 0 Not Voting 1,2023-10-19,['passage'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +referred to Committee on Appropriations,2024-09-17,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 232 Yeas 106 Nays 2 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +referred to Committee on Elections,2023-01-26,['referral-committee'],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +substitute (H-3) adopted,2023-06-27,[],MI,2023-2024 +transmitted,2024-02-27,[],MI,2023-2024 +transmitted,2023-09-27,[],MI,2023-2024 +reported with recommendation without amendment,2024-03-06,['committee-passage'],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +read a third time,2023-09-20,['reading-3'],MI,2023-2024 +placed on third reading,2024-05-22,[],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +referred to Committee on Health Policy,2023-11-02,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 312 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +received on 05/24/2023,2023-05-24,['introduction'],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +adverse roll call,2023-11-02,[],MI,2023-2024 +PASSED ROLL CALL # 361 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +PASSED ROLL CALL # 570 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 38 Yeas 104 Nays 3 Excused 0 Not Voting 1,2024-04-24,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 144 Yeas 103 Nays 4 Excused 0 Not Voting 3,2023-06-08,['passage'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +referred to Committee on Education,2023-04-19,['referral-committee'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-06-08,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 536 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 177 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-20,['passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-02-28,['referral-committee'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-09,['amendment-failure'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-02-27,['referral-committee'],MI,2023-2024 +read a third time,2023-03-22,['reading-3'],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +transmitted,2023-10-19,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +read a first time,2023-06-07,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 192 Yeas 104 Nays 5 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 50 Yeas 88 Nays 17 Excused 0 Not Voting 5,2024-05-01,['passage'],MI,2023-2024 +transmitted,2023-06-21,[],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +substitute (H-3) adopted,2023-10-24,[],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-06-14,['referral-committee'],MI,2023-2024 +read a third time,2023-10-17,['reading-3'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 287 Yeas 60 Nays 50 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +transmitted,2023-09-27,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-31,['committee-passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-03-16,['amendment-failure'],MI,2023-2024 +passed; given immediate effect Roll Call # 182 Yeas 91 Nays 18 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 273 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 261 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +transmitted,2023-09-26,[],MI,2023-2024 +received on 06/28/2023,2023-06-28,['introduction'],MI,2023-2024 +reported with recommendation without amendment,2024-02-14,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-03,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 295 Yeas 110 Nays 0 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-27,['committee-passage'],MI,2023-2024 +substitute (H-2) adopted,2023-06-20,[],MI,2023-2024 +reported with recommendation without amendment,2023-09-26,['committee-passage'],MI,2023-2024 +amendment(s) reconsidered,2024-06-26,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-11,['amendment-failure'],MI,2023-2024 +received on 06/22/2023,2023-06-22,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 278 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 286 Yeas 60 Nays 50 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-03,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-03-20,['referral-committee'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 62 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +transmitted,2023-10-17,[],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a third time,2023-09-20,['reading-3'],MI,2023-2024 +read a third time,2023-10-17,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 156 Yeas 73 Nays 36 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-05-02,[],MI,2023-2024 +transmitted,2024-04-30,[],MI,2023-2024 +substitute (H-3) adopted,2023-10-24,[],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +"referred to Committee on Military, Veterans and Homeland Security",2024-01-18,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 147 Yeas 78 Nays 30 Excused 0 Not Voting 2,2024-06-04,['passage'],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-10-12,['referral-committee'],MI,2023-2024 +received on 06/28/2023,2023-06-28,['introduction'],MI,2023-2024 +received on 03/16/2023,2023-03-21,['introduction'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +read a first time,2024-06-04,['reading-1'],MI,2023-2024 +transmitted,2023-06-07,[],MI,2023-2024 +defeated Roll Call # 3 Yeas 54 Nays 49 Excused 0 Not Voting 5,2024-02-06,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-03-16,[],MI,2023-2024 +passed; given immediate effect Roll Call # 402 Yeas 109 Nays 0 Excused 0 Not Voting 1,2023-10-25,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 228 Yeas 103 Nays 6 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +read a third time,2024-02-21,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-05-02,[],MI,2023-2024 +SUBSTITUTE (S-3) DEFEATED,2023-03-16,[],MI,2023-2024 +passed; given immediate effect Roll Call # 128 Yeas 97 Nays 10 Excused 0 Not Voting 3,2023-05-24,['passage'],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-03-16,[],MI,2023-2024 +transmitted,2023-11-08,[],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-04,['referral-committee'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-09,['amendment-failure'],MI,2023-2024 +transmitted,2023-10-19,[],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-06-26,['referral-committee'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +referred to Committee on Elections,2023-11-02,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 145 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-14,['passage'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +received on 05/14/2024,2024-05-14,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 122 Yeas 70 Nays 37 Excused 0 Not Voting 3,2023-05-24,['passage'],MI,2023-2024 +PASSED ROLL CALL # 118 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-09,['passage'],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +received on 03/19/2024,2024-03-19,['introduction'],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2024-06-05,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 162 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 230 Yeas 87 Nays 22 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +POSTPONED TEMPORARILY,2023-06-22,[],MI,2023-2024 +PASSED ROLL CALL # 573 YEAS 23 NAYS 14 EXCUSED 0 NOT VOTING 1,2023-10-19,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-10,['amendment-failure'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +passed; given immediate effect Roll Call # 407 Yeas 63 Nays 46 Excused 0 Not Voting 1,2023-10-25,['passage'],MI,2023-2024 +transmitted,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 245 Yeas 104 Nays 4 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 442 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +transmitted,2024-02-20,[],MI,2023-2024 +passed; given immediate effect Roll Call # 406 Yeas 86 Nays 23 Excused 0 Not Voting 1,2023-10-25,['passage'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-10,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-11-02,['referral-committee'],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +transmitted,2023-11-02,[],MI,2023-2024 +read a third time,2023-06-20,['reading-3'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-10,['amendment-failure'],MI,2023-2024 +passed; given immediate effect Roll Call # 154 Yeas 73 Nays 36 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +transmitted,2023-06-07,[],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +transmitted,2023-05-03,[],MI,2023-2024 +notice given to discharge committee,2023-11-07,[],MI,2023-2024 +read a third time,2023-05-11,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-04-13,[],MI,2023-2024 +referred to Committee on Health Policy,2023-04-19,['referral-committee'],MI,2023-2024 +transmitted,2024-05-09,[],MI,2023-2024 +passed; given immediate effect Roll Call # 463 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +Rep. Joseph Aragona removed as cosponsor,2023-11-01,[],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +placed on immediate passage,2023-06-28,[],MI,2023-2024 +transmitted,2023-09-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 248 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-13,['committee-passage'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-03-16,['amendment-failure'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-04-10,['referral-committee'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +referred to Committee on Judiciary,2024-01-30,['referral-committee'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 209 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +read a third time,2023-04-25,['reading-3'],MI,2023-2024 +read a third time,2024-06-25,['reading-3'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +read a third time,2024-06-25,['reading-3'],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +referred to Committee on Judiciary,2024-06-04,['referral-committee'],MI,2023-2024 +transmitted,2024-05-14,[],MI,2023-2024 +read a third time,2023-09-19,['reading-3'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 412 Yeas 57 Nays 52 Excused 0 Not Voting 1,2023-10-31,['passage'],MI,2023-2024 +SUBSTITUTE (S-5) DEFEATED,2023-10-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 216 Yeas 106 Nays 4 Excused 0 Not Voting 0,2024-06-25,['passage'],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +received on 01/18/2023,2023-01-18,['introduction'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 427 Yeas 72 Nays 38 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +SUBSTITUTE (S-2) DEFEATED,2023-05-11,[],MI,2023-2024 +transmitted,2023-09-13,[],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2023-09-26,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 286 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-19,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 120 Yeas 90 Nays 16 Excused 0 Not Voting 4,2023-05-23,['passage'],MI,2023-2024 +referred to Committee on Labor,2024-06-26,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-12,['referral-committee'],MI,2023-2024 +SUBSTITUTE (S-2) DEFEATED,2023-05-10,[],MI,2023-2024 +passed; given immediate effect Roll Call # 59 Yeas 103 Nays 5 Excused 0 Not Voting 2,2023-04-19,['passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-27,['referral-committee'],MI,2023-2024 +received on 05/14/2024,2024-05-14,['introduction'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-08,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 409 Yeas 107 Nays 2 Excused 0 Not Voting 1,2023-10-25,['passage'],MI,2023-2024 +transmitted,2024-03-05,[],MI,2023-2024 +transmitted,2023-05-02,[],MI,2023-2024 +received on 05/23/2023,2023-05-23,['introduction'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a third time,2023-09-27,['reading-3'],MI,2023-2024 +transmitted,2023-05-03,[],MI,2023-2024 +read a first time,2023-03-22,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 226 Yeas 90 Nays 20 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-03-16,['amendment-failure'],MI,2023-2024 +passed; given immediate effect Roll Call # 116 Yeas 57 Nays 50 Excused 0 Not Voting 3,2023-05-17,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 393 Yeas 85 Nays 24 Excused 0 Not Voting 1,2023-10-24,['passage'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 32 Yeas 93 Nays 10 Excused 0 Not Voting 7,2023-03-16,['passage'],MI,2023-2024 +read a third time,2023-09-20,['reading-3'],MI,2023-2024 +SUBSTITUTE (S-2) DEFEATED,2023-05-10,[],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +transmitted,2023-09-27,[],MI,2023-2024 +received on 10/11/2023,2023-10-11,['introduction'],MI,2023-2024 +amended,2023-10-04,[],MI,2023-2024 +placed on immediate passage,2023-03-22,[],MI,2023-2024 +placed on immediate passage,2024-03-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 450 Yeas 82 Nays 28 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +transmitted,2023-09-13,[],MI,2023-2024 +passed; given immediate effect Roll Call # 183 Yeas 97 Nays 12 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 253 Yeas 67 Nays 41 Excused 0 Not Voting 2,2023-06-28,['passage'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +received on 03/08/2023,2023-03-08,['introduction'],MI,2023-2024 +received on 06/08/2023,2023-06-08,['introduction'],MI,2023-2024 +rule suspended,2023-11-09,[],MI,2023-2024 +read a third time,2023-03-22,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 400 Yeas 106 Nays 3 Excused 0 Not Voting 1,2023-10-24,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 175 Yeas 83 Nays 26 Excused 0 Not Voting 1,2023-06-20,['passage'],MI,2023-2024 +PASSED ROLL CALL # 425 YEAS 31 NAYS 6 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 509 Yeas 88 Nays 21 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +substitute (H-5) adopted and amended,2023-06-14,[],MI,2023-2024 +transmitted,2023-10-19,[],MI,2023-2024 +read a third time,2023-10-17,['reading-3'],MI,2023-2024 +received on 04/27/2023,2023-04-27,['introduction'],MI,2023-2024 +read a first time,2023-10-11,['reading-1'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-10,['referral-committee'],MI,2023-2024 +placed on immediate passage,2023-02-01,[],MI,2023-2024 +received on 01/26/2023,2023-01-26,['introduction'],MI,2023-2024 +received on 03/22/2023,2023-03-22,['introduction'],MI,2023-2024 +received on 11/08/2023,2023-11-09,['introduction'],MI,2023-2024 +reported with recommendation without amendment,2023-10-11,['committee-passage'],MI,2023-2024 +read a third time,2023-09-20,['reading-3'],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +substitute (H-3) adopted,2023-06-20,[],MI,2023-2024 +passed; given immediate effect Roll Call # 462 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +read a first time,2023-04-26,['reading-1'],MI,2023-2024 +referred to Committee on Judiciary,2023-04-19,['referral-committee'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-06-20,['referral-committee'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-09,['amendment-failure'],MI,2023-2024 +read a first time,2024-06-20,['reading-1'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-06-20,['referral-committee'],MI,2023-2024 +SUBSTITUTE (S-3) ADOPTED,2023-04-20,[],MI,2023-2024 +received on 06/20/2024,2024-06-20,['introduction'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-13,['committee-passage'],MI,2023-2024 +received on 06/20/2024,2024-06-20,['introduction'],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +substitute (H-4) adopted,2023-05-02,[],MI,2023-2024 +read a first time,2024-06-20,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 513 Yeas 60 Nays 49 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-10,['amendment-failure'],MI,2023-2024 +passed; given immediate effect Roll Call # 121 Yeas 104 Nays 3 Excused 0 Not Voting 3,2023-05-24,['passage'],MI,2023-2024 +read a first time,2024-06-20,['reading-1'],MI,2023-2024 +referred to Committee on Education,2023-04-19,['referral-committee'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 640 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-02,['passage'],MI,2023-2024 +substitute (H-1) adopted,2023-09-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 179 Yeas 87 Nays 22 Excused 0 Not Voting 1,2024-06-18,['passage'],MI,2023-2024 +read a third time,2023-10-12,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 275 Yeas 74 Nays 33 Excused 0 Not Voting 3,2023-09-06,['passage'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +placed on immediate passage,2023-05-11,[],MI,2023-2024 +passed; given immediate effect Roll Call # 474 Yeas 109 Nays 0 Excused 0 Not Voting 1,2023-11-02,['passage'],MI,2023-2024 +transmitted,2023-06-07,[],MI,2023-2024 +read a third time,2023-06-20,['reading-3'],MI,2023-2024 +read a first time,2023-10-31,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 318 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-05-23,['passage'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-18,['referral-committee'],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 633 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2023-11-01,['passage'],MI,2023-2024 +transmitted,2024-04-30,[],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +transmitted,2024-06-12,[],MI,2023-2024 +transmitted,2024-06-13,[],MI,2023-2024 +amended,2023-06-14,[],MI,2023-2024 +read a first time,2024-03-19,['reading-1'],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-12,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-06-08,['referral-committee'],MI,2023-2024 +transmitted,2023-06-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 359 Yeas 106 Nays 4 Excused 0 Not Voting 0,2023-10-12,['passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-12,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 120 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-09,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 472 Yeas 106 Nays 3 Excused 0 Not Voting 1,2023-11-02,['passage'],MI,2023-2024 +substitute (H-2) adopted,2023-10-12,[],MI,2023-2024 +read a first time,2024-03-20,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 565 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +amended,2023-06-14,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-06-11,['referral-committee'],MI,2023-2024 +SUBSTITUTE ADOPTED,2023-10-19,[],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +transmitted,2023-05-23,[],MI,2023-2024 +passed; given immediate effect Roll Call # 534 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 419 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2023-10-12,['referral-committee'],MI,2023-2024 +received on 09/17/2024,2024-09-17,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 559 Yeas 57 Nays 50 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 354 Yeas 106 Nays 4 Excused 0 Not Voting 0,2023-10-12,['passage'],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +passed; given immediate effect Roll Call # 52 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-04-13,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 111 Yeas 58 Nays 49 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +vote reconsidered,2024-05-07,[],MI,2023-2024 +PASSED ROLL CALL # 270 YEAS 20 NAYS 17 EXCUSED 0 NOT VOTING 1,2024-06-20,['passage'],MI,2023-2024 +transmitted,2023-10-04,[],MI,2023-2024 +PASSED ROLL CALL # 133 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-09,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 53 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-04-13,['passage'],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-06-12,['referral-committee'],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 144 Yeas 56 Nays 47 Excused 0 Not Voting 7,2024-05-22,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-09,['amendment-failure'],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +transmitted,2024-04-24,[],MI,2023-2024 +read a third time,2023-09-20,['reading-3'],MI,2023-2024 +received on 05/09/2024,2024-05-09,['introduction'],MI,2023-2024 +received on 10/20/2023,2023-10-24,['introduction'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-09,['amendment-failure'],MI,2023-2024 +transmitted,2023-09-27,[],MI,2023-2024 +rule suspended,2023-11-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 335 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-10-04,['passage'],MI,2023-2024 +PASSED ROLL CALL # 206 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +PASSED ROLL CALL # 568 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-06-05,['referral-committee'],MI,2023-2024 +received on 10/27/2023,2023-10-31,['introduction'],MI,2023-2024 +read a third time,2023-09-19,['reading-3'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2024-06-05,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2024-02-28,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 387 Yeas 86 Nays 23 Excused 0 Not Voting 1,2023-10-19,['passage'],MI,2023-2024 +PASSED ROLL CALL # 60 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-03-14,['passage'],MI,2023-2024 +transmitted,2024-06-12,[],MI,2023-2024 +transmitted,2024-06-12,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-03-16,[],MI,2023-2024 +read a first time,2024-03-19,['reading-1'],MI,2023-2024 +transmitted,2024-06-12,[],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +read a third time,2023-03-16,['reading-3'],MI,2023-2024 +amended,2023-06-14,[],MI,2023-2024 +notice given to discharge committee,2023-10-11,[],MI,2023-2024 +read a third time,2023-02-01,['reading-3'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-05-24,['referral-committee'],MI,2023-2024 +read a first time,2023-01-26,['reading-1'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +read a first time,2023-03-22,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-09-14,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-06-25,['referral-committee'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +read a first time,2023-11-08,['reading-1'],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +read a third time,2024-03-19,['reading-3'],MI,2023-2024 +read a third time,2023-03-22,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 295 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-20,['passage'],MI,2023-2024 +read a first time,2023-10-11,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 517 Yeas 70 Nays 39 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 176 Yeas 82 Nays 27 Excused 0 Not Voting 1,2023-06-20,['passage'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 334 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-10-04,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-10-03,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-06-25,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-06-14,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-12,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 292 Yeas 75 Nays 35 Excused 0 Not Voting 0,2023-09-20,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-10,['amendment-failure'],MI,2023-2024 +PASSED ROLL CALL # 174 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-09,['passage'],MI,2023-2024 +referred to Committee on Labor,2023-04-26,['referral-committee'],MI,2023-2024 +transmitted,2023-03-16,[],MI,2023-2024 +passed; given immediate effect Roll Call # 83 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +PASSED ROLL CALL # 129 YEAS 31 NAYS 6 EXCUSED 1 NOT VOTING 0,2023-04-20,['passage'],MI,2023-2024 +referred to second reading,2023-09-13,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-25,['referral-committee'],MI,2023-2024 +transmitted,2023-10-24,[],MI,2023-2024 +read a first time,2024-06-20,['reading-1'],MI,2023-2024 +placed on immediate passage,2023-11-01,[],MI,2023-2024 +transmitted,2023-05-17,[],MI,2023-2024 +PASSED ROLL CALL # 84 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-03-16,['passage'],MI,2023-2024 +read a first time,2024-06-20,['reading-1'],MI,2023-2024 +read a first time,2024-03-19,['reading-1'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-05-04,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-15,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-05-15,['committee-passage'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-03-22,['referral-committee'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 73 Yeas 66 Nays 41 Excused 0 Not Voting 3,2023-05-02,['passage'],MI,2023-2024 +referred to Committee on Appropriations,2024-06-20,['referral-committee'],MI,2023-2024 +transmitted,2023-05-24,[],MI,2023-2024 +passed; given immediate effect Roll Call # 322 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-27,['passage'],MI,2023-2024 +transmitted,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 198 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-10,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 153 Yeas 73 Nays 36 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-16,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2024-06-20,['referral-committee'],MI,2023-2024 +transmitted,2023-10-19,[],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-05-03,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-03-06,['referral-committee'],MI,2023-2024 +transmitted,2023-10-25,[],MI,2023-2024 +referred to second reading,2023-06-08,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-16,['committee-passage'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +referred to Committee on Elections,2023-06-14,['referral-committee'],MI,2023-2024 +received on 11/02/2023,2023-11-02,['introduction'],MI,2023-2024 +transmitted,2023-04-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 324 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-27,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-10,['amendment-failure'],MI,2023-2024 +transmitted,2024-06-18,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +transmitted,2023-05-23,[],MI,2023-2024 +passed; given immediate effect Roll Call # 349 Yeas 110 Nays 0 Excused 0 Not Voting 0,2023-10-12,['passage'],MI,2023-2024 +received on 05/23/2023,2023-05-23,['introduction'],MI,2023-2024 +received on 03/15/2023,2023-03-15,['introduction'],MI,2023-2024 +transmitted,2023-09-19,[],MI,2023-2024 +read a third time,2023-05-11,['reading-3'],MI,2023-2024 +title amended,2023-09-06,[],MI,2023-2024 +transmitted,2023-11-02,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-08,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-07-30,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-05-23,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-10-25,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 28 Yeas 81 Nays 22 Excused 0 Not Voting 7,2023-03-16,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 182 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-20,['passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-10-31,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 73 Yeas 56 Nays 49 Excused 0 Not Voting 5,2024-05-08,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-09-14,['referral-committee'],MI,2023-2024 +transmitted,2024-06-25,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-11,['amendment-failure'],MI,2023-2024 +referred to Committee on Health Policy,2023-06-14,['referral-committee'],MI,2023-2024 +amended,2023-11-01,[],MI,2023-2024 +reported with recommendation without amendment,2024-04-25,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 257 Yeas 98 Nays 12 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +title amended,2023-10-31,[],MI,2023-2024 +passed; given immediate effect Roll Call # 252 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 428 Yeas 79 Nays 31 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-05-01,['referral-committee'],MI,2023-2024 +read a first time,2023-01-18,['reading-1'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +transmitted,2024-06-25,[],MI,2023-2024 +received on 11/01/2023,2023-11-01,['introduction'],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-13,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 563 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 61 Yeas 56 Nays 50 Excused 0 Not Voting 4,2024-05-08,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 185 Yeas 104 Nays 5 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +passed; given immediate effect Roll Call # 159 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-12,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 229 Yeas 91 Nays 18 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-06-13,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 288 Yeas 69 Nays 41 Excused 0 Not Voting 0,2023-09-19,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-05-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-06-15,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-03-19,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 222 Yeas 106 Nays 4 Excused 0 Not Voting 0,2024-06-25,['passage'],MI,2023-2024 +referred to Committee on Education,2023-10-24,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 208 Yeas 56 Nays 25 Excused 0 Not Voting 29,2024-06-20,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 219 Yeas 106 Nays 4 Excused 0 Not Voting 0,2024-06-25,['passage'],MI,2023-2024 +reported with recommendation with amendment(s),2023-09-28,['committee-passage'],MI,2023-2024 +postponed for the day,2023-04-25,[],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-06-27,['referral-committee'],MI,2023-2024 +received on 03/16/2023,2023-03-21,['introduction'],MI,2023-2024 +transmitted,2023-10-12,[],MI,2023-2024 +transmitted,2023-06-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 574 Yeas 79 Nays 28 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-11,['committee-passage'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-06-08,['referral-committee'],MI,2023-2024 +received on 05/09/2024,2024-05-09,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 231 Yeas 101 Nays 8 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 186 Yeas 104 Nays 5 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +transmitted,2023-11-02,[],MI,2023-2024 +PASSED ROLL CALL # 95 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-03-16,['passage'],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +passed; given immediate effect Roll Call # 239 Yeas 109 Nays 0 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +rule suspended,2024-05-14,[],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-03-20,['referral-committee'],MI,2023-2024 +received on 10/20/2023,2023-10-24,['introduction'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 164 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-13,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 549 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +referred to Committee on Appropriations,2024-06-26,['referral-committee'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-09,['referral-committee'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-05-24,['referral-committee'],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-05-14,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-05-30,['committee-passage'],MI,2023-2024 +read a first time,2024-09-17,['reading-1'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +transmitted,2023-10-12,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-03-19,['referral-committee'],MI,2023-2024 +read a third time,2023-04-13,['reading-3'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-08,['referral-committee'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +transmitted,2023-04-13,[],MI,2023-2024 +passed; given immediate effect Roll Call # 106 Yeas 57 Nays 50 Excused 0 Not Voting 3,2023-05-11,['passage'],MI,2023-2024 +motion to discharge committee approved,2023-11-08,[],MI,2023-2024 +transmitted,2024-05-21,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-05-04,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-13,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-08,['referral-committee'],MI,2023-2024 +received on 06/20/2024,2024-06-25,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 207 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-10,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-10-10,[],MI,2023-2024 +received on 05/09/2024,2024-05-09,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 76 Yeas 56 Nays 49 Excused 0 Not Voting 5,2024-05-08,['passage'],MI,2023-2024 +transmitted,2023-04-13,[],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 82 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 64 Yeas 57 Nays 48 Excused 0 Not Voting 5,2024-05-08,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-11-07,[],MI,2023-2024 +notice given to discharge committee,2023-11-07,[],MI,2023-2024 +passed; given immediate effect Roll Call # 254 Yeas 84 Nays 24 Excused 0 Not Voting 2,2023-06-28,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 80 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 169 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-20,['passage'],MI,2023-2024 +PASSED ROLL CALL # 141 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-09,['passage'],MI,2023-2024 +transmitted,2024-05-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 276 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +transmitted,2023-10-25,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-02-21,['referral-committee'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 302 Yeas 79 Nays 31 Excused 0 Not Voting 0,2023-09-20,['passage'],MI,2023-2024 +transmitted,2023-06-27,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +reported with recommendation without amendment,2024-05-21,['committee-passage'],MI,2023-2024 +transmitted,2023-10-25,[],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 159 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2023-05-09,['passage'],MI,2023-2024 +transmitted,2023-10-04,[],MI,2023-2024 +received on 05/15/2024,2024-05-15,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-10-03,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-11-09,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 202 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-10,['passage'],MI,2023-2024 +received on 10/20/2023,2023-10-24,['introduction'],MI,2023-2024 +read a first time,2023-11-01,['reading-1'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +received on 10/20/2023,2023-10-24,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 378 YEAS 31 NAYS 5 EXCUSED 2 NOT VOTING 0,2023-06-22,['passage'],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 71 Yeas 56 Nays 49 Excused 0 Not Voting 5,2024-05-08,['passage'],MI,2023-2024 +read a first time,2023-10-31,['reading-1'],MI,2023-2024 +transmitted,2023-10-24,[],MI,2023-2024 +passed; given immediate effect Roll Call # 44 Yeas 63 Nays 45 Excused 0 Not Voting 2,2023-03-22,['passage'],MI,2023-2024 +transmitted,2023-06-20,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-11-09,['referral-committee'],MI,2023-2024 +received on 06/28/2023,2023-06-28,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 284 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-19,['passage'],MI,2023-2024 +transmitted,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 157 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +motion to discharge committee approved,2023-11-09,[],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 571 Yeas 99 Nays 8 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +read a first time,2023-06-08,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-10-24,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 366 Yeas 74 Nays 36 Excused 0 Not Voting 0,2023-10-17,['passage'],MI,2023-2024 +transmitted,2023-06-28,[],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +read a first time,2023-04-27,['reading-1'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-11,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-11-02,['committee-passage'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-09,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 276 Yeas 67 Nays 42 Excused 0 Not Voting 1,2023-09-12,['passage'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +title amended,2023-09-27,[],MI,2023-2024 +PASSED ROLL CALL # 87 YEAS 22 NAYS 15 EXCUSED 1 NOT VOTING 0,2023-03-16,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 481 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-11-02,['passage'],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +read a first time,2023-10-11,['reading-1'],MI,2023-2024 +referred to Committee on Appropriations,2023-09-27,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 85 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +transmitted,2023-09-27,[],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +transmitted,2023-05-11,[],MI,2023-2024 +received on 10/27/2023,2023-10-31,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 146 Yeas 83 Nays 24 Excused 0 Not Voting 3,2023-06-13,['passage'],MI,2023-2024 +transmitted,2023-10-12,[],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +referred to Committee on Elections,2023-11-02,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 178 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-09,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 107 Yeas 97 Nays 10 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +received on 03/15/2023,2023-03-15,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 340 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-09-17,['passage'],MI,2023-2024 +PASSED ROLL CALL # 214 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-10,['passage'],MI,2023-2024 +read a first time,2024-09-17,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 89 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 303 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-20,['passage'],MI,2023-2024 +read a first time,2024-09-17,['reading-1'],MI,2023-2024 +transmitted,2023-10-04,[],MI,2023-2024 +passed; given immediate effect Roll Call # 173 Yeas 59 Nays 50 Excused 0 Not Voting 1,2023-06-20,['passage'],MI,2023-2024 +transmitted,2024-03-05,[],MI,2023-2024 +passed; given immediate effect Roll Call # 369 Yeas 58 Nays 52 Excused 0 Not Voting 0,2023-10-17,['passage'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-09-14,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 25 Yeas 95 Nays 11 Excused 0 Not Voting 2,2024-03-13,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-03-06,['referral-committee'],MI,2023-2024 +read a third time,2024-06-25,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 395 Yeas 87 Nays 22 Excused 0 Not Voting 1,2023-10-24,['passage'],MI,2023-2024 +received on 09/17/2024,2024-09-17,['introduction'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +transmitted,2023-09-19,[],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-06-28,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 185 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-09,['passage'],MI,2023-2024 +transmitted,2024-05-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 58 Yeas 56 Nays 50 Excused 0 Not Voting 4,2024-05-08,['passage'],MI,2023-2024 +read a third time,2023-01-26,['reading-3'],MI,2023-2024 +transmitted,2024-05-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 425 Yeas 74 Nays 36 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-11-02,['referral-committee'],MI,2023-2024 +transmitted,2023-10-25,[],MI,2023-2024 +transmitted,2024-05-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 30 Yeas 88 Nays 15 Excused 0 Not Voting 7,2023-03-16,['passage'],MI,2023-2024 +transmitted,2023-06-27,[],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-06-14,['referral-committee'],MI,2023-2024 +substitute (H-2) adopted,2024-05-21,[],MI,2023-2024 +postponed temporarily,2024-05-07,[],MI,2023-2024 +passed; given immediate effect Roll Call # 30 Yeas 55 Nays 29 Excused 0 Not Voting 24,2024-03-19,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-25,['referral-committee'],MI,2023-2024 +full title agreed to,2023-03-02,[],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 215 Yeas 110 Nays 0 Excused 0 Not Voting 0,2024-06-25,['passage'],MI,2023-2024 +transmitted,2024-03-19,[],MI,2023-2024 +read a third time,2023-03-08,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 399 Yeas 74 Nays 35 Excused 0 Not Voting 1,2023-10-24,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 29 Yeas 85 Nays 18 Excused 0 Not Voting 7,2023-03-16,['passage'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-03-20,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-11-01,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-11,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 54 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-04-13,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-08,['referral-committee'],MI,2023-2024 +substitute (H-3) adopted,2023-11-01,[],MI,2023-2024 +transmitted,2023-10-12,[],MI,2023-2024 +received on 05/14/2024,2024-05-14,['introduction'],MI,2023-2024 +PASSED ROLL CALL # 318 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-11-01,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 207 Yeas 97 Nays 12 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-10-17,['referral-committee'],MI,2023-2024 +referred to second reading,2024-02-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 251 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-06-25,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 371 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-10-17,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 566 Yeas 107 Nays 0 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +referred to second reading,2023-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 368 Yeas 85 Nays 25 Excused 0 Not Voting 0,2023-10-17,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-09-14,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 152 Yeas 109 Nays 0 Excused 0 Not Voting 1,2024-06-11,['passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-23,['referral-committee'],MI,2023-2024 +transmitted,2023-10-19,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-04-30,['referral-committee'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-04-30,['referral-committee'],MI,2023-2024 +REFERRED TO SECRETARY FOR RECORD,2023-01-31,[],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 66 Yeas 56 Nays 49 Excused 0 Not Voting 5,2024-05-08,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 27 Yeas 80 Nays 23 Excused 0 Not Voting 7,2023-03-16,['passage'],MI,2023-2024 +placed on immediate passage,2023-11-02,[],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +transmitted,2023-09-20,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-31,['referral-committee'],MI,2023-2024 +returned to second reading,2023-03-22,[],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-06-14,['referral-committee'],MI,2023-2024 +read a third time,2023-03-22,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 65 Yeas 56 Nays 49 Excused 0 Not Voting 5,2024-05-08,['passage'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 397 Yeas 91 Nays 18 Excused 0 Not Voting 1,2023-10-24,['passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 95 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +received on 03/16/2023,2023-03-21,['introduction'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-09-27,['referral-committee'],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-03-16,[],MI,2023-2024 +transmitted,2024-04-30,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-11-01,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 41 Yeas 88 Nays 20 Excused 0 Not Voting 2,2023-03-22,['passage'],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-05-10,['amendment-passage'],MI,2023-2024 +transmitted,2024-04-30,[],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-22,['referral-committee'],MI,2023-2024 +received on 03/16/2023,2023-03-21,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-06-13,['referral-committee'],MI,2023-2024 +rule suspended,2024-06-11,[],MI,2023-2024 +PASSED ROLL CALL # 80 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-03-16,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-02-08,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 297 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-20,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-06-13,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-28,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 31 Yeas 96 Nays 7 Excused 0 Not Voting 7,2023-03-16,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 26 Yeas 85 Nays 19 Excused 0 Not Voting 6,2023-03-16,['passage'],MI,2023-2024 +received on 06/22/2023,2023-06-22,['introduction'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-22,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-10-05,['referral-committee'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +transmitted,2023-04-20,[],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +rule suspended,2023-05-17,[],MI,2023-2024 +passed; given immediate effect Roll Call # 59 Yeas 56 Nays 50 Excused 0 Not Voting 4,2024-05-08,['passage'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +transmitted,2024-02-28,[],MI,2023-2024 +passed; given immediate effect Roll Call # 67 Yeas 56 Nays 49 Excused 0 Not Voting 5,2024-05-08,['passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-06-05,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 396 Yeas 89 Nays 20 Excused 0 Not Voting 1,2023-10-24,['passage'],MI,2023-2024 +Rep. Joseph Aragona removed as cosponsor,2023-11-01,[],MI,2023-2024 +referred to second reading,2024-02-13,[],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-10-24,['referral-committee'],MI,2023-2024 +postponed temporarily,2024-06-20,[],MI,2023-2024 +passed; given immediate effect Roll Call # 91 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +referred to Committee on Agriculture,2024-06-18,['referral-committee'],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +passed; given immediate effect Roll Call # 69 Yeas 56 Nays 49 Excused 0 Not Voting 5,2024-05-08,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-11-08,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-06-28,['referral-committee'],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 422 Yeas 99 Nays 11 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 208 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 459 Yeas 106 Nays 4 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +referred to second reading,2023-10-19,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +placed on second reading,2024-05-08,[],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-25,['referral-committee'],MI,2023-2024 +transmitted,2023-10-12,[],MI,2023-2024 +referred to Committee on Judiciary,2023-03-09,['referral-committee'],MI,2023-2024 +per Rule 41 referred to Committee on Criminal Justice,2024-06-20,[],MI,2023-2024 +read a third time,2023-05-11,['reading-3'],MI,2023-2024 +transmitted,2023-10-12,[],MI,2023-2024 +read a third time,2023-10-25,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 558 Yeas 76 Nays 30 Excused 0 Not Voting 4,2023-11-09,['passage'],MI,2023-2024 +referred to Committee on Appropriations,2024-06-20,['referral-committee'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-06-21,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 243 Yeas 104 Nays 4 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-04-24,['referral-committee'],MI,2023-2024 +transmitted,2023-10-24,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-08,['committee-passage'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +PASSED ROLL CALL # 77 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-03-15,['passage'],MI,2023-2024 +referred to Committee on Appropriations,2024-06-20,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 320 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-27,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 232 Yeas 89 Nays 20 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +referred to Committee on Appropriations,2024-06-20,['referral-committee'],MI,2023-2024 +referred to Committee on Local Government and Municipal Finance,2024-06-20,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-11-07,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-01,['referral-committee'],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +referred to Committee on Appropriations,2024-06-20,['referral-committee'],MI,2023-2024 +title amended,2023-06-22,[],MI,2023-2024 +placed on immediate passage,2023-05-10,[],MI,2023-2024 +transmitted,2024-02-07,[],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 99 Yeas 83 Nays 24 Excused 0 Not Voting 3,2023-05-11,['passage'],MI,2023-2024 +referred to Committee on Appropriations,2024-06-20,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 515 Yeas 68 Nays 41 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +transmitted,2023-06-20,[],MI,2023-2024 +transmitted,2023-09-28,[],MI,2023-2024 +passed; given immediate effect Roll Call # 93 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 301 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-20,['passage'],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +PASSED ROLL CALL # 254 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-10,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 429 Yeas 79 Nays 31 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-02-13,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 370 Yeas 58 Nays 52 Excused 0 Not Voting 0,2023-10-17,['passage'],MI,2023-2024 +SUBSTITUTE (S-1) AS AMENDED ADOPTED,2023-06-28,[],MI,2023-2024 +reported with recommendation without amendment,2024-05-21,['committee-passage'],MI,2023-2024 +title amended,2023-11-01,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-11-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-02-21,['referral-committee'],MI,2023-2024 +amendment(s) reconsidered,2024-05-08,[],MI,2023-2024 +transmitted,2023-10-12,[],MI,2023-2024 +RULES SUSPENDED,2023-10-18,[],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +reported with recommendation without amendment,2024-03-12,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-14,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-06-28,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 96 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-22,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-22,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 92 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-25,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-04-19,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 97 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +transmitted,2023-06-28,[],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 430 Yeas 80 Nays 30 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +transmitted,2023-05-02,[],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +transmitted,2023-05-24,[],MI,2023-2024 +notice given to discharge committee,2024-06-18,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-01,['referral-committee'],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 237 Yeas 99 Nays 10 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-03-07,['referral-committee'],MI,2023-2024 +referred to second reading,2024-04-25,[],MI,2023-2024 +transmitted,2023-09-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 294 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-20,['passage'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-11-09,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-05-22,['committee-passage'],MI,2023-2024 +title amended,2023-06-22,[],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 81 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +referred to second reading,2024-04-25,[],MI,2023-2024 +transmitted,2023-06-22,[],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 114 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-05-02,['passage'],MI,2023-2024 +transmitted,2023-03-08,[],MI,2023-2024 +PASSED ROLL CALL # 197 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-10,['passage'],MI,2023-2024 +reported with recommendation without amendment,2024-06-11,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 87 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 155 Yeas 74 Nays 35 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 289 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-19,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-05-01,['referral-committee'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-10-18,[],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +transmitted,2023-03-21,[],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 296 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-20,['passage'],MI,2023-2024 +read a first time,2023-10-11,['reading-1'],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +transmitted,2024-06-04,[],MI,2023-2024 +transmitted,2023-03-08,[],MI,2023-2024 +reported with recommendation without amendment,2024-02-22,['committee-passage'],MI,2023-2024 +referred to Committee on Appropriations,2024-05-07,['referral-committee'],MI,2023-2024 +read a first time,2023-03-07,['reading-1'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-05-02,[],MI,2023-2024 +rule suspended,2024-05-14,[],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-03-20,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-06-27,['committee-passage'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 464 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-03-14,['referral-committee'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-01-26,['amendment-failure'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 254 Yeas 106 Nays 4 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +read a first time,2023-11-09,['reading-1'],MI,2023-2024 +transmitted,2024-06-25,[],MI,2023-2024 +transmitted,2023-06-20,[],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-25,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-15,['referral-committee'],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +postponed for the day,2023-10-11,[],MI,2023-2024 +title amended,2024-06-27,[],MI,2023-2024 +title amended,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-07-30,['referral-committee'],MI,2023-2024 +received on 04/19/2023,2023-04-19,['introduction'],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +transmitted,2024-03-19,[],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-04-25,['referral-committee'],MI,2023-2024 +read a first time,2023-11-01,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 183 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-09,['passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-25,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-24,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 15 Yeas 58 Nays 50 Excused 0 Not Voting 2,2023-03-02,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 18 Yeas 93 Nays 13 Excused 0 Not Voting 2,2024-02-29,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-03,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 70 Yeas 56 Nays 49 Excused 0 Not Voting 5,2024-05-08,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 233 Yeas 102 Nays 7 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +received on 10/20/2023,2023-10-24,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 21 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-03-08,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 84 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-07-30,['referral-committee'],MI,2023-2024 +read a third time,2023-10-19,['reading-3'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +title amended,2024-06-27,[],MI,2023-2024 +received on 03/08/2023,2023-03-08,['introduction'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +substitute (H-19) adopted,2023-11-08,[],MI,2023-2024 +transmitted,2023-06-28,[],MI,2023-2024 +read a third time,2024-04-18,['reading-3'],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-06-13,['referral-committee'],MI,2023-2024 +read a first time,2023-10-11,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 39 Yeas 102 Nays 6 Excused 0 Not Voting 2,2023-03-22,['passage'],MI,2023-2024 +received on 03/16/2023,2023-03-21,['introduction'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 32 Yeas 83 Nays 22 Excused 0 Not Voting 3,2024-04-18,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2024-02-14,['reading-1'],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 275 Yeas 57 Nays 53 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-03-16,['amendment-passage'],MI,2023-2024 +read a third time,2023-05-18,['reading-3'],MI,2023-2024 +transmitted,2023-06-08,[],MI,2023-2024 +referred to second reading,2024-05-21,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +read a first time,2023-03-23,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 50 Yeas 103 Nays 5 Excused 0 Not Voting 2,2023-04-11,['passage'],MI,2023-2024 +transmitted,2024-04-24,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-16,['committee-passage'],MI,2023-2024 +"Reps. Angela Rigas, Mike Hoadley, Jay DeBoyer removed as co-sponsors",2023-11-02,[],MI,2023-2024 +referred to Committee on Elections,2023-11-02,['referral-committee'],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 367 Yeas 61 Nays 49 Excused 0 Not Voting 0,2023-10-17,['passage'],MI,2023-2024 +transmitted,2023-06-22,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-09,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 148 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-02-13,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 300 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-20,['passage'],MI,2023-2024 +amended,2023-11-01,[],MI,2023-2024 +reported with recommendation without amendment,2023-09-12,['committee-passage'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +transmitted,2023-10-25,[],MI,2023-2024 +PASSED ROLL CALL # 126 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-09,['passage'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 398 Yeas 92 Nays 17 Excused 0 Not Voting 1,2023-10-24,['passage'],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +referred to Committee on Appropriations,2023-10-31,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 35 Yeas 63 Nays 45 Excused 0 Not Voting 2,2023-03-21,['passage'],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +referred to Committee on Elections,2024-04-30,['referral-committee'],MI,2023-2024 +transmitted,2024-05-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 298 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-20,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 235 Yeas 97 Nays 12 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-27,['referral-committee'],MI,2023-2024 +transmitted,2023-06-21,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-09,['referral-committee'],MI,2023-2024 +received on 05/09/2024,2024-05-09,['introduction'],MI,2023-2024 +referred to second reading,2024-06-12,[],MI,2023-2024 +title amended,2023-06-21,[],MI,2023-2024 +rule suspended,2023-11-01,[],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-22,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 507 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-28,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Insurance and Financial Services,2023-03-16,[],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-05-17,['referral-committee'],MI,2023-2024 +read a second time,2023-10-17,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-10-03,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 460 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +referred to Committee on Elections,2023-06-07,['referral-committee'],MI,2023-2024 +referred to second reading,2024-06-05,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +received on 03/08/2023,2023-03-08,['introduction'],MI,2023-2024 +passed; given immediate effect Roll Call # 568 Yeas 103 Nays 4 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-06-06,['referral-committee'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 484 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-11-02,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-25,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 62 Yeas 56 Nays 47 Excused 0 Not Voting 7,2024-05-08,['passage'],MI,2023-2024 +read a first time,2023-10-12,['reading-1'],MI,2023-2024 +rule suspended,2023-05-17,[],MI,2023-2024 +title amended,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-10-24,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-3),2024-06-13,['committee-passage'],MI,2023-2024 +transmitted,2023-06-28,[],MI,2023-2024 +read a first time,2023-01-18,['reading-1'],MI,2023-2024 +reported with recommendation without amendment,2024-05-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-28,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-06-11,['committee-passage'],MI,2023-2024 +referred to Committee on Appropriations,2024-06-26,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 167 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-09,['passage'],MI,2023-2024 +reported with recommendation without amendment,2024-03-12,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-10-24,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-05-14,['committee-passage'],MI,2023-2024 +received on 03/16/2023,2023-03-21,['introduction'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-18,['referral-committee'],MI,2023-2024 +received on 10/27/2023,2023-10-31,['introduction'],MI,2023-2024 +transmitted,2024-05-01,[],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 234 Yeas 90 Nays 19 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 33 Yeas 58 Nays 47 Excused 0 Not Voting 3,2024-04-18,['passage'],MI,2023-2024 +reported with recommendation without amendment,2024-03-06,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 433 Yeas 77 Nays 33 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +transmitted,2023-03-08,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-09-14,['referral-committee'],MI,2023-2024 +referred to second reading,2024-06-12,[],MI,2023-2024 +RULES SUSPENDED,2023-10-24,[],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +read a first time,2024-03-19,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-27,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-06-25,['referral-committee'],MI,2023-2024 +transmitted,2024-06-25,[],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +transmitted,2023-05-24,[],MI,2023-2024 +read a first time,2024-05-01,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 184 Yeas 98 Nays 11 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +passed; given immediate effect Roll Call # 13 Yeas 104 Nays 2 Excused 0 Not Voting 2,2024-02-21,['passage'],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +read a first time,2024-03-12,['reading-1'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-03-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-18,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-09-27,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 304 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-20,['passage'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-03-19,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-02,['amendment-failure'],MI,2023-2024 +passed; given immediate effect Roll Call # 94 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-07-30,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-25,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 161 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 508 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-06-27,['referral-committee'],MI,2023-2024 +transmitted,2023-10-19,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-13,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-10-03,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-03-20,['referral-committee'],MI,2023-2024 +amendment(s) reconsidered,2023-06-21,[],MI,2023-2024 +Rep. Luke Meerman removed as sponsor,2023-06-14,[],MI,2023-2024 +reported with recommendation without amendment,2024-02-22,['committee-passage'],MI,2023-2024 +transmitted,2023-06-21,[],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-03-23,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-10-31,['committee-passage'],MI,2023-2024 +transmitted,2023-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 5 Yeas 67 Nays 41 Excused 0 Not Voting 2,2023-01-26,['passage'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 174 Yeas 109 Nays 0 Excused 0 Not Voting 1,2024-06-13,['passage'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +transmitted,2023-06-27,[],MI,2023-2024 +title amended,2023-10-25,[],MI,2023-2024 +title amended,2024-06-12,[],MI,2023-2024 +referred to Committee on Elections,2023-06-14,['referral-committee'],MI,2023-2024 +rule suspended,2023-01-31,[],MI,2023-2024 +transmitted,2023-10-25,[],MI,2023-2024 +transmitted,2023-06-13,[],MI,2023-2024 +passed; given immediate effect Roll Call # 204 Yeas 76 Nays 33 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +transmitted,2024-06-12,[],MI,2023-2024 +received on 10/27/2023,2023-10-31,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-06-18,['referral-committee'],MI,2023-2024 +transmitted,2024-06-04,[],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-15,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-02-06,['committee-passage'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 56 Yeas 103 Nays 4 Excused 0 Not Voting 3,2023-04-13,['passage'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-05-24,['referral-committee'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 163 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 382 Yeas 83 Nays 26 Excused 0 Not Voting 1,2023-10-19,['passage'],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +transmitted,2023-10-11,[],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 98 Yeas 94 Nays 13 Excused 0 Not Voting 3,2023-05-11,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 226 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-11,['committee-passage'],MI,2023-2024 +transmitted,2024-06-25,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-25,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 296 Yeas 58 Nays 52 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +reported with recommendation without amendment,2024-02-06,['committee-passage'],MI,2023-2024 +referred to second reading,2024-03-06,[],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-23,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-05-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-06-15,['referral-committee'],MI,2023-2024 +received on 03/19/2024,2024-03-19,['introduction'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-10-03,['referral-committee'],MI,2023-2024 +received on 03/16/2023,2023-03-21,['introduction'],MI,2023-2024 +read a second time,2023-10-17,['reading-2'],MI,2023-2024 +title amended,2023-10-04,[],MI,2023-2024 +read a third time,2024-05-23,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 110 YEAS 28 NAYS 10 EXCUSED 0 NOT VOTING 0,2024-05-02,['passage'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +substitute (H-3) adopted,2023-10-17,[],MI,2023-2024 +referred to Committee on Criminal Justice,2024-03-20,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 545 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +Rep. James DeSana removed as cosponsor,2024-05-02,[],MI,2023-2024 +amended,2023-09-20,[],MI,2023-2024 +referred to second reading,2024-03-06,[],MI,2023-2024 +passed; given immediate effect Roll Call # 305 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-20,['passage'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +referred to Committee on Tax Policy,2023-10-24,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-10-18,[],MI,2023-2024 +read a first time,2023-05-17,['reading-1'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +read a first time,2023-10-04,['reading-1'],MI,2023-2024 +referred to Committee on Tax Policy,2023-03-23,['referral-committee'],MI,2023-2024 +transmitted,2024-05-22,[],MI,2023-2024 +transmitted,2023-03-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 250 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-21,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-13,['committee-passage'],MI,2023-2024 +PASSED ROLL CALL # 88 YEAS 22 NAYS 15 EXCUSED 1 NOT VOTING 0,2023-03-16,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-08,['referral-committee'],MI,2023-2024 +Rep. James DeSana removed as cosponsor,2024-05-02,[],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-05-09,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2024-03-20,['referral-committee'],MI,2023-2024 +read a first time,2024-06-12,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 86 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +referred to Committee on Government Operations,2024-02-28,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-09-14,['referral-committee'],MI,2023-2024 +referred to second reading,2023-06-08,[],MI,2023-2024 +received on 05/14/2024,2024-05-14,['introduction'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-12,['referral-committee'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-24,['referral-committee'],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +transmitted,2023-10-04,[],MI,2023-2024 +transmitted,2023-05-24,[],MI,2023-2024 +title amended,2024-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 74 Yeas 56 Nays 49 Excused 0 Not Voting 5,2024-05-08,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 20 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-03-08,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-09,['referral-committee'],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2023-11-07,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 261 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2023-05-11,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-10-12,['referral-committee'],MI,2023-2024 +notice given to discharge committee,2023-11-07,[],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +title amended,2023-10-04,[],MI,2023-2024 +passed; given immediate effect Roll Call # 423 Yeas 68 Nays 42 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +transmitted,2024-01-17,[],MI,2023-2024 +read a first time,2023-05-24,['reading-1'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +reported with recommendation without amendment,2023-06-14,['committee-passage'],MI,2023-2024 +amended,2024-06-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 299 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-20,['passage'],MI,2023-2024 +transmitted,2024-06-25,[],MI,2023-2024 +passed; given immediate effect Roll Call # 457 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-13,['referral-committee'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +transmitted,2024-05-15,[],MI,2023-2024 +referred to second reading,2023-09-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 174 Yeas 59 Nays 50 Excused 0 Not Voting 1,2023-06-20,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-25,['referral-committee'],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +read a third time,2023-10-31,['reading-3'],MI,2023-2024 +reported with recommendation without amendment,2024-03-05,['committee-passage'],MI,2023-2024 +motion to discharge committee approved,2024-06-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 560 Yeas 58 Nays 49 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 192 Yeas 105 Nays 4 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +roll call Roll Call # 477 Yeas 52 Nays 51 Excused 0 Not Voting 7,2023-11-02,[],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +referred to Committee on Judiciary,2024-06-04,['referral-committee'],MI,2023-2024 +referred to second reading,2023-10-03,[],MI,2023-2024 +referred to second reading,2024-02-14,[],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +read a first time,2024-04-17,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-09-27,['referral-committee'],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +received on 06/14/2023,2023-06-14,['introduction'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-25,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 293 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-20,['passage'],MI,2023-2024 +postponed temporarily,2024-06-11,[],MI,2023-2024 +referred to Committee on Elections,2023-06-14,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-05-24,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-09-19,['committee-passage'],MI,2023-2024 +title amended,2024-04-18,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-05-25,['referral-committee'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +referred to Committee on Criminal Justice,2023-05-23,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-06-25,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-09-19,['committee-passage'],MI,2023-2024 +transmitted,2023-10-25,[],MI,2023-2024 +title amended,2023-06-14,[],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-11-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-05-30,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-06,['committee-passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-04,['referral-committee'],MI,2023-2024 +title amended,2023-03-08,[],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-06-26,['referral-committee'],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-04-30,['referral-committee'],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +reported with recommendation with substitute (H-2),2024-05-21,['committee-passage'],MI,2023-2024 +transmitted,2023-09-20,[],MI,2023-2024 +reported with recommendation without amendment,2024-03-06,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-31,['referral-committee'],MI,2023-2024 +title amended,2024-06-26,[],MI,2023-2024 +motion to discharge committee approved,2023-05-17,[],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-05-30,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-03-19,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 113 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-05-02,['passage'],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +referred to Committee on Education,2024-03-12,['referral-committee'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2024-06-26,['referral-committee'],MI,2023-2024 +transmitted,2023-05-10,[],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-10-24,['referral-committee'],MI,2023-2024 +transmitted,2024-02-21,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-20,['committee-passage'],MI,2023-2024 +transmitted,2023-01-26,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-06-28,['referral-committee'],MI,2023-2024 +motion to discharge committee approved,2023-01-31,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-10-17,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-26,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 255 Yeas 74 Nays 34 Excused 0 Not Voting 2,2023-06-28,['passage'],MI,2023-2024 +read a second time,2024-05-09,['reading-2'],MI,2023-2024 +transmitted,2023-04-13,[],MI,2023-2024 +transmitted,2023-06-27,[],MI,2023-2024 +referred to Committee on Health Policy,2023-05-16,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-19,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 145 Yeas 80 Nays 27 Excused 0 Not Voting 3,2024-05-23,['passage'],MI,2023-2024 +transmitted,2024-05-02,[],MI,2023-2024 +title amended,2023-09-20,[],MI,2023-2024 +reported with recommendation without amendment,2024-04-24,['committee-passage'],MI,2023-2024 +per Rule 41 referred to Committee on Economic Development and Small Business,2023-04-11,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +transmitted,2024-05-02,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-03-16,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-02-28,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-19,['committee-passage'],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-06,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-27,['committee-passage'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +title amended,2023-11-01,[],MI,2023-2024 +referred to Committee on Elections,2023-06-14,['referral-committee'],MI,2023-2024 +vote reconsidered,2023-11-02,[],MI,2023-2024 +referred to second reading,2024-03-05,[],MI,2023-2024 +passed; given immediate effect Roll Call # 34 Yeas 99 Nays 6 Excused 0 Not Voting 3,2024-04-18,['passage'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 495 Yeas 88 Nays 21 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +substitute (H-5) adopted,2023-10-31,[],MI,2023-2024 +transmitted,2023-03-22,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-06-13,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-05-17,['referral-committee'],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-19,['committee-passage'],MI,2023-2024 +placed on third reading,2023-10-17,[],MI,2023-2024 +transmitted,2023-09-20,[],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-06-14,['referral-committee'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +title amended,2023-03-21,[],MI,2023-2024 +reported with recommendation without amendment,2024-02-27,['committee-passage'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-01,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-19,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-09,['referral-committee'],MI,2023-2024 +referred to second reading,2023-09-28,[],MI,2023-2024 +referred to Committee on Health Policy,2023-10-24,['referral-committee'],MI,2023-2024 +referred to second reading,2024-06-13,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +transmitted,2023-06-20,[],MI,2023-2024 +referred to Committee on Appropriations,2023-01-18,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-07,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-20,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-11-02,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-27,['committee-passage'],MI,2023-2024 +received on 05/09/2023,2023-05-10,['introduction'],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-10-12,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-06-14,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 563 Yeas 104 Nays 3 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-04-23,['committee-passage'],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +reported with recommendation without amendment,2023-06-08,['committee-passage'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +read a second time,2024-06-12,['reading-2'],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +notice given to discharge committee,2023-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-11-09,['referral-committee'],MI,2023-2024 +transmitted,2023-06-21,[],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +read a second time,2024-06-12,['reading-2'],MI,2023-2024 +Rep. Gina Johnsen removed as cosponsor,2023-11-02,[],MI,2023-2024 +received on 05/09/2024,2024-05-09,['introduction'],MI,2023-2024 +transmitted,2023-10-24,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-05-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-06-25,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-24,['committee-passage'],MI,2023-2024 +transmitted,2023-10-17,[],MI,2023-2024 +notice given to discharge committee,2023-11-07,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-07-30,['referral-committee'],MI,2023-2024 +referred to second reading,2023-09-12,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-02-14,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 117 Yeas 103 Nays 4 Excused 0 Not Voting 3,2023-05-18,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 447 Yeas 60 Nays 50 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +PASSED ROLL CALL # 90 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-03-16,['passage'],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-07-30,['referral-committee'],MI,2023-2024 +transmitted,2024-04-18,[],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 388 Yeas 66 Nays 43 Excused 0 Not Voting 1,2023-10-19,['passage'],MI,2023-2024 +read a first time,2023-03-08,['reading-1'],MI,2023-2024 +transmitted,2023-05-10,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-07-30,['referral-committee'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2024-04-17,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-04-17,['committee-passage'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +placed on second reading,2024-06-26,[],MI,2023-2024 +referred to Committee on Health Policy,2023-06-28,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 247 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-19,['committee-passage'],MI,2023-2024 +referred to Committee on Education,2023-02-08,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-06-28,['referral-committee'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +transmitted,2023-11-08,[],MI,2023-2024 +read a second time,2024-02-21,['reading-2'],MI,2023-2024 +transmitted,2023-06-20,[],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +transmitted,2023-09-20,[],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +referred to second reading,2023-06-14,[],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-22,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-25,['referral-committee'],MI,2023-2024 +VOTE RECONSIDERED,2023-05-11,[],MI,2023-2024 +motion to discharge committee approved,2023-11-08,[],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-07-30,['referral-committee'],MI,2023-2024 +transmitted,2023-10-04,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-10,['referral-committee'],MI,2023-2024 +rule suspended,2024-05-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 256 Yeas 106 Nays 4 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-03-09,[],MI,2023-2024 +title amended,2024-06-26,[],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-11-08,['committee-passage'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-18,['referral-committee'],MI,2023-2024 +read a second time,2024-05-09,['reading-2'],MI,2023-2024 +referred to second reading,2024-02-06,[],MI,2023-2024 +passed; given immediate effect Roll Call # 291 Yeas 76 Nays 34 Excused 0 Not Voting 0,2023-09-20,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-15,['referral-committee'],MI,2023-2024 +received on 05/02/2024,2024-05-02,['introduction'],MI,2023-2024 +placed on third reading,2023-10-17,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-12,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-06-27,['referral-committee'],MI,2023-2024 +per Rule 41 referred to Committee on Economic Development and Small Business,2023-04-11,[],MI,2023-2024 +read a first time,2024-03-19,['reading-1'],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 364 Yeas 72 Nays 38 Excused 0 Not Voting 0,2023-10-17,['passage'],MI,2023-2024 +transmitted,2023-05-10,[],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-21,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-26,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 562 Yeas 72 Nays 35 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-22,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-06-11,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-06-15,['referral-committee'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-06-13,['referral-committee'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-03-23,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-06-20,['committee-passage'],MI,2023-2024 +referred to second reading,2024-02-06,[],MI,2023-2024 +transmitted,2024-06-13,[],MI,2023-2024 +transmitted,2024-06-12,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +read a first time,2023-10-31,['reading-1'],MI,2023-2024 +referred to second reading,2024-02-22,[],MI,2023-2024 +amended,2023-06-21,[],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +referred to Committee on Health Policy,2023-06-28,['referral-committee'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +reported with recommendation without amendment,2024-06-11,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-28,['committee-passage'],MI,2023-2024 +transmitted,2023-09-20,[],MI,2023-2024 +referred to Committee on Appropriations,2024-06-12,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-06-26,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-04-17,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-03-09,[],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-06-28,['referral-committee'],MI,2023-2024 +title amended,2023-10-31,[],MI,2023-2024 +referred to second reading,2024-03-06,[],MI,2023-2024 +transmitted,2023-10-04,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-22,['committee-passage'],MI,2023-2024 +transmitted,2023-11-03,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-20,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-05-22,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 572 Yeas 99 Nays 8 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-13,['committee-passage'],MI,2023-2024 +referred to Committee on Criminal Justice,2024-06-12,['referral-committee'],MI,2023-2024 +transmitted,2023-04-11,[],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-01-18,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-02,['referral-committee'],MI,2023-2024 +title amended,2024-05-08,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-06-26,['referral-committee'],MI,2023-2024 +transmitted,2023-03-08,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-27,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-03,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 456 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +title amended,2023-10-19,[],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-06-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-10-31,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-06-28,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-05-16,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-23,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2024-06-26,['referral-committee'],MI,2023-2024 +title amended,2023-09-12,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +read a second time,2024-06-12,['reading-2'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-05-02,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-22,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-27,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-06-28,['referral-committee'],MI,2023-2024 +transmitted,2023-05-11,[],MI,2023-2024 +transmitted,2023-09-20,[],MI,2023-2024 +referred to Committee on Labor,2024-05-01,['referral-committee'],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +amended,2024-06-12,[],MI,2023-2024 +transmitted,2023-11-08,[],MI,2023-2024 +received on 10/20/2023,2023-10-24,['introduction'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-18,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +title amended,2024-05-08,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-26,['referral-committee'],MI,2023-2024 +defeated Roll Call # 29 Yeas 53 Nays 44 Excused 0 Not Voting 11,2024-03-19,[],MI,2023-2024 +rule suspended,2023-11-01,[],MI,2023-2024 +referred to second reading,2024-06-12,[],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2024-06-26,['referral-committee'],MI,2023-2024 +transmitted,2023-09-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-11-07,['referral-committee'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-31,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-10,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-12,['committee-passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-01-18,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-03,['committee-passage'],MI,2023-2024 +title amended,2023-10-31,[],MI,2023-2024 +passed; given immediate effect Roll Call # 564 Yeas 104 Nays 3 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +transmitted,2023-03-16,[],MI,2023-2024 +referred to second reading,2024-04-25,[],MI,2023-2024 +passed; given immediate effect Roll Call # 444 Yeas 59 Nays 51 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-15,['referral-committee'],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +PASSED ROLL CALL # 289 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-05-11,['passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-18,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-06-15,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 45 Yeas 61 Nays 47 Excused 0 Not Voting 2,2023-03-22,['passage'],MI,2023-2024 +title amended,2023-06-20,[],MI,2023-2024 +transmitted,2023-06-20,[],MI,2023-2024 +referred to second reading,2023-10-25,[],MI,2023-2024 +referred to Committee on Tax Policy,2023-04-27,['referral-committee'],MI,2023-2024 +received on 06/22/2023,2023-06-22,['introduction'],MI,2023-2024 +reported with recommendation without amendment,2024-03-06,['committee-passage'],MI,2023-2024 +transmitted,2023-09-06,[],MI,2023-2024 +reported with recommendation without amendment,2023-05-16,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-10-25,['referral-committee'],MI,2023-2024 +read a second time,2023-10-17,['reading-2'],MI,2023-2024 +received on 04/20/2023,2023-04-20,['introduction'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-02,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 573 Yeas 81 Nays 26 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +referred to second reading,2024-05-21,[],MI,2023-2024 +referred to Committee on Health Policy,2023-11-08,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-06-25,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-10-24,['referral-committee'],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +referred to Committee on Judiciary,2023-10-11,['referral-committee'],MI,2023-2024 +"referred to Committee on Families, Children and Seniors",2023-03-22,['referral-committee'],MI,2023-2024 +referred to Committee on Tax Policy,2023-01-26,['referral-committee'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-21,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 11 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-02-01,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-10-31,['referral-committee'],MI,2023-2024 +title amended,2023-09-27,[],MI,2023-2024 +title amended,2023-05-10,[],MI,2023-2024 +transmitted,2023-10-17,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-03-16,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-11-09,['referral-committee'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +rule suspended,2024-05-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 449 Yeas 83 Nays 27 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-14,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +transmitted,2023-09-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2023-10-31,['referral-committee'],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-11-02,['referral-committee'],MI,2023-2024 +received on 05/09/2024,2024-05-09,['introduction'],MI,2023-2024 +referred to Committee on Education,2024-03-19,['referral-committee'],MI,2023-2024 +received on 05/10/2023,2023-05-10,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2023-10-31,['reading-1'],MI,2023-2024 +transmitted,2023-06-20,[],MI,2023-2024 +title amended,2023-05-10,[],MI,2023-2024 +RULES SUSPENDED,2023-03-21,[],MI,2023-2024 +notice given to discharge committee,2023-06-13,[],MI,2023-2024 +received on 05/11/2023,2023-05-16,['introduction'],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +title amended,2023-06-28,[],MI,2023-2024 +motion to discharge committee approved,2023-11-08,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-08,['committee-passage'],MI,2023-2024 +referred to Committee on Appropriations,2024-06-20,['referral-committee'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-07,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-09-28,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-10-24,['referral-committee'],MI,2023-2024 +referred to Committee on Regulatory Reform,2023-05-23,['referral-committee'],MI,2023-2024 +title amended,2023-05-10,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-15,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-04-19,[],MI,2023-2024 +placed on second reading,2023-11-01,[],MI,2023-2024 +read a first time,2023-05-23,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-10-31,['referral-committee'],MI,2023-2024 +read a first time,2023-11-01,['reading-1'],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +title amended,2023-05-02,[],MI,2023-2024 +received on 05/09/2023,2023-05-10,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-10,['referral-committee'],MI,2023-2024 +placed on second reading,2023-11-08,[],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +received on 05/10/2023,2023-05-10,['introduction'],MI,2023-2024 +read a first time,2024-06-25,['reading-1'],MI,2023-2024 +referred to Committee on Labor,2023-06-08,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-03,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-02-22,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-05-30,['referral-committee'],MI,2023-2024 +transmitted,2023-05-11,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-05-18,['referral-committee'],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +RULES SUSPENDED,2023-04-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 561 Yeas 75 Nays 32 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +rule suspended,2024-05-14,[],MI,2023-2024 +referred to Committee on Elections,2024-09-17,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-03,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 51 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-04-13,['passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-08,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-17,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-08,['committee-passage'],MI,2023-2024 +transmitted,2023-09-19,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-14,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 224 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-10,['passage'],MI,2023-2024 +motion to discharge committee approved,2023-10-12,[],MI,2023-2024 +referred to second reading,2023-11-02,[],MI,2023-2024 +referred to Committee on Elections,2024-09-17,['referral-committee'],MI,2023-2024 +placed on second reading,2023-11-09,[],MI,2023-2024 +referred to second reading,2023-05-30,[],MI,2023-2024 +title amended,2023-06-14,[],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +RULES SUSPENDED,2023-11-02,[],MI,2023-2024 +read a first time,2024-05-15,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-04-20,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-11-01,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-11-02,['reading-1'],MI,2023-2024 +transmitted,2023-09-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2023-11-09,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-09,['referral-committee'],MI,2023-2024 +received on 05/09/2023,2023-05-10,['introduction'],MI,2023-2024 +reported with recommendation without amendment,2023-10-17,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-11-02,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 256 Yeas 64 Nays 44 Excused 0 Not Voting 2,2023-06-28,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2024-06-26,['referral-committee'],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +referred to second reading,2023-06-14,[],MI,2023-2024 +PASSED ROLL CALL # 193 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-10,['passage'],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +title amended,2023-09-27,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-26,['referral-committee'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +placed on second reading,2024-05-14,[],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +received on 10/20/2023,2023-10-24,['introduction'],MI,2023-2024 +transmitted,2023-06-21,[],MI,2023-2024 +read a third time,2023-10-17,['reading-3'],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-03-16,[],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-11-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-06-20,['referral-committee'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-06-28,['referral-committee'],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-12,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-28,['committee-passage'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-21,['referral-committee'],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-10-17,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-05-24,['referral-committee'],MI,2023-2024 +transmitted,2023-10-04,[],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-05-25,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-06-27,['referral-committee'],MI,2023-2024 +transmitted,2023-10-12,[],MI,2023-2024 +referred to second reading,2024-05-15,[],MI,2023-2024 +transmitted,2023-03-22,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-10,['committee-passage'],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-31,['committee-passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-11-09,[],MI,2023-2024 +read a first time,2023-03-15,['reading-1'],MI,2023-2024 +substitute (H-5) adopted,2023-05-02,[],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +referred to second reading,2023-09-28,[],MI,2023-2024 +transmitted,2024-06-25,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-25,['referral-committee'],MI,2023-2024 +transmitted,2024-06-25,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-09-26,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 236 Yeas 70 Nays 39 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-06-27,[],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +referred to Committee on Appropriations,2024-06-20,['referral-committee'],MI,2023-2024 +transmitted,2023-09-19,[],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-09-20,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-11-02,[],MI,2023-2024 +title amended,2023-06-14,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-01,['referral-committee'],MI,2023-2024 +transmitted,2023-06-21,[],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 101 Yeas 103 Nays 4 Excused 0 Not Voting 3,2023-05-11,['passage'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-06-14,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-06,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-11-02,['referral-committee'],MI,2023-2024 +referred to second reading,2023-06-27,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-05,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-17,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-20,['committee-passage'],MI,2023-2024 +placed on second reading,2023-11-01,[],MI,2023-2024 +referred to Committee on Education,2023-03-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-03-09,['referral-committee'],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +transmitted,2023-05-10,[],MI,2023-2024 +transmitted,2023-06-22,[],MI,2023-2024 +transmitted,2023-09-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-09-20,['referral-committee'],MI,2023-2024 +read a first time,2023-06-14,['reading-1'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-20,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-03,['referral-committee'],MI,2023-2024 +transmitted,2023-05-10,[],MI,2023-2024 +referred to second reading,2023-04-19,[],MI,2023-2024 +title amended,2023-05-10,[],MI,2023-2024 +amendment(s) withdrawn,2024-05-08,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-18,['referral-committee'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +transmitted,2023-10-17,[],MI,2023-2024 +transmitted,2023-05-10,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-06-21,['referral-committee'],MI,2023-2024 +transmitted,2023-05-11,[],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-05-16,['referral-committee'],MI,2023-2024 +title amended,2023-09-27,[],MI,2023-2024 +received on 03/15/2023,2023-03-15,['introduction'],MI,2023-2024 +title amended,2024-06-26,[],MI,2023-2024 +referred to second reading,2023-06-08,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-25,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-11-09,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-10-17,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-10,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-10-17,['referral-committee'],MI,2023-2024 +title amended,2023-11-01,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-06-15,['referral-committee'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +transmitted,2023-10-24,[],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-06-14,['referral-committee'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +motion to discharge committee approved,2023-05-17,[],MI,2023-2024 +transmitted,2023-03-16,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-24,['committee-passage'],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-03-16,[],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +PASSED ROLL CALL # 245 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-10,['passage'],MI,2023-2024 +transmitted,2023-03-22,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-24,['committee-passage'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +transmitted,2023-10-24,[],MI,2023-2024 +RULES SUSPENDED,2023-09-26,[],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-22,['referral-committee'],MI,2023-2024 +per Rule 41 referred to Committee on Economic Development and Small Business,2023-04-11,[],MI,2023-2024 +read a second time,2023-09-06,['reading-2'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +read a second time,2024-02-21,['reading-2'],MI,2023-2024 +title amended,2024-06-26,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-03,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 23 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-03-08,['passage'],MI,2023-2024 +transmitted,2023-03-02,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +transmitted,2023-03-16,[],MI,2023-2024 +received on 05/09/2023,2023-05-10,['introduction'],MI,2023-2024 +transmitted,2023-10-24,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-09-20,['referral-committee'],MI,2023-2024 +transmitted,2023-10-17,[],MI,2023-2024 +transmitted,2023-09-20,[],MI,2023-2024 +read a first time,2023-03-15,['reading-1'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-21,['referral-committee'],MI,2023-2024 +transmitted,2023-06-13,[],MI,2023-2024 +transmitted,2023-05-10,[],MI,2023-2024 +read a second time,2023-06-28,['reading-2'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-12,['committee-passage'],MI,2023-2024 +transmitted,2024-02-29,[],MI,2023-2024 +referred to second reading,2023-10-25,[],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +read a first time,2023-04-19,['reading-1'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 211 Yeas 56 Nays 52 Excused 0 Not Voting 2,2024-06-25,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-11-02,[],MI,2023-2024 +passed; given immediate effect Roll Call # 257 Yeas 59 Nays 49 Excused 0 Not Voting 2,2023-06-28,['passage'],MI,2023-2024 +transmitted,2023-09-19,[],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +received on 05/11/2023,2023-05-16,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-03-22,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-06-21,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-05-16,['referral-committee'],MI,2023-2024 +received on 05/10/2023,2023-05-10,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-03-06,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 6 Yeas 100 Nays 8 Excused 0 Not Voting 2,2023-01-26,['passage'],MI,2023-2024 +referred to Committee on Education,2023-06-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-21,['referral-committee'],MI,2023-2024 +transmitted,2023-04-13,[],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +transmitted,2023-09-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-02-29,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-08,['committee-passage'],MI,2023-2024 +transmitted,2023-05-10,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2024-03-14,['committee-passage'],MI,2023-2024 +transmitted,2024-03-13,[],MI,2023-2024 +read a first time,2023-10-31,['reading-1'],MI,2023-2024 +referred to second reading,2023-06-22,[],MI,2023-2024 +transmitted,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2023-06-28,['referral-committee'],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-06-27,['referral-committee'],MI,2023-2024 +amended,2023-06-22,[],MI,2023-2024 +received on 05/11/2023,2023-05-16,['introduction'],MI,2023-2024 +read a second time,2023-10-17,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-27,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-25,['referral-committee'],MI,2023-2024 +referred to second reading,2024-05-22,[],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +substitute (H-1) reconsidered,2023-03-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 249 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +transmitted,2023-10-17,[],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-24,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 75 Yeas 56 Nays 49 Excused 0 Not Voting 5,2024-05-08,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-19,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-06-28,['referral-committee'],MI,2023-2024 +transmitted,2023-09-20,[],MI,2023-2024 +read a third time,2023-05-10,['reading-3'],MI,2023-2024 +transmitted,2023-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 410 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-10-25,['passage'],MI,2023-2024 +transmitted,2023-06-22,[],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-04-25,['referral-committee'],MI,2023-2024 +title amendment agreed to,2023-03-16,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-03,['committee-passage'],MI,2023-2024 +transmitted,2023-03-16,[],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-17,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 60 Yeas 56 Nays 50 Excused 0 Not Voting 4,2024-05-08,['passage'],MI,2023-2024 +title amended,2024-05-08,[],MI,2023-2024 +notice given to discharge committee,2024-05-07,[],MI,2023-2024 +referred to Committee on Judiciary,2023-03-08,['referral-committee'],MI,2023-2024 +transmitted,2023-05-10,[],MI,2023-2024 +received on 05/02/2024,2024-05-02,['introduction'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-03-09,['referral-committee'],MI,2023-2024 +rule suspended,2024-05-14,[],MI,2023-2024 +rule suspended,2024-05-14,[],MI,2023-2024 +transmitted,2023-09-20,[],MI,2023-2024 +RULES SUSPENDED,2024-06-11,[],MI,2023-2024 +referred to Committee on Judiciary,2023-10-11,['referral-committee'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-02,['amendment-failure'],MI,2023-2024 +placed on second reading,2024-05-14,[],MI,2023-2024 +reported with recommendation with substitute (H-5),2024-06-11,['committee-passage'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-12,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-11,['committee-passage'],MI,2023-2024 +PASSED ROLL CALL # 14 YEAS 23 NAYS 15 EXCUSED 0 NOT VOTING 0,2023-01-26,['passage'],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 458 Yeas 106 Nays 4 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-07-30,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-07-30,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-07-30,['referral-committee'],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +transmitted,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-04-09,['referral-committee'],MI,2023-2024 +received on 05/09/2023,2023-05-10,['introduction'],MI,2023-2024 +title amended,2023-03-02,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-19,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-09,['referral-committee'],MI,2023-2024 +transmitted,2023-09-27,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-03-16,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-11,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-19,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-10-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-10-03,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-11-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-10-17,['referral-committee'],MI,2023-2024 +rule suspended,2024-05-14,[],MI,2023-2024 +notice given to discharge committee,2023-11-07,[],MI,2023-2024 +received on 05/09/2023,2023-05-10,['introduction'],MI,2023-2024 +transmitted,2024-05-21,[],MI,2023-2024 +received on 09/17/2024,2024-09-17,['introduction'],MI,2023-2024 +transmitted,2023-05-10,[],MI,2023-2024 +referred to Committee on Appropriations,2024-09-17,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-10,['referral-committee'],MI,2023-2024 +read a first time,2024-09-17,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-05-30,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-31,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-05-30,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2024-05-30,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 110 Yeas 58 Nays 49 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 112 Yeas 103 Nays 4 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +transmitted,2024-03-19,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 435 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-04-09,['referral-committee'],MI,2023-2024 +title amended,2023-10-24,[],MI,2023-2024 +transmitted,2023-03-16,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-02-20,['committee-passage'],MI,2023-2024 +transmitted,2023-06-22,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-01,['committee-passage'],MI,2023-2024 +transmitted,2024-06-11,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-10-24,['referral-committee'],MI,2023-2024 +read a third time,2023-11-02,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 42 Yeas 61 Nays 47 Excused 0 Not Voting 2,2023-03-22,['passage'],MI,2023-2024 +referred to Committee on Elections,2023-06-14,['referral-committee'],MI,2023-2024 +received on 03/16/2023,2023-03-21,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-05-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-05-01,['referral-committee'],MI,2023-2024 +vote reconsidered,2024-06-11,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2023-10-11,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-31,['committee-passage'],MI,2023-2024 +read a second time,2024-06-04,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-11-01,['referral-committee'],MI,2023-2024 +passed by 2/3 vote; given immediate effect Roll Call # 575 Yeas 80 Nays 27 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +read a second time,2024-02-27,['reading-2'],MI,2023-2024 +referred to Committee on Tax Policy,2023-04-25,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 200 Yeas 56 Nays 53 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +transmitted,2023-05-10,[],MI,2023-2024 +per Rule 41 referred to Committee on Criminal Justice,2024-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-11-01,['referral-committee'],MI,2023-2024 +read a second time,2024-06-11,['reading-2'],MI,2023-2024 +amendment(s) reconsidered,2024-05-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 100 Yeas 102 Nays 5 Excused 0 Not Voting 3,2023-05-11,['passage'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-28,['committee-passage'],MI,2023-2024 +transmitted,2023-06-22,[],MI,2023-2024 +title amended,2023-11-08,[],MI,2023-2024 +referred to Committee on Health Policy,2023-11-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2023-10-03,['referral-committee'],MI,2023-2024 +title amended,2023-10-31,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-13,['committee-passage'],MI,2023-2024 +referred to second reading,2024-05-21,[],MI,2023-2024 +PASSED ROLL CALL # 424 YEAS 27 NAYS 10 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +referred to second reading,2024-03-12,[],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +referred to second reading,2024-03-12,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-25,['referral-committee'],MI,2023-2024 +passed Roll Call # 431 Yeas 80 Nays 30 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +title amended,2023-10-31,[],MI,2023-2024 +motion to discharge committee approved,2024-06-20,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-25,['committee-passage'],MI,2023-2024 +read a second time,2024-06-25,['reading-2'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +read a second time,2024-06-25,['reading-2'],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +referred to second reading,2024-05-21,[],MI,2023-2024 +referred to second reading,2024-02-22,[],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2024-06-26,['referral-committee'],MI,2023-2024 +transmitted,2023-11-02,[],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2024-06-26,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-06-06,['committee-passage'],MI,2023-2024 +transmitted,2024-06-25,[],MI,2023-2024 +received on 06/26/2024,2024-06-26,['introduction'],MI,2023-2024 +transmitted,2023-05-10,[],MI,2023-2024 +referred to second reading,2023-09-28,[],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-22,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-06-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-02-13,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2023-06-14,['referral-committee'],MI,2023-2024 +title amended,2023-10-17,[],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-11-14,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 258 Yeas 104 Nays 6 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-18,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-11-02,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-12,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-17,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-04-19,[],MI,2023-2024 +read a second time,2024-05-21,['reading-2'],MI,2023-2024 +read a second time,2023-09-06,['reading-2'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-07,['committee-passage'],MI,2023-2024 +referred to second reading,2023-10-05,[],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +transmitted,2023-10-24,[],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +title amended,2023-03-08,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-02,['committee-passage'],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-10-18,[],MI,2023-2024 +rule suspended,2024-05-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-13,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2024-09-17,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 218 Yeas 67 Nays 42 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-10-19,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-25,['referral-committee'],MI,2023-2024 +referred to second reading,2023-03-08,[],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-04-18,['committee-passage'],MI,2023-2024 +read a first time,2023-05-10,['reading-1'],MI,2023-2024 +reported with recommendation without amendment,2023-04-11,['committee-passage'],MI,2023-2024 +read a first time,2023-05-10,['reading-1'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-06-27,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-28,['referral-committee'],MI,2023-2024 +read a first time,2023-03-15,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-06-06,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-03-21,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-06,['committee-passage'],MI,2023-2024 +title amended,2024-06-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-03-07,[],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-06-27,[],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +received on 03/16/2023,2023-03-21,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ECONOMIC AND COMMUNITY DEVELOPMENT,2024-06-26,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-11-02,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-04-09,['referral-committee'],MI,2023-2024 +referred to second reading,2023-10-17,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-06-13,['committee-passage'],MI,2023-2024 +read a second time,2023-11-02,['reading-2'],MI,2023-2024 +notice given to discharge committee,2023-04-25,[],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +RULES SUSPENDED,2023-03-21,[],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +transmitted,2023-10-25,[],MI,2023-2024 +vote on passage reconsidered,2024-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2023-10-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-24,['referral-committee'],MI,2023-2024 +transmitted,2023-03-22,[],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-05-16,['committee-passage'],MI,2023-2024 +referred to second reading,2023-10-03,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-28,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-17,['committee-passage'],MI,2023-2024 +read a first time,2024-06-26,['reading-1'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +transmitted,2024-06-25,[],MI,2023-2024 +RULES SUSPENDED,2023-09-26,[],MI,2023-2024 +title amended,2024-06-26,[],MI,2023-2024 +transmitted,2023-03-16,[],MI,2023-2024 +referred to Committee on Elections,2023-04-19,['referral-committee'],MI,2023-2024 +transmitted,2024-05-21,[],MI,2023-2024 +Rep. Cameron Cavitt removed as cosponsor,2024-06-20,[],MI,2023-2024 +transmitted,2023-05-11,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-01,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-11-09,[],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-05-15,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +adverse roll call,2023-09-28,[],MI,2023-2024 +referred to second reading,2023-09-12,[],MI,2023-2024 +transmitted,2023-10-17,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-21,['committee-passage'],MI,2023-2024 +placed on second reading,2024-06-20,[],MI,2023-2024 +transmitted,2024-05-21,[],MI,2023-2024 +read a second time,2024-05-15,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-19,['committee-passage'],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +placed on third reading,2024-06-04,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-20,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-03-21,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-09,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-28,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-10-03,['referral-committee'],MI,2023-2024 +transmitted,2023-03-02,[],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +read a second time,2023-06-22,['reading-2'],MI,2023-2024 +read a second time,2024-06-12,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-03-23,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-10-31,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-12,['referral-committee'],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +referred to Committee on Elections,2023-06-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2024-03-05,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-25,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-25,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-31,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-31,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-11,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +received on 05/11/2023,2023-05-16,['introduction'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-26,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-10-18,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-11-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-12,['referral-committee'],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +RULES SUSPENDED,2023-09-26,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-25,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-20,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-06-21,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-06-15,['referral-committee'],MI,2023-2024 +notice given to discharge committee,2023-04-25,[],MI,2023-2024 +received on 06/28/2023,2023-06-28,['introduction'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-21,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2024-06-13,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-02,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-21,['referral-committee'],MI,2023-2024 +placed on third reading,2023-06-28,[],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-31,['referral-committee'],MI,2023-2024 +placed on second reading,2024-05-14,[],MI,2023-2024 +title amended,2023-06-28,[],MI,2023-2024 +placed on third reading,2023-09-06,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-11-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-20,['committee-passage'],MI,2023-2024 +placed on third reading,2024-02-21,[],MI,2023-2024 +received on 03/16/2023,2023-03-21,['introduction'],MI,2023-2024 +placed on second reading,2024-05-14,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-09-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-06-27,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2024-06-11,['committee-passage'],MI,2023-2024 +substitute (H-1) not adopted,2023-03-22,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-29,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2024-03-14,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2023-11-09,['referral-committee'],MI,2023-2024 +vote reconsidered,2023-10-31,[],MI,2023-2024 +transmitted,2024-04-18,[],MI,2023-2024 +referred to second reading,2023-10-11,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-09-20,['referral-committee'],MI,2023-2024 +amended,2024-06-11,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-15,['referral-committee'],MI,2023-2024 +title amended,2023-11-01,[],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-03-14,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2024-06-26,['referral-committee'],MI,2023-2024 +motion to discharge committee approved,2023-11-08,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-05-16,['referral-committee'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-22,['referral-committee'],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-19,['referral-committee'],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +referred to second reading,2023-05-10,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-25,[],MI,2023-2024 +placed on second reading,2024-05-14,[],MI,2023-2024 +transmitted,2023-05-11,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-06,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +placed on second reading,2023-05-17,[],MI,2023-2024 +title amended,2023-11-09,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2024-07-30,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-08,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a first time,2023-05-10,['reading-1'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-25,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-11-02,['referral-committee'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-05-30,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-24,['referral-committee'],MI,2023-2024 +read a second time,2024-06-18,['reading-2'],MI,2023-2024 +referred to Committee on Labor,2023-03-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-07-30,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-19,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-21,['referral-committee'],MI,2023-2024 +motion to discharge committee approved,2024-05-08,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-03,['referral-committee'],MI,2023-2024 +"per Rule 41 referred to Committee on Military, Veterans and Homeland Security",2023-07-18,[],MI,2023-2024 +received on 01/26/2023,2023-01-26,['introduction'],MI,2023-2024 +read a second time,2024-05-21,['reading-2'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-06-28,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-25,['referral-committee'],MI,2023-2024 +amendment(s) withdrawn,2024-05-08,[],MI,2023-2024 +read a first time,2024-09-17,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +RULES SUSPENDED,2023-10-18,[],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-27,['committee-passage'],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +passed; given immediate effect Roll Call # 483 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-11-02,['passage'],MI,2023-2024 +transmitted,2023-09-27,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-11,[],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +title amended,2024-05-08,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-20,['committee-passage'],MI,2023-2024 +placed on third reading,2024-02-27,[],MI,2023-2024 +"per Rule 41 referred to Committee on Military, Veterans and Homeland Security",2023-07-18,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +read a first time,2023-05-10,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-19,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-09-26,[],MI,2023-2024 +transmitted,2023-11-08,[],MI,2023-2024 +read a second time,2023-04-27,['reading-2'],MI,2023-2024 +transmitted,2023-01-26,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-15,['committee-passage'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +RULES SUSPENDED,2023-03-21,[],MI,2023-2024 +passed; given immediate effect Roll Call # 461 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +House requests return,2024-06-04,[],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2024-06-26,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-09-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-31,['committee-passage'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-06-27,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-10,['committee-passage'],MI,2023-2024 +rule suspended,2023-06-28,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-12,['referral-committee'],MI,2023-2024 +placed on third reading,2023-10-17,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-14,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-01,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-06-20,['committee-passage'],MI,2023-2024 +referred to Committee on Education,2023-10-24,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-17,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-09-26,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-20,['committee-passage'],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-03-09,['referral-committee'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-03,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +title amended,2024-06-26,[],MI,2023-2024 +notice given to discharge committee,2023-06-27,[],MI,2023-2024 +rule suspended,2024-05-14,[],MI,2023-2024 +reported with recommendation without amendment,2023-06-21,['committee-passage'],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +PASSED ROLL CALL # 262 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-11,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-15,['referral-committee'],MI,2023-2024 +placed on second reading,2023-11-08,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-19,['referral-committee'],MI,2023-2024 +transmitted,2023-09-12,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-02,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-10-10,[],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +rule suspended,2024-05-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-27,['committee-passage'],MI,2023-2024 +referred to Committee on Regulatory Reform,2024-06-26,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-28,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-07,['referral-committee'],MI,2023-2024 +received on 03/16/2023,2023-03-21,['introduction'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2023-03-23,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-06-27,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-06,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +referred to second reading,2023-11-08,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-21,['referral-committee'],MI,2023-2024 +transmitted,2023-09-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-14,['referral-committee'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-31,['committee-passage'],MI,2023-2024 +placed on third reading,2024-05-09,[],MI,2023-2024 +read a second time,2024-02-13,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-05-07,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-09-26,[],MI,2023-2024 +transmitted,2023-09-20,[],MI,2023-2024 +read a third time,2023-10-18,['reading-3'],MI,2023-2024 +referred to second reading,2024-04-24,[],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-04-19,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-06,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-4),2023-06-13,['committee-passage'],MI,2023-2024 +PASSED ROLL CALL # 111 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-05-02,['passage'],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-27,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-05-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-09,['referral-committee'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-19,['referral-committee'],MI,2023-2024 +read a second time,2024-06-18,['reading-2'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-13,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-14,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-06-22,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-13,['committee-passage'],MI,2023-2024 +transmitted,2023-10-19,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-07-30,['referral-committee'],MI,2023-2024 +read a second time,2024-06-11,['reading-2'],MI,2023-2024 +transmitted,2023-10-17,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-10-05,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-03,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-07,['committee-passage'],MI,2023-2024 +read a second time,2024-06-18,['reading-2'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-11-09,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-06-28,['referral-committee'],MI,2023-2024 +transmitted,2023-06-28,[],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +title amended,2024-05-23,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-09-19,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-11-08,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-11,['referral-committee'],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +notice given to discharge committee,2023-06-27,[],MI,2023-2024 +"per Rule 41 referred to Committee on Military, Veterans and Homeland Security",2023-07-18,[],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-06-25,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-06-21,['committee-passage'],MI,2023-2024 +placed on second reading,2023-01-31,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-06-25,['referral-committee'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2024-03-19,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +read a second time,2024-02-13,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2024-06-18,['referral-committee'],MI,2023-2024 +read a second time,2024-06-11,['reading-2'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-21,['committee-passage'],MI,2023-2024 +placed on third reading,2024-05-09,[],MI,2023-2024 +passed; given immediate effect Roll Call # 166 Yeas 56 Nays 53 Excused 0 Not Voting 1,2024-06-12,['passage'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-07,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 183 Yeas 104 Nays 5 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-31,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-12,['referral-committee'],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +RULES SUSPENDED,2023-01-31,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-02-22,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +notice given to discharge committee,2024-06-18,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-06,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-05-23,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-28,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-09-14,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-02,['committee-passage'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +RULES SUSPENDED,2023-09-26,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-20,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-06,['committee-passage'],MI,2023-2024 +received on 05/02/2024,2024-05-02,['introduction'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-21,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-04-17,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-09,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-5),2023-09-20,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-31,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-11-02,['referral-committee'],MI,2023-2024 +House requests return,2024-06-26,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-08,['committee-passage'],MI,2023-2024 +read a first time,2023-05-10,['reading-1'],MI,2023-2024 +notice given to discharge committee,2023-06-13,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-04-23,['committee-passage'],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +rule suspended,2023-01-26,[],MI,2023-2024 +referred to second reading,2024-05-21,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-06-21,['referral-committee'],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-15,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-10-03,['committee-passage'],MI,2023-2024 +read a second time,2024-03-12,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-04-23,['referral-committee'],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-08,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-25,['committee-passage'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a second time,2023-10-05,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-11-02,[],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +referred to second reading,2023-06-08,[],MI,2023-2024 +placed on second reading,2023-05-17,[],MI,2023-2024 +placed on third reading,2024-06-12,[],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +reported with recommendation without amendment,2023-10-24,['committee-passage'],MI,2023-2024 +motion to discharge committee approved,2023-06-28,[],MI,2023-2024 +motion to discharge committee approved,2023-11-08,[],MI,2023-2024 +notice given to discharge committee,2023-11-01,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-19,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-19,['referral-committee'],MI,2023-2024 +referred to second reading,2024-03-06,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-06,['committee-passage'],MI,2023-2024 +referred to Committee on Elections,2023-06-14,['referral-committee'],MI,2023-2024 +placed on third reading,2024-06-12,[],MI,2023-2024 +Rep. Gregory Alexander removed as cosponsor,2023-11-02,[],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +transmitted,2023-03-21,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-06,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-25,['referral-committee'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-24,['referral-committee'],MI,2023-2024 +adverse roll call,2023-09-28,[],MI,2023-2024 +referred to Committee on Judiciary,2023-03-21,['referral-committee'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-06-18,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-09-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-19,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-10-18,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-11-14,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-13,['referral-committee'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +referred to second reading,2023-06-22,[],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-25,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON NATURAL RESOURCES AND AGRICULTURE,2023-10-10,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-09,['committee-passage'],MI,2023-2024 +transmitted,2023-05-18,[],MI,2023-2024 +RULES SUSPENDED,2023-09-26,[],MI,2023-2024 +placed on third reading,2024-06-12,[],MI,2023-2024 +read a third time,2023-10-18,['reading-3'],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-03-16,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-07-30,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-13,['referral-committee'],MI,2023-2024 +referred to second reading,2023-06-27,[],MI,2023-2024 +referred to second reading,2024-02-27,[],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-04-12,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-04-23,['referral-committee'],MI,2023-2024 +title amended,2023-11-08,[],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +transmitted,2023-10-19,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-07-30,['referral-committee'],MI,2023-2024 +referred to second reading,2023-03-23,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-20,['referral-committee'],MI,2023-2024 +referred to Committee on Government Operations,2024-06-26,['referral-committee'],MI,2023-2024 +Rep. Joseph Aragona removed as cosponsor,2023-11-01,[],MI,2023-2024 +referred to Committee on Judiciary,2023-03-08,['referral-committee'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-11-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-11-07,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-21,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-13,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2024-05-14,['committee-passage'],MI,2023-2024 +transmitted,2024-04-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-27,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-04-17,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-09-14,['committee-passage'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-02-20,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-02-28,['committee-passage'],MI,2023-2024 +substitute (H-6) adopted,2023-10-31,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-05-16,['referral-committee'],MI,2023-2024 +read a second time,2024-06-11,['reading-2'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-15,['referral-committee'],MI,2023-2024 +postponed temporarily,2023-11-02,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-01,['referral-committee'],MI,2023-2024 +transmitted,2023-03-08,[],MI,2023-2024 +placed on third reading,2024-02-21,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-13,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-21,['referral-committee'],MI,2023-2024 +placed on second reading,2024-05-14,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-21,['referral-committee'],MI,2023-2024 +received on 03/16/2023,2023-03-21,['introduction'],MI,2023-2024 +rule suspended,2024-05-15,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-06-27,[],MI,2023-2024 +read a second time,2024-05-21,['reading-2'],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-05-23,['referral-committee'],MI,2023-2024 +transmitted,2023-09-27,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-28,['committee-passage'],MI,2023-2024 +read a first time,2023-05-10,['reading-1'],MI,2023-2024 +motion to discharge committee approved,2023-06-14,[],MI,2023-2024 +referred to Committee on Insurance and Financial Services,2023-10-24,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-09-12,['committee-passage'],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +substitute (H-1) adopted,2023-06-20,[],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +placed on second reading,2024-05-14,[],MI,2023-2024 +placed on second reading,2023-10-12,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-23,['committee-passage'],MI,2023-2024 +referred to Committee on Education,2023-11-02,['referral-committee'],MI,2023-2024 +transmitted,2023-05-02,[],MI,2023-2024 +received on 05/10/2023,2023-05-10,['introduction'],MI,2023-2024 +transmitted,2023-09-27,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-08,['committee-passage'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-26,['committee-passage'],MI,2023-2024 +referred to Committee on Labor,2023-03-15,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-17,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-03,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +transmitted,2023-05-11,[],MI,2023-2024 +referred to Committee on Health Policy,2023-10-24,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-05-22,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-03-21,[],MI,2023-2024 +read a first time,2023-06-22,['reading-1'],MI,2023-2024 +transmitted,2023-06-20,[],MI,2023-2024 +referred to second reading,2024-03-06,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-25,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-09-07,[],MI,2023-2024 +passed; given immediate effect Roll Call # 88 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-10,['passage'],MI,2023-2024 +received on 05/11/2023,2023-05-16,['introduction'],MI,2023-2024 +read a second time,2024-04-30,['reading-2'],MI,2023-2024 +Rep. Joseph Aragona removed as cosponsor,2023-11-01,[],MI,2023-2024 +RULES SUSPENDED,2023-11-01,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-26,['referral-committee'],MI,2023-2024 +referred to second reading,2023-10-18,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2024-06-26,['referral-committee'],MI,2023-2024 +read a second time,2024-06-12,['reading-2'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +rule suspended,2023-01-24,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-12,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +read a first time,2023-11-01,['reading-1'],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-18,[],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-09-26,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-11-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-04-23,['committee-passage'],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-09-20,['referral-committee'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +RULES SUSPENDED,2024-06-25,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-06-27,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-26,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-26,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-21,['referral-committee'],MI,2023-2024 +read a second time,2023-10-05,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-11-09,[],MI,2023-2024 +passed; given immediate effect Roll Call # 72 Yeas 68 Nays 39 Excused 0 Not Voting 3,2023-05-02,['passage'],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-10,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-03-23,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-21,['committee-passage'],MI,2023-2024 +read a second time,2024-06-18,['reading-2'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2023-11-02,['committee-passage'],MI,2023-2024 +rule suspended,2024-05-14,[],MI,2023-2024 +referred to second reading,2023-09-28,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-26,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 365 Yeas 67 Nays 43 Excused 0 Not Voting 0,2023-10-17,['passage'],MI,2023-2024 +received on 03/16/2023,2023-03-21,['introduction'],MI,2023-2024 +read a first time,2023-10-24,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2024-06-26,['referral-committee'],MI,2023-2024 +substitute (H-1) adopted,2023-06-21,[],MI,2023-2024 +referred to Committee on Agriculture,2023-06-28,['referral-committee'],MI,2023-2024 +read a second time,2024-05-15,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +referred to Committee on Health Policy,2023-10-24,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-15,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +transmitted,2023-06-28,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-09,['committee-passage'],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +referred to second reading,2023-10-17,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-19,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-19,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-21,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-02-20,['committee-passage'],MI,2023-2024 +transmitted,2023-06-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +read a second time,2023-11-02,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-09-20,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-4),2024-03-14,['committee-passage'],MI,2023-2024 +read a second time,2023-06-22,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-08,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-02,['committee-passage'],MI,2023-2024 +transmitted,2023-04-13,[],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-03,['referral-committee'],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-19,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-05-15,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-05-16,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-09-19,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-03,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +referred to Committee on Appropriations,2024-06-25,['referral-committee'],MI,2023-2024 +read a first time,2023-05-10,['reading-1'],MI,2023-2024 +reported with recommendation without amendment,2023-10-26,['committee-passage'],MI,2023-2024 +rule suspended,2024-05-14,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-11,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-19,['referral-committee'],MI,2023-2024 +transmitted,2023-05-10,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-08,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-08,['referral-committee'],MI,2023-2024 +transmitted,2023-06-28,[],MI,2023-2024 +placed on second reading,2023-11-08,[],MI,2023-2024 +transmitted,2023-05-10,[],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-06-21,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-09,['committee-passage'],MI,2023-2024 +"referred to Committee on Energy, Communications, and Technology",2023-10-31,['referral-committee'],MI,2023-2024 +read a first time,2024-05-14,['reading-1'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-02,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-28,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-02,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-09-26,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-17,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-14,['referral-committee'],MI,2023-2024 +placed on second reading,2024-05-14,[],MI,2023-2024 +RULES SUSPENDED,2023-10-18,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-11-08,['committee-passage'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +transmitted,2023-02-01,[],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2024-05-15,['committee-passage'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +reported with recommendation without amendment,2023-05-16,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-10-31,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-08,['committee-passage'],MI,2023-2024 +placed on third reading,2023-10-17,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-06-14,['committee-passage'],MI,2023-2024 +transmitted,2023-03-22,[],MI,2023-2024 +RULES SUSPENDED,2023-09-26,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-25,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-15,['referral-committee'],MI,2023-2024 +rule suspended,2024-06-20,[],MI,2023-2024 +read a second time,2024-06-04,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-10,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-02-22,['referral-committee'],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +read a second time,2023-06-28,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-09-26,[],MI,2023-2024 +read a first time,2023-05-10,['reading-1'],MI,2023-2024 +received on 05/11/2023,2023-05-16,['introduction'],MI,2023-2024 +reported with recommendation without amendment,2024-05-14,['committee-passage'],MI,2023-2024 +read a first time,2023-05-10,['reading-1'],MI,2023-2024 +referred to second reading,2023-09-28,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-21,['referral-committee'],MI,2023-2024 +placed on second reading,2023-11-01,[],MI,2023-2024 +transmitted,2023-05-10,[],MI,2023-2024 +read a first time,2023-04-25,['reading-1'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-15,['committee-passage'],MI,2023-2024 +transmitted,2023-05-02,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-11-02,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-04-23,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-10,['referral-committee'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-22,['referral-committee'],MI,2023-2024 +read a third time,2023-10-18,['reading-3'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-07,['committee-passage'],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-21,['referral-committee'],MI,2023-2024 +reported with recommendation with amendment(s),2023-09-19,['committee-passage'],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-23,['referral-committee'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-24,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-08,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-03,['committee-passage'],MI,2023-2024 +amended,2023-10-05,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-10-04,['committee-passage'],MI,2023-2024 +placed on third reading,2024-05-21,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-02-28,['committee-passage'],MI,2023-2024 +substitute (H-2) adopted,2023-06-21,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-06-14,['referral-committee'],MI,2023-2024 +substitute (H-1) adopted,2024-06-18,[],MI,2023-2024 +notice given to discharge committee,2023-10-31,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-15,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-03-21,[],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +placed on third reading,2024-04-30,[],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-03,['referral-committee'],MI,2023-2024 +referred to second reading,2023-05-16,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-08,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-17,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-27,['referral-committee'],MI,2023-2024 +placed on third reading,2024-05-21,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-03-14,['committee-passage'],MI,2023-2024 +referred to Committee on Health Policy,2023-10-24,['referral-committee'],MI,2023-2024 +referred to second reading,2024-05-15,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-07,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-09,['referral-committee'],MI,2023-2024 +read a first time,2023-05-10,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-02,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-01,['referral-committee'],MI,2023-2024 +motion to discharge committee approved,2023-01-24,[],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-02-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-21,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-07,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-11,[],MI,2023-2024 +referred to Committee on Appropriations,2023-05-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-11-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-25,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH AMENDMENT(S),2023-04-19,['committee-passage'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-06-28,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON VETERANS AND EMERGENCY SERVICES,2024-05-30,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-05-16,['referral-committee'],MI,2023-2024 +transmitted,2023-05-10,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-11-08,['referral-committee'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-17,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-21,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-28,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-17,['committee-passage'],MI,2023-2024 +placed on third reading,2024-06-12,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-06,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-09,['referral-committee'],MI,2023-2024 +substitute (H-1) adopted,2023-06-21,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-18,['referral-committee'],MI,2023-2024 +placed on third reading,2024-06-04,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +read a second time,2024-05-15,['reading-2'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-03,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-04-19,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-19,['referral-committee'],MI,2023-2024 +placed on second reading,2023-11-01,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-27,['committee-passage'],MI,2023-2024 +referred to second reading,2023-09-12,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-17,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-06-28,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-25,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-14,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-08,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2023-11-02,['referral-committee'],MI,2023-2024 +referred to Committee on Criminal Justice,2023-06-22,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-10,['referral-committee'],MI,2023-2024 +placed on second reading,2024-05-14,[],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +rule suspended,2024-06-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-19,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-03,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +read a second time,2023-10-05,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-02-20,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-08,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-28,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-23,['referral-committee'],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-07,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-17,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-11-01,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-06-21,['referral-committee'],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +placed on second reading,2023-11-08,[],MI,2023-2024 +vote reconsidered,2024-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-4),2024-03-14,['referral-committee'],MI,2023-2024 +placed on second reading,2024-05-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-04-19,['committee-passage'],MI,2023-2024 +rule suspended,2023-03-21,[],MI,2023-2024 +referred to second reading,2023-10-26,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-15,['referral-committee'],MI,2023-2024 +substitute (H-1) adopted,2023-11-02,[],MI,2023-2024 +referred to second reading,2024-05-15,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON APPROPRIATIONS,2024-06-18,[],MI,2023-2024 +referred to Committee on Appropriations,2023-05-10,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-23,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-27,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-09,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-03-23,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-04-12,['committee-passage'],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +placed on third reading,2023-06-22,[],MI,2023-2024 +notice given to discharge committee,2023-06-20,[],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +"referred to Committee on Natural Resources, Environment, Tourism and Outdoor Recreation",2023-04-25,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-02,['committee-passage'],MI,2023-2024 +rule suspended,2024-05-14,[],MI,2023-2024 +referred to Committee on Appropriations,2023-05-10,['referral-committee'],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a first time,2023-06-28,['reading-1'],MI,2023-2024 +placed on second reading,2023-06-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-27,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-11-14,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +read a second time,2024-06-18,['reading-2'],MI,2023-2024 +transmitted,2023-10-17,[],MI,2023-2024 +placed on second reading,2024-05-15,[],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-20,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-07,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-28,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-02-20,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-31,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-19,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-04-25,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-05,['committee-passage'],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-06-28,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-18,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-05,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-11-08,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-09,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-10,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-18,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-02,[],MI,2023-2024 +referred to second reading,2024-05-16,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-28,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-11-01,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2023-11-14,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-03-07,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-19,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-09-19,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-10-31,[],MI,2023-2024 +placed on immediate passage,2023-09-06,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-18,['referral-committee'],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-11-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-20,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-26,[],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +read a third time,2024-02-27,['reading-3'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-10),2024-05-16,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2024-04-23,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-07,['committee-passage'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-16,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-11-09,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-24,['committee-passage'],MI,2023-2024 +title amended,2023-11-02,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-17,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-18,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +read a third time,2024-05-09,['reading-3'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-5),2023-09-20,['referral-committee'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-21,['referral-committee'],MI,2023-2024 +read a third time,2023-10-18,['reading-3'],MI,2023-2024 +transmitted,2023-03-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-27,['committee-passage'],MI,2023-2024 +placed on third reading,2023-09-06,[],MI,2023-2024 +read a second time,2023-10-17,['reading-2'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-10-25,['referral-committee'],MI,2023-2024 +read a second time,2023-03-08,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-04-18,['referral-committee'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-06,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-17,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-07,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-06-27,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-04-18,['committee-passage'],MI,2023-2024 +motion to discharge committee approved,2023-04-26,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2024-06-26,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-03-23,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-10-31,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-14,['committee-passage'],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-11-02,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-10-05,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-14,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-06-27,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-10-18,[],MI,2023-2024 +referred to Committee on Labor,2024-06-26,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-05-30,['referral-committee'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +read a second time,2023-09-26,['reading-2'],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-18,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-24,['committee-passage'],MI,2023-2024 +read a second time,2023-10-04,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-21,['referral-committee'],MI,2023-2024 +read a second time,2023-06-22,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-10-19,['committee-passage'],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-21,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-06,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-10,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-06-28,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-06-20,['committee-passage'],MI,2023-2024 +referred to second reading,2023-04-11,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-10-19,[],MI,2023-2024 +placed on second reading,2024-05-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-18,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-06-27,[],MI,2023-2024 +motion to discharge committee approved,2023-06-28,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-19,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-05-23,['committee-passage'],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +RULES SUSPENDED,2023-01-31,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-07,['referral-committee'],MI,2023-2024 +placed on immediate passage,2023-10-12,[],MI,2023-2024 +referred to Committee on Appropriations,2023-05-10,['referral-committee'],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-11-02,['referral-committee'],MI,2023-2024 +placed on third reading,2024-06-11,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +referred to Committee on Elections,2024-09-17,['referral-committee'],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-06-28,[],MI,2023-2024 +read a third time,2024-06-11,['reading-3'],MI,2023-2024 +placed on second reading,2024-05-08,[],MI,2023-2024 +rule suspended,2023-03-21,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-25,['committee-passage'],MI,2023-2024 +placed on third reading,2024-06-18,[],MI,2023-2024 +referred to Committee on Appropriations,2023-05-10,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-08,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-05-16,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-13,['committee-passage'],MI,2023-2024 +motion to discharge committee approved,2023-04-26,[],MI,2023-2024 +referred to Committee on Appropriations,2024-05-07,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-16,['referral-committee'],MI,2023-2024 +placed on third reading,2024-06-25,[],MI,2023-2024 +placed on second reading,2023-11-08,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 155 Yeas 100 Nays 9 Excused 0 Not Voting 1,2024-06-11,['passage'],MI,2023-2024 +read a second time,2023-05-18,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-26,['referral-committee'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-09-26,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-20,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-27,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-20,['referral-committee'],MI,2023-2024 +referred to second reading,2024-06-11,[],MI,2023-2024 +transmitted,2023-06-28,[],MI,2023-2024 +read a second time,2024-05-15,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-21,['referral-committee'],MI,2023-2024 +placed on third reading,2023-03-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-21,['committee-passage'],MI,2023-2024 +placed on third reading,2024-06-25,[],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +passed; given immediate effect Roll Call # 455 Yeas 102 Nays 8 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +title amended,2023-06-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-31,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-26,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 494 Yeas 88 Nays 21 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2024-06-26,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-28,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-09,['referral-committee'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-21,['committee-passage'],MI,2023-2024 +substitute (H-1) adopted,2024-05-15,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-11-09,[],MI,2023-2024 +placed on third reading,2023-06-22,[],MI,2023-2024 +read a second time,2024-06-20,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +placed on third reading,2024-06-12,[],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +referred to second reading,2024-05-15,[],MI,2023-2024 +RULES SUSPENDED,2023-11-01,[],MI,2023-2024 +referred to Committee on Judiciary,2023-03-21,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-03,['referral-committee'],MI,2023-2024 +read a first time,2023-01-26,['reading-1'],MI,2023-2024 +referred to Committee on Economic Development and Small Business,2023-03-15,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-19,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-11-07,['committee-passage'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +read a second time,2023-10-17,['reading-2'],MI,2023-2024 +passed; given immediate effect Roll Call # 432 Yeas 81 Nays 29 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-26,['committee-passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-05-17,['referral-committee'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-21,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-27,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-14,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-31,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-14,['committee-passage'],MI,2023-2024 +placed on third reading,2024-05-21,[],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-27,['committee-passage'],MI,2023-2024 +substitute (H-1) adopted,2023-04-27,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-29,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +motion to discharge committee approved,2024-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-02-06,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +read a second time,2023-09-28,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-04-30,['committee-passage'],MI,2023-2024 +motion to discharge committee approved,2023-06-28,[],MI,2023-2024 +referred to second reading,2023-09-14,[],MI,2023-2024 +REFERRED TO COMMITTEE ON EDUCATION,2023-03-22,['referral-committee'],MI,2023-2024 +reported with recommendation without amendment,2023-04-12,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 378 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-10-18,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-01-31,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-04-23,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-27,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-21,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-14,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-11-14,['referral-committee'],MI,2023-2024 +placed on third reading,2024-06-11,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +read a second time,2023-06-14,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-05,['referral-committee'],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +read a second time,2024-06-13,['reading-2'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-02-20,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-06,['committee-passage'],MI,2023-2024 +read a second time,2023-06-22,['reading-2'],MI,2023-2024 +reported with recommendation without amendment,2024-06-13,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-14,['committee-passage'],MI,2023-2024 +read a second time,2023-03-23,['reading-2'],MI,2023-2024 +reported with recommendation without amendment,2023-03-15,['committee-passage'],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-19,['committee-passage'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-04-12,['committee-passage'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +referred to second reading,2023-04-13,[],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-06-27,[],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +placed on third reading,2024-02-13,[],MI,2023-2024 +read a second time,2024-05-21,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-20,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-11-01,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +read a third time,2024-02-27,['reading-3'],MI,2023-2024 +motion to discharge committee approved,2023-01-26,[],MI,2023-2024 +read a third time,2024-06-13,['reading-3'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-03-09,['referral-committee'],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +transmitted,2023-11-08,[],MI,2023-2024 +referred to second reading,2023-06-06,[],MI,2023-2024 +referred to second reading,2023-10-17,[],MI,2023-2024 +transmitted,2023-11-09,[],MI,2023-2024 +read a third time,2024-05-14,['reading-3'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-03-14,['committee-passage'],MI,2023-2024 +referred to second reading,2023-10-24,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-08,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 426 Yeas 66 Nays 44 Excused 0 Not Voting 0,2023-10-31,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 260 Yeas 69 Nays 39 Excused 0 Not Voting 2,2024-06-27,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-06-15,['referral-committee'],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +read a second time,2023-09-26,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-11-02,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-08,['committee-passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-26,[],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +transmitted,2023-06-21,[],MI,2023-2024 +motion to discharge committee approved,2023-06-28,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-08,[],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-11-09,[],MI,2023-2024 +placed on third reading,2024-06-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-09,['referral-committee'],MI,2023-2024 +placed on third reading,2024-06-11,[],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +placed on second reading,2023-06-28,[],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-22,['committee-passage'],MI,2023-2024 +received on 05/11/2023,2023-05-16,['introduction'],MI,2023-2024 +placed on third reading,2024-06-11,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-20,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-07,['referral-committee'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +substitute (H-1) adopted,2023-06-21,[],MI,2023-2024 +RULES SUSPENDED,2023-09-13,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-19,['committee-passage'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-27,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +transmitted,2024-06-12,[],MI,2023-2024 +passed; given immediate effect Roll Call # 454 Yeas 102 Nays 8 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-10,['referral-committee'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +motion to discharge committee approved,2023-11-01,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-17,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-02-22,['committee-passage'],MI,2023-2024 +read a third time,2024-06-13,['reading-3'],MI,2023-2024 +read a second time,2024-05-21,['reading-2'],MI,2023-2024 +referred to second reading,2023-09-28,[],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +read a second time,2023-06-22,['reading-2'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-04-20,['committee-passage'],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-19,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-03-07,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-05-24,[],MI,2023-2024 +read a second time,2024-06-18,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-06,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-15,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +read a third time,2024-05-14,['reading-3'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2024-06-26,['referral-committee'],MI,2023-2024 +placed on third reading,2024-02-13,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-05,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-20,['committee-passage'],MI,2023-2024 +referred to second reading,2023-09-14,[],MI,2023-2024 +RULES SUSPENDED,2023-09-26,[],MI,2023-2024 +read a second time,2023-09-06,['reading-2'],MI,2023-2024 +rule suspended,2024-05-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-25,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-19,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2024-06-26,['referral-committee'],MI,2023-2024 +placed on second reading,2024-05-14,[],MI,2023-2024 +transmitted,2024-06-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-10-10,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-06,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-03-14,['committee-passage'],MI,2023-2024 +read a second time,2023-06-27,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-04-30,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-23,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-09-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 379 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-10-18,['passage'],MI,2023-2024 +"referred to Committee on Transportation, Mobility and Infrastructure",2023-05-17,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-2),2023-10-31,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-26,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-25,['committee-passage'],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +reported with recommendation without amendment,2023-06-20,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-27,['referral-committee'],MI,2023-2024 +received on 05/02/2024,2024-05-02,['introduction'],MI,2023-2024 +referred to second reading,2024-06-18,[],MI,2023-2024 +referred to Committee on Appropriations,2024-05-07,['referral-committee'],MI,2023-2024 +title amended,2023-10-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-04-23,['referral-committee'],MI,2023-2024 +read a third time,2024-06-13,['reading-3'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +referred to Committee on Appropriations,2023-05-10,['referral-committee'],MI,2023-2024 +referred to second reading,2023-06-22,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-19,['committee-passage'],MI,2023-2024 +read a second time,2024-06-12,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE ON LABOR,2023-11-02,['referral-committee'],MI,2023-2024 +placed on third reading,2023-06-28,[],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +placed on third reading,2024-03-12,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-11-02,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-13,['referral-committee'],MI,2023-2024 +referred to second reading,2024-05-14,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2023-10-24,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-06,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-13,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-11-01,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-28,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-05,['committee-passage'],MI,2023-2024 +referred to second reading,2023-06-13,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-07,['referral-committee'],MI,2023-2024 +read a second time,2024-05-01,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-24,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-10-18,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-18,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-31,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-21,['committee-passage'],MI,2023-2024 +referred to second reading,2023-10-03,[],MI,2023-2024 +motion to discharge committee approved,2023-06-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-19,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-06-28,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-23,['referral-committee'],MI,2023-2024 +transmitted,2023-11-01,[],MI,2023-2024 +read a second time,2023-06-22,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-11-09,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-18,['committee-passage'],MI,2023-2024 +received on 03/16/2023,2023-03-21,['introduction'],MI,2023-2024 +placed on second reading,2024-05-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-03-23,['committee-passage'],MI,2023-2024 +transmitted,2024-05-23,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-25,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 272 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +reported with recommendation with amendment(s),2023-09-19,['committee-passage'],MI,2023-2024 +referred to second reading,2023-10-03,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-22,['committee-passage'],MI,2023-2024 +transmitted,2023-11-02,[],MI,2023-2024 +referred to second reading,2024-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-11-09,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-06-21,['referral-committee'],MI,2023-2024 +read a second time,2023-01-31,['reading-2'],MI,2023-2024 +substitute (H-3) adopted,2024-06-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-11-08,['referral-committee'],MI,2023-2024 +placed on third reading,2023-10-05,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-20,['committee-passage'],MI,2023-2024 +placed on third reading,2023-06-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 194 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +read a second time,2023-06-14,['reading-2'],MI,2023-2024 +read a third time,2024-06-12,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-08,[],MI,2023-2024 +read a second time,2023-09-19,['reading-2'],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-18,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 87 Yeas 101 Nays 6 Excused 0 Not Voting 3,2024-05-14,['passage'],MI,2023-2024 +placed on second reading,2023-06-28,[],MI,2023-2024 +passed; given immediate effect Roll Call # 14 Yeas 87 Nays 18 Excused 0 Not Voting 3,2024-02-27,['passage'],MI,2023-2024 +read a second time,2023-09-20,['reading-2'],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 195 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-07,['committee-passage'],MI,2023-2024 +referred to second reading,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-28,['referral-committee'],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +read a second time,2023-06-22,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-08,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-28,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-07,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 86 Yeas 101 Nays 6 Excused 0 Not Voting 3,2024-05-14,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-06,['committee-passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-06-27,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-14,['referral-committee'],MI,2023-2024 +placed on third reading,2023-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 178 Yeas 109 Nays 0 Excused 0 Not Voting 1,2024-06-13,['passage'],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-14,['committee-passage'],MI,2023-2024 +placed on third reading,2023-06-14,[],MI,2023-2024 +read a second time,2023-06-08,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-11-09,[],MI,2023-2024 +inserted full title,2023-11-01,[],MI,2023-2024 +read a second time,2023-06-22,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-6),2023-03-21,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-04-26,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-11-02,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-24,['referral-committee'],MI,2023-2024 +referred to second reading,2023-03-15,[],MI,2023-2024 +read a second time,2023-03-07,['reading-2'],MI,2023-2024 +notice given to discharge committee,2023-05-16,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-11,['committee-passage'],MI,2023-2024 +placed on second reading,2023-06-28,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-06-27,[],MI,2023-2024 +placed on second reading,2023-01-26,[],MI,2023-2024 +read a second time,2023-10-18,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-17,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 193 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +substitute (H-1) adopted,2023-09-06,[],MI,2023-2024 +referred to second reading,2023-04-12,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-02-06,['referral-committee'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-21,['referral-committee'],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-22,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +substitute (H-2) adopted,2024-06-12,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-11,['committee-passage'],MI,2023-2024 +inserted full title,2023-10-18,[],MI,2023-2024 +placed on third reading,2023-03-23,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-06-27,['committee-passage'],MI,2023-2024 +read a second time,2023-06-14,['reading-2'],MI,2023-2024 +inserted full title,2023-10-18,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-02,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON OVERSIGHT,2023-10-24,['referral-committee'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-24,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-11-09,[],MI,2023-2024 +placed on third reading,2023-09-26,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +placed on immediate passage,2024-03-12,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-01,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-11,['committee-passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-11-09,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-25,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-06,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-25,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-17,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-05-30,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-21,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +read a second time,2023-06-22,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-09,['committee-passage'],MI,2023-2024 +referred to second reading,2023-10-05,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +notice given to discharge committee,2023-05-16,[],MI,2023-2024 +read a second time,2023-10-04,['reading-2'],MI,2023-2024 +read a second time,2023-06-28,['reading-2'],MI,2023-2024 +read a first time,2023-03-21,['reading-1'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-17,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-04-30,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 453 Yeas 93 Nays 17 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +read a first time,2023-05-16,['reading-1'],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-26,['referral-committee'],MI,2023-2024 +placed on third reading,2023-06-22,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-22,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-06-27,['referral-committee'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +placed on immediate passage,2023-06-28,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-11-07,['referral-committee'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-08,['referral-committee'],MI,2023-2024 +placed on third reading,2024-06-13,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2024-06-26,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-02-20,['referral-committee'],MI,2023-2024 +placed on third reading,2024-05-01,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-06,['referral-committee'],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-20,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-26,[],MI,2023-2024 +referred to second reading,2024-06-13,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-11-02,['referral-committee'],MI,2023-2024 +placed on second reading,2024-06-20,[],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-21,[],MI,2023-2024 +placed on immediate passage,2024-02-13,[],MI,2023-2024 +notice given to discharge committee,2024-05-14,[],MI,2023-2024 +read a first time,2024-05-07,['reading-1'],MI,2023-2024 +REFERRED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-07-30,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-25,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-18,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-19,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-19,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-19,[],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-11-09,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-19,[],MI,2023-2024 +title amended,2023-10-31,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-11-02,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-04-30,[],MI,2023-2024 +PASSED ROLL CALL # 31 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2024-02-27,['passage'],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 196 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +placed on second reading,2023-11-01,[],MI,2023-2024 +placed on immediate passage,2024-02-13,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-13,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +read a second time,2024-05-15,['reading-2'],MI,2023-2024 +read a second time,2024-05-21,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-20,['committee-passage'],MI,2023-2024 +placed on second reading,2024-05-14,[],MI,2023-2024 +referred to Committee on Appropriations,2024-05-07,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-06,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2024-06-26,['referral-committee'],MI,2023-2024 +placed on third reading,2024-06-18,[],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2024-05-14,['reading-2'],MI,2023-2024 +motion to refer to third reading reconsidered,2024-06-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 177 Yeas 109 Nays 0 Excused 0 Not Voting 1,2024-06-13,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 171 Yeas 109 Nays 0 Excused 0 Not Voting 1,2024-06-13,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-04-23,['referral-committee'],MI,2023-2024 +read a third time,2024-06-12,['reading-3'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-02-01,['committee-passage'],MI,2023-2024 +read a third time,2024-06-12,['reading-3'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-11-09,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-05,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-23,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-22,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-01-11,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-07,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-27,[],MI,2023-2024 +read a second time,2023-06-20,['reading-2'],MI,2023-2024 +placed on third reading,2023-01-31,[],MI,2023-2024 +read a second time,2023-06-14,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-20,['referral-committee'],MI,2023-2024 +referred to second reading,2023-10-31,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-27,['committee-passage'],MI,2023-2024 +read a third time,2023-09-26,['reading-3'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-06-28,['referral-committee'],MI,2023-2024 +placed on third reading,2024-06-18,[],MI,2023-2024 +PASSED ROLL CALL # 684 YEAS 28 NAYS 7 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-17,[],MI,2023-2024 +referred to second reading,2023-04-12,[],MI,2023-2024 +substitute (H-1) adopted,2023-09-28,[],MI,2023-2024 +placed on second reading,2023-06-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-13,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-03,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-11-08,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-19,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-01,['referral-committee'],MI,2023-2024 +placed on third reading,2024-06-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-06-28,['referral-committee'],MI,2023-2024 +notice given to discharge committee,2023-05-16,[],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-17,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-28,['committee-passage'],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +motion to discharge committee approved,2023-11-01,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-11-14,['referral-committee'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a third time,2024-06-13,['reading-3'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 530 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-10-12,['passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-04-19,[],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +placed on third reading,2023-10-05,[],MI,2023-2024 +referred to Committee on Agriculture,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-16,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-27,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-27,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-05,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-17,[],MI,2023-2024 +AMENDMENT(S) CONCURRED IN,2023-04-19,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-02,['committee-passage'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-12,['committee-passage'],MI,2023-2024 +motion to discharge committee approved,2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-23,[],MI,2023-2024 +read a second time,2024-05-15,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-03,[],MI,2023-2024 +notice given to discharge committee,2023-05-16,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-06,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-05-03,['referral-committee'],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +REFERRED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-11-02,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-04-26,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4),2024-02-28,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-02-28,[],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +placed on third reading,2024-06-18,[],MI,2023-2024 +referred to Committee on Appropriations,2023-05-16,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +read a third time,2024-05-01,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-17,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-07,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 191 Yeas 106 Nays 3 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +rule suspended,2023-05-17,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-02-28,['committee-passage'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-05-11,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-07,[],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +read a third time,2024-05-22,['reading-3'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-31,['committee-passage'],MI,2023-2024 +read a third time,2024-06-11,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +read a second time,2024-05-15,['reading-2'],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +placed on third reading,2023-10-05,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2023-11-09,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-04-26,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-28,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-07,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-11-09,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-09-12,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-23,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-08,['committee-passage'],MI,2023-2024 +referred to Committee on Judiciary,2023-03-21,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-10-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-11-02,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +read a second time,2023-11-02,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-25,['referral-committee'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-09,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-05,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-25,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 377 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-10-18,['passage'],MI,2023-2024 +referred to second reading,2023-10-04,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +reported with recommendation without amendment,2023-11-02,['committee-passage'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-02,['committee-passage'],MI,2023-2024 +placed on third reading,2024-05-15,[],MI,2023-2024 +substitute (H-2) adopted,2023-11-09,[],MI,2023-2024 +placed on immediate passage,2024-05-21,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-27,['committee-passage'],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-21,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +motion to discharge committee approved,2023-03-21,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-06,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-10,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-01-11,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-18,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-27,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-27,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-02-14,['committee-passage'],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +placed on third reading,2023-10-17,[],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-28,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-06-21,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-11-14,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-05,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-10-31,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-11-09,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-21,['committee-passage'],MI,2023-2024 +substitute (H-1) adopted,2024-05-15,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-31,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-19,['committee-passage'],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2024-03-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-19,['committee-passage'],MI,2023-2024 +placed on second reading,2023-01-24,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-02-22,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-17,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-19,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-03-07,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-04,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +referred to second reading,2023-04-12,[],MI,2023-2024 +referred to Committee on Judiciary,2023-03-21,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-14,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-07,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-05-16,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4),2024-04-17,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-07,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +placed on third reading,2023-11-02,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-27,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-09,['committee-passage'],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-27,[],MI,2023-2024 +read a second time,2024-05-21,['reading-2'],MI,2023-2024 +read a second time,2023-10-25,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-08,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +read a second time,2024-05-21,['reading-2'],MI,2023-2024 +placed on second reading,2024-05-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-07,['committee-passage'],MI,2023-2024 +transmitted,2023-11-03,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-23,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-08,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-17,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-05-16,[],MI,2023-2024 +passed; given immediate effect Roll Call # 438 Yeas 104 Nays 6 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-20,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-14,['committee-passage'],MI,2023-2024 +referred to Committee on Tax Policy,2023-01-26,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-07,[],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-06-28,['referral-committee'],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +read a third time,2024-06-12,['reading-3'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-17,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-19,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +per Rule 41 referred to Committee on Tax Policy,2023-03-16,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-17,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-06-28,['referral-committee'],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-10-19,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-31,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-05-16,[],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-28,['committee-passage'],MI,2023-2024 +PASSED ROLL CALL # 685 YEAS 28 NAYS 7 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-19,[],MI,2023-2024 +read a second time,2024-05-08,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-24,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-25,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-14,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-11-09,['referral-committee'],MI,2023-2024 +motion to discharge committee approved,2023-03-21,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-11-08,['referral-committee'],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-08,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-11-07,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-06-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-17,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 15 Yeas 88 Nays 17 Excused 0 Not Voting 3,2024-02-27,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-13,[],MI,2023-2024 +amended,2023-11-08,[],MI,2023-2024 +placed on second reading,2023-04-26,[],MI,2023-2024 +read a second time,2023-06-14,['reading-2'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-26,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-11-02,['referral-committee'],MI,2023-2024 +notice given to discharge committee,2024-05-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-14,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-06-06,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +placed on immediate passage,2024-06-25,[],MI,2023-2024 +transmitted,2024-06-11,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-05-23,['committee-passage'],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-10-12,['committee-passage'],MI,2023-2024 +rule suspended,2023-05-17,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-05,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-31,['committee-passage'],MI,2023-2024 +substitute (H-1) adopted,2023-05-18,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-07,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-27,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-09-26,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-22,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-04-23,['referral-committee'],MI,2023-2024 +transmitted,2024-06-27,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-10) CONCURRED IN,2024-05-16,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-27,['referral-committee'],MI,2023-2024 +referred to second reading,2023-10-05,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-21,[],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +read a second time,2024-06-18,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-02-20,['referral-committee'],MI,2023-2024 +motion to discharge committee approved,2023-06-28,[],MI,2023-2024 +read a second time,2023-06-14,['reading-2'],MI,2023-2024 +placed on third reading,2023-04-27,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-15,[],MI,2023-2024 +referred to second reading,2023-09-19,[],MI,2023-2024 +referred to Committee on Judiciary,2023-03-21,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-03-20,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +referred to second reading,2023-11-01,[],MI,2023-2024 +REFERRED TO COMMITTEE ON HEALTH POLICY,2023-06-28,['referral-committee'],MI,2023-2024 +referred to Committee on Appropriations,2023-05-16,['referral-committee'],MI,2023-2024 +placed on immediate passage,2024-06-25,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-21,['referral-committee'],MI,2023-2024 +placed on immediate passage,2023-03-22,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-17,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-20,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-05,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-31,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 149 Yeas 104 Nays 5 Excused 0 Not Voting 1,2024-06-11,['passage'],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 686 YEAS 28 NAYS 7 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +read a third time,2023-09-06,['reading-3'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-27,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-01,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-26,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-31,['committee-passage'],MI,2023-2024 +title amended,2023-11-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-28,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-03-23,[],MI,2023-2024 +passed; given immediate effect Roll Call # 200 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-19,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-07,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-09,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-14,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-01,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-28,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-21,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-09-19,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-21,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-17,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-05-22,['committee-passage'],MI,2023-2024 +read a third time,2024-06-13,['reading-3'],MI,2023-2024 +substitute (H-1) adopted,2023-10-25,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-20,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-18,['referral-committee'],MI,2023-2024 +placed on third reading,2024-05-15,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-24,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-06-28,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-07,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-21,['committee-passage'],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +inserted full title,2023-11-01,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-19,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON REGULATORY AFFAIRS,2023-11-09,['referral-committee'],MI,2023-2024 +placed on third reading,2023-10-04,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-14,[],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2023-11-09,[],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-02-01,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-25,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-23,['referral-committee'],MI,2023-2024 +placed on second reading,2023-04-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-04-18,['referral-committee'],MI,2023-2024 +substitute (H-1) adopted,2023-09-26,[],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +placed on immediate passage,2024-05-21,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-22,[],MI,2023-2024 +placed on third reading,2024-06-20,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-21,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-08,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2023-04-20,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2023-05-16,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-07,['committee-passage'],MI,2023-2024 +referred to second reading,2023-04-25,[],MI,2023-2024 +referred to Committee on Judiciary,2023-03-21,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-06-28,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-03-22,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-17,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-27,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-06,['committee-passage'],MI,2023-2024 +read a second time,2023-04-20,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-28,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-04-18,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH AMENDMENT(S),2023-04-19,['committee-passage'],MI,2023-2024 +placed on third reading,2023-10-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-06,[],MI,2023-2024 +read a second time,2024-05-21,['reading-2'],MI,2023-2024 +placed on second reading,2023-06-28,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-27,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-31,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-18,[],MI,2023-2024 +placed on third reading,2023-03-08,[],MI,2023-2024 +read a third time,2023-11-03,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-11-07,['committee-passage'],MI,2023-2024 +read a second time,2024-06-25,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-27,[],MI,2023-2024 +placed on immediate passage,2023-09-06,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-01-31,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-01,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 376 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-10-18,['passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +RULES SUSPENDED,2023-03-09,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-02,['committee-passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-04-26,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-11-02,[],MI,2023-2024 +read a second time,2023-06-22,['reading-2'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +transmitted,2023-06-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 84 Yeas 107 Nays 0 Excused 0 Not Voting 3,2024-05-09,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-08,['committee-passage'],MI,2023-2024 +HOUSE REQUESTS RETURN,2024-06-05,[],MI,2023-2024 +read a third time,2023-10-12,['reading-3'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-5),2023-09-27,['committee-passage'],MI,2023-2024 +read a third time,2023-09-06,['reading-3'],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-04-26,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +amended,2024-05-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-19,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-28,['committee-passage'],MI,2023-2024 +read a second time,2023-04-26,['reading-2'],MI,2023-2024 +placed on third reading,2024-05-15,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-28,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-09,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-21,[],MI,2023-2024 +placed on third reading,2023-06-22,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-02-21,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-20,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-19,['committee-passage'],MI,2023-2024 +inserted full title,2024-05-09,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +substitute (H-1) adopted,2024-05-21,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-05-01,['committee-passage'],MI,2023-2024 +returned to Senate,2023-11-01,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-24,[],MI,2023-2024 +RETURN GRANTED,2024-06-05,[],MI,2023-2024 +SUBSTITUTE (S-5) CONCURRED IN,2023-09-27,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-06,['committee-passage'],MI,2023-2024 +PASSED ROLL CALL # 630 YEAS 27 NAYS 10 EXCUSED 1 NOT VOTING 0,2023-10-31,['passage'],MI,2023-2024 +read a second time,2023-11-03,['reading-2'],MI,2023-2024 +placed on second reading,2023-06-28,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-12,['committee-passage'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-09-28,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-06-20,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-08,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-17,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-26,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-27,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-20,[],MI,2023-2024 +passed; given immediate effect Roll Call # 201 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-10-19,['amendment-failure'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-06-28,['referral-committee'],MI,2023-2024 +read a third time,2024-06-25,['reading-3'],MI,2023-2024 +read a third time,2023-10-05,['reading-3'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-27,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 173 Yeas 56 Nays 53 Excused 0 Not Voting 1,2024-06-13,['passage'],MI,2023-2024 +read a third time,2023-03-22,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 162 Yeas 110 Nays 0 Excused 0 Not Voting 0,2024-06-12,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2023-06-27,['referral-committee'],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-27,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-11-09,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-07,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-17,[],MI,2023-2024 +RULES SUSPENDED,2023-06-28,[],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-31,[],MI,2023-2024 +passed; given immediate effect Roll Call # 357 Yeas 78 Nays 32 Excused 0 Not Voting 0,2023-10-12,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-05-22,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-31,[],MI,2023-2024 +placed on third reading,2023-04-20,[],MI,2023-2024 +inserted full title,2023-10-18,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +inserted full title,2024-06-11,[],MI,2023-2024 +passed; given immediate effect Roll Call # 236 Yeas 61 Nays 47 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 273 Yeas 82 Nays 25 Excused 0 Not Voting 3,2023-09-06,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-28,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-10-19,[],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-05,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-28,['committee-passage'],MI,2023-2024 +amended,2024-05-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-11-09,['committee-passage'],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +transmitted,2023-11-08,[],MI,2023-2024 +RULES SUSPENDED,2023-11-07,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 589 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-25,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-25,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-03-23,[],MI,2023-2024 +motion to discharge committee approved,2023-05-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-31,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-12,[],MI,2023-2024 +inserted full title,2023-11-01,[],MI,2023-2024 +placed on second reading,2023-03-21,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-01,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 188 Yeas 109 Nays 0 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2024-06-06,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 258 Yeas 103 Nays 5 Excused 0 Not Voting 2,2023-06-28,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-11-07,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-06,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-04-18,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-09-27,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-04-18,[],MI,2023-2024 +REFERRED TO COMMITTEE ON ENERGY AND ENVIRONMENT,2023-11-07,['referral-committee'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-31,[],MI,2023-2024 +reported with recommendation without amendment,2023-03-22,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +inserted full title,2024-02-27,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-06,['referral-committee'],MI,2023-2024 +read a second time,2023-04-26,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-22,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 417 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +placed on third reading,2023-06-22,[],MI,2023-2024 +postponed temporarily,2023-06-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-20,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-08,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-10-24,['amendment-failure'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-14,[],MI,2023-2024 +amended,2023-11-03,[],MI,2023-2024 +placed on immediate passage,2024-06-20,[],MI,2023-2024 +placed on third reading,2023-09-26,[],MI,2023-2024 +motion to discharge committee approved,2024-05-15,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-14,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 26 YEAS 32 NAYS 5 EXCUSED 1 NOT VOTING 0,2024-02-22,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +read a second time,2023-06-28,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-09-19,['referral-committee'],MI,2023-2024 +read a second time,2023-04-26,['reading-2'],MI,2023-2024 +read a third time,2024-06-25,['reading-3'],MI,2023-2024 +read a third time,2023-10-18,['reading-3'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-21,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +referred to second reading,2023-05-23,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-02-01,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-27,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-31,[],MI,2023-2024 +referred to second reading,2023-03-22,[],MI,2023-2024 +substitute (H-2) adopted,2023-05-18,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-18,['committee-passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-11-08,['amendment-failure'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2023-04-20,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-03-19,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +AMENDMENT(S) CONCURRED IN,2023-04-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-07,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-04-26,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-04-23,['committee-passage'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-21,['committee-passage'],MI,2023-2024 +vote on passage reconsidered,2024-06-27,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-10),2024-05-16,[],MI,2023-2024 +placed on immediate passage,2023-03-08,[],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +placed on immediate passage,2023-04-27,[],MI,2023-2024 +read a second time,2023-09-27,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-11-07,[],MI,2023-2024 +placed on third reading,2024-05-21,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-14,[],MI,2023-2024 +reported with recommendation without amendment,2023-09-06,['committee-passage'],MI,2023-2024 +substitute (H-1) adopted,2024-06-25,[],MI,2023-2024 +placed on third reading,2024-06-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-12,['referral-committee'],MI,2023-2024 +inserted full title,2023-06-21,[],MI,2023-2024 +placed on third reading,2023-06-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-31,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-14,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-14,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-17,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 202 Yeas 60 Nays 49 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 505 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-10,['passage'],MI,2023-2024 +placed on third reading,2023-06-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-09,[],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-05,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +returned to Senate,2023-10-18,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-27,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-07,[],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-06-20,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +inserted full title,2024-06-13,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +RULES SUSPENDED,2023-03-23,[],MI,2023-2024 +read a second time,2023-10-12,['reading-2'],MI,2023-2024 +read a second time,2024-05-15,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-26,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 530 Yeas 99 Nays 10 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +read a second time,2023-09-27,['reading-2'],MI,2023-2024 +inserted full title,2023-06-21,[],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 77 YEAS 22 NAYS 15 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +placed on third reading,2023-10-18,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-09,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +placed on third reading,2023-06-22,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-01-11,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-09-19,['committee-passage'],MI,2023-2024 +PASSED ROLL CALL # 33 YEAS 27 NAYS 11 EXCUSED 0 NOT VOTING 0,2024-02-27,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 280 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-25,['passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-12,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-06,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-11,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-10-19,['amendment-failure'],MI,2023-2024 +read a third time,2023-09-27,['reading-3'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-17,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-20,[],MI,2023-2024 +read a second time,2023-11-02,['reading-2'],MI,2023-2024 +placed on third reading,2023-09-19,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +placed on immediate passage,2024-05-01,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-02,[],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-02-21,['committee-passage'],MI,2023-2024 +placed on third reading,2024-05-21,[],MI,2023-2024 +read a second time,2023-01-26,['reading-2'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-02,[],MI,2023-2024 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2023-11-01,['referral-committee'],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-09,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-27,['committee-passage'],MI,2023-2024 +reported with recommendation without amendment,2023-03-22,['committee-passage'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-31,['committee-passage'],MI,2023-2024 +read a second time,2023-06-28,['reading-2'],MI,2023-2024 +read a third time,2024-02-13,['reading-3'],MI,2023-2024 +inserted full title,2024-05-14,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-21,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-02-22,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-11,[],MI,2023-2024 +returned to Senate,2023-10-18,[],MI,2023-2024 +placed on third reading,2023-06-22,[],MI,2023-2024 +inserted full title,2024-02-27,[],MI,2023-2024 +read a second time,2023-06-28,['reading-2'],MI,2023-2024 +placed on third reading,2023-06-14,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-03-07,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-28,['committee-passage'],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +motion to discharge committee approved,2023-05-17,[],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-11,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +substitute (H-1) adopted,2023-09-20,[],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +read a third time,2024-03-12,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 308 Yeas 95 Nays 14 Excused 0 Not Voting 1,2023-09-26,['passage'],MI,2023-2024 +motion to discharge committee approved,2024-05-15,[],MI,2023-2024 +passed; given immediate effect Roll Call # 516 Yeas 103 Nays 6 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 245 Yeas 73 Nays 36 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +read a third time,2024-02-13,['reading-3'],MI,2023-2024 +read a second time,2023-03-22,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-10-04,['committee-passage'],MI,2023-2024 +substitute (H-2) adopted,2024-06-26,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-11-08,['committee-passage'],MI,2023-2024 +substitute (H-1) adopted,2024-05-15,[],MI,2023-2024 +placed on third reading,2023-09-28,[],MI,2023-2024 +postponed temporarily,2024-05-14,[],MI,2023-2024 +read a second time,2024-06-26,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-27,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-06,['committee-passage'],MI,2023-2024 +inserted full title,2023-06-21,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-07,[],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +amendment(s) reconsidered,2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +notice given to discharge committee,2024-05-14,[],MI,2023-2024 +HOUSE REQUESTS RETURN,2024-06-26,[],MI,2023-2024 +PASSED ROLL CALL # 55 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2024-03-13,['passage'],MI,2023-2024 +inserted full title,2024-06-13,[],MI,2023-2024 +referred to Committee on Appropriations,2023-05-16,['referral-committee'],MI,2023-2024 +read a second time,2023-06-22,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-04-30,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-24,[],MI,2023-2024 +inserted full title,2023-11-01,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 498 Yeas 62 Nays 47 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-04-09,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-19,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 518 Yeas 91 Nays 18 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-04-30,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-28,['committee-passage'],MI,2023-2024 +returned to Senate,2024-06-13,[],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-11-09,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-11-02,[],MI,2023-2024 +passed; given immediate effect Roll Call # 163 Yeas 58 Nays 51 Excused 0 Not Voting 1,2024-06-12,['passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-17,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-02-06,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-04-26,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 276 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-25,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-11-02,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-04-23,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-18,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-06-27,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-25,[],MI,2023-2024 +placed on third reading,2024-06-12,[],MI,2023-2024 +read a second time,2023-10-31,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-25,[],MI,2023-2024 +placed on third reading,2023-06-22,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-11-09,[],MI,2023-2024 +substitute (H-4) adopted,2023-06-14,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 419 YEAS 27 NAYS 10 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-04-26,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +referred to Committee on Judiciary,2023-03-21,['referral-committee'],MI,2023-2024 +SUBSTITUTE (S-6) CONCURRED IN,2023-03-21,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +placed on third reading,2023-06-14,[],MI,2023-2024 +substitute (H-2) adopted,2023-06-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 160 Yeas 93 Nays 16 Excused 0 Not Voting 1,2024-06-12,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-08,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-28,['referral-committee'],MI,2023-2024 +returned to Senate,2023-11-01,[],MI,2023-2024 +inserted full title,2023-06-21,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-13,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-02-01,[],MI,2023-2024 +placed on immediate passage,2023-01-31,[],MI,2023-2024 +read a second time,2024-06-20,['reading-2'],MI,2023-2024 +read a third time,2024-06-18,['reading-3'],MI,2023-2024 +placed on third reading,2023-06-28,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-07,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 284 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +inserted full title,2024-05-14,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 161 Yeas 80 Nays 29 Excused 0 Not Voting 1,2024-06-12,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-18,[],MI,2023-2024 +passed; given immediate effect Roll Call # 529 Yeas 98 Nays 11 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +placed on third reading,2023-06-08,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-06,['committee-passage'],MI,2023-2024 +read a third time,2023-04-20,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +transmitted,2023-10-31,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-02-14,['referral-committee'],MI,2023-2024 +inserted full title,2023-06-21,[],MI,2023-2024 +placed on third reading,2023-09-06,[],MI,2023-2024 +placed on third reading,2023-10-04,[],MI,2023-2024 +read a second time,2023-06-14,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-09,['committee-passage'],MI,2023-2024 +read a third time,2023-06-20,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2023-06-27,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-04-17,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 49 Yeas 93 Nays 12 Excused 0 Not Voting 5,2024-05-01,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-02-28,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-27,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +title amended,2024-06-20,[],MI,2023-2024 +passed; given immediate effect Roll Call # 519 Yeas 79 Nays 30 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2023-11-09,['referral-committee'],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-06-13,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-23,['committee-passage'],MI,2023-2024 +PASSED ROLL CALL # 554 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-03,[],MI,2023-2024 +read a third time,2023-10-12,['reading-3'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-05-09,['committee-passage'],MI,2023-2024 +motion to discharge committee approved,2023-05-17,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-07,['committee-passage'],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 555 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2023-11-07,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +substitute (H-1) adopted,2024-05-15,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-11-02,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-11-09,[],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-04-19,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-10-18,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-09,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +referred to Committee on Appropriations,2024-05-07,['referral-committee'],MI,2023-2024 +referred to second reading,2023-11-02,[],MI,2023-2024 +PASSED ROLL CALL # 693 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-02,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-21,[],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-14,[],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 275 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-25,['passage'],MI,2023-2024 +notice given to discharge committee,2023-05-16,[],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +read a third time,2023-10-18,['reading-3'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-28,['referral-committee'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2024-03-14,['referral-committee'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-11-09,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-19,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-02-22,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-04,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-19,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-27,[],MI,2023-2024 +placed on second reading,2023-03-21,[],MI,2023-2024 +placed on third reading,2024-05-21,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-04-10,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-4) CONCURRED IN,2024-04-17,[],MI,2023-2024 +placed on immediate passage,2023-11-02,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-27,[],MI,2023-2024 +RULES SUSPENDED,2023-11-07,[],MI,2023-2024 +passed; given immediate effect Roll Call # 228 Yeas 104 Nays 4 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-11-08,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-07,[],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +placed on immediate passage,2023-10-12,[],MI,2023-2024 +PASSED ROLL CALL # 551 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-03-14,['referral-committee'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-04-19,[],MI,2023-2024 +rule suspended,2023-05-17,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-27,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-27,[],MI,2023-2024 +PASSED ROLL CALL # 553 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +placed on second reading,2024-06-26,[],MI,2023-2024 +motion to discharge committee approved,2023-05-17,[],MI,2023-2024 +substitute (H-2) adopted,2023-06-21,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-02,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-15,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 120 YEAS 29 NAYS 9 EXCUSED 0 NOT VOTING 0,2023-04-19,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 544 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH AMENDMENT(S),2023-04-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-05,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-06-28,['referral-committee'],MI,2023-2024 +reported with recommendation with substitute (H-1),2023-03-22,['committee-passage'],MI,2023-2024 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2023-02-28,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-08,[],MI,2023-2024 +referred to second reading,2023-06-21,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-12,[],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +read a second time,2024-05-15,['reading-2'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-28,['referral-committee'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-06-28,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +read a second time,2023-11-02,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-07,[],MI,2023-2024 +motion to discharge committee approved,2023-05-17,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-03-13,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-31,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 148 Yeas 90 Nays 19 Excused 0 Not Voting 1,2024-06-11,['passage'],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +placed on third reading,2024-05-15,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-05,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-06,['referral-committee'],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +substitute (H-3) adopted,2023-10-25,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-01-11,[],MI,2023-2024 +passed; given immediate effect Roll Call # 521 Yeas 104 Nays 5 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +reported with recommendation without amendment,2023-10-04,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2023-06-28,['referral-committee'],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-21,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 8 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-02-07,['passage'],MI,2023-2024 +read a second time,2023-09-27,['reading-2'],MI,2023-2024 +substitute (H-1) adopted,2023-11-08,[],MI,2023-2024 +inserted full title,2023-10-18,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-06-25,['referral-committee'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-04-26,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-09,['committee-passage'],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-28,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-31,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 176 Yeas 109 Nays 0 Excused 0 Not Voting 1,2024-06-13,['passage'],MI,2023-2024 +notice given to discharge committee,2023-10-04,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-11,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 197 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +rule suspended,2023-05-17,[],MI,2023-2024 +SUBSTITUTE (S-4) CONCURRED IN,2024-02-28,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-11-09,['committee-passage'],MI,2023-2024 +placed on second reading,2023-11-01,[],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-03,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-03-19,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-19,[],MI,2023-2024 +read a second time,2023-01-24,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-14,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 138 Yeas 103 Nays 0 Excused 0 Not Voting 7,2024-05-22,['passage'],MI,2023-2024 +placed on third reading,2023-11-02,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-05,[],MI,2023-2024 +substitute (H-3) adopted,2023-11-09,[],MI,2023-2024 +motion to discharge committee approved,2023-11-01,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-06-14,['referral-committee'],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +read a second time,2023-06-21,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-03-13,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-09,[],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-09,['committee-passage'],MI,2023-2024 +referred to second reading,2023-04-19,[],MI,2023-2024 +read a third time,2023-11-02,['reading-3'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-31,['committee-passage'],MI,2023-2024 +transmitted,2024-06-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-27,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-11-09,[],MI,2023-2024 +substitute (H-1) adopted,2023-01-24,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-04-17,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-28,['committee-passage'],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +passed; given immediate effect Roll Call # 266 Yeas 104 Nays 6 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +placed on third reading,2023-11-02,[],MI,2023-2024 +passed; given immediate effect Roll Call # 497 Yeas 61 Nays 48 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-11-02,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-05,['committee-passage'],MI,2023-2024 +PASSED ROLL CALL # 679 YEAS 26 NAYS 11 EXCUSED 1 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 380 Yeas 65 Nays 45 Excused 0 Not Voting 0,2023-10-18,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-07,[],MI,2023-2024 +returned from Senate without amendment,2023-10-24,[],MI,2023-2024 +inserted full title,2023-06-27,[],MI,2023-2024 +PASSED ROLL CALL # 631 YEAS 24 NAYS 14 EXCUSED 0 NOT VOTING 0,2023-11-01,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 520 Yeas 69 Nays 40 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +inserted full title,2024-05-22,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-11-09,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 523 Yeas 60 Nays 49 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 510 Yeas 77 Nays 32 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +read a second time,2023-03-21,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-02-20,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 569 Yeas 101 Nays 6 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4),2024-02-28,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +placed on second reading,2023-05-17,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 691 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2024-06-06,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 201 Yeas 57 Nays 52 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +INSERTED FULL TITLE,2024-06-25,[],MI,2023-2024 +passed; given immediate effect Roll Call # 452 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-05-17,['committee-passage'],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 555 Yeas 62 Nays 46 Excused 0 Not Voting 2,2023-11-09,['passage'],MI,2023-2024 +placed on third reading,2023-10-25,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 478 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +inserted full title,2023-06-21,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 464 YEAS 34 NAYS 4 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +PASSED ROLL CALL # 240 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-11,['passage'],MI,2023-2024 +returned to Senate,2024-05-01,[],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-19,[],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +placed on second reading,2024-05-15,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-23,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-11-08,['committee-passage'],MI,2023-2024 +inserted full title,2023-11-08,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-02-29,['amendment-failure'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-07,[],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +RULES SUSPENDED,2023-10-19,[],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-01-11,[],MI,2023-2024 +placed on second reading,2023-05-17,[],MI,2023-2024 +read a third time,2023-11-03,['reading-3'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-13,['committee-passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-11-09,['referral-committee'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +referred to second reading,2023-10-04,[],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-02-22,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 481 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2023-04-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4),2024-04-17,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-02-28,['referral-committee'],MI,2023-2024 +postponed for the day,2023-10-12,[],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +placed on third reading,2024-05-15,[],MI,2023-2024 +motion to discharge committee approved,2023-05-17,[],MI,2023-2024 +placed on second reading,2023-05-17,[],MI,2023-2024 +PASSED ROLL CALL # 728 YEAS 27 NAYS 10 EXCUSED 1 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2023-11-02,[],MI,2023-2024 +PASSED ROLL CALL # 588 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-24,['passage'],MI,2023-2024 +PASSED ROLL CALL # 507 YEAS 23 NAYS 15 EXCUSED 0 NOT VOTING 0,2023-10-10,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 212 Yeas 109 Nays 0 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +read a second time,2024-06-27,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-04-10,[],MI,2023-2024 +passed; given immediate effect Roll Call # 216 Yeas 75 Nays 34 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +inserted full title,2023-11-09,[],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +PASSED ROLL CALL # 94 YEAS 33 NAYS 3 EXCUSED 2 NOT VOTING 0,2024-04-16,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +INSERTED FULL TITLE,2024-02-07,[],MI,2023-2024 +RULES SUSPENDED,2023-04-19,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 463 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +substitute (H-2) adopted,2023-11-09,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-02-28,['amendment-failure'],MI,2023-2024 +referred to second reading,2023-03-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 217 Yeas 87 Nays 22 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 502 YEAS 29 NAYS 8 EXCUSED 1 NOT VOTING 0,2023-10-05,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2023-10-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 210 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-20,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 97 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +inserted full title,2024-06-13,[],MI,2023-2024 +read a third time,2024-05-22,['reading-3'],MI,2023-2024 +inserted full title,2023-10-12,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 490 YEAS 31 NAYS 7 EXCUSED 0 NOT VOTING 0,2023-10-04,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 198 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-02,['committee-passage'],MI,2023-2024 +placed on second reading,2023-11-01,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +inserted full title,2024-06-11,[],MI,2023-2024 +PASSED ROLL CALL # 699 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-05-09,['referral-committee'],MI,2023-2024 +motion to discharge committee approved,2023-05-17,[],MI,2023-2024 +RULES SUSPENDED,2023-04-19,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 23 YEAS 31 NAYS 6 EXCUSED 1 NOT VOTING 0,2024-02-22,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +read a second time,2023-11-08,['reading-2'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-04-17,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-03-19,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-10-12,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +amended,2023-09-27,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-07,[],MI,2023-2024 +passed; given immediate effect Roll Call # 109 Yeas 68 Nays 39 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +substitute (H-1) adopted,2024-05-15,[],MI,2023-2024 +motion to discharge committee approved,2023-10-05,[],MI,2023-2024 +motion to discharge committee approved,2023-05-17,[],MI,2023-2024 +placed on third reading,2024-05-21,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-05,['committee-passage'],MI,2023-2024 +notice given to discharge committee,2024-05-14,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-11-09,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-08,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +returned to Senate,2023-10-18,[],MI,2023-2024 +passed; given immediate effect Roll Call # 375 Yeas 104 Nays 6 Excused 0 Not Voting 0,2023-10-18,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 491 YEAS 31 NAYS 7 EXCUSED 0 NOT VOTING 0,2023-10-04,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-06-08,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 187 Yeas 109 Nays 0 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 541 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-06-20,['committee-passage'],MI,2023-2024 +read a third time,2023-10-12,['reading-3'],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 585 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-24,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-03-21,[],MI,2023-2024 +PASSED ROLL CALL # 596 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2023-10-26,['passage'],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2023-11-08,['committee-passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-09-27,[],MI,2023-2024 +returned to Senate,2024-06-11,[],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 580 YEAS 28 NAYS 10 EXCUSED 0 NOT VOTING 0,2023-10-24,['passage'],MI,2023-2024 +read a second time,2023-03-22,['reading-2'],MI,2023-2024 +INSERTED FULL TITLE,2023-10-31,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +substitute (H-5) adopted and amended,2023-11-03,[],MI,2023-2024 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2024-03-20,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-19,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-04-23,[],MI,2023-2024 +RULES SUSPENDED,2024-05-16,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-25,[],MI,2023-2024 +returned to Senate,2023-10-18,[],MI,2023-2024 +PASSED ROLL CALL # 680 YEAS 26 NAYS 11 EXCUSED 1 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 395 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-5),2023-09-27,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-07,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 274 Yeas 82 Nays 25 Excused 0 Not Voting 3,2023-09-06,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 63 Yeas 56 Nays 49 Excused 0 Not Voting 5,2024-05-08,['passage'],MI,2023-2024 +read a third time,2023-03-08,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-19,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +inserted full title,2023-06-21,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-09,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-21,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-17,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 459 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +passed by 3/4 vote; given immediate effect Roll Call # 341 Yeas 91 Nays 15 Excused 0 Not Voting 4,2023-10-05,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-31,[],MI,2023-2024 +passed; given immediate effect Roll Call # 527 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +read a third time,2023-09-27,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2023-04-20,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-28,[],MI,2023-2024 +PASSED ROLL CALL # 277 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-25,['passage'],MI,2023-2024 +placed on immediate passage,2023-04-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH AMENDMENT(S),2023-04-19,[],MI,2023-2024 +placed on third reading,2024-05-21,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-11-07,[],MI,2023-2024 +PASSED ROLL CALL # 181 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 554 Yeas 61 Nays 47 Excused 0 Not Voting 2,2023-11-09,['passage'],MI,2023-2024 +postponed temporarily,2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-12,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 385 YEAS 30 NAYS 7 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 244 Yeas 76 Nays 33 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +RULES SUSPENDED,2023-06-28,[],MI,2023-2024 +RULES SUSPENDED,2023-03-23,[],MI,2023-2024 +placed on third reading,2024-05-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-27,[],MI,2023-2024 +inserted full title,2024-06-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-17,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-28,[],MI,2023-2024 +passed; given immediate effect Roll Call # 213 Yeas 104 Nays 6 Excused 0 Not Voting 0,2024-06-25,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-27,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 482 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +placed on immediate passage,2024-05-21,[],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-09-28,['referral-committee'],MI,2023-2024 +passed; given immediate effect Roll Call # 214 Yeas 104 Nays 6 Excused 0 Not Voting 0,2024-06-25,['passage'],MI,2023-2024 +read a second time,2023-06-28,['reading-2'],MI,2023-2024 +placed on second reading,2024-05-15,[],MI,2023-2024 +RULES SUSPENDED,2024-06-26,[],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-05-10,['amendment-passage'],MI,2023-2024 +INSERTED FULL TITLE,2024-02-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 94 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-11-07,[],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-19,[],MI,2023-2024 +PASSED ROLL CALL # 689 YEAS 23 NAYS 12 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +returned to Senate,2023-11-01,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +placed on third reading,2024-06-27,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-07,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-17,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-02-21,[],MI,2023-2024 +passed; given immediate effect Roll Call # 108 Yeas 78 Nays 29 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +read a third time,2023-04-27,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-28,[],MI,2023-2024 +substitute (H-2) adopted,2023-04-26,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 682 YEAS 25 NAYS 10 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +placed on second reading,2023-05-17,[],MI,2023-2024 +returned as requested,2024-06-05,[],MI,2023-2024 +PASSED ROLL CALL # 174 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 490 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-11-03,['passage'],MI,2023-2024 +returned to Senate,2023-06-21,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-08,[],MI,2023-2024 +PASSED ROLL CALL # 632 YEAS 28 NAYS 10 EXCUSED 0 NOT VOTING 0,2023-11-01,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-06-28,[],MI,2023-2024 +placed on third reading,2024-06-25,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-14,[],MI,2023-2024 +inserted full title,2023-06-28,[],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +referred to second reading,2023-03-22,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-18,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-20,[],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +referred to second reading,2023-09-06,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-11-02,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-17,[],MI,2023-2024 +returned to Senate,2023-06-21,[],MI,2023-2024 +inserted full title,2023-06-27,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-06,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 660 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2023-11-07,['passage'],MI,2023-2024 +DISCHARGE COMMITTEE APPROVED,2024-06-12,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-28,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-27,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-05-01,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 60 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +inserted full title,2024-06-13,[],MI,2023-2024 +placed on third reading,2023-05-18,[],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +placed on third reading,2023-04-26,[],MI,2023-2024 +PASSED ROLL CALL # 22 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2024-02-21,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2023-06-20,['committee-passage'],MI,2023-2024 +read a second time,2023-03-21,['reading-2'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +amended,2024-05-08,[],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +inserted full title,2024-06-12,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-17,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 465 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +PASSED ROLL CALL # 681 YEAS 25 NAYS 10 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +REASSIGNED TO COMMITTEE ON HOUSING AND HUMAN SERVICES,2024-02-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 43 Yeas 64 Nays 44 Excused 0 Not Voting 2,2023-03-22,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-09-12,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 7 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-02-07,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +RULES SUSPENDED,2023-03-21,[],MI,2023-2024 +PASSED ROLL CALL # 587 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-24,['passage'],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-14,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-04-18,[],MI,2023-2024 +amended,2023-04-26,[],MI,2023-2024 +RULES SUSPENDED,2023-03-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-04-18,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-03-23,['committee-passage'],MI,2023-2024 +returned to Senate,2024-05-09,[],MI,2023-2024 +PASSED ROLL CALL # 550 YEAS 32 NAYS 6 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-11-09,[],MI,2023-2024 +returned to Senate,2024-02-27,[],MI,2023-2024 +placed on third reading,2023-09-27,[],MI,2023-2024 +PASSED ROLL CALL # 688 YEAS 21 NAYS 14 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-26,[],MI,2023-2024 +inserted full title,2023-09-06,[],MI,2023-2024 +PASSED ROLL CALL # 90 YEAS 26 NAYS 11 EXCUSED 1 NOT VOTING 0,2024-04-10,['passage'],MI,2023-2024 +PASSED ROLL CALL # 683 YEAS 26 NAYS 9 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +read a second time,2023-06-13,['reading-2'],MI,2023-2024 +PASSED ROLL CALL # 30 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-02-27,['passage'],MI,2023-2024 +substitute (H-1) adopted,2023-06-28,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 690 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 172 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-20,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2023-11-02,['committee-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-06-27,['committee-passage'],MI,2023-2024 +inserted full title,2024-06-26,[],MI,2023-2024 +RULES SUSPENDED,2024-02-14,[],MI,2023-2024 +substitute (H-2) adopted,2023-10-31,[],MI,2023-2024 +passed; given immediate effect Roll Call # 24 Yeas 106 Nays 0 Excused 0 Not Voting 2,2024-03-12,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-04-17,[],MI,2023-2024 +placed on immediate passage,2023-06-20,[],MI,2023-2024 +PASSED ROLL CALL # 269 YEAS 24 NAYS 14 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2023-10-10,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-09,['committee-passage'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +inserted full title,2023-09-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-06-27,[],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-06-20,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 274 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-25,['passage'],MI,2023-2024 +read a third time,2023-01-31,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-28,[],MI,2023-2024 +inserted full title,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 522 Yeas 90 Nays 19 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-04-09,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-05,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 281 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-25,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-11-09,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-04-23,[],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +defeated Roll Call # 8 Yeas 52 Nays 48 Excused 0 Not Voting 8,2024-02-13,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 695 YEAS 33 NAYS 2 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +placed on third reading,2023-03-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 238 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +read a third time,2023-10-05,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +placed on third reading,2024-05-15,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-10-04,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 296 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-19,[],MI,2023-2024 +returned to Senate,2023-06-21,[],MI,2023-2024 +passed; given immediate effect Roll Call # 525 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 9 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-02-07,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 458 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +read a third time,2023-10-04,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-23,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-02-01,[],MI,2023-2024 +amended,2023-09-27,[],MI,2023-2024 +placed on third reading,2023-10-12,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-09,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 297 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +returned to Senate,2023-06-21,[],MI,2023-2024 +inserted full title,2023-11-08,[],MI,2023-2024 +placed on immediate passage,2023-06-28,[],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-26,[],MI,2023-2024 +substitute (H-3) adopted,2024-05-23,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-06,[],MI,2023-2024 +returned to Senate,2024-06-13,[],MI,2023-2024 +INSERTED FULL TITLE,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-11,[],MI,2023-2024 +returned to Senate,2023-06-21,[],MI,2023-2024 +read a third time,2023-10-19,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 246 Yeas 103 Nays 7 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2024-06-26,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 260 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-06-28,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 60 Yeas 102 Nays 4 Excused 0 Not Voting 4,2023-04-20,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +RULES SUSPENDED,2023-11-07,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 694 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +returned to Senate,2024-06-13,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-04-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-01-11,[],MI,2023-2024 +INSERTED FULL TITLE,2024-06-25,[],MI,2023-2024 +SUBSTITUTE (S-4) ADOPTED,2023-09-27,[],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-09-27,['amendment-passage'],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +INSERTED FULL TITLE,2023-06-28,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-6),2023-03-21,[],MI,2023-2024 +placed on third reading,2023-11-02,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-06,['referral-committee'],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-12,[],MI,2023-2024 +returned from Senate without amendment,2024-02-27,[],MI,2023-2024 +INSERTED FULL TITLE,2024-06-25,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-14,[],MI,2023-2024 +reported with recommendation with substitute (H-5),2023-04-12,['committee-passage'],MI,2023-2024 +motion to discharge committee approved,2024-05-15,[],MI,2023-2024 +PASSED ROLL CALL # 552 YEAS 29 NAYS 9 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +rule suspended,2023-05-17,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 318 Yeas 75 Nays 35 Excused 0 Not Voting 0,2023-09-27,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-11-01,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-17,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +amended,2024-06-26,[],MI,2023-2024 +read a third time,2023-10-24,['reading-3'],MI,2023-2024 +INSERTED FULL TITLE,2024-03-13,[],MI,2023-2024 +substitute (H-1) adopted,2024-06-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 514 Yeas 103 Nays 6 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 107 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2024-05-01,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-19,[],MI,2023-2024 +RULES SUSPENDED,2023-11-02,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-15,[],MI,2023-2024 +passed; given immediate effect Roll Call # 265 Yeas 82 Nays 26 Excused 0 Not Voting 2,2023-06-28,['passage'],MI,2023-2024 +placed on third reading,2023-06-22,[],MI,2023-2024 +returned to Senate,2023-11-01,[],MI,2023-2024 +returned to Senate,2024-05-14,[],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +placed on immediate passage,2024-05-21,[],MI,2023-2024 +passed; given immediate effect Roll Call # 199 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2023-11-08,['committee-passage'],MI,2023-2024 +read a third time,2024-05-01,['reading-3'],MI,2023-2024 +inserted full title,2023-11-08,[],MI,2023-2024 +inserted full title,2024-06-12,[],MI,2023-2024 +placed on third reading,2024-05-21,[],MI,2023-2024 +RULES SUSPENDED,2023-11-02,[],MI,2023-2024 +placed on third reading,2023-01-26,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 460 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +PASSED ROLL CALL # 713 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-31,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-20,[],MI,2023-2024 +inserted full title,2024-06-12,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-18,[],MI,2023-2024 +inserted full title,2024-06-20,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 462 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +referred to second reading,2023-03-22,[],MI,2023-2024 +inserted full title,2023-11-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-27,[],MI,2023-2024 +placed on third reading,2024-05-15,[],MI,2023-2024 +passed; given immediate effect Roll Call # 203 Yeas 109 Nays 0 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +substitute (H-1) adopted,2024-06-20,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-28,[],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 542 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-28,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-01,[],MI,2023-2024 +PASSED ROLL CALL # 106 YEAS 24 NAYS 14 EXCUSED 0 NOT VOTING 0,2024-05-01,['passage'],MI,2023-2024 +defeated Roll Call # 7 Yeas 52 Nays 49 Excused 0 Not Voting 7,2024-02-13,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-02-21,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-02-22,[],MI,2023-2024 +placed on immediate passage,2023-06-08,[],MI,2023-2024 +returned to Senate,2024-05-14,[],MI,2023-2024 +RULES SUSPENDED,2023-11-02,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-11-02,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-12,[],MI,2023-2024 +passed; given immediate effect Roll Call # 213 Yeas 109 Nays 0 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-19,[],MI,2023-2024 +RETURN GRANTED,2024-06-26,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 531 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-10-12,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +placed on third reading,2023-06-14,[],MI,2023-2024 +returned to Senate,2024-02-27,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-09,['referral-committee'],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +inserted full title,2024-06-12,[],MI,2023-2024 +placed on third reading,2023-06-28,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-05,['committee-passage'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-02-06,[],MI,2023-2024 +placed on immediate passage,2023-03-07,[],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 243 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-12,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-17,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 461 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 234 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +read a third time,2023-09-12,['reading-3'],MI,2023-2024 +read a third time,2024-06-13,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-13,[],MI,2023-2024 +placed on second reading,2023-05-17,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-02,['committee-passage'],MI,2023-2024 +placed on third reading,2023-06-14,[],MI,2023-2024 +PASSED ROLL CALL # 597 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2023-10-26,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 396 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 180 Yeas 60 Nays 49 Excused 0 Not Voting 1,2024-06-18,['passage'],MI,2023-2024 +placed on third reading,2023-09-20,[],MI,2023-2024 +placed on immediate passage,2024-05-21,[],MI,2023-2024 +INSERTED FULL TITLE,2023-09-27,[],MI,2023-2024 +inserted full title,2023-11-09,[],MI,2023-2024 +PASSED ROLL CALL # 697 YEAS 24 NAYS 11 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-02,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 204 Yeas 72 Nays 37 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2023-10-11,[],MI,2023-2024 +PASSED ROLL CALL # 278 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-25,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +PASSED ROLL CALL # 191 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +inserted full title,2023-04-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-09,[],MI,2023-2024 +ORDERED ENROLLED,2023-10-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-02-21,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 394 Yeas 85 Nays 24 Excused 0 Not Voting 1,2023-10-24,['passage'],MI,2023-2024 +inserted full title,2023-11-08,[],MI,2023-2024 +inserted full title,2023-06-28,[],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +returned to Senate,2024-06-12,[],MI,2023-2024 +inserted full title,2024-06-20,[],MI,2023-2024 +SUBSTITUTE (S-1) DEFEATED,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 48 Yeas 101 Nays 4 Excused 0 Not Voting 5,2024-05-01,['passage'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +rule suspended,2024-06-20,[],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-08,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-04,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-02-28,[],MI,2023-2024 +passed; given immediate effect Roll Call # 241 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +placed on immediate passage,2023-06-28,[],MI,2023-2024 +passed; given immediate effect Roll Call # 338 Yeas 100 Nays 8 Excused 0 Not Voting 2,2023-10-04,['passage'],MI,2023-2024 +inserted full title,2023-06-27,[],MI,2023-2024 +read a second time,2023-05-17,['reading-2'],MI,2023-2024 +read a third time,2023-10-04,['reading-3'],MI,2023-2024 +returned to Senate,2023-09-26,[],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +returned as requested,2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-10-04,[],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-07,[],MI,2023-2024 +placed on third reading,2023-06-22,[],MI,2023-2024 +motion to discharge committee approved,2023-05-17,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-02,[],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +RULES SUSPENDED,2023-06-28,[],MI,2023-2024 +inserted full title,2023-06-22,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 543 YEAS 32 NAYS 6 EXCUSED 0 NOT VOTING 0,2023-10-18,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2024-05-01,[],MI,2023-2024 +placed on third reading,2023-10-31,[],MI,2023-2024 +TITLE AMENDED,2024-06-25,[],MI,2023-2024 +INSERTED FULL TITLE,2024-06-26,[],MI,2023-2024 +placed on immediate passage,2023-06-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 235 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +referred to second reading,2023-04-12,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 140 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-04-27,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 203 Yeas 72 Nays 37 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-05,[],MI,2023-2024 +passed; given immediate effect Roll Call # 10 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-01-31,['passage'],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +passed by 3/4 vote; given immediate effect Roll Call # 342 Yeas 90 Nays 15 Excused 0 Not Voting 5,2023-10-05,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2024-06-20,[],MI,2023-2024 +placed on third reading,2024-06-20,[],MI,2023-2024 +returned from Senate without amendment,2023-11-09,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-04,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-02-20,[],MI,2023-2024 +INSERTED FULL TITLE,2024-02-07,[],MI,2023-2024 +PASSED ROLL CALL # 73 YEAS 23 NAYS 14 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-27,[],MI,2023-2024 +read a third time,2023-06-20,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 259 Yeas 68 Nays 42 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH AMENDMENT(S),2023-11-09,['committee-passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +RULES SUSPENDED,2023-09-19,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 71 YEAS 22 NAYS 15 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +PASSED ROLL CALL # 95 YEAS 23 NAYS 13 EXCUSED 2 NOT VOTING 0,2024-04-16,['passage'],MI,2023-2024 +placed on immediate passage,2023-10-12,[],MI,2023-2024 +returned from Senate without amendment with immediate effect,2023-09-27,[],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +PASSED ROLL CALL # 70 YEAS 22 NAYS 15 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +inserted full title,2024-06-26,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-09,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 472 YEAS 26 NAYS 12 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-03-14,[],MI,2023-2024 +bill ordered enrolled,2024-02-27,[],MI,2023-2024 +amended,2023-06-27,[],MI,2023-2024 +inserted full title,2023-06-28,[],MI,2023-2024 +passed; given immediate effect Roll Call # 528 Yeas 100 Nays 9 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-18,[],MI,2023-2024 +inserted full title,2023-11-08,[],MI,2023-2024 +returned from Senate with full title,2024-06-25,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 485 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +PASSED ROLL CALL # 116 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-03-23,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 67 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-09-27,['amendment-passage'],MI,2023-2024 +"REASSIGNED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2024-06-05,[],MI,2023-2024 +inserted full title,2023-11-08,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-09,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-10-10,[],MI,2023-2024 +RULES SUSPENDED,2023-05-17,[],MI,2023-2024 +inserted full title,2023-06-20,[],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-01,['referral-committee'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-13,['committee-passage'],MI,2023-2024 +returned from Senate without amendment with full title,2024-03-13,[],MI,2023-2024 +INSERTED FULL TITLE,2023-09-27,[],MI,2023-2024 +read a third time,2023-06-08,['reading-3'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-06-26,[],MI,2023-2024 +RULES SUSPENDED,2023-02-01,[],MI,2023-2024 +PASSED ROLL CALL # 11 YEAS 29 NAYS 9 EXCUSED 0 NOT VOTING 0,2024-02-14,['passage'],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-02,[],MI,2023-2024 +returned to Senate,2024-06-18,[],MI,2023-2024 +returned to Senate,2024-06-12,[],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2023-03-21,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-06-28,[],MI,2023-2024 +INSERTED FULL TITLE,2024-06-26,[],MI,2023-2024 +SUBSTITUTE (S-1) ADOPTED,2024-04-24,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-09,[],MI,2023-2024 +SUBSTITUTE (S-3) CONCURRED IN,2023-11-02,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-02,[],MI,2023-2024 +returned to Senate,2024-06-12,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-02,[],MI,2023-2024 +read a third time,2023-06-21,['reading-3'],MI,2023-2024 +ORDERED ENROLLED,2024-06-18,[],MI,2023-2024 +INSERTED FULL TITLE,2024-05-01,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 172 Yeas 56 Nays 53 Excused 0 Not Voting 1,2024-06-13,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 483 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-18,[],MI,2023-2024 +RULES SUSPENDED,2023-06-06,[],MI,2023-2024 +placed on third reading,2024-05-23,[],MI,2023-2024 +INSERTED FULL TITLE,2024-06-25,[],MI,2023-2024 +returned to Senate,2024-03-12,[],MI,2023-2024 +placed on immediate passage,2023-03-22,[],MI,2023-2024 +returned to Senate,2024-06-26,[],MI,2023-2024 +returned from Senate without amendment with immediate effect,2023-06-27,[],MI,2023-2024 +read a third time,2023-03-07,['reading-3'],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-12,[],MI,2023-2024 +returned from Senate with substitute (S-1),2024-02-27,[],MI,2023-2024 +placed on immediate passage,2023-10-12,[],MI,2023-2024 +placed on third reading,2023-06-28,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-03-13,[],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +returned to Senate,2024-06-20,[],MI,2023-2024 +passed; given immediate effect Roll Call # 440 Yeas 58 Nays 52 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +returned from Senate without amendment,2024-06-12,[],MI,2023-2024 +placed on immediate passage,2023-01-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 243 Yeas 56 Nays 53 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-02,[],MI,2023-2024 +RULES SUSPENDED,2023-05-17,[],MI,2023-2024 +returned to Senate,2023-09-27,[],MI,2023-2024 +postponed temporarily,2023-10-19,[],MI,2023-2024 +placed on third reading,2023-09-27,[],MI,2023-2024 +read a third time,2023-11-03,['reading-3'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-20,[],MI,2023-2024 +PASSED ROLL CALL # 198 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 277 Yeas 67 Nays 42 Excused 0 Not Voting 1,2023-09-12,['passage'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-09,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (H-2),2024-02-06,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-11-08,['referral-committee'],MI,2023-2024 +INSERTED FULL TITLE,2023-09-27,[],MI,2023-2024 +placed on second reading,2024-05-15,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 350 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2024-02-07,[],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +read a second time,2023-03-22,['reading-2'],MI,2023-2024 +AMENDMENT(S) ADOPTED,2024-02-29,['amendment-passage'],MI,2023-2024 +placed on third reading,2024-05-15,[],MI,2023-2024 +inserted full title,2023-06-21,[],MI,2023-2024 +inserted full title,2023-06-27,[],MI,2023-2024 +rule suspended,2024-06-20,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-26,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-01,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +returned to Senate,2024-06-13,[],MI,2023-2024 +inserted full title,2023-11-09,[],MI,2023-2024 +placed on third reading,2023-01-24,[],MI,2023-2024 +PASSED ROLL CALL # 180 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-02-14,[],MI,2023-2024 +returned to Senate,2023-06-27,[],MI,2023-2024 +amended,2023-03-21,[],MI,2023-2024 +PASSED ROLL CALL # 666 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-11-07,['passage'],MI,2023-2024 +inserted full title,2023-06-22,[],MI,2023-2024 +PASSED ROLL CALL # 176 YEAS 21 NAYS 15 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +read a third time,2023-11-03,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 480 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-11-02,['passage'],MI,2023-2024 +PASSED ROLL CALL # 718 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +PASSED ROLL CALL # 197 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +PASSED ROLL CALL # 193 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +inserted full title,2024-05-21,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +placed on second reading,2023-10-05,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2023-02-28,['committee-passage'],MI,2023-2024 +placed on immediate passage,2024-05-21,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-24,[],MI,2023-2024 +passed; given immediate effect Roll Call # 100 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +returned from Senate without amendment with immediate effect,2023-09-27,[],MI,2023-2024 +inserted full title,2023-11-09,[],MI,2023-2024 +placed on third reading,2023-06-21,[],MI,2023-2024 +INSERTED FULL TITLE,2024-04-16,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 119 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2023-04-19,['passage'],MI,2023-2024 +title amended,2024-06-20,[],MI,2023-2024 +PASSED ROLL CALL # 32 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2024-02-27,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +PASSED ROLL CALL # 183 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-20,[],MI,2023-2024 +placed on second reading,2023-05-17,[],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +inserted full title,2023-10-18,[],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +passed; given immediate effect Roll Call # 570 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-05,[],MI,2023-2024 +INSERTED FULL TITLE,2024-06-11,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-04-17,[],MI,2023-2024 +inserted full title,2023-10-18,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-19,[],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-06-25,[],MI,2023-2024 +returned to Senate,2024-06-11,[],MI,2023-2024 +inserted full title,2023-11-09,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-02-07,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-11-09,[],MI,2023-2024 +read a second time,2023-11-09,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 211 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +bill ordered enrolled,2023-10-04,[],MI,2023-2024 +title amended,2023-06-22,[],MI,2023-2024 +inserted full title,2024-06-20,[],MI,2023-2024 +read a second time,2023-05-17,['reading-2'],MI,2023-2024 +passed; given immediate effect Roll Call # 524 Yeas 60 Nays 49 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +PASSED ROLL CALL # 188 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +placed on immediate passage,2023-10-25,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-06-27,['amendment-failure'],MI,2023-2024 +INSERTED FULL TITLE,2023-09-27,[],MI,2023-2024 +inserted full title,2023-06-22,[],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-02,[],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +placed on third reading,2023-09-27,[],MI,2023-2024 +placed on third reading,2023-11-08,[],MI,2023-2024 +motion to discharge committee approved,2024-05-15,[],MI,2023-2024 +PASSED ROLL CALL # 404 YEAS 31 NAYS 6 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2024-06-25,['referral-committee'],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-19,[],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +inserted full title,2024-06-27,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-31,[],MI,2023-2024 +read a second time,2023-05-02,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-28,[],MI,2023-2024 +substitute (H-2) adopted,2023-11-08,[],MI,2023-2024 +inserted full title,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 665 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-11-07,['passage'],MI,2023-2024 +bill ordered enrolled 10/20/2023,2023-10-24,[],MI,2023-2024 +returned to Senate,2024-05-22,[],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-01,[],MI,2023-2024 +inserted full title,2023-11-08,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 47 YEAS 24 NAYS 14 EXCUSED 0 NOT VOTING 0,2024-02-29,['passage'],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-11-09,[],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +read a second time,2023-05-17,['reading-2'],MI,2023-2024 +returned to Senate,2023-11-01,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-05-17,[],MI,2023-2024 +inserted full title,2023-11-08,[],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +INSERTED FULL TITLE,2023-09-27,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-05-02,[],MI,2023-2024 +INSERTED FULL TITLE,2024-02-22,[],MI,2023-2024 +read a second time,2024-05-15,['reading-2'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-10-24,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +returned to Senate,2023-06-21,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-06-20,[],MI,2023-2024 +PASSED ROLL CALL # 712 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 139 Yeas 56 Nays 47 Excused 0 Not Voting 7,2024-05-22,['passage'],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2023-11-09,['committee-passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-11-02,[],MI,2023-2024 +read a second time,2023-11-01,['reading-2'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-13,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-04-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-04-18,[],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +read a second time,2023-05-17,['reading-2'],MI,2023-2024 +placed on second reading,2023-05-17,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-10,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-08,[],MI,2023-2024 +substitute (H-3) adopted,2024-06-27,[],MI,2023-2024 +read a second time,2023-03-22,['reading-2'],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect,2023-10-04,[],MI,2023-2024 +inserted full title,2023-06-22,[],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 40 YEAS 24 NAYS 14 EXCUSED 0 NOT VOTING 0,2024-02-28,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-04-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 496 Yeas 61 Nays 48 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-11-08,[],MI,2023-2024 +INSERTED FULL TITLE,2023-09-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 543 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +returned to Senate,2023-11-09,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-10-24,[],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +returned to Senate,2023-10-12,[],MI,2023-2024 +returned from Senate without amendment with immediate effect,2023-10-05,[],MI,2023-2024 +inserted full title,2023-06-21,[],MI,2023-2024 +returned from Senate without amendment,2023-11-08,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-04-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-03-19,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-02,[],MI,2023-2024 +full title agreed to,2023-10-12,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-04-17,[],MI,2023-2024 +passed; given immediate effect Roll Call # 489 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-11-03,['passage'],MI,2023-2024 +placed on third reading,2024-05-15,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-05-09,['committee-passage'],MI,2023-2024 +returned from Senate without amendment with full title,2023-10-24,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-05,[],MI,2023-2024 +AMENDMENT(S) ADOPTED,2024-02-29,['amendment-passage'],MI,2023-2024 +placed on second reading,2023-05-17,[],MI,2023-2024 +passed; given immediate effect Roll Call # 363 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-10-12,['passage'],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 437 Yeas 90 Nays 20 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 401 YEAS 29 NAYS 8 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-28,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +returned to Senate,2024-06-20,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-02-22,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2023-06-20,[],MI,2023-2024 +PASSED ROLL CALL # 189 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 24 YEAS 35 NAYS 2 EXCUSED 1 NOT VOTING 0,2024-02-22,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 71 Yeas 104 Nays 3 Excused 0 Not Voting 3,2023-04-27,['passage'],MI,2023-2024 +returned to Senate,2023-06-21,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 352 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 210 Yeas 109 Nays 0 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +placed on third reading,2023-03-21,[],MI,2023-2024 +substitute (H-1) adopted,2023-03-22,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-09,[],MI,2023-2024 +returned from Senate with substitute (S-1),2024-05-15,[],MI,2023-2024 +placed on third reading,2023-06-28,[],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 353 YEAS 34 NAYS 4 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +returned to Senate,2023-06-28,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-28,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-07,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-06-25,[],MI,2023-2024 +PASSED ROLL CALL # 56 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2024-03-13,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-06-14,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 441 Yeas 58 Nays 52 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +PASSED ROLL CALL # 477 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +PASSED ROLL CALL # 182 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 68 Yeas 56 Nays 49 Excused 0 Not Voting 5,2024-05-08,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-05-17,[],MI,2023-2024 +INSERTED FULL TITLE,2023-09-27,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +placed on immediate passage,2024-05-08,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-08,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-24,[],MI,2023-2024 +read a second time,2023-10-04,['reading-2'],MI,2023-2024 +inserted full title,2023-10-05,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-08,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-24,[],MI,2023-2024 +inserted full title,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 184 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 231 Yeas 85 Nays 23 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-03-08,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-21,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-02-13,['committee-passage'],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +returned from Senate without amendment,2023-11-01,[],MI,2023-2024 +returned to Senate,2024-06-12,[],MI,2023-2024 +RULES SUSPENDED,2023-04-20,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-09-12,[],MI,2023-2024 +inserted full title,2024-06-26,[],MI,2023-2024 +placed on third reading,2023-11-03,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +RULES SUSPENDED,2023-05-17,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-18,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 227 YEAS 27 NAYS 11 EXCUSED 0 NOT VOTING 0,2023-05-10,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-23,[],MI,2023-2024 +PASSED ROLL CALL # 185 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-28,[],MI,2023-2024 +PASSED ROLL CALL # 175 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +PASSED ROLL CALL # 248 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2024-06-18,['passage'],MI,2023-2024 +returned from Senate without amendment with immediate effect,2023-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 312 Yeas 57 Nays 53 Excused 0 Not Voting 0,2023-09-27,['passage'],MI,2023-2024 +read a third time,2023-04-20,['reading-3'],MI,2023-2024 +returned to Senate,2023-06-27,[],MI,2023-2024 +INSERTED FULL TITLE,2023-09-27,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-02-21,['committee-passage'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-07,[],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +INSERTED FULL TITLE,2024-02-27,[],MI,2023-2024 +read a second time,2023-03-22,['reading-2'],MI,2023-2024 +inserted full title,2023-11-09,[],MI,2023-2024 +RULES SUSPENDED,2023-04-19,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +INSERTED FULL TITLE,2024-05-15,[],MI,2023-2024 +TITLE AMENDED,2024-06-25,[],MI,2023-2024 +PASSED ROLL CALL # 711 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 2,2023-11-09,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 205 Yeas 72 Nays 37 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +placed on immediate passage,2024-05-21,[],MI,2023-2024 +amended,2023-06-27,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +SUBSTITUTE (S-1) ADOPTED,2024-04-24,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-21,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-24,[],MI,2023-2024 +postponed temporarily,2024-06-27,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON FINANCE, INSURANCE, AND CONSUMER PROTECTION",2023-11-09,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 668 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-11-07,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-26,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-05-16,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2024-03-20,['referral-committee'],MI,2023-2024 +RULES SUSPENDED,2023-05-17,[],MI,2023-2024 +read a second time,2024-05-15,['reading-2'],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-06-28,['amendment-failure'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-02-28,[],MI,2023-2024 +RULES SUSPENDED,2023-06-28,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-03-19,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-11-02,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +inserted full title,2024-06-25,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +read a third time,2023-09-28,['reading-3'],MI,2023-2024 +returned from Senate without amendment with full title,2023-10-25,[],MI,2023-2024 +placed on immediate passage,2023-10-12,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +substitute (H-1) adopted,2023-06-13,[],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +PASSED ROLL CALL # 75 YEAS 22 NAYS 15 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 351 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-11-09,[],MI,2023-2024 +AMENDMENT(S) ADOPTED,2024-05-02,['amendment-passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2023-10-05,['committee-passage'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-19,[],MI,2023-2024 +read a second time,2023-05-17,['reading-2'],MI,2023-2024 +placed on third reading,2023-04-26,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +substitute (H-2) adopted and amended,2023-06-14,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +notice of intent to reconsider given,2024-06-05,[],MI,2023-2024 +passed; given immediate effect Roll Call # 96 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 186 Yeas 99 Nays 10 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +INSERTED FULL TITLE,2024-04-10,[],MI,2023-2024 +INSERTED FULL TITLE,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-02-21,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-19,[],MI,2023-2024 +placed on immediate passage,2024-06-25,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-08,[],MI,2023-2024 +returned from Senate without amendment with immediate effect,2023-06-27,[],MI,2023-2024 +inserted full title,2023-11-03,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 484 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +RULES SUSPENDED,2023-09-27,[],MI,2023-2024 +returned from Senate without amendment with immediate effect,2023-09-27,[],MI,2023-2024 +RULES SUSPENDED,2023-05-17,[],MI,2023-2024 +placed on immediate passage,2023-05-18,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-05-14,[],MI,2023-2024 +returned to Senate,2023-09-06,[],MI,2023-2024 +transmitted,2023-03-22,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-02,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-07,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-23,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-03-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 540 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2023-11-08,['referral-committee'],MI,2023-2024 +inserted full title,2023-09-06,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +inserted full title,2024-06-25,[],MI,2023-2024 +passed; given immediate effect Roll Call # 18 Yeas 64 Nays 45 Excused 0 Not Voting 1,2023-03-08,['passage'],MI,2023-2024 +PASSED ROLL CALL # 557 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 418 YEAS 27 NAYS 10 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-19,[],MI,2023-2024 +PASSED ROLL CALL # 98 YEAS 32 NAYS 5 EXCUSED 1 NOT VOTING 0,2024-04-23,['passage'],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-10-31,[],MI,2023-2024 +placed on immediate passage,2023-04-26,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 480 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-06-28,[],MI,2023-2024 +INSERTED FULL TITLE,2024-02-21,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-06-25,[],MI,2023-2024 +returned to Senate,2024-06-13,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +RULES SUSPENDED,2023-05-17,[],MI,2023-2024 +RULES SUSPENDED,2024-06-26,[],MI,2023-2024 +substitute (H-2) adopted,2023-06-28,[],MI,2023-2024 +PASSED ROLL CALL # 586 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-24,['passage'],MI,2023-2024 +placed on third reading,2023-04-26,[],MI,2023-2024 +PASSED ROLL CALL # 192 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2023-10-19,[],MI,2023-2024 +returned to Senate,2023-04-27,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-04,[],MI,2023-2024 +INSERTED FULL TITLE,2024-03-13,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-14,[],MI,2023-2024 +RULES SUSPENDED,2023-03-23,[],MI,2023-2024 +full title agreed to,2024-06-25,[],MI,2023-2024 +PASSED ROLL CALL # 399 YEAS 22 NAYS 15 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +substitute (H-1) adopted,2023-10-04,[],MI,2023-2024 +passed; given immediate effect Roll Call # 271 Yeas 70 Nays 40 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +returned from Senate with substitute (S-1),2024-05-15,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-17,[],MI,2023-2024 +VOTE RECONSIDERED,2023-11-08,[],MI,2023-2024 +INSERTED FULL TITLE,2024-03-19,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-02,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-17,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 27 YEAS 32 NAYS 5 EXCUSED 1 NOT VOTING 0,2024-02-22,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +returned from Senate without amendment,2023-11-08,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-09-07,[],MI,2023-2024 +full title agreed to,2024-02-22,[],MI,2023-2024 +inserted full title,2024-06-20,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +PASSED ROLL CALL # 667 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-11-07,['passage'],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-18,[],MI,2023-2024 +returned from Senate without amendment with immediate effect,2023-10-04,[],MI,2023-2024 +INSERTED FULL TITLE,2023-05-10,[],MI,2023-2024 +placed on third reading,2023-06-28,[],MI,2023-2024 +PLACED ON ORDER OF GENERAL ORDERS,2024-06-12,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-15,[],MI,2023-2024 +PASSED ROLL CALL # 437 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +returned to Senate,2024-06-25,[],MI,2023-2024 +full title agreed to,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-13,[],MI,2023-2024 +PASSED ROLL CALL # 108 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-05-02,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +full title agreed to,2023-10-31,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-05,[],MI,2023-2024 +placed on third reading,2023-06-13,[],MI,2023-2024 +inserted full title,2024-06-20,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-09,[],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-03-19,[],MI,2023-2024 +INSERTED FULL TITLE,2024-03-19,[],MI,2023-2024 +INSERTED FULL TITLE,2023-09-27,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-04-10,[],MI,2023-2024 +read a third time,2023-05-18,['reading-3'],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +inserted full title,2023-11-09,[],MI,2023-2024 +returned to Senate,2024-06-25,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-02,[],MI,2023-2024 +returned from Senate without amendment with immediate effect,2023-06-28,[],MI,2023-2024 +PASSED ROLL CALL # 698 YEAS 23 NAYS 12 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +read a third time,2023-04-26,['reading-3'],MI,2023-2024 +full title agreed to,2023-06-28,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-17,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-18,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-02-21,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-06-20,[],MI,2023-2024 +returned from Senate with substitute (S-1),2024-05-15,[],MI,2023-2024 +placed on immediate passage,2023-03-21,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 423 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +substitute (H-2) adopted,2023-03-22,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-06-26,['amendment-failure'],MI,2023-2024 +title amended,2024-05-08,[],MI,2023-2024 +read a third time,2024-05-08,['reading-3'],MI,2023-2024 +returned to Senate,2024-06-26,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 717 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-02-21,['referral-committee'],MI,2023-2024 +returned from Senate with substitute (S-1),2024-05-15,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2024-06-18,[],MI,2023-2024 +returned from Senate with substitute (S-1),2024-05-15,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-17,[],MI,2023-2024 +PASSED ROLL CALL # 190 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +bill ordered enrolled,2023-06-27,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-09-27,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-10-24,[],MI,2023-2024 +PASSED ROLL CALL # 117 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-03-23,['passage'],MI,2023-2024 +returned to Senate,2023-11-09,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2024-05-15,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +returned from Senate with substitute (S-2) with title amendment,2024-06-25,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 240 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-04-19,[],MI,2023-2024 +inserted full title,2023-09-27,[],MI,2023-2024 +RULES SUSPENDED,2023-06-28,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-02-27,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-06-27,['amendment-failure'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 450 YEAS 29 NAYS 9 EXCUSED 0 NOT VOTING 0,2023-09-12,['passage'],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-04-20,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 103 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2023-03-21,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-14,[],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +returned to Senate,2023-10-05,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-09-27,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-17,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-10-24,[],MI,2023-2024 +INSERTED FULL TITLE,2023-09-27,[],MI,2023-2024 +IMMEDIATE EFFECT POSTPONED,2024-06-18,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-14,[],MI,2023-2024 +inserted full title,2023-11-01,[],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +placed on immediate passage,2023-06-28,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-14,[],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +INSERTED FULL TITLE,2024-02-22,[],MI,2023-2024 +postponed temporarily,2023-11-08,[],MI,2023-2024 +returned from Senate with substitute (S-1),2024-05-15,[],MI,2023-2024 +returned from Senate without amendment,2023-10-24,[],MI,2023-2024 +INSERTED FULL TITLE,2023-09-27,[],MI,2023-2024 +placed on immediate passage,2023-04-26,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 400 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2024-04-23,[],MI,2023-2024 +inserted full title,2023-03-08,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-05-14,[],MI,2023-2024 +RULES SUSPENDED,2023-11-07,[],MI,2023-2024 +bill ordered enrolled,2023-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 327 Yeas 103 Nays 5 Excused 0 Not Voting 2,2023-09-28,['passage'],MI,2023-2024 +RULES SUSPENDED,2023-03-23,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4),2023-11-08,['committee-passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-09-27,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 701 YEAS 32 NAYS 3 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +returned from Senate without amendment with full title,2023-10-24,[],MI,2023-2024 +returned to Senate,2023-09-06,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-19,[],MI,2023-2024 +full title agreed to,2023-10-25,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 102 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2023-03-21,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 349 YEAS 34 NAYS 4 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +PASSED ROLL CALL # 581 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-24,['passage'],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-02-28,[],MI,2023-2024 +read a third time,2023-10-12,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 187 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +SUBSTITUTE (S-2) ADOPTED,2024-03-14,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2024-05-22,['committee-passage'],MI,2023-2024 +PASSED ROLL CALL # 207 YEAS 22 NAYS 11 EXCUSED 5 NOT VOTING 0,2024-05-16,['passage'],MI,2023-2024 +PASSED ROLL CALL # 100 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2024-04-24,['passage'],MI,2023-2024 +inserted full title,2023-06-21,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +returned from Senate with substitute (S-1),2024-05-15,[],MI,2023-2024 +PASSED ROLL CALL # 444 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-02-20,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-06-26,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-10-24,[],MI,2023-2024 +rule suspended,2024-06-11,[],MI,2023-2024 +returned to Senate,2023-11-03,[],MI,2023-2024 +read a third time,2024-06-25,['reading-3'],MI,2023-2024 +placed on third reading,2023-06-14,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-17,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-28,[],MI,2023-2024 +INSERTED FULL TITLE,2024-06-18,[],MI,2023-2024 +placed on immediate passage,2023-04-26,[],MI,2023-2024 +placed on immediate passage,2023-11-03,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-03-19,['amendment-failure'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-11-08,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-28,[],MI,2023-2024 +placed on third reading,2023-03-22,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-05-03,['amendment-failure'],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 17 Yeas 57 Nays 51 Excused 0 Not Voting 2,2023-03-07,['passage'],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-02-13,[],MI,2023-2024 +inserted full title,2023-06-21,[],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-09-27,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2024-05-01,[],MI,2023-2024 +inserted full title,2023-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 62 Yeas 61 Nays 45 Excused 0 Not Voting 4,2023-04-20,['passage'],MI,2023-2024 +ORDERED ENROLLED,2023-10-19,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-10-12,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-11-08,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-02-28,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-04,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-18,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +returned to Senate,2023-11-09,[],MI,2023-2024 +laid over one day under the rules,2024-02-27,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-09-27,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +placed on immediate passage,2023-11-01,[],MI,2023-2024 +read a third time,2023-10-12,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +PASSED ROLL CALL # 48 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-03-08,['passage'],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-18,[],MI,2023-2024 +placed on immediate passage,2023-06-28,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2023-10-31,[],MI,2023-2024 +PASSED ROLL CALL # 653 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-02,['passage'],MI,2023-2024 +inserted full title,2024-05-01,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-09,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-28,[],MI,2023-2024 +inserted full title,2023-11-01,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +TITLE AMENDED,2024-06-25,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +title amended,2024-06-13,[],MI,2023-2024 +inserted full title,2023-06-21,[],MI,2023-2024 +full title agreed to,2024-06-26,[],MI,2023-2024 +returned to Senate,2023-11-03,[],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +vote reconsidered,2024-06-20,[],MI,2023-2024 +read a third time,2023-01-26,['reading-3'],MI,2023-2024 +ORDERED ENROLLED,2023-11-02,[],MI,2023-2024 +placed on third reading,2023-03-22,[],MI,2023-2024 +amended,2023-06-27,[],MI,2023-2024 +PASSED ROLL CALL # 677 YEAS 23 NAYS 14 EXCUSED 1 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2024-05-01,[],MI,2023-2024 +PRESENTED TO GOVERNOR 06/26/2024 02:42 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-03-19,['committee-passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 252 Yeas 103 Nays 5 Excused 0 Not Voting 2,2023-06-28,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 91 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +read a second time,2023-04-13,['reading-2'],MI,2023-2024 +bill ordered enrolled,2024-06-12,[],MI,2023-2024 +inserted full title,2024-06-26,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-11-09,[],MI,2023-2024 +PASSED ROLL CALL # 651 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-02,['passage'],MI,2023-2024 +read a second time,2024-05-15,['reading-2'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-02-29,['amendment-failure'],MI,2023-2024 +returned to Senate,2023-06-28,[],MI,2023-2024 +returned to Senate,2023-06-21,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 25 YEAS 34 NAYS 3 EXCUSED 1 NOT VOTING 0,2024-02-22,['passage'],MI,2023-2024 +full title agreed to,2023-06-28,[],MI,2023-2024 +substitute (H-5) adopted and amended,2023-06-21,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-17,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-03,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-09-27,[],MI,2023-2024 +inserted full title,2023-10-24,[],MI,2023-2024 +placed on second reading,2023-05-17,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 6 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-02-07,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-21,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-02-01,[],MI,2023-2024 +returned from Senate without amendment,2023-10-24,[],MI,2023-2024 +INSERTED FULL TITLE,2023-09-27,[],MI,2023-2024 +returned to Senate,2023-06-27,[],MI,2023-2024 +PASSED ROLL CALL # 652 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-02,['passage'],MI,2023-2024 +returned to Senate,2023-04-20,[],MI,2023-2024 +read a third time,2023-06-27,['reading-3'],MI,2023-2024 +PRESENTED TO GOVERNOR 10/27/2023 02:30 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +laid over one day under the rules,2024-06-20,[],MI,2023-2024 +read a third time,2023-09-28,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-10-11,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +inserted full title,2023-01-31,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-11-07,['amendment-failure'],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-05-10,['amendment-passage'],MI,2023-2024 +vote reconsidered,2024-06-20,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH AMENDMENT(S),2023-11-08,['committee-passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-06,[],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-14,[],MI,2023-2024 +inserted full title,2023-06-27,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-18,[],MI,2023-2024 +presented to the Governor 02/29/2024 02:38 PM,2024-03-05,['executive-receipt'],MI,2023-2024 +PASSED ROLL CALL # 279 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-25,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2023-09-27,[],MI,2023-2024 +inserted full title,2023-10-05,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-07,[],MI,2023-2024 +returned to Senate,2023-06-22,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 242 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +defeated Roll Call # 499 Yeas 54 Nays 53 Excused 0 Not Voting 3,2023-11-08,[],MI,2023-2024 +returned from Senate without amendment,2024-04-17,[],MI,2023-2024 +returned to Senate,2024-06-20,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 392 YEAS 31 NAYS 6 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +ORDERED ENROLLED,2024-06-04,[],MI,2023-2024 +returned to Senate,2023-06-28,[],MI,2023-2024 +read a third time,2024-06-11,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 724 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2023-06-14,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-06-26,[],MI,2023-2024 +inserted full title,2023-11-08,[],MI,2023-2024 +full title agreed to,2024-02-14,[],MI,2023-2024 +title amended,2023-10-04,[],MI,2023-2024 +returned to Senate,2024-06-26,[],MI,2023-2024 +placed on immediate passage,2024-06-26,[],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-18,[],MI,2023-2024 +passed; given immediate effect Roll Call # 142 Yeas 100 Nays 7 Excused 0 Not Voting 3,2023-06-08,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2024-03-19,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-02-07,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 99 YEAS 34 NAYS 3 EXCUSED 1 NOT VOTING 0,2024-04-24,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2024-05-15,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 501 YEAS 29 NAYS 8 EXCUSED 1 NOT VOTING 0,2023-10-05,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2023-09-27,[],MI,2023-2024 +PASSED ROLL CALL # 509 YEAS 23 NAYS 14 EXCUSED 0 NOT VOTING 1,2023-10-10,['passage'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-06-25,[],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +read a third time,2023-10-12,['reading-3'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-06-26,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +INSERTED FULL TITLE,2023-03-23,[],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:32 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +INSERTED FULL TITLE,2024-03-19,[],MI,2023-2024 +returned from Senate without amendment with immediate effect,2023-11-08,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-03-13,[],MI,2023-2024 +full title agreed to,2024-06-25,[],MI,2023-2024 +passed; given immediate effect Roll Call # 101 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 473 YEAS 25 NAYS 13 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-03,[],MI,2023-2024 +INSERTED FULL TITLE,2023-04-27,[],MI,2023-2024 +INSERTED FULL TITLE,2024-03-19,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2023-10-31,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-09-19,[],MI,2023-2024 +title amended,2023-09-12,[],MI,2023-2024 +REPORTED FAVORABLY WITHOUT AMENDMENT,2024-06-25,['committee-passage'],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect and title amendment,2024-06-25,[],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 339 Yeas 91 Nays 17 Excused 0 Not Voting 2,2023-10-04,['passage'],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 74 YEAS 22 NAYS 15 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +read a third time,2023-03-22,['reading-3'],MI,2023-2024 +returned from Senate with substitute (S-1),2024-05-15,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-11-09,['amendment-failure'],MI,2023-2024 +returned from Senate with substitute (S-1),2024-05-15,[],MI,2023-2024 +returned to Senate,2024-06-26,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-02,[],MI,2023-2024 +substitute (H-6) adopted,2023-11-03,[],MI,2023-2024 +full title agreed to,2023-10-10,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2023-11-02,[],MI,2023-2024 +bill ordered enrolled,2023-06-27,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-02-07,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2023-02-28,[],MI,2023-2024 +rule suspended,2024-06-26,[],MI,2023-2024 +returned to Senate,2023-06-20,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-17,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-17,[],MI,2023-2024 +passed; given immediate effect Roll Call # 170 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-06-20,['passage'],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-18,[],MI,2023-2024 +AMENDMENT(S) CONCURRED IN,2023-11-09,[],MI,2023-2024 +returned to Senate,2023-06-27,[],MI,2023-2024 +RULES SUSPENDED,2023-06-27,[],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +PASSED ROLL CALL # 715 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +placed on immediate passage,2024-06-20,[],MI,2023-2024 +full title agreed to,2024-03-13,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-02-20,['amendment-failure'],MI,2023-2024 +inserted full title,2023-11-09,[],MI,2023-2024 +PASSED ROLL CALL # 643 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-02,['passage'],MI,2023-2024 +full title agreed to,2024-02-07,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-17,[],MI,2023-2024 +PASSED ROLL CALL # 48 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-02-29,['passage'],MI,2023-2024 +returned to Senate,2023-10-18,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-10-24,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-09,[],MI,2023-2024 +passed; given immediate effect Roll Call # 487 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-11-03,['passage'],MI,2023-2024 +inserted full title,2023-06-27,[],MI,2023-2024 +returned to Senate,2023-11-09,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 328 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-06-08,['passage'],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-18,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-17,[],MI,2023-2024 +full title agreed to,2023-10-24,[],MI,2023-2024 +full title agreed to,2023-10-24,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-07,[],MI,2023-2024 +PASSED ROLL CALL # 510 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2023-10-10,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 354 YEAS 30 NAYS 8 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +returned to Senate,2023-06-22,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-27,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-02,[],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-02,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-09-27,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-05-09,[],MI,2023-2024 +PASSED ROLL CALL # 411 YEAS 21 NAYS 15 EXCUSED 2 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +substitute (H-1) adopted,2023-11-01,[],MI,2023-2024 +placed on immediate passage,2023-01-24,[],MI,2023-2024 +read a second time,2023-05-17,['reading-2'],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +read a second time,2023-05-17,['reading-2'],MI,2023-2024 +inserted full title,2023-10-12,[],MI,2023-2024 +returned to Senate,2023-06-21,[],MI,2023-2024 +inserted full title,2023-11-01,[],MI,2023-2024 +returned to Senate,2023-06-22,[],MI,2023-2024 +substitute (H-1) adopted,2023-03-22,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-02-22,[],MI,2023-2024 +full title agreed to,2023-04-19,[],MI,2023-2024 +read a second time,2023-05-17,['reading-2'],MI,2023-2024 +RULES SUSPENDED,2023-11-02,[],MI,2023-2024 +read a third time,2023-09-28,['reading-3'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-09-27,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +returned to Senate,2023-06-22,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-10-10,[],MI,2023-2024 +returned to Senate,2023-11-09,[],MI,2023-2024 +returned from Senate without amendment with immediate effect,2023-04-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 265 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-09,[],MI,2023-2024 +passed; given immediate effect Roll Call # 264 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +returned from Senate without amendment,2023-11-09,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +inserted full title,2023-06-22,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-09,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-09-27,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 576 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-19,['passage'],MI,2023-2024 +inserted full title,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 263 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +read a second time,2023-10-05,['reading-2'],MI,2023-2024 +INSERTED FULL TITLE,2023-06-27,[],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-17,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-04-17,[],MI,2023-2024 +returned to Senate,2023-06-22,[],MI,2023-2024 +RULES SUSPENDED,2023-11-02,[],MI,2023-2024 +presented to the Governor 10/26/2023 02:00 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-06-20,[],MI,2023-2024 +RULES SUSPENDED,2023-06-28,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-01,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-05-17,[],MI,2023-2024 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2023-11-09,[],MI,2023-2024 +PASSED ROLL CALL # 21 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2024-02-21,['passage'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2023-11-09,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +inserted full title,2023-11-08,[],MI,2023-2024 +full title agreed to,2023-10-24,[],MI,2023-2024 +substitute (H-1) adopted,2024-05-15,[],MI,2023-2024 +passed; given immediate effect Roll Call # 102 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +SUBSTITUTE (S-1) DEFEATED,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 93 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +returned to Senate,2024-06-27,[],MI,2023-2024 +placed on second reading,2024-05-15,[],MI,2023-2024 +returned to Senate,2023-10-18,[],MI,2023-2024 +PASSED ROLL CALL # 76 YEAS 22 NAYS 15 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +PASSED ROLL CALL # 72 YEAS 22 NAYS 15 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +title amended,2023-11-02,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 126 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-04-19,['passage'],MI,2023-2024 +placed on third reading,2024-06-27,[],MI,2023-2024 +SUBSTITUTE (S-3) ADOPTED,2024-04-23,[],MI,2023-2024 +PASSED ROLL CALL # 127 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-04-19,['passage'],MI,2023-2024 +SUBSTITUTE (S-1) ADOPTED,2023-10-10,[],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 553 Yeas 61 Nays 47 Excused 0 Not Voting 2,2023-11-09,['passage'],MI,2023-2024 +returned to Senate,2023-11-09,[],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +returned from Senate with substitute (S-1),2024-05-15,[],MI,2023-2024 +placed on third reading,2023-03-21,[],MI,2023-2024 +returned from Senate with substitute (S-1),2024-05-15,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-18,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +returned from Senate with substitute (S-1),2024-05-15,[],MI,2023-2024 +PASSED ROLL CALL # 179 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +returned to Senate,2024-05-22,[],MI,2023-2024 +PASSED ROLL CALL # 178 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +bill ordered enrolled,2023-10-12,[],MI,2023-2024 +passed; given immediate effect Roll Call # 105 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-04-17,[],MI,2023-2024 +INSERTED FULL TITLE,2024-05-15,[],MI,2023-2024 +INSERTED FULL TITLE,2024-05-15,[],MI,2023-2024 +INSERTED FULL TITLE,2024-02-27,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-04-17,[],MI,2023-2024 +placed on immediate passage,2023-11-08,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +ORDERED ENROLLED,2024-05-02,[],MI,2023-2024 +returned to Senate,2024-06-20,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-06-11,[],MI,2023-2024 +returned to Senate,2023-11-09,[],MI,2023-2024 +read a third time,2023-06-22,['reading-3'],MI,2023-2024 +ORDERED ENROLLED,2023-10-19,[],MI,2023-2024 +bill ordered enrolled,2023-11-01,[],MI,2023-2024 +returned from Senate without amendment,2024-02-28,[],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +passed; given immediate effect Roll Call # 567 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +placed on third reading,2023-11-09,[],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +bill ordered enrolled,2023-10-05,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-04,[],MI,2023-2024 +read a third time,2023-10-25,['reading-3'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-18,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 398 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2024-02-29,[],MI,2023-2024 +passed; given immediate effect Roll Call # 526 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +returned to Senate,2024-06-20,[],MI,2023-2024 +full title agreed to,2024-06-25,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 15 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-02-14,['passage'],MI,2023-2024 +laid over one day under the rules,2023-10-04,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-11-08,[],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 393 YEAS 34 NAYS 3 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +bill ordered enrolled,2023-10-24,[],MI,2023-2024 +placed on third reading,2024-05-15,[],MI,2023-2024 +PASSED ROLL CALL # 678 YEAS 24 NAYS 13 EXCUSED 1 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +PASSED ROLL CALL # 196 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +inserted full title,2023-11-03,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 20 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2024-02-21,['passage'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-19,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +returned to Senate,2023-06-27,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-05-15,['amendment-failure'],MI,2023-2024 +INSERTED FULL TITLE,2024-03-19,[],MI,2023-2024 +returned from Senate with substitute (S-2) with full title,2024-02-27,[],MI,2023-2024 +INSERTED FULL TITLE,2024-03-19,[],MI,2023-2024 +returned to Senate,2023-11-02,[],MI,2023-2024 +INSERTED FULL TITLE,2024-02-14,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-05-15,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +presented to the Governor 11/21/2023 09:32 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-18,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +placed on immediate passage,2023-11-01,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +placed on third reading,2023-05-17,[],MI,2023-2024 +bill ordered enrolled 10/20/2023,2023-10-24,[],MI,2023-2024 +PASSED ROLL CALL # 380 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2024-05-15,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +bill ordered enrolled 10/20/2023,2023-10-24,[],MI,2023-2024 +presented to the Governor 09/28/2023 04:48 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-10,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-14,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 394 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +returned to Senate,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2024-06-25,[],MI,2023-2024 +passed; given immediate effect Roll Call # 89 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2023-06-27,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-06-28,[],MI,2023-2024 +placed on third reading,2023-05-02,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-11-09,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/22/2023 09:08 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +full title agreed to,2023-09-27,[],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-05-10,['amendment-passage'],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2024-06-26,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-27,[],MI,2023-2024 +placed on third reading,2023-11-01,[],MI,2023-2024 +inserted full title,2023-11-08,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-17,[],MI,2023-2024 +INSERTED FULL TITLE,2024-05-15,[],MI,2023-2024 +read a third time,2023-11-08,['reading-3'],MI,2023-2024 +read a third time,2023-01-24,['reading-3'],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +POSTPONED FOR THE DAY,2024-06-05,[],MI,2023-2024 +returned from Senate with substitute (S-4) with immediate effect and full title,2024-03-05,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-17,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-27,[],MI,2023-2024 +returned to Senate,2023-10-12,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-18,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2023-06-27,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-02,[],MI,2023-2024 +returned to Senate,2023-11-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 411 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-10-25,['passage'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-04,[],MI,2023-2024 +substitute (H-2) adopted,2023-03-22,[],MI,2023-2024 +full title agreed to,2024-02-22,[],MI,2023-2024 +presented to the Governor 09/28/2023 04:58 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2024-02-07,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-18,[],MI,2023-2024 +bill ordered enrolled,2023-04-19,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-17,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-10-10,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-02,[],MI,2023-2024 +PASSED ROLL CALL # 508 YEAS 25 NAYS 13 EXCUSED 0 NOT VOTING 0,2023-10-10,['passage'],MI,2023-2024 +placed on immediate passage,2023-03-21,[],MI,2023-2024 +presented to the Governor 10/17/2023 09:25 AM,2023-10-17,['executive-receipt'],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-04,[],MI,2023-2024 +passed; given immediate effect Roll Call # 95 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +passed; given immediate effect Roll Call # 326 Yeas 103 Nays 5 Excused 0 Not Voting 2,2023-09-28,['passage'],MI,2023-2024 +full title agreed to,2023-09-27,[],MI,2023-2024 +placed on immediate passage,2023-11-09,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +returned to Senate,2023-11-09,[],MI,2023-2024 +full title agreed to,2023-10-10,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2023-04-19,[],MI,2023-2024 +substitute (H-4) adopted,2023-11-09,[],MI,2023-2024 +placed on third reading,2023-05-17,[],MI,2023-2024 +presented to the Governor 10/17/2023 09:19 AM,2023-10-17,['executive-receipt'],MI,2023-2024 +INSERTED FULL TITLE,2024-02-29,[],MI,2023-2024 +AMENDMENT(S) WITHDRAWN,2023-11-09,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +bill ordered enrolled,2024-02-28,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-02-20,['amendment-failure'],MI,2023-2024 +presented to the Governor 11/27/2023 03:30 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +title amended,2024-06-27,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:16 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +returned to Senate,2023-06-22,[],MI,2023-2024 +PRESENTED TO GOVERNOR 10/27/2023 02:28 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +INSERTED FULL TITLE,2023-04-19,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-19,[],MI,2023-2024 +SUBSTITUTE (S-1) ADOPTED,2023-11-09,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 223 Yeas 106 Nays 3 Excused 0 Not Voting 1,2023-06-22,['passage'],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +returned to Senate,2024-06-27,[],MI,2023-2024 +substitute (H-1) adopted,2023-10-05,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-06-28,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-08,[],MI,2023-2024 +placed on third reading,2023-05-17,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-06-27,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-02,[],MI,2023-2024 +approved by the Governor 11/07/2023 01:02 PM,2023-11-08,['executive-signature'],MI,2023-2024 +full title agreed to,2023-10-24,[],MI,2023-2024 +PASSED ROLL CALL # 97 YEAS 31 NAYS 6 EXCUSED 1 NOT VOTING 0,2024-04-23,['passage'],MI,2023-2024 +returned to Senate,2023-11-09,[],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +returned from Senate without amendment with immediate effect,2023-06-08,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-09,[],MI,2023-2024 +full title agreed to,2024-06-11,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 384 YEAS 30 NAYS 7 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-26,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-28,[],MI,2023-2024 +full title agreed to,2023-11-01,[],MI,2023-2024 +RULES SUSPENDED,2023-05-17,[],MI,2023-2024 +PRESENTED TO GOVERNOR 05/09/2024 09:25 AM,2024-05-14,['executive-receipt'],MI,2023-2024 +PASSED ROLL CALL # 17 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2024-02-20,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2023-11-09,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2024-06-20,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +INSERTED FULL TITLE,2024-02-21,[],MI,2023-2024 +passed; given immediate effect Roll Call # 552 Yeas 59 Nays 49 Excused 0 Not Voting 2,2023-11-09,['passage'],MI,2023-2024 +TITLE AMENDED,2023-04-19,[],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:24 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +returned to Senate,2024-06-20,[],MI,2023-2024 +PASSED ROLL CALL # 304 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2023-05-17,['passage'],MI,2023-2024 +bill ordered enrolled,2024-02-22,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-09-07,[],MI,2023-2024 +bill ordered enrolled,2023-06-28,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 479 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2023-09-27,['passage'],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-18,[],MI,2023-2024 +bill ordered enrolled,2023-06-28,[],MI,2023-2024 +PASSED ROLL CALL # 443 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +returned from Senate with substitute (S-2) with full title,2024-04-23,[],MI,2023-2024 +returned from Senate without amendment with immediate effect,2023-06-28,[],MI,2023-2024 +returned from Senate without amendment,2023-11-08,[],MI,2023-2024 +read a third time,2023-04-26,['reading-3'],MI,2023-2024 +ORDERED ENROLLED,2024-05-14,[],MI,2023-2024 +PASSED ROLL CALL # 85 YEAS 22 NAYS 13 EXCUSED 3 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +returned to Senate,2023-03-08,[],MI,2023-2024 +inserted full title,2023-09-28,[],MI,2023-2024 +returned from Senate without amendment,2024-06-18,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2024-06-26,[],MI,2023-2024 +presented to the Governor 07/10/2023 11:06 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-07,[],MI,2023-2024 +read a third time,2023-06-14,['reading-3'],MI,2023-2024 +returned to Senate,2023-11-09,[],MI,2023-2024 +PRESENTED TO GOVERNOR 06/11/2024 09:36 AM,2024-06-11,['executive-receipt'],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +read a third time,2023-04-26,['reading-3'],MI,2023-2024 +returned from Senate without amendment,2023-06-28,[],MI,2023-2024 +vote reconsidered,2024-06-11,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-03-23,[],MI,2023-2024 +presented to the Governor 09/28/2023 05:10 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +full title agreed to,2024-04-10,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-28,[],MI,2023-2024 +PASSED ROLL CALL # 298 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-17,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 118 Yeas 103 Nays 4 Excused 0 Not Voting 3,2023-05-18,['passage'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-09-27,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-03-19,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-05-02,[],MI,2023-2024 +full title agreed to,2023-10-24,[],MI,2023-2024 +full title agreed to,2023-10-24,[],MI,2023-2024 +full title agreed to,2024-03-19,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2023-03-23,['referral-committee'],MI,2023-2024 +PASSED ROLL CALL # 737 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +returned to Senate,2024-06-20,[],MI,2023-2024 +PASSED ROLL CALL # 704 YEAS 22 NAYS 13 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-09,[],MI,2023-2024 +PASSED ROLL CALL # 69 YEAS 22 NAYS 15 EXCUSED 1 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +ORDERED ENROLLED,2024-06-18,[],MI,2023-2024 +returned from Senate with amendment(s),2024-05-07,[],MI,2023-2024 +bill ordered enrolled,2024-06-25,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +ORDERED ENROLLED,2023-10-19,[],MI,2023-2024 +PASSED ROLL CALL # 511 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-10-10,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 212 Yeas 110 Nays 0 Excused 0 Not Voting 0,2024-06-25,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2024-02-20,['amendment-failure'],MI,2023-2024 +INSERTED FULL TITLE,2023-03-21,[],MI,2023-2024 +read a third time,2023-06-20,['reading-3'],MI,2023-2024 +bill ordered enrolled,2023-10-25,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-14,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-11-07,[],MI,2023-2024 +bill ordered enrolled,2024-03-19,[],MI,2023-2024 +INSERTED FULL TITLE,2024-02-22,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-02,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 382 YEAS 25 NAYS 12 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +ORDERED ENROLLED,2024-02-28,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 313 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2024-06-26,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-03-19,[],MI,2023-2024 +returned from Senate with substitute (S-1),2024-05-15,[],MI,2023-2024 +PRESENTED TO GOVERNOR 06/11/2024 09:32 AM,2024-06-11,['executive-receipt'],MI,2023-2024 +passed; given immediate effect Roll Call # 360 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-10-12,['passage'],MI,2023-2024 +placed on third reading,2023-05-17,[],MI,2023-2024 +PASSED ROLL CALL # 59 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-03-14,['passage'],MI,2023-2024 +PASSED ROLL CALL # 301 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-17,['passage'],MI,2023-2024 +returned from Senate without amendment,2023-06-28,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-09-07,[],MI,2023-2024 +bill ordered enrolled,2023-10-31,[],MI,2023-2024 +SUBSTITUTE (S-2) CONCURRED IN,2024-05-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 92 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +laid over one day under the rules,2024-06-25,[],MI,2023-2024 +placed on immediate passage,2023-03-22,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +returned to Senate,2023-09-27,[],MI,2023-2024 +placed on third reading,2024-05-15,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2023-11-09,[],MI,2023-2024 +INSERTED FULL TITLE,2024-02-22,[],MI,2023-2024 +INSERTED FULL TITLE,2023-03-23,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 128 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-04-19,['passage'],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-07,[],MI,2023-2024 +full title agreed to,2023-09-27,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-24,[],MI,2023-2024 +presented to the Governor 07/10/2023 11:24 AM,2023-06-28,['executive-receipt'],MI,2023-2024 +INSERTED FULL TITLE,2024-05-16,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-28,[],MI,2023-2024 +presented to the Governor 12/06/2023 02:20 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +returned from Senate with substitute (S-1) with title amendment,2024-05-15,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +returned from Senate with substitute (S-3) with full title,2023-10-24,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-10-24,[],MI,2023-2024 +returned from Senate with amendment(s) with immediate effect and full title,2023-05-10,[],MI,2023-2024 +PASSED ROLL CALL # 414 YEAS 21 NAYS 15 EXCUSED 2 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +full title agreed to,2024-02-27,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-18,[],MI,2023-2024 +PASSED ROLL CALL # 355 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2023-06-14,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2023-03-21,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +passed; given immediate effect Roll Call # 69 Yeas 92 Nays 16 Excused 0 Not Voting 2,2023-04-26,['passage'],MI,2023-2024 +inserted full title,2023-06-27,[],MI,2023-2024 +INSERTED FULL TITLE,2023-09-12,[],MI,2023-2024 +presented to the Governor 10/17/2023 09:17 AM,2023-10-17,['executive-receipt'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 131 YEAS 33 NAYS 4 EXCUSED 1 NOT VOTING 0,2023-04-20,['passage'],MI,2023-2024 +PASSED ROLL CALL # 303 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-17,['passage'],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +returned from Senate with substitute (S-1),2024-04-24,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +placed on immediate passage,2023-06-28,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-10,[],MI,2023-2024 +PASSED ROLL CALL # 297 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-17,['passage'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-09-27,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 72 Yeas 98 Nays 7 Excused 0 Not Voting 5,2024-05-08,['passage'],MI,2023-2024 +placed on third reading,2023-10-04,[],MI,2023-2024 +full title agreed to,2023-09-27,[],MI,2023-2024 +read a second time,2024-05-15,['reading-2'],MI,2023-2024 +substitute (H-1) adopted,2023-11-09,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +placed on third reading,2023-03-22,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-09-27,[],MI,2023-2024 +SUBSTITUTE (S-4) CONCURRED IN,2023-11-08,[],MI,2023-2024 +transmitted,2024-05-08,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 299 YEAS 35 NAYS 3 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-06-14,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-03-13,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-28,[],MI,2023-2024 +full title agreed to,2024-02-21,[],MI,2023-2024 +returned to Senate,2023-11-01,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-09,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-28,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 397 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +full title agreed to,2023-10-24,[],MI,2023-2024 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2024-07-30,['referral-committee'],MI,2023-2024 +read a third time,2023-03-21,['reading-3'],MI,2023-2024 +ROLL CALL: ROLL CALL # 213 YEAS 1 NAYS 37 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +read a third time,2023-11-03,['reading-3'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-18,['committee-passage'],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-20,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 383 YEAS 30 NAYS 7 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-03-08,['amendment-failure'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-02-22,[],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 218 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-06-14,[],MI,2023-2024 +bill ordered enrolled,2023-10-24,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-06-27,[],MI,2023-2024 +House requests return,2024-06-25,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-28,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-03-19,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +full title agreed to,2023-09-27,[],MI,2023-2024 +full title agreed to,2024-02-07,[],MI,2023-2024 +presented to the Governor 11/27/2023 03:04 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2024-06-20,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +inserted full title,2023-06-08,[],MI,2023-2024 +returned to Senate,2023-10-05,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2023-02-28,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +returned to Senate,2023-06-21,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 452 YEAS 27 NAYS 10 EXCUSED 1 NOT VOTING 0,2023-09-19,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 488 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-11-03,['passage'],MI,2023-2024 +bill ordered enrolled,2024-06-26,[],MI,2023-2024 +PASSED ROLL CALL # 16 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-02-01,['passage'],MI,2023-2024 +ORDERED ENROLLED,2023-11-07,[],MI,2023-2024 +inserted full title,2023-06-28,[],MI,2023-2024 +returned to Senate,2023-01-31,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-02-14,[],MI,2023-2024 +APPROVED BY GOVERNOR 12/12/2023 10:56 AM,2023-12-29,['executive-signature'],MI,2023-2024 +INSERTED FULL TITLE,2023-10-10,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-04-27,[],MI,2023-2024 +returned to Senate,2023-10-04,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:22 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +bill ordered enrolled,2023-06-28,[],MI,2023-2024 +placed on immediate passage,2024-06-27,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-18,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 381 YEAS 25 NAYS 12 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 237 Yeas 96 Nays 12 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +returned to Senate,2023-06-21,[],MI,2023-2024 +passed; given immediate effect Roll Call # 90 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-03-21,['amendment-failure'],MI,2023-2024 +substitute (H-5) adopted,2023-04-13,[],MI,2023-2024 +returned to Senate,2023-06-27,[],MI,2023-2024 +PASSED ROLL CALL # 145 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-03,['passage'],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-06-27,[],MI,2023-2024 +returned from Senate with substitute (S-1) with title amendment,2024-06-25,[],MI,2023-2024 +full title agreed to,2024-06-26,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/11/2024 01:42 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +INSERTED FULL TITLE,2024-04-24,[],MI,2023-2024 +INSERTED FULL TITLE,2024-02-07,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-09,[],MI,2023-2024 +returned from Senate with substitute (S-4) with full title,2024-05-15,[],MI,2023-2024 +full title agreed to,2024-06-26,[],MI,2023-2024 +laid over one day under the rules,2024-06-25,[],MI,2023-2024 +laid over one day under the rules,2023-10-31,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 661 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2023-11-07,['passage'],MI,2023-2024 +full title agreed to,2024-04-17,[],MI,2023-2024 +full title agreed to,2023-09-27,[],MI,2023-2024 +laid over one day under the rules,2024-05-01,[],MI,2023-2024 +inserted full title,2023-04-20,[],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect and full title,2023-10-18,[],MI,2023-2024 +passed; given immediate effect Roll Call # 451 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-06-28,['amendment-failure'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-02,[],MI,2023-2024 +presented to the Governor 12/06/2023 02:18 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH AMENDMENT(S),2023-11-09,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +laid over one day under the rules,2024-05-01,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/08/2024 09:30 AM,2024-07-30,['executive-signature'],MI,2023-2024 +substitute (H-1) adopted,2024-05-15,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:20 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +passed; given immediate effect Roll Call # 277 Yeas 89 Nays 21 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 323 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2023-06-06,['passage'],MI,2023-2024 +read a second time,2023-05-17,['reading-2'],MI,2023-2024 +returned from Senate with substitute (S-4) with immediate effect and full title,2023-09-27,[],MI,2023-2024 +PASSED ROLL CALL # 519 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2023-10-11,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 239 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-06-27,['passage'],MI,2023-2024 +PASSED ROLL CALL # 663 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-11-07,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 202 Yeas 71 Nays 38 Excused 0 Not Voting 1,2023-06-21,['passage'],MI,2023-2024 +ORDERED ENROLLED,2024-06-18,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-06-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 154 Yeas 65 Nays 44 Excused 0 Not Voting 1,2024-06-11,['passage'],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 255 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +full title agreed to,2024-06-25,[],MI,2023-2024 +full title agreed to,2023-09-27,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect,2023-10-05,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +ORDERED ENROLLED,2024-03-13,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-03,[],MI,2023-2024 +inserted full title,2023-10-04,[],MI,2023-2024 +PASSED ROLL CALL # 82 YEAS 23 NAYS 12 EXCUSED 3 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +returned to Senate,2023-06-21,[],MI,2023-2024 +passed; given immediate effect Roll Call # 40 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-03-22,['passage'],MI,2023-2024 +full title agreed to,2024-02-07,[],MI,2023-2024 +presented to the Governor 07/10/2023 11:08 AM,2023-06-28,['executive-receipt'],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-18,[],MI,2023-2024 +placed on third reading,2023-05-17,[],MI,2023-2024 +PASSED ROLL CALL # 730 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 251 Yeas 103 Nays 5 Excused 0 Not Voting 2,2023-06-28,['passage'],MI,2023-2024 +PRESENTED TO GOVERNOR 06/11/2024 09:38 AM,2024-06-11,['executive-receipt'],MI,2023-2024 +passed; given immediate effect Roll Call # 225 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +inserted full title,2023-03-07,[],MI,2023-2024 +returned to Senate,2023-06-27,[],MI,2023-2024 +full title agreed to,2023-10-12,[],MI,2023-2024 +ORDERED ENROLLED,2024-02-28,[],MI,2023-2024 +INSERTED FULL TITLE,2023-03-08,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2024-05-21,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 362 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-10-12,['passage'],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +returned to Senate,2024-05-01,[],MI,2023-2024 +passed; given immediate effect Roll Call # 242 Yeas 60 Nays 49 Excused 0 Not Voting 1,2024-06-26,['passage'],MI,2023-2024 +returned to Senate,2023-11-01,[],MI,2023-2024 +AMENDMENT(S) CONCURRED IN,2023-11-08,[],MI,2023-2024 +PRESENTED TO GOVERNOR 10/27/2023 02:32 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +PASSED ROLL CALL # 402 YEAS 28 NAYS 9 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +returned to Senate,2024-06-13,[],MI,2023-2024 +passed; given immediate effect Roll Call # 7 Yeas 74 Nays 34 Excused 0 Not Voting 2,2023-01-26,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 189 Yeas 105 Nays 4 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +presented to the Governor 12/06/2023 02:16 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +placed on immediate passage,2023-03-22,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +title amended,2024-05-21,[],MI,2023-2024 +PASSED ROLL CALL # 45 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2024-02-29,['passage'],MI,2023-2024 +returned to Senate,2024-06-26,[],MI,2023-2024 +presented to the Governor 06/14/2024 11:32 AM,2024-06-13,['executive-receipt'],MI,2023-2024 +returned from Senate without amendment,2023-11-02,[],MI,2023-2024 +title amended,2024-06-27,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-28,[],MI,2023-2024 +ORDERED ENROLLED,2023-10-03,[],MI,2023-2024 +PASSED ROLL CALL # 302 YEAS 21 NAYS 16 EXCUSED 0 NOT VOTING 1,2023-05-17,['passage'],MI,2023-2024 +returned to Senate,2023-10-24,[],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +vote on passage reconsidered,2024-06-26,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-28,[],MI,2023-2024 +bill ordered enrolled 10/20/2023,2023-10-24,[],MI,2023-2024 +passed; given immediate effect Roll Call # 147 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 106 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 325 Yeas 103 Nays 5 Excused 0 Not Voting 2,2023-09-28,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 190 Yeas 105 Nays 4 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +APPROVED BY GOVERNOR 11/07/2023 01:30 PM,2023-11-08,['executive-signature'],MI,2023-2024 +PASSED ROLL CALL # 177 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +returned from Senate with amendment(s) with immediate effect and full title,2023-09-27,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-03-14,['amendment-failure'],MI,2023-2024 +approved by the Governor 03/12/2024 10:04 AM,2024-03-12,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2024-04-17,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +inserted full title,2023-06-27,[],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect,2023-06-27,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-28,[],MI,2023-2024 +vote reconsidered,2023-11-08,[],MI,2023-2024 +read a third time,2024-06-26,['reading-3'],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 226 YEAS 27 NAYS 11 EXCUSED 0 NOT VOTING 0,2023-05-10,['passage'],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-03-19,[],MI,2023-2024 +bill ordered enrolled,2024-03-13,[],MI,2023-2024 +TITLE AMENDED,2024-06-25,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-05-15,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-09-27,[],MI,2023-2024 +full title agreed to,2023-09-27,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +passed; given immediate effect Roll Call # 361 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-10-12,['passage'],MI,2023-2024 +returned from Senate without amendment with full title,2023-03-23,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-26,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-03-19,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-04-27,[],MI,2023-2024 +returned from Senate with amendment(s) with immediate effect,2023-09-27,[],MI,2023-2024 +returned to Senate,2023-09-12,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +laid over one day under the rules,2023-10-31,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-02,[],MI,2023-2024 +INSERTED FULL TITLE,2024-03-19,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-3) CONCURRED IN,2024-06-26,[],MI,2023-2024 +PASSED ROLL CALL # 726 YEAS 21 NAYS 16 EXCUSED 1 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-06-14,[],MI,2023-2024 +bill ordered enrolled,2024-06-25,[],MI,2023-2024 +bill ordered enrolled,2023-10-10,[],MI,2023-2024 +read a third time,2024-06-20,['reading-3'],MI,2023-2024 +PASSED ROLL CALL # 300 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-17,['passage'],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-06-27,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-09,[],MI,2023-2024 +inserted full title,2023-06-20,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-06-25,['referral-committee'],MI,2023-2024 +title amended,2023-06-21,[],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2024-04-17,[],MI,2023-2024 +passed; given immediate effect Roll Call # 209 Yeas 56 Nays 53 Excused 0 Not Voting 1,2024-06-20,['passage'],MI,2023-2024 +presented to the Governor 07/11/2024 01:14 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:04 AM,2024-07-30,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/15/2024 02:38 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-10-05,[],MI,2023-2024 +returned to Senate,2023-11-03,[],MI,2023-2024 +INSERTED FULL TITLE,2024-05-15,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-28,[],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +inserted full title,2024-06-20,[],MI,2023-2024 +inserted full title,2024-06-26,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-06-29,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +laid over one day under the rules,2023-10-05,[],MI,2023-2024 +inserted full title,2024-06-26,[],MI,2023-2024 +substitute (H-1) adopted,2023-05-17,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/30/2023 12:16 PM,2023-12-29,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:36 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +laid over one day under the rules,2023-10-18,[],MI,2023-2024 +SENATE REQUESTS RETURN,2024-05-07,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2024-06-27,[],MI,2023-2024 +placed on third reading,2023-04-13,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +returned to Senate,2023-06-28,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-10,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2024-06-27,[],MI,2023-2024 +full title agreed to,2024-03-19,[],MI,2023-2024 +full title agreed to,2023-06-14,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 324 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-03-19,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +inserted full title,2023-10-12,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-09,[],MI,2023-2024 +full title agreed to,2024-03-19,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +returned to Senate,2023-06-27,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2024-03-19,[],MI,2023-2024 +full title agreed to,2023-09-27,[],MI,2023-2024 +laid over one day under the rules,2023-09-27,[],MI,2023-2024 +returned from Senate with substitute (S-1),2023-05-17,[],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2024-06-25,['committee-passage'],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-28,[],MI,2023-2024 +presented to the Governor 07/11/2024 01:00 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2024-02-14,[],MI,2023-2024 +presented to the Governor 07/17/2023 11:27 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +read a third time,2024-06-27,['reading-3'],MI,2023-2024 +bill ordered enrolled,2024-06-26,[],MI,2023-2024 +returned from Senate with substitute (S-3) with immediate effect,2023-11-08,[],MI,2023-2024 +SENATE REQUESTS RETURN,2024-05-07,[],MI,2023-2024 +laid over one day under the rules,2023-09-27,[],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +bill ordered enrolled,2024-06-25,[],MI,2023-2024 +PRESENTED TO GOVERNOR 03/19/2024 11:14 AM,2024-03-19,['executive-receipt'],MI,2023-2024 +INSERTED FULL TITLE,2024-03-19,[],MI,2023-2024 +approved by the Governor 07/11/2023 01:14 PM,2023-07-18,['executive-signature'],MI,2023-2024 +returned to Senate,2024-06-26,[],MI,2023-2024 +roll call Roll Call # 116 Yeas 68 Nays 39 Excused 0 Not Voting 3,2024-05-21,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-02,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2024-06-26,[],MI,2023-2024 +presented to the Governor 11/27/2023 03:16 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-26,[],MI,2023-2024 +PRESENTED TO GOVERNOR 10/10/2023 09:14 AM,2023-10-11,['executive-receipt'],MI,2023-2024 +approved by the Governor 06/19/2024 12:17 PM,2024-06-25,['executive-signature'],MI,2023-2024 +inserted full title,2023-09-28,[],MI,2023-2024 +PASSED ROLL CALL # 733 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 01:58 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +inserted full title,2024-06-20,[],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +full title agreed to,2023-06-14,[],MI,2023-2024 +passed; given immediate effect Roll Call # 467 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-11-02,[],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:26 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-02,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/07/2023 01:32 PM,2023-11-08,['executive-signature'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-28,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/13/2023 10:34 AM,2023-12-29,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-04-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/07/2023 02:38 PM,2023-11-08,[],MI,2023-2024 +INSERTED FULL TITLE,2023-05-10,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +laid over one day under the rules,2024-06-25,[],MI,2023-2024 +approved by the Governor 12/12/2023 10:38 AM,2023-12-31,['executive-signature'],MI,2023-2024 +TITLE AMENDED,2023-10-11,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +title amended,2024-05-21,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +INSERTED FULL TITLE,2024-02-29,[],MI,2023-2024 +read a third time,2023-03-22,['reading-3'],MI,2023-2024 +placed on third reading,2024-05-15,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +returned from Senate with substitute (S-2) with immediate effect and full title,2024-02-07,[],MI,2023-2024 +bill ordered enrolled,2024-02-07,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-09-19,[],MI,2023-2024 +full title agreed to,2024-05-15,[],MI,2023-2024 +returned from Senate with substitute (S-1) with title amendment,2024-06-25,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2024-06-18,[],MI,2023-2024 +postponed temporarily,2023-11-08,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 01:52 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +returned from Senate with substitute (S-1),2023-05-17,[],MI,2023-2024 +bill ordered enrolled,2023-11-02,[],MI,2023-2024 +returned to Senate,2024-06-27,[],MI,2023-2024 +inserted full title,2023-01-26,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 250 Yeas 103 Nays 5 Excused 0 Not Voting 2,2023-06-28,['passage'],MI,2023-2024 +title amended,2023-10-12,[],MI,2023-2024 +bill ordered enrolled,2023-10-12,[],MI,2023-2024 +returned to Senate,2023-03-07,[],MI,2023-2024 +inserted full title,2023-03-22,[],MI,2023-2024 +inserted full title,2024-06-11,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/11/2024 01:48 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 06/26/2024 03:00 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +returned from Senate without amendment with immediate effect,2023-06-06,[],MI,2023-2024 +inserted full title,2024-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/08/2024 01:06 PM,2024-07-30,[],MI,2023-2024 +returned from Senate with substitute (S-2) with full title,2023-11-02,[],MI,2023-2024 +returned to Senate,2023-04-20,[],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect and full title,2024-04-24,[],MI,2023-2024 +PASSED ROLL CALL # 99 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2023-03-21,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2023-05-03,[],MI,2023-2024 +inserted full title,2023-06-27,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-18,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/22/2023 11:48 AM,2023-12-29,['executive-signature'],MI,2023-2024 +TITLE AMENDED,2023-02-01,[],MI,2023-2024 +RULES SUSPENDED,2023-02-28,[],MI,2023-2024 +returned to Senate,2023-06-08,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 142 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-05-02,[],MI,2023-2024 +presented to the Governor 10/17/2023 09:33 AM,2023-10-17,['executive-receipt'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +full title agreed to,2023-03-23,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +filed with Secretary of State 03/12/2024 11:24 AM,2024-03-12,[],MI,2023-2024 +PASSED ROLL CALL # 69 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-03-14,['passage'],MI,2023-2024 +laid over one day under the rules,2023-09-27,[],MI,2023-2024 +laid over one day under the rules,2023-06-27,[],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:34 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +HOUSE REQUESTS RETURN,2024-06-26,[],MI,2023-2024 +presented to the Governor 11/27/2023 03:22 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-11-02,[],MI,2023-2024 +returned to Senate,2023-06-20,[],MI,2023-2024 +PASSED ROLL CALL # 403 YEAS 27 NAYS 10 EXCUSED 1 NOT VOTING 0,2023-06-27,['passage'],MI,2023-2024 +bill ordered enrolled,2024-02-07,[],MI,2023-2024 +approved by the Governor 11/29/2023 05:26 PM,2023-12-31,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +ORDERED ENROLLED,2023-02-01,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-10-10,[],MI,2023-2024 +full title agreed to,2023-04-27,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-09,[],MI,2023-2024 +INSERTED FULL TITLE,2023-09-19,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-28,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-28,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-18,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 389 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-27,[],MI,2023-2024 +title amended,2023-11-01,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-06-28,[],MI,2023-2024 +PASSED ROLL CALL # 441 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +title amended,2023-06-27,[],MI,2023-2024 +returned from Senate without amendment,2023-11-08,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 01:56 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 11/27/2023 02:32 PM,2023-12-29,['executive-receipt'],MI,2023-2024 +ORDERED ENROLLED,2023-10-03,[],MI,2023-2024 +returned to Senate,2023-10-04,[],MI,2023-2024 +placed on immediate passage,2023-05-17,[],MI,2023-2024 +APPROVED BY GOVERNOR 06/20/2024 10:06 AM,2024-06-20,['executive-signature'],MI,2023-2024 +returned to Senate,2023-06-28,[],MI,2023-2024 +PRESENTED TO GOVERNOR 03/05/2024 01:50 PM,2024-03-06,['executive-receipt'],MI,2023-2024 +returned from Senate without amendment with full title,2023-03-08,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +approved by the Governor 12/12/2023 10:36 AM,2023-12-31,['executive-signature'],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +presented to the Governor 10/26/2023 01:56 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +House requests return,2023-10-31,[],MI,2023-2024 +returned to Senate,2023-06-14,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH AMENDMENT(S),2023-11-08,[],MI,2023-2024 +presented to the Governor 03/19/2024 11:34 AM,2024-03-19,['executive-receipt'],MI,2023-2024 +passed; given immediate effect Roll Call # 227 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-26,['passage'],MI,2023-2024 +presented to the Governor 05/09/2024 09:19 AM,2024-05-09,['executive-receipt'],MI,2023-2024 +FULL TITLE AGREED TO,2024-05-02,[],MI,2023-2024 +read a third time,2023-03-21,['reading-3'],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2023-11-09,[],MI,2023-2024 +title amended,2024-05-21,[],MI,2023-2024 +passed; given immediate effect Roll Call # 511 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +presented to the Governor 12/06/2023 02:30 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +ROLL CALL: ROLL CALL # 222 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +approved by the Governor 09/29/2023 11:32 AM,2023-10-03,['executive-signature'],MI,2023-2024 +ORDERED ENROLLED,2024-06-18,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-10,[],MI,2023-2024 +title amended,2024-05-21,[],MI,2023-2024 +approved by the Governor 10/24/2023 10:08 AM,2023-10-24,['executive-signature'],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +returned from Senate with amendment(s) with full title,2023-04-19,[],MI,2023-2024 +INSERTED FULL TITLE,2024-04-23,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +returned from Senate with substitute (S-1) with title amendment,2023-04-19,[],MI,2023-2024 +INSERTED FULL TITLE,2024-05-15,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-11-02,[],MI,2023-2024 +full title agreed to,2024-05-15,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-03-19,[],MI,2023-2024 +laid over one day under the rules,2024-02-27,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-03-19,[],MI,2023-2024 +PASSED ROLL CALL # 195 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-19,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. SARAH ANTHONY, SEAN MCCANN, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +passed; given immediate effect Roll Call # 512 Yeas 105 Nays 4 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +presented to the Governor 10/26/2023 02:02 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +HOUSE AMENDMENT(S) CONCURRED IN ROLL CALL # 706 YEAS 24 NAYS 13 EXCUSED 0 NOT VOTING 1,2023-11-09,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/27/2023 02:30 PM,2023-12-29,['executive-receipt'],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect,2023-06-27,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-09,[],MI,2023-2024 +returned to Senate,2023-11-09,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-02-21,[],MI,2023-2024 +PASSED ROLL CALL # 83 YEAS 22 NAYS 13 EXCUSED 3 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +returned from Senate without amendment,2023-11-09,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 251 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-20,[],MI,2023-2024 +RULES SUSPENDED,2023-11-09,[],MI,2023-2024 +APPROVED BY GOVERNOR 05/21/2024 11:12 AM,2024-05-22,['executive-signature'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-05-17,[],MI,2023-2024 +bill ordered enrolled,2023-11-01,[],MI,2023-2024 +PASSED ROLL CALL # 438 YEAS 21 NAYS 16 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2024-02-20,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-27,[],MI,2023-2024 +bill ordered enrolled,2024-06-11,[],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +PASSED ROLL CALL # 654 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-02,['passage'],MI,2023-2024 +filed with Secretary of State 11/07/2023 02:10 PM,2023-11-08,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 388 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2023-06-27,[],MI,2023-2024 +placed on immediate passage,2023-05-17,[],MI,2023-2024 +PASSED ROLL CALL # 670 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +full title agreed to,2023-06-28,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/27/2023 02:36 PM,2023-12-29,['executive-receipt'],MI,2023-2024 +placed on third reading,2023-10-05,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-10-24,[],MI,2023-2024 +PASSED ROLL CALL # 723 YEAS 24 NAYS 13 EXCUSED 1 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +APPROVED BY GOVERNOR 11/07/2023 01:28 PM,2023-11-08,['executive-signature'],MI,2023-2024 +inserted full title,2023-06-22,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +APPROVED BY GOVERNOR 12/13/2023 05:04 PM,2023-12-29,['executive-signature'],MI,2023-2024 +returned to Senate,2024-06-27,[],MI,2023-2024 +approved by the Governor 11/29/2023 05:22 PM,2023-12-31,['executive-signature'],MI,2023-2024 +PASSED ROLL CALL # 19 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2024-02-20,['passage'],MI,2023-2024 +presented to the Governor 02/29/2024 02:40 PM,2024-03-05,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 84 YEAS 22 NAYS 13 EXCUSED 3 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-11-09,['amendment-failure'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +presented to the Governor 04/20/2023 04:36 PM,2023-04-25,['executive-receipt'],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2023-10-10,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/17/2023 09:55 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +read a third time,2023-11-09,['reading-3'],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +inserted full title,2023-09-28,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-04,[],MI,2023-2024 +approved by the Governor 10/19/2023 09:52 AM,2023-10-24,['executive-signature'],MI,2023-2024 +PASSED ROLL CALL # 641 YEAS 24 NAYS 14 EXCUSED 0 NOT VOTING 0,2023-11-02,['passage'],MI,2023-2024 +placed on third reading,2023-05-17,[],MI,2023-2024 +presented to the Governor 04/20/2023 04:38 PM,2023-04-25,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2024-02-22,[],MI,2023-2024 +placed on third reading,2023-03-22,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-18,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-04,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +title amended,2023-10-25,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-02,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 386 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-27,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-19,[],MI,2023-2024 +PRESENTED TO GOVERNOR 10/27/2023 02:26 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-06-28,[],MI,2023-2024 +placed on third reading,2023-05-17,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/27/2023 02:28 PM,2023-12-29,['executive-receipt'],MI,2023-2024 +laid over one day under the rules,2024-03-05,[],MI,2023-2024 +passed Roll Call # 4 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-01-24,['passage'],MI,2023-2024 +placed on third reading,2023-05-17,[],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +placed on immediate passage,2023-11-01,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-06-28,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 282 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-26,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 225 YEAS 27 NAYS 11 EXCUSED 0 NOT VOTING 0,2023-05-10,['passage'],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/22/2023 11:46 AM,2023-12-29,['executive-signature'],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +read a third time,2023-05-03,['reading-3'],MI,2023-2024 +full title agreed to,2023-06-28,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 390 YEAS 22 NAYS 15 EXCUSED 1 NOT VOTING 0,2023-06-27,[],MI,2023-2024 +presented to the Governor 07/11/2024 01:18 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-08,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-06-14,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-10-10,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +approved by the Governor 09/29/2023 11:16 AM,2023-10-03,['executive-signature'],MI,2023-2024 +presented to the Governor 10/26/2023 01:54 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +returned from Senate with substitute (S-1),2023-06-27,[],MI,2023-2024 +presented to the Governor 10/26/2023 01:58 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:56 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +ORDERED ENROLLED,2023-10-18,[],MI,2023-2024 +approved by the Governor 11/22/2023 11:28 AM,2023-12-31,['executive-signature'],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-02-14,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-06-27,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +returned to Senate,2023-11-03,[],MI,2023-2024 +bill ordered enrolled,2023-06-08,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-19,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2024-03-05,[],MI,2023-2024 +placed on immediate passage,2023-05-17,[],MI,2023-2024 +roll call Roll Call # 344 Yeas 94 Nays 16 Excused 0 Not Voting 0,2023-10-10,[],MI,2023-2024 +presented to the Governor 02/14/2024 09:26 AM,2024-02-14,['executive-receipt'],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-02,[],MI,2023-2024 +returned from Senate with substitute (S-1) with title amendment,2024-05-15,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect,2023-06-27,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +returned to Senate,2023-09-28,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-10-24,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +roll call Roll Call # 136 Yeas 47 Nays 56 Excused 0 Not Voting 7,2024-05-22,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-14,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 486 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-11-03,['passage'],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +returned from Senate with substitute (S-10) with full title,2024-05-21,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +Senate requests return,2023-10-31,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-20,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 664 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-11-07,['passage'],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-03-09,[],MI,2023-2024 +INSERTED FULL TITLE,2023-09-27,[],MI,2023-2024 +presented to the Governor 10/27/2023 02:35 PM,2023-11-07,['executive-receipt'],MI,2023-2024 +full title agreed to,2024-02-22,[],MI,2023-2024 +PASSED ROLL CALL # 731 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +full title agreed to,2023-09-27,[],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-10,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +INSERTED FULL TITLE,2023-04-20,[],MI,2023-2024 +INSERTED FULL TITLE,2023-04-19,[],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +laid over one day under the rules,2023-11-09,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2023-03-23,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +approved by the Governor 07/18/2023 12:06 PM,2023-07-19,['executive-signature'],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +returned to Senate,2024-05-08,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-27,[],MI,2023-2024 +returned from Senate with substitute (S-1),2023-05-17,[],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +approved by the Governor 09/29/2023 11:20 AM,2023-10-03,['executive-signature'],MI,2023-2024 +full title agreed to,2023-09-27,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 217 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +INSERTED FULL TITLE,2023-10-10,[],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +approved by the Governor 10/24/2023 10:04 AM,2023-10-24,['executive-signature'],MI,2023-2024 +substitute (H-1) adopted,2024-05-15,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. SUE SHINK, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:10 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect and full title,2023-11-08,[],MI,2023-2024 +full title agreed to,2023-06-14,[],MI,2023-2024 +returned from Senate without amendment,2023-06-28,[],MI,2023-2024 +passed; given immediate effect Roll Call # 70 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-04-26,['passage'],MI,2023-2024 +placed on immediate passage,2023-05-17,[],MI,2023-2024 +HOUSE AMENDMENT(S) CONCURRED IN ROLL CALL # 675 YEAS 22 NAYS 14 EXCUSED 1 NOT VOTING 1,2023-11-08,[],MI,2023-2024 +placed on third reading,2024-06-11,[],MI,2023-2024 +PASSED ROLL CALL # 47 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-03-08,['passage'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:06 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2024-06-18,[],MI,2023-2024 +TITLE AMENDED,2024-02-21,[],MI,2023-2024 +bill ordered enrolled,2023-10-24,[],MI,2023-2024 +read a third time,2023-03-22,['reading-3'],MI,2023-2024 +returned from Senate without amendment,2024-03-19,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +full title agreed to,2024-03-13,[],MI,2023-2024 +returned from Senate with substitute (S-1),2023-05-17,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +full title agreed to,2024-03-19,[],MI,2023-2024 +full title agreed to,2024-03-19,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 01:54 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +INSERTED FULL TITLE,2023-06-27,[],MI,2023-2024 +RULES SUSPENDED,2024-03-19,[],MI,2023-2024 +full title agreed to,2024-03-19,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-18,[],MI,2023-2024 +passed; given immediate effect Roll Call # 33 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-03-21,['passage'],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect,2024-06-26,[],MI,2023-2024 +returned from Senate with substitute (S-1),2023-05-17,[],MI,2023-2024 +returned to Senate,2023-04-26,[],MI,2023-2024 +bill ordered enrolled,2024-02-21,[],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-03-21,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-09-12,[],MI,2023-2024 +full title agreed to,2023-06-14,[],MI,2023-2024 +bill ordered enrolled,2023-10-24,[],MI,2023-2024 +laid over one day under the rules,2024-04-23,[],MI,2023-2024 +PASSED ROLL CALL # 115 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-03-23,['passage'],MI,2023-2024 +bill ordered enrolled 10/20/2023,2023-10-24,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +PRESENTED TO GOVERNOR 03/05/2024 01:52 PM,2024-03-06,['executive-receipt'],MI,2023-2024 +INSERTED FULL TITLE,2024-03-14,[],MI,2023-2024 +INSERTED FULL TITLE,2024-06-26,[],MI,2023-2024 +bill ordered enrolled,2024-04-10,[],MI,2023-2024 +ORDERED ENROLLED,2023-09-07,[],MI,2023-2024 +inserted full title,2023-10-12,[],MI,2023-2024 +passed; given immediate effect Roll Call # 264 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-06-28,['passage'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4),2023-11-08,[],MI,2023-2024 +full title agreed to,2023-09-27,[],MI,2023-2024 +returned to Senate,2023-06-27,[],MI,2023-2024 +PRESENTED TO GOVERNOR 06/26/2024 02:54 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +placed on immediate passage,2023-03-22,[],MI,2023-2024 +presented to the Governor 11/21/2023 09:38 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +laid over one day under the rules,2023-10-24,[],MI,2023-2024 +PASSED ROLL CALL # 732 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +read a third time,2023-06-28,['reading-3'],MI,2023-2024 +passed; given immediate effect Roll Call # 576 Yeas 87 Nays 20 Excused 0 Not Voting 3,2023-11-09,['passage'],MI,2023-2024 +passed; given immediate effect Roll Call # 150 Yeas 93 Nays 16 Excused 0 Not Voting 1,2023-06-14,['passage'],MI,2023-2024 +bill ordered enrolled,2024-02-27,[],MI,2023-2024 +returned from Senate with substitute (S-1) with title amendment,2024-05-15,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-03-21,[],MI,2023-2024 +PRESENTED TO GOVERNOR 05/28/2024 09:08 AM,2024-05-28,['executive-receipt'],MI,2023-2024 +passed; given immediate effect Roll Call # 68 Yeas 86 Nays 22 Excused 0 Not Voting 2,2023-04-26,['passage'],MI,2023-2024 +PASSED ROLL CALL # 735 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +INSERTED FULL TITLE,2023-06-27,[],MI,2023-2024 +PRESENTED TO GOVERNOR 06/26/2024 02:50 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-11-09,[],MI,2023-2024 +RULES SUSPENDED,2024-05-14,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-27,[],MI,2023-2024 +returned to Senate,2023-05-18,[],MI,2023-2024 +laid over one day under the rules,2024-05-07,[],MI,2023-2024 +PASSED ROLL CALL # 18 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2024-02-20,['passage'],MI,2023-2024 +bill ordered enrolled,2023-06-28,[],MI,2023-2024 +bill ordered enrolled 06/27/2023,2023-06-28,[],MI,2023-2024 +read a third time,2023-10-18,['reading-3'],MI,2023-2024 +full title agreed to,2023-10-24,[],MI,2023-2024 +substitute (H-4) adopted,2023-06-20,[],MI,2023-2024 +inserted full title,2024-06-25,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-06-28,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +approved by the Governor 12/12/2023 10:40 AM,2023-12-31,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2024-06-26,[],MI,2023-2024 +APPROVED BY GOVERNOR 06/20/2024 10:12 AM,2024-06-20,['executive-signature'],MI,2023-2024 +presented to the Governor 07/11/2024 01:12 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +returned from Senate with substitute (S-1),2023-05-17,[],MI,2023-2024 +APPROVED BY GOVERNOR 06/20/2024 10:04 AM,2024-06-20,['executive-signature'],MI,2023-2024 +INSERTED FULL TITLE,2024-03-19,[],MI,2023-2024 +presented to the Governor 02/29/2024 02:32 PM,2024-03-05,['executive-receipt'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-26,[],MI,2023-2024 +PRESENTED TO GOVERNOR 06/26/2024 03:02 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +laid over one day under the rules,2023-05-10,[],MI,2023-2024 +presented to the Governor 11/17/2023 09:40 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-26,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2024-06-26,[],MI,2023-2024 +presented to the Governor 07/17/2023 11:29 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/11/2024 01:54 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +SENATE REQUESTS RETURN,2023-06-28,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +placed on immediate passage,2023-05-17,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-10-03,[],MI,2023-2024 +Senate substitute (S-2) concurred in,2024-06-27,[],MI,2023-2024 +PASSED ROLL CALL # 442 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +returned from Senate with substitute (S-1),2023-05-17,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-11-02,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +bill ordered enrolled 06/27/2023,2023-06-28,[],MI,2023-2024 +bill ordered enrolled,2023-10-24,[],MI,2023-2024 +approved by the Governor 07/11/2023 01:12 PM,2023-07-18,['executive-signature'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-06-14,[],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect and full title,2024-02-22,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2024-05-22,[],MI,2023-2024 +laid over one day under the rules,2024-04-24,[],MI,2023-2024 +"REFERRED TO COMMITTEE ON CIVIL RIGHTS, JUDICIARY, AND PUBLIC SAFETY",2023-04-26,['referral-committee'],MI,2023-2024 +FULL TITLE AGREED TO,2023-09-07,[],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect and full title,2024-02-22,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/22/2023 11:50 AM,2023-12-29,['executive-signature'],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +roll call Roll Call # 132 Yeas 47 Nays 55 Excused 0 Not Voting 8,2024-05-22,[],MI,2023-2024 +read a third time,2023-05-17,['reading-3'],MI,2023-2024 +roll call Roll Call # 135 Yeas 47 Nays 56 Excused 0 Not Voting 7,2024-05-22,[],MI,2023-2024 +laid over one day under the rules,2024-03-14,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +filed with Secretary of State 07/19/2023 11:02 AM,2023-07-19,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-28,[],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect and full title,2023-04-20,[],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:28 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +returned from Senate with amendment(s) with full title,2023-04-19,[],MI,2023-2024 +laid over one day under the rules,2023-03-23,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +presented to the Governor 11/21/2023 10:00 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +roll call Roll Call # 291 Yeas 104 Nays 6 Excused 0 Not Voting 0,2024-06-27,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 488 YEAS 24 NAYS 14 EXCUSED 0 NOT VOTING 0,2023-10-03,[],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:42 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +roll call Roll Call # 137 Yeas 47 Nays 56 Excused 0 Not Voting 7,2024-05-22,[],MI,2023-2024 +rule suspended,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2024-05-21,[],MI,2023-2024 +passed; given immediate effect Roll Call # 249 Yeas 103 Nays 5 Excused 0 Not Voting 2,2023-06-28,['passage'],MI,2023-2024 +full title agreed to,2023-03-21,[],MI,2023-2024 +inserted full title,2023-06-28,[],MI,2023-2024 +APPROVED BY GOVERNOR 03/12/2024 10:16 AM,2024-03-12,['executive-signature'],MI,2023-2024 +presented to the Governor 10/26/2023 01:52 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +returned from Senate without amendment,2023-03-23,[],MI,2023-2024 +APPROVED BY GOVERNOR 06/06/2024 11:52 AM,2024-06-11,['executive-signature'],MI,2023-2024 +HOUSE AMENDMENT(S) CONCURRED IN ROLL CALL # 432 YEAS 21 NAYS 16 EXCUSED 1 NOT VOTING 0,2023-06-28,[],MI,2023-2024 +inserted full title,2023-04-26,[],MI,2023-2024 +full title agreed to,2023-10-24,[],MI,2023-2024 +presented to the Governor 10/27/2023 02:37 PM,2023-11-07,['executive-receipt'],MI,2023-2024 +laid over one day under the rules,2024-02-22,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2023-06-14,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2023-06-14,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +full title agreed to,2023-09-12,[],MI,2023-2024 +full title agreed to,2023-03-21,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/08/2024 09:42 AM,2024-07-30,['executive-signature'],MI,2023-2024 +returned from Senate without amendment with full title,2023-06-28,[],MI,2023-2024 +presented to the Governor 12/06/2023 02:10 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +presented to the Governor 09/28/2023 05:00 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +presented to the Governor 02/22/2024 02:48 PM,2024-02-22,['executive-receipt'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-04-27,[],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +laid over one day under the rules,2023-05-17,[],MI,2023-2024 +REFERRED TO COMMITTEE OF THE WHOLE,2024-05-14,['referral-committee'],MI,2023-2024 +Senate substitute (S-3) concurred in,2023-11-08,[],MI,2023-2024 +laid over one day under the rules,2024-06-26,[],MI,2023-2024 +returned to Senate,2023-03-21,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +returned to Senate,2023-06-14,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-05-25,[],MI,2023-2024 +bill ordered enrolled,2024-03-19,[],MI,2023-2024 +PASSED ROLL CALL # 267 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-20,['passage'],MI,2023-2024 +SENATE REQUESTS RETURN,2024-05-09,[],MI,2023-2024 +INSERTED FULL TITLE,2024-02-20,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +presented to the Governor 07/17/2023 11:15 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +read a third time,2023-03-22,['reading-3'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-06-27,[],MI,2023-2024 +approved by the Governor 11/22/2023 11:16 AM,2023-12-31,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 12:36 PM,2023-07-18,['executive-signature'],MI,2023-2024 +presented to the Governor 11/27/2023 03:24 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2024-03-19,[],MI,2023-2024 +roll call Roll Call # 127 Yeas 51 Nays 55 Excused 0 Not Voting 4,2024-05-22,[],MI,2023-2024 +presented to the Governor 07/10/2023 11:10 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2024-03-19,[],MI,2023-2024 +laid over one day under the rules,2023-05-17,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-03,[],MI,2023-2024 +passed; given immediate effect Roll Call # 381 Yeas 86 Nays 24 Excused 0 Not Voting 0,2023-10-18,['passage'],MI,2023-2024 +bill ordered enrolled,2024-03-13,[],MI,2023-2024 +roll call Roll Call # 125 Yeas 51 Nays 55 Excused 0 Not Voting 4,2024-05-22,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:38 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2024-03-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 48 Yeas 64 Nays 44 Excused 0 Not Voting 2,2023-03-22,['passage'],MI,2023-2024 +presented to the Governor 02/29/2024 02:36 PM,2024-03-05,['executive-receipt'],MI,2023-2024 +ORDERED ENROLLED,2023-09-07,[],MI,2023-2024 +passed; given immediate effect Roll Call # 171 Yeas 90 Nays 19 Excused 0 Not Voting 1,2023-06-20,['passage'],MI,2023-2024 +returned to Senate,2024-06-25,[],MI,2023-2024 +inserted full title,2023-11-03,[],MI,2023-2024 +presented to the Governor 10/26/2023 02:10 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +returned to Senate,2023-10-12,[],MI,2023-2024 +rule suspended,2024-04-24,[],MI,2023-2024 +roll call Roll Call # 119 Yeas 51 Nays 54 Excused 0 Not Voting 5,2024-05-22,[],MI,2023-2024 +laid over one day under the rules,2024-05-21,[],MI,2023-2024 +returned from Senate with substitute (S-1) with title amendment,2024-02-22,[],MI,2023-2024 +presented to the Governor 06/25/2024 03:08 PM,2024-06-25,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 12:48 PM,2023-07-18,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:22 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +full title agreed to,2023-06-28,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/08/2024 09:46 AM,2024-07-30,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2024-03-19,[],MI,2023-2024 +INSERTED FULL TITLE,2023-03-08,[],MI,2023-2024 +returned to Senate,2023-11-09,[],MI,2023-2024 +returned to Senate,2024-06-20,[],MI,2023-2024 +postponed for the day,2024-06-11,[],MI,2023-2024 +presented to the Governor 12/06/2023 02:24 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-08,[],MI,2023-2024 +read a third time,2023-05-17,['reading-3'],MI,2023-2024 +presented to the Governor 12/06/2023 02:12 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +laid over one day under the rules,2024-02-22,[],MI,2023-2024 +filed with Secretary of State 12/13/2023 10:18 AM,2023-12-31,[],MI,2023-2024 +roll call Roll Call # 128 Yeas 51 Nays 55 Excused 0 Not Voting 4,2024-05-22,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +inserted full title,2023-04-26,[],MI,2023-2024 +presented to the Governor 07/11/2024 01:04 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +full title agreed to,2023-06-14,[],MI,2023-2024 +bill ordered enrolled,2023-06-28,[],MI,2023-2024 +enrollment vacated,2023-10-31,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-20,[],MI,2023-2024 +PRESENTED TO GOVERNOR 09/13/2023 11:08 AM,2023-09-14,['executive-receipt'],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-07,[],MI,2023-2024 +filed with Secretary of State 07/12/2023 10:42 AM,2023-07-18,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/22/2023 01:56 PM,2023-12-29,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 06/20/2024 10:52 AM,2024-06-20,[],MI,2023-2024 +approved by the Governor 07/23/2024 09:50 AM,2024-07-30,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-06-14,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-03-09,[],MI,2023-2024 +laid over one day under the rules,2023-11-08,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 06/20/2024 11:00 AM,2024-06-20,[],MI,2023-2024 +laid over one day under the rules,2023-05-17,[],MI,2023-2024 +presented to the Governor 10/27/2023 02:39 PM,2023-11-07,['executive-receipt'],MI,2023-2024 +returned from Senate without amendment with full title,2024-04-10,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +approved by the Governor 03/12/2024 10:08 AM,2024-03-12,['executive-signature'],MI,2023-2024 +presented to the Governor 07/10/2023 11:18 AM,2023-06-28,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 12/13/2023 05:16 PM,2023-12-29,['executive-signature'],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +returned from Senate with substitute (S-5) with immediate effect and full title,2023-09-27,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-05,[],MI,2023-2024 +filed with Secretary of State 10/24/2023 11:36 AM,2023-10-24,[],MI,2023-2024 +approved by the Governor 11/07/2023 01:12 PM,2023-11-08,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 07/08/2024 09:54 AM,2024-07-30,['executive-signature'],MI,2023-2024 +placed on third reading,2024-05-15,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:16 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +Senate amendment(s) concurred in Roll Call # 105 Yeas 70 Nays 37 Excused 0 Not Voting 3,2023-05-11,[],MI,2023-2024 +bill ordered enrolled,2024-02-22,[],MI,2023-2024 +passed; given immediate effect Roll Call # 98 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +returned from Senate without amendment with full title,2023-10-10,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +approved by the Governor 11/21/2023 01:12 PM,2023-12-31,['executive-signature'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2023-11-09,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. SUE SHINK, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:20 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +presented to the Governor 11/27/2023 03:06 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +ROLL CALL: ROLL CALL # 638 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2023-11-02,[],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +filed with Secretary of State 09/29/2023 01:18 PM,2023-10-03,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 224 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 325 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-26,[],MI,2023-2024 +presented to the Governor 09/28/2023 04:42 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +approved by the Governor 07/26/2023 12:00 PM,2023-08-22,['executive-signature'],MI,2023-2024 +ORDERED ENROLLED,2023-10-10,[],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect and full title,2023-06-27,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +Senate requests return,2023-06-28,[],MI,2023-2024 +laid over one day under the rules,2023-05-17,[],MI,2023-2024 +presented to the Governor 04/19/2024 11:36 AM,2024-04-18,['executive-receipt'],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2024-05-09,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-06-26,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/15/2024 02:36 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +postponed temporarily,2024-06-26,[],MI,2023-2024 +bill ordered enrolled,2023-06-06,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +returned to Senate,2024-06-26,[],MI,2023-2024 +returned from Senate with substitute (S-1) with title amendment,2023-10-11,[],MI,2023-2024 +VOTE RECONSIDERED,2024-02-29,[],MI,2023-2024 +PRESENTED TO GOVERNOR 06/26/2024 02:56 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +returned to Senate,2023-09-28,[],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2023-09-19,[],MI,2023-2024 +laid over one day under the rules,2024-02-07,[],MI,2023-2024 +placed on immediate passage,2023-04-13,[],MI,2023-2024 +laid over one day under the rules,2024-04-24,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-28,[],MI,2023-2024 +approved by the Governor 05/22/2024 11:06 AM,2024-05-22,['executive-signature'],MI,2023-2024 +presented to the Governor 02/20/2024 03:34 PM,2024-02-20,['executive-receipt'],MI,2023-2024 +returned to Senate,2024-06-20,[],MI,2023-2024 +roll call Roll Call # 470 Yeas 97 Nays 12 Excused 0 Not Voting 1,2023-11-02,[],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +laid over one day under the rules,2023-05-17,[],MI,2023-2024 +presented to the Governor 09/28/2023 04:50 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 10/19/2023 10:19 AM,2023-10-24,['executive-signature'],MI,2023-2024 +full title agreed to,2023-03-08,[],MI,2023-2024 +laid over one day under the rules,2023-11-08,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. VERONICA KLINEFELT, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +presented to the Governor 07/11/2024 01:06 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +presented to the Governor 02/14/2024 09:24 AM,2024-02-14,['executive-receipt'],MI,2023-2024 +presented to the Governor 11/21/2023 09:56 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +returned from Senate with substitute (S-1) with title amendment,2024-05-15,[],MI,2023-2024 +presented to the Governor 09/28/2023 04:52 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +full title agreed to,2023-11-02,[],MI,2023-2024 +presented to the Governor 12/06/2023 02:08 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +approved by the Governor 11/29/2023 05:24 PM,2023-12-31,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 03/12/2024 10:14 AM,2024-03-12,['executive-signature'],MI,2023-2024 +approved by the Governor 10/19/2023 09:48 AM,2023-10-24,['executive-signature'],MI,2023-2024 +ROLL CALL: ROLL CALL # 326 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-26,[],MI,2023-2024 +REASSIGNED TO COMMITTEE ON ELECTIONS AND ETHICS,2023-10-03,[],MI,2023-2024 +ORDERED ENROLLED,2023-04-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/22/2023 01:54 PM,2023-12-29,[],MI,2023-2024 +bill ordered enrolled,2023-04-27,[],MI,2023-2024 +returned to Senate,2023-01-26,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 223 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +filed with Secretary of State 12/13/2023 10:16 AM,2023-12-31,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2024-06-27,[],MI,2023-2024 +laid over one day under the rules,2023-05-17,[],MI,2023-2024 +PRESENTED TO GOVERNOR 02/01/2023 12:22 PM,2023-02-02,['executive-receipt'],MI,2023-2024 +inserted full title,2024-06-26,[],MI,2023-2024 +ASSIGNED PA 0069'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-28,[],MI,2023-2024 +full title agreed to,2023-10-10,[],MI,2023-2024 +approved by the Governor 11/06/2023 10:30 AM,2023-11-08,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/17/2023 10:55 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +presented to the Governor 12/06/2023 02:00 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-28,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-10,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:20 AM,2024-07-30,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/07/2023 02:40 PM,2023-11-08,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-06-28,[],MI,2023-2024 +roll call Roll Call # 281 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-27,[],MI,2023-2024 +bill ordered enrolled,2023-06-14,[],MI,2023-2024 +filed with Secretary of State 11/30/2023 10:30 AM,2023-12-31,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 06/20/2024 10:56 AM,2024-06-20,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-02-28,[],MI,2023-2024 +presented to the Governor 02/14/2024 09:28 AM,2024-02-14,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2024-03-19,[],MI,2023-2024 +read a third time,2023-05-17,['reading-3'],MI,2023-2024 +laid over one day under the rules,2023-11-02,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +INSERTED FULL TITLE,2023-06-27,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-10-05,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-28,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-06-27,[],MI,2023-2024 +returned from Senate with substitute (S-2) with immediate effect and full title,2023-06-27,[],MI,2023-2024 +approved by the Governor 07/26/2023 12:02 PM,2023-08-22,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-06-14,[],MI,2023-2024 +full title agreed to,2024-03-19,[],MI,2023-2024 +bill ordered enrolled,2024-05-15,[],MI,2023-2024 +approved by the Governor 03/28/2024 09:48 AM,2024-04-09,['executive-signature'],MI,2023-2024 +roll call Roll Call # 469 Yeas 97 Nays 12 Excused 0 Not Voting 1,2023-11-02,[],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:52 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +approved by the Governor 11/29/2023 05:18 PM,2023-12-31,['executive-signature'],MI,2023-2024 +passed; given immediate effect Roll Call # 270 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +PRESENTED TO GOVERNOR 10/10/2023 09:18 AM,2023-10-11,['executive-receipt'],MI,2023-2024 +returned to Senate,2023-10-12,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/28/2023 01:26 PM,2023-12-29,['executive-signature'],MI,2023-2024 +HOUSE REQUESTS RETURN,2023-11-01,[],MI,2023-2024 +inserted full title,2023-06-28,[],MI,2023-2024 +laid over one day under the rules,2024-06-25,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-02,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 249 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-18,[],MI,2023-2024 +returned to Senate,2023-10-12,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 453 YEAS 27 NAYS 10 EXCUSED 1 NOT VOTING 0,2023-09-19,[],MI,2023-2024 +ASSIGNED PA 0196'23 WITH IMMEDIATE EFFECT,2023-11-08,[],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +approved by the Governor 07/23/2024 09:30 AM,2024-07-30,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 12/12/2023 10:58 AM,2023-12-29,['executive-signature'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-13,[],MI,2023-2024 +returned to Senate,2024-06-27,[],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2024-06-26,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +SENATE REQUESTS RETURN,2023-06-27,[],MI,2023-2024 +SENATE REQUESTS RETURN,2023-10-10,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +Senate amendment(s) concurred in Roll Call # 330 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-10-03,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/29/2023 05:08 PM,2023-12-29,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:04 PM,2024-07-30,[],MI,2023-2024 +returned from Senate without amendment,2023-03-15,[],MI,2023-2024 +House requests return,2023-11-02,[],MI,2023-2024 +returned to Senate,2023-06-21,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +filed with Secretary of State 06/20/2024 01:12 PM,2024-06-20,[],MI,2023-2024 +presented to the Governor 10/17/2023 09:21 AM,2023-10-17,['executive-receipt'],MI,2023-2024 +assigned PA 16'24,2024-03-12,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 12:38 PM,2023-07-18,['executive-signature'],MI,2023-2024 +returned to Senate,2024-06-26,[],MI,2023-2024 +HOUSE AMENDMENT(S) CONCURRED IN ROLL CALL # 434 YEAS 22 NAYS 15 EXCUSED 1 NOT VOTING 0,2023-06-28,[],MI,2023-2024 +returned from Senate with substitute (S-2) with immediate effect and full title,2023-06-27,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-09,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/17/2023 10:53 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:24 AM,2024-07-30,['executive-signature'],MI,2023-2024 +presented to the Governor 05/09/2024 09:21 AM,2024-05-09,['executive-receipt'],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +postponed temporarily,2024-06-26,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-03-08,[],MI,2023-2024 +RETURN GRANTED,2024-06-26,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2024-06-26,[],MI,2023-2024 +presented to the Governor 03/27/2024 11:02 AM,2024-04-09,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:36 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 06/26/2024 02:44 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +returned from Senate with substitute (S-2) with title amendment,2023-02-01,[],MI,2023-2024 +roll call Roll Call # 134 Yeas 47 Nays 55 Excused 0 Not Voting 8,2024-05-22,[],MI,2023-2024 +returned to Senate,2023-06-27,[],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:24 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +RULES SUSPENDED,2023-11-08,[],MI,2023-2024 +returned to Senate,2024-06-20,[],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-28,[],MI,2023-2024 +returned to Senate,2023-06-27,[],MI,2023-2024 +returned to Senate,2023-03-22,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:48 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 07/12/2023 10:44 AM,2023-07-18,[],MI,2023-2024 +placed on third reading,2023-05-17,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-04-10,[],MI,2023-2024 +APPROVED BY GOVERNOR 03/28/2024 09:46 AM,2024-04-09,['executive-signature'],MI,2023-2024 +inserted full title,2023-11-01,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:42 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +presented to the Governor 09/28/2023 05:08 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +presented to the Governor 07/11/2024 01:10 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-11-07,[],MI,2023-2024 +Senate amendment(s) concurred in Roll Call # 331 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-10-03,[],MI,2023-2024 +bill ordered enrolled,2023-03-23,[],MI,2023-2024 +ORDERED ENROLLED,2024-05-02,[],MI,2023-2024 +returned to Senate,2024-06-11,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/01/2023 11:02 AM,2023-12-29,[],MI,2023-2024 +ASSIGNED PA 0304'23,2023-12-29,[],MI,2023-2024 +Senate requests return,2024-05-07,[],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:18 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 11/22/2023 11:34 AM,2023-12-29,['executive-signature'],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-09,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-04-27,[],MI,2023-2024 +roll call Roll Call # 290 Yeas 110 Nays 0 Excused 0 Not Voting 0,2024-06-27,[],MI,2023-2024 +returned from Senate without amendment,2023-06-28,[],MI,2023-2024 +passed; given immediate effect Roll Call # 49 Yeas 64 Nays 44 Excused 0 Not Voting 2,2023-03-22,['passage'],MI,2023-2024 +presented to the Governor 09/28/2023 04:54 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +laid over one day under the rules,2023-05-17,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/08/2024 09:52 AM,2024-07-30,['executive-signature'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2024-03-19,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-25,[],MI,2023-2024 +returned from Senate with amendment(s) with immediate effect and full title,2023-05-10,[],MI,2023-2024 +full title agreed to,2023-06-28,[],MI,2023-2024 +rule suspended,2024-04-23,[],MI,2023-2024 +Senate substitute (S-4) concurred in,2024-05-21,[],MI,2023-2024 +returned to Senate,2023-11-01,[],MI,2023-2024 +approved by the Governor 07/23/2024 09:40 AM,2024-07-30,['executive-signature'],MI,2023-2024 +roll call Roll Call # 120 Yeas 51 Nays 55 Excused 0 Not Voting 4,2024-05-22,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-10-24,[],MI,2023-2024 +rule suspended,2023-09-27,[],MI,2023-2024 +Senate requests return,2024-05-07,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:36 AM,2024-07-30,['executive-signature'],MI,2023-2024 +full title agreed to,2023-05-03,[],MI,2023-2024 +TITLE AMENDED,2023-03-21,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +filed with Secretary of State 12/13/2023 10:14 AM,2023-12-31,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-05-02,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 12:34 PM,2023-07-18,['executive-signature'],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +presented to the Governor 06/14/2024 11:34 AM,2024-06-13,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 11/22/2023 11:52 AM,2023-12-29,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/07/2023 02:36 PM,2023-11-08,[],MI,2023-2024 +PASSED ROLL CALL # 727 YEAS 21 NAYS 16 EXCUSED 1 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +TITLE AMENDED,2023-11-02,[],MI,2023-2024 +laid over one day under the rules,2023-04-19,[],MI,2023-2024 +placed on immediate passage,2023-05-17,[],MI,2023-2024 +laid over one day under the rules,2023-06-27,[],MI,2023-2024 +full title agreed to,2023-10-24,[],MI,2023-2024 +read a third time,2023-05-17,['reading-3'],MI,2023-2024 +laid over one day under the rules,2023-06-27,[],MI,2023-2024 +PRESENTED TO GOVERNOR 06/26/2024 02:46 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:44 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 700 YEAS 32 NAYS 3 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +approved by the Governor 11/06/2023 10:32 AM,2023-11-08,['executive-signature'],MI,2023-2024 +placed on immediate passage,2023-03-22,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-11-09,['amendment-failure'],MI,2023-2024 +filed with Secretary of State 10/24/2023 11:40 AM,2023-10-24,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +read a third time,2023-11-01,['reading-3'],MI,2023-2024 +ROLL CALL: ROLL CALL # 229 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +returned from Senate with substitute (S-3) with full title,2024-04-23,[],MI,2023-2024 +placed on immediate passage,2023-05-17,[],MI,2023-2024 +returned to Senate,2023-09-28,[],MI,2023-2024 +approved by the Governor 11/06/2023 11:00 AM,2023-11-08,['executive-signature'],MI,2023-2024 +ORDERED ENROLLED,2023-10-19,[],MI,2023-2024 +returned to Senate,2023-10-25,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/07/2023 01:26 PM,2023-11-08,['executive-signature'],MI,2023-2024 +full title agreed to,2023-06-28,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-02,[],MI,2023-2024 +filed with Secretary of State 09/29/2023 01:14 PM,2023-10-03,[],MI,2023-2024 +ORDERED ENROLLED,2023-10-19,[],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2024-06-26,[],MI,2023-2024 +assigned PA 182'23,2023-11-08,[],MI,2023-2024 +INSERTED FULL TITLE,2023-05-10,[],MI,2023-2024 +House requests return,2023-11-08,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +presented to the Governor 06/09/2023 11:58 AM,2023-06-13,['executive-receipt'],MI,2023-2024 +presented to the Governor 09/28/2023 05:04 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 11/27/2023 02:34 PM,2023-12-29,['executive-receipt'],MI,2023-2024 +SUBSTITUTE (S-4) ADOPTED,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/22/2023 01:52 PM,2023-12-29,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +read a third time,2023-05-17,['reading-3'],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2024-05-15,[],MI,2023-2024 +read a third time,2023-10-12,['reading-3'],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +roll call Roll Call # 124 Yeas 51 Nays 55 Excused 0 Not Voting 4,2024-05-22,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:24 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +passed Roll Call # 77 Yeas 57 Nays 51 Excused 0 Not Voting 2,2023-05-03,['passage'],MI,2023-2024 +full title agreed to,2023-06-28,[],MI,2023-2024 +full title agreed to,2023-10-10,[],MI,2023-2024 +bill ordered enrolled,2023-10-10,[],MI,2023-2024 +INSERTED FULL TITLE,2024-05-15,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +presented to the Governor 12/06/2023 02:26 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +full title agreed to,2023-06-14,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/29/2023 05:02 PM,2023-12-29,['executive-signature'],MI,2023-2024 +ROLL CALL: ROLL CALL # 710 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2023-11-09,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 12:40 PM,2023-07-18,['executive-signature'],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-06-27,[],MI,2023-2024 +bill ordered enrolled 06/27/2023,2023-06-28,[],MI,2023-2024 +approved by the Governor 11/07/2023 01:04 PM,2023-11-08,['executive-signature'],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +presented to the Governor 09/28/2023 04:56 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +approved by the Governor 07/23/2024 09:38 AM,2024-07-30,['executive-signature'],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-20,[],MI,2023-2024 +bill ordered enrolled 06/27/2023,2023-06-28,[],MI,2023-2024 +passed; given immediate effect Roll Call # 104 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +laid over one day under the rules,2024-03-05,[],MI,2023-2024 +returned to Senate,2023-06-22,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +presented to the Governor 02/29/2024 02:34 PM,2024-03-05,['executive-receipt'],MI,2023-2024 +Senate substitute (S-2) concurred in,2024-05-21,[],MI,2023-2024 +placed on immediate passage,2023-05-17,[],MI,2023-2024 +full title agreed to,2024-03-19,[],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +INSERTED FULL TITLE,2024-03-19,[],MI,2023-2024 +approved by the Governor 02/21/2024 09:30 AM,2024-02-21,['executive-signature'],MI,2023-2024 +full title agreed to,2024-03-19,[],MI,2023-2024 +full title agreed to,2024-02-21,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 228 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +presented to the Governor 12/06/2023 02:06 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +roll call Roll Call # 126 Yeas 51 Nays 55 Excused 0 Not Voting 4,2024-05-22,[],MI,2023-2024 +presented to the Governor 10/17/2023 09:35 AM,2023-10-17,['executive-receipt'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-09,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 416 YEAS 34 NAYS 2 EXCUSED 2 NOT VOTING 0,2023-06-27,[],MI,2023-2024 +ORDERED ENROLLED,2023-10-19,[],MI,2023-2024 +substitute (H-3) adopted,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2024-05-15,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:00 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-11-08,[],MI,2023-2024 +INSERTED FULL TITLE,2024-02-20,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-02,[],MI,2023-2024 +approved by the Governor 03/12/2024 10:10 AM,2024-03-12,['executive-signature'],MI,2023-2024 +filed with Secretary of State 11/30/2023 10:26 AM,2023-12-31,[],MI,2023-2024 +presented to the Governor 12/06/2023 02:14 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 05/21/2024 01:10 PM,2024-05-22,[],MI,2023-2024 +roll call Roll Call # 131 Yeas 48 Nays 55 Excused 0 Not Voting 7,2024-05-22,[],MI,2023-2024 +Senate substitute (S-4) concurred in,2024-05-09,[],MI,2023-2024 +passed; given immediate effect Roll Call # 34 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-03-21,['passage'],MI,2023-2024 +filed with Secretary of State 10/19/2023 11:38 AM,2023-10-24,[],MI,2023-2024 +PASSED ROLL CALL # 299 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-17,['passage'],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-05,[],MI,2023-2024 +APPROVED BY GOVERNOR 12/07/2023 10:24 AM,2023-12-29,['executive-signature'],MI,2023-2024 +full title agreed to,2024-02-14,[],MI,2023-2024 +approved by the Governor 12/13/2023 04:52 PM,2023-12-31,['executive-signature'],MI,2023-2024 +filed with Secretary of State 09/29/2023 01:30 PM,2023-10-03,[],MI,2023-2024 +presented to the Governor 11/21/2023 09:40 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:50 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 11/29/2023 05:04 PM,2023-12-29,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/14/2023 10:12 AM,2023-12-29,[],MI,2023-2024 +approved by the Governor 04/26/2023 10:12 AM,2023-04-26,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 06/26/2024 02:58 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +returned from Senate without amendment,2023-06-28,[],MI,2023-2024 +laid over one day under the rules,2023-06-27,[],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +filed with Secretary of State 11/22/2023 01:34 PM,2023-12-31,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/30/2023 12:28 PM,2023-12-29,['executive-signature'],MI,2023-2024 +bill ordered enrolled 10/20/2023,2023-10-24,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-11-09,[],MI,2023-2024 +approved by the Governor 04/26/2023 10:10 AM,2023-04-26,['executive-signature'],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +PRESENTED TO GOVERNOR 06/11/2024 09:34 AM,2024-06-11,['executive-receipt'],MI,2023-2024 +title amended,2023-01-24,[],MI,2023-2024 +PRESENTED TO GOVERNOR 06/11/2024 09:40 AM,2024-06-11,['executive-receipt'],MI,2023-2024 +passed; given immediate effect Roll Call # 468 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +full title agreed to,2023-11-02,[],MI,2023-2024 +PRESENTED TO GOVERNOR 10/24/2023 09:17 AM,2023-10-25,['executive-receipt'],MI,2023-2024 +laid over one day under the rules,2023-04-19,[],MI,2023-2024 +title amended,2023-11-08,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect and full title,2023-06-27,[],MI,2023-2024 +presented to the Governor 11/21/2023 09:44 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +INSERTED FULL TITLE,2024-03-19,[],MI,2023-2024 +passed; given immediate effect Roll Call # 582 Yeas 67 Nays 39 Excused 0 Not Voting 4,2023-11-09,['passage'],MI,2023-2024 +returned from Senate without amendment with full title,2024-02-20,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2023-10-10,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-3) NONCONCURRED IN,2023-10-26,[],MI,2023-2024 +APPROVED BY GOVERNOR 06/20/2024 10:10 AM,2024-06-20,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/22/2023 01:58 PM,2023-12-29,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +House conferees named 06/04/2024: Reps. Jason Morgan Jimmie Wilson Cameron Cavitt,2024-06-04,[],MI,2023-2024 +approved by the Governor 09/29/2023 11:30 AM,2023-10-03,['executive-signature'],MI,2023-2024 +read a third time,2023-03-22,['reading-3'],MI,2023-2024 +HOUSE AMENDMENT(S) CONCURRED IN ROLL CALL # 487 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-03,[],MI,2023-2024 +presented to the Governor 10/17/2023 09:15 AM,2023-10-17,['executive-receipt'],MI,2023-2024 +approved by the Governor 03/12/2024 10:12 AM,2024-03-12,['executive-signature'],MI,2023-2024 +approved by the Governor 12/12/2023 10:34 AM,2023-12-31,['executive-signature'],MI,2023-2024 +assigned PA 155'23 with immediate effect,2023-10-24,[],MI,2023-2024 +returned from Senate with substitute (S-2) with title amendment,2023-11-02,[],MI,2023-2024 +filed with Secretary of State 04/26/2023 01:13 PM,2023-04-26,[],MI,2023-2024 +APPROVED BY GOVERNOR 06/20/2024 10:14 AM,2024-06-20,['executive-signature'],MI,2023-2024 +assigned PA 136'23 with immediate effect,2023-10-03,[],MI,2023-2024 +read a third time,2023-05-17,['reading-3'],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2024-04-10,[],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. Sarah Anthony Sean McCann Jon Bumstead,2024-06-05,[],MI,2023-2024 +PRESENTED TO GOVERNOR 10/27/2023 02:34 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +presented to the Governor 11/21/2023 09:34 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +returned from Senate with substitute (S-2) with full title,2024-05-15,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-20,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 01:48 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +approved by the Governor 12/13/2023 05:00 PM,2023-12-31,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2024-03-19,[],MI,2023-2024 +bill ordered enrolled,2024-03-19,[],MI,2023-2024 +PASSED ROLL CALL # 734 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +presented to the Governor 06/03/2024 04:16 PM,2024-06-04,['executive-receipt'],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 671 YEAS 24 NAYS 13 EXCUSED 0 NOT VOTING 1,2023-11-08,[],MI,2023-2024 +ASSIGNED PA 0041'24,2024-05-22,[],MI,2023-2024 +returned from Senate with substitute (S-1),2023-05-17,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/30/2023 12:22 PM,2023-12-29,['executive-signature'],MI,2023-2024 +approved by the Governor 11/22/2023 11:30 AM,2023-12-31,['executive-signature'],MI,2023-2024 +inserted full title,2023-11-01,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-09-06,[],MI,2023-2024 +bill ordered enrolled,2023-06-28,[],MI,2023-2024 +Senate amendment(s) concurred in Roll Call # 66 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-04-26,[],MI,2023-2024 +assigned PA 216'23,2023-12-31,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/01/2023 11:14 AM,2023-12-29,[],MI,2023-2024 +approved by the Governor 11/22/2023 11:24 AM,2023-12-31,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/15/2024 02:30 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-04-26,[],MI,2023-2024 +laid over one day under the rules,2023-06-27,[],MI,2023-2024 +APPROVED BY GOVERNOR 10/24/2023 10:12 AM,2023-10-25,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 07/08/2024 09:50 AM,2024-07-30,['executive-signature'],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. JEFF IRWIN, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +approved by the Governor 06/20/2024 10:00 AM,2024-06-20,['executive-signature'],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-09-06,[],MI,2023-2024 +APPROVED BY GOVERNOR 12/07/2023 10:22 AM,2023-12-29,['executive-signature'],MI,2023-2024 +rule suspended,2023-06-27,[],MI,2023-2024 +returned to Senate,2023-03-21,[],MI,2023-2024 +filed with Secretary of State 11/07/2023 02:02 PM,2023-11-08,[],MI,2023-2024 +presented to the Governor 11/27/2023 03:12 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 11/07/2023 02:04 PM,2023-11-08,[],MI,2023-2024 +assigned PA 128'23 with immediate effect,2023-10-03,[],MI,2023-2024 +TITLE AMENDED,2023-11-09,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-02,[],MI,2023-2024 +laid over one day under the rules,2024-04-23,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/08/2023 10:32 AM,2023-12-29,[],MI,2023-2024 +presented to the Governor 11/17/2023 09:36 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +RETURN GRANTED,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 112 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-05-17,['passage'],MI,2023-2024 +filed with Secretary of State 11/07/2023 02:12 PM,2023-11-08,[],MI,2023-2024 +bill ordered enrolled,2023-10-10,[],MI,2023-2024 +House conferees named 06/04/2024: Reps. Regina Weiss Jason Morgan Nancy DeBoer,2024-06-04,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2023-06-14,[],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2023-06-27,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2023-11-08,[],MI,2023-2024 +filed with Secretary of State 07/23/2024 11:38 AM,2024-07-30,[],MI,2023-2024 +presented to the Governor 07/12/2023 10:09 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/30/2023 10:06 AM,2023-12-29,[],MI,2023-2024 +vote reconsidered,2023-05-03,[],MI,2023-2024 +full title agreed to,2024-02-20,[],MI,2023-2024 +passed; given immediate effect Roll Call # 351 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-10-12,['passage'],MI,2023-2024 +SENATE REQUESTS RETURN,2023-06-28,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:40 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +ASSIGNED PA 0225'23,2023-12-29,[],MI,2023-2024 +approved by the Governor 10/03/2023 02:56 PM,2023-10-03,['executive-signature'],MI,2023-2024 +returned from Senate with amendment(s) with immediate effect and full title,2023-05-10,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +bill ordered enrolled,2023-06-28,[],MI,2023-2024 +read a third time,2023-05-17,['reading-3'],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:22 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +HOUSE SUBSTITUTE (H-3) CONCURRED IN,2023-11-09,[],MI,2023-2024 +passed; given immediate effect Roll Call # 466 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-11-01,['passage'],MI,2023-2024 +bill ordered enrolled 10/20/2023,2023-10-24,[],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +ASSIGNED PA 0195'23,2023-11-08,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2023-11-09,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/08/2024 09:38 AM,2024-07-30,['executive-signature'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +returned to Senate,2023-01-24,[],MI,2023-2024 +presented to the Governor 10/26/2023 01:50 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/30/2023 10:08 AM,2023-12-29,[],MI,2023-2024 +ASSIGNED PA 0313'23,2023-12-29,[],MI,2023-2024 +roll call Roll Call # 77 Yeas 69 Nays 38 Excused 0 Not Voting 3,2024-05-09,[],MI,2023-2024 +filed with Secretary of State 12/14/2023 10:00 AM,2023-12-31,[],MI,2023-2024 +assigned PA 247'23,2023-12-31,[],MI,2023-2024 +filed with Secretary of State 03/12/2024 11:18 AM,2024-03-12,[],MI,2023-2024 +House conferees named 06/04/2024: Reps. Phil Skaggs Julie Brixie Bill Schuette,2024-06-04,[],MI,2023-2024 +PRESENTED TO GOVERNOR 10/27/2023 02:22 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +returned from Senate without amendment with full title,2024-02-20,[],MI,2023-2024 +bill ordered enrolled,2023-11-02,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 12:42 PM,2023-07-18,['executive-signature'],MI,2023-2024 +filed with Secretary of State 11/07/2023 02:00 PM,2023-11-08,[],MI,2023-2024 +bill ordered enrolled,2024-02-14,[],MI,2023-2024 +approved by the Governor 12/12/2023 10:26 AM,2023-12-31,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:12 AM,2023-07-18,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2024-04-10,[],MI,2023-2024 +read a third time,2023-05-17,['reading-3'],MI,2023-2024 +filed with Secretary of State 02/21/2024 10:58 AM,2024-02-21,[],MI,2023-2024 +bill ordered enrolled 06/27/2023,2023-06-28,[],MI,2023-2024 +PASSED ROLL CALL # 722 YEAS 24 NAYS 13 EXCUSED 1 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/07/2023 02:34 PM,2023-11-08,[],MI,2023-2024 +PRESENTED TO GOVERNOR 10/27/2023 02:24 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +returned to Senate,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2024-02-21,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:54 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +assigned PA 174'23 with immediate effect,2023-10-24,[],MI,2023-2024 +passed; given immediate effect Roll Call # 108 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-05-17,['passage'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +filed with Secretary of State 04/26/2023 01:11 PM,2023-04-26,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:18 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +laid over one day under the rules,2023-10-10,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/17/2023 10:49 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +approved by the Governor 06/12/2023 11:24 AM,2023-06-13,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 11/29/2023 05:00 PM,2023-12-29,['executive-signature'],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:10 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +passed; given immediate effect Roll Call # 581 Yeas 63 Nays 43 Excused 0 Not Voting 4,2023-11-09,['passage'],MI,2023-2024 +APPROVED BY GOVERNOR 07/18/2023 11:52 AM,2023-07-20,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 09/18/2023 04:58 PM,2023-09-20,['executive-signature'],MI,2023-2024 +presented to the Governor 03/27/2024 10:48 AM,2024-04-09,['executive-receipt'],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 06/06/2024 01:52 PM,2024-06-11,[],MI,2023-2024 +approved by the Governor 11/29/2023 05:12 PM,2023-12-31,['executive-signature'],MI,2023-2024 +inserted full title,2023-03-22,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:22 AM,2024-07-30,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-06-14,[],MI,2023-2024 +approved by the Governor 03/12/2024 10:02 AM,2024-03-12,['executive-signature'],MI,2023-2024 +request granted,2023-10-31,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-26,[],MI,2023-2024 +read a third time,2024-05-21,['reading-3'],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2024-06-26,[],MI,2023-2024 +laid over one day under the rules,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2023-10-24,[],MI,2023-2024 +returned to Senate,2023-04-26,[],MI,2023-2024 +roll call Roll Call # 130 Yeas 51 Nays 55 Excused 0 Not Voting 4,2024-05-22,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-02,[],MI,2023-2024 +inserted full title,2023-06-20,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-05,[],MI,2023-2024 +PRESENTED TO GOVERNOR 09/13/2023 11:10 AM,2023-09-14,['executive-receipt'],MI,2023-2024 +approved by the Governor 07/23/2024 09:52 AM,2024-07-30,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-03-23,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-11-09,[],MI,2023-2024 +filed with Secretary of State 11/22/2023 01:12 PM,2023-12-31,[],MI,2023-2024 +assigned PA 296'23,2023-12-31,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-17,[],MI,2023-2024 +approved by the Governor 12/12/2023 10:32 AM,2023-12-31,['executive-signature'],MI,2023-2024 +approved by the Governor 11/06/2023 11:02 AM,2023-11-08,['executive-signature'],MI,2023-2024 +enrollment vacated,2023-06-28,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2024-05-09,[],MI,2023-2024 +approved by the Governor 11/07/2023 01:08 PM,2023-11-08,['executive-signature'],MI,2023-2024 +passed; given immediate effect Roll Call # 113 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-05-17,['passage'],MI,2023-2024 +approved by the Governor 11/29/2023 05:28 PM,2023-12-31,['executive-signature'],MI,2023-2024 +full title agreed to,2024-06-26,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-08,[],MI,2023-2024 +returned to Senate,2023-06-28,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/08/2024 01:22 PM,2024-07-30,[],MI,2023-2024 +presented to the Governor 09/28/2023 05:12 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 12:32 PM,2023-07-18,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 03/12/2024 11:30 AM,2024-03-12,[],MI,2023-2024 +presented to the Governor 09/28/2023 05:02 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 12/12/2023 10:44 AM,2023-12-29,['executive-signature'],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-04-24,[],MI,2023-2024 +full title agreed to,2023-10-10,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-26,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. SYLVIA A. SANTANA, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-03-08,[],MI,2023-2024 +approved by the Governor 12/13/2023 04:58 PM,2023-12-31,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-06-28,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 12:30 PM,2023-07-18,['executive-signature'],MI,2023-2024 +presented to the Governor 03/27/2024 10:50 AM,2024-04-09,['executive-receipt'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:20 AM,2023-07-18,[],MI,2023-2024 +laid over one day under the rules,2024-02-21,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:46 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +returned from Senate without amendment,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2023-03-21,[],MI,2023-2024 +presented to the Governor 05/28/2024 11:02 AM,2024-05-23,['executive-receipt'],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-06-27,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-11-09,[],MI,2023-2024 +filed with Secretary of State 11/07/2023 02:20 PM,2023-11-08,[],MI,2023-2024 +laid over one day under the rules,2023-06-27,[],MI,2023-2024 +House conferees named 06/04/2024: Reps. Regina Weiss Jason Morgan Nancy DeBoer,2024-06-04,[],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:50 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +assigned PA 172'23 with immediate effect,2023-10-24,[],MI,2023-2024 +APPROVED BY GOVERNOR 12/07/2023 10:20 AM,2023-12-29,['executive-signature'],MI,2023-2024 +title amendment agreed to,2024-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/08/2024 01:00 PM,2024-07-30,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 227 YEAS 1 NAYS 37 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2023-06-06,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +presented to the Governor 03/27/2024 11:08 AM,2024-04-09,['executive-receipt'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-03,[],MI,2023-2024 +approved by the Governor 09/29/2023 11:34 AM,2023-10-03,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:08 AM,2023-07-18,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2023-06-06,[],MI,2023-2024 +laid over one day under the rules,2023-04-19,[],MI,2023-2024 +approved by the Governor 02/27/2024 10:42 AM,2024-02-27,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 12/12/2023 10:52 AM,2023-12-29,['executive-signature'],MI,2023-2024 +full title agreed to,2023-05-11,[],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. Sue Shink Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +request granted,2024-05-14,[],MI,2023-2024 +laid over one day under the rules,2023-06-14,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-04-13,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-02-20,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +laid over one day under the rules,2023-04-20,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/08/2024 01:18 PM,2024-07-30,[],MI,2023-2024 +approved by the Governor 07/26/2023 12:10 PM,2023-08-22,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-09-12,[],MI,2023-2024 +passed; given immediate effect Roll Call # 47 Yeas 61 Nays 47 Excused 0 Not Voting 2,2023-03-22,['passage'],MI,2023-2024 +presented to the Governor 03/27/2024 11:00 AM,2024-04-09,['executive-receipt'],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-09,[],MI,2023-2024 +Senate requests return,2023-06-28,[],MI,2023-2024 +assigned PA 102'23 with immediate effect,2023-07-19,[],MI,2023-2024 +roll call Roll Call # 133 Yeas 47 Nays 55 Excused 0 Not Voting 8,2024-05-22,[],MI,2023-2024 +full title agreed to,2023-06-27,[],MI,2023-2024 +presented to the Governor 06/21/2023 11:14 AM,2023-06-21,['executive-receipt'],MI,2023-2024 +laid over one day under the rules,2023-09-27,[],MI,2023-2024 +presented to the Governor 02/29/2024 02:30 PM,2024-03-05,['executive-receipt'],MI,2023-2024 +passed; given immediate effect Roll Call # 114 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-05-17,['passage'],MI,2023-2024 +returned from Senate with substitute (S-2) with full title,2024-03-14,[],MI,2023-2024 +returned from Senate without amendment,2024-06-20,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2023-06-28,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2023-11-09,[],MI,2023-2024 +ORDERED ENROLLED,2023-04-27,[],MI,2023-2024 +approved by the Governor 11/29/2023 05:20 PM,2023-12-31,['executive-signature'],MI,2023-2024 +Senate substitute (S-1) concurred in,2024-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/14/2023 10:24 AM,2023-12-29,[],MI,2023-2024 +approved by the Governor 04/30/2024 10:48 AM,2024-04-30,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 10/12/2023 04:30 PM,2023-10-17,['executive-receipt'],MI,2023-2024 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2023-06-06,[],MI,2023-2024 +approved by the Governor 11/07/2023 01:14 PM,2023-11-08,['executive-signature'],MI,2023-2024 +filed with Secretary of State 03/12/2024 11:20 AM,2024-03-12,[],MI,2023-2024 +approved by the Governor 07/11/2023 12:54 PM,2023-07-18,['executive-signature'],MI,2023-2024 +approved by the Governor 11/07/2023 01:16 PM,2023-11-08,['executive-signature'],MI,2023-2024 +filed with Secretary of State 07/27/2023 09:48 AM,2023-08-22,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 12:50 PM,2023-07-18,['executive-signature'],MI,2023-2024 +presented to the Governor 03/27/2024 11:04 AM,2024-04-09,['executive-receipt'],MI,2023-2024 +full title agreed to,2024-04-10,[],MI,2023-2024 +filed with Secretary of State 11/22/2023 01:22 PM,2023-12-31,[],MI,2023-2024 +presented to the Governor 09/28/2023 05:06 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2023-06-06,[],MI,2023-2024 +approved by the Governor 07/08/2024 09:56 AM,2024-06-27,['executive-signature'],MI,2023-2024 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2024-05-14,['committee-passage'],MI,2023-2024 +approved by the Governor 07/11/2023 01:22 PM,2023-07-18,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-03-21,[],MI,2023-2024 +ASSIGNED PA 0063'24,2024-06-20,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-11-09,[],MI,2023-2024 +ASSIGNED PA 0227'23 WITH IMMEDIATE EFFECT,2023-12-29,[],MI,2023-2024 +returned to Senate,2023-04-26,[],MI,2023-2024 +presented to the Governor 03/27/2024 10:56 AM,2024-04-09,['executive-receipt'],MI,2023-2024 +returned to Senate,2023-06-28,[],MI,2023-2024 +inserted full title,2023-03-22,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2023-06-06,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2024-05-09,[],MI,2023-2024 +ORDERED ENROLLED,2023-03-09,[],MI,2023-2024 +presented to the Governor 06/21/2023 11:10 AM,2023-06-21,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +roll call Roll Call # 502 Yeas 96 Nays 12 Excused 0 Not Voting 2,2023-11-08,[],MI,2023-2024 +filed with Secretary of State 07/23/2024 11:50 AM,2024-07-30,[],MI,2023-2024 +ASSIGNED PA 0059'24,2024-06-20,[],MI,2023-2024 +full title agreed to,2023-06-28,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +presented to the Governor 03/19/2024 11:36 AM,2024-03-19,['executive-receipt'],MI,2023-2024 +assigned PA 75'23 with immediate effect,2023-07-18,[],MI,2023-2024 +approved by the Governor 09/29/2023 11:22 AM,2023-10-03,['executive-signature'],MI,2023-2024 +inserted full title,2023-10-18,[],MI,2023-2024 +approved by the Governor 10/19/2023 10:00 AM,2023-10-19,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-08,[],MI,2023-2024 +assigned PA 130'23 with immediate effect,2023-10-03,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-28,[],MI,2023-2024 +returned to Senate,2023-11-03,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-03,[],MI,2023-2024 +PRESENTED TO GOVERNOR 06/26/2024 03:06 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +ORDERED ENROLLED,2023-03-21,[],MI,2023-2024 +SENATE REQUESTS RETURN,2023-09-06,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:24 PM,2024-07-30,[],MI,2023-2024 +ORDERED ENROLLED,2023-05-02,[],MI,2023-2024 +filed with Secretary of State 10/19/2023 11:34 AM,2023-10-24,[],MI,2023-2024 +approved by the Governor 09/29/2023 11:24 AM,2023-10-03,['executive-signature'],MI,2023-2024 +PLACED ON IMMEDIATE PASSAGE,2023-11-08,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-13,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-02-28,['amendment-failure'],MI,2023-2024 +Senate substitute (S-2) concurred in,2023-11-08,[],MI,2023-2024 +laid over one day under the rules,2023-02-01,[],MI,2023-2024 +approved by the Governor 02/21/2024 09:36 AM,2024-02-21,['executive-signature'],MI,2023-2024 +request granted,2024-05-07,[],MI,2023-2024 +returned to Senate,2023-11-01,[],MI,2023-2024 +filed with Secretary of State 07/23/2024 11:40 AM,2024-07-30,[],MI,2023-2024 +filed with Secretary of State 07/27/2023 09:50 AM,2023-08-22,[],MI,2023-2024 +ASSIGNED PA 0226'23 WITH IMMEDIATE EFFECT,2023-12-29,[],MI,2023-2024 +presented to the Governor 06/12/2023 12:03 PM,2023-06-08,['executive-receipt'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:20 PM,2024-07-30,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-05-03,[],MI,2023-2024 +inserted full title,2024-06-27,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/08/2024 09:36 AM,2024-07-30,['executive-signature'],MI,2023-2024 +FULL TITLE AGREED TO,2023-04-27,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2023-06-27,[],MI,2023-2024 +returned from Senate with substitute (S-6) with title amendment,2023-03-21,[],MI,2023-2024 +rule suspended,2024-04-24,[],MI,2023-2024 +PASSED ROLL CALL # 46 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-02-29,['passage'],MI,2023-2024 +rule suspended,2023-11-08,[],MI,2023-2024 +approved by the Governor 07/23/2024 09:54 AM,2024-07-30,['executive-signature'],MI,2023-2024 +approved by the Governor 09/29/2023 11:26 AM,2023-10-03,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 05/02/2023 01:06 PM,2023-05-03,['executive-receipt'],MI,2023-2024 +roll call Roll Call # 283 Yeas 109 Nays 1 Excused 0 Not Voting 0,2024-06-27,[],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2024-06-18,[],MI,2023-2024 +presented to the Governor 06/21/2023 11:08 AM,2023-06-21,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 11/30/2023 12:24 PM,2023-12-29,['executive-signature'],MI,2023-2024 +laid over one day under the rules,2023-06-27,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 103 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:56 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 221 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +APPROVED BY GOVERNOR 12/13/2023 05:12 PM,2023-12-29,['executive-signature'],MI,2023-2024 +approved by the Governor 12/12/2023 10:30 AM,2023-12-31,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +Senate substitute (S-2) concurred in,2024-02-14,[],MI,2023-2024 +roll call Roll Call # 113 Yeas 98 Nays 9 Excused 0 Not Voting 3,2024-05-21,[],MI,2023-2024 +bill ordered enrolled,2023-11-02,[],MI,2023-2024 +assigned PA 294'23,2023-12-31,[],MI,2023-2024 +PRESENTED TO GOVERNOR 05/09/2024 09:23 AM,2024-05-14,['executive-receipt'],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. KEVIN HERTEL, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2024-06-26,[],MI,2023-2024 +ASSIGNED PA 0197'23 WITH IMMEDIATE EFFECT,2023-11-08,[],MI,2023-2024 +approved by the Governor 09/29/2023 11:28 AM,2023-10-03,['executive-signature'],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-06,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-26,[],MI,2023-2024 +bill ordered enrolled,2023-03-08,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 03/12/2024 11:28 AM,2024-03-12,[],MI,2023-2024 +HOUSE REQUESTS RETURN,2023-11-02,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. KEVIN HERTEL, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/26/2023 11:56 AM,2023-08-22,['executive-signature'],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2023-06-06,[],MI,2023-2024 +approved by the Governor 02/21/2024 09:28 AM,2024-02-21,['executive-signature'],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-09,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +ASSIGNED PA 0061'24,2024-06-20,[],MI,2023-2024 +passed; given immediate effect Roll Call # 110 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-05-17,['passage'],MI,2023-2024 +ROLL CALL: ROLL CALL # 504 YEAS 30 NAYS 7 EXCUSED 1 NOT VOTING 0,2023-10-05,[],MI,2023-2024 +assigned PA 65'24,2024-06-20,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +presented to the Governor 06/03/2024 04:14 PM,2024-06-04,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 10/19/2023 10:25 AM,2023-10-24,['executive-signature'],MI,2023-2024 +Senate substitute (S-1) concurred in,2024-06-27,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-09-19,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:04 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +roll call Roll Call # 117 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,[],MI,2023-2024 +Senate requests return,2023-10-10,[],MI,2023-2024 +approved by the Governor 05/22/2024 11:04 AM,2024-05-22,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/30/2023 10:12 AM,2023-12-29,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:10 AM,2023-07-18,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2024-06-26,[],MI,2023-2024 +presented to the Governor 12/06/2023 02:22 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-06-28,[],MI,2023-2024 +returned as requested,2023-11-01,[],MI,2023-2024 +placed on immediate passage,2023-05-17,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/22/2023 11:40 AM,2023-12-29,['executive-signature'],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-20,[],MI,2023-2024 +ASSIGNED PA 0251'23,2023-12-29,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/22/2023 01:40 PM,2023-12-29,[],MI,2023-2024 +title amendment agreed to,2024-06-27,[],MI,2023-2024 +bill ordered enrolled,2023-06-28,[],MI,2023-2024 +bill ordered enrolled,2023-06-28,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2023-11-02,[],MI,2023-2024 +roll call Roll Call # 392 Yeas 80 Nays 29 Excused 0 Not Voting 1,2023-10-24,[],MI,2023-2024 +request granted,2024-05-07,[],MI,2023-2024 +full title agreed to,2023-09-19,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:06 AM,2023-07-18,[],MI,2023-2024 +presented to the Governor 12/06/2023 02:34 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +PASSED ROLL CALL # 736 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2023-11-09,['passage'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/17/2023 10:57 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +HOUSE AMENDMENT(S) CONCURRED IN ROLL CALL # 486 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-03,[],MI,2023-2024 +read a third time,2023-04-13,['reading-3'],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +filed with Secretary of State 05/22/2024 01:44 PM,2024-05-22,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2023-06-06,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 10/19/2023 11:56 AM,2023-10-24,[],MI,2023-2024 +laid over one day under the rules,2023-10-11,[],MI,2023-2024 +full title agreed to,2023-11-02,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +approved by the Governor 12/12/2023 10:28 AM,2023-12-31,['executive-signature'],MI,2023-2024 +approved by the Governor 11/30/2023 12:36 PM,2023-12-31,['executive-signature'],MI,2023-2024 +filed with Secretary of State 11/30/2023 10:28 AM,2023-12-31,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-26,[],MI,2023-2024 +laid over one day under the rules,2023-06-27,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/08/2024 09:48 AM,2024-07-30,['executive-signature'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-01-31,[],MI,2023-2024 +presented to the Governor 05/11/2023 11:10 AM,2023-05-11,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 02/01/2023 12:54 PM,2023-02-02,['executive-signature'],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-28,[],MI,2023-2024 +bill ordered enrolled,2023-10-10,[],MI,2023-2024 +returned to Senate,2024-06-26,[],MI,2023-2024 +approved by the Governor 12/13/2023 04:54 PM,2023-12-31,['executive-signature'],MI,2023-2024 +ORDERED ENROLLED,2023-10-10,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/29/2023 01:12 PM,2023-12-29,[],MI,2023-2024 +full title agreed to,2023-06-28,[],MI,2023-2024 +full title agreed to,2024-06-27,[],MI,2023-2024 +assigned PA 249'23,2023-12-31,[],MI,2023-2024 +approved by the Governor 02/21/2024 09:32 AM,2024-02-21,['executive-signature'],MI,2023-2024 +presented to the Governor 03/27/2024 10:52 AM,2024-04-09,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/15/2024 02:42 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +returned from Senate without amendment with full title,2023-06-28,[],MI,2023-2024 +VOTE RECONSIDERED,2023-06-27,[],MI,2023-2024 +filed with Secretary of State 03/28/2024 10:54 AM,2024-04-09,[],MI,2023-2024 +presented to the Governor 06/21/2023 11:12 AM,2023-06-21,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2024-03-19,[],MI,2023-2024 +full title agreed to,2023-11-02,[],MI,2023-2024 +filed with Secretary of State 11/30/2023 10:22 AM,2023-12-31,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 230 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-10-18,[],MI,2023-2024 +returned to Senate,2023-06-28,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-17,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/17/2023 09:45 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +assigned PA 295'23,2023-12-31,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/13/2023 10:36 AM,2023-12-29,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-5) CONCURRED IN,2023-06-28,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +filed with Secretary of State 07/23/2024 11:30 AM,2024-07-30,[],MI,2023-2024 +presented to the Governor 11/17/2023 09:34 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +full title agreed to,2023-10-03,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/26/2023 11:52 AM,2023-08-22,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-03-15,[],MI,2023-2024 +laid over one day under the rules,2023-05-10,[],MI,2023-2024 +approved by the Governor 10/24/2023 10:10 AM,2023-10-24,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0098'24,2024-07-30,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-28,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 321 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,[],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:30 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +House conferees named 06/04/2024: Reps. Ranjeev Puri Jason Morgan Donni Steele,2024-06-04,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-03-08,[],MI,2023-2024 +approved by the Governor 04/02/2024 01:16 PM,2024-04-09,['executive-signature'],MI,2023-2024 +returned as requested,2024-06-26,[],MI,2023-2024 +APPROVED BY GOVERNOR 12/12/2023 10:48 AM,2023-12-29,['executive-signature'],MI,2023-2024 +full title agreed to,2024-04-10,[],MI,2023-2024 +presented to the Governor 09/28/2023 05:14 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-03-23,[],MI,2023-2024 +assigned PA 76'23 with immediate effect,2023-07-18,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 03/28/2024 10:52 AM,2024-04-09,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:36 PM,2024-07-30,[],MI,2023-2024 +bill ordered enrolled,2023-10-03,[],MI,2023-2024 +presented to the Governor 04/10/2023 02:22 PM,2023-03-23,['executive-receipt'],MI,2023-2024 +HOUSE SUBSTITUTE (H-3) CONCURRED IN,2024-06-18,[],MI,2023-2024 +APPROVED BY GOVERNOR 12/12/2023 10:42 AM,2023-12-29,['executive-signature'],MI,2023-2024 +HOUSE SUBSTITUTE (H-6) CONCURRED IN,2023-11-08,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/18/2023 11:30 AM,2023-07-20,['executive-signature'],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2023-06-06,[],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/08/2024 01:28 PM,2024-07-30,[],MI,2023-2024 +PASSED ROLL CALL # 81 YEAS 23 NAYS 12 EXCUSED 3 NOT VOTING 0,2024-03-19,['passage'],MI,2023-2024 +Senate substitute (S-2) concurred in,2024-04-23,[],MI,2023-2024 +approved by the Governor 09/29/2023 11:18 AM,2023-10-03,['executive-signature'],MI,2023-2024 +House conferees named 06/04/2024: Reps. Will Snyder Jasper Martus Greg VanWoerkom,2024-06-04,[],MI,2023-2024 +approved by the Governor 07/23/2024 09:58 AM,2024-07-30,['executive-signature'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 291 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2024-06-26,['passage'],MI,2023-2024 +Senate substitute (S-4) concurred in,2023-09-27,[],MI,2023-2024 +presented to the Governor 11/21/2023 09:58 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0232'23,2023-12-29,[],MI,2023-2024 +filed with Secretary of State 09/29/2023 01:24 PM,2023-10-03,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 216 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 12:46 PM,2023-07-18,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-11-02,[],MI,2023-2024 +rule suspended,2023-11-02,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. ROSEMARY BAYER, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-11-02,[],MI,2023-2024 +returned from Senate with amendment(s) with full title,2024-03-05,[],MI,2023-2024 +approved by the Governor 06/29/2023 09:14 AM,2023-06-28,['executive-signature'],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2024-05-21,[],MI,2023-2024 +roll call Roll Call # 9 Yeas 105 Nays 0 Excused 0 Not Voting 3,2024-02-14,[],MI,2023-2024 +full title agreed to,2024-05-21,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +filed with Secretary of State 09/29/2023 01:26 PM,2023-10-03,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +roll call Roll Call # 284 Yeas 109 Nays 1 Excused 0 Not Voting 0,2024-06-27,[],MI,2023-2024 +roll call Roll Call # 129 Yeas 51 Nays 54 Excused 0 Not Voting 5,2023-06-06,[],MI,2023-2024 +filed with Secretary of State 02/21/2024 10:56 AM,2024-02-21,[],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +approved by the Governor 06/06/2024 12:00 PM,2024-06-06,['executive-signature'],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2023-09-19,[],MI,2023-2024 +full title agreed to,2024-05-21,[],MI,2023-2024 +approved by the Governor 12/13/2023 05:02 PM,2023-12-31,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0057'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-03,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 428 YEAS 25 NAYS 12 EXCUSED 1 NOT VOTING 0,2023-06-28,[],MI,2023-2024 +ASSIGNED PA 0164'23 WITH IMMEDIATE EFFECT,2023-10-24,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/15/2024 02:32 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 12/01/2023 11:22 AM,2023-12-31,[],MI,2023-2024 +assigned PA 248'23,2023-12-31,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-01-31,[],MI,2023-2024 +bill ordered enrolled 06/27/2023,2023-06-28,[],MI,2023-2024 +bill ordered enrolled,2024-06-26,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 535 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2023-10-18,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-06-28,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/20/2023 01:00 PM,2023-12-29,['executive-signature'],MI,2023-2024 +filed with Secretary of State 10/24/2023 11:42 AM,2023-10-24,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +ORDERED ENROLLED,2023-03-08,[],MI,2023-2024 +bill ordered enrolled,2024-04-10,[],MI,2023-2024 +ORDERED ENROLLED,2023-03-23,[],MI,2023-2024 +ASSIGNED PA 0020'24 WITH IMMEDIATE EFFECT,2024-04-09,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 250 YEAS 31 NAYS 7 EXCUSED 0 NOT VOTING 0,2024-06-18,[],MI,2023-2024 +ASSIGNED PA 0080'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +roll call Roll Call # 36 Yeas 77 Nays 30 Excused 0 Not Voting 1,2024-04-23,[],MI,2023-2024 +filed with Secretary of State 09/29/2023 01:16 PM,2023-10-03,[],MI,2023-2024 +filed with Secretary of State 07/23/2024 11:58 AM,2024-07-30,[],MI,2023-2024 +roll call Roll Call # 311 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-27,[],MI,2023-2024 +roll call Roll Call # 503 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-08,[],MI,2023-2024 +retransmitted,2024-05-07,[],MI,2023-2024 +ORDERED ENROLLED,2023-04-27,[],MI,2023-2024 +ASSIGNED PA 0106'24,2024-07-30,[],MI,2023-2024 +Senate substitute (S-3) concurred in,2023-11-08,[],MI,2023-2024 +filed with Secretary of State 07/23/2024 11:54 AM,2024-07-30,[],MI,2023-2024 +laid over one day under the rules,2023-03-21,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2024-06-26,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 415 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2023-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/08/2024 01:12 PM,2024-07-30,[],MI,2023-2024 +returned to Senate,2024-06-27,[],MI,2023-2024 +bill ordered enrolled,2023-05-03,[],MI,2023-2024 +assigned PA 109'23 with immediate effect,2023-08-22,[],MI,2023-2024 +assigned PA 86'24 with immediate effect,2024-07-30,[],MI,2023-2024 +filed with Secretary of State 02/21/2024 11:04 AM,2024-02-21,[],MI,2023-2024 +rule suspended,2023-02-01,[],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 696 YEAS 25 NAYS 10 EXCUSED 3 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 28 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2023-02-28,['passage'],MI,2023-2024 +ORDERED ENROLLED,2023-06-13,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:36 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/19/2023 10:26 AM,2023-07-20,[],MI,2023-2024 +filed with Secretary of State 09/29/2023 01:22 PM,2023-10-03,[],MI,2023-2024 +INSERTED FULL TITLE,2024-06-26,[],MI,2023-2024 +assigned PA 153'23 with immediate effect,2023-10-24,[],MI,2023-2024 +PRESENTED TO GOVERNOR 05/04/2023 12:05 PM,2023-05-09,['executive-receipt'],MI,2023-2024 +INSERTED FULL TITLE,2024-03-19,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 676 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-11-08,[],MI,2023-2024 +roll call Roll Call # 132 Yeas 52 Nays 54 Excused 0 Not Voting 4,2023-06-06,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/13/2023 10:20 AM,2023-12-29,[],MI,2023-2024 +approved by the Governor 04/13/2023 09:58 AM,2023-04-13,['executive-signature'],MI,2023-2024 +presented to the Governor 10/09/2023 11:35 AM,2023-10-10,['executive-receipt'],MI,2023-2024 +rule suspended,2024-06-26,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/13/2023 10:26 AM,2023-12-29,[],MI,2023-2024 +filed with Secretary of State 04/02/2024 02:10 PM,2024-04-09,[],MI,2023-2024 +APPROVED BY GOVERNOR 12/12/2023 10:54 AM,2023-12-29,['executive-signature'],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +SENATE REQUESTS RETURN,2023-03-21,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/27/2023 09:40 AM,2023-08-22,[],MI,2023-2024 +bill ordered enrolled,2023-10-03,[],MI,2023-2024 +assigned PA 81'24,2024-07-30,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/15/2024 02:44 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +approved by the Governor 11/21/2023 01:06 PM,2023-12-31,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0305'23,2023-12-29,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +presented to the Governor 12/06/2023 02:28 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +ORDERED ENROLLED,2023-10-17,[],MI,2023-2024 +assigned PA 245'23 with immediate effect,2023-12-31,[],MI,2023-2024 +approved by the Governor 04/01/2024 11:15 AM,2024-04-09,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-11-02,[],MI,2023-2024 +presented to the Governor 03/27/2024 10:54 AM,2024-04-09,['executive-receipt'],MI,2023-2024 +approved by the Governor 06/29/2023 09:18 AM,2023-07-18,['executive-signature'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +full title agreed to,2023-06-28,[],MI,2023-2024 +assigned PA 21'24,2024-04-09,[],MI,2023-2024 +approved by the Governor 04/01/2024 10:40 AM,2024-04-09,['executive-signature'],MI,2023-2024 +Senate substitute (S-1) concurred in,2024-03-12,[],MI,2023-2024 +assigned PA 210'23,2023-12-31,[],MI,2023-2024 +bill ordered enrolled,2024-06-27,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/25/2024 10:15 AM,2024-07-30,['executive-signature'],MI,2023-2024 +filed with Secretary of State 02/21/2024 11:00 AM,2024-02-21,[],MI,2023-2024 +filed with Secretary of State 12/14/2023 10:02 AM,2023-12-31,[],MI,2023-2024 +PRESENTED TO GOVERNOR 10/12/2023 04:32 PM,2023-10-17,['executive-receipt'],MI,2023-2024 +presented to the Governor 10/17/2023 09:39 AM,2023-10-17,['executive-receipt'],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 02/01/2023 01:44 PM,2023-02-02,[],MI,2023-2024 +approved by the Governor 05/20/2023 03:12 PM,2023-05-23,['executive-signature'],MI,2023-2024 +assigned PA 43'24,2024-05-22,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/08/2024 01:24 PM,2024-07-30,[],MI,2023-2024 +filed with Secretary of State 12/13/2023 10:06 AM,2023-12-31,[],MI,2023-2024 +presented to the Governor 11/27/2023 03:18 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:32 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 07/26/2023 11:58 AM,2023-08-22,['executive-signature'],MI,2023-2024 +passed; given immediate effect Roll Call # 55 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-04-13,['passage'],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +retransmitted,2024-05-07,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 637 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-02,[],MI,2023-2024 +presented to the Governor 07/10/2023 11:16 AM,2023-06-28,['executive-receipt'],MI,2023-2024 +full title agreed to,2023-10-24,[],MI,2023-2024 +presented to the Governor 07/17/2023 11:21 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +ROLL CALL: ROLL CALL # 271 YEAS 0 NAYS 37 EXCUSED 1 NOT VOTING 0,2024-06-20,[],MI,2023-2024 +bill ordered enrolled,2023-09-19,[],MI,2023-2024 +ASSIGNED PA 0219'23,2023-12-29,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/22/2023 01:46 PM,2023-12-29,[],MI,2023-2024 +bill ordered enrolled,2024-06-27,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 431 YEAS 23 NAYS 14 EXCUSED 1 NOT VOTING 0,2023-06-28,[],MI,2023-2024 +approved by the Governor 12/11/2023 09:50 AM,2023-12-31,['executive-signature'],MI,2023-2024 +read a third time,2023-05-17,['reading-3'],MI,2023-2024 +ROLL CALL: ROLL CALL # 319 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,[],MI,2023-2024 +ASSIGNED PA 0059'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +ASSIGNED PA 0240'23,2023-12-29,[],MI,2023-2024 +request granted,2023-10-10,[],MI,2023-2024 +RETURN GRANTED,2023-11-02,[],MI,2023-2024 +filed with Secretary of State 05/22/2024 01:42 PM,2024-05-22,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 10/19/2023 12:02 PM,2023-10-24,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-05,[],MI,2023-2024 +returned to Senate,2023-05-17,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:44 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 05/22/2024 11:12 AM,2024-05-23,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/27/2023 09:44 AM,2023-08-22,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-05,[],MI,2023-2024 +ASSIGNED PA 0018'24 WITH IMMEDIATE EFFECT,2024-03-12,[],MI,2023-2024 +presented to the Governor 03/31/2023 01:21 PM,2023-03-23,['executive-receipt'],MI,2023-2024 +ROLL CALL: ROLL CALL # 323 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2024-06-26,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-05,[],MI,2023-2024 +presented to the Governor 12/06/2023 02:02 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 12/13/2023 10:08 AM,2023-12-31,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/14/2023 10:20 AM,2023-12-29,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. JOHN CHERRY, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 01:50 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 01:18 PM,2023-07-18,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0108'24,2024-07-30,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-18,[],MI,2023-2024 +rule suspended,2023-06-27,[],MI,2023-2024 +title amendment agreed to,2024-06-27,[],MI,2023-2024 +APPROVED BY GOVERNOR 05/08/2023 11:34 AM,2023-05-09,['executive-signature'],MI,2023-2024 +"SENATE NAMED CONFEREES 06/05/2024: SENS. MARY CAVANAGH, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-05,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:34 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0114'24,2024-07-30,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/05/2024: SENS. VERONICA KLINEFELT, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-05,[],MI,2023-2024 +Senate amendment(s) concurred in Roll Call # 104 Yeas 69 Nays 38 Excused 0 Not Voting 3,2023-05-11,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 214 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +rule suspended,2023-06-27,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-10-12,[],MI,2023-2024 +Senate conferees named 06/04/2024: Sens. Veronica Klinefelt Sarah Anthony Jon Bumstead,2024-06-04,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/01/2023 11:10 AM,2023-12-29,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-06,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-4) CONCURRED IN,2023-11-09,[],MI,2023-2024 +House requests return,2024-01-10,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/07/2023 01:24 PM,2023-11-08,['executive-signature'],MI,2023-2024 +laid over one day under the rules,2023-11-09,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/08/2024 01:14 PM,2024-07-30,[],MI,2023-2024 +rule suspended,2023-06-27,[],MI,2023-2024 +roll call Roll Call # 270 Yeas 101 Nays 6 Excused 0 Not Voting 3,2023-09-06,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:26 AM,2024-07-30,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:26 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 06/20/2024 10:50 AM,2024-06-20,[],MI,2023-2024 +SUBSTITUTE (S-3) DEFEATED,2023-01-25,[],MI,2023-2024 +filed with Secretary of State 11/22/2023 01:30 PM,2023-12-31,[],MI,2023-2024 +returned to Senate,2023-05-17,[],MI,2023-2024 +approved by the Governor 11/07/2023 01:00 PM,2023-11-08,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0238'23,2023-12-29,[],MI,2023-2024 +ASSIGNED PA 0257'23,2023-12-29,[],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect and full title,2023-11-08,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:12 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +presented to the Governor 07/17/2023 11:17 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0228'23 WITH IMMEDIATE EFFECT,2023-12-29,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 06/20/2024 10:54 AM,2024-06-20,[],MI,2023-2024 +returned to Senate,2023-11-01,[],MI,2023-2024 +full title agreed to,2023-04-26,[],MI,2023-2024 +filed with Secretary of State 11/22/2023 01:36 PM,2023-12-31,[],MI,2023-2024 +roll call Roll Call # 269 Yeas 102 Nays 5 Excused 0 Not Voting 3,2023-09-06,[],MI,2023-2024 +laid over one day under the rules,2023-05-17,[],MI,2023-2024 +roll call Roll Call # 134 Yeas 52 Nays 54 Excused 0 Not Voting 4,2023-06-06,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +full title agreed to,2024-05-09,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/05/2024: SENS. MARY CAVANAGH, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-05,[],MI,2023-2024 +assigned PA 13'24,2024-03-12,[],MI,2023-2024 +assigned PA 24'23 with immediate effect,2023-04-26,[],MI,2023-2024 +assigned PA 307'23,2023-12-31,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/07/2023 01:22 PM,2023-11-08,['executive-signature'],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 46 Yeas 61 Nays 47 Excused 0 Not Voting 2,2023-03-22,['passage'],MI,2023-2024 +laid over one day under the rules,2023-11-02,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/08/2024 01:26 PM,2024-07-30,[],MI,2023-2024 +filed with Secretary of State 02/27/2024 11:30 AM,2024-02-27,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-10-12,[],MI,2023-2024 +presented to the Governor 11/21/2023 09:54 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +assigned PA 23'23 with immediate effect,2023-04-26,[],MI,2023-2024 +full title agreed to,2024-02-20,[],MI,2023-2024 +filed with Secretary of State 12/13/2023 10:12 AM,2023-12-31,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/01/2023 11:08 AM,2023-12-29,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 215 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:14 AM,2023-07-18,[],MI,2023-2024 +assigned PA 177'23,2023-11-08,[],MI,2023-2024 +approved by the Governor 06/06/2024 12:08 PM,2024-06-06,['executive-signature'],MI,2023-2024 +presented to the Governor 02/20/2024 03:32 PM,2024-02-20,['executive-receipt'],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/22/2023 11:42 AM,2023-12-29,['executive-signature'],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +filed with Secretary of State 03/12/2024 11:16 AM,2024-03-12,[],MI,2023-2024 +filed with Secretary of State 12/13/2023 10:04 AM,2023-12-31,[],MI,2023-2024 +presented to the Governor 03/27/2024 11:06 AM,2024-04-09,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0060'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/26/2023 11:54 AM,2023-08-22,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 12:26 PM,2023-07-18,['executive-signature'],MI,2023-2024 +presented to the Governor 03/27/2024 10:58 AM,2024-04-09,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 09/29/2023 01:28 PM,2023-10-03,[],MI,2023-2024 +laid over one day under the rules,2024-04-10,[],MI,2023-2024 +filed with Secretary of State 12/14/2023 10:08 AM,2023-12-31,[],MI,2023-2024 +approved by the Governor 10/24/2023 10:02 AM,2023-10-24,['executive-signature'],MI,2023-2024 +passed; given immediate effect Roll Call # 115 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-05-17,['passage'],MI,2023-2024 +ASSIGNED PA 0194'23 WITH IMMEDIATE EFFECT,2023-11-08,[],MI,2023-2024 +assigned PA 85'24 with immediate effect,2024-07-30,[],MI,2023-2024 +laid over one day under the rules,2023-11-08,[],MI,2023-2024 +approved by the Governor 07/18/2023 11:38 AM,2023-07-19,['executive-signature'],MI,2023-2024 +ORDERED ENROLLED,2024-06-20,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/30/2023 12:26 PM,2023-12-29,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0237'23,2023-12-29,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/07/2023 01:34 PM,2023-11-08,['executive-signature'],MI,2023-2024 +"SENATE NAMED CONFEREES 06/05/2024: SENS. ROSEMARY BAYER, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-05,[],MI,2023-2024 +returned as requested,2023-11-08,[],MI,2023-2024 +HOUSE AMENDMENT(S) CONCURRED IN ROLL CALL # 100 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2023-03-21,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-06,[],MI,2023-2024 +presented to the Governor 06/21/2023 11:16 AM,2023-06-21,['executive-receipt'],MI,2023-2024 +presented to the Governor 10/17/2023 09:27 AM,2023-10-17,['executive-receipt'],MI,2023-2024 +ROLL CALL: ROLL CALL # 593 YEAS 3 NAYS 35 EXCUSED 0 NOT VOTING 0,2023-10-26,[],MI,2023-2024 +passed; given immediate effect Roll Call # 78 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-05-03,['passage'],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +title amended,2023-10-12,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 12:56 PM,2023-07-18,['executive-signature'],MI,2023-2024 +returned to Senate,2023-05-17,[],MI,2023-2024 +ASSIGNED PA 0285'23,2023-12-29,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/22/2023 11:38 AM,2023-12-29,['executive-signature'],MI,2023-2024 +presented to the Governor 07/10/2023 11:04 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +Senate requests return,2023-06-28,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 709 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2023-11-09,[],MI,2023-2024 +approved by the Governor 11/22/2023 11:26 AM,2023-12-31,['executive-signature'],MI,2023-2024 +assigned PA 183'23 with immediate effect,2023-11-08,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-09,[],MI,2023-2024 +Senate substitute (S-2) concurred in,2024-05-09,[],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:40 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +roll call Roll Call # 123 Yeas 51 Nays 55 Excused 0 Not Voting 4,2024-05-22,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +filed with Secretary of State 10/03/2023 03:36 PM,2023-10-03,[],MI,2023-2024 +roll call Roll Call # 65 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-04-26,[],MI,2023-2024 +rule suspended,2024-04-23,[],MI,2023-2024 +filed with Secretary of State 06/12/2023 01:10 PM,2023-06-13,[],MI,2023-2024 +laid over one day under the rules,2023-05-10,[],MI,2023-2024 +bill ordered enrolled,2024-02-20,[],MI,2023-2024 +approved by the Governor 11/21/2023 01:08 PM,2023-12-31,['executive-signature'],MI,2023-2024 +presented to the Governor 02/22/2024 02:46 PM,2024-02-22,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/11/2024 01:50 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +returned from Senate with substitute (S-2) with title amendment,2023-11-09,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-03,[],MI,2023-2024 +presented to the Governor 07/17/2023 11:25 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +passed; given immediate effect Roll Call # 107 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-05-17,['passage'],MI,2023-2024 +House conferees named 06/05/2024: Reps. Will Snyder Jasper Martus Greg VanWoerkom,2024-06-05,[],MI,2023-2024 +bill ordered enrolled,2023-11-02,[],MI,2023-2024 +assigned PA 3'24 with immediate effect,2024-02-21,[],MI,2023-2024 +APPROVED BY GOVERNOR 12/12/2023 10:46 AM,2023-12-29,['executive-signature'],MI,2023-2024 +assigned PA 179'23,2023-11-08,[],MI,2023-2024 +laid over one day under the rules,2024-04-10,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2023-11-09,[],MI,2023-2024 +assigned PA 178'23,2023-11-08,[],MI,2023-2024 +passed; given immediate effect Roll Call # 111 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-05-17,['passage'],MI,2023-2024 +approved by the Governor 12/07/2023 10:02 AM,2023-12-31,['executive-signature'],MI,2023-2024 +presented to the Governor 10/26/2023 02:04 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +returned to Senate,2023-11-09,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2023-06-27,[],MI,2023-2024 +title amended,2023-11-01,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/08/2023 10:30 AM,2023-12-29,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/05/2024: SENS. KEVIN HERTEL, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-05,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/30/2023 10:04 AM,2023-12-29,[],MI,2023-2024 +filed with Secretary of State 06/20/2024 10:58 AM,2024-06-20,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 10/24/2023 11:44 AM,2023-10-25,[],MI,2023-2024 +Senate amendment(s) concurred in Roll Call # 67 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-04-26,[],MI,2023-2024 +filed with Secretary of State 09/29/2023 01:32 PM,2023-10-03,[],MI,2023-2024 +PRESENTED TO GOVERNOR 05/02/2023 01:02 PM,2023-05-03,['executive-receipt'],MI,2023-2024 +presented to the Governor 11/21/2023 09:46 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2023-10-10,[],MI,2023-2024 +roll call Roll Call # 135 Yeas 52 Nays 54 Excused 0 Not Voting 4,2023-06-06,[],MI,2023-2024 +roll call Roll Call # 285 Yeas 99 Nays 11 Excused 0 Not Voting 0,2024-06-27,[],MI,2023-2024 +SUBSTITUTE (S-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-11-08,['amendment-failure'],MI,2023-2024 +given immediate effect,2023-11-08,[],MI,2023-2024 +bill ordered enrolled,2023-05-11,[],MI,2023-2024 +House requests return,2023-03-23,[],MI,2023-2024 +approved by the Governor 06/13/2023 10:00 AM,2023-06-13,['executive-signature'],MI,2023-2024 +presented to the Governor 11/17/2023 09:38 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 11/30/2023 12:18 PM,2023-12-29,['executive-signature'],MI,2023-2024 +approved by the Governor 04/02/2024 01:18 PM,2024-04-09,['executive-signature'],MI,2023-2024 +full title agreed to,2024-02-20,[],MI,2023-2024 +ASSIGNED PA 0058'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +filed with Secretary of State 07/08/2024 01:02 PM,2024-06-27,[],MI,2023-2024 +inserted full title,2023-03-22,[],MI,2023-2024 +retransmitted,2024-05-14,[],MI,2023-2024 +filed with Secretary of State 07/27/2023 09:58 AM,2023-08-22,[],MI,2023-2024 +approved by the Governor 04/01/2024 10:48 AM,2024-04-09,['executive-signature'],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2023-06-27,[],MI,2023-2024 +bill ordered enrolled,2024-06-20,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-06-22,[],MI,2023-2024 +filed with Secretary of State 11/30/2023 10:24 AM,2023-12-31,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 322 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-06-06,[],MI,2023-2024 +approved by the Governor 04/01/2024 10:36 AM,2024-04-09,['executive-signature'],MI,2023-2024 +filed with Secretary of State 07/12/2023 10:52 AM,2023-07-18,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/11/2024 01:52 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +approved by the Governor 04/01/2024 10:44 AM,2024-04-09,['executive-signature'],MI,2023-2024 +filed with Secretary of State 11/30/2023 10:16 AM,2023-12-31,[],MI,2023-2024 +roll call Roll Call # 133 Yeas 52 Nays 54 Excused 0 Not Voting 4,2023-06-06,[],MI,2023-2024 +ORDERED ENROLLED,2023-10-17,[],MI,2023-2024 +rule suspended,2023-11-09,[],MI,2023-2024 +approved by the Governor 03/28/2024 09:50 AM,2024-04-09,['executive-signature'],MI,2023-2024 +returned to Senate,2023-10-18,[],MI,2023-2024 +filed with Secretary of State 03/12/2024 11:26 AM,2024-03-12,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-11-07,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-02,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/19/2023 10:48 AM,2023-07-20,[],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. Sue Shink Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +ORDERED ENROLLED,2023-10-03,[],MI,2023-2024 +returned to Senate,2023-03-22,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2024-06-26,[],MI,2023-2024 +filed with Secretary of State 11/07/2023 02:16 PM,2023-11-08,[],MI,2023-2024 +returned to Senate,2023-06-20,[],MI,2023-2024 +request granted,2023-06-28,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2024-04-24,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/13/2023 10:22 AM,2023-12-29,[],MI,2023-2024 +roll call Roll Call # 57 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-04-13,[],MI,2023-2024 +roll call Roll Call # 41 Yeas 53 Nays 52 Excused 0 Not Voting 3,2024-04-24,[],MI,2023-2024 +request granted,2023-06-28,[],MI,2023-2024 +ASSIGNED PA 0077'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +filed with Secretary of State 12/14/2023 10:06 AM,2023-12-31,[],MI,2023-2024 +ASSIGNED PA 0064'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +approved by the Governor 04/01/2024 10:34 AM,2024-04-09,['executive-signature'],MI,2023-2024 +approved by the Governor 09/29/2023 11:38 AM,2023-10-03,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:02 AM,2023-07-18,[],MI,2023-2024 +presented to the Governor 09/28/2023 04:46 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-06-29,[],MI,2023-2024 +full title agreed to,2023-03-08,[],MI,2023-2024 +filed with Secretary of State 04/30/2024 11:30 AM,2024-04-30,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:04 AM,2023-07-18,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:30 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +returned to Senate,2023-05-17,[],MI,2023-2024 +roll call Roll Call # 79 Yeas 67 Nays 40 Excused 0 Not Voting 3,2024-05-09,[],MI,2023-2024 +filed with Secretary of State 12/13/2023 10:10 AM,2023-12-31,[],MI,2023-2024 +PASSED ROLL CALL # 173 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +filed with Secretary of State 07/23/2024 11:52 AM,2024-07-30,[],MI,2023-2024 +approved by the Governor 10/03/2023 02:54 PM,2023-10-03,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 09/19/2023 10:08 AM,2023-09-20,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2023-04-27,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +retransmitted,2023-10-31,[],MI,2023-2024 +presented to the Governor 06/21/2023 11:06 AM,2023-06-21,['executive-receipt'],MI,2023-2024 +Senate requests return,2023-09-06,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/08/2024 09:34 AM,2024-07-30,['executive-signature'],MI,2023-2024 +assigned PA 91'24 with immediate effect,2024-07-30,[],MI,2023-2024 +presented to the Governor 11/27/2023 03:20 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 09/29/2023 01:20 PM,2023-10-03,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +approved by the Governor 06/29/2023 09:16 AM,2023-07-18,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 03/14/2023 11:19 AM,2023-03-14,['executive-receipt'],MI,2023-2024 +returned to Senate,2023-03-22,[],MI,2023-2024 +ASSIGNED PA 0066'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +APPROVED BY GOVERNOR 10/19/2023 10:21 AM,2023-10-24,['executive-signature'],MI,2023-2024 +roll call Roll Call # 130 Yeas 51 Nays 54 Excused 0 Not Voting 5,2023-06-06,[],MI,2023-2024 +assigned PA 205'23,2023-12-31,[],MI,2023-2024 +bill ordered enrolled,2024-04-10,[],MI,2023-2024 +roll call Roll Call # 547 Yeas 58 Nays 51 Excused 0 Not Voting 1,2023-11-09,[],MI,2023-2024 +assigned PA 108'23 with immediate effect,2023-08-22,[],MI,2023-2024 +filed with Secretary of State 11/07/2023 02:24 PM,2023-11-08,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:22 AM,2023-07-18,[],MI,2023-2024 +filed with Secretary of State 07/12/2023 10:26 AM,2023-07-18,[],MI,2023-2024 +assigned PA 14'24 with immediate effect,2024-03-12,[],MI,2023-2024 +approved by the Governor 03/12/2024 10:06 AM,2024-03-12,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/11/2024 01:56 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +title amended,2023-05-17,[],MI,2023-2024 +presented to the Governor 10/26/2023 02:08 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +Senate substitute (S-5) concurred in,2023-09-28,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-03,[],MI,2023-2024 +amended,2023-04-26,[],MI,2023-2024 +House conferees named 06/05/2024: Reps. Jimmie Wilson Regina Weiss Sarah Lightner,2024-06-05,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/13/2023 10:30 AM,2023-12-29,[],MI,2023-2024 +roll call Roll Call # 578 Yeas 107 Nays 0 Excused 0 Not Voting 3,2023-11-09,[],MI,2023-2024 +ASSIGNED PA 0319'23 WITH IMMEDIATE EFFECT,2023-12-29,[],MI,2023-2024 +bill ordered enrolled,2024-06-27,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. MARY CAVANAGH, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/08/2023 10:28 AM,2023-12-29,[],MI,2023-2024 +substitute (H-4) adopted,2023-09-06,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/05/2024: SENS. DARRIN CAMILLERI, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-05,[],MI,2023-2024 +approved by the Governor 06/06/2024 12:04 PM,2024-06-06,['executive-signature'],MI,2023-2024 +assigned PA 187'23,2023-11-08,[],MI,2023-2024 +roll call Roll Call # 122 Yeas 51 Nays 55 Excused 0 Not Voting 4,2024-05-22,[],MI,2023-2024 +presented to the Governor 04/19/2023 11:34 AM,2023-04-19,['executive-receipt'],MI,2023-2024 +passed; given immediate effect Roll Call # 99 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-21,['passage'],MI,2023-2024 +ASSIGNED PA 0019'24 WITH IMMEDIATE EFFECT,2024-03-12,[],MI,2023-2024 +presented to the Governor 04/10/2023 02:20 PM,2023-03-23,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 11/30/2023 10:32 AM,2023-12-31,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:22 PM,2024-07-30,[],MI,2023-2024 +filed with Secretary of State 11/07/2023 02:06 PM,2023-11-08,[],MI,2023-2024 +approved by the Governor 09/29/2023 11:40 AM,2023-10-03,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0049'24 WITH IMMEDIATE EFFECT,2024-06-11,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +HOUSE AMENDMENT(S) CONCURRED IN ROLL CALL # 139 YEAS 32 NAYS 5 EXCUSED 1 NOT VOTING 0,2023-04-27,[],MI,2023-2024 +presented to the Governor 09/12/2023 03:54 PM,2023-09-13,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 11/07/2023 02:22 PM,2023-11-08,[],MI,2023-2024 +APPROVED BY GOVERNOR 09/18/2023 05:00 PM,2023-09-20,['executive-signature'],MI,2023-2024 +laid over one day under the rules,2023-11-09,[],MI,2023-2024 +laid over one day under the rules,2023-06-28,[],MI,2023-2024 +ASSIGNED PA 0075'24,2024-07-30,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 740 YEAS 23 NAYS 13 EXCUSED 2 NOT VOTING 0,2023-11-09,[],MI,2023-2024 +approved by the Governor 09/29/2023 11:14 AM,2023-10-03,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 12/13/2023 05:14 PM,2023-12-29,['executive-signature'],MI,2023-2024 +approved by the Governor 06/29/2023 09:20 AM,2023-07-18,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-06-28,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +presented to the Governor 04/19/2023 11:32 AM,2023-04-19,['executive-receipt'],MI,2023-2024 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2023-06-28,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 387 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2023-06-27,[],MI,2023-2024 +roll call Roll Call # 80 Yeas 71 Nays 36 Excused 0 Not Voting 3,2024-05-09,[],MI,2023-2024 +filed with Secretary of State 10/19/2023 11:40 AM,2023-10-19,[],MI,2023-2024 +roll call Roll Call # 136 Yeas 52 Nays 54 Excused 0 Not Voting 4,2023-06-06,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +filed with Secretary of State 06/06/2024 02:04 PM,2024-06-06,[],MI,2023-2024 +assigned PA 189'23,2023-11-08,[],MI,2023-2024 +filed with Secretary of State 04/02/2024 02:12 PM,2024-04-09,[],MI,2023-2024 +filed with Secretary of State 06/29/2023 10:16 AM,2023-07-18,[],MI,2023-2024 +approved by the Governor 11/21/2023 01:10 PM,2023-12-31,['executive-signature'],MI,2023-2024 +assigned PA 67'23 with immediate effect,2023-07-18,[],MI,2023-2024 +APPROVED BY GOVERNOR 05/08/2023 11:36 AM,2023-05-09,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2024-06-27,[],MI,2023-2024 +presented to the Governor 10/17/2023 09:29 AM,2023-10-17,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 06/29/2023 10:20 AM,2023-07-18,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 429 YEAS 36 NAYS 0 EXCUSED 1 NOT VOTING 1,2023-06-28,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/01/2023 11:04 AM,2023-12-29,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-04-27,[],MI,2023-2024 +approved by the Governor 04/26/2023 10:04 AM,2023-04-26,['executive-signature'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-06,[],MI,2023-2024 +title amended,2024-05-21,[],MI,2023-2024 +filed with Secretary of State 04/01/2024 03:10 PM,2024-04-09,[],MI,2023-2024 +assigned PA 67'24,2024-06-27,[],MI,2023-2024 +ASSIGNED PA 0107'24,2024-07-30,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/08/2024 01:10 PM,2024-07-30,[],MI,2023-2024 +assigned PA 39'24,2024-04-30,[],MI,2023-2024 +House conferees named 06/06/2023: Reps. Julie Brixie Jasper Martus Ken Borton,2023-06-06,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +assigned PA 246'23,2023-12-31,[],MI,2023-2024 +rule suspended,2023-11-09,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-11-08,['amendment-failure'],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:40 AM,2024-07-30,['executive-signature'],MI,2023-2024 +filed with Secretary of State 04/01/2024 03:08 PM,2024-04-09,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 10/19/2023 11:58 AM,2023-10-24,[],MI,2023-2024 +filed with Secretary of State 03/12/2024 11:22 AM,2024-03-12,[],MI,2023-2024 +filed with Secretary of State 09/29/2023 01:36 PM,2023-10-03,[],MI,2023-2024 +approved by the Governor 04/13/2023 10:00 AM,2023-04-13,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 09/19/2023 10:10 AM,2023-09-20,[],MI,2023-2024 +House conferees named 06/06/2023: Reps. Christine Morse Jasper Martus Phil Green,2023-06-06,[],MI,2023-2024 +ASSIGNED PA 0056'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-11-09,[],MI,2023-2024 +filed with Secretary of State 04/01/2024 03:18 PM,2024-04-09,[],MI,2023-2024 +filed with Secretary of State 03/28/2024 10:56 AM,2024-04-09,[],MI,2023-2024 +passed; given immediate effect Roll Call # 109 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-05-17,['passage'],MI,2023-2024 +approved by the Governor 10/03/2023 03:00 PM,2023-10-03,['executive-signature'],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2023-11-02,[],MI,2023-2024 +full title agreed to,2024-05-09,[],MI,2023-2024 +approved by the Governor 04/26/2023 10:06 AM,2023-04-26,['executive-signature'],MI,2023-2024 +retransmitted,2023-06-28,[],MI,2023-2024 +enrollment vacated,2023-09-06,[],MI,2023-2024 +assigned PA 310'23 with immediate effect,2023-12-31,[],MI,2023-2024 +assigned PA 250'23,2023-12-31,[],MI,2023-2024 +bill ordered enrolled,2023-03-08,[],MI,2023-2024 +approved by the Governor 12/07/2023 10:00 AM,2023-12-31,['executive-signature'],MI,2023-2024 +assigned PA 188'23,2023-11-08,[],MI,2023-2024 +ASSIGNED PA 0055'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +retransmitted,2023-06-28,[],MI,2023-2024 +presented to the Governor 07/10/2023 11:14 AM,2023-06-28,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 11/17/2023 09:47 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +assigned PA 156'23,2023-10-19,[],MI,2023-2024 +assigned PA 17'24,2024-03-12,[],MI,2023-2024 +vote reconsidered,2024-04-24,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +roll call Roll Call # 329 Yeas 102 Nays 6 Excused 0 Not Voting 2,2023-09-28,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +assigned PA 180'23,2023-11-08,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/28/2023 01:22 PM,2023-12-29,['executive-signature'],MI,2023-2024 +roll call Roll Call # 42 Yeas 101 Nays 6 Excused 0 Not Voting 1,2024-04-24,[],MI,2023-2024 +ASSIGNED PA 0298'23,2023-12-29,[],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2024-06-11,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-05-18,[],MI,2023-2024 +approved by the Governor 11/07/2023 01:06 PM,2023-11-08,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0124'23 WITH IMMEDIATE EFFECT,2023-09-20,[],MI,2023-2024 +full title agreed to,2024-05-09,[],MI,2023-2024 +filed with Secretary of State 09/29/2023 01:12 PM,2023-10-03,[],MI,2023-2024 +assigned PA 113'23,2023-08-22,[],MI,2023-2024 +Senate substitute (S-1) concurred in as amended,2023-04-26,[],MI,2023-2024 +full title agreed to,2023-04-13,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 219 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +assigned PA 292'23,2023-12-31,[],MI,2023-2024 +filed with Secretary of State 09/29/2023 01:38 PM,2023-10-03,[],MI,2023-2024 +approved by the Governor 09/12/2023 05:02 PM,2023-09-13,['executive-signature'],MI,2023-2024 +HOUSE SUBSTITUTE (H-4) CONCURRED IN,2023-06-27,[],MI,2023-2024 +assigned PA 92'24 with immediate effect,2024-07-30,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:52 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +HOUSE REQUESTS RETURN,2023-03-23,[],MI,2023-2024 +RETURN GRANTED,2024-06-04,[],MI,2023-2024 +filed with Secretary of State 06/13/2023 11:05 AM,2023-06-13,[],MI,2023-2024 +assigned PA 185'23,2023-11-08,[],MI,2023-2024 +presented to the Governor 06/25/2024 03:06 PM,2024-06-25,['executive-receipt'],MI,2023-2024 +assigned PA 242'23,2023-12-31,[],MI,2023-2024 +ORDERED ENROLLED,2023-10-03,[],MI,2023-2024 +filed with Secretary of State 04/01/2024 03:22 PM,2024-04-09,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +PRESENTED TO GOVERNOR 10/10/2023 09:22 AM,2023-10-11,['executive-receipt'],MI,2023-2024 +SENATE REQUESTS RETURN,2023-10-26,[],MI,2023-2024 +presented to the Governor 07/17/2023 11:23 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +ROLL CALL: ROLL CALL # 141 YEAS 23 NAYS 14 EXCUSED 1 NOT VOTING 0,2023-04-27,[],MI,2023-2024 +House conferees named 06/06/2023: Reps. Jimmie Wilson Regina Weiss Sarah Lightner,2023-06-06,[],MI,2023-2024 +assigned PA 137'23 with immediate effect,2023-10-03,[],MI,2023-2024 +ASSIGNED PA 0302'23,2023-12-29,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 327 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-26,[],MI,2023-2024 +presented to the Governor 05/25/2023 10:23 AM,2023-05-25,['executive-receipt'],MI,2023-2024 +approved by the Governor 11/22/2023 11:20 AM,2023-12-31,['executive-signature'],MI,2023-2024 +returned from Senate with substitute (S-1),2024-05-15,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-03-23,[],MI,2023-2024 +assigned PA 95'24 with immediate effect,2024-07-30,[],MI,2023-2024 +approved by the Governor 06/29/2023 09:12 AM,2023-06-28,['executive-signature'],MI,2023-2024 +full title agreed to,2023-04-26,[],MI,2023-2024 +House conferees named 06/05/2024: Reps. Amos O'Neal Donavan McKinney Bradley Slagh,2024-06-05,[],MI,2023-2024 +filed with Secretary of State 10/03/2023 03:34 PM,2023-10-03,[],MI,2023-2024 +ASSIGNED PA 0095'23 WITH IMMEDIATE EFFECT,2023-07-20,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-10-19,[],MI,2023-2024 +Senate substitute (S-1) concurred in as substituted (H-4),2023-09-06,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:38 AM,2024-07-30,['executive-signature'],MI,2023-2024 +returned to Senate,2023-05-17,[],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-03-23,[],MI,2023-2024 +PASSED ROLL CALL # 669 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-08,['passage'],MI,2023-2024 +presented to the Governor 07/11/2024 01:32 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2024-02-20,[],MI,2023-2024 +assigned PA 131'23 with immediate effect,2023-10-03,[],MI,2023-2024 +rule suspended,2023-06-28,[],MI,2023-2024 +presented to the Governor 07/11/2024 01:02 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +assigned PA 80'23,2023-07-18,[],MI,2023-2024 +roll call Roll Call # 206 Yeas 61 Nays 48 Excused 0 Not Voting 1,2023-06-22,[],MI,2023-2024 +PRESENTED TO GOVERNOR 10/18/2023 02:35 PM,2023-10-19,['executive-receipt'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2024-05-14,[],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +presented to the Governor 11/27/2023 03:32 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0283'23,2023-12-29,[],MI,2023-2024 +House conferees named 06/06/2023: Reps. Felicia Brabec Rachel Hood Ann M. Bollin,2023-06-06,[],MI,2023-2024 +returned to Senate,2023-03-22,[],MI,2023-2024 +APPROVED BY GOVERNOR 03/16/2023 04:13 PM,2023-03-21,['executive-signature'],MI,2023-2024 +House conferees named 06/04/2024: Reps. Samantha Steckloff Jason Morgan Thomas Kuhn,2024-06-04,[],MI,2023-2024 +ASSIGNED PA 0065'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-06,[],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. Darrin Camilleri Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/14/2023 10:22 AM,2023-12-29,[],MI,2023-2024 +APPROVED BY GOVERNOR 10/19/2023 10:23 AM,2023-10-24,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/25/2024 10:32 AM,2024-07-30,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 05/08/2023 01:24 PM,2023-05-09,[],MI,2023-2024 +presented to the Governor 10/09/2023 11:33 AM,2023-10-10,['executive-receipt'],MI,2023-2024 +assigned PA 308'23 with immediate effect,2023-12-31,[],MI,2023-2024 +assigned PA 4'24 with immediate effect,2024-02-21,[],MI,2023-2024 +vote reconsidered,2023-11-02,[],MI,2023-2024 +presented to the Governor 07/12/2023 10:05 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:32 AM,2024-07-30,['executive-signature'],MI,2023-2024 +presented to the Governor 07/11/2024 01:24 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +rule suspended,2023-03-21,[],MI,2023-2024 +presented to the Governor 07/11/2024 01:08 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. Mary Cavanagh Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +ASSIGNED PA 0078'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +filed with Secretary of State 11/22/2023 01:06 PM,2023-12-31,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. SEAN MCCANN, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +Senate substitute (S-2) nonconcurred in,2023-02-01,[],MI,2023-2024 +full title agreed to,2023-09-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/20/2023 04:49 PM,2023-12-29,[],MI,2023-2024 +assigned PA 133'23 with immediate effect,2023-10-03,[],MI,2023-2024 +filed with Secretary of State 04/01/2024 03:14 PM,2024-04-09,[],MI,2023-2024 +roll call Roll Call # 121 Yeas 51 Nays 55 Excused 0 Not Voting 4,2024-05-22,[],MI,2023-2024 +bill ordered enrolled 06/27/2023,2023-06-28,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:14 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 06/29/2023 10:18 AM,2023-07-18,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-11-07,[],MI,2023-2024 +presented to the Governor 11/27/2023 03:00 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +approved by the Governor 04/01/2024 10:42 AM,2024-04-09,['executive-signature'],MI,2023-2024 +approved by the Governor 12/13/2023 04:50 PM,2023-12-31,['executive-signature'],MI,2023-2024 +assigned PA 129'23 with immediate effect,2023-10-03,[],MI,2023-2024 +filed with Secretary of State 04/01/2024 03:06 PM,2024-04-09,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 430 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2023-06-28,[],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2023-10-18,[],MI,2023-2024 +returned from Senate with amendment(s) with full title,2023-11-09,[],MI,2023-2024 +PRESENTED TO GOVERNOR 10/18/2023 02:37 PM,2023-10-19,['executive-receipt'],MI,2023-2024 +full title agreed to,2024-04-23,[],MI,2023-2024 +roll call Roll Call # 505 Yeas 81 Nays 28 Excused 0 Not Voting 1,2023-11-08,[],MI,2023-2024 +assigned PA 93'24 with immediate effect,2024-07-30,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:18 AM,2023-07-18,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 12:28 PM,2023-07-18,['executive-signature'],MI,2023-2024 +returned from Senate with amendment(s) with immediate effect,2023-11-09,[],MI,2023-2024 +assigned PA 6'24,2024-02-21,[],MI,2023-2024 +returned from Senate without amendment with full title,2024-04-10,[],MI,2023-2024 +presented to the Governor 11/21/2023 10:06 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 06/29/2023 10:14 AM,2023-06-28,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:48 AM,2023-07-18,[],MI,2023-2024 +ASSIGNED PA 0084'23,2023-07-20,[],MI,2023-2024 +ASSIGNED PA 0317'23,2023-12-29,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-05,[],MI,2023-2024 +assigned PA 291'23,2023-12-31,[],MI,2023-2024 +approved by the Governor 12/12/2023 10:20 AM,2023-12-31,['executive-signature'],MI,2023-2024 +full title agreed to,2024-02-14,[],MI,2023-2024 +bill ordered enrolled,2024-05-21,[],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. Kevin Hertel Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +House conferees named 06/06/2023: Reps. Phil Skaggs Julie Brixie Bill Schuette,2023-06-06,[],MI,2023-2024 +assigned PA 134'23 with immediate effect,2023-10-03,[],MI,2023-2024 +approved by the Governor 04/05/2023 11:30 AM,2023-03-23,['executive-signature'],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. Sylvia Santana Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +RETURN GRANTED,2024-05-09,[],MI,2023-2024 +assigned PA 42'24,2024-05-22,[],MI,2023-2024 +title amendment agreed to,2024-06-27,[],MI,2023-2024 +vote on passage reconsidered,2024-06-26,[],MI,2023-2024 +ASSIGNED PA 0106'23,2023-08-22,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-18,[],MI,2023-2024 +House conferees named 06/06/2023: Reps. Jason Morgan Jimmie Wilson Cameron Cavitt,2023-06-06,[],MI,2023-2024 +ASSIGNED PA 0297'23,2023-12-29,[],MI,2023-2024 +assigned PA 2'24 with immediate effect,2024-02-21,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 01:08 PM,2023-07-18,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 05/22/2024 01:54 PM,2024-05-23,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-05-18,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:34 AM,2024-07-30,['executive-signature'],MI,2023-2024 +filed with Secretary of State 04/13/2023 11:48 AM,2023-04-13,[],MI,2023-2024 +roll call Roll Call # 347 Yeas 72 Nays 38 Excused 0 Not Voting 0,2023-10-12,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-05,[],MI,2023-2024 +assigned PA 132'23 with immediate effect,2023-10-03,[],MI,2023-2024 +ASSIGNED PA 0167'23 WITH IMMEDIATE EFFECT,2023-10-24,[],MI,2023-2024 +filed with Secretary of State 06/06/2024 02:00 PM,2024-06-06,[],MI,2023-2024 +retransmitted,2023-10-10,[],MI,2023-2024 +bill ordered enrolled,2024-05-21,[],MI,2023-2024 +returned as requested,2023-11-09,[],MI,2023-2024 +Senate substitute (S-2) concurred in,2023-06-27,[],MI,2023-2024 +filed with Secretary of State 12/14/2023 10:10 AM,2023-12-31,[],MI,2023-2024 +approved by the Governor 10/10/2023 10:04 AM,2023-10-10,['executive-signature'],MI,2023-2024 +Senate substitute (S-2) concurred in,2023-06-27,[],MI,2023-2024 +presented to the Governor 05/11/2023 11:08 AM,2023-05-11,['executive-receipt'],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-08,[],MI,2023-2024 +PRESENTED TO GOVERNOR 04/03/2023 01:24 PM,2023-04-11,['executive-receipt'],MI,2023-2024 +roll call Roll Call # 114 Yeas 98 Nays 9 Excused 0 Not Voting 3,2024-05-21,[],MI,2023-2024 +assigned PA 33'24 with immediate effect,2024-04-09,[],MI,2023-2024 +presented to the Governor 09/21/2023 09:32 AM,2023-09-26,['executive-receipt'],MI,2023-2024 +ORDERED ENROLLED,2023-09-19,[],MI,2023-2024 +presented to the Governor 07/11/2024 01:34 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +ASSIGNED PA 0300'23,2023-12-29,[],MI,2023-2024 +ASSIGNED PA 0072'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/18/2023 11:48 AM,2023-07-20,['executive-signature'],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. DARRIN CAMILLERI, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +PRESENTED TO GOVERNOR 06/14/2023 12:20 PM,2023-06-15,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 12/11/2023 11:05 AM,2023-12-31,[],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2023-06-28,[],MI,2023-2024 +approved by the Governor 11/30/2023 12:38 PM,2023-12-31,['executive-signature'],MI,2023-2024 +Senate substitute (S-2) concurred in,2024-05-21,[],MI,2023-2024 +PRESENTED TO GOVERNOR 03/14/2023 11:17 AM,2023-03-14,['executive-receipt'],MI,2023-2024 +returned from Senate without amendment with immediate effect and full title,2024-06-26,[],MI,2023-2024 +PRESENTED TO GOVERNOR 06/26/2024 02:48 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/13/2023 10:32 AM,2023-12-29,[],MI,2023-2024 +presented to the Governor 07/11/2024 01:16 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +presented to the Governor 11/27/2023 03:02 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0222'23,2023-12-29,[],MI,2023-2024 +approved by the Governor 07/26/2023 12:14 PM,2023-08-22,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-10-24,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-06,[],MI,2023-2024 +approved by the Governor 07/11/2023 01:02 PM,2023-07-18,['executive-signature'],MI,2023-2024 +RETURN GRANTED,2024-05-09,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/17/2023 10:47 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +returned to Senate,2023-04-13,[],MI,2023-2024 +full title agreed to,2023-05-11,[],MI,2023-2024 +SUBSTITUTE (S-2) ADOPTED,2024-09-17,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-03,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +PRESENTED TO GOVERNOR 05/02/2023 01:04 PM,2023-05-03,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0255'23,2023-12-29,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:54 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-28,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/27/2023 09:46 AM,2023-08-22,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/18/2023 11:44 AM,2023-07-20,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:06 AM,2024-07-30,['executive-signature'],MI,2023-2024 +approved by the Governor 12/07/2023 10:14 AM,2023-12-31,['executive-signature'],MI,2023-2024 +assigned PA 290'23,2023-12-31,[],MI,2023-2024 +assigned PA 261'23,2023-12-31,[],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. Veronica Klinefelt Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +TITLE AMENDED,2023-02-28,[],MI,2023-2024 +enrollment vacated,2023-03-21,[],MI,2023-2024 +bill ordered enrolled,2024-06-27,[],MI,2023-2024 +assigned PA 175'23 with immediate effect,2023-10-24,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +ORDERED ENROLLED,2023-01-31,[],MI,2023-2024 +APPROVED BY GOVERNOR 05/17/2023 03:07 PM,2023-05-18,['executive-signature'],MI,2023-2024 +filed with Secretary of State 05/22/2023 04:48 PM,2023-05-23,[],MI,2023-2024 +ASSIGNED PA 0002'23,2023-02-02,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:46 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +approved by the Governor 10/19/2023 10:04 AM,2023-10-19,['executive-signature'],MI,2023-2024 +ROLL CALL: ROLL CALL # 320 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2024-06-26,[],MI,2023-2024 +ASSIGNED PA 0104'23,2023-08-22,[],MI,2023-2024 +assigned PA 142'23,2023-10-03,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/20/2024: SENS. SARAH ANTHONY, SEAN MCCANN, JON C. BUMSTEAD",2024-06-20,[],MI,2023-2024 +bill ordered enrolled,2023-09-06,[],MI,2023-2024 +laid over one day under the rules,2023-11-09,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +ASSIGNED PA 0073'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +approved by the Governor 02/27/2024 10:40 AM,2024-02-27,['executive-signature'],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +filed with Secretary of State 11/22/2023 01:32 PM,2023-12-31,[],MI,2023-2024 +PRESENTED TO GOVERNOR 06/26/2024 03:04 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +House conferees named 06/06/2023: Reps. Julie Brixie Jasper Martus Ken Borton,2023-06-06,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2023-11-09,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2023-06-06,[],MI,2023-2024 +bill ordered enrolled,2023-04-26,[],MI,2023-2024 +assigned PA 217'23,2023-12-31,[],MI,2023-2024 +approved by the Governor 07/26/2023 12:12 PM,2023-08-22,['executive-signature'],MI,2023-2024 +assigned PA 214'23,2023-12-31,[],MI,2023-2024 +Senate conferees named 06/04/2024: Sens. Jeff Irwin Sarah Anthony Jon Bumstead,2024-06-04,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:26 PM,2024-07-30,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-06-27,[],MI,2023-2024 +filed with Secretary of State 12/08/2023 10:12 AM,2023-12-31,[],MI,2023-2024 +assigned PA 62'24,2024-06-20,[],MI,2023-2024 +full title agreed to,2023-11-02,[],MI,2023-2024 +laid over one day under the rules,2024-03-05,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/17/2023 10:45 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +Senate substitute (S-3) concurred in,2024-04-23,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-05-18,[],MI,2023-2024 +rule suspended,2023-11-08,[],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. Kevin Hertel Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +returned to Senate,2023-10-12,[],MI,2023-2024 +rule suspended,2023-11-08,[],MI,2023-2024 +enrollment vacated,2023-06-28,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/13/2023 10:24 AM,2023-12-29,[],MI,2023-2024 +approved by the Governor 11/07/2023 01:18 PM,2023-11-08,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0079'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +presented to the Governor 02/22/2024 02:40 PM,2024-02-22,['executive-receipt'],MI,2023-2024 +rule suspended,2023-11-09,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 01:00 PM,2023-07-18,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/07/2023 02:30 PM,2023-11-08,[],MI,2023-2024 +bill ordered enrolled,2024-02-20,[],MI,2023-2024 +assigned PA 42'23 with immediate effect,2023-06-13,[],MI,2023-2024 +assigned PA 289'23,2023-12-31,[],MI,2023-2024 +returned from Senate with substitute (S-4) with full title,2023-11-09,[],MI,2023-2024 +roll call Roll Call # 348 Yeas 84 Nays 26 Excused 0 Not Voting 0,2023-10-12,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 739 YEAS 25 NAYS 11 EXCUSED 2 NOT VOTING 0,2023-11-09,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/27/2023 09:42 AM,2023-08-22,[],MI,2023-2024 +ASSIGNED PA 0236'23,2023-12-29,[],MI,2023-2024 +ORDERED ENROLLED,2023-03-21,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. SEAN MCCANN, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-3) CONCURRED IN,2023-11-09,[],MI,2023-2024 +assigned PA 135'23 with immediate effect,2023-10-03,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-03,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/18/2023 11:46 AM,2023-07-20,['executive-signature'],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +Senate substitute (S-2) concurred in,2023-11-08,[],MI,2023-2024 +ASSIGNED PA 0058'24,2024-06-20,[],MI,2023-2024 +title amended,2023-05-17,[],MI,2023-2024 +filed with Secretary of State 10/24/2023 11:34 AM,2023-10-24,[],MI,2023-2024 +assigned PA 293'23,2023-12-31,[],MI,2023-2024 +assigned PA 12'24 with immediate effect,2024-03-12,[],MI,2023-2024 +roll call Roll Call # 81 Yeas 96 Nays 11 Excused 0 Not Voting 3,2024-05-09,[],MI,2023-2024 +returned to Senate,2023-03-22,[],MI,2023-2024 +ASSIGNED PA 0060'24 WITH IMMEDIATE EFFECT,2024-06-20,[],MI,2023-2024 +"SENATE NAMED CONFEREES 10/26/2023: SENS. SARAH ANTHONY, SEAN MCCANN, JON C. BUMSTEAD",2023-10-26,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:28 AM,2023-07-18,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/22/2023 01:48 PM,2023-12-29,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/07/2023 02:32 PM,2023-11-08,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-05-18,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:02 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +approved by the Governor 07/11/2023 01:16 PM,2023-07-18,['executive-signature'],MI,2023-2024 +title amended,2023-05-17,[],MI,2023-2024 +ASSIGNED PA 0061'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +bill ordered enrolled,2024-05-09,[],MI,2023-2024 +filed with Secretary of State 11/07/2023 02:08 PM,2023-11-08,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2023-01-25,[],MI,2023-2024 +APPROVED BY GOVERNOR 12/12/2023 10:50 AM,2023-12-29,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/01/2023 11:12 AM,2023-12-29,[],MI,2023-2024 +returned to Senate,2023-11-01,[],MI,2023-2024 +laid over one day under the rules,2023-11-08,[],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. Mary Cavanagh Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +title amended,2023-05-17,[],MI,2023-2024 +approved by the Governor 07/26/2023 12:18 PM,2023-08-22,['executive-signature'],MI,2023-2024 +ROLL CALL: ROLL CALL # 708 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-09,[],MI,2023-2024 +Senate amendment(s) concurred in Roll Call # 103 Yeas 71 Nays 36 Excused 0 Not Voting 3,2023-05-11,[],MI,2023-2024 +House conferees named 06/04/2024: Reps. Samantha Steckloff Jason Morgan Thomas Kuhn,2024-06-04,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/22/2023 01:44 PM,2023-12-29,[],MI,2023-2024 +title amended,2023-05-03,[],MI,2023-2024 +Senate conferees named 06/04/2024: Sens. Kevin Hertel Sarah Anthony Jon Bumstead,2024-06-04,[],MI,2023-2024 +filed with Secretary of State 07/19/2023 10:34 AM,2023-07-19,[],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. Rosemary Bayer Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +approved by the Governor 06/29/2023 09:22 AM,2023-07-18,['executive-signature'],MI,2023-2024 +approved by the Governor 10/19/2023 10:06 AM,2023-10-19,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 12/07/2023 10:18 AM,2023-12-29,['executive-signature'],MI,2023-2024 +filed with Secretary of State 11/22/2023 01:08 PM,2023-12-31,[],MI,2023-2024 +roll call Roll Call # 224 Yeas 52 Nays 56 Excused 0 Not Voting 2,2023-06-27,[],MI,2023-2024 +ASSIGNED PA 0284'23,2023-12-29,[],MI,2023-2024 +ASSIGNED PA 0176'23 WITH IMMEDIATE EFFECT,2023-10-25,[],MI,2023-2024 +bill ordered enrolled,2023-09-06,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-08,[],MI,2023-2024 +approved by the Governor 11/30/2023 12:34 PM,2023-12-31,['executive-signature'],MI,2023-2024 +filed with Secretary of State 06/06/2024 02:08 PM,2024-06-06,[],MI,2023-2024 +approved by the Governor 04/01/2024 10:38 AM,2024-04-09,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0254'23,2023-12-29,[],MI,2023-2024 +assigned PA 311'23 with immediate effect,2023-12-31,[],MI,2023-2024 +approved by the Governor 04/01/2024 10:46 AM,2024-04-09,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/07/2023 02:42 PM,2023-11-08,[],MI,2023-2024 +roll call Roll Call # 23 Yeas 102 Nays 4 Excused 0 Not Voting 2,2024-03-12,[],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2024-06-11,[],MI,2023-2024 +approved by the Governor 02/21/2024 09:34 AM,2024-02-21,['executive-signature'],MI,2023-2024 +assigned PA 11'24,2024-02-27,[],MI,2023-2024 +ENROLLMENT VACATED,2024-01-11,[],MI,2023-2024 +presented to the Governor 12/06/2023 02:04 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +ROLL CALL: ROLL CALL # 226 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +title amendment agreed to,2023-04-26,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-11-02,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:38 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 09:58 AM,2023-07-18,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/08/2023: SENS. JOHN CHERRY, SUE SHINK, JON C. BUMSTEAD",2023-06-08,[],MI,2023-2024 +laid over one day under the rules,2023-11-09,[],MI,2023-2024 +filed with Secretary of State 07/12/2023 10:46 AM,2023-07-18,[],MI,2023-2024 +assigned PA 57'24,2024-06-06,[],MI,2023-2024 +assigned PA 203'23,2023-12-31,[],MI,2023-2024 +ASSIGNED PA 0192'23 WITH IMMEDIATE EFFECT,2023-11-08,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:30 AM,2023-07-18,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-11-07,[],MI,2023-2024 +assigned PA 181'23,2023-11-08,[],MI,2023-2024 +approved by the Governor 12/12/2023 10:24 AM,2023-12-31,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0165'23 WITH IMMEDIATE EFFECT,2023-10-24,[],MI,2023-2024 +House conferees named 06/27/2023: Reps. Angela Witwer Amos O'Neal Sarah Lightner,2023-06-27,[],MI,2023-2024 +ASSIGNED PA 0053'23,2023-07-18,[],MI,2023-2024 +rule suspended,2023-11-09,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-11-08,[],MI,2023-2024 +referred to conference committee 06/05/2024,2024-06-05,[],MI,2023-2024 +roll call Roll Call # 35 Yeas 77 Nays 30 Excused 0 Not Voting 1,2024-04-23,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-06,[],MI,2023-2024 +PRESENTED TO GOVERNOR 03/23/2023 11:32 AM,2023-03-23,['executive-receipt'],MI,2023-2024 +laid over one day under the rules,2023-11-09,[],MI,2023-2024 +roll call Roll Call # 504 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-08,[],MI,2023-2024 +filed with Secretary of State 07/27/2023 10:00 AM,2023-08-22,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/22/2023 11:36 AM,2023-12-29,['executive-signature'],MI,2023-2024 +assigned PA 171'23 with immediate effect,2023-10-24,[],MI,2023-2024 +ASSIGNED PA 0198'23 WITH IMMEDIATE EFFECT,2023-11-08,[],MI,2023-2024 +referred to conference committee 06/05/2024,2024-06-05,[],MI,2023-2024 +assigned PA 88'23,2023-07-19,[],MI,2023-2024 +ASSIGNED PA 0105'23 WITH IMMEDIATE EFFECT,2023-08-22,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-06-04,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 7 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2023-01-25,[],MI,2023-2024 +referred to conference committee 06/05/2024,2024-06-05,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:20 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +ROLL CALL: ROLL CALL # 738 YEAS 25 NAYS 11 EXCUSED 2 NOT VOTING 0,2023-11-09,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/26/2023 12:04 PM,2023-08-22,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/13/2023 10:28 AM,2023-12-29,[],MI,2023-2024 +presented to the Governor 09/11/2023 11:20 AM,2023-09-07,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 07/08/2024 09:32 AM,2024-07-30,['executive-signature'],MI,2023-2024 +filed with Secretary of State 04/01/2024 03:12 PM,2024-04-09,[],MI,2023-2024 +full title agreed to,2024-05-09,[],MI,2023-2024 +rule suspended,2023-11-08,[],MI,2023-2024 +ASSIGNED PA 0223'23,2023-12-29,[],MI,2023-2024 +ASSIGNED PA 0256'23,2023-12-29,[],MI,2023-2024 +ASSIGNED PA 0068'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +returned to Senate,2023-05-17,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2023-03-23,[],MI,2023-2024 +filed with Secretary of State 07/27/2023 10:06 AM,2023-08-22,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-11-09,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-09,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-10-18,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/27/2023 02:26 PM,2023-12-29,['executive-receipt'],MI,2023-2024 +request granted,2023-06-28,[],MI,2023-2024 +returned to Senate,2023-05-03,[],MI,2023-2024 +filed with Secretary of State 12/01/2023 11:20 AM,2023-12-31,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2023-05-23,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-11-02,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:28 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +assigned PA 275'23,2023-12-31,[],MI,2023-2024 +filed with Secretary of State 11/07/2023 02:26 PM,2023-11-08,[],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2023-11-09,[],MI,2023-2024 +presented to the Governor 05/11/2023 11:04 AM,2023-05-11,['executive-receipt'],MI,2023-2024 +returned to Senate,2023-05-17,[],MI,2023-2024 +ASSIGNED PA 0299'23,2023-12-29,[],MI,2023-2024 +HOUSE REQUESTS RETURN,2024-01-11,[],MI,2023-2024 +vote reconsidered,2023-11-08,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/19/2023 10:42 AM,2023-07-20,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. MARY CAVANAGH, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +returned to Senate,2023-05-17,[],MI,2023-2024 +ORDERED ENROLLED,2023-10-03,[],MI,2023-2024 +presented to the Governor 09/11/2023 11:22 AM,2023-09-07,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0221'23,2023-12-29,[],MI,2023-2024 +bill ordered enrolled,2023-04-26,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/05/2024: SENS. SEAN MCCANN, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-05,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-3),2023-10-31,[],MI,2023-2024 +full title agreed to,2023-10-12,[],MI,2023-2024 +full title agreed to,2023-05-11,[],MI,2023-2024 +filed with Secretary of State 02/21/2024 11:02 AM,2024-02-21,[],MI,2023-2024 +ASSIGNED PA 0193'23,2023-11-08,[],MI,2023-2024 +filed with Secretary of State 10/19/2023 11:46 AM,2023-10-19,[],MI,2023-2024 +presented to the Governor 11/21/2023 10:08 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +roll call Roll Call # 247 Yeas 104 Nays 4 Excused 0 Not Voting 2,2023-06-27,[],MI,2023-2024 +filed with Secretary of State 02/27/2024 11:28 AM,2024-02-27,[],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:38 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +presented to the Governor 02/22/2024 02:44 PM,2024-02-22,['executive-receipt'],MI,2023-2024 +roll call Roll Call # 131 Yeas 52 Nays 54 Excused 0 Not Voting 4,2023-06-06,[],MI,2023-2024 +assigned PA 215'23,2023-12-31,[],MI,2023-2024 +approved by the Governor 02/27/2024 10:34 AM,2024-02-27,['executive-signature'],MI,2023-2024 +filed with Secretary of State 06/29/2023 10:22 AM,2023-07-18,[],MI,2023-2024 +ASSIGNED PA 0109'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/08/2023 10:26 AM,2023-12-29,[],MI,2023-2024 +presented to the Governor 05/15/2024 10:42 AM,2024-05-15,['executive-receipt'],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-25,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 12:44 PM,2023-07-18,['executive-signature'],MI,2023-2024 +assigned PA 141'23,2023-10-03,[],MI,2023-2024 +bill ordered enrolled,2023-04-13,[],MI,2023-2024 +approved by the Governor 07/18/2023 11:32 AM,2023-07-19,['executive-signature'],MI,2023-2024 +request granted,2023-09-06,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 548 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2023-10-19,[],MI,2023-2024 +filed with Secretary of State 12/08/2023 10:10 AM,2023-12-31,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-05-18,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +assigned PA 22'24,2024-04-09,[],MI,2023-2024 +SENATOR REMOVED AS SPONSOR: STEPHANIE CHANG,2023-03-23,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/08/2023: SENS. SYLVIA A. SANTANA, KRISTEN MCDONALD RIVET, JON C. BUMSTEAD",2023-06-08,[],MI,2023-2024 +presented to the Governor 11/17/2023 09:32 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +"SENATE NAMED CONFEREES 06/08/2023: SENS. JOHN CHERRY, SUE SHINK, JON C. BUMSTEAD",2023-06-08,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 03/16/2023 04:40 PM,2023-03-21,[],MI,2023-2024 +assigned PA 48'23 with immediate effect,2023-07-18,[],MI,2023-2024 +assigned PA 140'23 with immediate effect,2023-10-03,[],MI,2023-2024 +filed with Secretary of State 09/13/2023 09:37 AM,2023-09-13,[],MI,2023-2024 +assigned PA 15'24 with immediate effect,2024-03-12,[],MI,2023-2024 +assigned PA 30'24,2024-04-09,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-06-28,[],MI,2023-2024 +full title agreed to,2023-06-22,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-5) CONCURRED IN,2023-11-08,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/08/2023: SENS. SUE SHINK, SYLVIA A. SANTANA, JON C. BUMSTEAD",2023-06-08,[],MI,2023-2024 +referred to conference committee 06/05/2024,2024-06-05,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +approved by the Governor 07/23/2024 10:46 AM,2024-07-30,['executive-signature'],MI,2023-2024 +filed with Secretary of State 11/22/2023 01:26 PM,2023-12-31,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:38 PM,2024-07-30,[],MI,2023-2024 +bill ordered enrolled,2024-05-09,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +INSERTED FULL TITLE,2023-11-08,[],MI,2023-2024 +approved by the Governor 10/19/2023 10:08 AM,2023-10-24,['executive-signature'],MI,2023-2024 +ORDERED ENROLLED,2023-06-06,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 05/08/2023 01:26 PM,2023-05-09,[],MI,2023-2024 +title amended,2023-05-17,[],MI,2023-2024 +assigned PA 26'24,2024-04-09,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:40 PM,2024-07-30,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-11-09,[],MI,2023-2024 +roll call Roll Call # 585 Yeas 58 Nays 48 Excused 0 Not Voting 4,2023-11-09,[],MI,2023-2024 +roll call Roll Call # 271 Yeas 102 Nays 5 Excused 0 Not Voting 3,2023-09-06,[],MI,2023-2024 +filed with Secretary of State 04/01/2024 03:20 PM,2024-04-09,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/05/2024: SENS. SEAN MCCANN, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-05,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-02,[],MI,2023-2024 +APPROVED BY GOVERNOR 10/19/2023 10:10 AM,2023-10-24,['executive-signature'],MI,2023-2024 +approved by the Governor 07/18/2023 12:00 PM,2023-07-19,['executive-signature'],MI,2023-2024 +filed with Secretary of State 04/26/2023 01:07 PM,2023-04-26,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/19/2023 10:40 AM,2023-07-20,[],MI,2023-2024 +assigned PA 127'23 with immediate effect,2023-10-03,[],MI,2023-2024 +SENATE REQUESTS RETURN,2024-09-17,[],MI,2023-2024 +bill ordered enrolled,2023-04-26,[],MI,2023-2024 +assigned PA 32'24,2024-04-09,[],MI,2023-2024 +approved by the Governor 06/07/2023 09:06 AM,2023-06-07,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +approved by the Governor 11/29/2023 05:14 PM,2023-12-31,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 10/10/2023 09:24 AM,2023-10-11,['executive-receipt'],MI,2023-2024 +presented to the Governor 02/22/2024 02:42 PM,2024-02-22,['executive-receipt'],MI,2023-2024 +approved by the Governor 07/23/2024 09:44 AM,2024-07-30,['executive-signature'],MI,2023-2024 +"SENATE NAMED CONFEREES 06/08/2023: SENS. JOHN CHERRY, ROSEMARY BAYER, JON C. BUMSTEAD",2023-06-08,[],MI,2023-2024 +assigned PA 55'24,2024-06-06,[],MI,2023-2024 +filed with Secretary of State 11/07/2023 02:14 PM,2023-11-08,[],MI,2023-2024 +rule suspended,2023-11-09,[],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2024-06-11,[],MI,2023-2024 +referred to conference committee 06/05/2024,2024-06-05,[],MI,2023-2024 +ASSIGNED PA 0318'23 WITH IMMEDIATE EFFECT,2023-12-29,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2023-03-23,[],MI,2023-2024 +assigned PA 34'24 with immediate effect,2024-04-09,[],MI,2023-2024 +Senate conferees named 06/04/2024: Sens. Mary Cavanagh Sarah Anthony Jon Bumstead,2024-06-04,[],MI,2023-2024 +ASSIGNED PA 0252'23,2023-12-29,[],MI,2023-2024 +returned to Senate,2024-05-21,[],MI,2023-2024 +full title agreed to,2023-09-28,[],MI,2023-2024 +filed with Secretary of State 04/26/2023 01:05 PM,2023-04-26,[],MI,2023-2024 +assigned PA 50'23 with immediate effect,2023-07-18,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. JOHN CHERRY, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +RETURN GRANTED,2023-06-28,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/18/2023 11:26 AM,2023-07-20,['executive-signature'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-11-01,[],MI,2023-2024 +assigned PA 139'23 with immediate effect,2023-10-03,[],MI,2023-2024 +assigned PA 25'24,2024-04-09,[],MI,2023-2024 +filed with Secretary of State 04/13/2023 11:50 AM,2023-04-13,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-28,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/11/2024 01:44 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +presented to the Governor 11/27/2023 03:10 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0071'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +ENROLLMENT VACATED,2023-03-23,[],MI,2023-2024 +filed with Secretary of State 10/03/2023 03:40 PM,2023-10-03,[],MI,2023-2024 +APPROVED BY GOVERNOR 10/19/2023 09:46 AM,2023-10-24,['executive-signature'],MI,2023-2024 +roll call Roll Call # 64 Yeas 85 Nays 23 Excused 0 Not Voting 2,2023-04-26,[],MI,2023-2024 +presented to the Governor 03/31/2023 01:19 PM,2023-03-23,['executive-receipt'],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +ORDERED ENROLLED,2023-03-23,[],MI,2023-2024 +ASSIGNED PA 0125'23 WITH IMMEDIATE EFFECT,2023-09-20,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/26/2023 12:06 PM,2023-08-22,['executive-signature'],MI,2023-2024 +approved by the Governor 07/26/2023 12:20 PM,2023-08-22,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2024-05-09,[],MI,2023-2024 +postponed temporarily,2024-04-24,[],MI,2023-2024 +full title agreed to,2024-04-24,[],MI,2023-2024 +approved by the Governor 05/22/2023 01:50 PM,2023-05-23,['executive-signature'],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2023-05-23,[],MI,2023-2024 +assigned PA 43'23 with immediate effect,2023-06-13,[],MI,2023-2024 +AMENDMENT(S) DEFEATED,2023-06-28,['amendment-failure'],MI,2023-2024 +ROLL CALL: ROLL CALL # 391 YEAS 25 NAYS 12 EXCUSED 1 NOT VOTING 0,2023-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/29/2023 01:08 PM,2023-12-29,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/15/2024 02:46 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +approved by the Governor 07/08/2024 09:58 AM,2024-06-27,['executive-signature'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-04-27,[],MI,2023-2024 +filed with Secretary of State 04/01/2024 03:16 PM,2024-04-09,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-26,[],MI,2023-2024 +filed with Secretary of State 06/29/2023 10:12 AM,2023-06-28,[],MI,2023-2024 +PASSED ROLL CALL # 186 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-05-15,['passage'],MI,2023-2024 +FULL TITLE AGREED TO,2023-04-27,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:32 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/19/2023 10:44 AM,2023-07-20,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/20/2023 12:48 PM,2023-12-29,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0028'23 WITH IMMEDIATE EFFECT,2023-05-09,[],MI,2023-2024 +full title agreed to,2024-06-26,[],MI,2023-2024 +placed on third reading,2024-06-26,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 05/17/2023 03:32 PM,2023-05-18,[],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +assigned PA 47'23 with immediate effect,2023-06-28,[],MI,2023-2024 +approved by the Governor 11/30/2023 12:20 PM,2023-12-31,['executive-signature'],MI,2023-2024 +laid over one day under the rules,2023-11-09,[],MI,2023-2024 +full title agreed to,2024-04-10,[],MI,2023-2024 +bill ordered enrolled,2024-04-23,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/08/2023: SENS. MARY CAVANAGH, SYLVIA A. SANTANA, JON C. BUMSTEAD",2023-06-08,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-18,[],MI,2023-2024 +assigned PA 18'23,2023-04-13,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2023-05-23,[],MI,2023-2024 +filed with Secretary of State 10/10/2023 11:44 AM,2023-10-10,[],MI,2023-2024 +APPROVED BY GOVERNOR 04/05/2023 11:28 AM,2023-04-11,['executive-signature'],MI,2023-2024 +approved by the Governor 07/23/2024 10:42 AM,2024-07-30,['executive-signature'],MI,2023-2024 +filed with Secretary of State 11/22/2023 01:10 PM,2023-12-31,[],MI,2023-2024 +presented to the Governor 07/11/2024 01:20 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 03/24/2023 09:30 AM,2023-04-11,['executive-signature'],MI,2023-2024 +roll call Roll Call # 246 Yeas 103 Nays 5 Excused 0 Not Voting 2,2023-06-27,[],MI,2023-2024 +ASSIGNED PA 0303'23,2023-12-29,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/11/2024 02:02 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +request granted,2023-03-21,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/18/2023 11:36 AM,2023-07-20,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:32 PM,2024-07-30,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-06,[],MI,2023-2024 +approved by the Governor 10/10/2023 10:02 AM,2023-10-10,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 01:20 PM,2023-07-18,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0201'23,2023-12-29,[],MI,2023-2024 +assigned PA 202'23,2023-12-31,[],MI,2023-2024 +filed with Secretary of State 12/14/2023 09:58 AM,2023-12-31,[],MI,2023-2024 +APPROVED BY GOVERNOR 10/19/2023 10:12 AM,2023-10-24,['executive-signature'],MI,2023-2024 +assigned PA 24'24,2024-04-09,[],MI,2023-2024 +approved by the Governor 12/06/2023 10:40 AM,2023-12-31,['executive-signature'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-28,[],MI,2023-2024 +ORDERED ENROLLED,2023-10-18,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +presented to the Governor 07/12/2023 10:07 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +ROLL CALL: ROLL CALL # 657 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-11-07,[],MI,2023-2024 +assigned PA 49'23 with immediate effect,2023-07-18,[],MI,2023-2024 +assigned PA 28'24,2024-04-09,[],MI,2023-2024 +title amendment agreed to,2024-03-12,[],MI,2023-2024 +referred to conference committee 06/05/2024,2024-06-05,[],MI,2023-2024 +approved by the Governor 07/23/2024 09:42 AM,2024-07-30,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/15/2024 02:48 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +approved by the Governor 07/23/2024 10:00 AM,2024-07-30,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 07/08/2024 09:40 AM,2024-07-30,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0122'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 10/19/2023 12:00 PM,2023-10-24,[],MI,2023-2024 +filed with Secretary of State 10/19/2023 11:44 AM,2023-10-19,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 01:10 PM,2023-07-18,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 02/01/2023 12:24 PM,2023-02-02,['executive-receipt'],MI,2023-2024 +assigned PA 33'23 with immediate effect,2023-05-23,[],MI,2023-2024 +filed with Secretary of State 12/08/2023 10:22 AM,2023-12-31,[],MI,2023-2024 +Senate conferees named 06/04/2024: Sens. Rosemary Bayer Sarah Anthony Jon Bumstead,2024-06-04,[],MI,2023-2024 +ASSIGNED PA 0107'23,2023-08-22,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-05-09,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:06 PM,2024-07-30,[],MI,2023-2024 +ORDERED ENROLLED,2023-10-03,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-5) CONCURRED IN,2023-04-19,[],MI,2023-2024 +bill ordered enrolled,2023-05-11,[],MI,2023-2024 +filed with Secretary of State 07/12/2023 10:32 AM,2023-07-18,[],MI,2023-2024 +presented to the Governor 10/26/2023 02:06 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 07/27/2023 10:02 AM,2023-08-22,[],MI,2023-2024 +House conferees named 06/04/2024: Reps. Regina Weiss Jason Morgan Nancy DeBoer,2024-06-04,[],MI,2023-2024 +approved by the Governor 12/06/2023 10:42 AM,2023-12-31,['executive-signature'],MI,2023-2024 +roll call Roll Call # 115 Yeas 98 Nays 9 Excused 0 Not Voting 3,2024-05-21,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/11/2024 01:46 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +assigned PA 286'23,2023-12-31,[],MI,2023-2024 +PRESENTED TO GOVERNOR 09/21/2023 11:14 AM,2023-09-26,['executive-receipt'],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-06,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +approved by the Governor 07/23/2024 09:36 AM,2024-07-30,['executive-signature'],MI,2023-2024 +assigned PA 312'23,2023-12-31,[],MI,2023-2024 +presented to the Governor 05/28/2024 11:04 AM,2024-05-23,['executive-receipt'],MI,2023-2024 +approved by the Governor 10/03/2023 03:04 PM,2023-10-03,['executive-signature'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-10-11,[],MI,2023-2024 +assigned PA 53'24,2024-06-06,[],MI,2023-2024 +title amendment agreed to,2023-10-12,[],MI,2023-2024 +ORDERED ENROLLED,2023-10-05,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2023-05-23,[],MI,2023-2024 +filed with Secretary of State 12/01/2023 11:24 AM,2023-12-31,[],MI,2023-2024 +presented to the Governor 11/27/2023 03:28 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0048'24,2024-05-23,[],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2023-06-28,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:38 AM,2023-07-18,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +Senate conferees named 06/08/2023: Sens. Kevin Hertel Veronica Klinefelt Jon Bumstead,2023-06-08,[],MI,2023-2024 +House conferees named 06/05/2024: Reps. Christine Morse Jasper Martus Phil Green,2024-06-05,[],MI,2023-2024 +roll call Roll Call # 248 Yeas 81 Nays 27 Excused 0 Not Voting 2,2023-06-27,[],MI,2023-2024 +filed with Secretary of State 04/05/2023 02:04 PM,2023-03-23,[],MI,2023-2024 +substitute (H-1) adopted,2023-11-02,[],MI,2023-2024 +bill ordered enrolled,2024-06-27,[],MI,2023-2024 +House conferees named 06/05/2024: Reps. Jason Morgan Jimmie Wilson Cameron Cavitt,2024-06-05,[],MI,2023-2024 +presented to the Governor 05/28/2024 11:08 AM,2024-05-23,['executive-receipt'],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. John Cherry Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +bill ordered enrolled,2024-02-14,[],MI,2023-2024 +filed with Secretary of State 12/13/2023 10:00 AM,2023-12-31,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:00 AM,2023-07-18,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +Senate substitute (S-6) concurred in,2023-03-21,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-3) CONCURRED IN AS SUBSTITUTED (S-2),2024-09-17,[],MI,2023-2024 +full title agreed to,2024-05-21,[],MI,2023-2024 +APPROVED BY GOVERNOR 05/08/2023 11:30 AM,2023-05-09,['executive-signature'],MI,2023-2024 +laid over one day under the rules,2023-11-09,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2024-05-09,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 225 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +ASSIGNED PA 0063'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:34 PM,2024-07-30,[],MI,2023-2024 +ASSIGNED PA 0078'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +roll call Roll Call # 12 Yeas 53 Nays 56 Excused 0 Not Voting 1,2023-02-01,[],MI,2023-2024 +laid over one day under the rules,2023-03-01,[],MI,2023-2024 +APPROVED BY GOVERNOR 06/15/2023 02:26 PM,2023-06-20,['executive-signature'],MI,2023-2024 +presented to the Governor 09/28/2023 05:16 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +assigned PA 115'23,2023-08-22,[],MI,2023-2024 +bill ordered enrolled,2024-06-26,[],MI,2023-2024 +filed with Secretary of State 07/23/2024 11:36 AM,2024-07-30,[],MI,2023-2024 +Senate conferees named 06/04/2024: Sens. Darrin Camilleri Sarah Anthony Jon Bumstead,2024-06-04,[],MI,2023-2024 +approved by the Governor 07/23/2024 09:46 AM,2024-07-30,['executive-signature'],MI,2023-2024 +House conferees named 02/01/2023: Reps. Samantha Steckloff Cynthia Neeley Greg VanWoerkom,2023-02-01,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/11/2024 01:58 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +approved by the Governor 11/07/2023 01:10 PM,2023-11-08,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/19/2023 10:32 AM,2023-07-20,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 06/15/2023 03:20 PM,2023-06-20,[],MI,2023-2024 +APPROVED BY GOVERNOR 10/03/2023 03:02 PM,2023-10-04,['executive-signature'],MI,2023-2024 +assigned PA 204'23,2023-12-31,[],MI,2023-2024 +ASSIGNED PA 0113'24,2024-07-30,[],MI,2023-2024 +filed with Secretary of State 07/23/2024 12:42 PM,2024-07-30,[],MI,2023-2024 +ENROLLMENT VACATED,2023-06-28,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 03/24/2023 01:00 PM,2023-04-11,[],MI,2023-2024 +full title agreed to,2024-05-21,[],MI,2023-2024 +presented to the Governor 02/20/2024 03:30 PM,2024-02-20,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:16 AM,2024-07-30,['executive-signature'],MI,2023-2024 +filed with Secretary of State 07/23/2024 11:42 AM,2024-07-30,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:40 AM,2023-07-18,[],MI,2023-2024 +rule suspended,2023-11-09,[],MI,2023-2024 +bill ordered enrolled,2024-05-21,[],MI,2023-2024 +Senate requests return,2023-03-21,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-07,[],MI,2023-2024 +postponed temporarily,2024-06-26,[],MI,2023-2024 +ASSIGNED PA 0032'23 WITH IMMEDIATE EFFECT,2023-05-18,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/17/2023 10:51 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 10/18/2023 02:39 PM,2023-10-19,['executive-receipt'],MI,2023-2024 +ROLL CALL: ROLL CALL # 341 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2024-09-17,[],MI,2023-2024 +ASSIGNED PA 0112'24,2024-07-30,[],MI,2023-2024 +rule suspended,2023-11-09,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/05/2024: SENS. DARRIN CAMILLERI, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-05,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-28,[],MI,2023-2024 +filed with Secretary of State 12/06/2023 01:14 PM,2023-12-31,[],MI,2023-2024 +filed with Secretary of State 12/06/2023 01:16 PM,2023-12-31,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/28/2023 01:24 PM,2023-12-29,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 10/19/2023 11:52 AM,2023-10-24,[],MI,2023-2024 +filed with Secretary of State 10/10/2023 11:42 AM,2023-10-10,[],MI,2023-2024 +assigned PA 31'24,2024-04-09,[],MI,2023-2024 +VOTE RECONSIDERED,2024-06-26,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2024-06-12,[],MI,2023-2024 +presented to the Governor 12/06/2023 02:32 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +roll call Roll Call # 37 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-03-21,[],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect and title amendment,2023-03-01,[],MI,2023-2024 +filed with Secretary of State 07/23/2024 12:00 PM,2024-07-30,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-06-12,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:10 AM,2024-07-30,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/08/2024 01:16 PM,2024-07-30,[],MI,2023-2024 +filed with Secretary of State 12/01/2023 11:06 AM,2023-12-31,[],MI,2023-2024 +presented to the Governor 11/21/2023 10:02 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0054'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +assigned PA 280'23,2023-12-31,[],MI,2023-2024 +assigned PA 287'23,2023-12-31,[],MI,2023-2024 +passed Roll Call # 479 Yeas 84 Nays 24 Excused 0 Not Voting 2,2023-11-02,['passage'],MI,2023-2024 +ASSIGNED PA 0093'23 WITH IMMEDIATE EFFECT,2023-07-20,[],MI,2023-2024 +bill ordered enrolled,2024-04-10,[],MI,2023-2024 +ASSIGNED PA 0099'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +House conferees named 06/05/2024: Reps. Felicia Brabec Rachel Hood Ann M. Bollin,2024-06-05,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:28 AM,2024-07-30,['executive-signature'],MI,2023-2024 +full title agreed to,2023-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:50 AM,2023-07-18,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +PRESENTED TO GOVERNOR 10/10/2023 09:16 AM,2023-10-11,['executive-receipt'],MI,2023-2024 +approved by the Governor 06/06/2024 11:56 AM,2024-06-06,['executive-signature'],MI,2023-2024 +Senate conferees named 06/04/2024: Sens. Sean McCann Sarah Anthony Jon Bumstead,2024-06-04,[],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2024-06-11,[],MI,2023-2024 +presented to the Governor 07/11/2024 01:22 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +ROLL CALL: ROLL CALL # 118 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-04-19,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 05/08/2023 01:20 PM,2023-05-09,[],MI,2023-2024 +assigned PA 13'23,2023-03-23,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/20/2023 04:45 PM,2023-12-29,[],MI,2023-2024 +ASSIGNED PA 0166'23 WITH IMMEDIATE EFFECT,2023-10-24,[],MI,2023-2024 +full title agreed to,2023-06-27,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/08/2023: SENS. KEVIN HERTEL, VERONICA KLINEFELT, JON C. BUMSTEAD",2023-06-08,[],MI,2023-2024 +Senate conferees named 06/08/2023: Sens. Mary Cavanagh Sylvia Santana Jon Bumstead,2023-06-08,[],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2024-06-11,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/15/2024 02:40 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +presented to the Governor 05/25/2023 10:21 AM,2023-05-25,['executive-receipt'],MI,2023-2024 +ORDERED ENROLLED,2024-06-18,[],MI,2023-2024 +ASSIGNED PA 0073'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +approved by the Governor 11/29/2023 05:16 PM,2023-12-31,['executive-signature'],MI,2023-2024 +filed with Secretary of State 10/03/2023 03:42 PM,2023-10-03,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 307 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2023-05-23,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 312 YEAS 1 NAYS 37 EXCUSED 0 NOT VOTING 0,2023-05-23,[],MI,2023-2024 +PRESENTED TO GOVERNOR 10/10/2023 09:26 AM,2023-10-11,['executive-receipt'],MI,2023-2024 +assigned PA 158'23,2023-10-19,[],MI,2023-2024 +presented to the Governor 04/25/2024 02:04 PM,2024-04-30,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2023-10-12,[],MI,2023-2024 +RULES SUSPENDED,2023-10-11,[],MI,2023-2024 +approved by the Governor 06/06/2024 12:06 PM,2024-06-06,['executive-signature'],MI,2023-2024 +assigned PA 262'23,2023-12-31,[],MI,2023-2024 +APPROVED BY GOVERNOR 02/14/2023 10:00 AM,2023-02-15,['executive-signature'],MI,2023-2024 +assigned PA 70'23 with immediate effect,2023-07-18,[],MI,2023-2024 +assigned PA 149'23 with immediate effect,2023-10-10,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 04/05/2023 02:02 PM,2023-04-11,[],MI,2023-2024 +approved by the Governor 09/18/2023 04:56 PM,2023-09-19,['executive-signature'],MI,2023-2024 +retransmitted,2023-06-28,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/18/2023 11:50 AM,2023-07-20,['executive-signature'],MI,2023-2024 +returned as requested,2024-01-17,[],MI,2023-2024 +presented to the Governor 05/11/2023 11:02 AM,2023-05-11,['executive-receipt'],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +assigned PA 117'23,2023-08-22,[],MI,2023-2024 +Senate conferees named 06/20/2024: Sens. Sarah Anthony Sean McCann Jon Bumstead,2024-06-20,[],MI,2023-2024 +rule suspended,2023-11-09,[],MI,2023-2024 +assigned PA 5'24 with immediate effect,2024-02-21,[],MI,2023-2024 +Senate conferees named 06/08/2023: Sens. John Cherry Sue Shink Jon Bumstead,2023-06-08,[],MI,2023-2024 +assigned PA 260'23,2023-12-31,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/08/2024 01:08 PM,2024-07-30,[],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. Sean McCann Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +APPROVED BY GOVERNOR 12/07/2023 10:16 AM,2023-12-29,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-05-11,[],MI,2023-2024 +ASSIGNED PA 0282'23,2023-12-29,[],MI,2023-2024 +assigned PA 114'23,2023-08-22,[],MI,2023-2024 +APPROVED BY GOVERNOR 03/24/2023 09:32 AM,2023-04-11,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:16 AM,2023-07-18,[],MI,2023-2024 +assigned PA 77'23 with immediate effect,2023-07-18,[],MI,2023-2024 +VOTE RECONSIDERED,2024-06-11,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 113 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-03-23,[],MI,2023-2024 +filed with Secretary of State 09/19/2023 10:04 AM,2023-09-19,[],MI,2023-2024 +rule suspended,2023-11-09,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/22/2023 01:42 PM,2023-12-29,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/27/2023 09:52 AM,2023-08-22,[],MI,2023-2024 +ASSIGNED PA 0092'23 WITH IMMEDIATE EFFECT,2023-07-20,[],MI,2023-2024 +Senate conferees named 10/26/2023: Sens. Sarah Anthony Sean McCann Jon Bumstead,2023-10-31,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 308 YEAS 1 NAYS 37 EXCUSED 0 NOT VOTING 0,2023-05-23,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-05-18,[],MI,2023-2024 +Senate substitute (S-2) concurred in,2023-11-09,[],MI,2023-2024 +PRESENTED TO GOVERNOR 10/10/2023 09:20 AM,2023-10-11,['executive-receipt'],MI,2023-2024 +assigned PA 159'23,2023-10-19,[],MI,2023-2024 +filed with Secretary of State 02/27/2024 11:22 AM,2024-02-27,[],MI,2023-2024 +bill ordered enrolled,2023-10-12,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/18/2023 11:54 AM,2023-07-20,['executive-signature'],MI,2023-2024 +approved by the Governor 02/27/2024 10:38 AM,2024-02-27,['executive-signature'],MI,2023-2024 +full title agreed to,2023-06-27,[],MI,2023-2024 +assigned PA 51'23 with immediate effect,2023-07-18,[],MI,2023-2024 +approved by the Governor 05/17/2024 01:42 PM,2024-05-21,['executive-signature'],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. MARY CAVANAGH, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 658 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-11-07,[],MI,2023-2024 +"SENATE NAMED CONFEREES 06/27/2023: SENS. SARAH ANTHONY, SEAN MCCANN, JON C. BUMSTEAD",2023-06-27,[],MI,2023-2024 +approved by the Governor 05/22/2023 01:52 PM,2023-05-23,['executive-signature'],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-11-08,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-05,[],MI,2023-2024 +Senate conferees named 06/04/2024: Sens. Sean McCann Sarah Anthony Jon Bumstead,2024-06-04,[],MI,2023-2024 +roll call Roll Call # 493 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-08,[],MI,2023-2024 +assigned PA 10'24,2024-02-27,[],MI,2023-2024 +title amendment agreed to,2023-11-08,[],MI,2023-2024 +full title agreed to,2024-04-23,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +"SENATE NAMED CONFEREES 01/25/2023: SENS. SARAH ANTHONY, SEAN MCCANN, JON BUMSTEAD",2023-01-26,[],MI,2023-2024 +filed with Secretary of State 12/13/2023 10:02 AM,2023-12-31,[],MI,2023-2024 +ASSIGNED PA 0301'23,2023-12-29,[],MI,2023-2024 +assigned PA 27'24,2024-04-09,[],MI,2023-2024 +roll call Roll Call # 579 Yeas 88 Nays 19 Excused 0 Not Voting 3,2023-11-09,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-05-18,[],MI,2023-2024 +bill ordered enrolled,2024-05-09,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 534 YEAS 29 NAYS 9 EXCUSED 0 NOT VOTING 0,2023-10-18,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/29/2023 05:10 PM,2023-12-29,['executive-signature'],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-11-07,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-05-04,[],MI,2023-2024 +substitute (H-2) adopted,2023-11-08,[],MI,2023-2024 +assigned PA 190'23 with immediate effect,2023-11-08,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-05,[],MI,2023-2024 +House conferees named 06/06/2023: Reps. Amos O'Neal Donavan McKinney Bradley Slagh,2023-06-06,[],MI,2023-2024 +approved by the Governor 12/01/2023 02:32 PM,2023-12-31,['executive-signature'],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-05-18,[],MI,2023-2024 +ASSIGNED PA 0116'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:08 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 10/19/2023 11:50 AM,2023-10-24,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/27/2023 09:54 AM,2023-08-22,[],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. Sean McCann Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +assigned PA 20'23 with immediate effect,2023-04-26,[],MI,2023-2024 +assigned PA 19'23,2023-04-13,[],MI,2023-2024 +ORDERED ENROLLED,2023-04-27,[],MI,2023-2024 +assigned PA 120'23 with immediate effect,2023-09-13,[],MI,2023-2024 +roll call Roll Call # 584 Yeas 61 Nays 45 Excused 0 Not Voting 4,2023-11-09,[],MI,2023-2024 +filed with Secretary of State 07/27/2023 10:08 AM,2023-08-22,[],MI,2023-2024 +assigned PA 21'23 with immediate effect,2023-04-26,[],MI,2023-2024 +assigned PA 306'23,2023-12-31,[],MI,2023-2024 +ASSIGNED PA 0029'23 WITH IMMEDIATE EFFECT,2023-05-09,[],MI,2023-2024 +assigned PA 212'23 with immediate effect,2023-12-31,[],MI,2023-2024 +Senate conferees named 06/08/2023: Sens. John Cherry Rosemary Bayer Jon Bumstead,2023-06-08,[],MI,2023-2024 +returned from Senate with substitute (S-1) with title amendment,2024-05-15,[],MI,2023-2024 +presented to the Governor 05/15/2024 10:40 AM,2024-05-15,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 05/22/2023 04:50 PM,2023-05-23,[],MI,2023-2024 +RETURN GRANTED,2023-03-23,[],MI,2023-2024 +APPROVED BY GOVERNOR 10/19/2023 10:29 AM,2023-10-24,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0069'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +approved by the Governor 02/27/2024 10:36 AM,2024-02-27,['executive-signature'],MI,2023-2024 +filed with Secretary of State 07/19/2023 10:56 AM,2023-07-19,[],MI,2023-2024 +PRESENTED TO GOVERNOR 06/12/2023 12:01 PM,2023-06-13,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2023-06-22,[],MI,2023-2024 +Senate conferees named 06/08/2023: Sens. John Cherry Sue Shink Jon Bumstead,2023-06-08,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-19,[],MI,2023-2024 +FULL TITLE AGREED TO,2024-06-26,[],MI,2023-2024 +assigned PA 29'24,2024-04-09,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-27,[],MI,2023-2024 +bill ordered enrolled,2024-04-24,[],MI,2023-2024 +PRESENTED TO GOVERNOR 04/10/2023 01:05 PM,2023-04-11,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2024-03-12,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:08 AM,2024-07-30,['executive-signature'],MI,2023-2024 +assigned PA 144'23,2023-10-03,[],MI,2023-2024 +approved by the Governor 04/05/2023 11:26 AM,2023-03-23,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 10/19/2023 11:32 AM,2023-10-24,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 310 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2023-05-23,[],MI,2023-2024 +ASSIGNED PA 0230'23,2023-12-29,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-04-27,[],MI,2023-2024 +filed with Secretary of State 07/08/2024 01:04 PM,2024-06-27,[],MI,2023-2024 +retransmitted,2023-09-06,[],MI,2023-2024 +Senate conferees named 06/08/2023: Sens. Sue Shink Sylvia Santana Jon Bumstead,2023-06-08,[],MI,2023-2024 +filed with Secretary of State 07/23/2024 12:46 PM,2024-07-30,[],MI,2023-2024 +presented to the Governor 11/17/2023 09:30 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +vote reconsidered,2023-11-09,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2024-06-04,[],MI,2023-2024 +filed with Secretary of State 10/19/2023 11:48 AM,2023-10-24,[],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +ASSIGNED PA 0115'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +filed with Secretary of State 06/07/2023 02:04 PM,2023-06-07,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:14 AM,2024-07-30,['executive-signature'],MI,2023-2024 +title amended,2023-09-06,[],MI,2023-2024 +Senate conferees named 06/08/2023: Sens. Sylvia Santana Kristen McDonald Rivet Jon Bumstead,2023-06-08,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-28,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2023-05-23,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/22/2023 09:06 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0091'23 WITH IMMEDIATE EFFECT,2023-07-20,[],MI,2023-2024 +filed with Secretary of State 07/23/2024 11:44 AM,2024-07-30,[],MI,2023-2024 +rule suspended,2024-06-27,[],MI,2023-2024 +assigned PA 184'23,2023-11-08,[],MI,2023-2024 +presented to the Governor 11/27/2023 03:14 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +presented to the Governor 05/11/2023 11:06 AM,2023-05-11,['executive-receipt'],MI,2023-2024 +roll call Roll Call # 267 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-06-28,[],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +full title agreed to,2023-04-26,[],MI,2023-2024 +SENATE CO-SPONSOR(S) REMOVED: SUE SHINK ROSEMARY BAYER MALLORY MCMORROW,2023-03-23,[],MI,2023-2024 +approved by the Governor 12/07/2023 10:10 AM,2023-12-31,['executive-signature'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-06-28,[],MI,2023-2024 +bill ordered enrolled,2023-09-28,[],MI,2023-2024 +returned to Senate,2023-05-17,[],MI,2023-2024 +approved by the Governor 11/21/2023 01:18 PM,2023-12-31,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0006'23,2023-03-21,[],MI,2023-2024 +assigned PA 274'23 with immediate effect,2023-12-31,[],MI,2023-2024 +filed with Secretary of State 07/19/2023 10:28 AM,2023-07-19,[],MI,2023-2024 +assigned PA 46'23 with immediate effect,2023-06-28,[],MI,2023-2024 +VOTE RECONSIDERED,2023-06-28,[],MI,2023-2024 +presented to the Governor 05/15/2024 10:38 AM,2024-05-15,['executive-receipt'],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-11-01,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2024-05-09,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 674 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-11-08,[],MI,2023-2024 +presented to the Governor 04/18/2023 11:38 AM,2023-04-19,['executive-receipt'],MI,2023-2024 +presented to the Governor 11/21/2023 09:30 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +approved by the Governor 07/18/2023 11:34 AM,2023-07-19,['executive-signature'],MI,2023-2024 +filed with Secretary of State 11/30/2023 10:18 AM,2023-12-31,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 114 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-03-23,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/19/2023 10:22 AM,2023-07-20,[],MI,2023-2024 +laid over one day under the rules,2023-11-08,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/27/2023 02:38 PM,2023-12-29,['executive-receipt'],MI,2023-2024 +assigned PA 88'24,2024-07-30,[],MI,2023-2024 +approved by the Governor 05/22/2024 11:00 AM,2024-05-22,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0152'23 WITH IMMEDIATE EFFECT,2023-10-24,[],MI,2023-2024 +assigned PA 118'23,2023-08-22,[],MI,2023-2024 +referred to conference committee 06/08/2023,2023-06-08,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 10/19/2023 12:06 PM,2023-10-24,[],MI,2023-2024 +referred to conference committee 06/08/2023,2023-06-08,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-03-23,[],MI,2023-2024 +approved by the Governor 11/30/2023 12:30 PM,2023-12-31,['executive-signature'],MI,2023-2024 +retransmitted,2023-09-06,[],MI,2023-2024 +full title agreed to,2023-06-28,[],MI,2023-2024 +laid over one day under the rules,2024-05-15,[],MI,2023-2024 +assigned PA 34'23,2023-05-23,[],MI,2023-2024 +returned from Senate with substitute (S-4) with full title,2023-11-08,[],MI,2023-2024 +ORDERED ENROLLED,2023-03-23,[],MI,2023-2024 +approved by the Governor 05/22/2023 01:54 PM,2023-05-23,['executive-signature'],MI,2023-2024 +returned as requested,2023-04-11,[],MI,2023-2024 +assigned PA 243'23,2023-12-31,[],MI,2023-2024 +approved by the Governor 02/21/2024 09:26 AM,2024-02-21,['executive-signature'],MI,2023-2024 +filed with Secretary of State 07/19/2023 10:30 AM,2023-07-19,[],MI,2023-2024 +approved by the Governor 05/22/2024 11:02 AM,2024-05-22,['executive-signature'],MI,2023-2024 +filed with Secretary of State 02/27/2024 11:24 AM,2024-02-27,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 12:52 PM,2023-07-18,['executive-signature'],MI,2023-2024 +assigned PA 99'23 with immediate effect,2023-07-19,[],MI,2023-2024 +APPROVED BY GOVERNOR 06/13/2023 10:02 AM,2023-06-14,['executive-signature'],MI,2023-2024 +approved by the Governor 11/22/2023 11:22 AM,2023-12-31,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:14 PM,2024-07-30,[],MI,2023-2024 +approved by the Governor 12/07/2023 10:04 AM,2023-12-31,['executive-signature'],MI,2023-2024 +filed with Secretary of State 12/08/2023 10:20 AM,2023-12-31,[],MI,2023-2024 +ASSIGNED PA 0082'23,2023-07-20,[],MI,2023-2024 +assigned PA 40'23 with immediate effect,2023-06-07,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +VOTE RECONSIDERED,2023-11-08,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-08,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/29/2023 05:06 PM,2023-12-29,['executive-signature'],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-05-18,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-10-19,[],MI,2023-2024 +presented to the Governor 10/03/2023 09:14 AM,2023-10-03,['executive-receipt'],MI,2023-2024 +referred to conference committee 06/08/2023,2023-06-08,[],MI,2023-2024 +presented to the Governor 06/26/2023 11:18 AM,2023-06-27,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0111'23 WITH IMMEDIATE EFFECT,2023-08-22,[],MI,2023-2024 +assigned PA 160'23,2023-10-24,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-06-27,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 220 YEAS 1 NAYS 37 EXCUSED 0 NOT VOTING 0,2024-06-04,[],MI,2023-2024 +substitute (H-2) adopted,2023-11-09,[],MI,2023-2024 +roll call Roll Call # 118 Yeas 52 Nays 53 Excused 0 Not Voting 5,2024-05-22,[],MI,2023-2024 +presented to the Governor 04/26/2024 12:02 PM,2024-04-30,['executive-receipt'],MI,2023-2024 +roll call Roll Call # 78 Yeas 56 Nays 51 Excused 0 Not Voting 3,2024-05-09,[],MI,2023-2024 +referred to conference committee 06/08/2023,2023-06-08,[],MI,2023-2024 +approved by the Governor 11/20/2023 12:50 PM,2023-12-31,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 04/13/2023 09:52 AM,2023-04-19,['executive-signature'],MI,2023-2024 +assigned PA 119'24,2024-07-30,[],MI,2023-2024 +returned from Senate without amendment with immediate effect,2023-11-01,[],MI,2023-2024 +presented to the Governor 03/19/2024 11:38 AM,2024-03-19,['executive-receipt'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:08 PM,2024-07-30,[],MI,2023-2024 +filed with Secretary of State 04/05/2023 02:00 PM,2023-03-23,[],MI,2023-2024 +filed with Secretary of State 11/22/2023 01:18 PM,2023-12-31,[],MI,2023-2024 +"SENATE NAMED CONFEREES 05/23/2023: SENS. MARY CAVANAGH, SYLVIA SANTANA, JON BUMSTEAD",2023-05-23,[],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-06-28,['amendment-passage'],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +approved by the Governor 04/26/2023 10:08 AM,2023-04-26,['executive-signature'],MI,2023-2024 +assigned PA 85'23,2023-07-19,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 156 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-05-04,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-09-07,[],MI,2023-2024 +ASSIGNED PA 0161'23,2023-10-24,[],MI,2023-2024 +assigned PA 68'24,2024-06-27,[],MI,2023-2024 +ORDERED ENROLLED,2023-04-27,[],MI,2023-2024 +conference report adopted Roll Call # 269 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-27,[],MI,2023-2024 +PRESENTED TO GOVERNOR 05/02/2023 01:00 PM,2023-05-03,['executive-receipt'],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/22/2023 11:44 AM,2023-12-29,['executive-signature'],MI,2023-2024 +retransmitted,2023-04-26,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 311 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2023-05-23,[],MI,2023-2024 +assigned PA 84'24 with immediate effect,2024-07-30,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 02/14/2023 12:11 PM,2023-02-15,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-07,[],MI,2023-2024 +presented to the Governor 07/11/2024 01:26 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +assigned PA 96'24 with immediate effect,2024-07-30,[],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. Darrin Camilleri Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +ASSIGNED PA 0087'23,2023-07-20,[],MI,2023-2024 +amended,2024-06-27,[],MI,2023-2024 +ASSIGNED PA 0074'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +retransmitted,2023-03-21,[],MI,2023-2024 +ASSIGNED PA 0074'24,2024-07-30,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:10 PM,2024-07-30,[],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect and full title,2024-06-12,[],MI,2023-2024 +ORDERED ENROLLED,2023-04-19,[],MI,2023-2024 +APPROVED BY GOVERNOR 10/19/2023 09:42 AM,2023-10-24,['executive-signature'],MI,2023-2024 +approved by the Governor 06/07/2023 09:04 AM,2023-06-07,['executive-signature'],MI,2023-2024 +ROLL CALL: ROLL CALL # 322 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-26,[],MI,2023-2024 +filed with Secretary of State 11/07/2023 02:18 PM,2023-11-08,[],MI,2023-2024 +bill ordered enrolled,2024-05-21,[],MI,2023-2024 +referred to conference committee 06/05/2024,2024-06-05,[],MI,2023-2024 +ASSIGNED PA 0007'23,2023-04-11,[],MI,2023-2024 +ASSIGNED PA 0079'23,2023-07-18,[],MI,2023-2024 +returned to Senate,2023-11-02,[],MI,2023-2024 +assigned PA 117'24,2024-07-30,[],MI,2023-2024 +VOTE RECONSIDERED,2023-06-28,[],MI,2023-2024 +ASSIGNED PA 0045'23 WITH IMMEDIATE EFFECT,2023-06-20,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 10/03/2023 03:44 PM,2023-10-04,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:02 AM,2024-07-30,['executive-signature'],MI,2023-2024 +"SENATE NAMED CONFEREES 02/01/2023: SENS. SAM SINGH, SARAH ANTHONY, DAN LAUWERS",2023-02-02,[],MI,2023-2024 +ASSIGNED PA 0012'23,2023-04-11,[],MI,2023-2024 +filed with Secretary of State 06/06/2024 02:06 PM,2024-06-06,[],MI,2023-2024 +approved by the Governor 04/27/2024 11:20 AM,2024-04-30,['executive-signature'],MI,2023-2024 +presented to the Governor 10/17/2023 09:31 AM,2023-10-17,['executive-receipt'],MI,2023-2024 +VOTE RECONSIDERED,2023-10-11,[],MI,2023-2024 +APPROVED BY GOVERNOR 10/19/2023 10:27 AM,2023-10-24,['executive-signature'],MI,2023-2024 +"SENATE NAMED CONFEREES 05/23/2023: SENS. JEFF IRWIN, SAM SINGH, JON BUMSTEAD",2023-05-23,[],MI,2023-2024 +filed with Secretary of State 07/23/2024 11:46 AM,2024-07-30,[],MI,2023-2024 +filed with Secretary of State 11/30/2023 10:20 AM,2023-12-31,[],MI,2023-2024 +"SENATE NAMED CONFEREES 05/23/2023: SENS. VERONICA KLINEFELT, KEVIN HERTEL, JON BUMSTEAD",2023-05-23,[],MI,2023-2024 +Senate amendment(s) concurred in Roll Call # 586 Yeas 61 Nays 45 Excused 0 Not Voting 4,2023-11-09,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:30 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +assigned PA 145'23 with immediate effect,2023-10-03,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:30 AM,2024-07-30,['executive-signature'],MI,2023-2024 +referred to conference committee 06/08/2023,2023-06-08,[],MI,2023-2024 +referred to conference committee 06/08/2023,2023-06-08,[],MI,2023-2024 +bill ordered enrolled,2023-06-27,[],MI,2023-2024 +presented to the Governor 07/11/2024 01:36 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 06/06/2024 01:56 PM,2024-06-06,[],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2024-06-11,[],MI,2023-2024 +approved by the Governor 09/29/2023 11:36 AM,2023-10-03,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 06/26/2024 02:52 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +approved by the Governor 07/23/2024 09:48 AM,2024-07-30,['executive-signature'],MI,2023-2024 +assigned PA 253'23,2023-12-31,[],MI,2023-2024 +rule suspended,2023-03-01,[],MI,2023-2024 +title amendment agreed to,2023-03-21,[],MI,2023-2024 +approved by the Governor 12/13/2023 04:56 PM,2023-12-31,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:26 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0199'23,2023-12-29,[],MI,2023-2024 +presented to the Governor 05/28/2024 11:00 AM,2024-05-23,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0162'23,2023-10-24,[],MI,2023-2024 +assigned PA 271'23,2023-12-31,[],MI,2023-2024 +Senate amendment(s) concurred in Roll Call # 557 Yeas 68 Nays 38 Excused 0 Not Voting 4,2023-11-09,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:16 PM,2024-07-30,[],MI,2023-2024 +INSERTED FULL TITLE,2024-09-17,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +APPROVED BY GOVERNOR 10/19/2023 10:14 AM,2023-10-24,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 07/26/2023 12:08 PM,2023-08-22,['executive-signature'],MI,2023-2024 +assigned PA 87'24,2024-07-30,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2024-06-12,[],MI,2023-2024 +bill ordered enrolled,2023-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/29/2023 01:10 PM,2023-12-29,[],MI,2023-2024 +assigned PA 272'23,2023-12-31,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:28 PM,2024-07-30,[],MI,2023-2024 +assigned PA 148'23 with immediate effect,2023-10-10,[],MI,2023-2024 +ASSIGNED PA 0026'23 WITH IMMEDIATE EFFECT,2023-05-09,[],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. Mary Cavanagh Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +filed with Secretary of State 09/19/2023 10:06 AM,2023-09-19,[],MI,2023-2024 +AMENDMENT(S) ADOPTED,2024-06-11,['amendment-passage'],MI,2023-2024 +bill ordered enrolled,2023-06-27,[],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:48 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +assigned PA 7'24,2024-02-27,[],MI,2023-2024 +approved by the Governor 05/22/2023 02:46 PM,2023-05-23,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0062'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +ORDERED ENROLLED,2023-03-23,[],MI,2023-2024 +roll call Roll Call # 580 Yeas 56 Nays 51 Excused 0 Not Voting 3,2023-11-09,[],MI,2023-2024 +Senate substitute (S-4) concurred in,2023-11-09,[],MI,2023-2024 +roll call Roll Call # 506 Yeas 84 Nays 25 Excused 0 Not Voting 1,2023-11-08,[],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2023-10-26,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2023-05-23,[],MI,2023-2024 +filed with Secretary of State 02/27/2024 11:26 AM,2024-02-27,[],MI,2023-2024 +presented to the Governor 10/17/2023 09:37 AM,2023-10-17,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 05/17/2024 02:40 PM,2024-05-21,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-06,[],MI,2023-2024 +APPROVED BY GOVERNOR 10/19/2023 09:44 AM,2023-10-24,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:46 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 03/24/2023 01:02 PM,2023-04-11,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/19/2023 10:46 AM,2023-07-20,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2023-01-25,[],MI,2023-2024 +assigned PA 288'23,2023-12-31,[],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +rule suspended,2024-01-17,[],MI,2023-2024 +passed Roll Call # 491 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-08,['passage'],MI,2023-2024 +ROLL CALL: ROLL CALL # 656 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-11-07,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2023-05-23,[],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. John Cherry Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2023-05-23,[],MI,2023-2024 +approved by the Governor 09/18/2023 04:54 PM,2023-09-19,['executive-signature'],MI,2023-2024 +referred to conference committee 06/05/2024,2024-06-05,[],MI,2023-2024 +filed with Secretary of State 05/22/2023 04:52 PM,2023-05-23,[],MI,2023-2024 +ASSIGNED PA 0070'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +presented to the Governor 05/25/2023 10:19 AM,2023-05-30,['executive-receipt'],MI,2023-2024 +referred to conference committee 06/08/2023,2023-06-08,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:48 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-11-09,[],MI,2023-2024 +presented to the Governor 05/15/2024 10:36 AM,2024-05-15,['executive-receipt'],MI,2023-2024 +RETURN GRANTED,2023-06-28,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-10-18,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/08/2023 10:24 AM,2023-12-29,[],MI,2023-2024 +bill ordered enrolled,2024-04-23,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +House conferees named 06/25/2024: Reps. Angela Witwer Amos O'Neal Sarah Lightner,2024-06-25,[],MI,2023-2024 +"SENATE NAMED CONFEREES 05/23/2023: SENS. ROSEMARY BAYER, VERONICA KLINEFELT, JON BUMSTEAD",2023-05-23,[],MI,2023-2024 +ASSIGNED PA 0110'23 WITH IMMEDIATE EFFECT,2023-08-22,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/19/2023 10:50 AM,2023-07-20,[],MI,2023-2024 +filed with Secretary of State 12/01/2023 02:58 PM,2023-12-31,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-07,[],MI,2023-2024 +Senate conferees named 06/08/2023: Sens. Sue Shink Sylvia Santana Jon Bumstead,2023-06-08,[],MI,2023-2024 +ASSIGNED PA 0220'23,2023-12-29,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/30/2023 10:14 AM,2023-12-29,[],MI,2023-2024 +Senate conferees named 06/27/2023: Sens. Sarah Anthony Sean McCann Jon Bumstead,2023-06-27,[],MI,2023-2024 +Senate conferees named 01/25/2023: Sens. Sarah Anthony Sean McCann Jon Bumstead,2023-01-25,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 313 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2023-05-23,[],MI,2023-2024 +APPROVED BY GOVERNOR 12/13/2023 05:06 PM,2023-12-29,['executive-signature'],MI,2023-2024 +presented to the Governor 04/25/2024 02:02 PM,2024-04-30,['executive-receipt'],MI,2023-2024 +assigned PA 123'23 with immediate effect,2023-09-19,[],MI,2023-2024 +ASSIGNED PA 0241'23,2023-12-29,[],MI,2023-2024 +vote on passage reconsidered,2024-01-17,[],MI,2023-2024 +presented to the Governor 11/21/2023 09:48 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0094'23 WITH IMMEDIATE EFFECT,2023-07-20,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +Senate conferees named 06/04/2024: Sens. Mary Cavanagh Sarah Anthony Jon Bumstead,2024-06-04,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 10/19/2023 11:30 AM,2023-10-24,[],MI,2023-2024 +approved by the Governor 10/19/2023 10:02 AM,2023-10-19,['executive-signature'],MI,2023-2024 +assigned PA 40'24 with immediate effect,2024-05-21,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2023-05-23,[],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2024-06-25,[],MI,2023-2024 +assigned PA 9'24,2024-02-27,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 314 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2023-05-23,[],MI,2023-2024 +presented to the Governor 07/10/2023 11:22 AM,2023-06-28,['executive-receipt'],MI,2023-2024 +"SENATE NAMED CONFEREES 06/08/2023: SENS. SUE SHINK, SYLVIA A. SANTANA, JON C. BUMSTEAD",2023-06-08,[],MI,2023-2024 +House conferees named 06/05/2024: Reps. Julie Brixie Jasper Martus Ken Borton,2024-06-05,[],MI,2023-2024 +roll call Roll Call # 577 Yeas 89 Nays 18 Excused 0 Not Voting 3,2023-11-09,[],MI,2023-2024 +ASSIGNED PA 0096'23 WITH IMMEDIATE EFFECT,2023-07-20,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +title amendment agreed to,2023-11-09,[],MI,2023-2024 +House conferees named 11/01/2023: Reps. Regina Weiss Samantha Steckloff Sarah Lightner,2023-11-01,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-07,[],MI,2023-2024 +PRESENTED TO GOVERNOR 04/10/2023 01:01 PM,2023-04-11,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 12/13/2023 05:08 PM,2023-12-29,['executive-signature'],MI,2023-2024 +PASSED ROLL CALL # 238 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2024-06-11,['passage'],MI,2023-2024 +approved by the Governor 06/07/2023 09:35 AM,2023-06-07,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0008'23,2023-04-11,[],MI,2023-2024 +assigned PA 270'23,2023-12-31,[],MI,2023-2024 +roll call Roll Call # 583 Yeas 60 Nays 46 Excused 0 Not Voting 4,2023-11-09,[],MI,2023-2024 +referred to conference committee 06/27/2023,2023-06-27,[],MI,2023-2024 +filed with Secretary of State 05/22/2023 04:56 PM,2023-05-23,[],MI,2023-2024 +assigned PA 35'23,2023-05-23,[],MI,2023-2024 +assigned PA 122'23 with immediate effect,2023-09-19,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/30/2023 12:52 PM,2023-12-29,['executive-signature'],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-06-28,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 306 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2023-05-23,[],MI,2023-2024 +House conferees named 06/05/2024: Reps. Phil Skaggs Julie Brixie Bill Schuette,2024-06-05,[],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-07,[],MI,2023-2024 +title amended,2023-11-08,[],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2023-10-18,[],MI,2023-2024 +approved by the Governor 05/22/2024 11:08 AM,2024-05-22,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +ASSIGNED PA 0281'23,2023-12-29,[],MI,2023-2024 +filed with Secretary of State 04/26/2023 01:09 PM,2023-04-26,[],MI,2023-2024 +ORDERED ENROLLED,2023-10-19,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2023-05-23,[],MI,2023-2024 +PASSED ROLL CALL # 427 YEAS 31 NAYS 6 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +assigned PA 86'23,2023-07-19,[],MI,2023-2024 +APPROVED BY GOVERNOR 05/08/2023 11:32 AM,2023-05-09,['executive-signature'],MI,2023-2024 +filed with Secretary of State 11/20/2023 04:47 PM,2023-12-31,[],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2023-05-04,[],MI,2023-2024 +approved by the Governor 06/29/2023 10:00 AM,2023-07-18,['executive-signature'],MI,2023-2024 +given immediate effect,2024-06-27,[],MI,2023-2024 +SUBSTITUTE (S-2) ADOPTED,2023-09-07,[],MI,2023-2024 +ASSIGNED PA 0100'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +filed with Secretary of State 05/22/2024 01:48 PM,2024-05-22,[],MI,2023-2024 +filed with Secretary of State 05/22/2024 01:46 PM,2024-05-22,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 04/13/2023 11:42 AM,2023-04-19,[],MI,2023-2024 +PRESENTED TO GOVERNOR 04/28/2023 10:20 AM,2023-05-02,['executive-receipt'],MI,2023-2024 +"SENATE NAMED CONFEREES 06/04/2024: SENS. JOHN CHERRY, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-04,[],MI,2023-2024 +bill ordered enrolled,2023-06-28,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-11-08,[],MI,2023-2024 +filed with Secretary of State 11/22/2023 01:28 PM,2023-12-31,[],MI,2023-2024 +House conferees named 06/04/2024: Reps. Rachel Hood Donavan McKinney Timothy Beson,2024-06-04,[],MI,2023-2024 +filed with Secretary of State 05/22/2023 04:54 PM,2023-05-23,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:40 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +approved by the Governor 10/10/2023 10:00 AM,2023-10-10,['executive-signature'],MI,2023-2024 +RETURNED FROM HOUSE WITH AMENDMENT(S) TO SENATE SUBSTITUTE (S-1),2023-04-27,[],MI,2023-2024 +assigned PA 279'23,2023-12-31,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +ORDERED ENROLLED,2023-03-23,[],MI,2023-2024 +passed Roll Call # 551 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-09,['passage'],MI,2023-2024 +bill ordered enrolled,2023-11-01,[],MI,2023-2024 +ASSIGNED PA 0169'23 WITH IMMEDIATE EFFECT,2023-10-24,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/22/2023 01:50 PM,2023-12-29,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2023-05-23,[],MI,2023-2024 +ASSIGNED PA 0103'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 06/13/2023 11:07 AM,2023-06-14,[],MI,2023-2024 +filed with Secretary of State 12/01/2023 11:16 AM,2023-12-31,[],MI,2023-2024 +"SENATE NAMED CONFEREES 05/23/2023: SENS. KEVIN HERTEL, VERONICA KLINEFELT, JON BUMSTEAD",2023-05-23,[],MI,2023-2024 +rule suspended,2023-11-08,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-08,[],MI,2023-2024 +RETURNED FROM HOUSE WITH SUBSTITUTE (H-4) TO SENATE SUBSTITUTE (S-1),2023-09-07,[],MI,2023-2024 +filed with Secretary of State 12/08/2023 10:14 AM,2023-12-31,[],MI,2023-2024 +assigned PA 11'23,2023-03-23,[],MI,2023-2024 +filed with Secretary of State 02/21/2024 10:54 AM,2024-02-21,[],MI,2023-2024 +SEN. SARAH ANTHONY REPLACED SEN. JOHN CHERRY AS CONFEREE 10/31/2023,2023-10-31,[],MI,2023-2024 +presented to the Governor 11/21/2023 10:10 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +Senate substitute (S-1) nonconcurred in,2024-05-22,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:24 AM,2023-07-18,[],MI,2023-2024 +bill ordered enrolled,2024-05-09,[],MI,2023-2024 +approved by the Governor 03/28/2024 09:52 AM,2024-04-09,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 04/10/2023 01:07 PM,2023-04-11,['executive-receipt'],MI,2023-2024 +assigned PA 208'23,2023-12-31,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/30/2023 10:10 AM,2023-12-29,[],MI,2023-2024 +approved by the Governor 04/30/2024 10:46 AM,2024-04-30,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 10/19/2023 11:54 AM,2023-10-24,[],MI,2023-2024 +approved by the Governor 07/23/2024 10:44 AM,2024-07-30,['executive-signature'],MI,2023-2024 +assigned PA 89'24,2024-07-30,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 10/19/2023 12:04 PM,2023-10-24,[],MI,2023-2024 +ASSIGNED PA 0146'23 WITH IMMEDIATE EFFECT,2023-10-04,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:30 PM,2024-07-30,[],MI,2023-2024 +presented to the Governor 07/10/2023 11:20 AM,2023-06-28,['executive-receipt'],MI,2023-2024 +referred to conference committee 06/05/2024,2024-06-05,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 10/19/2023 11:28 AM,2023-10-24,[],MI,2023-2024 +filed with Secretary of State 09/29/2023 01:34 PM,2023-10-03,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-06-28,[],MI,2023-2024 +PRESENTED TO GOVERNOR 05/09/2023 10:57 AM,2023-05-09,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:42 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2023-05-23,[],MI,2023-2024 +approved by the Governor 10/24/2023 10:00 AM,2023-10-24,['executive-signature'],MI,2023-2024 +RETURNED FROM HOUSE WITH SUBSTITUTE (H-1),2023-11-02,[],MI,2023-2024 +ASSIGNED PA 0104'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +filed with Secretary of State 06/07/2023 02:02 PM,2023-06-07,[],MI,2023-2024 +assigned PA 56'24,2024-06-06,[],MI,2023-2024 +ASSIGNED PA 0101'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +Senate conferees named 02/01/2023: Sens. Sam Singh Sarah Anthony Dan Lauwers,2023-02-01,[],MI,2023-2024 +assigned PA 244'23,2023-12-31,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/18/2023 11:56 AM,2023-07-20,['executive-signature'],MI,2023-2024 +approved by the Governor 06/06/2024 12:02 PM,2024-06-06,['executive-signature'],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-10-11,['amendment-passage'],MI,2023-2024 +ASSIGNED PA 0231'23,2023-12-29,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-03-01,[],MI,2023-2024 +bill ordered enrolled,2023-03-21,[],MI,2023-2024 +laid over one day under the rules,2024-06-12,[],MI,2023-2024 +assigned PA 8'24,2024-02-27,[],MI,2023-2024 +filed with Secretary of State 12/14/2023 10:04 AM,2023-12-31,[],MI,2023-2024 +laid over one day under the rules,2024-06-12,[],MI,2023-2024 +presented to the Governor 05/28/2024 11:06 AM,2024-05-23,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 07/23/2024 11:48 AM,2024-07-30,[],MI,2023-2024 +PLACED ON ORDER OF THIRD READING,2023-03-21,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/08/2024 09:44 AM,2024-07-30,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0003'23 WITH IMMEDIATE EFFECT,2023-02-15,[],MI,2023-2024 +approved by the Governor 07/23/2024 09:56 AM,2024-07-30,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/27/2023 09:56 AM,2023-08-22,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:02 PM,2024-07-30,[],MI,2023-2024 +assigned PA 186'23 with immediate effect,2023-11-08,[],MI,2023-2024 +assigned PA 51'24 with immediate effect,2024-06-06,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/17/2023 09:51 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 04/29/2024 11:56 AM,2024-04-30,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2023-05-23,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/15/2024 02:50 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +passed; given immediate effect Roll Call # 293 Yeas 110 Nays 0 Excused 0 Not Voting 0,2024-06-27,['passage'],MI,2023-2024 +APPROVED BY GOVERNOR 07/18/2023 11:42 AM,2023-07-20,['executive-signature'],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +ASSIGNED PA 0110'24,2024-07-30,[],MI,2023-2024 +re-returned from Senate with substitute (S-2) to House substitute (H-3) with title amendment,2024-09-18,[],MI,2023-2024 +presented to the Governor 07/10/2023 11:12 AM,2023-06-28,['executive-receipt'],MI,2023-2024 +ORDERED ENROLLED,2024-06-26,[],MI,2023-2024 +ASSIGNED PA 0150'23 WITH IMMEDIATE EFFECT,2023-10-24,[],MI,2023-2024 +Senate conferees named 05/23/2023: Sens. Jeff Irwin Sam Singh Jon Bumstead,2023-05-23,[],MI,2023-2024 +referred to conference committee 02/01/2023,2023-02-01,[],MI,2023-2024 +assigned PA 39'23 with immediate effect,2023-06-07,[],MI,2023-2024 +assigned PA 37'24,2024-04-30,[],MI,2023-2024 +PASSED ROLL CALL # 512 YEAS 28 NAYS 10 EXCUSED 0 NOT VOTING 0,2023-10-11,['passage'],MI,2023-2024 +ASSIGNED PA 0112'23 WITH IMMEDIATE EFFECT,2023-08-22,[],MI,2023-2024 +ASSIGNED PA 0168'23 WITH IMMEDIATE EFFECT,2023-10-24,[],MI,2023-2024 +approved by the Governor 07/18/2023 12:02 PM,2023-07-19,['executive-signature'],MI,2023-2024 +Senate conferees named 05/23/2023: Sens. Veronica Klinefelt Kevin Hertel Jon Bumstead,2023-05-23,[],MI,2023-2024 +ASSIGNED PA 0111'24,2024-07-30,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 433 YEAS 22 NAYS 15 EXCUSED 1 NOT VOTING 0,2023-06-28,[],MI,2023-2024 +assigned PA 309'23 with immediate effect,2023-12-31,[],MI,2023-2024 +filed with Secretary of State 07/23/2024 12:44 PM,2024-07-30,[],MI,2023-2024 +assigned PA 138'23 with immediate effect,2023-10-03,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-11-02,[],MI,2023-2024 +filed with Secretary of State 07/23/2024 11:56 AM,2024-07-30,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/21/2023 01:14 PM,2023-12-29,['executive-signature'],MI,2023-2024 +filed with Secretary of State 10/24/2023 11:32 AM,2023-10-24,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/11/2024 02:00 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0097'24,2024-07-30,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:18 AM,2024-07-30,['executive-signature'],MI,2023-2024 +approved by the Governor 07/18/2023 11:58 AM,2023-07-19,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/08/2024 01:20 PM,2024-07-30,[],MI,2023-2024 +approved by the Governor 06/06/2024 11:58 AM,2024-06-06,['executive-signature'],MI,2023-2024 +presented to the Governor 03/20/2024 10:36 AM,2024-03-20,['executive-receipt'],MI,2023-2024 +Senate substitute (S-1) concurred in,2024-06-27,[],MI,2023-2024 +presented to the Governor 03/23/2023 12:05 PM,2023-03-23,['executive-receipt'],MI,2023-2024 +SEN. SEAN MCCANN REPLACED SEN. ROSEMARY BAYER AS CONFEREE 10/31/2023,2023-10-31,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2024-06-27,[],MI,2023-2024 +filed with Secretary of State 06/06/2024 02:02 PM,2024-06-06,[],MI,2023-2024 +laid over one day under the rules,2024-09-17,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/19/2023 10:52 AM,2023-07-20,[],MI,2023-2024 +assigned PA 90'24,2024-07-30,[],MI,2023-2024 +roll call Roll Call # 14 Yeas 59 Nays 49 Excused 0 Not Voting 2,2023-03-01,[],MI,2023-2024 +inserted full title,2024-06-27,[],MI,2023-2024 +VOTE RECONSIDERED,2023-03-21,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 01:04 PM,2023-07-18,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 07/11/2023 01:06 PM,2023-07-18,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0163'23,2023-10-24,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/19/2023 10:38 AM,2023-07-20,[],MI,2023-2024 +"SENATE NAMED CONFEREES 05/23/2023: SENS. DARRIN CAMILLERI, DAYNA POLEHANKI, JON BUMSTEAD",2023-05-23,[],MI,2023-2024 +"SENATE NAMED CONFEREES 05/23/2023: SENS. SEAN MCCANN, JEFF IRWIN, JON BUMSTEAD",2023-05-23,[],MI,2023-2024 +Senate conferees named 05/23/2023: Sens. Rosemary Bayer Veronica Klinefelt Jon Bumstead,2023-05-23,[],MI,2023-2024 +VOTE RECONSIDERED,2023-06-28,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-07,[],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2024-06-11,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/14/2023 10:14 AM,2023-12-29,[],MI,2023-2024 +CONFERENCE REPORT RECEIVED IN SENATE,2024-06-27,[],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +CONFERENCE REPORT RECEIVED IN SENATE,2023-11-02,[],MI,2023-2024 +ORDERED ENROLLED,2023-10-18,[],MI,2023-2024 +assigned PA 37'23,2023-05-23,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2024-06-11,[],MI,2023-2024 +presented to the Governor 11/27/2023 03:08 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 05/22/2024 01:50 PM,2024-05-22,[],MI,2023-2024 +"SENATE NAMED CONFEREES 05/23/2023: SENS. SEAN MCCANN, JEFF IRWIN, JON BUMSTEAD",2023-05-23,[],MI,2023-2024 +approved by the Governor 07/18/2023 12:04 PM,2023-07-19,['executive-signature'],MI,2023-2024 +House conferees named 01/25/2023: Reps. Angela Witwer Amos O'Neal Ken Borton,2023-01-25,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/14/2023 10:16 AM,2023-12-29,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/17/2023 09:53 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +conference report received,2023-06-28,[],MI,2023-2024 +approved by the Governor 11/30/2023 12:50 PM,2023-12-31,['executive-signature'],MI,2023-2024 +substitute (H-1) adopted,2024-01-17,[],MI,2023-2024 +ASSIGNED PA 0151'23 WITH IMMEDIATE EFFECT,2023-10-24,[],MI,2023-2024 +APPROVED BY GOVERNOR 04/13/2023 09:56 AM,2023-04-19,['executive-signature'],MI,2023-2024 +full title agreed to,2023-11-09,[],MI,2023-2024 +presented to the Governor 11/21/2023 10:16 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +returned to Senate,2023-11-08,[],MI,2023-2024 +approved by the Governor 04/27/2024 11:18 AM,2024-04-30,['executive-signature'],MI,2023-2024 +filed with Secretary of State 06/07/2023 02:06 PM,2023-06-07,[],MI,2023-2024 +returned from Senate with amendment(s),2024-06-11,[],MI,2023-2024 +filed with Secretary of State 10/19/2023 11:42 AM,2023-10-19,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/01/2023 11:38 AM,2023-12-29,[],MI,2023-2024 +referred to conference committee 06/08/2023,2023-06-08,[],MI,2023-2024 +presented to the Governor 11/21/2023 09:42 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +"SENATE NAMED CONFEREES 06/05/2024: SENS. JEFF IRWIN, SARAH ANTHONY, JON C. BUMSTEAD",2024-06-05,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2023-05-23,[],MI,2023-2024 +presented to the Governor 07/17/2023 11:19 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0224'23,2023-12-29,[],MI,2023-2024 +Senate substitute (S-4) concurred in,2023-11-08,[],MI,2023-2024 +HOUSE AMENDMENT(S) TO SENATE SUBSTITUTE (S-1) CONCURRED IN,2023-04-27,[],MI,2023-2024 +returned from Senate with substitute (S-1) with immediate effect,2023-06-28,[],MI,2023-2024 +assigned PA 258'23,2023-12-31,[],MI,2023-2024 +LAID OVER ONE DAY UNDER THE RULES,2023-09-07,[],MI,2023-2024 +assigned PA 1'24 with immediate effect,2024-02-21,[],MI,2023-2024 +APPROVED BY GOVERNOR 04/13/2023 09:50 AM,2023-04-19,['executive-signature'],MI,2023-2024 +filed with Secretary of State 10/10/2023 11:40 AM,2023-10-10,[],MI,2023-2024 +approved by the Governor 11/30/2023 12:46 PM,2023-12-31,['executive-signature'],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2024-06-05,[],MI,2023-2024 +title amended,2023-11-09,[],MI,2023-2024 +assigned PA 200'23,2023-12-31,[],MI,2023-2024 +assigned PA 22'23,2023-04-26,[],MI,2023-2024 +PASSED ROLL CALL # 449 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2023-09-07,['passage'],MI,2023-2024 +APPROVED BY GOVERNOR 05/01/2023 10:55 AM,2023-05-02,['executive-signature'],MI,2023-2024 +ORDERED ENROLLED,2023-05-04,[],MI,2023-2024 +Senate conferees named 05/23/2023: Sens. Mary Cavanagh Sylvia Santana Jon Bumstead,2023-05-23,[],MI,2023-2024 +filed with Secretary of State 06/29/2023 10:24 AM,2023-07-18,[],MI,2023-2024 +assigned PA 44'24 with immediate effect,2024-05-22,[],MI,2023-2024 +filed with Secretary of State 03/28/2024 10:58 AM,2024-04-09,[],MI,2023-2024 +ASSIGNED PA 0239'23,2023-12-29,[],MI,2023-2024 +ASSIGNED PA 0015'23,2023-04-19,[],MI,2023-2024 +filed with Secretary of State 04/30/2024 11:28 AM,2024-04-30,[],MI,2023-2024 +presented to the Governor 05/15/2024 10:44 AM,2024-05-15,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:18 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +PRESENTED TO GOVERNOR 10/27/2023 02:20 PM,2023-10-31,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0044'23 WITH IMMEDIATE EFFECT,2023-06-14,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:28 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0066'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +APPROVED BY GOVERNOR 05/22/2023 02:48 PM,2023-05-23,['executive-signature'],MI,2023-2024 +assigned PA 213'23,2023-12-31,[],MI,2023-2024 +assigned PA 45'24 with immediate effect,2024-05-22,[],MI,2023-2024 +roll call Roll Call # 129 Yeas 51 Nays 55 Excused 0 Not Voting 4,2024-05-22,[],MI,2023-2024 +PRESENTED TO GOVERNOR 04/10/2023 01:03 PM,2023-04-11,['executive-receipt'],MI,2023-2024 +presented to the Governor 11/21/2023 10:04 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +ROLL CALL: ROLL CALL # 309 YEAS 0 NAYS 38 EXCUSED 0 NOT VOTING 0,2023-05-23,[],MI,2023-2024 +retransmitted,2024-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 05/08/2023 01:22 PM,2023-05-09,[],MI,2023-2024 +assigned PA 276'23,2023-12-31,[],MI,2023-2024 +assigned PA 36'23,2023-05-23,[],MI,2023-2024 +returned from Senate without amendment with full title,2023-11-08,[],MI,2023-2024 +laid over one day under the rules,2023-06-28,[],MI,2023-2024 +House conferees named 06/06/2023: Reps. Phil Skaggs Julie Brixie Bill Schuette,2023-06-06,[],MI,2023-2024 +assigned PA 52'23,2023-07-18,[],MI,2023-2024 +approved by the Governor 11/22/2023 11:32 AM,2023-12-31,['executive-signature'],MI,2023-2024 +APPROVED BY GOVERNOR 07/18/2023 11:40 AM,2023-07-20,['executive-signature'],MI,2023-2024 +assigned PA 23'24,2024-04-09,[],MI,2023-2024 +roll call Roll Call # 492 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-11-08,[],MI,2023-2024 +assigned PA 38'24 with immediate effect,2024-04-30,[],MI,2023-2024 +ASSIGNED PA 0027'23 WITH IMMEDIATE EFFECT,2023-05-09,[],MI,2023-2024 +approved by the Governor 05/22/2024 11:10 AM,2024-05-22,['executive-signature'],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. Jeff Irwin Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +returned to Senate,2023-11-09,[],MI,2023-2024 +"SENATE NAMED CONFEREES 05/23/2023: SENS. MARY CAVANAGH, KRISTEN MCDONALD RIVET, JON BUMSTEAD",2023-05-23,[],MI,2023-2024 +assigned PA 170'23,2023-10-24,[],MI,2023-2024 +PRESENTED TO GOVERNOR 05/09/2023 10:59 AM,2023-05-09,['executive-receipt'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 05/22/2023 04:58 PM,2023-05-23,[],MI,2023-2024 +TITLE AMENDED,2023-09-07,[],MI,2023-2024 +filed with Secretary of State 12/01/2023 11:32 AM,2023-12-31,[],MI,2023-2024 +Senate conferees named 05/23/2023: Sens. Kevin Hertel Veronica Klinefelt Jon Bumstead,2023-05-23,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/28/2023 02:24 PM,2023-12-29,['executive-signature'],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 05/01/2023 11:36 AM,2023-05-02,[],MI,2023-2024 +approved by the Governor 07/26/2023 12:16 PM,2023-08-22,['executive-signature'],MI,2023-2024 +assigned PA 147'23 with immediate effect,2023-10-10,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 138 YEAS 32 NAYS 5 EXCUSED 1 NOT VOTING 0,2023-04-27,[],MI,2023-2024 +APPROVED BY GOVERNOR 04/13/2023 09:54 AM,2023-04-19,['executive-signature'],MI,2023-2024 +CONFERENCE REPORT RECEIVED IN SENATE,2024-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 04/13/2023 11:40 AM,2023-04-19,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-4) CONCURRED IN AS SUBSTITUTED (S-1),2023-09-13,[],MI,2023-2024 +approved by the Governor 11/30/2023 12:42 PM,2023-12-31,['executive-signature'],MI,2023-2024 +approved by the Governor 03/24/2023 09:36 AM,2023-04-11,['executive-signature'],MI,2023-2024 +presented to the Governor 11/21/2023 09:50 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:36 AM,2023-07-18,[],MI,2023-2024 +ASSIGNED PA 0076'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +SENATE ADOPTED CONFERENCE REPORT WITH IMMEDIATE EFFECT ROLL CALL # 330 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2024-06-27,[],MI,2023-2024 +returned from Senate with substitute (S-2),2023-10-11,[],MI,2023-2024 +House conferees named 06/06/2023: Reps. Rachel Hood Donavan McKinney Timothy Beson,2023-06-06,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/22/2023 01:14 PM,2023-12-29,[],MI,2023-2024 +returned to Senate,2024-06-27,[],MI,2023-2024 +roll call Roll Call # 292 Yeas 96 Nays 14 Excused 0 Not Voting 0,2024-06-27,[],MI,2023-2024 +title amendment agreed to,2023-03-01,[],MI,2023-2024 +assigned PA 118'24,2024-07-30,[],MI,2023-2024 +"SENATE NAMED CONFEREES 02/02/2023: SENS. SAM SINGH, SARAH ANTHONY, DAN LAUWERS",2023-02-02,[],MI,2023-2024 +House conferees named 06/06/2023: Reps. Ranjeev Puri Jason Morgan Donni Steele,2023-06-06,[],MI,2023-2024 +roll call Roll Call # 282 Yeas 69 Nays 41 Excused 0 Not Voting 0,2024-06-27,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-28,[],MI,2023-2024 +assigned PA 54'24,2024-06-06,[],MI,2023-2024 +APPROVED BY GOVERNOR 07/23/2024 10:12 AM,2024-07-30,['executive-signature'],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2023-11-07,[],MI,2023-2024 +AMENDMENT(S) ADOPTED,2023-03-21,['amendment-passage'],MI,2023-2024 +assigned PA 94'24 with immediate effect,2024-07-30,[],MI,2023-2024 +ASSIGNED PA 0097'23 WITH IMMEDIATE EFFECT,2023-07-20,[],MI,2023-2024 +filed with Secretary of State 07/19/2023 10:54 AM,2023-07-19,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:18 PM,2024-07-30,[],MI,2023-2024 +approved by the Governor 04/02/2024 01:20 PM,2024-04-09,['executive-signature'],MI,2023-2024 +Rep. Amos O'Neal replaced Rep. Felicia Brabec as chair of conference 11/01/2023,2023-11-01,[],MI,2023-2024 +filed with Secretary of State 06/06/2024 01:58 PM,2024-06-06,[],MI,2023-2024 +ASSIGNED PA 0090'23 WITH IMMEDIATE EFFECT,2023-07-20,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/12/2023 10:34 AM,2023-07-18,[],MI,2023-2024 +filed with Secretary of State 07/19/2023 10:58 AM,2023-07-19,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2023-05-23,[],MI,2023-2024 +SENATE ADOPTED CONFERENCE REPORT ROLL CALL # 642 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2023-11-02,[],MI,2023-2024 +ASSIGNED PA 0315'23,2023-12-29,[],MI,2023-2024 +assigned PA 46'24,2024-05-22,[],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2023-05-23,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/21/2023 01:16 PM,2023-12-29,['executive-signature'],MI,2023-2024 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2023-11-08,[],MI,2023-2024 +assigned PA 157'23,2023-10-19,[],MI,2023-2024 +re-returned to Senate,2023-02-08,[],MI,2023-2024 +approved by the Governor 12/07/2023 10:08 AM,2023-12-31,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 11/17/2023 09:49 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 04/29/2024 11:54 AM,2024-04-30,[],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2023-05-23,[],MI,2023-2024 +assigned PA 41'23 with immediate effect,2023-06-07,[],MI,2023-2024 +SUBSTITUTE (S-1) ADOPTED,2023-06-28,[],MI,2023-2024 +ASSIGNED PA 0269'23,2023-12-29,[],MI,2023-2024 +PRESENTED TO GOVERNOR 10/24/2023 09:15 AM,2023-10-24,['executive-receipt'],MI,2023-2024 +approved by the Governor 11/28/2023 01:30 PM,2023-12-31,['executive-signature'],MI,2023-2024 +House conferees named 06/06/2023: Reps. Regina Weiss Jason Morgan Nancy DeBoer,2023-06-06,[],MI,2023-2024 +laid over one day under the rules,2024-06-11,[],MI,2023-2024 +rule suspended,2023-06-28,[],MI,2023-2024 +filed with Secretary of State 07/19/2023 11:00 AM,2023-07-19,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/07/2023 01:20 PM,2023-11-08,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-11-09,[],MI,2023-2024 +Senate conferees named 06/05/2024: Sens. John Cherry Sarah Anthony Jon Bumstead,2024-06-05,[],MI,2023-2024 +presented to the Governor 11/21/2023 10:14 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +defeated Roll Call # 2 Yeas 52 Nays 52 Excused 0 Not Voting 4,2024-01-17,[],MI,2023-2024 +filed with Secretary of State 12/01/2023 11:36 AM,2023-12-31,[],MI,2023-2024 +presented to the Governor 11/27/2023 03:34 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +ASSIGNED PA 0314'23,2023-12-29,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 04/13/2023 11:46 AM,2023-04-19,[],MI,2023-2024 +House conferees named 06/05/2024: Reps. Julie Brixie Jasper Martus Ken Borton,2024-06-05,[],MI,2023-2024 +ASSIGNED PA 0017'23,2023-04-19,[],MI,2023-2024 +conference report received,2024-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/07/2023 02:28 PM,2023-11-08,[],MI,2023-2024 +presented to the Governor 11/21/2023 10:12 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +Senate conferees named 05/23/2023: Sens. Sean McCann Jeff Irwin Jon Bumstead,2023-05-23,[],MI,2023-2024 +presented to the Governor 11/27/2023 03:26 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2023-06-07,[],MI,2023-2024 +conference report adopted Roll Call # 263 Yeas 61 Nays 47 Excused 0 Not Voting 2,2023-06-28,[],MI,2023-2024 +assigned PA 268'23,2023-12-31,[],MI,2023-2024 +filed with Secretary of State 11/29/2023 01:16 PM,2023-12-31,[],MI,2023-2024 +approved by the Governor 12/07/2023 09:58 AM,2023-12-31,['executive-signature'],MI,2023-2024 +assigned PA 101'23 with immediate effect,2023-07-19,[],MI,2023-2024 +APPROVED BY GOVERNOR 10/24/2023 10:06 AM,2023-10-25,['executive-signature'],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2023-01-26,[],MI,2023-2024 +PASSED ROLL CALL # 435 YEAS 29 NAYS 8 EXCUSED 1 NOT VOTING 0,2023-06-28,['passage'],MI,2023-2024 +ROLL CALL: ROLL CALL # 705 YEAS 20 NAYS 15 EXCUSED 3 NOT VOTING 0,2023-11-08,[],MI,2023-2024 +filed with Secretary of State 12/08/2023 10:18 AM,2023-12-31,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/21/2023 01:20 PM,2023-12-29,['executive-signature'],MI,2023-2024 +assigned PA 36'24,2024-04-30,[],MI,2023-2024 +Senate conferees named 05/23/2023: Sens. Darrin Camilleri Dayna Polehanki Jon Bumstead,2023-05-23,[],MI,2023-2024 +conference report received,2023-11-02,[],MI,2023-2024 +"SENATE NAMED CONFEREES 05/23/2023: SENS. SEAN MCCANN, JEFF IRWIN, JON C. BUMSTEAD",2023-05-23,[],MI,2023-2024 +Senate amendment(s) concurred in Roll Call # 168 Yeas 79 Nays 31 Excused 0 Not Voting 0,2024-06-12,[],MI,2023-2024 +approved by the Governor 11/30/2023 12:32 PM,2023-12-31,['executive-signature'],MI,2023-2024 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2023-05-23,[],MI,2023-2024 +full title agreed to,2023-11-08,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-09-06,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 451 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2023-09-13,[],MI,2023-2024 +returned from Senate with substitute (S-2) with title amendment,2023-09-07,[],MI,2023-2024 +ASSIGNED PA 0038'23,2023-05-23,[],MI,2023-2024 +assigned PA 266'23,2023-12-31,[],MI,2023-2024 +ASSIGNED PA 0025'23 WITH IMMEDIATE EFFECT,2023-05-02,[],MI,2023-2024 +filed with Secretary of State 07/27/2023 10:04 AM,2023-08-22,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 04/13/2023 11:44 AM,2023-04-19,[],MI,2023-2024 +filed with Secretary of State 12/01/2023 11:28 AM,2023-12-31,[],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2023-06-07,[],MI,2023-2024 +filed with Secretary of State 11/22/2023 01:38 PM,2023-12-31,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/19/2023 10:36 AM,2023-07-20,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/29/2023 01:18 PM,2023-12-29,[],MI,2023-2024 +SENATE ADOPTED CONFERENCE REPORT WITH IMMEDIATE EFFECT ROLL CALL # 331 YEAS 20 NAYS 18 EXCUSED 0 NOT VOTING 0,2024-06-27,[],MI,2023-2024 +APPROVED BY GOVERNOR 05/17/2023 03:09 PM,2023-05-18,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +re-returned from Senate with concurrence to House amendment(s) to Senate substitute (S-1),2023-04-27,[],MI,2023-2024 +House conferees named 06/06/2023: Reps. Jason Morgan Jimmie Wilson Cameron Cavitt,2023-06-06,[],MI,2023-2024 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2023-11-09,[],MI,2023-2024 +ASSIGNED PA 0014'23,2023-04-19,[],MI,2023-2024 +filed with Secretary of State 05/22/2024 01:52 PM,2024-05-22,[],MI,2023-2024 +referred to conference committee 06/05/2024,2024-06-05,[],MI,2023-2024 +ASSIGNED PA 0071'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +ASSIGNED PA 0105'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +Rep. Felicia Brabec replaced Rep. Rachel Hood as conferee 11/01/2023,2023-11-01,[],MI,2023-2024 +ASSIGNED PA 0206'23,2023-12-29,[],MI,2023-2024 +ASSIGNED PA 0072'23 WITH IMMEDIATE EFFECT,2023-07-18,[],MI,2023-2024 +assigned PA 98'23 with immediate effect,2023-07-19,[],MI,2023-2024 +PASSED ROLL CALL # 101 YEAS 20 NAYS 16 EXCUSED 2 NOT VOTING 0,2023-03-21,['passage'],MI,2023-2024 +full title agreed to,2024-06-27,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 659 YEAS 29 NAYS 8 EXCUSED 1 NOT VOTING 0,2023-11-07,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/23/2024 12:12 PM,2024-07-30,[],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2023-06-07,[],MI,2023-2024 +filed with Secretary of State 03/24/2023 01:06 PM,2023-03-23,[],MI,2023-2024 +laid over one day under the rules,2023-10-11,[],MI,2023-2024 +assigned PA 100'23 with immediate effect,2023-07-19,[],MI,2023-2024 +filed with Secretary of State 04/02/2024 02:14 PM,2024-04-09,[],MI,2023-2024 +assigned PA 52'24,2024-06-06,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/06/2023 02:50 PM,2023-07-18,['executive-receipt'],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2023-06-07,[],MI,2023-2024 +full title agreed to,2024-06-27,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/22/2023 01:16 PM,2023-12-29,[],MI,2023-2024 +approved by the Governor 11/30/2023 12:44 PM,2023-12-31,['executive-signature'],MI,2023-2024 +rule suspended,2024-05-09,[],MI,2023-2024 +conference report received,2023-02-08,[],MI,2023-2024 +bill ordered enrolled,2023-03-01,[],MI,2023-2024 +Senate substitute (S-2) concurred in,2023-10-12,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2023-11-07,[],MI,2023-2024 +vote reconsidered,2024-05-09,[],MI,2023-2024 +bill ordered enrolled,2024-06-27,[],MI,2023-2024 +bill ordered enrolled,2024-06-27,[],MI,2023-2024 +assigned PA 10'23,2023-03-23,[],MI,2023-2024 +returned from Senate with amendment(s),2023-03-21,[],MI,2023-2024 +Rep. Sarah Lightner replaced Rep. Ann M. Bollin as conferee 11/01/2023,2023-11-01,[],MI,2023-2024 +presented to the Governor 03/07/2023 11:16 AM,2023-03-07,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 07/18/2023 11:24 AM,2023-07-20,['executive-signature'],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2024-06-11,[],MI,2023-2024 +ASSIGNED PA 0207'23,2023-12-29,[],MI,2023-2024 +conference report adopted Roll Call # 13 Yeas 56 Nays 53 Excused 0 Not Voting 1,2023-02-09,[],MI,2023-2024 +ASSIGNED PA 0102'24,2024-07-30,[],MI,2023-2024 +assigned PA 35'24 with immediate effect,2024-04-09,[],MI,2023-2024 +Senate conferees named 05/23/2023: Sens. Sean McCann Jeff Irwin Jon Bumstead,2023-05-23,[],MI,2023-2024 +bill ordered enrolled,2024-06-12,[],MI,2023-2024 +assigned PA 234'23,2023-12-31,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 10/24/2023 11:38 AM,2023-10-25,[],MI,2023-2024 +returned from Senate with substitute (S-1) with full title,2023-06-28,[],MI,2023-2024 +returned to Senate,2024-06-27,[],MI,2023-2024 +approved by the Governor 11/30/2023 12:40 PM,2023-12-31,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0191'23 WITH IMMEDIATE EFFECT,2023-11-08,[],MI,2023-2024 +filed with Secretary of State 12/01/2023 11:18 AM,2023-12-31,[],MI,2023-2024 +House conferees named 06/06/2023: Reps. Regina Weiss Jason Morgan Nancy DeBoer,2023-06-06,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/22/2023 01:20 PM,2023-12-29,[],MI,2023-2024 +CONFERENCE REPORT RECEIVED IN SENATE,2023-01-26,[],MI,2023-2024 +filed with Secretary of State 12/08/2023 10:08 AM,2023-12-31,[],MI,2023-2024 +assigned PA 278'23,2023-12-31,[],MI,2023-2024 +approved by the Governor 12/07/2023 10:06 AM,2023-12-31,['executive-signature'],MI,2023-2024 +House conferees named 06/06/2023: Reps. Samantha Steckloff Jason Morgan Thomas Kuhn,2023-06-06,[],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2023-11-08,[],MI,2023-2024 +rule suspended,2023-11-02,[],MI,2023-2024 +retransmitted,2023-06-28,[],MI,2023-2024 +laid over one day under the rules,2023-09-07,[],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2023-06-07,[],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2023-09-13,[],MI,2023-2024 +Senate conferees named 05/23/2023: Sens. Mary Cavanagh Kristen McDonald Rivet Jon Bumstead,2023-05-23,[],MI,2023-2024 +filed with Secretary of State 12/01/2023 11:30 AM,2023-12-31,[],MI,2023-2024 +assigned PA 218'23 with immediate effect,2023-12-31,[],MI,2023-2024 +ASSIGNED PA 0089'23 WITH IMMEDIATE EFFECT,2023-07-20,[],MI,2023-2024 +ASSIGNED PA 0016'23,2023-04-19,[],MI,2023-2024 +assigned PA 47'24,2024-05-22,[],MI,2023-2024 +bill ordered enrolled,2023-11-08,[],MI,2023-2024 +assigned PA 116'23,2023-08-22,[],MI,2023-2024 +conference report adopted by Senate with immediate effect,2024-06-27,[],MI,2023-2024 +ASSIGNED PA 0235'23,2023-12-29,[],MI,2023-2024 +presented to the Governor 11/21/2023 09:36 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2023-04-27,[],MI,2023-2024 +assigned PA 264'23,2023-12-31,[],MI,2023-2024 +roll call Roll Call # 272 Yeas 99 Nays 8 Excused 0 Not Voting 3,2023-09-06,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 707 YEAS 30 NAYS 8 EXCUSED 0 NOT VOTING 0,2023-11-09,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 05/17/2023 03:30 PM,2023-05-18,[],MI,2023-2024 +ASSIGNED PA 0031'23,2023-05-18,[],MI,2023-2024 +bill ordered enrolled,2024-06-27,[],MI,2023-2024 +House conferees named 06/06/2023: Reps. Will Snyder Jasper Martus Greg VanWoerkom,2023-06-06,[],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2023-11-09,[],MI,2023-2024 +approved by the Governor 11/22/2023 11:18 AM,2023-12-31,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-09-06,[],MI,2023-2024 +re-returned from Senate with concurrence to House substitute (H-4) to Senate substitute (S-1),2023-09-13,[],MI,2023-2024 +presented to the Governor 05/04/2023 09:34 AM,2023-05-04,['executive-receipt'],MI,2023-2024 +presented to the Governor 11/21/2023 09:52 AM,2023-12-31,['executive-receipt'],MI,2023-2024 +Senate substitute (S-2) concurred in,2023-09-27,[],MI,2023-2024 +passed; given immediate effect Roll Call # 83 Yeas 103 Nays 4 Excused 0 Not Voting 3,2024-05-09,['passage'],MI,2023-2024 +retransmitted,2023-02-09,[],MI,2023-2024 +roll call Roll Call # 346 Yeas 74 Nays 36 Excused 0 Not Voting 0,2023-10-12,[],MI,2023-2024 +conference report received,2023-11-02,[],MI,2023-2024 +laid over one day under the rules,2023-03-21,[],MI,2023-2024 +presented to the Governor 07/11/2024 01:30 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +approved by the Governor 03/08/2023 10:30 AM,2023-03-08,['executive-signature'],MI,2023-2024 +FULL TITLE AGREED TO,2023-11-07,[],MI,2023-2024 +presented to the Governor 07/11/2024 01:28 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 12/08/2023 10:16 AM,2023-12-31,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/19/2023 10:20 AM,2023-07-20,[],MI,2023-2024 +conference report adopted Roll Call # 482 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-11-02,[],MI,2023-2024 +presented to the Governor 06/14/2024 11:30 AM,2024-06-13,['executive-receipt'],MI,2023-2024 +assigned PA 273'23 with immediate effect,2023-12-31,[],MI,2023-2024 +assigned PA 259'23,2023-12-31,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-08,[],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2023-06-07,[],MI,2023-2024 +CONFERENCE REPORT RECEIVED IN SENATE,2023-06-28,[],MI,2023-2024 +filed with Secretary of State 12/01/2023 11:26 AM,2023-12-31,[],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2023-06-07,[],MI,2023-2024 +rule suspended,2024-06-27,[],MI,2023-2024 +ASSIGNED PA 0209'23,2023-12-29,[],MI,2023-2024 +House conferees named 06/06/2023: Reps. Samantha Steckloff Jason Morgan Thomas Kuhn,2023-06-06,[],MI,2023-2024 +laid over one day under the rules,2023-06-28,[],MI,2023-2024 +assigned PA 265'23,2023-12-31,[],MI,2023-2024 +ASSIGNED PA 0173'23 WITH IMMEDIATE EFFECT,2023-10-25,[],MI,2023-2024 +SENATE ADOPTED CONFERENCE REPORT WITH IMMEDIATE EFFECT ROLL CALL # 15 YEAS 24 NAYS 14 EXCUSED 0 NOT VOTING 0,2023-01-26,[],MI,2023-2024 +assigned PA 277'23,2023-12-31,[],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:34 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2023-06-07,[],MI,2023-2024 +conference report adopted Roll Call # 294 Yeas 56 Nays 54 Excused 0 Not Voting 0,2024-06-27,[],MI,2023-2024 +SENATE ADOPTED CONFERENCE REPORT WITH IMMEDIATE EFFECT ROLL CALL # 445 YEAS 26 NAYS 10 EXCUSED 1 NOT VOTING 1,2023-06-28,[],MI,2023-2024 +conference report received,2023-01-26,[],MI,2023-2024 +re-returned to Senate,2023-11-02,[],MI,2023-2024 +SEN. SARAH ANTHONY REPLACED SEN. DAYNA POLEHANKI AS CONFEREE 06/27/2023,2023-06-27,[],MI,2023-2024 +rule suspended,2023-06-28,[],MI,2023-2024 +assigned PA 263'23,2023-12-31,[],MI,2023-2024 +approved by the Governor 06/20/2024 10:02 AM,2024-06-20,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0081'23,2023-07-20,[],MI,2023-2024 +approved by the Governor 11/28/2023 01:28 PM,2023-12-31,['executive-signature'],MI,2023-2024 +presented to the Governor 09/11/2023 11:18 AM,2023-09-07,['executive-receipt'],MI,2023-2024 +title amendment agreed to,2023-09-13,[],MI,2023-2024 +approved by the Governor 05/08/2023 11:38 AM,2023-05-09,['executive-signature'],MI,2023-2024 +roll call Roll Call # 310 Yeas 56 Nays 54 Excused 0 Not Voting 0,2023-09-27,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-09,[],MI,2023-2024 +presented to the Governor 07/11/2024 01:38 PM,2024-06-27,['executive-receipt'],MI,2023-2024 +REFERRED TO CONFERENCE COMMITTEE,2023-06-07,[],MI,2023-2024 +filed with Secretary of State 11/22/2023 01:24 PM,2023-12-31,[],MI,2023-2024 +bill ordered enrolled,2023-10-12,[],MI,2023-2024 +rule suspended,2023-11-02,[],MI,2023-2024 +rule suspended,2023-03-21,[],MI,2023-2024 +CONFERENCE REPORT RECEIVED IN SENATE,2023-02-16,[],MI,2023-2024 +approved by the Governor 07/23/2024 09:34 AM,2024-07-30,['executive-signature'],MI,2023-2024 +filed with Secretary of State 03/08/2023 11:26 AM,2023-03-08,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-07,[],MI,2023-2024 +title amended,2024-05-09,[],MI,2023-2024 +approved by the Governor 07/23/2024 09:32 AM,2024-07-30,['executive-signature'],MI,2023-2024 +presented to the Governor 10/17/2023 09:23 AM,2023-10-17,['executive-receipt'],MI,2023-2024 +assigned PA 5'23 with immediate effect,2023-03-08,[],MI,2023-2024 +returned to Senate,2024-05-09,[],MI,2023-2024 +conference report adopted Roll Call # 478 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-11-02,[],MI,2023-2024 +Senate amendment(s) concurred in Roll Call # 38 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-03-21,[],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:14 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +SENATE ADOPTED CONFERENCE REPORT ROLL CALL # 22 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2023-02-16,[],MI,2023-2024 +filed with Secretary of State 07/23/2024 11:32 AM,2024-07-30,[],MI,2023-2024 +filed with Secretary of State 07/23/2024 11:34 AM,2024-07-30,[],MI,2023-2024 +rule suspended,2023-01-26,[],MI,2023-2024 +ORDERED ENROLLED,2023-11-07,[],MI,2023-2024 +given immediate effect,2024-06-27,[],MI,2023-2024 +filed with Secretary of State 06/20/2024 11:02 AM,2024-06-20,[],MI,2023-2024 +filed with Secretary of State 05/08/2023 01:28 PM,2023-05-09,[],MI,2023-2024 +conference report adopted by Senate with immediate effect,2023-06-28,[],MI,2023-2024 +APPROVED BY GOVERNOR 11/28/2023 01:20 PM,2023-12-29,['executive-signature'],MI,2023-2024 +Sen. Sarah Anthony replaced Sen. Dayna Polehanki as conferee 06/27/2023,2023-06-27,[],MI,2023-2024 +Senate substitute (S-1) concurred in,2023-06-28,[],MI,2023-2024 +approved by the Governor 07/23/2024 02:45 PM,2024-07-30,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-09-13,[],MI,2023-2024 +filed with Secretary of State 11/29/2023 01:14 PM,2023-12-31,[],MI,2023-2024 +assigned PA 211'23,2023-12-31,[],MI,2023-2024 +approved by the Governor 09/18/2023 04:52 PM,2023-09-19,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 11/21/2023 10:44 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +title amendment agreed to,2023-09-27,[],MI,2023-2024 +assigned PA 233'23,2023-12-31,[],MI,2023-2024 +presented to the Governor 09/19/2023 12:30 PM,2023-09-19,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 11/30/2023 12:48 PM,2023-12-29,['executive-signature'],MI,2023-2024 +filed with Secretary of State 07/23/2024 04:30 PM,2024-07-30,[],MI,2023-2024 +filed with Secretary of State 09/19/2023 10:02 AM,2023-09-19,[],MI,2023-2024 +bill ordered enrolled,2023-09-27,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-02-16,[],MI,2023-2024 +APPROVED BY GOVERNOR 12/13/2023 05:10 PM,2023-12-29,['executive-signature'],MI,2023-2024 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2024-05-14,[],MI,2023-2024 +retransmitted,2023-11-02,[],MI,2023-2024 +assigned PA 83'24,2024-07-30,[],MI,2023-2024 +assigned PA 82'24 with immediate effect,2024-07-30,[],MI,2023-2024 +bill ordered enrolled,2023-03-21,[],MI,2023-2024 +approved by the Governor 10/19/2023 09:50 AM,2023-10-19,['executive-signature'],MI,2023-2024 +returned to Senate,2024-06-27,[],MI,2023-2024 +CONFERENCE REPORT RECEIVED IN SENATE,2023-06-28,[],MI,2023-2024 +roll call Roll Call # 266 Yeas 56 Nays 52 Excused 0 Not Voting 2,2023-06-28,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 11/29/2023 01:06 PM,2023-12-29,[],MI,2023-2024 +conference report adopted with immediate effect Roll Call # 8 Yeas 60 Nays 48 Excused 0 Not Voting 2,2023-01-26,[],MI,2023-2024 +bill ordered enrolled,2023-06-28,[],MI,2023-2024 +PRESENTED TO GOVERNOR 12/06/2023 09:12 AM,2023-12-29,['executive-receipt'],MI,2023-2024 +assigned PA 64'24,2024-06-20,[],MI,2023-2024 +assigned PA 30'23 with immediate effect,2023-05-09,[],MI,2023-2024 +APPROVED BY GOVERNOR 12/18/2023 09:26 AM,2023-12-29,['executive-signature'],MI,2023-2024 +ORDERED ENROLLED OUT OF SESSION,2024-07-30,[],MI,2023-2024 +full title agreed to,2023-06-28,[],MI,2023-2024 +presented to the Governor 07/24/2023 11:15 AM,2023-07-20,['executive-receipt'],MI,2023-2024 +SENATE ADOPTED CONFERENCE REPORT WITH IMMEDIATE EFFECT ROLL CALL # 446 YEAS 29 NAYS 8 EXCUSED 1 NOT VOTING 0,2023-06-28,[],MI,2023-2024 +ASSIGNED PA 0229'23,2023-12-29,[],MI,2023-2024 +ORDERED ENROLLED OUT OF SESSION,2023-01-31,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/01/2023 11:34 AM,2023-12-29,[],MI,2023-2024 +presented to the Governor 09/28/2023 04:44 PM,2023-09-28,['executive-receipt'],MI,2023-2024 +approved by the Governor 09/26/2023 03:49 PM,2023-09-27,['executive-signature'],MI,2023-2024 +assigned PA 120'24 with immediate effect,2024-07-30,[],MI,2023-2024 +assigned PA 121'23 with immediate effect,2023-09-19,[],MI,2023-2024 +ROLL CALL: ROLL CALL # 143 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2024-05-14,[],MI,2023-2024 +VOTE RECONSIDERED,2023-02-16,[],MI,2023-2024 +presented to the Governor 03/23/2023 12:03 PM,2023-03-23,['executive-receipt'],MI,2023-2024 +filed with Secretary of State 10/19/2023 11:36 AM,2023-10-19,[],MI,2023-2024 +CONFERENCE REPORT RECEIVED IN SENATE,2023-11-02,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/14/2023 10:18 AM,2023-12-29,[],MI,2023-2024 +SENATE ADOPTED CONFERENCE REPORT ROLL CALL # 655 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2023-11-02,[],MI,2023-2024 +IMMEDIATE EFFECT POSTPONED,2023-02-16,[],MI,2023-2024 +GIVEN IMMEDIATE EFFECT,2024-05-14,[],MI,2023-2024 +assigned PA 154'23 with immediate effect,2023-10-19,[],MI,2023-2024 +ASSIGNED PA 0316'23 WITH IMMEDIATE EFFECT,2023-12-29,[],MI,2023-2024 +approved by the Governor 03/24/2023 09:34 AM,2023-03-23,['executive-signature'],MI,2023-2024 +PRESENTED TO GOVERNOR 07/15/2024 02:52 PM,2024-07-30,['executive-receipt'],MI,2023-2024 +"FOR FINAL DISPOSITION OF BUDGET, SEE HB 4437",2023-06-28,[],MI,2023-2024 +PRESENTED TO GOVERNOR 01/30/2023 11:59 AM,2023-01-31,['executive-receipt'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 12/18/2023 01:02 PM,2023-12-29,[],MI,2023-2024 +approved by the Governor with line item(s) vetoed 07/31/2023 02:50 PM,2023-08-22,['executive-signature'],MI,2023-2024 +bill ordered enrolled,2023-06-28,[],MI,2023-2024 +filed with Secretary of State 09/27/2023 09:24 AM,2023-09-27,[],MI,2023-2024 +ASSIGNED PA 0267'23,2023-12-29,[],MI,2023-2024 +approved by the Governor 10/03/2023 02:58 PM,2023-10-03,['executive-signature'],MI,2023-2024 +assigned PA 126'23 with immediate effect,2023-09-27,[],MI,2023-2024 +filed with Secretary of State 08/01/2023 09:52 AM,2023-08-22,[],MI,2023-2024 +filed with Secretary of State 10/03/2023 03:38 PM,2023-10-03,[],MI,2023-2024 +IMMEDIATE EFFECT DEFEATED,2023-02-28,[],MI,2023-2024 +APPROVED BY GOVERNOR WITH LINE ITEM(S) VETOED 07/24/2024 11:27 AM,2024-07-30,['executive-veto-line-item'],MI,2023-2024 +filed with Secretary of State 03/24/2023 01:04 PM,2023-03-23,[],MI,2023-2024 +TITLE AMENDMENT AGREED TO,2024-05-14,[],MI,2023-2024 +conference report adopted by Senate,2023-11-02,[],MI,2023-2024 +APPROVED BY GOVERNOR 01/31/2023 09:18 AM,2023-02-01,['executive-signature'],MI,2023-2024 +ASSIGNED PA 0320'23,2023-12-29,[],MI,2023-2024 +presented to the Governor 07/12/2023 10:03 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +conference report adopted by Senate with immediate effect,2023-06-28,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 01/31/2023 11:00 AM,2023-02-01,[],MI,2023-2024 +approved by the Governor 07/18/2023 11:28 AM,2023-07-19,['executive-signature'],MI,2023-2024 +conference report received,2023-06-28,[],MI,2023-2024 +assigned PA 119'23 with immediate effect,2023-08-22,[],MI,2023-2024 +assigned PA 143'23,2023-10-03,[],MI,2023-2024 +conference report adopted by Senate,2023-03-01,[],MI,2023-2024 +assigned PA 9'23,2023-03-23,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/24/2024 04:22 PM,2024-07-30,[],MI,2023-2024 +bill ordered enrolled,2023-11-02,[],MI,2023-2024 +ORDERED ENROLLED,2024-05-14,[],MI,2023-2024 +presented to the Governor 12/06/2023 02:36 PM,2023-12-31,['executive-receipt'],MI,2023-2024 +bill ordered enrolled,2023-03-01,[],MI,2023-2024 +ASSIGNED PA 0121'24 WITH IMMEDIATE EFFECT,2024-07-30,[],MI,2023-2024 +PRESENTED TO GOVERNOR 05/28/2024 11:32 AM,2024-05-29,['executive-receipt'],MI,2023-2024 +rule suspended,2023-06-28,[],MI,2023-2024 +ASSIGNED PA 0001'23 WITH IMMEDIATE EFFECT,2023-01-31,[],MI,2023-2024 +filed with Secretary of State 07/19/2023 10:24 AM,2023-07-19,[],MI,2023-2024 +disapproved line item(s) re-referred to Committee on Appropriations,2023-09-06,[],MI,2023-2024 +assigned PA 83'23,2023-07-19,[],MI,2023-2024 +conference report adopted Roll Call # 268 Yeas 58 Nays 50 Excused 0 Not Voting 2,2023-06-28,[],MI,2023-2024 +APPROVED BY GOVERNOR 06/06/2024 11:54 AM,2024-06-11,['executive-signature'],MI,2023-2024 +approved by the Governor 12/18/2023 09:28 AM,2023-12-31,['executive-signature'],MI,2023-2024 +presented to the Governor 03/01/2023 07:41 PM,2023-03-01,['executive-receipt'],MI,2023-2024 +POSTPONED FOR THE DAY,2024-09-11,[],MI,2023-2024 +approved by the Governor 03/07/2023 09:34 AM,2023-03-07,['executive-signature'],MI,2023-2024 +filed with Secretary of State 12/18/2023 01:04 PM,2023-12-31,[],MI,2023-2024 +FILED WITH SECRETARY OF STATE 06/06/2024 01:54 PM,2024-06-11,[],MI,2023-2024 +returned to Senate,2023-06-28,[],MI,2023-2024 +ORDERED ENROLLED,2023-06-29,[],MI,2023-2024 +ASSIGNED PA 0050'24 WITH IMMEDIATE EFFECT,2024-06-11,[],MI,2023-2024 +assigned PA 321'23,2023-12-31,[],MI,2023-2024 +filed with Secretary of State 03/07/2023 10:10 AM,2023-03-07,[],MI,2023-2024 +assigned PA 4'23,2023-03-07,[],MI,2023-2024 +PRESENTED TO GOVERNOR 07/17/2023 10:59 AM,2023-07-18,['executive-receipt'],MI,2023-2024 +APPROVED BY GOVERNOR 07/20/2023 12:51 PM,2023-08-22,['executive-signature'],MI,2023-2024 +FILED WITH SECRETARY OF STATE 07/21/2023 09:41 AM,2023-08-22,[],MI,2023-2024 +ASSIGNED PA 103'23 WITH IMMEDIATE EFFECT,2023-08-22,[],MI,2023-2024 +"Introduced by Representatives Murphy, Schraa, Dittrich, Doyle, McGuire, O'Connor, Callahan, Donovan, Armstrong, Baldeh, Conley, Considine, Drake, Green, Joers, S. Johnson, Kitchens, Magnafici, Mursau, Oldenburg, Ortiz-Velez, Sinicki, Snyder, Spiros, Subeck, Jacobson, Haywood and Vos",2023-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vos, August, Swearingen and Zimmerman; +cosponsored by Senators LeMahieu, Feyen and Testin",2023-06-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Wanggaard; +cosponsored by Representative Wittke",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bare, Goyke, Baldeh, C. Anderson, Conley, Considine, Emerson, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Shankland, Sinicki, Snodgrass, Stubbs and Subeck; +cosponsored by Senators Hesselbein, Agard, Carpenter, L. Johnson, Larson, Roys and Spreitzer",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schutt, Kitchens, Dittrich, Behnke, Binsfeld, Bodden, Brandtjen, Goeben, Green, Gustafson, Hurd, Maxey, Murphy, Myers, Novak, O'Connor, Oldenburg, Ortiz-Velez, Rettinger, Rozar, Schmidt, Snyder, Spiros, Stubbs, Summerfield, Wittke, Schraa and Mursau; +cosponsored by Senators Ballweg, James, Cabral-Guevara, Marklein, Tomczyk, Quinn and Knodl",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Quinn, Nass and Felzkowski; +cosponsored by Representatives Wittke, Green, Binsfeld, Katsma, O'Connor, Murphy, Goeben and Melotik",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Macco, Armstrong, Bare, Dittrich, Donovan, Drake, Edming, S. Johnson, Kitchens, Krug, Magnafici, Nedweski, O'Connor, Oldenburg, Ortiz-Velez, Penterman, Rettinger, Rozar, Schutt, Snyder, Spiros, Steffen, Stubbs, Vining, Wittke and Murphy; +cosponsored by Senators Felzkowski, Carpenter, Nass, Roys, Spreitzer and Cabral-Guevara",2023-10-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Knodl; +cosponsored by Representatives Penterman, Melotik, Brandtjen, Dittrich, Donovan, S. Johnson, Kitchens, Michalski, Murphy, O'Connor, Rettinger, Rozar and Goeben",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Snyder, Bare, Armstrong, Billings, Brandtjen, C. Anderson, Donovan, Doyle, Edming, Hurd, Joers, Kitchens, Kurtz, McGuire, Moses, Mursau, O'Connor, Ohnstad, Oldenburg, Ortiz-Velez, Rozar, Schmidt, Schutt and Tranel; +cosponsored by Senators Quinn, Tomczyk, Carpenter, Cowles, Felzkowski, Marklein, Pfaff and Spreitzer",2023-11-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Snodgrass, Palmeri, J. Anderson, Andraca, Baldeh, Bare, Cabrera, Conley, Emerson, Hong, Jacobson, Joers, Moore Omokunde, Ratcliff, Riemer, Shankland, Sinicki, Stubbs and Subeck; +cosponsored by Senators Smith, Carpenter, Hesselbein, L. Johnson, Larson, Roys, Spreitzer, Wirch and Agard",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gundrum, Callahan, Dittrich, Goeben, S. Johnson, Kitchens, Murphy, Nedweski, O'Connor, Penterman, Rettinger, Rozar, Tittl and Wichgers; +cosponsored by Senators Knodl, Cowles, Felzkowski and Nass",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Ballweg, Cabral-Guevara, Feyen, Jacque, Marklein, Pfaff, Quinn, Spreitzer and Testin; +cosponsored by Representatives Kitchens, Novak, Tranel, Shankland, Krug, J. Anderson, Andraca, Armstrong, Baldeh, Behnke, Considine, Dittrich, Donovan, Emerson, Green, Joers, S. Johnson, Knodl, Mursau, O'Connor, Oldenburg, Petryk, Plumer, Rozar, Sinicki, Snodgrass, Snyder, Spiros and VanderMeer",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Oldenburg, Baldeh, Joers, O'Connor, Ohnstad, Shankland, Stubbs, Subeck and Tranel; +cosponsored by Senators Pfaff, Carpenter, Cowles and Roys",2023-07-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Marklein; +cosponsored by Representative Wittke",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Ballweg, Bradley, Cabral-Guevara, Felzkowski, Feyen, Jagler, Marklein, Nass, Stroebel, Testin and Wanggaard; +cosponsored by Representatives Binsfeld, Allen, Armstrong, August, Behnke, Born, Brandtjen, Dittrich, Donovan, Edming, Goeben, Green, Gundrum, Hurd, Katsma, Krug, Kurtz, Macco, Magnafici, Maxey, Melotik, Moses, Murphy, Mursau, Nedweski, O'Connor, Oldenburg, Penterman, Petryk, Plumer, Rettinger, Schraa, Schutt, Snyder, Spiros, Steffen, Tranel, Wichgers, Wittke and Swearingen",2024-01-30T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Ballweg, Cowles, L. Johnson, Larson and Nass; +cosponsored by Representatives VanderMeer, Billings, Brandtjen, Brooks, Donovan, Gundrum, Gustafson, Macco, Magnafici, Maxey, Rettinger, Rozar, Schmidt, Shankland, Wichgers and Wittke",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Moses, Allen, Armstrong, Behnke, Bodden, Dittrich, Goeben, S. Johnson, Magnafici, Murphy, O'Connor, Penterman, Rozar, Schmidt, Schraa and Schutt; +cosponsored by Senator Cabral-Guevara",2024-02-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Allen, Behnke, Bodden, Brandtjen, Gundrum, Gustafson, Michalski, Murphy, Wichgers and Green; +cosponsored by Senators Tomczyk, Cabral-Guevara, Nass and Quinn",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sapik, Mursau, Swearingen, S. Johnson, Green, Armstrong, Callahan and Edming; +cosponsored by Senators Quinn, Cowles and Knodl",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Sortwell, Behnke, Brandtjen, Jacobson, Murphy, Mursau, Schraa, Wichgers, Andraca and Sinicki",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goeben, Macco, C. Anderson, Armstrong, Behnke, Dittrich, Donovan, Duchow, Edming, Knodl, Mursau, O'Connor, Ortiz-Velez, Rodriguez, Rozar, Sinicki, Subeck and Clancy; +cosponsored by Senators Cowles, Wimberger, L. Johnson and Tomczyk",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Subeck, C. Anderson, J. Anderson, Andraca, Bare, Behnke, Bodden, Brandtjen, Conley, Dittrich, Donovan, Edming, Haywood, Jacobson, Joers, Moses, O'Connor, Ohnstad, Ratcliff, Schmidt, Shankland, Sinicki and Stubbs; +cosponsored by Senators Jacque, Taylor, Ballweg, Felzkowski, Hesselbein, Larson, Quinn, Roys, Spreitzer and Carpenter",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Green, Bodden, Kitchens, Magnafici, Rettinger and Sapik; +cosponsored by Senators Stafsholt and Quinn",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Nedweski, C. Anderson, J. Anderson, Considine, Dittrich, Donovan, Edming, Emerson, Joers, Kitchens, Murphy, Mursau, Ortiz-Velez, Rettinger, Sinicki, Spiros, Stubbs, Subeck and Tusler; +cosponsored by Senators Wanggaard, Cowles, Felzkowski, James, Marklein and Spreitzer",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and Stroebel; +cosponsored by Representatives Gustafson, Neylon, Tittl, Andraca, Dittrich, Krug, Murphy, O'Connor, Rettinger, Rozar and Spiros",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Representatives August and Vos,2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Armstrong, Behnke, Bodden, Brandtjen, Donovan, Joers, Murphy, Mursau, O'Connor, Ohnstad, Penterman, Rodriguez, Rozar, Sinicki, Spiros and Subeck; +cosponsored by Senators Cowles, Pfaff, Carpenter, Jacque, Marklein, Spreitzer and Tomczyk",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative Dallman,2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg, Carpenter, L. Johnson, Larson, Taylor, Testin and Wirch; +cosponsored by Representatives Billings, O'Connor, Allen, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Behnke, Brandtjen, Conley, Considine, Dittrich, Drake, Edming, Emerson, Green, Gundrum, Gustafson, Hurd, Joers, Kitchens, Krug, Madison, Maxey, Melotik, Moore Omokunde, Murphy, Mursau, Ohnstad, Palmeri, Penterman, Ratcliff, Shankland, Sinicki, Stubbs, Subeck and Haywood",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Tusler, Behnke and Donovan; +cosponsored by Senator Jacque",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Tomczyk, Carpenter, Cowles, Felzkowski, Marklein, Pfaff and Spreitzer; +cosponsored by Representatives Novak, Snyder, Bare, Armstrong, Billings, C. Anderson, Brandtjen, Donovan, Doyle, Edming, Hurd, Joers, Kitchens, Kurtz, McGuire, Moses, Mursau, O'Connor, Ohnstad, Oldenburg, Ortiz-Velez, Rozar, Schmidt, Schutt and Tranel",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Smith, Agard, Roys, Taylor, Spreitzer and Carpenter; +cosponsored by Representatives Conley, Andraca, Clancy, Bare, Subeck, Palmeri, Jacobson, Shankland, J. Anderson, Moore Omokunde, Stubbs, Emerson, Joers, Neubauer, Baldeh, Ratcliff, Vining, Shelton, Madison and Drake",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, S. Johnson, Armstrong, Bodden, Brandtjen, Dittrich, Donovan, Goeben, Gundrum, Maxey, Michalski, O'Connor, Rettinger and Schraa",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Behnke, Goeben, Gustafson, Murphy and Schmidt",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Born, Behnke, Cabrera, Dallman, Edming, Hong, Myers, Novak, Palmeri and Clancy; +cosponsored by Senators Felzkowski, Quinn, Roys, Spreitzer and Taylor",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Smith, Taylor, L. Johnson, Larson, Roys, Spreitzer and Agard; +cosponsored by Representatives Joers, Subeck, Hong, Conley, Emerson, Andraca, Ratcliff, Vining, Bare, Shelton, Considine, Ohnstad, Sinicki, J. Anderson, Palmeri, Stubbs, Jacobson, Madison and Clancy",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Haywood, Sinicki, Ratcliff, Considine, Bare, Emerson, Conley, Palmeri, Ohnstad, Joers, J. Anderson, Stubbs, Drake, Subeck, Clancy and Jacobson; +cosponsored by Senators Roys, Taylor, L. Johnson, Smith, Spreitzer, Hesselbein, Larson and Agard",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Snodgrass, J. Anderson, Andraca, Baldeh, Bare, Cabrera, Conley, Considine, Emerson, Goyke, Hong, Joers, Madison, Moore Omokunde, Ohnstad, Palmeri, Ratcliff, Vining and Clancy; +cosponsored by Senators Larson, Roys and Spreitzer",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Testin, Ballweg, Felzkowski and Spreitzer; +cosponsored by Representatives Tranel, VanderMeer, Shankland, Edming, Krug, Mursau and Spiros",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Feyen, Quinn and Spreitzer; +cosponsored by Representatives Plumer, Dittrich, Emerson, Green, Gundrum, Jacobson, Kitchens, Melotik, Michalski, Nedweski, Penterman, Rettinger, Sapik, Schmidt, Steffen and Swearingen",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Shankland, C. Anderson, J. Anderson, Conley, Considine, Drake, Emerson, Joers, Neubauer, Palmeri, Ratcliff, Sinicki and Stubbs; +cosponsored by Senators Hesselbein, Spreitzer, Agard, Larson, Pfaff, Roys, Smith, Taylor and Wirch",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Marklein and Nass; +cosponsored by Representatives Steffen, Murphy, O'Connor, Pronschinske, Sinicki and Wichgers",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Ballweg, Bradley, Cabral-Guevara, Feyen, Hutton, Knodl, Marklein, Quinn, Roys, Spreitzer and Wanggaard; +cosponsored by Representatives Rettinger, Donovan, C. Anderson, Bare, Behnke, Callahan, Dittrich, Goeben, Green, Jacobson, Kurtz, Melotik, Michalski, Moses, Mursau, Nedweski, O'Connor, Ohnstad, Rozar, Spiros, Subeck, Tittl, Wichgers and Magnafici",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Carpenter, Wirch, Roys, Hesselbein, Spreitzer, Agard and Larson; +cosponsored by Representatives Doyle, Billings, Subeck, Shankland, Conley, Ratcliff, Palmeri, Ortiz-Velez, Joers, Ohnstad, Considine, C. Anderson, Andraca, Clancy and Haywood",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn and Marklein; +cosponsored by Representatives Zimmerman, Gustafson, Allen, Armstrong, Behnke, Binsfeld, Dittrich, Duchow, Green, Kitchens, Kurtz, Macco, Murphy, Mursau, Novak, O'Connor, Penterman, Plumer, Pronschinske, Rettinger, Sortwell, Spiros, Steffen, Tittl, Wichgers and Wittke",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James and Quinn; +cosponsored by Representatives Summerfield, Hurd, Moses, Petryk, Pronschinske, Armstrong and Rozar",2024-02-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Roys, Smith, Spreitzer and Taylor; +cosponsored by Representatives Vining, Snodgrass, Conley, J. Anderson, Andraca, Baldeh, Bare, Considine, Emerson, Hong, Joers, Moore Omokunde, Myers, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs, Subeck, Drake, Jacobson and Clancy",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, L. Johnson, Agard, Carpenter, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Shankland, Sinicki, Ohnstad, C. Anderson, J. Anderson, Bare, Cabrera, Clancy, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, Madison, Moore Omokunde, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Snodgrass, Stubbs, Subeck and Vining",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Agard, Roys, Hesselbein, Spreitzer, Stroebel, Larson, Wirch and Marklein; +cosponsored by Representatives Dittrich, Subeck, Penterman, Krug, Gundrum, Bodden, Rozar, Emerson, Rodriguez, Schutt, Kitchens, Sinicki, Andraca, Brooks, Green, Joers, Brandtjen, Ortiz-Velez, Conley, Gustafson, Jacobson, Allen, J. Anderson, Clancy, C. Anderson, Ohnstad, Madison, Considine, S. Johnson, Baldeh, Mursau and Stubbs",2023-03-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Nedweski, C. Anderson, Armstrong, Dittrich, Duchow, Goeben, Gundrum, Kitchens, Macco, Maxey, Murphy, Petryk, Rettinger, Sapik, Steffen, Mursau and Penterman; +cosponsored by Senators Stroebel, Ballweg, Felzkowski, Pfaff, Smith, Spreitzer and Quinn",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Sinicki, Ohnstad, C. Anderson, J. Anderson, Bare, Cabrera, Clancy, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, Madison, Moore Omokunde, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Snodgrass, Stubbs, Subeck and Vining; +cosponsored by Senators Hesselbein, L. Johnson, Agard, Carpenter, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee for Review of Administrative Rules,2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley, Jacque and Nass; +cosponsored by Representatives Gundrum, Armstrong, Bodden, Brooks, Dittrich, Penterman, Rettinger and Wichgers",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Armstrong, O'Connor, Brooks, Emerson, Steffen, C. Anderson, Doyle, Duchow, Edming, Green, Joers, Murphy, Ortiz-Velez, Penterman, Petryk, Plumer, Rozar, Schraa, Sinicki, Snyder, Swearingen, Wichgers, Shankland and Krug; +cosponsored by Senators Quinn, Jacque, Cabral-Guevara and Jagler",2023-05-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Callahan, Edming, Gustafson, Green, Magnafici, Michalski, O'Connor, Schmidt, Snyder and Swearingen; +cosponsored by Senators Tomczyk, Ballweg, Cowles, Felzkowski, Quinn, Testin and Nass",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Haywood, Allen, Baldeh, Bare, Emerson, Jacobson, Moore Omokunde, O'Connor, Sinicki, Subeck and Ohnstad; +cosponsored by Senators James and Spreitzer",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, Knodl and Tomczyk; +cosponsored by Representatives O'Connor, S. Johnson, Plumer, Maxey, Gundrum, Mursau, Kitchens, Callahan, Dittrich, Behnke, Edming, Schraa and Hurd",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Krug, Brooks, Allen, Edming, Moses, Murphy, O'Connor, Penterman, Schraa, Snyder, Sortwell and Spiros; +cosponsored by Senators Stroebel, Quinn, Jagler and Testin",2023-05-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Emerson, Bare, Melotik, Jacobson, Andraca, Behnke, Conley, Dittrich, Joers, Mursau, O'Connor, Palmeri, Petryk, Ratcliff, Shankland, Shelton, Sinicki, Stubbs, Subeck and Ohnstad; +cosponsored by Senators Feyen, Agard, Spreitzer, Ballweg, Larson, Marklein, Roys and Wirch",2024-02-12T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2023-06-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Krug, Armstrong, Dittrich, Mursau and Rettinger; +cosponsored by Senators Testin, Ballweg, Felzkowski, Nass, Wanggaard and Roys",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Macco, Wittke, C. Anderson, Armstrong, Behnke, Conley, Dittrich, Donovan, Edming, Gustafson, Joers, Kitchens, Maxey, Michalski, O'Connor, Ohnstad, Ortiz-Velez, Petryk, Snyder, Wichgers and Sinicki; +cosponsored by Senators Testin, Carpenter, Ballweg, Hesselbein, Marklein and Quinn",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Carpenter, Roys, Spreitzer, Agard, Larson, Hesselbein, Taylor and Smith; +cosponsored by Representatives Andraca, Stubbs, C. Anderson, J. Anderson, Baldeh, Bare, Cabrera, Conley, Considine, Donovan, Drake, Emerson, Goyke, Haywood, Jacobson, Joers, Madison, McGuire, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Sinicki, Snodgrass, Subeck and Vining",2023-06-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Cabral-Guevara, Felzkowski, L. Johnson and Testin; +cosponsored by Representatives Penterman, Gustafson, Born, Gundrum, Mursau, Novak, Ohnstad, Snodgrass, Stubbs, Tusler, VanderMeer and Myers",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Larson, Taylor and Marklein; +cosponsored by Representatives Mursau, Edming, Myers, Armstrong, Brandtjen, Dittrich, Goeben, Murphy, O'Connor, Rettinger, Rozar, Schraa, Snyder and Joers",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Roys, Larson, Spreitzer, Agard, Carpenter and Pfaff; +cosponsored by Representatives Dittrich, Subeck, Donovan, C. Anderson, Bare, Rozar, Drake, Emerson, Joers, Binsfeld, Stubbs, Sinicki, Mursau, Ratcliff, Neubauer, Moore Omokunde, O'Connor, Clancy, Shankland, Palmeri, Conley, Tranel, Schutt and Armstrong",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Tittl, Brooks, Donovan, Edming, Murphy, Mursau and Spiros; +cosponsored by Senator Wanggaard",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Agard, Jacque, Taylor, L. Johnson, Carpenter, Cabral-Guevara and Spreitzer; +cosponsored by Representatives Sinicki, Snodgrass, Bare, Joers, Drake, Palmeri, Doyle, Ratcliff, Gustafson, Ortiz-Velez, Considine, Ohnstad, Andraca, Emerson, Jacobson, Shankland, Shelton, Mursau, Conley, Stubbs and Edming",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Billings, Shankland, C. Anderson, Bare, Cabrera, Considine, Donovan, Emerson, Joers, Moore Omokunde, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Stubbs, Subeck, Sinicki, Clancy and Jacobson; +cosponsored by Senators Pfaff, Carpenter, Hesselbein, L. Johnson, Larson, Roys, Smith and Spreitzer",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Spreitzer; +cosponsored by Representatives Krug, Allen, Cabrera, Gundrum, Mursau, Myers, Ortiz-Velez, Rettinger, Schraa, Subeck, Wichgers and Sinicki",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Emerson, Moore Omokunde, Bare, Goyke, Baldeh, Myers, Jacobson, Subeck, Considine, Conley, Ratcliff, C. Anderson, J. Anderson, Ortiz-Velez, Joers, Palmeri, Madison and Clancy; +cosponsored by Senators Taylor, Spreitzer, Larson, Hesselbein and Smith",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Krug, Armstrong, Baldeh, Dittrich, Magnafici, Nedweski, O'Connor, Palmeri, Snyder, Spiros, Penterman, Donovan, Goeben, Schmidt and Kitchens; +cosponsored by Senators Tomczyk, Hesselbein, Ballweg and Spreitzer",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Carpenter, Spreitzer, Agard, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Taylor and Wirch; +cosponsored by Representatives Cabrera, Neubauer, Snodgrass, Clancy, Ratcliff, C. Anderson, J. Anderson, Andraca, Bare, Conley, Emerson, Hong, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Palmeri, Riemer, Shankland, Shelton, Sinicki, Subeck and Vining",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives C. Anderson, Bare, Clancy, Jacobson, Joers, Madison, Palmeri, Ratcliff, Emerson, J. Anderson, Andraca, Drake, Hong, Moore Omokunde, Myers, Neubauer, Riemer, Sinicki, Stubbs, Vining and Haywood; +cosponsored by Senators Smith, Roys, Larson, Hesselbein, Spreitzer, Taylor and Agard",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, L. Johnson, Carpenter, Felzkowski, Hesselbein, Jacque, Roys and Spreitzer; +cosponsored by Representatives Rozar, Vining, Snyder, Andraca, Armstrong, C. Anderson, Bare, Cabrera, Clancy, Conley, Considine, Drake, Duchow, Goyke, Haywood, Hong, Joers, Madison, Moore Omokunde, Myers, Palmeri, Ratcliff, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, O'Connor and Shankland",2023-05-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Michalski, C. Anderson, Andraca, Behnke, Brooks, Conley, Considine, Duchow, Edming, Gundrum, Joers, Krug, Maxey, Rettinger, Schmidt, Subeck, Ortiz-Velez and Jacobson; +cosponsored by Senators Stroebel, Spreitzer, Knodl, Ballweg, Felzkowski and James",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Carpenter, Spreitzer, Agard, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Taylor and Wirch; +cosponsored by Representatives Cabrera, Snodgrass, Neubauer, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Clancy, Conley, Considine, Drake, Emerson, Goyke, Haywood, Hong, Joers, Madison, Moore Omokunde, Myers, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Subeck, Vining, Stubbs and S. Johnson",2023-06-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Cowles and Quinn; +cosponsored by Representatives Plumer, Armstrong, Gundrum, Novak, O'Connor, Ohnstad and Spiros",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Haywood, Vos and Drake; +cosponsored by Senators Wanggaard and L. Johnson",2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Quinn; +cosponsored by Representatives Goeben, Armstrong, Behnke, Born, Dittrich, Hong, Hurd, S. Johnson, Murphy, O'Connor and Summerfield",2024-01-30T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Cabral-Guevara, James and Marklein; +cosponsored by Representatives Kitchens, Magnafici, Duchow, Tusler, Binsfeld, Sapik, Rodriguez, August, Born, Callahan, Dallman, Dittrich, Green, Hurd, S. Johnson, Knodl, Krug, Kurtz, Macco, Maxey, Michalski, Mursau, Nedweski, Novak, Oldenburg, Plumer, Rozar, Snyder, Spiros, Steffen, Subeck, Summerfield, Swearingen, Vos, Wittke and Sinicki",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and Cabral-Guevara; +cosponsored by Representatives Tusler, Murphy, Brooks and Wichgers",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Stubbs, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Drake, Emerson, Joers, Moore Omokunde, Ohnstad, Palmeri, Shelton, Sinicki, Snodgrass and Jacobson; +cosponsored by Senators Larson, Smith, L. Johnson, Hesselbein and Spreitzer",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Magnafici, Behnke, Brandtjen, Brooks, Edming, Goeben, Green, Gundrum, Gustafson, Kitchens, Michalski, Murphy, O'Connor, Rozar, Schutt and Steffen; +cosponsored by Senators Tomczyk, Ballweg and James",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk and Ballweg; +cosponsored by Representatives Spiros, Novak, Allen, Armstrong, Baldeh, Gundrum, Kitchens, Krug, Moses, Murphy, Mursau, O'Connor, Ratcliff and Steffen",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Agard, Taylor, Feyen, Hutton, Roys, Smith, Spreitzer and Larson; +cosponsored by Representatives Gundrum, Billings, Andraca, Binsfeld, Conley, Dittrich, Edming, Joers, Maxey, Ohnstad, Palmeri, Rettinger, Rozar, Sinicki, Stubbs and Subeck",2023-05-18T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Senators LeMahieu and Kapenga,2023-06-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Billings, Kitchens, Duchow, Penterman, Krug, Murphy, Joers, Bare, Drake, Emerson, Magnafici, Stubbs, Vining, Ratcliff, Allen, Binsfeld, Gundrum, Sinicki, Moore Omokunde, Conley, Green, C. Anderson, Tittl, Mursau, Madison, O'Connor, Schraa, Palmeri, S. Johnson and Shankland; +cosponsored by Senators L. Johnson, James, Wirch, Carpenter, Smith, Ballweg, Agard and Testin",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Haywood, Bare, Emerson, Ohnstad, Moore Omokunde, Stubbs, Ratcliff, Joers, C. Anderson, Palmeri, Sinicki, Jacobson, Andraca, Hong, Madison, Drake, Clancy and Goyke; +cosponsored by Senators L. Johnson, Carpenter, Taylor, Roys, Spreitzer, Larson, Agard and Hesselbein",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Cowles and Testin; +cosponsored by Representatives Steffen, Edming, Bodden, Green, Maxey, Mursau, Plumer, Rettinger, Schmidt, Spiros, Swearingen, VanderMeer and Wittke",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Cabrera, Neubauer, Snodgrass, Clancy, Ratcliff, C. Anderson, J. Anderson, Andraca, Bare, Conley, Emerson, Hong, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Palmeri, Riemer, Shankland, Shelton, Sinicki, Subeck and Vining; +cosponsored by Senators Carpenter, Spreitzer, Agard, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Taylor, Wirch and Felzkowski",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Cabral-Guevara, Cowles, Marklein, Spreitzer and Wirch; +cosponsored by Representatives Duchow, Neylon, Armstrong, Behnke, Conley, Dittrich, Donovan, Green, Haywood, Kitchens, Magnafici, Moses, Nedweski, Ohnstad, Ortiz-Velez, Petryk, Rodriguez, Rozar, Schmidt, Shankland, Sinicki, Spiros, Subeck, Stubbs and Andraca",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Cabral-Guevara and Cowles; +cosponsored by Representatives Penterman, Rozar, Hurd, Behnke, Schmidt, O'Connor, Mursau, Melotik, Goeben, Edming and S. Johnson",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Edming, Andraca, Behnke, Donovan, Kitchens, Knodl, Magnafici, Maxey, Ohnstad, Rozar, Sinicki, Spiros, Subeck, Tusler and Jacobson; +cosponsored by Senators James, Cowles, Felzkowski, Marklein and Taylor",2023-02-10T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Wirch, Bradley, Carpenter, Cowles, Felzkowski, Hutton, Jacque, James, Pfaff, Smith, Spreitzer and Testin; +cosponsored by Representatives Donovan, McGuire, Andraca, Baldeh, C. Anderson, J. Anderson, Callahan, Duchow, Edming, Emerson, Goeben, Gundrum, Joers, Kurtz, Nedweski, Novak, Ohnstad, Palmeri, Rettinger, Rodriguez, Rozar, Schmidt, Schutt, Sinicki, Sortwell, Spiros, Subeck, Tusler, Wichgers, Wittke, Shankland, Steffen and Mursau",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Baldeh, Binsfeld, Conley, Gundrum, O'Connor, Palmeri and Subeck; +cosponsored by Senators Cabral-Guevara and Spreitzer",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Felzkowski, Ballweg, Bradley, Taylor and Tomczyk; +cosponsored by Representatives Tusler, Brandtjen, Hurd, S. Johnson, Murphy, Mursau, Nedweski, Ortiz-Velez, Plumer, Sinicki and Subeck",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Jagler, Bradley and Wimberger; +cosponsored by Representatives Kitchens, Wittke, Binsfeld, Nedweski, Duchow, Dittrich, Allen, Armstrong, Behnke, Brandtjen, Donovan, Green, Gundrum, Gustafson, Hurd, Krug, Magnafici, Maxey, Michalski, Murphy, O'Connor, Penterman, Rettinger, Rodriguez, Rozar, Schmidt, Snyder, Spiros, Steffen, Summerfield and Tusler",2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Murphy, Rozar, Allen, Behnke, Bodden, Brandtjen, Callahan, Edming, Magnafici, Michalski, O'Connor, Penterman, Rettinger, Schraa and Schutt; +cosponsored by Senators Nass, Cabral-Guevara and Stroebel",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Stroebel and Tomczyk; +cosponsored by Representatives Gustafson, Murphy, O'Connor, Schmidt, Brandtjen and Moses",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Krug, Allen, Cabrera, Gundrum, Mursau, Myers, Ortiz-Velez, Rettinger, Schraa, Sinicki, Subeck, Tittl, Wichgers, Jacobson and Haywood; +cosponsored by Senators Jacque and Spreitzer",2023-02-10T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Ballweg, Feyen, Jacque, Jagler, James, L. Johnson, Smith and Spreitzer; +cosponsored by Representatives Born, Allen, Armstrong, Behnke, Brooks, Callahan, C. Anderson, Dittrich, Donovan, Edming, Emerson, Green, Gustafson, Joers, Kitchens, Krug, Macco, Magnafici, Moses, Murphy, Mursau, Nedweski, Novak, O'Connor, Penterman, Petryk, Plumer, Ratcliff, Rodriguez, Rozar, Schraa, Shankland, Snyder, Sortwell, Spiros, Steffen, Subeck, Summerfield, Tranel, Tusler, VanderMeer, Wittke and Zimmerman",2023-02-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Snodgrass, Palmeri, J. Anderson, Andraca, Baldeh, Considine, Emerson, Hong, Jacobson, Joers, Moore Omokunde, Ortiz-Velez, Ratcliff, Sinicki, Stubbs, Subeck, Haywood and Clancy; +cosponsored by Senators Smith, Hesselbein, L. Johnson, Larson, Roys, Spreitzer and Agard",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wichgers, Brandtjen, Allen, Tusler and Murphy; +cosponsored by Senators Jacque and Nass",2023-02-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Marklein and Quinn; +cosponsored by Representatives Dallman, Kurtz, Donovan, Novak, O'Connor and Melotik",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Zimmerman, Sinicki, Nedweski, Gundrum, Mursau, Bare, Binsfeld, Conley, Stubbs, Ohnstad, Murphy, Edming, Jacobson, Tittl, O'Connor, Subeck, Moses, Drake, Emerson, Tusler, Shankland and Ratcliff; +cosponsored by Senators Testin, Wirch, Spreitzer, Agard and Larson",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Drake, Subeck, Stubbs, Considine, Moore Omokunde, Emerson, Andraca, Jacobson, Palmeri, Joers, Neubauer, Ratcliff, Baldeh, J. Anderson, Ohnstad, Clancy, Shelton, Sinicki, Vining, C. Anderson, Madison and Shankland; +cosponsored by Senators Taylor, L. Johnson, Roys, Agard, Spreitzer, Hesselbein, Smith, Carpenter and Larson",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schutt, Armstrong, C. Anderson, Behnke, Bodden, Edming, Kurtz, Moses, Mursau, Novak, Oldenburg, Penterman, Rozar and Tranel; +cosponsored by Senators Ballweg, Cowles, Marklein, Nass, Pfaff, Spreitzer, Testin and Wanggaard",2023-03-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Cowles and Testin; +cosponsored by Representatives Tittl, Behnke, Conley, Dittrich, Murphy, Myers, Sinicki, Snodgrass, Stubbs, Subeck and Wichgers",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Behnke, Edming, Green, Mursau, Steffen and VanderMeer; +cosponsored by Senator James",2023-02-10T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Allen, Andraca, Armstrong, Baldeh, Bare, Behnke, Binsfeld, Cabrera, Clancy, Dittrich, Drake, Duchow, Edming, Emerson, Goeben, Gundrum, Haywood, Joers, Kitchens, Magnafici, Moses, Murphy, Mursau, Oldenburg, Ortiz-Velez, Penterman, Plumer, Rodriguez, Schutt, Shankland, Shelton, Sinicki, Snodgrass, Spiros, Subeck, Tranel, Vining, Madison and Stubbs; +cosponsored by Senators Ballweg, Agard, Carpenter, Cowles, Felzkowski, Hesselbein, Jacque, L. Johnson, Marklein, Pfaff, Roys, Smith, Spreitzer, Taylor, Tomczyk and Wirch",2023-02-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, L. Johnson, Carpenter, Hesselbein, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Vining, Emerson, Palmeri, Considine, Moore Omokunde, J. Anderson, C. Anderson, Baldeh, Bare, Conley, Drake, Goyke, Hong, Joers, Ohnstad, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Haywood, Jacobson, Clancy, Doyle, Ortiz-Velez, Andraca, Billings and Neubauer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Armstrong, Callahan, Billings, Emerson, S. Johnson, Mursau, Palmeri, Rozar, Schmidt, Schraa, Steffen, Swearingen and Tittl; +cosponsored by Senators Bradley, Feyen, Larson, Quinn and Testin",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Quinn; +cosponsored by Representatives Pronschinske, Dallman, Armstrong, Behnke, O'Connor, Schmidt and Wichgers",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Nass and Tomczyk; +cosponsored by Representatives Tittl, Allen, Armstrong, Behnke, Brandtjen, Dittrich, Goeben, Michalski, Murphy, Mursau, O'Connor, Rettinger, Rozar and Wichgers",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative Zimmerman,2024-01-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Cowles, LeMahieu, Ballweg, Felzkowski, Feyen, James, Testin and Wimberger; +cosponsored by Representatives Born, Wittke, Vos, Behnke, Binsfeld, Duchow, Katsma, Krug, Kurtz, Magnafici, Maxey, Melotik, Mursau, Novak, O'Connor, Penterman, Plumer, Schmidt, Swearingen and Murphy",2024-01-10T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Cowles, Pfaff, Spreitzer and Wanggaard; +cosponsored by Representatives Goeben, Behnke, C. Anderson, Brandtjen, Dittrich, Edming, Gundrum, Gustafson, Kitchens, Maxey, Moses, Murphy, Novak, O'Connor, Oldenburg, Palmeri, Penterman, Sapik, Schmidt, Schutt, Sortwell, Subeck and Tranel",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Shelton, Armstrong, Sinicki, Gundrum, Billings, Rozar, Cabrera, Subeck, Kitchens, Schraa, Conley, Mursau, Murphy, Drake, Stubbs, Snodgrass, Duchow and Shankland",2023-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Behnke, Joers, Knodl, Andraca, Baldeh, Doyle, Gustafson, Murphy, O'Connor, Ratcliff, Shankland, Subeck and Jacobson; +cosponsored by Senators Jacque, Hesselbein and Spreitzer",2023-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Carpenter, Cabral-Guevara, Hesselbein, James, Spreitzer, Taylor and Tomczyk; +cosponsored by Representatives Tittl, Wittke, J. Anderson, Bare, Baldeh, Cabrera, Clancy, Conley, Duchow, Gundrum, Haywood, Madison, Magnafici, Mursau, O'Connor, Ortiz-Velez, Riemer, Rozar, Sinicki, Spiros, Subeck, Summerfield, Tusler and Vining",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sapik, Kurtz, Oldenburg, Dittrich, Tusler, Summerfield, Plumer, Novak, Snyder, Penterman, VanderMeer, Callahan, Melotik, Donovan and Zimmerman; +cosponsored by Senators Testin, Feyen and Wirch",2023-11-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Allen, Behnke, Brooks, Callahan, Dittrich, Donovan, Edming, Gundrum, Knodl, Krug, Moses, Murphy, Mursau, Neylon, O'Connor, Penterman, Schutt, Steffen, Tusler and Zimmerman; +cosponsored by Senators Wimberger, Ballweg, Bradley, Felzkowski, Jagler, James, Marklein, Nass, Quinn, Stroebel and Wanggaard",2023-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Agard and Spreitzer; +cosponsored by Representatives Shelton, Snodgrass, Andraca, Clancy, Conley, Considine, Moore Omokunde, Palmeri, Ratcliff, Sinicki, Stubbs and Subeck",2024-03-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Penterman, Allen and Donovan",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Shankland, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, Madison, McGuire, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Shelton, Snodgrass, Stubbs, Subeck and Vining; +cosponsored by Senators Wirch, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Roys, Smith, Spreitzer and Taylor",2023-10-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Kurtz, Allen, Andraca, Armstrong, Baldeh, Behnke, Billings, Bodden, Brandtjen, Conley, Dittrich, Donovan, Doyle, Drake, Duchow, Emerson, Goyke, Green, Joers, Kitchens, Krug, Madison, Michalski, Moore Omokunde, Mursau, Novak, O'Connor, Ohnstad, Oldenburg, Ortiz-Velez, Ratcliff, Riemer, Rodriguez, Schmidt, Schraa, Shankland, Sinicki, Snodgrass, Snyder, Stubbs, Subeck, Summerfield, Tusler, VanderMeer, Vining, Wichgers, Jacobson and Shelton; +cosponsored by Senators Ballweg, Felzkowski, Carpenter, Cowles, Feyen, Hesselbein, James, L. Johnson, Larson, Pfaff, Quinn, Roys, Spreitzer, Taylor and Wimberger",2023-03-21T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Quinn and Stafsholt; +cosponsored by Representatives Green and Schmidt",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Smith, Carpenter, Hesselbein, Larson and Roys; +cosponsored by Representatives Snodgrass, Considine, C. Anderson, J. Anderson, Andraca, Cabrera, Baldeh, Bare, Behnke, Billings, Conley, Haywood, Jacobson, Emerson, Joers, Moore Omokunde, Palmeri, Ohnstad, Ratcliff, Shelton, Sinicki, Stubbs, Subeck and Vining",2023-07-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Shelton, C. Anderson, J. Anderson, Bare, Cabrera, Conley, Drake, Emerson, Joers, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Stubbs, Clancy and Madison; +cosponsored by Senators Carpenter, Cabral-Guevara, Larson, Roys, Spreitzer and Taylor",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Ballweg and Knodl; +cosponsored by Representatives Gundrum, Armstrong, Dittrich, Murphy, Penterman, Rettinger and Steffen",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Carpenter, Hesselbein and Larson; +cosponsored by Representatives Snodgrass, Shelton, Conley, Hong, Joers, Krug, Maxey, Moore Omokunde, Ohnstad, Ratcliff, Sinicki, Stubbs and Jacobson",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Edming, Snodgrass, Armstrong, Callahan, Conley, Joers, Maxey, Ohnstad, Ortiz-Velez, Ratcliff, Schmidt, Sinicki, Subeck and Mursau; +cosponsored by Senators Ballweg, Carpenter, Jacque, Spreitzer and Wirch",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Krug, Considine, Conley, Doyle, Green, Joers, Schmidt and Subeck; +cosponsored by Senators Testin, Hesselbein, Feyen, Spreitzer and Wanggaard",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Bradley, Cabral-Guevara and Spreitzer; +cosponsored by Representatives August, Kitchens, O'Connor, Subeck, Krug, Plumer, Novak, Penterman, Hurd, Binsfeld, Allen, Rettinger, Murphy, Brandtjen, Melotik, Mursau, Gustafson, Petryk, Michalski and Schmidt",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Zimmerman, Allen, C. Anderson, Behnke, Brandtjen, Cabrera, Dittrich, Duchow, Kitchens, Moses, Mursau, O'Connor, Ohnstad, Ortiz-Velez, Sinicki, Spiros and Wichgers; +cosponsored by Senators James, Feyen, Hesselbein and Taylor",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Andraca, Jacobson, Ratcliff, Joers, Shankland, Subeck, Emerson, Conley, Sinicki, Moore Omokunde, Hong, Bare, Ohnstad and Palmeri; +cosponsored by Senators Agard and Smith",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Ballweg, Tomczyk, Wanggaard and Spreitzer; +cosponsored by Representatives Dallman, Swearingen, Allen, Bare, Clancy, Considine, Dittrich, Edming, Goeben, Green, Kitchens, Krug, Maxey, Murphy, Plumer, Rettinger, Schraa, Shankland, Sinicki, Snodgrass, Snyder, Steffen, Subeck, Wittke and VanderMeer",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Shelton, C. Anderson, Bare, Billings, Cabrera, Conley, Considine, Drake, Emerson, Goyke, Hong, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Stubbs, Sinicki, Haywood, Clancy and Jacobson; +cosponsored by Senators Smith, L. Johnson, Hesselbein, Larson, Roys, Spreitzer, Taylor and Wirch",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Ratcliff, Jacobson, C. Anderson, Considine, Shankland, J. Anderson, Baldeh, Cabrera, Clancy, Conley, Haywood, Hong, Joers, Ohnstad, Palmeri, Sinicki, Snodgrass, Stubbs and Vining; +cosponsored by Senators Larson, L. Johnson, Smith, Roys, Hesselbein, Agard, Spreitzer, Carpenter and Pfaff",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Armstrong, Behnke, Bodden, Donovan, Edming, Green, Gundrum, Kitchens, Magnafici, Murphy, Oldenburg, Penterman, Rettinger, Rodriguez, Schmidt, Snyder, Tittl, Tusler and Wichgers; +cosponsored by Senators Quinn, Jacque and Stroebel",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Pfaff, Ballweg, Agard, Carpenter, Hesselbein, Larson, Roys and Spreitzer; +cosponsored by Representatives Snodgrass, Considine, Allen, C. Anderson, J. Anderson, Andraca, Bare, Behnke, Cabrera, Baldeh, Billings, Conley, Emerson, Haywood, Hong, Jacobson, Moore Omokunde, Joers, Ohnstad, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Sortwell, Stubbs and Subeck",2023-07-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Carpenter, Roys, Larson, Spreitzer and Agard; +cosponsored by Representatives Stubbs, Moore Omokunde, Ratcliff, Snodgrass, Bare, C. Anderson, Joers, Conley, Ohnstad, Clancy, Madison, Myers, Haywood, Cabrera, Emerson, Hong, Shelton, Ortiz-Velez, Baldeh, Neubauer, Shankland, Vining, Considine, Palmeri, Subeck, Drake and Sinicki",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Vos; +cosponsored by Senators Stroebel, Hutton and Jagler",2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Goyke, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Considine, Doyle, Emerson, Haywood, Hong, Joers, Krug, Madison, Moore Omokunde, Mursau, Novak, Ohnstad, Ortiz-Velez, Riemer, Rozar, Schraa, Shelton, Sinicki, Snodgrass, Snyder, Spiros, Subeck, Vining, Wichgers, Shankland and Jacobson; +cosponsored by Senators Jacque, Spreitzer, Cabral-Guevara, Carpenter, Felzkowski, Hesselbein, James, Roys, Taylor and Wirch",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk and Spreitzer; +cosponsored by Representatives Hurd, Vining, Behnke, Penterman, Rozar, Schmidt, Joers, Ratcliff, Baldeh, Bare, C. Anderson, Conley, Considine, Drake, Emerson, J. Anderson, S. Johnson, Madison, Mursau, O'Connor, Ohnstad, Palmeri, Shankland, Shelton, Sinicki, Stubbs, Subeck and Summerfield",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators LeMahieu, Ballweg, Bradley, Cabral-Guevara, Feyen, James, Nass, Stroebel, Tomczyk, Hutton, Kapenga and Felzkowski; +cosponsored by Representatives Brooks, Allen, Bodden, Brandtjen, Dittrich, Gundrum, Gustafson, Knodl, Magnafici, Murphy, Penterman, Rettinger, Rozar, Spiros, Tusler, Behnke, Schraa, Moses and Donovan",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel and Quinn; +cosponsored by Representatives Maxey, Michalski, Behnke, Bodden, Dittrich, Goeben, Gundrum, Gustafson, Kitchens, Magnafici, Murphy, O'Connor, Rettinger, Rozar, Schmidt, Schutt and Penterman",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Carpenter, Cabral-Guevara, Roys and Spreitzer; +cosponsored by Representatives Gustafson, Magnafici, Ratcliff, Mursau, Clancy, C. Anderson, Sinicki, Jacobson, Krug, Dittrich, Shankland, Emerson, Joers, Subeck and Bare",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, Andraca, Subeck, C. Anderson, J. Anderson, Bare, Billings, Cabrera, Clancy, Conley, Considine, Drake, Doyle, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, Madison, Myers, Moore Omokunde, Ohnstad, Palmeri, Ratcliff, Riemer, Sinicki, Snodgrass, Shelton and Vining; +cosponsored by Senators L. Johnson, Carpenter, Hesselbein, Larson, Pfaff, Spreitzer and Smith",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gundrum, Billings, Andraca, Binsfeld, Conley, Dittrich, Edming, Joers, Maxey, Ohnstad, Palmeri, Rettinger, Rozar, Sinicki, Stubbs and Subeck; +cosponsored by Senators James, Agard, Taylor, Feyen, Hutton, Roys, Smith and Spreitzer",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Hesselbein, Ballweg, Cowles, Felzkowski, Feyen, Roys, Spreitzer, Stroebel, Tomczyk and Wanggaard; +cosponsored by Representatives S. Johnson, Kitchens, Bare, Behnke, Brandtjen, Cabrera, Conley, Considine, Emerson, Green, Joers, Murphy, O'Connor, Penterman, Mursau and Stubbs",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley, Cabral-Guevara, Felzkowski, Jacque, James, Quinn, Stafsholt, Testin and Knodl; +cosponsored by Representatives Moses, August, Armstrong, Behnke, Bodden, Callahan, Donovan, Edming, Goeben, Gundrum, Krug, Magnafici, Murphy, O'Connor, Penterman, Plumer, Rettinger, Schmidt, Steffen and Wichgers",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Petryk, Armstrong, Behnke, Binsfeld, Conley, Dittrich, Drake, Duchow, Edming, Gundrum, S. Johnson, Kitchens, Melotik, Michalski, Murphy, Mursau, Nedweski, Novak, O'Connor, Penterman, Pronschinske, Rettinger, Rozar, Schutt, Snyder, Spiros, Steffen, Tranel, Wittke, Shankland and Ohnstad; +cosponsored by Senators Feyen, Cabral-Guevara, Cowles, Felzkowski, Knodl, Marklein and L. Johnson",2023-10-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives O'Connor, Plumer, S. Johnson, Maxey, Gundrum, Mursau, Kitchens, Callahan, Dittrich, Behnke, Edming, Schraa and Hurd; +cosponsored by Senators Wimberger, Knodl and Tomczyk",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl and Cabral-Guevara; +cosponsored by Representatives Binsfeld, Behnke, Conley, Dittrich, Donovan, Edming, Green, Joers, Melotik, Murphy, Mursau, Nedweski, O'Connor, Palmeri, Schmidt, Stubbs, Subeck, Snyder and Madison",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Stroebel; +cosponsored by Representative Wittke",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James and Ballweg; +cosponsored by Representatives Steffen, C. Anderson, Armstrong, Behnke, Binsfeld, Bodden, Callahan, Clancy, Donovan, Edming, Hurd, Green, Gustafson, Magnafici, Maxey, Murphy, O'Connor, Sinicki, Subeck and Wichgers",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Brooks and Macco; +cosponsored by Senators Cabral-Guevara and Felzkowski",2023-09-05T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rodriguez, Armstrong, Baldeh, Behnke, Brooks, Duchow, Green, Gustafson, Mursau, Shankland and Subeck; +cosponsored by Senators Cowles and Wimberger",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives O'Connor, Macco, Katsma, Armstrong, Donovan, Nedweski, Steffen, Callahan, Magnafici, Rozar, Melotik, Wittke, Maxey, Penterman, Behnke, Rettinger, Mursau, Bare and Dittrich; +cosponsored by Senators Quinn, Testin, Ballweg and Marklein",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, C. Anderson, Clancy, Drake, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Ortiz-Velez, Palmeri, Shankland, Shelton, Snodgrass, Stubbs and Subeck; +cosponsored by Senators L. Johnson and Smith",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Clancy, Ratcliff, Palmeri, Baldeh, Cabrera, Drake, Emerson, Shelton, Sinicki, Snodgrass, Stubbs, C. Anderson, J. Anderson, Conley, Hong, Jacobson, Joers, Moore Omokunde, Ohnstad and Subeck; +cosponsored by Senators Roys, Larson, Hesselbein, L. Johnson and Spreitzer",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Roys, Taylor, Hesselbein, Larson and Spreitzer; +cosponsored by Representatives Billings, J. Anderson, Joers, C. Anderson, Clancy, Conley, Drake, Emerson, Jacobson, Madison, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs, Subeck and Vining",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Felzkowski; +cosponsored by Representative Callahan",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Larson and Hesselbein; +cosponsored by Representatives Stubbs, Madison, Considine, Moore Omokunde, Conley, Joers, Clancy, Ohnstad, Jacobson, Shelton, Emerson, J. Anderson, Palmeri, Subeck, Andraca, Haywood and Sinicki",2023-12-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Tomczyk, Knodl, Nass, Felzkowski, Kapenga, Wimberger and Ballweg; +cosponsored by Representatives Allen, Vos, Armstrong, Behnke, Binsfeld, Bodden, Brandtjen, Dittrich, Goeben, Green, Gundrum, Gustafson, Hurd, Macco, Magnafici, Maxey, Michalski, Murphy, Nedweski, O'Connor, Plumer, Pronschinske, Rettinger, Rozar, Sapik, Schraa, Sortwell, Tittl, Tusler and Wichgers",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives O'Connor, Stubbs, Maxey, Gundrum, Plumer, Mursau, Callahan, Dittrich, Considine, Behnke, Palmeri, Edming, Subeck, Murphy, Schraa and Hurd",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg, Carpenter, Feyen and Wanggaard; +cosponsored by Representatives Oldenburg, Pronschinske, Baldeh, Behnke, Donovan, Duchow, Gundrum, Moses, Murphy, Mursau, Sapik, Spiros, VanderMeer and Shankland",2023-02-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Edming, Novak, Armstrong, Brandtjen, Green, Mursau, Myers, Ortiz-Velez, Rozar, Shankland, Subeck and Sinicki; +cosponsored by Senators Jacque and Carpenter",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, J. Anderson, Madison, Palmeri, Baldeh, Bare, Cabrera, Drake, Emerson, Shelton, Sinicki, Snodgrass, Stubbs, Hong, Conley, Joers, Jacobson and Moore Omokunde; +cosponsored by Senators Larson, L. Johnson and Hesselbein",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Conley, Allen, Andraca, Baldeh, Bare, C. Anderson, Dittrich, Donovan, Doyle, Emerson, Gustafson, Hong, Jacobson, Joers, Madison, Mursau, Neubauer, Novak, Ohnstad, Ortiz-Velez, Palmeri, Rettinger, Rozar, Shankland, Shelton, Sinicki, Steffen, Stubbs, Subeck, Summerfield, Vining, Melotik and Ratcliff; +cosponsored by Senators James, Agard, Carpenter, Hesselbein, Jacque, L. Johnson, Larson, Pfaff, Roys, Spreitzer, Taylor and Wirch",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Spiros, Allen, Armstrong, Behnke, Brandtjen, Brooks, Donovan, Duchow, Edming, Green, Gundrum, Knodl, Krug, Michalski, Moses, Novak, O'Connor, Ortiz-Velez, Penterman, Rettinger, Rozar, Snyder and Steffen; +cosponsored by Senators James, Ballweg, Bradley, Feyen, Marklein, Nass, Stroebel, Testin, Tomczyk and Wanggaard",2023-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Emerson, J. Anderson, Baldeh, Bare, Clancy, Conley, Jacobson, Joers, Madison, Neubauer, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs and Subeck; +cosponsored by Senators Smith, Larson, Spreitzer, Roys and Agard",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Ballweg, Marklein, Nass, Quinn, Testin, Wanggaard and Pfaff; +cosponsored by Representatives Callahan, Behnke, Bodden, Donovan, Green, Edming, Hurd, S. Johnson, Mursau, Novak, Oldenburg, Plumer, Sapik, Doyle, Ratcliff, Shankland and Subeck",2023-07-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Green, Joers, C. Anderson, Andraca, Armstrong, Bare, Behnke, Bodden, Conley, Considine, Kitchens, Moore Omokunde, Mursau, Ohnstad, Shankland, Sinicki, Snodgrass, Spiros, Steffen, Stubbs, Subeck, Tittl and Haywood; +cosponsored by Senators Quinn, Hesselbein, Roys, Spreitzer, Taylor, Larson and Cowles",2023-03-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler and O'Connor; +cosponsored by Senators Wimberger and Ballweg",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler, Baldeh, Behnke, Doyle, Kitchens, O'Connor, Ratcliff, Rettinger and Subeck; +cosponsored by Senators Ballweg and Feyen",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Callahan and Dittrich; +cosponsored by Senator Felzkowski",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Agard, Feyen, Smith, Testin, Ballweg, Cowles and L. Johnson; +cosponsored by Representatives Spiros, Billings, Considine, Stubbs, Joers, Maxey, Conley, Subeck, Brandtjen, Mursau and Jacobson",2024-02-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, Ratcliff, Shelton, Cabrera, Joers, J. Anderson, Sinicki, Subeck, Stubbs, Palmeri, Clancy, C. Anderson and Ortiz-Velez; +cosponsored by Senators Larson, Carpenter, Hesselbein and L. Johnson",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Brooks, Green, Armstrong, Dittrich, Donovan, Duchow, Edming, Gundrum, Kitchens, Knodl, Macco, Michalski, O'Connor, Rettinger, Rozar, Schmidt, Spiros, Swearingen and Tittl; +cosponsored by Senators Stroebel, Ballweg, Cowles, Felzkowski, Feyen, James, Marklein, Quinn and Wanggaard",2023-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Joers, Shankland, J. Anderson, Ratcliff, Conley, Emerson, Snodgrass, Baldeh, Ohnstad, Bare, Shelton, Considine, Palmeri, Jacobson and Andraca; +cosponsored by Senators Smith, Hesselbein, L. Johnson and Larson",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Shankland, Ohnstad, Neubauer, Subeck, Conley, Hong, Joers, Emerson, Cabrera, Stubbs, Snodgrass, Shelton, Ratcliff, J. Anderson, Considine, C. Anderson, Goyke, Palmeri and Drake; +cosponsored by Senators Spreitzer, L. Johnson, Agard, Larson, Hesselbein, Roys, Carpenter and Pfaff",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Cabral-Guevara and Cowles; +cosponsored by Representatives Krug, Brooks, Tusler, Gundrum, Rozar, Gustafson, Allen, Binsfeld, Bodden, Maxey, Penterman and Schmidt",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Allen, Armstrong, Bodden, Brandtjen, Goeben, Murphy, O'Connor and Dittrich; +cosponsored by Senator Knodl",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Ratcliff, Joers, Sinicki, Stubbs, Emerson, Bare, Moore Omokunde and Subeck; +cosponsored by Senators Smith, Roys, Larson, L. Johnson and Agard",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Quinn; +cosponsored by Representatives Wichgers, Rozar, Allen and Bodden",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Conley, C. Anderson, J. Anderson, Considine, Drake, Emerson, Jacobson, Joers, Madison, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki and Stubbs; +cosponsored by Senators Agard, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Tomczyk, Ballweg, Cabral-Guevara, Cowles, Felzkowski, Feyen, James, Pfaff, Quinn, Spreitzer, Testin, Wanggaard and Bradley; +cosponsored by Representatives Tranel, VanderMeer, Novak, C. Anderson, Armstrong, Behnke, Binsfeld, Callahan, Conley, Dittrich, Edming, Goeben, Green, Gundrum, Gustafson, Hurd, Kitchens, Krug, Kurtz, Magnafici, Murphy, Mursau, O'Connor, Oldenburg, Penterman, Petryk, Plumer, Rettinger, Rozar, Sapik, Schmidt, Schraa, Shankland, Snyder, Sortwell, Spiros, Summerfield, Swearingen, Wittke and Tittl",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Sortwell, Allen, Binsfeld, Goeben, Green, Gundrum, Magnafici, Murphy, Penterman, Schraa, Tusler, Wichgers and Bodden; +cosponsored by Senators Jacque, Quinn and Tomczyk",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hurd, Brooks, Emerson, Snyder, Steffen, Rozar, Allen, C. Anderson, Behnke, Brandtjen, Dittrich, Donovan, Doyle, Duchow, Edming, Green, Gundrum, Joers, Kitchens, Murphy, O'Connor, Ortiz-Velez, Penterman, Petryk, Plumer, Rettinger, Schmidt, Schraa, Shankland, Sinicki, Swearingen, Wichgers and Krug; +cosponsored by Senators Jagler, Quinn, Feyen, Jacque, Stroebel and Stafsholt",2023-05-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, O'Connor, Behnke, Callahan, Dittrich, Edming, Gundrum, Hurd, Kitchens, Krug, Murphy, Mursau, Plumer, Sapik, Schraa and Sortwell; +cosponsored by Senators James and Testin",2024-01-17T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Behnke, Shelton, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Cabrera, Clancy, Conley, Considine, Emerson, Joers, Madison, Moore Omokunde, Myers, Palmeri, Sinicki, Snodgrass, Stubbs, Subeck and Vining; +cosponsored by Senators Larson, Smith, Carpenter, Roys and Spreitzer",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Tittl, Armstrong, Baldeh, Brandtjen, Donovan, Goeben, Gundrum, Michalski, Moses, Mursau, Penterman, Schmidt and Steffen; +cosponsored by Senators James, Cabral-Guevara and Taylor",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hurd, Summerfield, Pronschinske, Petryk, Armstrong, Gustafson, Behnke, Bodden, Brandtjen, Dittrich, Edming, Goeben, Green, Magnafici, Maxey, Murphy, Mursau, Penterman, Rozar and Schmidt; +cosponsored by Senators Tomczyk, James, Ballweg, Cabral-Guevara, Jacque, Nass, Quinn and Wanggaard",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl and James; +cosponsored by Representatives Novak, Melotik, Conley, Gundrum, Mursau, Ortiz-Velez and Penterman",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Michalski, Murphy, Behnke, Brandtjen, Dittrich, Goeben, Gundrum, Maxey, O'Connor, Penterman, Rettinger, S. Johnson and Jacobson; +cosponsored by Senators Cabral-Guevara, Tomczyk and Spreitzer",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Marklein and Nass; +cosponsored by Representatives Sortwell, Knodl and Duchow",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Hesselbein, Feyen, Spreitzer and Wanggaard; +cosponsored by Representatives Krug, Considine, Conley, Doyle, Green, Joers, Schmidt and Subeck",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Agard, L. Johnson, Pfaff, Roys, Spreitzer and Larson; +cosponsored by Representatives Kitchens, Billings, C. Anderson, Behnke, Conley, Considine, Dittrich, Duchow, Gundrum, Jacobson, Mursau, Myers, Nedweski, Ohnstad, Ortiz-Velez, Palmeri, Rozar, Shankland, Sinicki and Subeck",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Ballweg, Felzkowski, Jagler, Marklein and Nass; +cosponsored by Representatives Wittke, Binsfeld, Bodden, Brandtjen, Brooks, Donovan, Gundrum, Gustafson, Magnafici, Maxey, Murphy, O'Connor, Rettinger and Schraa",2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Rozar, Summerfield and Kurtz; +cosponsored by Senator Cabral-Guevara",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Cowles, Feyen, Quinn and Tomczyk; +cosponsored by Representatives Kurtz, Moses, Dittrich, Behnke, Binsfeld, Brooks, Edming, Goeben, Green, Gundrum, Gustafson, Krug, Magnafici, Mursau, Nedweski, Novak, O'Connor, Oldenburg, Penterman, Rettinger, Schmidt, Schutt, Spiros, Summerfield, Tranel and VanderMeer",2023-12-12T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Summerfield, Hurd, Moses, Petryk, Pronschinske, Armstrong and Rozar; +cosponsored by Senators James and Quinn",2024-02-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Quinn, Marklein and Nass; +cosponsored by Representatives Wittke, Gundrum, Maxey, Nedweski, Schmidt, Binsfeld, Rettinger, Allen, Magnafici, Steffen, Brooks, Armstrong, Callahan, O'Connor, Goeben, Bodden, Sapik, Tittl, Michalski, Schutt, Penterman, Dittrich, Murphy, Green, Behnke, Mursau, Brandtjen, Wichgers, VanderMeer and Edming",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Armstrong, Brooks, Dittrich, Jacobson, Moses, Mursau, O'Connor, Ortiz-Velez, Sinicki, Steffen and Gundrum; +cosponsored by Senators James, Cabral-Guevara, Wanggaard and Spreitzer",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Brooks, Emerson, Rozar, C. Anderson, Brandtjen, Dittrich, Donovan, Duchow, Edming, Green, Gundrum, Joers, Kitchens, Murphy, O'Connor, Ortiz-Velez, Petryk, Plumer, Rettinger, Schraa, Shankland, Sinicki, Swearingen, Snyder, Tranel, Wichgers and Krug; +cosponsored by Senators Stroebel, Quinn, Jacque, Cabral-Guevara and Jagler",2023-05-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, James, Cabral-Guevara, Feyen, L. Johnson and Quinn; +cosponsored by Representatives Callahan, Spiros, Allen, Armstrong, Brandtjen, Dittrich, Donovan, Edming, Goeben, Green, Michalski, Mursau, Nedweski, O'Connor, Ortiz-Velez, Rettinger, Rodriguez, Schmidt, Steffen and Summerfield",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Agard, Ballweg, Larson, Marklein, Roys, Spreitzer and Wirch; +cosponsored by Representatives Gustafson, Emerson, Andraca, Bare, Behnke, Conley, Dittrich, Drake, Jacobson, Joers, Melotik, Mursau, O'Connor, Palmeri, Petryk, Ratcliff, Shankland, Shelton, Sinicki, Stubbs and Subeck",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Behnke, Rettinger, Bodden, Schmidt, S. Johnson, Brandtjen, Callahan, Macco, Maxey, Goeben, Tittl, Wichgers, Gundrum, Michalski, Murphy and O'Connor; +cosponsored by Senator Stroebel",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Tusler, Donovan and Rozar; +cosponsored by Senator Jacque",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Armstrong, Binsfeld, Brandtjen, Duchow, Edming, Green, Gundrum, Moses, Mursau, Nedweski, Novak, Palmeri, Petryk, Rettinger, Spiros and Swearingen; +cosponsored by Senators Marklein, Felzkowski, James, Quinn, Smith and Spreitzer",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler and Stubbs; +cosponsored by Senators Wanggaard and Taylor",2024-01-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Marklein, Ballweg, Carpenter and Feyen; +cosponsored by Representatives Novak, Plumer, Behnke, Brandtjen, Brooks, Dittrich, Goeben, Gundrum, Kitchens, Magnafici, Mursau, Ortiz-Velez and Spiros",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Neylon, Gustafson, Tittl, Baldeh, Green, Krug, Murphy, O'Connor, Penterman, Rettinger, Rozar, Spiros and Tranel; +cosponsored by Senators Cowles and Stroebel",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn and Ballweg; +cosponsored by Representatives Kurtz, Behnke, Green, Gustafson, S. Johnson, Moses, Murphy, Mursau, Novak, Oldenburg and Penterman",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Green, Armstrong, Edming, Knodl, Kurtz, Magnafici, Moses, Mursau, Oldenburg, Spiros, Steffen, Summerfield, Swearingen and Schraa; +cosponsored by Senators Quinn, Cowles, Felzkowski, Jacque, James, Marklein, Nass, Pfaff, Spreitzer and Testin",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Committee on Rules,2023-09-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Larson and Hesselbein; +cosponsored by Representatives Haywood, Sinicki, Emerson, Subeck, Ortiz-Velez, Ratcliff, Ohnstad, Cabrera, Palmeri, Drake, Joers, J. Anderson and Shankland",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Stafsholt; +cosponsored by Representative Petryk",2023-08-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Agard, L. Johnson, Larson and Spreitzer; +cosponsored by Representatives Shankland, Ratcliff, Bare, Emerson, Joers, Moore Omokunde, Sinicki and Stubbs",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Novak, Armstrong, Callahan, Dittrich, Donovan, Kitchens, Krug, Moses, Oldenburg, Ortiz-Velez, Petryk, Schmidt, Schraa, Snyder, Spiros, Steffen, Summerfield, Swearingen, Tranel, VanderMeer and Rozar; +cosponsored by Senators Testin, James, Marklein, Pfaff, Quinn and Cowles",2023-07-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn and Tomczyk; +cosponsored by Representatives Edming and Green",2023-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and Cabral-Guevara; +cosponsored by Representatives Steffen, Armstrong, Gundrum, Maxey, Murphy, Rozar, Schmidt, Stubbs, Tittl, Tusler and Wichgers",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Binsfeld, Armstrong, Behnke, Bodden, Brandtjen, Edming, Goeben, Gundrum, Krug, Magnafici, Nedweski, O'Connor, Rettinger and Schmidt; +cosponsored by Senators Tomczyk, Felzkowski and Stroebel",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson, Smith, Agard, Roys, Hesselbein, Spreitzer and Pfaff; +cosponsored by Representatives Shelton, C. Anderson, Shankland, J. Anderson, Baldeh, Cabrera, Clancy, Conley, Haywood, Hong, Joers, Ohnstad, Palmeri, Ratcliff, Sinicki, Snodgrass and Stubbs",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Ballweg and Felzkowski; +cosponsored by Representatives Schraa, Brandtjen, Maxey, O'Connor, Penterman, Sapik and Stubbs",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Wittke; +cosponsored by Senator Wanggaard",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Ballweg, Carpenter, Marklein, Nass and Roys; +cosponsored by Representatives Rettinger, Donovan, Allen, Behnke, Dittrich, Duchow, Goeben, Maxey, Melotik, Murphy, Mursau, Nedweski, O'Connor, Palmeri, Penterman, Sapik, Sortwell, Jacobson and Steffen",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Brooks, Rettinger and Wichgers; +cosponsored by Senators Bradley, Nass and Quinn",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Smith; +cosponsored by Representatives Subeck, Ratcliff and Palmeri",2024-03-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Cabral-Guevara, Roys, Ballweg, Cowles, Felzkowski, Jacque, Marklein, Nass, Quinn, Stroebel and Taylor; +cosponsored by Representatives Magnafici, Armstrong, Behnke, Bodden, Dittrich, Donovan, Green, Gundrum, Gustafson, S. Johnson, Kitchens, Krug, Kurtz, Macco, Murphy, Nedweski, Novak, Rodriguez, Schmidt, Schutt, Sortwell, Spiros, Steffen, Tittl, Tusler, Wichgers and Schraa",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rettinger, Nedweski, C. Anderson, Behnke, Bodden, Brandtjen, Dittrich, Donovan, Gundrum, Moses, Murphy, Mursau, Ortiz-Velez, Rozar, Sapik, Subeck and Wichgers; +cosponsored by Senators Testin, Wanggaard, Marklein and Tomczyk",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Penterman, C. Anderson, Behnke, Brandtjen, Callahan, Conley, Dittrich, Donovan, Edming, Goeben, Gundrum, Gustafson, S. Johnson, Kitchens, Michalski, Mursau, O'Connor, Ortiz-Velez, Ratcliff, Rettinger, Schmidt, Schraa, Shankland, Sinicki, Spiros, Stubbs, Subeck, Tittl, Tranel and Tusler; +cosponsored by Senators Wimberger, Ballweg, Cabral-Guevara, Cowles, Hesselbein, James, Knodl, Marklein, Nass, Pfaff, Spreitzer, Wanggaard and Bradley",2023-08-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, S. Johnson, Behnke, Brandtjen, Clancy, Gustafson, Madison, Moses, O'Connor, Schmidt, Tusler, VanderMeer and Wichgers; +cosponsored by Senator Cabral-Guevara",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hutton, Tomczyk, Nass, Kapenga and Bradley; +cosponsored by Representatives Rozar, Goeben, Maxey, Gustafson, O'Connor, Gundrum, Dittrich, Schraa, Behnke, Brandtjen, Duchow, Nedweski, Rettinger, Green and Wichgers",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Bradley, Nass, Roys, Taylor, Tomczyk and Spreitzer; +cosponsored by Representatives Bodden, Kitchens, Armstrong, Behnke, Binsfeld, Brandtjen, Cabrera, Duchow, Goeben, Gustafson, Krug, Michalski, Murphy, Ohnstad, Palmeri, Penterman, Rettinger, Schmidt, Wichgers, Edming and Schraa",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kitchens, Dittrich, Donovan, Gundrum, Murphy, Mursau, O'Connor, Penterman and Brandtjen; +cosponsored by Senators James, Ballweg, Jacque and Wanggaard",2024-01-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Murphy, Maxey, Conley, Donovan, Neylon, Spiros, Moses, Tittl, Baldeh, Hurd, Wichgers, Wittke and Edming; +cosponsored by Senators Nass, Jagler, Jacque, Taylor, Cabral-Guevara, Quinn and Feyen",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Plumer, Dittrich, Emerson, Green, Gundrum, Jacobson, Kitchens, Melotik, Michalski, Nedweski, Penterman, Rettinger, Sapik, Schmidt, Steffen and Swearingen; +cosponsored by Senators Tomczyk, Feyen, Quinn and Spreitzer",2023-11-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Cabral-Guevara, Nass and Quinn; +cosponsored by Representatives Allen, Behnke, Bodden, Brandtjen, Gundrum, Gustafson, Michalski, Murphy, Wichgers and Green",2023-05-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Melotik, Conley, Gundrum, Mursau, Ortiz-Velez, Penterman and Wichgers; +cosponsored by Senators Knodl and James",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Brandtjen and Sinicki; +cosponsored by Senators Jacque, Cabral-Guevara and Taylor",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Melotik, Armstrong, Moses, Murphy and Sapik; +cosponsored by Senator Knodl",2024-02-01T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Spreitzer, Agard, Larson, Pfaff, Roys, Smith, Taylor and Wirch; +cosponsored by Representatives Subeck, Shankland, C. Anderson, J. Anderson, Conley, Considine, Drake, Emerson, Joers, Neubauer, Palmeri, Ratcliff, Sinicki and Stubbs",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Sortwell, Macco, Allen, Behnke, Binsfeld, Bodden, Dittrich, Green, Gundrum, Kitchens, Krug, Mursau, O'Connor, Rettinger, Rodriguez, Schmidt, Schraa, Schutt, Steffen, Tusler and Wichgers; +cosponsored by Senators Stafsholt, Testin, Cabral-Guevara, Feyen and Wanggaard",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Hesselbein and Spreitzer; +cosponsored by Representatives Kurtz, Myers, Allen, Baldeh, Conley, Dittrich, Donovan, Edming, Green, Jacobson, Magnafici, Moses, Mursau, Penterman, Ratcliff, Schutt, Sinicki, Subeck and Ortiz-Velez",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Behnke, Brooks, Dittrich, Donovan, Edming, Kitchens, Magnafici, Michalski, Murphy, Novak, O'Connor, Rettinger, Rodriguez, Rozar, Spiros, Steffen, Wichgers and Wittke; +cosponsored by Senators Wanggaard, Bradley, Stroebel, Cowles, Marklein and Tomczyk",2023-02-20T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Representatives McGuire and Spiros,2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Callahan, Krug, Baldeh, Donovan, Moses, Mursau, Schmidt and Stubbs; +cosponsored by Senators Wimberger and Knodl",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Felzkowski and Feyen; +cosponsored by Representatives Wittke, Zimmerman, Dittrich, Duchow, Moses, O'Connor, Penterman and Rettinger",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Quinn, Ballweg, Bradley, Felzkowski, Knodl, Stafsholt, Taylor and Testin; +cosponsored by Representatives VanderMeer, Gustafson, Oldenburg, Brandtjen, Duchow, Goeben, Gundrum, Hurd, Mursau, Petersen and Tranel",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Schraa, Allen, Armstrong, Behnke, Bodden, Brooks, Gustafson, Moses, Murphy, Mursau, Penterman, Petersen, Rettinger, Tittl and Tusler; +cosponsored by Senators Stroebel, Cabral-Guevara, Felzkowski, Feyen, Nass, Quinn and Spreitzer",2023-02-10T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Macco, Ortiz-Velez, Kitchens, Conley, Goyke, O'Connor, C. Anderson, J. Anderson, Baldeh, Bare, Considine, Emerson, Hong, Joers, Madison, Mursau, Neubauer, Ohnstad and Snyder; +cosponsored by Senators Taylor, James, Agard, Carpenter, Larson, Roys and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Dittrich, C. Anderson, Baldeh, Brandtjen, Donovan, Murphy, Subeck, Tittl and Wichgers; +cosponsored by Senators Jacque, Taylor and Spreitzer",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Binsfeld, Gustafson, Bodden, Armstrong, Brandtjen, Donovan, Magnafici, Maxey, Murphy, Schmidt, Steffen, Tittl and Wichgers; +cosponsored by Senators Knodl, Tomczyk, Stroebel, Nass and Jacque",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Brandtjen, Allen, Andraca, Bare, Behnke, Bodden, Clancy, Emerson, Joers, Madison, Mursau, Ortiz-Velez, Palmeri, Subeck and Wichgers; +cosponsored by Senators Jacque, Taylor, Cowles, Hesselbein, Larson, Roys, Spreitzer and Wirch",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Gundrum, Bodden, Armstrong, Behnke, Brooks, Mursau, O'Connor, Ortiz-Velez, Rozar and Wichgers",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Roys, L. Johnson, Smith, Hesselbein, Agard, Carpenter and Pfaff; +cosponsored by Representatives Shelton, Shankland, Bare, C. Anderson, Jacobson, Myers, Madison, Cabrera, Clancy, Conley, Emerson, Joers, Palmeri, Ratcliff, Snodgrass, Subeck, Vining, Sinicki, Stubbs, Moore Omokunde, J. Anderson and Neubauer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Allen, Behnke, Bodden, Brandtjen, Dittrich, Goeben, Gundrum, Maxey, O'Connor, Vos and Wichgers; +cosponsored by Senators Nass, Wanggaard, Cabral-Guevara and Jacque",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Allen, Behnke, Bodden, Brandtjen, Brooks, Dittrich, Mursau, Neylon, Penterman, Tusler and Wichgers; +cosponsored by Senators Jacque, Felzkowski, Quinn, Roys, Stroebel and Tomczyk",2023-03-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Sortwell; +cosponsored by Senator James",2023-07-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, O'Connor and Steffen; +cosponsored by Senators Cowles, Wimberger and Cabral-Guevara",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sapik, Armstrong, Donovan, Edming, Green, Ohnstad, Schmidt, Rozar and Wittke; +cosponsored by Senators Quinn and Tomczyk",2023-07-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Rozar, Allen, Behnke, Bodden, Brandtjen, Dittrich, Gundrum, Murphy, Mursau, O'Connor, Rettinger, Spiros and Wichgers; +cosponsored by Senators Wanggaard and Jacque",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Petryk, Zimmerman, Armstrong, Behnke, Magnafici and Moses; +cosponsored by Senators Stafsholt, Cowles, Marklein, Nass and Spreitzer",2023-03-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Brooks, Duchow, Binsfeld, Rozar, O'Connor, Plumer, Melotik, Schmidt, Michalski and Swearingen; +cosponsored by Senator Feyen",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Cowles, James, Marklein, Quinn and Pfaff; +cosponsored by Representatives Kurtz, Novak, Armstrong, Callahan, Dittrich, Donovan, Kitchens, Krug, Moses, Oldenburg, Ortiz-Velez, Petryk, Schmidt, Schraa, Snyder, Spiros, Steffen, Summerfield, Swearingen, Tranel, VanderMeer and Rozar",2023-07-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Pronschinske, Dallman, Armstrong, Behnke, O'Connor, Schmidt and Wichgers; +cosponsored by Senator Quinn",2024-01-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Ballweg and Testin; +cosponsored by Representatives Vos and Petersen",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Green, Armstrong, Behnke, Bodden, Brooks, Callahan, Dallman, Edming, Gustafson, Magnafici, Mursau, Penterman, Pronschinske, Sapik, Schutt, Summerfield, Swearingen, Tittl, Schraa and Rozar; +cosponsored by Senators Stafsholt, Cowles, Felzkowski, Marklein, Quinn, Stroebel, Testin and Tomczyk",2023-03-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Kitchens and Mursau; +cosponsored by Senator James",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Murphy, Nedweski, Callahan, O'Connor, Brandtjen, Dittrich, Green and Maxey; +cosponsored by Senator Nass",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hutton, Bradley, Wanggaard, James, Felzkowski and Nass; +cosponsored by Representatives Moses, Rettinger, Donovan, Schutt, O'Connor, Dittrich, Rozar, Gundrum, Mursau, Wichgers, Bodden and Brandtjen",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Allen, Behnke, Binsfeld, Brandtjen, Brooks, Goeben, Gundrum, Gustafson, Michalski, O'Connor, Rettinger, Schmidt, Wichgers and Murphy; +cosponsored by Senators Stroebel, Felzkowski, Nass, Quinn, Stafsholt and Tomczyk",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Marklein, Nass, Quinn and Stroebel; +cosponsored by Representatives Green, Behnke, Bodden, Krug, Murphy, Mursau, O'Connor, Plumer, Schmidt, Rozar, Edming and Oldenburg",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Feyen and Stafsholt; +cosponsored by Representatives Murphy, O'Connor, Bodden, Dittrich, Green, Gundrum and Wittke",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Neubauer, Baldeh, Bare, J. Anderson, Conley, Considine, Doyle, Emerson, Goyke, Hong, C. Anderson, Joers, Moore Omokunde, Ortiz-Velez, Ratcliff, Sinicki, Snodgrass, Stubbs, Subeck, Clancy, Palmeri and Ohnstad; +cosponsored by Senators Agard, Ballweg, Cabral-Guevara, Carpenter, Felzkowski, Hesselbein, L. Johnson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dallman, Summerfield, Dittrich, Michalski, Mursau, O'Connor, Ortiz-Velez, Plumer, Rettinger, Schmidt, Swearingen, Tittl and Wichgers; +cosponsored by Senators James and Tomczyk",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Billings, Vining, Baldeh, Bare, Behnke, Clancy, Conley, Considine, Drake, Emerson, Hong, Joers, Madison, Maxey, Palmeri, Ratcliff, Sinicki, Stubbs, Subeck and Mursau; +cosponsored by Senators Carpenter, Roys, Spreitzer and Taylor",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Dittrich, Kitchens, Murphy, Mursau, O'Connor and Rozar; +cosponsored by Senators Cabral-Guevara and Felzkowski",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Cabral-Guevara, Felzkowski, Jagler, Marklein, Nass, Quinn and Wanggaard; +cosponsored by Representatives Wittke, Brandtjen, Brooks, Dittrich, Goeben, Penterman, Sortwell and Wichgers",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sapik, Drake, Gustafson, Melotik, Murphy, Mursau, Myers, Palmeri, Ratcliff, Schmidt, Sinicki and Subeck; +cosponsored by Senators Ballweg, Feyen, Marklein, Taylor, Tomczyk and Cowles",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Callahan, Gundrum, Nedweski and Schmidt; +cosponsored by Senators Stroebel, Stafsholt and Ballweg",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Brooks, Rozar, Allen, Bodden, Brandtjen, Dittrich, Donovan, Duchow, Goeben, Green, Gundrum, Gustafson, Macco, Rettinger, Schraa, Shankland, Sortwell and Wichgers; +cosponsored by Senators Felzkowski, Bradley, Hutton, Knodl, Larson, Nass, Stroebel and Wimberger",2023-06-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Goeben, Allen, Dittrich, Edming, Hurd, Moses, O'Connor, Rettinger, Sapik, Schmidt and Mursau; +cosponsored by Senators Felzkowski and Marklein",2024-01-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, L. Johnson, Hesselbein, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor, Wirch and Carpenter; +cosponsored by Representatives Vining, Myers, Moore Omokunde, Palmeri, Considine, J. Anderson, C. Anderson, Baldeh, Bare, Conley, Drake, Emerson, Goyke, Hong, Joers, Ohnstad, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Haywood, Jacobson, Clancy, Doyle, Ortiz-Velez, Andraca, Billings and Neubauer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative Gundrum,2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Drake, Vining, Hong, Emerson, Ratcliff, Considine, Myers, Conley, Joers, Moore Omokunde, Snodgrass, Clancy, Ortiz-Velez, Ohnstad, Jacobson, Shelton, C. Anderson, Stubbs, J. Anderson, Palmeri and Subeck; +cosponsored by Senators L. Johnson, Roys, Larson, Hesselbein, Spreitzer and Wirch",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Committee on Labor and Integrated Employment,2024-02-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Wanggaard, Hesselbein, James, Marklein, Nass, Taylor and Testin; +cosponsored by Representatives Petersen, Vos, Armstrong, Behnke, Cabrera, Callahan, Dittrich, Donovan, Edming, Goeben, Gustafson, Hurd, Magnafici, Michalski, Murphy, Mursau, Novak, O'Connor, Ortiz-Velez, Palmeri, Penterman, Rozar, Shankland, Stubbs, Subeck and Sinicki",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Drake, Baldeh, Myers, Haywood, Stubbs, Moore Omokunde, Madison, Neubauer, Ohnstad, Shelton, Snodgrass, Palmeri, Clancy, Hong, Goyke, Andraca, Sinicki, Ratcliff, Considine, C. Anderson, J. Anderson, Bare, Vining, Riemer, Allen, Murphy, Emerson, Joers, Subeck, Ortiz-Velez, Conley, Billings, Shankland, Cabrera, Jacobson, Doyle, McGuire and Tusler; +cosponsored by Senators L. Johnson, Agard, Carpenter, Wirch, Larson, Spreitzer, Smith, Hesselbein, Roys and Pfaff",2023-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Shankland, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, Madison, McGuire, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Shelton, Snodgrass, Stubbs, Subeck and Vining; +cosponsored by Senators Wirch, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Roys, Smith, Spreitzer and Taylor",2023-10-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Nedweski, Vos, Behnke, Binsfeld, Dittrich, Donovan, Edming, Gundrum, Maxey, Michalski, Murphy, Novak, O'Connor, Rettinger, Rozar, Schraa, Spiros, Steffen, Summerfield, Tusler, Wichgers, Hurd and Moses; +cosponsored by Senators Wanggaard and Cabral-Guevara",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Dittrich, Kitchens, Magnafici, Murphy, Mursau, O'Connor, Rozar, Schmidt and Wichgers; +cosponsored by Senators Cabral-Guevara, Ballweg, Bradley, Feyen and Marklein",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Nass, Ballweg and Cowles; +cosponsored by Representatives Penterman, S. Johnson, Allen, Bare, Behnke, Dittrich, Duchow, Edming, Murphy, Ortiz-Velez, Rettinger, Schmidt, Sinicki, Spiros, Myers and Brooks",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Billings, Clancy, Subeck, Sinicki, Stubbs, Emerson, Ohnstad, Conley, Joers, Drake and Snodgrass; +cosponsored by Senators Agard, Pfaff and Roys",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Ballweg and James; +cosponsored by Representatives Magnafici, Behnke, Brandtjen, Brooks, Edming, Green, Goeben, Gundrum, Gustafson, Kitchens, Michalski, Murphy, O'Connor, Rozar, Schutt and Steffen",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Larson, Roys, Hesselbein, Agard, Taylor and Spreitzer; +cosponsored by Representatives Doyle, Palmeri, Ratcliff, Considine, Stubbs, Moore Omokunde, Conley, Emerson, Joers, Subeck, Jacobson, J. Anderson, Neubauer, Baldeh, Ohnstad, Clancy, Shankland, Shelton, Sinicki, Vining, C. Anderson and Madison",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Binsfeld, Stubbs, Bodden, Behnke, Dittrich, Donovan, Duchow, Gundrum, Hurd, Melotik, Murphy, Mursau, O'Connor, Sinicki and Steffen; +cosponsored by Senators Tomczyk and James",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Cabrera, Neubauer, Snodgrass, Ratcliff, Clancy, C. Anderson, Andraca, Baldeh, Bare, Conley, Considine, Emerson, Goyke, Hong, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Shankland, Shelton, Sinicki, Stubbs, Subeck, J. Anderson and Haywood; +cosponsored by Senators Spreitzer, Carpenter, Agard, Hesselbein, L. Johnson, Larson, Roys and Smith",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hutton, Jagler, Jacque, Spreitzer, Bradley, Kapenga, Nass, Carpenter, Felzkowski, Marklein, Wirch, Cowles, Agard, Feyen, Ballweg, Roys and Testin; +cosponsored by Representatives Michalski, Allen, August, Baldeh, Conley, Dittrich, Drake, Duchow, Edming, Emerson, Hurd, Jacobson, Kitchens, Macco, Magnafici, Maxey, Melotik, Murphy, Mursau, O'Connor, Ohnstad, Penterman, Rettinger, Rozar, Schutt, Sinicki, Spiros, Stubbs, Subeck, Tittl and Tranel",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Penterman, Brandtjen, Jacobson, Maxey, Subeck, Wichgers and Gustafson",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger and Ballweg; +cosponsored by Representatives Tusler and O'Connor",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Taylor, Quinn and Tomczyk; +cosponsored by Representatives Goeben, Ortiz-Velez, Sortwell, Allen, Binsfeld, Gustafson, Kitchens, Myers, O'Connor, Nedweski, Murphy, Baldeh, Behnke, Michalski, Maxey, Schmidt, Steffen, Subeck and Wichgers",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Riemer, August, Vos, C. Anderson, J. Anderson, Andraca, Armstrong, Baldeh, Bare, Behnke, Bodden, Born, Brandtjen, Callahan, Conley, Dallman, Dittrich, Donovan, Doyle, Duchow, Edming, Emerson, Goeben, Goyke, Green, Gundrum, Gustafson, Hong, Hurd, Jacobson, Joers, S. Johnson, Katsma, Krug, Kurtz, Macco, Magnafici, Melotik, Murphy, Mursau, Neylon, Novak, O'Connor, Ohnstad, Oldenburg, Ortiz-Velez, Palmeri, Penterman, Petersen, Plumer, Ratcliff, Rettinger, Rodriguez, Rozar, Schmidt, Schutt, Shankland, Sinicki, Snodgrass, Snyder, Sortwell, Spiros, Steffen, Summerfield, Swearingen, Tittl, Tranel, Tusler, Vining, Wittke, Binsfeld, Schraa and Wichgers; +cosponsored by Senators Knodl, Nass, Hesselbein, Bradley, Cowles, Felzkowski, Feyen, Jacque, Jagler, Kapenga, Marklein, Pfaff, Quinn, Roys, Spreitzer, Stroebel, Testin, Tomczyk, Wanggaard, Wirch, L. Johnson and Hutton",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Shelton, C. Anderson, Andraca, Baldeh, Considine, Dittrich, Doyle, Goeben, Gustafson, Jacobson, Joers, Kitchens, Magnafici, Moore Omokunde, Mursau, Ohnstad, Ortiz-Velez, Palmeri, Sinicki, Snyder, Stubbs, Subeck and Vining; +cosponsored by Senators Stafsholt, Pfaff, Ballweg, Cabral-Guevara, Carpenter, James, L. Johnson, Larson, Roys, Spreitzer, Cowles and Hutton",2023-08-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schutt, Allen, Binsfeld, Dittrich, Duchow, Green, Gundrum, S. Johnson, Michalski, Murphy, Nedweski, O'Connor, Rettinger, Schraa, Shankland, Snyder and Spiros; +cosponsored by Senators Wanggaard, James, Ballweg, Nass and Spreitzer",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives August, Allen, C. Anderson, Armstrong, Baldeh, Bare, Behnke, Binsfeld, Callahan, Conley, Dallman, Dittrich, Donovan, Doyle, Drake, Duchow, Edming, Goeben, Green, Hurd, Joers, Kitchens, Krug, Kurtz, Magnafici, Melotik, Michalski, Murphy, Mursau, Nedweski, Novak, O'Connor, Ohnstad, Ortiz-Velez, Palmeri, Penterman, Petryk, Plumer, Pronschinske, Ratcliff, Rettinger, Riemer, Rozar, Schmidt, Schutt, Shelton, Sinicki, Snodgrass, Snyder, Sortwell, Spiros, Steffen, Stubbs, Summerfield, Tusler, VanderMeer, Vining, Vos, Wichgers and Wittke; +cosponsored by Senators LeMahieu, Ballweg, Bradley, Cabral-Guevara, Carpenter, Felzkowski, Hesselbein, Jagler, James, Marklein, Nass, Pfaff, Quinn, Spreitzer, Tomczyk and Wanggaard",2023-10-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wittke, Gundrum, Maxey, Nedweski, Schmidt, Binsfeld, Rettinger, Allen, Magnafici, Steffen, Brooks, Armstrong, Callahan, O'Connor, Goeben, Bodden, Sapik, Tittl, Michalski, Schutt, Penterman, Dittrich, Murphy, Green, Behnke, Mursau, Brandtjen, Wichgers, Gustafson, VanderMeer and Edming; +cosponsored by Senators Wanggaard, Quinn, Marklein and Nass",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Cabral-Guevara; +cosponsored by Representatives Snyder, Rozar, Kurtz and Summerfield",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg and James; +cosponsored by Representatives Novak, Tranel, O'Connor, Rozar, Subeck and Melotik",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Emerson, Moore Omokunde, Bare, Considine, Goyke, Stubbs, Drake, Joers, Baldeh, Palmeri, Ratcliff, Subeck, Jacobson, Ortiz-Velez, Myers, Haywood and Clancy; +cosponsored by Senators Taylor, Smith, Roys, Hesselbein, Larson and Spreitzer",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Cowles and Wirch; +cosponsored by Representatives Kitchens, Binsfeld, Brandtjen, Edming, Macco, O'Connor, Penterman, Sinicki and Duchow",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Moore Omokunde, Riemer, Vining, Edming, C. Anderson, Andraca, Bare, Binsfeld, Brandtjen, Callahan, Conley, Considine, Dittrich, Donovan, Doyle, Drake, Duchow, Emerson, Gundrum, Gustafson, Joers, S. Johnson, Kitchens, Krug, Macco, Magnafici, Melotik, Murphy, Mursau, Nedweski, Novak, O'Connor, Ohnstad, Ortiz-Velez, Palmeri, Pronschinske, Ratcliff, Rettinger, Rozar, Schmidt, Shankland, Shelton, Sinicki, Snodgrass, Spiros, Steffen, Stubbs, Subeck, Wichgers and Jacobson; +cosponsored by Senators Testin, Wirch, Ballweg, Bradley, Cabral-Guevara, Carpenter, Cowles, Felzkowski, Feyen, Hesselbein, James, Larson, Marklein, Nass, Pfaff, Roys, Spreitzer, Taylor and Wanggaard",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Roys, L. Johnson, Larson, Pfaff, Smith and Spreitzer; +cosponsored by Representatives Snodgrass, Shelton, J. Anderson, Conley, Considine, Drake, Emerson, Jacobson, Joers, Madison, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Sinicki and Stubbs",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Cabral-Guevara, Knodl, Quinn and Nass; +cosponsored by Representatives Armstrong, Hurd, Brandtjen, Dittrich, Edming, Green, Gundrum, Kitchens, Magnafici, Maxey, Michalski, Mursau, Novak, O'Connor, Penterman, Rettinger, Schraa and Snyder",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Jacque, Marklein and Wimberger; +cosponsored by Representatives Steffen, Behnke, Joers, Kitchens, Macco, Murphy, Schmidt, Shelton and Sortwell",2023-05-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Agard, James and Wanggaard; +cosponsored by Representatives Mursau and O'Connor",2023-12-29T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Ballweg, Cowles, Feyen, Pfaff, Quinn, Spreitzer, Wimberger and Wanggaard; +cosponsored by Representatives Schmidt, Maxey, C. Anderson, Baldeh, Bare, Behnke, Binsfeld, Dittrich, Duchow, Edming, Goeben, Gundrum, Gustafson, Kitchens, Kurtz, Melotik, Michalski, Moses, Murphy, Novak, O'Connor, Oldenburg, Rettinger, Rozar, Sapik, Schutt, Shankland, Steffen, Tittl, Tranel, S. Johnson and Schraa",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Quinn, Marklein, Hutton and Tomczyk; +cosponsored by Representatives Dittrich, Rettinger, Callahan, Magnafici, Binsfeld, O'Connor, Gundrum, Gustafson, Maxey, Bodden, Penterman, Armstrong, Brandtjen, Tusler, S. Johnson, Sapik, Macco, Rozar, Green, Schmidt, Allen, Behnke, Duchow, Hurd, Tittl, Nedweski, Schraa, Wichgers, Edming, Sortwell and Donovan",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Larson, Smith, Spreitzer and Taylor; +cosponsored by Representatives Mursau, Andraca, Palmeri, Armstrong, Bare, Bodden, Conley, Green, Gundrum, Jacobson, Joers, Rozar, Shelton, Snodgrass, Subeck and Cabrera",2023-05-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Dallman, Armstrong, Binsfeld, Brooks, Dittrich, Donovan, Edming, Green, Moses, Mursau, Novak, Plumer, Rozar, Schmidt, Swearingen and Tittl; +cosponsored by Senators Felzkowski, Cowles, James, Marklein and Quinn",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Plumer, Spiros, Steffen, Melotik, Andraca, Murphy, Goeben, Penterman, Michalski, Subeck, O'Connor, Hong, Sinicki, Riemer, Emerson, C. Anderson, Bare, Behnke, Hurd and Ortiz-Velez; +cosponsored by Senators Knodl, Tomczyk, Spreitzer, Carpenter and Hesselbein",2024-01-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Shankland, C. Anderson, Andraca, Armstrong, Baldeh, Behnke, Binsfeld, Conley, Considine, Dittrich, Drake, Emerson, Jacobson, Joers, S. Johnson, Kitchens, Magnafici, Murphy, Mursau, Myers, O'Connor, Ohnstad, Palmeri, Ratcliff, Rozar, Spiros, Steffen, Stubbs and Tittl; +cosponsored by Senators Ballweg, Agard, Carpenter, Cowles, Hesselbein, Roys, Spreitzer, Taylor and Felzkowski",2023-04-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Stroebel; +cosponsored by Representative Schraa",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives O'Connor, Gundrum, Brooks, Rozar, Petryk, Sortwell, Edming, Behnke, Moses, Nedweski, Plumer, Knodl, Macco, Brandtjen, Petersen, Wichgers, Gustafson and Rettinger; +cosponsored by Senators Feyen, Stroebel, Nass and Felzkowski",2023-04-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schutt, Green, Armstrong, Behnke, Bodden, Brandtjen, Dittrich, Edming, Gustafson, Maxey, Michalski, Murphy, O'Connor, Rozar, Sapik, Schmidt, Sortwell, Spiros, Tranel, VanderMeer, Plumer, Rettinger and S. Johnson; +cosponsored by Senators Tomczyk, Bradley, Cabral-Guevara, Feyen, Marklein, Quinn, Testin and Wanggaard",2023-04-04T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Considine, C. Anderson, Joers, Armstrong, Bare and Ortiz-Velez; +cosponsored by Senator Stroebel",2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Felzkowski and Stroebel; +cosponsored by Representatives Moses, Armstrong, Behnke, Bodden, Edming, Goeben, Gundrum, Krug, Magnafici, Nedweski, Rettinger, Schmidt and O'Connor",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative VanderMeer; +cosponsored by Senator Testin",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Feyen, Stroebel and Tomczyk; +cosponsored by Representatives Allen, Binsfeld, Bodden, Brandtjen, Edming, Green, Gundrum, Moses, Murphy, O'Connor, Ortiz-Velez, Palmeri, Rettinger, Schraa and Shankland",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, L. Johnson, Carpenter, Hesselbein, Larson, Pfaff, Roys and Spreitzer; +cosponsored by Representatives Snodgrass, Rozar, J. Anderson, Andraca, Armstrong, Bare, Binsfeld, Clancy, Conley, Drake, Emerson, Gustafson, Jacobson, Joers, Krug, Melotik, Mursau, Murphy, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Snyder and Stubbs",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Haywood, Sinicki, Ratcliff, Considine, Bare, Emerson, Conley, Palmeri, Ohnstad, Moore Omokunde, Joers, J. Anderson, Stubbs, Drake, Subeck, Shankland, Clancy and Jacobson; +cosponsored by Senators Pfaff, L. Johnson, Wirch, Smith, Hesselbein, Larson and Roys",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Snodgrass and Stubbs; +cosponsored by Senators Larson and Spreitzer",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Marklein, Nass, Taylor and Wanggaard; +cosponsored by Representatives Melotik, Behnke, Dittrich, Edming, Goeben, Gundrum, Moses, Murphy, Mursau, Myers, Nedweski, O'Connor, Penterman, Schmidt and Vos",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Spreitzer, Carpenter, L. Johnson, Roys, Smith, Taylor and Wirch; +cosponsored by Representatives Emerson, Bare, Conley, Hong, J. Anderson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Stubbs, Subeck and Haywood",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor, L. Johnson, Wirch, Spreitzer, Larson and Hesselbein; +cosponsored by Representatives Myers, Stubbs, Drake, Vining, Emerson, Baldeh, Bare, Goyke, Ortiz-Velez, Snodgrass, Shelton, Joers, Ratcliff, Conley, Ohnstad, Subeck, Jacobson, J. Anderson, Haywood, Clancy, C. Anderson, Madison and Palmeri",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Roys, Carpenter, Agard, Hesselbein and Larson; +cosponsored by Representatives Hong, Snodgrass, Neubauer, Cabrera, J. Anderson, Bare, Considine, Jacobson, Joers, Ratcliff, Stubbs, Subeck, C. Anderson, Baldeh, Clancy, Drake, Madison, Moore Omokunde, Novak, Ohnstad, Shelton, Sinicki and Palmeri",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Armstrong and Brooks; +cosponsored by Senator Quinn",2024-02-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Rozar, Michalski, Bodden, C. Anderson, Drake, Emerson, Jacobson, Magnafici, Mursau, O'Connor, Ratcliff, Schraa, Shankland, Sinicki, Stubbs, Tittl and Andraca; +cosponsored by Senators James, Ballweg, Quinn, Roys and Spreitzer",2024-02-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Larson; +cosponsored by Representatives Clancy, Madison, J. Anderson, Baldeh, Considine, Ohnstad, Palmeri and Sinicki",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Allen, Armstrong, Behnke, Bodden, Brandtjen, Donovan, Edming, Green, Gundrum, Gustafson, Hurd, Krug, Macco, Magnafici, Maxey, Moses, Murphy, Nedweski, O'Connor, Penterman, Plumer, Rettinger, Schmidt, Schraa, Steffen, Summerfield, Tusler and Wichgers; +cosponsored by Senators Quinn, Cabral-Guevara, Felzkowski, Feyen, Hutton, Jacque, Jagler, James, Knodl, Nass and Tomczyk",2023-06-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, O'Connor, Cabrera, Neubauer, Snodgrass, Subeck, Emerson, Shankland, Conley, Sinicki, Hong, Ratcliff, Moore Omokunde, C. Anderson, Madison, Bare, Joers, Vining, Andraca, Palmeri, Ohnstad, Considine, Jacobson, Goyke, Ortiz-Velez and Drake; +cosponsored by Senators Taylor, Larson, Carpenter, Wirch, L. Johnson, Spreitzer and Agard",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Ballweg, Spreitzer and Wirch; +cosponsored by Representatives Tusler and Kitchens",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kitchens, Allen, Binsfeld, Dittrich, Donovan, Edming, Goeben, Gundrum, Krug, Magnafici, Maxey, Michalski, Murphy, Mursau, Nedweski, O'Connor, Penterman and Rozar; +cosponsored by Senators Quinn, Ballweg, Marklein and Nass",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley, Nass and Quinn; +cosponsored by Representatives Steffen, Brooks, Rettinger and Wichgers",2023-06-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Emerson, Hong, J. Anderson, Bare, Clancy, Madison, Palmeri and Sinicki; +cosponsored by Senators Larson and Taylor",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Ballweg; +cosponsored by Representatives Pronschinske, Armstrong, Edming, Gundrum, Rozar and Schmidt",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Cowles, Marklein, Nass, Stroebel and Wanggaard; +cosponsored by Representatives Schutt, Behnke, Bodden, Donovan, Goeben, Green, Gustafson, Hurd, Kitchens, Kurtz, Macco, Melotik, Michalski, Moses, Murphy, Mursau, Nedweski, O'Connor, Penterman, Plumer, Rettinger and Wichgers",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hurd, Goeben, Edming, Green, Gundrum, Krug, Magnafici, Melotik, O'Connor, Penterman, Petersen, Petryk, Plumer, Rodriguez, Rozar, Steffen, Summerfield, Swearingen, Tranel and Armstrong; +cosponsored by Senators James, Cabral-Guevara and Stroebel",2023-09-01T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, Baldeh, Subeck, Ratcliff, Neubauer, Palmeri, J. Anderson, Joers, Andraca, Conley, Shelton, C. Anderson, Ortiz-Velez, Sinicki, Drake and Jacobson; +cosponsored by Senators L. Johnson, Taylor, Roys, Larson, Wirch, Spreitzer and Agard",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Ballweg, Cabral-Guevara, Felzkowski, Feyen, James, Quinn, Stroebel and Tomczyk; +cosponsored by Representatives Wittke, Sortwell, Armstrong, Bodden, Born, Brandtjen, Dittrich, Edming, Green, Gundrum, Knodl, Kurtz, Moses, Murphy, Mursau, Novak, O'Connor, Penterman, Rettinger, Rozar, Sapik, Schutt, Spiros, Tusler, Donovan and Allen",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Carpenter, Nass, Stroebel and Wanggaard; +cosponsored by Representatives Magnafici, Callahan, Considine, Armstrong, Baldeh, Clancy, Duchow, Edming, Emerson, Kitchens, Krug, Novak, O'Connor, Penterman, Rozar, Schmidt, Schraa, VanderMeer and Wittke",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, Wanggaard, Nass and Tomczyk; +cosponsored by Representatives Rettinger, Magnafici, Allen, Behnke, Brandtjen, Callahan, Dallman, Dittrich, Goeben, Gundrum, Krug, Maxey, Murphy, Nedweski, O'Connor and Rozar",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Ballweg, Nass, Quinn and Stroebel; +cosponsored by Representatives Allen, Maxey, Armstrong, Bodden, Brandtjen, Gustafson, Murphy and Behnke",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler, Brandtjen, Hurd, S. Johnson, Murphy, Mursau, Nedweski, Ortiz-Velez, Plumer, Sinicki and Subeck; +cosponsored by Senators Testin, Felzkowski, Ballweg, Bradley, Taylor and Tomczyk",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Carpenter, Pfaff, Quinn, Roys, Spreitzer and Larson; +cosponsored by Representatives Joers, Hurd, Vining, Behnke, Penterman, Ratcliff, Rozar, Schmidt, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Clancy, Conley, Considine, Donovan, Drake, Edming, Emerson, S. Johnson, Madison, Melotik, Moore Omokunde, Mursau, Novak, O'Connor, Ohnstad, Palmeri, Schutt, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Krug, Neubauer, Brandtjen and Jacobson",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Testin and Marklein; +cosponsored by Representatives O'Connor, Macco, Katsma, Armstrong, Donovan, Nedweski, Steffen, Callahan, Magnafici, Rozar, Melotik, Wittke, Maxey, Penterman, Behnke, Rettinger, Mursau, Bare, Edming, Subeck and Joers",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Callahan, Swearingen, Edming, Green, Magnafici, Mursau, Oldenburg, Rozar, Sapik, Schmidt, Tusler, Armstrong and Tittl; +cosponsored by Senators Cowles, Felzkowski, Ballweg, Quinn and Tomczyk",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Feyen; +cosponsored by Representatives Palmeri, Baldeh, Conley, Considine, Drake, Joers, O'Connor, Ratcliff, Sinicki, Snodgrass and Subeck",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Tusler, Hong, Shankland, C. Anderson, Andraca, Armstrong, Baldeh, Behnke, Cabrera, Clancy, Conley, Considine, Donovan, Doyle, Drake, Emerson, Goyke, Jacobson, Joers, Kitchens, Madison, Mursau, Ortiz-Velez, Palmeri, Ratcliff, Stubbs, Subeck, Vining, Sinicki, Allen and Shelton; +cosponsored by Senators Tomczyk, James, Agard, Cabral-Guevara, Pfaff and Spreitzer",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Sinicki, Neubauer, Ratcliff, Joers, Clancy, Baldeh, Jacobson, C. Anderson, Emerson, Conley, Moore Omokunde, Hong, J. Anderson, Bare, Ohnstad, Vining and Palmeri; +cosponsored by Senators Agard, Wirch, Roys, Larson and Spreitzer",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Kitchens; +cosponsored by Senators Tomczyk and Cowles",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Hesselbein, Cowles, Larson, Spreitzer and Roys; +cosponsored by Representatives Rodriguez, Rozar, Billings, J. Anderson, Andraca, Armstrong, Bare, Clancy, Considine, Dittrich, Duchow, Emerson, Goyke, Jacobson, Joers, S. Johnson, Madison, Michalski, Nedweski, Novak, Ortiz-Velez, Schutt, Shankland, Sinicki, Stubbs and Subeck",2023-03-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Armstrong, Dittrich, Edming, Goeben, Kitchens, Magnafici, Maxey, Murphy, Nedweski, O'Connor and Rettinger; +cosponsored by Senator Knodl",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Cabrera, Baldeh, Drake, Emerson, Jacobson, Ohnstad, Ortiz-Velez, Ratcliff, Stubbs and Madison; +cosponsored by Senator Taylor",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Senator Tomczyk,2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley, Cowles, Larson and Spreitzer; +cosponsored by Representatives J. Anderson, Steffen, C. Anderson, Andraca, Baldeh, Conley, Donovan, Emerson, Jacobson, Joers, Madison, O'Connor, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Sinicki and Wichgers",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator James; +cosponsored by Representatives Green, Armstrong, Magnafici, Mursau, Rettinger, Steffen and Summerfield",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Joers, Gustafson, Snodgrass, Emerson, Myers, C. Anderson, Shelton, Sinicki, Ohnstad, Baldeh, J. Anderson, Considine, Hong, Jacobson and Clancy; +cosponsored by Senators Larson, Cabral-Guevara, Ballweg, Taylor and Roys",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, Madison, J. Anderson, Baldeh, Considine, Ohnstad, Palmeri, Sinicki and Jacobson; +cosponsored by Senators Larson and Agard",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Carpenter, Agard, Hesselbein, L. Johnson, Larson, Roys and Smith; +cosponsored by Representatives Cabrera, Neubauer, Snodgrass, Ratcliff, Clancy, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Conley, Considine, Emerson, Goyke, Hong, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Shankland, Shelton, Sinicki, Stubbs and Subeck",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Smith, L. Johnson, Hesselbein and Spreitzer; +cosponsored by Representatives Subeck, Stubbs, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Drake, Emerson, Jacobson, Joers, Moore Omokunde, Ohnstad, Palmeri, Shelton, Sinicki and Snodgrass",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Tranel, Shankland, Kitchens, C. Anderson, Bare, Behnke, Emerson, Jacobson, Joers, S. Johnson, Krug, Melotik, Mursau, O'Connor, Petryk and Subeck; +cosponsored by Senator Spreitzer",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Quinn, Roys, Spreitzer and Taylor; +cosponsored by Representatives Mursau, Behnke, Born, Dallman, Edming, Hong, Novak, Palmeri, Cabrera, Myers and Clancy",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Agard and Spreitzer; +cosponsored by Representatives Bare, Conley, Emerson, Joers, Ratcliff, Sinicki, Subeck and Palmeri",2024-03-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Knodl, Armstrong, C. Anderson, Bare, Edming, Magnafici, Moses, Murphy, Mursau, O'Connor, Swearingen, Tusler and Jacobson; +cosponsored by Senators Cabral-Guevara, Roys, Spreitzer and Tomczyk",2023-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Armstrong, Behnke, Brooks, Donovan, Green, Kitchens, Murphy, Mursau and Allen; +cosponsored by Senators Cowles and Quinn",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Haywood, Sinicki, Emerson, Subeck, Ortiz-Velez, Ratcliff, Ohnstad, Cabrera, Palmeri, Drake, Joers, J. Anderson and Shankland; +cosponsored by Senators Spreitzer, Larson and Hesselbein",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, Haywood, Joers, Conley, C. Anderson, Moore Omokunde, Snodgrass, Stubbs, Clancy, Ohnstad, Madison, Sinicki, Baldeh, Emerson, Neubauer, Shelton, Bare, Palmeri, Vining, Ratcliff, Considine, Andraca, J. Anderson, Subeck and Billings; +cosponsored by Senators L. Johnson, Roys, Hesselbein, Wirch, Pfaff, Spreitzer, Agard, Smith, Carpenter and Larson",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wittke, Schutt, Tusler, Plumer, Rozar, Schmidt, Rettinger, Melotik, Allen, Penterman, Dittrich, Duchow, Gustafson, Murphy, Callahan, Green and O'Connor; +cosponsored by Senators Tomczyk, Wanggaard, Bradley and Felzkowski",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Knodl, Allen, Armstrong, Behnke, Binsfeld, Brandtjen, Brooks, Dittrich, Duchow, Edming, Green, Gundrum, Kitchens, Magnafici, Michalski, Moses, Murphy, Mursau, Neylon, O'Connor, Rettinger, Rozar, Schraa, Tittl and Tusler; +cosponsored by Senators Stroebel, Bradley, Cabral-Guevara, Cowles, Nass and Tomczyk",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Agard, Carpenter, Taylor, Roys and Spreitzer; +cosponsored by Representatives Ohnstad, Bare, Joers, Palmeri, Snodgrass, Emerson, Jacobson, Conley, Stubbs, Sinicki, Subeck and Clancy",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Ballweg, Cowles, Spreitzer and Wanggaard; +cosponsored by Representatives Sortwell, Goeben, Shankland, Brandtjen, Brooks, Cabrera, Knodl, Moses, Murphy, Rozar, Subeck, Tittl, Tusler, Wichgers and Vining",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Donovan, Born, Armstrong, Behnke, Brandtjen, Dittrich, Duchow, Green, Kitchens, Krug, Magnafici, Maxey, Melotik, Michalski, Mursau, Nedweski, Ortiz-Velez, Plumer, Rettinger, Schmidt, Wichgers and Murphy; +cosponsored by Senators James and Tomczyk",2023-10-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Maxey, Rettinger, Allen, Behnke, Binsfeld, Brandtjen, Donovan, Green, Gundrum, Murphy, Mursau, Penterman, Rozar, Tittl, Wichgers, Duchow, Michalski and Nedweski; +cosponsored by Senators Bradley, Wanggaard, Ballweg, Hutton, Marklein, Nass and Testin",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Subeck, Sapik, Andraca, Duchow, Billings, Rozar, Cabrera, Rodriguez, Conley, Nedweski, Drake, Hurd, Emerson, VanderMeer, Hong, Schutt, Jacobson, Myers, Neubauer, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs and Vining; +cosponsored by Senators Ballweg, L. Johnson, Cabral-Guevara, Agard, Felzkowski, Hesselbein, Roys and Taylor",2023-03-10T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Summerfield, Dittrich, O'Connor, Rettinger and Wichgers; +cosponsored by Senators Quinn, Ballweg, Nass, Roys and Marklein",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Considine, C. Anderson, Joers, Emerson, Madison, Stubbs, Conley, Moore Omokunde, J. Anderson, Jacobson, Palmeri, Subeck, Ratcliff, Neubauer, Baldeh, Ohnstad, Clancy, Shelton, Shankland and Sinicki; +cosponsored by Senators Hesselbein, Spreitzer, Agard and Taylor",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Macco, O'Connor, Allen, Armstrong, Behnke, Dittrich, Gundrum, Magnafici and Schraa",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Stroebel; +cosponsored by Representatives Behnke, Rettinger, Bodden, Schmidt, S. Johnson, Brandtjen, Callahan, Macco, Maxey, Goeben, Tittl, Wichgers, Gundrum, Michalski, Murphy and O'Connor",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Pfaff, Taylor, Carpenter, Roys, Spreitzer and Agard; +cosponsored by Representatives Riemer, Sinicki, Andraca, Snodgrass, Bare, Joers, Drake, Ratcliff, Gustafson, Ortiz-Velez, Ohnstad, Emerson, Jacobson, Shelton, Mursau, Conley, Stubbs and Palmeri",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Taylor, Cowles and Quinn; +cosponsored by Representatives Penterman, Schmidt, Krug, Green, Mursau, Edming, Murphy, Rettinger and Dittrich",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Agard, Ballweg, Cabral-Guevara, Hesselbein, Jacque, Larson, Marklein, Pfaff, Spreitzer and Wirch; +cosponsored by Representatives Hong, Stubbs, J. Anderson, C. Anderson, Andraca, Baldeh, Bare, Cabrera, Behnke, Clancy, Conley, Considine, Drake, Emerson, Green, Jacobson, Joers, Madison, Moore Omokunde, Murphy, Mursau, Neubauer, O'Connor, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Spiros, Snodgrass, Subeck, Vining and Allen",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Agard, Larson and Spreitzer; +cosponsored by Representatives Vining, Goyke, Ortiz-Velez, J. Anderson, Andraca, Baldeh, Clancy, Conley, Considine, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs and Subeck",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Allen, Rettinger, O'Connor, Rozar, Schmidt and Penterman",2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, Madison, Drake, Emerson, Hong, J. Anderson, Conley, Considine, Haywood, Joers, Moore Omokunde, Palmeri, Shelton and Stubbs; +cosponsored by Senator Larson",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler and O'Connor; +cosponsored by Senators Wimberger and Knodl",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson, Hesselbein, Smith, Agard, Spreitzer, Carpenter and Pfaff; +cosponsored by Representatives Shelton, Jacobson, C. Anderson, Myers, Shankland, Cabrera, Clancy, Considine, Emerson, Joers, Palmeri, Ratcliff, Sinicki, Snodgrass, Subeck, Vining, Conley, Bare, Stubbs, Moore Omokunde, Madison, J. Anderson and Neubauer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson, Spreitzer and Roys; +cosponsored by Representatives Clancy, C. Anderson, Madison, Ratcliff, Palmeri, Baldeh, Bare, Cabrera, Drake, Emerson, Shelton, Sinicki, Snodgrass, Stubbs, Hong, Moore Omokunde, Ohnstad, Joers, Ortiz-Velez and J. Anderson",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Cabral-Guevara, Cowles, Feyen, Jacque, James, Tomczyk, Wanggaard, Ballweg and Marklein; +cosponsored by Representatives Hurd, Edming, Schraa, Armstrong, Brandtjen, Brooks, Callahan, Duchow, Green, Gundrum, Kitchens, Macco, Maxey, Michalski, Moses, Murphy, Mursau, Novak, O'Connor, Petryk, Plumer, Rettinger, Rozar, Sapik, Schmidt, Summerfield, Tittl, Tranel and Tusler",2023-05-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Brooks, Rozar, Brandtjen, Dittrich, Edming, Gundrum, Hurd, Jacobson, Mursau, Penterman, Schmidt and S. Johnson; +cosponsored by Senators James, Ballweg, Cowles, Marklein and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Palmeri, Riemer, Conley, Madison, Considine, Emerson, Andraca, Moore Omokunde, Subeck, Joers, Neubauer, Jacobson, Ratcliff, Baldeh, C. Anderson, J. Anderson, Ohnstad, Clancy, Shelton, Sinicki and Vining; +cosponsored by Senators Carpenter, Roys, Agard, Larson, Smith, Taylor and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Stroebel; +cosponsored by Representatives Melotik, Dittrich, Binsfeld, Brooks, O'Connor, Penterman, Sortwell and Tittl",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Melotik, Moses, Callahan, Dittrich, Gundrum, Ortiz-Velez, Binsfeld and Murphy; +cosponsored by Senators Felzkowski, Cowles, Taylor, Testin and Nass",2023-11-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Spiros, Behnke, Callahan, Dittrich, Donovan, Edming, Green, Kitchens, Moses, Murphy, Mursau, Neylon, Penterman, Plumer, Rettinger and Rozar; +cosponsored by Senators Wanggaard, Ballweg, Cabral-Guevara, James and Marklein",2023-02-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Hesselbein, L. Johnson, Larson, Nass and Spreitzer; +cosponsored by Representatives Binsfeld, Joers, Allen, Behnke, Brandtjen, Callahan, Conley, Dittrich, Goeben, Goyke, Kitchens, Macco, Maxey, Melotik, Mursau, Ohnstad, Ortiz-Velez, Penterman, Ratcliff and Rettinger",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives McGuire, Drake, Stubbs, Andraca, Doyle, Ohnstad, Riemer, Shelton, Snodgrass, C. Anderson, Emerson, Bare, Joers, Billings, Conley, Considine, Palmeri, Ratcliff, Sinicki, Subeck and Vining; +cosponsored by Senators Roys, Agard, L. Johnson, Larson and Spreitzer",2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, James, Ballweg, Cabral-Guevara, Jacque, Nass, Quinn and Wanggaard; +cosponsored by Representatives Hurd, Summerfield, Pronschinske, Petryk, Armstrong, Gustafson, Behnke, Bodden, Brandtjen, Dittrich, Edming, Goeben, Green, Magnafici, Maxey, Murphy, Mursau, Penterman, Rozar and Schmidt",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Conley, C. Anderson, J. Anderson, Considine, Drake, Emerson, Jacobson, Joers, Madison, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki and Stubbs",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson, Hesselbein, Roys, Taylor, Agard, Carpenter, Smith and Spreitzer; +cosponsored by Representatives Shankland, Andraca, Haywood, C. Anderson, J. Anderson, Baldeh, Bare, Clancy, Considine, Emerson, Goyke, Jacobson, Joers, Madison, Neubauer, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs, Subeck and Vining",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Green, C. Anderson, Behnke, Binsfeld, Bodden, Brandtjen, Brooks, Edming, Gustafson, Hurd, Magnafici, Murphy, Penterman, Rozar, Schmidt and Tranel; +cosponsored by Senators Felzkowski, Bradley, Hutton, Quinn, Stroebel and Tomczyk",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schutt, Dittrich, Goeben, Baldeh, Rozar, O'Connor, Rettinger, Brandtjen and Behnke; +cosponsored by Senators Jagler, Ballweg, Stroebel, Marklein and Nass",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vos, Murphy and Doyle; +cosponsored by Senator Quinn",2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Clancy, Considine, Drake, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Ortiz-Velez, Ratcliff, Shankland, Shelton and Snodgrass; +cosponsored by Senators Larson, Carpenter and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Smith, Agard, Taylor and Spreitzer; +cosponsored by Representatives Shankland, C. Anderson, Jacobson, J. Anderson, Andraca, Baldeh, Bare, Clancy, Conley, Considine, Emerson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Palmeri, Ratcliff, Shelton, Stubbs and Subeck",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Ballweg and Wimberger; +cosponsored by Representatives Tusler, Rettinger, Mursau, Behnke and Cabrera",2023-02-03T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative McGuire,2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Taylor, Wirch, Spreitzer, Larson, Hesselbein and Carpenter; +cosponsored by Representatives Moore Omokunde, Madison, Emerson, Sinicki, Considine, Stubbs, Conley, Andraca, Palmeri, Subeck, Joers, J. Anderson, Baldeh, Ratcliff, Neubauer, Ohnstad, Clancy, Shelton, Vining, Bare and C. Anderson",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Emerson, Stubbs, Clancy, C. Anderson, J. Anderson, Baldeh, Conley, Considine, Jacobson, Joers, Moore Omokunde, Palmeri, Shelton, Sinicki and Neubauer; +cosponsored by Senators Larson and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, Shelton, J. Anderson, Bare, Conley, Considine, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Sinicki, Stubbs, Subeck, Andraca, Haywood and Drake; +cosponsored by Senators Smith, Spreitzer, Agard, Carpenter, L. Johnson, Roys, Taylor, Wirch and Larson",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Allen, Armstrong, Dittrich, Donovan, Edming, Mursau, Ortiz-Velez, Rozar, Sapik, Spiros, Subeck and Tusler; +cosponsored by Senators James, Ballweg, Cowles, Marklein, Roys, Spreitzer and Wanggaard",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, Wittke, Myers, C. Anderson, Clancy, Emerson, Gustafson, Jacobson, Joers, Madison, Palmeri, Ratcliff, Schmidt, Shankland and Sinicki; +cosponsored by Senators Cabral-Guevara, Roys and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Petryk, Allen, Armstrong, Behnke, Bodden, Born, Brooks, Dallman, Dittrich, Duchow, Edming, Green, Gundrum, Macco, Magnafici, Michalski, Moses, Mursau, Nedweski, O'Connor, Oldenburg, Penterman, Petersen, Plumer, Rettinger, Schmidt, Wichgers, Wittke and Pronschinske; +cosponsored by Senators Quinn and Felzkowski",2023-04-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Joers, Andraca, Baldeh, Clancy, Conley, Drake, Emerson, Moore Omokunde, Myers, Ohnstad, Palmeri, Ratcliff, Shankland, Sinicki, Stubbs and Tranel; +cosponsored by Senators Taylor, Smith, Agard, Spreitzer and Larson",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vos, Neubauer, Allen, Binsfeld, Duchow, O'Connor, Penterman, Plumer, Schmidt, Spiros, Rettinger, Tittl, Tranel, Baldeh, Ohnstad, Sinicki and Stubbs",2023-06-01T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kitchens, Billings, C. Anderson, Behnke, Conley, Considine, Dittrich, Duchow, Gundrum, Jacobson, Mursau, Myers, Nedweski, Ohnstad, Ortiz-Velez, Palmeri, Rozar, Shankland, Sinicki and Subeck; +cosponsored by Senators James, Agard, L. Johnson, Pfaff, Roys and Spreitzer",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Spreitzer, Ballweg, L. Johnson, Testin and Quinn; +cosponsored by Representatives Novak, C. Anderson, Hurd, Jacobson, S. Johnson, Ohnstad, Oldenburg, Tranel and VanderMeer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Committee on Rules,2024-01-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Macco, Allen, Behnke, Binsfeld, Bodden, Brooks, Dittrich, Goeben, Maxey, Murphy, O'Connor, Rettinger, Schmidt, Sortwell, Spiros, Steffen and Zimmerman; +cosponsored by Senators Cabral-Guevara, Jacque, Cowles, Nass and Stroebel",2023-02-28T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Spreitzer, Agard, Carpenter, Hesselbein, Larson, Pfaff, Roys, Smith, Taylor and Wirch; +cosponsored by Representatives Sinicki, Palmeri, Madison, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, McGuire, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Ratcliff, Riemer, Shankland, Shelton, Snodgrass, Stubbs, Subeck and Vining",2023-03-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Green, Bodden, Brooks, Magnafici, Mursau, Schmidt and Edming; +cosponsored by Senators Quinn, Jacque and Tomczyk",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, Sortwell, Baldeh, Moore Omokunde, Dittrich, Palmeri, Bodden, Goeben, Andraca, Subeck, Gustafson, Mursau, Myers, Jacobson, Ohnstad, Ortiz-Velez, Shankland, Snodgrass, Vining and Joers; +cosponsored by Senators Cabral-Guevara, Carpenter, Felzkowski, Spreitzer and Taylor",2023-08-04T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Maxey, Macco, Armstrong, Edming, Michalski, Murphy, Rettinger, Steffen and VanderMeer",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, C. Anderson, Drake, Emerson, Magnafici, Moses, Murphy, Ohnstad, Shankland and Sinicki; +cosponsored by Senators Cabral-Guevara and Felzkowski",2023-04-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Nass, Carpenter, Wanggaard and Taylor; +cosponsored by Representatives Schutt, C. Anderson, Jacobson, Edming, Behnke, Cabrera, Conley, Donovan, Drake, Emerson, Joers, S. Johnson, Penterman, Ratcliff, Shankland, Sinicki, Spiros, Subeck, Wichgers and Ortiz-Velez",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Gustafson, Goeben, Rettinger, Binsfeld, Maxey, Hurd, Michalski, Schmidt, S. Johnson, Allen, Brooks, Callahan and Dittrich; +cosponsored by Senator Knodl",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Spreitzer, Knodl, Ballweg and Felzkowski; +cosponsored by Representatives Bodden, Michalski, C. Anderson, Andraca, Behnke, Brooks, Conley, Considine, Duchow, Edming, Gundrum, Joers, Krug, Maxey, Rettinger, Schmidt, Subeck, Ortiz-Velez and Jacobson",2023-09-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Pronschinske, Edming, Murphy, Mursau, Rozar, Tusler and Wichgers; +cosponsored by Senator Jacque",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Armstrong, Behnke and Novak; +cosponsored by Senators James and Feyen",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Haywood, Bare, Emerson, Ohnstad, Moore Omokunde, Stubbs, Joers, Palmeri, Sinicki, C. Anderson, Andraca, Hong, Baldeh, Madison, Drake, Clancy, Jacobson and Goyke; +cosponsored by Senators L. Johnson, Carpenter, Taylor, Roys, Spreitzer and Agard",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, Shelton, Krug, J. Anderson, Conley, Considine, Drake, Emerson, Joers, Moore Omokunde, Palmeri, Shankland and Ohnstad; +cosponsored by Senators Smith, Larson, Roys, Spreitzer, Taylor, Hesselbein and Agard",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Nedweski, Kitchens, Sortwell, Armstrong, Binsfeld, Bodden, Callahan, Dittrich, Donovan, Edming, Goeben, Green, Gundrum, Gustafson, Macco, Magnafici, Maxey, Moses, Murphy, O'Connor, Penterman, Petryk, Rettinger, Rozar, Sapik, Schraa, Spiros and Steffen; +cosponsored by Senators Knodl, Nass, Bradley, Tomczyk and Wanggaard",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Ballweg, Larson, Roys, Spreitzer, Wirch and Agard; +cosponsored by Representatives Myers, Snodgrass, J. Anderson, Andraca, Conley, Dittrich, Donovan, Emerson, Joers, Mursau, Nedweski, Ratcliff, Schmidt, Shankland, Sinicki, Stubbs and Subeck",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Spreitzer, Agard, Carpenter, L. Johnson, Roys and Taylor; +cosponsored by Representatives Shelton, Snodgrass, J. Anderson, Bare, Conley, Considine, Emerson, Hong, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Sinicki, Stubbs, Subeck, Andraca and Haywood",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Cabral-Guevara and Roys; +cosponsored by Representatives Jacobson, Schmidt, Conley, Drake, Madison, Ohnstad, Ratcliff, Sinicki, Stubbs and Subeck",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wittke, Brooks, Allen, Murphy, O'Connor, Penterman, Rettinger, Sinicki, Wichgers and Goeben; +cosponsored by Senators Marklein, Bradley and Roys",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Madison, Emerson, Sinicki and Andraca; +cosponsored by Senators Jacque, Cabral-Guevara and Spreitzer",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Nass, Kapenga, Marklein and Stroebel; +cosponsored by Representatives Sortwell, Bodden, Brandtjen, Green, Gustafson, Magnafici, Penterman and Rettinger",2023-04-06T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, Taylor, Nass and Tomczyk; +cosponsored by Representatives Sortwell, Ortiz-Velez, Steffen, Behnke, Bodden, Brandtjen, Edming, Murphy, Moses and Krug",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Carpenter and Spreitzer; +cosponsored by Representatives Gustafson, Doyle, C. Anderson, Behnke, Brandtjen, Dittrich, Jacobson, Joers, Magnafici, Murphy, Ortiz-Velez, Palmeri, Ratcliff and Sinicki",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Cabral-Guevara, Hutton, Jacque, James, Marklein and Tomczyk; +cosponsored by Representatives Spiros, Dittrich, Donovan, Edming, S. Johnson, Murphy, O'Connor, Penterman, Schutt and Brandtjen",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Clancy, Drake, Jacobson, Joers, Moore Omokunde, Palmeri, Ratcliff, Shelton, Sinicki and Madison; +cosponsored by Senators Larson, Hesselbein and Taylor",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hurd, Krug, Macco, Mursau, O'Connor, Petryk, Schmidt, Wittke and Rozar; +cosponsored by Senators Testin, James, Quinn, Stafsholt and Wanggaard",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Ballweg, Spreitzer and Wanggaard; +cosponsored by Representatives Krug, Shankland, Callahan, Jacobson, Ohnstad, Penterman and VanderMeer",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Edming, Green and Armstrong; +cosponsored by Senators Quinn and Tomczyk",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Marklein, Nass, Tomczyk and Wanggaard; +cosponsored by Representatives Plumer, Tranel, Schmidt, Allen, Behnke, Brandtjen, Dittrich, Edming, Gundrum, Gustafson, S. Johnson, Kurtz, Magnafici, Maxey, Mursau, O'Connor, Oldenburg, Rettinger, Sapik, Schraa, Tittl, Wichgers and Bodden",2023-06-29T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Legislative Organization,2023-01-03T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Oldenburg, Moses, Mursau and Novak; +cosponsored by Senators Marklein, Ballweg, Spreitzer and Taylor",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goeben, Behnke, Dittrich, Edming, Maxey, Murphy, Rettinger, Sapik, Schutt, Wichgers, Allen and Brandtjen; +cosponsored by Senators Cabral-Guevara, Nass and Felzkowski",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dallman, Kurtz, Behnke, Brandtjen, Murphy, O'Connor, Penterman, Steffen and Wichgers; +cosponsored by Senators Tomczyk and Cabral-Guevara",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Cowles, Pfaff, Smith, Spreitzer and Testin; +cosponsored by Representatives Novak, Shankland, Tranel, Oldenburg, Dittrich, C. Anderson, Goeben, Gundrum, Hurd, Jacobson, Joers, Kitchens, Krug, Kurtz, Moses, Mursau and Schmidt",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Neubauer, Stubbs, Goyke, Conley, Sinicki, Ratcliff, Bare, Emerson, Snodgrass, Drake, Shelton, Baldeh, Considine, Joers, Murphy, Subeck, J. Anderson, Myers, Shankland, Cabrera, Andraca, Ohnstad, Riemer, Billings, Hong, C. Anderson, Moore Omokunde and Palmeri; +cosponsored by Senators Agard, Pfaff, L. Johnson, Roys, Hesselbein, Carpenter, Wirch, Spreitzer, Larson, Smith, Ballweg and Cowles",2023-04-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, James and L. Johnson; +cosponsored by Representatives VanderMeer, Magnafici, Allen, Armstrong, Baldeh, Behnke, Brandtjen, Cabrera, Callahan, Dittrich, Edming, Emerson, Green, O'Connor, Ortiz-Velez and Subeck",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, L. Johnson, Smith, Wirch and Testin; +cosponsored by Representatives Stubbs, Spiros, Bare, Conley, Dittrich, Gundrum, Jacobson, Joers, Maxey, Moore Omokunde, Novak, O'Connor, Ortiz-Velez, Ratcliff, Sinicki and Summerfield",2024-01-30T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Hesselbein and Spreitzer; +cosponsored by Representatives O'Connor, Doyle, Penterman, Subeck, Green, Rettinger, Wichgers and Allen",2023-05-02T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Senator LeMahieu,2023-09-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Felzkowski and Tomczyk; +cosponsored by Representatives Tittl, Plumer, Brooks, Edming, Gustafson, Murphy, Mursau, Rettinger, Schmidt, Sortwell and VanderMeer",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator LeMahieu; +cosponsored by Representative Vos",2023-01-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Novak, Subeck, Kitchens, C. Anderson, J. Anderson, Bare, Conley, Drake, Emerson, Hong, Jacobson, Joers, S. Johnson, Neubauer, Ohnstad, Ratcliff, Shelton, Sinicki, Snodgrass, Stubbs, Tusler and Vining; +cosponsored by Senators L. Johnson, Roys, Carpenter, Hesselbein, Smith, Spreitzer and Agard",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Senator LeMahieu,2023-04-17T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative Dallman,2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Carpenter, Spreitzer and Smith; +cosponsored by Representatives Doyle, Shankland, Ohnstad, Sinicki, Joers, Moore Omokunde, Baldeh, Stubbs, Snodgrass, Subeck, Bare, Andraca, Ortiz-Velez, Cabrera, J. Anderson, Palmeri, Jacobson and C. Anderson",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Green, Armstrong, Binsfeld, C. Anderson, Considine, Dittrich, Doyle, Goeben, S. Johnson, Novak, Oldenburg, Ortiz-Velez, Sapik, Schmidt, Shankland, Steffen and Tittl; +cosponsored by Senators Testin, Wanggaard, Ballweg, Cowles, Felzkowski, Larson, Pfaff, Smith, Spreitzer and Quinn",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Palmeri, Schraa, Behnke, Clancy, Conley, Considine, Drake, Emerson, Jacobson, Joers, Madison, Murphy, O'Connor, Ratcliff, Shankland, Shelton, Sinicki, Spiros, Steffen, Stubbs and Vining; +cosponsored by Senators Feyen, Roys, Spreitzer, Taylor and Cabral-Guevara",2023-04-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Carpenter, Nass, Roys, Spreitzer, Cabral-Guevara, Ballweg, Marklein, Hesselbein and Cowles; +cosponsored by Representatives Duchow, Macco, Armstrong, Bare, Dittrich, Donovan, Drake, Edming, Kitchens, Krug, Magnafici, Nedweski, O'Connor, Oldenburg, Penterman, Rettinger, Rozar, Schutt, Snyder, Spiros, Steffen, Vining, Wittke, Stubbs, S. Johnson, Ortiz-Velez, Murphy, Palmeri, Shankland and Schraa",2023-10-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Marklein and Taylor; +cosponsored by Representatives Plumer, Binsfeld, Melotik, Novak, O'Connor, Rodriguez, Schmidt, Baldeh, Cabrera, Ortiz-Velez and Wichgers",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Jacobson, C. Anderson, Myers, Shankland, Cabrera, Clancy, Conley, Considine, Emerson, Joers, Palmeri, Ratcliff, Sinicki, Snodgrass, Subeck, Vining, Bare, Stubbs, Moore Omokunde, Madison, J. Anderson and Neubauer; +cosponsored by Senators Larson, L. Johnson, Hesselbein, Smith, Agard, Spreitzer, Carpenter and Pfaff",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rettinger, Donovan, C. Anderson, Bare, Behnke, Callahan, Dittrich, Goeben, Green, Jacobson, Kurtz, Melotik, Michalski, Moses, Mursau, Nedweski, O'Connor, Ohnstad, Rozar, Spiros, Subeck, Tittl, Wichgers, Magnafici and Oldenburg; +cosponsored by Senators Tomczyk, Ballweg, Bradley, Cabral-Guevara, Feyen, Hutton, Knodl, Marklein, Quinn, Roys, Spreitzer, Wanggaard and Hesselbein",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Jacobson, Oldenburg, J. Anderson, Armstrong, Baldeh, Bare, Drake, Emerson, Joers, O'Connor, Ohnstad, Ratcliff and Sinicki; +cosponsored by Senators Spreitzer, Pfaff, Agard, Larson, Roys and Wirch",2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives VanderMeer, Considine, Kurtz, Allen, C. Anderson, Armstrong, Bare, Billings, Conley, Dallman, Dittrich, Doyle, Edming, Emerson, Joers, Krug, Magnafici, Maxey, Melotik, Moore Omokunde, Mursau, O'Connor, Ohnstad, Ortiz-Velez, Oldenburg, Penterman, Rozar, Spiros, Tittl and Shankland; +cosponsored by Senators Testin, James, Smith and Pfaff",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Taylor; +cosponsored by Representatives Sortwell, Allen, Armstrong, Brandtjen, Edming, Goeben, Gustafson, Maxey, Michalski, Ortiz-Velez, Stubbs and Donovan",2023-06-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Behnke, Armstrong, Baldeh, Bodden, Brooks, Dittrich, Duchow, Mursau, Novak, Ortiz-Velez, Rodriguez, Rozar, Sortwell, Subeck and Tusler; +cosponsored by Senators Wimberger, James, Felzkowski, Nass, Roys, Spreitzer, Stafsholt and Wanggaard",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, Schraa, Brooks, Baldeh, Novak, Drake, Moore Omokunde, Snyder, O'Connor, Palmeri, Magnafici, Madison, Goyke, Shelton, Mursau, Ohnstad, Conley, Armstrong, Tranel, Ortiz-Velez, Shankland, Edming, Andraca, Joers, Vining, Cabrera, Considine, C. Anderson, Hurd, Behnke, Subeck, Neubauer, Hong, Sinicki, S. Johnson, Ratcliff, Myers, Brandtjen, J. Anderson, Clancy and Jacobson; +cosponsored by Senators James, L. Johnson, Taylor, Agard, Carpenter, Larson, Smith, Spreitzer, Roys and Wirch",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Carpenter, Hesselbein, James, L. Johnson, Larson, Roys, Smith and Spreitzer; +cosponsored by Representatives Hong, Shankland, J. Anderson, C. Anderson, Bare, Cabrera, Clancy, Conley, Considine, Emerson, Goyke, Jacobson, Joers, Kitchens, Madison, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Sinicki, Shelton, Snodgrass, Snyder, Stubbs, Subeck, Vining and Tusler",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Nass; +cosponsored by Representatives Allen, Bodden, Brandtjen, Maxey, Wichgers and Murphy",2023-05-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Roys, Smith, Spreitzer and Taylor; +cosponsored by Representatives Jacobson, Shankland, C. Anderson, Considine, Bare, Drake, Emerson, J. Anderson, Joers, Palmeri, Ratcliff, Shelton, Subeck and Ohnstad",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goeben, Bodden, Behnke, Brandtjen, Dittrich, Gundrum, Gustafson, Hurd, S. Johnson, Macco, Maxey, Michalski, Murphy, Mursau, Myers, Nedweski, O'Connor, Rettinger, Rozar, Schraa, Snyder, Sortwell and Stubbs; +cosponsored by Senators James, Hutton, Tomczyk and Wanggaard",2023-06-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Felzkowski, Jacque, Marklein and Wanggaard; +cosponsored by Representatives Schutt, Bodden, Behnke, Goeben, Green, Gundrum, Hurd, Krug, Maxey, Mursau, Penterman, Rettinger, Schmidt, Tranel and Wichgers",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Tomczyk and Spreitzer; +cosponsored by Representatives Moses, Allen, Armstrong, Behnke, Bodden, Brandtjen, Dittrich, Edming, Goeben, Gundrum, Gustafson, S. Johnson, O'Connor, Ortiz-Velez, Penterman, Rozar, Schmidt, Schutt, Snyder and Sortwell",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Shankland, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, Madison, McGuire, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Shelton, Snodgrass, Stubbs, Subeck and Vining; +cosponsored by Senators Wirch, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Roys, Smith, Spreitzer and Taylor",2023-10-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor, Roys, L. Johnson, Agard, Larson and Spreitzer; +cosponsored by Representatives Madison, Clancy, Baldeh, Conley, Drake, Emerson, Jacobson, Moore Omokunde, Myers, Palmeri, Snodgrass, Stubbs and Subeck",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kitchens, Novak, Tranel, Shankland, Krug, J. Anderson, Andraca, Armstrong, Baldeh, Behnke, Considine, Dittrich, Donovan, Emerson, Green, Joers, S. Johnson, Knodl, Mursau, O'Connor, Oldenburg, Petryk, Plumer, Rozar, Sinicki, Snodgrass, Snyder, Spiros and VanderMeer; +cosponsored by Senators Cowles, Ballweg, Cabral-Guevara, Feyen, Jacque, Marklein, Pfaff, Quinn, Spreitzer and Testin",2023-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Hesselbein, James, Larson, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Gustafson, Binsfeld, Snodgrass, Andraca, Baldeh, Bare, Behnke, Cabrera, Considine, Conley, Dittrich, Goeben, J. Anderson, Joers, Krug, Macco, Murphy, Mursau, Ohnstad, Ortiz-Velez, Palmeri, Rozar, Sinicki, Spiros, Subeck, Tusler and Vining",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Melotik; +cosponsored by Senator Knodl",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Agard, Wirch and Spreitzer; +cosponsored by Representatives McGuire, Joers, Moore Omokunde, Palmeri, Ratcliff, Sinicki and Subeck",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Plumer, Macco, Moses, Rozar, Schraa, Sortwell, Vos, Born, Hurd, Kitchens, Kurtz, Melotik, O'Connor, Rodriguez, Sapik, Schmidt, Spiros and Summerfield",2024-02-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Gustafson, S. Johnson, Binsfeld, Bodden, Sapik, Myers, Schutt, Mursau, Ohnstad, Murphy, Subeck, Ortiz-Velez, O'Connor, Behnke, Cabrera and Palmeri; +cosponsored by Senators Cabral-Guevara, Carpenter and Larson",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hutton, Knodl and Roys; +cosponsored by Representatives Donovan, Brandtjen, Duchow, Edming, Gustafson, Michalski, Moses, Murphy and Schraa",2023-06-21T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Feyen, Felzkowski, James and Testin; +cosponsored by Representatives VanderMeer, Magnafici, Armstrong, C. Anderson, Behnke, Brandtjen, Brooks, Dittrich, Edming, Green, Gundrum, Hurd, Krug, Maxey, Moses, Murphy, Mursau, Novak, Oldenburg, Petryk, Rozar, Shankland, Snyder, Steffen, Stubbs and Tranel",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Green, Armstrong, Gustafson, Murphy, Rozar, Sapik, Schraa and Subeck; +cosponsored by Senators James and Wanggaard",2023-06-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives S. Johnson, Penterman and Murphy; +cosponsored by Senator James",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Plumer, Brooks, Edming, Gustafson, Murphy, Mursau, Rettinger, Schmidt, Sortwell and VanderMeer; +cosponsored by Senators Stafsholt, Felzkowski and Tomczyk",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Plumer, Mursau, Behnke, Bodden, Murphy, O'Connor and Schraa; +cosponsored by Senators Ballweg, Felzkowski and Marklein",2023-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Neubauer, J. Anderson, Emerson, C. Anderson, Baldeh, Bare, Conley, Considine, Jacobson, Joers, Moore Omokunde, Ohnstad, Madison, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs, Subeck and Vining; +cosponsored by Senators Roys, Larson, Agard, Taylor and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Knodl, Rettinger, Allen, Bodden, Brandtjen, Donovan, Duchow, Green, Gundrum, Kitchens, Murphy, Mursau, O'Connor, Penterman and Wichgers; +cosponsored by Senators Bradley, Stroebel and Tomczyk",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Ortiz-Velez, Sortwell, Conley, Cabrera, Myers, Joers, Ohnstad, Krug, Gustafson, Murphy and Sinicki; +cosponsored by Senators Knodl, Spreitzer and Taylor",2023-06-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Green, Armstrong, Baldeh, Behnke, Dittrich, Edming, Magnafici, Michalski, Murphy, Mursau, Nedweski, O'Connor, Penterman and Petryk; +cosponsored by Senator Stafsholt",2023-10-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Duchow and Subeck",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Smith, Agard, Carpenter, L. Johnson, Larson, Pfaff, Spreitzer, Wirch and Hesselbein; +cosponsored by Representatives Andraca, Joers, J. Anderson, Baldeh, Bare, Cabrera, Conley, Considine, Drake, Emerson, Hong, Madison, Moore Omokunde, Myers, Neubauer, Ratcliff, Shankland, Shelton, Sinicki, Stubbs, Subeck, Vining, Palmeri and Clancy",2024-01-31T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Gustafson, Born, Gundrum, Mursau, Novak, Ohnstad, Snodgrass, Stubbs, Tusler, VanderMeer and Myers; +cosponsored by Senators Ballweg, Cabral-Guevara, Felzkowski, L. Johnson and Testin",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, L. Johnson, Agard, Carpenter, Larson, Roys, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Stubbs, Schraa, Andraca, Armstrong, Baldeh, Behnke, Brooks, C. Anderson, Cabrera, Conley, Considine, Drake, Edming, Goyke, Hong, Joers, Madison, Magnafici, Moore Omokunde, Mursau, Neubauer, Novak, O'Connor, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Snyder, Subeck, Tranel, Vining and Myers",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Jacque, James, Larson, Smith, Taylor, Testin and Tomczyk; +cosponsored by Representatives Sortwell, Behnke, C. Anderson, Cabrera, Donovan, Murphy, Schmidt, Shankland, Snyder, Steffen, Subeck, Wichgers and Gustafson",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Shankland, Ohnstad, Neubauer, Haywood, Subeck, Goyke, Conley, Joers, Hong, Stubbs, Cabrera, Doyle, Snodgrass, Shelton, Emerson, Ratcliff, Ortiz-Velez, J. Anderson, Considine, C. Anderson, Moore Omokunde and Palmeri; +cosponsored by Senators L. Johnson, Smith, Larson, Hesselbein, Roys, Carpenter, Wirch, Spreitzer and Pfaff",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, Rozar, J. Anderson, Andraca, Armstrong, Bare, Binsfeld, Conley, Drake, Emerson, Jacobson, Joers, Krug, Melotik, Mursau, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Snyder, Stubbs, Madison, Clancy, Gustafson and Murphy; +cosponsored by Senators Cabral-Guevara, L. Johnson, Carpenter, Hesselbein, Larson, Pfaff and Roys",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Behnke, August, Binsfeld, Conley, Donovan, Drake, Macco, Murphy, Mursau, O'Connor, Penterman, Sortwell, Stubbs, Tittl, Tranel and Vos",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Wanggaard and Spreitzer; +cosponsored by Representatives Duchow, Neylon, Behnke, Donovan, Emerson, Kitchens, Knodl, Moses, Murphy, Mursau, Nedweski, O'Connor, Penterman, Pronschinske, Rettinger, Rodriguez, Rozar, Snodgrass, Spiros, Steffen and Tusler",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Petryk, O'Connor, Emerson, Murphy and Subeck",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara and Nass; +cosponsored by Representatives Murphy, Sortwell, Armstrong, Behnke, Bodden, Brandtjen, Edming, Goeben, Magnafici, Michalski, Mursau, O'Connor, Rettinger and Tusler",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn and Felzkowski; +cosponsored by Representatives Petryk, Allen, Armstrong, Behnke, Bodden, Born, Brooks, Dallman, Dittrich, Duchow, Edming, Green, Gundrum, Macco, Magnafici, Michalski, Moses, Mursau, Nedweski, O'Connor, Oldenburg, Penterman, Petersen, Plumer, Rettinger, Schmidt, Wichgers, Wittke and Steffen",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Edming, C. Anderson, Gundrum, Moses, Mursau, O'Connor, Penterman, Sinicki, Subeck and Jacobson; +cosponsored by Senators Tomczyk, Ballweg, Carpenter, Cowles, Felzkowski and Spreitzer",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Edming, Shankland, Palmeri and Snyder; +cosponsored by Senators James, Tomczyk and Spreitzer",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Agard; +cosponsored by Representatives Vining, Moore Omokunde, Considine, Palmeri, Bare, Emerson, Joers, Madison, Ohnstad, Ortiz-Velez, Ratcliff, Shankland and Stubbs",2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Haywood, Joers, Ratcliff, Emerson, Bare, Snodgrass, Sinicki, Conley, Moore Omokunde, Andraca, Considine, Hong, Ohnstad and Neubauer; +cosponsored by Senators Hesselbein, L. Johnson, Larson, Spreitzer and Roys",2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Goeben, Rozar, Allen, Behnke, Bodden, Brandtjen, Brooks, Callahan, Edming, Magnafici, Maxey, Michalski, Moses, Murphy, O'Connor, Rettinger, Sapik, Schraa and Schutt; +cosponsored by Senators Nass and Cabral-Guevara",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Feyen and Wanggaard; +cosponsored by Representatives Spiros, Behnke, Brandtjen, Callahan, Dallman, Dittrich, Donovan, Duchow, Edming, Goeben, Krug, Kurtz, Magnafici, Melotik, Novak, Ohnstad, Penterman, Rettinger, Tusler, VanderMeer and Wittke",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Edming, Armstrong, Brandtjen, Goeben, Gustafson, Joers, Krug, Magnafici, Murphy, Mursau, O'Connor, Rettinger, Schutt, Sinicki, Snodgrass, Tittl and Wichgers; +cosponsored by Senators Testin, Ballweg, Felzkowski, James, Marklein, Stroebel and Wirch",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Stubbs, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Drake, Emerson, Jacobson, Joers, Moore Omokunde, Ohnstad, Palmeri, Shelton, Sinicki and Snodgrass; +cosponsored by Senators Larson, Smith, L. Johnson, Hesselbein and Spreitzer",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Allen, Baldeh, Cabrera, Conley, Goeben, Joers, Moore Omokunde, Ortiz-Velez, Palmeri, Ratcliff, Sinicki, Snodgrass, Stubbs, Subeck and Jacobson; +cosponsored by Senators Spreitzer, Carpenter, Hesselbein and Larson",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bare, Conley, Emerson, Joers, Ratcliff, Sinicki, Subeck and Palmeri; +cosponsored by Senators Hesselbein, Agard and Spreitzer",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Binsfeld, Myers, Baldeh, Brandtjen, Cabrera, Donovan and Schmidt; +cosponsored by Senators Stroebel, Knodl, Hutton, Nass and Taylor",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Smith, Cowles and Spreitzer; +cosponsored by Representatives Tusler, Riemer, Kurtz, Andraca, Donovan, Doyle, Drake, Joers, S. Johnson, Kitchens, Mursau, Novak, Shankland, Steffen, Subeck, Zimmerman and J. Anderson",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Spiros, Dittrich, Donovan, Edming, S. Johnson, Murphy, O'Connor, Penterman, Schutt and Brandtjen; +cosponsored by Senators Wanggaard, Cabral-Guevara, Hutton, Jacque, James, Marklein and Tomczyk",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Oldenburg, Novak, Tranel, Plumer, Mursau and Kitchens",2023-09-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Riemer, Sinicki, Andraca, Bare, Conley, Drake, Emerson, Gustafson, Jacobson, Joers, Mursau, Ohnstad, Ortiz-Velez, Palmeri, Shelton, Snodgrass, Stubbs, Haywood and Neubauer; +cosponsored by Senators Hesselbein, Pfaff, Carpenter, Roys, Spreitzer and Taylor",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Andraca, Conley, C. Anderson, J. Anderson, Bare, Clancy, Considine, Drake, Jacobson, Madison, Ohnstad, Palmeri, Ratcliff and Subeck; +cosponsored by Senators Larson, Agard, Roys and Spreitzer",2024-02-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Cowles, Felzkowski, Jacque, James, Marklein, Nass, Pfaff, Spreitzer and Testin; +cosponsored by Representatives Green, Armstrong, Edming, Knodl, Kurtz, Magnafici, Moses, Mursau, Oldenburg, Spiros, Steffen, Summerfield, Swearingen and Schraa",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Agard, L. Johnson, Larson, Roys and Spreitzer; +cosponsored by Representatives Shankland, Ratcliff, Bare, Emerson, Joers, Moore Omokunde, Sinicki and Stubbs",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard and Roys; +cosponsored by Representatives Vining, Myers, Moore Omokunde, Bare, Clancy, Emerson, Joers, Madison, Neubauer, Ortiz-Velez, Ratcliff, Shankland, Stubbs and Palmeri",2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Cowles, James, Marklein and Quinn; +cosponsored by Representatives Kurtz, Dallman, Armstrong, Binsfeld, Brooks, Dittrich, Donovan, Edming, Green, Moses, Mursau, Novak, Plumer, Rozar, Schmidt, Swearingen and Tittl",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard and Taylor; +cosponsored by Representatives Sortwell, Steffen, Behnke, Duchow, Green, Gundrum, Murphy, Mursau and Penterman",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators LeMahieu, Hesselbein, Ballweg, James, Roys, Testin and Wirch; +cosponsored by Representatives Vos, Neubauer, Armstrong, August, Bare, Binsfeld, C. Anderson, Considine, Dittrich, Duchow, S. Johnson, Kitchens, Macco, Magnafici, Michalski, Novak, O'Connor, Ohnstad, Palmeri, Shelton, Sinicki, Spiros, Steffen, Stubbs, Subeck, Summerfield, Wittke, Zimmerman, Schraa and Jacobson",2024-02-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hutton, Cabral-Guevara, Wanggaard, Ballweg and Stroebel; +cosponsored by Representatives Tusler, Allen, Behnke, Conley, Gustafson, Kitchens, Murphy, O'Connor, Penterman, Rettinger, Rozar, Spiros and Wichgers",2023-06-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Quinn and Tomczyk; +cosponsored by Representatives Tittl, Sortwell, Allen, Binsfeld, Goeben, Green, Gundrum, Magnafici, Murphy, Penterman, Schraa, Tusler, Wichgers and Bodden",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Shelton, Jacobson, Considine, C. Anderson, J. Anderson, Bare, Clancy, Conley, Drake, Emerson, Joers, Madison, Ohnstad, Palmeri, Sinicki, Snodgrass, Subeck and Haywood; +cosponsored by Senators Pfaff, Smith, Spreitzer, Hesselbein, Roys and Taylor",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Dallman, Dittrich, Duchow, Gundrum, Michalski, Novak, O'Connor and Oldenburg; +cosponsored by Senators Marklein and Testin",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Snodgrass, Andraca, Clancy, Conley, Considine, Moore Omokunde, Palmeri, Ratcliff, Sinicki, Stubbs, Subeck and Neubauer; +cosponsored by Senators Larson, Agard and Spreitzer",2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Felzkowski and Tomczyk; +cosponsored by Representatives Brooks, Behnke, Bodden, Brandtjen, Dittrich, Moses, O'Connor, Rozar, Sortwell and Zimmerman",2023-11-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Murphy, Tusler, Donovan and Rozar",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk and Cabral-Guevara; +cosponsored by Representatives Dallman, Kurtz, Behnke, Brandtjen, Murphy, O'Connor, Penterman, Steffen and Wichgers",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Sinicki, Zimmerman, Wittke, Tusler, Tittl, Subeck, Stubbs, Spiros, Shankland, Rozar, Riemer, Ratcliff, Petryk, Petersen, Ortiz-Velez, Ohnstad, Novak, Mursau, Knodl, Kitchens, Joers, Haywood, Gustafson, Emerson, Edming, Donovan, Considine, Conley, Cabrera, Brandtjen, Billings, Baldeh, Armstrong, Andraca, C. Anderson and Jacobson; +cosponsored by Senators Cowles, Hesselbein, Wirch, Wanggaard, Taylor, Stafsholt, Spreitzer, Pfaff, Larson, James, Feyen and Carpenter",2023-02-10T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Behnke, Bodden, Brooks, Dittrich, Gundrum, Gustafson, Magnafici, Penterman and Wichgers; +cosponsored by Senators Nass, Stroebel, Cabral-Guevara, Knodl and Tomczyk",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Murphy, Brandtjen, Behnke, Bodden, Donovan and Wichgers",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Gustafson, Stubbs, Tusler, Baldeh and Wichgers; +cosponsored by Senators Cowles and Wanggaard",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Testin, Ballweg, Cowles, Feyen, Marklein, Nass, Stafsholt and Taylor; +cosponsored by Representatives Plumer, Spiros, Behnke, Brandtjen, Brooks, Donovan, Edming, Goeben, Magnafici, Murphy, Novak, O'Connor, Rozar and Mursau",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Gundrum, Ratcliff and Wittke; +cosponsored by Senator James",2024-02-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Carpenter, Ballweg, Hesselbein, Marklein and Quinn; +cosponsored by Representatives Macco, Wittke, C. Anderson, Armstrong, Behnke, Conley, Dittrich, Donovan, Edming, Gustafson, Joers, Kitchens, Maxey, Michalski, O'Connor, Ohnstad, Ortiz-Velez, Petryk, Snyder and Wichgers",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Cabral-Guevara; +cosponsored by Representatives S. Johnson, Dittrich, Donovan, Murphy, Nedweski and Penterman",2024-02-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives VanderMeer, Armstrong, Hurd, Krug, O'Connor, Schmidt and Edming; +cosponsored by Senators Ballweg, Jacque, James, Quinn and Tomczyk",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Snyder; +cosponsored by Senator Tomczyk",2024-01-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Tusler, Behnke, Allen, Armstrong, Binsfeld, Brandtjen, Brooks, Edming, Goeben, Gundrum, Gustafson, Hurd, Magnafici, Maxey, Michalski, Murphy, O'Connor, Penterman, Rettinger, Rozar, Schmidt, Schraa, Schutt, Tittl, Wichgers and Green; +cosponsored by Senators Tomczyk, Bradley, Cabral-Guevara, James, Marklein, Nass, Quinn and Stroebel",2023-06-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Cabral-Guevara, Cowles, Feyen, Marklein, Nass and Testin; +cosponsored by Representatives Kurtz, Schmidt, Armstrong, Born, C. Anderson, Edming, Goeben, Gundrum, Gustafson, Krug, Magnafici, Mursau, Nedweski, Novak, O'Connor, Oldenburg, Penterman, Sortwell and Stubbs",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Pfaff, Ballweg, Cabral-Guevara, Carpenter, Spreitzer, Taylor and Wanggaard; +cosponsored by Representatives Snyder, O'Connor, Spiros and Subeck",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Cabrera, Baldeh, Drake, Emerson, Jacobson, Madison, Ohnstad, Ortiz-Velez, Ratcliff and Stubbs; +cosponsored by Senator Taylor",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wichgers, Maxey, Brandtjen, Murphy, Rettinger, Moses, Behnke and Allen; +cosponsored by Senators Jacque, Cabral-Guevara and Tomczyk",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor, L. Johnson, Spreitzer, Agard and Larson; +cosponsored by Representatives Madison, Ratcliff, Clancy, Conley, C. Anderson, J. Anderson, Considine, Goyke, Jacobson, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Stubbs and Sinicki",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hutton and Stroebel; +cosponsored by Representatives Maxey, Michalski, Bodden, Allen, Murphy, Neylon, O'Connor, Penterman, Rettinger and Schmidt",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, L. Johnson, Jacque, Nass and Taylor; +cosponsored by Representatives Donovan, Knodl, Allen, Baldeh, Binsfeld, Gundrum, S. Johnson, Kurtz, Maxey, Murphy, Myers, Nedweski, Novak, O'Connor, Ortiz-Velez, Rettinger and Wichgers",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gundrum, Goeben, Behnke, Callahan, Dittrich, Donovan, Edming, Hurd, Kitchens, Maxey, Murphy, Mursau, O'Connor, Penterman, Schraa and Wichgers; +cosponsored by Senator Knodl",2024-01-18T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Stafsholt, Ballweg, Quinn and Stroebel; +cosponsored by Representatives Penterman, Binsfeld, Brandtjen, Donovan, Gundrum, Maxey, Murphy, Mursau, O'Connor, Rettinger, Rozar, Schutt, Tittl and Wichgers",2023-05-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Feyen, Spreitzer and Tomczyk; +cosponsored by Representatives Snyder, Allen, C. Anderson, Dittrich, Donovan, Doyle, Gundrum, Gustafson, Joers, Melotik, Murphy, O'Connor, Oldenburg, Ortiz-Velez, Duchow, Schmidt, Wittke, Mursau and Stubbs",2023-09-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Bodden, Behnke, Gustafson, S. Johnson, Magnafici, Moses, Penterman, Rozar, Schmidt and Tittl; +cosponsored by Senators Taylor and Cabral-Guevara",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Plumer, Moses, Penterman, Behnke, Binsfeld, Bodden, Brandtjen, Brooks, Dallman, Dittrich, Donovan, Edming, Green, Gundrum, Gustafson, Knodl, Magnafici, Murphy, Nedweski, O'Connor, Petersen, Petryk, Rettinger, Rozar, Schmidt, Snyder, Sortwell and Steffen; +cosponsored by Senators Tomczyk, Cabral-Guevara, Felzkowski, Marklein, Nass and Stroebel",2023-04-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Billings, Mursau, C. Anderson, Andraca, Bare, Behnke, Cabrera, Conley, Considine, Dittrich, Gustafson, Jacobson, Joers, Moses, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Subeck and Tittl; +cosponsored by Senators Jagler, Spreitzer, Ballweg, Cabral-Guevara, Hesselbein, Pfaff and Roys",2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and Quinn; +cosponsored by Representatives Sortwell, Armstrong, Behnke, Brooks, Donovan, Green, Kitchens, Murphy, Mursau and Allen",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, C. Anderson, Baldeh, Clancy, Emerson, Hong, Madison, Moore Omokunde, Neubauer, Ohnstad, Palmeri, Sinicki and Snodgrass; +cosponsored by Senators Carpenter and L. Johnson",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Edming, Macco, Allen, Andraca, Armstrong, Baldeh, Brandtjen, Conley, Dittrich, Goeben, Green, Michalski, Mursau, Ohnstad, Ortiz-Velez, Penterman, Petryk, Plumer, Rozar, Shankland, Sinicki, Summerfield, Tusler and Wichgers; +cosponsored by Senators Jacque, Testin, James, Quinn, Spreitzer, Taylor and Wirch",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Steffen, Behnke, Brandtjen, Dittrich, Donovan, Edming, Goeben, Gustafson, Michalski, Murphy, O'Connor, Tittl and Wichgers; +cosponsored by Senators Wanggaard, Ballweg, Marklein and Tomczyk",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Wanggaard; +cosponsored by Representative Vos",2023-09-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Cabral-Guevara; +cosponsored by Representatives Rozar, S. Johnson, Behnke, Brandtjen, Clancy, Gustafson, Madison, Moses, O'Connor, Schmidt, Tusler, VanderMeer and Wichgers",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schutt, Katsma, Krug, Allen, Armstrong, August, Behnke, Binsfeld, Born, Brandtjen, Dittrich, Donovan, Edming, Goeben, Green, Gundrum, Hurd, Kurtz, Macco, Magnafici, Maxey, Melotik, Moses, Murphy, Mursau, Nedweski, O'Connor, Oldenburg, Penterman, Petryk, Plumer, Rettinger, Schmidt, Schraa, Snyder, Sortwell, Spiros, Steffen, Tranel, Wichgers, Wittke and Swearingen; +cosponsored by Senators Ballweg, Stroebel, Bradley, Cabral-Guevara, Felzkowski, Feyen, Jagler, Marklein, Nass, Quinn, Testin, Wanggaard and Tomczyk",2024-01-29T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Andraca, Armstrong, Baldeh, Edming, Goeben, Gundrum, Jacobson, Joers, Mursau, O'Connor and Stubbs; +cosponsored by Senators Ballweg, Cabral-Guevara, Feyen, Smith, Spreitzer, Tomczyk and Roys",2023-08-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James and Quinn; +cosponsored by Representatives Summerfield, Hurd, Moses, Petryk, Pronschinske, Armstrong and Rozar",2024-02-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Clancy, Baldeh, Conley, Drake, Emerson, Jacobson, Moore Omokunde, Myers, Palmeri, Snodgrass, Stubbs and Subeck; +cosponsored by Senators Taylor, Roys, L. Johnson, Agard, Larson and Spreitzer",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Wanggaard, Feyen and Quinn; +cosponsored by Representatives Wittke, Kitchens, Brooks, Duchow, Behnke, Goeben, Gustafson, Melotik, Moses, Murphy, Mursau, Neylon, O'Connor, Rozar, Baldeh, Conley, Myers, Novak and Steffen",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley and Smith; +cosponsored by Representatives Summerfield, Dittrich, O'Connor and Subeck",2023-12-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Bradley, Hutton, Jacque, Jagler, James, Nass, Testin and Tomczyk; +cosponsored by Representatives Snyder, Rozar, Allen, Armstrong, Behnke, Bodden, Brandtjen, Donovan, Edming, Gundrum, Gustafson, Hurd, Krug, Magnafici, Maxey, Murphy, Mursau, Nedweski, O'Connor, Penterman, Rettinger, Schmidt, Schraa, Steffen, Tusler and Wichgers",2023-06-21T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Considine, Emerson, Jacobson, Joers, Madison, Ohnstad, Palmeri, Ratcliff and Shelton; +cosponsored by Senators Smith, Spreitzer, Hesselbein, Roys, Taylor and Agard",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Testin; +cosponsored by Representatives Magnafici, Gundrum, Donovan, Gustafson, Rodriguez and Schmidt",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, Stubbs, Hong, Baldeh and Madison; +cosponsored by Senators Larson and Roys",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goeben, Hurd, Binsfeld, Brandtjen, Edming, Green, Gundrum, Gustafson, Krug, Magnafici, Maxey, O'Connor, Petersen, Petryk, Plumer, Rozar, Schmidt, Sortwell, Steffen, Summerfield, Swearingen, Tranel and VanderMeer; +cosponsored by Senators Ballweg and Stroebel",2023-09-01T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Neubauer, Moore Omokunde, Hong, Madison, J. Anderson, Andraca, Baldeh, Bare, Clancy, Conley, Emerson, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs, Subeck, Vining and Drake; +cosponsored by Senators Larson, Agard, L. Johnson, Roys, Carpenter, Smith and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein and Testin; +cosponsored by Representatives Kurtz, Dallman, Dittrich, Duchow, Gundrum, Michalski, Novak, O'Connor and Oldenburg",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Cowles, Marklein, Nass and Spreitzer; +cosponsored by Representatives Petryk, Zimmerman, Armstrong, Behnke, Magnafici and Moses",2023-03-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Nedweski, August, Murphy, O'Connor, Penterman, Rettinger, Schutt and Vos; +cosponsored by Senators Wanggaard and Marklein",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor, James, Hesselbein, Tomczyk, Agard, Carpenter, Larson, Roys and Spreitzer; +cosponsored by Representatives Macco, Ortiz-Velez, Kitchens, Conley, Goyke, O'Connor, McGuire, Allen, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Considine, Emerson, Hong, Joers, Madison, Mursau, Neubauer, Ohnstad, Snyder, Sinicki, Subeck, Schraa and Jacobson",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Carpenter, Larson and Agard; +cosponsored by Representatives Ratcliff, Clancy, Neubauer, Snodgrass, Joers, Moore Omokunde, Sinicki, Bare, C. Anderson, Andraca, J. Anderson, Vining, Madison and Baldeh",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Binsfeld, O'Connor, Allen, Armstrong, Bodden, Callahan, Dallman, Dittrich, Donovan, Duchow, Edming, Goeben, Green, Gundrum, Gustafson, Hurd, S. Johnson, Katsma, Krug, Macco, Magnafici, Maxey, Melotik, Michalski, Moses, Penterman, Petersen, Petryk, Plumer, Pronschinske, Rettinger, Rozar, Sapik, Schmidt, Schutt, Snyder, Spiros, Sortwell, Steffen, Swearingen, Summerfield, Tittl, Tusler, Vos, Wittke and Zimmerman; +cosponsored by Senator Knodl",2023-08-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Testin, Felzkowski and Spreitzer; +cosponsored by Representatives Gundrum, Behnke, Allen, Brandtjen, Goeben, Ortiz-Velez, Tusler and Wichgers",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Conley, Andraca, Drake, Emerson, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Ratcliff, Shankland, Sinicki and Subeck; +cosponsored by Senators Spreitzer, Larson, Roys and Agard",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schmidt, Maxey, Bare, C. Anderson, Baldeh, Behnke, Binsfeld, Dittrich, Duchow, Edming, Goeben, Gustafson, Kitchens, Kurtz, Melotik, Michalski, Moses, Murphy, Novak, O'Connor, Oldenburg, Rettinger, Rozar, Sapik, Schutt, Shankland, Steffen, Tittl, Tranel, S. Johnson and Schraa; +cosponsored by Senators Marklein, Ballweg, Cowles, Pfaff, Quinn, Spreitzer and Wimberger",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Roys, Smith, Spreitzer and Wirch; +cosponsored by Representatives Baldeh, Billings, Palmeri, C. Anderson, J. Anderson, Andraca, Bare, Conley, Considine, Emerson, Hong, Joers, Neubauer, Moore Omokunde, Ohnstad, Ratcliff, Shelton, Sinicki, Stubbs, Subeck and Madison",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Ballweg and Taylor; +cosponsored by Representatives Tittl, C. Anderson, Behnke, Billings, Goeben, Gustafson, Jacobson, Joers, Kitchens, Melotik, Michalski, Ortiz-Velez, Ratcliff, Sapik, Shankland, Snodgrass, Stubbs, Subeck, Tusler, VanderMeer, Cabrera and Sinicki",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Nass, Tomczyk and Wanggaard; +cosponsored by Representatives Gustafson, C. Anderson, Armstrong, Behnke, Binsfeld, Bodden, Brandtjen, Callahan, Dallman, Donovan, Green, Gundrum, S. Johnson, Kitchens, Madison, Melotik, Plumer, Pronschinske, Rettinger, Schmidt, Schraa, Sortwell, Steffen and Wichgers",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Nedweski; +cosponsored by Senator Wanggaard",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Brandtjen, Ortiz-Velez, Drake, Allen, Andraca, Baldeh, Behnke, Donovan, Gundrum, Mursau, Penterman, Sinicki, Stubbs, Subeck, Wichgers and Jacobson; +cosponsored by Senators Jacque, Taylor and Cabral-Guevara",2023-02-28T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Magnafici, Rozar, Allen, Armstrong, Behnke, Binsfeld, Bodden, Brandtjen, Donovan, Edming, Goeben, Gundrum, Gustafson, Krug, Macco, Maxey, Moses, Murphy, Nedweski, O'Connor, Penterman, Rettinger, Schmidt, Schraa, Tusler and Wichgers; +cosponsored by Senators Quinn, Ballweg, Hutton, Jacque, Jagler, Knodl, Marklein, Nass and Tomczyk",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Committee on Rules,2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Emerson, J. Anderson, Bare, Conley, Considine, Drake, Jacobson, Joers, Ohnstad, Moore Omokunde, Palmeri, Ratcliff, Shankland, Sinicki, Snodgrass, Stubbs, Subeck and Clancy; +cosponsored by Senators Smith, L. Johnson, Agard, Larson, Pfaff, Roys and Spreitzer",2024-02-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Shankland, C. Anderson, J. Anderson, Andraca, Bare, Billings, Cabrera, Clancy, Conley, Considine, Dittrich, Joers, Madison, Murphy, Mursau, O'Connor, Ohnstad, Palmeri, Petryk, Shelton, Sinicki, Stubbs and Subeck",2024-02-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Snyder; +cosponsored by Senator Tomczyk",2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara and Felzkowski; +cosponsored by Representatives Rozar, C. Anderson, Drake, Emerson, Magnafici, Moses, Murphy, Ohnstad, Shankland, Sinicki, Clancy and Madison",2023-05-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Armstrong, Behnke, Binsfeld, Brandtjen, Brooks, Dittrich, Donovan, Edming, Green, Krug, Moses, O'Connor, Oldenburg, Penterman, Petryk, Rettinger, Spiros, Tranel and Wichgers; +cosponsored by Senators Jacque, Feyen, Larson, Taylor and Testin",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Considine, Snodgrass, J. Anderson, Andraca, Baldeh, Bare, Cabrera, Clancy, Conley, Dittrich, Drake, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, Moore Omokunde, Murphy, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Stubbs, Vining and Madison; +cosponsored by Senators Larson, Roys and Spreitzer",2023-05-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goeben, Hurd, Binsfeld, Brandtjen, Edming, Green, Gundrum, Gustafson, Magnafici, Maxey, Murphy, O'Connor, Penterman, Petersen, Petryk, Plumer, Rozar, Schmidt, Sortwell, Steffen, Summerfield, Swearingen and VanderMeer; +cosponsored by Senators Ballweg and Stroebel",2023-09-01T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Haywood, Baldeh, Drake, Moore Omokunde, Myers, Stubbs, Clancy and Bare; +cosponsored by Senators L. Johnson, Spreitzer and Larson",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Committee on Labor and Integrated Employment,2024-02-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Felzkowski and Marklein; +cosponsored by Representatives Plumer, Mursau, Behnke, Bodden, Murphy, O'Connor and Schraa",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, C. Anderson, J. Anderson, Clancy, Conley, Considine, Drake, Emerson, Hong, Jacobson, Joers, Madison, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Roys, Agard, Larson, Spreitzer and Wirch",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative Dittrich,2023-03-06T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Knodl, Hutton, Nass and Taylor; +cosponsored by Representatives Binsfeld, Myers, Baldeh, Brandtjen, Cabrera, Donovan and Schmidt",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Swearingen, Behnke, Bodden, Callahan, Michalski, Mursau, Sinicki, Snodgrass, Sortwell, Tittl, Green and Edming; +cosponsored by Senators Felzkowski, Cowles, Feyen and Spreitzer",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley, Ballweg, Marklein, Roys and Wanggaard; +cosponsored by Representatives Steffen, Wittke, Allen, Dittrich, Donovan, Gustafson, Magnafici, Murphy, Moses, Nedweski, O'Connor, Ortiz-Velez, Palmeri, Penterman, Rettinger, Vos and Wichgers",2023-06-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Brandtjen, Knodl, Allen, Conley, Drake, Murphy, Penterman, Sinicki, Stubbs, Subeck and Vos",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Brandtjen, Behnke, Bodden, Donovan and Wichgers; +cosponsored by Senator Jacque",2023-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Considine, Sinicki, Ohnstad, J. Anderson, Andraca, Bare, Clancy, Conley, Emerson, Jacobson, Joers, Palmeri, Ratcliff, Snodgrass, Subeck and Haywood; +cosponsored by Senators Agard, Roys, Hesselbein, L. Johnson, Larson and Spreitzer",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Ballweg, Felzkowski, Quinn, Smith and Spreitzer; +cosponsored by Representatives Nedweski, Zimmerman, Gustafson, C. Anderson, Armstrong, Dittrich, Duchow, Goeben, Gundrum, Kitchens, Macco, Maxey, Murphy, Mursau, Petryk, Rettinger, Sapik and Steffen",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Zimmerman, Petryk, Green, Magnafici, O'Connor and Wittke; +cosponsored by Senators Stafsholt, Ballweg, Bradley and Quinn",2023-08-04T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Brandtjen, Donovan, Kitchens, Michalski, Murphy and Schmidt; +cosponsored by Senators James, Ballweg and Marklein",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard and Cabral-Guevara; +cosponsored by Representatives Spiros, Nedweski, Plumer, Rettinger, Rodriguez, Steffen, Kitchens and Behnke",2023-02-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Cowles, Jacque and Taylor; +cosponsored by Representatives Oldenburg, Petryk, Andraca, Armstrong, Callahan, Dittrich, Drake, Edming, Gundrum, Hurd, Jacobson, S. Johnson, Kitchens, Magnafici, Michalski, Moses, Murphy, Mursau, Novak, O'Connor, Penterman, Rettinger, Shankland, Sinicki and Stubbs",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dallman, Schraa, Brooks, Murphy, Mursau, Rozar, Sapik, Spiros, Swearingen, Tittl and Tusler; +cosponsored by Senators Feyen, Cowles, Felzkowski, Jacque, Nass, Stroebel and Tomczyk",2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Ballweg, Hutton, Jacque, Jagler, Knodl, Marklein, Nass and Tomczyk; +cosponsored by Representatives Magnafici, Rozar, Allen, Armstrong, Behnke, Binsfeld, Bodden, Brandtjen, Donovan, Edming, Goeben, Gundrum, Gustafson, Krug, Macco, Maxey, Moses, Murphy, Nedweski, O'Connor, Penterman, Rettinger, Schmidt, Schraa, Tusler and Wichgers",2023-06-21T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Rozar, Allen, Behnke, Bodden, Brandtjen, Brooks, Callahan, Edming, Goeben, Magnafici, Michalski, Murphy, O'Connor, Rettinger, Schraa, Schutt and Wichgers; +cosponsored by Senators Nass and Cabral-Guevara",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Marklein, Quinn, Larson and Jacque; +cosponsored by Representatives Plumer, Tranel, Kitchens, Krug, Callahan, Tittl, Spiros, Penterman, Dittrich, Wittke, Armstrong, Ortiz-Velez, Gundrum, Snyder, Novak, Billings, Rozar, Murphy, Considine, Green, Mursau, Knodl, Rettinger and O'Connor",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler, Rettinger, Mursau, Behnke and Cabrera; +cosponsored by Senators Wanggaard, Ballweg and Wimberger",2023-02-10T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vos, Neubauer, August, Binsfeld, Magnafici, Armstrong, Spiros, Wittke, Novak, Bare, Stubbs, Ohnstad, C. Anderson, Steffen, O'Connor, Duchow, Dittrich, Summerfield, Michalski, Zimmerman, Macco, Shelton, Sinicki, S. Johnson, Considine, Palmeri, Subeck, Kitchens, Schraa and Jacobson; +cosponsored by Senators LeMahieu, Hesselbein, James, Ballweg, Testin, L. Johnson, Wirch and Roys",2024-02-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, Moore Omokunde, Considine, Palmeri, Bare, Emerson, Joers, Madison, Ohnstad, Ortiz-Velez, Ratcliff, Shankland and Stubbs; +cosponsored by Senator Agard",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Krug, Allen, Binsfeld, Bodden, Brandtjen, Dittrich, Goeben, Hurd, Kitchens, Maxey, Melotik, Moses, O'Connor, Penterman, Sortwell and Wichgers; +cosponsored by Senators Tomczyk, Bradley, Cabral-Guevara, James and Testin",2024-02-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives VanderMeer, Gustafson, Oldenburg, Brandtjen, Duchow, Goeben, Gundrum, Hurd, Mursau, Petersen and Tranel; +cosponsored by Senators Marklein, Quinn, Ballweg, Bradley, Felzkowski, Knodl, Stafsholt, Taylor and Testin",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, L. Johnson, Agard, Carpenter, Hesselbein, Larson, Pfaff, Roys, Taylor and Wirch; +cosponsored by Representatives Bare, Riemer, J. Anderson, Andraca, Baldeh, Cabrera, Considine, Goyke, Jacobson, Joers, Madison, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Sinicki, Snodgrass, Vining, Clancy and Haywood",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Plumer, Brooks, Edming, Gundrum, S. Johnson, Kitchens, Krug, Mursau, Novak, Oldenburg, Shankland, Spiros, Tranel, VanderMeer, Wittke and O'Connor; +cosponsored by Senators Tomczyk, Ballweg, Cowles, Felzkowski, James, Marklein, Nass, Spreitzer, Stafsholt, Stroebel and Taylor",2023-02-28T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and Taylor; +cosponsored by Representatives Rodriguez, Dittrich, Magnafici, Mursau, Sapik and Sinicki",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Smith, Roys, Hesselbein, Agard and Spreitzer; +cosponsored by Representatives Considine, Shelton, Hong, C. Anderson, Clancy, Joers, Baldeh, Subeck, Sinicki, Ratcliff, J. Anderson and Neubauer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel and Stafsholt; +cosponsored by Representatives Callahan, Gundrum, Nedweski and Schmidt",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, James, Smith, Pfaff, Ballweg, Cabral-Guevara, Cowles, Hesselbein, Larson, Nass, Roys, Spreitzer, Wanggaard and Wimberger; +cosponsored by Representatives VanderMeer, Considine, Kurtz, Allen, Armstrong, Billings, C. Anderson, Conley, Dallman, Dittrich, Doyle, Edming, Emerson, Joers, Krug, Magnafici, Maxey, Melotik, Moore Omokunde, Mursau, O'Connor, Ohnstad, Oldenburg, Ortiz-Velez, Penterman, Rozar, Spiros, Tittl and Bare",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Macco, Novak, Kitchens, Steffen, Myers, Subeck, Cabrera, C. Anderson, Conley, Mursau, Ohnstad, Palmeri, Sapik and Sinicki; +cosponsored by Senators Ballweg, Felzkowski, Roys and Taylor",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Magnafici, Ortiz-Velez, Baldeh, Brandtjen, Cabrera, Conley, Edming, Gundrum, Mursau, Sinicki, Subeck, Tittl and Wichgers; +cosponsored by Senators Jacque, Nass, Taylor and Wanggaard",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and Stroebel; +cosponsored by Representatives Neylon, Gustafson, Tittl, Baldeh, Green, Krug, Murphy, O'Connor, Penterman, Rettinger, Rozar, Spiros and Tranel",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Larson, Hesselbein, L. Johnson and Spreitzer; +cosponsored by Representatives Madison, Clancy, Ratcliff, Palmeri, Baldeh, Cabrera, Drake, Emerson, Shelton, Sinicki, Snodgrass, Stubbs, C. Anderson, J. Anderson, Conley, Hong, Jacobson, Joers, Moore Omokunde, Ohnstad and Subeck",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Marklein; +cosponsored by Representatives Rodriguez and Sinicki",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Agard, Ballweg, Felzkowski, Hesselbein, Spreitzer, Stroebel, Tomczyk and Wanggaard; +cosponsored by Representatives Spiros, McGuire, Ohnstad, Allen, C. Anderson, Andraca, Behnke, Billings, Binsfeld, Brandtjen, Drake, Goeben, Gundrum, Gustafson, Hurd, Maxey, Murphy, Mursau, Nedweski, O'Connor, Ortiz-Velez, Rozar, Schraa, Sinicki, Steffen, Stubbs and Subeck",2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith and Spreitzer; +cosponsored by Representatives Madison, Joers, Andraca, Baldeh, Clancy, Conley, Drake, Emerson, Moore Omokunde, Myers, Ohnstad, Palmeri, Ratcliff, Shankland, Sinicki, Stubbs and Tranel",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Stroebel, Ballweg and Nass; +cosponsored by Representatives Gustafson, Neylon, Tittl, Baldeh, Dittrich, Krug, Murphy, O'Connor, Rettinger, Rozar, Spiros and Tranel",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wittke, O'Connor, Edming, Moses, Rettinger, Brandtjen, Wichgers, Dittrich and Murphy; +cosponsored by Senators Jagler, Ballweg and Marklein",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Sortwell, Armstrong, Behnke, Bodden, Brandtjen, Dittrich, Edming, Goeben, Gundrum, Gustafson, S. Johnson, O'Connor, Ortiz-Velez, Penterman, Rozar, Schmidt, Schutt and Snyder; +cosponsored by Senators Quinn, Tomczyk and Spreitzer",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Taylor and Jacque; +cosponsored by Representatives Macco, Steffen, Kitchens, Armstrong, Baldeh, Behnke, Duchow, Edming, Emerson, S. Johnson, Krug, Michalski, Murphy, Mursau, O'Connor, Ohnstad, Ortiz-Velez, Schmidt, Schraa and Snyder",2023-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson, Hesselbein, Roys and Smith; +cosponsored by Representatives Clancy, C. Anderson, Madison, Ratcliff, Palmeri, Baldeh, Bare, Cabrera, Drake, Shelton, Sinicki, Snodgrass, Stubbs, Hong, Emerson, Considine, Joers, Moore Omokunde, Jacobson and J. Anderson",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson, Hesselbein, Spreitzer and Roys; +cosponsored by Representatives Clancy, Madison, Palmeri, Baldeh, Cabrera, Drake, Shelton, Sinicki, Snodgrass, Stubbs, Hong, Moore Omokunde, Emerson, Ohnstad, Joers, C. Anderson, Jacobson, J. Anderson and Ortiz-Velez",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Feyen, Marklein, Nass, Stroebel, Wanggaard and Testin; +cosponsored by Representatives Michalski, Duchow, Allen, Armstrong, Behnke, Donovan, Gundrum, Maxey, Murphy, O'Connor, Rettinger and Wichgers",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators LeMahieu and Kapenga; +cosponsored by Representatives August and Vos",2023-03-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Taylor and Cabral-Guevara; +cosponsored by Representatives Bodden, Brandtjen, Ortiz-Velez, Drake, Allen, Andraca, Behnke, Donovan, Gundrum, Mursau, Penterman, Sinicki, Stubbs, Subeck, Wichgers and Baldeh",2023-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Armstrong, Brooks, Goeben, Gundrum, S. Johnson, Michalski, Moses, Murphy, Mursau, Rettinger, Schmidt and Tranel; +cosponsored by Senators Knodl and Stroebel",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Ballweg and Tomczyk; +cosponsored by Representatives Murphy, Rozar, Brandtjen, Brooks, Mursau, Wichgers and Behnke",2023-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk and Spreitzer; +cosponsored by Representatives Hurd, Vining, Behnke, Penterman, Rozar, Schmidt, Joers, Ratcliff, Baldeh, Bare, C. Anderson, Conley, Considine, Drake, Emerson, J. Anderson, S. Johnson, Madison, Mursau, O'Connor, Ohnstad, Palmeri, Shankland, Shelton, Sinicki, Stubbs, Subeck and Summerfield",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and Nass; +cosponsored by Representatives Goeben, Gustafson, Penterman, Rozar, Sapik and Sinicki",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Considine, Jacobson, Emerson, Snodgrass, Ratcliff, Joers, Shankland, Conley, Andraca, C. Anderson, Ohnstad, Shelton, J. Anderson, Stubbs, Drake, Bare, Clancy, Subeck, Haywood, Madison and Neubauer; +cosponsored by Senators Pfaff, Spreitzer, Taylor, Carpenter, Roys, Smith, Larson and Hesselbein",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Spiros, Hurd, Born, Conley, Considine, Donovan, Edming, Maxey, O'Connor, Ortiz-Velez, Plumer, Schmidt, Schutt, Snodgrass and S. Johnson; +cosponsored by Senators Tomczyk, Ballweg, Cowles, Spreitzer and Pfaff",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Ballweg, Carpenter, Cowles, Marklein, Nass, Spreitzer, Wanggaard and Wirch; +cosponsored by Representatives Gundrum, C. Anderson, Armstrong, Bare, Behnke, Binsfeld, Callahan, Dittrich, Donovan, Drake, Duchow, Edming, Gustafson, Jacobson, Joers, Krug, Magnafici, Maxey, Moore Omokunde, Novak, O'Connor, Ohnstad, Ortiz-Velez, Petryk, Ratcliff, Rettinger, Rozar, Tittl, Schmidt, Schraa, Shankland, Sinicki, Sortwell, Spiros, Tusler, Wittke and VanderMeer",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Brandtjen, Edming, Green, Moses and O'Connor; +cosponsored by Senators Testin, Ballweg and Wanggaard",2024-02-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Summerfield, Dittrich, O'Connor and Subeck; +cosponsored by Senators Bradley and Spreitzer",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Allen, Brandtjen, Green, Hurd, Kitchens, Magnafici, Murphy, Mursau, Rettinger, Schraa, Tranel and Wichgers; +cosponsored by Senator Jacque",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Callahan, Moses, Mursau, Nedweski, Ortiz-Velez, Penterman, Rettinger, Rozar and Schmidt; +cosponsored by Senators Testin and Roys",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Michalski, Dittrich, Maxey, Murphy, Nedweski, O'Connor, Penterman, Petryk, Edming and Green; +cosponsored by Senators Stafsholt and Nass",2023-10-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Armstrong, Brandtjen, Donovan, Mursau, Ortiz-Velez, Plumer, Shankland, Sinicki, Tusler and Wichgers; +cosponsored by Senators Jacque, Ballweg and Carpenter",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Drake, Emerson, Neubauer, Ratcliff, Ohnstad, Subeck, Vining, Bare, Ortiz-Velez, Shelton, Goyke, Doyle, C. Anderson, Shankland, Joers, Considine, Brandtjen, Andraca, Dittrich, Palmeri, Riemer, Allen, Hong, Sinicki, Cabrera, J. Anderson, Conley, Schraa and Clancy; +cosponsored by Senators L. Johnson, Bradley, Carpenter, Larson, Spreitzer, Pfaff, Roys, Hesselbein and Jacque",2023-06-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Summerfield, Callahan, C. Anderson, Brooks, Dittrich, Donovan, Edming, Green, Gundrum, Jacobson, Kitchens, Krug, Maxey, Murphy, Mursau, Novak, O'Connor, Petryk, Rozar, Shankland, Spiros, Tranel, Zimmerman and Sapik; +cosponsored by Senators Marklein, James, Ballweg, Cabral-Guevara, Felzkowski, Spreitzer, Testin, Tomczyk and Quinn",2023-10-05T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, Hong, Baldeh, Bare, Clancy, Conley, Emerson, Joers, Madison, Myers, Ratcliff, Stubbs, Ohnstad, Sinicki, Jacobson and Goyke; +cosponsored by Senators Roys, Smith and Agard",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Ballweg, Cowles, Marklein, Nass, Spreitzer, Wirch and Felzkowski; +cosponsored by Representatives Moses, Armstrong, Binsfeld, Edming, Green, Kitchens, Murphy, Mursau, Myers, Novak, O'Connor, Palmeri, Penterman, Petryk, Rettinger, Schraa, Shelton, Sinicki, Spiros, Steffen, Tittl, Tranel, VanderMeer, Hurd and Rozar",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Roys, L. Johnson, Smith, Hesselbein, Agard and Spreitzer; +cosponsored by Representatives Shelton, Myers, C. Anderson, Clancy, Shankland, Madison, J. Anderson, Baldeh, Cabrera, Conley, Considine, Haywood, Hong, Joers, Ohnstad, Palmeri, Ratcliff, Sinicki, Snodgrass and Stubbs",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard and Taylor; +cosponsored by Representatives Tusler and Stubbs",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Wirch; +cosponsored by Representative Baldeh",2024-03-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara and Tomczyk; +cosponsored by Representatives Rettinger, Dittrich, Edming, Rozar, Armstrong, Brandtjen, Donovan, Gustafson, Maxey, Michalski, Murphy, Petryk, Schmidt, Tusler and Melotik",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Agard, Roys, Larson, Spreitzer and Taylor; +cosponsored by Representatives Shankland, Considine, Joers, J. Anderson, Bare, Baldeh, Conley, Emerson, Jacobson, Madison, Neubauer, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs, Subeck and Vining",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Hesselbein and Spreitzer; +cosponsored by Representatives Behnke, Joers, Knodl, Andraca, Baldeh, Doyle, Gustafson, Murphy, O'Connor, Ratcliff, Subeck and Shankland",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Clancy, C. Anderson, J. Anderson, Andraca, Cabrera, Conley, Drake, Baldeh, Emerson, Joers, Madison, Moore Omokunde, Shelton, Subeck, Shankland and Ortiz-Velez",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Ballweg, Cowles and Stroebel; +cosponsored by Representatives Krug, Armstrong, Kitchens, Murphy, Mursau and Wichgers",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Bare, Clancy, Considine, Drake, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Snodgrass, Stubbs and Subeck; +cosponsored by Senators L. Johnson, Larson and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Carpenter, L. Johnson, Hesselbein and Spreitzer; +cosponsored by Representatives J. Anderson, Snodgrass, C. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Conley, Drake, Emerson, Jacobson, Joers, Moore Omokunde, Ohnstad, Palmeri, Shelton, Sinicki and Subeck",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard and Marklein; +cosponsored by Representatives Nedweski, Schutt, O'Connor, Rettinger, Penterman, August, Murphy and Vos",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, Bare, Madison, C. Anderson, J. Anderson, Baldeh, Snodgrass and Stubbs; +cosponsored by Senators Agard, Spreitzer and Roys",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Taylor, Roys, Agard, Hesselbein, L. Johnson, Spreitzer and Wirch; +cosponsored by Representatives Myers, Goyke, Clancy, C. Anderson, J. Anderson, Baldeh, Emerson, Considine, Stubbs, Moore Omokunde, Conley, Andraca, Jacobson, Neubauer, Madison, Palmeri, Shelton, Sinicki, Subeck, Joers, Ratcliff and Vining",2023-12-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Larson; +cosponsored by Representatives Hong, Madison, Clancy, Joers, Myers, Moore Omokunde, Shelton, Stubbs and Wichgers",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Jacobson, Ortiz-Velez, Stubbs, Bare, Ohnstad, Baldeh, Snodgrass, Clancy, Ratcliff, Palmeri, Conley, Subeck, Joers, Madison, Myers, Shelton and Sinicki; +cosponsored by Senators Agard, Roys and Spreitzer",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Emerson, Clancy, Madison, Hong, Conley, Joers, Ohnstad, Shelton, Palmeri, Sinicki, Jacobson and Haywood; +cosponsored by Senators Roys, Hesselbein, Taylor, L. Johnson and Spreitzer",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Magnafici, Callahan, Brooks, Bodden, Edming, Green, Maxey, Mursau, Moses, Zimmerman and Sapik; +cosponsored by Senators Quinn and Tomczyk",2023-02-10T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Magnafici, Murphy and Schmidt; +cosponsored by Senators Cabral-Guevara and Felzkowski",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Hesselbein, Taylor, L. Johnson and Spreitzer; +cosponsored by Representatives Emerson, Clancy, Madison, Hong, Conley, Joers, Ohnstad, Shelton, Palmeri, Sinicki and Jacobson",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Tomczyk; +cosponsored by Representatives Plumer, Michalski, Murphy, O'Connor and Steffen",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Agard, Carpenter, Cowles, Hesselbein, Roys, Spreitzer and Taylor; +cosponsored by Representatives Novak, Shankland, C. Anderson, Andraca, Armstrong, Baldeh, Behnke, Binsfeld, Conley, Considine, Dittrich, Drake, Emerson, Jacobson, Joers, S. Johnson, Kitchens, Magnafici, Murphy, Mursau, Myers, O'Connor, Ohnstad, Palmeri, Ratcliff, Rozar, Spiros, Steffen, Stubbs and Tittl",2023-04-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Allen, Brandtjen, Dittrich, Edming, Green, Moses, Murphy, Mursau, Neylon, O'Connor, Rozar, Sortwell and Wichgers; +cosponsored by Senators Stafsholt, Felzkowski, Feyen, Marklein and Stroebel",2023-06-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Cabral-Guevara, Feyen and Wanggaard; +cosponsored by Representatives Gustafson, Allen, Behnke, Binsfeld, Bodden, Dittrich, Green, Gundrum, Kitchens, Krug, Mursau, Rettinger, Rodriguez, Schmidt, Schraa, Schutt, Steffen, Tusler, Wichgers and O'Connor",2023-03-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Hurd; +cosponsored by Senator James",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg, Cowles, Marklein, Roys, Spreitzer and Wanggaard; +cosponsored by Representatives Tittl, Allen, Armstrong, Dittrich, Donovan, Edming, Mursau, Ortiz-Velez, Rozar, Sapik, Spiros, Subeck and Tusler",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Knodl, Cabral-Guevara, Nass, Stafsholt and Tomczyk; +cosponsored by Representatives Allen, Donovan, Armstrong, Behnke, Binsfeld, Bodden, Brandtjen, Brooks, Gundrum, Gustafson, Maxey, O'Connor, Schmidt and Schraa",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Snodgrass, C. Anderson, J. Anderson, Andraca, Baldeh, Cabrera, Conley, Considine, Emerson, Joers, Moore Omokunde, Palmeri, Ohnstad, Shelton, Sinicki, Stubbs, Subeck, Vining and Clancy; +cosponsored by Senators Smith, Carpenter, Larson, Roys and Spreitzer",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Callahan, Gustafson, Born, Gundrum, Murphy, Mursau, Ortiz-Velez, Rettinger, Rozar, Schmidt, Snyder, Spiros and VanderMeer; +cosponsored by Senators Tomczyk, Ballweg and Quinn",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Jacque, Knodl, Bradley and Tomczyk; +cosponsored by Representatives Penterman, Armstrong, Maxey, Mursau and Binsfeld",2024-01-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Rozar, Allen, Armstrong, Behnke, Bodden, Brandtjen, Donovan, Edming, Gundrum, Gustafson, Hurd, Krug, Magnafici, Maxey, Murphy, Mursau, Nedweski, O'Connor, Penterman, Rettinger, Schmidt, Schraa, Steffen, Tusler and Wichgers; +cosponsored by Senators Quinn, Bradley, Hutton, Jacque, Jagler, James, Nass, Testin and Tomczyk",2023-06-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, James, Carpenter, Hesselbein, L. Johnson, Larson, Roys, Smith, Spreitzer and Tomczyk; +cosponsored by Representatives Snyder, Armstrong, Baldeh, Behnke, Billings, Callahan, Conley, Considine, Dittrich, Donovan, Doyle, Goeben, Gustafson, Hong, Joers, Kitchens, Mursau, Novak, O'Connor, Ohnstad, Palmeri, Ratcliff, Rettinger, Rozar, Sapik, Snodgrass, Stubbs and Subeck",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schutt, Donovan, Gustafson, Kitchens, Murphy, Mursau, Rettinger and Ortiz-Velez; +cosponsored by Senators Testin, Ballweg, Cowles and Quinn",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Brooks, Allen, Gustafson, Callahan, Kitchens, VanderMeer, Rettinger, Tranel, Palmeri, Schraa and Steffen; +cosponsored by Senators Cabral-Guevara, Feyen, Hutton and Testin",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Maxey, Michalski, Bodden, Allen, Murphy, Neylon, O'Connor, Penterman, Rettinger, Schmidt and Brandtjen; +cosponsored by Senators Hutton and Stroebel",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goeben, Macco, Behnke, Brandtjen, Dittrich, Donovan, Gundrum, Kitchens, Mursau, O'Connor, Spiros and Tittl; +cosponsored by Senators Cowles, Wimberger and Marklein",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Andraca, Ratcliff, Sinicki, Snodgrass, Considine, Subeck, Joers, J. Anderson, Clancy, Emerson, Jacobson, Neubauer and Palmeri; +cosponsored by Senators Larson, Roys, Spreitzer, Agard, L. Johnson and Smith",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Tomczyk; +cosponsored by Representatives Armstrong, Bodden, Behnke, Brandtjen, Dittrich, Murphy, O'Connor and Rettinger",2023-11-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Conley, Shelton, C. Anderson, J. Anderson, Baldeh, Cabrera, Clancy, Considine, Haywood, Hong, Joers, Myers, Neubauer, Ohnstad, Palmeri, Ratcliff, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Smith, Larson, L. Johnson, Roys, Hesselbein, Agard, Spreitzer, Carpenter and Pfaff",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bare, Riemer, J. Anderson, Andraca, Baldeh, Cabrera, Considine, Goyke, Jacobson, Joers, Madison, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Sinicki, Snodgrass, Vining, Clancy and Haywood; +cosponsored by Senators Spreitzer, L. Johnson, Agard, Carpenter, Hesselbein, Larson, Pfaff, Roys, Taylor and Wirch",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Spreitzer; +cosponsored by Representatives Tittl, Conley, Allen, C. Anderson, Baldeh, Brandtjen, Considine, Donovan, Joers, Mursau, Ortiz-Velez, Palmeri, Stubbs, Subeck, Wichgers and Behnke",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Spreitzer; +cosponsored by Representatives Tittl, Conley, C. Anderson, Baldeh, Brandtjen, Emerson, Joers, Mursau, Ohnstad, Ortiz-Velez, Palmeri, Schmidt, Stubbs, Subeck, Wichgers and Behnke",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Riemer, C. Anderson, Andraca, Baldeh, Bare, Cabrera, Clancy, Conley, Considine, Dittrich, Drake, Emerson, Hong, Jacobson, Joers, Kitchens, Madison, Moore Omokunde, Murphy, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Stubbs and Vining; +cosponsored by Senators Spreitzer, Agard, Carpenter, Hesselbein, Roys, Taylor and Wirch",2023-04-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Agard, Carpenter, L. Johnson, Larson, Roys and Spreitzer; +cosponsored by Representatives Bare, Goyke, Baldeh, C. Anderson, Conley, Considine, Emerson, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Shankland, Sinicki, Snodgrass, Stubbs and Subeck",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Tomczyk; +cosponsored by Representatives Armstrong, Bodden, Behnke, Brandtjen, Dittrich and O'Connor",2023-11-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Joers, Vining, Sinicki, Neubauer, Bare, Emerson, Shelton, Considine, Palmeri, Clancy, Subeck, Hong, J. Anderson, Madison, Billings, Ohnstad, Stubbs, Baldeh and Shankland; +cosponsored by Senators Hesselbein, Roys, Carpenter, Larson, Agard, Spreitzer and Taylor",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jagler, Spreitzer, Ballweg, Cabral-Guevara, Hesselbein, Pfaff and Roys; +cosponsored by Representatives Billings, Mursau, C. Anderson, Andraca, Bare, Behnke, Cabrera, Conley, Considine, Dittrich, Gustafson, Jacobson, Joers, Moses, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Subeck and Tittl",2023-05-24T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Mursau and Schmidt",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Melotik; +cosponsored by Senator Knodl",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, C. Anderson, J. Anderson, Andraca, Bare, Billings, Clancy, Conley, Considine, Drake, Emerson, Hong, Jacobson, Joers, Moore Omokunde, Neubauer, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Haywood and Madison; +cosponsored by Senators Pfaff, Hesselbein, Agard, Carpenter, L. Johnson, Larson, Roys, Smith, Spreitzer, Taylor and Wirch",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Snodgrass, Baldeh, Bare, C. Anderson, Conley, Joers, Krug, Michalski, Murphy, Mursau, Ortiz-Velez, Ratcliff, Shelton and Subeck; +cosponsored by Senators Knodl, Spreitzer, Jacque and Wirch",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, Cabrera, Neubauer, Ratcliff, Clancy, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Conley, Considine, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Palmeri, Shankland, Shelton, Sinicki, Subeck and Vining; +cosponsored by Senators Carpenter, Spreitzer, Agard, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith and Wirch",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Dittrich and Donovan; +cosponsored by Senators James, Ballweg, Cabral-Guevara and Quinn",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Magnafici, Allen, Armstrong, Behnke, Brandtjen, Goeben, Gustafson, S. Johnson, Rettinger, Schmidt and Wichgers; +cosponsored by Senators James and Nass",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Taylor, Cowles and James; +cosponsored by Representatives Spiros, Drake, Macco, Steffen, Gundrum, Ohnstad, O'Connor, Considine, Subeck, Donovan, Baldeh, Palmeri, Goyke, Conley, C. Anderson, Wittke, Green and Summerfield",2023-05-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, O'Connor, Spiros and Subeck; +cosponsored by Senators Cowles, Pfaff, Ballweg, Cabral-Guevara, Carpenter, Spreitzer, Taylor and Wanggaard",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Ratcliff, Sinicki, Joers, Stubbs, Emerson, Bare, Moore Omokunde and Subeck; +cosponsored by Senators Smith, Larson, L. Johnson and Agard",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, Cowles, Ballweg, Cabral-Guevara, Felzkowski, Feyen, Nass and Quinn; +cosponsored by Representatives Mursau, Swearingen, Behnke, Binsfeld, Dittrich, Donovan, Green, Kitchens, Moses, O'Connor, Snyder, Spiros, Steffen, Summerfield and Wittke",2023-05-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rettinger, Duchow, Penterman, Behnke, Donovan, Gundrum, Moses, Murphy and Nedweski; +cosponsored by Senator Cabral-Guevara",2023-02-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Agard, Carpenter, Hesselbein, Jacque, L. Johnson, Larson, Pfaff, Roys, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Snyder, Conley, Allen, Andraca, Baldeh, Bare, C. Anderson, Dittrich, Donovan, Doyle, Emerson, Gustafson, Hong, Jacobson, Joers, Madison, Mursau, Neubauer, Novak, Ohnstad, Ortiz-Velez, Palmeri, Rettinger, Rozar, Shankland, Shelton, Sinicki, Steffen, Stubbs, Summerfield, Vining, Subeck, Melotik and Ratcliff",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Joers, Sinicki, Moore Omokunde, Bare, Ratcliff, Emerson, Stubbs, Ohnstad, Shelton, Drake, Neubauer, Jacobson, Andraca, J. Anderson, Considine, Conley, Haywood, Myers, Palmeri, C. Anderson, Hong, Madison, Subeck, Shankland, Snodgrass, Vining, Clancy and Riemer; +cosponsored by Senators Hesselbein, Taylor, Roys, L. Johnson, Carpenter, Larson, Agard, Spreitzer, Pfaff, Wirch and Smith",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Nedweski, Drake, Binsfeld, Dittrich, Donovan, Krug, Maxey, Melotik, Murphy, Mursau, Myers, O'Connor, Schmidt, Sinicki, Snyder, Stubbs and Subeck; +cosponsored by Senator Feyen",2024-01-29T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Allen, Armstrong, Behnke, Donovan, Edming, Hurd, Kitchens, Macco, Moses, Murphy, Rettinger, Rozar and Sortwell; +cosponsored by Senators James, Cowles, Marklein, Quinn and Stroebel",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Neubauer, Haywood, Subeck, Doyle, Palmeri, Ohnstad, Goyke, Shelton, Drake, Emerson, Cabrera, Shankland, Billings, Bare, Jacobson, C. Anderson, Vining, Myers, Clancy, Ratcliff, Conley, Moore Omokunde, Baldeh, Snodgrass, Considine, J. Anderson, Joers, Andraca, Stubbs, Riemer, Hong, McGuire, Madison and Ortiz-Velez; +cosponsored by Senators L. Johnson, Agard, Smith, Larson, Hesselbein, Carpenter, Wirch, Roys, Taylor, Pfaff and Spreitzer",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor, Carpenter, Larson, Roys and Smith; +cosponsored by Representatives Shankland, Stubbs, J. Anderson, C. Anderson, Andraca, Baldeh, Cabrera, Clancy, Considine, Emerson, Joers, Madison, Moore Omokunde, Ohnstad, Palmeri, Shelton, Snodgrass and Subeck",2023-06-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Nedweski, Rozar, Allen, Armstrong, Behnke, Bodden, Brandtjen, Donovan, Duchow, Edming, Goeben, Green, Gundrum, Gustafson, Hurd, Krug, Macco, Magnafici, Maxey, Moses, Murphy, Mursau, O'Connor, Penterman, Rettinger, Schmidt, Schraa, Steffen, Summerfield, Tittl, Tusler and Wichgers; +cosponsored by Senators Quinn, Bradley, Feyen, Hutton, Jacque, Jagler, James, Knodl, Nass and Tomczyk",2023-06-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Haywood, Madison, Myers, Riemer, Drake, Palmeri, Stubbs, Jacobson, Cabrera, Snodgrass, Sinicki, Conley, Joers, Ratcliff, Andraca, Clancy, Shelton and Vining; +cosponsored by Senators Taylor, L. Johnson, Spreitzer, Roys and Cabral-Guevara",2023-04-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Quinn; +cosponsored by Representatives Armstrong and Brooks",2024-01-31T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Goeben, Rozar, Ortiz-Velez, Behnke, Dittrich, S. Johnson, Maxey, O'Connor and Rettinger",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Myers, Andraca, Considine, Shelton, Palmeri, Conley, Emerson, Drake, Ratcliff, Steffen, Stubbs, Goyke, Snodgrass, Hong, Neubauer, Bare, Madison, Clancy, Joers, J. Anderson, Sinicki, C. Anderson, Ohnstad, Haywood, Billings, Murphy, Moore Omokunde, Cabrera and Subeck; +cosponsored by Senators Taylor, Spreitzer, Roys, Carpenter, Larson, Hesselbein and Felzkowski",2023-05-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Ballweg and Wanggaard; +cosponsored by Representatives Goeben, Brandtjen, Brooks, Doyle, Gundrum, Krug, Mursau, O'Connor, Petersen, Plumer, Schmidt and Schutt",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Allen, Goeben, Murphy and Moses",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson and Larson; +cosponsored by Representatives Madison, Moore Omokunde and Clancy",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, James, Agard, Cabral-Guevara, Pfaff and Spreitzer; +cosponsored by Representatives Snyder, Tusler, Hong, Shankland, C. Anderson, Andraca, Armstrong, Baldeh, Behnke, Cabrera, Clancy, Conley, Considine, Donovan, Doyle, Drake, Emerson, Goyke, Jacobson, Joers, Kitchens, Madison, Mursau, Ortiz-Velez, Palmeri, Ratcliff, Stubbs, Subeck, Vining, Sinicki, Wichgers and Allen",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Doyle, Shankland, Ohnstad, Sinicki, Joers, Moore Omokunde, Baldeh, Stubbs, Snodgrass, Subeck, Bare, Andraca, Ortiz-Velez, Cabrera, J. Anderson, Palmeri, Jacobson and C. Anderson; +cosponsored by Senators Pfaff, Carpenter, Spreitzer and Smith",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, Considine, Allen, C. Anderson, J. Anderson, Andraca, Bare, Behnke, Baldeh, Billings, Cabrera, Conley, Emerson, Haywood, Hong, Jacobson, Moore Omokunde, Joers, Ohnstad, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Sortwell, Stubbs, Subeck and Madison; +cosponsored by Senators Smith, Pfaff, Agard, Ballweg, Carpenter, Hesselbein, Larson, Roys and Spreitzer",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Ortiz-Velez, C. Anderson, Andraca, Baldeh, Billings, Cabrera, Clancy, Conley, Considine, Dittrich, Doyle, Drake, Edming, Krug, Madison, Moses, Mursau, Ohnstad, Plumer, Sinicki, Stubbs and Subeck; +cosponsored by Senators James, Taylor, Ballweg, Cabral-Guevara, Hesselbein, Knodl, Roys, Smith, Spreitzer and Testin",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Neylon, Goeben, Gundrum, Kitchens, Mursau, O'Connor, Rettinger, Schmidt, Zimmerman and Stubbs; +cosponsored by Senators Stafsholt, Ballweg, Cabral-Guevara and Cowles",2023-09-05T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Swearingen, C. Anderson, Behnke, Callahan, Dittrich, Doyle, Edming, Goeben, Kurtz, Magnafici, Melotik, Mursau, Nedweski, Novak, O'Connor, Penterman, Plumer, Sinicki, VanderMeer, Spiros and Conley; +cosponsored by Senators Felzkowski, Quinn, Carpenter, Hesselbein, Jacque, James, Marklein, Spreitzer, Taylor, Testin and Cowles",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Ballweg, Cowles, Felzkowski, James, Marklein, Nass, Spreitzer, Stafsholt, Stroebel and Taylor; +cosponsored by Representatives Plumer, Brooks, Edming, Gundrum, S. Johnson, Kitchens, Krug, Mursau, Novak, Oldenburg, Shankland, Spiros, Tranel, VanderMeer and Wittke",2023-02-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley, Pfaff, Ballweg, Cabral-Guevara, Nass, Roys and Spreitzer; +cosponsored by Representatives Oldenburg, Doyle, Edming, Behnke, Conley, Considine, Jacobson, Joers, Maxey, O'Connor, Palmeri, Rettinger, Sapik, Schmidt, Shankland and Subeck",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Michalski, Maxey, Vining and Dittrich; +cosponsored by Senator Hutton",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Subeck, C. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Drake, Emerson, Joers, Moore Omokunde, Ohnstad, Palmeri, Shankland, Shelton, Sinicki, Snodgrass and Jacobson; +cosponsored by Senators Larson, Carpenter, L. Johnson, Hesselbein and Spreitzer",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Ballweg; +cosponsored by Representatives Krug, Brandtjen, Brooks, Gustafson, Mursau, Ortiz-Velez, Steffen, Subeck and Tusler",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Larson and Spreitzer; +cosponsored by Representatives Bare, Jacobson, C. Anderson, Clancy, Conley, Considine, Emerson, Madison, Moore Omokunde, Palmeri, Ratcliff, Shelton, Snodgrass and Stubbs",2024-03-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Snodgrass, Tusler, Billings, Baldeh, Andraca, Armstrong, Binsfeld, Brandtjen, Considine, Joers, Kitchens, Maxey, Moore Omokunde, O'Connor, Ohnstad, Ortiz-Velez, Stubbs and Wichgers; +cosponsored by Senators Cabral-Guevara, L. Johnson, Jacque, Spreitzer and Tomczyk",2023-08-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Spreitzer, Agard, Cabral-Guevara, Hesselbein, L. Johnson, Pfaff, Smith and Taylor; +cosponsored by Representatives Considine, C. Anderson, Andraca, Bare, Behnke, Cabrera, Conley, Emerson, Gustafson, Goeben, Jacobson, Joers, Moses, Mursau, Ohnstad, Palmeri, Shelton and Sortwell",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives O'Connor, Dittrich, Rettinger and Nedweski; +cosponsored by Senators Knodl and Felzkowski",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Callahan, Behnke, Edming, Green, Moses, Penterman, Rettinger, Rozar, Schmidt, Sortwell and Jacobson; +cosponsored by Senators Marklein, Felzkowski, Ballweg, Cowles and Quinn",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Marklein, Ballweg and Nass; +cosponsored by Representatives Mursau, Armstrong, Dittrich, Murphy, Subeck, Behnke and Shankland",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James and Quinn; +cosponsored by Representatives Dittrich, Behnke, Duchow, Kurtz, Madison, O'Connor and Snyder",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Sortwell, Armstrong, Behnke, Bodden, Brandtjen, Edming, Goeben, Magnafici, Michalski, Mursau, O'Connor, Rettinger and Tusler; +cosponsored by Senators Cabral-Guevara and Nass",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Smith, Roys, Agard, Hesselbein, Spreitzer, L. Johnson, Carpenter and Pfaff; +cosponsored by Representatives Shelton, Joers, C. Anderson, Clancy, Jacobson, Myers, Shankland, Madison, Cabrera, Conley, Considine, Emerson, Palmeri, Ratcliff, Sinicki, Snodgrass, Subeck, Bare, Stubbs, Moore Omokunde, J. Anderson and Neubauer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Allen, Dittrich, Donovan, Doyle, Duchow, Gundrum, Gustafson, Joers, Melotik, Murphy, O'Connor, Oldenburg, Ortiz-Velez, Schmidt, Shankland, Wittke and Mursau; +cosponsored by Senators Cabral-Guevara, Feyen, Spreitzer and Tomczyk",2023-09-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler, Donovan, Gundrum, S. Johnson, Moses, Murphy, O'Connor and Rozar; +cosponsored by Senators Wimberger, Ballweg, Marklein, Tomczyk and Bradley",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Wanggaard; +cosponsored by Representatives Macco, Gundrum, S. Johnson, Michalski, O'Connor, Ortiz-Velez and Rozar",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Vining, Snyder, Andraca, Armstrong, Bare, C. Anderson, Clancy, Conley, Considine, Drake, Duchow, Goyke, Haywood, Hong, Joers, Madison, Moore Omokunde, Myers, Palmeri, Ratcliff, Shelton, Sinicki, Snodgrass, Stubbs, Subeck and Cabrera; +cosponsored by Senators Ballweg, L. Johnson, Carpenter, Felzkowski, Hesselbein, Jacque, Roys and Spreitzer",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Brooks, Duchow, Binsfeld, Rozar, O'Connor, Plumer, Melotik, Schmidt, Michalski and Swearingen; +cosponsored by Senator Feyen",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rettinger, Dittrich, O'Connor and Gustafson; +cosponsored by Senators Tomczyk and Cabral-Guevara",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Roys, Carpenter, Smith, Agard, Spreitzer, Larson, Hesselbein, Wirch and Pfaff; +cosponsored by Representatives Hong, Haywood, Joers, Conley, C. Anderson, Moore Omokunde, Snodgrass, Stubbs, Clancy, Ohnstad, Madison, Sinicki, Baldeh, Emerson, Neubauer, Shelton, Bare, Palmeri, Vining, Ratcliff, Considine, Andraca, J. Anderson, Subeck and Billings",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Cowles, Marklein, Smith, Spreitzer and Taylor; +cosponsored by Representatives Plumer, Dallman, C. Anderson, Armstrong, Kitchens, Mursau, Myers, Novak, Penterman, Rozar and Schutt",2023-02-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Wanggaard, Ballweg, Cowles, Felzkowski, Larson, Pfaff, Smith, Spreitzer and Quinn; +cosponsored by Representatives Green, Armstrong, C. Anderson, Binsfeld, Dittrich, Doyle, Goeben, S. Johnson, Novak, Oldenburg, Ortiz-Velez, Sapik, Schmidt, Shankland, Steffen, Considine and Tittl",2023-08-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Felzkowski and Testin; +cosponsored by Representatives Brooks, Andraca, Bodden and Joers",2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Ballweg, Cowles, Feyen, Nass, Quinn, Stroebel, Taylor, Tomczyk and Stafsholt; +cosponsored by Representatives Green, Swearingen, Armstrong, Behnke, Bodden, Brooks, Callahan, Dittrich, Duchow, Edming, Magnafici, Kitchens, Moses, Murphy, Mursau, Novak, Oldenburg, Plumer, Rozar, Sapik, Spiros, Tittl, Tusler and VanderMeer",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Zimmerman, Murphy, Petryk, Behnke, Brooks, Dallman, Edming, Green, Magnafici, Mursau, Oldenburg, Summerfield, Wichgers, Wittke and Rozar; +cosponsored by Senators Stafsholt, Ballweg, Cowles, James, L. Johnson, Larson, Marklein, Pfaff, Roys, Smith and Spreitzer",2023-03-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Doyle, Billings, Subeck, Shankland, Conley, Ratcliff, Palmeri, Ortiz-Velez, Joers, Ohnstad, Considine, C. Anderson, Andraca, Clancy, Haywood and Jacobson; +cosponsored by Senators Pfaff, Carpenter, Wirch, Roys, Hesselbein, Spreitzer, Agard and Larson",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Nass, Taylor and Wanggaard; +cosponsored by Representatives Magnafici, Ortiz-Velez, Baldeh, Behnke, Brandtjen, Cabrera, Conley, Edming, Gundrum, Mursau, Subeck, Tittl, Wichgers, Sinicki and Haywood",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, L. Johnson, Agard, Carpenter, Hesselbein, Larson, Spreitzer and Taylor; +cosponsored by Representatives J. Anderson, Hong, Moore Omokunde, C. Anderson, Clancy, Jacobson, Joers, Madison, Palmeri, Ratcliff, Baldeh, Bare, Cabrera, Drake, Emerson, Ohnstad, Ortiz-Velez, Shelton, Sinicki, Snodgrass and Stubbs",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Plumer, Tranel, Schmidt, Allen, Behnke, Brandtjen, Dittrich, Edming, Gundrum, Gustafson, S. Johnson, Kurtz, Magnafici, Maxey, Mursau, O'Connor, Oldenburg, Rettinger, Sapik, Schraa, Tittl, Wichgers and Bodden; +cosponsored by Senators Stafsholt, Marklein, Nass, Tomczyk and Wanggaard",2023-07-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, Myers, Moore Omokunde, Bare, Clancy, Emerson, Joers, Madison, Neubauer, Ortiz-Velez, Ratcliff, Shankland, Stubbs and Palmeri; +cosponsored by Senators Agard, Roys and Spreitzer",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, Myers, Haywood, Madison, Cabrera, J. Anderson, Emerson, Hong, Shelton, Ortiz-Velez, Baldeh, Neubauer, Shankland, Vining, Moore Omokunde, Ratcliff, Snodgrass, Bare, C. Anderson, Joers, Conley, Ohnstad, Clancy, Considine, Palmeri, Subeck, Drake, Sinicki and Jacobson; +cosponsored by Senators L. Johnson, Carpenter, Roys, Larson, Spreitzer and Agard",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, C. Anderson, Bare, Cabrera, Conley, Considine, Emerson, Goyke, Haywood, Joers, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Snodgrass, Stubbs and Subeck; +cosponsored by Senators Larson, Agard, Carpenter, Smith, Spreitzer, Taylor and Wirch",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Carpenter, Hesselbein, L. Johnson, Larson, Roys, Smith and Spreitzer; +cosponsored by Representatives J. Anderson, Billings, Shankland, C. Anderson, Bare, Cabrera, Considine, Donovan, Emerson, Joers, Moore Omokunde, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs, Subeck, Clancy and Jacobson",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, J. Anderson, Joers, Hong, C. Anderson, Clancy, Considine, Myers, Vining, Shankland, Bare, Madison, Baldeh, Cabrera, Conley, Haywood, Neubauer, Ohnstad, Palmeri, Ratcliff, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Larson, L. Johnson, Smith, Agard, Roys, Hesselbein, Spreitzer and Carpenter",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Ohnstad, McGuire, Andraca, Joers, Sinicki, Emerson, Shelton, Stubbs, Billings, Snodgrass, Conley, Drake, Jacobson, Bare, J. Anderson, Palmeri, Cabrera, Subeck and Haywood; +cosponsored by Senators Wirch, Agard, Carpenter, Roys, Hesselbein, Larson and Spreitzer",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Conley, Subeck, Shelton, Baldeh, Emerson, Ratcliff, Sinicki, Jacobson, Ohnstad, Palmeri, Stubbs, Clancy and J. Anderson; +cosponsored by Senators Agard, Roys, Spreitzer, Larson and Smith",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Myers, C. Anderson, Clancy, Shankland, Madison, J. Anderson, Baldeh, Cabrera, Conley, Considine, Haywood, Hong, Joers, Ohnstad, Palmeri, Ratcliff, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Larson, Roys, L. Johnson, Smith, Hesselbein, Agard and Spreitzer",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Ratcliff, Sinicki, Ortiz-Velez, Conley, J. Anderson, Emerson, Snodgrass, Subeck, Baldeh, Bare, Shelton, Cabrera, Considine, Palmeri, Stubbs, C. Anderson, Joers and Shankland; +cosponsored by Senators Larson, Spreitzer, Taylor, Roys, L. Johnson and Hesselbein",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Carpenter, Hesselbein, L. Johnson, Larson, Roys, Spreitzer, Wirch and Agard; +cosponsored by Representatives Shelton, Snodgrass, Palmeri, J. Anderson, Andraca, Baldeh, Bare, Cabrera, Conley, Emerson, Hong, Jacobson, Joers, Moore Omokunde, Ratcliff, Riemer, Shankland, Sinicki, Stubbs, Subeck and Haywood",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moore Omokunde, C. Anderson, J. Anderson, Baldeh, Bare, Clancy, Conley, Considine, Joers, Madison, Myers, Ohnstad, Shelton, Subeck and Stubbs; +cosponsored by Senators Roys, Carpenter, L. Johnson, Larson, Spreitzer and Taylor",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Billings, O'Connor, Joers, Gustafson, Maxey, Penterman, Gundrum, Conley, Krug, Brandtjen, Mursau, Kitchens, Emerson, Dittrich, C. Anderson, Sinicki, Considine, Madison, Ohnstad, Stubbs, Baldeh, J. Anderson, Behnke, Palmeri, Subeck, Murphy, Edming, Allen, Bare, Ratcliff, Melotik, Drake, Green, Moore Omokunde, Hurd, Andraca and Shankland; +cosponsored by Senators James, L. Johnson, Taylor, Wirch, Ballweg, Larson, Testin and Carpenter",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Schutt, Armstrong, Behnke, Binsfeld, Dittrich, Krug, Mursau and O'Connor; +cosponsored by Senator Ballweg",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Behnke, Edming, Gundrum, Magnafici, Rozar, Sapik, Wichgers and Ortiz-Velez; +cosponsored by Senator Cabral-Guevara",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Hong, C. Anderson, J. Anderson, Bare, Cabrera, Considine, Emerson, Goyke, Haywood, Joers, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Stubbs and Vining; +cosponsored by Senators Hesselbein, L. Johnson, Agard, Carpenter, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, Myers, Moore Omokunde, Palmeri, Considine, J. Anderson, C. Anderson, Baldeh, Bare, Conley, Drake, Emerson, Goyke, Hong, Joers, Ohnstad, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Haywood, Jacobson, Clancy, Doyle, Ortiz-Velez, Andraca, Billings and Neubauer; +cosponsored by Senators Agard, L. Johnson, Hesselbein, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor, Wirch and Carpenter",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Ortiz-Velez, Allen, Behnke, Binsfeld, Gundrum, Gustafson, Maxey, Myers, Steffen, Subeck, Wichgers and Krug; +cosponsored by Senators Cabral-Guevara, Taylor, Ballweg, Stroebel and Tomczyk",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Haywood, Allen, Armstrong, Binsfeld, C. Anderson, Cabrera, Conley, Dittrich, Donovan, Emerson, Goeben, Goyke, Gustafson, Jacobson, Krug, Murphy, Myers, O'Connor, Ohnstad, Ortiz-Velez, Palmeri, Snodgrass, Spiros, Stubbs, Subeck, Vining, Mursau, Drake and Clancy; +cosponsored by Senators Ballweg, L. Johnson, Carpenter, Jacque, Larson, Roys, Spreitzer and Taylor",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Myers, Joers, Jacobson, Palmeri, Andraca, Baldeh, Clancy, Conley, Considine, Drake, J. Anderson, Madison, Moore Omokunde, Neubauer, Ratcliff, Shelton, Sinicki, Emerson, Subeck, Stubbs and Ortiz-Velez; +cosponsored by Senators Carpenter, Agard, Smith, Hesselbein, L. Johnson, Larson, Roys, Spreitzer, Taylor and Pfaff",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley, Stroebel and Tomczyk; +cosponsored by Representatives Knodl, Rettinger, Allen, Bodden, Brandtjen, Donovan, Duchow, Green, Gundrum, Kitchens, Murphy, Mursau, O'Connor, Penterman and Wichgers",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Binsfeld, Snodgrass, J. Anderson, Andraca, Baldeh, Bare, Behnke, Cabrera, Conley, Considine, Dittrich, Goeben, Joers, Krug, Macco, Murphy, Mursau, Ohnstad, Ortiz-Velez, Palmeri, Rozar, Sinicki, Spiros, Stubbs, Subeck, Tusler, Vining, Clancy, Madison and Haywood; +cosponsored by Senators Cabral-Guevara, Larson, Hesselbein, James, Spreitzer, Taylor and Wirch",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Conley, Subeck, Ratcliff, Joers, Clancy, Jacobson, Shankland, Emerson, Sinicki, Moore Omokunde, Hong, J. Anderson, Bare, Madison, Ohnstad, Vining and Considine; +cosponsored by Senators Agard, Pfaff, Roys, Spreitzer and Carpenter",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor, Spreitzer, Roys, Carpenter, Larson, Hesselbein and Felzkowski; +cosponsored by Representatives Myers, Andraca, Considine, Shelton, Palmeri, Conley, Emerson, Drake, Ratcliff, Steffen, Stubbs, Goyke, Snodgrass, Hong, Neubauer, Bare, Madison, Clancy, Joers, J. Anderson, Sinicki, C. Anderson, Ohnstad, Haywood, Billings, Murphy and Moore Omokunde",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Ballweg, Pfaff and Tomczyk; +cosponsored by Representatives Katsma, Born, Dallman, Edming, Kurtz, Mursau, Nedweski, Novak, O'Connor, Penterman, Plumer, Schutt, Steffen, Wichgers and Jacobson",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tranel, Gustafson, Plumer, Novak, Allen, C. Anderson, Armstrong, Baldeh, Bare, Behnke, Binsfeld, Cabrera, Conley, Considine, Dittrich, Drake, Edming, Goeben, Green, Gundrum, S. Johnson, Kitchens, Kurtz, Magnafici, Michalski, Moses, Murphy, Mursau, Myers, Nedweski, O'Connor, Oldenburg, Ortiz-Velez, Penterman, Petryk, Ratcliff, Rettinger, Rozar, Schmidt, Schraa, Schutt, Shankland, Sinicki, Snyder, Spiros, Steffen, Stubbs, VanderMeer and Wittke; +cosponsored by Senators Ballweg, Marklein, Agard, Felzkowski, Hesselbein, Jacque, Knodl, Pfaff, Roys, Spreitzer and Wanggaard",2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Bradley and Felzkowski; +cosponsored by Representatives O'Connor, Binsfeld, Bodden, Dittrich, Donovan, Edming, Green, Gundrum, Knodl, Macco, Moses, Murphy, Penterman, Petersen, Petryk, Plumer, Rozar, Wichgers and Rettinger",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives VanderMeer, Magnafici, Allen, Armstrong, Baldeh, Behnke, Brandtjen, Cabrera, Callahan, Dittrich, Edming, Emerson, Green, O'Connor, Ortiz-Velez, Subeck and Sinicki; +cosponsored by Senators Ballweg, James and L. Johnson",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Cabral-Guevara, Feyen, Stroebel, Testin and Pfaff; +cosponsored by Representatives Snyder, Kitchens, Moses, O'Connor, Spiros, Steffen, Tittl, Baldeh and Ohnstad",2023-06-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Spreitzer, Agard, Carpenter, L. Johnson, Roys, Taylor and Wirch; +cosponsored by Representatives Snodgrass, Shelton, J. Anderson, Bare, Conley, Considine, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Sinicki, Stubbs, Subeck, Andraca and Drake",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, S. Johnson, Doyle, Andraca, Armstrong, Dittrich, Edming and Shankland; +cosponsored by Senators James, Ballweg, Cabral-Guevara, Carpenter, Spreitzer and Taylor",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James and Spreitzer; +cosponsored by Representatives Novak, Haywood, Allen, Baldeh, Bare, Emerson, Jacobson, Moore Omokunde, O'Connor, Sinicki and Subeck",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Cowles, Felzkowski and Marklein; +cosponsored by Representatives Rodriguez, VanderMeer, Brooks, Kitchens, Knodl, Moses, Mursau, O'Connor, Penterman, Rettinger, Rozar, Schraa, Tittl and Wittke",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Stubbs, J. Anderson, C. Anderson, Andraca, Baldeh, Cabrera, Clancy, Considine, Emerson, Joers, Madison, Moore Omokunde, Ohnstad, Palmeri, Shelton, Snodgrass and Subeck; +cosponsored by Senators Taylor, Carpenter, Larson, Roys and Smith",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Myers, Snodgrass, J. Anderson, Andraca, Conley, Dittrich, Donovan, Emerson, Joers, Mursau, Nedweski, Ratcliff, Schmidt, Shankland, Sinicki and Stubbs; +cosponsored by Senators Felzkowski, Ballweg, Larson, Roys, Spreitzer, Wirch and Agard",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Shelton; +cosponsored by Senator Wimberger",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, Madison, Baldeh, Drake, Moore Omokunde and Subeck; +cosponsored by Senator Roys",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Sinicki, J. Anderson, Andraca, Emerson, Conley, Considine, Bare, Cabrera, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Shelton, Stubbs and Haywood; +cosponsored by Senators Taylor, Larson, Hesselbein and L. Johnson",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Subeck, Donovan, C. Anderson, Bare, Rozar, Drake, Emerson, Joers, Binsfeld, Stubbs, Sinicki, Mursau, Ratcliff, Neubauer, Moore Omokunde, O'Connor, Clancy, Shankland, Palmeri, Conley, Tranel, Schutt and Armstrong; +cosponsored by Senators Ballweg, Roys, Larson, Spreitzer, Agard, Carpenter and Pfaff",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, L. Johnson, Spreitzer, Hesselbein and Larson; +cosponsored by Representatives Doyle, Jacobson, Bare, Stubbs, Emerson, Conley, Snodgrass, Palmeri, Considine, Clancy, Moore Omokunde, Drake, Joers, Subeck, Sinicki, Myers, Andraca, C. Anderson, Ohnstad, Shelton, Madison and Haywood",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Magnafici, Edming, Behnke, Bodden and S. Johnson",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives VanderMeer, Considine, Andraca, Behnke, Conley, Emerson, Jacobson, Joers, Moore Omokunde, Sinicki and Subeck; +cosponsored by Senator Roys",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Larson, Carpenter, Hesselbein and Spreitzer; +cosponsored by Representatives Subeck, J. Anderson, C. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Conley, Drake, Emerson, Joers, Ohnstad, Palmeri, Shankland, Shelton, Sinicki, Snodgrass and Jacobson",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Roys, Larson, Hesselbein, Spreitzer, Taylor and Agard; +cosponsored by Representatives C. Anderson, Bare, Clancy, Jacobson, Joers, Madison, Palmeri, Ratcliff, Emerson, J. Anderson, Andraca, Drake, Hong, Moore Omokunde, Myers, Neubauer, Riemer, Sinicki, Stubbs, Vining and Haywood",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Armstrong, Edming, Green, Penterman and Shankland; +cosponsored by Senators Marklein, Quinn, Spreitzer and Testin",2024-02-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Penterman, Baldeh, Melotik, Ohnstad and Ortiz-Velez; +cosponsored by Senator James",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tranel, VanderMeer, Novak, C. Anderson, Armstrong, Behnke, Binsfeld, Callahan, Conley, Dittrich, Edming, Goeben, Green, Gundrum, Gustafson, Hurd, Kitchens, Krug, Kurtz, Magnafici, Murphy, Mursau, O'Connor, Oldenburg, Penterman, Petryk, Plumer, Rettinger, Rozar, Sapik, Schmidt, Schraa, Shankland, Snyder, Sortwell, Spiros, Summerfield, Swearingen, Wittke and Tittl; +cosponsored by Senators Marklein, Tomczyk, Ballweg, Cabral-Guevara, Cowles, Felzkowski, Feyen, James, Pfaff, Quinn, Spreitzer, Testin, Wanggaard and Bradley",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, Conley, Sinicki, Emerson, Bare, Joers, Ratcliff, Considine, Palmeri, Jacobson, Subeck, J. Anderson, Snodgrass, Andraca, C. Anderson, Ohnstad, Clancy, Madison, Shelton and Haywood; +cosponsored by Senators Hesselbein, L. Johnson, Larson, Spreitzer, Smith, Roys, Carpenter and Taylor",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Stafsholt; +cosponsored by Representatives Green, Armstrong, Behnke, Dittrich, Edming, Magnafici, Michalski, Murphy, Mursau, Nedweski, O'Connor, Penterman, Petryk and Brandtjen",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kitchens, Magnafici, Duchow, Tusler, Binsfeld, Sapik, Rodriguez, August, Born, Callahan, Dallman, Dittrich, Green, Hurd, S. Johnson, Knodl, Krug, Kurtz, Macco, Maxey, Michalski, Mursau, Nedweski, Novak, Oldenburg, Plumer, Rozar, Snyder, Spiros, Steffen, Subeck, Summerfield, Swearingen, Vos, Wittke, Sinicki and Clancy; +cosponsored by Senators Felzkowski, Cabral-Guevara, James and Marklein",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Ratcliff, Jacobson, C. Anderson, Joers, Conley, Baldeh, Bare, J. Anderson, Ohnstad and Drake; +cosponsored by Senators L. Johnson, Spreitzer, Taylor and Agard",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, Ratcliff, Baldeh, Moore Omokunde, Joers, Shelton, Sinicki, Bare, Subeck, Madison, J. Anderson, Jacobson, Drake, Palmeri and Ohnstad; +cosponsored by Senators Agard and L. Johnson",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Roys, Hesselbein, L. Johnson, Larson, Pfaff, Smith and Taylor; +cosponsored by Representatives Snodgrass, Shelton, J. Anderson, Conley, Considine, Drake, Emerson, Joers, Madison, Ohnstad, Palmeri, Ratcliff, Shankland, Sinicki and Stubbs",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Ballweg, Cowles, James and Testin; +cosponsored by Representatives Mursau, Edming, O'Connor, Oldenburg, Schmidt and Tranel",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Clancy, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Cabrera, Conley, Considine, Donovan, Drake, Emerson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Palmeri, Shelton, Stubbs, Subeck, Shankland, Vining, Ortiz-Velez and Snodgrass; +cosponsored by Senators Larson, Agard, Carpenter, Hesselbein, Roys, Taylor, Wirch and Spreitzer",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Donovan, Goeben, Magnafici, Moses and Mursau; +cosponsored by Senators Wanggaard and Ballweg",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hutton, Nass and Jacque; +cosponsored by Representatives Rettinger, Michalski, Donovan, Knodl, Nedweski, Murphy and Behnke",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Bare, C. Anderson, J. Anderson, Cabrera, Considine, Emerson, Goyke, Haywood, Hong, Joers, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Stubbs and Vining; +cosponsored by Senators L. Johnson, Hesselbein, Agard, Carpenter, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Carpenter, Roys and Cowles; +cosponsored by Representatives Oldenburg, Ohnstad, Joers, Stubbs, Subeck, Tranel, Shankland, O'Connor and Baldeh",2023-06-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen and Ballweg; +cosponsored by Representatives Swearingen, C. Anderson, Baldeh, Dallman, Myers, Ohnstad, Sinicki, Subeck and Steffen",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative McGuire,2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Joers, Stubbs, Sinicki, Neubauer, Bare, Ratcliff, Emerson, Shelton, Jacobson, Palmeri, Considine, Subeck, Clancy, Hong, J. Anderson, Madison, Billings, Ohnstad, Baldeh, Conley and Shankland; +cosponsored by Senators Hesselbein, Smith, Taylor, Carpenter, Pfaff, Roys, Larson, Agard and Spreitzer",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wittke, Rettinger, Armstrong, O'Connor and Wichgers; +cosponsored by Senators Testin and Ballweg",2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Pronschinske, Armstrong, Edming, Gundrum, Rozar, Schmidt and Kitchens; +cosponsored by Senator Ballweg",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard and Smith; +cosponsored by Representatives Andraca, Jacobson, Ratcliff, Joers, Shankland, Subeck, Emerson, Conley, Sinicki, Moore Omokunde, Hong, Bare and Ohnstad",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Smith, Agard, Carpenter, L. Johnson, Larson, Pfaff, Roys, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Riemer, Vining, J. Anderson, Andraca, Bare, Clancy, Conley, Emerson, Hong, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki and Subeck",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Carpenter, L. Johnson, Hesselbein and Spreitzer; +cosponsored by Representatives Snodgrass, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Drake, Jacobson, Joers, Moore Omokunde, Ohnstad, Palmeri, Shankland, Shelton and Sinicki",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Ballweg and Carpenter; +cosponsored by Representatives Murphy, Allen, Baldeh, Behnke, Bodden, Brandtjen, Edming, Gustafson, Mursau, Rettinger, Tittl and Tusler",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Steffen, Behnke, Duchow, Green, Gundrum, Murphy, Mursau, Penterman and Tusler; +cosponsored by Senators Wanggaard and Taylor",2023-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Goeben, Bodden, Brandtjen, Myers, Schutt and Wichgers; +cosponsored by Senators Jacque, Cabral-Guevara, Knodl and Tomczyk",2023-08-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rodriguez, Dittrich, Mursau, Magnafici and Sapik; +cosponsored by Senators Cowles and Taylor",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Spreitzer, Cabral-Guevara, Feyen, Hesselbein and Larson; +cosponsored by Representatives Neylon, C. Anderson, J. Anderson, Armstrong, Bare, Behnke, Conley, Considine, Dittrich, Emerson, Goeben, Gundrum, Joers, Kitchens, Krug, Mursau, O'Connor, Palmeri, Rettinger, Riemer, Schraa, Snodgrass, Snyder, Tittl and Wichgers",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Nass, Bradley, Tomczyk and Wanggaard; +cosponsored by Representatives Nedweski, Kitchens, Sortwell, Armstrong, Binsfeld, Bodden, Callahan, Dittrich, Donovan, Edming, Goeben, Green, Gundrum, Gustafson, Macco, Magnafici, Maxey, Moses, Murphy, O'Connor, Penterman, Petryk, Rettinger, Rozar, Sapik, Schraa, Spiros and Steffen",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Ballweg, Carpenter, L. Johnson, Knodl and Spreitzer; +cosponsored by Representatives Krug, Brandtjen, Bodden, C. Anderson, Dittrich, Goeben, Gundrum, Jacobson, Melotik, Ohnstad, Rettinger, Shankland, Snodgrass and Subeck",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Oldenburg, Doyle, Edming, Behnke, Conley, Considine, Jacobson, Joers, Maxey, O'Connor, Palmeri, Rettinger, Sapik, Schmidt, Shankland, Subeck and Ohnstad; +cosponsored by Senators Bradley, Pfaff, Ballweg, Cabral-Guevara, Nass, Roys, Spreitzer and Felzkowski",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Bradley, Feyen, Hutton, Jacque, Jagler, James, Knodl, Nass and Tomczyk; +cosponsored by Representatives Nedweski, Rozar, Allen, Armstrong, Behnke, Bodden, Brandtjen, Donovan, Duchow, Edming, Goeben, Green, Gundrum, Gustafson, Hurd, Krug, Macco, Magnafici, Maxey, Moses, Murphy, Mursau, O'Connor, Penterman, Rettinger, Schmidt, Schraa, Steffen, Summerfield, Tittl, Tusler and Wichgers",2023-06-21T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Emerson, Subeck, J. Anderson, Ratcliff, Andraca, Jacobson and Palmeri; +cosponsored by Senators Smith and Spreitzer",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor and Larson; +cosponsored by Representatives Clancy, Madison, Baldeh, J. Anderson, Conley, Emerson, Haywood, Moore Omokunde, Palmeri, Shelton and Stubbs",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Allen, Baldeh, Behnke, Bodden, Brandtjen, Edming, Gustafson, Mursau, Rettinger, Tittl, Tusler and Wichgers; +cosponsored by Senators Jacque, Ballweg, Carpenter and Nass",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Ballweg, Cabral-Guevara, Carpenter, Hesselbein, Larson, Roys and Spreitzer; +cosponsored by Representatives Snodgrass, Considine, C. Anderson, J. Anderson, Andraca, Cabrera, Baldeh, Behnke, Conley, Emerson, Haywood, Joers, Jacobson, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs and Subeck",2023-07-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt and Nass; +cosponsored by Representatives Michalski, Dittrich, Edming, Green, Maxey, Murphy, Nedweski, O'Connor, Penterman, Petryk and Mursau",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Haywood, Bare, Ortiz-Velez, Madison, Stubbs, Conley, Moore Omokunde, Emerson, J. Anderson, Jacobson, Palmeri, Subeck, Joers, Neubauer, Baldeh, Clancy, Shankland, Vining, Shelton and Drake; +cosponsored by Senators Smith, Spreitzer, Agard, Roys, Taylor, Wirch, Larson and Carpenter",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Agard, L. Johnson, Larson, Roys and Spreitzer; +cosponsored by Representatives Shankland, Ratcliff, Bare, Emerson, Joers, Moore Omokunde, Sinicki and Stubbs",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kitchens, Kurtz, Steffen, Novak, Myers, Spiros, Armstrong, Ortiz-Velez, Rozar, Macco, Murphy, Green, Mursau, Edming, Duchow and Shankland; +cosponsored by Senators Wimberger, Ballweg, Cowles and Taylor",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wichgers, Myers, Behnke, Donovan, Gundrum, O'Connor, Ortiz-Velez and Stubbs",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, J. Anderson, Hong, C. Anderson, Clancy, Jacobson, Considine, Myers, Vining, Shankland, Bare, Madison, Baldeh, Cabrera, Conley, Haywood, Joers, Neubauer, Ohnstad, Palmeri, Ratcliff, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Spreitzer, Larson, L. Johnson, Smith, Agard, Roys, Hesselbein, Carpenter and Pfaff",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Carpenter, Agard, Smith, Hesselbein, L. Johnson, Larson, Roys, Spreitzer, Taylor and Pfaff; +cosponsored by Representatives Myers, Joers, Jacobson, Palmeri, Andraca, Baldeh, Clancy, Conley, Considine, Drake, J. Anderson, Madison, Moore Omokunde, Neubauer, Ratcliff, Shelton, Sinicki, Emerson, Subeck, Stubbs and Ortiz-Velez",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Sortwell, Binsfeld, Bodden, Brooks, Dittrich, Green, Magnafici and Schmidt; +cosponsored by Senators Stafsholt, Marklein, Stroebel and Felzkowski",2023-04-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Larson; +cosponsored by Representatives Myers, Conley, Ratcliff and Stubbs",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, J. Anderson, Clancy, Madison, Ratcliff, Baldeh, Cabrera, Drake, Shelton, Sinicki, Snodgrass, Stubbs, Emerson, Moore Omokunde, Palmeri, Considine, Joers and Haywood; +cosponsored by Senators Agard, Larson and L. Johnson",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Larson; +cosponsored by Representative Stubbs",2024-03-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Carpenter, L. Johnson, Hesselbein and Spreitzer; +cosponsored by Representatives Snodgrass, J. Anderson, Andraca, Bare, Billings, Conley, Drake, Jacobson, Joers, Moore Omokunde, Ohnstad, Palmeri, Shelton and Sinicki",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Snyder, Spiros, Sortwell, Armstrong, Behnke, Donovan, Kitchens, Magnafici, Moses, Plumer, Rozar, Subeck and Dittrich; +cosponsored by Senators Cabral-Guevara and James",2023-07-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Nedweski, O'Connor, Magnafici, Michalski, Gundrum, Murphy, Allen, Goeben, Binsfeld, Brandtjen, Behnke, Wichgers, Rozar, Rettinger and Moses; +cosponsored by Senators Knodl, Ballweg, Cabral-Guevara, Nass and Tomczyk",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Wanggaard, Bradley, Cowles, Feyen and Nass; +cosponsored by Representatives Zimmerman, Wittke, Allen, Armstrong, Binsfeld, Green, Murphy, Nedweski, O'Connor, Petryk, Pronschinske and Rettinger",2023-05-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Bradley, Wanggaard, Cabral-Guevara, Ballweg and Tomczyk; +cosponsored by Representatives Wichgers, Brandtjen, O'Connor, Sapik, Behnke, C. Anderson and Rettinger",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Billings, Vining, Baldeh, Bare, Clancy, Conley, Considine, Drake, Emerson, Hong, Joers, Madison, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Stubbs, Subeck and Jacobson; +cosponsored by Senators Carpenter, Larson, Roys, Spreitzer, Taylor and Agard",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, L. Johnson, Agard, Taylor, Carpenter, Smith, Spreitzer, Wirch and Larson; +cosponsored by Representatives Neubauer, Ohnstad, Sinicki, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Clancy, Conley, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Palmeri, Ratcliff, Shankland, Shelton, Stubbs, Subeck, Vining and Drake",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley and Marklein; +cosponsored by Representatives Dallman, Brooks, Dittrich, Drake, Ortiz-Velez, Rettinger, Rozar, Snyder, Tittl, Wichgers and Wittke",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Agard, Cabral-Guevara, Carpenter, Hesselbein, Jacque, L. Johnson, Larson, Roys, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Subeck, C. Anderson, Andraca, Baldeh, Bare, Behnke, Cabrera, Clancy, Conley, Considine, Drake, Emerson, Joers, Myers, Ohnstad, Palmeri, Ratcliff, Rozar, Shankland, Sinicki, Snodgrass, Stubbs, Tusler and Vining",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Kitchens, Allen, Andraca, Armstrong, Behnke, Considine, Edming, Green, Jacobson, Mursau, Oldenburg, Rozar, Shankland, Spiros, Tusler, Tranel and Bare; +cosponsored by Senators Quinn, Ballweg, James and Spreitzer",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hurd, Petryk, Allen, Behnke, Brandtjen, Callahan, Donovan, Edming, Green, Gundrum, Gustafson, Kitchens, Michalski, Oldenburg, Penterman, Tusler and Palmeri; +cosponsored by Senators James, Ballweg, Cabral-Guevara, Feyen, Stroebel, Nass and Marklein",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Agard, Larson, Spreitzer, Wirch and Taylor; +cosponsored by Representatives Subeck, C. Anderson, J. Anderson, Clancy, Conley, Considine, Emerson, Hong, Jacobson, Joers, Madison, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Snodgrass, Stubbs, Drake and Sinicki",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Bradley and Roys; +cosponsored by Representatives Wittke, Brooks, Allen, Murphy, O'Connor, Penterman, Rettinger, Sinicki, Wichgers and Goeben",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bare, Riemer, C. Anderson, J. Anderson, Baldeh, Cabrera, Conley, Considine, Jacobson, Joers, Moore Omokunde, Myers, Ohnstad, Ortiz-Velez, Palmeri, Shankland, Sinicki, Haywood and Clancy; +cosponsored by Senators Roys, L. Johnson, Agard, Hesselbein, Larson, Pfaff, Spreitzer and Wirch",2023-10-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Andraca, Baldeh, Bare, Clancy, Conley, Drake, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Ortiz-Velez, Palmeri, Shankland, Shelton, Snodgrass, Sortwell, Stubbs and Subeck; +cosponsored by Senators Smith, Larson, L. Johnson and Wirch",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Feyen; +cosponsored by Representatives Moses, Rozar, Macco, Wichgers, S. Johnson and Subeck",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Roys, Taylor and Wirch; +cosponsored by Representatives Emerson, O'Connor, Conley, Edming, Subeck, J. Anderson, Stubbs, Ohnstad, C. Anderson, Dittrich, Gundrum, Moore Omokunde, Ratcliff, Murphy, Joers, Kitchens, Mursau, Maxey, Billings and Krug",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Penterman, Baldeh, Knodl, Murphy, Mursau, Myers, Rozar, Schraa, Spiros, Tusler, VanderMeer and Wichgers; +cosponsored by Senators Jacque, Ballweg, Cabral-Guevara, Quinn and Wanggaard",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Roys, Larson, L. Johnson and Agard; +cosponsored by Representatives Shankland, Ratcliff, Joers, Sinicki, Stubbs, Emerson, Bare, Moore Omokunde and Subeck",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Myers, Armstrong, Conley, Drake, Ortiz-Velez, Stubbs, Andraca and Sinicki; +cosponsored by Senator Taylor",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Sortwell, Behnke, Brandtjen, Donovan, Michalski, Murphy, Mursau and Bodden",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Krug, Duchow, Jacobson, Macco, Maxey, Murphy, Penterman, Steffen and Summerfield; +cosponsored by Senators Hutton, Testin, Nass and Cabral-Guevara",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Ballweg, Larson and Roys; +cosponsored by Representatives C. Anderson, J. Anderson, Baldeh, Bare, Cabrera, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Sinicki and Subeck",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Carpenter, James, L. Johnson, Larson, Taylor and Cowles; +cosponsored by Representatives J. Anderson, Kurtz, Baldeh, Conley, Considine, Hong, Melotik, Moore Omokunde, Mursau, Palmeri, Spiros, Subeck and Behnke",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, Hurd, Joers, Ratcliff, Behnke, Penterman, Rozar, Schmidt, C. Anderson, Andraca, Bare, Clancy, Conley, Considine, Drake, Emerson, Hong, S. Johnson, Madison, Moore Omokunde, Mursau, Palmeri, Shankland, Shelton, Sinicki, Stubbs and Subeck; +cosponsored by Senators Ballweg, Cowles, Pfaff, Roys, Spreitzer, Taylor, Agard and Larson",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Roys, Hesselbein, L. Johnson, Larson, Pfaff, Smith, Spreitzer and Taylor; +cosponsored by Representatives Emerson, Hong, C. Anderson, J. Anderson, Conley, Considine, Drake, Jacobson, Joers, Madison, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs and Clancy",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Novak, Baldeh, Behnke, Melotik and O'Connor; +cosponsored by Senators Cowles and Wanggaard",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Testin and Jacque; +cosponsored by Representatives Plumer, Bodden, Callahan, Rozar and S. Johnson",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Palmeri, Subeck, Snodgrass, McGuire, J. Anderson, Andraca, Baldeh, Bare, Conley, Considine, Emerson, Hong, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Ratcliff, Shankland, Shelton, Sinicki, Stubbs and Vining; +cosponsored by Senators L. Johnson, Agard, Larson, Smith, Spreitzer and Wirch",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Bradley, Felzkowski, Marklein and Stroebel; +cosponsored by Representatives Dallman, Brooks, Allen, Behnke, Binsfeld, Bodden, Dittrich, Green, Gundrum, Knodl, Magnafici, Moses, Murphy, O'Connor, Penterman, Petersen, Plumer, Rettinger, Rozar, Sortwell, Wichgers, Wittke and Edming",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, Shelton, Conley, Hong, Jacobson, Joers, Krug, Maxey, Moore Omokunde, Ohnstad, Ratcliff, Sinicki and Stubbs; +cosponsored by Senators Smith, Carpenter, Hesselbein and Larson",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, L. Johnson and Larson; +cosponsored by Representatives Considine, Shelton, Ratcliff, Emerson, Stubbs, Clancy, Conley, Sinicki, Moore Omokunde, Subeck, J. Anderson, Bare and Ohnstad",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, L. Johnson, Carpenter, Hesselbein, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Vining, Shelton, Considine, Palmeri, Moore Omokunde, J. Anderson, C. Anderson, Baldeh, Bare, Conley, Drake, Emerson, Goyke, Hong, Joers, Ohnstad, Ratcliff, Shankland, Sinicki, Snodgrass, Stubbs, Subeck, Haywood, Jacobson, Clancy, Doyle, Ortiz-Velez, Andraca, Billings and Neubauer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen and Wanggaard; +cosponsored by Representatives Wittke, Zimmerman, Armstrong, Goeben, Nedweski, O'Connor and Shankland",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Hesselbein, Agard, Roys and Spreitzer; +cosponsored by Representatives Kitchens, Considine, Behnke, Binsfeld, Conley, Dittrich, Duchow, Jacobson, Novak, Ohnstad, Ortiz-Velez, Plumer and Sinicki",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Bradley, Hutton, Knodl, Larson, Nass and Stroebel; +cosponsored by Representatives Brooks, Rozar, Allen, Bodden, Brandtjen, Dittrich, Donovan, Duchow, Goeben, Green, Gundrum, Gustafson, Macco, Rettinger, Schraa, Shankland, Sortwell and Wichgers",2023-06-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Taylor; +cosponsored by Representatives Wichgers, Myers, Bare, Behnke, Cabrera, Drake, Sinicki, Subeck and Donovan",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Knodl, Testin, James and Stroebel; +cosponsored by Representatives Nedweski, Rozar, Binsfeld, Dittrich, Duchow, Hurd, Armstrong, August, Born, Brooks, Callahan, Dallman, Donovan, Green, S. Johnson, Kitchens, Kurtz, Krug, Macco, Michalski, Moses, Mursau, Neylon, Novak, Oldenburg, Plumer, Schmidt, Snyder, Sortwell, Spiros, Summerfield, Swearingen, Vos, Wittke and Zimmerman",2024-02-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Palmeri, Billings, Baldeh, Sinicki, Ratcliff, Shelton, Ohnstad, Joers, Moore Omokunde, Stubbs, Emerson, Subeck, Neubauer, Conley, Considine, Hong, Andraca, J. Anderson and Bare; +cosponsored by Senators Pfaff, Agard, L. Johnson, Wirch, Smith, Hesselbein, Roys, Spreitzer, Larson and Carpenter",2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Spreitzer and Agard; +cosponsored by Representatives Jacobson, C. Anderson, Madison, Considine, J. Anderson, Joers, Ohnstad and Sinicki",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Hesselbein, L. Johnson, Smith, Spreitzer, Roys and Carpenter; +cosponsored by Representatives Hong, Emerson, Ohnstad, Bare, Jacobson, Shankland, Considine, Clancy, Joers, Conley, Ortiz-Velez, C. Anderson, Shelton, Moore Omokunde, Sinicki, Madison, Palmeri, Drake, Andraca and Ratcliff",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Nass, Cabral-Guevara and Stroebel; +cosponsored by Representatives Sortwell, Murphy, Rozar, Allen, Behnke, Bodden, Brandtjen, Callahan, Edming, Magnafici, Michalski, O'Connor, Penterman, Rettinger, Schraa and Schutt",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Michalski, Armstrong, Bodden, O'Connor, Rettinger, Schmidt and Behnke; +cosponsored by Senators Hutton and Knodl",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Spreitzer, Roys and Tomczyk; +cosponsored by Representatives Steffen, Knodl, Armstrong, Bare, C. Anderson, Edming, Magnafici, Moses, Murphy, Mursau, O'Connor, Swearingen and Tusler",2023-02-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Roys, Spreitzer, Larson and Smith; +cosponsored by Representatives Conley, Subeck, Shelton, Baldeh, Emerson, Ratcliff, Sinicki, Jacobson, Ohnstad, Palmeri, Stubbs, Clancy and J. Anderson",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and Wanggaard; +cosponsored by Representatives Mursau, Novak, Baldeh, Behnke, Melotik and O'Connor",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, L. Johnson, Larson, Pfaff, Roys, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Novak, Andraca, Baldeh, Bare, Billings, Clancy, Drake, Goyke, Kitchens, Madison, Maxey, Moore Omokunde, Mursau, Neubauer, Ohnstad, Ortiz-Velez, Schmidt, Shelton, Snodgrass, Spiros, Stubbs, Subeck and Sinicki",2023-12-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara and James; +cosponsored by Representatives Tittl, Snyder, Spiros, Sortwell, Armstrong, Behnke, Donovan, Kitchens, Magnafici, Moses, Plumer, Rozar, Subeck and Dittrich",2023-06-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bare, Joers, Palmeri, Clancy, Conley, Considine, Emerson, Jacobson, Madison, Novak, Ratcliff, Shelton and Sinicki; +cosponsored by Senators Roys, Larson and Spreitzer",2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, C. Anderson, J. Anderson, Baldeh, Clancy, Considine, Drake, Emerson, Jacobson, Joers, Madison, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Sinicki and Stubbs; +cosponsored by Senators Spreitzer, Smith, Agard, Hesselbein, Jacque, Pfaff and Taylor",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Brandtjen, Brooks, Rozar, Schutt, Wichgers and Behnke; +cosponsored by Senators Jacque, Quinn, Stroebel and Wanggaard",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Shankland, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, Madison, McGuire, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Shelton, Snodgrass, Stubbs, Subeck and Vining; +cosponsored by Senators Wirch, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Roys, Smith, Spreitzer and Taylor",2023-10-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Emerson, Conley, Jacobson, Sinicki, Andraca, J. Anderson, Shelton, Considine, Drake and Haywood; +cosponsored by Senators L. Johnson, Smith and Larson",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Nass, Wanggaard, Cabral-Guevara and Jacque; +cosponsored by Representatives Murphy, Allen, Behnke, Bodden, Brandtjen, Dittrich, Goeben, Gundrum, Maxey, O'Connor and Vos",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2023-06-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives VanderMeer, Magnafici, Armstrong, C. Anderson, Behnke, Brandtjen, Brooks, Dittrich, Edming, Green, Gundrum, Hurd, Krug, Maxey, Moses, Murphy, Mursau, Novak, Oldenburg, Petryk, Rozar, Shankland, Snyder, Steffen, Stubbs, Tranel and Wichgers; +cosponsored by Senators Quinn, Feyen, Felzkowski, James and Testin",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl and Feyen; +cosponsored by Representatives Melotik, Binsfeld, Brandtjen, Dittrich, Donovan, Green, Krug, Maxey, Moses, Mursau, Nedweski, O'Connor, Penterman, Schmidt, Snyder and Murphy",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Carpenter, Roys, Spreitzer and Larson; +cosponsored by Representatives Shankland, Snodgrass, Ohnstad, Emerson, Conley, Shelton, Palmeri, J. Anderson, Stubbs, Cabrera, Considine, Vining, Sinicki, Baldeh, Moore Omokunde, Andraca, Subeck and Clancy",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Larson, Smith, Roys, Agard, Spreitzer and Carpenter; +cosponsored by Representatives C. Anderson, Shelton, Madison, Joers, Baldeh, Subeck, Sinicki and Ratcliff",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Palmeri, Baldeh, Conley, Drake, Joers, Maxey, Mursau, O'Connor, Ratcliff, Sinicki, Snodgrass and Subeck; +cosponsored by Senators Feyen and Taylor",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Smith, Agard and Larson; +cosponsored by Representatives J. Anderson, Conley, C. Anderson, Andraca, Bare, Clancy, Considine, Doyle, Emerson, Hong, Jacobson, Joers, Moore Omokunde, Neubauer, Ohnstad, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass and Subeck",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Ballweg, Carpenter, Cowles, Felzkowski and Spreitzer; +cosponsored by Representatives Snyder, Edming, C. Anderson, Gundrum, Moses, Mursau, O'Connor, Penterman, Sinicki and Subeck",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler, Allen, O'Connor and Maxey; +cosponsored by Senators Wanggaard, Knodl, Ballweg and Tomczyk",2024-01-30T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Allen, Armstrong, Brandtjen, Donovan, Edming, Goeben, Gustafson, Maxey, Michalski, Ortiz-Velez, Stubbs, Hurd and Sinicki; +cosponsored by Senators Jacque and Taylor",2023-06-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Donovan, Allen, Brandtjen, Edming, Gundrum, Maxey, Murphy, O'Connor, Penterman, Sortwell, Dittrich and Wichgers; +cosponsored by Senators Bradley, Hutton, Nass, Stroebel and Ballweg",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Hesselbein, Roys, Larson, Wirch and Agard; +cosponsored by Representatives Goyke, Moore Omokunde, Baldeh, Ohnstad, Cabrera, Hong, Joers, Stubbs, Subeck, Billings, Shankland, Bare, Palmeri, Sinicki, C. Anderson, Clancy and Jacobson",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Sinicki and Palmeri",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives C. Anderson, Considine, Jacobson, J. Anderson, Bare, Behnke, Clancy, Drake, Emerson, Joers, Ohnstad, Palmeri, Ratcliff, Shankland, Shelton, Subeck and Haywood; +cosponsored by Senators Pfaff, Smith, Spreitzer, Hesselbein, Roys and Taylor",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Nass, Ballweg, Tomczyk and Wanggaard; +cosponsored by Representatives Bodden, Green, Goeben, Allen, Behnke, Brandtjen, Dittrich, Edming, Gundrum, Gustafson, Magnafici, Melotik, Murphy, Rettinger, Tittl, VanderMeer, Callahan, Schraa, Rozar, Brooks and Maxey",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Considine, Sinicki, Ratcliff, Joers, Conley, Moore Omokunde and Palmeri; +cosponsored by Senators Tomczyk, Agard, Cowles and Larson",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson, Hesselbein, Spreitzer and Taylor; +cosponsored by Representatives Clancy, Madison, Ratcliff, Palmeri, Baldeh, Bare, Cabrera, Drake, Emerson, Shelton, Sinicki, Snodgrass, Stubbs, Hong, Ortiz-Velez, Considine, Joers, C. Anderson, Jacobson, Subeck, Moore Omokunde and J. Anderson",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Larson, L. Johnson, Smith, Agard, Roys, Carpenter, Pfaff and Hesselbein; +cosponsored by Representatives Shelton, J. Anderson, Hong, C. Anderson, Clancy, Jacobson, Considine, Myers, Vining, Shankland, Bare, Madison, Baldeh, Cabrera, Conley, Haywood, Joers, Neubauer, Ohnstad, Palmeri, Ratcliff, Sinicki, Snodgrass and Stubbs",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Considine, Conley, Andraca, Billings, Joers and Palmeri; +cosponsored by Senator Roys",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Smith and Taylor; +cosponsored by Representatives Sinicki, Conley, Palmeri and Jacobson",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2023-06-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Stroebel; +cosponsored by Representatives Sortwell, Behnke, Bodden, Duchow, Edming, Gundrum, Magnafici, Murphy, Mursau, Penterman, Rettinger, Rozar, Spiros and Tusler",2023-02-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Testin, Ballweg, Cabral-Guevara, Pfaff, Roys and Spreitzer; +cosponsored by Representatives Kitchens, Novak, Shankland, Krug, C. Anderson, J. Anderson, Andraca, Armstrong, Baldeh, Behnke, Considine, Donovan, Emerson, Green, Joers, Knodl, Moses, Mursau, Oldenburg, Petryk, Plumer, Rozar, Snodgrass, Snyder, Spiros and Subeck",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Bare, C. Anderson, Jacobson, Myers, Shankland, Madison, Cabrera, Clancy, Conley, Emerson, Joers, Palmeri, Ratcliff, Snodgrass, Subeck, Vining, Sinicki, Stubbs, Moore Omokunde, J. Anderson and Neubauer; +cosponsored by Senators Larson, L. Johnson, Smith, Roys, Hesselbein, Agard, Spreitzer, Carpenter and Pfaff",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Rozar, C. Anderson, J. Anderson, Andraca, Bare, Binsfeld, Cabrera, Clancy, Considine, Dittrich, Drake, Emerson, Haywood, Jacobson, Joers, S. Johnson, Madison, Magnafici, Melotik, Moore Omokunde, Murphy, Mursau, O'Connor, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Sinicki, Snodgrass, Stubbs, Vining and Kitchens; +cosponsored by Senators Roys, Ballweg, Cabral-Guevara, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Spreitzer, Taylor and Wirch",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Wittke; +cosponsored by Senator Wanggaard",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rettinger, Gundrum, Allen, Armstrong, Behnke, Brandtjen, Donovan, Knodl, Murphy and Wichgers; +cosponsored by Senators Jacque and Carpenter",2023-02-28T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Roys and Spreitzer; +cosponsored by Representatives Jacobson, Ortiz-Velez, Stubbs, Bare, Ohnstad, Baldeh, Snodgrass, Clancy, Ratcliff, Palmeri, Conley, Subeck, Joers, Madison, Myers and Shelton",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Testin, Jacque, Feyen, Hutton, James, Bradley, LeMahieu, Nass, Quinn, Tomczyk, Wanggaard, Wimberger and Cabral-Guevara; +cosponsored by Representatives Knodl, Armstrong, Allen, Callahan, Dittrich, Donovan, Duchow, Edming, Goeben, Green, Gundrum, Gustafson, S. Johnson, Kitchens, Magnafici, Maxey, Moses, Murphy, Mursau, Nedweski, Neylon, Novak, O'Connor, Oldenburg, Penterman, Plumer, Rettinger, Rozar, Sapik, Schraa, Snyder, Sortwell, Steffen, Summerfield, Tittl, Tranel, Tusler, VanderMeer, Wichgers, Zimmerman, Brooks, Brandtjen, Bodden and Krug",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard and Ballweg; +cosponsored by Representatives Sortwell, Donovan, Goeben, Magnafici, Moses and Mursau",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gundrum, Armstrong, Bare, Behnke, Binsfeld, Callahan, Dittrich, Donovan, Drake, Duchow, Edming, Gustafson, Jacobson, Krug, Magnafici, Maxey, Moore Omokunde, Novak, O'Connor, Ohnstad, Ortiz-Velez, Petryk, Ratcliff, Rettinger, Rozar, Tittl, Schmidt, Shankland, Sinicki, Sortwell, Spiros, Tusler and Wittke; +cosponsored by Senators Testin, Ballweg, Carpenter, Cowles, Marklein, Nass, Spreitzer and Wirch",2024-02-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Larson and Spreitzer; +cosponsored by Representatives Shelton, Emerson, Madison, Ratcliff, Snodgrass and Sinicki",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, Madison, Ratcliff, Palmeri, C. Anderson, J. Anderson, Baldeh, Cabrera, Considine, Drake, Emerson, Hong, Jacobson, Moore Omokunde, Shelton, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Larson and Roys",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, L. Johnson, Hesselbein, Larson, Roys, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Subeck, Shelton, C. Anderson, Bare, Billings, Cabrera, Conley, Considine, Drake, Emerson, Goyke, Hong, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Stubbs, Sinicki and Haywood",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, C. Anderson, J. Anderson, Clancy, Conley, Considine, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Snodgrass, Stubbs, Subeck and Haywood; +cosponsored by Senators Roys, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Smith, Spreitzer, Taylor and Wirch",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Spiros, Nedweski, Plumer, Rettinger, Rodriguez, Steffen, Kitchens, Behnke and Ohnstad; +cosponsored by Senators Wanggaard and Cabral-Guevara",2023-02-28T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Smith, Agard, Hesselbein, Jacque, Pfaff and Taylor; +cosponsored by Representatives Vining, C. Anderson, J. Anderson, Baldeh, Clancy, Considine, Drake, Emerson, Jacobson, Joers, Madison, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Sinicki and Stubbs",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys and Smith; +cosponsored by Representatives Vining, Hong, Baldeh, Bare, Clancy, Conley, Emerson, Joers, Madison, Myers, Ratcliff, Stubbs, Sinicki and Jacobson",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Baldeh, Billings, Cabrera, Joers, Ohnstad, Ortiz-Velez, Palmeri, Sinicki, Stubbs, Subeck and Riemer; +cosponsored by Senator Larson",2023-06-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Neylon, Gustafson, Tittl, Baldeh, Green, Krug, Murphy, O'Connor, Penterman, Rettinger, Rozar, Spiros and Tranel; +cosponsored by Senators Cowles, Stroebel, Ballweg, Jacque and Nass",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Tomczyk; +cosponsored by Representatives Gustafson, Penterman, Palmeri and Schmidt",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Macco, Ortiz-Velez, Kitchens, Conley, Goyke, McGuire, O'Connor, Allen, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Considine, Emerson, Hong, Joers, Madison, Mursau, Neubauer, Ohnstad and Snyder; +cosponsored by Senators Taylor, James, Hesselbein, Tomczyk, Agard, Carpenter, Larson, Roys and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Summerfield, Dittrich, Green, Maxey, Melotik, Michalski, Mursau, Novak, O'Connor, Palmeri, Rozar, Schmidt, Snodgrass and Tranel; +cosponsored by Senators Marklein, Quinn, Testin, Ballweg and Felzkowski",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Carpenter, Hesselbein and L. Johnson; +cosponsored by Representatives Hong, Ratcliff, Shelton, Cabrera, Joers, J. Anderson, Sinicki, Stubbs, Palmeri, Clancy, C. Anderson, Ortiz-Velez and Subeck",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Behnke, Brandtjen, Brooks, Mursau, Rozar and Wichgers; +cosponsored by Senators Jacque, Ballweg and Tomczyk",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Edming, Bodden, Green, Maxey, Mursau, Plumer, Rettinger, Schmidt, Spiros, Swearingen, VanderMeer and Wittke; +cosponsored by Senators Tomczyk, Cowles, Testin and James",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Agard, Carpenter, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives J. Anderson, C. Anderson, Bare, Cabrera, Conley, Considine, Emerson, Goyke, Haywood, Joers, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Snodgrass, Stubbs, Subeck and Sinicki",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Joers, Vining, Drake, Emerson, Bare, Ratcliff, Sinicki, Subeck, Shelton, Mursau, Baldeh, Ohnstad, Murphy, Conley, Binsfeld, Cabrera, Considine, Palmeri, C. Anderson and Shankland; +cosponsored by Senators Hesselbein, Roys, Agard, Cabral-Guevara, Taylor, Ballweg, Cowles, L. Johnson and Spreitzer",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Agard, Larson, Roys and Smith; +cosponsored by Representatives Conley, Novak, Goyke, Baldeh, C. Anderson, Ratcliff, Andraca, Armstrong, Bare, Clancy, Considine, Emerson, Jacobson, Joers, S. Johnson, Madison, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Shelton, Sinicki, Snodgrass, Stubbs and Subeck",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Behnke, Armstrong, Bodden, Callahan, Donovan, Edming, Kitchens, Maxey, Mursau, Novak, Rozar, Schmidt, Spiros, Tittl and Schraa; +cosponsored by Senators Cowles and Feyen",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Conley, Allen, C. Anderson, Behnke, Baldeh, Brandtjen, Considine, Donovan, Joers, Mursau, Ortiz-Velez, Palmeri, Stubbs, Subeck and Wichgers; +cosponsored by Senators Jacque and Spreitzer",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Tomczyk; +cosponsored by Representative Snyder",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Stroebel and Felzkowski; +cosponsored by Representatives Goeben, Binsfeld, Brandtjen, Edming, Green, Gundrum, Gustafson, Hurd, Krug, Magnafici, Maxey, O'Connor, Petersen, Petryk, Plumer, Rozar, Schmidt, Sortwell, Steffen, Summerfield, Swearingen, Tranel, VanderMeer and Wichgers",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Armstrong, Behnke, Donovan, Goeben, Melotik, Mursau, Steffen and Edming; +cosponsored by Senator Ballweg",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Taylor, Ballweg, Felzkowski, Hesselbein, Larson, Quinn, Roys and Spreitzer; +cosponsored by Representatives Mursau, Subeck, C. Anderson, J. Anderson, Andraca, Bare, Behnke, Bodden, Brandtjen, Conley, Dittrich, Donovan, Edming, Haywood, Jacobson, Joers, Moses, O'Connor, Ohnstad, Ratcliff, Schmidt, Shankland, Sinicki and Stubbs",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Drake, Clancy, Madison, Sinicki, Conley, Joers, Shelton, Emerson, J. Anderson, Stubbs, Palmeri, Subeck, Andraca, Jacobson, Haywood and Neubauer; +cosponsored by Senators Roys, Larson and Taylor",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, L. Johnson, Larson, Roys, Spreitzer and Agard; +cosponsored by Representatives Subeck, Dittrich, C. Anderson, Andraca, Bare, Binsfeld, Clancy, Conley, Drake, Emerson, Joers, Madison, Moore Omokunde, Mursau, Nedweski, O'Connor, Ohnstad, Palmeri, Ratcliff, Schutt, Shankland, Shelton, Sinicki and Stubbs",2024-01-30T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Krug, Armstrong, Kitchens, Murphy, Mursau and Wichgers; +cosponsored by Senator Jacque",2023-02-10T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jagler, Ballweg and Marklein; +cosponsored by Representatives Wittke, O'Connor, Edming, Moses, Rettinger, Brandtjen, Wichgers, Dittrich and Murphy",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys and Larson; +cosponsored by Representatives Hong, J. Anderson, Madison, Palmeri, Ratcliff, Bare and Clancy",2024-01-31T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Ohnstad, Joers, Palmeri, Snodgrass, Emerson, Jacobson, Conley, Stubbs, Sinicki, Subeck and Clancy; +cosponsored by Senators Hesselbein, Agard, Carpenter, Taylor, Roys and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Krug, Brandtjen, Brooks, Gustafson, Mursau, Ortiz-Velez, Steffen, Subeck and Tusler; +cosponsored by Senator Ballweg",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Agard, Carpenter, Hesselbein, Roys, Taylor and Wirch; +cosponsored by Representatives Subeck, Riemer, C. Anderson, Andraca, Baldeh, Bare, Cabrera, Clancy, Conley, Considine, Dittrich, Drake, Emerson, Hong, Jacobson, Joers, Kitchens, Madison, Moore Omokunde, Murphy, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Stubbs and Vining",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn and Tomczyk; +cosponsored by Representatives Magnafici, Callahan, Bodden, Brooks, Edming, Green, Maxey, Moses, Mursau, Sapik and Zimmerman",2023-02-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Wimberger, L. Johnson and Tomczyk; +cosponsored by Representatives Goeben, Macco, C. Anderson, Armstrong, Behnke, Dittrich, Donovan, Duchow, Edming, Knodl, Mursau, O'Connor, Ortiz-Velez, Rodriguez, Rozar, Sinicki and Subeck",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Behnke, Brandtjen, Dittrich, Duchow, Goeben, Gundrum, Gustafson, Maxey, Nedweski, O'Connor, Schraa, Wichgers, Green and Rettinger; +cosponsored by Senators Hutton, Kapenga, Nass, Tomczyk, Bradley and Felzkowski",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Wimberger and Felzkowski; +cosponsored by Representatives Tusler, Rettinger, Brandtjen, Murphy, Mursau, Snyder and Wichgers",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jagler, Hutton, Feyen, Cabral-Guevara, Kapenga, Knodl, Nass, Quinn, Stafsholt, Stroebel, Tomczyk, Wanggaard and Testin; +cosponsored by Representatives Schutt, Maxey, Allen, Behnke, Bodden, Brandtjen, Dittrich, Donovan, Edming, Goeben, Hurd, Magnafici, Melotik, Michalski, Moses, Penterman, Rettinger, Rodriguez, Rozar, Schmidt, Tusler, Wichgers, Wittke and Nedweski",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Cabral-Guevara, Felzkowski, Feyen, Nass, Quinn and Spreitzer; +cosponsored by Representatives Sortwell, Schraa, Allen, Armstrong, Behnke, Bodden, Brooks, Gustafson, Moses, Murphy, Mursau, Penterman, Petersen, Rettinger, Tittl and Tusler",2023-02-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Hong, Moore Omokunde, C. Anderson, Clancy, Jacobson, Joers, Madison, Palmeri, Ratcliff, Baldeh, Bare, Cabrera, Drake, Emerson, Ohnstad, Ortiz-Velez, Shelton, Sinicki, Snodgrass, Stubbs and Subeck; +cosponsored by Senators Roys, L. Johnson, Agard, Carpenter, Hesselbein, Larson, Spreitzer and Taylor",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James and Tomczyk; +cosponsored by Representatives Dallman, Summerfield, Dittrich, Michalski, Mursau, O'Connor, Ortiz-Velez, Plumer, Rettinger, Schmidt, Swearingen, Tittl and Wichgers",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Knodl; +cosponsored by Representative Melotik",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Ratcliff, Bare, Emerson, Joers, Moore Omokunde, Sinicki and Stubbs; +cosponsored by Senators Smith, Agard, L. Johnson, Larson, Roys and Spreitzer",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Behnke, Binsfeld, Brandtjen, Brooks, Callahan, Dittrich, Donovan, Goeben, Maxey, Michalski, O'Connor, Rettinger, Sapik, Spiros, Tusler, Wichgers and Schutt; +cosponsored by Senators James, Jacque, Marklein, Quinn, Stroebel, Wanggaard and Nass",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk and Nass; +cosponsored by Representatives Sortwell, Behnke, Edming, Green and Rettinger",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives McGuire, Doyle, Snodgrass, Bare, Considine, Emerson, Jacobson, Joers, Neubauer, Ohnstad, Ratcliff, Shankland, Shelton, Sinicki, Subeck and Vining; +cosponsored by Senators Pfaff, Wirch, Agard, Carpenter, L. Johnson, Larson, Roys, Smith and Spreitzer",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Marklein and Wanggaard; +cosponsored by Representatives Binsfeld, Allen, Armstrong, Bodden, Brandtjen, Dittrich, Maxey, Michalski, Nedweski, O'Connor, Schmidt and Steffen",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gundrum, Michalski, C. Anderson, Bodden, Goeben, Moses, Plumer and Rettinger; +cosponsored by Senators Knodl and Tomczyk",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Cabral-Guevara, Roys, Spreitzer and Taylor; +cosponsored by Representatives Palmeri, Schraa, Behnke, Clancy, Conley, Considine, Drake, Emerson, Jacobson, Joers, S. Johnson, Madison, Murphy, O'Connor, Ratcliff, Shankland, Shelton, Sinicki, Spiros, Steffen, Stubbs and Vining",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Spreitzer, Agard, Taylor and Larson; +cosponsored by Representatives Considine, C. Anderson, Joers, Emerson, Madison, Stubbs, Conley, Moore Omokunde, J. Anderson, Jacobson, Palmeri, Subeck, Ratcliff, Neubauer, Baldeh, Ohnstad, Clancy, Shelton, Shankland and Sinicki",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Binsfeld, Maxey, Allen, Bodden, Brandtjen, Brooks, Dittrich, Donovan, Edming, Gundrum, Gustafson, Knodl, Macco, Magnafici, Moses, Nedweski, O'Connor, Penterman, Petersen, Plumer, Rettinger, Rozar, Schmidt, Schutt, Sortwell and Wichgers; +cosponsored by Senators Stroebel, Ballweg, Felzkowski, Marklein, Nass and Tomczyk",2023-04-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Spreitzer and Larson; +cosponsored by Representatives Madison, Haywood, Baldeh, Drake, Moore Omokunde, Myers, Stubbs, Clancy and Bare",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Schmidt, Gustafson, C. Anderson, Armstrong, Dittrich, Edming, Goeben, Gundrum, Maxey, Melotik, Mursau, Myers, O'Connor, Ortiz-Velez, Sapik, Steffen, Tittl and Sinicki; +cosponsored by Senators James and Felzkowski",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Larson and Spreitzer; +cosponsored by Representatives Shankland, Conley, Considine, Joers, Moore Omokunde, Ohnstad, Ratcliff, Sinicki, Stubbs and Subeck",2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Carpenter, Hesselbein, L. Johnson, Larson, Smith and Wirch; +cosponsored by Representatives Vining, Moore Omokunde, Palmeri, Considine, Neubauer, Snodgrass, Cabrera, Ratcliff, Clancy, J. Anderson, Andraca, Bare, Conley, Drake, Emerson, Joers, Sinicki and Subeck",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schraa, Pronschinske, Mursau, Myers, Behnke, Bodden, Brandtjen, Edming, Goeben, Green, O'Connor, Ortiz-Velez, Rettinger, Rozar, Schmidt, Sortwell, Tittl and Tranel; +cosponsored by Senators Wanggaard and L. Johnson",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Roys and Agard; +cosponsored by Representatives Joers, C. Anderson, Madison, Clancy, Ratcliff, Conley, J. Anderson, Baldeh, Bare, Considine, Jacobson, Neubauer, Palmeri, Sinicki and Stubbs",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James and Spreitzer; +cosponsored by Representatives Jacobson, Spiros, Ratcliff, Conley, C. Anderson, Ortiz-Velez, Subeck and Stubbs",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives S. Johnson, Murphy, Dittrich, Donovan, Nedweski and Penterman; +cosponsored by Senator Cabral-Guevara",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Cabral-Guevara and Feyen; +cosponsored by Representatives Binsfeld, Behnke, Dittrich, Donovan, Edming, Maxey, Melotik, Murphy, Mursau, Myers, Nedweski, O'Connor, Penterman, Schmidt and Snyder",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gundrum, Armstrong, Bodden, Brooks, Dittrich, Penterman, Rettinger, Wichgers and Edming; +cosponsored by Senators Bradley, Jacque and Nass",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Neylon, Andraca, Dittrich, Krug, Murphy, O'Connor, Rettinger, Rozar, Spiros and Tittl; +cosponsored by Senators Cowles and Stroebel",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Pfaff, Roys, Spreitzer and Carpenter; +cosponsored by Representatives Conley, Subeck, Ratcliff, Joers, Clancy, Jacobson, Shankland, Emerson, Sinicki, Moore Omokunde, Hong, J. Anderson, Bare, Madison, Ohnstad, Vining and Considine",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Tittl, Armstrong, Edming, Kitchens, Behnke, S. Johnson and Palmeri",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Goeben, Mursau, Rodriguez, Baldeh and O'Connor; +cosponsored by Senators Cowles and James",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Stroebel and Felzkowski; +cosponsored by Representatives Goeben, Binsfeld, Brandtjen, Edming, Green, Gundrum, Gustafson, Hurd, Magnafici, Maxey, Murphy, O'Connor, Penterman, Petersen, Petryk, Plumer, Rozar, Schmidt, Sortwell, Steffen, Summerfield, Swearingen, VanderMeer and Wichgers",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Smith, Taylor and Wirch; +cosponsored by Representatives Vining, C. Anderson, J. Anderson, Clancy, Conley, Considine, Drake, Emerson, Joers, Madison, Ohnstad, Ortiz-Velez, Ratcliff, Shankland and Sinicki",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dallman, Kurtz, C. Anderson, Callahan, Considine, Green, Katsma, Kitchens, Moses, Novak, O'Connor, Penterman, Rettinger, Schmidt and Wittke; +cosponsored by Senators Quinn, Ballweg, Cowles, Marklein, Pfaff, Spreitzer and Hesselbein",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Billings, Palmeri, C. Anderson, J. Anderson, Andraca, Baldeh, Clancy, Conley, Considine, Drake, Jacobson, Joers, Neubauer, Ohnstad, Ratcliff, Shankland, Sinicki, Snodgrass, Stubbs, Subeck and Moore Omokunde; +cosponsored by Senators Pfaff, Larson, Roys, Smith, Spreitzer and Agard",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Ballweg, Cowles, Marklein, Pfaff, Spreitzer and Hesselbein; +cosponsored by Representatives Dallman, Kurtz, C. Anderson, Callahan, Considine, Green, Katsma, Kitchens, Moses, Novak, O'Connor, Penterman, Rettinger, Schmidt and Wittke",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, Shelton, Joers, C. Anderson, Jacobson, Myers, Shankland, Bare, Madison, Cabrera, Clancy, Conley, Emerson, Palmeri, Ratcliff, Sinicki, Snodgrass, Subeck, Vining, Stubbs, Moore Omokunde, J. Anderson and Neubauer; +cosponsored by Senators Larson, L. Johnson, Smith, Hesselbein, Agard, Carpenter and Pfaff",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Joint Committee on Finance, by request of Governor Tony Evers",2023-02-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Mursau, Stubbs, Baldeh, Behnke, Callahan, Considine, Dittrich, Edming, Gundrum, Gustafson, Hurd, Kitchens, Krug, Maxey, Murphy, O'Connor, Palmeri, Schraa, Sortwell, Subeck and Wichgers; +cosponsored by Senators Ballweg, Roys and Wirch",2024-01-18T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James and Wanggaard; +cosponsored by Representatives Wittke, Duchow, S. Johnson, Maxey, Moses, Mursau and O'Connor",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, L. Johnson, Agard, Larson, Pfaff, Roys and Spreitzer; +cosponsored by Representatives Emerson, J. Anderson, Bare, Conley, Considine, Drake, Jacobson, Joers, Ohnstad, Moore Omokunde, Palmeri, Ratcliff, Shankland, Sinicki, Snodgrass, Stubbs, Subeck and Clancy",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Carpenter, Hesselbein, Roys and Spreitzer; +cosponsored by Representatives J. Anderson, Bare, Clancy, Drake, Jacobson, Joers, Ortiz-Velez, Palmeri, Ratcliff, Sinicki and Stubbs",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, Cabrera, Neubauer, Ratcliff, Clancy, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Conley, Emerson, Hong, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Palmeri, Riemer, Shankland, Shelton, Sinicki, Subeck and Vining; +cosponsored by Senators Spreitzer, Carpenter, Agard, Hesselbein, Larson, Pfaff, Roys, Smith and Wirch",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator James; +cosponsored by Representatives S. Johnson and Murphy",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Cabral-Guevara, Knodl and Tomczyk; +cosponsored by Representatives Sortwell, Goeben, Bodden, Brandtjen, Myers, Schutt and Wichgers",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn and Nass; +cosponsored by Representatives Armstrong, Pronschinske, Edming, Binsfeld, Brandtjen, Goeben, Green, Gustafson, Magnafici, Moses, Murphy, Mursau, Penterman and Schraa",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Behnke, Bodden, Brandtjen, Murphy and Wichgers; +cosponsored by Senators Jacque and Nass",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Felzkowski, Nass, Wanggaard and Stafsholt; +cosponsored by Representatives Murphy, Rettinger, Penterman, Brandtjen, Brooks, Maxey, Mursau, Ortiz-Velez, Rodriguez, Tusler, Wichgers and Zimmerman",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Carpenter, Roys, Taylor, Hesselbein, Larson and Spreitzer; +cosponsored by Representatives Subeck, Jacobson, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Cabrera, Conley, Drake, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Snodgrass, Stubbs and Clancy",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator James; +cosponsored by Representatives S. Johnson and Murphy",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Ballweg and Felzkowski; +cosponsored by Representatives Dallman, Swearingen, Brooks, Moses, Murphy, Novak and Tusler",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Hesselbein, L. Johnson and Larson; +cosponsored by Representatives Sinicki, Joers, Shankland, J. Anderson, Ratcliff, Conley, Emerson, Snodgrass, Baldeh, Ohnstad, Bare, Shelton, Considine, Palmeri, Jacobson and Andraca",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Callahan; +cosponsored by Senator Wanggaard",2024-01-17T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wichgers, Myers, Bare, Behnke, Cabrera, Drake, Sinicki, Subeck and Donovan; +cosponsored by Senators Jacque and Taylor",2023-02-10T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee for Review of Administrative Rules,2023-02-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Wichgers, Allen and Donovan",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Smith and Pfaff; +cosponsored by Representatives Billings, Oldenburg, Doyle, Pronschinske and Tranel",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Moore Omokunde, Andraca, Bare, Billings, C. Anderson, J. Anderson, Clancy, Conley, Considine, Doyle, Drake, Emerson, Hong, Jacobson, Joers, Madison, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Sinicki, Snodgrass, Stubbs, Subeck and Haywood; +cosponsored by Senators L. Johnson, Larson, Agard, Carpenter, Hesselbein, Roys, Smith, Taylor, Spreitzer and Wirch",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Doyle, Emerson, Conley, Considine, Billings, Ohnstad, Palmeri, Sinicki, Jacobson, Hong and Madison; +cosponsored by Senators Pfaff, Spreitzer, Roys, Larson and Agard",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Armstrong, Behnke, Bodden, Brandtjen, Brooks, Dittrich, Macco, Michalski, Murphy, Nedweski, Rozar, Schmidt and Sortwell; +cosponsored by Senators Wimberger, Ballweg, Felzkowski and Marklein",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Neylon, Baldeh, Green, Krug, Murphy, O'Connor, Rettinger, Rozar, Spiros, Tittl and Tranel; +cosponsored by Senators Cowles and Stroebel",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Larson and L. Johnson; +cosponsored by Representatives Hong, J. Anderson, Clancy, Madison, Ratcliff, Baldeh, Cabrera, Drake, Shelton, Sinicki, Snodgrass, Stubbs, Emerson, Moore Omokunde, Palmeri, Considine and Joers",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Quinn, Spreitzer and Testin; +cosponsored by Representatives Mursau, Armstrong, Edming, Green, Penterman and Shankland",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Roys, Smith, Spreitzer and Wirch; +cosponsored by Representatives Palmeri, Billings, Baldeh, J. Anderson, Andraca, Bare, Conley, Considine, Emerson, Hong, Joers, Moore Omokunde, Neubauer, Ohnstad, Ratcliff, Shelton, Sinicki, Stubbs and Subeck",2024-03-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, Considine, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Behnke, Billings, Cabrera, Conley, Emerson, Jacobson, Joers, Moore Omokunde, Palmeri, Ohnstad, Ratcliff, Shelton, Sinicki, Stubbs, Subeck, Vining and Madison; +cosponsored by Senators Agard, Smith, Carpenter, Hesselbein, Larson and Roys",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Stafsholt; +cosponsored by Representative Edming",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Penterman, Palmeri and Schmidt; +cosponsored by Senator Tomczyk",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Joers, Bare, Baldeh, Emerson, Ratcliff, Ortiz-Velez, Andraca, Palmeri, Sinicki, Conley, Drake, Jacobson, J. Anderson, Ohnstad, Stubbs, Madison and Clancy; +cosponsored by Senators Agard, L. Johnson, Carpenter, Spreitzer, Roys, Hesselbein and Larson",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Larson, L. Johnson, Roys, Spreitzer and Smith; +cosponsored by Representatives Stubbs, Sinicki, C. Anderson, J. Anderson, Andraca, Conley, Ratcliff, Emerson, Clancy, Snodgrass, Bare, Jacobson, Palmeri, Considine, Cabrera, Joers, Subeck and Ohnstad",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Wirch, Spreitzer and Roys; +cosponsored by Representatives Drake, Ratcliff, Joers, Baldeh, Jacobson, Shankland, Subeck, C. Anderson, Emerson, Conley, Sinicki, Moore Omokunde, Hong, J. Anderson, Bare and Ohnstad",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Bradley, Cabral-Guevara, Hutton and Quinn; +cosponsored by Representatives Gustafson, Green, Allen, Donovan, Edming, Rettinger, Rozar, Schmidt and Behnke",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, O'Connor, Magnafici, Michalski, Gundrum, Penterman, Allen, Goeben, Wichgers and Rozar; +cosponsored by Senators Quinn, Nass and Tomczyk",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Conley, C. Anderson, Andraca, Bare, Clancy, Considine, Doyle, Emerson, Hong, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass and Subeck; +cosponsored by Senators Spreitzer, Smith, Agard and Larson",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Smith, Spreitzer, Hesselbein, Roys and Taylor; +cosponsored by Representatives C. Anderson, Considine, Jacobson, J. Anderson, Bare, Behnke, Clancy, Drake, Emerson, Joers, Ohnstad, Palmeri, Ratcliff, Shankland, Shelton and Subeck",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Binsfeld, Allen, Armstrong, Bodden, Brandtjen, Dittrich, Maxey, Michalski, Nedweski, O'Connor, Schmidt and Steffen; +cosponsored by Senators Ballweg, Marklein and Wanggaard",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative Armstrong,2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Bradley, James, Ballweg, Cabral-Guevara, Cowles, Jacque, Marklein, Nass and Stroebel; +cosponsored by Representatives Spiros, Duchow, Schraa, Allen, Brandtjen, Dittrich, Donovan, Edming, Knodl, Michalski, Murphy, O'Connor, Rettinger, Rozar, Schutt, Steffen and Wichgers",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Hesselbein, Spreitzer and Larson; +cosponsored by Representatives J. Anderson, Emerson, Baldeh, Clancy, Conley, Considine, Jacobson, Madison, Moore Omokunde, Ohnstad, Palmeri, Ratcliff, Sinicki, Snodgrass and Haywood",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Palmeri, Doyle, C. Anderson, Baldeh, Ohnstad, Bare, Behnke, Considine, Emerson, Gustafson, Joers, O'Connor and Ratcliff; +cosponsored by Senators Spreitzer, Larson, Roys and Agard",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Ballweg, James and Spreitzer; +cosponsored by Representatives Novak, Kitchens, Allen, Andraca, Armstrong, Behnke, Considine, Edming, Green, Jacobson, Mursau, Oldenburg, Rozar, Shankland, Spiros and Tusler",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Carpenter and Spreitzer; +cosponsored by Representatives Kurtz, Novak, Ohnstad, C. Anderson, Behnke, Bodden, Brandtjen, Cabrera, Donovan, Edming, Green, Gustafson, Kitchens, Knodl, Mursau, Ortiz-Velez, Wichgers and Shankland",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, L. Johnson, Agard, Carpenter, Hesselbein, Larson, Pfaff, Smith, Spreitzer and Wirch; +cosponsored by Representatives Subeck, Snodgrass, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Behnke, Clancy, Conley, Considine, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Palmeri, Ratcliff, Schutt, Shelton, Sinicki, Stubbs and Vining",2024-02-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Moore Omokunde, C. Anderson, Stubbs, Clancy and Bare",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Bare, Andraca, Conley, Jacobson, Joers, S. Johnson, Moore Omokunde, Mursau, Ratcliff, Sinicki, Snodgrass, Stubbs and Subeck",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Allen, Brandtjen, Brooks, Donovan, Knodl and Moses; +cosponsored by Senator Jacque",2023-03-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, C. Anderson, Bare, Madison, Moore Omokunde, Palmeri, Ratcliff, Sinicki, Snodgrass and Stubbs",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, L. Johnson, Hesselbein, Larson and Agard; +cosponsored by Representatives Ratcliff, Joers, Bare, C. Anderson, Moore Omokunde, Ortiz-Velez, Sinicki, Conley, Emerson, J. Anderson, Snodgrass, Vining, Shelton, Cabrera, Subeck, Baldeh, Considine, Palmeri, Shankland, Jacobson, Clancy and Andraca",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Cabral-Guevara and Tomczyk; +cosponsored by Representatives Wichgers, Maxey, Brandtjen, Murphy, Rettinger, Moses and Behnke",2023-05-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Testin, James, Quinn, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Edming, Macco, Allen, Andraca, Armstrong, Baldeh, Brandtjen, Conley, Dittrich, Goeben, Green, Michalski, Mursau, Ohnstad, Ortiz-Velez, Penterman, Petryk, Plumer, Rozar, Shankland, Sinicki, Summerfield, Tusler and Wichgers",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, Hesselbein, Roys, Spreitzer and Larson; +cosponsored by Representatives Macco, Goyke, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Behnke, Clancy, Conley, Considine, Drake, Emerson, Hong, Joers, S. Johnson, Krug, Madison, Moore Omokunde, Mursau, Myers, Neubauer, O'Connor, Ohnstad, Palmeri, Ratcliff, Shankland, Sinicki, Snodgrass, Spiros and Subeck",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Nass and Wanggaard; +cosponsored by Representatives Dallman, Schutt, Bodden, Brandtjen, Dittrich, Duchow, Gundrum, Maxey, Moses, Murphy, Nedweski, O'Connor, Penterman, Rettinger, Schmidt and Steffen",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Murphy, Allen, Brandtjen, Brooks, Donovan, Knodl and Moses",2023-03-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Ballweg and Wanggaard; +cosponsored by Representatives Mursau, Brandtjen, Edming, Green and O'Connor",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, J. Anderson, Andraca, Clancy, Conley, Considine, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs, Subeck and Haywood; +cosponsored by Senators Roys, L. Johnson, Agard, Carpenter, Hesselbein, Larson, Pfaff, Smith, Spreitzer, Taylor and Wirch",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Gustafson, Behnke, Brandtjen, Goeben, Gundrum, Murphy, Mursau, Penterman, Rettinger, Schmidt and Wichgers; +cosponsored by Senators Tomczyk and Nass",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Kurtz, O'Connor, Mursau, Snyder, Snodgrass, Novak and Madison; +cosponsored by Senators James and Ballweg",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Agard and Pfaff; +cosponsored by Representatives J. Anderson, Emerson, Bare, Clancy, Jacobson, Joers, Moore Omokunde, Neubauer, Ohnstad, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass and Stubbs",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Cowles, Marklein, Nass, Pfaff, Spreitzer, Testin and Wanggaard; +cosponsored by Representatives Schutt, Armstrong, C. Anderson, Behnke, Bodden, Edming, Kurtz, Moses, Mursau, Novak, Oldenburg, Penterman, Rozar and Tranel",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder and Spiros; +cosponsored by Senators Wanggaard and Tomczyk",2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Agard, L. Johnson, Roys, Carpenter, Smith and Spreitzer; +cosponsored by Representatives Neubauer, Moore Omokunde, Hong, Madison, J. Anderson, Andraca, Baldeh, Bare, Clancy, Conley, Emerson, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs, Subeck, Vining and Drake",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl and Wanggaard; +cosponsored by Representatives O'Connor, Murphy and Macco",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Hesselbein, L. Johnson, Larson, Pfaff, Smith, Taylor and Wirch; +cosponsored by Representatives Hong, C. Anderson, J. Anderson, Conley, Considine, Drake, Emerson, Jacobson, Joers, Madison, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs and Clancy",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein and Carpenter; +cosponsored by Representatives Bare, Edming, Novak, Baldeh, C. Anderson, Conley, Joers, Michalski, Palmeri and Subeck",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Doyle, Palmeri, Ratcliff, Considine, Stubbs, Moore Omokunde, Conley, Emerson, Joers, Subeck, Jacobson, J. Anderson, Neubauer, Baldeh, Ohnstad, Clancy, Shankland, Shelton, Sinicki, Vining, C. Anderson and Madison; +cosponsored by Senators Smith, Larson, Roys, Hesselbein, Agard, Taylor and Spreitzer",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Roys, Larson, Hesselbein, Spreitzer and Wirch; +cosponsored by Representatives Drake, Vining, Hong, Emerson, Ratcliff, Considine, Myers, Conley, Joers, Moore Omokunde, Snodgrass, Clancy, Ortiz-Velez, Ohnstad, Jacobson, Shelton, C. Anderson, Stubbs, J. Anderson, Palmeri, Subeck and Neubauer",2023-12-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Marklein; +cosponsored by Representative Katsma",2023-08-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Jacobson, McGuire, Palmeri, Sinicki, Ratcliff, Bare, Subeck, Madison, Emerson and Stubbs; +cosponsored by Senators Agard, L. Johnson, Larson and Spreitzer",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James and Ballweg; +cosponsored by Representatives Dittrich, Kurtz, Madison, Mursau, Novak, O'Connor, Snyder and Snodgrass",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Wirch, Roys, Larson and Spreitzer; +cosponsored by Representatives Subeck, Sinicki, Neubauer, Ratcliff, Joers, Clancy, Baldeh, Jacobson, C. Anderson, Emerson, Conley, Moore Omokunde, Hong, J. Anderson, Bare, Ohnstad and Vining",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Shankland, Bare, C. Anderson, Jacobson, Myers, Madison, Cabrera, Clancy, Conley, Emerson, Joers, Palmeri, Ratcliff, Snodgrass, Subeck, Vining, Sinicki, Stubbs, Moore Omokunde, J. Anderson and Neubauer; +cosponsored by Senators Larson, Roys, L. Johnson, Smith, Hesselbein, Agard, Carpenter and Pfaff",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Carpenter, Agard, Hesselbein, Larson, Pfaff, Roys, Smith and Wirch; +cosponsored by Representatives Snodgrass, Cabrera, Neubauer, Ratcliff, Clancy, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Conley, Emerson, Hong, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Palmeri, Riemer, Shankland, Shelton, Sinicki, Subeck and Vining",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Ballweg, Nass, Stroebel, Tomczyk and Wanggaard; +cosponsored by Representatives Sortwell, Allen, Armstrong, Behnke, Bodden, Brooks, Gustafson, Murphy, O'Connor, Rettinger and Tusler",2023-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Schutt, Behnke, Bodden, Brandtjen, Brooks, Dittrich, Green, Gundrum, Knodl, Moses, Murphy, Mursau, Nedweski, O'Connor, Schmidt and Tittl; +cosponsored by Senators Nass, Testin, Marklein, Stroebel and Tomczyk",2023-03-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg, Quinn, Roys and Spreitzer; +cosponsored by Representatives Moses, Rozar, Michalski, C. Anderson, Bodden, Drake, Emerson, Jacobson, Magnafici, Mursau, O'Connor, Ratcliff, Schraa, Shankland, Sinicki, Stubbs, Tittl and Andraca",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Pfaff, Agard, Larson, Roys and Wirch; +cosponsored by Representatives Jacobson, Oldenburg, J. Anderson, Armstrong, Baldeh, Bare, Drake, Emerson, Joers, O'Connor, Ohnstad, Ratcliff and Sinicki",2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee for Review of Administrative Rules,2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Palmeri, Madison, C. Anderson, Ratcliff, Baldeh, Ohnstad, J. Anderson and Sinicki; +cosponsored by Senators Spreitzer and Agard",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Larson, Roys, Spreitzer, Taylor, Hesselbein and Agard; +cosponsored by Representatives Snodgrass, Shelton, Krug, J. Anderson, Conley, Considine, Drake, Emerson, Joers, Moore Omokunde, Palmeri and Shankland",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Carpenter, Larson, Roys, Spreitzer and Taylor; +cosponsored by Representatives Subeck, Joers, C. Anderson, J. Anderson, Bare, Cabrera, Conley, Considine, Drake, Emerson, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shelton and Stubbs",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, L. Johnson, Agard, Hesselbein, Larson, Pfaff, Carpenter, Spreitzer, Taylor, Smith and Wirch; +cosponsored by Representatives Vining, Drake, Andraca, Bare, Billings, Cabrera, Clancy, Conley, Considine, Emerson, Goyke, Haywood, Hong, J. Anderson, Jacobson, Joers, Moore Omokunde, Murphy, Myers, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Snodgrass, Stubbs, Shankland, Baldeh and Subeck",2023-06-21T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Taylor, Hesselbein, L. Johnson and Spreitzer; +cosponsored by Representatives Subeck, Emerson, Conley, J. Anderson, Considine, Andraca, Bare, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Snodgrass and Stubbs",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Cowles, Jacque, Marklein, Nass, Testin and Tomczyk; +cosponsored by Representatives Callahan, Allen, Dittrich, Edming, Gundrum, S. Johnson, Kitchens, Michalski, Moses, Murphy, O'Connor, Penterman, Petryk, Snyder, Spiros, Rozar and Green",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Jacque and Stroebel; +cosponsored by Representatives Sortwell, Armstrong, Behnke, Bodden, Donovan, Edming, Green, Gundrum, Kitchens, Magnafici, Murphy, Mursau, Oldenburg, Penterman, Rettinger, Rodriguez, Schmidt, Snyder, Tittl, Tusler and Wichgers",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, Stubbs and Madison",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Cabrera, Drake, Ohnstad, Rozar, Shankland, Sinicki and Clancy; +cosponsored by Senators Cabral-Guevara, Cowles, Roys and Spreitzer",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson, Smith, Agard, Roys, Hesselbein, Spreitzer and Carpenter; +cosponsored by Representatives Shelton, J. Anderson, Joers, Hong, C. Anderson, Clancy, Considine, Myers, Vining, Shankland, Bare, Madison, Baldeh, Cabrera, Conley, Haywood, Neubauer, Ohnstad, Palmeri, Ratcliff, Sinicki, Snodgrass and Stubbs",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hutton, Testin and Nass; +cosponsored by Representatives Krug, Duchow, Jacobson, Macco, Maxey, Murphy, Penterman, Steffen, Summerfield and Melotik",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn and Tomczyk; +cosponsored by Representatives Edming, Green and Armstrong",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Nedweski, Murphy, Allen, Behnke, Brandtjen, Dittrich, Edming, Goeben, Gundrum, Maxey, Moses, O'Connor, Penterman, Rettinger, Schraa and Tusler; +cosponsored by Senators Cabral-Guevara and Tomczyk",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Wanggaard, Carpenter, Hesselbein, Pfaff and Spreitzer; +cosponsored by Representatives Murphy, Armstrong, Baldeh, Brandtjen, Cabrera, Donovan, Gustafson, Kitchens, Mursau, Ortiz-Velez, Penterman, Pronschinske, Sinicki, Snodgrass, Subeck, Tittl, Tusler, Wichgers and Shankland",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys and L. Johnson; +cosponsored by Representatives Clancy, Madison, Conley, Considine, Emerson, Haywood, Joers, Moore Omokunde, Ohnstad, Shelton, Stubbs and J. Anderson",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Pronschinske, Dittrich, Duchow, Emerson, Goeben, S. Johnson, Michalski, Moses, Ortiz-Velez, Penterman and Schmidt; +cosponsored by Senators James, Testin, Ballweg, Cabral-Guevara, Cowles and Marklein",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Wimberger and Marklein; +cosponsored by Representatives Goeben, Macco, Behnke, Brandtjen, Dittrich, Donovan, Gundrum, Kitchens, Mursau, O'Connor, Spiros and Tittl",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Carpenter; +cosponsored by Representatives Rettinger, Gundrum, Armstrong, Behnke, Brandtjen, Donovan, Knodl, Murphy, Wichgers and Allen",2023-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Callahan, Armstrong, Behnke, Bodden, Dittrich, Doyle, Edming, Moses, Rozar, Schmidt and Jacobson; +cosponsored by Senators Quinn, Ballweg and Wanggaard",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Subeck, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Drake, Jacobson, Joers, Moore Omokunde, Ohnstad, Palmeri, Shelton and Snodgrass; +cosponsored by Senators Larson, Smith, L. Johnson and Hesselbein",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Nass and Stroebel; +cosponsored by Representatives Brooks, Knodl, Armstrong, Brandtjen, Gundrum, Murphy, O'Connor, Rettinger and Steffen",2023-02-03T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl and L. Johnson; +cosponsored by Representatives Krug and Goyke",2024-01-30T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wirch, Carpenter, Hesselbein, L. Johnson, Roys and Spreitzer; +cosponsored by Representatives C. Anderson, Bare, Emerson, Hong, Joers, Madison, Ortiz-Velez, Ratcliff, Sinicki and Shankland",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Jacobson, Schmidt, Conley, Drake, Madison, Ohnstad, Ratcliff, Sinicki, Stubbs and Subeck; +cosponsored by Senators L. Johnson, Cabral-Guevara and Roys",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Binsfeld, Drake, Conley, Donovan, Joers, Krug, Melotik, Mursau, Nedweski, O'Connor, Palmeri, Schmidt, Sinicki, Snyder, Stubbs and Subeck",2024-01-29T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Carpenter, Agard, L. Johnson, Roys, Taylor, Spreitzer, Hesselbein and Smith; +cosponsored by Representatives Shelton, Snodgrass, Goyke, Vining, J. Anderson, Andraca, Baldeh, Clancy, Conley, Considine, Drake, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Palmeri, Ratcliff, Sinicki, Stubbs and Subeck",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Moore Omokunde, Baldeh, Clancy, Drake, Jacobson, Ohnstad, Ratcliff, Sinicki, Snodgrass, Stubbs and Subeck; +cosponsored by Senators Larson, Carpenter and Roys",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen and Quinn; +cosponsored by Representatives Maxey, Michalski, O'Connor and Schmidt",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee for Review of Administrative Rules,2023-02-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Emerson, Vining, Bare, Andraca, Clancy, Conley, Considine, Jacobson, Joers, Madison, Myers, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Sinicki and Stubbs; +cosponsored by Senators Roys, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Spreitzer, Taylor, Wirch and Smith",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, Stubbs, Subeck, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Behnke, Cabrera, Clancy, Conley, Considine, Drake, Emerson, Green, Jacobson, Joers, Madison, Moore Omokunde, Murphy, Mursau, Neubauer, O'Connor, Palmeri, Ratcliff, Shankland, Sinicki, Spiros, Snodgrass and Vining; +cosponsored by Senators Roys, Agard, Ballweg, Cabral-Guevara, Hesselbein, Jacque, Larson, Marklein, Pfaff, Spreitzer and Wirch",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Donovan, Brandtjen, Duchow, Edming, Gustafson, Michalski, Moses, Murphy and Schraa; +cosponsored by Senators Hutton, Knodl and Roys",2023-06-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Emerson, Nedweski, Armstrong, Gundrum, Moses, Novak, Rozar, Shankland, Subeck and Wittke; +cosponsored by Senators Tomczyk, Ballweg, Marklein and Spreitzer",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Hutton; +cosponsored by Representatives Michalski, Maxey, Vining and Dittrich",2023-08-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Cabral-Guevara, Felzkowski, Marklein, Nass, Stroebel and Ballweg; +cosponsored by Representatives Plumer, Moses, Penterman, Behnke, Binsfeld, Bodden, Brandtjen, Brooks, Dallman, Dittrich, Donovan, Edming, Green, Gundrum, Gustafson, Knodl, Magnafici, Murphy, Nedweski, O'Connor, Petersen, Petryk, Rettinger, Rozar, Schmidt, Snyder, Sortwell, Steffen and Michalski",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, L. Johnson, Larson and Taylor; +cosponsored by Representatives Snyder, Baldeh, Behnke, Gundrum, Murphy, O'Connor, Ohnstad, Ortiz-Velez, Palmeri, Rozar, Sinicki, Spiros, Stubbs, Subeck, Tittl and VanderMeer",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Felzkowski and Testin; +cosponsored by Representatives Green, Sapik, Bodden, Callahan, Edming, O'Connor, Summerfield and Swearingen",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Spreitzer and Agard; +cosponsored by Representatives Bare, Palmeri, Ratcliff, Madison, Clancy, J. Anderson, Considine, Joers, Neubauer, Sinicki and Stubbs",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Drake, Baldeh, Myers, Haywood, Stubbs, Moore Omokunde, Madison, Joers, Goyke, Ratcliff, Sinicki, Emerson, Bare, O'Connor, Clancy, Andraca, Shankland, Subeck, Conley, Doyle, Shelton, C. Anderson, Considine, J. Anderson, Vining, Neubauer, Spiros, Riemer, McGuire, Palmeri, Hong, Billings, Jacobson, Snodgrass, Ohnstad and Ortiz-Velez; +cosponsored by Senators L. Johnson, Carpenter, Agard, Larson, Roys, Spreitzer and Smith",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Maxey, Neylon, Zimmerman, Allen and Brandtjen; +cosponsored by Senator Cabral-Guevara",2024-02-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Armstrong, Behnke, Bodden, Brandtjen, Dittrich and O'Connor; +cosponsored by Senators Jacque and Tomczyk",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson, Hesselbein, Roys, Agard and Smith; +cosponsored by Representatives Clancy, Madison, Ratcliff, Palmeri, Baldeh, Cabrera, Drake, Shelton, Sinicki, Snodgrass, Stubbs, Hong, Emerson, Joers, Conley, C. Anderson, Jacobson, Subeck, Moore Omokunde and J. Anderson",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Marklein and Nass; +cosponsored by Representatives Tranel, Armstrong, Dittrich, Hurd, Magnafici, Murphy, Mursau, Novak, Oldenburg, Penterman, Schmidt and Schutt",2023-11-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Carpenter, Roys, Agard, Larson, Smith, Taylor and Spreitzer; +cosponsored by Representatives Palmeri, Riemer, Conley, Madison, Considine, Emerson, Andraca, Moore Omokunde, Subeck, Joers, Neubauer, Jacobson, Ratcliff, Baldeh, C. Anderson, J. Anderson, Ohnstad, Clancy, Shelton, Sinicki and Vining",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Binsfeld, Behnke, Brooks, Brandtjen, Donovan, Kitchens, Murphy, Mursau, Rettinger, Sapik and Wichgers; +cosponsored by Senators Jacque and Marklein",2023-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson, Smith, Hesselbein, Agard, Carpenter and Pfaff; +cosponsored by Representatives Hong, Shelton, Joers, C. Anderson, Jacobson, Myers, Shankland, Bare, Madison, Cabrera, Clancy, Conley, Emerson, Palmeri, Ratcliff, Sinicki, Snodgrass, Subeck, Vining, Stubbs, Moore Omokunde, J. Anderson and Neubauer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Carpenter, Taylor, Roys, Spreitzer, Larson, Agard and Hesselbein; +cosponsored by Representatives Haywood, Bare, Emerson, Moore Omokunde, Stubbs, Ratcliff, Joers, C. Anderson, Palmeri, Sinicki, Jacobson, Andraca, Hong, Madison, Drake, Clancy and Goyke",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Armstrong, Behnke, Murphy, Shankland and Subeck; +cosponsored by Senators Jacque, Marklein, Ballweg and Nass",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Bradley, Hutton, Quinn, Stroebel and Tomczyk; +cosponsored by Representatives Steffen, Green, C. Anderson, Behnke, Binsfeld, Bodden, Brandtjen, Brooks, Edming, Gustafson, Hurd, Magnafici, Murphy, Penterman, Rozar, Schmidt and Tranel",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Michalski, Allen, August, Baldeh, Conley, Dittrich, Drake, Duchow, Edming, Emerson, Hurd, Jacobson, Kitchens, Macco, Magnafici, Maxey, Melotik, Murphy, Mursau, O'Connor, Ohnstad, Penterman, Rettinger, Rozar, Schutt, Sinicki, Spiros, Stubbs, Subeck, Tittl, Tranel and Brandtjen; +cosponsored by Senators Hutton, Jagler, Jacque, Spreitzer, Bradley, Kapenga, Nass, Carpenter, Felzkowski, Marklein, Wirch, Cowles, Agard, Feyen, Ballweg, Roys and Testin",2024-01-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Michalski, Duchow, Allen, Armstrong, Behnke, Dittrich, Donovan, Gundrum, Maxey, Murphy, O'Connor and Rettinger; +cosponsored by Senators James, Feyen, Nass, Stroebel and Wanggaard",2023-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Gustafson, Behnke, Rettinger, Subeck and Wichgers",2023-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Ratcliff, Clancy, Stubbs, Bare, Moore Omokunde and Baldeh",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Allen, Armstrong, Behnke, Edming, Gustafson and Rozar; +cosponsored by Senators Cabral-Guevara and Nass",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Cowles, Felzkowski, Feyen, Hesselbein, Pfaff, Spreitzer, Testin, Tomczyk, Wanggaard and Wimberger; +cosponsored by Representatives Mursau, Behnke, Green, Kurtz, Novak, O'Connor, Oldenburg, Penterman, Petryk, Steffen, Tranel, S. Johnson, Pronschinske, Schraa and Shelton",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Emerson, Joers, Moore Omokunde, Ortiz-Velez, Palmeri, Sinicki and Stubbs; +cosponsored by Senators L. Johnson, Spreitzer and Larson",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hutton, Ballweg, Carpenter, Jacque, L. Johnson, Wirch and Spreitzer; +cosponsored by Representatives Wichgers, Maxey, Behnke, Brandtjen, Dittrich, Edming, Gundrum, Gustafson, Murphy, O'Connor, Rettinger, Sinicki and Steffen",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Agard, L. Johnson, Larson, Roys and Spreitzer; +cosponsored by Representatives Shankland, Ratcliff, Bare, Emerson, Joers, Moore Omokunde, Sinicki and Stubbs",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Shankland, Tranel, Oldenburg, Dittrich, C. Anderson, Goeben, Gundrum, Hurd, Jacobson, Joers, Kitchens, Krug, Kurtz, Moses, Mursau and Schmidt; +cosponsored by Senators James, Cowles, Pfaff, Smith, Spreitzer and Testin",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative Gundrum,2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Hong and Clancy; +cosponsored by Senator Larson",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Snodgrass, J. Anderson, Bare, Conley, Considine, Emerson, Hong, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Sinicki, Stubbs, Subeck, Andraca and Haywood; +cosponsored by Senators Smith, Spreitzer, Agard, Carpenter, L. Johnson, Roys, Taylor and Larson",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Taylor, L. Johnson, Hesselbein, Larson, Smith and Spreitzer; +cosponsored by Representatives Haywood, Sinicki, Ratcliff, Considine, Bare, Emerson, Conley, Palmeri and Ohnstad",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee for Review of Administrative Rules,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Kitchens, Goeben, S. Johnson, Maxey and Tittl; +cosponsored by Senator Taylor",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dallman, Kurtz, C. Anderson, Dittrich, Kitchens, Krug, Mursau, Novak, O'Connor, Penterman, Plumer, Schraa, Stubbs, Swearingen and Jacobson; +cosponsored by Senators Ballweg, Bradley, Carpenter, Feyen, Marklein, Spreitzer and Testin",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Agard, Roys, L. Johnson, Smith, Hesselbein, Spreitzer, Carpenter and Pfaff; +cosponsored by Representatives Shelton, Clancy, Hong, Jacobson, Myers, Shankland, Bare, Cabrera, Joers, Conley, Emerson, Palmeri, Ratcliff, Sinicki, Snodgrass, Subeck, Stubbs, Moore Omokunde, Madison, J. Anderson and Neubauer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Felzkowski, Nass, Quinn, Stafsholt and Tomczyk; +cosponsored by Representatives Bodden, Allen, Behnke, Binsfeld, Brandtjen, Brooks, Goeben, Gundrum, Gustafson, Michalski, Murphy, O'Connor, Rettinger, Schmidt and Wichgers",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Spiros, Drake, C. Anderson, Baldeh, Conley, Considine, Donovan, Goyke, Green, Gundrum, Macco, Palmeri, O'Connor, Ohnstad, Steffen, Subeck, Summerfield and Wittke; +cosponsored by Senators Wanggaard, Taylor, Cowles and James",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski and Marklein; +cosponsored by Representatives Gustafson, Goeben, Allen, Dittrich, Edming, Hurd, Moses, Mursau, O'Connor, Rettinger, Sapik and Schmidt",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hurd, Vining, Behnke, Penterman, Rozar, Schmidt, Joers, Ratcliff, Baldeh, Bare, C. Anderson, Conley, Considine, Drake, Emerson, J. Anderson, S. Johnson, Madison, Mursau, O'Connor, Ohnstad, Palmeri, Shankland, Shelton, Sinicki, Stubbs, Subeck and Summerfield; +cosponsored by Senators Tomczyk and Spreitzer",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, C. Anderson, Jacobson, Shankland, Andraca, Bare, Madison, J. Anderson, Baldeh, Cabrera, Clancy, Conley, Considine, Haywood, Hong, Joers, Ohnstad, Palmeri, Ratcliff, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Larson, L. Johnson, Smith, Roys, Hesselbein, Agard, Carpenter and Spreitzer",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator James; +cosponsored by Representatives Novak, Kitchens and Mursau",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Binsfeld, Brandtjen, Donovan, Gundrum, Maxey, Murphy, Mursau, O'Connor, Rettinger, Rozar, Schutt, Tittl and Wichgers; +cosponsored by Senators Jacque, Ballweg, Stafsholt, Stroebel and Quinn",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Clancy, Stubbs, Drake, J. Anderson, Baldeh, Conley, Considine, Emerson, Joers, Moore Omokunde, Palmeri, Shelton, Sinicki, Subeck and Neubauer; +cosponsored by Senators Taylor and L. Johnson",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Agard and Larson; +cosponsored by Representatives Madison, Joers, Jacobson, Palmeri, C. Anderson, J. Anderson, Bare, Clancy, Hong, Moore Omokunde, Ratcliff and Stubbs",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Stroebel and Felzkowski; +cosponsored by Representatives Goeben, Allen, Binsfeld, Brandtjen, Edming, Green, Gundrum, Gustafson, Hurd, Krug, Magnafici, Maxey, O'Connor, Petersen, Petryk, Plumer, Rozar, Schmidt, Steffen, Summerfield, Swearingen, VanderMeer and Wichgers",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, J. Anderson, Shankland, Sinicki and Subeck; +cosponsored by Senators L. Johnson, Carpenter, Wirch, Smith and Hesselbein",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson and Spreitzer; +cosponsored by Representatives J. Anderson, C. Anderson, Bare, Clancy, Madison, Palmeri, Joers, Jacobson, Conley, Andraca, Shelton, Ratcliff, Considine, Baldeh and Sinicki",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Melotik, Armstrong, Murphy, O'Connor and Tranel; +cosponsored by Senators Knodl, Jacque and Spreitzer",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Bodden, Tusler, Behnke and Donovan",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Quinn, Jacque, Cabral-Guevara and Jagler; +cosponsored by Representatives Penterman, Brooks, Emerson, Rozar, C. Anderson, Brandtjen, Dittrich, Donovan, Duchow, Edming, Green, Gundrum, Joers, Kitchens, Murphy, O'Connor, Ortiz-Velez, Petryk, Plumer, Rettinger, Schraa, Shankland, Sinicki, Swearingen, Snyder, Tranel and Wichgers",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Smith, Carpenter, Taylor, Roys, Larson, L. Johnson, Agard and Spreitzer; +cosponsored by Representatives Joers, Drake, Sinicki, Neubauer, Ratcliff, Bare, Emerson, Shelton, Jacobson, Considine, Palmeri, C. Anderson, Subeck, Clancy, Hong, Moore Omokunde, J. Anderson, Madison, Stubbs, Baldeh, Conley, Shankland and Ortiz-Velez",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Tomczyk, Stroebel, Nass and Jacque; +cosponsored by Representatives Binsfeld, Armstrong, Bodden, Brandtjen, Donovan, Gustafson, Magnafici, Maxey, Murphy, Schmidt, Steffen, Tittl and Wichgers",2023-08-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Hesselbein, Larson, Roys, Smith, Spreitzer and Taylor; +cosponsored by Representatives Shelton, Jacobson, Considine, C. Anderson, J. Anderson, Andraca, Bare, Clancy, Conley, Drake, Emerson, Joers, Madison, Moore Omokunde, Ohnstad, Palmeri, Ratcliff, Shankland, Sinicki, Snodgrass and Subeck",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Pfaff, L. Johnson, Roys, Hesselbein, Carpenter, Wirch, Spreitzer, Ballweg, Larson, Cowles and Smith; +cosponsored by Representatives Neubauer, Stubbs, Goyke, Conley, Sinicki, Ratcliff, Bare, Emerson, Snodgrass, Drake, Shelton, Baldeh, Considine, Joers, Murphy, Subeck, J. Anderson, Myers, Shankland, Cabrera, Andraca, Ohnstad, Riemer, Billings, Hong, C. Anderson and Moore Omokunde",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Binsfeld, Drake, Behnke, Conley, Dittrich, Donovan, Edming, Green, Joers, Melotik, Murphy, Mursau, Nedweski, O'Connor, Palmeri, Schmidt, Stubbs, Subeck, Snyder and Madison; +cosponsored by Senators Knodl and Cabral-Guevara",2024-01-29T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Wirch, Hesselbein, Nass, Spreitzer, Taylor and Ballweg; +cosponsored by Representatives Armstrong, Ohnstad, Brooks, Cabrera, Dittrich, Doyle, Green, Joers, Kitchens, Mursau, O'Connor, Ortiz-Velez, Palmeri, Shankland, Sinicki, Snodgrass, Spiros, Stubbs, Subeck and VanderMeer",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Taylor, Agard, Carpenter, Hesselbein, Larson, Pfaff, Smith, Spreitzer and Wirch; +cosponsored by Representatives Hong, C. Anderson, J. Anderson, Conley, Considine, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Palmeri, Ratcliff, Shelton, Sinicki and Subeck",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, Hong, Moore Omokunde, Myers, Bare, Conley, Considine, Emerson, Joers, Madison, Ortiz-Velez, Ratcliff, Shankland, Stubbs, Subeck and Palmeri; +cosponsored by Senator Agard",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Wichgers, J. Anderson, Cabrera, C. Anderson, Behnke, Brandtjen, Gundrum, Ortiz-Velez, Palmeri, Sapik and Sinicki",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Petersen, Mursau, O'Connor, Plumer, Steffen, Swearingen and Wichgers; +cosponsored by Senators Bradley, Marklein and Wanggaard",2023-10-05T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman and Allen; +cosponsored by Senator Jacque",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Carpenter, Spreitzer, Agard, Hesselbein, Larson, Roys and Smith; +cosponsored by Representatives Neubauer, Cabrera, Snodgrass, C. Anderson, J. Anderson, Andraca, Bare, Billings, Clancy, Conley, Considine, Emerson, Joers, Madison, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs, Subeck and Vining",2023-05-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Cabral-Guevara, Cowles, Stafsholt and Stroebel; +cosponsored by Representatives Goeben, Gundrum, Armstrong, Behnke, Bodden, Brandtjen, Brooks, Dittrich, Edming, Murphy, Petersen, Schmidt, Tittl, Tusler, Wichgers and Rettinger",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard and Cabral-Guevara; +cosponsored by Representatives Nedweski, Vos, Behnke, Binsfeld, Dittrich, Donovan, Edming, Gundrum, Maxey, Michalski, Murphy, Novak, O'Connor, Rettinger, Rozar, Schraa, Spiros, Steffen, Summerfield, Tusler, Wichgers and Hurd",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, L. Johnson, Spreitzer and Taylor; +cosponsored by Representatives J. Anderson, Hong, Moore Omokunde, C. Anderson, Clancy, Jacobson, Joers, Madison, Palmeri, Ratcliff, Baldeh, Cabrera, Conley, Drake, Emerson, Ohnstad, Shelton, Sinicki, Snodgrass and Stubbs",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Considine, Andraca, Bare, Conley, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Myers, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs, Vining and Clancy",2023-08-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Joers, C. Anderson, J. Anderson, Bare, Cabrera, Conley, Considine, Drake, Emerson, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Stubbs and Jacobson; +cosponsored by Senators Carpenter, Larson, Roys, Spreitzer and Taylor",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Spiros, Billings, Brandtjen, Clancy, Considine, Joers, S. Johnson, Maxey, Stubbs, Subeck, Mursau and Jacobson; +cosponsored by Senators Wanggaard, Agard, Feyen, Cowles, Ballweg, Testin and Smith",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Gustafson, Brandtjen, Donovan and Sinicki; +cosponsored by Senator Jacque",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Roys and Spreitzer; +cosponsored by Representatives Bare, Joers, Vining, Clancy, Ratcliff, J. Anderson, Jacobson, Madison, Neubauer, Sinicki and Drake",2023-12-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Marklein, Ballweg and Tomczyk; +cosponsored by Representatives Sortwell, Steffen, Behnke, Dittrich, Donovan, Edming, Michalski, Murphy, O'Connor, Tittl, Wichgers and Brandtjen",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Spreitzer, Agard and Roys; +cosponsored by Representatives Haywood, Snodgrass, Ortiz-Velez, Neubauer, Emerson, Conley, Joers, J. Anderson, Ratcliff, Ohnstad, Stubbs, Subeck, Moore Omokunde, Jacobson and Madison",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, James, Ballweg, Cowles, Felzkowski, Feyen, Jagler, Testin, Cabral-Guevara and Nass; +cosponsored by Representatives Hurd, Born, Summerfield, Armstrong, Dallman, Dittrich, Drake, Duchow, Edming, Gundrum, Kitchens, Kurtz, Murphy, Novak, Rodriguez, Rozar, Schutt, Steffen, Subeck, Wichgers, Goeben and Jacobson",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Smith, Carpenter, Roys and Spreitzer; +cosponsored by Representatives Shankland, Shelton, Snodgrass, Emerson, Myers, Conley, Palmeri, J. Anderson, Stubbs, Cabrera, Behnke, Considine, Vining, Sinicki, Subeck, Baldeh, Clancy, Moore Omokunde and Andraca",2023-05-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Billings, J. Anderson, Joers, C. Anderson, Clancy, Conley, Drake, Emerson, Jacobson, Madison, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs and Vining; +cosponsored by Senators Smith, Roys, Taylor, Hesselbein, Larson, Spreitzer and Agard",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Andraca, Joers, C. Anderson, Clancy, Jacobson, Considine, Myers, Vining, Shankland, J. Anderson, Baldeh, Ratcliff, Sinicki and Subeck; +cosponsored by Senators Smith, Larson, Roys, Hesselbein, Agard, Spreitzer and Carpenter",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dallman, Swearingen, Brooks, Moses, Murphy, Novak and Tusler; +cosponsored by Senators Wanggaard, Ballweg and Felzkowski",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Carpenter, Cowles, Felzkowski, Larson, Marklein, Roys, Spreitzer, Testin and Agard; +cosponsored by Representatives Rozar, Andraca, Bare, Behnke, Binsfeld, Callahan, Dittrich, Edming, Magnafici, Moses, Murphy, Mursau, Nedweski, Novak, O'Connor, Palmeri, Penterman, Schmidt, Shankland, Sinicki, Stubbs and Subeck",2024-01-31T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer and Roys; +cosponsored by Representatives Subeck, Ratcliff, J. Anderson, Baldeh, Bare, Drake, Emerson, Madison, Palmeri, Shelton, Snodgrass and Stubbs",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Pfaff, Ballweg, Cabral-Guevara, Carpenter, James, L. Johnson, Larson, Roys, Spreitzer, Cowles and Hutton; +cosponsored by Representatives Tittl, Shelton, C. Anderson, Andraca, Baldeh, Considine, Dittrich, Doyle, Goeben, Gustafson, Jacobson, Joers, Kitchens, Magnafici, Moore Omokunde, Mursau, Ohnstad, Ortiz-Velez, Palmeri, Sinicki, Snyder, Stubbs, Subeck and Vining",2023-08-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Ballweg, L. Johnson and Taylor; +cosponsored by Representatives Donovan, Drake, C. Anderson, Considine, Goyke, Joers, Ohnstad and Steffen",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Nass and Tomczyk; +cosponsored by Representatives Dittrich, O'Connor, Magnafici, Michalski, Gundrum, Murphy, Goeben, Wichgers, Rozar and Rettinger",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Felzkowski, Feyen, Marklein and Stroebel; +cosponsored by Representatives Gustafson, Sortwell, Allen, Brandtjen, Dittrich, Edming, Green, Moses, Murphy, Mursau, Neylon, O'Connor, Rozar and Wichgers",2023-06-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Allen, Armstrong, Behnke, Bodden, Brooks, Gustafson, O'Connor, Murphy, Rettinger and Tusler; +cosponsored by Senators Cabral-Guevara, Ballweg, Nass, Stroebel, Tomczyk, Wanggaard and Felzkowski",2023-02-28T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Tranel, Andraca, Armstrong, Baldeh, Conley, Dittrich, Doyle, Edming, Jacobson, Maxey, Shankland, Sinicki, S. Johnson, Green, Brandtjen and Joers; +cosponsored by Senators Quinn, Felzkowski and Spreitzer",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley, Nass, Hutton, Jacque and Stroebel; +cosponsored by Representatives Rettinger, Maxey, Gundrum, Behnke, Brandtjen, Dittrich, Moses, Murphy, O'Connor and Rozar",2023-05-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Considine, Shelton, Hong, C. Anderson, Clancy, J. Anderson, Baldeh, Joers, Neubauer, Ratcliff, Sinicki and Subeck; +cosponsored by Senators Larson, Smith, Roys, Hesselbein, Agard and Spreitzer",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Brooks, Knodl, Rettinger, Rozar, Allen, Bodden, Brandtjen, Dittrich, Gundrum, Gustafson, Magnafici, Murphy, Penterman, Spiros, Tusler, Behnke and Schraa; +cosponsored by Senators LeMahieu, Ballweg, Bradley, Cabral-Guevara, Feyen, James, Nass, Stroebel, Tomczyk, Hutton and Felzkowski",2023-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson and Spreitzer; +cosponsored by Representatives J. Anderson, Clancy, Drake, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Myers, Ortiz-Velez, Ratcliff, Shankland, Shelton, Snodgrass, Stubbs and Subeck",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Spreitzer, Taylor, Carpenter, Roys, Smith, Larson and Hesselbein; +cosponsored by Representatives Considine, Jacobson, Emerson, Snodgrass, Ratcliff, Joers, Shankland, Conley, Andraca, C. Anderson, Ohnstad, Shelton, J. Anderson, Stubbs, Drake, Bare, Clancy and Subeck",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Stroebel; +cosponsored by Representative Rodriguez",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Palmeri, Baldeh, Conley, Considine, Drake, Joers, O'Connor, Ratcliff, Sinicki, Snodgrass, Subeck, Ortiz-Velez and Ohnstad; +cosponsored by Senator Feyen",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Feyen; +cosponsored by Representatives Brooks, Duchow, Binsfeld, Michalski, O'Connor, Plumer, Rozar and Schmidt",2023-10-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Agard; +cosponsored by Representatives Vining, Hong, Moore Omokunde, Myers, Bare, Conley, Considine, Emerson, Joers, Madison, Ortiz-Velez, Ratcliff, Stubbs, Subeck and Palmeri",2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kitchens, Bodden, Tusler, Rozar, Mursau, Vining, Joers, Conley, Considine, Cabrera, Subeck, Stubbs, J. Anderson, Ratcliff, Sinicki, Snodgrass, Shankland and Jacobson; +cosponsored by Senators Cowles, Agard, Cabral-Guevara, Spreitzer, Taylor, Hesselbein and Smith",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives McGuire, Snodgrass, Doyle, Bare, Considine, Emerson, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Shankland, Shelton, Sinicki and Subeck; +cosponsored by Senators Pfaff, Wirch, Agard and Roys",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Conley, Considine, Joers, Moore Omokunde, Ohnstad, Ratcliff, Sinicki, Stubbs and Subeck; +cosponsored by Senators Smith, Larson, Spreitzer and Agard",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, Madison, Ratcliff, Palmeri, C. Anderson, J. Anderson, Baldeh, Bare, Cabrera, Considine, Drake, Emerson, Hong, Jacobson, Joers, Moore Omokunde, Ortiz-Velez, Shelton, Sinicki, Snodgrass, Stubbs, Subeck and Haywood; +cosponsored by Senators Larson, Hesselbein, L. Johnson, Spreitzer and Taylor",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard and Taylor; +cosponsored by Representatives Tusler and Ortiz-Velez",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler, Maxey, Armstrong, Dittrich, Donovan, Kitchens, Michalski, Murphy, O'Connor, Rettinger, Rozar, Schraa and Steffen; +cosponsored by Senator Cabral-Guevara",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Brandtjen and Myers; +cosponsored by Senators Jacque, Wanggaard, Ballweg and Marklein",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Hesselbein, Ballweg, Roys and Spreitzer; +cosponsored by Representatives S. Johnson, Penterman, Andraca, Considine, Joers, Ohnstad and Sinicki",2023-07-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Larson, Agard, Taylor and Spreitzer; +cosponsored by Representatives Neubauer, J. Anderson, Emerson, C. Anderson, Baldeh, Bare, Conley, Considine, Jacobson, Joers, Moore Omokunde, Ohnstad, Madison, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs, Subeck and Vining",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Allen, Armstrong, Behnke, Dittrich, Edming, Goeben, Gundrum, Rettinger, Wichgers and Brandtjen; +cosponsored by Senators James, Bradley and Feyen",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator James; +cosponsored by Representative Sortwell",2023-07-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Doyle, Jacobson, Bare, Stubbs, Emerson, Conley, Snodgrass, Palmeri, Considine, Clancy, Moore Omokunde, Drake, Joers, Subeck, Sinicki, Myers, Andraca, C. Anderson, Ohnstad, Shelton, Madison and Haywood; +cosponsored by Senators Roys, L. Johnson, Spreitzer, Hesselbein and Larson",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Cowles, Carpenter, Larson, Pfaff, Quinn and Spreitzer; +cosponsored by Representatives Krug, Shankland, Dittrich, C. Anderson, Baldeh, Bare, Billings, Cabrera, Conley, Considine, Doyle, Emerson, Green, Joers, Kitchens, Mursau, Ohnstad, Palmeri, Rozar, Sinicki, Snodgrass and Spiros",2023-05-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Feyen, Marklein, Taylor and Tomczyk; +cosponsored by Representatives Sapik, Drake, Gustafson, Melotik, Murphy, Mursau, Myers, Palmeri, Ratcliff, Schmidt, Sinicki and Subeck",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Tranel, O'Connor, Rozar, Subeck and Melotik; +cosponsored by Senators Ballweg and James",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, J. Anderson, Baldeh, Clancy, Conley, Drake, Jacobson, Joers, Kitchens, Madison, Magnafici, Michalski, Moore Omokunde, Murphy, Mursau, Novak, O'Connor, Ohnstad, Palmeri, Penterman, Rettinger, Shelton, Sinicki, Subeck, Tranel and Edming; +cosponsored by Senators Ballweg, Feyen, Jacque, James, Larson, Spreitzer, Taylor, Cowles and Marklein",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Sapik, Armstrong, Behnke, Brandtjen, Green, Magnafici, Murphy and Penterman; +cosponsored by Senators Quinn and Tomczyk",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Knodl, Steffen, Armstrong, Behnke, Brandtjen, Dallman, Dittrich, Donovan, Duchow, Gundrum, Kitchens, Kurtz, Macco, Murphy, Mursau, Rettinger, Rodriguez, Rozar, Snyder, Sortwell, Swearingen, Tittl, Tusler and Zimmerman; +cosponsored by Senators Bradley, Feyen, Nass, Stroebel, Testin, Tomczyk, Wanggaard and Wimberger",2023-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives August, Gustafson, Dittrich, Allen, Plumer, Hurd, Maxey, O'Connor, Rettinger, Schutt, Armstrong, Magnafici, Nedweski, Bodden, Snyder, Petersen, Rozar, Behnke, Mursau, Penterman, Swearingen, Schraa, Edming, Murphy, Brooks, Binsfeld, Green, Summerfield, Moses, Callahan, Dallman, Schmidt, Goeben, Wittke, Gundrum, Duchow, Melotik, S. Johnson, Brandtjen, Born and Michalski; +cosponsored by Senators Bradley, Nass, Wanggaard, Jacque, Stroebel, Ballweg, Jagler, Quinn, Tomczyk, Testin, Marklein, Felzkowski, Stafsholt and Cabral-Guevara",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Tusler, Behnke, S. Johnson and Mursau; +cosponsored by Senators Cowles, Cabral-Guevara, Felzkowski, Feyen, Marklein and Stroebel",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Considine, C. Anderson, Andraca, Bare, Behnke, Cabrera, Conley, Emerson, Jacobson, Joers, Goeben, Moses, Mursau, Ohnstad, Palmeri, Shelton and Sortwell; +cosponsored by Senators Roys, Spreitzer, Agard, Cabral-Guevara, Hesselbein, L. Johnson, Smith and Taylor",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Tomczyk, Spreitzer, Carpenter and Hesselbein; +cosponsored by Representatives Plumer, Spiros, Andraca, Steffen, Melotik, Murphy, Goeben, Penterman, Michalski, Subeck, O'Connor, Hong, Sinicki, Riemer, Emerson, C. Anderson, Bare and Behnke",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Rozar, Kurtz and Summerfield; +cosponsored by Senator Cabral-Guevara",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Summerfield, O'Connor, Steffen, Michalski, Edming, Green, Bodden, Gustafson and Behnke; +cosponsored by Senators James, Tomczyk, Quinn and Ballweg",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Ballweg, Cabral-Guevara, Quinn and Wanggaard; +cosponsored by Representatives Tittl, Penterman, Baldeh, Knodl, Murphy, Mursau, Myers, Rozar, Schraa, Spiros, Tusler, VanderMeer and Wichgers",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Cabral-Guevara, Stroebel and Felzkowski; +cosponsored by Representatives Hurd, Goeben, Edming, Green, Gundrum, Krug, Magnafici, Melotik, O'Connor, Penterman, Petersen, Petryk, Plumer, Rodriguez, Rozar, Steffen, Summerfield, Swearingen, Tranel, Armstrong and Wichgers",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Conley, C. Anderson, Baldeh, Behnke, Brandtjen, Emerson, Joers, Mursau, Ohnstad, Ortiz-Velez, Palmeri, Schmidt, Stubbs, Subeck and Wichgers; +cosponsored by Senators Jacque and Spreitzer",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Macco, Allen, Behnke, Bodden, Born, Brandtjen, Dittrich, Edming, Green, Gundrum, Knodl, Magnafici, Moses, Nedweski, Petersen, Plumer, Rettinger, Rozar, Snyder, Sortwell, Steffen, Tittl and Wichgers; +cosponsored by Senators Stafsholt, Cabral-Guevara, Felzkowski, Nass and Stroebel",2023-04-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Marklein, Nass, Stroebel, Tomczyk and Wanggaard; +cosponsored by Representatives Bodden, Behnke, Armstrong, Binsfeld, Brandtjen, Callahan, Dittrich, Edming, Goeben, Green, Gustafson, Magnafici, Murphy, O'Connor, Rettinger, Rozar, Schmidt, Schutt and Wichgers",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goyke, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Conley, Considine, Dittrich, Doyle, Drake, Emerson, Hong, Jacobson, Joers, Madison, Myers, Neubauer, Novak, Ortiz-Velez, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Spiros, Stubbs, Subeck, Tranel, Vining and Ohnstad; +cosponsored by Senators Pfaff, Roys, Carpenter, Spreitzer, Ballweg, L. Johnson, Wirch and Smith",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Quinn, James, Pfaff and Taylor; +cosponsored by Representatives Schraa, Rozar, Tittl, Conley, Considine, Dittrich, Donovan, Edming, Goeben, Goyke, Gundrum, Jacobson, Magnafici, Mursau, Novak, O'Connor, Oldenburg, Palmeri, Snyder, Tusler and Wichgers",2023-12-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Katsma, O'Connor, Allen, Armstrong, August, Born, Behnke, Binsfeld, Callahan, Dallman, Dittrich, Donovan, Duchow, Edming, Goeben, Green, Gundrum, Gustafson, Hurd, S. Johnson, Krug, Kitchens, Kurtz, Macco, Magnafici, Maxey, Melotik, Michalski, Moses, Mursau, Nedweski, Novak, Penterman, Petersen, Petryk, Plumer, Pronschinske, Rettinger, Rodriguez, Rozar, Sapik, Schmidt, Schraa, Snyder, Sortwell, Swearingen, Summerfield, Tittl, Tusler, VanderMeer, Vos, Wittke, Zimmerman and Oldenburg; +cosponsored by Senators Cabral-Guevara, Bradley, Knodl, Jagler and Wanggaard",2023-08-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger and Cabral-Guevara; +cosponsored by Representatives Pronschinske, Binsfeld, Brandtjen, Callahan, Edming, Green, Magnafici, Mursau, O'Connor, Oldenburg, Petryk, Summerfield and VanderMeer",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Taylor, Ballweg, Cabral-Guevara, Hesselbein, Knodl, Roys, Smith, Spreitzer and Testin; +cosponsored by Representatives Rozar, Ortiz-Velez, C. Anderson, Andraca, Baldeh, Billings, Cabrera, Clancy, Conley, Considine, Dittrich, Doyle, Drake, Edming, Krug, Madison, Moses, Mursau, Ohnstad, Plumer, Sinicki, Stubbs and Subeck",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Kitchens, Moses, O'Connor, Spiros, Steffen, Tittl, Baldeh and Ohnstad; +cosponsored by Senators Tomczyk, Cabral-Guevara, Feyen, Stroebel, Testin and Pfaff",2023-06-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Marklein and Ballweg; +cosponsored by Representatives Duchow, Armstrong, Dittrich, Edming, Goeben, Kitchens, Magnafici, Maxey, Murphy, Nedweski, O'Connor and Rettinger",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Edming and Green; +cosponsored by Senators Quinn and Tomczyk",2023-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Spreitzer and Larson; +cosponsored by Representatives Subeck, Emerson, Joers, Moore Omokunde, Ortiz-Velez, Palmeri, Sinicki and Stubbs",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and Feyen; +cosponsored by Representatives Penterman, Behnke, Armstrong, Bodden, Callahan, Donovan, Edming, Kitchens, Maxey, Mursau, Novak, Rozar, Schmidt, Spiros, Tittl and Schraa",2023-11-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, L. Johnson, Carpenter, Jacque, Larson, Roys, Spreitzer and Taylor; +cosponsored by Representatives Novak, Haywood, Allen, Armstrong, Binsfeld, C. Anderson, Cabrera, Conley, Dittrich, Donovan, Emerson, Goeben, Goyke, Gustafson, Jacobson, Joers, Krug, Murphy, Myers, O'Connor, Ohnstad, Ortiz-Velez, Palmeri, Snodgrass, Spiros, Stubbs, Subeck, Vining, Mursau and Drake",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Ballweg, Cabral-Guevara, Cowles, Felzkowski, Nass, Quinn, Roys and Wanggaard; +cosponsored by Representatives Novak, Swearingen, Allen, Armstrong, Baldeh, Behnke, Bodden, Brooks, Edming, Gundrum, Gustafson, Kitchens, Knodl, Macco, Murphy, Mursau, Nedweski, Penterman, Rettinger, Rodriguez, Sortwell, Tittl, Tranel, Tusler and Wittke",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Brandtjen, Allen, Behnke, Bodden and Wichgers",2023-11-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Donovan, Tusler, Rettinger, Allen, Behnke, Bodden, Brandtjen, Brooks, Duchow, Goeben, Gundrum, Maxey, Melotik, Michalski, Murphy, O'Connor and Penterman; +cosponsored by Senators Knodl, Hutton, Bradley, Ballweg, James, Marklein and Nass",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Armstrong, Behnke, Binsfeld, Brandtjen, Brooks, Donovan, Edming, Gundrum, Gustafson, Kitchens, Murphy, Mursau, Penterman, Plumer, Rettinger, Schraa, Schutt, Tittl, Tusler and Wichgers; +cosponsored by Senators Jacque, Cabral-Guevara, Felzkowski, Feyen, Marklein, Nass, Quinn, Stafsholt and Tomczyk",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, S. Johnson, Allen, Bare, Behnke, Dittrich, Duchow, Edming, Murphy, Ortiz-Velez, Rettinger, Schmidt, Sinicki, Spiros, Myers and Brooks; +cosponsored by Senators Testin, Nass, Ballweg and Cowles",2023-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Ballweg, Cowles, Taylor and Spreitzer; +cosponsored by Representatives Callahan, Behnke, Emerson, Goeben, Nedweski, Penterman, Rozar, Sinicki, Snyder, Spiros, Wichgers, Edming and Dittrich",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Pronschinske, Allen, Armstrong, Behnke, Bodden, Brandtjen, C. Anderson, Callahan, Edming, Goeben, Magnafici, Moses, Mursau and Penterman; +cosponsored by Senators Quinn, Ballweg and Marklein",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Penterman, Jacobson, C. Anderson, Bare, Conley, Considine, Edming, Green, Joers, Novak, O'Connor, Ohnstad, Rozar, Sinicki, Spiros and Stubbs; +cosponsored by Senators Quinn, Hesselbein, Cowles, James and Marklein",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, C. Anderson, Armstrong, Behnke, Binsfeld, Bodden, Brandtjen, Callahan, Dallman, Donovan, Green, Gundrum, S. Johnson, Kitchens, Madison, Melotik, Plumer, Pronschinske, Rettinger, Schmidt, Schraa, Sortwell, Steffen and Wichgers; +cosponsored by Senators Knodl, Nass, Tomczyk and Wanggaard",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, C. Anderson, Hurd, Jacobson, S. Johnson, Ohnstad, Oldenburg, Tranel and VanderMeer; +cosponsored by Senators Marklein, Spreitzer, Ballweg, L. Johnson, Testin and Quinn",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Oldenburg; +cosponsored by Senator Ballweg",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg, Cabral-Guevara and Quinn; +cosponsored by Representatives Novak, Dittrich, Donovan and Kitchens",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Cabrera, Baldeh, Conley, Drake, Edming, Emerson, Jacobson, Joers, Moore Omokunde, Murphy, Ortiz-Velez, Ohnstad, Palmeri, Shankland, Shelton and Subeck; +cosponsored by Senators Cowles, Hesselbein, Jacque, Larson and Spreitzer",2023-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Agard and Testin; +cosponsored by Representatives Tusler, Magnafici, Callahan, Sapik, Maxey, Duchow, O'Connor, Baldeh, Sinicki, Ohnstad, Brandtjen, Gustafson, Kitchens and Wichgers",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Vos, Schraa, Callahan, O'Connor, McGuire, Donovan, Dittrich and Doyle",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Roys and Spreitzer; +cosponsored by Representatives Shelton, Snodgrass, J. Anderson, Andraca, Baldeh, Bare, Cabrera, Conley, Considine, Emerson, Goyke, Hong, Joers, Madison, Moore Omokunde, Ohnstad, Palmeri, Ratcliff, Vining and Clancy",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dallman, Schutt, Bodden, Brandtjen, Dittrich, Duchow, Gundrum, Maxey, Moses, Murphy, Nedweski, O'Connor, Penterman, Rettinger, Schmidt and Steffen; +cosponsored by Senators Testin, Wanggaard and Nass",2024-02-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Oldenburg, Petryk, Armstrong, Behnke, Callahan, Dittrich, Donovan, Edming, Goeben, Gundrum, Kitchens, Krug, Macco, Maxey, Melotik, Moses, Murphy, Mursau, Nedweski, Novak, O'Connor, Penterman, Rettinger, Schraa, Snyder, Tusler and VanderMeer; +cosponsored by Senators Feyen, Ballweg, Cowles and Testin",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Senator Wirch,2023-07-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Kurtz, Baldeh, Conley, Considine, Hong, Melotik, Moore Omokunde, Mursau, Palmeri, Spiros, Subeck, Behnke and Sinicki; +cosponsored by Senators Testin, Carpenter, James, L. Johnson, Larson, Taylor and Cowles",2024-01-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Green, Krug, Behnke, Bodden, Murphy, Mursau, O'Connor, Plumer, Schmidt, Edming, Oldenburg and Allen; +cosponsored by Senators Stafsholt, Marklein, Nass, Quinn and Stroebel",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Allen, Vos, Armstrong, Behnke, Binsfeld, Bodden, Brandtjen, Dittrich, Goeben, Green, Gundrum, Gustafson, Hurd, Macco, Magnafici, Maxey, Michalski, Murphy, Nedweski, O'Connor, Plumer, Pronschinske, Rettinger, Rozar, Sapik, Schraa, Sortwell, Tittl, Tusler, Wichgers and Callahan; +cosponsored by Senators Stroebel, Tomczyk, Knodl, Felzkowski, Kapenga, Nass, Wimberger and Ballweg",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Cabral-Guevara, Jacque and Tomczyk; +cosponsored by Representatives Kitchens, Tusler, Sortwell, Armstrong, Behnke, Dittrich, Gustafson, Murphy, Mursau, O'Connor, Rettinger and Rozar",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Armstrong, Brandtjen, Gundrum, Murphy, Mursau, Tusler and Wichgers; +cosponsored by Senators Jacque, James, Marklein, Taylor and Tomczyk",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Green, Swearingen, Armstrong, Behnke, Bodden, Brooks, Callahan, Dittrich, Duchow, Edming, Kitchens, Magnafici, Moses, Murphy, Mursau, Novak, Oldenburg, Plumer, Rozar, Sapik, Spiros, Tittl, Tusler and VanderMeer; +cosponsored by Senators Felzkowski, Ballweg, Cowles, Feyen, Nass, Quinn, Stafsholt, Stroebel, Taylor and Tomczyk",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Binsfeld, Joers, Allen, Behnke, Brandtjen, Callahan, Conley, Dittrich, Goeben, Goyke, Kitchens, Macco, Maxey, Melotik, Mursau, Ohnstad, Ortiz-Velez, Penterman, Ratcliff and Rettinger; +cosponsored by Senators Cabral-Guevara, Hesselbein, L. Johnson, Larson, Nass, Spreitzer and Wirch",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, August, Duchow, Tusler, Donovan, Rettinger, Doyle, Behnke, Murphy, Drake, Spiros, Schutt, Steffen, Callahan, Sortwell, Wittke, Schmidt, Krug, Dallman, Katsma, Tittl, Michalski, Dittrich, Oldenburg, Wichgers, Magnafici, Mursau, Plumer, Moses, Goeben, Armstrong, Swearingen, Allen, Maxey, Shankland, Petryk, Tranel, Rozar, S. Johnson, Green, Macco, Brandtjen, Gustafson, Zimmerman, Ratcliff, Gundrum, Snyder, Binsfeld, Pronschinske, Born, Summerfield, Andraca, Nedweski, VanderMeer, Ohnstad and Penterman; +cosponsored by Senators Wanggaard, James, Felzkowski, Carpenter, Quinn, Feyen, Testin, Nass, Wirch, Cabral-Guevara, Marklein and Jacque",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Katsma, Born, Dallman, Edming, Kurtz, Mursau, Nedweski, Novak, O'Connor, Penterman, Plumer, Schutt, Steffen, Wichgers and Jacobson; +cosponsored by Senators Marklein, Ballweg, Pfaff and Tomczyk",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Ballweg; +cosponsored by Representatives Born, Armstrong, Donovan, Gundrum, Hurd, Krug, Murphy, Mursau, Nedweski, Novak, O'Connor, Plumer, Schmidt, Swearingen and Wittke",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Agard, Carpenter, L. Johnson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Subeck, C. Anderson, J. Anderson, Andraca, Bare, Billings, Clancy, Conley, Considine, Drake, Emerson, Hong, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Shankland, Shelton, Sinicki and Stubbs",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Neylon, Allen, Brandtjen, Dittrich, Edming, Gundrum, Kitchens, Knodl, Krug, Kurtz, Macco, Magnafici, Michalski, Moses, Murphy, Mursau, Novak, Ortiz-Velez, Rettinger, Rozar, Snyder, Sortwell, Steffen, Tittl, Wichgers and Wittke; +cosponsored by Senators Wanggaard, Bradley, Testin, Felzkowski, Feyen, James, Quinn and Stroebel",2023-01-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Rodriguez, Vos, August, Born, Armstrong, Behnke, Binsfeld, Callahan, Dallman, Dittrich, Donovan, Duchow, Edming, Green, Gundrum, Gustafson, Hurd, Katsma, Kitchens, Knodl, Krug, Magnafici, Maxey, Michalski, Moses, Murphy, Mursau, Nedweski, O'Connor, Oldenburg, Penterman, Petersen, Petryk, Plumer, Pronschinske, Rozar, Sapik, Schmidt, Schraa, Snyder, Sortwell, Spiros, Steffen, Summerfield, Swearingen, Tusler, Zimmerman and Wittke; +cosponsored by Senators Felzkowski, Cabral-Guevara, James and Quinn",2023-05-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Schutt, Armstrong, Behnke, Edming, Green, Magnafici, Moses, Mursau, Oldenburg, Plumer, Schmidt, Summerfield, Tittl and Shankland; +cosponsored by Senators Ballweg, Feyen, Marklein, Spreitzer, Stroebel and Stafsholt",2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt and Quinn; +cosponsored by Representatives Green, Bodden, Kitchens, Magnafici, Rettinger and Sapik",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Callahan, Behnke, Bodden, Donovan, Green, Edming, Hurd, S. Johnson, Mursau, Novak, Oldenburg, Plumer, Sapik, Doyle, Ratcliff, Shankland and Subeck; +cosponsored by Senators Tomczyk, Ballweg, Marklein, Nass, Quinn, Testin, Wanggaard, Pfaff and Spreitzer",2023-07-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, S. Johnson, Allen, C. Anderson, Armstrong, Behnke, Bodden, Conley, Dittrich, Goeben, Gundrum, Kitchens, Kurtz, Moses, Murphy, Oldenburg, Ortiz-Velez, Palmeri, Rettinger, Schmidt, Spiros, Stubbs, Brooks and Subeck; +cosponsored by Senators James, Ballweg and Marklein",2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Armstrong, Behnke, Donovan, Goeben, Green, Gundrum, Hurd, Kitchens, Macco, Moses, Mursau, Novak, Plumer, Rettinger, Schraa and Tusler; +cosponsored by Senators James, Ballweg, Cabral-Guevara, Cowles, Quinn, Testin and Tomczyk",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Feyen; +cosponsored by Representatives Michalski, Binsfeld, Behnke, S. Johnson, Murphy, Mursau and O'Connor",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Krug, Andraca, Mursau and Knodl",2023-02-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Testin, Feyen, Larson and Taylor; +cosponsored by Representatives Murphy, Spiros, Armstrong, Baldeh, Behnke, Binsfeld, Brandtjen, Brooks, Dittrich, Donovan, Edming, Green, Krug, Moses, O'Connor, Oldenburg, Penterman, Petryk, Rettinger, Tranel and Wichgers",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, Ballweg, Bradley, Cabral-Guevara, Cowles, Hesselbein, James, Knodl, Marklein, Nass, Pfaff, Spreitzer and Wanggaard; +cosponsored by Representatives Kurtz, Penterman, C. Anderson, Behnke, Brandtjen, Callahan, Conley, Dittrich, Donovan, Edming, Goeben, Gundrum, Gustafson, S. Johnson, Kitchens, Michalski, Mursau, O'Connor, Ortiz-Velez, Ratcliff, Rettinger, Schmidt, Schraa, Shankland, Sinicki, Spiros, Tittl, Tranel and Tusler",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Cowles, Felzkowski, Marklein, Quinn, Stroebel, Testin and Tomczyk; +cosponsored by Representatives Green, Armstrong, Behnke, Bodden, Brooks, Callahan, Dallman, Edming, Gustafson, Magnafici, Mursau, Penterman, Pronschinske, Sapik, Schutt, Summerfield, Tittl, Swearingen, Schraa and Rozar",2023-03-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Spiros, Behnke, Brandtjen, Callahan, Dallman, Dittrich, Donovan, Duchow, Edming, Goeben, Krug, Kurtz, Magnafici, Melotik, Novak, Ohnstad, Penterman, Rettinger, Tusler, VanderMeer and Wittke; +cosponsored by Senators James, Feyen and Wanggaard",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Wirch, Cowles, Felzkowski, James, Marklein and Spreitzer; +cosponsored by Representatives Nedweski, McGuire, Ohnstad, C. Anderson, J. Anderson, Considine, Dittrich, Donovan, Edming, Emerson, Joers, Kitchens, Murphy, Mursau, Ortiz-Velez, Rettinger, Sinicki, Spiros, Stubbs, Subeck and Tusler",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Allen, Murphy, Behnke, Bodden, Brandtjen, Goeben, O'Connor, Rettinger and Wichgers; +cosponsored by Senators Tomczyk and Nass",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Smith and Larson; +cosponsored by Representatives Emerson, Palmeri, C. Anderson, Conley, Jacobson, Sinicki, Andraca, Joers, J. Anderson, Shelton, Ratcliff, Considine and Drake",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Armstrong, Behnke, Brooks, Edming, Green, Gundrum, Knodl, Macco, Moses, Murphy, Nedweski, O'Connor, Penterman, Petersen, Petryk, Plumer, Rettinger, Rozar, Schmidt, Sortwell and Wichgers; +cosponsored by Senators Wimberger, Felzkowski, Nass and Stroebel",2023-04-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Ballweg, Taylor, Testin and Wirch; +cosponsored by Representatives Gundrum, Stubbs, C. Anderson, Baldeh, Behnke, Brandtjen, Callahan, Conley, Considine, Edming, Emerson, Hurd, Kitchens, Krug, Maxey, Murphy, Mursau, O'Connor, Schraa, Subeck and Wichgers",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Cabral-Guevara, Felzkowski, Marklein and Taylor; +cosponsored by Representatives Katsma, Murphy, O'Connor, Allen, Behnke, Dittrich, Goeben, Gundrum, Novak, Penterman and Rettinger",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wittke, Kitchens, Brooks, Duchow, Behnke, Goeben, Gustafson, Melotik, Moses, Murphy, Mursau, Neylon, O'Connor, Rozar, Baldeh, Conley, Myers, Steffen and Novak; +cosponsored by Senators Knodl, Wanggaard, Feyen, Quinn and Felzkowski",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Knodl, Stroebel and Ballweg; +cosponsored by Representatives Duchow, Michalski, Spiros, O'Connor, Dittrich, Behnke, Moses and Murphy",2024-01-30T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger and Knodl; +cosponsored by Representatives Tusler and O'Connor",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Quinn, Jagler and Testin; +cosponsored by Representatives Krug, Brooks, Allen, Edming, Moses, Murphy, O'Connor, Penterman, Schraa, Snyder, Sortwell and Spiros",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Jacque, Cabral-Guevara and Jagler; +cosponsored by Representatives Armstrong, O'Connor, Brooks, Emerson, Steffen, C. Anderson, Doyle, Duchow, Edming, Green, Joers, Murphy, Ortiz-Velez, Penterman, Petryk, Plumer, Rozar, Schraa, Shankland, Sinicki, Snyder, Swearingen and Wichgers",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Agard, Carpenter, Hesselbein, Spreitzer, Taylor, Wanggaard, Wirch and Ballweg; +cosponsored by Representatives Stubbs, Hong, J. Anderson, Andraca, Clancy, Considine, Drake, Emerson, Joers, S. Johnson, Madison, McGuire, Moore Omokunde, Neubauer, Ohnstad, Ratcliff, Schutt, Shelton, Sinicki, Snodgrass, Spiros, Subeck, Vining, Baldeh, Conley, Shankland, Jacobson and Haywood",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schutt, Green, Armstrong, Behnke, Binsfeld, Bodden, Brandtjen, Duchow, Edming, Gustafson, Maxey, Murphy, O'Connor, Rozar, Sapik, Sortwell, Spiros, Tittl, Tranel, VanderMeer and Rettinger; +cosponsored by Senators Tomczyk, Bradley, Cabral-Guevara, Feyen, Marklein, Quinn, Testin and Wanggaard",2023-04-04T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goeben, Ortiz-Velez, Sortwell, Allen, Baldeh, Behnke, Binsfeld, Gustafson, Kitchens, Krug, Maxey, Michalski, Moses, Murphy, Myers, Nedweski, O'Connor, Schmidt, Steffen, Subeck, Tittl and Wichgers; +cosponsored by Senators Jacque, Taylor, Quinn and Tomczyk",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Pronschinske, Allen, Armstrong, Behnke, Bodden, Brandtjen, Callahan, Dittrich, Edming, Goeben, Gundrum, Gustafson, Magnafici, Maxey, Murphy, Mursau, O'Connor, Penterman, Rettinger, Schmidt, Sortwell, Summerfield, VanderMeer and Wichgers; +cosponsored by Senators James, Felzkowski, Nass and Tomczyk",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives VanderMeer, Gustafson, Billings, Brandtjen, Brooks, Donovan, Gundrum, Macco, Magnafici, Maxey, Rettinger, Rozar, Schmidt, Shankland, Wichgers, Wittke and Melotik; +cosponsored by Senators Testin, Ballweg, Cowles, L. Johnson, Larson and Nass",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Joers, C. Anderson, J. Anderson, Andraca, Conley, Considine, Emerson, Jacobson, Madison, Mursau, Ortiz-Velez, Ratcliff and Stubbs; +cosponsored by Senators Hesselbein, L. Johnson, Agard, Carpenter, Spreitzer, Taylor and Wirch",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Green, Sapik, Swearingen, Callahan, Bodden, Edming, O'Connor and Summerfield; +cosponsored by Senators Quinn, Felzkowski and Testin",2024-01-30T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kitchens, Wittke, Binsfeld, Nedweski, Duchow, Dittrich, Allen, Armstrong, Behnke, Brandtjen, Donovan, Green, Gundrum, Gustafson, Hurd, Krug, Magnafici, Maxey, Michalski, Murphy, O'Connor, Penterman, Rettinger, Rodriguez, Rozar, Schmidt, Snyder, Spiros, Steffen, Summerfield and Tusler; +cosponsored by Senators Stroebel, Jagler, Bradley, Wimberger and Marklein",2023-06-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, James, Spreitzer, Pfaff, Agard, Ballweg, Smith, Carpenter and Testin; +cosponsored by Representatives Billings, O'Connor, Madison, Considine, Tittl, Mursau, Conley, Green, C. Anderson, Moore Omokunde, Sinicki, Gundrum, Binsfeld, Allen, Stubbs, Vining, Ratcliff, Magnafici, Emerson, Drake, Bare, Joers, Murphy, Krug, Penterman, Duchow, Dittrich, Schraa, Palmeri and S. Johnson",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Wittke; +cosponsored by Senator Marklein",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Clancy, Hong, J. Anderson, Andraca, Baldeh, Conley, Considine, Emerson, Joers, Moore Omokunde, Palmeri, Shelton, Sinicki, Stubbs and Neubauer; +cosponsored by Senator Larson",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Neylon, Armstrong, Behnke, Conley, Dittrich, Donovan, Green, Haywood, Kitchens, Magnafici, Moses, Nedweski, Ohnstad, Ortiz-Velez, Petryk, Rodriguez, Rozar, Schmidt, Shankland, Sinicki, Spiros, Subeck and Stubbs; +cosponsored by Senators Ballweg, Cabral-Guevara, Cowles, Marklein, Spreitzer and Wirch",2023-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Armstrong, Andraca, Baldeh, Cabrera, Donovan, Goeben, S. Johnson, Magnafici, Maxey, Melotik, Murphy, Nedweski, O'Connor, Ohnstad, Ortiz-Velez, Schmidt, Sinicki, Subeck, Wichgers and Wittke; +cosponsored by Senators Hutton, Hesselbein, Nass and Taylor",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Roys, Carpenter, Spreitzer, Ballweg, L. Johnson, Wirch and Smith; +cosponsored by Representatives Goyke, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Conley, Considine, Dittrich, Doyle, Drake, Emerson, Hong, Jacobson, Joers, Madison, Myers, Neubauer, Novak, Ortiz-Velez, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Spiros, Stubbs, Subeck, Tranel and Vining",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Roys and Wanggaard; +cosponsored by Representatives Magnafici, Dittrich, Murphy and Rozar",2023-03-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Kapenga, Ballweg and Stroebel; +cosponsored by Representatives Duchow, Behnke, Binsfeld, Dittrich, Goeben, Green, Gundrum, Maxey, Michalski, Rettinger, Rozar, Schraa, Tusler and Wichgers",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn and Tomczyk; +cosponsored by Representatives Moses, Sapik, Armstrong, Behnke, Brandtjen, Green, Magnafici, Murphy and Penterman",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Roys, Hesselbein, L. Johnson, Larson and Spreitzer; +cosponsored by Representatives Considine, Sinicki, Ohnstad, J. Anderson, Andraca, Bare, Clancy, Conley, Emerson, Jacobson, Joers, Palmeri, Ratcliff, Snodgrass and Subeck",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara and Spreitzer; +cosponsored by Representatives Rozar, Baldeh, Binsfeld, Conley, Gundrum, O'Connor, Palmeri and Subeck",2023-05-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Felzkowski, Quinn, Roys, Stroebel and Tomczyk; +cosponsored by Representatives Murphy, Allen, Bodden, Brandtjen, Brooks, Dittrich, Mursau, Neylon, Penterman, Tusler, Wichgers and Behnke",2023-03-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, Hong, Baldeh, Madison, Conley, Considine, Emerson, Haywood, Joers, Moore Omokunde, Ohnstad, Shelton and Stubbs; +cosponsored by Senators Roys and L. Johnson",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard and L. Johnson; +cosponsored by Representatives Stubbs, Ratcliff, Baldeh, Moore Omokunde, Joers, Shelton, Sinicki, Bare, Subeck, Madison, J. Anderson, Jacobson, Drake and Palmeri",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Callahan, Behnke, Binsfeld, Bodden, Brandtjen, Donovan, Duchow, Hurd, S. Johnson, Maxey, Michalski, Murphy, O'Connor, Ohnstad, Rettinger, Subeck and Wichgers; +cosponsored by Senators James, Ballweg, Hutton, Tomczyk and Wanggaard",2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Zimmerman, Gustafson, Allen, Armstrong, Behnke, Binsfeld, Dittrich, Duchow, Green, Kitchens, Kurtz, Macco, Murphy, Mursau, Novak, O'Connor, Penterman, Plumer, Pronschinske, Rettinger, Sortwell, Spiros, Steffen, Tittl, Wichgers and Wittke; +cosponsored by Senators Quinn and Marklein",2023-10-05T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Moore Omokunde, Baldeh, Considine, Emerson, Joers, Sinicki, Snodgrass, Stubbs, Subeck, Haywood and Vining; +cosponsored by Senators Carpenter and Ballweg",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Nedweski, Rettinger, Brandtjen, Melotik, Rozar, Murphy, Donovan, O'Connor and Michalski; +cosponsored by Senators Knodl, Nass and Tomczyk",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Neubauer, Cabrera, Snodgrass, C. Anderson, J. Anderson, Andraca, Bare, Billings, Clancy, Considine, Emerson, Joers, Madison, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs, Subeck, Vining, Conley, Ohnstad and Ortiz-Velez; +cosponsored by Senators Carpenter, Spreitzer, Agard, Hesselbein, Larson, Roys and Smith",2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rettinger, Maxey, Gundrum, Behnke, Brandtjen, Dittrich, Moses, Murphy, O'Connor and Rozar; +cosponsored by Senators Bradley, Nass, Hutton, Jacque and Stroebel",2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, Madison, J. Anderson, Conley, Considine, Moore Omokunde, Shelton and Stubbs; +cosponsored by Senator Taylor",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives O'Connor, Macco, Allen, Armstrong, Wittke, Magnafici, Brandtjen, Murphy, Dittrich, Moses, Gundrum and Behnke",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Taylor, Wirch and Larson; +cosponsored by Representatives Stubbs, Goeben, Behnke, Conley, Considine, Dittrich, Drake, Emerson, Gundrum, Hurd, Kitchens, Madison, Moore Omokunde, Murphy, O'Connor, Ohnstad, Palmeri, Sinicki and Brandtjen",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dallman, Penterman, Allen, Behnke, Binsfeld, Bodden, Callahan, Dittrich, Doyle, Duchow, Edming, Green, Gundrum, Jacobson, Joers, Kitchens, Knodl, Krug, Kurtz, Magnafici, Moses, Murphy, Mursau, Nedweski, Neylon, Novak, O'Connor, Ohnstad, Petryk, Plumer, Rettinger, Rozar, Schutt, Sinicki, Steffen, Subeck, Summerfield, Tranel, Tusler, Zimmerman and Schraa; +cosponsored by Senators Ballweg, Stafsholt, Agard, Cabral-Guevara, Feyen, Hesselbein, James, Marklein, Testin, Tomczyk, Wanggaard and Cowles",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Ballweg, Marklein, Nass, Stroebel, Taylor and Wanggaard; +cosponsored by Representatives Krug, Dallman, Duchow, Gundrum, Mursau, Myers, Novak, Penterman, Pronschinske, Rozar, Sinicki, Steffen and Knodl",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Ballweg, Bradley and Quinn; +cosponsored by Representatives Zimmerman, Petryk, Green, Magnafici, O'Connor and Wittke",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler, Murphy, Brooks, Wichgers and Michalski; +cosponsored by Senators Cowles and Cabral-Guevara",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Roys and Spreitzer; +cosponsored by Representatives Hong, Wittke, Myers, C. Anderson, Clancy, Emerson, Gustafson, Jacobson, Joers, Madison, Palmeri, Ratcliff, Schmidt, Shankland and Sinicki",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, Considine, C. Anderson, J. Anderson, Andraca, Baldeh, Behnke, Cabrera, Conley, Emerson, Haywood, Jacobson, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs and Subeck; +cosponsored by Senators Pfaff, Ballweg, Cabral-Guevara, Carpenter, Hesselbein, Larson, Roys and Spreitzer",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Knodl, Nass and Roys; +cosponsored by Representatives Armstrong, Behnke, Macco, O'Connor and Schmidt",2023-08-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goeben, Rozar, Ortiz-Velez, Behnke, Dittrich, S. Johnson, Maxey, O'Connor and Rettinger",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, Wanggaard, Nass, Stroebel, Feyen, Ballweg, Testin, Marklein, Cowles, Felzkowski, Tomczyk, Stafsholt and Cabral-Guevara; +cosponsored by Representatives August, Bodden, Sortwell, Dittrich, Allen, Steffen, Plumer, Hurd, Maxey, O'Connor, Rettinger, Schutt, Armstrong, Magnafici, Nedweski, Snyder, Petersen, Rozar, Gundrum, Behnke, Mursau, Penterman, Swearingen, Edming, Murphy, Brooks, Binsfeld, Callahan, Green, Summerfield, Moses, Donovan, Dallman, Schmidt, Goeben, Wittke, Duchow, Melotik, S. Johnson, Brandtjen, Born and Gustafson",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Joint Committee on Finance, by request of Governor Tony Evers",2023-02-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, L. Johnson, Jacque, Spreitzer and Tomczyk; +cosponsored by Representatives Tittl, Snodgrass, Tusler, Andraca, Armstrong, Baldeh, Billings, Binsfeld, Brandtjen, Considine, Joers, Kitchens, Maxey, Moore Omokunde, O'Connor, Ohnstad, Ortiz-Velez, Stubbs and Wichgers",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Larson and Taylor; +cosponsored by Representatives Drake, Clancy, Madison, Sinicki, Conley, Joers, Shelton, Emerson, J. Anderson, Stubbs, Palmeri, Subeck, Andraca and Jacobson",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Magnafici, Ratcliff, Mursau, Clancy, C. Anderson, Sinicki, Jacobson, Krug, Dittrich, Shankland, Emerson, Joers, Subeck and Bare; +cosponsored by Senators Carpenter, Roys, Spreitzer and Cabral-Guevara",2024-02-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Cabral-Guevara, Feyen, Smith, Spreitzer, Tomczyk and Roys; +cosponsored by Representatives Murphy, Andraca, Armstrong, Baldeh, Edming, Goeben, Gundrum, Jacobson, Joers, Mursau, O'Connor and Stubbs",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, Spiros, Bare, Conley, Dittrich, Gundrum, Jacobson, Joers, Maxey, Moore Omokunde, Novak, O'Connor, Ortiz-Velez, Ratcliff, Sinicki, Summerfield, Melotik, Edming, Mursau, Snyder, Goeben, Schraa and S. Johnson; +cosponsored by Senators James, L. Johnson, Smith, Wirch, Larson, Spreitzer, Agard and Carpenter",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Behnke, Baldeh, Gundrum, Murphy, O'Connor, Ohnstad, Ortiz-Velez, Palmeri, Rozar, Sinicki, Spiros, Stubbs, Subeck, Tittl and VanderMeer; +cosponsored by Senators James, L. Johnson, Larson and Taylor",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Roys, Ballweg, Bradley, Feyen and Nass; +cosponsored by Representatives Duchow, Myers, J. Anderson, Bare, Behnke, Clancy, Hong, Joers, Kitchens, Madison, Macco, Rodriguez, Schmidt, Spiros, Stubbs and Zimmerman",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Rettinger, Callahan, Magnafici, Binsfeld, O'Connor, Gundrum, Gustafson, Maxey, Bodden, Penterman, Armstrong, Brandtjen, Tusler, S. Johnson, Sapik, Macco, Rozar, Green, Schmidt, Allen, Behnke, Duchow, Hurd, Tittl, Nedweski, Schraa, Wichgers, Edming, Sortwell, Donovan and Murphy; +cosponsored by Senators Knodl, Quinn, Marklein, Hutton and Tomczyk",2023-08-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, J. Anderson, C. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Conley, Drake, Emerson, Joers, Ohnstad, Palmeri, Shankland, Shelton, Sinicki, Snodgrass and Jacobson; +cosponsored by Senators Smith, Larson, Carpenter, Hesselbein, Spreitzer and L. Johnson",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Wittke; +cosponsored by Senator Wanggaard",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Born, Armstrong, Donovan, Gundrum, Hurd, Krug, Murphy, Mursau, Nedweski, Novak, O'Connor, Plumer, Schmidt, Swearingen and Wittke; +cosponsored by Senator Ballweg",2024-01-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Hesselbein, Ballweg and Spreitzer; +cosponsored by Representatives Krug, Armstrong, Baldeh, Dittrich, Magnafici, Nedweski, O'Connor, Palmeri, Snyder, Spiros, Penterman, Donovan, Goeben, Schmidt and Kitchens",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Behnke, Goeben, Brandtjen, Dittrich, Rettinger, Schmidt, Gundrum, Murphy and Wichgers",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Plumer, Tranel, Kitchens, Krug, Callahan, Tittl, Spiros, Penterman, Dittrich, Wittke, Armstrong, Ortiz-Velez, Gundrum, Snyder, Novak, Billings, Rozar, Murphy, Considine, Green, Mursau, Knodl, Rettinger and O'Connor; +cosponsored by Senators Testin, Quinn, Marklein and Larson",2023-01-17T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Taylor; +cosponsored by Representatives Penterman, Dittrich, Baldeh, Brandtjen, Edming, Gundrum, Tittl, Wichgers and Behnke",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Ballweg, Marklein and Nass; +cosponsored by Representatives Kitchens, Allen, Binsfeld, Dittrich, Donovan, Edming, Goeben, Gundrum, Krug, Magnafici, Maxey, Michalski, Murphy, Mursau, Nedweski, O'Connor, Penterman and Rozar",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wittke, Zimmerman, Dittrich, Duchow, Moses, O'Connor and Penterman; +cosponsored by Senators Testin, Felzkowski and Feyen",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Ballweg, Nass and Taylor; +cosponsored by Representatives Duchow, Armstrong, Behnke, Dittrich, Emerson, Kitchens, Magnafici, Murphy, Mursau, O'Connor, Ortiz-Velez, Rodriguez and Wichgers",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wittke, Sortwell, Armstrong, Born, Brandtjen, Dittrich, Edming, Gundrum, Knodl, Kurtz, Moses, Murphy, Mursau, Novak, Penterman, Rozar, Sapik, Spiros, Tusler, Bodden, Green, Schutt, Rettinger, O'Connor, Donovan and Allen; +cosponsored by Senators Marklein, Ballweg, Cabral-Guevara, Felzkowski, Feyen, James, Quinn, Stroebel and Tomczyk",2023-02-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg, Jacque and Wanggaard; +cosponsored by Representatives Kitchens, Dittrich, Donovan, Gundrum, Murphy, Mursau, O'Connor and Penterman",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Carpenter, Larson, Roys and Spreitzer; +cosponsored by Representatives Riemer, Vining, C. Anderson, Andraca, Bare, Billings, Considine, Doyle, Joers, S. Johnson, Moore Omokunde, Neubauer, Ohnstad, Ratcliff, Shankland, Sinicki and Snodgrass",2024-03-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, Ballweg, Bradley, Felzkowski, Jagler, James, Marklein, Nass, Quinn, Stroebel and Wanggaard; +cosponsored by Representatives Rozar, Allen, Behnke, Brooks, Callahan, Dittrich, Donovan, Edming, Gundrum, Knodl, Krug, Moses, Murphy, Mursau, Neylon, O'Connor, Penterman, Schutt, Steffen, Tusler and Zimmerman",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Armstrong, Emerson, C. Anderson, Andraca, Bare, Conley, Considine, Dittrich, Jacobson, Joers, Mursau, Novak, Ohnstad, Oldenburg, Plumer, Ratcliff, Rettinger, Schraa, Shankland, Sinicki, Snodgrass, Subeck, Tusler, Penterman and Tittl; +cosponsored by Senators Jacque, Agard, Hesselbein, Larson, Roys, Smith, Spreitzer, Testin, Wanggaard, Cabral-Guevara, Marklein and Carpenter",2023-03-21T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Jacque, Marklein and Nass; +cosponsored by Representatives Duchow, Dittrich, Goeben, Maxey, Melotik, Michalski, Murphy, Mursau, Nedweski, O'Connor and Penterman",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Larson, Roys and Agard; +cosponsored by Representatives Conley, Andraca, Drake, Emerson, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Ratcliff, Shankland, Sinicki and Subeck",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Cabral-Guevara; +cosponsored by Representatives Sortwell, Moses, Allen, Armstrong, Behnke, Bodden, Dittrich, Goeben, S. Johnson, Magnafici, Murphy, O'Connor, Penterman, Rozar, Schmidt, Schraa and Schutt",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Myers, Drake, Madison, Considine, Conley, Moore Omokunde, Snodgrass, Sinicki, Clancy, Joers, Ohnstad, Shelton, C. Anderson, Emerson, Stubbs, J. Anderson, Jacobson, Palmeri, Neubauer and Riemer; +cosponsored by Senators Taylor, L. Johnson, Roys, Larson and Hesselbein",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Donovan, McGuire, C. Anderson, J. Anderson, Andraca, Baldeh, Brandtjen, Callahan, Duchow, Edming, Emerson, Goeben, Gundrum, Joers, Kurtz, Nedweski, Novak, Ohnstad, Palmeri, Rettinger, Rodriguez, Rozar, Schmidt, Schutt, Shankland, Sinicki, Sortwell, Spiros, Steffen, Subeck, Tusler, Wichgers, Wittke, Mursau and Haywood; +cosponsored by Senators Wanggaard, Wirch, Bradley, Carpenter, Cowles, Felzkowski, Hutton, Jacque, James, Pfaff, Smith, Spreitzer and Testin",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Allen, Bodden, Brandtjen, Maxey, Murphy and Wichgers; +cosponsored by Senators Jacque and Nass",2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Ballweg, Felzkowski, James, Nass, Spreitzer, Taylor, Testin and Wanggaard; +cosponsored by Representatives Kurtz, VanderMeer, C. Anderson, Behnke, Binsfeld, Brandtjen, Donovan, Duchow, Emerson, Goeben, Green, S. Johnson, Kitchens, Macco, Magnafici, Maxey, Michalski, Murphy, Mursau, Nedweski, Novak, O'Connor, Ortiz-Velez, Penterman, Petryk, Rettinger, Shankland, Sinicki, Spiros, Subeck, Tranel, Wichgers and Zimmerman",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Hesselbein, L. Johnson, Larson, Roys, Spreitzer and Agard; +cosponsored by Representatives Shelton, Snodgrass, Palmeri, J. Anderson, Andraca, Baldeh, Considine, Emerson, Hong, Jacobson, Joers, Moore Omokunde, Ortiz-Velez, Ratcliff, Sinicki, Stubbs, Subeck and Haywood",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn and Testin; +cosponsored by Representatives Vos, Murphy and Doyle",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, James, Ballweg, Cowles, Nass and Spreitzer; +cosponsored by Representatives Schutt, Allen, Binsfeld, Dittrich, Duchow, Green, Gundrum, S. Johnson, Nedweski, Michalski, Murphy, O'Connor, Rettinger, Shankland, Schraa, Snyder and Spiros",2023-05-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Ballweg; +cosponsored by Representatives Rozar, Schutt, Armstrong, Behnke, Binsfeld, Dittrich, Krug, Mursau and O'Connor",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Hutton, James, Marklein, Roys, Spreitzer, Testin and Ballweg; +cosponsored by Representatives Plumer, Behnke, Binsfeld, Callahan, Dittrich, Emerson, Goeben, Jacobson, Joers, Mursau, Ohnstad, Oldenburg, Ortiz-Velez, Rozar, Snyder and Tusler",2023-11-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Nass and Tomczyk; +cosponsored by Representatives Dittrich, Nedweski, Rettinger, Brandtjen, Melotik, Rozar, Murphy, Donovan, O'Connor and Michalski",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard and Cabral-Guevara; +cosponsored by Representatives Murphy, Goeben, Behnke, Brandtjen, Donovan, Edming, Green, Gundrum, Michalski, Pronschinske and Rettinger",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bare, Edming, Novak, Baldeh, C. Anderson, Conley, Joers, Michalski, Palmeri, Subeck and Jacobson; +cosponsored by Senators Hesselbein and Carpenter",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Spiros, Novak, Allen, Armstrong, Baldeh, Gundrum, Kitchens, Krug, Moses, Murphy, Mursau, O'Connor, Ratcliff, Steffen and Stubbs; +cosponsored by Senators Tomczyk and Ballweg",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, L. Johnson, Agard, Ballweg, Cowles, Felzkowski, Hesselbein, Larson, Roys, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Kitchens, Billings, J. Anderson, Andraca, Baldeh, Clancy, Conley, Considine, Drake, Emerson, Goyke, Green, Gundrum, Gustafson, Haywood, Joers, Madison, Myers, Ohnstad, Ortiz-Velez, Palmeri, Riemer, Rodriguez, Rozar, Schraa, Shankland, Sinicki, Snyder, Subeck, Vining and Wittke",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Larson, L. Johnson, Roys, Hesselbein, Agard, Spreitzer, Carpenter and Pfaff; +cosponsored by Representatives Conley, Shelton, C. Anderson, J. Anderson, Baldeh, Cabrera, Clancy, Considine, Haywood, Hong, Joers, Myers, Neubauer, Ohnstad, Palmeri, Ratcliff, Sinicki, Snodgrass and Stubbs",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Cowles, Felzkowski, Jacque, Nass, Stroebel and Tomczyk; +cosponsored by Representatives Dallman, Schraa, Brooks, Murphy, Mursau, Rozar, Sapik, Spiros, Swearingen, Tusler and Tittl",2023-05-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Spreitzer; +cosponsored by Representatives Krug, Myers, J. Anderson, Baldeh, Brooks, Murphy, Sinicki, Subeck, Wichgers, Shankland, Cabrera and Mursau",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, VanderMeer, C. Anderson, Behnke, Binsfeld, Brandtjen, Donovan, Duchow, Emerson, Goeben, Green, S. Johnson, Kitchens, Macco, Magnafici, Maxey, Michalski, Murphy, Mursau, Nedweski, Novak, O'Connor, Ortiz-Velez, Penterman, Petryk, Rettinger, Shankland, Sinicki, Spiros, Subeck, Tranel, Wichgers and Zimmerman; +cosponsored by Senators Marklein, Ballweg, Felzkowski, James, Nass, Spreitzer, Taylor, Testin and Wanggaard",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Cabrera, Sinicki, Baldeh, Joers, Ohnstad, Palmeri, Shankland, Jacobson and Subeck; +cosponsored by Senators Larson, Agard, Hesselbein, Spreitzer and L. Johnson",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Hesselbein, Cowles, James and Marklein; +cosponsored by Representatives Kurtz, Penterman, Jacobson, C. Anderson, Bare, Conley, Considine, Edming, Green, Joers, Novak, O'Connor, Ohnstad, Rozar, Sinicki, Spiros and Stubbs",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Joers, C. Anderson, Clancy, Drake, Emerson, Jacobson, Madison, Moore Omokunde, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Snodgrass, Stubbs and Subeck; +cosponsored by Senators Larson, Smith and Wirch",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Roys, L. Johnson, Larson and Spreitzer; +cosponsored by Representatives Vining, Clancy, Subeck, C. Anderson, Emerson, Conley, Sinicki, Moore Omokunde, Hong, J. Anderson, Bare and Ohnstad",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Emerson, Hong, C. Anderson, J. Anderson, Conley, Considine, Drake, Jacobson, Joers, Madison, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs, Clancy and Neubauer; +cosponsored by Senators Agard, Roys, Hesselbein, L. Johnson, Larson, Pfaff, Smith, Spreitzer and Taylor",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Cowles, Felzkowski, Marklein and Testin; +cosponsored by Representatives Swearingen, Green, Behnke, Bodden, Edming, Magnafici, O'Connor, Penterman, Pronschinske, Sapik, Sortwell and VanderMeer",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Ballweg; +cosponsored by Representative Oldenburg",2023-11-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Agard, Roys and Larson; +cosponsored by Representatives J. Anderson, Behnke, Baldeh, Billings, Cabrera, Donovan, Emerson, Joers, Myers, Ohnstad, Ortiz-Velez, Palmeri, Sinicki, Stubbs and Subeck",2023-06-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Knodl; +cosponsored by Representatives Binsfeld, Allen, Armstrong, Bodden, Dittrich, Duchow, Edming, Gundrum, Gustafson, Magnafici, Maxey, Murphy, O'Connor, Schmidt and Wichgers",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Taylor, L. Johnson, Larson and Spreitzer; +cosponsored by Representatives Madison, Clancy, Drake, Baldeh, Conley, Joers, Shelton, Emerson, Stubbs, J. Anderson, Moore Omokunde, Palmeri and Neubauer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator James; +cosponsored by Representatives Tittl, Behnke, Edming, Green, Kitchens, Mursau, Steffen and VanderMeer",2023-02-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Stafsholt, Agard, Cabral-Guevara, Feyen, Hesselbein, James, Marklein, Testin, Tomczyk and Wanggaard; +cosponsored by Representatives Dallman, Penterman, Allen, Behnke, Binsfeld, Bodden, Callahan, Dittrich, Doyle, Duchow, Edming, Green, Gundrum, Jacobson, Joers, Kitchens, Knodl, Krug, Kurtz, Magnafici, Moses, Murphy, Mursau, Nedweski, Neylon, Novak, O'Connor, Ohnstad, Petryk, Plumer, Rettinger, Rozar, Schutt, Sinicki, Steffen, Subeck, Summerfield, Tranel, Tusler, Zimmerman and Schraa",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Emerson, Baldeh, Clancy, Conley, Considine, Haywood, Jacobson, Madison, Moore Omokunde, Ohnstad, Palmeri, Ratcliff, Sinicki and Snodgrass; +cosponsored by Senators L. Johnson, Hesselbein, Spreitzer and Larson",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, J. Anderson, Emerson, Ohnstad, Shankland, Sinicki and Subeck; +cosponsored by Senators Larson, L. Johnson, Smith and Hesselbein",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, L. Johnson, Agard, Larson, Hesselbein, Roys, Carpenter and Pfaff; +cosponsored by Representatives Sinicki, Ohnstad, Shankland, Neubauer, Subeck, Goyke, Conley, Hong, Joers, Emerson, Cabrera, Stubbs, Snodgrass, Shelton, Ratcliff, J. Anderson, Considine, C. Anderson, Palmeri and Drake",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Wanggaard; +cosponsored by Representative Callahan",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Carpenter, Smith, Agard, Spreitzer and Larson; +cosponsored by Representatives Ortiz-Velez, C. Anderson, Vining, Baldeh, Hong, Neubauer, Ratcliff, Emerson, Clancy, Bare and Shelton",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Pfaff, Carpenter, Jacque, Marklein, Spreitzer and Tomczyk; +cosponsored by Representatives Snyder, Armstrong, Behnke, Bodden, Brandtjen, Donovan, Joers, Murphy, Mursau, O'Connor, Ohnstad, Penterman, Rodriguez, Rozar, Sinicki, Spiros and Subeck",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Hutton, Tomczyk and Wanggaard; +cosponsored by Representatives Goeben, Bodden, Behnke, Brandtjen, Dittrich, Gundrum, Gustafson, Hurd, S. Johnson, Macco, Maxey, Michalski, Murphy, Mursau, Myers, Nedweski, O'Connor, Rettinger, Rozar, Schraa, Snyder, Sortwell, Stubbs, Subeck, Tittl and Wichgers",2023-06-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wichgers, Clancy, Stubbs and Madison",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators LeMahieu, Feyen and Testin; +cosponsored by Representatives Vos, August, Swearingen, Zimmerman and Doyle",2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Summerfield, Shankland, C. Anderson, Conley, Ortiz-Velez and Palmeri; +cosponsored by Senators James, Cowles and L. Johnson",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Larson, Agard and Spreitzer; +cosponsored by Representatives Madison, Stubbs, Hong, Clancy, Bare, Emerson, Neubauer and Sinicki",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, L. Johnson, Spreitzer, Hesselbein, Agard, Larson and Taylor; +cosponsored by Representatives Ratcliff, Joers, Drake, Stubbs, Conley, Snodgrass, Cabrera, Emerson, Shelton, Sinicki, Baldeh, Clancy, Madison, Palmeri, Ohnstad, Billings, Moore Omokunde, C. Anderson, J. Anderson, Jacobson and Vining",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Novak; +cosponsored by Senator Wirch",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives August and Shelton; +cosponsored by Senators Ballweg and Smith",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators LeMahieu, Ballweg, Bradley, Cabral-Guevara, Carpenter, Felzkowski, Hesselbein, Jagler, James, Marklein, Nass, Pfaff, Quinn, Spreitzer, Tomczyk and Wanggaard; +cosponsored by Representatives August, Allen, C. Anderson, Armstrong, Baldeh, Bare, Behnke, Binsfeld, Callahan, Conley, Dallman, Dittrich, Donovan, Doyle, Drake, Duchow, Edming, Goeben, Green, Hurd, Joers, Kitchens, Krug, Kurtz, Magnafici, Melotik, Michalski, Murphy, Mursau, Nedweski, Novak, O'Connor, Ohnstad, Ortiz-Velez, Palmeri, Penterman, Petryk, Plumer, Pronschinske, Ratcliff, Rettinger, Riemer, Rozar, Schmidt, Schutt, Shelton, Sinicki, Snodgrass, Snyder, Sortwell, Spiros, Steffen, Stubbs, Summerfield, Tusler, VanderMeer, Vining, Vos, Wichgers, Wittke and Schraa",2023-10-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Agard, Carpenter, Larson, Pfaff and Roys; +cosponsored by Representatives J. Anderson, Emerson, Andraca, Bare, Clancy, Conley, Jacobson, Joers, Moore Omokunde, Murphy, Ohnstad, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass and Stubbs",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Doyle, Ratcliff, Baldeh, Bare, Clancy, Joers, Moore Omokunde and Stubbs",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Ballweg and Cabral-Guevara; +cosponsored by Representatives Oldenburg, Tranel, Mursau, Novak, O'Connor, Schmidt, Subeck and Kitchens",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Cowles, Feyen and Tomczyk; +cosponsored by Representatives Swearingen, Bodden, Brooks, Edming, Green, Gundrum, Mursau, Novak, Spiros and Tranel",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Ballweg, Bradley, Marklein, Nass, Testin and Tomczyk; +cosponsored by Representatives Snyder, Gustafson, Armstrong, August, Binsfeld, Born, Dittrich, Donovan, Duchow, Edming, Goeben, Green, S. Johnson, Kitchens, Krug, Magnafici, Maxey, Michalski, Moses, Nedweski, Neylon, O'Connor, Penterman, Rozar, Schutt, Spiros, Swearingen, Tusler, Allen, Rettinger and Brandtjen",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Larson; +cosponsored by Representatives Madison, Hong and Conley",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Behnke, Goeben, Murphy, Schmidt and Schraa",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Wanggaard, James, Ballweg, Cabral-Guevara, Felzkowski, Feyen, Hutton, Marklein, Nass, Pfaff, Quinn and Testin; +cosponsored by Representatives Donovan, Kurtz, Spiros, Allen, Armstrong, Behnke, Brandtjen, Callahan, Dallman, Dittrich, Edming, Goeben, Green, Gundrum, Magnafici, Maxey, Michalski, Mursau, Nedweski, Novak, O'Connor, Oldenburg, Penterman, Petryk, Rettinger, Sapik, Schutt, Shankland, Sinicki, Tittl, Tusler, VanderMeer, Wichgers, Wittke and Zimmerman",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Ortiz-Velez, C. Anderson, Shelton, Vining, Baldeh, Hong, Neubauer, Ratcliff, Emerson, Clancy and Bare; +cosponsored by Senators Carpenter, Smith, Agard, Spreitzer and Larson",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Tomczyk; +cosponsored by Representatives Gundrum, Spiros, Armstrong, Callahan, Donovan, Rettinger and Dallman",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Doyle, Callahan, Conley, Dittrich, Donovan, O'Connor, Schraa, Vos, Armstrong, Gundrum, Kitchens, Melotik, Rettinger, Steffen, Subeck and Green; +cosponsored by Senators Quinn, Felzkowski and Testin",2023-10-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Krug, Allen, Brooks, Dallman, Murphy, O'Connor and Ortiz-Velez; +cosponsored by Senators Jagler, Agard and Feyen",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson, Smith and Hesselbein; +cosponsored by Representatives Stubbs, J. Anderson, Emerson, Ohnstad, Shankland, Sinicki and Subeck",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Knodl; +cosponsored by Representatives Snyder, Allen, Armstrong, Bodden, Brandtjen, Goeben, Murphy, O'Connor and Dittrich",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goeben, Brandtjen, Brooks, Doyle, Gundrum, Krug, Mursau, O'Connor, Petersen, Plumer, Schmidt, Schutt and Tusler; +cosponsored by Senators Feyen, Ballweg and Wanggaard",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Stubbs, Hong, Clancy, Bare, Emerson, Neubauer and Sinicki; +cosponsored by Senators L. Johnson, Larson, Agard and Spreitzer",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Michalski, Binsfeld, Behnke, Murphy, Mursau, O'Connor and S. Johnson; +cosponsored by Senator Feyen",2024-01-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler, Magnafici, Callahan, Sapik, Maxey, Duchow, O'Connor, Baldeh, Sinicki, Ohnstad, Brandtjen, Gustafson, Kitchens, Wichgers and Jacobson; +cosponsored by Senators Cowles, Agard and Testin",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Joers, Jacobson, Billings, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Clancy, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hong, Madison, McGuire, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Subeck and Vining; +cosponsored by Senators Roys, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Smith, Spreitzer, Taylor and Wirch",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Stroebel, Bradley, Cabral-Guevara, Felzkowski, Feyen, Jagler, Marklein, Nass, Quinn, Testin and Wanggaard; +cosponsored by Representatives Schutt, Katsma, Krug, Allen, Armstrong, August, Behnke, Born, Brandtjen, Binsfeld, Dittrich, Donovan, Edming, Goeben, Green, Gundrum, Hurd, Kurtz, Macco, Magnafici, Maxey, Melotik, Moses, Murphy, Mursau, Nedweski, O'Connor, Oldenburg, Penterman, Petryk, Plumer, Rettinger, Schmidt, Schraa, Snyder, Sortwell, Spiros, Steffen, Tranel, Wichgers and Wittke",2024-01-30T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Hesselbein, Agard, Carpenter, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Subeck, Bare, C. Anderson, J. Anderson, Cabrera, Considine, Emerson, Goyke, Haywood, Joers, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Stubbs and Vining",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, VanderMeer, Spiros, Baldeh, Joers, Krug, Murphy, O'Connor, Penterman and Sinicki",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Jacobson, Spiros, Ratcliff, Conley, C. Anderson, Ortiz-Velez, Subeck and Stubbs; +cosponsored by Senators James and Spreitzer",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Cabral-Guevara; +cosponsored by Representatives Allen, Drake, Ortiz-Velez, Mursau, Palmeri, Rettinger, Rozar and Conley",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tranel, Novak, Schutt, Rozar, Schmidt and Jacobson; +cosponsored by Senators Ballweg and Cowles",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Snodgrass, Bare, Joers, Drake, Palmeri, Doyle, Ratcliff, Gustafson, Ortiz-Velez, Considine, Ohnstad, Andraca, Emerson, Jacobson, Shankland, Shelton, Mursau, Conley, Stubbs, Edming and Haywood; +cosponsored by Senators Hesselbein, Agard, Jacque, Taylor, L. Johnson, Carpenter, Cabral-Guevara and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Macco, August, Binsfeld, Dittrich, Goyke, Kitchens, Krug, Magnafici, Murphy, Mursau, Ohnstad, Penterman, Petryk, Sinicki, Sortwell, Spiros, Steffen, Tittl and Tranel",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, C. Anderson, Bare, Emerson, Madison and Sinicki; +cosponsored by Senator L. Johnson",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Summerfield, Armstrong, Behnke, Bodden, Brandtjen, Conley, Edming, Gundrum, Maxey, Murphy, Petryk and Wichgers; +cosponsored by Senators Cabral-Guevara, Ballweg, Felzkowski and Nass",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Allen, Armstrong, Brooks, Cabrera, Donovan, Green, Gundrum, Gustafson, Kitchens, Knodl, Macco, Moses, Murphy, Mursau, Novak, O'Connor, Penterman, Rettinger, Subeck, Tittl and Tusler; +cosponsored by Senators James, Ballweg, Cowles, Quinn, Spreitzer and Taylor",2023-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Feyen, Hutton and Testin; +cosponsored by Representatives Moses, Brooks, Allen, Callahan, Gustafson, Kitchens, Palmeri, Rettinger, Schraa, Steffen, Tranel and VanderMeer",2023-07-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Spiros, Donovan, Moses, Mursau, Ohnstad, Penterman and Shankland; +cosponsored by Senators Cowles, Feyen and Taylor",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kitchens, Binsfeld, Brandtjen, Edming, Macco, O'Connor, Penterman, Sinicki and Duchow; +cosponsored by Senators Marklein, Cowles and Wirch",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Dallman, Billings, Dittrich, Gundrum, Murphy, Mursau, O'Connor, Ortiz-Velez, Rozar, Schmidt, Sinicki and Subeck; +cosponsored by Senators Testin, Feyen, Spreitzer, Taylor and Wanggaard",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Wanggaard, Carpenter, James, Cabral-Guevara, L. Johnson, Larson, Quinn, Roys and Taylor; +cosponsored by Representatives Tittl, Armstrong, Subeck, Behnke, Krug, Murphy, Mursau, Rozar, Schraa, C. Anderson, J. Anderson, Baldeh, Bare, Brooks, Cabrera, Drake, Green, Gundrum, Jacobson, Joers, O'Connor, Ohnstad, Ratcliff, Rodriguez, Schmidt, Schutt, Shankland, Sinicki, Spiros, Stubbs and Wichgers",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Behnke, Goeben, Murphy, Schmidt and Schraa",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Behnke, Armstrong, Binsfeld, Brandtjen, Callahan, Dittrich, Edming, Goeben, Green, Gustafson, Magnafici, Murphy, O'Connor, Rettinger, Rozar, Schmidt, Schutt and Wichgers; +cosponsored by Senators Stafsholt, Marklein, Nass, Stroebel, Tomczyk and Wanggaard",2023-10-05T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Bradley, Cabral-Guevara, Cowles, Nass and Tomczyk; +cosponsored by Representatives Knodl, Allen, Armstrong, Behnke, Binsfeld, Brandtjen, Brooks, Dittrich, Duchow, Edming, Green, Gundrum, Kitchens, Magnafici, Michalski, Moses, Murphy, Mursau, Neylon, O'Connor, Rettinger, Rozar, Schraa, Tittl and Tusler",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg, Jacque, Felzkowski and Nass; +cosponsored by Representatives Kitchens, Dittrich, Donovan, Michalski, O'Connor, Snyder, Wichgers and Goeben",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Magnafici, Zimmerman, Dittrich, Donovan, Emerson, Goeben, Green, Gustafson, Joers, Maxey, Mursau, O'Connor, Ohnstad, Ortiz-Velez, Penterman, Petryk, Sapik, Shankland, Sinicki, Stubbs, Subeck and Tittl; +cosponsored by Senators Stafsholt, Ballweg, Cowles, James, Marklein, Spreitzer and Tomczyk",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Roys; +cosponsored by Representatives VanderMeer, Considine, Andraca, Behnke, Conley, Emerson, Jacobson, Joers, Moore Omokunde, Sinicki and Subeck",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative Hurd,2023-09-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Snodgrass, C. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Conley, Drake, Emerson, Joers, Moore Omokunde, Ohnstad, Palmeri, Shelton, Sinicki, Subeck and Jacobson; +cosponsored by Senators Larson, Carpenter, L. Johnson, Hesselbein and Spreitzer",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schutt, Dittrich, Bare, Donovan, Mursau, Rettinger, Rozar and Subeck; +cosponsored by Senators Felzkowski and Ballweg",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hurd, Born, Summerfield, Armstrong, Dallman, Dittrich, Drake, Duchow, Edming, Gundrum, Kurtz, Murphy, Novak, Rodriguez, Rozar, Schutt, Steffen, Subeck, Wichgers, Goeben and Kitchens; +cosponsored by Senators Marklein, James, Ballweg, Felzkowski, Feyen, Jagler, Testin, Nass, Cabral-Guevara and Cowles",2023-11-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Melotik, Dittrich, Binsfeld, Brooks, O'Connor, Penterman, Sortwell and Tittl; +cosponsored by Senator Stroebel",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Green, Donovan, Allen, Edming, Rettinger and Rozar; +cosponsored by Senators Testin, Bradley, Cabral-Guevara, Hutton and Quinn",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative Wittke,2024-03-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, L. Johnson, Cabral-Guevara, Agard, Felzkowski, Hesselbein, Roys and Taylor; +cosponsored by Representatives Dittrich, Subeck, Sapik, Andraca, Duchow, Billings, Rozar, Cabrera, Rodriguez, Conley, Nedweski, Drake, Hurd, Emerson, VanderMeer, Hong, Schutt, Jacobson, Myers, Neubauer, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs and Vining",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, L. Johnson, Agard, Carpenter, Hesselbein, Larson, Pfaff, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Hong, J. Anderson, Andraca, Clancy, Conley, Considine, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs and Subeck",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Roys; +cosponsored by Representatives Baldeh, Madison, Clancy, Hong, Moore Omokunde, Conley, Sinicki, Joers, Ohnstad, Shelton, Emerson, Stubbs, J. Anderson, Palmeri, Subeck, Drake, Jacobson and Andraca",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Testin, Ballweg, Cabral-Guevara, Cowles and Marklein; +cosponsored by Representatives Pronschinske, Dittrich, Duchow, Emerson, Goeben, S. Johnson, Michalski, Moses, Ortiz-Velez, Penterman and Schmidt",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk and Cowles; +cosponsored by Representative Kitchens",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Quinn and Stroebel; +cosponsored by Representatives Behnke, Wichgers, Bodden, Brandtjen, Maxey, Rettinger, Schmidt and Schraa",2023-05-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Feyen and Taylor; +cosponsored by Representatives Spiros, Donovan, Moses, Mursau, Ohnstad, Penterman and Shankland",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Joers, Baldeh, Ratcliff, Sinicki, Conley, J. Anderson, Emerson, Hong, Snodgrass, Subeck, Moore Omokunde, Bare, Shelton, Cabrera, Considine, Palmeri, Andraca, Jacobson, Clancy, Ortiz-Velez and Drake; +cosponsored by Senators Smith, Taylor, L. Johnson, Spreitzer, Cabral-Guevara, Larson and Agard",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Clancy, Drake, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Ortiz-Velez, Ratcliff, Shankland, Shelton and Snodgrass; +cosponsored by Senators Larson and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Nass and Tomczyk; +cosponsored by Representatives Dittrich, O'Connor, Magnafici, Michalski, Gundrum, Penterman, Allen, Goeben, Wichgers and Rozar",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goeben, Sortwell, Armstrong, Behnke, Bodden, Born, Dittrich, Donovan, Gustafson, Kitchens, Kurtz, Murphy, Mursau, O'Connor, Oldenburg, Penterman, Rozar, Schmidt, Schraa, Tittl and Wichgers; +cosponsored by Senators Cabral-Guevara, Cowles, Felzkowski, Feyen, Jacque, Marklein and Stroebel",2023-04-06T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Goeben, Shankland, Brandtjen, Brooks, Cabrera, Knodl, Moses, Murphy, Rozar, Subeck, Tittl, Tusler, Wichgers and Vining; +cosponsored by Senators Jacque, Ballweg, Cowles, Spreitzer and Wanggaard",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, C. Anderson, J. Anderson, Andraca, Bare, Billings, Clancy, Conley, Considine, Drake, Emerson, Hong, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Shankland, Shelton, Sinicki, Stubbs and Haywood; +cosponsored by Senators Hesselbein, Agard, Carpenter, L. Johnson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Spreitzer, Agard, Roys, Taylor, Wirch, Larson and Carpenter; +cosponsored by Representatives Haywood, Ortiz-Velez, Madison, Stubbs, Conley, Moore Omokunde, Emerson, J. Anderson, Jacobson, Palmeri, Subeck, Joers, Neubauer, Baldeh, Clancy, Shankland, Vining, Shelton and Drake",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Ortiz-Velez, Brooks, O'Connor and Wichgers; +cosponsored by Senator Cabral-Guevara",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dallman, Kurtz, Donovan, Novak, O'Connor and Melotik; +cosponsored by Senators Ballweg, Marklein and Quinn",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Riemer, Sinicki, C. Anderson, Bare, Conley, Considine, Emerson, Jacobson, Joers, Moore Omokunde, Ohnstad, Ratcliff, Shelton, Stubbs, Palmeri, Haywood and Neubauer; +cosponsored by Senators Hesselbein, L. Johnson, Carpenter and Spreitzer",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Considine, Shelton, Joers, Hong, C. Anderson, Clancy, Jacobson, Shankland, Bare, Cabrera, Conley, Emerson, Palmeri, Ratcliff, Sinicki, Snodgrass, Subeck, Vining, Stubbs, Moore Omokunde, Madison, J. Anderson and Neubauer; +cosponsored by Senators L. Johnson, Larson, Smith, Hesselbein, Agard and Carpenter",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Nass, L. Johnson, Ballweg, Jacque and Taylor; +cosponsored by Representatives Donovan, Knodl, Allen, Baldeh, Binsfeld, Duchow, Gundrum, S. Johnson, Kurtz, Maxey, Murphy, Myers, Nedweski, Novak, O'Connor, Ortiz-Velez, Rettinger, Steffen and Wichgers",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Hesselbein, Carpenter, Feyen, James, Larson, Pfaff, Spreitzer, Stafsholt, Taylor, Wanggaard and Wirch; +cosponsored by Representatives Kurtz, Sinicki, C. Anderson, Andraca, Armstrong, Baldeh, Billings, Brandtjen, Cabrera, Conley, Considine, Donovan, Edming, Emerson, Gustafson, Haywood, Joers, Kitchens, Knodl, Mursau, Novak, Ohnstad, Ortiz-Velez, Petersen, Petryk, Riemer, Rozar, Shankland, Spiros, Stubbs, Subeck, Tittl, Tusler, Wittke, Zimmerman and Ratcliff",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Donovan, Knodl, Allen, Baldeh, Binsfeld, Duchow, Gundrum, S. Johnson, Kurtz, Maxey, Murphy, Myers, Nedweski, Novak, O'Connor, Ortiz-Velez, Rettinger and Steffen; +cosponsored by Senators Stroebel, L. Johnson, Jacque, Nass and Taylor",2023-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler, Kurtz, Riemer, Andraca, Drake, Joers, S. Johnson, Kitchens, Mursau, Novak, Donovan, Doyle, Shankland, Steffen, Subeck, Zimmerman, J. Anderson and Clancy; +cosponsored by Senators James, Smith, Cowles and Spreitzer",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Green, August, Armstrong, Brooks, Dittrich, Duchow, Goeben, Gundrum, Kitchens, Moses, Murphy, Mursau, Nedweski, O'Connor, Penterman, Plumer, Rettinger, Sinicki, Spiros and Tittl; +cosponsored by Senators Nass, Marklein, Cowles and Taylor",2023-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Cowles, Nass, Taylor, Testin and Spreitzer; +cosponsored by Representatives Melotik, Moses, Binsfeld, Callahan, Dittrich, Gundrum, Ortiz-Velez and Murphy",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Born, Behnke, Binsfeld, Dallman, Dittrich, Donovan, Duchow, Goeben, Gundrum, Gustafson, Hurd, Maxey, Michalski, Moses, Murphy, Mursau, Nedweski, O'Connor, Rettinger, Schmidt, Summerfield, Shankland, VanderMeer, Melotik and Brandtjen; +cosponsored by Senators Wimberger, Felzkowski, Jacque, James, Nass and Tomczyk",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative Knodl,2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard and Cabral-Guevara; +cosponsored by Representatives Tusler, Behnke, Bodden, Dittrich, Donovan, Edming, Gundrum, Magnafici, Murphy, Ortiz-Velez and Schraa",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, L. Johnson, Carpenter, Spreitzer, Roys, Hesselbein and Larson; +cosponsored by Representatives Joers, Bare, Baldeh, Emerson, Ratcliff, Ortiz-Velez, Andraca, Palmeri, Sinicki, Conley, Drake, Jacobson, J. Anderson, Ohnstad, Stubbs, Madison and Clancy",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Sinicki, C. Anderson, Emerson, Joers, Madison and Palmeri; +cosponsored by Senators L. Johnson and Larson",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Felzkowski, James, Quinn, Smith and Spreitzer; +cosponsored by Representatives Kurtz, Armstrong, Binsfeld, Brandtjen, Duchow, Edming, Green, Gundrum, Moses, Mursau, Nedweski, Novak, Palmeri, Petryk, Rettinger, Spiros and Swearingen",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Carpenter; +cosponsored by Representatives Edming, Novak, Armstrong, Brandtjen, Green, Mursau, Myers, Ortiz-Velez, Rozar, Shankland, Subeck and Sinicki",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Neubauer, Cabrera, Snodgrass, Clancy, Ratcliff, C. Anderson, J. Anderson, Andraca, Baldeh, Conley, Considine, Emerson, Goyke, Hong, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Shankland, Shelton, Sinicki, Vining, Subeck, Drake, Stubbs, Haywood and Bare; +cosponsored by Senators Carpenter, Spreitzer, Agard, Hesselbein, L. Johnson, Larson, Roys, Smith and Taylor",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Cabral-Guevara; +cosponsored by Representatives Schraa, Magnafici, Moses, Mursau and Sapik",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Ballweg, Cowles and Quinn; +cosponsored by Representatives Schutt, Donovan, Gustafson, Kitchens, Murphy, Mursau and Rettinger",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Cabrera, Ortiz-Velez, Andraca, Baldeh, Bare, Clancy, Conley, Considine, Drake, Emerson, Haywood, Hong, Joers, Madison, Neubauer, Shelton, Sinicki, Moore Omokunde, Snodgrass, Stubbs, Subeck and Vining; +cosponsored by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Spreitzer and Taylor",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Subeck, Emerson, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Considine, Doyle, Drake, Goyke, Haywood, Hong, Jacobson, Joers, Madison, McGuire, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Shankland, Shelton, Sinicki, Snodgrass, Stubbs and Vining",2023-05-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, James, Cabral-Guevara, Marklein, Tomczyk and Quinn; +cosponsored by Representatives Schutt, Kitchens, Dittrich, Behnke, Binsfeld, Bodden, Brandtjen, Goeben, Green, Gustafson, Hurd, Maxey, Murphy, Myers, Novak, O'Connor, Oldenburg, Ortiz-Velez, Rettinger, Rozar, Schmidt, Snyder, Spiros, Stubbs, Summerfield, Wittke and Schraa",2023-07-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Nass, Testin, Marklein, Stroebel and Tomczyk; +cosponsored by Representatives Penterman, Schutt, Behnke, Bodden, Brandtjen, Brooks, Dittrich, Green, Gundrum, Knodl, Moses, Murphy, Mursau, Nedweski, O'Connor, Schmidt and Tittl",2023-04-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and Ballweg; +cosponsored by Representatives Mursau, Behnke, S. Johnson, Kitchens, O'Connor and Steffen",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goeben, Hurd, Armstrong, Behnke, Born, Dittrich, Hong, S. Johnson, Murphy, O'Connor and Summerfield",2024-02-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Larson, Agard, Carpenter, Hesselbein, Roys, Smith, Taylor, Spreitzer and Wirch; +cosponsored by Representatives Shelton, Moore Omokunde, Andraca, Bare, Billings, C. Anderson, J. Anderson, Clancy, Conley, Considine, Doyle, Drake, Emerson, Hong, Jacobson, Joers, Madison, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Sinicki, Snodgrass, Stubbs and Subeck",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Maxey, Michalski, O'Connor and Schmidt; +cosponsored by Senators Feyen and Quinn",2024-01-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Allen, Bodden, Brandtjen, Maxey, Murphy and Wichgers; +cosponsored by Senators Jacque and Nass",2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin and Ballweg; +cosponsored by Representatives Wittke, Rettinger, Armstrong, O'Connor and Wichgers",2023-05-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Considine, C. Anderson, Emerson, Jacobson, Ohnstad, Palmeri, Ratcliff and Shelton; +cosponsored by Senators Smith, Spreitzer, Hesselbein, Roys, Taylor and Agard",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Murphy, O'Connor, Schmidt and Goeben; +cosponsored by Senator Jacque",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer and Pfaff; +cosponsored by Representatives J. Anderson, Emerson, Bare, Clancy, Jacobson, Joers, Moore Omokunde, Murphy, Neubauer, Ohnstad, Ratcliff, Shankland, Shelton, Snodgrass and Stubbs",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Ortiz-Velez, Baldeh, Behnke, Gundrum, Gustafson, Kitchens, Moses, Myers, Steffen, Stubbs and Krug; +cosponsored by Senators Taylor, Jacque, Ballweg and Tomczyk",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Born, Allen, C. Anderson, Armstrong, Behnke, Brooks, Callahan, Dittrich, Donovan, Edming, Emerson, Green, Gustafson, Joers, Kitchens, Krug, Macco, Magnafici, Moses, Murphy, Mursau, Nedweski, Novak, O'Connor, Penterman, Petryk, Plumer, Ratcliff, Rodriguez, Rozar, Schraa, Shankland, Snyder, Sortwell, Spiros, Steffen, Subeck, Summerfield, Tranel, Tusler, VanderMeer, Wittke, Zimmerman and Jacobson; +cosponsored by Senators Marklein, Ballweg, Feyen, Jacque, Jagler, James, L. Johnson, Smith and Spreitzer",2023-02-10T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Billings, Conley, Drake, Emerson, Joers, Moore Omokunde, Neubauer, Palmeri, Ratcliff, Sinicki, Stubbs and Subeck; +cosponsored by Senators Smith, Larson and Spreitzer",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kitchens, Considine, Behnke, Binsfeld, Conley, Dittrich, Duchow, Jacobson, Novak, Ohnstad, Ortiz-Velez, Plumer and Sinicki; +cosponsored by Senators James, Hesselbein, Agard, Roys and Spreitzer",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Armstrong, Behnke, Dittrich, Emerson, Kitchens, Magnafici, Murphy, Mursau, Nedweski, O'Connor, Ortiz-Velez, Rodriguez and Wichgers; +cosponsored by Senators Felzkowski, Ballweg, Nass and Taylor",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Felzkowski, Carpenter, Cowles, Feyen, Hesselbein, James, L. Johnson, Larson, Pfaff, Quinn, Roys, Spreitzer, Taylor and Wimberger; +cosponsored by Representatives Rozar, Kurtz, Allen, Andraca, Armstrong, Baldeh, Behnke, Billings, Bodden, Brandtjen, Conley, Dittrich, Donovan, Doyle, Drake, Duchow, Emerson, Goyke, Green, Joers, Kitchens, Krug, Madison, Michalski, Moore Omokunde, Mursau, Novak, O'Connor, Ohnstad, Oldenburg, Ortiz-Velez, Ratcliff, Riemer, Rodriguez, Schmidt, Schraa, Shankland, Sinicki, Snodgrass, Snyder, Stubbs, Subeck, Summerfield, Tusler, VanderMeer, Vining and Wichgers",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, S. Johnson, Bodden, Brandtjen, Dittrich, Donovan, Gundrum, Michalski, O'Connor, Rettinger and Schraa",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Spiros, Duchow, Schraa, Allen, Brandtjen, Dittrich, Donovan, Edming, Knodl, Michalski, Murphy, O'Connor, Rettinger, Rozar, Schutt, Steffen and Wichgers; +cosponsored by Senators Wanggaard, Bradley, James, Ballweg, Cabral-Guevara, Cowles, Jacque, Marklein, Nass and Stroebel",2023-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Ratcliff, Bare, Emerson, Joers, Moore Omokunde, Sinicki, Stubbs and Palmeri; +cosponsored by Senators Smith, Agard, L. Johnson, Larson, Roys and Spreitzer",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schraa, Magnafici, Moses, Mursau and Sapik; +cosponsored by Senator Cabral-Guevara",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Behnke, Green, S. Johnson, Kurtz, Novak, O'Connor, Oldenburg, Penterman, Petryk, Pronschinske, Steffen, Tranel and Schraa; +cosponsored by Senators Marklein, Cowles, Felzkowski, Feyen, Hesselbein, Pfaff, Spreitzer, Testin, Tomczyk, Wanggaard and Wimberger",2023-04-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Behnke, S. Johnson, Kitchens, O'Connor and Steffen; +cosponsored by Senators Cowles and Ballweg",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Ballweg, Marklein, Nass and Smith; +cosponsored by Representatives Penterman, O'Connor, Armstrong, Kitchens, Mursau and Spiros",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Oldenburg, Pronschinske, Baldeh, Behnke, Donovan, Duchow, Gundrum, Moses, Murphy, Mursau, Sapik, Spiros, VanderMeer and Shankland; +cosponsored by Senators James, Ballweg, Carpenter, Feyen and Wanggaard",2023-02-10T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson, Roys, Hesselbein, Agard, Carpenter and Spreitzer; +cosponsored by Representatives Stubbs, Andraca, Conley, Considine, Subeck, Sinicki, Joers, Ratcliff, Ohnstad, Hong and Bare",2024-03-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Neylon, Behnke, Donovan, Emerson, S. Johnson, Kitchens, Knodl, Moses, Murphy, Mursau, Nedweski, O'Connor, Penterman, Pronschinske, Rettinger, Rodriguez, Rozar, Snodgrass, Spiros, Steffen and Tusler; +cosponsored by Senators Cowles, Spreitzer, Taylor and Wanggaard",2023-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator James; +cosponsored by Representative Hurd",2024-02-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, Goeben, Behnke, Conley, Considine, Dittrich, Drake, Emerson, Gundrum, Hurd, Kitchens, Madison, Moore Omokunde, Murphy, O'Connor, Ohnstad, Palmeri and Sinicki; +cosponsored by Senators L. Johnson, Taylor and Wirch",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Cowles, Marklein, Quinn and Stroebel; +cosponsored by Representatives Steffen, Allen, Armstrong, Behnke, Donovan, Edming, Hurd, Kitchens, Macco, Moses, Murphy, Rettinger, Rozar and Sortwell",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Marklein, Cabral-Guevara, Stroebel and Cowles; +cosponsored by Representatives Oldenburg, Novak, Tranel, Plumer, Mursau and Kitchens",2023-10-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, Baldeh, Ratcliff, Moore Omokunde, Sinicki, Joers, Bare, Madison, Subeck, J. Anderson, Shelton, Jacobson, Drake and Ohnstad; +cosponsored by Senators Agard, L. Johnson and Smith",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Krug, Shankland, Callahan, Jacobson, Ohnstad, Penterman and VanderMeer; +cosponsored by Senators Testin, Ballweg, Spreitzer and Wanggaard",2024-01-24T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Plumer, Bodden, Callahan, Rozar and S. Johnson; +cosponsored by Senators Ballweg, Testin and Jacque",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Jacobson, C. Anderson, Madison, Considine, J. Anderson, Joers, Ohnstad and Sinicki; +cosponsored by Senators Hesselbein, Spreitzer and Agard",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Clancy, Drake, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Myers, Ortiz-Velez, Ratcliff, Shankland, Shelton, Snodgrass, Stubbs and Subeck; +cosponsored by Senators Larson and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Quinn, Ballweg, Bradley, Felzkowski, Knodl, Stafsholt, Taylor and Testin; +cosponsored by Representatives VanderMeer, Gustafson, Oldenburg, Brandtjen, Duchow, Goeben, Gundrum, Hurd, Mursau, Petersen and Tranel",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Moses, Dittrich, Behnke, Binsfeld, Brooks, Edming, Goeben, Green, Gundrum, Gustafson, Krug, Magnafici, Mursau, Nedweski, Novak, O'Connor, Oldenburg, Penterman, Rettinger, Schmidt, Schutt, Spiros, Summerfield, Tranel, VanderMeer and Wittke; +cosponsored by Senators Testin, Cowles, Feyen, Quinn and Tomczyk",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Summerfield, Swearingen, Armstrong, Binsfeld, Callahan, Considine, Edming, Green, Hurd, S. Johnson, Kitchens, Magnafici, Mursau, Novak, O'Connor, Penterman, Petryk, Plumer, Pronschinske, Sapik, Schmidt, Schraa, Tranel and Tusler; +cosponsored by Senators Marklein, Ballweg, Felzkowski, Feyen, James, Pfaff, Testin, Wanggaard and Wimberger",2023-06-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg, Cabral-Guevara, Cowles, Quinn, Testin and Tomczyk; +cosponsored by Representatives Steffen, Armstrong, Behnke, Donovan, Goeben, Green, Gundrum, Hurd, Kitchens, Macco, Moses, Mursau, Novak, Plumer, Rettinger, Schraa and Tusler",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, Hong, Madison, Palmeri, C. Anderson, J. Anderson, Baldeh, Cabrera, Conley, Considine, Drake, Emerson, Jacobson, Joers, Moore Omokunde, Shelton, Sinicki, Snodgrass, Stubbs, Subeck and Haywood; +cosponsored by Senators Larson, L. Johnson and Roys",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wittke, Vos and Neubauer; +cosponsored by Senator Wanggaard",2023-11-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg and Feyen; +cosponsored by Representatives Tusler, Baldeh, Behnke, Doyle, Kitchens, O'Connor, Ratcliff, Rettinger and Subeck",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Agard, Carpenter, Wirch, Larson, Spreitzer, Smith, Hesselbein, Roys and Pfaff; +cosponsored by Representatives Drake, Baldeh, Myers, Haywood, Stubbs, Moore Omokunde, Madison, Neubauer, Ohnstad, Shelton, Snodgrass, Palmeri, Clancy, Hong, Goyke, Andraca, Sinicki, Ratcliff, Considine, C. Anderson, J. Anderson, Bare, Vining, Riemer, Allen, Murphy, Emerson, Joers, Subeck, Ortiz-Velez, Conley, Billings, Shankland, Cabrera, Jacobson, Doyle and McGuire",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Hesselbein, Agard, Larson, Roys and Spreitzer; +cosponsored by Representatives Gustafson, C. Anderson, J. Anderson, Bare, Brooks, Considine, Edming, Emerson, Jacobson, Joers, Murphy, Ohnstad, Ortiz-Velez, Ratcliff, Sapik, Shankland and Sinicki",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Swearingen, Bodden, Brooks, Edming, Gundrum, Mursau, Novak, Spiros, Tranel and Green; +cosponsored by Senators Marklein, Cowles, Feyen and Tomczyk",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Rozar, Baldeh, Brandtjen, Cabrera, Conley, Gustafson, Maxey, Murphy, O'Connor, Ohnstad, Ortiz-Velez, Ratcliff, Spiros, Subeck, Tusler and Melotik; +cosponsored by Senators James, Taylor, Cabral-Guevara, Felzkowski, Quinn and Spreitzer",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Armstrong, Kurtz, Allen, Dittrich, Edming, Green, Kitchens, Magnafici, Murphy, Mursau, Novak, Snyder, Spiros, Summerfield, Tusler and VanderMeer; +cosponsored by Senators Feyen and Quinn",2023-02-13T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Emerson, Andraca, Bare, Clancy, Conley, Jacobson, Joers, Moore Omokunde, Murphy, Ohnstad, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Spreitzer, Agard, Carpenter, Larson, Pfaff and Roys",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, L. Johnson and Larson; +cosponsored by Representatives Billings, J. Anderson, Behnke, Binsfeld, Considine, Dittrich, Drake, Emerson, Joers, S. Johnson, Madison, Maxey, Moore Omokunde, Mursau, O'Connor, Ohnstad, Palmeri, Ratcliff, Sinicki, Snodgrass, Subeck, Brandtjen and Schraa",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen and Ballweg; +cosponsored by Representatives Schraa, Allen, S. Johnson, Mursau, O'Connor and Dittrich",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Donovan, Knodl, Allen, Baldeh, Binsfeld, Duchow, Gundrum, S. Johnson, Kurtz, Maxey, Murphy, Myers, Nedweski, Novak, O'Connor, Ortiz-Velez, Rettinger and Steffen; +cosponsored by Senators Nass, L. Johnson, Ballweg, Jacque and Taylor",2023-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Summerfield, Subeck, Allen, C. Anderson, Andraca, Armstrong, Baldeh, Bare, Callahan, Clancy, Dittrich, Donovan, Drake, Duchow, Emerson, Green, Gundrum, Haywood, Hong, Joers, S. Johnson, Kitchens, Krug, Madison, Michalski, Murphy, Myers, Nedweski, Novak, O'Connor, Oldenburg, Palmeri, Penterman, Petryk, Pronschinske, Ratcliff, Rettinger, Rozar, Schmidt, Schraa, Shankland, Shelton, Sinicki, Snodgrass, Snyder, Spiros, Stubbs, Swearingen, Tittl, Tranel, VanderMeer, Wittke, Gustafson, Mursau, Steffen, Neubauer and Conley; +cosponsored by Senators James, Agard, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Spreitzer, Taylor, Wirch and Jacque",2023-06-01T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Hutton, Bradley, Ballweg, James, Marklein and Nass; +cosponsored by Representatives Donovan, Tusler, Rettinger, Allen, Behnke, Bodden, Brandtjen, Brooks, Duchow, Goeben, Gundrum, Maxey, Melotik, Michalski, Murphy, O'Connor and Penterman",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Joers, Hurd, Vining, Behnke, Penterman, Ratcliff, Rozar, Schmidt, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Clancy, Conley, Considine, Donovan, Drake, Edming, Emerson, S. Johnson, Madison, Melotik, Moore Omokunde, Mursau, Novak, O'Connor, Ohnstad, Palmeri, Schutt, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Krug, Neubauer, Brandtjen and Jacobson; +cosponsored by Senators Ballweg, Carpenter, Pfaff, Quinn, Roys, Spreitzer and Larson",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Bradley, Testin, Stroebel, James, Quinn and Feyen; +cosponsored by Representatives Duchow, Neylon, Allen, Brandtjen, Dittrich, Edming, Gundrum, Kitchens, Knodl, Krug, Kurtz, Macco, Magnafici, Michalski, Moses, Murphy, Novak, Ortiz-Velez, Penterman, Rettinger, Rozar, Snyder, Sortwell, Steffen, Tittl, Wichgers and Wittke",2023-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dallman, Brooks, Allen, Behnke, Binsfeld, Bodden, Dittrich, Green, Gundrum, Knodl, Magnafici, Moses, Murphy, O'Connor, Penterman, Petersen, Plumer, Rettinger, Rozar, Sortwell, Wichgers and Wittke; +cosponsored by Senators Feyen, Bradley, Felzkowski, Marklein and Stroebel",2023-04-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Magnafici, Armstrong, Behnke, Bodden, Dittrich, Donovan, Green, Gundrum, Gustafson, S. Johnson, Kitchens, Krug, Kurtz, Macco, Murphy, Novak, Rodriguez, Schmidt, Schraa, Schutt, Sortwell, Steffen, Tittl, Tusler, Wichgers and Nedweski; +cosponsored by Senators Testin, Cabral-Guevara, Roys, Ballweg, Cowles, Felzkowski, Jacque, Marklein, Nass, Quinn, Stroebel and Taylor",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wittke, Binsfeld, Bodden, Brandtjen, Donovan, Gundrum, Gustafson, Magnafici, Maxey, Murphy, O'Connor, Rettinger and Schraa; +cosponsored by Senators Stroebel, Ballweg, Felzkowski, Jagler, Marklein, Nass and Tomczyk",2023-06-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Marklein, Stroebel and Felzkowski; +cosponsored by Representatives Gustafson, Sortwell, Binsfeld, Bodden, Brooks, Dittrich, Green, Magnafici and Schmidt",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Andraca, Oldenburg, Snodgrass, C. Anderson, J. Anderson, Baldeh, Billings, Cabrera, Conley, Emerson, Haywood, Jacobson, Joers, Moore Omokunde, Ohnstad, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs and Subeck; +cosponsored by Senators Larson, Smith, Agard, Cabral-Guevara, Carpenter, Hesselbein, Roys and Spreitzer",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Carpenter, Cabral-Guevara, Larson, Roys, Spreitzer and Taylor; +cosponsored by Representatives Subeck, Shelton, C. Anderson, J. Anderson, Bare, Cabrera, Conley, Drake, Emerson, Joers, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Stubbs and Clancy",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Swearingen, Green, C. Anderson, Baldeh, Dallman, Myers, Ohnstad, Sinicki, Subeck and Steffen; +cosponsored by Senators Feyen, Ballweg and Wanggaard",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, C. Anderson, Baldeh, Clancy, Joers, Madison, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Subeck and Conley; +cosponsored by Senators Wirch, Roys, Carpenter, Hesselbein, Larson and Spreitzer",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rodriguez, Rozar, Billings, J. Anderson, Andraca, Armstrong, Bare, Clancy, Conley, Considine, Dittrich, Duchow, Emerson, Goyke, Jacobson, Joers, S. Johnson, Madison, Michalski, Nedweski, Novak, Ortiz-Velez, Schutt, Shankland, Sinicki, Stubbs and Subeck; +cosponsored by Senators Ballweg, Hesselbein, Cowles, Larson, Spreitzer and Roys",2023-03-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Taylor and Hutton; +cosponsored by Representatives Mursau, Armstrong, Behnke, Brooks, Dittrich, Spiros, Wichgers and Stubbs",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Emerson, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Considine, Doyle, Drake, Goyke, Haywood, Hong, Jacobson, Joers, Madison, McGuire, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Shankland, Shelton, Sinicki, Snodgrass, Stubbs and Vining; +cosponsored by Senators Roys, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Smith, Spreitzer, Taylor and Wirch",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Jacobson, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Cabrera, Conley, Drake, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Snodgrass, Stubbs and Clancy; +cosponsored by Senators Smith, Carpenter, Roys, Taylor, Hesselbein, Spreitzer and Larson",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Allen, Behnke, Bodden, Goeben, Gustafson, Penterman, Rozar, Wichgers and Murphy; +cosponsored by Senator Tomczyk",2023-08-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Summerfield, Brooks, Emerson, Steffen, C. Anderson, Behnke, Brandtjen, Dittrich, Doyle, Duchow, Edming, Green, Joers, Kitchens, Moses, Murphy, Ortiz-Velez, Penterman, Petryk, Plumer, Rettinger, Schraa, Shankland, Sinicki, Snyder, Swearingen, Wichgers and Krug; +cosponsored by Senators Feyen, Quinn, Jacque, Jagler and Nass",2023-05-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Oldenburg, Brooks, Mursau and Rozar; +cosponsored by Senators Marklein and Ballweg",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Carpenter, Felzkowski, Knodl, Spreitzer and Taylor; +cosponsored by Representatives Stubbs, Sortwell, Andraca, Baldeh, Bodden, Cabrera, Dittrich, Goeben, Gustafson, Jacobson, Joers, Moore Omokunde, Mursau, Myers, Ohnstad, Ortiz-Velez, Palmeri, Shankland, Snodgrass, Subeck and Vining",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Conley, J. Anderson, Emerson, Considine, Sinicki, Andraca, Bare, Cabrera, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Shelton, Stubbs and Haywood; +cosponsored by Senators Taylor, Larson, Hesselbein and L. Johnson",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Maxey, Armstrong, Allen, Behnke, Brandtjen, Knodl, Murphy, Mursau, Rozar, Wichgers and Rettinger; +cosponsored by Senators Jacque, Cabral-Guevara and Tomczyk",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and Felzkowski; +cosponsored by Representatives Sortwell, Armstrong, Behnke, Donovan, Green, Kitchens, Mursau and Subeck",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Hong, C. Anderson, J. Anderson, Andraca, Bare, Clancy, Conley, Doyle, Drake, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Myers, Neubauer, Palmeri, Ratcliff, Shankland, Sinicki, Stubbs, Subeck and Vining; +cosponsored by Senators Larson, Agard, Carpenter, Hesselbein, L. Johnson, Pfaff, Roys, Smith, Spreitzer and Taylor",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Felzkowski, Roys and Taylor; +cosponsored by Representatives Duchow, Macco, Novak, Kitchens, Steffen, Myers, Subeck, C. Anderson, Cabrera, Conley, Mursau, Ohnstad, Palmeri, Sapik and Sinicki",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Baldeh, Andraca, Bare, Considine, Stubbs, Conley, Moore Omokunde, Emerson, Jacobson, Palmeri, Subeck, Joers, Neubauer, Ohnstad, Clancy, J. Anderson, Shelton, Sinicki, Vining, Madison and Drake; +cosponsored by Senators Roys, Taylor, Hesselbein, Larson and Smith",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Feyen, Jacque, James, Larson, Spreitzer, Taylor, Marklein and Cowles; +cosponsored by Representatives Rozar, J. Anderson, Baldeh, Clancy, Conley, Drake, Jacobson, Kitchens, Madison, Magnafici, Michalski, Moore Omokunde, Murphy, Mursau, Novak, O'Connor, Ohnstad, Palmeri, Penterman, Rettinger, Shelton, Sinicki, Subeck, Tranel, Joers, Edming and Haywood",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Gustafson, Green, Murphy, Rettinger, O'Connor, Penterman, Schmidt and Tusler; +cosponsored by Senators Stroebel, Cabral-Guevara, Cowles, Feyen and Jacque",2024-01-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Schmidt, Krug, Green, Mursau, Edming, Murphy, Rettinger, Dittrich and Goeben; +cosponsored by Senators Stafsholt, Taylor, Cowles and Quinn",2024-01-17T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara and Felzkowski; +cosponsored by Representatives Gustafson, Magnafici, Murphy and Schmidt",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Rettinger, Penterman, Brandtjen, Brooks, Maxey, Mursau, Ortiz-Velez, Rodriguez, Tusler, Wichgers, Zimmerman, Bodden and Allen; +cosponsored by Senators Jacque, Felzkowski, Nass and Wanggaard",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl and Stroebel; +cosponsored by Representatives Novak, Armstrong, Brooks, Goeben, Gundrum, S. Johnson, Michalski, Moses, Murphy, Mursau, Rettinger, Schmidt and Tranel",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and Wanggaard; +cosponsored by Representatives Sortwell, Gustafson, Tusler, Stubbs and Baldeh",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Born, Behnke, Brandtjen, Cabrera, Green, Michalski, Novak, O'Connor, Rettinger, Rozar, Subeck and Mursau; +cosponsored by Senators Marklein, Ballweg, Cabral-Guevara, Cowles, Felzkowski, Nass and Tomczyk",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Carpenter, L. Johnson, Larson, Spreitzer and Taylor; +cosponsored by Representatives Moore Omokunde, C. Anderson, J. Anderson, Baldeh, Bare, Conley, Considine, Joers, Madison, Myers, Ohnstad, Shelton and Subeck",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Smith, Carpenter, Hesselbein, Larson, Roys and Spreitzer; +cosponsored by Representatives Snodgrass, Considine, C. Anderson, J. Anderson, Andraca, Behnke, Cabrera, Baldeh, Bare, Billings, Conley, Emerson, Haywood, Hong, Jacobson, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs, Subeck and Vining",2023-07-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, J. Anderson, Andraca, Conley, Considine, Sinicki, Emerson, C. Anderson, Bare, Cabrera, Clancy, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Stubbs, Haywood and Madison; +cosponsored by Senators Larson, Taylor, Hesselbein, L. Johnson and Roys",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives VanderMeer, Gustafson, Oldenburg, Brandtjen, Duchow, Goeben, Gundrum, Hurd, Mursau, Petersen and Tranel; +cosponsored by Senators Marklein, Quinn, Ballweg, Bradley, Felzkowski, Knodl, Stafsholt, Taylor and Testin",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Maxey, Macco, Armstrong, Edming, Michalski, Murphy, Rettinger, Steffen and VanderMeer; +cosponsored by Senator Jacque",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dallman, Steffen, Brandtjen, Considine, Duchow, Joers, Novak, Rozar, Schmidt and Stubbs; +cosponsored by Senators Wimberger, Marklein, Pfaff and Spreitzer",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Cabral-Guevara; +cosponsored by Representatives Snyder, Rozar, Kurtz and Summerfield",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Petersen, Armstrong, Behnke, Dallman, Green, O'Connor and Schmidt; +cosponsored by Senators Ballweg, Feyen and Tomczyk",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, Ballweg, Bradley, Marklein and Tomczyk; +cosponsored by Representatives Tusler, Gundrum, Moses, Murphy, O'Connor, Rozar and Allen",2023-10-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Spreitzer, Roys, Larson and Agard; +cosponsored by Representatives Doyle, Emerson, Conley, Considine, Billings, Ohnstad, Palmeri, Sinicki, Jacobson, Hong and Madison",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Tomczyk and Quinn; +cosponsored by Representatives Summerfield, O'Connor, Edming, Green, Michalski and Steffen",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hutton, Ballweg, Cabral-Guevara, Marklein, Nass, Spreitzer and Wanggaard; +cosponsored by Representatives Nedweski, Macco, Armstrong, Binsfeld, Brandtjen, Dittrich, Edming, Gundrum, Gustafson, Kitchens, Moses, Murphy, O'Connor, Rettinger, Snodgrass, Steffen and Wichgers",2023-07-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Andraca, Palmeri, Armstrong, Bare, Bodden, Conley, Gundrum, Jacobson, Joers, Rozar, Shelton, Snodgrass, Subeck and Rettinger; +cosponsored by Senators Jacque, Larson, Smith, Spreitzer and Taylor",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler, Rettinger, Brandtjen, Murphy, Mursau, Snyder and Wichgers; +cosponsored by Senators Jacque and Wimberger",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Subeck, Penterman, Krug, Gundrum, Bodden, Rozar, Emerson, Rodriguez, Schutt, Kitchens, Sinicki, Andraca, Brooks, Green, Joers, Brandtjen, Ortiz-Velez, Conley, Gustafson, Jacobson, Allen, J. Anderson, Clancy, C. Anderson, Ohnstad, Madison, Considine, S. Johnson, Baldeh, Shankland, Mursau and Stubbs; +cosponsored by Senators Ballweg, Agard, Roys, Hesselbein, Spreitzer, Stroebel, Larson, Wirch and Marklein",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Smith and Spreitzer; +cosponsored by Representatives Haywood, Andraca, Bare, Conley, Considine, Drake, Goyke, Myers, Ratcliff, Shelton and Stubbs",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Maxey, Rodriguez, Donovan and Michalski",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Allen, Drake, Mursau, Ortiz-Velez, Palmeri, Rettinger, Rozar and Conley; +cosponsored by Senator Cabral-Guevara",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Wittke; +cosponsored by Senator Stroebel",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, C. Anderson, Jacobson, J. Anderson, Andraca, Baldeh, Bare, Clancy, Conley, Considine, Emerson, Joers, Madison, Neubauer, Ohnstad, Moore Omokunde, Palmeri, Ratcliff, Shelton, Stubbs and Subeck; +cosponsored by Senators Roys, Smith, Agard, Taylor, Larson and Spreitzer",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Callahan; +cosponsored by Senator Felzkowski",2024-01-24T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Oldenburg, Jacobson, Spiros, Armstrong, Mursau, Magnafici, Stubbs, Ratcliff, Ohnstad, O'Connor, Bare, Kitchens, Drake, Joers, Conley, Murphy, Sinicki, Baldeh, Subeck, Andraca, Emerson, VanderMeer and Ortiz-Velez; +cosponsored by Senators Pfaff, Spreitzer, Larson, Roys and Hesselbein",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, C. Anderson, J. Anderson, Clancy, Conley, Considine, Drake, Emerson, Jacobson, Joers, Madison, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki and Stubbs; +cosponsored by Senators Agard, Hesselbein, L. Johnson, Pfaff, Smith, Taylor and Wirch",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Ortiz-Velez, Steffen, Behnke, Bodden, Brandtjen, Edming, Murphy, Moses and Krug; +cosponsored by Senators Wimberger, Taylor, Nass and Tomczyk",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Tomczyk; +cosponsored by Representatives Krug, Callahan, Armstrong, Behnke, Brandtjen, Green, Moses and Mursau",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Cabral-Guevara, Felzkowski, Feyen, Marklein and Stroebel; +cosponsored by Representatives Murphy, Tusler, Behnke, S. Johnson and Mursau",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Cabral-Guevara, Ballweg, Taylor and Roys; +cosponsored by Representatives Joers, Gustafson, Snodgrass, Emerson, Myers, C. Anderson, Shelton, Sinicki, Ohnstad, Baldeh, J. Anderson, Considine, Hong and Jacobson",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Doyle, C. Anderson, Behnke, Brandtjen, Dittrich, Jacobson, Joers, Magnafici, Murphy, Ortiz-Velez, Palmeri, Ratcliff and Sinicki; +cosponsored by Senators Cabral-Guevara, Carpenter and Spreitzer",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Armstrong, Dittrich, Donovan, Edming, Green, Gundrum, Kitchens, Murphy, Mursau, Spiros, Subeck and Tittl; +cosponsored by Senators Ballweg and James",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, Felzkowski, Jacque, James, Nass and Tomczyk; +cosponsored by Representatives Born, Behnke, Binsfeld, Dallman, Dittrich, Donovan, Duchow, Goeben, Gundrum, Gustafson, Hurd, Maxey, Michalski, Moses, Murphy, Mursau, Nedweski, O'Connor, Rettinger, Schmidt, Summerfield, VanderMeer, Shankland and Melotik",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg, Cabral-Guevara, Carpenter, Spreitzer and Taylor; +cosponsored by Representatives Sortwell, S. Johnson, Doyle, Andraca, Armstrong, Dittrich, Edming and Shankland",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler, Behnke, Bodden, Dittrich, Donovan, Edming, Gundrum, Magnafici, Murphy, Ortiz-Velez, Schraa and Wichgers; +cosponsored by Senators Wanggaard and Cabral-Guevara",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Wittke, Allen, Dittrich, Donovan, Gustafson, Magnafici, Murphy, Moses, Nedweski, O'Connor, Ortiz-Velez, Palmeri, Penterman, Rettinger, Vos, Wichgers, Jacobson and Rozar; +cosponsored by Senators Bradley, Ballweg, Marklein, Roys, Wanggaard and Spreitzer",2023-07-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Hesselbein, Wanggaard and Taylor; +cosponsored by Representatives Donovan, Ortiz-Velez, Allen, C. Anderson, Brooks, Cabrera, Conley, Duchow, Edming, Kitchens, Maxey, Melotik, Nedweski, Schmidt, Sinicki, Stubbs, Wichgers, Dittrich and Palmeri",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Schraa; +cosponsored by Senator Stroebel",2024-02-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Joers, C. Anderson, Clancy, Jacobson, Myers, Shankland, Madison, Cabrera, Conley, Considine, Emerson, Palmeri, Ratcliff, Sinicki, Snodgrass, Subeck, Bare, Stubbs, Moore Omokunde, J. Anderson and Neubauer; +cosponsored by Senators Larson, Smith, Roys, Agard, Hesselbein, Spreitzer, L. Johnson, Carpenter and Pfaff",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kitchens, Dittrich, Donovan, Michalski, O'Connor, Snyder and Wichgers; +cosponsored by Senators James, Ballweg and Jacque",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Moses, Magnafici, Green, Hurd, Kitchens, Murphy, Mursau, Rettinger, Schraa, Tranel, Wichgers, Brandtjen and Allen",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Plumer, Rozar, Callahan, Oldenburg, Binsfeld, Dittrich, Emerson, Goeben, Jacobson, Joers, Mursau, Ohnstad, Ortiz-Velez, Snyder, Tusler, Behnke and Subeck; +cosponsored by Senators Felzkowski, James, Marklein, Spreitzer, Testin, Hutton, Roys and Ballweg",2023-11-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Gustafson, Moses, Murphy, Sapik and Schraa; +cosponsored by Senators Tomczyk and Stroebel",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gundrum and Bodden; +cosponsored by Senator Stroebel",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Knodl, Ballweg and Tomczyk; +cosponsored by Representatives Tusler, Allen, O'Connor and Maxey",2024-01-24T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Binsfeld, Duchow, Knodl, Rodriguez, Sapik, Schutt, Vos, August, Born, Callahan, Dallman, Green, Hurd, S. Johnson, Kitchens, Krug, Kurtz, Michalski, Mursau, Neylon, Novak, Oldenburg, Plumer, Snyder, Spiros, Summerfield, Swearingen, Wittke, Donovan, Dittrich, Nedweski, Moses and Zimmerman; +cosponsored by Senators Felzkowski, Cabral-Guevara, James, Wanggaard and Wimberger",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vos and Petersen; +cosponsored by Senators Wanggaard, Ballweg and Testin",2024-02-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Emerson, J. Anderson, Baldeh, Conley, Joers, Neubauer, Ohnstad, Ratcliff, Shelton, Sinicki, Stubbs and Subeck; +cosponsored by Senators Larson, Roys and Agard",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Armstrong, Dittrich, Gundrum, Kitchens and Jacobson; +cosponsored by Senators Tomczyk, Ballweg and Spreitzer",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Taylor, Ballweg, Stroebel and Tomczyk; +cosponsored by Representatives Sortwell, Ortiz-Velez, Allen, Behnke, Binsfeld, Gundrum, Gustafson, Maxey, Myers, Steffen, Subeck and Wichgers",2023-05-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Cowles, Feyen and Spreitzer; +cosponsored by Representatives Swearingen, Behnke, Bodden, Callahan, Green, Michalski, Mursau, Sinicki, Snodgrass, Sortwell, Tittl and Edming",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, C. Anderson, Shankland, J. Anderson, Baldeh, Cabrera, Clancy, Conley, Haywood, Hong, Joers, Ohnstad, Palmeri, Ratcliff, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Larson, L. Johnson, Smith, Agard, Roys, Hesselbein, Spreitzer and Pfaff",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Cowles, Felzkowski, Marklein and Taylor; +cosponsored by Representatives Mursau, Edming, Andraca, Behnke, Donovan, Kitchens, Knodl, Magnafici, Maxey, Ohnstad, Rozar, Sinicki, Spiros, Subeck and Tusler",2023-02-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Armstrong, Pronschinske, Edming, Binsfeld, Brandtjen, Goeben, Green, Gustafson, Magnafici, Moses, Murphy, Mursau, Penterman and Schraa; +cosponsored by Senators Quinn and Nass",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Ballweg, Felzkowski, James, Marklein, Stroebel and Wirch; +cosponsored by Representatives Edming, Armstrong, Brandtjen, Goeben, Gustafson, Joers, Krug, Magnafici, Murphy, Mursau, O'Connor, Rettinger, Schutt, Sinicki, Snodgrass, Tittl and Wichgers",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Allen, Murphy, Armstrong, Behnke, Edming, Gundrum, Gustafson, Knodl, Mursau and Spiros; +cosponsored by Senators Quinn and Cabral-Guevara",2023-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Brooks, Knodl, Armstrong, Brandtjen, Gundrum, Murphy, O'Connor, Rettinger and Steffen; +cosponsored by Senators Jacque, Nass and Stroebel",2023-02-10T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Wimberger, Roys, Felzkowski, James, L. Johnson, Larson, Spreitzer, Taylor, Wanggaard and Wirch; +cosponsored by Representatives Steffen, Tittl, Goyke, C. Anderson, Andraca, Armstrong, Baldeh, Bare, Billings, Brooks, Cabrera, Clancy, Conley, Considine, Donovan, Doyle, Drake, Edming, Emerson, Gundrum, Gustafson, Haywood, Hong, Joers, Kitchens, Krug, Macco, Madison, McGuire, Moore Omokunde, Moses, Mursau, Myers, Novak, O'Connor, Ohnstad, Ortiz-Velez, Ratcliff, Riemer, Rozar, Schmidt, Schraa, Shankland, Shelton, Sinicki, Snodgrass, Snyder, Sortwell, Stubbs, Subeck, Vining and Zimmerman",2023-02-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tranel, Magnafici, Behnke, Brandtjen, Cabrera, Duchow, Green, Gundrum, Kitchens, Moses, Mursau, Myers, Novak, Oldenburg, Pronschinske, Rozar, Schraa and Spiros; +cosponsored by Senator Cabral-Guevara",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tranel, Callahan, Edming, Green, Magnafici, Moses, Mursau, Novak, O'Connor, Penterman, Pronschinske, Rozar and VanderMeer; +cosponsored by Senators Marklein, Ballweg, Felzkowski, Nass, Tomczyk, Stafsholt and Quinn",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hurd, Vining, Behnke, Penterman, Rozar, Schmidt, Joers, Ratcliff, Baldeh, Bare, C. Anderson, Conley, Considine, Drake, Emerson, J. Anderson, S. Johnson, Madison, Mursau, O'Connor, Ohnstad, Palmeri, Shankland, Shelton, Sinicki, Stubbs, Subeck and Summerfield; +cosponsored by Senators Tomczyk and Spreitzer",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Smith, Roys, Hesselbein, Agard and Spreitzer; +cosponsored by Representatives Shelton, Clancy, Hong, C. Anderson, Considine, Baldeh, Joers, Subeck, Sinicki, Ratcliff, J. Anderson and Neubauer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Pronschinske, Binsfeld, Brandtjen, Callahan, Edming, Green, Magnafici, Mursau, O'Connor, Oldenburg, Petryk, Summerfield and VanderMeer; +cosponsored by Senators Wimberger and Cabral-Guevara",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Larson, Smith, Hesselbein, Agard and Carpenter; +cosponsored by Representatives Considine, Shelton, Joers, Hong, C. Anderson, Clancy, Jacobson, Shankland, Bare, Cabrera, Conley, Emerson, Palmeri, Ratcliff, Sinicki, Snodgrass, Subeck, Vining, Stubbs, Moore Omokunde, Madison, J. Anderson and Neubauer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, L. Johnson, Carpenter, Hesselbein, Larson, Pfaff, Roys, Smith, Spreitzer and Taylor; +cosponsored by Representatives Madison, Shelton, Ohnstad, J. Anderson, C. Anderson, Baldeh, Bare, Clancy, Conley, Considine, Drake, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, Moore Omokunde, Myers, Neubauer, Ortiz-Velez, Palmeri, Ratcliff, Sinicki, Snodgrass and Stubbs",2023-10-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, C. Anderson, Jacobson, J. Anderson, Bare, Considine, Drake, Emerson, Joers, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Subeck and Haywood; +cosponsored by Senators Pfaff, Carpenter, Hesselbein, Larson, Roys, Smith, Spreitzer and Taylor",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dallman, Neylon, Allen, Dittrich, Gundrum, Murphy, Mursau, Nedweski, Novak, Rettinger, Steffen and Tusler; +cosponsored by Senators Stafsholt, Tomczyk and Cowles",2023-10-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Agard, Cabral-Guevara, Carpenter, Felzkowski, Hesselbein, Larson, Roys and Spreitzer; +cosponsored by Representatives Conley, Vining, Mursau, C. Anderson, J. Anderson, Andraca, Bare, Billings, Clancy, Considine, Drake, Emerson, Goyke, Gustafson, Hong, Jacobson, Joers, S. Johnson, Madison, Moore Omokunde, Neubauer, O'Connor, Ohnstad, Ortiz-Velez, Ratcliff, Riemer, Shankland, Shelton, Sinicki, Stubbs and Tittl",2023-11-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, L. Johnson, Carpenter, Hesselbein, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Vining, Hong, Considine, Moore Omokunde, Palmeri, J. Anderson, C. Anderson, Baldeh, Bare, Conley, Drake, Emerson, Goyke, Joers, Ohnstad, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Haywood, Jacobson, Clancy, Doyle, Ortiz-Velez, Billings and Neubauer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Ortiz-Velez, Sortwell, Tittl, Gundrum, Cabrera, Joers, Andraca, C. Anderson, Sinicki, Murphy, Stubbs, Allen, Moses, Conley, Gustafson, Brandtjen, Krug and Bodden; +cosponsored by Senators James, Taylor, Spreitzer, Carpenter, Cabral-Guevara, Tomczyk and Ballweg",2023-06-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Goeben, Rozar, Allen, Behnke, Bodden, Brandtjen, Callahan, Dittrich, Edming, Magnafici, Michalski, Murphy, O'Connor, Rettinger, Sapik, Schraa and Schutt; +cosponsored by Senators Nass and Cabral-Guevara",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Smith, Carpenter, Hesselbein, Larson, Roys, Spreitzer and Taylor; +cosponsored by Representatives Snodgrass, Considine, C. Anderson, J. Anderson, Andraca, Behnke, Cabrera, Baldeh, Bare, Billings, Conley, Emerson, Haywood, Hong, Jacobson, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs, Subeck and Vining",2023-07-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Conley, Vining, Mursau, C. Anderson, J. Anderson, Andraca, Bare, Billings, Clancy, Considine, Drake, Emerson, Goyke, Gustafson, Hong, Jacobson, Joers, S. Johnson, Madison, Moore Omokunde, Neubauer, O'Connor, Ohnstad, Ortiz-Velez, Ratcliff, Riemer, Shankland, Shelton, Sinicki, Stubbs and Tittl; +cosponsored by Senators Smith, Agard, Cabral-Guevara, Carpenter, Felzkowski, Hesselbein, Larson, Roys and Spreitzer",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives O'Connor, Rettinger, Penterman, Doyle, Subeck, Green, Wichgers and Allen; +cosponsored by Senators Stafsholt, Spreitzer and Hesselbein",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James and Nass; +cosponsored by Representatives Sortwell, Magnafici, Allen, Armstrong, Brandtjen, Goeben, Gustafson, S. Johnson, Rettinger, Schmidt and Wichgers",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Born, C. Anderson, Andraca, Behnke, Binsfeld, Dittrich, Green, Gundrum, Gustafson, S. Johnson, Kitchens, Knodl, Moses, Murphy, Mursau, Novak, Palmeri, Penterman, Plumer, Sapik, Schraa and Tittl; +cosponsored by Senators Stroebel, Cowles, Feyen, Marklein, Quinn and Tomczyk",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Clancy, Hong, C. Anderson, Considine, J. Anderson, Baldeh, Joers, Neubauer, Ratcliff, Sinicki and Subeck; +cosponsored by Senators Larson, Smith, Roys, Hesselbein, Agard and Spreitzer",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Stafsholt, Cowles, Felzkowski, Hesselbein, Marklein, Pfaff, Smith, Spreitzer, Testin, Quinn and Tomczyk; +cosponsored by Representatives Petryk, Kurtz, Zimmerman, Armstrong, C. Anderson, Considine, Edming, Emerson, Goeben, Green, Jacobson, S. Johnson, Moses, Myers, Nedweski, Novak, O'Connor, Oldenburg, Rozar, Schmidt, Shankland, Spiros, VanderMeer and Wittke",2023-07-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Taylor, Roys, L. Johnson, Carpenter, Larson, Agard, Spreitzer, Pfaff, Wirch and Smith; +cosponsored by Representatives Joers, Sinicki, Moore Omokunde, Bare, Ratcliff, Emerson, Stubbs, Ohnstad, Shelton, Drake, Neubauer, Jacobson, Andraca, J. Anderson, Considine, Conley, Haywood, Myers, Palmeri, C. Anderson, Hong, Madison, Subeck, Shankland, Snodgrass, Vining and Clancy",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Jacque, Cowles, Nass and Stroebel; +cosponsored by Representatives Gustafson, Macco, Allen, Behnke, Binsfeld, Bodden, Brooks, Dittrich, Goeben, Maxey, Murphy, O'Connor, Rettinger, Schmidt, Sortwell, Spiros, Steffen and Zimmerman",2023-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Marklein, Agard, Felzkowski, Hesselbein, Jacque, Knodl, Pfaff, Roys, Spreitzer and Wanggaard; +cosponsored by Representatives Tranel, Gustafson, Plumer, Novak, Allen, C. Anderson, Armstrong, Baldeh, Bare, Behnke, Binsfeld, Cabrera, Conley, Considine, Dittrich, Drake, Edming, Goeben, Green, Gundrum, S. Johnson, Kitchens, Kurtz, Magnafici, Michalski, Moses, Murphy, Mursau, Myers, Nedweski, O'Connor, Oldenburg, Ortiz-Velez, Penterman, Petryk, Ratcliff, Rettinger, Rozar, Schmidt, Schraa, Schutt, Shankland, Sinicki, Snyder, Spiros, Steffen, Stubbs, VanderMeer and Wittke",2023-06-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger and Knodl; +cosponsored by Representatives Callahan, Krug, Baldeh, Donovan, Moses, Mursau, Schmidt and Stubbs",2023-08-25T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative Armstrong,2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Tomczyk and Spreitzer; +cosponsored by Representatives Michalski, Murphy, Behnke, Brandtjen, Dittrich, Goeben, Gundrum, Maxey, O'Connor, Penterman, Rettinger and Jacobson",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Neylon, C. Anderson, J. Anderson, Armstrong, Bare, Behnke, Conley, Considine, Dittrich, Emerson, Gundrum, Joers, Kitchens, Krug, Mursau, O'Connor, Riemer, Rettinger, Schraa, Snodgrass, Snyder, Tittl, Wichgers and Goeben; +cosponsored by Senators Quinn, Spreitzer, Feyen, Hesselbein and Cabral-Guevara",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, Gundrum, C. Anderson, J. Anderson, Baldeh, Bare, Behnke, Conley, Dittrich, Drake, Emerson, Hurd, Joers, Kitchens, Madison, Maxey, Mursau, O'Connor, Ohnstad, Palmeri, Ratcliff, Schraa, Sinicki, Subeck and Wichgers; +cosponsored by Senators Taylor, Wirch and Ballweg",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Felzkowski, Marklein, Stroebel and Tomczyk; +cosponsored by Representatives Tittl, C. Anderson, Armstrong, Brandtjen, Edming, Green, Penterman, Petersen, Magnafici, Murphy, Mursau, Rettinger and VanderMeer",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Ballweg, Cowles and Testin; +cosponsored by Representatives Oldenburg, Petryk, Armstrong, Behnke, Callahan, Dittrich, Donovan, Edming, Goeben, Gundrum, Kitchens, Krug, Macco, Maxey, Melotik, Moses, Murphy, Mursau, Nedweski, Novak, O'Connor, Penterman, Rettinger, Schraa, Snyder, Tusler and VanderMeer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Oldenburg, Novak, Shankland, Spiros, Krug, Green, Mursau, Kurtz, Edming, Kitchens, Andraca, Baldeh, Conley, Behnke, Rettinger, Palmeri, Subeck, Joers and Billings; +cosponsored by Senators Quinn, Cowles, Cabral-Guevara, Testin, Jacque, Wimberger, James and Spreitzer",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Cabral-Guevara; +cosponsored by Representatives O'Connor, Murphy, Vos, Armstrong, Behnke, Bodden, Brandtjen, Goeben, Green, Gundrum, Gustafson, Kitchens, Macco, Maxey, Nedweski, Rozar and Wichgers",2023-07-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Summerfield, Armstrong, Callahan, Edming, Green, Hurd, Krug, Kurtz, Magnafici, Moses, Mursau, Novak, Oldenburg, Petryk, Pronschinske, Rozar, Sapik, Shankland, Snyder, Steffen, Subeck, Swearingen, VanderMeer and Allen; +cosponsored by Senators Quinn, Bradley, James, Nass, Stafsholt, Testin, Tomczyk, Ballweg and Felzkowski",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives McGuire, Joers, Moore Omokunde, Palmeri, Ratcliff, Sinicki and Subeck; +cosponsored by Senators Pfaff, Agard and Wirch",2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor, Jacque, Ballweg and Tomczyk; +cosponsored by Representatives Sortwell, Ortiz-Velez, Baldeh, Behnke, Gundrum, Gustafson, Kitchens, Moses, Myers, Krug, Steffen and Stubbs",2023-07-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Andraca, Allen, C. Anderson, Armstrong, Baldeh, Brandtjen, Conley, Dittrich, Donovan, Haywood, Joers, Mursau, Ohnstad, Ortiz-Velez, Ratcliff, Sinicki and Wichgers; +cosponsored by Senators Jacque, Larson, L. Johnson, Roys and Wanggaard",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Penterman, Gustafson, Brandtjen, Donovan and Sinicki",2023-12-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg, Bradley, Feyen, Marklein, Nass, Stroebel, Testin, Tomczyk and Wanggaard; +cosponsored by Representatives Spiros, Allen, Armstrong, Behnke, Brandtjen, Brooks, Donovan, Duchow, Edming, Green, Gundrum, Knodl, Krug, Michalski, Moses, Novak, O'Connor, Ortiz-Velez, Penterman, Rettinger, Rozar, Snyder and Steffen",2023-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Cowles, Roys and Spreitzer; +cosponsored by Representatives Murphy, Cabrera, Drake, Ohnstad, Rozar, Shankland and Sinicki",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Knodl; +cosponsored by Representatives Bodden, Gustafson, Goeben, Rettinger, Binsfeld, Maxey, Hurd, Michalski, Schmidt, S. Johnson, Allen, Brooks, Callahan and Dittrich",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Smith, Taylor, Carpenter, Pfaff, Roys, Larson, Agard and Spreitzer; +cosponsored by Representatives Joers, Stubbs, Sinicki, Neubauer, Bare, Ratcliff, Emerson, Shelton, Jacobson, Palmeri, Considine, Subeck, Clancy, Hong, J. Anderson, Madison, Billings, Ohnstad, Baldeh, Conley and Shankland",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Bradley, James, Stafsholt, Testin, Tomczyk and Nass; +cosponsored by Representatives Summerfield, Armstrong, Callahan, Edming, Green, Hurd, Krug, Kurtz, Magnafici, Moses, Mursau, Novak, Oldenburg, Petryk, Pronschinske, Rozar, Sapik, Snyder, Steffen, Subeck, Swearingen, VanderMeer and Shankland",2023-05-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Billings, Andraca, Baldeh, Conley, Considine, Doyle, Drake, Emerson, Joers, Madison, Ohnstad, Ratcliff, Shankland and Palmeri; +cosponsored by Senators Smith, Hesselbein, Pfaff and Spreitzer",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hutton, Nass, Hesselbein and Taylor; +cosponsored by Representatives Steffen, Armstrong, Andraca, Baldeh, Cabrera, Donovan, Goeben, S. Johnson, Magnafici, Maxey, Melotik, Murphy, Nedweski, O'Connor, Ohnstad, Ortiz-Velez, Schmidt, Sinicki, Subeck, Wichgers and Wittke",2023-08-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, C. Anderson, J. Anderson, Andraca, Clancy, Madison, Moore Omokunde, Ratcliff, Sinicki, Stubbs, Subeck, Ortiz-Velez and Palmeri; +cosponsored by Senators Larson, Roys and Spreitzer",2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Billings, Considine, Emerson, J. Anderson, Baldeh, Clancy, Conley, Jacobson, Joers, Madison, Neubauer, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs and Subeck; +cosponsored by Senators Smith, Larson, Spreitzer, Roys and Agard",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Cabral-Guevara and Spreitzer; +cosponsored by Representatives Penterman, Madison, Sinicki and Emerson",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rodriguez, Rozar, Behnke, Dittrich, Murphy, Stubbs and Subeck; +cosponsored by Senator Felzkowski",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg and Marklein; +cosponsored by Representatives Penterman, S. Johnson, Allen, C. Anderson, Armstrong, Behnke, Bodden, Conley, Dittrich, Goeben, Gundrum, Kitchens, Kurtz, Moses, Murphy, Oldenburg, Ortiz-Velez, Palmeri, Rettinger, Schmidt, Spiros, Stubbs and Brooks",2023-05-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Conley, Palmeri and Jacobson; +cosponsored by Senators Larson, Smith and Taylor",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Senator LeMahieu,2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Cabral-Guevara, Cowles, Jacque, James, Spreitzer, Testin and Wimberger; +cosponsored by Representatives Oldenburg, Novak, Andraca, Baldeh, Behnke, Conley, Edming, Green, Kitchens, Krug, Kurtz, Mursau, Palmeri, Rettinger, Shankland, Spiros and Subeck",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, Andraca, Conley, Considine, Subeck, Sinicki, Joers, Ratcliff, Ohnstad, Hong, Bare, Palmeri and Neubauer; +cosponsored by Senators Larson, L. Johnson, Roys, Hesselbein, Agard, Carpenter and Spreitzer",2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Donovan, Baldeh, Cabrera, Callahan, Dittrich, Drake, Goyke, Gundrum, S. Johnson, Moore Omokunde, Ohnstad, Petersen, Schmidt and Clancy; +cosponsored by Senators Knodl, Bradley, Carpenter, Cowles, James, L. Johnson, Marklein, Taylor and Testin",2023-09-05T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Emerson, Shankland, J. Anderson, Baldeh, Clancy, Conley, Joers, Madison, Neubauer, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs and Subeck; +cosponsored by Senators Smith, Spreitzer, Roys, Larson and Agard",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Andraca, J. Anderson, Conley, Emerson, Considine, Sinicki, Bare, Cabrera, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Shelton, Stubbs and Haywood; +cosponsored by Senators Taylor, Larson, Hesselbein and L. Johnson",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Bradley, Cowles, Marklein, Stroebel and Tomczyk; +cosponsored by Representatives Duchow, Behnke, Brooks, Dittrich, Donovan, Edming, Kitchens, Magnafici, Michalski, Murphy, Novak, O'Connor, Rettinger, Rodriguez, Rozar, Spiros, Steffen, Wichgers, Wittke and Neylon",2023-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Agard, Carpenter, Cowles, Felzkowski, Hesselbein, Jacque, L. Johnson, Marklein, Pfaff, Roys, Smith, Spreitzer, Taylor, Tomczyk and Wirch; +cosponsored by Representatives Rozar, Allen, Andraca, Armstrong, Baldeh, Bare, Behnke, Binsfeld, Cabrera, Clancy, Dittrich, Drake, Duchow, Edming, Emerson, Goeben, Gundrum, Haywood, Joers, Kitchens, Magnafici, Moses, Murphy, Mursau, Oldenburg, Ortiz-Velez, Penterman, Plumer, Rodriguez, Schutt, Shankland, Shelton, Sinicki, Snodgrass, Spiros, Subeck, Tranel, Vining and Madison",2023-02-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara and Quinn; +cosponsored by Representatives Steffen, Allen, Armstrong, Behnke, Gundrum, Kitchens, O'Connor and Rozar",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Nedweski, O'Connor, Magnafici, Armstrong, Murphy, Goeben, Duchow, Brandtjen, Rozar and Rettinger; +cosponsored by Senators Knodl, Ballweg and Tomczyk",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Katsma, August, Baldeh, Binsfeld, Dittrich, Donovan, Goeben, Krug, Magnafici, Murphy, O'Connor, Ohnstad, Penterman, Rettinger, Sinicki, Spiros, Subeck, Tittl and Tranel",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hurd, Edming, Schraa, Armstrong, Macco, Moses, Novak, Callahan, Tittl, Michalski, O'Connor, Kitchens, Murphy, Rozar, Tranel, Green, Sapik, Mursau, Gundrum, Summerfield, Brandtjen, Duchow, Petryk, Rettinger, Plumer, Brooks, Schmidt, Tusler and Maxey; +cosponsored by Senators Quinn, Wanggaard, Feyen, Jacque, James, Cabral-Guevara, Tomczyk, Cowles and Marklein",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rettinger, Michalski, Donovan, Behnke, Gundrum, Knodl, Murphy, Nedweski, Rozar and Summerfield; +cosponsored by Senators Hutton, Nass and Jacque",2023-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Palmeri, Clancy, Madison, Snodgrass, Shelton, Drake, Stubbs, Sinicki, Cabrera, Baldeh, Ohnstad, Moore Omokunde, J. Anderson, Joers and Considine; +cosponsored by Senators Agard and Taylor",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Bradley, Carpenter, Feyen, Marklein, Spreitzer and Testin; +cosponsored by Representatives Dallman, Kurtz, C. Anderson, Dittrich, Kitchens, Krug, Mursau, Novak, O'Connor, Penterman, Plumer, Schraa, Stubbs and Swearingen",2023-12-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Ratcliff and Palmeri; +cosponsored by Senator Smith",2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Hong, Moore Omokunde, C. Anderson, Clancy, Jacobson, Joers, Madison, Palmeri, Ratcliff, Baldeh, Bare, Cabrera, Conley, Drake, Emerson, Ortiz-Velez, Shelton, Sinicki, Snodgrass, Stubbs and Subeck; +cosponsored by Senators L. Johnson, Roys, Agard, Carpenter, Hesselbein, Spreitzer and Taylor",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kitchens, Billings, J. Anderson, Andraca, Baldeh, Clancy, Conley, Considine, Drake, Emerson, Goyke, Green, Gundrum, Gustafson, Haywood, Joers, Madison, Myers, Ohnstad, Ortiz-Velez, Palmeri, Riemer, Rodriguez, Rozar, Schraa, Shankland, Sinicki, Snyder, Subeck, Vining and Wittke; +cosponsored by Senators James, L. Johnson, Agard, Ballweg, Cowles, Felzkowski, Hesselbein, Larson, Roys, Smith, Spreitzer, Taylor and Wirch",2023-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wittke, Zimmerman, Armstrong, Mursau, Maxey, O'Connor and Jacobson; +cosponsored by Senators Feyen and Wanggaard",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau and O'Connor; +cosponsored by Senators Cowles, Agard, James, Wanggaard and Spreitzer",2024-01-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James and Felzkowski; +cosponsored by Representatives Penterman, Schmidt, Gustafson, C. Anderson, Armstrong, Dittrich, Edming, Goeben, Gundrum, Maxey, Melotik, Mursau, Myers, O'Connor, Ortiz-Velez, Sapik, Steffen, Tittl and Sinicki",2023-12-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rettinger, Dittrich, Edming, Rozar, Armstrong, Brandtjen, Donovan, Gustafson, Maxey, Michalski, Melotik, Murphy, Petryk, Schmidt and Tusler; +cosponsored by Senators Cabral-Guevara and Tomczyk",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Born, Wittke, Vos, Behnke, Binsfeld, Duchow, Katsma, Krug, Kurtz, Magnafici, Maxey, Melotik, Mursau, Novak, O'Connor, Penterman, Plumer, Schmidt, Swearingen and Murphy; +cosponsored by Senators Marklein, Cowles, LeMahieu, Ballweg, Feyen, James, Testin, Wimberger and Felzkowski",2024-01-10T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, L. Johnson, Agard, Carpenter, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Subeck, Joers, C. Anderson, J. Anderson, Andraca, Conley, Considine, Emerson, Jacobson, Madison, Mursau, Ortiz-Velez, Ratcliff, Stubbs and Shankland",2023-12-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Kitchens, Armstrong, Behnke, Binsfeld, Brandtjen, Cabrera, Duchow, Goeben, Gustafson, Krug, Michalski, Murphy, Mursau, Ohnstad, Palmeri, Penterman, Rettinger, Schmidt, Wichgers, Edming, Schraa and Sinicki; +cosponsored by Senators Wanggaard, Bradley, Nass, Roys, Taylor and Spreitzer",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, James, Quinn, Stafsholt and Wanggaard; +cosponsored by Representatives Hurd, Krug, Macco, Mursau, O'Connor, Petryk, Schmidt and Wittke",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Behnke, S. Johnson, Kitchens and O'Connor; +cosponsored by Senator Cowles",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Ballweg, Cabral-Guevara, Carpenter, Felzkowski, Hesselbein, L. Johnson, Pfaff, Roys, Smith, Spreitzer, Taylor, Wirch and Larson; +cosponsored by Representatives Neubauer, Baldeh, Bare, J. Anderson, Conley, Considine, Doyle, Emerson, Goyke, Hong, C. Anderson, Joers, Moore Omokunde, Ortiz-Velez, Ratcliff, Sinicki, Snodgrass, Stubbs, Subeck, Clancy and Palmeri",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives S. Johnson, Joers, Ohnstad, Considine, Sinicki, Andraca, Penterman, Donovan and Rozar; +cosponsored by Senators James, Spreitzer, Roys and Ballweg",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, Hesselbein, Felzkowski, Cowles, L. Johnson, Marklein, Ballweg and Spreitzer; +cosponsored by Representatives VanderMeer, Dittrich, Armstrong, Bodden, Brooks, Callahan, Gustafson, Jacobson, Kitchens, Mursau, O'Connor, Penterman, Plumer, Rozar, Wittke and Brandtjen",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Moore Omokunde, Palmeri, Clancy, Ratcliff, Baldeh, Bare, Billings, Cabrera, Conley, Drake, Shelton, Sinicki, Snodgrass, Stubbs, J. Anderson, Emerson, Hong, Jacobson, Joers, Ohnstad, Shankland, Subeck and Haywood; +cosponsored by Senators Roys, Larson, Agard, Carpenter, Hesselbein, L. Johnson and Spreitzer",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Armstrong, Macco, Behnke, Donovan, Hurd, Maxey, Mursau, O'Connor, VanderMeer and Zimmerman; +cosponsored by Senators Feyen and Ballweg",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, O'Connor, Armstrong, Kitchens, Mursau and Spiros; +cosponsored by Senators Cowles, Ballweg, Marklein, Nass and Smith",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Larson and Spreitzer; +cosponsored by Representatives Bare, Joers, Palmeri, Clancy, Conley, Considine, Emerson, Jacobson, Madison, Novak, Ratcliff and Shelton",2024-03-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Larson, Roys and Agard; +cosponsored by Representatives Palmeri, Doyle, C. Anderson, Baldeh, Ohnstad, Bare, Behnke, Considine, Emerson, Gustafson, Joers, O'Connor and Ratcliff",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor, James, Agard, Carpenter, Larson, Roys and Spreitzer; +cosponsored by Representatives Macco, Ortiz-Velez, Kitchens, Conley, Goyke, O'Connor, C. Anderson, J. Anderson, Baldeh, Bare, Considine, Emerson, Hong, Joers, Madison, Mursau, Neubauer, Ohnstad, Snyder, Sinicki, Jacobson and Palmeri",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Rozar, Hurd, Behnke, Schmidt, O'Connor, Mursau, Melotik, Goeben, Edming and S. Johnson; +cosponsored by Senators Tomczyk, Cabral-Guevara and Cowles",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Haywood, Clancy, Palmeri, Baldeh, Bare, Cabrera, Conley, Drake, Shelton, Sinicki, Snodgrass, Stubbs, J. Anderson, Billings, Emerson, Hong, Jacobson, Joers, Moore Omokunde, Ohnstad and Subeck; +cosponsored by Senators L. Johnson, Agard, Carpenter, Hesselbein, Larson and Smith",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Ballweg, Felzkowski, Feyen, James, Pfaff, Testin, Wimberger and Wanggaard; +cosponsored by Representatives Summerfield, Swearingen, Armstrong, Binsfeld, Callahan, Considine, Edming, Green, Hurd, S. Johnson, Kitchens, Magnafici, Mursau, Novak, O'Connor, Penterman, Plumer, Pronschinske, Sapik, Schmidt, Schraa, Tranel, Tusler, Sinicki and Conley",2023-06-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gundrum, Stubbs, C. Anderson, Baldeh, Behnke, Brandtjen, Callahan, Conley, Considine, Edming, Emerson, Hurd, Kitchens, Krug, Maxey, Murphy, Mursau, O'Connor, Schraa, Subeck and Wichgers; +cosponsored by Senators Knodl, Ballweg, Taylor, Testin and Wirch",2024-01-18T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives August, Kitchens, O'Connor, Subeck, Krug, Plumer, Novak, Penterman, Hurd, Binsfeld, Allen, Rettinger, Murphy, Brandtjen, Melotik, Mursau, Gustafson, Petryk, Michalski, Schmidt and Dittrich; +cosponsored by Senators Felzkowski, Bradley, Cabral-Guevara and Spreitzer",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Ballweg, Felzkowski and Nass; +cosponsored by Representatives Summerfield, Armstrong, Behnke, Bodden, Brandtjen, Conley, Edming, Gundrum, Maxey, Murphy, Petryk and Wichgers",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Ballweg, Spreitzer and Taylor; +cosponsored by Representatives Oldenburg, Moses, Mursau and Novak",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Allen, Donovan, Armstrong, Behnke, Binsfeld, Bodden, Brandtjen, Brooks, Gundrum, Gustafson, Maxey, O'Connor, Schmidt and Schraa; +cosponsored by Senators Quinn, Knodl, Cabral-Guevara, Nass, Stafsholt and Tomczyk",2023-08-11T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee for Review of Administrative Rules,2023-02-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Pfaff, L. Johnson, Roys, Taylor, Carpenter, Spreitzer and Larson; +cosponsored by Representatives Hong, C. Anderson, Palmeri, Jacobson, Shelton, Emerson, Conley, Sinicki, Considine, Snodgrass, Ratcliff, Joers, Shankland, Andraca, Ortiz-Velez, Ohnstad, J. Anderson, Drake, Moore Omokunde, Bare, Madison, Clancy and Subeck",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Ballweg, Cowles, James, Marklein, Spreitzer and Tomczyk; +cosponsored by Representatives Moses, Magnafici, Zimmerman, Dittrich, Donovan, Emerson, Goeben, Green, Gustafson, Joers, Maxey, Mursau, O'Connor, Ohnstad, Ortiz-Velez, Penterman, Petryk, Sapik, Shankland, Sinicki, Stubbs, Subeck and Tittl",2023-09-21T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara and Felzkowski; +cosponsored by Representatives Duchow, Dittrich, Kitchens, Murphy, Mursau, O'Connor and Rozar",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, L. Johnson, Agard, Carpenter, Hesselbein, Larson, Pfaff, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Subeck, Drake, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Considine, Doyle, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, Madison, McGuire, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Shankland, Shelton, Sinicki, Snodgrass, Stubbs and Vining",2023-02-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Stroebel, Ballweg, Jacque and Nass; +cosponsored by Representatives Neylon, Gustafson, Tittl, Baldeh, Green, Krug, Murphy, O'Connor, Penterman, Rettinger, Rozar, Spiros and Tranel",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Cowles; +cosponsored by Representatives Mursau, Behnke, S. Johnson, Kitchens and O'Connor",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Tomczyk, Ballweg, Felzkowski, Marklein and Nass; +cosponsored by Representatives Binsfeld, Maxey, Allen, Bodden, Brandtjen, Brooks, Dittrich, Donovan, Edming, Gundrum, Gustafson, Knodl, Macco, Magnafici, Moses, Nedweski, O'Connor, Penterman, Petersen, Plumer, Rettinger, Rozar, Schmidt, Schutt, Sortwell, Wichgers and Duchow",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Bradley, Hutton, Nass and Stroebel; +cosponsored by Representatives Allen, Knodl, Behnke, Bodden, Brooks, Duchow, Donovan, Gundrum, Murphy, Penterman, Rettinger, Rozar, Spiros, Steffen, O'Connor and Wichgers",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Katsma; +cosponsored by Senator Marklein",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Roys; +cosponsored by Representatives Stubbs, Madison, Baldeh, Drake, Moore Omokunde and Subeck",2024-03-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Agard, Carpenter, Hesselbein, Larson and Smith; +cosponsored by Representatives Madison, Haywood, Clancy, Palmeri, Baldeh, Bare, Cabrera, Conley, Drake, Shelton, Sinicki, Snodgrass, Stubbs, J. Anderson, Billings, Emerson, Hong, Jacobson, Joers, Moore Omokunde, Ohnstad and Subeck",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Ratcliff, Joers, Madison, Clancy, Palmeri, Jacobson, C. Anderson, J. Anderson and Considine; +cosponsored by Senators Spreitzer and Agard",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Roys, Pfaff, Agard, Carpenter, L. Johnson, Larson, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Subeck, Drake, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Considine, Doyle, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, Madison, McGuire, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Shankland, Shelton, Sinicki, Snodgrass, Stubbs and Vining",2023-07-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Armstrong, Baldeh, Behnke, Billings, Callahan, Conley, Considine, Dittrich, Donovan, Doyle, Goeben, Gustafson, Hong, Joers, Kitchens, Mursau, Novak, O'Connor, Ohnstad, Palmeri, Ratcliff, Rettinger, Rozar, Sapik, Snodgrass, Stubbs, Subeck, Plumer, Sinicki, Clancy and Jacobson; +cosponsored by Senators Ballweg, James, Carpenter, Hesselbein, L. Johnson, Larson, Roys, Smith, Spreitzer and Tomczyk",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Nedweski, Macco, Armstrong, Binsfeld, Brandtjen, Dittrich, Edming, Gundrum, Gustafson, Kitchens, Moses, Murphy, O'Connor, Rettinger, Snodgrass, Steffen and Wichgers; +cosponsored by Senators Hutton, Ballweg, Cabral-Guevara, Nass, Spreitzer, Wanggaard, Marklein and Knodl",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Behnke, Edming, Green and Rettinger; +cosponsored by Senators Tomczyk and Nass",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Ratcliff, Joers, Drake, Stubbs, Conley, Snodgrass, Cabrera, Emerson, Shelton, Sinicki, Baldeh, Clancy, Madison, Palmeri, Ohnstad, Billings, Moore Omokunde, C. Anderson, J. Anderson, Jacobson and Vining; +cosponsored by Senators Smith, L. Johnson, Spreitzer, Hesselbein, Agard, Larson and Taylor",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Ballweg, Felzkowski, Feyen, Marklein, Quinn and Wanggaard; +cosponsored by Representatives Swearingen, Green, Armstrong, Behnke, Bodden, Edming, Magnafici, Moses, O'Connor, Palmeri, Penterman, Sapik, Sortwell, Summerfield, Tusler and VanderMeer",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Ballweg and Wanggaard; +cosponsored by Representatives Callahan, Armstrong, Behnke, Bodden, Dittrich, Doyle, Edming, Moses, Rozar, Schmidt and Jacobson",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Felzkowski and Nass; +cosponsored by Representatives Goeben, Allen, Behnke, Brandtjen, Dittrich, Edming, Maxey, Murphy, Rettinger, Sapik, Schutt and Wichgers",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson and Roys; +cosponsored by Representatives Clancy, Hong, Madison, Palmeri, Baldeh, Cabrera, Drake, Emerson, Stubbs, Snodgrass, Shelton, Sinicki, Moore Omokunde, J. Anderson, Conley, Considine, Joers, C. Anderson, Jacobson and Subeck",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, Shankland, Allen, C. Anderson, J. Anderson, Andraca, Bare, Cabrera, Clancy, Conley, Considine, Emerson, Goyke, Jacobson, Joers, Kitchens, Madison, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Sinicki, Shelton, Snodgrass, Snyder, Stubbs, Subeck, Tusler, Vining and Wichgers; +cosponsored by Senators Agard, Carpenter, Hesselbein, James, L. Johnson, Larson, Roys, Smith and Spreitzer",2023-05-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Plumer, Michalski, Murphy, O'Connor and Steffen; +cosponsored by Senator Tomczyk",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Joers, Allen, C. Anderson, Bare, Brandtjen, Conley, Considine, Dittrich, Edming, Emerson, Goeben, Goyke, Gustafson, Jacobson, S. Johnson, Madison, Magnafici, Maxey, Michalski, Murphy, Mursau, O'Connor, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Sinicki, Subeck, Tittl and Haywood; +cosponsored by Senators Testin, Hesselbein, Cabral-Guevara, Carpenter, James, Marklein, Nass and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives VanderMeer, Dittrich, Armstrong, Bodden, Brooks, Callahan, Gustafson, Jacobson, Kitchens, Mursau, O'Connor, Penterman, Plumer, Rozar and Wittke; +cosponsored by Senators Wimberger, Hesselbein, Felzkowski, Cowles, L. Johnson and Marklein",2023-11-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and Wimberger; +cosponsored by Representatives Rodriguez, Armstrong, Baldeh, Behnke, Brooks, Duchow, Green, Gustafson, Mursau, Shankland and Subeck",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Carpenter, Agard, Spreitzer and Smith; +cosponsored by Representatives Subeck, McGuire, Bare, Considine, Emerson, Joers, Moore Omokunde, Neubauer, Ohnstad, Palmeri, Ratcliff, Shankland, Shelton, Stubbs, Vining and Jacobson",2024-02-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Ballweg, Testin, Quinn and Felzkowski; +cosponsored by Representatives Kurtz, Summerfield, Dittrich, Green, Maxey, Melotik, Michalski, Mursau, Novak, O'Connor, Palmeri, Rozar, Schmidt, Snodgrass and Tranel",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Felzkowski, Ballweg, Quinn and Tomczyk; +cosponsored by Representatives Callahan, Swearingen, Edming, Green, Magnafici, Mursau, Oldenburg, Rozar, Sapik, Schmidt, Tusler, Armstrong and Tittl",2023-03-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, C. Anderson, Armstrong, Brandtjen, Edming, Green, Penterman, Petersen, Magnafici, Murphy, Mursau, Rettinger and VanderMeer; +cosponsored by Senators Stafsholt, Felzkowski, Marklein, Stroebel and Tomczyk",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Ballweg, Cowles, James, L. Johnson, Larson, Marklein, Pfaff, Roys, Smith and Spreitzer; +cosponsored by Representatives Zimmerman, Behnke, Brooks, Dallman, Edming, Green, Magnafici, Mursau, Oldenburg, Summerfield, Wichgers, Wittke and Rozar",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Schmidt, Armstrong, Born, C. Anderson, Edming, Goeben, Gundrum, Gustafson, Krug, Magnafici, Mursau, Nedweski, Novak, O'Connor, Oldenburg, Penterman, Sortwell and Stubbs; +cosponsored by Senators Ballweg, Cabral-Guevara, Cowles, Feyen, Marklein, Nass and Testin",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Committee on Rules,2024-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Katsma; +cosponsored by Senator Marklein",2024-02-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Cowles, Felzkowski, Feyen, Jacque, Marklein and Stroebel; +cosponsored by Representatives Goeben, Sortwell, Armstrong, Behnke, Bodden, Born, Dittrich, Donovan, Gustafson, Kitchens, Kurtz, Murphy, Mursau, O'Connor, Oldenburg, Penterman, Rozar, Schmidt, Schraa, Tittl and Wichgers",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative Petryk,2024-02-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Allen, Armstrong, Behnke, Brandtjen, Dittrich, Goeben, Michalski, Murphy, Mursau, O'Connor, Rettinger, Rozar and Wichgers; +cosponsored by Senators Quinn, Nass and Tomczyk",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gundrum, Armstrong, Dittrich, Murphy, Penterman, Rettinger and Steffen; +cosponsored by Senators Stroebel, Ballweg and Knodl",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Dittrich, Goeben, Maxey, Melotik, Michalski, Murphy, Mursau, Nedweski, O'Connor, Penterman, Rettinger and Brandtjen; +cosponsored by Senators Wanggaard, Jacque, Marklein and Nass",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Nass and Cabral-Guevara; +cosponsored by Representatives Sortwell, Goeben, Rozar, Allen, Behnke, Bodden, Brandtjen, Brooks, Callahan, Edming, Magnafici, Maxey, Michalski, Moses, Murphy, O'Connor, Rettinger, Sapik, Schraa and Schutt",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Nass, Jagler, Jacque, Taylor, Cabral-Guevara, Quinn and Feyen; +cosponsored by Representatives Dittrich, Murphy, Maxey, Conley, Donovan, Neylon, Spiros, Moses, Tittl, Baldeh, Hurd, Wichgers, Wittke and Edming",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator James; +cosponsored by Representatives Dittrich, Brandtjen, S. Johnson and Murphy",2023-05-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives O'Connor, Murphy and Macco; +cosponsored by Senators Knodl and Wanggaard",2023-11-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Behnke, Binsfeld, Goeben, S. Johnson, Rettinger, Rozar and Schutt; +cosponsored by Senators Stroebel, Ballweg and Quinn",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor, Agard, L. Johnson, Carpenter, Hesselbein, Larson, Roys, Smith and Spreitzer; +cosponsored by Representatives Andraca, Stubbs, C. Anderson, J. Anderson, Baldeh, Bare, Billings, Cabrera, Conley, Considine, Donovan, Doyle, Goyke, Hong, Jacobson, Joers, Moore Omokunde, Myers, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Snodgrass, Subeck and Vining",2023-06-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goeben, Hurd, Binsfeld, Brandtjen, Edming, Green, Gundrum, Gustafson, Krug, Magnafici, Maxey, O'Connor, Penterman, Petersen, Petryk, Plumer, Rozar, Schmidt, Steffen, Summerfield, Swearingen, Tranel and VanderMeer; +cosponsored by Senators Quinn, Cabral-Guevara and Stroebel",2023-09-01T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Ortiz-Velez, Behnke, Brandtjen, Cabrera, Edming, Magnafici, Murphy, Steffen, Subeck and Krug; +cosponsored by Senators Jacque, Taylor and Spreitzer",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives S. Johnson, Kitchens, Bare, Behnke, Brandtjen, Cabrera, Conley, Considine, Emerson, Green, Joers, Murphy, O'Connor, Penterman, Mursau, Stubbs and Palmeri; +cosponsored by Senators Quinn, Hesselbein, Ballweg, Cowles, Felzkowski, Feyen, Roys, Spreitzer, Stroebel, Tomczyk and Wanggaard",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Hutton and Jagler; +cosponsored by Representative Vos",2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Jacque and Spreitzer; +cosponsored by Representatives Melotik, Armstrong, Murphy, O'Connor and Tranel",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Ballweg, Cabral-Guevara, Felzkowski, Hutton, Marklein, Quinn, Spreitzer and Tomczyk; +cosponsored by Representatives VanderMeer, Magnafici, Considine, Armstrong, Baldeh, Callahan, Dittrich, Doyle, Goeben, Green, Gundrum, Joers, Kitchens, Maxey, O'Connor, Penterman, Rettinger, Schmidt, Spiros, Stubbs, Tittl, Wichgers, Summerfield and Plumer",2023-08-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Billings, Oldenburg, Doyle, Pronschinske and Tranel; +cosponsored by Senators Marklein, Smith and Pfaff",2024-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Armstrong, Binsfeld, Edming, Green, Kitchens, Murphy, Mursau, Myers, Novak, O'Connor, Palmeri, Petryk, Penterman, Rettinger, Rozar, Schraa, Shelton, Sinicki, Spiros, Steffen, Tittl, Tranel and VanderMeer; +cosponsored by Senators Feyen, Ballweg, Cowles, Marklein, Nass, Spreitzer, Wirch and Felzkowski",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators LeMahieu, Agard, Ballweg, Bradley, Cabral-Guevara, Carpenter, Cowles, Felzkowski, Feyen, Hesselbein, Jacque, Jagler, Marklein, Nass, Roys, Spreitzer, Stroebel and Taylor; +cosponsored by Representatives Katsma, Bodden, Allen, August, Behnke, Binsfeld, Born, Brandtjen, Dittrich, Duchow, Green, Krug, Magnafici, Murphy, Mursau, O'Connor, Ohnstad, Penterman, Petryk, Rettinger, Schraa, Sinicki, Spiros, Stubbs, Swearingen, VanderMeer, Vos and Wittke",2023-06-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Gustafson, Allen, Armstrong, August, Binsfeld, Born, Dittrich, Donovan, Duchow, Edming, Goeben, Green, S. Johnson, Kitchens, Krug, Magnafici, Maxey, Michalski, Moses, Nedweski, Neylon, O'Connor, Penterman, Rettinger, Rozar, Schutt, Spiros, Swearingen, Tusler and Brandtjen; +cosponsored by Senators Wanggaard, Ballweg, Bradley, Marklein, Nass, Testin and Tomczyk",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Knodl; +cosponsored by Representatives Binsfeld, O'Connor, Allen, Armstrong, August, Bodden, Callahan, Dallman, Dittrich, Donovan, Duchow, Edming, Goeben, Green, Gundrum, Gustafson, Hurd, S. Johnson, Krug, Katsma, Macco, Magnafici, Maxey, Melotik, Michalski, Moses, Penterman, Petersen, Petryk, Plumer, Pronschinske, Rettinger, Rozar, Sapik, Schmidt, Schutt, Snyder, Spiros, Sortwell, Steffen, Swearingen, Summerfield, Tittl, Tusler, Vos, Wittke and Zimmerman",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, L. Johnson, Agard, Hesselbein, Larson, Pfaff, Spreitzer and Wirch; +cosponsored by Representatives Bare, Riemer, C. Anderson, J. Anderson, Baldeh, Cabrera, Conley, Considine, Jacobson, Joers, Moore Omokunde, Myers, Ohnstad, Ortiz-Velez, Palmeri, Shankland, Sinicki, Haywood and Clancy",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Cabral-Guevara and Taylor; +cosponsored by Representatives Sortwell, Tittl, Armstrong, Baldeh, Brandtjen, Donovan, Goeben, Gundrum, Michalski, Moses, Mursau, Penterman, Schmidt and Steffen",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Representatives Vos and August,2023-01-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Jacobson, Considine, C. Anderson, J. Anderson, Andraca, Bare, Clancy, Conley, Drake, Emerson, Joers, Madison, Moore Omokunde, Ohnstad, Palmeri, Ratcliff, Shankland, Sinicki, Snodgrass, Subeck, Haywood and Neubauer; +cosponsored by Senators Pfaff, Hesselbein, Larson, Roys, Smith, Spreitzer and Taylor",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, James, Ballweg, Cabral-Guevara, Felzkowski, Spreitzer, Testin, Tomczyk and Quinn; +cosponsored by Representatives Moses, Summerfield, Callahan, C. Anderson, Brooks, Dittrich, Donovan, Edming, Green, Gundrum, Jacobson, Kitchens, Krug, Maxey, Murphy, Mursau, Novak, O'Connor, Petryk, Rozar, Sapik, Shankland, Spiros, Tranel, Zimmerman and Wichgers",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Representatives Vos and August,2023-01-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Swearingen, Green, Behnke, Bodden, Edming, Magnafici, O'Connor, Penterman, Sapik, Sortwell and VanderMeer; +cosponsored by Senators Stafsholt, Cowles, Felzkowski, Marklein and Testin",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives VanderMeer, Magnafici, Considine, Armstrong, Baldeh, Callahan, Dittrich, Doyle, Goeben, Green, Gundrum, Joers, Kitchens, Maxey, O'Connor, Penterman, Rettinger, Schmidt, Spiros, Stubbs, Summerfield, Tittl, Wichgers and Plumer; +cosponsored by Senators Stafsholt, Ballweg, Cabral-Guevara, Felzkowski, Hutton, Marklein, Quinn, Spreitzer, Tomczyk and Larson",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, S. Johnson, Brandtjen and Murphy; +cosponsored by Senator James",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators LeMahieu, Kapenga, Feyen, Agard and Smith",2023-01-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski and Ballweg; +cosponsored by Representatives Schutt, Dittrich, Bare, Donovan, Mursau, Rettinger, Rozar and Subeck",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler and Ortiz-Velez; +cosponsored by Senators Wanggaard and Taylor",2024-01-16T06:00:00+00:00,['introduction'],WI,2023 +Introduced privileged by Senator Hesselbein,2024-05-14T05:00:00+00:00,[],WI,2023 +"Introduced by Senators James, Taylor, Cabral-Guevara, Felzkowski, Quinn and Spreitzer; +cosponsored by Representatives Moses, Rozar, Baldeh, Brandtjen, Cabrera, Conley, Gustafson, Maxey, Murphy, O'Connor, Ohnstad, Ortiz-Velez, Ratcliff, Spiros, Subeck, Tusler and Melotik",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, L. Johnson, Agard, Carpenter, Hesselbein, Larson, Roys and Smith; +cosponsored by Representatives Subeck, Gustafson, Stubbs, Andraca, C. Anderson, J. Anderson, Armstrong, Bare, Behnke, Billings, Cabrera, Conley, Considine, Donovan, Doyle, Goyke, Hong, Jacobson, Joers, Moore Omokunde, Myers, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Vining and Drake",2023-06-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Hong, C. Anderson, Bare, Clancy, Jacobson, Joers, Madison, Palmeri, Ratcliff, J. Anderson, Baldeh, Cabrera, Conley, Considine, Emerson, Goyke, Haywood, Moore Omokunde, Neubauer, Ohnstad, Sinicki, Snodgrass, Stubbs and Vining; +cosponsored by Senators Larson, Agard, Hesselbein, L. Johnson, Roys, Smith and Spreitzer",2023-03-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Behnke, Conley, Dittrich, Murphy, Myers, Sinicki, Snodgrass, Stubbs, Subeck and Wichgers; +cosponsored by Senators Ballweg, Cowles and Testin",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley, Nass, Ballweg, Felzkowski, Jacque, Jagler, Marklein, Quinn, Stafsholt, Stroebel, Testin, Tomczyk, Wanggaard and Cabral-Guevara; +cosponsored by Representatives August, Gustafson, Allen, Armstrong, Behnke, Binsfeld, Bodden, Born, Brandtjen, Brooks, Callahan, Dallman, Dittrich, Duchow, Edming, Goeben, Green, Gundrum, Hurd, S. Johnson, Magnafici, Maxey, Melotik, Michalski, Moses, Murphy, Mursau, Nedweski, O'Connor, Penterman, Petersen, Plumer, Rettinger, Rozar, Schmidt, Schraa, Schutt, Snyder, Summerfield, Swearingen and Wittke",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jagler, Ballweg, Stroebel, Marklein and Nass; +cosponsored by Representatives Schutt, Goeben, Baldeh, Dittrich, Rozar, O'Connor, Rettinger, Brandtjen and Behnke",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schutt, Behnke, Bodden, Donovan, Goeben, Green, Gustafson, Hurd, Kitchens, Kurtz, Macco, Melotik, Michalski, Moses, Murphy, Mursau, Nedweski, O'Connor, Penterman, Plumer, Rettinger and Wichgers; +cosponsored by Senators Tomczyk, Cowles, Marklein, Nass, Stroebel and Wanggaard",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Cowles, Felzkowski, Marklein, Pfaff and Wanggaard; +cosponsored by Representatives Oldenburg, Plumer, Brooks, Knodl, Michalski, Mursau, Nedweski, Rodriguez and Subeck",2023-02-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Oldenburg, Novak, Shankland, Tranel, C. Anderson, Considine, Hurd, Jacobson, Mursau, Schmidt, VanderMeer, Bare, Joers, Krug, Nedweski, Penterman, Subeck, Myers and Pronschinske; +cosponsored by Senators Testin, Taylor, Pfaff, Spreitzer, Ballweg, Hesselbein, Marklein, Quinn, Smith, Tomczyk, Carpenter, Roys, Wanggaard and Cowles",2023-03-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Stafsholt; +cosponsored by Representative Zimmerman",2024-01-10T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Macco, Gundrum, S. Johnson, Michalski, O'Connor, Ortiz-Velez and Rozar; +cosponsored by Senator Wanggaard",2023-10-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Oldenburg, Petryk, Andraca, Armstrong, Callahan, Dittrich, Drake, Gundrum, Hurd, Jacobson, S. Johnson, Kitchens, Magnafici, Michalski, Moses, Murphy, Mursau, Novak, O'Connor, Penterman, Rettinger, Shankland, Sinicki and Edming; +cosponsored by Senators Feyen, Cowles, Jacque and Taylor",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Callahan, Behnke, Emerson, Goeben, Nedweski, Penterman, Rozar, Sinicki, Snyder, Spiros, Wichgers and Edming; +cosponsored by Senators Testin, Ballweg, Cowles, Taylor and Spreitzer",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representative Sinicki",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives August, Bodden, Sortwell, Dittrich, Allen, Steffen, Plumer, Hurd, Maxey, O'Connor, Rettinger, Schutt, Armstrong, Magnafici, Michalski, Nedweski, Snyder, Petersen, Rozar, Gundrum, Behnke, Mursau, Penterman, Swearingen, Edming, Murphy, Brooks, Binsfeld, Callahan, Green, Summerfield, Moses, Donovan, Dallman, Schmidt, Goeben, Wittke, Duchow, Melotik, S. Johnson, Brandtjen, Born and Gustafson; +cosponsored by Senators Wimberger, Wanggaard, Nass, Stroebel, Feyen, Ballweg, Testin, Marklein, Cowles, Felzkowski, Tomczyk, Stafsholt and Cabral-Guevara",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Katsma, Murphy, O'Connor, Allen, Behnke, Dittrich, Goeben, Gundrum, Novak, Penterman and Rettinger; +cosponsored by Senators Stafsholt, Cabral-Guevara, Felzkowski, Marklein and Taylor",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Hesselbein, Cabral-Guevara, Carpenter, James, Marklein, Nass and Spreitzer; +cosponsored by Representatives Duchow, Joers, Allen, C. Anderson, Bare, Brandtjen, Conley, Considine, Dittrich, Edming, Emerson, Goeben, Goyke, Gustafson, Jacobson, S. Johnson, Madison, Magnafici, Maxey, Michalski, Murphy, Mursau, O'Connor, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Sinicki, Subeck and Tittl",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Oldenburg, Plumer, Brooks, Knodl, Michalski, Mursau, Nedweski, Rodriguez and Subeck; +cosponsored by Senators Ballweg, Cowles, Felzkowski, Marklein, Pfaff and Wanggaard",2023-02-28T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Wirch, Ballweg, Bradley, Cabral-Guevara, Carpenter, Cowles, Felzkowski, Feyen, Hesselbein, James, Larson, Marklein, Nass, Pfaff, Roys, Spreitzer, Taylor and Wanggaard; +cosponsored by Representatives Kurtz, Moore Omokunde, Riemer, Vining, Edming, C. Anderson, Andraca, Bare, Binsfeld, Brandtjen, Callahan, Conley, Considine, Dittrich, Donovan, Doyle, Drake, Duchow, Emerson, Gundrum, Gustafson, Joers, S. Johnson, Kitchens, Krug, Macco, Magnafici, Melotik, Murphy, Mursau, Nedweski, Novak, O'Connor, Ohnstad, Ortiz-Velez, Palmeri, Rettinger, Rozar, Schmidt, Shankland, Shelton, Sinicki, Snodgrass, Spiros, Steffen, Stubbs, Subeck and Wichgers",2023-11-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Andraca, Baldeh, Considine, Emerson, Joers, Moore Omokunde, Ratcliff, Sinicki and Palmeri; +cosponsored by Senators Smith and Spreitzer",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Donovan, Kurtz, Spiros, Allen, Armstrong, Behnke, Brandtjen, Callahan, Dallman, Dittrich, Edming, Goeben, Green, Gundrum, Magnafici, Maxey, Michalski, Mursau, Nedweski, Novak, O'Connor, Oldenburg, Penterman, Petryk, Rettinger, Sapik, Schutt, Shankland, Sinicki, Tittl, Tusler, VanderMeer, Wichgers, Wittke, Zimmerman, Melotik and Jacobson; +cosponsored by Senators Stafsholt, Wanggaard, James, Ballweg, Cabral-Guevara, Felzkowski, Feyen, Hutton, Marklein, Nass, Pfaff, Quinn and Testin",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, Considine, C. Anderson, J. Anderson, Andraca, Baldeh, Behnke, Cabrera, Conley, Emerson, Haywood, Hong, Jacobson, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs, Subeck, Vining and Madison; +cosponsored by Senators Pfaff, Agard, Carpenter, Hesselbein, Larson, Roys and Spreitzer",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Gustafson, Stubbs, Andraca, C. Anderson, J. Anderson, Armstrong, Bare, Behnke, Billings, Cabrera, Conley, Considine, Donovan, Doyle, Goyke, Hong, Jacobson, Joers, Moore Omokunde, Myers, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Vining and Drake; +cosponsored by Senators Spreitzer, L. Johnson, Agard, Carpenter, Hesselbein, Larson, Roys and Smith",2023-07-17T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Senator Jacque,2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Neubauer, Snodgrass, Cabrera, Ratcliff, Clancy, C. Anderson, J. Anderson, Baldeh, Bare, Conley, Considine, Drake, Emerson, Hong, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Shankland, Shelton, Sinicki and Subeck; +cosponsored by Senators Spreitzer, Carpenter, Roys, Agard, Hesselbein, L. Johnson, Larson, Smith and Taylor",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gundrum, Spiros, Armstrong, Callahan, Donovan, Rettinger, Dallman and Kurtz; +cosponsored by Senator Tomczyk",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and Stroebel; +cosponsored by Representatives Gustafson, Neylon, Tittl, Baldeh, Green, Krug, Murphy, O'Connor, Rettinger, Rozar, Spiros and Tranel",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Felzkowski; +cosponsored by Representative Callahan",2023-09-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Katsma, Bodden, Allen, August, Behnke, Binsfeld, Born, Brandtjen, Dittrich, Duchow, Green, Krug, Magnafici, Murphy, Mursau, O'Connor, Ohnstad, Penterman, Petryk, Rettinger, Schraa, Sinicki, Spiros, Stubbs, Swearingen, VanderMeer, Vos and Wittke; +cosponsored by Senators LeMahieu, Agard, Ballweg, Bradley, Cabral-Guevara, Carpenter, Cowles, Felzkowski, Feyen, Hesselbein, Jacque, Jagler, Marklein, Nass, Roys, Spreitzer, Stroebel and Taylor",2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, Clancy, Subeck, C. Anderson, Emerson, Conley, Sinicki, Moore Omokunde, Hong, J. Anderson, Bare and Ohnstad; +cosponsored by Senators Agard, Roys and L. Johnson",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives O'Connor, Gundrum, Rozar, Penterman, Petryk, Green, Donovan, Moses, Edming, Binsfeld, Dittrich, Murphy, Plumer, Knodl, Macco, Bodden, Petersen, Wichgers and Rettinger; +cosponsored by Senators Feyen, Bradley and Felzkowski",2023-04-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dallman, Tranel, Brandtjen, Edming, Green, Gundrum, Murphy, Mursau, Novak, O'Connor, Oldenburg, Penterman and Swearingen; +cosponsored by Senators Stafsholt and Nass",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg, Hutton, Tomczyk and Wanggaard; +cosponsored by Representatives Callahan, Behnke, Binsfeld, Bodden, Brandtjen, Donovan, Duchow, Hurd, S. Johnson, Maxey, Michalski, Murphy, O'Connor, Ohnstad, Rettinger, Subeck and Wichgers",2023-05-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Swearingen, Behnke, Binsfeld, Dittrich, Donovan, Green, Kitchens, Moses, O'Connor, Snyder, Spiros, Steffen, Summerfield, Wittke and Goeben; +cosponsored by Senators Wimberger, Cowles, Ballweg, Cabral-Guevara, Felzkowski, Feyen, Nass and Quinn",2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Roys, Cabral-Guevara and Stroebel; +cosponsored by Representatives Hong, Allen, J. Anderson, Andraca, Baldeh, Behnke, Clancy, Conley, Emerson, Haywood, Jacobson, Joers, Moore Omokunde, Myers, Ohnstad, Ortiz-Velez, Ratcliff, Shelton, Snodgrass, Stubbs and Sinicki",2023-03-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Joers, Vining, C. Anderson, J. Anderson, Baldeh, Conley, Considine, Emerson, Hong, Jacobson, Madison, Moore Omokunde, Neubauer, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Stubbs and Subeck; +cosponsored by Senators Roys, Agard, Carpenter, L. Johnson, Larson, Spreitzer, Taylor and Wirch",2024-01-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Plumer, Spiros, Rozar, Novak, Edming, Brooks, Magnafici, Behnke, Brandtjen, Donovan, Goeben, Murphy, O'Connor and Mursau; +cosponsored by Senators Felzkowski, Testin, Ballweg, Cowles, Nass, Feyen, Marklein, Stafsholt and Taylor",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Summerfield, Hurd, Moses, Petryk, Pronschinske, Armstrong and Rozar; +cosponsored by Senators James and Quinn",2024-02-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Emerson, Vining, Andraca, Bare, Clancy, Conley, Considine, Jacobson, Joers, Madison, Myers, Ohnstad, Ortiz-Velez, Ratcliff, Shelton, Sinicki, Stubbs and Palmeri",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Feyen; +cosponsored by Representatives Brooks, Duchow, Binsfeld, Michalski, O'Connor, Plumer, Rozar and Schmidt",2023-10-09T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Armstrong, Maxey, Mursau, Binsfeld and Goeben; +cosponsored by Senators Feyen, Jacque, Knodl, Bradley, Tomczyk and Testin",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Armstrong, Ohnstad, McGuire, Brooks, Cabrera, Dittrich, Doyle, Green, Joers, Kitchens, Mursau, O'Connor, Ortiz-Velez, Palmeri, Shankland, Sinicki, Snodgrass, Spiros, Stubbs, Subeck and VanderMeer; +cosponsored by Senators Wanggaard, Wirch, Hesselbein, Nass, Spreitzer and Taylor",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Feyen and Tomczyk; +cosponsored by Representatives Petersen, Armstrong, Behnke, Dallman, Green, O'Connor and Schmidt",2023-07-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler and Ortiz-Velez; +cosponsored by Senators Wanggaard and Taylor",2024-01-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Nass and Testin; +cosponsored by Representatives Swearingen, Dallman, Plumer, Sinicki, Snodgrass, Spiros and Wittke",2023-11-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Larson, Roys, Hesselbein, Agard, Spreitzer and Carpenter; +cosponsored by Representatives Shelton, Andraca, Joers, C. Anderson, Clancy, Jacobson, Considine, Myers, Vining, Shankland, J. Anderson, Baldeh, Subeck, Sinicki and Ratcliff",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Feyen, Marklein, Spreitzer and Stroebel; +cosponsored by Representatives Kurtz, Schutt, Armstrong, Behnke, Edming, Green, Magnafici, Moses, Mursau, Oldenburg, Plumer, Schmidt, Summerfield, Tittl and Shankland",2023-05-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler, Penterman, Edming, Bodden, Mursau, Kitchens, Magnafici, Rozar and Steffen; +cosponsored by Senators Testin, Cabral-Guevara, Felzkowski and Taylor",2023-02-28T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Swearingen, Green, Behnke, Bodden, Edming, Magnafici, Moses, O'Connor, Palmeri, Penterman, Sapik, Sortwell, Tusler, VanderMeer, Armstrong, Pronschinske and Summerfield; +cosponsored by Senators Stafsholt, Ballweg, Felzkowski, Feyen, Marklein, Quinn and Wanggaard",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Feyen, Spreitzer, Taylor and Wanggaard; +cosponsored by Representatives Novak, Billings, Dallman, Dittrich, Gundrum, Murphy, Mursau, O'Connor, Ortiz-Velez, Rozar, Schmidt, Sinicki and Subeck",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Bradley, Cabral-Guevara, James, Marklein, Nass, Quinn and Stroebel; +cosponsored by Representatives Bodden, Tusler, Behnke, Allen, Armstrong, Binsfeld, Brandtjen, Brooks, Edming, Goeben, Gundrum, Gustafson, Hurd, Magnafici, Maxey, Michalski, Murphy, O'Connor, Penterman, Rettinger, Rozar, Schmidt, Schraa, Schutt, Tittl, Wichgers and Green",2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Marklein, Cowles, Carpenter, Jacque, Spreitzer, Nass and Smith; +cosponsored by Representatives Kurtz, Krug, Tranel, Sinicki, Mursau, Novak, O'Connor, Spiros, Vos, Conley, Considine, Murphy, Rozar, Subeck and Green",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Murphy, O'Connor, Pronschinske, Sinicki and Wichgers; +cosponsored by Senators Knodl, Marklein and Nass",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Macco, Steffen, O'Connor, Schmidt, Maxey, Goeben, Doyle, Ratcliff and Joers; +cosponsored by Senators Cowles, Wimberger, Cabral-Guevara, Wanggaard, Spreitzer and James",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wittke, Green, Binsfeld, Katsma, O'Connor, Murphy, Goeben and Melotik; +cosponsored by Senators Stroebel, Quinn, Nass and Felzkowski",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Brooks, Behnke, Bodden, Brandtjen, Dittrich, Moses, O'Connor, Rozar, Sortwell, Zimmerman and Green; +cosponsored by Senators Stroebel, Felzkowski and Tomczyk",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Petryk; +cosponsored by Senator Stafsholt",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, J. Anderson, Joers, Madison, Ohnstad and Ortiz-Velez; +cosponsored by Senators Larson, Roys and Spreitzer",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Petersen, Vos, Hurd, Callahan, Murphy, Edming, Penterman, Donovan, Shankland, Gustafson, Armstrong, Behnke, Cabrera, Dittrich, Goeben, Magnafici, Michalski, Mursau, Novak, O'Connor, Ortiz-Velez, Palmeri, Rozar, Stubbs, Subeck and Sinicki; +cosponsored by Senators Ballweg, Nass, Wanggaard, Hesselbein, James, Marklein, Taylor and Testin",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl and Felzkowski; +cosponsored by Representatives O'Connor, Dittrich, Murphy, Mursau, Nedweski and Rettinger",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Ortiz-Velez and Considine; +cosponsored by Senator Taylor",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Behnke, C. Anderson, Donovan, Murphy, Schmidt, Shankland, Snyder, Steffen, Subeck, Wichgers, Cabrera, Gustafson and Edming; +cosponsored by Senators Cabral-Guevara, Jacque, James, Larson, Smith, Taylor, Testin and Tomczyk",2023-08-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer and Agard; +cosponsored by Representatives C. Anderson, Jacobson, Palmeri, Ratcliff, Baldeh, Considine and J. Anderson",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Binsfeld, Allen, Armstrong, August, Behnke, Born, Brandtjen, Dittrich, Donovan, Edming, Goeben, Green, Gundrum, Hurd, Katsma, Krug, Kurtz, Macco, Magnafici, Maxey, Melotik, Moses, Murphy, Mursau, Nedweski, O'Connor, Oldenburg, Penterman, Petryk, Plumer, Rettinger, Schraa, Schutt, Snyder, Spiros, Steffen, Tranel, Wichgers, Wittke and Swearingen; +cosponsored by Senators Quinn, Ballweg, Bradley, Cabral-Guevara, Felzkowski, Feyen, Jagler, Marklein, Nass, Stroebel, Testin, Wanggaard and Tomczyk",2024-01-29T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Ballweg, Cowles, Spreitzer and Pfaff; +cosponsored by Representatives Spiros, Hurd, Born, Conley, Considine, Donovan, Edming, Maxey, O'Connor, Ortiz-Velez, Schmidt, Plumer, Schutt, Snodgrass and S. Johnson",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley, Feyen, Nass, Stroebel, Testin, Tomczyk, Wanggaard and Wimberger; +cosponsored by Representatives Knodl, Steffen, Armstrong, Behnke, Brandtjen, Dallman, Dittrich, Donovan, Duchow, Gundrum, Kitchens, Kurtz, Macco, Murphy, Mursau, Rettinger, Rodriguez, Rozar, Snyder, Sortwell, Swearingen, Tittl, Tusler and Zimmerman",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Kitchens, Allen, Armstrong, August, Behnke, Binsfeld, Born, Brandtjen, Dittrich, Donovan, Edming, Goeben, Green, Gundrum, Hurd, Katsma, Krug, Kurtz, Macco, Magnafici, Maxey, Melotik, Moses, Murphy, Mursau, Myers, Nedweski, O'Connor, Oldenburg, Penterman, Petryk, Plumer, Rettinger, Schmidt, Schraa, Schutt, Snyder, Sortwell, Spiros, Tranel, Wichgers, Wittke and Swearingen; +cosponsored by Senators Cabral-Guevara, Wimberger, Ballweg, Bradley, Jagler, Felzkowski, Feyen, Marklein, Nass, Quinn, Stroebel, Testin, Wanggaard and Tomczyk",2024-01-29T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Donovan, Ortiz-Velez, Allen, C. Anderson, Brooks, Cabrera, Conley, Dittrich, Duchow, Edming, Kitchens, Maxey, Melotik, Nedweski, Schmidt, Sinicki, Stubbs, Wichgers and Palmeri; +cosponsored by Senators James, Hesselbein, Wanggaard and Taylor",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Larson, L. Johnson, Roys and Wanggaard; +cosponsored by Representatives Moses, Andraca, Allen, C. Anderson, Armstrong, Baldeh, Brandtjen, Conley, Dittrich, Donovan, Joers, Mursau, Ohnstad, Ortiz-Velez, Ratcliff, Wichgers, Sinicki and Haywood",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Krug, Tranel, Sinicki, Mursau, Novak, O'Connor, Spiros, Vos, Conley, Considine, Murphy, Rozar, Subeck and Green; +cosponsored by Senators Ballweg, Marklein, Cowles, Carpenter, Jacque, Spreitzer, Nass and Smith",2023-05-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Armstrong, Binsfeld, Dittrich, Edming, Gundrum, S. Johnson, Kitchens, Magnafici, Moses, Murphy, Mursau, Nedweski, Novak, O'Connor, Penterman, Petryk, Rettinger, Rozar and Steffen; +cosponsored by Senators James, Cabral-Guevara, Felzkowski, Marklein and Nass",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Ballweg, Cabral-Guevara and Cowles; +cosponsored by Representatives Duchow, Neylon, Goeben, Gundrum, Kitchens, Mursau, O'Connor, Rettinger, Schmidt and Zimmerman",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Katsma, Born, Allen, Armstrong, August, Behnke, Binsfeld, Brandtjen, Dittrich, Donovan, Edming, Green, Gundrum, Hurd, Krug, Kurtz, Macco, Magnafici, Maxey, Melotik, Moses, Murphy, Mursau, Nedweski, O'Connor, Oldenburg, Penterman, Petryk, Plumer, Rettinger, Schmidt, Schraa, Schutt, Snyder, Sortwell, Spiros, Steffen, Tranel, Wichgers, Wittke, Zimmerman and Swearingen; +cosponsored by Senators Marklein, LeMahieu, Ballweg, Bradley, Cabral-Guevara, Felzkowski, Feyen, Jagler, Nass, Quinn, Stroebel, Testin, Wanggaard and Tomczyk",2024-01-29T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Ballweg; +cosponsored by Representatives Novak, Mursau, Oldenburg, Rozar and Schmidt",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Haywood, J. Anderson, Stubbs, Bare, Ratcliff, Goyke, Myers, Conley, Considine, Shelton, Andraca and Drake; +cosponsored by Senators L. Johnson, Smith and Spreitzer",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Ballweg, Quinn, Stroebel and Tomczyk; +cosponsored by Representatives Magnafici, Behnke, Bodden, Brooks, Penterman, Plumer, Rozar and Tittl",2023-06-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dallman, Swearingen, Allen, Bare, Clancy, Considine, Dittrich, Edming, Goeben, Green, Kitchens, Krug, Maxey, Murphy, Plumer, Rettinger, Schraa, Shankland, Sinicki, Snodgrass, Snyder, Steffen, Subeck, Wittke, VanderMeer and Oldenburg; +cosponsored by Senators Testin, Ballweg, Tomczyk, Wanggaard and Spreitzer",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Ballweg, Nass, Roys and Marklein; +cosponsored by Representatives Summerfield, Dittrich, O'Connor, Rettinger and Wichgers",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Joers, Jacobson, Billings, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Clancy, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hong, Madison, McGuire, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Subeck and Vining",2023-10-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Hesselbein, Roys, Spreitzer, Taylor, Larson and Cowles; +cosponsored by Representatives Green, Joers, C. Anderson, Andraca, Armstrong, Bare, Behnke, Bodden, Conley, Considine, Kitchens, Moore Omokunde, Mursau, Ohnstad, Shankland, Sinicki, Snodgrass, Spiros, Steffen, Stubbs, Subeck and Tittl",2023-03-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Ballweg, Roys, Wanggaard, Felzkowski and Nass; +cosponsored by Representatives Krug, Armstrong, Dittrich, Mursau and Rettinger",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, Hong, Considine, Moore Omokunde, Palmeri, J. Anderson, C. Anderson, Baldeh, Bare, Conley, Drake, Emerson, Goyke, Joers, Ohnstad, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Haywood, Jacobson, Clancy, Doyle, Ortiz-Velez, Billings, Andraca and Neubauer; +cosponsored by Senators Agard, L. Johnson, Carpenter, Hesselbein, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Cabral-Guevara; +cosponsored by Representatives Sortwell, Behnke, Edming, Gundrum, Magnafici, Rozar, Sapik, Wichgers and Ortiz-Velez",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rettinger, Donovan, Allen, Behnke, Dittrich, Duchow, Goeben, Maxey, Melotik, Murphy, Mursau, Nedweski, O'Connor, Palmeri, Penterman, Sapik, Sortwell and Jacobson; +cosponsored by Senators Knodl, Ballweg, Carpenter, Marklein, Nass and Roys",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schutt, C. Anderson, Jacobson, Edming, Behnke, Cabrera, Conley, Donovan, Drake, Emerson, Joers, S. Johnson, Penterman, Ratcliff, Shankland, Sinicki, Spiros, Subeck, Wichgers and Ortiz-Velez; +cosponsored by Senators Spreitzer, Nass, Carpenter, Wanggaard and Taylor",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Andraca, Conley, Considine, Drake, Hong, Joers, Moore Omokunde, Ohnstad, Ratcliff, Sinicki, Snodgrass, Shankland and Jacobson; +cosponsored by Senators Agard, Roys, Taylor, Larson, Carpenter, Hesselbein, Spreitzer, Smith, Pfaff and Wirch",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Novak, Spiros, Conley, Murphy, Subeck and Ohnstad",2023-05-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, Emerson, Palmeri, Considine, Moore Omokunde, J. Anderson, C. Anderson, Baldeh, Bare, Conley, Drake, Goyke, Hong, Joers, Ohnstad, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Haywood, Jacobson, Clancy, Doyle, Ortiz-Velez, Andraca, Billings and Neubauer; +cosponsored by Senators Agard, L. Johnson, Carpenter, Hesselbein, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Pfaff, Roys and Smith; +cosponsored by Representatives Billings, Clancy, Subeck, Sinicki, Stubbs, Emerson, Ohnstad, Conley, Joers, Drake and Snodgrass",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and Tomczyk; +cosponsored by Representatives Maxey, Behnke, Binsfeld, Cabrera, Donovan, Edming, Green, Myers, Michalski, Murphy, Mursau, Nedweski, Novak, Ortiz-Velez, Schmidt, Shankland, Sinicki and Wichgers",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Taylor, Pfaff, Spreitzer, Ballweg, Hesselbein, Marklein, Quinn, Smith, Tomczyk, Carpenter, Roys and Wanggaard; +cosponsored by Representatives Oldenburg, Novak, Shankland, Tranel, C. Anderson, Considine, Hurd, Jacobson, Mursau, Schmidt, VanderMeer, Bare, Joers, Krug, Nedweski, Penterman and Subeck",2023-03-23T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative Krug,2023-11-13T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Bradley, Cabral-Guevara, Feyen, Marklein, Quinn, Testin, Wanggaard, Felzkowski and Nass; +cosponsored by Representatives Schutt, Green, Armstrong, Behnke, Binsfeld, Bodden, Brandtjen, Duchow, Edming, Gustafson, Maxey, Murphy, O'Connor, Plumer, Rozar, Sapik, Sortwell, Spiros, Tittl, Tranel, VanderMeer, Rettinger and S. Johnson",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Taylor, Bradley, Carpenter, Cowles, James, L. Johnson, Marklein and Testin; +cosponsored by Representatives Donovan, Baldeh, Cabrera, Callahan, Dittrich, Drake, Goyke, Gundrum, S. Johnson, Moore Omokunde, Ohnstad, Petersen and Schmidt",2023-08-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau and Schmidt; +cosponsored by Senator Jacque",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Spreitzer, L. Johnson and Roys; +cosponsored by Representatives Novak, Haywood, Baldeh, Conley, Considine, Emerson, Jacobson, Moore Omokunde, Sinicki and Subeck",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, Sinicki, C. Anderson, Andraca, Conley, Ratcliff, Emerson, Clancy, Snodgrass, Jacobson, Palmeri, Considine, Cabrera, Joers, Subeck, Ohnstad, J. Anderson, Bare and Haywood; +cosponsored by Senators Agard, Larson, L. Johnson, Roys, Spreitzer and Smith",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Tomczyk; +cosponsored by Representatives Allen, Murphy, Behnke, Bodden, Brandtjen, Goeben, O'Connor, Rettinger and Wichgers",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Jacobson, Shankland, C. Anderson, Considine, Bare, Drake, Emerson, J. Anderson, Joers, Palmeri, Ratcliff, Shelton, Subeck, Ohnstad, Haywood and Neubauer; +cosponsored by Senators Pfaff, Roys, Smith, Spreitzer and Taylor",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Spiros, McGuire, Ohnstad, Allen, C. Anderson, Andraca, Behnke, Billings, Binsfeld, Brandtjen, Drake, Goeben, Gundrum, Gustafson, Hurd, Maxey, Murphy, Mursau, Nedweski, O'Connor, Ortiz-Velez, Rozar, Schraa, Sinicki, Steffen, Stubbs and Subeck; +cosponsored by Senators James, Agard, Ballweg, Felzkowski, Hesselbein, Spreitzer, Stroebel, Tomczyk and Wanggaard",2023-06-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wittke, Zimmerman, Armstrong, Goeben, Nedweski, O'Connor and Shankland; +cosponsored by Senators Feyen and Wanggaard",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Tomczyk; +cosponsored by Representatives Mursau, Penterman and Donovan",2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Donovan, Gundrum, Maxey, Michalski, Novak, Rettinger, Tusler and Wichgers; +cosponsored by Senators Hutton, Bradley, Stroebel, Jacque, James and Wanggaard",2024-02-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder and Spiros; +cosponsored by Senator Tomczyk",2023-05-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, August, Behnke, Bodden, Callahan, Donovan, Edming, Goeben, Gundrum, Krug, Magnafici, Murphy, O'Connor, Penterman, Plumer, Rettinger, Schmidt, Steffen, Wichgers, Brandtjen and Schraa; +cosponsored by Senators Bradley, Jacque, James, Quinn, Stafsholt, Testin, Felzkowski and Cabral-Guevara",2024-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Andraca, Stubbs, J. Anderson, Baldeh, Conley, Considine, Drake, Emerson, Hong, Joers, Neubauer, Palmeri, Ratcliff, Sinicki, Snodgrass, Subeck, Jacobson and Clancy; +cosponsored by Senators Roys, Agard, Carpenter, Hesselbein, Larson, Smith, Spreitzer and L. Johnson",2024-02-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Taylor, Cowles, Hesselbein, Larson, Roys, Spreitzer and Wirch; +cosponsored by Representatives Brandtjen, Allen, Andraca, Bare, Behnke, Bodden, Emerson, Joers, Mursau, Ortiz-Velez, Palmeri, Subeck, Wichgers, Madison, Clancy and Shankland",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Vos; +cosponsored by Senator Wanggaard",2023-09-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Larson, Roys, Smith and Spreitzer; +cosponsored by Representatives Billings, Palmeri, C. Anderson, J. Anderson, Andraca, Baldeh, Clancy, Conley, Considine, Drake, Jacobson, Joers, Neubauer, Ohnstad, Ratcliff, Shankland, Sinicki, Snodgrass, Stubbs and Subeck",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen and Quinn; +cosponsored by Representatives Rozar, Armstrong, Baldeh, Conley, Edming, Ohnstad, Oldenburg, Ortiz-Velez, Palmeri, Petryk, Shankland, Sinicki, Steffen, Stubbs and Subeck",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Ballweg, Feyen, Nass and Wirch; +cosponsored by Representatives Sapik, Kurtz, Brandtjen, Callahan, Dittrich, Donovan, Melotik, Murphy, Mursau, Novak, Oldenburg, Penterman, Rodriguez, Snyder, Subeck, Tusler, VanderMeer and Zimmerman",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Ballweg, Felzkowski, Nass, Tomczyk, Stafsholt and Quinn; +cosponsored by Representatives Tranel, Callahan, Edming, Green, Magnafici, Moses, Mursau, Novak, O'Connor, Penterman, Pronschinske, Rozar and VanderMeer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vos and August; +cosponsored by Senator LeMahieu",2023-01-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Cowles, Felzkowski and Nass; +cosponsored by Representatives Gundrum, Callahan, Dittrich, Goeben, S. Johnson, Kitchens, Murphy, Nedweski, O'Connor, Penterman, Rettinger, Rozar, Tittl and Wichgers",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Ratcliff, Madison, Clancy, Stubbs, Palmeri, Sinicki, Baldeh and Joers; +cosponsored by Senator Larson",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Cabral-Guevara, Felzkowski, Feyen, Marklein, Nass, Quinn, Stafsholt and Tomczyk; +cosponsored by Representatives Bodden, Armstrong, Behnke, Binsfeld, Brandtjen, Brooks, Donovan, Edming, Gundrum, Gustafson, Kitchens, Murphy, Mursau, Penterman, Plumer, Rettinger, Schraa, Schutt, Tittl, Tusler and Wichgers",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wichgers, Ortiz-Velez, Armstrong, Behnke, Bodden, Brandtjen, Donovan, Murphy, Mursau, O'Connor, Rettinger and Rozar; +cosponsored by Senators Knodl and Bradley",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Smith, Spreitzer, Taylor, Carpenter, Roys, Larson and Hesselbein; +cosponsored by Representatives Shankland, C. Anderson, Jacobson, Considine, Emerson, Sinicki, Ratcliff, Joers, Ohnstad, Shelton, J. Anderson, Drake, Bare, Palmeri and Subeck",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Allen, Andraca, Armstrong, Billings, C. Anderson, Dittrich, Donovan, Gundrum, Hurd, Joers, Kurtz, Novak, Snyder, Stubbs, Subeck and Vining; +cosponsored by Senators James, Ballweg, Cowles, L. Johnson, Quinn, Roys and Spreitzer",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, Shelton, J. Anderson, Conley, Considine, Drake, Emerson, Jacobson, Joers, Madison, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Sinicki and Stubbs; +cosponsored by Senators Agard, Roys, L. Johnson, Larson, Pfaff, Smith and Spreitzer",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Wimberger, Cabral-Guevara and Wanggaard; +cosponsored by Representatives Rozar, Macco, Steffen, O'Connor, Schmidt, Maxey, Doyle, Goeben and Joers",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich and Zimmerman; +cosponsored by Senator Testin",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Cabral-Guevara; +cosponsored by Representatives Gustafson, Allen and Brandtjen",2024-02-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Ballweg and Felzkowski; +cosponsored by Representatives Schraa, Moses, Brandtjen and Allen",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Larson; +cosponsored by Representatives Madison, Clancy, Hong, J. Anderson, Baldeh, Conley, Considine, Emerson, Joers, Moore Omokunde, Palmeri, Shelton, Sinicki, Stubbs and Neubauer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives C. Anderson, Jacobson, Palmeri, Ratcliff, Baldeh, Considine, J. Anderson and Sinicki; +cosponsored by Senators Spreitzer and Agard",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Murphy, Moses, O'Connor, Schmidt and Brandtjen; +cosponsored by Senators Cabral-Guevara, Stroebel and Tomczyk",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg and James; +cosponsored by Representatives Snyder, Armstrong, Dittrich, Donovan, Edming, Green, Gundrum, Kitchens, Murphy, Mursau, Spiros, Subeck and Tittl",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Tomczyk and Marklein; +cosponsored by Representatives Donovan, Born, Armstrong, Behnke, Brandtjen, Dittrich, Duchow, Green, Kitchens, Krug, Magnafici, Maxey, Melotik, Michalski, Mursau, Nedweski, Ortiz-Velez, Plumer, Rettinger, Schmidt, Wichgers and Murphy",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, J. Anderson, Emerson, Andraca, Bare, Behnke, Cabrera, Clancy, Conley, Considine, Drake, Goyke, Hong, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs and Subeck; +cosponsored by Senators Agard, Smith, Carpenter, Hesselbein, Larson, Spreitzer and Taylor",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Nass and Cabral-Guevara; +cosponsored by Representatives Sortwell, Goeben, Rozar, Allen, Behnke, Bodden, Brandtjen, Callahan, Dittrich, Edming, Magnafici, Michalski, Murphy, O'Connor, Rettinger, Sapik, Schraa and Schutt",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Andraca, Bare, Behnke, Binsfeld, Callahan, Dittrich, Edming, Magnafici, Moses, Murphy, Mursau, Nedweski, Novak, O'Connor, Palmeri, Penterman, Schmidt, Shankland, Sinicki, Stubbs, Subeck, Joers and Jacobson; +cosponsored by Senators Ballweg, Carpenter, Cowles, Felzkowski, Larson, Marklein, Roys, Spreitzer, Testin and Agard",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg, Cowles, Quinn, Spreitzer and Taylor; +cosponsored by Representatives Steffen, Allen, Armstrong, Brooks, Cabrera, Donovan, Green, Gundrum, Gustafson, Kitchens, Knodl, Macco, Moses, Murphy, Mursau, Novak, O'Connor, Penterman, Rettinger, Subeck, Tittl and Tusler",2023-02-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moore Omokunde, Madison, Emerson, Sinicki, Considine, Stubbs, Conley, Andraca, Palmeri, Subeck, Joers, J. Anderson, Baldeh, Ratcliff, Neubauer, Ohnstad, Clancy, Shelton, Vining, Bare and C. Anderson; +cosponsored by Senators Smith, Taylor, Wirch, Spreitzer, Larson, Hesselbein and Carpenter",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Cowles and L. Johnson; +cosponsored by Representatives Summerfield, Shankland, C. Anderson, Conley, Ortiz-Velez and Palmeri",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative McGuire,2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Emerson, J. Anderson, Baldeh, Clancy, Conley, Joers, Madison, Neubauer, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs and Subeck; +cosponsored by Senators Smith, Roys, Larson and Agard",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Hesselbein, Roys, Spreitzer and Taylor; +cosponsored by Representatives Shankland, Considine, C. Anderson, Emerson, Jacobson, Ohnstad, Palmeri, Ratcliff and Shelton",2023-12-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Drake, Emerson, Jacobson, Ortiz-Velez and Stubbs; +cosponsored by Senator Taylor",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Taylor, Hesselbein and L. Johnson; +cosponsored by Representatives Subeck, Conley, J. Anderson, Emerson, Considine, Sinicki, Andraca, Bare, Cabrera, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Shelton and Stubbs",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Agard, Roys and Spreitzer; +cosponsored by Representatives Andraca, Conley, C. Anderson, J. Anderson, Bare, Clancy, Considine, Drake, Jacobson, Madison, Ohnstad, Palmeri, Ratcliff and Subeck",2024-02-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, James, Felzkowski, Nass, Roys, Spreitzer, Stafsholt and Wanggaard; +cosponsored by Representatives Steffen, Behnke, Armstrong, Baldeh, Bodden, Brooks, Dittrich, Duchow, Mursau, Novak, Ortiz-Velez, Rodriguez, Rozar, Sortwell, Subeck and Tusler",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Nedweski, Rozar, Binsfeld, Dittrich, Duchow, Hurd, Armstrong, August, Born, Brooks, Callahan, Dallman, Donovan, Green, S. Johnson, Kitchens, Kurtz, Krug, Macco, Melotik, Michalski, Moses, Mursau, Neylon, Novak, Oldenburg, Plumer, Schmidt, Snyder, Sortwell, Spiros, Summerfield, Swearingen, Vos, Wittke and Zimmerman; +cosponsored by Senators Felzkowski, Knodl, Testin and James",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snyder, Rozar, Kurtz and Summerfield; +cosponsored by Senator Cabral-Guevara",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Billings, Kitchens, Drake, Penterman, Spiros, Emerson, Baldeh, Schutt, Tittl, Conley, Mursau, Vining, Haywood, Dittrich, Armstrong, Murphy, Novak, Behnke, O'Connor, Shankland, Moore Omokunde, Riemer, Shelton, Considine, Joers, Tusler, Subeck, Stubbs, Hong, Rozar, Madison, Clancy, Andraca, Allen, C. Anderson, Ortiz-Velez, Sinicki and Donovan; +cosponsored by Senators L. Johnson, James, Roys, Taylor, Carpenter, Cabral-Guevara, Jacque, Hesselbein, Larson, Agard, Spreitzer, Ballweg and Marklein",2023-02-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, Snodgrass, Conley, J. Anderson, Baldeh, Bare, Considine, Emerson, Hong, Joers, Moore Omokunde, Myers, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs, Subeck, Drake, Jacobson, Clancy and Madison; +cosponsored by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Roys, Smith, Spreitzer and Taylor",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schraa, Rozar, Tittl, Conley, Dittrich, Donovan, Edming, Goeben, Goyke, Gundrum, Jacobson, Magnafici, Mursau, Novak, O'Connor, Oldenburg, Palmeri, Snyder, Tusler, Wichgers and Rettinger; +cosponsored by Senators Felzkowski, Quinn, James, Pfaff and Taylor",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Snodgrass, C. Anderson, Andraca, Baldeh, Bare, Cabrera, Conley, Drake, Emerson, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs, Clancy and Jacobson; +cosponsored by Senators L. Johnson, Smith, Hesselbein, Roys and Taylor",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Emerson, Madison, Ratcliff and Snodgrass; +cosponsored by Senators Smith, Larson and Spreitzer",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, Hong and Madison; +cosponsored by Senators Larson and Roys",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Palmeri, Bare, Clancy, Madison, Ratcliff, Snodgrass, Shelton, Drake, Stubbs, Sinicki, Baldeh, Cabrera, Subeck, Moore Omokunde, Ortiz-Velez, J. Anderson, Ohnstad, Jacobson, Considine and Emerson; +cosponsored by Senators Roys, Hesselbein, Taylor, L. Johnson, Larson and Agard",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl and Bradley; +cosponsored by Representatives Wichgers, Ortiz-Velez, Armstrong, Behnke, Bodden, Brandtjen, Donovan, Murphy, Mursau, O'Connor, Rettinger and Rozar",2023-11-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Billings, Vining, Baldeh, Bare, Clancy, Conley, Considine, Drake, Emerson, Joers, Madison, Maxey, Palmeri, Sinicki, Stubbs, Subeck and Jacobson; +cosponsored by Senators Carpenter, Jacque and Roys",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Emerson, Bare, Clancy, Jacobson, Joers, Moore Omokunde, Neubauer, Ohnstad, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Spreitzer, Agard and Pfaff",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Cabral-Guevara; +cosponsored by Representatives Tusler, Maxey, Armstrong, Dittrich, Donovan, Kitchens, Michalski, Murphy, O'Connor, Rettinger, Rozar, Schraa and Steffen",2023-11-15T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jagler, Wanggaard, James, Nass, Stroebel, Cowles and Marklein; +cosponsored by Representatives Duchow, Armstrong, Donovan, Moses, Murphy, Mursau, Nedweski, Novak, Rettinger and Sortwell",2023-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, C. Anderson, J. Anderson, Conley, Considine, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Palmeri, Ratcliff, Shelton, Sinicki, Subeck and Haywood; +cosponsored by Senators Roys, Taylor, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Smith, Spreitzer and Wirch",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Krug, Dallman, Duchow, Gundrum, Mursau, Myers, Novak, Penterman, Pronschinske, Rozar, Sinicki, Steffen and Knodl; +cosponsored by Senators Testin, Ballweg, Marklein, Nass, Stroebel, Taylor and Wanggaard",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Dittrich, C. Anderson, Andraca, Bare, Binsfeld, Clancy, Conley, Drake, Emerson, Joers, Madison, Moore Omokunde, Mursau, Nedweski, O'Connor, Ohnstad, Palmeri, Ratcliff, Schutt, Shankland, Shelton, Sinicki, Stubbs and Jacobson; +cosponsored by Senators Ballweg, L. Johnson, Larson, Roys, Spreitzer and Agard",2024-02-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Knodl; +cosponsored by Representatives Gundrum, Goeben, Behnke, Callahan, Dittrich, Donovan, Edming, Hurd, Kitchens, Maxey, Murphy, Mursau, O'Connor, Penterman, Schraa and Wichgers",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Wanggaard; +cosponsored by Representative Nedweski",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Mursau, Oldenburg, Rozar and Schmidt; +cosponsored by Senator Ballweg",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Wimberger and Cabral-Guevara; +cosponsored by Representatives Mursau, O'Connor and Steffen",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Clancy, Drake, Jacobson, Joers, Madison, Moore Omokunde, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Snodgrass and Stubbs; +cosponsored by Senator Smith",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, Marklein, Pfaff and Spreitzer; +cosponsored by Representatives Dallman, Steffen, Rozar, Brandtjen, Considine, Duchow, Joers, Novak, Schmidt and Stubbs",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Larson, L. Johnson and Wirch; +cosponsored by Representatives J. Anderson, Andraca, Bare, Clancy, Conley, Drake, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Ortiz-Velez, Palmeri, Shelton, Snodgrass, Sortwell, Stubbs and Subeck",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson and Roys; +cosponsored by Representatives Clancy, J. Anderson, Joers, Madison, Ohnstad and Ortiz-Velez",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James and Feyen; +cosponsored by Representatives Rozar, Armstrong, Behnke and Novak",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Cabral-Guevara; +cosponsored by Representatives Sortwell, Allen, Armstrong, Behnke, Edming, Gustafson and Rozar",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Bodden, Wichgers, Behnke, Brandtjen, Donovan, Gundrum, Murphy, Ortiz-Velez, Penterman, Sinicki and Subeck",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard and Taylor; +cosponsored by Representatives Tusler and Ortiz-Velez",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Andraca, Stubbs, C. Anderson, J. Anderson, Baldeh, Bare, Billings, Cabrera, Conley, Considine, Donovan, Doyle, Goyke, Hong, Jacobson, Joers, Moore Omokunde, Myers, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Snodgrass, Subeck, Vining, Drake and Ortiz-Velez; +cosponsored by Senators Taylor, Agard, L. Johnson, Carpenter, Hesselbein, Larson, Roys, Smith and Spreitzer",2023-07-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Ballweg, Cowles, Felzkowski, Quinn, Testin and Nass; +cosponsored by Representatives Mursau, Callahan, Edming, Gustafson, Green, Magnafici, Michalski, O'Connor, Schmidt, Snyder and Swearingen",2023-10-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Rettinger, Callahan, Magnafici, Binsfeld, O'Connor, Gundrum, Gustafson, Maxey, Bodden, Penterman, Armstrong, Brandtjen, Tusler, S. Johnson, Sapik, Macco, Rozar, Green, Schmidt, Allen, Behnke, Duchow, Hurd, Tittl, Nedweski, Schraa, Wichgers, Edming, Sortwell, Donovan and Murphy; +cosponsored by Senators Knodl, Quinn, Marklein, Hutton and Tomczyk",2023-08-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Agard, Carpenter, Hesselbein, Roys, Taylor and Wirch; +cosponsored by Representatives Sinicki, Clancy, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Cabrera, Conley, Considine, Donovan, Drake, Emerson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Shankland, Shelton, Snodgrass, Stubbs, Subeck and Vining",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson and Carpenter; +cosponsored by Representatives Myers, Novak, Andraca, Considine, Drake, Kitchens, Tusler, Sinicki, Moore Omokunde and Ortiz-Velez",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Ballweg, Felzkowski and Stroebel; +cosponsored by Representatives Sortwell, Armstrong, Green, Kitchens, Mursau, Rodriguez, Steffen and Tusler",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Hong, Moore Omokunde, C. Anderson, Clancy, Jacobson, Joers, Madison, Palmeri, Ratcliff, Baldeh, Cabrera, Conley, Drake, Emerson, Ohnstad, Shelton, Sinicki, Snodgrass, Stubbs, Subeck and Shankland; +cosponsored by Senators Roys, L. Johnson, Spreitzer and Taylor",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Palmeri, Krug, C. Anderson, Conley, Dittrich, Drake, Emerson, Jacobson, Joers, S. Johnson, Moore Omokunde, Mursau, Ohnstad, Shankland, Sinicki, Stubbs and Subeck; +cosponsored by Senators Spreitzer, Roys, Jacque and Agard",2024-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Emerson, Bare, Conley, Haywood, Hong, J. Anderson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Stubbs and Subeck; +cosponsored by Senators Larson, Spreitzer, Carpenter, L. Johnson, Roys, Smith, Taylor and Wirch",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Pronschinske, Brooks, Green, Armstrong, Behnke, Brandtjen, Callahan, Edming, Goeben, Rettinger, Schmidt, Wichgers, Mursau and Murphy",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara and Felzkowski; +cosponsored by Representatives Murphy, Brooks and Macco",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, C. Anderson, Madison, Ratcliff, Palmeri, J. Anderson, Baldeh, Bare, Cabrera, Drake, Emerson, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Shelton, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Larson, L. Johnson, Spreitzer and Roys",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Joers, Subeck, Hong, Conley, Emerson, Andraca, Ratcliff, Vining, Bare, Shelton, Considine, Ohnstad, Sinicki, J. Anderson, Palmeri, Stubbs, Jacobson, Madison and Clancy; +cosponsored by Senators Hesselbein, Smith, Taylor, L. Johnson, Larson, Roys, Spreitzer and Agard",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Cabral-Guevara, Felzkowski, Nass and Stroebel; +cosponsored by Representatives Penterman, Macco, Allen, Behnke, Bodden, Born, Brandtjen, Dittrich, Edming, Green, Gundrum, Knodl, Magnafici, Moses, Nedweski, Petersen, Plumer, Rettinger, Rozar, Snyder, Sortwell, Steffen, Tittl and Wichgers",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Wittke, J. Anderson, Bare, Baldeh, Cabrera, Clancy, Conley, Duchow, Gundrum, Haywood, Madison, Magnafici, Mursau, O'Connor, Ortiz-Velez, Riemer, Rozar, Sinicki, Spiros, Subeck, Summerfield, Tusler and Vining; +cosponsored by Senators Wanggaard, Carpenter, Cabral-Guevara, Hesselbein, James, Spreitzer, Taylor and Tomczyk",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Billings, O'Connor, Emerson, Moore Omokunde, Maxey, Binsfeld, Conley, Snodgrass, Mursau, Palmeri, Joers, Dittrich, Ratcliff, S. Johnson, Ohnstad, Subeck, Drake, Madison, Behnke, Sinicki, Considine, J. Anderson, Brandtjen, Schraa, Jacobson and Kitchens; +cosponsored by Senators James, L. Johnson, Wirch and Larson",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tranel, VanderMeer, Shankland, Edming, Krug, Mursau and Spiros; +cosponsored by Senators Marklein, Testin, Ballweg, Felzkowski and Spreitzer",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, Madison, Considine, Moore Omokunde, Conley, Joers, Clancy, Ohnstad, Jacobson, Shelton, Emerson, J. Anderson, Palmeri, Subeck, Andraca, Sinicki and Haywood; +cosponsored by Senators L. Johnson, Larson and Hesselbein",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bare, Palmeri, Ratcliff, Madison, Clancy, J. Anderson, Considine, Joers, Neubauer, Sinicki and Stubbs; +cosponsored by Senators Larson, Spreitzer and Agard",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Stroebel; +cosponsored by Representatives Wichgers, Ohnstad and Sinicki",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Palmeri, Shelton, Shankland, Emerson, J. Anderson, Andraca, Baldeh, Bare, Clancy, Conley, Jacobson, Joers, Madison, Neubauer, Ohnstad, Ratcliff, Sinicki, Stubbs and Subeck; +cosponsored by Senators Smith, Spreitzer, Roys, Larson and Agard",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Clancy, Hong, Jacobson, Myers, Shankland, Bare, Cabrera, Joers, Conley, Emerson, Palmeri, Ratcliff, Sinicki, Snodgrass, Subeck, Madison, Stubbs, Moore Omokunde, J. Anderson and Neubauer; +cosponsored by Senators Larson, Agard, Roys, L. Johnson, Smith, Hesselbein, Spreitzer, Carpenter and Pfaff",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Ballweg, Cowles, Felzkowski, Feyen, James, Marklein, Quinn and Wanggaard; +cosponsored by Representatives Brooks, Green, Armstrong, Dittrich, Donovan, Duchow, Edming, Gundrum, Kitchens, Knodl, Macco, Michalski, O'Connor, Rettinger, Rozar, Schmidt, Spiros, Swearingen and Tittl",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rodriguez, VanderMeer, Brooks, Kitchens, Knodl, Moses, Mursau, O'Connor, Penterman, Rettinger, Rozar, Schraa, Tittl and Wittke; +cosponsored by Senators Stroebel, Cowles, Felzkowski and Marklein",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Petryk, Kurtz, Zimmerman, Armstrong, C. Anderson, Considine, Edming, Emerson, Goeben, Green, Jacobson, S. Johnson, Moses, Myers, Nedweski, Novak, O'Connor, Oldenburg, Rozar, Schmidt, Shankland, Spiros, VanderMeer, Wittke and Mursau; +cosponsored by Senators Ballweg, Stafsholt, Cowles, Felzkowski, Hesselbein, Marklein, Pfaff, Smith, Spreitzer, Testin, Quinn and Tomczyk",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Agard, L. Johnson and Larson; +cosponsored by Representatives Shankland, Ratcliff, Sinicki, Joers, Stubbs, Emerson, Bare, Moore Omokunde and Subeck",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen and Wanggaard; +cosponsored by Representatives Wittke, Zimmerman, Armstrong, Mursau, Maxey, O'Connor and Jacobson",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Agard, Cowles and Larson; +cosponsored by Representatives Considine, Sinicki, Ratcliff, Joers, Conley and Moore Omokunde",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, J. Anderson, Madison, Palmeri, Ratcliff, Bare and Clancy; +cosponsored by Senators Roys and Larson",2024-02-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Agard, Carpenter, L. Johnson, Larson and Spreitzer; +cosponsored by Representatives J. Anderson, C. Anderson, Baldeh, Bare, Drake, Moore Omokunde, Ohnstad, Sinicki and Subeck",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Binsfeld, Behnke, Dittrich, Donovan, Edming, Maxey, Melotik, Myers, Murphy, Mursau, Nedweski, O'Connor, Penterman, Schmidt and Snyder; +cosponsored by Senators Stroebel, Cabral-Guevara and Feyen",2024-01-29T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Binsfeld, Drake, Conley, Donovan, Joers, Krug, Melotik, Mursau, Nedweski, O'Connor, Palmeri, Schmidt, Sinicki, Snyder, Stubbs and Subeck",2024-01-29T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Larson, Agard, Carpenter, Hesselbein, L. Johnson and Spreitzer; +cosponsored by Representatives Madison, Moore Omokunde, Palmeri, Clancy, Ratcliff, Baldeh, Bare, Billings, Cabrera, Conley, Drake, Shelton, Sinicki, Snodgrass, Stubbs, Emerson, Hong, J. Anderson, Jacobson, Joers, Ohnstad, Shankland and Subeck",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, C. Anderson, Behnke, Billings, Goeben, Gustafson, Jacobson, Joers, Kitchens, Melotik, Michalski, Ortiz-Velez, Ratcliff, Sapik, Shankland, Snodgrass, Stubbs, Subeck, Tusler, VanderMeer, Cabrera, Sinicki, Drake and Palmeri; +cosponsored by Senators Cabral-Guevara, Ballweg and Taylor",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Myers, Conley, Ratcliff, Stubbs and Drake; +cosponsored by Senator Larson",2024-02-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wichgers and Allen; +cosponsored by Senator Jacque",2023-02-06T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Senator Testin,2024-03-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Nass; +cosponsored by Representatives Allen, Bodden, Brandtjen, Maxey, Wichgers and Murphy",2023-05-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wittke, Duchow, S. Johnson, Maxey, Moses, Mursau and O'Connor; +cosponsored by Senators James and Wanggaard",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives August and Vos; +cosponsored by Senators LeMahieu and Kapenga",2023-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Joers, C. Anderson, Madison, Clancy, Ratcliff, Conley, J. Anderson, Baldeh, Bare, Considine, Drake, Jacobson, Neubauer, Palmeri, Sinicki and Stubbs; +cosponsored by Senators Spreitzer, Roys and Agard",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Nass; +cosponsored by Representatives Behnke, Bodden, Brandtjen, Murphy and Wichgers",2023-08-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Cabrera, Snodgrass, Neubauer, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Clancy, Conley, Considine, Drake, Emerson, Goyke, Haywood, Hong, Joers, Madison, Moore Omokunde, Myers, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Subeck, Vining, S. Johnson and Stubbs; +cosponsored by Senators Carpenter, Spreitzer, Agard, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Taylor and Wirch",2023-06-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor, L. Johnson, Spreitzer, Roys and Cabral-Guevara; +cosponsored by Representatives Haywood, Madison, Myers, Riemer, Drake, Palmeri, Stubbs, Jacobson, Cabrera, Snodgrass, Sinicki, Conley, Joers, Ratcliff, Andraca, Clancy, Shelton and Vining",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, Shelton, J. Anderson, Conley, Considine, Drake, Emerson, Joers, Madison, Ohnstad, Palmeri, Ratcliff, Shankland, Sinicki and Stubbs; +cosponsored by Senators Agard, Roys, Hesselbein, L. Johnson, Larson, Pfaff, Smith and Taylor",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson, Smith, Roys, Hesselbein, Agard, Carpenter and Spreitzer; +cosponsored by Representatives Shelton, C. Anderson, Jacobson, Shankland, Andraca, Bare, Madison, J. Anderson, Baldeh, Cabrera, Clancy, Conley, Considine, Haywood, Hong, Joers, Ohnstad, Palmeri, Ratcliff, Sinicki, Snodgrass and Stubbs",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Andraca, Joers, J. Anderson, Baldeh, Bare, Cabrera, Clancy, Conley, Considine, Drake, Emerson, Hong, Madison, Moore Omokunde, Myers, Neubauer, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs, Subeck, Vining and Jacobson; +cosponsored by Senators Roys, Smith, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Spreitzer and Wirch",2024-02-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goeben, Hurd, Binsfeld, Brandtjen, Edming, Green, Gundrum, Gustafson, Krug, Magnafici, Maxey, O'Connor, Petersen, Petryk, Plumer, Rozar, Schmidt, Steffen, Summerfield, Swearingen and VanderMeer; +cosponsored by Senators Ballweg and Stroebel",2023-09-01T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Larson and Spreitzer; +cosponsored by Representatives Subeck, Palmeri, J. Anderson, Baldeh, Clancy, Considine, Emerson, Joers, Madison, Ohnstad, Ratcliff, Shelton and Stubbs",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard and L. Johnson; +cosponsored by Representatives Haywood and Drake",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Myers, C. Anderson, Andraca, Madison, J. Anderson, Baldeh, Clancy, Joers, Neubauer, Ratcliff, Sinicki and Subeck; +cosponsored by Senators Larson, Smith, Roys, Hesselbein, Agard, Spreitzer and Carpenter",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor, Larson, Hesselbein and L. Johnson; +cosponsored by Representatives Subeck, Andraca, J. Anderson, Conley, Emerson, Considine, Sinicki, Bare, Cabrera, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Shelton, Stubbs and Haywood",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Cabrera, Snodgrass, Neubauer, Clancy, Ratcliff, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Conley, Considine, Emerson, Goyke, Hong, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Palmeri, Shelton, Sinicki, Stubbs, Subeck and Haywood; +cosponsored by Senators Spreitzer, Carpenter, Agard, Hesselbein, Larson, Roys and Smith",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, J. Anderson, Andraca, Bare, Billings, Conley, Drake, Jacobson, Joers, Moore Omokunde, Ohnstad, Palmeri, Shelton and Sinicki; +cosponsored by Senators Larson, Carpenter, L. Johnson, Hesselbein and Spreitzer",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Callahan, Allen, Dittrich, Gundrum, S. Johnson, Kitchens, Michalski, Moses, Murphy, O'Connor, Penterman, Petryk, Rozar, Snyder, Spiros and Green; +cosponsored by Senators Felzkowski, Cowles, Jacque, Marklein, Nass and Testin",2023-04-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Bradley, Cabral-Guevara, James and Testin; +cosponsored by Representatives Rozar, Krug, Allen, Binsfeld, Bodden, Brandtjen, Dittrich, Goeben, Kitchens, Maxey, Melotik, Michalski, Murphy, Mursau, Moses, O'Connor, Penterman, Sortwell and Wichgers",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wichgers, Rozar and Allen; +cosponsored by Senators Jacque and Quinn",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator James; +cosponsored by Representatives Mursau, Gundrum, Ratcliff and Wittke",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Agard, Roys, Carpenter, Hesselbein, Spreitzer, Smith, Larson and Pfaff; +cosponsored by Representatives Stubbs, Andraca, Doyle, Joers, Subeck, Conley, Snodgrass, Ratcliff, Jacobson, Hong, Cabrera, Ohnstad, Moore Omokunde, Goyke, Palmeri, Bare, J. Anderson, C. Anderson, Considine, Vining, Myers, Billings, Baldeh, Sinicki, Riemer, Shelton, Clancy, Madison and Emerson",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Jacque, Marklein, Quinn, Stroebel, Wanggaard and Nass; +cosponsored by Representatives Bodden, Behnke, Binsfeld, Brandtjen, Brooks, Callahan, Dittrich, Donovan, Goeben, Maxey, Michalski, O'Connor, Rettinger, Sapik, Spiros, Tusler and Wichgers",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Penterman, Oldenburg, Novak, Mursau, Murphy, Moses, S. Johnson, Gustafson, Green and Behnke; +cosponsored by Senators Quinn and Ballweg",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk and James; +cosponsored by Representatives Binsfeld, Stubbs, Behnke, Bodden, Dittrich, Donovan, Duchow, Gundrum, Hurd, Melotik, Murphy, Mursau, O'Connor, Sinicki and Steffen",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Palmeri, Emerson, J. Anderson, Baldeh, Clancy, Conley, Jacobson, Joers, Madison, Neubauer, Ohnstad, Ratcliff, Shelton, Sinicki, Stubbs and Subeck; +cosponsored by Senators Smith, Spreitzer, Roys, Larson and Agard",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Tomczyk; +cosponsored by Representative Snyder",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, L. Johnson, Larson, Spreitzer, Smith, Roys, Carpenter and Taylor; +cosponsored by Representatives Hong, Conley, Sinicki, Emerson, Bare, Joers, Ratcliff, Considine, Palmeri, Jacobson, Subeck, J. Anderson, Snodgrass, Andraca, C. Anderson, Ohnstad, Clancy, Madison and Shelton",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, Moore Omokunde, Palmeri, Considine, Neubauer, Snodgrass, Cabrera, Ratcliff, Clancy, J. Anderson, Andraca, Bare, Conley, Drake, Emerson, Joers, Sinicki, Subeck and Madison; +cosponsored by Senators Spreitzer, Carpenter, Hesselbein, L. Johnson, Larson, Smith and Wirch",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Baldeh, Madison, Clancy, Hong, Moore Omokunde, Conley, Sinicki, Joers, Ohnstad, Shelton, Emerson, Stubbs, J. Anderson, Palmeri, Subeck, Drake, Jacobson, Andraca, Haywood and Neubauer; +cosponsored by Senator Roys",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Melotik, Behnke, Dittrich, Edming, Goeben, Gundrum, Moses, Murphy, Mursau, Myers, Nedweski, O'Connor, Penterman, Schmidt and Vos; +cosponsored by Senators Ballweg, Marklein, Nass, Taylor and Wanggaard",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, James, Felzkowski, Carpenter, Quinn, Feyen, Testin, Nass, Wirch, Cabral-Guevara, Jacque, Marklein and Tomczyk; +cosponsored by Representatives Novak, August, Duchow, Tusler, Donovan, Rettinger, Doyle, Behnke, Murphy, Drake, Spiros, Schutt, Steffen, Callahan, Sortwell, Wittke, Schmidt, Krug, Dallman, Katsma, Tittl, Michalski, Dittrich, Oldenburg, Wichgers, Magnafici, Mursau, Plumer, Moses, Goeben, Armstrong, Swearingen, Allen, Maxey, Shankland, Petryk, Tranel, Rozar, S. Johnson, Green, Macco, Brandtjen, Gustafson, Zimmerman, Ratcliff, Gundrum, Snyder, Binsfeld, Pronschinske, Born, Summerfield, Andraca and O'Connor",2023-05-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gundrum, Bodden, Armstrong, Behnke, Brooks, Mursau, O'Connor, Ortiz-Velez, Rozar and Wichgers; +cosponsored by Senator Jacque",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Emerson, Considine, Sinicki, Ohnstad, Conley, Bare, Shelton, Ratcliff, Clancy, Baldeh, Joers, Palmeri, Drake, Moore Omokunde, Madison and Jacobson; +cosponsored by Senators Roys, Hesselbein, Agard and Smith",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Jacobson, J. Anderson, Clancy, Madison, Ratcliff, Palmeri, Baldeh, Bare, Billings, C. Anderson, Cabrera, Conley, Considine, Drake, Emerson, Hong, Joers, Moore Omokunde, Shelton, Sinicki, Snodgrass, Stubbs and Haywood; +cosponsored by Senators Larson, Agard, L. Johnson, Roys and Taylor",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Nass; +cosponsored by Representatives Wichgers, Tusler, Allen, Murphy and Brandtjen",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives C. Anderson, J. Anderson, Baldeh, Bare, Cabrera, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Sinicki, Subeck and Clancy; +cosponsored by Senators Spreitzer, Ballweg, Larson and Roys",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Armstrong, Behnke, Brooks, Donovan, Green, Kitchens, Mursau and Subeck; +cosponsored by Senators Cowles and Felzkowski",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Kapenga, Ballweg and Stroebel; +cosponsored by Representatives Duchow, Behnke, Binsfeld, Dittrich, Goeben, Green, Gundrum, Maxey, Michalski, Rettinger, Rozar, Sortwell, Schraa, Tusler and Wichgers",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Tittl, Pronschinske, Edming, Murphy, Mursau, Rozar, Tusler and Wichgers",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Carpenter and Roys; +cosponsored by Representatives Madison, Moore Omokunde, Baldeh, Clancy, Drake, Jacobson, Ohnstad, Ratcliff, Sinicki, Snodgrass, Stubbs and Subeck",2024-03-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Testin; +cosponsored by Representatives Moses, Allen, O'Connor and Schmidt",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Melotik, Brandtjen, Dittrich, Donovan, Goeben, S. Johnson, Kitchens, Michalski, Murphy, O'Connor, Rettinger and Rozar; +cosponsored by Senator Knodl",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Binsfeld, Moses, Michalski, Allen, Armstrong, Bodden, Dittrich, Duchow, Gundrum, Gustafson, Magnafici, Maxey, Murphy, O'Connor, Schmidt and Edming; +cosponsored by Senator Knodl",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tranel, Oldenburg, Schutt, Mursau, Murphy, Hurd, Dittrich, Penterman, Armstrong, Novak, Magnafici and Schmidt; +cosponsored by Senators James, Nass and Marklein",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Ballweg, Carpenter and Spreitzer; +cosponsored by Representatives Tittl, Brandtjen, Dittrich, Jacobson, Melotik, Moses, O'Connor, Rozar, Schmidt, Spiros and Wichgers",2023-12-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Ratcliff, Clancy, Conley, C. Anderson, J. Anderson, Considine, Goyke, Jacobson, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Stubbs and Sinicki; +cosponsored by Senators Taylor, L. Johnson, Spreitzer, Agard and Larson",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Felzkowski, Ballweg, Cowles and Quinn; +cosponsored by Representatives Callahan, Behnke, Edming, Green, Moses, Penterman, Rettinger, Rozar, Schmidt, Sortwell and Jacobson",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kitchens, August, Plumer, Tranel, Billings, McGuire, Allen, Armstrong, Behnke, Binsfeld, Callahan, Dittrich, Edming, Jacobson, Krug, Magnafici, O'Connor, Ortiz-Velez, Penterman, Rettinger, Schmidt, Schutt, Swearingen, Tittl and Wittke; +cosponsored by Senators Testin, Jacque, Roys and Larson",2024-02-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley, Hutton, Nass, Stroebel and Ballweg; +cosponsored by Representatives Donovan, Allen, Brandtjen, Edming, Gundrum, Maxey, Murphy, O'Connor, Penterman, Sortwell, Dittrich and Wichgers",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jagler, Quinn, Feyen, Jacque, Stroebel and Stafsholt; +cosponsored by Representatives Hurd, Brooks, Emerson, Snyder, Steffen, Rozar, Allen, C. Anderson, Behnke, Brandtjen, Dittrich, Donovan, Doyle, Duchow, Edming, Green, Gundrum, Joers, Kitchens, Murphy, O'Connor, Ortiz-Velez, Penterman, Petryk, Plumer, Rettinger, Schmidt, Schraa, Shankland, Sinicki, Swearingen and Wichgers",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, James, Roys, Taylor, Carpenter, Cabral-Guevara, Jacque, Hesselbein, Larson, Agard, Spreitzer, Ballweg, Marklein and Wirch; +cosponsored by Representatives Billings, Kitchens, Drake, Penterman, Spiros, Emerson, Baldeh, Schutt, Tittl, Conley, Mursau, Vining, Haywood, Dittrich, Armstrong, Murphy, Novak, Behnke, O'Connor, Shankland, Moore Omokunde, Riemer, Shelton, Considine, Joers, Tusler, Subeck, Stubbs, Hong, Rozar, Madison, Clancy, Andraca, Allen, C. Anderson, Ortiz-Velez and Donovan",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Snodgrass, Goyke, Vining, J. Anderson, Andraca, Baldeh, Clancy, Considine, Drake, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Palmeri, Ratcliff, Sinicki and Subeck; +cosponsored by Senators Larson, Carpenter, Agard, L. Johnson, Roys, Taylor, Spreitzer, Hesselbein and Smith",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Maxey, Behnke, Binsfeld, Cabrera, Donovan, Edming, Green, Myers, Michalski, Murphy, Mursau, Nedweski, Novak, Ortiz-Velez, Schmidt, Shankland, Sinicki and Wichgers; +cosponsored by Senators Cowles and Tomczyk",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Edming, O'Connor, Oldenburg, Schmidt and Tranel; +cosponsored by Senators Marklein, Ballweg, Cowles, James and Testin",2024-02-01T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Cowles, Feyen, Marklein, Quinn and Tomczyk; +cosponsored by Representatives Bodden, Born, C. Anderson, Andraca, Behnke, Binsfeld, Dittrich, Green, Gundrum, Gustafson, S. Johnson, Kitchens, Knodl, Moses, Murphy, Mursau, Novak, Palmeri, Penterman, Plumer, Sapik, Schraa and Tittl",2023-05-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Ballweg, Marklein and Spreitzer; +cosponsored by Representatives Penterman, Emerson, Nedweski, Armstrong, Gundrum, Moses, Novak, Rozar, Shankland, Subeck and Wittke",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goyke, Moore Omokunde, Baldeh, Ohnstad, Cabrera, Hong, Joers, Stubbs, Subeck, Billings, Shankland, Bare, Palmeri, Sinicki, C. Anderson, Madison, Clancy and Jacobson; +cosponsored by Senators L. Johnson, Hesselbein, Roys, Larson, Wirch and Agard",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Cabral-Guevara, James, Wanggaard and Wimberger; +cosponsored by Representatives Rozar, Binsfeld, Duchow, Knodl, Rodriguez, Sapik, Schutt, Vos, August, Born, Callahan, Dallman, Green, Hurd, S. Johnson, Kitchens, Krug, Kurtz, Michalski, Mursau, Neylon, Novak, Oldenburg, Plumer, Snyder, Spiros, Summerfield, Swearingen and Wittke",2023-05-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Summerfield, Allen, O'Connor, Rettinger, Schmidt, Schraa and Tittl; +cosponsored by Senator Testin",2024-01-30T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau and Penterman; +cosponsored by Senators Jacque and Tomczyk",2023-06-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Behnke, Rettinger, Subeck and Wichgers; +cosponsored by Senator Jacque",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, L. Johnson, Larson and Spreitzer; +cosponsored by Representatives Haywood, Joers, Ratcliff, Emerson, Bare, Snodgrass, Sinicki, Conley, Moore Omokunde, Andraca, Considine, Hong and Ohnstad",2024-03-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Spreitzer, Carpenter, Ballweg, Cabral-Guevara, Taylor and Tomczyk; +cosponsored by Representatives Ortiz-Velez, Sortwell, Subeck, Allen, C. Anderson, Andraca, Bodden, Brandtjen, Cabrera, Conley, Gundrum, Gustafson, Joers, Murphy, Sinicki, Stubbs and Tittl",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Haywood, Baldeh, Conley, Considine, Emerson, Jacobson, Moore Omokunde, Sinicki and Subeck; +cosponsored by Senators James, Spreitzer, L. Johnson and Roys",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Behnke, Binsfeld, Dittrich, Goeben, Green, Gundrum, Maxey, Michalski, Rettinger, Rozar, Schraa, Sortwell, Tusler, Wichgers, Brandtjen and Murphy; +cosponsored by Senators Kapenga, Ballweg and Stroebel",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, O'Connor, Bodden, Dittrich, Green, Gundrum and Wittke; +cosponsored by Senators Tomczyk and Feyen",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard and Jacque; +cosponsored by Representatives Gustafson, Allen, Behnke, Bodden, Brandtjen, Dittrich, Gundrum, Murphy, Mursau, O'Connor, Rettinger, Rozar, Spiros and Wichgers",2023-11-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Dittrich, Baldeh, Behnke, Brandtjen, Edming, Gundrum, Tittl, Wichgers and Allen; +cosponsored by Senators Jacque and Taylor",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Myers, Stubbs, Drake, Vining, Emerson, Baldeh, Bare, Goyke, Ortiz-Velez, Snodgrass, Shelton, Joers, Ratcliff, Conley, Ohnstad, Subeck, Jacobson, J. Anderson, Haywood, Clancy, C. Anderson, Madison and Palmeri; +cosponsored by Senators Taylor, L. Johnson, Wirch, Spreitzer, Larson and Hesselbein",2023-04-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Armstrong, Gundrum, Maxey, Murphy, Rozar, Schmidt, Stubbs, Tittl, Tusler and Wichgers; +cosponsored by Senators Cowles and Cabral-Guevara",2023-08-04T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Magnafici, Dittrich, Murphy and Rozar; +cosponsored by Senators Cabral-Guevara, Roys and Wanggaard",2023-06-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Wirch, Agard, Carpenter, L. Johnson, Larson, Roys, Smith and Spreitzer; +cosponsored by Representatives McGuire, Doyle, Snodgrass, Bare, Considine, Emerson, Jacobson, Joers, Neubauer, Ohnstad, Ratcliff, Shankland, Shelton, Sinicki, Subeck and Vining",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Hesselbein and Taylor; +cosponsored by Representatives J. Anderson, Clancy, Drake, Jacobson, Joers, Moore Omokunde, Palmeri, Ratcliff, Shelton, Sinicki and Madison",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Carpenter, Roys, Spreitzer, Taylor and Hesselbein; +cosponsored by Representatives Hong, Emerson, Cabrera, Moore Omokunde, Ratcliff, Conley, Considine, J. Anderson, Bare, Subeck, Ortiz-Velez, Baldeh, Joers, Jacobson, Clancy, Ohnstad, C. Anderson, Sinicki, Palmeri and Haywood",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Maxey, Donovan, C. Anderson, J. Anderson, Andraca, Baldeh, Clancy, Conley, Considine, Drake, Gundrum, Jacobson, Joers, S. Johnson, Melotik, Michalski, Ratcliff, Schmidt, Sinicki, Stubbs, Subeck and Palmeri; +cosponsored by Senators Larson and Cowles",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt and Tomczyk; +cosponsored by Representatives Gustafson, Behnke, Bodden, Green, Gundrum, Magnafici and Murphy",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gundrum, Behnke, Allen, Brandtjen, Goeben, Ortiz-Velez, Tusler and Wichgers; +cosponsored by Senators Jacque, Testin and Felzkowski",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Goeben, Behnke, Brandtjen, Donovan, Edming, Green, Gundrum, Michalski, Pronschinske and Rettinger; +cosponsored by Senators Wanggaard and Cabral-Guevara",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen and Ballweg; +cosponsored by Representatives Armstrong, Macco, Behnke, Donovan, Hurd, Maxey, Mursau, O'Connor, VanderMeer, Zimmerman and Doyle",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Taylor, Larson and Spreitzer; +cosponsored by Representatives Madison, Haywood, Clancy, Baldeh, C. Anderson, J. Anderson, Conley, Considine, Emerson, Joers, Moore Omokunde, Palmeri, Shelton, Sinicki, Stubbs, Subeck and Neubauer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Donovan, C. Anderson, Armstrong, Bare, Behnke, Brandtjen, Conley, Dittrich, Edming, Emerson, Goeben, Gundrum, Jacobson, S. Johnson, Kitchens, Krug, Maxey, Melotik, Mursau, Nedweski, Novak, O'Connor, Ohnstad, Ortiz-Velez, Petryk, Ratcliff, Rettinger, Shankland, Spiros and Tusler; +cosponsored by Senators James, Pfaff, Nass, Smith and Spreitzer",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Edming, Sinicki, Andraca, Bare, Behnke, Conley, Emerson, S. Johnson, Magnafici, Maxey, Michalski, Moore Omokunde, Ratcliff, Shankland, Subeck and Jacobson; +cosponsored by Senators Wirch, Agard, Carpenter and Larson",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Edming, Myers, Armstrong, Brandtjen, Dittrich, Goeben, Murphy, O'Connor, Rettinger, Rozar, Schraa, Snyder, Joers, Novak, Conley and Rodriguez; +cosponsored by Senators Felzkowski, Larson, Taylor, Marklein and Cabral-Guevara",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Ohnstad, Haywood, Conley, Joers, Hong, Stubbs, Emerson, Cabrera, Doyle, Snodgrass, Shelton, Ratcliff, Ortiz-Velez, J. Anderson, Considine, C. Anderson, Drake, Subeck, Bare, Palmeri and Moore Omokunde; +cosponsored by Senators Smith, Carpenter, Hesselbein, Spreitzer and Agard",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Taylor, Hesselbein, L. Johnson and Roys; +cosponsored by Representatives Subeck, J. Anderson, Andraca, Conley, Considine, Sinicki, Emerson, C. Anderson, Bare, Cabrera, Clancy, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Stubbs and Madison",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and Cabral-Guevara; +cosponsored by Representatives Goeben and Gustafson",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Cabral-Guevara, Felzkowski, Nass and Marklein; +cosponsored by Representatives Tittl, Armstrong, Binsfeld, Dittrich, Edming, Gundrum, S. Johnson, Kitchens, Magnafici, Moses, Murphy, Mursau, Nedweski, Novak, O'Connor, Penterman, Petryk, Rettinger, Rozar and Steffen",2023-05-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Emerson, Conley, J. Anderson, Considine, Andraca, Bare, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Snodgrass, Stubbs and Haywood; +cosponsored by Senators Larson, Taylor, Hesselbein, L. Johnson and Spreitzer",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Myers, Allen, Baldeh, Conley, Dittrich, Donovan, Edming, Green, Jacobson, Magnafici, Moses, Mursau, Ortiz-Velez, Penterman, Ratcliff, Schutt, Sinicki and Subeck; +cosponsored by Senators James, Hesselbein and Spreitzer",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg, Jacque, James, Quinn and Tomczyk; +cosponsored by Representatives VanderMeer, Armstrong, Hurd, Krug, O'Connor and Schmidt",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Ballweg, Cabral-Guevara, Cowles, Felzkowski, Nass and Tomczyk; +cosponsored by Representatives Born, Behnke, Brandtjen, Cabrera, Green, Michalski, Novak, O'Connor, Rettinger, Rozar, Subeck and Mursau",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Taylor, Hesselbein, Larson and Smith; +cosponsored by Representatives Baldeh, Andraca, Bare, Considine, Stubbs, Conley, Moore Omokunde, Emerson, Jacobson, Palmeri, Subeck, Joers, Neubauer, Ohnstad, Clancy, J. Anderson, Shelton, Sinicki, Vining, Madison and Drake",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Smith, Roys, Hesselbein, Agard, Spreitzer and Carpenter; +cosponsored by Representatives Shelton, Myers, C. Anderson, Andraca, Madison, Joers, Baldeh, Subeck, Sinicki, Ratcliff, J. Anderson, Clancy and Neubauer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, Emerson, Myers, Cabrera, Moore Omokunde, Ratcliff, Conley, J. Anderson, Bare, Subeck, Ortiz-Velez, Baldeh, Joers, Jacobson, Clancy, Ohnstad, C. Anderson, Sinicki and Haywood; +cosponsored by Senators Larson, Carpenter, Roys, Spreitzer, Taylor and Hesselbein",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Ballweg and Carpenter; +cosponsored by Representatives Murphy, Armstrong, Brandtjen, Donovan, Mursau, Ortiz-Velez, Plumer, Sinicki, Tusler and Wichgers",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Bodden, O'Connor, Allen, Armstrong, Behnke, Binsfeld, Brooks, Goeben, Murphy, Penterman, Rettinger, Schmidt and Brandtjen; +cosponsored by Senators Tomczyk, Nass and Ballweg",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Cabral-Guevara, James, Quinn and Knodl; +cosponsored by Representatives Kurtz, Rodriguez, Vos, August, Born, Armstrong, Behnke, Binsfeld, Callahan, Dallman, Dittrich, Donovan, Duchow, Edming, Green, Gundrum, Gustafson, Hurd, Katsma, Kitchens, Krug, Magnafici, Maxey, Michalski, Moses, Murphy, Mursau, Nedweski, O'Connor, Oldenburg, Penterman, Petersen, Petryk, Plumer, Pronschinske, Rozar, Sapik, Schmidt, Schraa, Snyder, Sortwell, Spiros, Steffen, Summerfield, Swearingen, Tusler and Zimmerman",2023-05-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Hesselbein, Agard, Carpenter, L. Johnson, Larson, Roys, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Subeck, C. Anderson, J. Anderson, Andraca, Bare, Billings, Clancy, Conley, Considine, Drake, Emerson, Hong, Jacobson, Joers, Moore Omokunde, Neubauer, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton and Sinicki",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Maxey, Michalski, S. Johnson, Edming, O'Connor, Murphy, Callahan, Rettinger, Armstrong, Moses and Rozar",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Brandtjen, Dittrich, Jacobson, Melotik, Moses, O'Connor, Rozar, Schmidt, Spiros and Wichgers; +cosponsored by Senators Cabral-Guevara, Ballweg, Carpenter and Spreitzer",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator James; +cosponsored by Representatives Sortwell, Penterman, Baldeh, Melotik, Ohnstad and Ortiz-Velez",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Swearingen, Plumer, Sinicki, Snodgrass, Spiros, Wittke and Dallman; +cosponsored by Senators Felzkowski, Nass, Roys and Testin",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Shankland; +cosponsored by Senator Testin",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Snodgrass, Palmeri, J. Anderson, Baldeh, Bare, Conley, Emerson, Jacobson, Joers, Moore Omokunde, Ratcliff, Sinicki, Stubbs, Vining, Haywood and Clancy; +cosponsored by Senators Roys, Hesselbein, L. Johnson, Larson, Smith, Spreitzer and Agard",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Carpenter, Roys, Agard, Hesselbein, L. Johnson, Larson, Smith and Taylor; +cosponsored by Representatives Neubauer, Snodgrass, Cabrera, Ratcliff, Clancy, C. Anderson, J. Anderson, Baldeh, Bare, Conley, Considine, Drake, Emerson, Hong, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Shankland, Shelton, Sinicki and Subeck",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Behnke, Brandtjen, Donovan, Michalski, Murphy and Mursau; +cosponsored by Senator Jacque",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen and Quinn; +cosponsored by Representatives Armstrong, Kurtz, Allen, Dittrich, Edming, Green, Kitchens, Magnafici, Murphy, Mursau, Novak, Snyder, Spiros, Tusler and VanderMeer",2023-02-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Armstrong, Behnke, Bodden, Brandtjen, Dittrich, Murphy, O'Connor and Rettinger; +cosponsored by Senators Jacque and Tomczyk",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wichgers, Bodden, Allen and Brandtjen",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Cabral-Guevara and Taylor; +cosponsored by Representatives Penterman, Brandtjen and Sinicki",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Ballweg and Smith; +cosponsored by Representatives August and Shelton",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Haywood, Hong and Clancy; +cosponsored by Senators Larson and Spreitzer",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wichgers, Brandtjen, O'Connor, Sapik, Behnke, C. Anderson and Rettinger; +cosponsored by Senators Jacque, Bradley, Wanggaard, Cabral-Guevara, Ballweg and Tomczyk",2023-05-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Testin and Spreitzer; +cosponsored by Representatives Krug, Gundrum, Dittrich, Kitchens, Mursau, Novak, Ortiz-Velez, Petryk, Riemer, Rozar, Shankland, Spiros, Subeck and Wichgers",2023-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Smith, Roys, Hesselbein, Agard, Spreitzer and Carpenter; +cosponsored by Representatives Shelton, Joers, C. Anderson, Clancy, Jacobson, Considine, Myers, Vining, Madison, Baldeh, Subeck, Sinicki, Ratcliff and J. Anderson",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Spreitzer, Hesselbein, Larson and Roys; +cosponsored by Representatives Oldenburg, Jacobson, Andraca, Armstrong, Baldeh, Bare, Conley, Drake, Emerson, Joers, Magnafici, Mursau, Kitchens, Murphy, O'Connor, Ohnstad, Ortiz-Velez, Ratcliff, Sinicki, Spiros, Stubbs, Subeck and VanderMeer",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Palmeri, Shelton, Shankland, Emerson, J. Anderson, Baldeh, Clancy, Conley, Joers, Madison, Neubauer, Ohnstad, Ratcliff, Sinicki, Stubbs and Subeck; +cosponsored by Senators Larson, Spreitzer, Roys and Agard",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles and James; +cosponsored by Representatives Sortwell, Baldeh, Goeben, Mursau, O'Connor and Rodriguez",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor and Carpenter; +cosponsored by Representatives C. Anderson, Madison, Clancy, Jacobson, Neubauer, Ortiz-Velez and Palmeri",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, Madison, Palmeri, C. Anderson, J. Anderson, Baldeh, Cabrera, Drake, Emerson, Hong, Jacobson, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Shelton, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Larson, Hesselbein, L. Johnson, Spreitzer and Roys",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Macco, Ortiz-Velez, Kitchens, Conley, Goyke, McGuire, O'Connor, Allen, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Considine, Emerson, Hong, Joers, Madison, Mursau, Neubauer, Ohnstad, Snyder and Stubbs; +cosponsored by Senators Taylor, James, Hesselbein, Tomczyk, Agard, Carpenter, Larson, Roys and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Cabral-Guevara, Stroebel, Ballweg and Felzkowski; +cosponsored by Representatives Goeben, Binsfeld, Brandtjen, Edming, Green, Gundrum, Gustafson, Hurd, Krug, Magnafici, Maxey, O'Connor, Penterman, Petersen, Petryk, Plumer, Rozar, Schmidt, Steffen, Summerfield, Swearingen, Tranel, VanderMeer and Wichgers",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives O'Connor, Stubbs, Maxey, Gundrum, Plumer, Mursau, Callahan, Dittrich, Considine, Behnke, Palmeri, Edming, Subeck, Murphy, Schraa, Hurd and Brandtjen",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Tittl, Goyke, C. Anderson, Andraca, Armstrong, Baldeh, Bare, Billings, Brooks, Cabrera, Clancy, Conley, Considine, Donovan, Doyle, Drake, Edming, Emerson, Gundrum, Gustafson, Haywood, Hong, Joers, Kitchens, Krug, Macco, Madison, McGuire, Moore Omokunde, Moses, Mursau, Myers, Novak, O'Connor, Ohnstad, Ortiz-Velez, Ratcliff, Riemer, Rozar, Schmidt, Schraa, Shankland, Shelton, Sinicki, Snodgrass, Snyder, Sortwell, Stubbs, Subeck, Vining, Zimmerman and Jacobson; +cosponsored by Senators Cabral-Guevara, Wimberger, Roys, Felzkowski, James, L. Johnson, Larson, Spreitzer, Taylor, Wanggaard and Wirch",2023-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, Ballweg and Roys; +cosponsored by Representatives Tusler, Allen, Born, Callahan, Kitchens, O'Connor and Steffen",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Swearingen, Allen, Armstrong, Baldeh, Behnke, Bodden, Brooks, Edming, Gundrum, Gustafson, Kitchens, Knodl, Macco, Murphy, Mursau, Nedweski, Penterman, Rettinger, Rodriguez, Sortwell, Tittl, Tranel, Tusler, Wittke, Steffen and C. Anderson; +cosponsored by Senators Stroebel, Ballweg, Cabral-Guevara, Cowles, Felzkowski, Nass, Quinn, Roys, Wanggaard and Spreitzer",2023-04-07T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg and Marklein; +cosponsored by Representatives Novak, Brandtjen, Donovan, Kitchens, Michalski, Murphy and Schmidt",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Stroebel, Cabral-Guevara, Testin, Tomczyk and Stafsholt; +cosponsored by Representatives Moses, Sapik, Allen, Armstrong, Behnke, Binsfeld, Bodden, Callahan, Dittrich, Donovan, Duchow, Edming, Goeben, Green, Gundrum, Hurd, Magnafici, Maxey, Melotik, Michalski, O'Connor, Penterman, Plumer, Rettinger, Rozar, Schraa, Sortwell, Spiros, Steffen, Summerfield, Tusler and Murphy",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Cabral-Guevara, Felzkowski and Taylor; +cosponsored by Representatives Tusler, Penterman, Edming, Bodden, Mursau, Kitchens, Magnafici, Rozar, Steffen and Murphy",2023-02-15T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Ballweg, Bradley, Feyen and Marklein; +cosponsored by Representatives Gustafson, Dittrich, Kitchens, Magnafici, Murphy, Mursau, O'Connor, Rozar, Schmidt and Wichgers",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Ballweg and Tomczyk; +cosponsored by Representatives Dittrich, Nedweski, O'Connor, Magnafici, Armstrong, Murphy, Maxey, Goeben, Duchow, Brandtjen, Rozar and Rettinger",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Agard, Cabral-Guevara, Hesselbein, Smith, Spreitzer and Taylor; +cosponsored by Representatives Kitchens, Billings, C. Anderson, Andraca, Bodden, Cabrera, Conley, Considine, Joers, Mursau, Ratcliff, Rozar, Shankland, Sinicki, Snodgrass, Stubbs, Subeck, Tusler and Vining",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Armstrong, Behnke, Macco, O'Connor and Schmidt; +cosponsored by Senators Stroebel, Knodl, Nass and Roys",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Ratcliff, J. Anderson, Baldeh, Bare, Drake, Emerson, Madison, Palmeri, Shelton, Snodgrass, Stubbs and Clancy; +cosponsored by Senators Spreitzer and Roys",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Agard, Hesselbein, Roys, Spreitzer and Taylor; +cosponsored by Representatives Shankland, Considine, C. Anderson, Palmeri, Emerson, Jacobson, Ohnstad, Shelton, Joers and Ratcliff",2023-12-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, Considine, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Behnke, Billings, Cabrera, Conley, Emerson, Haywood, Hong, Jacobson, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs, Subeck, Vining and Madison; +cosponsored by Senators Agard, Smith, Carpenter, Hesselbein, Larson, Roys and Spreitzer",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Larson; +cosponsored by Representatives Ratcliff, Madison, Baldeh, Clancy, Palmeri, Stubbs and Sinicki",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Ballweg, Cabral-Guevara, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Subeck, Rozar, C. Anderson, J. Anderson, Andraca, Bare, Binsfeld, Cabrera, Clancy, Conley, Considine, Dittrich, Drake, Emerson, Haywood, Jacobson, Joers, S. Johnson, Madison, Magnafici, Melotik, Moore Omokunde, Murphy, Mursau, O'Connor, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Sinicki, Snodgrass, Stubbs, Vining and Kitchens",2023-09-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Steffen, C. Anderson, Andraca, Baldeh, Conley, Donovan, Emerson, Jacobson, Joers, Madison, O'Connor, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Sinicki and Wichgers; +cosponsored by Senators Bradley, Cowles, Larson and Spreitzer",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Conley, Novak, Goyke, Baldeh, C. Anderson, Ratcliff, Andraca, Armstrong, Bare, Clancy, Considine, Emerson, Jacobson, Joers, S. Johnson, Madison, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Shelton, Sinicki, Snodgrass, Stubbs and Subeck; +cosponsored by Senators Spreitzer, Agard, Larson, Roys and Smith",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Knodl; +cosponsored by Representatives Melotik, Armstrong, Moses and Murphy",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Pronschinske, Summerfield, Sinicki, Baldeh, C. Anderson, Dittrich, Donovan, Drake, Edming, Emerson, Green, Gundrum, Kitchens, Krug, Michalski, Murphy, O'Connor, Ohnstad, Penterman, Petryk, Rozar, Schraa, Steffen, Subeck, Tittl, Vos and Behnke; +cosponsored by Senator Jacque",2023-07-17T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Plumer, Armstrong, Gundrum, Novak, O'Connor, Ohnstad and Spiros; +cosponsored by Senators Feyen, Cowles and Quinn",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Considine, Shelton, Ratcliff, Emerson, Stubbs, Clancy, Conley, Sinicki, Moore Omokunde, Subeck, J. Anderson, Bare, Ohnstad and Palmeri; +cosponsored by Senators Agard and L. Johnson",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Mursau, Armstrong, Behnke, Brooks, Dittrich, Spiros and Wichgers; +cosponsored by Senators Jacque and Taylor",2023-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Penterman, Rettinger, Behnke and Dittrich; +cosponsored by Senators Jacque, Nass and Tomczyk",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James and Wanggaard; +cosponsored by Representatives Green, Armstrong, Gustafson, Murphy, Rozar, Sapik, Schraa and Subeck",2023-05-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, James, Marklein, Taylor and Tomczyk; +cosponsored by Representatives Tittl, Armstrong, Brandtjen, Gundrum, Murphy, Mursau, Tusler and Wichgers",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wittke, Brandtjen, Brooks, Dittrich, Goeben, Penterman, Sortwell, Wichgers and O'Connor; +cosponsored by Senators Stroebel, Cabral-Guevara, Felzkowski, Jagler, Marklein, Nass, Quinn and Wanggaard",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Allen, Binsfeld, Bodden, Brandtjen, Edming, Green, Gundrum, Moses, Murphy, O'Connor, Ortiz-Velez, Palmeri, Rettinger, Schraa and Shankland; +cosponsored by Senators Quinn, Feyen, Stroebel and Tomczyk",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Neubauer, Ohnstad, Sinicki, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Clancy, Conley, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Palmeri, Ratcliff, Shankland, Shelton, Stubbs, Subeck, Vining and Drake; +cosponsored by Senators Roys, L. Johnson, Agard, Taylor, Carpenter, Smith, Spreitzer, Wirch and Larson",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Rodriguez; +cosponsored by Senator Stroebel",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goeben, Hurd, Allen, Binsfeld, Brandtjen, Edming, Green, Gundrum, Gustafson, Krug, Magnafici, Maxey, O'Connor, Penterman, Petersen, Petryk, Plumer, Rodriguez, Rozar, Schmidt, Steffen, Summerfield, Swearingen, Tranel, VanderMeer and Armstrong; +cosponsored by Senators Quinn and Cabral-Guevara",2023-09-01T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Cabral-Guevara; +cosponsored by Representatives Tranel, Magnafici, Behnke, Brandtjen, Cabrera, Green, Gundrum, Kitchens, Mursau, Myers, Novak, Oldenburg, Pronschinske, Rozar, Schraa, Spiros, Duchow and Moses",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Carpenter, Hesselbein, Agard and Spreitzer; +cosponsored by Representatives Bare, Joers, C. Anderson, J. Anderson, Clancy, Conley, Considine, Emerson, Madison, Myers, Palmeri, Ratcliff, Shelton and Subeck",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Novak, C. Anderson, Behnke, Bodden, Brandtjen, Cabrera, Donovan, Edming, Green, Gustafson, Kitchens, Knodl, Mursau, Ohnstad, Ortiz-Velez, Wichgers and Clancy; +cosponsored by Senators Jacque, Carpenter and Spreitzer",2023-02-28T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Zimmerman, Wittke, Allen, Armstrong, Binsfeld, Green, Krug, Murphy, Nedweski, O'Connor, Petryk, Pronschinske and Rettinger; +cosponsored by Senators Quinn, Bradley, Cowles, Feyen, Nass and Wanggaard",2023-06-01T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, C. Anderson, Brooks, Edming, Murphy, Sapik, J. Anderson, Bare, Considine, Emerson, Jacobson, Joers, Ohnstad, Ortiz-Velez, Ratcliff, Shankland, Sinicki and Haywood; +cosponsored by Senators James, Hesselbein, Agard, Larson, Roys and Spreitzer",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor, Larson, Carpenter, Wirch, L. Johnson, Spreitzer and Agard; +cosponsored by Representatives Stubbs, Cabrera, Neubauer, Snodgrass, Subeck, Emerson, Shankland, Conley, Sinicki, Hong, Ratcliff, Moore Omokunde, C. Anderson, Madison, Bare, Joers, Vining, O'Connor, Andraca, Palmeri, Ohnstad, Considine, Jacobson, Goyke and Ortiz-Velez",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Myers, Andraca, Bare, Binsfeld, Conley, Considine, Drake, Emerson, Jacobson, Joers, Moore Omokunde, Murphy, O'Connor, Ohnstad, Ratcliff, Rozar, Shankland, Stubbs and Subeck; +cosponsored by Senators Agard, Cowles, Larson and Spreitzer",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, Ballweg, Cowles and Taylor; +cosponsored by Representatives Kitchens, Kurtz, Steffen, Armstrong, Duchow, Edming, Green, Macco, Murphy, Mursau, Myers, Novak, Ortiz-Velez, Rozar and Spiros",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Magnafici, Behnke, Bodden, Brooks, Penterman, Plumer, Rozar and Tittl; +cosponsored by Senators Stafsholt, Ballweg, Quinn, Stroebel and Tomczyk",2023-06-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Clancy, Drake, Baldeh, J. Anderson, Conley, Emerson, Haywood, Joers, Moore Omokunde, Palmeri, Shelton, Stubbs and Neubauer; +cosponsored by Senators Roys, Taylor, L. Johnson, Larson and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, C. Anderson, Ratcliff, Madison, Palmeri, J. Anderson, Baldeh, Bare, Cabrera, Considine, Drake, Emerson, Hong, Jacobson, Joers, Moore Omokunde, Shelton, Sinicki, Snodgrass, Stubbs and Haywood; +cosponsored by Senators Larson, Hesselbein, L. Johnson, Roys and Smith",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Considine, Andraca, Joers, Moore Omokunde, Palmeri, Ratcliff and Sinicki",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Carpenter, L. Johnson, Hesselbein and Spreitzer; +cosponsored by Representatives J. Anderson, Subeck, C. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Drake, Emerson, Jacobson, Joers, Moore Omokunde, Ohnstad, Palmeri, Shankland, Shelton, Sinicki and Snodgrass",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg, Cowles, L. Johnson, Quinn, Roys and Spreitzer; +cosponsored by Representatives Rozar, Allen, Andraca, Armstrong, C. Anderson, Billings, Dittrich, Donovan, Gundrum, Hurd, Joers, Kurtz, Novak, Snyder, Stubbs, Subeck and Vining",2023-12-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Swearingen, Armstrong, Baldeh, Bare, Behnke, Edming, Goeben, Goyke, Green, Gundrum, Hurd, Jacobson, S. Johnson, Kitchens, Michalski, Mursau, Novak, O'Connor, Oldenburg, Penterman, Rettinger, Schmidt, Shankland, Tranel and Joers; +cosponsored by Senators Felzkowski, Ballweg, Pfaff, Spreitzer, Taylor and Tomczyk",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Taylor, Wirch, Carpenter and Spreitzer; +cosponsored by Representatives O'Connor, Emerson, Maxey, Plumer, Gundrum, Conley, Mursau, Callahan, Joers, Dittrich, C. Anderson, Sinicki, Considine, Stubbs, Baldeh, Palmeri, Subeck, Edming, Bare, Behnke, Billings, Melotik, Schraa, Hurd, Shankland and Ohnstad",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Wanggaard, Ballweg and Marklein; +cosponsored by Representatives Penterman, Myers and Brandtjen",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Baldeh, Drake, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Sinicki, Stubbs and Behnke; +cosponsored by Senators Wirch, Hesselbein, Smith, Spreitzer and Taylor",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Tomczyk; +cosponsored by Representative Snyder",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Plumer, Binsfeld, Baldeh, Cabrera, Melotik, Novak, O'Connor, Ortiz-Velez, Rodriguez, Schmidt and Wichgers; +cosponsored by Senators Tomczyk, Marklein and Taylor",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Brooks, Bodden, Andraca, Joers and Murphy; +cosponsored by Senators Ballweg, Felzkowski, Testin and James",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Myers, Goyke, Clancy, Jacobson, Andraca, Baldeh, Conley, Considine, Drake, Emerson, J. Anderson, Joers, Madison, Moore Omokunde, Neubauer, Palmeri, Ratcliff, Sinicki, Shelton, Stubbs, Subeck, Vining and C. Anderson; +cosponsored by Senators Larson, Taylor, Roys, Agard, Hesselbein, L. Johnson, Spreitzer and Wirch",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Carpenter, Roys, Spreitzer, Agard, L. Johnson and Smith; +cosponsored by Representatives Andraca, Shelton, Ratcliff, Sinicki, Snodgrass, Considine, Subeck, Joers, J. Anderson, Clancy, Emerson, Jacobson and Neubauer",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives S. Johnson, Penterman and Murphy; +cosponsored by Senator James",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Ratcliff, Bare, Emerson, Joers, Moore Omokunde, Sinicki and Stubbs; +cosponsored by Senators Smith, Agard, L. Johnson, Larson and Spreitzer",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Krug, Goyke and Armstrong; +cosponsored by Senators Knodl and L. Johnson",2024-02-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Behnke, Baldeh, Billings, Cabrera, Donovan, Emerson, Joers, Myers, Ohnstad, Ortiz-Velez, Palmeri, Sinicki, Stubbs, Subeck and Riemer; +cosponsored by Senators Smith, Agard, Roys and Larson",2023-06-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Rettinger, Donovan, Schutt, O'Connor, Dittrich, Rozar, Gundrum, Mursau, Wichgers, Bodden and Brandtjen; +cosponsored by Senators Hutton, Bradley, Wanggaard, James, Felzkowski and Nass",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Stubbs, Emerson, Andraca, Baldeh, Conley, Jacobson, Joers, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Ratcliff, Sinicki, Snodgrass, Subeck and Palmeri; +cosponsored by Senators Smith, L. Johnson, Carpenter, Larson, Roys, Spreitzer and Agard",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Wanggaard; +cosponsored by Representatives Sortwell, Tittl, Brooks, Donovan, Edming, Murphy, Mursau and Spiros",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Penterman, Wichgers and Brandtjen",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, Snodgrass, Neubauer, Cabrera, J. Anderson, Bare, Considine, Jacobson, Joers, Ratcliff, Stubbs, Subeck, C. Anderson, Baldeh, Clancy, Drake, Madison, Moore Omokunde, Novak, Ohnstad, Shelton, Sinicki and Palmeri; +cosponsored by Senators Spreitzer, Roys, Carpenter, Agard, Hesselbein and Larson",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Jacque; +cosponsored by Representatives Wichgers and Sinicki",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, Madison, Ratcliff, Palmeri, C. Anderson, J. Anderson, Baldeh, Cabrera, Conley, Drake, Emerson, Hong, Jacobson, Joers, Moore Omokunde, Shelton, Sinicki, Snodgrass, Stubbs and Subeck; +cosponsored by Senators Larson, Agard, Hesselbein, L. Johnson, Roys and Smith",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives O'Connor, Emerson, Maxey, Plumer, Gundrum, Conley, Mursau, Callahan, Joers, Dittrich, C. Anderson, Sinicki, Considine, Stubbs, Baldeh, Palmeri, Subeck, Edming, Bare, Behnke, Billings, Melotik, Schraa, Hurd, Shankland and Ohnstad; +cosponsored by Senators Taylor, Wirch, Carpenter and Spreitzer",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Behnke, Binsfeld, Dittrich, Goeben, Green, Gundrum, Maxey, Michalski, Rettinger, Rozar, Schraa, Tusler, Wichgers, Brandtjen, Murphy and S. Johnson; +cosponsored by Senators Kapenga, Ballweg and Stroebel",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Neylon, Gustafson, Tittl, Baldeh, Green, Krug, Murphy, O'Connor, Rettinger, Rozar, Spiros and Tranel; +cosponsored by Senators Cowles, Stroebel and Ballweg",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Roys, Agard, Cabral-Guevara, Taylor, Ballweg, Cowles, L. Johnson and Spreitzer; +cosponsored by Representatives Joers, Vining, Drake, Emerson, Bare, Ratcliff, Sinicki, Subeck, Shelton, Mursau, Baldeh, Ohnstad, Murphy, Conley, Binsfeld, Cabrera, Considine, Palmeri, C. Anderson and Shankland",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Conley, Andraca, Clancy, Bare, Baldeh, Drake, J. Anderson, Jacobson, Joers, Emerson, Madison, Moore Omokunde, Neubauer, Palmeri, Ratcliff, Shankland, Shelton, Stubbs, Subeck and Vining; +cosponsored by Senators Larson, Smith, Agard, Roys, Taylor, Carpenter and Spreitzer",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Green, Summerfield, Dittrich, Gustafson, Palmeri, Schmidt, Schraa and Sinicki; +cosponsored by Senator Quinn",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Felzkowski, Nass and Tomczyk; +cosponsored by Representatives Pronschinske, Allen, Armstrong, Behnke, Bodden, Brandtjen, Callahan, Dittrich, Edming, Goeben, Gundrum, Gustafson, Magnafici, Maxey, Murphy, Mursau, O'Connor, Penterman, Rettinger, Schmidt, Sortwell, Summerfield, VanderMeer and Wichgers",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Ballweg and Marklein; +cosponsored by Representatives Pronschinske, Allen, Armstrong, Behnke, Bodden, Brandtjen, C. Anderson, Callahan, Edming, Goeben, Magnafici, Moses, Mursau and Penterman",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Jacobson, Ratcliff, C. Anderson, Considine, J. Anderson and Joers; +cosponsored by Senators Hesselbein, Spreitzer and Agard",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goeben, C. Anderson, Behnke, Dittrich, Edming, Gundrum, Gustafson, Kitchens, Maxey, Moses, Murphy, Novak, O'Connor, Oldenburg, Palmeri, Penterman, Sapik, Schmidt, Schutt, Sortwell, Subeck, Tranel, Kurtz and Brandtjen; +cosponsored by Senators Marklein, Cowles, Pfaff, Spreitzer and Wanggaard",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kurtz, Edming, Allen, C. Anderson, Binsfeld, Brandtjen, Duchow, Green, Gustafson, Kitchens, Krug, Magnafici, Maxey, Michalski, Murphy, Mursau, Nedweski, Novak, O'Connor, Ortiz-Velez, Penterman, Petryk, Plumer, Rettinger, Schraa, Sinicki, Spiros, Steffen, Stubbs, Swearingen, VanderMeer, Wittke and Zimmerman; +cosponsored by Senators Marklein, Cabral-Guevara, Hesselbein, Jagler, Knodl and Nass",2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson, Smith, Roys, Hesselbein, Agard, Spreitzer, Carpenter and Pfaff; +cosponsored by Representatives Shelton, Ratcliff, Jacobson, C. Anderson, Considine, Shankland, J. Anderson, Baldeh, Cabrera, Clancy, Conley, Haywood, Hong, Joers, Ohnstad, Palmeri, Sinicki, Snodgrass, Stubbs and Vining",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Green, Armstrong, Magnafici, Mursau, Rettinger, Steffen and Summerfield; +cosponsored by Senator James",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Andraca, Stubbs, C. Anderson, J. Anderson, Baldeh, Bare, Cabrera, Conley, Considine, Donovan, Drake, Emerson, Goyke, Haywood, Jacobson, Joers, Madison, McGuire, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Sinicki, Snodgrass, Subeck and Vining; +cosponsored by Senators L. Johnson, Carpenter, Roys, Spreitzer, Agard, Larson, Hesselbein, Smith and Taylor",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Cabral-Guevara; +cosponsored by Representatives Gustafson, Brooks, O'Connor, Ortiz-Velez and Wichgers",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Nass and Cabral-Guevara; +cosponsored by Representatives Sortwell, Rozar, Allen, Behnke, Bodden, Brandtjen, Brooks, Callahan, Edming, Goeben, Magnafici, Michalski, Murphy, O'Connor, Rettinger, Schraa, Schutt and Wichgers",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, C. Anderson, Bare, Madison, Palmeri and Sinicki; +cosponsored by Senator Carpenter",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg, Cowles, Marklein and Spreitzer; +cosponsored by Representatives Brooks, Rozar, Brandtjen, Dittrich, Edming, Gundrum, Hurd, Jacobson, Mursau, Penterman and Schmidt",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Taylor, L. Johnson, Spreitzer, Cabral-Guevara and Agard; +cosponsored by Representatives Joers, Baldeh, Ratcliff, Sinicki, Conley, J. Anderson, Emerson, Hong, Snodgrass, Subeck, Moore Omokunde, Bare, Shelton, Cabrera, Considine, Palmeri, Andraca, Jacobson, Clancy and Ortiz-Velez",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Bradley, Carpenter, Larson, Spreitzer, Pfaff, Roys, Hesselbein and Jacque; +cosponsored by Representatives Drake, Emerson, Neubauer, Ratcliff, Ohnstad, Subeck, Vining, Bare, Ortiz-Velez, Shelton, Goyke, Doyle, C. Anderson, Shankland, Joers, Considine, Brandtjen, Andraca, Dittrich, Palmeri, Riemer, Allen, Hong, Sinicki, Cabrera, J. Anderson, Conley, Schraa, Clancy, McGuire, Baldeh, Haywood, Myers, Stubbs, Moore Omokunde and Madison",2023-06-21T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee for Review of Administrative Rules,2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler, Allen, Behnke, Conley, Gustafson, Kitchens, Murphy, O'Connor, Penterman, Rettinger, Rozar, Spiros and Wichgers; +cosponsored by Senators Hutton, Cabral-Guevara, Wanggaard, Ballweg and Stroebel",2023-06-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer and Agard; +cosponsored by Representatives Ratcliff, Joers, Madison, Clancy, Palmeri, Jacobson, C. Anderson, Considine and J. Anderson",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Stubbs; +cosponsored by Senator Larson",2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Agard, Roys and Smith; +cosponsored by Representatives Jacobson, Considine, Tranel, Bare, Behnke, C. Anderson, Conley, Drake, Emerson, Hong, Joers, Ohnstad, Palmeri, Ratcliff, Shankland, Stubbs and Subeck",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Spreitzer and Taylor; +cosponsored by Representatives Ortiz-Velez, Sortwell, Cabrera, Myers, Joers, Murphy, Sinicki, Ohnstad and Gustafson",2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Agard, Hesselbein and Spreitzer; +cosponsored by Representatives Cabrera, Sinicki, Baldeh, Joers, Ohnstad, Palmeri and Shankland",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Ballweg and Quinn; +cosponsored by Representatives Bodden, Behnke, Binsfeld, Goeben, S. Johnson, Rettinger, Rozar and Schutt",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Plumer, Dallman, C. Anderson, Armstrong, Kitchens, Mursau, Myers, Novak, Penterman, Rozar, Schutt and Jacobson; +cosponsored by Senators Ballweg, Cowles, Marklein, Smith, Spreitzer and Taylor",2023-02-10T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Cowles, Larson and Spreitzer; +cosponsored by Representatives Myers, Andraca, Bare, Binsfeld, Conley, Considine, Drake, Emerson, Jacobson, Joers, Moore Omokunde, Murphy, O'Connor, Ohnstad, Ratcliff, Rozar, Shankland, Stubbs and Subeck",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson and Spreitzer; +cosponsored by Representatives Madison, Emerson, Considine, Conley, Joers, Sinicki, Clancy, Shelton, C. Anderson, Stubbs, J. Anderson, Palmeri, Jacobson, Haywood, Moore Omokunde and Neubauer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bare, Joers, Vining, Clancy, Ratcliff, J. Anderson, Jacobson, Madison, Neubauer, Palmeri, Sinicki and Drake; +cosponsored by Senators Hesselbein, Roys, Spreitzer, Agard and Larson",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Rozar, Allen, C. Anderson, Baldeh, Behnke, Bodden, Brandtjen, Knodl, Murphy, Mursau, Rettinger and Schraa; +cosponsored by Senators Jacque, Nass and Spreitzer",2023-02-28T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, Hong, J. Anderson, Andraca, Clancy, Considine, Drake, Emerson, Joers, S. Johnson, Madison, McGuire, Moore Omokunde, Neubauer, Ohnstad, Ratcliff, Schutt, Shelton, Sinicki, Snodgrass, Spiros, Subeck, Vining, Baldeh, Conley, Shankland, Jacobson and Haywood; +cosponsored by Senators Roys, Agard, Carpenter, Hesselbein, Spreitzer, Taylor, Wanggaard, Wirch and Ballweg",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Andraca, Baldeh, Bare, Billings, Clancy, Drake, Goyke, Kitchens, Madison, Maxey, Moore Omokunde, Mursau, Neubauer, Ohnstad, Ortiz-Velez, Schmidt, Shelton, Snodgrass, Spiros, Stubbs, Subeck, Sinicki, Schraa and Jacobson; +cosponsored by Senators James, L. Johnson, Larson, Pfaff, Roys, Spreitzer, Taylor, Wirch and Agard",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, Allen, J. Anderson, Andraca, Baldeh, Behnke, Clancy, Conley, Emerson, Haywood, Jacobson, Joers, Myers, Moore Omokunde, Ohnstad, Ortiz-Velez, Ratcliff, Shelton, Snodgrass and Stubbs; +cosponsored by Senators Smith, Cabral-Guevara, Roys and Stroebel",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Hong, Clancy, Joers, Madison, Palmeri, Baldeh, Billings, Cabrera, Conley, Drake, Emerson, Moore Omokunde, Ohnstad, Shelton, Sinicki, Snodgrass, Stubbs and Subeck; +cosponsored by Senators Larson, Hesselbein, Spreitzer and Taylor",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives O'Connor, Murphy, Vos, Maxey, Nedweski, Kitchens, Armstrong, Gustafson, Macco, Bodden, Behnke, Gundrum, Rozar, Wichgers, Brandtjen, Goeben and Green; +cosponsored by Senator Cabral-Guevara",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wirch, Hesselbein, Smith, Spreitzer and Taylor; +cosponsored by Representatives Subeck, Baldeh, Behnke, Drake, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Sinicki and Stubbs",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Pfaff, Nass, Smith and Spreitzer; +cosponsored by Representatives Donovan, C. Anderson, Armstrong, Bare, Behnke, Brandtjen, Conley, Dittrich, Edming, Emerson, Goeben, Gundrum, Jacobson, S. Johnson, Kitchens, Krug, Maxey, Melotik, Mursau, Nedweski, Novak, O'Connor, Ohnstad, Ortiz-Velez, Petryk, Ratcliff, Rettinger, Shankland, Spiros and Tusler",2023-12-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rettinger, O'Connor and Myers; +cosponsored by Senators Feyen, Tomczyk and Taylor",2024-01-30T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, Hong, Haywood, C. Anderson, Baldeh, Bare, Cabrera, Conley, Doyle, Drake, Emerson, Goyke, Joers, Madison, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Subeck and Clancy; +cosponsored by Senators Pfaff, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Spreitzer, Taylor and Wirch",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Andraca, Haywood, C. Anderson, J. Anderson, Baldeh, Bare, Clancy, Considine, Emerson, Goyke, Jacobson, Joers, Madison, Neubauer, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs, Subeck and Vining; +cosponsored by Senators Larson, L. Johnson, Hesselbein, Roys, Taylor, Agard, Carpenter, Smith and Spreitzer",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Riemer, Vining, C. Anderson, Andraca, Bare, Billings, Considine, Doyle, Joers, S. Johnson, Moore Omokunde, Neubauer, Ohnstad, Ratcliff, Shankland, Sinicki, Snodgrass and Palmeri; +cosponsored by Senators Hesselbein, Carpenter, Larson, Roys and Spreitzer",2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson, Smith, Roys, Hesselbein, Agard, Spreitzer, Carpenter and Pfaff; +cosponsored by Representatives Shelton, Bare, C. Anderson, Jacobson, Myers, Shankland, Madison, Cabrera, Clancy, Conley, Emerson, Joers, Palmeri, Ratcliff, Snodgrass, Subeck, Vining, Sinicki, Stubbs, Moore Omokunde, J. Anderson and Neubauer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representative Edming; +cosponsored by Senator Stafsholt",2024-02-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Vining, Hong, Haywood, C. Anderson, Baldeh, Bare, Cabrera, Conley, Doyle, Drake, Emerson, Goyke, Joers, Madison, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Stubbs and Subeck",2023-09-29T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Bradley, Knodl, Jagler and Wanggaard; +cosponsored by Representatives Steffen, Katsma, O'Connor, Allen, Armstrong, August, Brooks, Born, Behnke, Binsfeld, Callahan, Dallman, Dittrich, Donovan, Duchow, Edming, Goeben, Green, Gundrum, Gustafson, Hurd, S. Johnson, Krug, Kitchens, Kurtz, Macco, Magnafici, Maxey, Melotik, Michalski, Moses, Mursau, Nedweski, Novak, Penterman, Petersen, Petryk, Plumer, Pronschinske, Rettinger, Rodriguez, Rozar, Sapik, Schmidt, Schraa, Snyder, Sortwell, Swearingen, Summerfield, Tittl, Tusler, VanderMeer, Vos, Wittke, Zimmerman, Oldenburg and Tranel",2023-09-20T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives S. Johnson, Dittrich, Hurd, Schmidt, O'Connor, Baldeh, Ortiz-Velez, Melotik, Behnke, Gundrum, Wichgers, Tittl and Brandtjen; +cosponsored by Senator Jacque",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Spreitzer, Cabral-Guevara, Carpenter, Felzkowski, Hesselbein, James, Roys, Taylor and Wirch; +cosponsored by Representatives Tittl, Goyke, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Considine, Doyle, Emerson, Haywood, Hong, Joers, Krug, Madison, Moore Omokunde, Mursau, Novak, Ohnstad, Ortiz-Velez, Riemer, Rozar, Schraa, Shelton, Sinicki, Snodgrass, Snyder, Spiros, Subeck, Vining and Wichgers",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Behnke, Bodden, Duchow, Edming, Gundrum, Magnafici, Murphy, Mursau, Penterman, Rettinger, Rozar, Spiros, Tusler and Tittl; +cosponsored by Senator Stroebel",2023-02-28T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, L. Johnson and Hesselbein; +cosponsored by Representatives Clancy, J. Anderson, Madison, Palmeri, Baldeh, Bare, Cabrera, Drake, Emerson, Shelton, Sinicki, Snodgrass, Stubbs, Hong, Conley, Joers, Jacobson and Moore Omokunde",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn and Tomczyk; +cosponsored by Representatives Sapik, Armstrong, Donovan, Edming, Green, Ohnstad and Schmidt",2023-06-21T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Maxey, Michalski, Behnke, Bodden, Dittrich, Goeben, Gundrum, Gustafson, Kitchens, Magnafici, Murphy, O'Connor, Rettinger, Rozar, Schmidt, Schutt and Penterman; +cosponsored by Senators Stroebel and Quinn",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sinicki, Shankland, Ohnstad, Neubauer, Haywood, Subeck, Goyke, Conley, Joers, Hong, Stubbs, Cabrera, Doyle, Snodgrass, Shelton, Emerson, Ratcliff, Ortiz-Velez, J. Anderson, Considine, C. Anderson, Moore Omokunde and Palmeri; +cosponsored by Senators L. Johnson, Smith, Larson, Hesselbein, Roys, Carpenter, Wirch, Spreitzer and Pfaff",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Quinn, Marklein, Hutton and Tomczyk; +cosponsored by Representatives Dittrich, Rettinger, Callahan, Magnafici, Binsfeld, O'Connor, Gundrum, Gustafson, Maxey, Bodden, Penterman, Armstrong, Brandtjen, Tusler, S. Johnson, Sapik, Macco, Rozar, Green, Schmidt, Allen, Behnke, Duchow, Hurd, Tittl, Nedweski, Schraa, Wichgers, Edming, Sortwell and Donovan",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer and Agard; +cosponsored by Representatives Palmeri, Madison, C. Anderson, Ratcliff, J. Anderson, Ohnstad and Baldeh",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Drake, Jacobson, Joers, Moore Omokunde, Ohnstad, Palmeri, Shankland, Shelton and Sinicki; +cosponsored by Senators Larson, Carpenter, L. Johnson, Hesselbein and Spreitzer",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dallman, Brooks, Dittrich, Drake, Ortiz-Velez, Rettinger, Rozar, Snyder, Tittl, Wittke and Wichgers; +cosponsored by Senators Bradley and Marklein",2023-10-12T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor, Larson, Hesselbein and L. Johnson; +cosponsored by Representatives Subeck, Sinicki, J. Anderson, Andraca, Emerson, Conley, Considine, Bare, Cabrera, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Shelton, Stubbs and Haywood",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson and Taylor; +cosponsored by Representatives Palmeri, J. Anderson, Clancy, Jacobson, Joers, Madison, Ratcliff, Baldeh, Cabrera, Drake, Emerson, Moore Omokunde, Shelton, Sinicki, Snodgrass and Stubbs",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Krug, Shankland, Dittrich, Allen, C. Anderson, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Considine, Doyle, Emerson, Green, Joers, Kitchens, Madison, Mursau, Ohnstad, Palmeri, Rozar, Sinicki, Snodgrass, Spiros and Subeck; +cosponsored by Senators Testin, Cowles, Carpenter, Larson, Pfaff, Quinn and Spreitzer",2023-06-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Wanggaard, Taylor and Quinn; +cosponsored by Representatives Steffen, Myers, Allen, Armstrong, Behnke, Binsfeld, Brandtjen, Donovan, Duchow, Edming, Goeben, Green, Gundrum, Gustafson, Kitchens, Macco, Magnafici, Maxey, Mursau, O'Connor, Ortiz-Velez, Rozar, Schmidt, Schraa, Tittl, Wichgers, Wittke and Rettinger",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Armstrong, Subeck, Behnke, Krug, Murphy, Mursau, Rozar, Schraa, C. Anderson, J. Anderson, Baldeh, Bare, Brooks, Cabrera, Drake, Green, Gundrum, Jacobson, Joers, O'Connor, Ohnstad, Ratcliff, Rodriguez, Schmidt, Schutt, Shankland, Sinicki, Spiros, Stubbs, Wichgers, Clancy and Madison; +cosponsored by Senators Jacque, Wanggaard, Carpenter, James, Cabral-Guevara, L. Johnson, Larson, Quinn, Roys and Taylor",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Cabral-Guevara and Tomczyk; +cosponsored by Representatives Maxey, Armstrong, Allen, Behnke, Brandtjen, Knodl, Murphy, Mursau, Rozar, Wichgers and Rettinger",2023-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Agard, Carpenter, Hesselbein, Jacque, L. Johnson, Larson, Pfaff, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Subeck, Palmeri, C. Anderson, J. Anderson, Andraca, Bare, Clancy, Conley, Emerson, Jacobson, Joers, Madison, Ohnstad, Ratcliff, Sinicki and Stubbs",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Murphy, Armstrong, Baldeh, Brandtjen, Cabrera, Donovan, Gustafson, Kitchens, Mursau, Ortiz-Velez, Penterman, Pronschinske, Shankland, Sinicki, Snodgrass, Subeck, Tittl, Tusler and Wichgers; +cosponsored by Senators Jacque, Wanggaard, Carpenter, Hesselbein, Pfaff and Spreitzer",2023-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Plumer, Behnke, Brandtjen, Brooks, Dittrich, Goeben, Gundrum, Kitchens, Magnafici, Mursau, Ortiz-Velez, Spiros and Sinicki; +cosponsored by Senators James, Marklein, Ballweg, Carpenter and Feyen",2023-10-26T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Moore Omokunde and Clancy; +cosponsored by Senators L. Johnson and Larson",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Joers, Drake, Sinicki, Neubauer, Ratcliff, Bare, Emerson, Shelton, Jacobson, Considine, Palmeri, C. Anderson, Subeck, Clancy, Hong, Moore Omokunde, J. Anderson, Madison, Stubbs, Baldeh, Conley, Shankland and Ortiz-Velez; +cosponsored by Senators Hesselbein, Smith, Carpenter, Taylor, Roys, Larson, L. Johnson, Agard and Spreitzer",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Myers, Allen, Armstrong, Behnke, Binsfeld, Brandtjen, Donovan, Duchow, Edming, Goeben, Green, Gundrum, Gustafson, Kitchens, Macco, Magnafici, Maxey, Mursau, O'Connor, Ortiz-Velez, Rozar, Schmidt, Schraa, Tittl, Wichgers, Wittke, Murphy and Rettinger; +cosponsored by Senators Cabral-Guevara, Wanggaard, Taylor and Quinn",2023-08-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Duchow, O'Connor, Kurtz, Snyder, Behnke and Madison; +cosponsored by Senators James and Quinn",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Agard, Carpenter, L. Johnson, Larson, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Joers, Vining, Baldeh, C. Anderson, J. Anderson, Conley, Considine, Emerson, Hong, Jacobson, Madison, Moore Omokunde, Neubauer, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Snodgrass, Stubbs and Subeck",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Myers, Novak, Andraca, Considine, Drake, Kitchens, Tusler, Sinicki, Moore Omokunde and Ortiz-Velez; +cosponsored by Senators L. Johnson, Carpenter and Spreitzer",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hutton and Knodl; +cosponsored by Representatives Moses, Michalski, Armstrong, Behnke, Bodden, O'Connor, Rettinger and Schmidt",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson and Cowles; +cosponsored by Representatives Madison, Maxey, Donovan, C. Anderson, J. Anderson, Andraca, Baldeh, Clancy, Conley, Considine, Drake, Jacobson, Joers, S. Johnson, Melotik, Michalski, Ratcliff, Schmidt, Sinicki, Stubbs, Subeck, Gundrum and Palmeri",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Spreitzer, Carpenter, Agard, Hesselbein, Larson, Roys and Smith; +cosponsored by Representatives Cabrera, Snodgrass, Neubauer, Clancy, Ratcliff, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Conley, Considine, Emerson, Goyke, Hong, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Palmeri, Shelton, Sinicki, Stubbs and Subeck",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, C. Anderson, Armstrong, Behnke, Binsfeld, Bodden, Callahan, Clancy, Donovan, Edming, Hurd, Green, Gustafson, Magnafici, Maxey, Murphy, O'Connor, Sinicki, Subeck, Wichgers and Joers; +cosponsored by Senators James and Ballweg",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Stubbs, Cabrera, Madison, Moore Omokunde, Considine, Emerson, Andraca, Palmeri, Conley, Subeck, Joers, Neubauer, Ratcliff, Baldeh, J. Anderson, Ohnstad, Clancy, Shankland, Shelton and Sinicki; +cosponsored by Senators Taylor, L. Johnson, Agard, Roys, Spreitzer and Larson",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Shankland, C. Anderson, Clancy, Jacobson, Myers, Bare, Madison, Cabrera, Conley, Considine, Emerson, Joers, Palmeri, Ratcliff, Sinicki, Snodgrass, Subeck, Vining, Stubbs, Moore Omokunde, J. Anderson and Neubauer; +cosponsored by Senators Pfaff, Larson, L. Johnson, Hesselbein, Smith, Agard, Spreitzer and Carpenter",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, O'Connor, Magnafici, Michalski, Gundrum, Murphy, Goeben, Wichgers, Rozar and Rettinger; +cosponsored by Senators Quinn, Nass and Tomczyk",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Shelton, Ohnstad, C. Anderson, J. Anderson, Baldeh, Bare, Clancy, Conley, Considine, Drake, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, Moore Omokunde, Myers, Neubauer, Ortiz-Velez, Palmeri, Ratcliff, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Agard, L. Johnson, Carpenter, Hesselbein, Larson, Pfaff, Roys, Smith, Spreitzer and Taylor",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Quinn, Stroebel and Wanggaard; +cosponsored by Representatives Bodden, Brandtjen, Brooks, Rozar, Schutt, Wichgers and Behnke",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, C. Anderson, Andraca, Baldeh, Bare, Cabrera, Clancy, Conley, Considine, Donovan, Drake, Emerson, Haywood, Hong, Jacobson, Joers, Madison, Moore Omokunde, Murphy, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Sinicki, Snodgrass, Stubbs, Subeck and Vining; +cosponsored by Senators Agard, Carpenter, Hesselbein, Larson, Pfaff, Roys, Smith, Spreitzer and Wirch",2023-09-06T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, LeMahieu, Ballweg, Bradley, Cabral-Guevara, Felzkowski, Feyen, Jagler, Nass, Quinn, Stroebel, Testin and Wanggaard; +cosponsored by Representatives Katsma, Born, Allen, Armstrong, August, Behnke, Binsfeld, Brandtjen, Dittrich, Donovan, Edming, Green, Gundrum, Hurd, Krug, Kurtz, Macco, Magnafici, Maxey, Melotik, Moses, Murphy, Mursau, Nedweski, O'Connor, Oldenburg, Penterman, Petryk, Plumer, Rettinger, Schmidt, Schraa, Schutt, Snyder, Sortwell, Spiros, Steffen, Tranel, Wichgers, Wittke, Zimmerman and Swearingen",2024-01-30T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Cowles and Knodl; +cosponsored by Representatives Sapik, Mursau, Armstrong, Callahan, Green, S. Johnson and Swearingen",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Roys, Taylor, Larson, Carpenter, Hesselbein, Spreitzer, Smith, Pfaff and Wirch; +cosponsored by Representatives J. Anderson, Andraca, Conley, Considine, Drake, Hong, Joers, Moore Omokunde, Ohnstad, Ratcliff, Sinicki, Snodgrass and Shankland",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Goeben, Rozar, Allen, Behnke, Bodden, Brandtjen, Callahan, Dittrich, Edming, Magnafici, Michalski, Moses, Murphy, O'Connor, Rettinger, Sapik, Schraa and Schutt; +cosponsored by Senators Nass and Cabral-Guevara",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Macco, Goyke, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Behnke, Clancy, Conley, Considine, Drake, Emerson, Hong, Joers, S. Johnson, Krug, Madison, Moore Omokunde, Mursau, Myers, Neubauer, O'Connor, Ohnstad, Palmeri, Ratcliff, Shankland, Sinicki, Snodgrass, Spiros, Subeck and Tranel; +cosponsored by Senators Wimberger, Hesselbein, Roys, Spreitzer and Larson",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley, Feyen, Larson, Quinn and Testin; +cosponsored by Representatives Armstrong, Callahan, Billings, Emerson, S. Johnson, Mursau, Palmeri, Rozar, Schmidt, Schraa, Steffen, Swearingen and Tittl",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Felzkowski; +cosponsored by Representatives Rodriguez, Rozar, Behnke, Dittrich, Murphy, Stubbs and Subeck",2023-06-05T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jagler, Agard and Feyen; +cosponsored by Representatives Krug, Allen, Brooks, Dallman, Murphy, O'Connor and Ortiz-Velez",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Drake, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Considine, Doyle, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, Madison, McGuire, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Shankland, Shelton, Sinicki, Snodgrass, Stubbs and Vining; +cosponsored by Senators Hesselbein, Roys, Pfaff, Agard, Carpenter, L. Johnson, Larson, Smith, Spreitzer, Taylor and Wirch",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley, Marklein and Wanggaard; +cosponsored by Representatives Petersen, Mursau, O'Connor, Plumer, Steffen and Wichgers",2023-10-04T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, L. Johnson, Larson, Agard and Hesselbein; +cosponsored by Representatives Palmeri, Bare, Clancy, Madison, Ratcliff, Snodgrass, Shelton, Drake, Stubbs, Sinicki, Baldeh, Cabrera, J. Anderson, Subeck, Ortiz-Velez, Ohnstad, Jacobson, Considine and Emerson",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Tomczyk; +cosponsored by Representatives Sortwell, Allen, Behnke, Bodden, Goeben, Gustafson, Penterman, Rozar and Wichgers",2023-08-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schraa, Brandtjen, Maxey, O'Connor, Penterman, Sapik and Stubbs; +cosponsored by Senators Feyen, Ballweg and Felzkowski",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Hesselbein, Jacque, Larson and Spreitzer; +cosponsored by Representatives Sinicki, Cabrera, Baldeh, Conley, Drake, Edming, Emerson, Jacobson, Joers, Moore Omokunde, Murphy, Ortiz-Velez, Ohnstad, Palmeri, Shankland, Shelton and Subeck",2023-03-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schraa, Allen, S. Johnson, Mursau, O'Connor and Dittrich; +cosponsored by Senators Feyen and Ballweg",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, C. Anderson, Baldeh, Cabrera, Drake, Emerson, Joers, Ohnstad, Palmeri, Ratcliff, Shelton, Snodgrass, Stubbs, Subeck, Sinicki and Haywood; +cosponsored by Senators Taylor, Agard, L. Johnson, Larson and Roys",2023-10-05T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives C. Anderson, Madison, Clancy, Jacobson, J. Anderson, Neubauer, Ortiz-Velez, Palmeri, Sinicki and Drake; +cosponsored by Senators Taylor and Carpenter",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tusler, O'Connor, Born, Allen, Steffen, Kitchens and Callahan; +cosponsored by Senators Wimberger and Ballweg",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Agard, Carpenter, Hesselbein, Roys, Spreitzer and Wirch; +cosponsored by Representatives Cabrera, Sinicki, C. Anderson, J. Anderson, Bare, Considine, Doyle, Emerson, Haywood, Hong, Joers, Neubauer, Ohnstad, Palmeri, Ratcliff, Shankland, Shelton, Snodgrass, Stubbs and Subeck",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Melotik, Behnke, Binsfeld, Brandtjen, Dittrich, Donovan, Green, Krug, Maxey, Moses, Murphy, Mursau, Nedweski, O'Connor, Penterman, Schmidt and Snyder; +cosponsored by Senators Knodl and Feyen",2024-01-29T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Knodl and Duchow; +cosponsored by Senators Stroebel, Marklein and Nass",2023-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schraa, Schutt, Behnke, Bodden, Goeben, Krug, Murphy, O'Connor and Mursau; +cosponsored by Senator Wanggaard",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson and Roys; +cosponsored by Representatives Clancy, Madison, Ratcliff, Palmeri, Baldeh, Cabrera, Drake, Shelton, Sinicki, Snodgrass, Stubbs, Hong, Moore Omokunde, J. Anderson, Emerson, Considine, C. Anderson and Jacobson",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Donovan, Green, O'Connor and Ortiz-Velez",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Spreitzer, Wirch, Hesselbein and Taylor; +cosponsored by Representatives Emerson, Shankland, Andraca, J. Anderson, Drake, Palmeri, Cabrera, Considine, Ohnstad, Ortiz-Velez, Jacobson, Subeck and Ratcliff",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, L. Johnson, Carpenter, Spreitzer, Agard and Larson; +cosponsored by Representatives Riemer, Sinicki, Bare, Joers, Ratcliff, Considine, Ohnstad, Emerson, Jacobson, Moore Omokunde, Shelton, Conley, Stubbs, C. Anderson and Palmeri",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Felzkowski, Nass and Stroebel; +cosponsored by Representatives O'Connor, Behnke, Brandtjen, Brooks, Edming, Gundrum, Knodl, Macco, Moses, Nedweski, Petersen, Petryk, Plumer, Rozar, Sortwell, Wichgers, Gustafson, Steffen, Rettinger and Duchow",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor, L. Johnson, Roys, Larson and Hesselbein; +cosponsored by Representatives Myers, Drake, Madison, Considine, Conley, Moore Omokunde, Snodgrass, Sinicki, Clancy, Joers, Ohnstad, Shelton, C. Anderson, Emerson, Stubbs, J. Anderson, Jacobson, Palmeri, Neubauer and Riemer",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Taylor and Spreitzer; +cosponsored by Representatives Sortwell, Ortiz-Velez, Behnke, Cabrera, Edming, Murphy, Steffen, Subeck, Brandtjen, Magnafici and Krug",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Joers, C. Anderson, Clancy, Jacobson, Considine, Myers, Vining, Madison, J. Anderson, Baldeh, Ratcliff, Sinicki and Subeck; +cosponsored by Senators Larson, Smith, Roys, Hesselbein, Agard, Spreitzer and Carpenter",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Dittrich, Duchow, Andraca, Subeck, Murphy, Gundrum, Mursau, Conley, Brandtjen, Sinicki and Ratcliff; +cosponsored by Senators Jagler and Testin",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Agard, L. Johnson, Larson and Spreitzer; +cosponsored by Representatives McGuire, Drake, Stubbs, Andraca, Doyle, Ohnstad, Riemer, Shelton, Snodgrass, C. Anderson, Emerson, Bare, Joers, Billings, Conley, Considine, Palmeri, Ratcliff, Sinicki, Subeck and Vining",2024-03-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kitchens, Tusler, Sortwell, Armstrong, Behnke, Dittrich, Duchow, Gustafson, Murphy, Mursau, Novak, O'Connor, Rettinger and Rozar; +cosponsored by Senators James, Cabral-Guevara, Jacque and Tomczyk",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen and Taylor; +cosponsored by Representatives Palmeri, Baldeh, Conley, Drake, Joers, Maxey, Mursau, O'Connor, Ratcliff, Sinicki, Snodgrass and Subeck",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk and Cabral-Guevara; +cosponsored by Representatives Rettinger, Dittrich and O'Connor",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn and Cabral-Guevara; +cosponsored by Representatives Allen, Murphy, Armstrong, Behnke, Edming, Gundrum, Gustafson, Knodl, Mursau and Spiros",2023-02-03T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley, Wanggaard, Ballweg, Hutton, Marklein, Nass and Testin; +cosponsored by Representatives Maxey, Rettinger, Allen, Behnke, Binsfeld, Brandtjen, Donovan, Green, Gundrum, Murphy, Mursau, Penterman, Rozar, Tittl, Wichgers, Duchow, Michalski and Nedweski",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, C. Anderson, Clancy, Drake, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Ortiz-Velez, Palmeri, Shankland, Shelton, Snodgrass, Stubbs and Subeck; +cosponsored by Senators Larson, Smith and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Bradley, Cabral-Guevara, Feyen, Marklein, Quinn, Testin, Wanggaard, Felzkowski and Nass; +cosponsored by Representatives Schutt, Green, Armstrong, Behnke, Brandtjen, Dittrich, Edming, Gustafson, Maxey, Michalski, Murphy, O'Connor, Rozar, Sapik, Schmidt, Sortwell, Spiros, Tranel, VanderMeer, Plumer and Rettinger",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Joers, Jacobson, Palmeri, C. Anderson, J. Anderson, Bare, Clancy, Hong, Moore Omokunde, Ratcliff and Stubbs; +cosponsored by Senators Spreitzer, Agard and Larson",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Ballweg, Cabral-Guevara, Nass and Tomczyk; +cosponsored by Representatives Dittrich, Nedweski, O'Connor, Magnafici, Michalski, Gundrum, Murphy, Allen, Goeben, Binsfeld, Brandtjen, Behnke, Wichgers, Rozar and Rettinger",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Larson and Spreitzer; +cosponsored by Representatives Novak, Considine, Conley, C. Anderson, Andraca, Bare, Drake, Goeben, Gundrum, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Schmidt, Shankland, Sinicki, Stubbs and Subeck",2024-01-05T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Ballweg and Spreitzer; +cosponsored by Representatives Novak, Armstrong, Dittrich, Gundrum, Kitchens and Jacobson",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Hesselbein, L. Johnson, Larson, Smith, Spreitzer and Agard; +cosponsored by Representatives Shelton, Snodgrass, Palmeri, J. Anderson, Baldeh, Bare, Conley, Emerson, Jacobson, Joers, Moore Omokunde, Ratcliff, Sinicki, Stubbs, Vining and Haywood",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Roys and Spreitzer; +cosponsored by Representatives Clancy, Madison, Ratcliff, J. Anderson, Baldeh, Considine, Drake, Joers, Neubauer, Palmeri and Sinicki",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Agard, Carpenter, Hesselbein, L. Johnson, Pfaff, Roys, Spreitzer and Taylor; +cosponsored by Representatives Shelton, Hong, C. Anderson, J. Anderson, Andraca, Bare, Clancy, Conley, Considine, Doyle, Drake, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Myers, Neubauer, Palmeri, Ratcliff, Shankland, Sinicki, Stubbs, Subeck and Vining",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, C. Anderson, Bare, Clancy, Madison, Palmeri, Joers, Jacobson, Andraca, Baldeh, Conley, Considine, Ratcliff, Shelton and Sinicki; +cosponsored by Senators Larson and Spreitzer",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson and Taylor; +cosponsored by Representatives Emerson, Hong, Clancy, Madison, Bare, Palmeri, J. Anderson and Sinicki",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Representative Brooks,2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schutt, Bodden, Behnke, Goeben, Green, Gundrum, Hurd, Krug, Maxey, Mursau, Penterman, Rettinger, Schmidt, Tranel, Wichgers and Edming; +cosponsored by Senators Tomczyk, Felzkowski, Jacque, Marklein and Wanggaard",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Carpenter, Taylor, Roys, Spreitzer and Agard; +cosponsored by Representatives Haywood, Bare, Emerson, Ohnstad, Moore Omokunde, Stubbs, Joers, Palmeri, Sinicki, C. Anderson, Andraca, Hong, Baldeh, Madison, Drake, Clancy and Goyke",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Sapik, Allen, Armstrong, Behnke, Binsfeld, Bodden, Callahan, Dittrich, Donovan, Duchow, Edming, Goeben, Green, Gundrum, Hurd, Magnafici, Maxey, Melotik, Michalski, O'Connor, Penterman, Plumer, Rettinger, Rozar, Schraa, Sortwell, Spiros, Steffen, Summerfield, Tusler, Vos and Murphy; +cosponsored by Senators Knodl, Stroebel, Cabral-Guevara, Testin, Tomczyk, Stafsholt and Quinn",2024-02-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shelton, Considine, Andraca, Bare, C. Anderson, Cabrera, Conley, Drake, Emerson, Hong, Hurd, Jacobson, Joers, Melotik, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Schmidt, Shankland, Snodgrass, Stubbs, Subeck and Clancy; +cosponsored by Senators Pfaff, Agard, Carpenter, Hesselbein, Larson, Roys, Smith and Spreitzer",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Ballweg and Cabral-Guevara; +cosponsored by Representatives Goeben, Allen, Armstrong, Binsfeld, Brandtjen, Edming, Green, Gundrum, Gustafson, Hurd, Krug, Magnafici, Maxey, O'Connor, Penterman, Petersen, Petryk, Plumer, Rodriguez, Rozar, Schmidt, Steffen, Summerfield, Swearingen, Tranel, VanderMeer and Wichgers",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Riemer, Vining, J. Anderson, Andraca, Bare, Clancy, Conley, Emerson, Hong, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Subeck and Haywood; +cosponsored by Senators Hesselbein, Smith, Agard, Carpenter, L. Johnson, Larson, Pfaff, Roys, Spreitzer, Taylor and Wirch",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Ratcliff, Bare, Emerson, Joers, Moore Omokunde, Sinicki and Stubbs; +cosponsored by Senators Smith, Agard, L. Johnson, Larson, Roys and Spreitzer",2024-03-22T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Smith, Carpenter, Hesselbein, Larson, Spreitzer and Taylor; +cosponsored by Representatives Vining, Emerson, C. Anderson, Andraca, Bare, Behnke, Cabrera, Clancy, Conley, Considine, Drake, Goyke, Hong, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs and Subeck",2023-08-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Agard, Carpenter, Hesselbein, Larson, Smith, Spreitzer and L. Johnson; +cosponsored by Representatives Andraca, Stubbs, J. Anderson, Baldeh, Conley, Considine, Drake, Emerson, Hong, Joers, Neubauer, Palmeri, Ratcliff, Sinicki, Snodgrass and Subeck",2024-01-31T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rozar, Armstrong, Baldeh, Conley, Edming, Ohnstad, Oldenburg, Ortiz-Velez, Palmeri, Petryk, Shankland, Sinicki, Steffen, Stubbs and Subeck; +cosponsored by Senators Feyen and Quinn",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Allen, Knodl, Behnke, Bodden, Brooks, Duchow, Donovan, Gundrum, Murphy, Penterman, Rettinger, Rozar, Spiros and Steffen; +cosponsored by Senators Wanggaard, Bradley, Hutton, Nass and Stroebel",2023-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Palmeri, C. Anderson, J. Anderson, Andraca, Clancy, Conley, Emerson, Jacobson, Joers, Madison, Ohnstad, Ratcliff, Sinicki and Stubbs; +cosponsored by Senators Roys, Agard, Carpenter, Hesselbein, Jacque, L. Johnson, Larson, Pfaff, Smith, Spreitzer, Taylor and Wirch",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl, Nass, Hesselbein, Bradley, Cowles, Felzkowski, Feyen, Hutton, Jacque, Jagler, Kapenga, Marklein, Pfaff, Quinn, Roys, Spreitzer, Stroebel, Testin, Tomczyk, Wanggaard and Wirch; +cosponsored by Representatives Subeck, Riemer, August, Vos, C. Anderson, J. Anderson, Andraca, Armstrong, Baldeh, Bare, Behnke, Bodden, Born, Brandtjen, Callahan, Conley, Dallman, Dittrich, Donovan, Doyle, Duchow, Edming, Emerson, Goeben, Goyke, Green, Gundrum, Gustafson, Hong, Hurd, Jacobson, Joers, S. Johnson, Katsma, Krug, Kurtz, Macco, Magnafici, Melotik, Murphy, Mursau, Neylon, Novak, O'Connor, Ohnstad, Oldenburg, Ortiz-Velez, Palmeri, Penterman, Petersen, Plumer, Ratcliff, Rettinger, Rodriguez, Rozar, Schmidt, Schraa, Schutt, Shankland, Sinicki, Snodgrass, Snyder, Sortwell, Spiros, Steffen, Summerfield, Swearingen, Tittl, Tranel, Tusler, Vining and Wittke",2023-10-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara, Wimberger, Ballweg, Bradley, Jagler, Felzkowski, Feyen, Marklein, Nass, Quinn, Stroebel, Testin and Wanggaard; +cosponsored by Representatives Steffen, Kitchens, Allen, Armstrong, August, Behnke, Binsfeld, Born, Brandtjen, Dittrich, Donovan, Edming, Goeben, Green, Gundrum, Hurd, Katsma, Krug, Kurtz, Macco, Magnafici, Maxey, Melotik, Moses, Murphy, Mursau, Myers, Nedweski, O'Connor, Oldenburg, Penterman, Petryk, Plumer, Rettinger, Schmidt, Schraa, Schutt, Snyder, Sortwell, Spiros, Tranel, Wichgers and Wittke",2024-01-30T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schutt, Maxey, Allen, Behnke, Bodden, Brandtjen, Dittrich, Donovan, Edming, Goeben, Hurd, Magnafici, Melotik, Michalski, Moses, Nedweski, Penterman, Rettinger, Rodriguez, Rozar, Schmidt, Tusler, Wichgers, Wittke and Murphy; +cosponsored by Senators Jagler, Hutton, Feyen, Cabral-Guevara, Kapenga, Knodl, Nass, Quinn, Stafsholt, Stroebel, Testin, Tomczyk and Wanggaard",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor and L. Johnson; +cosponsored by Representatives Madison, Clancy, Stubbs, Drake, J. Anderson, Baldeh, Conley, Considine, Emerson, Joers, Moore Omokunde, Palmeri, Shelton, Sinicki, Subeck and Neubauer",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Larson and Spreitzer; +cosponsored by Representatives Shankland, Billings, Conley, Drake, Emerson, Joers, Moore Omokunde, Neubauer, Palmeri, Ratcliff, Sinicki, Stubbs and Subeck",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Neylon, Baldeh, Dittrich, Krug, Murphy, O'Connor, Rettinger, Rozar, Spiros, Tittl and Tranel; +cosponsored by Senators Cowles, Stroebel, Ballweg and Nass",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Hong, Emerson, Ohnstad, Bare, Jacobson, Shankland, Considine, Clancy, Joers, Conley, Ortiz-Velez, C. Anderson, Shelton, Moore Omokunde, Sinicki, Madison, Palmeri, Drake, Andraca and Ratcliff; +cosponsored by Senators Pfaff, Hesselbein, L. Johnson, Smith, Spreitzer, Roys and Carpenter",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Hesselbein, Roys, Spreitzer and Taylor; +cosponsored by Representatives Shankland, Considine, Emerson, Jacobson, Joers, Madison, Ohnstad, Palmeri, Ratcliff and Shelton",2023-12-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Moses, Rozar, Macco, Wichgers, S. Johnson and Subeck; +cosponsored by Senator Feyen",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rettinger, Magnafici, Allen, Behnke, Brandtjen, Callahan, Dallman, Dittrich, Goeben, Gundrum, Krug, Maxey, Murphy, Nedweski, O'Connor and Rozar; +cosponsored by Senators Wimberger, Wanggaard and Nass",2023-10-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Behnke, Wichgers, Bodden, Brandtjen, Maxey, Rettinger, Schmidt and Schraa; +cosponsored by Senators Jacque, Quinn and Stroebel",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Gustafson, Murphy, Behnke, Bodden, Green, Gundrum and Magnafici; +cosponsored by Senators Stafsholt and Tomczyk",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Krug, Brandtjen, Bodden, C. Anderson, Dittrich, Goeben, Gundrum, Jacobson, Melotik, Ohnstad, Rettinger, Shankland, Snodgrass and Subeck; +cosponsored by Senators Testin, Ballweg, Carpenter, L. Johnson, Knodl and Spreitzer",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Snodgrass, Considine, C. Anderson, J. Anderson, Andraca, Baldeh, Behnke, Cabrera, Conley, Emerson, Haywood, Hong, Jacobson, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Schutt, Shankland, Shelton, Sinicki, Stubbs, Subeck and Vining; +cosponsored by Senators Pfaff, Agard, Ballweg, Carpenter, Hesselbein, Larson, Roys and Spreitzer",2023-07-27T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk and Nass; +cosponsored by Representatives Bodden, Gustafson, Behnke, Brandtjen, Goeben, Gundrum, Murphy, Mursau, Penterman, Rettinger, Schmidt and Wichgers",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Agard, L. Johnson, Roys and Taylor; +cosponsored by Representatives Jacobson, J. Anderson, Clancy, Madison, Ratcliff, Palmeri, Baldeh, Bare, Billings, C. Anderson, Cabrera, Conley, Considine, Drake, Emerson, Hong, Joers, Moore Omokunde, Shelton, Sinicki, Snodgrass and Stubbs",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Wanggaard, Marklein and Tomczyk; +cosponsored by Representatives Rettinger, Nedweski, C. Anderson, Behnke, Bodden, Brandtjen, Dittrich, Donovan, Gundrum, Moses, Murphy, Mursau, Ortiz-Velez, Rozar, Sapik, Subeck and Wichgers",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Marklein; +cosponsored by Representative Katsma",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein, Cabral-Guevara, Hesselbein, Jagler, Knodl and Nass; +cosponsored by Representatives Kurtz, Edming, Allen, C. Anderson, Binsfeld, Brandtjen, Duchow, Green, Gustafson, Kitchens, Krug, Magnafici, Maxey, Michalski, Murphy, Mursau, Nedweski, Novak, O'Connor, Ortiz-Velez, Penterman, Petryk, Plumer, Rettinger, Schraa, Sinicki, Spiros, Steffen, Stubbs, Swearingen, VanderMeer, Wittke and Zimmerman",2023-06-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Cabral-Guevara, Felzkowski, Feyen, Hutton, Jacque, Jagler, James, Knodl, Nass and Tomczyk; +cosponsored by Representatives Rozar, Allen, Armstrong, Behnke, Bodden, Brandtjen, Donovan, Edming, Green, Gundrum, Gustafson, Hurd, Krug, Macco, Magnafici, Maxey, Moses, Murphy, Nedweski, O'Connor, Penterman, Plumer, Rettinger, Schmidt, Schraa, Steffen, Summerfield, Tusler and Wichgers",2023-06-21T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Ratcliff, Joers, Bare, C. Anderson, Moore Omokunde, Ortiz-Velez, Sinicki, Conley, Emerson, J. Anderson, Snodgrass, Vining, Shelton, Cabrera, Subeck, Baldeh, Considine, Palmeri, Shankland, Jacobson, Clancy, Andraca, Madison and Drake; +cosponsored by Senators Smith, L. Johnson, Hesselbein, Larson and Agard",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Carpenter, Spreitzer, Agard, Hesselbein, L. Johnson, Larson, Roys, Smith and Taylor; +cosponsored by Representatives Neubauer, Cabrera, Snodgrass, Clancy, Ratcliff, C. Anderson, J. Anderson, Andraca, Baldeh, Conley, Considine, Emerson, Goyke, Hong, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Shankland, Shelton, Sinicki, Vining, Subeck, Drake and Stubbs",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Ballweg and Quinn; +cosponsored by Representatives Callahan, Gustafson, Born, Gundrum, Murphy, Mursau, Ortiz-Velez, Rettinger, Rozar, Schmidt, Snyder, Spiros and VanderMeer",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Bare, Clancy, Drake, Jacobson, Joers, Ortiz-Velez, Palmeri, Ratcliff, Sinicki and Stubbs; +cosponsored by Senators L. Johnson, Carpenter, Hesselbein, Roys and Spreitzer",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Drake, Ratcliff, Joers, Baldeh, Jacobson, Shankland, Subeck, C. Anderson, Emerson, Conley, Sinicki, Moore Omokunde, Hong, J. Anderson, Bare and Ohnstad; +cosponsored by Senators Agard, Wirch, Spreitzer and Roys",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Emerson, Moore Omokunde, Bare, Joers, Palmeri, Ratcliff, J. Anderson, Subeck, Vining, Myers, Goyke, C. Anderson, Madison, Drake, Sinicki, Andraca, Baldeh, Ortiz-Velez, Haywood, Clancy and Jacobson; +cosponsored by Senators Taylor, Smith, Roys, Carpenter, Larson, Spreitzer, Hesselbein and Agard",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hesselbein, Roys, Carpenter, Larson, Agard, Spreitzer and Taylor; +cosponsored by Representatives Joers, Vining, Sinicki, Neubauer, Bare, Emerson, Shelton, Considine, Palmeri, Clancy, Subeck, Hong, J. Anderson, Madison, Billings, Ohnstad, Stubbs, Baldeh and Shankland",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Magnafici, Gundrum, Donovan, Gustafson, Rodriguez and Schmidt; +cosponsored by Senator Testin",2024-01-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Cabrera, Sinicki, C. Anderson, J. Anderson, Bare, Considine, Doyle, Emerson, Haywood, Hong, Joers, Neubauer, Ohnstad, Palmeri, Ratcliff, Shankland, Shelton, Snodgrass, Stubbs, Subeck, Jacobson and Madison; +cosponsored by Senators Larson, Agard, Carpenter, Hesselbein, Roys, Spreitzer, Wirch and L. Johnson",2024-01-04T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque and Marklein; +cosponsored by Representatives Binsfeld, Behnke, Brooks, Brandtjen, Donovan, Kitchens, Murphy, Mursau, Rettinger, Sapik and Wichgers",2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, Goyke, Ortiz-Velez, J. Anderson, Andraca, Baldeh, Clancy, Conley, Considine, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs and Subeck; +cosponsored by Senators Smith, Agard, Larson and Spreitzer",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Schraa, Moses, Allen and Brandtjen; +cosponsored by Senators Feyen and Ballweg",2023-09-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Considine, Joers, J. Anderson, Bare, Baldeh, Conley, Emerson, Jacobson, Madison, Neubauer, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Subeck and Vining; +cosponsored by Senators Smith, Agard, Roys, Larson, Spreitzer and Taylor",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, Drake, Andraca, Bare, Billings, Cabrera, Clancy, Conley, Considine, Emerson, Goyke, Haywood, Hong, J. Anderson, Jacobson, Joers, Moore Omokunde, Myers, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Snodgrass, Stubbs, Shankland, Baldeh, Subeck and Riemer; +cosponsored by Senators Roys, L. Johnson, Agard, Hesselbein, Larson, Pfaff, Carpenter, Spreitzer, Taylor, Smith and Wirch",2023-06-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Bodden, Brandtjen, Green, Gustafson, Magnafici, Penterman and Rettinger; +cosponsored by Senators Nass, Kapenga, Marklein and Stroebel",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Rodriguez and Sinicki; +cosponsored by Senator Marklein",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Smith, L. Johnson and Hesselbein; +cosponsored by Representatives Sinicki, Subeck, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Drake, Jacobson, Joers, Moore Omokunde, Ohnstad, Palmeri, Shelton and Snodgrass",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Myers, J. Anderson, Bare, Behnke, Clancy, Hong, Joers, Kitchens, Macco, Madison, Rodriguez, Schmidt, Spiros, Stubbs, Zimmerman and Haywood; +cosponsored by Senators Stroebel, Roys, Ballweg, Bradley, Feyen and Nass",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Considine, C. Anderson, Emerson, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff and Shelton; +cosponsored by Senators Smith, Spreitzer, Agard, Hesselbein, Roys and Taylor",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Tittl, Behnke, Edming, Goeben, Gustafson, Magnafici, Mursau, Palmeri and Schmidt",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Ratcliff, Clancy, Neubauer, Snodgrass, Joers, Moore Omokunde, Sinicki, C. Anderson, Bare, Andraca, J. Anderson, Vining, Madison and Baldeh; +cosponsored by Senators Spreitzer, Carpenter, Larson and Agard",2024-04-11T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Agard, Spreitzer, Wirch and Larson; +cosponsored by Representatives Dittrich, Zimmerman, Bare, Binsfeld, Conley, Drake, Edming, Emerson, Gundrum, Jacobson, Moses, Murphy, Mursau, Nedweski, O'Connor, Ohnstad, Ratcliff, Shankland, Sinicki, Stubbs, Subeck, Tittl and Tusler",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Felzkowski and Spreitzer; +cosponsored by Representatives Novak, Tranel, Andraca, Armstrong, Baldeh, Conley, Dittrich, Doyle, Edming, Jacobson, Maxey, Shankland, Sinicki, Green, S. Johnson and Brandtjen",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Agard, Larson, Smith, Spreitzer and Wirch; +cosponsored by Representatives Palmeri, Subeck, Snodgrass, McGuire, Andraca, Baldeh, Bare, Conley, Considine, Emerson, Hong, J. Anderson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Ratcliff, Shankland, Shelton, Sinicki, Stubbs and Vining",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, Madison, Baldeh, J. Anderson, Conley, Emerson, Haywood, Moore Omokunde, Palmeri, Shelton and Stubbs; +cosponsored by Senators Taylor and Larson",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Green and Schmidt; +cosponsored by Senators Felzkowski, Quinn and Stafsholt",2024-02-16T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Drake, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Billings, Cabrera, Clancy, Conley, Considine, Doyle, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, Madison, McGuire, Moore Omokunde, Myers, Neubauer, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Shankland, Shelton, Sinicki, Snodgrass, Stubbs and Vining; +cosponsored by Senators Roys, L. Johnson, Agard, Carpenter, Hesselbein, Larson, Pfaff, Smith, Spreitzer, Taylor and Wirch",2023-02-10T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, C. Anderson, Baldeh, Bare, Drake, Moore Omokunde, Ohnstad, Sinicki, Subeck and Jacobson; +cosponsored by Senators Roys, Agard, Carpenter, L. Johnson, Larson and Spreitzer",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Marklein and Ballweg; +cosponsored by Representatives Oldenburg, Brooks, Mursau and Rozar",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Testin; +cosponsored by Representative VanderMeer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Smith, Larson, Hesselbein, Roys, Carpenter, Wirch, Spreitzer and Pfaff; +cosponsored by Representatives Sinicki, Shankland, Ohnstad, Neubauer, Haywood, Subeck, Goyke, Conley, Joers, Hong, Stubbs, Cabrera, Doyle, Snodgrass, Shelton, Emerson, Ratcliff, Ortiz-Velez, J. Anderson, Considine, C. Anderson, Moore Omokunde, Palmeri and Jacobson",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wichgers, J. Anderson, Cabrera, C. Anderson, Behnke, Brandtjen, Gundrum, Ortiz-Velez, Palmeri, Sapik and Sinicki; +cosponsored by Senator Jacque",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Jacobson, Considine, Tranel, Bare, Behnke, C. Anderson, Conley, Drake, Emerson, Hong, Joers, Ohnstad, Palmeri, Ratcliff, Shankland, Stubbs, Subeck and Novak; +cosponsored by Senators Spreitzer, Agard, Roys and Smith",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, C. Anderson, Andraca, Baldeh, Bare, Behnke, Cabrera, Clancy, Conley, Considine, Drake, Emerson, Joers, Myers, Ohnstad, Palmeri, Ratcliff, Rozar, Shankland, Sinicki, Snodgrass, Stubbs, Tusler, Vining, Billings and Jacobson; +cosponsored by Senators Ballweg, Agard, Cabral-Guevara, Carpenter, Hesselbein, Jacque, L. Johnson, Larson, Roys, Spreitzer, Taylor and Wirch",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Agard, Hesselbein, Larson, Roys, Smith, Spreitzer, Testin, Wanggaard and Cabral-Guevara; +cosponsored by Representatives Armstrong, Emerson, C. Anderson, Andraca, Bare, Conley, Considine, Dittrich, Jacobson, Joers, Mursau, Novak, Ohnstad, Oldenburg, Plumer, Ratcliff, Rettinger, Schraa, Sinicki, Snodgrass, Subeck, Tusler and Shankland",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jagler and Testin; +cosponsored by Representatives Dittrich, Duchow, Subeck, Murphy, Gundrum, Mursau, Andraca, Conley, Brandtjen and Sinicki",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Armstrong, Hurd, Brandtjen, Dittrich, Edming, Green, Gundrum, Kitchens, Magnafici, Maxey, Michalski, Mursau, Novak, O'Connor, Penterman, Rettinger, Schraa and Snyder; +cosponsored by Senators Feyen, Cabral-Guevara, Knodl, Quinn and Nass",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Carpenter and Ballweg; +cosponsored by Representatives Gustafson, Moore Omokunde, Baldeh, Considine, Emerson, Joers, Sinicki, Snodgrass, Stubbs, Subeck, Haywood and Vining",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Emerson, Bare, Clancy, Jacobson, Joers, Moore Omokunde, Murphy, Neubauer, Ohnstad, Ratcliff, Shankland, Shelton, Snodgrass and Stubbs; +cosponsored by Senators Spreitzer and Pfaff",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Emerson, O'Connor, Conley, C. Anderson, J. Anderson, Billings, Dittrich, Drake, Edming, Gundrum, Hurd, Joers, Kitchens, Krug, Maxey, Moore Omokunde, Murphy, Mursau, Ohnstad, Ratcliff, Schraa, Shankland, Stubbs and Subeck; +cosponsored by Senators L. Johnson, Carpenter, Roys, Spreitzer, Taylor and Wirch",2024-01-18T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cowles, Stroebel and Ballweg; +cosponsored by Representatives Neylon, Gustafson, Tittl, Baldeh, Green, Krug, Murphy, O'Connor, Rettinger, Rozar, Spiros and Tranel",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Carpenter, Agard, Larson, Roys, Spreitzer, Smith and Pfaff; +cosponsored by Representatives Drake, Baldeh, Myers, Haywood, Stubbs, Moore Omokunde, Madison, Joers, Goyke, Ratcliff, Sinicki, Emerson, Bare, O'Connor, Clancy, Andraca, Shankland, Subeck, Conley, Doyle, Shelton, C. Anderson, Considine, J. Anderson, Vining, Neubauer, Spiros, Riemer, McGuire, Palmeri, Hong, Billings, Jacobson, Snodgrass, Ohnstad and Ortiz-Velez",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bare, Jacobson, C. Anderson, Clancy, Conley, Considine, Emerson, Madison, Moore Omokunde, Palmeri, Ratcliff, Shelton, Snodgrass, Stubbs and Sinicki; +cosponsored by Senators Roys, Larson, Spreitzer and Agard",2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Larson, L. Johnson, Hesselbein, Smith, Agard, Spreitzer and Carpenter; +cosponsored by Representatives Shelton, Shankland, C. Anderson, Clancy, Jacobson, Myers, Bare, Madison, Cabrera, Conley, Considine, Emerson, Joers, Palmeri, Ratcliff, Sinicki, Snodgrass, Subeck, Vining, Stubbs, Moore Omokunde, J. Anderson and Neubauer",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Nass, Marklein, Cowles and Taylor; +cosponsored by Representatives Green, August, Penterman, Spiros, Plumer, Gundrum, Rettinger, Dittrich, Tittl, Sinicki, Kitchens, Goeben, Brooks, O'Connor, Nedweski, Moses, Armstrong, Murphy, Mursau and Duchow",2023-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Clancy, Madison, Ratcliff, J. Anderson, Baldeh, Considine, Drake, Joers, Neubauer, Palmeri and Sinicki; +cosponsored by Senators Larson, Roys and Spreitzer",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt, Tomczyk and Cowles; +cosponsored by Representatives Dallman, Neylon, Allen, Dittrich, Gundrum, Murphy, Mursau, Nedweski, Novak, Rettinger, Steffen and Tusler",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Hesselbein, Pfaff and Spreitzer; +cosponsored by Representatives Billings, Andraca, Baldeh, Conley, Considine, Doyle, Drake, Emerson, Joers, Madison, Ohnstad, Ratcliff, Shankland and Palmeri",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, Shelton, Considine, Palmeri, Moore Omokunde, J. Anderson, C. Anderson, Baldeh, Bare, Conley, Drake, Emerson, Goyke, Hong, Joers, Ohnstad, Ratcliff, Shankland, Sinicki, Snodgrass, Stubbs, Subeck, Haywood, Jacobson, Clancy, Doyle, Ortiz-Velez, Andraca, Billings and Neubauer; +cosponsored by Senators Agard, L. Johnson, Carpenter, Hesselbein, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, Moore Omokunde, Palmeri, Considine, Bare, Clancy, Conley, Emerson, Hong, Neubauer, Ohnstad, Ratcliff, Shelton, Sinicki, Stubbs, Subeck and Madison; +cosponsored by Senators Agard, Carpenter, L. Johnson, Larson, Smith and Spreitzer",2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Agard, Carpenter, Ballweg, Hesselbein, Larson, Roys and Spreitzer; +cosponsored by Representatives Snodgrass, Considine, C. Anderson, J. Anderson, Andraca, Cabrera, Baldeh, Behnke, Conley, Emerson, Haywood, Hong, Jacobson, Joers, Moore Omokunde, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Schutt, Shankland, Shelton, Sinicki, Stubbs, Subeck and Vining",2023-07-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Armstrong, Donovan, Moses, Murphy, Mursau, Nedweski, Novak, Rettinger and Sortwell; +cosponsored by Senators Jagler, Wanggaard, James, Nass, Stroebel, Cowles and Marklein",2023-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Testin and Felzkowski; +cosponsored by Representatives Murphy, Doyle, Callahan, Conley, Dittrich, Donovan, O'Connor, Schraa, Vos, Armstrong, Green, Gundrum, Kitchens, Melotik, Rettinger, Steffen and Subeck",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Haywood, Snodgrass, Ortiz-Velez, Neubauer, Emerson, Conley, Joers, J. Anderson, Sinicki, Ratcliff, Ohnstad, Stubbs, Subeck, Moore Omokunde, Jacobson and Madison; +cosponsored by Senators Smith, Spreitzer, Agard, Roys and Larson",2024-02-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Quinn, Jacque and Tomczyk; +cosponsored by Representatives Green, Bodden, Brooks, Edming, Magnafici, Mursau and Schmidt",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Magnafici, Callahan, Considine, Armstrong, Baldeh, Clancy, Duchow, Edming, Emerson, Kitchens, Krug, Novak, O'Connor, Penterman, Rozar, Schmidt, Schraa, VanderMeer, Wittke and Drake; +cosponsored by Senators Ballweg, Carpenter, Nass, Stroebel and Wanggaard",2023-04-10T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, Felzkowski, Nass and Stroebel; +cosponsored by Representatives Armstrong, Behnke, Brooks, Edming, Green, Gundrum, Knodl, Macco, Moses, Murphy, Nedweski, O'Connor, Penterman, Petersen, Petryk, Plumer, Rettinger, Rozar and Schmidt",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Novak, Considine, Conley, C. Anderson, Andraca, Bare, Drake, Goeben, Gundrum, Jacobson, Joers, Ohnstad, Palmeri, Ratcliff, Schmidt, Shankland, Sinicki, Stubbs and Subeck; +cosponsored by Senators James, Larson and Spreitzer",2024-01-12T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Quinn, Jacque, Jagler and Nass; +cosponsored by Representatives Summerfield, Brooks, Emerson, Steffen, C. Anderson, Behnke, Brandtjen, Dittrich, Doyle, Duchow, Edming, Green, Joers, Kitchens, Moses, Murphy, Ortiz-Velez, Penterman, Petryk, Plumer, Rettinger, Schraa, Shankland, Sinicki, Snyder, Swearingen and Wichgers",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley and Jacque; +cosponsored by Representatives Wichgers, Myers, Behnke, Donovan, Gundrum, O'Connor, Ortiz-Velez and Stubbs",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Oldenburg, Tranel, Mursau, Novak, O'Connor, Schmidt, Subeck and Kitchens; +cosponsored by Senators Cowles, Ballweg and Cabral-Guevara",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Bradley, Nass, Testin and Felzkowski; +cosponsored by Representatives Steffen, Brooks, Green, Gundrum, Kitchens, Knodl, Murphy, Novak, Petersen, Rettinger, Spiros, Subeck, Tittl and Tranel",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stafsholt and Nass; +cosponsored by Representatives Dallman, Tranel, Brandtjen, Edming, Green, Gundrum, Murphy, Mursau, Novak, O'Connor, Oldenburg, Penterman and Swearingen",2023-05-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Zimmerman, Gustafson, Michalski, Binsfeld and Maxey",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Feyen, Cabral-Guevara, Cowles, Felzkowski, Knodl and Marklein; +cosponsored by Representatives Petryk, Armstrong, Behnke, Binsfeld, Callahan, Conley, Dittrich, Drake, Duchow, Edming, Gundrum, S. Johnson, Kitchens, Melotik, Michalski, Murphy, Mursau, Nedweski, Novak, O'Connor, Penterman, Pronschinske, Rettinger, Rozar, Schutt, Snyder, Spiros, Steffen, Tranel, Wittke and Schraa",2023-10-13T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives J. Anderson, Bare, Clancy, Considine, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki and Stubbs; +cosponsored by Senators Agard, Carpenter and Taylor",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Behnke, Brandtjen, Jacobson, Mursau, Murphy, Schraa, Wichgers and Andraca; +cosponsored by Senator Jacque",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Cabral-Guevara and Tomczyk; +cosponsored by Representatives Nedweski, Murphy, Allen, Behnke, Brandtjen, Dittrich, Edming, Goeben, Gundrum, Maxey, Moses, O'Connor, Penterman, Rettinger, Schraa and Tusler",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Bradley, Carpenter, Larson, Spreitzer, Pfaff, Roys, Hesselbein and Jacque; +cosponsored by Representatives Drake, Emerson, Neubauer, Ratcliff, Ohnstad, Subeck, Vining, Bare, Ortiz-Velez, Shelton, Goyke, Doyle, C. Anderson, Shankland, Joers, Considine, Brandtjen, Andraca, Dittrich, Palmeri, Riemer, Allen, Hong, Sinicki, Cabrera, J. Anderson, Conley, Schraa, Clancy, McGuire, Baldeh, Haywood, Myers, Stubbs, Moore Omokunde and Madison",2023-06-28T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Hesselbein, Feyen and Taylor; +cosponsored by Representatives Zimmerman, Allen, C. Anderson, Behnke, Brandtjen, Cabrera, Dittrich, Duchow, Kitchens, Moses, Mursau, O'Connor, Ohnstad, Ortiz-Velez, Sinicki, Spiros and Wichgers",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Spreitzer, Taylor, Roys, L. Johnson and Hesselbein; +cosponsored by Representatives Ratcliff, Sinicki, Ortiz-Velez, Conley, J. Anderson, Emerson, Snodgrass, Subeck, Baldeh, Bare, Shelton, Cabrera, Considine, Palmeri, Stubbs, C. Anderson, Joers and Shankland",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Ballweg, Pfaff, Spreitzer, Taylor and Tomczyk; +cosponsored by Representatives Kurtz, Swearingen, Armstrong, Baldeh, Bare, Behnke, Edming, Goeben, Goyke, Green, Gundrum, Hurd, Jacobson, S. Johnson, Kitchens, Michalski, Mursau, Novak, O'Connor, Oldenburg, Penterman, Rettinger, Schmidt, Shankland and Tranel",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Cabral-Guevara; +cosponsored by Representatives Snyder, Rozar, Kurtz and Summerfield",2024-02-13T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Ohnstad and Sinicki; +cosponsored by Senator Jacque",2024-03-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Bradley and Feyen; +cosponsored by Representatives Allen, Armstrong, Behnke, Dittrich, Edming, Goeben, Gundrum, Rettinger, Wichgers and Brandtjen",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Spreitzer, Taylor and Agard; +cosponsored by Representatives Ratcliff, Jacobson, C. Anderson, Joers, Conley, Baldeh, Bare, J. Anderson and Ohnstad",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Allen, Armstrong, Behnke, Gundrum, Kitchens, O'Connor and Rozar; +cosponsored by Senators Cabral-Guevara and Quinn",2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Agard, Roys, Spreitzer and Larson; +cosponsored by Representatives Bare, Vining, Joers, Ratcliff, Ohnstad, Emerson, Cabrera, Myers, Snodgrass, Considine, Conley, Shankland, Jacobson, Stubbs, Ortiz-Velez, Andraca, Clancy and Palmeri",2024-02-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Cabral-Guevara, Wanggaard and Spreitzer; +cosponsored by Representatives Snyder, Armstrong, Brooks, Dittrich, Jacobson, Moses, Mursau, O'Connor, Ortiz-Velez, Sinicki, Steffen and Gundrum",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wanggaard, Ballweg, Cabral-Guevara, James and Marklein; +cosponsored by Representatives Spiros, Behnke, Callahan, Dittrich, Donovan, Edming, Green, Kitchens, Moses, Murphy, Mursau, Neylon, Penterman, Plumer, Rettinger and Rozar",2023-03-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Pfaff, Smith, Spreitzer, Hesselbein, Roys and Taylor; +cosponsored by Representatives Shankland, Shelton, Jacobson, Considine, C. Anderson, J. Anderson, Bare, Clancy, Conley, Drake, Emerson, Joers, Madison, Ohnstad, Palmeri, Sinicki, Snodgrass and Subeck",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Taylor, Spreitzer and Ballweg; +cosponsored by Representatives Snyder, Dittrich, C. Anderson, Baldeh, Brandtjen, Donovan, Murphy, Subeck, Tittl, Wichgers and Behnke",2023-03-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Nass and Spreitzer; +cosponsored by Representatives Gustafson, Rozar, C. Anderson, Baldeh, Behnke, Bodden, Brandtjen, Knodl, Murphy, Mursau, Rettinger and Schraa",2023-02-14T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Wichgers, Behnke, Brandtjen, Donovan, Gundrum, Murphy, Ortiz-Velez, Penterman, Sinicki and Subeck; +cosponsored by Senator Jacque",2023-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Tomczyk and Spreitzer; +cosponsored by Representatives Rozar, Edming, Palmeri, Shankland and Snyder",2023-04-14T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wirch, Roys, Carpenter, Hesselbein, Larson and Spreitzer; +cosponsored by Representatives J. Anderson, C. Anderson, Baldeh, Clancy, Joers, Madison, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Subeck and Conley",2023-04-03T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Sortwell, Armstrong, Green, Kitchens, Mursau, Rodriguez, Steffen and Tusler; +cosponsored by Senators Cowles, Ballweg, Felzkowski and Stroebel",2023-03-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Sinicki, Ohnstad, C. Anderson, J. Anderson, Bare, Cabrera, Clancy, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Snodgrass, Stubbs, Subeck and Vining; +cosponsored by Senators Carpenter, L. Johnson, Agard, Hesselbein, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Smith, Larson, Roys, Spreitzer and Taylor; +cosponsored by Representatives Snodgrass, Shelton, Krug, J. Anderson, Conley, Considine, Drake, Emerson, Joers, Moore Omokunde, Palmeri and Shankland",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Nass; +cosponsored by Representatives Moses, Murphy, Nedweski, Callahan, O'Connor, Brandtjen, Dittrich, Green and Maxey",2024-02-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Madison, Haywood, Clancy, Baldeh, C. Anderson, J. Anderson, Conley, Considine, Emerson, Joers, Moore Omokunde, Palmeri, Shelton, Sinicki, Stubbs, Subeck and Neubauer; +cosponsored by Senators L. Johnson, Taylor, Larson and Spreitzer",2023-12-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor, James, Hesselbein, Tomczyk, Spreitzer, Agard, Carpenter, Larson and Roys; +cosponsored by Representatives Macco, Ortiz-Velez, Kitchens, Conley, Goyke, McGuire, O'Connor, Allen, Neubauer, J. Anderson, Andraca, C. Anderson, Baldeh, Bare, Considine, Emerson, Hong, Joers, Madison, Mursau, Ohnstad, Snyder, Stubbs and Palmeri",2023-12-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Knodl; +cosponsored by Representative Melotik",2024-01-30T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Testin, Jacque, Roys and Larson; +cosponsored by Representatives Kitchens, August, Plumer, Tranel, Billings, McGuire, Allen, Armstrong, Behnke, Binsfeld, Callahan, Dittrich, Edming, Jacobson, Krug, Magnafici, O'Connor, Ortiz-Velez, Penterman, Rettinger, Schmidt, Schutt, Swearingen, Tittl and Wittke",2024-02-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Donovan, Drake, Joers, C. Anderson, Considine, Goyke, Ohnstad and Steffen; +cosponsored by Senators Cabral-Guevara, Ballweg, L. Johnson and Taylor",2023-11-08T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Callahan, Spiros, Allen, Armstrong, Brandtjen, Dittrich, Donovan, Edming, Goeben, Green, Michalski, Mursau, Nedweski, O'Connor, Ortiz-Velez, Rettinger, Rodriguez, Schmidt, Steffen and Summerfield; +cosponsored by Senators Wanggaard, James, Cabral-Guevara, Feyen, L. Johnson and Quinn",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Nass, Stroebel, Cabral-Guevara, Knodl and Tomczyk; +cosponsored by Representatives Sortwell, Behnke, Bodden, Brooks, Dittrich, Gundrum, Gustafson, Magnafici, Penterman and Wichgers",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Smith, Larson, Hesselbein, Roys, Carpenter, Wirch, Spreitzer and Pfaff; +cosponsored by Representatives Sinicki, Shankland, Ohnstad, Neubauer, Haywood, Subeck, Goyke, Conley, Joers, Hong, Stubbs, Cabrera, Doyle, Snodgrass, Shelton, Emerson, Ratcliff, Ortiz-Velez, J. Anderson, Considine, C. Anderson, Moore Omokunde, Palmeri and Jacobson",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Emerson, J. Anderson, Baldeh, Bare, Clancy, Conley, Jacobson, Joers, Madison, Neubauer, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs and Subeck; +cosponsored by Senators Pfaff, Smith, Spreitzer, Roys, Larson and Agard",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Hutton, Wanggaard, Jacque, James, Stroebel and Bradley; +cosponsored by Representatives Donovan, Tusler, Maxey, Michalski, Wichgers, Gundrum, Novak and Rettinger",2024-02-01T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Wimberger, Ballweg, Felzkowski and Marklein; +cosponsored by Representatives Steffen, Armstrong, Behnke, Bodden, Brandtjen, Brooks, Dittrich, Macco, Michalski, Murphy, Nedweski, Rozar, Schmidt and Sortwell",2023-05-02T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Wichgers, Maxey, Brandtjen, Dittrich, Edming, Gundrum, Gustafson, Murphy, O'Connor, Rettinger, Sinicki, Steffen, Behnke and S. Johnson; +cosponsored by Senators Hutton, Ballweg, Carpenter, Jacque, L. Johnson, Wirch and Spreitzer",2023-12-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bodden, Green, Goeben, Allen, Behnke, Brandtjen, Dittrich, Edming, Gundrum, Gustafson, Magnafici, Melotik, Murphy, Rettinger, Tittl, VanderMeer, Callahan, Schraa, Rozar and Maxey; +cosponsored by Senators Stroebel, Nass, Ballweg, Tomczyk and Wanggaard",2024-01-02T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Wanggaard; +cosponsored by Representative Wittke",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Law Revision Committee,2024-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk and Stroebel; +cosponsored by Representatives Sortwell, Gustafson, Moses, Murphy, Sapik and Schraa",2023-05-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Palmeri, Clancy, Ratcliff, Madison, Baldeh, Snodgrass, Shelton, Drake, Stubbs, Sinicki, Emerson, Cabrera, Jacobson, Moore Omokunde, J. Anderson and Joers; +cosponsored by Senators Larson and Taylor",2023-11-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Agard, Hesselbein and Smith; +cosponsored by Representatives Emerson, Considine, Sinicki, Ohnstad, Conley, Bare, Shelton, Ratcliff, Clancy, Baldeh, Joers, Palmeri, Drake, Moore Omokunde, Madison and Jacobson",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Knodl, Armstrong, Moses, Allen, Bodden, Brandtjen, Brooks, Callahan, Dittrich, Donovan, Duchow, Edming, Goeben, Green, Gundrum, Gustafson, S. Johnson, Kitchens, Magnafici, Maxey, Murphy, Mursau, Nedweski, Neylon, Novak, O'Connor, Oldenburg, Penterman, Plumer, Rettinger, Rozar, Sapik, Schraa, Snyder, Sortwell, Steffen, Summerfield, Tittl, Tranel, Tusler, VanderMeer, Wichgers, Zimmerman, Swearingen, Binsfeld and Michalski; +cosponsored by Senators Stroebel, Testin, Jacque, Bradley, Cabral-Guevara, Feyen, Hutton, James, LeMahieu, Nass, Quinn, Tomczyk, Wanggaard and Wimberger",2023-02-06T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Krug, Brooks, Tusler, Gundrum, Rozar, Allen, Binsfeld, Bodden, Maxey, Penterman and Schmidt; +cosponsored by Senators Stroebel, Cabral-Guevara and Cowles",2023-05-08T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Snodgrass, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Behnke, Clancy, Conley, Considine, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Palmeri, Ratcliff, Schutt, Shelton, Sinicki, Stubbs and Vining; +cosponsored by Senators Roys, L. Johnson, Agard, Carpenter, Hesselbein, Larson, Pfaff, Smith, Spreitzer and Wirch",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Roys, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Hong, C. Anderson, J. Anderson, Clancy, Conley, Considine, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Snodgrass, Stubbs and Subeck",2023-11-21T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2023-06-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Tomczyk, Wanggaard, Bradley and Felzkowski; +cosponsored by Representatives Wittke, Schutt, Tusler, Plumer, Rozar, Schmidt, Rettinger, Melotik, Allen, Penterman, Dittrich, Duchow, Gustafson, Murphy, Callahan, Green and O'Connor",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Ballweg, Cabral-Guevara, Feyen, Stroebel, Nass and Marklein; +cosponsored by Representatives Hurd, Petryk, Allen, Behnke, Brandtjen, Callahan, Edming, Green, Gundrum, Gustafson, Kitchens, Michalski, Oldenburg, Penterman, Tusler and Donovan",2023-09-08T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee for Review of Administrative Rules,2023-01-27T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Nass and Cabral-Guevara; +cosponsored by Representatives Sortwell, Goeben, Rozar, Allen, Behnke, Bodden, Brandtjen, Callahan, Dittrich, Edming, Magnafici, Michalski, Murphy, O'Connor, Rettinger, Sapik, Schraa and Schutt",2024-01-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Allen, Maxey, Armstrong, Behnke, Bodden, Brandtjen, Gustafson, Murphy and Wichgers; +cosponsored by Senators Jacque, Ballweg, Nass, Quinn and Stroebel",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Kitchens, Novak, Shankland, Krug, C. Anderson, J. Anderson, Andraca, Armstrong, Baldeh, Behnke, Considine, Donovan, Emerson, Green, Joers, Knodl, Moses, Mursau, Oldenburg, Petryk, Plumer, Rozar, Snodgrass, Snyder, Spiros, Subeck and O'Connor; +cosponsored by Senators Cowles, Testin, Ballweg, Cabral-Guevara, Pfaff, Roys and Spreitzer",2023-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives C. Anderson, Shelton, Madison, Joers, Baldeh, Subeck, Sinicki and Ratcliff; +cosponsored by Senators Hesselbein, Larson, Smith, Roys, Agard, Spreitzer and Carpenter",2023-10-18T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Haywood, Sinicki, Ratcliff, Baldeh, Emerson, Palmeri, Ohnstad, Joers, J. Anderson, Stubbs, Drake, Subeck, Clancy and Jacobson; +cosponsored by Senators L. Johnson, Roys, Taylor, Wirch, Smith, Hesselbein and Larson",2023-10-31T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Bare, Joers, C. Anderson, J. Anderson, Clancy, Conley, Considine, Emerson, Madison, Myers, Palmeri, Ratcliff, Shelton, Subeck, Sinicki and Neubauer; +cosponsored by Senators Carpenter, Hesselbein, Agard and Spreitzer",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Shankland, Emerson, J. Anderson, Baldeh, Clancy, Conley, Joers, Madison, Neubauer, Ohnstad, Palmeri, Ratcliff, Shelton, Sinicki, Stubbs and Subeck; +cosponsored by Senators Smith, Larson, Spreitzer, Roys and Agard",2024-01-25T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, McGuire, Bare, Considine, Emerson, Joers, Moore Omokunde, Neubauer, Ohnstad, Palmeri, Ratcliff, Shankland, Shelton, Sinicki, Stubbs, Vining and Jacobson; +cosponsored by Senators Larson, Carpenter, Agard, Spreitzer and Smith",2024-02-23T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Felzkowski, Quinn, Carpenter, Hesselbein, Jacque, James, Marklein, Spreitzer, Taylor, Testin and Cowles; +cosponsored by Representatives Swearingen, C. Anderson, Behnke, Callahan, Dittrich, Doyle, Edming, Goeben, Kurtz, Magnafici, Melotik, Mursau, Nedweski, Novak, O'Connor, Penterman, Plumer, Sinicki, VanderMeer, Spiros, Ortiz-Velez and Conley",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Testin and Jacque; +cosponsored by Representatives Tittl, O'Connor, Callahan, Edming, Gundrum, Kitchens, Krug, Mursau, Sapik, Schraa, Sortwell, Wichgers and Brandtjen",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Vining, C. Anderson, J. Anderson, Clancy, Conley, Considine, Drake, Emerson, Joers, Madison, Ohnstad, Ortiz-Velez, Ratcliff, Shankland and Sinicki; +cosponsored by Senators Spreitzer, Smith, Taylor, Wirch and Agard",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Behnke, Kitchens, Macco, Schmidt, Shelton, Sortwell, Joers and Murphy; +cosponsored by Senators Cowles, Jacque, Wimberger and Marklein",2023-05-25T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Spiros, Green and Nedweski; +cosponsored by Senators James, Marklein and Feyen",2023-02-28T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Carpenter, L. Johnson, Agard, Hesselbein, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch; +cosponsored by Representatives Shankland, Sinicki, Ohnstad, C. Anderson, J. Anderson, Bare, Cabrera, Clancy, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hong, Jacobson, Joers, Madison, Moore Omokunde, Neubauer, Ortiz-Velez, Palmeri, Ratcliff, Shelton, Snodgrass, Stubbs, Subeck and Vining",2023-10-16T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Subeck, Palmeri, J. Anderson, Baldeh, Conley, Considine, Emerson, Joers, Ohnstad, Ratcliff, Shelton, Stubbs, Clancy and Madison; +cosponsored by Senators Roys, Larson and Spreitzer",2023-09-19T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Knodl and Tomczyk; +cosponsored by Representatives Gundrum, Michalski, C. Anderson, Bodden, Goeben, Moses, Plumer and Rettinger",2023-12-19T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Jacque, Nass and Tomczyk; +cosponsored by Representatives Penterman, Rettinger, Behnke, Dittrich and Wichgers",2023-10-23T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Legislative Council,2023-04-20T05:00:00+00:00,['introduction'],WI,2023 +Introduced by Representatives Doyle and Palmeri,2024-04-09T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Stroebel, Cabral-Guevara, Cowles, Feyen and Jacque; +cosponsored by Representatives Bodden, Gustafson, Green, Murphy, O'Connor, Penterman, Rettinger, Schmidt, Tusler and Moses",2024-01-26T06:00:00+00:00,['introduction'],WI,2023 +Introduced by Joint Committee on Employment Relations,2023-06-15T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Steffen, Brooks, Green, Gundrum, Kitchens, Knodl, Murphy, Novak, Petersen, Rettinger, Spiros, Subeck, Tittl and Tranel; +cosponsored by Senators Bradley, Nass, Testin and Felzkowski",2023-03-24T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senator Taylor; +cosponsored by Representatives Myers, Armstrong, Conley, Drake, Ortiz-Velez, Stubbs, Andraca and Sinicki",2023-11-07T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Taylor and Cabral-Guevara; +cosponsored by Representatives Sortwell, Bodden, Behnke, Gustafson, S. Johnson, Magnafici, Moses, Penterman, Rozar, Schmidt and Tittl",2024-01-11T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Larson, Hesselbein, Spreitzer and Taylor; +cosponsored by Representatives J. Anderson, Hong, Clancy, Joers, Madison, Palmeri, Baldeh, Billings, Cabrera, Conley, Drake, Emerson, Moore Omokunde, Ohnstad, Shelton, Sinicki, Snodgrass and Stubbs",2023-11-09T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Goeben, Gustafson, Penterman, Rozar, Sapik and Sinicki; +cosponsored by Senator Cowles",2023-12-22T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Duchow, Wittke, Behnke, Dittrich, Michalski, Moses, Murphy, O'Connor and Spiros; +cosponsored by Senators Tomczyk, Knodl, Stroebel and Ballweg",2024-01-30T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Representatives Macco, Steffen, Kitchens, Armstrong, Baldeh, Behnke, Duchow, Edming, Emerson, S. Johnson, Krug, Michalski, Murphy, Mursau, O'Connor, Ohnstad, Ortiz-Velez, Schmidt, Schraa, Snyder and Green; +cosponsored by Senators James, Taylor and Jacque",2023-02-20T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators James, Feyen and Marklein; +cosponsored by Representatives Spiros, Green and Nedweski",2023-02-21T06:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators L. Johnson, Smith, Taylor, Hesselbein and Roys; +cosponsored by Representatives J. Anderson, Snodgrass, Sinicki, Moore Omokunde, Conley, Baldeh, Ortiz-Velez, Emerson, Ratcliff, Stubbs, Ohnstad, Bare, Cabrera, Palmeri, Shelton, Drake, C. Anderson, Shankland, Andraca, Clancy and Jacobson",2023-10-30T05:00:00+00:00,['introduction'],WI,2023 +"Introduced by Senators Carpenter, Spreitzer, Agard, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith and Wirch; +cosponsored by Representatives Snodgrass, Cabrera, Neubauer, Ratcliff, Clancy, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Conley, Considine, Emerson, Jacobson, Joers, Madison, Moore Omokunde, Ohnstad, Palmeri, Shankland, Shelton, Sinicki, Subeck and Vining",2024-02-26T06:00:00+00:00,['introduction'],WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-26T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2023-01-27T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Jobs, Economy and Small Business Development",2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-02-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-05-15T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2024-02-16T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Government Operations,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-01-26T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2023-06-28T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-01-19T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2024-01-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-12-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-06-21T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-19T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-05-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-03-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-10-13T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-10-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2024-01-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Family Law,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Family Law,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-11-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-14T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2023-03-22T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-05-25T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2023-09-08T05:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-11-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-05-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2023-04-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2023-02-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-05-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-04-20T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2024-02-23T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Administrative Rules,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-03-24T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions,2024-01-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-12T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Senate Organization,2024-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-06-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2024-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-06-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2024-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Joint Committee on Finance,2024-01-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Veterans and Military Affairs,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-03-16T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-10-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2024-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-10-31T05:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Joint Committee on Finance,2024-01-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-11-27T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Ways and Means,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-06-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Campaigns and Elections,2023-02-10T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-03-06T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-05-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-19T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2023-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2024-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-03-24T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2023-11-07T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-12-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-07T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-02-06T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2024-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2024-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-11-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-03-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-04-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-02-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-19T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-01-27T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-11-27T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-04-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Sporting Heritage,2024-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-06-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-03-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Veterans and Military Affairs,2024-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Government Accountability and Oversight,2024-01-26T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-06-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2023-06-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-12-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-06-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-05-08T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2023-06-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2024-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-05-15T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rural Development,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-07-17T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Agriculture,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Jobs, Economy and Small Business Development",2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-02-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2023-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2024-03-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-01-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-16T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Local Government,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-03-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-05-24T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on State Affairs,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-09-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-08-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-06-30T05:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-05-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-03-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-10-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-19T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2024-02-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-01-26T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary,2023-02-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-05-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Administrative Rules,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2023-06-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-02-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2024-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-05-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-03-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2024-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-10-13T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2023-04-03T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2024-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-06-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-31T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2024-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-06-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-10-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-06-05T05:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2024-02-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Veterans and Military Affairs,2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-02-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Tourism,2023-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-10-16T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2024-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-09-12T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-12-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-19T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-04-20T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2024-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-07-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-05-25T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2024-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-07T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2023-06-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-03-08T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-07-27T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Corrections,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-12-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-03-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2024-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-09-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-05-02T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Criminal Justice and Public Safety,2023-02-06T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-07-13T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2024-02-19T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Ways and Means,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-08-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-06-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-09-06T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-08-09T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-12-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-11-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-19T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-09-08T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Veterans and Military Affairs,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Jobs, Economy and Small Business Development",2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-03-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-07-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-01-23T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-06-13T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Ways and Means,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-02-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Joint Committee on Finance,2024-01-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-11-06T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Rural Development,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-03-18T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-11-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Government Operations,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rules,2024-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-01-19T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-05-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-12T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Health,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-05-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-11-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rules,2024-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-03-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-10-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-02-07T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-11-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Rules,2024-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Jobs, Economy and Small Business Development",2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Veterans and Military Affairs,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Family Law,2023-03-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-03-14T05:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-07-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Mental Health and Substance Abuse Prevention,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Joint Committee on Finance,2023-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-04-28T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-06-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-07-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Jobs, Economy and Small Business Development",2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-08-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-05-15T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2023-05-15T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on State Affairs,2023-09-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-12-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-09-08T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-12-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2024-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-02-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Veterans and Military Affairs,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-05-12T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-06-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-14T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2023-05-08T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Health,2023-08-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Privileged and read,2023-01-03T06:00:00+00:00,[],WI,2023 +Privileged and read,2023-01-03T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Transportation,2023-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Considered as privileged and taken up,2023-01-03T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2024-05-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-06-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-03-31T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Agriculture,2023-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-09-06T05:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-02-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-07-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-04-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-05-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-05-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2023-02-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rules,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-05-12T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2023-05-15T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-06-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-14T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2023-09-12T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-03-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-01-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-08-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-06-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-07-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-03-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-04-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-10-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Joint Committee on Finance,2023-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Campaigns and Elections,2023-11-08T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Environment,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-26T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-26T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on State Affairs,2023-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-05-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-08-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Joint Committee on Finance,2024-01-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-11-08T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-09-11T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Ways and Means,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2024-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2024-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Jobs, Economy and Small Business Development",2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2024-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-06-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-02-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-05-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-03-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2023-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-05-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2024-01-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-05-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-03-24T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-04-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Tourism,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Assembly Organization,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-03-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Transportation,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-05-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-07-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-07T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-10-13T05:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-06-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-02-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-03-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-03-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-01-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-04-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-06-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2024-01-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-05-15T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-07-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-03-06T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Veterans and Military Affairs,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-01-11T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-11-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Family Law,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Veterans and Military Affairs,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Health,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-03-06T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2024-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-08-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-05-08T05:00:00+00:00,[],WI,2023 +Read first time and referred to Joint Committee on Finance,2024-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-10-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Joint Committee on Finance,2024-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-07-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rules,2023-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2024-02-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-10-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-06-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Rules,2023-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-09-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Tourism,2024-01-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-11-09T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2024-03-06T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-06-08T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-05-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-09-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions,2023-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-09-20T05:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-12T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on State Affairs,2024-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Privileged and read,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-07-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-11-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-11-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-09-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Joint Committee on Finance,2024-01-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2024-01-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-12-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2024-03-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-05-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-07-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-07-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Mental Health and Substance Abuse Prevention,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-08-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-07-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-11-27T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2023-11-15T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on State Affairs,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-10-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-11-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-01-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-07-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-10-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-08-09T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2024-01-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-06-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-01-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-03-24T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Health,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2024-01-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-03-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2024-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-01-17T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-03-06T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Health,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-03-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-04-28T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Joint Committee on Finance,2024-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-09-29T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-05-12T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Environment,2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-05-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions,2023-10-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Veterans and Military Affairs,2024-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rules,2024-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-04-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-07-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Jobs, Economy and Small Business Development",2024-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-03-14T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2023-10-30T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on State Affairs,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-05-12T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Government Accountability and Oversight,2023-11-02T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Financial Institutions,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-02-03T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-02-03T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rules,2024-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Considered as privileged and taken up,2024-02-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Health,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-05-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Jobs, Economy and Small Business Development",2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-23T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-07-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-02-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read and referred to Committee on Licensing, Constitution and Federalism",2023-10-30T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Tourism,2023-02-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2024-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2024-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-04-03T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Government Operations,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-08-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2023-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-01-27T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-01-31T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-06-29T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-07T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-23T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Insurance,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-10-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-04-28T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Government Operations,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-11-15T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2024-03-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-06-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-07-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-05-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-23T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-07-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-04-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-03-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Family Law,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-05-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-05-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2024-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rural Development,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-10-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-11-27T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-01-25T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-04-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-06-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-02-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2024-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on State Affairs,2023-08-24T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-06-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-11-09T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-05-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2024-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-23T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2024-02-07T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2023-06-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Veterans and Military Affairs,2023-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2024-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-06-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Family Law,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Jobs, Economy and Small Business Development",2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2023-06-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-09-19T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2024-02-21T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-02-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-12T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Tourism,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-19T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Administrative Rules,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-12-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-02-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-06-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-10-18T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-04-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-05-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2023-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-01-31T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-01-30T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-04-20T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2024-02-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-06-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-03-22T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-09-08T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-05-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-04-20T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2023-05-25T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2024-01-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2024-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Tourism,2023-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-04-03T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Local Government,2023-04-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Jobs, Economy and Small Business Development",2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-04-10T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Health,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Family Law,2023-02-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-10-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2024-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-07-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-08-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-01-19T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2024-02-07T06:00:00+00:00,[],WI,2023 +Read first time and referred to Joint Committee on Finance,2023-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-06-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-06-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-06-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-03-06T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-02-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rules,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-10-30T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-07-17T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-11-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-10-10T05:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-11-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rules,2024-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions,2023-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-04-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rules,2023-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2023-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-06-14T05:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-06-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-03-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Privileged and read,2024-01-23T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Environment,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on State Affairs,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-03-23T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2024-01-25T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Energy and Utilities,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-11-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-11-07T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-05-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-04-28T05:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-04-18T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Health,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Administrative Rules,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-09-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-05-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-05-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2023-06-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Campaigns and Elections,2023-09-28T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary,2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Joint Committee on Finance,2024-01-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-26T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Senate Organization,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-06-07T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2024-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rules,2024-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-05-24T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2024-02-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Corrections,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-11-09T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-04-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-06-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-05-08T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2023-06-07T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Health,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-02-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-05-15T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-01-19T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-05-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-01-27T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Family Law,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rules,2023-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-03-08T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Rules,2023-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-06-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-03-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-12T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Sporting Heritage,2023-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Considered as privileged and taken up,2023-01-03T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Education,2023-02-06T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-20T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2024-01-25T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Joint Committee on Finance,2024-01-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-05-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-11-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-02-06T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Transportation,2023-02-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2024-01-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rules,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Joint Committee on Finance,2024-01-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-01-19T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on State Affairs,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-03-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Considered as privileged and taken up,2023-09-14T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2023-05-15T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-03-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-03-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-04-17T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Considered as privileged and taken up,2023-06-28T05:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-07-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-01-13T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2023-09-19T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Family Law,2023-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-04-18T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-05-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-10-13T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Insurance,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-09-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-07-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Assembly Organization,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-02-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-02-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-13T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-05-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-13T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2023-03-24T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-05-15T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2023-03-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2024-02-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Veterans and Military Affairs,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-06-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Family Law,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rules,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-08-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-10-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-04-18T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Veterans and Military Affairs,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2023-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-03-24T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-09-06T05:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-06-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-05-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-06-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-03-20T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Joint Committee on Finance,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Jobs, Economy and Small Business Development",2023-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2024-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Family Law,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-07-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-06-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-01-31T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-06-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-12-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2024-01-31T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-05-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Insurance,2023-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-05-08T05:00:00+00:00,[],WI,2023 +Read first time and referred to Joint Committee on Finance,2023-07-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2023-07-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-03-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-19T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Privileged and read,2023-09-12T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-08-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-05-25T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-01-12T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Transportation,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2024-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2024-02-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2024-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-12T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Ways and Means,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-10-11T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2023-08-24T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2024-01-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2023-05-12T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Rules,2024-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-03-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-05-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-09-19T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Transportation,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Veterans and Military Affairs,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2024-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-06-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Mental Health and Substance Abuse Prevention,2023-10-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-03-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2024-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-11-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-05-16T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-02-08T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Mental Health and Substance Abuse Prevention,2023-07-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2024-03-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Jobs, Economy and Small Business Development",2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-07-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2024-01-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Senate Organization,2024-02-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2023-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Accountability and Oversight,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Tourism,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Consumer Protection,2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Veterans and Military Affairs,2023-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-04-28T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Education,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-06-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-09-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-09-06T05:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-02-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Jobs, Economy and Small Business Development",2024-01-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rules,2024-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2024-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-16T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2023-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-09-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-02-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rules,2023-09-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2024-01-05T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Rules,2024-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-12-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2024-01-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-05-25T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-11-21T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Judiciary,2023-06-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-10-09T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on State Affairs,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Family Law,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-12-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2023-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-05-24T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-05-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-09-12T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Corrections,2023-12-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-04-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2024-03-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-04-18T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Transportation,2023-10-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Joint Committee on Finance,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-04-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-05-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-07-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-04-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-11-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Regulatory Licensing Reform,2023-06-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-11-09T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2023-09-12T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Colleges and Universities,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-04-14T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2023-04-17T05:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2024-02-16T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on State Affairs,2023-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-12-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Jobs, Economy and Small Business Development",2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-06-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-12-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-09-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-06-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-08-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Family Law,2023-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2024-03-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Universities and Revenue,2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Jobs, Economy and Small Business Development",2023-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Housing and Real Estate,2024-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-09-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2023-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-12-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Economic Development and Technical Colleges,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Government Operations, Elections and Consumer Protection",2023-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2024-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Mental Health and Substance Abuse Prevention,2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Joint Committee on Finance,2024-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-23T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Colleges and Universities,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-04-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-11-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-06-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Rules,2024-02-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-12-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2024-01-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2024-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2024-03-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-08-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-10-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-05-15T05:00:00+00:00,[],WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Environment,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-02-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-01-19T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Agriculture,2024-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Senate Organization,2023-05-02T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance,2024-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-09-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2024-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2024-03-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Mental Health and Substance Abuse Prevention,2023-10-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2024-04-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-03-10T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Corrections,2023-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary,2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2024-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Ways and Means,2023-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Energy and Utilities,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2024-02-16T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2024-02-20T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Rules,2023-09-11T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Agriculture and Tourism,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Health, Aging and Long-Term Care",2023-04-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Privileged and read,2024-02-20T06:00:00+00:00,[],WI,2023 +Read and referred to Committee on Senate Organization,2023-04-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Insurance and Small Business,2023-05-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Labor, Regulatory Reform, Veterans and Military Affairs",2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Natural Resources and Energy,2023-05-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Sporting Heritage,2024-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Local Government,2023-05-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2023-11-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Family Law,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Health,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-01-27T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Education,2023-10-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Licensing, Constitution and Federalism",2023-05-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Corrections,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Workforce Development and Economic Opportunities,2023-03-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Housing, Rural Issues and Forestry",2023-11-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Mental Health, Substance Abuse Prevention, Children and Families",2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2024-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Labor and Integrated Employment,2023-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Children and Families,2023-09-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-04-18T05:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Criminal Justice and Public Safety,2023-02-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Campaigns and Elections,2023-10-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Financial Institutions and Sporting Heritage,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation,2023-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on State Affairs,2023-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Transportation and Local Government,2024-01-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Jobs, Economy and Small Business Development",2023-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Government Operations,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read and referred to Committee on Rules,2023-03-06T06:00:00+00:00,[],WI,2023 +Read first time and referred to Committee on Insurance,2024-04-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Judiciary and Public Safety,2023-11-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +"Read first time and referred to Committee on Shared Revenue, Elections and Consumer Protection",2024-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Read first time and referred to Committee on Utilities and Technology,2023-12-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Fiscal estimate received,2023-09-08T05:00:00+00:00,['receipt'],WI,2023 +Representatives O'Connor and Shankland added as coauthors,2023-05-15T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Representative Behnke withdrawn as a cosponsor,2024-01-25T06:00:00+00:00,['withdrawal'],WI,2023 +Senator Spreitzer added as a cosponsor,2023-03-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Michalski added as a cosponsor,2023-10-10T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2024-01-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-03-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-02T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Senator Felzkowski added as a coauthor,2024-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Edming added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Stubbs added as a cosponsor,2024-01-09T06:00:00+00:00,[],WI,2023 +Representative Shankland added as a cosponsor,2024-01-18T06:00:00+00:00,[],WI,2023 +Representative Rettinger added as a coauthor,2024-01-26T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-07-11T05:00:00+00:00,[],WI,2023 +Representative Considine added as a coauthor,2024-01-18T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-05T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-23T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-29T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-23T05:00:00+00:00,['receipt'],WI,2023 +Representative Brooks added as a cosponsor,2024-01-23T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-05-11T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 4-25-2023 by Committee on Rules,2023-04-20T05:00:00+00:00,[],WI,2023 +Housing report received pursuant to s. 13.099 (2) Wisconsin Statutes,2024-03-22T05:00:00+00:00,['receipt'],WI,2023 +Senator Testin added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-31T05:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a coauthor,2023-04-27T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-12-07T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-12-15T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Senator Knodl added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-01-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-30T05:00:00+00:00,['receipt'],WI,2023 +Referred to calendar of 5-17-2023 pursuant to Assembly Rule 45 (1),2023-05-15T05:00:00+00:00,['referral'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Shankland added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a cosponsor,2023-12-22T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-10T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-04-17T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2023-04-20T05:00:00+00:00,[],WI,2023 +Placed on calendar 4-25-2023 by Committee on Rules,2023-04-20T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +LRB correction,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-08T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Senator Larson added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2023-03-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-04T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-04T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-02-08T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-02-10T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-07-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-21T05:00:00+00:00,['receipt'],WI,2023 +Representative Wichgers added as a coauthor,2023-10-30T05:00:00+00:00,[],WI,2023 +"Representatives Edming, Subeck and Joers added as coauthors",2023-11-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Senator Knodl added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Representative Sinicki added as a cosponsor,2023-10-19T05:00:00+00:00,[],WI,2023 +Representative Macco added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Stubbs added as a cosponsor,2024-01-09T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Doyle added as a coauthor,2023-03-15T05:00:00+00:00,[],WI,2023 +Adopted,2023-09-12T05:00:00+00:00,['passage'],WI,2023 +Representative Hurd added as a coauthor,2024-01-23T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-01-12T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Read first time and referred to Joint Survey Committee on Tax Exemptions,2023-07-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Representative Jacobson added as a coauthor,2023-08-31T05:00:00+00:00,[],WI,2023 +Made a special order of business at 11:10 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Kitchens,2024-01-23T06:00:00+00:00,[],WI,2023 +Referred to calendar of 10-12-2023 pursuant to Assembly Rule 45 (1),2023-10-10T05:00:00+00:00,['referral'],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Knodl added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-16T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-08-07T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-29T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Rettinger added as a coauthor,2023-11-01T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-02T06:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 11:09 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-12-15T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-25T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-12-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-27T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-05T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-05T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-31T05:00:00+00:00,['receipt'],WI,2023 +Representative Steffen added as a coauthor,2023-04-10T05:00:00+00:00,[],WI,2023 +Representative Green withdrawn as a cosponsor,2023-05-03T05:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2023-05-24T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-04-14T05:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-28T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +LRB correction,2023-09-05T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-07-13T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-15T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Dallman added as a coauthor,2023-03-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-12T05:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 11:13 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Senators Ballweg and Marklein added as cosponsors,2023-10-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-05T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-24T05:00:00+00:00,['receipt'],WI,2023 +Senator Spreitzer added as a cosponsor,2024-01-03T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-03-20T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2023-02-14T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:32 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-06T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-08-10T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Summerfield,2023-12-05T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-04-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-22T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-12-12T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-29T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-03-07T06:00:00+00:00,[],WI,2023 +Representative Subeck withdrawn as a coauthor,2023-03-23T05:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Adopted,2024-01-23T06:00:00+00:00,['passage'],WI,2023 +Fiscal estimate received,2023-04-21T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Placed on calendar 4-25-2023 by Committee on Rules,2023-04-20T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-22-2024 by Committee on Rules,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-28T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-07T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:31 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-03T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-22-2024 by Committee on Rules,2024-02-20T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Oldenburg,2023-08-31T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Sinicki added as a cosponsor,2023-10-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +Read,2023-09-14T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-04-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-24T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Tomczyk,2023-10-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-29T06:00:00+00:00,['receipt'],WI,2023 +Representatives Hurd and Sinicki added as cosponsors,2023-06-08T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-15T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-31T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-02-27T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Representative Steffen added as a coauthor,2023-09-07T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-08-08T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-08-15T05:00:00+00:00,[],WI,2023 +Representatives J. Anderson and Brandtjen added as cosponsors,2023-10-24T05:00:00+00:00,[],WI,2023 +Placed on calendar 9-12-2023 by Committee on Rules,2023-09-07T05:00:00+00:00,[],WI,2023 +Placed on calendar 9-12-2023 by Committee on Rules,2023-09-07T05:00:00+00:00,[],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2024-02-26T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-01T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Withdrawn from committee on Transportation and referred to committee on State Affairs pursuant to Assembly Rule 42 (3)(c),2023-11-28T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Senator Spreitzer added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-21T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative Armstrong added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-21T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Jacque,2023-05-09T05:00:00+00:00,[],WI,2023 +Representative Sinicki added as a cosponsor,2023-10-19T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +LRB correction,2024-01-10T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-12T05:00:00+00:00,[],WI,2023 +Representative Brandtjen added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-20T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-23T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Spreitzer added as a coauthor,2023-12-18T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-06T05:00:00+00:00,[],WI,2023 +Representative Armstrong added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Senator Cowles added as a cosponsor,2024-02-27T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-30T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Adopted,2024-02-20T06:00:00+00:00,['passage'],WI,2023 +Representatives Drake and Palmeri added as cosponsors,2023-09-21T05:00:00+00:00,[],WI,2023 +Senator Wanggaard withdrawn as a coauthor,2023-10-05T05:00:00+00:00,['withdrawal'],WI,2023 +Assembly Amendment 1 offered by Representative Goeben,2023-09-05T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2023-03-01T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-23T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-23T05:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 11:17 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-20T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-10T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-19T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-01-27T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Senator Pfaff added as a cosponsor,2023-03-09T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Duchow,2023-10-03T05:00:00+00:00,[],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-04-12T05:00:00+00:00,['receipt'],WI,2023 +Senator Felzkowski added as a coauthor,2023-10-02T05:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a cosponsor,2023-07-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-15T05:00:00+00:00,['receipt'],WI,2023 +Senator Spreitzer added as a coauthor,2023-02-22T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-03-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-02T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Senator Knodl added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-02-13T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-09T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-02-16T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-05T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-11-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-19T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Senator Cowles added as a cosponsor,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Bodden added as a coauthor,2023-06-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-21T05:00:00+00:00,['receipt'],WI,2023 +Representative Maxey withdrawn as a cosponsor,2023-09-21T05:00:00+00:00,['withdrawal'],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-09T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-09T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2023-07-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-30T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-25T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-08T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-06T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-19T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-12T05:00:00+00:00,['receipt'],WI,2023 +Senator Quinn added as a coauthor,2023-03-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-16T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 4-18-2023 by Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-07-28T05:00:00+00:00,['receipt'],WI,2023 +Representative Cabrera added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Shelton added as a cosponsor,2023-04-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-26T06:00:00+00:00,['receipt'],WI,2023 +Representative O'Connor added as a cosponsor,2023-02-22T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-25T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-09-25T05:00:00+00:00,['receipt'],WI,2023 +Senator Agard added as a coauthor,2024-04-01T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Dittrich withdrawn as a cosponsor,2023-05-18T05:00:00+00:00,['withdrawal'],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-08-31T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-04-12T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-15T05:00:00+00:00,['receipt'],WI,2023 +Representative Sinicki added as a coauthor,2023-10-19T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-10-16T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-06T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-20T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-09T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-05-15T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-17T05:00:00+00:00,['receipt'],WI,2023 +Representatives Jacobson and Subeck added as coauthors,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-07-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-09T05:00:00+00:00,[],WI,2023 +Representative Binsfeld added as a coauthor,2024-01-22T06:00:00+00:00,[],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-10-10T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-30T05:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-28T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Senator Hutton added as a cosponsor,2023-04-13T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-26T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Ballweg,2023-05-30T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-05-19T05:00:00+00:00,[],WI,2023 +Representative Edming added as a cosponsor,2023-08-11T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-10-30T05:00:00+00:00,[],WI,2023 +Representative Novak added as a cosponsor,2023-10-30T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-13T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-06-07T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Ratcliff withdrawn as a cosponsor,2023-04-13T05:00:00+00:00,['withdrawal'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Haywood added as a cosponsor,2023-03-09T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2024-01-12T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-10T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-02-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-07T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-15T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-04-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-19T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-14T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-10-23T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-24T05:00:00+00:00,['receipt'],WI,2023 +Senator Larson added as a cosponsor,2023-02-22T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-06T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-28T05:00:00+00:00,['receipt'],WI,2023 +Senator Jacque added as a cosponsor,2024-01-22T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-13T06:00:00+00:00,[],WI,2023 +Senator Agard added as a coauthor,2023-12-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-16T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-03-02T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-04-04T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Callahan,2023-10-09T05:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-05-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-20T06:00:00+00:00,['receipt'],WI,2023 +Representative Wichgers added as a coauthor,2024-01-18T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +Senator Spreitzer added as a coauthor,2023-07-17T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-12T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2023-10-17T05:00:00+00:00,[],WI,2023 +Representative Callahan added as a cosponsor,2023-10-02T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-09T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-10T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-06T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-27T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-24T05:00:00+00:00,['receipt'],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-05-25T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Larson added as a cosponsor,2023-05-11T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator James,2023-03-28T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-12-26T06:00:00+00:00,[],WI,2023 +Senator Jacque added as a cosponsor,2024-01-22T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-26T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2023-08-21T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-25T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-13T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator L. Johnson,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-07-18T05:00:00+00:00,[],WI,2023 +Representative Michalski added as a coauthor,2023-06-12T05:00:00+00:00,[],WI,2023 +LRB correction,2023-11-07T06:00:00+00:00,[],WI,2023 +Read,2023-06-28T05:00:00+00:00,[],WI,2023 +Representative Oldenburg added as a cosponsor,2023-05-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-14T06:00:00+00:00,['receipt'],WI,2023 +Representative Andraca added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Steffen added as a cosponsor,2024-01-26T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Joers added as a cosponsor,2023-02-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Quinn,2023-11-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-06T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-02-23T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Ballweg,2024-01-29T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-16T06:00:00+00:00,['receipt'],WI,2023 +Representative Goeben withdrawn as a cosponsor,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Representative Clancy added as a coauthor,2023-03-22T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Senator Marklein added as a coauthor,2023-06-12T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-13T05:00:00+00:00,[],WI,2023 +Representatives Madison and Clancy added as cosponsors,2023-05-04T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-03T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-01-30T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-08T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-24T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-07T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-23T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-24T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Knodl added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +"Report without recommendation pursuant to s. 227.26 (2)(h), Wisconsin Statutes",2023-05-31T05:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Billings added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Representatives Cabrera and Drake added as cosponsors,2023-11-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-31T05:00:00+00:00,[],WI,2023 +Representative Oldenburg added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-29T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-12-01T06:00:00+00:00,['receipt'],WI,2023 +LRB correction,2023-11-08T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Nedweski,2023-10-25T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-05-04T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-06-15T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2023-10-19T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-15T06:00:00+00:00,[],WI,2023 +Representative Nedweski added as a coauthor,2023-06-08T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a coauthor,2023-03-30T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Kitchens added as a cosponsor,2023-04-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Senator Knodl added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-19T06:00:00+00:00,['receipt'],WI,2023 +Representative Joers added as a coauthor,2023-09-29T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-12T05:00:00+00:00,['receipt'],WI,2023 +Representative Clancy added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2023-11-28T06:00:00+00:00,[],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Representative Goeben added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Senator James added as a coauthor,2024-02-26T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-10T05:00:00+00:00,['receipt'],WI,2023 +Representative Knodl added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-05T05:00:00+00:00,[],WI,2023 +Made a special order of business at 11:16 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Ortiz-Velez withdrawn as a cosponsor,2023-11-02T05:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-19T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson withdrawn as a coauthor,2024-01-30T06:00:00+00:00,['withdrawal'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-20T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Representative Snodgrass added as a coauthor,2023-11-09T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-11-01T05:00:00+00:00,[],WI,2023 +Representative Tusler added as a cosponsor,2023-10-03T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-05-17T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-02T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-12T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-21T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-26T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-06-05T05:00:00+00:00,[],WI,2023 +Senator Agard added as a coauthor,2023-10-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-07-07T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-23T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-22T06:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-12-13T06:00:00+00:00,['receipt'],WI,2023 +Representative Hurd added as a cosponsor,2024-01-24T06:00:00+00:00,[],WI,2023 +Senator Stafsholt added as a cosponsor,2023-10-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator James,2023-03-03T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-01T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-12-06T06:00:00+00:00,['receipt'],WI,2023 +Senator Ballweg added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Representative Green added as a coauthor,2023-12-27T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-09T06:00:00+00:00,[],WI,2023 +Representative Billings added as a cosponsor,2023-10-19T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Withdrawn from committee on Judiciary and referred to committee on Mental Health and Substance Abuse Prevention pursuant to Assembly Rule 42 (3)(c),2023-10-27T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Neubauer added as a coauthor,2023-12-06T06:00:00+00:00,[],WI,2023 +Representative Ohnstad added as a cosponsor,2023-02-16T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Murphy,2023-05-09T05:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2023-06-30T05:00:00+00:00,[],WI,2023 +Made a special order of business at 11:19 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-08T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-15T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-29T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-13T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-05-02T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-06T06:00:00+00:00,['receipt'],WI,2023 +Representative Palmeri added as a cosponsor,2023-12-21T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Brandtjen added as a cosponsor,2023-03-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-26T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-11T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Representative Edming added as a cosponsor,2024-02-13T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-20T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-07-03T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +Senator Ballweg added as a cosponsor,2023-04-11T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Knodl added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Senator Jacque added as a cosponsor,2024-01-19T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Made a special order of business at 1:01 PM on 9-14-2023 pursuant to Assembly Resolution 17,2023-09-12T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Rettinger added as a cosponsor,2023-09-21T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-09-21T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Jacque,2023-05-30T05:00:00+00:00,[],WI,2023 +Senator Knodl added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Representative Oldenburg added as a cosponsor,2023-04-19T05:00:00+00:00,[],WI,2023 +Representative Billings added as a cosponsor,2023-03-09T06:00:00+00:00,[],WI,2023 +Representative Clancy added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Wichgers added as a coauthor,2024-01-12T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-15T05:00:00+00:00,[],WI,2023 +Representative Kitchens added as a cosponsor,2023-04-24T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-05T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Representative Edming added as a cosponsor,2023-08-10T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-05T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Representatives Mursau, Edming, Snyder and Goeben added as cosponsors",2024-01-31T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-03-13T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-07T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-02T06:00:00+00:00,['receipt'],WI,2023 +Representative Tittl added as a cosponsor,2023-11-16T06:00:00+00:00,[],WI,2023 +Representative Edming added as a cosponsor,2024-02-27T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-12-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Larson added as a coauthor,2023-05-11T05:00:00+00:00,[],WI,2023 +Withdrawn from committee on Assembly Organization and referred to committee on Criminal Justice and Public Safety pursuant to Assembly Rule 42 (3)(c),2023-12-12T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-01-13T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Representative Knodl added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +Placed on calendar 4-18-2023 by Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator James,2023-11-15T06:00:00+00:00,[],WI,2023 +"Adopted, Ayes 26, Noes 6",2023-01-03T06:00:00+00:00,['passage'],WI,2023 +Senator Quinn added as a coauthor,2023-07-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-10T06:00:00+00:00,['receipt'],WI,2023 +Representative Green added as a cosponsor,2023-11-29T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-01T06:00:00+00:00,['receipt'],WI,2023 +Senator Larson added as a coauthor,2023-05-11T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-20T05:00:00+00:00,['receipt'],WI,2023 +Senator Larson added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Senator James added as a coauthor,2023-09-21T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Representative O'Connor added as a cosponsor,2023-11-09T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-23T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Stubbs,2023-09-05T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-04-10T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-14T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Representative Neubauer added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-20T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-12-20T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-19T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Shankland and Haywood added as cosponsors,2023-11-27T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-29T06:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-22-2023 by Committee on Rules,2023-03-14T05:00:00+00:00,[],WI,2023 +Senator Marklein added as a cosponsor,2023-10-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-10T05:00:00+00:00,['receipt'],WI,2023 +Representative Bodden added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-19T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-13T06:00:00+00:00,['receipt'],WI,2023 +Senator Agard added as a coauthor,2024-01-08T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-27T05:00:00+00:00,['receipt'],WI,2023 +Representatives Bare and Billings added as coauthors,2023-04-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-16T05:00:00+00:00,['receipt'],WI,2023 +Senator Ballweg added as a coauthor,2023-11-21T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Kitchens,2024-01-29T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Marklein,2024-01-31T06:00:00+00:00,[],WI,2023 +Senator Felzkowski added as a coauthor,2023-10-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-26T05:00:00+00:00,['receipt'],WI,2023 +Representative Kitchens added as a cosponsor,2023-12-11T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a coauthor,2024-02-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-31T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-09T06:00:00+00:00,[],WI,2023 +Senator Nass added as a cosponsor,2023-04-05T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-06T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2023-04-19T05:00:00+00:00,[],WI,2023 +Representative Oldenburg added as a coauthor,2023-04-19T05:00:00+00:00,[],WI,2023 +Representative Joers added as a coauthor,2024-01-11T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-24T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-06T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-12-22T06:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2024-01-04T06:00:00+00:00,[],WI,2023 +Representative Swearingen added as a coauthor,2023-10-10T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-07-20T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-01T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from committee on Rules and take up,2023-10-12T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-12-22T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Bodden added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-09-08T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2023-12-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-07-20T05:00:00+00:00,['receipt'],WI,2023 +Representative Allen added as a cosponsor,2023-05-11T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Michalski withdrawn as a coauthor,2023-11-08T06:00:00+00:00,['withdrawal'],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-02T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-03T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-11T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-09-13T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-26T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-06T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-27T05:00:00+00:00,['receipt'],WI,2023 +Representative Sinicki added as a coauthor,2023-12-12T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-02T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-18T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-12-26T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-10T05:00:00+00:00,['receipt'],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-02T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-30T06:00:00+00:00,['receipt'],WI,2023 +Representative Snyder added as a cosponsor,2023-05-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +LRB correction,2023-10-09T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-10T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-12T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-07-26T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-15T05:00:00+00:00,['receipt'],WI,2023 +Representative Wittke added as a cosponsor,2023-12-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-08T05:00:00+00:00,['receipt'],WI,2023 +Representative Donovan added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +LRB correction,2023-04-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-01T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-12-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-11T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-04T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-13T05:00:00+00:00,[],WI,2023 +Representative Donovan added as a coauthor,2023-04-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +Senators Nass and Ballweg added as cosponsors,2023-11-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Representative Ohnstad added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Senator James added as a coauthor,2023-05-17T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Feyen,2023-05-17T05:00:00+00:00,[],WI,2023 +Representatives Madison and Clancy added as coauthors,2023-05-04T05:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2024-01-05T06:00:00+00:00,[],WI,2023 +Referred to calendar of 10-12-2023 pursuant to Assembly Rule 45 (1),2023-10-10T05:00:00+00:00,['referral'],WI,2023 +Representative Madison added as a coauthor,2023-07-18T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Moses,2023-05-18T05:00:00+00:00,[],WI,2023 +Representative Edming added as a cosponsor,2024-02-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Representative Stubbs added as a coauthor,2023-09-12T05:00:00+00:00,[],WI,2023 +Representative Palmeri added as a coauthor,2023-08-23T05:00:00+00:00,[],WI,2023 +Representative Considine added as a cosponsor,2024-01-18T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-08T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-10T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative Tittl added as a coauthor,2023-11-16T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-15T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-05-05T05:00:00+00:00,[],WI,2023 +Senator Knodl added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Senator Felzkowski added as a coauthor,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-27T05:00:00+00:00,['receipt'],WI,2023 +Representative Baldeh withdrawn as a coauthor,2023-10-24T05:00:00+00:00,['withdrawal'],WI,2023 +Representative Jacobson added as a coauthor,2024-02-08T06:00:00+00:00,[],WI,2023 +Senator Wichgers added as a cosponsor,2023-05-17T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-10T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-07-20T05:00:00+00:00,[],WI,2023 +Representative Kitchens added as a cosponsor,2023-12-22T06:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2023-07-12T05:00:00+00:00,[],WI,2023 +Representative Stubbs added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-06T05:00:00+00:00,['receipt'],WI,2023 +Representative Katsma added as a coauthor,2024-02-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2023-07-18T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-15T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-25T05:00:00+00:00,[],WI,2023 +Representative Krug added as a cosponsor,2023-05-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-08T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-03T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Representatives Allen and Schraa added as coauthors,2023-10-12T05:00:00+00:00,[],WI,2023 +Representative Sinicki added as a cosponsor,2023-10-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Clancy added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-19T05:00:00+00:00,['receipt'],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-11T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-07-24T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-15T06:00:00+00:00,[],WI,2023 +Representative Billings added as a cosponsor,2023-12-12T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-20T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2024-03-27T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-12T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2023-11-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-22T06:00:00+00:00,['receipt'],WI,2023 +Representative Rozar added as a coauthor,2023-04-03T05:00:00+00:00,[],WI,2023 +"Representatives C. Anderson, Schmidt and Ohnstad added as coauthors",2024-01-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-09-27T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Dittrich,2024-02-05T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-07-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-02T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-10-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-03T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-08-07T05:00:00+00:00,['receipt'],WI,2023 +Representative Kitchens added as a cosponsor,2023-04-24T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-07-20T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Riemer added as a cosponsor,2023-06-21T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-10-23T05:00:00+00:00,[],WI,2023 +Representative Allen added as a coauthor,2023-04-12T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-19T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Palmeri added as a cosponsor,2024-03-11T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-18T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Senator Larson added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-10-19T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-05-04T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-02-20T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-27T06:00:00+00:00,['receipt'],WI,2023 +Representative Tittl added as a cosponsor,2023-02-16T06:00:00+00:00,[],WI,2023 +"Withdrawn from committee on Labor, Regulatory Reform, Veterans and Military Affairs and rereferred to committee on Government Operations pursuant to Senate Rule 46(2)(c)",2023-05-09T05:00:00+00:00,['referral-committee'],WI,2023 +Representatives Madison and Clancy added as coauthors,2023-10-24T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-30T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-08T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-27T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-01-27T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-14T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-08T05:00:00+00:00,['receipt'],WI,2023 +Representative Shankland added as a coauthor,2023-12-11T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Representative Billings added as a cosponsor,2023-10-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-27T05:00:00+00:00,['receipt'],WI,2023 +Representative Clancy added as a cosponsor,2023-02-15T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-02-16T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-17T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-19T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-25T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Vining added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Subeck added as a cosponsor,2024-01-03T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-04-14T05:00:00+00:00,[],WI,2023 +Senator Knodl added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-06-05T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-10T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-31T06:00:00+00:00,[],WI,2023 +Representative Knodl added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative C. Anderson added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representatives Subeck and Clancy added as cosponsors,2023-05-03T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-13T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-06-29T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Tusler,2023-10-26T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-20T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Stafsholt,2023-10-31T05:00:00+00:00,[],WI,2023 +Representative Sinicki added as a cosponsor,2024-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-04T06:00:00+00:00,[],WI,2023 +Senator Bradley added as a cosponsor,2024-03-06T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-16T06:00:00+00:00,['receipt'],WI,2023 +Representative Neubauer added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Palmeri added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Senator Wimberger added as a coauthor,2023-06-23T05:00:00+00:00,[],WI,2023 +Representative Schraa added as a cosponsor,2023-12-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Kitchens added as a cosponsor,2024-02-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-07-05T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-11-09T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Steffen,2023-05-22T05:00:00+00:00,[],WI,2023 +Representative Clancy added as a cosponsor,2023-12-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Clancy added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative Sinicki added as a cosponsor,2024-02-09T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-19T05:00:00+00:00,[],WI,2023 +"Representatives Sinicki, Subeck and Schraa added as coauthors",2023-12-12T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-17T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-13T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-02-13T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Representatives Madison and Clancy added as cosponsors,2023-05-04T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2024-01-24T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-09-22T05:00:00+00:00,['receipt'],WI,2023 +Senator Agard added as a coauthor,2023-12-14T06:00:00+00:00,[],WI,2023 +Representative Duchow added as a coauthor,2023-04-11T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +"Report without recommendation pursuant to s. 227.26(2)(h), Wisconsin Statutes, by Committee on Tourism",2023-03-08T06:00:00+00:00,[],WI,2023 +Representative Bodden added as a cosponsor,2023-01-30T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-24T05:00:00+00:00,['receipt'],WI,2023 +Representative Billings added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-02-16T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to Joint Survey Committee on Tax Exemptions,2023-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2023-12-06T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Senator Ballweg added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-05-25T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-23T05:00:00+00:00,['receipt'],WI,2023 +Representative Hurd added as a cosponsor,2023-10-05T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2023-12-22T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-13T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Drake added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-17T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-11T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Considine added as a cosponsor,2023-04-07T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2024-01-24T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-21T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-23T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Palmeri added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Senator Felzkowski added as a coauthor,2023-02-23T06:00:00+00:00,[],WI,2023 +"Joint Committee for Review of Administrative Rules report received pursuant to s. 227.26(2)(g), Wisconsin Statutes",2023-03-14T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Senator L. Johnson added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-04-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-26T05:00:00+00:00,[],WI,2023 +Representative Allen added as a cosponsor,2023-05-08T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-29T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Senator Cabral-Guevara added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-12-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Representative Armstrong added as a cosponsor,2024-02-05T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-04-03T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-25T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +"Report without recommendation pursuant to s. 227.26(2)(h), Wisconsin Statutes, by Committee on Family Law",2023-03-08T06:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2023-12-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-23T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Kitchens added as a cosponsor,2023-04-24T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Quinn,2024-02-09T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2024-01-03T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-06T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-11-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-19T06:00:00+00:00,['receipt'],WI,2023 +Representative Knodl added as a coauthor,2023-03-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-21T06:00:00+00:00,[],WI,2023 +Senator James added as a cosponsor,2023-03-29T05:00:00+00:00,[],WI,2023 +Senator Testin added as a cosponsor,2023-02-28T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-26T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-16T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Novak,2023-11-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-19T05:00:00+00:00,['receipt'],WI,2023 +Representatives Billings and Madison added as cosponsors,2023-11-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +"Report without recommendation pursuant to s. 227.26(2)(h), Wisconsin Statutes, by Committee on Health, Aging and Long-Term Care",2023-05-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Senator Roys added as a coauthor,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Joers added as a coauthor,2023-05-18T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-10T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-20T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Representative Krug added as a cosponsor,2023-05-16T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-05T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-04-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-31T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +"Withdrawn from committee on Government Operations and rereferred to committee on Shared Revenue, Elections and Consumer Protection pursuant to Senate Rule 46(2)(c)",2023-07-10T05:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Moses added as a cosponsor,2023-12-20T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Penterman,2024-01-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senators Larson and Agard added as coauthors,2023-12-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-27T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Representative Bodden added as a cosponsor,2023-06-26T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-19T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-24T05:00:00+00:00,[],WI,2023 +Representative Moses added as a coauthor,2023-01-23T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-10-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-11T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a coauthor,2023-02-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-18T05:00:00+00:00,['receipt'],WI,2023 +Representative Hurd added as a cosponsor,2024-01-24T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-21T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-07-17T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-29T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2024-02-12T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-05-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-21T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-08-07T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-14T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Senator L. Johnson added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Stafsholt,2023-10-31T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-10-11T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-12-07T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-03-22T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Marklein,2024-02-13T06:00:00+00:00,[],WI,2023 +Senator Wanggaard added as a coauthor,2023-12-20T06:00:00+00:00,[],WI,2023 +Representative Wichgers added as a cosponsor,2023-02-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-06-12T05:00:00+00:00,['receipt'],WI,2023 +Representative Palmeri added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-02T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-03-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-04-10T05:00:00+00:00,['receipt'],WI,2023 +Senator Larson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-08-03T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-02-10T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-08-21T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-27T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-21T06:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Rettinger added as a coauthor,2023-04-07T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Dittrich added as a cosponsor,2023-06-08T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-05-17T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-02T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-09-28T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-10-12T05:00:00+00:00,[],WI,2023 +Representative Hurd added as a coauthor,2023-10-05T05:00:00+00:00,[],WI,2023 +Senator Jacque added as a coauthor,2024-01-22T06:00:00+00:00,[],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-12-13T06:00:00+00:00,['receipt'],WI,2023 +Representative Knodl added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Representative Clancy added as a cosponsor,2023-09-21T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-27T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-04-02T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2024-01-03T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-02-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a cosponsor,2024-01-03T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-07-27T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a coauthor,2023-12-22T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-20T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2024-02-26T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-06-15T05:00:00+00:00,[],WI,2023 +Representatives C. Anderson and Joers added as cosponsors,2023-05-19T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-03-06T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-01T05:00:00+00:00,['receipt'],WI,2023 +Representative Rettinger added as a coauthor,2023-09-21T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Schmidt added as a cosponsor,2024-01-04T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-26T05:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Tusler,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-02-22T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Available for scheduling,2023-06-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-03-23T05:00:00+00:00,[],WI,2023 +Senator Wanggaard added as a cosponsor,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Swearingen added as a cosponsor,2023-01-30T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-31T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-25T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Agard added as a coauthor,2024-02-23T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Moore Omokunde added as a cosponsor,2023-10-17T05:00:00+00:00,[],WI,2023 +Representative Knodl added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-29T05:00:00+00:00,['receipt'],WI,2023 +Representative Green added as a coauthor,2023-11-28T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-11T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-16T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a cosponsor,2023-12-22T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-04-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-12-12T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-08T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Michalski withdrawn as a cosponsor,2023-11-08T06:00:00+00:00,['withdrawal'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Gundrum,2024-01-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-21T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-20T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-04-20T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-26T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Hesselbein added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Senator Agard added as a coauthor,2024-02-23T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a cosponsor,2024-01-03T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-12T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-31T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-28T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Ballweg,2023-10-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Representative Vining added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-12-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-26T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-02T06:00:00+00:00,['receipt'],WI,2023 +Representatives Sinicki and Hong added as cosponsors,2023-03-17T05:00:00+00:00,[],WI,2023 +Senator Agard added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-19-2023 by Committee on Rules,2023-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Senator Cowles added as a coauthor,2024-01-09T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Moses,2023-06-02T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-10T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-05T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Representative Green added as a cosponsor,2023-11-29T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-09T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-30T06:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 by Committee on Rules,2023-09-12T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Representative Hurd added as a cosponsor,2023-12-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Dittrich added as a cosponsor,2023-04-07T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a coauthor,2023-07-26T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Available for scheduling,2023-08-09T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-04-24T05:00:00+00:00,['receipt'],WI,2023 +Senator Tomczyk added as a coauthor,2023-10-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-12T06:00:00+00:00,['receipt'],WI,2023 +Representative Clancy added as a cosponsor,2023-08-30T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-14T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2023-04-26T05:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2023-12-06T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-10T05:00:00+00:00,[],WI,2023 +Read first time and referred to Joint Survey Committee on Tax Exemptions,2024-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Senator Cowles added as a coauthor,2023-03-24T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-09-20T05:00:00+00:00,[],WI,2023 +Representative Sinicki added as a coauthor,2023-06-09T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Joers added as a coauthor,2023-06-08T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-24T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2023-10-13T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-12T06:00:00+00:00,['receipt'],WI,2023 +Representative Allen added as a coauthor,2023-05-11T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Knodl added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-15T05:00:00+00:00,['receipt'],WI,2023 +Representative Considine added as a cosponsor,2023-04-13T05:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 by Committee on Rules,2023-09-12T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-03-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-10T05:00:00+00:00,[],WI,2023 +Representative Stubbs added as a cosponsor,2023-08-25T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-01-29T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-31T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-07-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-07T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-11-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-16T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-30T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-13T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-03T05:00:00+00:00,[],WI,2023 +Representative Palmeri withdrawn as a coauthor,2023-10-19T05:00:00+00:00,['withdrawal'],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Senator Stafsholt added as a coauthor,2023-05-25T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-23T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-11-03T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-26T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-25T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-22T05:00:00+00:00,['receipt'],WI,2023 +Representative Edming added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-15T05:00:00+00:00,[],WI,2023 +Representative Myers added as a coauthor,2023-11-28T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Representative S. Johnson added as a coauthor,2023-09-20T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-20T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative Hurd added as a coauthor,2024-01-23T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-26T06:00:00+00:00,['receipt'],WI,2023 +Representative Shankland added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator James,2023-12-18T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-18T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-07-26T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Donovan,2023-11-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-21T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-20T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-11-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-11-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-10T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-08-10T05:00:00+00:00,[],WI,2023 +Representative Schraa added as a coauthor,2023-10-02T05:00:00+00:00,[],WI,2023 +Representative Stubbs added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-25T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to calendar of 5-17-2023 pursuant to Assembly Rule 45 (1),2023-05-15T05:00:00+00:00,['referral'],WI,2023 +Assembly Amendment 1 offered by Representative Tittl,2024-01-29T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-20T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-10-04T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-13T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-07-17T05:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-05-14T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read,2023-01-03T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +LRB correction,2023-09-25T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-08T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-07T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-03-15T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-08T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-10T05:00:00+00:00,[],WI,2023 +"Adopted, Ayes 99, Noes 0",2023-01-03T06:00:00+00:00,['passage'],WI,2023 +"Adopted, Ayes 99, Noes 0",2023-01-03T06:00:00+00:00,['passage'],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-12T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Kurtz,2023-11-07T06:00:00+00:00,[],WI,2023 +Senator Larson added as a coauthor,2023-08-28T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Senator Ballweg added as a cosponsor,2023-09-05T05:00:00+00:00,[],WI,2023 +Representative Stubbs added as a cosponsor,2023-10-17T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Ortiz-Velez added as a cosponsor,2023-07-05T05:00:00+00:00,[],WI,2023 +Representative Hurd added as a coauthor,2024-01-23T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-06T06:00:00+00:00,['receipt'],WI,2023 +Referred to calendar of 5-17-2023 pursuant to Assembly Rule 45 (1),2023-05-15T05:00:00+00:00,['referral'],WI,2023 +Available for scheduling,2023-09-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-25T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Brandtjen added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-24T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-22-2024 by Committee on Rules,2024-02-20T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Clancy added as a coauthor,2023-05-03T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-02-03T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-26T06:00:00+00:00,['receipt'],WI,2023 +"Refused to withdraw from committee on Health, Ayes 10, Noes 22",2024-02-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-11T05:00:00+00:00,['receipt'],WI,2023 +Senator Cabral-Guevara added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Adopted,2024-02-20T06:00:00+00:00,['passage'],WI,2023 +Fiscal estimate received,2024-02-29T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Tittl,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative Dallman added as a cosponsor,2023-03-28T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Senator Stafsholt added as a coauthor,2023-10-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-27T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-29T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to Joint Survey Committee on Tax Exemptions,2023-09-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-07-31T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-29T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-27T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Representative Kitchens added as a cosponsor,2023-04-24T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2023-10-16T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-10T06:00:00+00:00,['receipt'],WI,2023 +"Report without recommendation pursuant to s. 227.26(2)(h), Wisconsin Statutes, by Committee on Campaigns and Elections",2023-03-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Maxey withdrawn as a coauthor,2023-09-21T05:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2023-06-13T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-12T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Rettinger added as a cosponsor,2024-01-03T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-12T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-08-29T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a coauthor,2023-03-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Representative Rozar added as a cosponsor,2023-12-01T06:00:00+00:00,[],WI,2023 +Representative Billings added as a cosponsor,2023-10-19T05:00:00+00:00,[],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-02-03T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-08T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-08T05:00:00+00:00,[],WI,2023 +Representative Kitchens added as a coauthor,2024-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-02T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Billings added as a cosponsor,2023-10-19T05:00:00+00:00,[],WI,2023 +Representative Rettinger added as a cosponsor,2023-12-04T06:00:00+00:00,[],WI,2023 +Representative Kitchens added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-21T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-12-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-10T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a coauthor,2023-12-13T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Senator Cabral-Guevara added as a cosponsor,2023-12-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-07T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-10-30T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-31T05:00:00+00:00,['receipt'],WI,2023 +Representative Shankland added as a coauthor,2023-05-15T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a cosponsor,2024-01-03T06:00:00+00:00,[],WI,2023 +Representative Moses added as a coauthor,2023-09-06T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-04T06:00:00+00:00,[],WI,2023 +Representatives Joers and Billings added as cosponsors,2023-04-17T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to calendar of 5-17-2023 pursuant to Assembly Rule 45 (1),2023-05-15T05:00:00+00:00,['referral'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Clancy and Madison added as coauthors,2023-12-15T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a cosponsor,2024-01-03T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-13T05:00:00+00:00,[],WI,2023 +Senator Ballweg added as a coauthor,2023-05-03T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a cosponsor,2023-05-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Considine added as a coauthor,2023-04-12T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-13T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-06T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to Joint Survey Committee on Tax Exemptions,2023-05-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-10-02T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-21T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Representatives Joers and Stubbs added as cosponsors,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Binsfeld added as a coauthor,2024-01-22T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-13T05:00:00+00:00,[],WI,2023 +Representative Hurd added as a coauthor,2023-11-15T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-11-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-06T05:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a coauthor,2023-12-08T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-07-18T05:00:00+00:00,[],WI,2023 +Representative Knodl added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-10-19T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-07-27T05:00:00+00:00,[],WI,2023 +Representatives Kurtz and Allen added as coauthors,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-12-01T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-05T05:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a coauthor,2023-04-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-29T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-01T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-08-15T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Made a special order of business at 11:15 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-06-05T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-02-08T06:00:00+00:00,[],WI,2023 +Senator Knodl added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-19T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-06T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-20T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2023-10-12T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-15T06:00:00+00:00,['receipt'],WI,2023 +Senators Carpenter and Cowles added as cosponsors,2024-01-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-30T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-20T05:00:00+00:00,[],WI,2023 +Made a special order of business at 11:12 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2024-02-16T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-12-22T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-06T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-05T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Wanggaard,2024-02-06T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Representative Brandtjen added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-14T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Tusler,2024-01-17T06:00:00+00:00,[],WI,2023 +Read first time and referred to Joint Survey Committee on Tax Exemptions,2023-07-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-10-12T05:00:00+00:00,[],WI,2023 +Representative Clancy added as a cosponsor,2023-09-21T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-30T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-31T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2024-01-29T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-10T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-25T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-17T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Petersen,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-03-30T05:00:00+00:00,[],WI,2023 +Senator Cowles added as a cosponsor,2023-02-15T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-03T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-07-27T05:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 10:33 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Representatives Clancy and Madison added as coauthors,2023-12-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Ballweg added as a coauthor,2023-09-08T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Michalski,2023-11-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-06T05:00:00+00:00,[],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2024-02-26T06:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-08-09T05:00:00+00:00,[],WI,2023 +Representative Macco added as a cosponsor,2023-09-06T05:00:00+00:00,[],WI,2023 +Representative Green added as a coauthor,2023-12-27T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-18T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-09-21T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-13T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-03-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Bodden added as a coauthor,2023-09-18T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-20T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-12T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Senator Knodl added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Representative Rettinger added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Representative Palmeri added as a coauthor,2023-04-06T05:00:00+00:00,[],WI,2023 +Senator Felzkowski added as a coauthor,2023-01-06T06:00:00+00:00,[],WI,2023 +Representative Stubbs withdrawn as a cosponsor,2023-02-16T06:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Brooks added as a coauthor,2024-01-23T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-08-15T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-07-31T05:00:00+00:00,[],WI,2023 +Representative Rettinger added as a cosponsor,2023-04-07T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-15T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-25T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-08T05:00:00+00:00,['receipt'],WI,2023 +Representative Palmeri added as a cosponsor,2024-03-28T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-04-21T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representatives Stubbs and Goeben,2024-01-22T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-04T06:00:00+00:00,[],WI,2023 +Representative Snyder added as a coauthor,2023-05-23T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Senator Carpenter added as a cosponsor,2023-03-15T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-02-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-31T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-11T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative C. Anderson added as a coauthor,2023-06-05T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-04-03T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Oldenburg,2023-03-29T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-02T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2023-12-07T06:00:00+00:00,[],WI,2023 +Made a special order of business at 11:18 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-13T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Schraa,2024-01-18T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-06T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-31T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-21T05:00:00+00:00,['receipt'],WI,2023 +Representative Mursau added as a cosponsor,2023-07-27T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-03-03T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-20T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-09T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-04T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +LRB correction,2023-12-05T06:00:00+00:00,[],WI,2023 +Senator Quinn added as a cosponsor,2023-02-15T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-20T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-07-18T05:00:00+00:00,[],WI,2023 +Representative Hong withdrawn as a coauthor,2024-02-05T06:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2023-03-16T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-20T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-12T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison withdrawn as a coauthor,2023-10-02T05:00:00+00:00,['withdrawal'],WI,2023 +Representative Ratcliff added as a coauthor,2023-03-30T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Cabral-Guevara,2024-01-16T06:00:00+00:00,[],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-12-08T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Representative Neubauer added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Representative Edming added as a coauthor,2023-04-11T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-10T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-04T05:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a coauthor,2023-10-30T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Kurtz,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +LRB correction,2023-04-26T05:00:00+00:00,[],WI,2023 +Representative Ortiz-Velez added as a cosponsor,2023-10-02T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-01T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-12T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Testin added as a cosponsor,2023-02-28T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-02T05:00:00+00:00,['receipt'],WI,2023 +Representative Riemer added as a coauthor,2023-03-30T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-01T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-07T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-12T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-04T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-14T06:00:00+00:00,['receipt'],WI,2023 +Representative Brandtjen added as a cosponsor,2023-03-07T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-13T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2023-10-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 4-18-2023 by Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-14T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-05-10T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-12-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-10T06:00:00+00:00,['receipt'],WI,2023 +Senator Ballweg added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-10-16T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 by Committee on Rules,2023-09-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-15T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-08-10T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-01-05T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-24T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2023-10-11T05:00:00+00:00,[],WI,2023 +Senator Testin added as a cosponsor,2023-02-28T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-12-22T06:00:00+00:00,[],WI,2023 +Senator James added as a cosponsor,2023-11-01T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-03-13T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-27T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2023-12-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-14T06:00:00+00:00,['receipt'],WI,2023 +LRB correction,2023-11-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Made a special order of business at 11:11 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a coauthor,2023-02-27T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-01T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-07-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-24T05:00:00+00:00,['receipt'],WI,2023 +Representative Schraa added as a coauthor,2023-11-16T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-13T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2023-12-22T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-10T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-03T05:00:00+00:00,['receipt'],WI,2023 +Senator Hesselbein added as a cosponsor,2024-04-10T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-10T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2023-12-07T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-06-20T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-12-28T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Kurtz added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-08T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +Representative Schraa added as a cosponsor,2023-10-02T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative O'Connor added as a cosponsor,2023-06-07T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-20T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-05T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-31T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2023-12-22T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Quinn,2023-12-12T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Cowles added as a coauthor,2023-03-08T06:00:00+00:00,[],WI,2023 +Representative Palmeri added as a cosponsor,2024-03-28T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Knodl added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Representative Penterman added as a cosponsor,2024-01-26T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-26T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-16T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +Senator Knodl added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-07-14T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-13T06:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +Senator Knodl added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-23T05:00:00+00:00,['receipt'],WI,2023 +Representative Snodgrass added as a coauthor,2023-03-27T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-23T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-27T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Representative Clancy added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Representative C. Anderson added as a cosponsor,2023-03-01T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a cosponsor,2024-02-22T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Spiros,2023-04-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-08T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Representative Brandtjen added as a cosponsor,2023-12-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-12T05:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative J. Anderson added as a cosponsor,2023-10-26T05:00:00+00:00,[],WI,2023 +Representative Allen added as a cosponsor,2023-03-16T05:00:00+00:00,[],WI,2023 +Representative Rettinger added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Representative Stubbs added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-16T05:00:00+00:00,[],WI,2023 +Senator Larson added as a cosponsor,2023-05-11T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-03T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2023-03-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-20T06:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a coauthor,2023-12-08T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Brandtjen added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-02-05T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Representative Schutt added as a cosponsor,2023-11-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-23T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 1-19-2023 by Committee on Rules,2023-01-17T06:00:00+00:00,[],WI,2023 +Representative Palmeri added as a cosponsor,2023-08-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-30T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-03-02T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-06-08T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2023-12-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-07-07T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-15T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Representative Melotik added as a coauthor,2023-10-03T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-10T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Callahan,2023-12-18T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2024-02-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-08-31T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Jacque,2023-07-13T05:00:00+00:00,[],WI,2023 +"Representatives C. Anderson, Joers, Palmeri and Ratcliff withdrawn as cosponsors",2023-11-27T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-13T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-05-10T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-20T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Cabral-Guevara,2023-05-22T05:00:00+00:00,[],WI,2023 +Representative Kitchens added as a coauthor,2023-05-11T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-09-08T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Madison and Clancy added as cosponsors,2023-05-04T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Senator Jacque added as a cosponsor,2023-10-31T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-08T05:00:00+00:00,[],WI,2023 +Representative Gundrum added as a coauthor,2023-07-11T05:00:00+00:00,[],WI,2023 +Representative Krug added as a cosponsor,2023-05-16T05:00:00+00:00,[],WI,2023 +Representative Shelton added as a coauthor,2023-03-06T06:00:00+00:00,[],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-10-26T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-08T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator James,2023-06-09T05:00:00+00:00,[],WI,2023 +Senator Nass added as a cosponsor,2023-04-05T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Zimmerman,2023-10-10T05:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a cosponsor,2023-06-01T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-14T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2024-02-19T06:00:00+00:00,[],WI,2023 +Representative Michalski added as a coauthor,2024-02-02T06:00:00+00:00,[],WI,2023 +Referred to calendar of 10-12-2023 pursuant to Assembly Rule 45 (1),2023-10-10T05:00:00+00:00,['referral'],WI,2023 +Representative Kitchens added as a coauthor,2024-01-02T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Steffen,2023-06-09T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-08T06:00:00+00:00,['receipt'],WI,2023 +Senator Knodl added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-19T06:00:00+00:00,['receipt'],WI,2023 +Senator Knodl added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-12T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-10-30T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-27T06:00:00+00:00,['receipt'],WI,2023 +Referred to calendar of 5-17-2023 pursuant to Assembly Rule 45 (1),2023-05-15T05:00:00+00:00,['referral'],WI,2023 +Senate Amendment 1 offered by Senator Ballweg,2024-01-30T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-01-10T06:00:00+00:00,[],WI,2023 +Made a special order of business at 11:14 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Michalski added as a coauthor,2023-09-06T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-22T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-02-23T06:00:00+00:00,['receipt'],WI,2023 +Representative Knodl added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-03T06:00:00+00:00,['receipt'],WI,2023 +Senator Testin added as a cosponsor,2023-10-03T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-30T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-27T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-04T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-12-27T06:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a coauthor,2023-04-26T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-08-29T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-20T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-07T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Rozar added as a coauthor,2023-02-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-11T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-18T05:00:00+00:00,['receipt'],WI,2023 +Senator James added as a coauthor,2023-11-01T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-16T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-06T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-30T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 1-19-2023 by Committee on Rules,2023-01-17T06:00:00+00:00,[],WI,2023 +Representative Snodgrass added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Senator Knodl added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-03-13T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-30T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Schraa added as a coauthor,2023-04-11T05:00:00+00:00,[],WI,2023 +Representative Clancy added as a cosponsor,2023-09-21T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Murphy,2023-05-24T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Summerfield,2023-11-06T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-05-09T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-15T05:00:00+00:00,[],WI,2023 +Representative Kitchens added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-02T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Green added as a cosponsor,2023-11-29T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Quinn,2023-12-11T06:00:00+00:00,[],WI,2023 +Representative Rozar added as a cosponsor,2023-02-09T06:00:00+00:00,[],WI,2023 +Representative Billings added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Agard added as a coauthor,2023-12-14T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-09-08T05:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a cosponsor,2023-02-22T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-10T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-12-22T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-26T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Hurd added as a cosponsor,2024-02-05T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-16T06:00:00+00:00,['receipt'],WI,2023 +"Representatives Hurd, Behnke, Dittrich, Murphy and Plumer added as cosponsors",2024-02-05T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-12-22T06:00:00+00:00,[],WI,2023 +Senator Jacque added as a coauthor,2024-03-01T06:00:00+00:00,[],WI,2023 +Representatives Billings and Madison added as cosponsors,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-17T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-15T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-01-19T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-10-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +"Joint Committee for Review of Administrative Rules report received pursuant to s. 227.26(2)(g), Wisconsin Statutes",2023-03-14T05:00:00+00:00,['receipt'],WI,2023 +Representative Palmeri added as a cosponsor,2023-09-20T05:00:00+00:00,[],WI,2023 +Representative Knodl added as a cosponsor,2023-03-17T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-15T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-02-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Schmidt added as a coauthor,2024-01-04T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Wichgers,2023-12-06T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-02-27T06:00:00+00:00,[],WI,2023 +Senator Knodl added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-09-25T05:00:00+00:00,['receipt'],WI,2023 +Senator L. Johnson added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-09T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-28T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-29T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Allen added as a cosponsor,2023-02-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2024-01-03T06:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a cosponsor,2024-01-03T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-25T05:00:00+00:00,[],WI,2023 +Representatives Billings and Madison added as cosponsors,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-25T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2024-01-12T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-24T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-01-26T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Billings and Madison added as cosponsors,2023-11-10T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-21T06:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2023-04-19T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-12-07T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-19T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-09-26T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-19T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Representative Billings added as a cosponsor,2023-11-29T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-04-03T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-12-22T06:00:00+00:00,[],WI,2023 +Representative Krug added as a cosponsor,2023-05-16T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-28T05:00:00+00:00,[],WI,2023 +Representative Kitchens added as a cosponsor,2023-04-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-01T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-01T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Representative Rozar added as a cosponsor,2023-02-22T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-06-15T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Senators Marklein and Carpenter added as coauthors,2023-03-16T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-11-01T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Wanggaard added as a coauthor,2023-11-02T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-16T06:00:00+00:00,['receipt'],WI,2023 +Representatives Billings and Madison added as cosponsors,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-15T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-13T05:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Senator Jacque added as a cosponsor,2024-01-19T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-07-13T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative O'Connor added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-04-24T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-08T05:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-04-06T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-03-08T06:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2024-01-29T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-09-26T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-11T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-12-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Available for scheduling,2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Clancy added as a coauthor,2023-08-30T05:00:00+00:00,[],WI,2023 +Representative Knodl added as a coauthor,2023-03-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-09T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-15T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-19T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-26T05:00:00+00:00,[],WI,2023 +Representative Knodl added as a cosponsor,2023-03-17T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-02-28T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-05-24T05:00:00+00:00,[],WI,2023 +Representative Green added as a cosponsor,2024-01-18T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-07-07T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Senator Agard added as a coauthor,2023-12-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-28T06:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representatives C. Anderson and Schmidt added as cosponsors,2024-01-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-27T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Goyke added as a coauthor,2024-01-18T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Moses added as a cosponsor,2023-10-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-18T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-12T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-28T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-21T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a cosponsor,2024-01-03T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-21T05:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-05-10T05:00:00+00:00,[],WI,2023 +Representative Tusler added as a coauthor,2024-04-01T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-07-17T05:00:00+00:00,['receipt'],WI,2023 +Senators Carpenter and Cowles added as coauthors,2024-01-17T06:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2023-12-26T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-12T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Senator Cowles added as a coauthor,2023-02-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-04-12T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Senator L. Johnson added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative Knodl added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +Representative Clancy added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Representative Billings added as a coauthor,2023-10-19T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative Joers added as a coauthor,2023-10-09T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-04-21T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Senator Agard added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-06T05:00:00+00:00,['receipt'],WI,2023 +Representative Swearingen added as a cosponsor,2023-10-05T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-20T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-11T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-11T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Tomczyk,2024-01-29T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Available for scheduling,2023-03-16T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-05T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-29T06:00:00+00:00,['receipt'],WI,2023 +Representative Edming added as a cosponsor,2024-02-27T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-22T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-01-27T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-17T06:00:00+00:00,['receipt'],WI,2023 +Representative O'Connor added as a cosponsor,2023-09-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-19T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-08T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-27T06:00:00+00:00,['receipt'],WI,2023 +Representative Hurd added as a coauthor,2023-11-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-30T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-08-31T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2024-01-24T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Dittrich,2024-02-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Riemer added as a coauthor,2023-03-30T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-31T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-09-12T05:00:00+00:00,['receipt'],WI,2023 +Representative Bodden added as a cosponsor,2023-09-19T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-09-26T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-02T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-05-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-07-03T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-16T05:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-27T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-02-16T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-26T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Representative Shankland added as a cosponsor,2023-01-30T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-10T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-27T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-08-11T05:00:00+00:00,['receipt'],WI,2023 +Representative C. Anderson added as a coauthor,2024-01-02T06:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Tax Exemptions requested,2023-05-22T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-04-24T05:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-02-22T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Representative Novak added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-21T05:00:00+00:00,[],WI,2023 +Senator L. Johnson added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-09T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-03T06:00:00+00:00,['receipt'],WI,2023 +Senator Jacque added as a cosponsor,2024-01-22T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-27T06:00:00+00:00,['receipt'],WI,2023 +"Joint Committee for Review of Administrative Rules report received pursuant to s. 227.26(2)(g), Wisconsin Statutes",2023-03-14T05:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2024-01-19T06:00:00+00:00,['receipt'],WI,2023 +Representative Drake added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-16T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2023-06-20T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-05T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-07-12T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-31T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a coauthor,2023-04-26T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-03T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2023-12-15T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-09-07T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read first time and referred to Joint Survey Committee on Tax Exemptions,2023-09-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2023 +Public hearing held,2023-10-03T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-03T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-20T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-12T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-26T06:00:00+00:00,['receipt'],WI,2023 +Representative Shankland added as a cosponsor,2023-01-30T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-16T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Palmeri added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Duchow added as a coauthor,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-01-22T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-20T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-05T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-01T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-02-08T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-20T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Plumer,2023-05-16T05:00:00+00:00,[],WI,2023 +Representative Rettinger added as a cosponsor,2023-11-01T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-26T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-05T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Representative Joers added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-07-28T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-03-03T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2023-10-23T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-21T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Representative O'Connor withdrawn as a coauthor,2024-02-07T06:00:00+00:00,['withdrawal'],WI,2023 +Representative Zimmerman added as a cosponsor,2023-10-19T05:00:00+00:00,[],WI,2023 +Representative Billings added as a cosponsor,2023-10-19T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-12T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2023-10-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-16T06:00:00+00:00,['receipt'],WI,2023 +Representative Sinicki added as a coauthor,2023-12-12T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-11T05:00:00+00:00,['receipt'],WI,2023 +Representative Dittrich withdrawn as a cosponsor,2024-02-02T06:00:00+00:00,['withdrawal'],WI,2023 +Representative Subeck added as a cosponsor,2023-12-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-08-15T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2024-02-16T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-14T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2023-12-22T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Maxey,2023-10-31T05:00:00+00:00,[],WI,2023 +Representative Summerfield added as a cosponsor,2023-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Shankland added as a cosponsor,2023-01-30T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative Knodl added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Roys withdrawn as a cosponsor,2023-11-17T06:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2023-05-30T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Representative Billings added as a cosponsor,2023-10-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-29T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-12T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-03-13T05:00:00+00:00,['receipt'],WI,2023 +Representative Shankland added as a coauthor,2023-10-13T05:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-11-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-27T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Edming added as a cosponsor,2023-12-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Representative Vining added as a cosponsor,2023-05-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a coauthor,2023-04-11T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-05-24T05:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-11T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-17T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-06-05T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Representative Maxey added as a cosponsor,2024-01-31T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-30T05:00:00+00:00,['receipt'],WI,2023 +Representative Krug added as a cosponsor,2023-05-24T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-02T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-31T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-29T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-03-28T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-20T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a cosponsor,2023-12-22T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-14T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Mursau,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-04-01T05:00:00+00:00,[],WI,2023 +Representative Krug added as a cosponsor,2023-05-16T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-05T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2024-02-19T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-11-29T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-09T06:00:00+00:00,['receipt'],WI,2023 +Senator Tomczyk added as a coauthor,2023-10-03T05:00:00+00:00,[],WI,2023 +Senator James added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2023-05-01T05:00:00+00:00,[],WI,2023 +Representative Rettinger added as a cosponsor,2023-05-24T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-01-27T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-08T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-20T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 4-18-2023 by Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-30T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Schutt added as a cosponsor,2023-09-26T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Joers added as a coauthor,2023-02-08T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-12-22T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-08-21T05:00:00+00:00,['receipt'],WI,2023 +Representative Steffen added as a cosponsor,2024-02-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-10T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-06T05:00:00+00:00,[],WI,2023 +Representative Bare added as a coauthor,2023-09-29T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-14T05:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-12-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-04-20T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-12T05:00:00+00:00,['receipt'],WI,2023 +Senator Spreitzer added as a coauthor,2023-03-31T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-10-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-07T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-07-14T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-04-14T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator James,2023-02-21T06:00:00+00:00,[],WI,2023 +Senator Tomczyk added as a coauthor,2023-07-18T05:00:00+00:00,[],WI,2023 +Representative Palmeri added as a cosponsor,2024-03-11T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Senator Stroebel withdrawn as a coauthor,2024-01-18T06:00:00+00:00,['withdrawal'],WI,2023 +Representative Kitchens added as a coauthor,2023-07-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Senator Quinn added as a cosponsor,2023-03-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-01T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Kitchens added as a cosponsor,2023-04-24T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Senator Spreitzer added as a coauthor,2023-03-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-02T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-07-25T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-05T05:00:00+00:00,['receipt'],WI,2023 +Representative Neubauer added as a coauthor,2023-12-06T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-09-29T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-04-10T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-03-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-04-14T05:00:00+00:00,[],WI,2023 +Representative Hurd added as a cosponsor,2024-01-24T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-30T06:00:00+00:00,['receipt'],WI,2023 +Representative O'Connor added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Spreitzer added as a coauthor,2024-01-02T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-04T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-09T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-02-09T06:00:00+00:00,['receipt'],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-12-13T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-01T05:00:00+00:00,['receipt'],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Senator Jacque added as a coauthor,2024-01-22T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-02T06:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Cabral-Guevara,2023-11-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-14T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative C. Anderson added as a coauthor,2023-11-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-02-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative Melotik withdrawn as a coauthor,2024-01-19T06:00:00+00:00,['withdrawal'],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-31T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-04-10T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2023-12-22T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a cosponsor,2024-02-26T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator James,2023-11-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Wichgers,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-22T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +LRB correction,2024-01-31T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-20T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-10T05:00:00+00:00,['receipt'],WI,2023 +Representative Snodgrass added as a coauthor,2024-01-05T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Knodl,2024-01-22T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Clancy added as a cosponsor,2023-05-03T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-11-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-07-05T05:00:00+00:00,['receipt'],WI,2023 +Report of Joint Survey Committee on Tax Exemptions requested,2024-02-06T06:00:00+00:00,[],WI,2023 +Senator Larson added as a cosponsor,2024-01-23T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-14T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2024-01-03T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative O'Connor added as a coauthor,2023-06-08T05:00:00+00:00,[],WI,2023 +Representative Dittrich added as a cosponsor,2023-07-20T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-30T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-12T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-02-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-16T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-03T05:00:00+00:00,[],WI,2023 +Representatives Wichgers and O'Connor added as coauthors,2023-02-28T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Palmeri added as a coauthor,2024-01-18T06:00:00+00:00,[],WI,2023 +LRB correction,2023-10-19T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Bare added as a coauthor,2024-04-30T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-15T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Plumer,2023-10-24T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report without recommendation pursuant to s. 227.26 (2)(h), Wisconsin Statutes",2023-03-14T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-16T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-21T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a coauthor,2023-09-08T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2023-03-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-14T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +LRB correction,2023-05-10T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-20T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-08-29T05:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Tomczyk,2024-02-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-16T05:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Ohnstad added as a coauthor,2024-04-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-13T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-05T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-21T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-06-08T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2023-05-25T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Wanggaard,2024-01-04T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-26T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Ohnstad added as a coauthor,2024-04-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-02T06:00:00+00:00,['receipt'],WI,2023 +Representative Kitchens added as a coauthor,2024-02-12T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative Cabrera added as a coauthor,2023-02-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-23T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-11T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-10T06:00:00+00:00,['receipt'],WI,2023 +Senator Spreitzer added as a coauthor,2023-04-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Tomczyk,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a coauthor,2024-03-18T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Macco,2023-05-30T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-25T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a cosponsor,2023-12-04T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Tranel added as a cosponsor,2024-02-16T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2023-10-30T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-06-05T05:00:00+00:00,['receipt'],WI,2023 +Representative Snodgrass added as a cosponsor,2024-01-05T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-07-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Representative Maxey added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-08T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-02-09T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2024-01-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-21T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a coauthor,2023-11-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator James added as a coauthor,2023-03-29T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-17T05:00:00+00:00,['receipt'],WI,2023 +Representative Wichgers added as a coauthor,2023-09-06T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-26T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Representative Armstrong added as a coauthor,2023-03-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-29T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Green added as a coauthor,2023-12-27T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-21T06:00:00+00:00,['receipt'],WI,2023 +Representatives Stubbs and Subeck added as coauthors,2023-02-22T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Callahan,2023-11-29T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-29T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2023-12-22T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Representative Goeben added as a coauthor,2023-11-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Pfaff added as a coauthor,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-21T05:00:00+00:00,['receipt'],WI,2023 +Senator Spreitzer added as a cosponsor,2023-11-15T06:00:00+00:00,[],WI,2023 +"Assembly Substitute Amendment 1 offered by Representatives Schutt, Kitchens and Maxey",2024-02-05T06:00:00+00:00,[],WI,2023 +Representative Clancy added as a cosponsor,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2024-01-12T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Kitchens added as a cosponsor,2023-04-24T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a cosponsor,2024-02-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-12-05T06:00:00+00:00,[],WI,2023 +Representative J. Anderson added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Representative Knodl added as a coauthor,2023-03-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Senator Felzkowski added as a coauthor,2023-10-23T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Knodl added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Rettinger added as a cosponsor,2023-09-28T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Michalski added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2023-10-11T05:00:00+00:00,[],WI,2023 +Representatives Penterman and Tittl added as cosponsors,2023-03-16T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-03-09T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Subeck added as a cosponsor,2024-01-03T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Jacobson added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Senator Ballweg added as a cosponsor,2023-09-05T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-06-07T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-10T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-21T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-08-29T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-04-24T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2023-05-19T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to withdraw from committee on Senate Organization and take up,2023-06-28T05:00:00+00:00,[],WI,2023 +Representative Michalski added as a coauthor,2023-10-10T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-28T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Cabral-Guevara,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Ortiz-Velez added as a coauthor,2023-04-19T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-09-20T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-05-10T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-02T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-14T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative J. Anderson added as a coauthor,2023-09-29T05:00:00+00:00,[],WI,2023 +Representative Binsfeld added as a cosponsor,2023-04-04T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 to Senate Amendment 1 offered by Senator James,2023-03-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 2 offered by Representative Wichgers,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-17T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Gundrum and O'Connor added as cosponsors,2023-03-22T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-29T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-27T05:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-30T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Jagler,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-03T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-21T05:00:00+00:00,['receipt'],WI,2023 +Report of Joint Survey Committee on Retirement Systems requested,2023-05-22T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-03T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-04-25T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Senator Testin added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Representative Cabrera added as a cosponsor,2023-06-07T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-23T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-09T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-04T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Clancy added as a cosponsor,2023-08-30T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Billings added as a cosponsor,2023-11-13T06:00:00+00:00,[],WI,2023 +Senator Jacque added as a coauthor,2023-05-03T05:00:00+00:00,[],WI,2023 +LRB correction,2023-12-18T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-05-02T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-31T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-06T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Senator Carpenter added as a cosponsor,2023-10-12T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-03-02T06:00:00+00:00,[],WI,2023 +Representative Maxey added as a cosponsor,2024-01-09T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Withdrawn from committee on Government Operations and rereferred to committee on Shared Revenue, Elections and Consumer Protection pursuant to Senate Rule 46(2)(c)",2023-07-10T05:00:00+00:00,['referral-committee'],WI,2023 +"Representatives Andraca, Jacobson and Clancy added as cosponsors",2023-10-27T05:00:00+00:00,[],WI,2023 +Representative Schutt added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Jacque added as a coauthor,2024-03-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-01T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-03-16T05:00:00+00:00,[],WI,2023 +Representative Allen added as a cosponsor,2023-04-12T05:00:00+00:00,[],WI,2023 +Senator Wirch added as a cosponsor,2023-08-24T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Stafsholt,2023-04-25T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-11-02T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-20T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-10-27T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Representatives Billings and Madison added as cosponsors,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-11T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-09-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-04-24T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-04-11T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-05-01T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Quinn,2023-12-11T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-05-04T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-02T06:00:00+00:00,['receipt'],WI,2023 +Representative Allen added as a coauthor,2023-04-12T05:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2023-04-27T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2024-01-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Ratcliff added as a coauthor,2023-12-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Stafsholt added as a cosponsor,2023-02-16T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-28T05:00:00+00:00,['receipt'],WI,2023 +"Report without recommendation pursuant to s. 227.26 (2)(h), Wisconsin Statutes",2023-03-14T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-01T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Spreitzer added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-24T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-05T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Rozar,2024-01-22T06:00:00+00:00,[],WI,2023 +Representative Knodl added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-03T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Knodl added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-08-22T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Shelton added as a coauthor,2024-04-15T05:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2023-06-07T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 2-22-2024 by Committee on Rules,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Emerson,2023-11-15T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-08T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Ohnstad added as a coauthor,2024-04-15T05:00:00+00:00,[],WI,2023 +Representative Plumer added as a coauthor,2024-01-19T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Jacque,2023-10-16T05:00:00+00:00,[],WI,2023 +Senator Jacque added as a coauthor,2023-05-16T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-16T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-07-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-12-11T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-04T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Jacobson and Palmeri added as coauthors,2023-12-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-08-15T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-12-08T06:00:00+00:00,[],WI,2023 +Senator James added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representatives Murphy and Brandtjen added as cosponsors,2023-10-03T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-03-21T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Ratcliff added as a coauthor,2023-08-07T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-04-21T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Wimberger,2023-11-29T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-10T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-08T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Palmeri and Macco added as coauthors,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-05-19T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-02-27T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-11-15T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Shelton added as a coauthor,2024-04-15T05:00:00+00:00,[],WI,2023 +Representative Wichgers added as a cosponsor,2023-06-20T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Allen added as a cosponsor,2023-04-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-21T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Refused to withdraw from committee on Shared Revenue, Elections and Consumer Protection, Ayes 10, Noes 21",2023-11-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-09T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Myers,2023-12-12T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-09-06T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2023-07-18T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Edming added as a coauthor,2023-04-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-05-06T05:00:00+00:00,['receipt'],WI,2023 +Representative Andraca added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-12T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Representative Palmeri added as a cosponsor,2024-01-18T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a coauthor,2023-02-27T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-16T06:00:00+00:00,[],WI,2023 +Representative Kitchens added as a coauthor,2024-02-12T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-07-18T05:00:00+00:00,[],WI,2023 +Representatives Hong and Schutt added as coauthors,2023-10-03T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Jacobson withdrawn as a cosponsor,2024-01-30T06:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Shelton added as a coauthor,2024-04-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-09T06:00:00+00:00,['receipt'],WI,2023 +Representative Shelton added as a coauthor,2024-04-15T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2023-09-13T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-12T05:00:00+00:00,[],WI,2023 +Senator Taylor added as a coauthor,2023-09-05T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-23T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-14T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-06-06T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-05-04T05:00:00+00:00,[],WI,2023 +Representative O'Connor withdrawn as a cosponsor,2024-02-07T06:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2023-03-08T06:00:00+00:00,[],WI,2023 +Senators Nass and Felzkowski added as cosponsors,2023-11-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-20T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-31T05:00:00+00:00,[],WI,2023 +Representative Vining added as a coauthor,2023-05-18T05:00:00+00:00,[],WI,2023 +Senator Pfaff added as a cosponsor,2023-04-27T05:00:00+00:00,[],WI,2023 +Representative Ohnstad added as a coauthor,2023-05-15T05:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a coauthor,2023-05-16T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-01T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator James,2024-01-24T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-29T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator James,2023-11-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +Housing report received pursuant to s. 13.099 (2) Wisconsin Statutes,2023-06-01T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-03T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-08-29T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +Representative Murphy added as a coauthor,2023-10-31T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Schutt added as a cosponsor,2023-12-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-06-08T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Penterman added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Neubauer added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-18T05:00:00+00:00,['receipt'],WI,2023 +Senator Agard added as a cosponsor,2023-09-01T05:00:00+00:00,[],WI,2023 +Representative Joers added as a coauthor,2023-07-13T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-08-31T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-09-11T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-07-27T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Rozar,2023-09-28T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Senator Wanggaard added as a coauthor,2024-01-30T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-02-15T06:00:00+00:00,['receipt'],WI,2023 +"Representatives Bodden, Gustafson and Behnke added as cosponsors",2023-09-08T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Allen,2024-01-17T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-07-18T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Kitchens,2024-02-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Ratcliff added as a coauthor,2023-08-22T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Mursau added as a cosponsor,2023-07-27T05:00:00+00:00,[],WI,2023 +Senator Larson added as a cosponsor,2024-01-23T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-31T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-09-08T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-09T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Nedweski,2023-08-04T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +LRB correction,2023-09-25T05:00:00+00:00,[],WI,2023 +Senator Jacque added as a coauthor,2024-02-07T06:00:00+00:00,[],WI,2023 +"Adopted, Ayes 29, Noes 3",2023-01-03T06:00:00+00:00,['passage'],WI,2023 +"Withdrawn from committee on Health, Aging and Long-Term Care and referred to committee on State Affairs pursuant to Assembly Rule 42 (3)(c)",2024-02-09T06:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 offered by Representative Rozar,2023-09-28T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-17T05:00:00+00:00,['receipt'],WI,2023 +Assembly Substitute Amendment 1 offered by Representatives Mursau and Swearingen,2023-06-21T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Bradley,2023-03-29T05:00:00+00:00,[],WI,2023 +Representative S. Johnson added as a coauthor,2023-10-11T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-22T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-23T05:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a coauthor,2023-08-07T05:00:00+00:00,[],WI,2023 +Laid on the table,2023-09-14T05:00:00+00:00,['deferral'],WI,2023 +"Assembly Substitute Amendment 1 offered by Representatives Neubauer, Haywood, Subeck, Billings, Shelton, Snodgrass, Goyke, McGuire, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Clancy, Conley, Considine, Doyle, Drake, Emerson, Hong, Jacobson, Joers, Madison, Moore Omokunde, Myers, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Shankland, Sinicki, Stubbs and Vining",2023-01-19T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Knodl,2023-03-30T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-05T05:00:00+00:00,[],WI,2023 +Representative Brooks added as a coauthor,2023-08-30T05:00:00+00:00,[],WI,2023 +Senator Felzkowski added as a cosponsor,2023-07-21T05:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-04T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-04T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-09-08T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Spiros,2024-01-09T06:00:00+00:00,[],WI,2023 +Representative Dittrich added as a coauthor,2023-04-06T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Housing report received pursuant to s. 13.099 (2) Wisconsin Statutes,2023-06-01T05:00:00+00:00,['receipt'],WI,2023 +Housing report received pursuant to s. 13.099 (2) Wisconsin Statutes,2023-03-07T06:00:00+00:00,['receipt'],WI,2023 +Representative Clancy added as a coauthor,2024-02-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Senator Cowles added as a coauthor,2024-02-27T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2024-01-23T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-04T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-28T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-05-14T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-05-01T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-05-13T05:00:00+00:00,['receipt'],WI,2023 +Representative Ohnstad added as a coauthor,2024-04-15T05:00:00+00:00,[],WI,2023 +Representative Shelton added as a coauthor,2024-04-15T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-04-20T05:00:00+00:00,['receipt'],WI,2023 +Adopted,2023-09-14T05:00:00+00:00,['passage'],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Representative Emerson withdrawn as a cosponsor,2024-02-01T06:00:00+00:00,['withdrawal'],WI,2023 +Housing report received pursuant to s. 13.099 (2) Wisconsin Statutes,2023-06-01T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-20T06:00:00+00:00,['receipt'],WI,2023 +Representative Steffen added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-06T06:00:00+00:00,['receipt'],WI,2023 +Representative Knodl added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Cabrera added as a coauthor,2023-06-07T05:00:00+00:00,[],WI,2023 +Representative Kurtz added as a cosponsor,2023-04-14T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Palmeri added as a coauthor,2023-05-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-02T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-20T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-08-29T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-27T06:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Housing report received pursuant to s. 13.099 (2) Wisconsin Statutes,2023-06-01T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-09T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Nass,2023-03-13T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +Representative Riemer added as a cosponsor,2023-03-30T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Steffen,2023-03-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Snyder added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-09T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-03-30T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Representative Clancy added as a cosponsor,2023-08-30T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Born,2024-01-30T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-07-18T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-24T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Green,2024-02-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-09-28T05:00:00+00:00,[],WI,2023 +Representatives Brooks and Donovan added as coauthors,2023-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-05T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-13T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-20T05:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2023-01-19T06:00:00+00:00,['deferral'],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2023-10-09T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Representative Moses added as a cosponsor,2023-09-05T05:00:00+00:00,[],WI,2023 +Representative Palmeri added as a coauthor,2023-09-21T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Representatives Dittrich and Duchow withdrawn as coauthors,2024-02-01T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Ballweg,2023-11-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-02T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-30T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Representative Shankland added as a cosponsor,2024-01-18T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a coauthor,2023-09-28T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-06T05:00:00+00:00,[],WI,2023 +Representative Rettinger added as a cosponsor,2023-10-11T05:00:00+00:00,[],WI,2023 +Representative Penterman added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Kitchens added as a cosponsor,2023-03-31T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-28T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-06T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-03T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Penterman,2024-02-09T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Wanggaard,2023-03-14T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2024-02-16T06:00:00+00:00,[],WI,2023 +Senator Pfaff added as a coauthor,2023-04-21T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-10-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-03-16T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Cabral-Guevara,2023-06-09T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Subeck added as a cosponsor,2023-12-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-07-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-23T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Conley added as a cosponsor,2023-04-18T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Callahan,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-08-07T05:00:00+00:00,[],WI,2023 +Representative Clancy added as a cosponsor,2023-08-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-28T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-12T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Senator Agard added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Senator Cabral-Guevara added as a coauthor,2023-12-07T06:00:00+00:00,[],WI,2023 +Senator Jacque added as a cosponsor,2023-01-18T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Subeck and Rozar added as cosponsors,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Vining added as a cosponsor,2023-11-28T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2023-10-13T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-31T05:00:00+00:00,['receipt'],WI,2023 +Representative Rettinger added as a coauthor,2023-09-21T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-13T05:00:00+00:00,['receipt'],WI,2023 +Representative Vining added as a coauthor,2023-10-30T05:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Marklein,2023-08-31T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Bodden,2023-12-12T06:00:00+00:00,[],WI,2023 +Representative Sinicki added as a cosponsor,2023-05-25T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-11-01T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Representative Clancy added as a coauthor,2023-10-03T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Cabral-Guevara,2023-09-08T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-07-31T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-28T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-06T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Stubbs added as a cosponsor,2023-02-06T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 1 offered by Senator Cabral-Guevara,2024-01-29T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-05T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-14T06:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Ortiz-Velez withdrawn as a coauthor,2023-11-02T05:00:00+00:00,['withdrawal'],WI,2023 +Representative Wichgers added as a coauthor,2023-10-30T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-31T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-02-28T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-21T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-20T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-06T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-01T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-04-01T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Sortwell,2024-01-29T06:00:00+00:00,[],WI,2023 +Representative Moses added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-26T05:00:00+00:00,['receipt'],WI,2023 +Representative Ohnstad added as a coauthor,2024-04-15T05:00:00+00:00,[],WI,2023 +Representative Shelton added as a coauthor,2024-04-15T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-08T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-24T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-05-30T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Stafsholt,2024-02-06T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-04T06:00:00+00:00,[],WI,2023 +Representative Murphy added as a cosponsor,2023-10-03T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-20T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-06-08T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-01T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-20T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Vining added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-12T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Senator Wanggaard withdrawn as a cosponsor,2023-10-05T05:00:00+00:00,['withdrawal'],WI,2023 +Representative Clancy added as a coauthor,2023-02-15T06:00:00+00:00,[],WI,2023 +Adopted,2023-03-14T05:00:00+00:00,['passage'],WI,2023 +Public hearing held,2023-05-10T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Binsfeld added as a coauthor,2024-01-22T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-16T06:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-02T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives O'Connor and Emerson added as cosponsors,2023-06-21T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2023-08-28T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Murphy added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2023-05-17T05:00:00+00:00,[],WI,2023 +Representatives Jacobson and Subeck added as cosponsors,2024-02-01T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +LRB correction,2023-10-11T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Senator Testin added as a coauthor,2024-02-08T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Katsma,2023-09-14T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Subeck added as a cosponsor,2023-06-21T05:00:00+00:00,[],WI,2023 +Representatives Subeck and Wichgers added as cosponsors,2023-06-20T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-27T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-13T05:00:00+00:00,[],WI,2023 +Representatives Dittrich and Duchow withdrawn as cosponsors,2024-02-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Cowles,2023-05-08T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-12-06T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +"Representatives Emerson, Clancy, Madison, Andraca and Conley added as cosponsors",2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Stubbs and Steffen added as cosponsors,2023-10-16T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Cowles,2023-05-25T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Emerson withdrawn as a cosponsor,2024-01-04T06:00:00+00:00,['withdrawal'],WI,2023 +Assembly Amendment 1 offered by Representative Rettinger,2024-01-16T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-05T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-12T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Adopted,2024-02-13T06:00:00+00:00,['passage'],WI,2023 +Representative Ratcliff added as a cosponsor,2024-01-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-09-14T05:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Wittke,2024-01-04T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Representative Emerson withdrawn as a coauthor,2024-01-03T06:00:00+00:00,['withdrawal'],WI,2023 +Representative Riemer added as a cosponsor,2023-03-16T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Michalski added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-03-07T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Penterman,2023-02-21T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Plumer,2024-01-22T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-12-06T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Armstrong,2023-05-30T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-11-30T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-06T06:00:00+00:00,['receipt'],WI,2023 +Representative Macco added as a coauthor,2023-12-14T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Knodl,2023-11-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-11T05:00:00+00:00,['receipt'],WI,2023 +Representative Andraca added as a coauthor,2023-03-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-23T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-27T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-07T06:00:00+00:00,['receipt'],WI,2023 +LRB correction,2023-12-18T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-11T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-02-28T06:00:00+00:00,[],WI,2023 +Senator Pfaff added as a coauthor,2023-12-20T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-28T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Ballweg,2023-09-29T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-12-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2023-06-19T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-02T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Dittrich,2023-05-30T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Ballweg,2023-09-29T05:00:00+00:00,[],WI,2023 +Representative Schutt added as a coauthor,2023-11-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-25T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-14T05:00:00+00:00,[],WI,2023 +Senator Felzkowski added as a coauthor,2023-05-04T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-10T06:00:00+00:00,['receipt'],WI,2023 +Senator Knodl added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-11T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Representative Ballweg added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Representative Michalski added as a cosponsor,2023-06-12T05:00:00+00:00,[],WI,2023 +Representative Macco added as a cosponsor,2023-06-21T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-19T06:00:00+00:00,[],WI,2023 +Representative Nedweski added as a cosponsor,2023-12-21T06:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2023-10-30T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-06-21T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-06-21T05:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2023-06-21T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-09T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-08-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-05T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-31T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 offered by Senator Jacque,2023-10-10T05:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2023-03-09T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-31T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-16T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-05-22T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-13T06:00:00+00:00,['receipt'],WI,2023 +Representative Clancy added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +Adopted,2023-03-14T05:00:00+00:00,['passage'],WI,2023 +Public hearing held,2023-05-31T05:00:00+00:00,[],WI,2023 +Representative Knodl added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-05-16T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Wanggaard,2023-09-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-24T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-30T05:00:00+00:00,[],WI,2023 +Representative Schraa added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Knodl added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-23T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-07T05:00:00+00:00,['receipt'],WI,2023 +Representative Knodl added as a cosponsor,2023-03-17T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 offered by Senator Quinn,2023-08-21T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-07-20T05:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-21T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-10T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-08T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Stafsholt,2023-10-31T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Representative Shelton added as a coauthor,2023-04-14T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-08-09T05:00:00+00:00,[],WI,2023 +Senator Cowles added as a cosponsor,2024-01-09T06:00:00+00:00,[],WI,2023 +Representative Palmeri added as a coauthor,2023-11-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-02T05:00:00+00:00,['receipt'],WI,2023 +Senator Wanggaard added as a coauthor,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-28T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-02-08T06:00:00+00:00,[],WI,2023 +Representative Bare added as a coauthor,2023-11-01T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Maxey,2024-02-13T06:00:00+00:00,[],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-06-06T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-02-21T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-17T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Feyen,2024-02-13T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Representative Shankland added as a coauthor,2024-01-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-11T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-11T06:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Representatives Sinicki and Conley added as coauthors,2023-06-06T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-16T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Marklein,2023-05-08T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-10-11T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2024-01-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Shankland added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-03T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-31T05:00:00+00:00,['receipt'],WI,2023 +Representative Stubbs added as a cosponsor,2023-05-26T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-23T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Neubauer added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Neubauer added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Withdrawn from committee on Criminal Justice and Public Safety and referred to committee on Campaigns and Elections pursuant to Assembly Rule 42 (3)(c),2023-06-01T05:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-10T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Jacque,2024-01-26T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Green,2023-04-25T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-05T05:00:00+00:00,['receipt'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Novak,2024-01-05T06:00:00+00:00,[],WI,2023 +Representative Green added as a coauthor,2024-01-29T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-07-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-03T05:00:00+00:00,['receipt'],WI,2023 +LRB correction,2023-09-08T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senators Jacque and Taylor,2023-06-06T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-21T06:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Adopted,2023-06-07T05:00:00+00:00,['passage'],WI,2023 +Senate Amendment 1 offered by Senator Cabral-Guevara,2023-06-07T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Housing report received pursuant to s. 13.099 (2) Wisconsin Statutes,2023-06-01T05:00:00+00:00,['receipt'],WI,2023 +Representative Palmeri added as a coauthor,2023-08-23T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Wittke,2024-01-09T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-19T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-03T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-30T06:00:00+00:00,[],WI,2023 +Senator Wirch added as a cosponsor,2023-08-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-05T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-11T05:00:00+00:00,['receipt'],WI,2023 +Senator Wirch added as a coauthor,2023-08-24T05:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-07-13T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-14T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-03-16T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-03-08T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Adopted,2023-05-17T05:00:00+00:00,['passage'],WI,2023 +Representative Stubbs added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-23T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a coauthor,2023-11-22T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-07-18T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-06T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Withdrawn from committee on Shared Revenue, Elections and Consumer Protection and rereferred to committee on Senate Organization pursuant to Senate Rule 46(2)(c)",2024-02-08T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-06-06T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-12-22T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Drake added as a coauthor,2023-03-30T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Dittrich,2023-10-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-28T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Green,2023-06-16T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to calendar of 5-17-2023 pursuant to Assembly Rule 45 (1),2023-05-15T05:00:00+00:00,['referral'],WI,2023 +Fiscal estimate received,2023-05-23T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-09-27T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-02-20T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-10-26T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-04T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-15T06:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2023-04-17T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-08T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-10-12T05:00:00+00:00,['withdrawal'],WI,2023 +Representative Ortiz-Velez withdrawn as a coauthor,2024-01-24T06:00:00+00:00,['withdrawal'],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-10T05:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Stafsholt,2023-12-18T06:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Adopted,2023-05-17T05:00:00+00:00,['passage'],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-10-11T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a coauthor,2023-05-17T05:00:00+00:00,[],WI,2023 +Adopted,2023-06-21T05:00:00+00:00,['passage'],WI,2023 +Representative O'Connor added as a cosponsor,2024-01-18T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Schutt added as a coauthor,2023-12-08T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-14T05:00:00+00:00,['receipt'],WI,2023 +Representative Emerson withdrawn as a coauthor,2024-02-01T06:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2024-01-23T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-23T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-03-08T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-04-23T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative Plumer withdrawn as a coauthor,2023-10-11T05:00:00+00:00,['withdrawal'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Tranel,2023-05-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-15T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Tittl,2023-12-12T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2023-03-21T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-30T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Senator Hutton added as a coauthor,2023-03-16T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-08T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Andraca added as a cosponsor,2023-02-28T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 4-19-2023 pursuant to Senate Rule 18(1),2023-04-17T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Binsfeld,2024-02-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a cosponsor,2023-05-04T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Assembly Amendment 1 offered by Representatives C. Anderson, Baldeh, Conley and Ratcliff",2023-11-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-12-07T06:00:00+00:00,[],WI,2023 +Senator Agard added as a coauthor,2023-12-14T06:00:00+00:00,[],WI,2023 +LRB correction,2023-05-10T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a cosponsor,2023-12-15T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-26T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-05T05:00:00+00:00,[],WI,2023 +Representative Summerfield added as a cosponsor,2024-01-02T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-04-23T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2023-12-22T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Allen added as a cosponsor,2023-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Stafsholt,2024-02-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Representative Billings added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Marklein,2023-09-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +"Report without recommendation pursuant to s. 227.26 (2)(h), Wisconsin Statutes",2023-03-14T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Nedweski,2023-10-31T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Kitchens added as a coauthor,2024-02-12T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-03-08T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-08-23T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-02-28T06:00:00+00:00,[],WI,2023 +LRB correction,2023-11-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-05-31T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 offered by Senator Ballweg,2023-10-17T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-26T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-10T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-09-06T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2023-05-30T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-23T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Wanggaard,2024-02-02T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-07-27T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-09T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-20T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-08-22T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-04-25T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Knodl added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-16T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-12T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Hurd,2023-10-05T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Larson added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-21T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Andraca added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Palmeri added as a coauthor,2024-03-11T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-31T05:00:00+00:00,['receipt'],WI,2023 +Representative Ohnstad added as a coauthor,2024-04-15T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-03-03T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-05-01T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-31T05:00:00+00:00,['receipt'],WI,2023 +Representative Goyke added as a cosponsor,2024-02-27T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Representatives Billings and Madison added as cosponsors,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 offered by Senator Jagler,2024-02-12T06:00:00+00:00,[],WI,2023 +Senator Larson added as a coauthor,2023-04-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Stroebel,2024-02-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-21T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Ballweg added as a coauthor,2023-04-20T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-05-21T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Tranel added as a coauthor,2024-02-16T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-23T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 2",2024-01-25T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Murphy withdrawn as a cosponsor,2023-06-23T05:00:00+00:00,['withdrawal'],WI,2023 +Placed on calendar 4-18-2023 by Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-05-30T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a coauthor,2023-10-13T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-18T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-06T06:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Vining added as a cosponsor,2024-04-04T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-14T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-07T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2023-12-12T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Andraca added as a coauthor,2024-03-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-27T05:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Emerson added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-04-25T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-19T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-10T06:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Allen added as a coauthor,2024-02-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-28T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-28T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-17T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-30T06:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-29T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Representative Tusler added as a coauthor,2023-11-29T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-08T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-21T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Bare added as a coauthor,2024-04-30T05:00:00+00:00,[],WI,2023 +Representatives Binsfeld and Michalski added as cosponsors,2023-02-01T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Schutt added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-02-21T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson withdrawn as a coauthor,2024-01-30T06:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-12T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-09-27T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-15T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-25T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-01T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Ratcliff added as a coauthor,2024-01-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-06-20T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-01T06:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a coauthor,2023-02-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-06T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2023-12-04T06:00:00+00:00,[],WI,2023 +Representative Donovan added as a coauthor,2023-01-26T06:00:00+00:00,[],WI,2023 +Senator Knodl added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Novak,2024-02-09T06:00:00+00:00,[],WI,2023 +LRB correction,2023-10-17T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +LRB correction,2023-09-27T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-16T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-12T05:00:00+00:00,[],WI,2023 +Representative Palmeri added as a cosponsor,2023-12-21T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Billings added as a cosponsor,2023-06-20T05:00:00+00:00,[],WI,2023 +Placed on calendar 4-19-2023 pursuant to Senate Rule 18(1),2023-04-17T05:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-19T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-29T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-20T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-16T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-05-13T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2024-02-06T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-12-12T06:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Feyen,2024-02-09T06:00:00+00:00,[],WI,2023 +Representative Clancy added as a cosponsor,2023-05-04T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-10T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Ohnstad added as a coauthor,2024-04-15T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Representatives Andraca and Clancy added as cosponsors,2023-10-27T05:00:00+00:00,[],WI,2023 +Representative Vining added as a cosponsor,2024-03-01T06:00:00+00:00,[],WI,2023 +Representative Knodl added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-02T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Shelton added as a coauthor,2024-04-15T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative O'Connor added as a cosponsor,2023-04-13T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-04-29T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Neubauer added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Cabrera added as a coauthor,2024-02-05T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-23T06:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2023-08-29T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-04T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-12-13T06:00:00+00:00,[],WI,2023 +Representative Ohnstad withdrawn as a coauthor,2023-10-23T05:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2024-03-11T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-07-10T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-10-31T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-20T05:00:00+00:00,[],WI,2023 +Representatives Joers and Jacobson added as cosponsors,2024-02-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a coauthor,2023-08-09T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-05T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-14T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-23T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-16T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-18T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Senator Testin added as a cosponsor,2023-10-18T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-09-08T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-31T05:00:00+00:00,['receipt'],WI,2023 +Representative Steffen added as a coauthor,2024-01-26T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Hutton,2024-01-29T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Senator Knodl added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-27T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-03-02T06:00:00+00:00,['receipt'],WI,2023 +Representative Brooks added as a coauthor,2024-01-26T06:00:00+00:00,[],WI,2023 +Representative Bodden added as a coauthor,2023-12-06T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-07-18T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-03-16T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-03-06T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-23T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-13T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-25T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Tomczyk,2023-04-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-06T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-06T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Snodgrass added as a coauthor,2023-12-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Green added as a coauthor,2024-01-18T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-11T05:00:00+00:00,[],WI,2023 +Representative Clancy added as a coauthor,2023-08-30T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-09T06:00:00+00:00,['receipt'],WI,2023 +Senator Ballweg added as a cosponsor,2023-10-11T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Representative Clancy added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Referred to calendar of 5-17-2023 pursuant to Assembly Rule 45 (1),2023-05-15T05:00:00+00:00,['referral'],WI,2023 +Public hearing held,2023-09-28T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-05T05:00:00+00:00,['receipt'],WI,2023 +Representative Billings added as a cosponsor,2023-11-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-06T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 1-17-2023 pursuant to Senate Rule 18(1),2023-01-13T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Representative Macco added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Placed on calendar 4-19-2023 pursuant to Senate Rule 18(1),2023-04-17T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-05-30T05:00:00+00:00,[],WI,2023 +"Representatives Brandtjen, Allen and Schraa added as cosponsors",2024-02-14T06:00:00+00:00,[],WI,2023 +"Adopted, Ayes 22, Noes 11",2023-09-14T05:00:00+00:00,['passage'],WI,2023 +Public hearing held,2024-01-23T06:00:00+00:00,[],WI,2023 +Representative Bodden added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-29T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-03T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Withdrawn from joint committee on Finance and referred to committee on State Affairs pursuant to Assembly Rule 42 (3)(c),2023-10-18T05:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-03-07T06:00:00+00:00,['receipt'],WI,2023 +Representative Snodgrass added as a coauthor,2023-10-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-21T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-04-18T05:00:00+00:00,['withdrawal'],WI,2023 +Adopted,2023-04-18T05:00:00+00:00,['passage'],WI,2023 +Representative Riemer added as a cosponsor,2023-06-22T05:00:00+00:00,[],WI,2023 +Representative Palmeri added as a cosponsor,2023-10-23T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +LRB correction,2023-11-15T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a coauthor,2023-12-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-03-19T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Representative Knodl added as a coauthor,2023-03-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-01-03T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-29T05:00:00+00:00,[],WI,2023 +Representative Moses added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Emerson and Tittl added as cosponsors,2023-02-01T06:00:00+00:00,[],WI,2023 +Representative Goeben added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Tomczyk,2023-05-22T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-03-03T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative O'Connor added as a coauthor,2023-06-07T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Hurd,2024-01-23T06:00:00+00:00,[],WI,2023 +Representative Mursau added as a coauthor,2023-05-02T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-24T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-31T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-04T06:00:00+00:00,['receipt'],WI,2023 +Senator Felzkowski added as a coauthor,2023-07-27T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-12-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-06T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-23T05:00:00+00:00,[],WI,2023 +Representative Clancy added as a cosponsor,2023-12-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-20T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 1-17-2023 pursuant to Senate Rule 18(1),2023-01-13T06:00:00+00:00,[],WI,2023 +Adopted,2024-02-22T06:00:00+00:00,['passage'],WI,2023 +Senator Spreitzer added as a cosponsor,2023-11-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-04-25T05:00:00+00:00,['withdrawal'],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-10-19T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Representative Conley added as a cosponsor,2023-11-01T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Adopted,2024-01-25T06:00:00+00:00,['passage'],WI,2023 +Public hearing held,2023-03-14T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Kitchens added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +"Assembly Amendment 1 offered by Representatives Michalski, Joers and Emerson",2023-11-01T05:00:00+00:00,[],WI,2023 +Representative Rettinger added as a coauthor,2023-05-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-24T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2023-10-30T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-02T05:00:00+00:00,['receipt'],WI,2023 +Representative Neubauer added as a coauthor,2023-12-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-09-26T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-06-21T05:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2024-01-12T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-22T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a coauthor,2023-10-23T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-11-03T05:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2023-06-13T05:00:00+00:00,[],WI,2023 +Adopted,2024-02-22T06:00:00+00:00,['passage'],WI,2023 +Executive action taken,2023-05-31T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Palmeri added as a coauthor,2023-04-21T05:00:00+00:00,[],WI,2023 +Senator Carpenter added as a cosponsor,2023-03-15T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-11T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Senator Knodl added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Ohnstad added as a coauthor,2024-04-15T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-19T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-15T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Bodden added as a coauthor,2023-03-13T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-06T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-11-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-30T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +LRB correction,2024-01-24T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-06-19T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-06T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Representatives Wichgers and Schraa added as coauthors,2023-06-06T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-08T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Shelton added as a coauthor,2024-04-15T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-23T05:00:00+00:00,['receipt'],WI,2023 +Representative Ortiz-Velez withdrawn as a coauthor,2023-03-29T05:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-30T05:00:00+00:00,[],WI,2023 +Representative Kitchens added as a cosponsor,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-03-16T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Stubbs added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2023-05-18T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-08T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-10T05:00:00+00:00,['receipt'],WI,2023 +Representative Nedweski added as a coauthor,2023-12-21T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-12-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-05-17T05:00:00+00:00,['withdrawal'],WI,2023 +Representative Madison added as a cosponsor,2023-05-04T05:00:00+00:00,[],WI,2023 +Representative Macco added as a cosponsor,2023-12-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Cowles added as a coauthor,2024-01-09T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-12T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senators Wimberger and Cowles,2023-06-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Tomczyk,2024-02-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-30T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-09T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2023-05-10T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-03T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Senator Larson added as a coauthor,2023-09-27T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Senator Testin added as a coauthor,2023-10-03T05:00:00+00:00,[],WI,2023 +Representative Plumer added as a cosponsor,2023-10-18T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-31T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Representative Schmidt added as a coauthor,2023-05-10T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-09-28T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-01T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Neubauer added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-08-09T05:00:00+00:00,[],WI,2023 +Representative Conley added as a coauthor,2023-02-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 4-19-2023 pursuant to Senate Rule 18(1),2023-04-17T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-11T05:00:00+00:00,['receipt'],WI,2023 +Senator Roys added as a coauthor,2023-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Ballweg,2023-07-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-08-15T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +LRB correction,2023-12-04T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Moses,2023-12-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Clancy added as a cosponsor,2023-02-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Senator Knodl added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-17T05:00:00+00:00,['receipt'],WI,2023 +Representative Palmeri added as a coauthor,2023-05-19T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Senator Testin added as a cosponsor,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-10T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Brooks added as a coauthor,2023-08-30T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-23T05:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Wanggaard,2024-01-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-16T06:00:00+00:00,['receipt'],WI,2023 +Representative Clancy added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-05-19T05:00:00+00:00,[],WI,2023 +Senator L. Johnson added as a coauthor,2023-02-22T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Cabral-Guevara,2024-01-23T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-12-14T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-16T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-11T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-23T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-25T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-10-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2024-01-08T06:00:00+00:00,[],WI,2023 +Senator Jacque added as a cosponsor,2024-01-19T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative VanderMeer added as a cosponsor,2023-11-13T06:00:00+00:00,[],WI,2023 +Housing report received pursuant to s. 13.099 (2) Wisconsin Statutes,2023-06-01T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Wichgers added as a coauthor,2023-05-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +"Move to call the question, Ayes 22, Noes 11",2023-06-28T05:00:00+00:00,[],WI,2023 +Representative Dittrich added as a cosponsor,2023-11-21T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Tomczyk,2024-01-22T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-03-29T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2024-01-29T06:00:00+00:00,['receipt'],WI,2023 +LRB correction,2023-10-11T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-20T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2023-11-06T06:00:00+00:00,[],WI,2023 +Representative Riemer added as a cosponsor,2024-02-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-04-21T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Moses added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Rozar,2023-10-23T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-02-28T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-06T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Rozar added as a cosponsor,2024-01-31T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-08-15T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a coauthor,2023-12-22T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Referred to joint survey committee on Tax Exemptions pursuant to s. 13.52 Wisconsin Statutes,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-11-15T06:00:00+00:00,[],WI,2023 +Representative Rettinger added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative VanderMeer,2023-12-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-12T05:00:00+00:00,['receipt'],WI,2023 +Senator Testin added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-22-2024 by Committee on Rules,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-16T05:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Knodl added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Krug,2023-11-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-31T05:00:00+00:00,['receipt'],WI,2023 +Senator Pfaff added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Haywood added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Senator Larson added as a coauthor,2024-01-29T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-05T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Senator Knodl added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-11T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-20T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Representative Rettinger added as a cosponsor,2023-05-04T05:00:00+00:00,[],WI,2023 +Representatives Schraa and Duchow added as coauthors,2023-04-11T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-15T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +Placed on calendar 4-25-2023 by Committee on Rules,2023-04-20T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-08-15T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-15T05:00:00+00:00,[],WI,2023 +Placed on calendar 4-25-2023 by Committee on Rules,2023-04-20T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-04T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-26T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Clancy added as a coauthor,2023-10-03T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Goeben,2023-11-07T06:00:00+00:00,[],WI,2023 +Senator Knodl added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Joers added as a coauthor,2023-06-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-05-24T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Wanggaard,2024-02-02T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Brooks,2023-10-12T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-11-30T06:00:00+00:00,[],WI,2023 +LRB correction,2023-09-12T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2023-06-06T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-07-14T05:00:00+00:00,[],WI,2023 +Representative Cabrera added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-11T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2023-06-01T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-06T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2023-10-11T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-12T06:00:00+00:00,['receipt'],WI,2023 +Senator Tomczyk added as a coauthor,2023-10-25T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Stroebel,2024-01-29T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Kitchens added as a cosponsor,2024-01-04T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-24T05:00:00+00:00,['receipt'],WI,2023 +Representative Wichgers added as a coauthor,2023-09-06T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-30T06:00:00+00:00,['receipt'],WI,2023 +LRB correction,2023-09-25T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Stubbs added as a coauthor,2023-10-13T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Shankland added as a coauthor,2023-10-11T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-09-28T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Stroebel,2024-02-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +LRB correction,2023-10-09T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-06-21T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-16T06:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a coauthor,2023-08-22T05:00:00+00:00,[],WI,2023 +"Adopted, Ayes 95, Noes 0",2023-10-12T05:00:00+00:00,['passage'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Marklein,2023-05-22T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-21T05:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2024-01-05T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-11T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-04-08T05:00:00+00:00,['receipt'],WI,2023 +Senator Hutton withdrawn as a cosponsor,2023-06-13T05:00:00+00:00,['withdrawal'],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2024-01-24T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Representative Andraca added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Representative Clancy added as a coauthor,2023-02-15T06:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2023-09-12T05:00:00+00:00,[],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-04-03T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-02-16T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-26T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-21T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Gustafson,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Adopted,2023-03-14T05:00:00+00:00,['passage'],WI,2023 +Representative Brandtjen added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-02T05:00:00+00:00,['receipt'],WI,2023 +Senator Felzkowski added as a coauthor,2023-04-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-16T05:00:00+00:00,['receipt'],WI,2023 +"Representatives McGuire, Baldeh, Haywood, Myers, Stubbs, Moore Omokunde and Madison added as coauthors",2023-06-20T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-23T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Testin,2024-01-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-04T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-10T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-26T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-04-15T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Representative Joers added as a cosponsor,2023-06-09T05:00:00+00:00,[],WI,2023 +Senator Knodl added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-12-05T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-23T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-27T06:00:00+00:00,['receipt'],WI,2023 +LRB correction,2023-10-10T05:00:00+00:00,[],WI,2023 +Representative Conley added as a coauthor,2023-04-18T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-30T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Hurd,2024-02-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-29T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Maxey added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-12-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-27T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-15T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Wittke,2024-02-07T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Rozar,2024-02-06T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-02-16T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Representative Behnke withdrawn as a coauthor,2024-01-25T06:00:00+00:00,['withdrawal'],WI,2023 +Representative Michalski added as a coauthor,2023-04-11T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-07-31T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Palmeri and Macco added as cosponsors,2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Snodgrass added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-06T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-03-06T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +"Representatives Rodriguez, Murphy, Brandtjen, Mursau and Subeck added as coauthors",2023-11-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Senator Roys withdrawn as a cosponsor,2023-09-14T05:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-08-08T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-14T05:00:00+00:00,['receipt'],WI,2023 +Representative Doyle added as a coauthor,2023-06-12T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-14T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Palmeri added as a coauthor,2023-05-19T05:00:00+00:00,[],WI,2023 +Representative Maxey added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-11T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Representative Moses added as a cosponsor,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Green added as a cosponsor,2023-12-28T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-09T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-03-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Gustafson,2024-01-29T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Billings added as a coauthor,2023-10-19T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Ballweg,2023-11-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-15T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-08T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Representatives Jacobson and Palmeri added as coauthors,2023-12-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-04-03T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-26T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Zimmerman,2024-02-02T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-24T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Adopted,2023-11-09T06:00:00+00:00,['passage'],WI,2023 +Representative Rettinger added as a coauthor,2023-10-11T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-08-09T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senators Hutton and Pfaff,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-03-03T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Representatives Brandtjen and Rettinger added as coauthors,2023-10-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Clancy added as a coauthor,2023-10-27T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Representative Madison added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-10-30T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-10T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-13T05:00:00+00:00,['receipt'],WI,2023 +Representative Knodl added as a cosponsor,2023-03-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-05-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Representative Armstrong added as a cosponsor,2023-03-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a cosponsor,2023-10-30T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-25T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-11T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Knodl added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-01T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-03T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 9-14-2023 by Committee on Rules,2023-09-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-23T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-10T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives O'Connor and Shankland added as cosponsors,2023-05-17T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-26T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Bare added as a coauthor,2023-03-20T05:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a coauthor,2023-03-20T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-04-04T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Adopted,2023-03-14T05:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2024-02-01T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Hutton,2023-11-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-05-17T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-09T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Bodden added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Kitchens added as a coauthor,2024-02-12T06:00:00+00:00,[],WI,2023 +Representative Doyle added as a cosponsor,2023-03-16T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-05T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-26T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Pfaff added as a coauthor,2023-03-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Vos,2023-05-10T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2023-10-30T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Representatives Clancy and Madison added as cosponsors,2023-05-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-14T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-06-08T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Maxey added as a coauthor,2023-11-16T06:00:00+00:00,[],WI,2023 +Representative Schutt added as a cosponsor,2024-02-09T06:00:00+00:00,[],WI,2023 +Representative Palmeri added as a coauthor,2023-04-27T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-16T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-03-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-06-13T05:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Melotik added as a cosponsor,2023-10-13T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +Representative Palmeri added as a coauthor,2023-05-19T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-09-12T05:00:00+00:00,['withdrawal'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Representatives Vining and Emerson added as coauthors,2023-11-30T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-09T06:00:00+00:00,['receipt'],WI,2023 +Senator Carpenter added as a coauthor,2023-03-16T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-24T05:00:00+00:00,['receipt'],WI,2023 +Representative Joers added as a coauthor,2023-07-13T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-06-21T05:00:00+00:00,['withdrawal'],WI,2023 +Senator Spreitzer added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Senator Felzkowski added as a coauthor,2024-01-11T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-09-12T05:00:00+00:00,['withdrawal'],WI,2023 +Representative C. Anderson added as a coauthor,2023-03-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Representative Binsfeld added as a coauthor,2023-04-04T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-09-27T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-06T06:00:00+00:00,['receipt'],WI,2023 +Senator Testin added as a coauthor,2024-01-18T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Clancy added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Representative Palmeri added as a cosponsor,2023-08-24T05:00:00+00:00,[],WI,2023 +Representatives Subeck and Stubbs added as cosponsors,2023-02-22T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Representative Knodl added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +Representative Kurtz added as a coauthor,2023-10-18T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-10-12T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-06-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Testin,2023-10-23T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-16T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-08-30T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-05T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-04-25T05:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-04-11T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Bare added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-06T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a coauthor,2023-10-23T05:00:00+00:00,[],WI,2023 +Representatives Knodl and Bare added as coauthors,2023-03-23T05:00:00+00:00,[],WI,2023 +Senator Larson added as a coauthor,2024-01-31T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-28T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-03-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-07T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-23T05:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-03-16T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-20T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-09T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-11T05:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Representative Schraa added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Representative C. Anderson added as a coauthor,2023-03-01T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-31T05:00:00+00:00,[],WI,2023 +Representative Kitchens added as a cosponsor,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Schutt added as a coauthor,2024-02-09T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-13T06:00:00+00:00,['withdrawal'],WI,2023 +Public hearing held,2024-01-25T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Representative C. Anderson added as a cosponsor,2023-12-05T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-22T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-11-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Tusler added as a cosponsor,2024-04-01T05:00:00+00:00,[],WI,2023 +Representative Brandtjen added as a coauthor,2024-01-23T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative O'Connor added as a coauthor,2024-01-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-07-11T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-08-15T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-11-16T06:00:00+00:00,[],WI,2023 +Representative Mursau added as a coauthor,2023-10-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Adopted,2023-01-17T06:00:00+00:00,['passage'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Wichgers added as a cosponsor,2023-02-28T06:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Adopted,2024-02-20T06:00:00+00:00,['passage'],WI,2023 +Public hearing held,2023-05-23T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Wanggaard,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-03T05:00:00+00:00,[],WI,2023 +Representative Shankland added as a cosponsor,2024-01-18T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-18T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Baldeh added as a coauthor,2023-05-23T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Tomczyk,2024-01-23T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-05T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary, Ayes 5, Noes 2",2023-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Kurtz,2023-05-05T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-25T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 9, Noes 4",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Ratcliff added as a coauthor,2023-12-15T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representatives Clancy and Madison,2023-10-17T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Brandtjen added as a coauthor,2024-01-23T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-06-13T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 4, Noes 3",2023-05-31T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Jacobson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-10T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Consumer Protection, Ayes 7, Noes 0",2023-12-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-05-23T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Larson added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Licensing, Constitution and Federalism, Ayes 3, Noes 2",2023-10-09T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Considine added as a coauthor,2023-04-05T05:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +Representative Edming added as a cosponsor,2023-10-09T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-01T05:00:00+00:00,['receipt'],WI,2023 +Representative Baldeh added as a coauthor,2023-05-23T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-03T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary, Ayes 7, Noes 0",2023-03-24T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-07T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Licensing, Constitution and Federalism, Ayes 5, Noes 0",2023-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Stubbs added as a coauthor,2023-06-05T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-26T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-09T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Felzkowski,2024-02-01T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Colleges and Universities, Ayes 10, Noes 4",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Family Law, Ayes 8, Noes 0",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 7, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-10-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Rozar added as a cosponsor,2023-07-17T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Adopted,2023-05-17T05:00:00+00:00,['passage'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-14T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Adopted,2023-06-28T05:00:00+00:00,['passage'],WI,2023 +Representative Haywood added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Krug,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative Joers withdrawn as a cosponsor,2024-02-13T06:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2023-05-12T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-10-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +LRB correction,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-07-18T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Knodl,2024-02-06T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Senator L. Johnson withdrawn as a coauthor,2023-10-19T05:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-06-13T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-25T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-03T06:00:00+00:00,['receipt'],WI,2023 +Representative Rozar added as a coauthor,2023-10-25T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-07T06:00:00+00:00,['deferral'],WI,2023 +Senator Cowles added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Senator Wanggaard added as a coauthor,2023-03-14T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-11-16T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-06-21T05:00:00+00:00,['reading-3'],WI,2023 +Public hearing held,2023-06-13T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2023-07-18T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-10T05:00:00+00:00,['receipt'],WI,2023 +Representatives Vining and Tranel added as cosponsors,2024-01-12T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-11-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Representatives Palmeri and Subeck added as coauthors,2023-10-11T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-01T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-09-27T05:00:00+00:00,['receipt'],WI,2023 +Representative Andraca added as a cosponsor,2023-02-28T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-29T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-02-16T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Adopted,2023-06-21T05:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Adopted,2023-03-14T05:00:00+00:00,['passage'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Representative Palmeri added as a coauthor,2023-04-10T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Moses added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Adopted,2023-03-14T05:00:00+00:00,['passage'],WI,2023 +Executive action taken,2023-11-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-12T05:00:00+00:00,[],WI,2023 +Representative Knodl added as a cosponsor,2023-03-17T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Senator Agard added as a cosponsor,2023-03-27T05:00:00+00:00,[],WI,2023 +Senator Hutton added as a cosponsor,2023-03-28T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-15T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Adopted,2024-02-13T06:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 offered by Senator Marklein,2024-02-05T06:00:00+00:00,[],WI,2023 +Representative Baldeh withdrawn as a cosponsor,2023-04-25T05:00:00+00:00,['withdrawal'],WI,2023 +Representative Ratcliff added as a cosponsor,2023-08-29T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2023-05-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-09-26T05:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2023-09-06T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-06T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-07-14T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-19T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-23T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Executive action taken,2023-11-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-02T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Senator Quinn added as a coauthor,2023-02-16T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-03T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-20T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Cabral-Guevara added as a coauthor,2023-11-02T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Zimmerman,2024-01-24T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +"Representatives Cabrera, C. Anderson and Haywood added as cosponsors",2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Magnafici added as a coauthor,2023-05-30T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-10-03T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-16T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 5, Noes 3",2023-06-01T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 offered by Senator Felzkowski,2023-04-25T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-04-13T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +Adopted,2024-02-20T06:00:00+00:00,['passage'],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Joers added as a coauthor,2023-12-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Representative Green withdrawn as a coauthor,2023-12-08T06:00:00+00:00,['withdrawal'],WI,2023 +Representative O'Connor withdrawn as a coauthor,2024-02-29T06:00:00+00:00,['withdrawal'],WI,2023 +Representative Madison withdrawn as a cosponsor,2023-12-12T06:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +"Joint Committee for Review of Administrative Rules report received pursuant to s. 227.26(2)(g), Wisconsin Statutes",2023-05-31T05:00:00+00:00,['receipt'],WI,2023 +Representative Steffen added as a cosponsor,2023-09-07T05:00:00+00:00,[],WI,2023 +Representative Bare added as a cosponsor,2023-09-29T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-12T05:00:00+00:00,[],WI,2023 +Representative VanderMeer added as a coauthor,2023-05-22T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Dallman,2024-01-24T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Quinn,2023-12-12T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-06T05:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2023-11-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Representative Joers added as a coauthor,2023-05-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Representative Moore Omokunde added as a cosponsor,2024-01-24T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-20T05:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 offered by Senator Knodl,2023-10-30T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-12-06T06:00:00+00:00,['receipt'],WI,2023 +Representative Joers added as a coauthor,2023-08-21T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-17T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 14, Noes 1",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-12-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Doyle added as a coauthor,2023-04-11T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 2 offered by Representative Goeben,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Colleges and Universities, Ayes 10, Noes 4",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-12T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 11, Noes 5",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2023-04-13T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2023-06-21T05:00:00+00:00,['reading-2'],WI,2023 +Senator Felzkowski added as a cosponsor,2023-09-07T05:00:00+00:00,[],WI,2023 +Representative Bodden added as a coauthor,2023-10-05T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-12T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Riemer added as a coauthor,2023-03-17T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-10-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-09-20T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-09-19T05:00:00+00:00,[],WI,2023 +Adopted,2023-09-14T05:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Agard added as a coauthor,2023-09-13T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Representative Billings added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +"Report adoption recommended by Committee on Judiciary, Ayes 5, Noes 1",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative VanderMeer,2024-01-23T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-02-22T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-26T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 2",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Senator Agard added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2023-06-06T05:00:00+00:00,['receipt'],WI,2023 +Representative Tranel added as a cosponsor,2023-10-26T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 8, Noes 0",2023-03-16T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on the table,2023-11-07T06:00:00+00:00,['deferral'],WI,2023 +Representatives Rozar and Tranel added as coauthors,2023-10-25T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-06-15T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-17T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-08-09T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-23T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Bare added as a coauthor,2023-09-14T05:00:00+00:00,[],WI,2023 +LRB correction,2023-11-09T06:00:00+00:00,[],WI,2023 +Adopted,2024-02-13T06:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-05-03T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Wanggaard,2023-05-01T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-03T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-03-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-16T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a cosponsor,2024-03-15T05:00:00+00:00,[],WI,2023 +"Senators Spreitzer, Agard and Carpenter added as coauthors",2024-02-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-30T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-08-09T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-12T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Adopted,2023-09-12T05:00:00+00:00,['passage'],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Representative Cabrera added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Allen added as a cosponsor,2024-02-06T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Veterans and Military Affairs, Ayes 13, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Adopted,2023-09-12T05:00:00+00:00,['passage'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Tomczyk,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2023-06-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Committee on Campaigns and Elections,2023-10-03T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2023-09-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Gustafson,2023-06-12T05:00:00+00:00,[],WI,2023 +Senator Carpenter added as a cosponsor,2023-09-13T05:00:00+00:00,[],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-03-24T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 12, Noes 0",2023-10-05T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-02T06:00:00+00:00,['receipt'],WI,2023 +Representative Steffen added as a cosponsor,2024-02-09T06:00:00+00:00,[],WI,2023 +Representative Murphy added as a coauthor,2023-05-16T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-01-22T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Adopted,2023-04-25T05:00:00+00:00,['passage'],WI,2023 +Fiscal estimate received,2023-12-21T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2024-03-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-09-28T05:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a cosponsor,2023-08-10T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Callahan,2024-01-29T06:00:00+00:00,[],WI,2023 +Representatives Plumer and Conley added as coauthors,2024-01-18T06:00:00+00:00,[],WI,2023 +Representative Bare added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a cosponsor,2024-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Emerson added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a coauthor,2023-12-07T06:00:00+00:00,[],WI,2023 +"Senate Substitute Amendment 1 offered by Senators Agard, Smith, Larson, Hesselbein, Carpenter, Roys, Pfaff, Spreitzer, Taylor, Wirch and L. Johnson",2023-01-17T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Clancy added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Adopted,2023-04-19T05:00:00+00:00,['passage'],WI,2023 +Executive action taken,2024-01-05T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-07T06:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2023-11-07T06:00:00+00:00,['deferral'],WI,2023 +Fiscal estimate received,2023-04-12T05:00:00+00:00,['receipt'],WI,2023 +Adopted,2023-04-18T05:00:00+00:00,['passage'],WI,2023 +Ordered immediately messaged,2023-04-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-30T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Wimberger,2023-09-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-31T05:00:00+00:00,['receipt'],WI,2023 +Withdrawn from committee on Agriculture and Tourism and rereferred to committee on Financial Institutions and Sporting Heritage pursuant to Senate Rule 46(2)(c),2024-02-27T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-01-03T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-29T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-23T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 10, Noes 5",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2023-10-24T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Testin,2024-02-02T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Financial Institutions, Ayes 10, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-01-23T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Dallman,2024-01-23T06:00:00+00:00,[],WI,2023 +Representative Magnafici added as a cosponsor,2023-12-05T06:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a cosponsor,2023-08-10T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-12-15T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Tomczyk,2023-09-21T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-02-22T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Ratcliff added as a coauthor,2023-10-23T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Palmeri added as a cosponsor,2024-03-11T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Tittl,2023-05-26T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Representatives Subeck and Rozar added as coauthors,2024-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Snodgrass added as a cosponsor,2023-10-03T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-21T05:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2024-01-19T06:00:00+00:00,['receipt'],WI,2023 +Representative Andraca added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representatives Clancy and Madison added as coauthors,2023-04-25T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Adopted,2023-04-25T05:00:00+00:00,['passage'],WI,2023 +"Report passage recommended by Committee on Sporting Heritage, Ayes 7, Noes 4",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Rettinger added as a cosponsor,2023-05-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Representative Macco added as a coauthor,2023-09-06T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Rozar added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-17T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-06-07T05:00:00+00:00,['withdrawal'],WI,2023 +Representative Brandtjen added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-10-16T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 8, Noes 0",2023-03-16T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-08-15T05:00:00+00:00,[],WI,2023 +Senator Roys withdrawn as a cosponsor,2023-05-09T05:00:00+00:00,['withdrawal'],WI,2023 +Representative Ratcliff added as a cosponsor,2023-08-29T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-27T05:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Marklein,2024-01-18T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-13T05:00:00+00:00,[],WI,2023 +Senator Knodl added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senators Cabral-Guevara and Hesselbein,2024-01-09T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-25T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Donovan,2023-11-08T06:00:00+00:00,[],WI,2023 +"Representatives Sinicki, Vining and Zimmerman added as cosponsors",2023-10-19T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-05T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-24T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2023-12-07T06:00:00+00:00,[],WI,2023 +Adopted,2023-04-19T05:00:00+00:00,['passage'],WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2023-08-22T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-31T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Tomczyk,2024-01-02T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-19T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2023-07-18T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-02-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Adopted, Ayes 67, Noes 31",2024-01-25T06:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Andraca added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-05T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Brooks,2023-10-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-30T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-06-08T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-02T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-25T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Tomczyk,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Kitchens added as a coauthor,2023-03-31T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage recommended by Committee on Housing and Real Estate, Ayes 14, Noes 1",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-05T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-03T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +LRB correction,2023-10-16T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-15T06:00:00+00:00,[],WI,2023 +Placed on calendar 4-19-2023 pursuant to Senate Rule 18(1),2023-04-17T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2023-09-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-05T06:00:00+00:00,[],WI,2023 +Representative Bodden added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Moses added as a coauthor,2023-06-08T05:00:00+00:00,[],WI,2023 +Representative Murphy added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-11-07T06:00:00+00:00,[],WI,2023 +Adopted,2023-11-14T06:00:00+00:00,['passage'],WI,2023 +Representative Jacobson added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Representative Duchow added as a coauthor,2023-10-27T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Allen added as a coauthor,2023-04-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-08T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-22T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Vining added as a coauthor,2023-04-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Kurtz,2023-05-18T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-10-03T05:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representatives Callahan and Gustafson added as coauthors,2023-10-16T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Plumer,2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a cosponsor,2023-03-20T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Substitute Amendment 2 offered by Senator Stroebel,2024-02-07T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-02T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Feyen,2023-12-21T06:00:00+00:00,[],WI,2023 +Senator Larson added as a cosponsor,2023-04-24T05:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Representative Jacobson added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Sporting Heritage, Ayes 8, Noes 4",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Stafsholt,2023-07-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-04T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-10-16T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 12, Noes 0",2023-10-05T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator L. Johnson added as a cosponsor,2023-10-11T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Family Law, Ayes 6, Noes 3",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-03T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-01-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representatives Sinicki and Subeck withdrawn as coauthors,2024-02-05T06:00:00+00:00,[],WI,2023 +Representative Green added as a coauthor,2024-01-18T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-22T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-10-13T05:00:00+00:00,[],WI,2023 +Representative Stubbs added as a cosponsor,2023-03-30T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-14T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Labor and Integrated Employment, Ayes 8, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Adopted,2023-06-21T05:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-09T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-05T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-12-28T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-02-20T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 offered by Senator Stafsholt,2023-06-22T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Maxey added as a coauthor,2024-01-31T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Shankland added as a coauthor,2023-09-15T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Sporting Heritage, Ayes 8, Noes 4",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-03-11T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Pronschinske,2024-01-29T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2024-01-12T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-05T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-27T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-14T05:00:00+00:00,['receipt'],WI,2023 +Representative Summerfield added as a coauthor,2024-01-02T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-10T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended and taken up,2023-03-22T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary, Ayes 6, Noes 1",2023-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-19T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-06T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-20T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-27T05:00:00+00:00,['receipt'],WI,2023 +Representative Wichgers added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on State Affairs, Ayes 11, Noes 0",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Representative Knodl added as a cosponsor,2023-03-17T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-11-15T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Novak,2024-02-07T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-10-12T05:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-05-23T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Representative Tusler withdrawn as a coauthor,2023-10-13T05:00:00+00:00,['withdrawal'],WI,2023 +Representative Brandtjen added as a coauthor,2023-04-11T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-21T05:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Joers added as a cosponsor,2023-08-18T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-16T05:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-27T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Adopted,2023-10-17T05:00:00+00:00,['passage'],WI,2023 +Representative Jacobson added as a cosponsor,2023-12-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Armstrong added as a cosponsor,2024-01-26T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-09T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-04-02T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-07-20T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Tranel,2023-10-31T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-29T06:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a coauthor,2023-11-15T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-07-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2024-03-04T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Cabral-Guevara,2024-01-04T06:00:00+00:00,[],WI,2023 +Representative Conley added as a cosponsor,2023-02-16T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-05-22T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Schmidt added as a coauthor,2023-10-18T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption recommended by Committee on Government Operations, Ayes 3, Noes 2",2024-03-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 offered by Senator Feyen,2024-01-31T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-21T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Adopted,2024-02-20T06:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 3, Noes 2",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a cosponsor,2024-03-15T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +LRB correction,2023-09-25T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2024-02-21T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Wanggaard,2023-05-16T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-10-23T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Senator Marklein added as a coauthor,2023-04-26T05:00:00+00:00,[],WI,2023 +Representative Bare added as a coauthor,2024-04-30T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Billings added as a cosponsor,2023-09-28T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Stafsholt,2023-07-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-10T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Laid on table,2023-04-19T05:00:00+00:00,['deferral'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Joers added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Hurd,2024-02-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-21T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Government Operations, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-06-12T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Sortwell,2023-04-24T05:00:00+00:00,[],WI,2023 +Representative Kurtz added as a coauthor,2023-04-14T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Tomczyk,2023-05-23T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-10T05:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Krug,2023-11-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-13T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-11-16T06:00:00+00:00,[],WI,2023 +Representative Riemer added as a cosponsor,2023-03-17T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 10, Noes 5",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Representative Andraca added as a coauthor,2024-01-30T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-04-01T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-11T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-10-04T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-27T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-12-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption recommended by Committee on Government Operations, Ayes 3, Noes 2",2024-03-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-04-03T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Sortwell,2023-12-12T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-26T06:00:00+00:00,['receipt'],WI,2023 +"Report adoption recommended by Committee on State Affairs, Ayes 13, Noes 0",2024-01-30T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-10-09T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-09-05T05:00:00+00:00,[],WI,2023 +LRB correction,2023-05-10T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-08T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Housing report received pursuant to s. 13.099 (2) Wisconsin Statutes,2023-03-07T06:00:00+00:00,['receipt'],WI,2023 +Representatives Jacobson and Palmeri added as coauthors,2023-12-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 offered by Senator Knodl,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-18T06:00:00+00:00,[],WI,2023 +Representative Gundrum added as a cosponsor,2023-02-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Adopted,2024-02-20T06:00:00+00:00,['passage'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Palmeri added as a coauthor,2023-04-27T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Baldeh and Goyke added as coauthors,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +LRB correction,2024-02-09T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Testin,2024-01-24T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Testin added as a coauthor,2023-10-18T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2023-11-15T06:00:00+00:00,[],WI,2023 +Representative Clancy added as a coauthor,2023-02-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Shelton added as a cosponsor,2023-04-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-29T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Cabral-Guevara,2023-04-25T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-14T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Duchow added as a cosponsor,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-25T05:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Nedweski,2023-11-01T05:00:00+00:00,[],WI,2023 +Representative Green added as a cosponsor,2024-02-13T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-13T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-05-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Baldeh added as a coauthor,2023-12-12T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-16T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-23T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Cowles,2023-11-27T06:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2023-02-28T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-05T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Joint Committee for Review of Administrative Rules report received pursuant to s. 227.26(2)(g), Wisconsin Statutes",2023-05-31T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-27T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-08-15T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-10-24T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 2 offered by Senator Ballweg,2023-10-17T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-11-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-04-18T05:00:00+00:00,[],WI,2023 +Representative Magnafici added as a cosponsor,2023-05-30T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Laid on table,2023-04-19T05:00:00+00:00,['deferral'],WI,2023 +Representative Jacobson added as a cosponsor,2023-08-15T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-05T06:00:00+00:00,[],WI,2023 +Representative Green added as a cosponsor,2024-01-18T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2024-01-31T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-29T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-04T05:00:00+00:00,[],WI,2023 +Representative Joers added as a coauthor,2023-06-13T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Carpenter added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-11-06T06:00:00+00:00,[],WI,2023 +Referred to joint committee on Finance,2024-01-25T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-12-13T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-08T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2023-07-17T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Representatives Ohnstad and Haywood added as coauthors,2023-04-18T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-31T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-02-15T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-20T05:00:00+00:00,['receipt'],WI,2023 +"Representatives Schraa, VanderMeer, Joers and C. Anderson added as coauthors",2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-06T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-08T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-21T06:00:00+00:00,[],WI,2023 +Senator Knodl added as a coauthor,2023-06-28T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Senator Cabral-Guevara added as a cosponsor,2023-06-07T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-31T05:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-12-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-09-29T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Baldeh added as a coauthor,2023-05-23T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-12-05T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator James,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Representative Moore Omokunde added as a coauthor,2023-03-29T05:00:00+00:00,[],WI,2023 +Representatives Brooks and Donovan added as cosponsors,2023-01-11T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative Moses added as a coauthor,2024-01-11T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-31T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representatives Gustafson and Ratcliff added as coauthors,2023-11-13T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-19T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-15T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representatives Steffen and Sortwell added as coauthors,2023-11-30T06:00:00+00:00,[],WI,2023 +LRB correction,2024-01-16T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-03T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Stafsholt,2024-01-03T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2024-02-08T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Felzkowski,2023-10-05T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-20T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-06-21T05:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2024-02-02T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Bodden added as a coauthor,2023-03-13T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Cowles,2023-02-22T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-05T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Schraa and Sortwell added as coauthors,2023-11-01T05:00:00+00:00,[],WI,2023 +Representative Macco added as a coauthor,2023-06-21T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-01-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representatives Pronschinske and Andraca added as coauthors,2023-02-27T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Feyen,2023-11-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-13T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-06T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-06-21T05:00:00+00:00,['reading-2'],WI,2023 +"Report adoption recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-01-31T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Representative Bare added as a cosponsor,2023-03-20T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Representatives Nedweski and C. Anderson added as cosponsors,2023-11-13T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2023-10-09T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2024-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Adopted,2023-10-12T05:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-03-14T05:00:00+00:00,[],WI,2023 +"Report adoption recommended by Committee on Licensing, Constitution and Federalism, Ayes 3, Noes 2",2023-08-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-02T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Adopted,2023-03-22T05:00:00+00:00,['passage'],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +"Report adoption recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Haywood added as a coauthor,2023-11-22T06:00:00+00:00,[],WI,2023 +Representative Ortiz-Velez added as a cosponsor,2023-04-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-09T06:00:00+00:00,['receipt'],WI,2023 +Adopted,2023-06-07T05:00:00+00:00,['passage'],WI,2023 +Senator Larson added as a coauthor,2024-03-15T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-06-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-23T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-27T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-11T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a coauthor,2023-10-13T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator James,2023-11-09T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-11-30T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-05T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Murphy,2023-10-30T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-12T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary, Ayes 5, Noes 2",2023-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-09-05T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-12T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-16T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-11T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-04-18T05:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Representatives Haywood and C. Anderson added as coauthors,2023-03-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Drake added as a cosponsor,2023-03-30T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-11T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Snyder,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-11T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-13T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-09-01T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Swearingen,2024-02-06T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Government Operations, Ayes 3, Noes 2",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-08-09T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2023-08-28T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Adopted,2023-05-17T05:00:00+00:00,['passage'],WI,2023 +Representative C. Anderson added as a cosponsor,2023-03-16T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-30T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-22T05:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Stubbs added as a coauthor,2023-03-30T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-16T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-07-03T05:00:00+00:00,['receipt'],WI,2023 +"Report adoption recommended by Committee on Ways and Means, Ayes 7, Noes 4",2023-04-03T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Bodden,2023-12-18T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Adopted,2024-02-15T06:00:00+00:00,['passage'],WI,2023 +Senator Larson added as a cosponsor,2024-02-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-31T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-02-16T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-03-13T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-23T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Environment, Ayes 9, Noes 0",2023-11-01T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-11-15T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Kurtz,2023-06-12T05:00:00+00:00,[],WI,2023 +Adopted,2024-01-16T06:00:00+00:00,['passage'],WI,2023 +Fiscal estimate received,2023-11-13T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-08-01T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Kitchens,2023-06-15T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-21T05:00:00+00:00,['receipt'],WI,2023 +Senator Roys added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-08T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-04T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2023-05-30T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on State Affairs, Ayes 9, Noes 4",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative VanderMeer added as a cosponsor,2023-05-22T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-30T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-19T05:00:00+00:00,[],WI,2023 +Senator Tomczyk added as a cosponsor,2023-05-17T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-03-14T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-04-18T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Magnafici added as a cosponsor,2023-05-30T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Representative Conley added as a coauthor,2023-09-21T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Steffen,2023-11-08T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-18T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 3, Noes 2",2023-09-29T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Sporting Heritage, Ayes 11, Noes 1",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Emerson added as a coauthor,2023-10-18T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 4, Noes 3",2023-05-31T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 offered by Representatives Stubbs and Goeben,2024-01-22T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Cabral-Guevara,2024-02-26T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-17T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Sporting Heritage, Ayes 8, Noes 4",2023-12-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Referred to calendar of 5-17-2023 pursuant to Assembly Rule 45 (1),2023-05-15T05:00:00+00:00,['referral'],WI,2023 +Senate Amendment 1 offered by Senator Knodl,2024-02-19T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2024-01-18T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 14, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 offered by Senator Roys,2024-02-06T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2023-06-13T05:00:00+00:00,[],WI,2023 +LRB correction,2023-05-02T05:00:00+00:00,[],WI,2023 +Representatives Ratcliff and Stubbs withdrawn as coauthors,2023-04-13T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-12-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-18T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Schutt,2023-11-27T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-01-31T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-10-10T05:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Kitchens,2024-02-09T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Subeck,2023-10-09T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-12-22T06:00:00+00:00,[],WI,2023 +Representative Michalski added as a coauthor,2023-12-12T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a coauthor,2023-10-11T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2023-11-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-20T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-08-24T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-06-20T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-10T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Kitchens added as a cosponsor,2023-07-27T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-06T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-06-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2023-09-21T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-22T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-02-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Allen added as a cosponsor,2023-04-12T05:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Tittl,2023-11-01T05:00:00+00:00,[],WI,2023 +Representative Stubbs added as a coauthor,2024-01-09T06:00:00+00:00,[],WI,2023 +Withdrawn from committee on State Affairs and referred to joint committee on Finance pursuant to Assembly Rule 42 (3)(c),2023-03-02T06:00:00+00:00,[],WI,2023 +Representative Rettinger added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-07-14T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2023-10-30T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-07T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Mursau and Andraca added as coauthors,2023-09-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a coauthor,2023-05-17T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Conley added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Emerson added as a cosponsor,2023-11-30T06:00:00+00:00,[],WI,2023 +Representative Shankland added as a cosponsor,2023-09-12T05:00:00+00:00,[],WI,2023 +Senator Ballweg added as a cosponsor,2023-10-18T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-13T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-29T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Cowles added as a coauthor,2023-03-22T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-12-05T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on State Affairs, Ayes 8, Noes 4",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 3",2023-03-16T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Cowles,2023-11-03T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-08-23T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Stafsholt,2024-01-24T06:00:00+00:00,[],WI,2023 +"Representatives Allen, August, Subeck and Edming added as coauthors",2023-01-19T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Rozar added as a coauthor,2024-01-31T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-08-09T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Ayes 4, Noes 2",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-25T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-06T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +LRB correction,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Moses added as a cosponsor,2023-06-08T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-15T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-04T06:00:00+00:00,[],WI,2023 +Adopted,2023-09-14T05:00:00+00:00,['passage'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 15, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Wirch added as a coauthor,2023-08-24T05:00:00+00:00,[],WI,2023 +Representative Snodgrass added as a coauthor,2024-02-12T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Senator Hutton added as a coauthor,2023-04-13T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Senator Knodl added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-02T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 4, Noes 3",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2023-10-16T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-19T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 10, Noes 5",2024-01-25T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Consumer Protection, Ayes 9, Noes 0",2024-01-25T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-11T05:00:00+00:00,[],WI,2023 +Senator Wirch added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +"Adopted, Ayes 31, Noes 0",2023-11-07T06:00:00+00:00,['passage'],WI,2023 +Representative Wichgers added as a coauthor,2023-02-28T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Tomczyk,2024-01-29T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-12-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Cabrera added as a cosponsor,2024-02-05T06:00:00+00:00,[],WI,2023 +Representative Callahan added as a coauthor,2023-03-08T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 9, Noes 4",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Cabral-Guevara added as a coauthor,2023-12-07T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-30T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Michalski,2024-01-22T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-30T05:00:00+00:00,[],WI,2023 +Adopted,2023-06-07T05:00:00+00:00,['passage'],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator James,2024-01-09T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-04-19T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-07-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-03T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-10-05T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Senator Knodl added as a cosponsor,2023-07-19T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Dittrich,2024-01-23T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-15T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Duchow added as a cosponsor,2023-10-18T05:00:00+00:00,[],WI,2023 +Adopted,2024-01-25T06:00:00+00:00,['passage'],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-09-08T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Bradley,2023-05-15T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Macco added as a cosponsor,2023-06-21T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-26T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-26T05:00:00+00:00,[],WI,2023 +Representatives O'Connor and Cabrera added as cosponsors,2023-11-09T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Environment, Ayes 9, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-10-24T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-09-21T05:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Snodgrass added as a cosponsor,2023-08-18T05:00:00+00:00,[],WI,2023 +Senator Stafsholt added as a coauthor,2023-06-22T05:00:00+00:00,[],WI,2023 +Representative Myers added as a coauthor,2023-04-18T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-20T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-28T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2023-07-18T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2023-09-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-08-23T05:00:00+00:00,[],WI,2023 +Report correctly engrossed on 6-12-2023,2023-06-12T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 4, Noes 3",2023-05-31T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-06-06T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-11-03T05:00:00+00:00,[],WI,2023 +Representatives Billings and Madison added as cosponsors,2023-11-10T06:00:00+00:00,[],WI,2023 +Representatives Ratcliff and Clancy added as coauthors,2023-05-16T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-23T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Ratcliff added as a coauthor,2023-05-17T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Hutton,2023-08-21T05:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2023-02-28T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-08-09T05:00:00+00:00,[],WI,2023 +Representative Ortiz-Velez added as a cosponsor,2023-12-29T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-05T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-01T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-12-21T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Laid on the table,2023-01-19T06:00:00+00:00,['deferral'],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-06T06:00:00+00:00,['receipt'],WI,2023 +Representative Drake added as a coauthor,2023-05-17T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-09T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-06-08T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Representative J. Anderson added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Steffen,2023-05-15T05:00:00+00:00,[],WI,2023 +Representatives Billings and Madison added as cosponsors,2023-11-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-12T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Agard added as a coauthor,2023-04-26T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2023-10-16T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Referred to joint survey committee on Tax Exemptions pursuant to s.13.52, Wisconsin Statutes",2023-08-30T05:00:00+00:00,['referral-committee'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Snyder,2023-09-21T05:00:00+00:00,[],WI,2023 +Representative Jacobson withdrawn as a cosponsor,2023-08-07T05:00:00+00:00,['withdrawal'],WI,2023 +Assembly Amendment 1 offered by Representative Pronschinske,2024-01-29T06:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Senator Cowles added as a cosponsor,2024-01-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-05T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-12T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +Representative Edming added as a coauthor,2023-10-09T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-28T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-25T05:00:00+00:00,[],WI,2023 +Senator Cabral-Guevara added as a cosponsor,2023-12-07T06:00:00+00:00,[],WI,2023 +Senator Wanggaard added as a coauthor,2023-11-02T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Colleges and Universities, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Pronschinske added as a coauthor,2023-04-26T05:00:00+00:00,[],WI,2023 +Referred to joint survey committee on Tax Exemptions pursuant to s. 13.52 Wisconsin Statutes,2024-01-11T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2023-05-30T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Andraca added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-10T05:00:00+00:00,[],WI,2023 +Representative Dittrich added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Knodl added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-10-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 3, Noes 2",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 offered by Senator Wimberger,2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Michalski added as a coauthor,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2023-09-26T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Cabral-Guevara,2024-01-18T06:00:00+00:00,[],WI,2023 +Representative Clancy added as a cosponsor,2023-05-03T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-20T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-11T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Local Government, Ayes 7, Noes 4",2023-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Ratcliff added as a coauthor,2023-11-03T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-09-18T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-13T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Cabral-Guevara,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 3",2023-03-16T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Allen added as a cosponsor,2023-05-11T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator James,2023-10-31T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Laid on table,2023-09-14T05:00:00+00:00,['deferral'],WI,2023 +Agency briefing held,2023-03-28T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-04T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-21T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2023-04-27T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Rural Development, Ayes 11, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Joers added as a cosponsor,2023-12-08T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-23T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Adopted,2024-02-20T06:00:00+00:00,['passage'],WI,2023 +Public hearing held,2023-10-10T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-06-02T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-03-16T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-30T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Knodl,2024-01-23T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Feyen,2024-01-24T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Steffen,2023-10-27T05:00:00+00:00,[],WI,2023 +Representative Andraca added as a cosponsor,2023-12-07T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 3, Noes 2",2023-09-29T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Larson added as a coauthor,2023-12-06T06:00:00+00:00,[],WI,2023 +"Withdrawn from committee on Government Operations and rereferred to committee on Shared Revenue, Elections and Consumer Protection pursuant to Senate Rule 46(2)(c)",2023-07-10T05:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 offered by Representative Born,2024-02-05T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-03T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-12-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-16T06:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Goeben added as a coauthor,2023-11-02T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +LRB correction (Assembly Amendment 1),2023-10-10T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Dallman,2023-12-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-10T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-08T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-03T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Born,2024-02-06T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 5, Noes 2",2024-02-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 3, Noes 2",2023-09-29T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Stubbs added as a cosponsor,2023-06-05T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-06T05:00:00+00:00,[],WI,2023 +Adopted,2024-02-20T06:00:00+00:00,['passage'],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-06-15T05:00:00+00:00,[],WI,2023 +Senator Wirch added as a coauthor,2024-02-26T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-11T05:00:00+00:00,['receipt'],WI,2023 +Adopted,2024-02-22T06:00:00+00:00,['passage'],WI,2023 +Senator Carpenter added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 1 offered by Representative O'Connor,2024-01-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Duchow added as a cosponsor,2023-10-12T05:00:00+00:00,[],WI,2023 +Representative Neylon added as a coauthor,2023-03-28T05:00:00+00:00,[],WI,2023 +Representatives Shelton and Hong added as cosponsors,2023-03-16T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-01-31T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-11-15T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-10T05:00:00+00:00,['receipt'],WI,2023 +Representative Wichgers added as a coauthor,2023-09-06T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Rozar,2023-04-17T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-06-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-13T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Government Operations, Ayes 5, Noes 0",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Riemer added as a coauthor,2024-02-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Moses,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Adopted,2023-04-18T05:00:00+00:00,['passage'],WI,2023 +Representative Ratcliff added as a coauthor,2023-05-22T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-08-23T05:00:00+00:00,[],WI,2023 +LRB correction,2023-05-22T05:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +LRB correction,2024-01-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-03-05T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-09-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-13T06:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-01-31T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-03-14T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-07T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +"Report passage by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 2, Noes 3",2024-03-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-16T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-12-20T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-02-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Representative Shankland added as a coauthor,2023-09-15T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Schraa added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-10-16T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative O'Connor added as a cosponsor,2023-09-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Representative Bare added as a cosponsor,2023-03-20T05:00:00+00:00,[],WI,2023 +Representative Plumer withdrawn as a cosponsor,2023-10-11T05:00:00+00:00,['withdrawal'],WI,2023 +Senator Wirch added as a coauthor,2023-03-17T05:00:00+00:00,[],WI,2023 +Senator Larson added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-20T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Agard added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Steffen added as a cosponsor,2023-04-17T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 10, Noes 5",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-03-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-21T05:00:00+00:00,['receipt'],WI,2023 +Representative Moore Omokunde added as a coauthor,2023-04-25T05:00:00+00:00,[],WI,2023 +Representatives Michalski and Rozar added as cosponsors,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Oldenburg,2023-11-06T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2024-01-31T06:00:00+00:00,[],WI,2023 +Representative Brooks added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-05-04T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-08-18T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-05T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Tomczyk,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senators Hesselbein and Agard added as coauthors,2023-10-30T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-07-14T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Ayes 5, Noes 1",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Armstrong added as a coauthor,2024-01-26T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-13T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 3, Noes 2",2024-01-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report passage recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2023-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-05-23T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-06T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Doyle added as a cosponsor,2024-02-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-04-17T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator James,2023-10-04T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-04-13T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Jacque,2023-12-06T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-16T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Dittrich,2024-02-12T06:00:00+00:00,[],WI,2023 +Representative Rozar added as a coauthor,2024-01-31T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2023-09-27T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-13T06:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Representative O'Connor added as a cosponsor,2023-04-25T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2023-12-12T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-20T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Senator Cowles added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-08-11T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Clancy added as a coauthor,2023-12-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Gundrum added as a cosponsor,2024-02-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-10-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-10-05T05:00:00+00:00,[],WI,2023 +"Representatives Summerfield, Rettinger, Schraa and Tittl added as cosponsors",2024-02-02T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Moses,2024-02-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-04T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-09T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on State Affairs, Ayes 11, Noes 2",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative O'Connor withdrawn as a coauthor,2023-06-15T05:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2023-11-06T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Palmeri added as a cosponsor,2023-09-21T05:00:00+00:00,[],WI,2023 +Representative Magnafici added as a cosponsor,2023-05-30T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-04T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Murphy,2024-02-06T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-31T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-12-14T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Cowles added as a coauthor,2023-09-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-29T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a coauthor,2023-09-08T05:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-04T05:00:00+00:00,[],WI,2023 +Representatives Madison and Clancy added as cosponsors,2023-10-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-28T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2024-01-12T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Penterman added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 2 offered by Representative Plumer,2023-05-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-08T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Representative O'Connor withdrawn as a cosponsor,2024-02-29T06:00:00+00:00,['withdrawal'],WI,2023 +Representative Ratcliff added as a cosponsor,2024-01-12T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-08-01T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Larson added as a coauthor,2023-02-27T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 15, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Quinn,2024-01-04T06:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 by Committee on Rules,2023-09-12T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 10, Noes 5",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-13T05:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2023-06-07T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Roys,2024-02-23T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-05-06T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-02-21T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Agard added as a cosponsor,2024-01-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Representative Andraca added as a cosponsor,2023-06-21T05:00:00+00:00,[],WI,2023 +Statement of economic interest received,2023-04-25T05:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Bodden added as a coauthor,2023-03-13T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-24T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-21T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Financial Institutions, Ayes 7, Noes 3",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-11-16T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-23T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Murphy added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-10-26T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2024-04-26T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck withdrawn as a cosponsor,2024-02-05T06:00:00+00:00,['withdrawal'],WI,2023 +Representative Haywood added as a cosponsor,2023-09-27T05:00:00+00:00,[],WI,2023 +Senator Felzkowski added as a cosponsor,2023-09-07T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-18T06:00:00+00:00,[],WI,2023 +Representative Michalski added as a cosponsor,2023-12-12T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-24T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Quinn,2023-10-02T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative Brooks added as a cosponsor,2024-02-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-19T05:00:00+00:00,['receipt'],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Neubauer added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-25T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-21T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Wanggaard,2024-02-02T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Armstrong,2023-11-28T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative O'Connor withdrawn as a coauthor,2023-12-28T06:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 9, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Senators Felzkowski and Tomczyk added as cosponsors,2023-11-01T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-22T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Schraa,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Ratcliff added as a cosponsor,2024-02-27T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-02-28T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-03-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Substitute Amendment 1 offered by Representatives Macco and Knodl,2023-04-25T05:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Wichgers,2024-01-30T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-30T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-10T06:00:00+00:00,['receipt'],WI,2023 +Representative Moore Omokunde added as a cosponsor,2024-01-29T06:00:00+00:00,[],WI,2023 +Representative Cabrera added as a cosponsor,2023-02-09T06:00:00+00:00,[],WI,2023 +Representative Magnafici added as a cosponsor,2023-05-30T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-07T06:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2023-10-16T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-10T05:00:00+00:00,[],WI,2023 +Representative Rozar added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Bodden,2023-12-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a coauthor,2023-08-15T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Representative Tranel added as a cosponsor,2024-02-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Green withdrawn as a cosponsor,2023-12-08T06:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-19T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Knodl,2023-11-06T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a coauthor,2023-12-21T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Feyen,2023-12-12T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-12-05T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-12T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Assembly Amendment 1 offered by Representative Snyder,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-27T05:00:00+00:00,['receipt'],WI,2023 +Representative Brandtjen added as a cosponsor,2023-04-12T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-11-30T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-03-07T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Representative Vining added as a cosponsor,2024-02-13T06:00:00+00:00,[],WI,2023 +"Representatives O'Connor, Cabrera and Subeck added as cosponsors",2023-11-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 4, Noes 3",2023-05-31T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Assembly Amendment 1 offered by Representatives Sinicki, Hong and Ohnstad",2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-03-23T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 11, Noes 3",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Allen added as a cosponsor,2023-05-11T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-04T06:00:00+00:00,[],WI,2023 +Representative Shankland added as a cosponsor,2023-09-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Adopted,2023-06-28T05:00:00+00:00,['passage'],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Quinn,2023-10-02T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-09-06T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 2 offered by Senator Cabral-Guevara,2023-11-20T06:00:00+00:00,[],WI,2023 +LRB correction,2023-10-27T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Tusler,2023-11-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-18T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Armstrong added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Steffen,2023-05-10T05:00:00+00:00,[],WI,2023 +Representative Doyle added as a cosponsor,2024-01-29T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Jagler,2023-06-07T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Stafsholt,2024-02-12T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-12-07T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-29T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-07T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 2 offered by Representative Oldenburg,2023-12-05T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-09-14T05:00:00+00:00,['withdrawal'],WI,2023 +Assembly Amendment 2 offered by Representative Rozar,2024-01-23T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Moore Omokunde added as a coauthor,2024-02-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Judiciary, Ayes 5, Noes 2",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator James added as a coauthor,2024-03-06T06:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2023-02-28T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Feyen,2024-02-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-03-20T05:00:00+00:00,['receipt'],WI,2023 +Representative Penterman added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representatives Macco and Knodl,2023-05-02T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Representative Stubbs added as a coauthor,2024-01-09T06:00:00+00:00,[],WI,2023 +LRB correction (Assembly Substitute Amendment 1),2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Knodl added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Representative Rettinger added as a coauthor,2023-05-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Regulatory Licensing Reform, Ayes 5, Noes 3",2023-06-01T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Haywood added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Available for scheduling,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Feyen,2023-06-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Representative Conley added as a cosponsor,2024-01-11T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Laid on table,2023-10-17T05:00:00+00:00,['deferral'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 offered by Senator James,2023-09-15T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Stubbs withdrawn as a cosponsor,2024-02-06T06:00:00+00:00,['withdrawal'],WI,2023 +Senate Amendment 2 offered by Senator Knodl,2024-02-13T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-05T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Adopted,2023-09-14T05:00:00+00:00,['passage'],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Felzkowski withdrawn as a coauthor,2023-12-14T06:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2023-06-07T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-15T06:00:00+00:00,[],WI,2023 +Representative Stubbs withdrawn as a coauthor,2024-02-08T06:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2023-09-08T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Ways and Means, Ayes 8, Noes 4",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative C. Anderson added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Feyen,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on State Affairs, Ayes 8, Noes 4",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-03-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Laid on table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +Representative Green added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-10T05:00:00+00:00,['receipt'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Snyder,2024-01-23T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-04T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Colleges and Universities, Ayes 9, Noes 5",2023-10-10T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2023-11-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Government Operations, Elections and Consumer Protection, Ayes 5, Noes 0",2023-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative C. Anderson added as a cosponsor,2023-04-13T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2023-10-24T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Neylon added as a cosponsor,2023-03-28T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 2",2023-03-24T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-02-23T06:00:00+00:00,['receipt'],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Universities and Revenue, Ayes 5, Noes 3",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-04-11T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-05-31T05:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-03-16T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 10, Noes 5",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Ratcliff added as a coauthor,2024-01-12T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-16T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-04-12T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-23T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Senator Carpenter added as a coauthor,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Stubbs added as a cosponsor,2023-06-05T05:00:00+00:00,[],WI,2023 +Adopted,2024-02-13T06:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative C. Anderson added as a cosponsor,2023-09-25T05:00:00+00:00,[],WI,2023 +Senate Amendment 3 offered by Senator Cabral-Guevara,2023-11-20T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 11, Noes 3",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-28T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-01T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Jacque,2024-01-19T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-09-06T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-29T06:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Cabral-Guevara,2023-08-22T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2024-01-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-18T05:00:00+00:00,[],WI,2023 +Representatives Stubbs and Gustafson added as coauthors,2023-09-07T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Senate Amendment 1 offered by Senator Wanggaard,2024-02-09T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-05-23T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Shankland added as a cosponsor,2023-09-22T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Ballweg,2024-01-23T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Dittrich added as a coauthor,2023-06-08T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 14, Noes 1",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 10, Noes 5",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2024-03-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Clancy added as a cosponsor,2023-02-15T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-23T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-03T05:00:00+00:00,['receipt'],WI,2023 +Representative Joers added as a coauthor,2023-08-18T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-08-29T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-05T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-31T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-15T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 10, Noes 5",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Shankland added as a cosponsor,2024-01-18T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-07T06:00:00+00:00,[],WI,2023 +Representative Behnke added as a coauthor,2023-09-05T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative O'Connor,2023-10-10T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-19T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Behnke added as a cosponsor,2024-02-12T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 3, Noes 2",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a coauthor,2023-09-26T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-09-18T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-10-09T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-03-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-16T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-24T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-11-28T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-16T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-04-10T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-02-21T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-05T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-04-12T05:00:00+00:00,['receipt'],WI,2023 +Adopted,2024-02-22T06:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Riemer added as a cosponsor,2023-03-30T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-11-10T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Sortwell,2023-10-30T05:00:00+00:00,[],WI,2023 +Representative Billings added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-27T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-01-04T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-05-23T05:00:00+00:00,[],WI,2023 +Representative Duchow added as a cosponsor,2023-04-18T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 9, Noes 5",2023-03-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative C. Anderson added as a cosponsor,2023-10-13T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Conley added as a coauthor,2023-05-02T05:00:00+00:00,[],WI,2023 +"Withdrawn from committee on Government Operations and rereferred to committee on Shared Revenue, Elections and Consumer Protection pursuant to Senate Rule 46(2)(c)",2023-07-10T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Campaigns and Elections, Ayes 5, Noes 3",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Education, Ayes 11, Noes 4",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Snodgrass added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-11-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-05T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Health, Ayes 6, Noes 0",2024-02-06T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-01-05T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a cosponsor,2024-01-29T06:00:00+00:00,[],WI,2023 +Representative Zimmerman added as a coauthor,2023-10-18T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Penterman,2023-08-28T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Executive action taken,2023-10-31T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Katsma,2024-01-03T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-01-22T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Wittke,2024-01-30T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-10-17T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-01-30T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-10-11T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Representative Drake added as a cosponsor,2023-09-13T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Financial Institutions, Ayes 9, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Transportation, Ayes 13, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-10-18T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative Ortiz-Velez withdrawn as a coauthor,2024-01-10T06:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2024-01-12T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-05T06:00:00+00:00,[],WI,2023 +Senator Knodl added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-05-17T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-09-05T05:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 9, Noes 6",2024-01-30T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Adopted,2023-10-17T05:00:00+00:00,['passage'],WI,2023 +Referred to committee on Rules,2024-02-15T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Steffen added as a coauthor,2023-11-02T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-03-30T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-12-01T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-11-29T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-04T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-13T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-08-15T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-18T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-12-15T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-04-17T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2023-11-10T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Shankland added as a cosponsor,2023-12-04T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-16T06:00:00+00:00,['receipt'],WI,2023 +Adopted,2023-03-22T05:00:00+00:00,['passage'],WI,2023 +Executive action taken,2024-01-25T06:00:00+00:00,[],WI,2023 +Adopted,2023-01-19T06:00:00+00:00,['passage'],WI,2023 +Senator Cabral-Guevara withdrawn as a coauthor,2023-12-11T06:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representatives Binsfeld and Joers,2024-01-05T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-01T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-25T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative Schraa added as a coauthor,2023-03-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-06T06:00:00+00:00,['receipt'],WI,2023 +Representative Goyke added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-12-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Armstrong,2023-03-16T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-12-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Health, Ayes 6, Noes 0",2023-10-13T05:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage recommended by Committee on Ways and Means, Ayes 12, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Brooks,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 8, Noes 6",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Ratcliff added as a cosponsor,2023-08-29T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Taylor,2024-01-05T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 offered by Representative Sortwell,2023-07-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-06T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-08-23T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Dittrich,2023-06-30T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Government Operations, Ayes 3, Noes 2",2023-10-05T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Report correctly engrossed on 10-13-2023,2023-10-16T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-10T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Snodgrass added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Wimberger,2024-02-07T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Health, Ayes 6, Noes 0",2023-10-13T05:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage recommended by Committee on Utilities and Technology, Ayes 5, Noes 0",2023-05-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2023-09-29T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Baldeh added as a coauthor,2023-12-12T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-10-03T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-06-15T05:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-12T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-03-16T05:00:00+00:00,[],WI,2023 +Representative Michalski added as a coauthor,2024-01-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-01T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Mursau,2024-02-06T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 3",2023-03-16T05:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-12-19T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-12-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-29T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative C. Anderson added as a cosponsor,2023-04-25T05:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Mursau,2024-01-09T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2023-10-16T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-15T06:00:00+00:00,[],WI,2023 +Senator Felzkowski added as a cosponsor,2023-09-07T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 6, Noes 1",2023-06-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-11-02T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Billings added as a coauthor,2023-10-05T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-12-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-29T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-09T06:00:00+00:00,[],WI,2023 +Representative Cabrera added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +"Report adoption recommended by Committee on Campaigns and Elections, Ayes 4, Noes 3",2023-11-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 15, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Stubbs added as a coauthor,2024-01-09T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-06T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-21T05:00:00+00:00,['reading-3'],WI,2023 +Adopted,2023-06-21T05:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2023-06-21T05:00:00+00:00,['reading-3'],WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-09T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-08T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-08-02T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-08T06:00:00+00:00,['referral-committee'],WI,2023 +Senator Carpenter added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 9, Noes 4",2023-10-10T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Representative Billings added as a cosponsor,2023-04-17T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Representatives Mursau and Andraca added as cosponsors,2023-09-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Senator Carpenter added as a coauthor,2023-10-12T05:00:00+00:00,[],WI,2023 +Adopted,2023-03-14T05:00:00+00:00,['passage'],WI,2023 +"Report passage recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2023-10-12T05:00:00+00:00,['amendment-passage'],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Veterans and Military Affairs, Ayes 13, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Sporting Heritage, Ayes 12, Noes 0",2023-12-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Spreitzer added as a coauthor,2023-03-16T05:00:00+00:00,[],WI,2023 +Report correctly engrossed on 2-19-2024,2024-02-19T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2023-11-22T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-03-30T05:00:00+00:00,[],WI,2023 +Adopted,2023-03-14T05:00:00+00:00,['passage'],WI,2023 +Executive action taken,2024-01-04T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 offered by Representatives Sinicki and Riemer,2023-06-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-28T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Jacque,2024-01-05T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-06T06:00:00+00:00,['receipt'],WI,2023 +Adopted,2023-05-17T05:00:00+00:00,['passage'],WI,2023 +Representative O'Connor added as a coauthor,2023-01-12T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Ratcliff added as a coauthor,2023-10-16T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-29T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-10-12T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Corrections, Ayes 12, Noes 1",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Madison added as a cosponsor,2024-02-13T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Sporting Heritage, Ayes 9, Noes 3",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-06-09T05:00:00+00:00,[],WI,2023 +Representative Magnafici added as a cosponsor,2023-05-30T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-15T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-05-30T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Workforce Development and Economic Opportunities, Ayes 10, Noes 5",2023-04-18T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage by Committee on Health, Ayes 2, Noes 4",2023-10-06T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-15T05:00:00+00:00,['receipt'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Licensing, Constitution and Federalism, Ayes 5, Noes 0",2023-08-02T05:00:00+00:00,['amendment-passage'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Callahan,2024-02-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-01T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-08-23T05:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2023-09-05T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-01T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-04-03T05:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-03-30T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-01-31T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-08-29T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Adopted,2023-04-18T05:00:00+00:00,['passage'],WI,2023 +Representative Hong added as a cosponsor,2023-09-15T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-01-31T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Jobs, Economy and Small Business Development, Ayes 11, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Myers added as a cosponsor,2023-04-18T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-30T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-10T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 11, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2023-05-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on table,2023-10-17T05:00:00+00:00,['deferral'],WI,2023 +"Report passage recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2023-09-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 offered by Representative Steffen,2023-03-23T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-27T05:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a cosponsor,2023-04-25T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-01-09T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-10T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Krug,2024-02-15T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Testin added as a coauthor,2023-03-14T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-10-11T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative VanderMeer added as a cosponsor,2023-03-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-13T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-31T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-01T06:00:00+00:00,['receipt'],WI,2023 +Senator Cowles added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-30T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 4, Noes 1",2023-09-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-03-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 13, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Dittrich withdrawn as a coauthor,2023-11-15T06:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-23T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Representative Magnafici added as a coauthor,2023-05-30T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-01-12T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative O'Connor added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +Adopted,2023-06-07T05:00:00+00:00,['passage'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representatives Joers and Hurd,2024-02-12T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-06T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Oldenburg,2023-06-13T05:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Schraa,2024-02-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Bare added as a cosponsor,2023-03-23T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 2 offered by Senator Cabral-Guevara,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative J. Anderson added as a cosponsor,2023-06-08T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-12T05:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Born,2024-02-07T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Economic Development and Technical Colleges, Ayes 6, Noes 0",2024-01-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-01-04T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a cosponsor,2024-01-30T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-11T05:00:00+00:00,[],WI,2023 +Adopted,2024-01-16T06:00:00+00:00,['passage'],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-05T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-29T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-05-23T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Knodl,2024-02-12T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-06-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Tomczyk,2024-01-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-29T06:00:00+00:00,['receipt'],WI,2023 +Representative Shankland added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Agency briefing held,2023-03-30T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-10T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Allen added as a coauthor,2023-04-12T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-09-08T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-05-04T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-02T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +"Referred to joint survey committee on Retirement Systems pursuant to s. 13.50, Wisconsin Statutes",2023-05-08T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 2",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-05T05:00:00+00:00,[],WI,2023 +Representative Stubbs added as a coauthor,2023-05-25T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Wimberger,2023-09-26T05:00:00+00:00,[],WI,2023 +Representative Tranel added as a coauthor,2023-08-31T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-05-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-12T05:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Executive action taken,2023-10-12T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Local Government, Ayes 10, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Joers added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Joers added as a coauthor,2023-08-18T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-09-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-20T05:00:00+00:00,[],WI,2023 +Deposited in the office of the Secretary of State on 6-16-2023,2023-06-16T05:00:00+00:00,[],WI,2023 +Adopted,2023-05-17T05:00:00+00:00,['passage'],WI,2023 +Referred to committee on Rules,2023-05-31T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Tusler,2024-01-31T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a cosponsor,2023-08-09T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-24T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-26T05:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Environment, Ayes 5, Noes 3",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-09-06T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Sporting Heritage, Ayes 8, Noes 4",2023-12-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 9, Noes 5",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Assembly Substitute Amendment 2 offered by Representatives Mursau and Swearingen,2023-10-10T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-08-30T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Labor and Integrated Employment, Ayes 5, Noes 3",2023-04-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Energy and Utilities, Ayes 16, Noes 0",2024-02-20T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2023-06-14T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Billings added as a coauthor,2023-04-17T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-25T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Ratcliff added as a coauthor,2023-08-22T05:00:00+00:00,[],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2023-09-28T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2023-06-06T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-09-27T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-04-10T05:00:00+00:00,[],WI,2023 +Representative Petryk added as a cosponsor,2023-08-09T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-11T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Veterans and Military Affairs, Ayes 15, Noes 0",2024-01-30T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-02-13T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-04T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-03-16T05:00:00+00:00,[],WI,2023 +Representative Joers added as a coauthor,2023-08-25T05:00:00+00:00,[],WI,2023 +"Joint Committee for Review of Administrative Rules report received pursuant to s. 227.26(2)(g), Wisconsin Statutes",2023-03-13T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Gundrum,2024-02-05T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Armstrong,2023-12-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Representative Brooks added as a coauthor,2024-02-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-05-17T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-20T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Veterans and Military Affairs, Ayes 13, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Carpenter added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Summerfield,2023-08-03T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-07T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-05-17T05:00:00+00:00,['withdrawal'],WI,2023 +Representative Palmeri added as a coauthor,2024-01-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-07-14T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-30T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on State Affairs, Ayes 10, Noes 3",2023-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-01-31T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-12T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-20T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Sortwell,2023-05-23T05:00:00+00:00,[],WI,2023 +Referred to joint committee on Finance,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Stubbs added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator James,2023-11-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 2 offered by Senator Cabral-Guevara,2024-03-01T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-05-31T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-16T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-17T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-10-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-01-22T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-11-02T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-05T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-04-19T05:00:00+00:00,[],WI,2023 +Representative Allen added as a coauthor,2023-04-06T05:00:00+00:00,[],WI,2023 +Representative Vining added as a cosponsor,2024-04-10T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Environment, Ayes 9, Noes 0",2023-11-01T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Senator Hutton added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-10-10T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-10-31T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Adopted,2023-11-14T06:00:00+00:00,['passage'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Available for scheduling,2023-05-30T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-15T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Licensing, Constitution and Federalism, Ayes 3, Noes 2",2023-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Health, Ayes 4, Noes 2",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-04-20T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Schraa added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-28T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-12T05:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-16T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 2 offered by Senator Cowles,2023-10-30T05:00:00+00:00,[],WI,2023 +Representative S. Johnson added as a cosponsor,2023-10-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-03-07T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-04-18T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-21T06:00:00+00:00,[],WI,2023 +Senator Larson added as a coauthor,2024-02-19T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-02T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-07T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-09-27T05:00:00+00:00,[],WI,2023 +Senator Roys added as a coauthor,2023-12-19T06:00:00+00:00,[],WI,2023 +LRB correction,2024-02-09T06:00:00+00:00,[],WI,2023 +Representative Schraa added as a coauthor,2023-03-01T06:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-04-18T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-19T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-11T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2023-05-30T05:00:00+00:00,['amendment-passage'],WI,2023 +"Report adoption recommended by Committee on Campaigns and Elections, Ayes 4, Noes 3",2023-11-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Andraca added as a cosponsor,2024-04-05T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2023-06-06T05:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2024-02-22T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Felzkowski,2024-01-19T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Steffen added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Feyen,2023-11-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-30T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Stafsholt,2024-01-24T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Feyen,2024-02-07T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Local Government, Ayes 8, Noes 4",2023-04-18T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2024-01-12T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Licensing, Constitution and Federalism, Ayes 3, Noes 2",2023-10-09T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 6, Noes 1",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Haywood added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Stroebel,2023-06-06T05:00:00+00:00,[],WI,2023 +Representative Hong added as a cosponsor,2023-10-03T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-02-20T06:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2023-04-21T05:00:00+00:00,[],WI,2023 +Senator Cowles added as a coauthor,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2023-08-24T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-10T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 15, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 4, Noes 3",2023-09-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-10-04T05:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Available for scheduling,2023-10-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-20T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Universities and Revenue, Ayes 7, Noes 1",2023-09-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 offered by Senators Larson and Smith,2024-01-24T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Tourism, Ayes 7, Noes 4",2023-10-05T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-13T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-04-20T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-09T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 offered by Senator Roys,2023-09-15T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-20T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Michalski,2023-03-03T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-31T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-07T06:00:00+00:00,['receipt'],WI,2023 +Representative Kitchens added as a coauthor,2024-02-12T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2024-01-08T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Licensing, Constitution and Federalism, Ayes 3, Noes 2",2023-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Summerfield added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-07-18T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-12-22T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Jacobson added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Regulatory Licensing Reform, Ayes 5, Noes 3",2023-06-01T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Macco added as a cosponsor,2023-06-21T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-05T06:00:00+00:00,[],WI,2023 +Senator Stafsholt added as a coauthor,2023-02-16T06:00:00+00:00,[],WI,2023 +Representatives Kitchens and Vining added as cosponsors,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Insurance and Small Business, Ayes 5, Noes 0",2024-02-26T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 2 offered by Senator Knodl,2024-01-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Adopted,2024-02-15T06:00:00+00:00,['passage'],WI,2023 +Fiscal estimate received,2023-09-21T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-02T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-29T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-06-06T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +LRB correction,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-10T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-04-25T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-14T06:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2023-02-21T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-03-15T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Krug,2023-11-06T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Local Government, Ayes 8, Noes 3",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Withdrawn from committee on Government Operations and rereferred to committee on Shared Revenue, Elections and Consumer Protection pursuant to Senate Rule 46(2)(c)",2023-07-10T05:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-05-24T05:00:00+00:00,['receipt'],WI,2023 +Adopted,2024-02-13T06:00:00+00:00,['passage'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Stubbs added as a coauthor,2023-06-05T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Senator Cowles added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Snodgrass added as a cosponsor,2023-04-10T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2024-01-30T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Senator Taylor added as a coauthor,2023-12-06T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-01T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Fiscal estimate received,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Wichgers added as a coauthor,2024-02-09T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Government Operations, Ayes 3, Noes 2",2023-10-05T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Adopted,2024-02-20T06:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-12-12T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-02T05:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-23T05:00:00+00:00,[],WI,2023 +Representative Andraca added as a coauthor,2024-04-05T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-10-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-27T06:00:00+00:00,['receipt'],WI,2023 +Representative C. Anderson added as a cosponsor,2024-01-02T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +LRB correction,2023-10-11T05:00:00+00:00,[],WI,2023 +Representative McGuire added as a coauthor,2024-03-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Fiscal estimate received,2023-10-25T05:00:00+00:00,['receipt'],WI,2023 +Agency briefing held by joint committee on Finance,2023-03-28T05:00:00+00:00,[],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-01T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-03-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-27T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-11T05:00:00+00:00,['receipt'],WI,2023 +Representative Brooks added as a cosponsor,2024-02-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-03-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-01-26T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 2 offered by Representative Gundrum,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2024-01-31T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-04-03T05:00:00+00:00,['receipt'],WI,2023 +Representative Penterman added as a coauthor,2024-01-26T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative O'Connor added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Jacque,2023-10-02T05:00:00+00:00,[],WI,2023 +"Joint Committee for Review of Administrative Rules report received pursuant to s. 227.26(2)(g), Wisconsin Statutes",2023-03-13T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-05-23T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-01-30T06:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 2 offered by Representative Steffen,2023-08-22T05:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Murphy,2023-10-31T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Vining added as a cosponsor,2024-02-12T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-10T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-06-15T05:00:00+00:00,[],WI,2023 +Representative Penterman added as a coauthor,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Macco added as a coauthor,2023-06-21T05:00:00+00:00,[],WI,2023 +Representative Gundrum added as a coauthor,2023-04-19T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Representative Snodgrass added as a coauthor,2023-04-26T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-05T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-16T05:00:00+00:00,[],WI,2023 +Representative Maxey added as a coauthor,2024-01-09T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Adopted,2023-05-17T05:00:00+00:00,['passage'],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-21T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Veterans and Military Affairs, Ayes 11, Noes 2",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-09-28T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Universities and Revenue, Ayes 7, Noes 1",2024-01-25T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Pronschinske added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-21T05:00:00+00:00,['reading-3'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 13, Noes 1",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2023-11-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 offered by Senator James,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Senator Hesselbein added as a coauthor,2023-06-05T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Laid on the table,2023-09-14T05:00:00+00:00,['deferral'],WI,2023 +Senator Carpenter added as a coauthor,2023-03-16T05:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2023-12-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-03-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Callahan,2024-02-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-03-08T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-06-21T05:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 12, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-10-31T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-17T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-28T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 2 offered by Senators Wimberger and Cowles,2023-10-10T05:00:00+00:00,[],WI,2023 +Representative Clancy added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-25T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Education, Ayes 7, Noes 0",2024-02-05T06:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2024-03-06T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a coauthor,2023-09-05T05:00:00+00:00,[],WI,2023 +Representative Vining added as a cosponsor,2023-04-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-24T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-03-24T05:00:00+00:00,['receipt'],WI,2023 +Representative O'Connor added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Duchow added as a coauthor,2023-10-18T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Quinn,2024-03-04T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-04-25T05:00:00+00:00,['withdrawal'],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 13, Noes 0",2024-01-22T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Energy and Utilities, Ayes 15, Noes 0",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Adopted, Ayes 20, Noes 11",2023-03-22T05:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Hutton added as a coauthor,2023-03-28T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 14, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-03-27T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-27T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-08-22T05:00:00+00:00,[],WI,2023 +Senator Ballweg added as a coauthor,2023-03-08T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Plumer,2023-05-25T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-08T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Family Law, Ayes 5, Noes 1",2023-10-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Report correctly engrossed on 5-19-2023,2023-06-12T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-04T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-10-09T05:00:00+00:00,[],WI,2023 +Senator Hutton added as a coauthor,2023-03-16T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative VanderMeer,2024-01-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-07-27T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Representative Ohnstad withdrawn as a cosponsor,2023-10-23T05:00:00+00:00,['withdrawal'],WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-06-21T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Smith,2024-02-15T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-11T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-04T05:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Senator Felzkowski added as a cosponsor,2023-09-07T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-03T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Ways and Means, Ayes 9, Noes 0",2023-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative J. Anderson added as a cosponsor,2023-10-02T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Representative Myers added as a cosponsor,2024-02-02T06:00:00+00:00,[],WI,2023 +"Report adoption recommended by Committee on Ways and Means, Ayes 8, Noes 4",2023-09-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-11-02T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on State Affairs, Ayes 13, Noes 0",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-05-11T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Utilities and Technology, Ayes 5, Noes 0",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-09-12T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Wichgers,2023-11-14T06:00:00+00:00,[],WI,2023 +Representative Drake added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-03T06:00:00+00:00,[],WI,2023 +Representative Krug added as a coauthor,2023-03-20T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-06T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Murphy,2023-11-03T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-09T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Adopted,2023-09-14T05:00:00+00:00,['passage'],WI,2023 +Fiscal estimate received,2023-04-17T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-05-10T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Green,2023-10-31T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 2",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +"Refused to refer to committee on Campaigns and Elections, Ayes 35, Noes 63",2023-09-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-27T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Insurance and Small Business, Ayes 5, Noes 0",2023-09-28T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Rozar,2023-09-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-11T06:00:00+00:00,['receipt'],WI,2023 +Representatives Plumer and Michalski added as coauthors,2023-03-23T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Felzkowski,2023-05-18T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 6, Noes 2",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Madison added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2023-08-29T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 12, Noes 0",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative C. Anderson added as a coauthor,2023-12-13T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Sporting Heritage, Ayes 8, Noes 2",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-05-10T05:00:00+00:00,[],WI,2023 +Report correctly engrossed on 9-13-2023,2023-09-13T05:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-12-29T06:00:00+00:00,['receipt'],WI,2023 +Report correctly engrossed on 9-13-2023,2023-09-13T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-03T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-09-06T05:00:00+00:00,[],WI,2023 +Representative Gundrum added as a coauthor,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative Stubbs added as a coauthor,2023-10-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-05T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2023-03-24T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-05T05:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-03-14T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-04-25T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-28T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Sporting Heritage, Ayes 10, Noes 0",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 10, Noes 4",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Assembly Substitute Amendment 1 offered by Representatives Rettinger, Wittke and Tittl",2024-01-31T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2023-09-29T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Senator Agard added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +Point of order that Senate Substitute Amendment 1 was not germane well taken,2023-01-17T06:00:00+00:00,[],WI,2023 +Representative Michalski added as a coauthor,2023-12-14T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a coauthor,2024-03-18T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-01-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Emerson added as a cosponsor,2024-01-18T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2023-04-18T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-03T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read,2023-01-03T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Workforce Development and Economic Opportunities, Ayes 10, Noes 0",2023-11-03T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Schutt added as a cosponsor,2023-11-21T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-24T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Stafsholt,2024-02-28T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-19T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report adoption recommended by Committee on State Affairs, Ayes 8, Noes 5",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Penterman withdrawn as a cosponsor,2023-08-24T05:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2023-05-31T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-03T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2024-02-02T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Senator Hutton added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Adopted,2023-04-25T05:00:00+00:00,['passage'],WI,2023 +Representative Drake added as a coauthor,2023-09-13T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-04-19T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-05T06:00:00+00:00,[],WI,2023 +Representative Wittke added as a coauthor,2023-06-07T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-16T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Senator Spreitzer withdrawn as a cosponsor,2023-05-11T05:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2023-10-12T05:00:00+00:00,['receipt'],WI,2023 +Representative Rettinger added as a cosponsor,2024-01-03T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Maxey,2023-08-08T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2024-02-12T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Family Law, Ayes 9, Noes 0",2024-01-25T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 12, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Steffen,2023-03-02T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Spreitzer added as a cosponsor,2023-10-16T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2023-08-28T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-19T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Judiciary, Ayes 7, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator James,2024-01-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-02-21T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-02T05:00:00+00:00,['receipt'],WI,2023 +Representatives Edming and Schraa added as coauthors,2024-01-25T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2023-09-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Licensing, Constitution and Federalism, Ayes 3, Noes 2",2023-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report adoption recommended by Committee on Judiciary, Ayes 5, Noes 1",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Representative Stubbs added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Feyen,2024-02-14T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Ballweg,2024-02-13T06:00:00+00:00,[],WI,2023 +Senator Hesselbein added as a cosponsor,2023-06-05T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Universities and Revenue, Ayes 5, Noes 3",2024-02-05T06:00:00+00:00,['amendment-passage'],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Representative Melotik added as a coauthor,2023-11-02T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Bradley,2023-12-04T06:00:00+00:00,[],WI,2023 +"Report adoption recommended by Committee on Government Operations, Ayes 5, Noes 0",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Felzkowski added as a cosponsor,2023-09-07T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Jobs, Economy and Small Business Development, Ayes 11, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Adopted,2024-02-22T06:00:00+00:00,['passage'],WI,2023 +Public hearing held,2023-06-08T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Committee on Campaigns and Elections,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +"Representatives Clancy, Madison and Haywood added as coauthors",2023-04-25T05:00:00+00:00,[],WI,2023 +Senator Agard added as a coauthor,2023-09-01T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-04-13T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Licensing, Constitution and Federalism, Ayes 3, Noes 2",2023-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-04-17T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Insurance, Ayes 11, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative O'Connor added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-05T05:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 2 offered by Senator Feyen,2024-01-19T06:00:00+00:00,[],WI,2023 +Adopted,2023-06-07T05:00:00+00:00,['passage'],WI,2023 +Public hearing held,2023-09-26T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2023-11-22T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Wirch added as a coauthor,2024-01-08T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-10-11T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-01-05T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-10-12T05:00:00+00:00,['receipt'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Education, Ayes 7, Noes 0",2024-02-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Stubbs withdrawn as a coauthor,2024-02-06T06:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2023-10-18T05:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-04-17T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-03-15T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 2 offered by Representative Gustafson,2023-11-09T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 3, Noes 2",2023-10-16T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Jobs, Economy and Small Business Development, Ayes 11, Noes 0",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Government Operations, Ayes 3, Noes 2",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Wirch added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 5, Noes 2",2024-02-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 2",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Conley added as a coauthor,2023-10-12T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 4, Noes 3",2024-01-31T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Local Government, Ayes 11, Noes 0",2023-11-01T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 2 offered by Representative Pronschinske,2024-01-30T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 4, Noes 1",2023-09-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-16T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Campaigns and Elections, Ayes 6, Noes 3",2023-11-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-21T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Economic Development and Technical Colleges, Ayes 5, Noes 0",2024-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Senator Larson added as a coauthor,2023-11-29T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Novak,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Representative Duchow added as a coauthor,2023-10-12T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 0",2023-05-31T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Clancy withdrawn as a coauthor,2023-11-09T06:00:00+00:00,['withdrawal'],WI,2023 +Referred to committee on Rules,2023-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-04T05:00:00+00:00,[],WI,2023 +Representative Stubbs withdrawn as a coauthor,2024-02-14T06:00:00+00:00,['withdrawal'],WI,2023 +Adopted,2023-10-17T05:00:00+00:00,['passage'],WI,2023 +Assembly Amendment 1 offered by Representative Steffen,2023-12-05T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-01-17T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Tusler,2024-01-31T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Kurtz,2023-12-27T06:00:00+00:00,[],WI,2023 +Representative Magnafici added as a coauthor,2023-05-30T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Schraa,2024-01-19T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Rozar added as a cosponsor,2024-01-31T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 5, Noes 2",2024-02-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2024-01-31T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-01-08T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2024-02-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Jacobson added as a coauthor,2023-07-14T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Family Law, Ayes 6, Noes 3",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Joers added as a coauthor,2023-11-02T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-04-11T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Representative Bodden added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-05-31T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-12-01T06:00:00+00:00,['referral-committee'],WI,2023 +LRB correction (Senate Substitute Amendment 1),2023-05-24T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-05T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 8, Noes 5",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Senate Substitute Amendment 1 offered by Senators Pfaff, Agard, Hesselbein, Carpenter, L. Johnson, Larson, Roys, Smith, Spreitzer and Wirch",2024-02-20T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-02T05:00:00+00:00,[],WI,2023 +Representative Magnafici added as a coauthor,2023-05-30T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-03-24T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-05-10T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-08T05:00:00+00:00,[],WI,2023 +"Representatives J. Anderson, O'Connor, Goeben and Michalski added as coauthors",2023-06-08T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-31T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-15T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-10-12T05:00:00+00:00,[],WI,2023 +"Senators Marklein, L. Johnson and Hesselbein added as cosponsors",2023-10-11T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Representative Shankland added as a cosponsor,2023-09-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-05T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-21T06:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a cosponsor,2023-04-17T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Hutton,2024-02-12T06:00:00+00:00,[],WI,2023 +Representative Stubbs withdrawn as a cosponsor,2024-02-14T06:00:00+00:00,['withdrawal'],WI,2023 +Representative Magnafici added as a coauthor,2023-12-05T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 8, Noes 0",2023-05-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Senator L. Johnson added as a cosponsor,2023-10-30T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-22T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-26T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-04-04T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 2 offered by Senator Knodl,2024-02-13T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-17T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Insurance and Small Business, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Senator Carpenter added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Wittke added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Senator Carpenter added as a coauthor,2023-08-09T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-11-20T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-03-01T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2023-11-10T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Behnke,2023-04-24T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-03-14T05:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-20T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representatives Sortwell and Murphy,2024-01-23T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Sporting Heritage, Ayes 12, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Agard added as a coauthor,2023-03-24T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-10-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-04T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-12T06:00:00+00:00,['receipt'],WI,2023 +Representative Macco added as a cosponsor,2023-06-21T05:00:00+00:00,[],WI,2023 +Representative Vining added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +"Withdrawn from committee on Government Operations and rereferred to committee on Shared Revenue, Elections and Consumer Protection pursuant to Senate Rule 46(2)(c)",2023-07-10T05:00:00+00:00,['referral-committee'],WI,2023 +Senator L. Johnson added as a coauthor,2023-10-30T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-12T05:00:00+00:00,[],WI,2023 +"Report without recommendation (Assembly Rule 19) by Committee on Campaigns and Elections, Ayes 4, Noes 4",2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2023-06-01T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-24T05:00:00+00:00,['receipt'],WI,2023 +Representatives Joers and Andraca added as cosponsors,2023-06-08T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-02-08T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Hesselbein,2024-02-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-02-17T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Rodriguez added as a cosponsor,2023-11-02T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +"Assembly Amendment 1 offered by Representatives Bare, Haywood, Emerson, Ortiz-Velez and Clancy",2023-06-05T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 13, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-06-01T05:00:00+00:00,['referral-committee'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Wimberger,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Felzkowski withdrawn as a cosponsor,2023-12-14T06:00:00+00:00,['withdrawal'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-01-31T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-12-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Representatives Cabrera and O'Connor added as cosponsors,2023-11-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Baldeh added as a coauthor,2023-05-23T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-10-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Snodgrass added as a cosponsor,2023-12-20T06:00:00+00:00,[],WI,2023 +Senator Ballweg added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Ratcliff added as a coauthor,2023-08-25T05:00:00+00:00,[],WI,2023 +LRB correction,2023-11-03T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-05-23T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Representative Moore Omokunde added as a coauthor,2023-08-10T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['amendment-passage'],WI,2023 +"Senate Substitute Amendment 1 rejected, Ayes 22, Noes 10",2024-02-20T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Krug,2024-01-10T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-12-11T06:00:00+00:00,[],WI,2023 +Representatives Shankland and Schraa added as coauthors,2023-10-12T05:00:00+00:00,[],WI,2023 +Adopted,2023-10-17T05:00:00+00:00,['passage'],WI,2023 +Placed on calendar 3-22-2023 by Committee on Rules,2023-03-14T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2023-03-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-03-15T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +Representatives Andraca and Pronschinske added as cosponsors,2023-02-28T06:00:00+00:00,[],WI,2023 +Adopted,2023-03-14T05:00:00+00:00,['passage'],WI,2023 +"Report passage recommended by Committee on Financial Institutions, Ayes 7, Noes 2",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-02-05T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Energy and Utilities, Ayes 16, Noes 0",2023-09-28T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2023-01-17T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +"Adopted, Ayes 98, Noes 0",2023-10-12T05:00:00+00:00,['passage'],WI,2023 +Read and referred to committee on Senate Organization,2023-11-13T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 6, Noes 3",2023-10-05T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-11-06T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-01-31T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-06T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-17T05:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a cosponsor,2023-10-19T05:00:00+00:00,[],WI,2023 +Representative Kitchens added as a coauthor,2023-09-08T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-06T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Campaigns and Elections, Ayes 3, Noes 2",2023-11-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-06-08T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Jacque,2023-02-28T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Judiciary, Ayes 7, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2023-04-19T05:00:00+00:00,['receipt'],WI,2023 +LRB correction,2023-04-03T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 3, Noes 2",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 11, Noes 4",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-06-13T05:00:00+00:00,[],WI,2023 +Adopted,2023-06-07T05:00:00+00:00,['passage'],WI,2023 +Ordered immediately messaged,2023-04-25T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-12-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-16T05:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +Deposited in the office of the Secretary of State on 9-19-2023,2023-09-19T05:00:00+00:00,[],WI,2023 +Deposited in the office of the Secretary of State on 9-19-2023,2023-09-19T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-14T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Representative VanderMeer added as a coauthor,2023-03-27T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-11-10T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 offered by Senator Testin,2024-02-06T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Children and Families, Ayes 8, Noes 4",2023-09-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-09-06T05:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-04T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-26T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Knodl added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-27T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 offered by Senator Jacque,2023-04-12T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Sortwell,2023-11-06T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Insurance, Ayes 11, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2023-09-29T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Campaigns and Elections, Ayes 7, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Read and referred to committee on Senate Organization,2023-04-20T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-04-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a cosponsor,2023-08-01T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 7, Noes 0",2023-09-28T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a coauthor,2023-05-03T05:00:00+00:00,[],WI,2023 +"Representatives Emerson, Jacobson and Ratcliff added as coauthors",2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Moses added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-11-06T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-31T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Macco,2024-01-19T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Tomczyk,2023-11-07T06:00:00+00:00,[],WI,2023 +Representative Snodgrass added as a cosponsor,2023-03-27T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Assembly,2023-03-15T05:00:00+00:00,['receipt'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Behnke,2023-05-17T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Senator Cabral-Guevara added as a cosponsor,2023-11-01T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-13T05:00:00+00:00,[],WI,2023 +Representative Ohnstad added as a coauthor,2023-04-19T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-06-08T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Clancy added as a coauthor,2023-05-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-24T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Colleges and Universities, Ayes 14, Noes 0",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-10-24T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +Representative Bare added as a coauthor,2024-04-19T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-05-10T05:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Representative Mursau added as a cosponsor,2023-09-19T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-11-17T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-23T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-03-10T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2023-11-10T06:00:00+00:00,['amendment-passage'],WI,2023 +Assembly Amendment 1 offered by Representative Shelton,2023-05-24T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Haywood added as a coauthor,2023-04-19T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Campaigns and Elections, Ayes 9, Noes 0",2023-11-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative C. Anderson added as a cosponsor,2023-03-01T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Callahan withdrawn as a coauthor,2023-12-19T06:00:00+00:00,['withdrawal'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Representatives Plumer and Conley added as cosponsors,2024-01-18T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Government Accountability and Oversight, Ayes 7, Noes 0",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on State Affairs, Ayes 13, Noes 1",2023-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Economic Development and Technical Colleges, Ayes 4, Noes 2",2023-05-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Schutt added as a coauthor,2023-11-21T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on State Affairs, Ayes 13, Noes 1",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-12-15T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 9, Noes 5",2023-03-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2024-03-06T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Joers added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-28T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-20T05:00:00+00:00,['receipt'],WI,2023 +Adopted,2023-11-14T06:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Mental Health and Substance Abuse Prevention, Ayes 8, Noes 4",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-04-13T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Clancy added as a cosponsor,2024-02-05T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2023-05-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-10-10T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Licensing, Constitution and Federalism, Ayes 3, Noes 2",2023-10-09T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-05-10T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-09-28T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Ballweg added as a coauthor,2023-10-05T05:00:00+00:00,[],WI,2023 +Representative Conley withdrawn as a cosponsor,2024-02-12T06:00:00+00:00,['withdrawal'],WI,2023 +Public hearing held,2023-12-12T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-05-10T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Agard added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Gundrum added as a cosponsor,2023-04-19T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-04T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-24T06:00:00+00:00,['receipt'],WI,2023 +"Decision of the Chair stands as the judgment of the Senate, Ayes 21, Noes 11",2023-01-17T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-18T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-01-03T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Macco added as a cosponsor,2023-09-13T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-04T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2023-10-04T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Labor and Integrated Employment, Ayes 5, Noes 3",2023-04-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-02-21T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-01T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-06T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Environment, Ayes 9, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on State Affairs, Ayes 9, Noes 3",2023-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Spreitzer added as a cosponsor,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Schraa added as a coauthor,2023-10-12T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-10-13T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Andraca added as a coauthor,2024-03-18T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-06T06:00:00+00:00,[],WI,2023 +Senator Ballweg added as a coauthor,2023-10-18T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:05 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-01T05:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-03-24T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-22-2023 by Committee on Rules,2023-03-14T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Sapik,2024-02-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-21T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Ayes 4, Noes 2",2023-10-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Labor and Integrated Employment, Ayes 5, Noes 3",2024-01-25T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-01-31T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Testin,2024-01-09T06:00:00+00:00,[],WI,2023 +Withdrawn from joint committee on Finance and referred to committee on State Affairs pursuant to Assembly Rule 42 (3)(c),2023-10-18T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Krug,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Green added as a coauthor,2023-11-28T06:00:00+00:00,[],WI,2023 +Senate Amendment 2 offered by Senator Tomczyk,2023-08-22T05:00:00+00:00,[],WI,2023 +Representative Conley added as a coauthor,2023-09-06T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-05T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Subeck added as a coauthor,2023-10-11T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-06T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-11T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Michalski,2023-10-31T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Environment, Ayes 9, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-04-04T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-01T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2023-10-04T05:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Conley added as a cosponsor,2023-09-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-03T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 7, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 offered by Senator Wanggaard,2023-12-13T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-12-13T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:57 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-08T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Representatives O'Connor and Michalski added as coauthors,2023-06-08T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 11, Noes 4",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-05-17T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-03-05T06:00:00+00:00,[],WI,2023 +Made a special order of business at 11:01 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-19T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2024-02-02T06:00:00+00:00,[],WI,2023 +Senator Cowles added as a coauthor,2024-02-06T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-19T06:00:00+00:00,[],WI,2023 +Adopted by unanimous rising vote,2024-01-16T06:00:00+00:00,['passage'],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-10-10T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-03-06T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-04-26T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-05T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 2 offered by Representative Wichgers,2023-12-18T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2023-05-08T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Adopted,2023-04-25T05:00:00+00:00,['passage'],WI,2023 +Received from Assembly,2023-04-26T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2023-04-19T05:00:00+00:00,[],WI,2023 +Deposited in the office of the Secretary of State on 6-16-2023,2023-06-16T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Sporting Heritage, Ayes 6, Noes 4",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Government Operations, Ayes 5, Noes 0",2024-02-06T06:00:00+00:00,['amendment-passage'],WI,2023 +Assembly Amendment 2 offered by Representative Goyke,2023-09-18T05:00:00+00:00,[],WI,2023 +Senator Agard added as a cosponsor,2023-10-17T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Behnke added as a coauthor,2024-02-12T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Brooks,2023-09-13T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 10, Noes 5",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-06-08T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-06T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-29T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 14, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-01-25T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 offered by Senator Smith,2024-02-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Representative Bare added as a coauthor,2024-01-22T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 8, Noes 0",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-12-14T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Agriculture, Ayes 14, Noes 0",2023-04-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Brooks,2023-06-05T05:00:00+00:00,[],WI,2023 +Representative Brooks added as a coauthor,2024-01-03T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Government Operations, Ayes 3, Noes 2",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Representative Ratcliff added as a coauthor,2024-01-08T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-05-31T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-09-06T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-03-15T05:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Representatives Dittrich and Shelton added as coauthors,2024-01-17T06:00:00+00:00,[],WI,2023 +Laid on the table,2023-04-25T05:00:00+00:00,['deferral'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Campaigns and Elections, Ayes 8, Noes 0",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-12-20T06:00:00+00:00,[],WI,2023 +"Report adoption as amended recommended by Committee on Universities and Revenue, Ayes 5, Noes 3",2024-02-05T06:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a coauthor,2023-08-01T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Mental Health and Substance Abuse Prevention, Ayes 12, Noes 0",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Hurd added as a coauthor,2023-09-21T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Consumer Protection, Ayes 7, Noes 0",2023-05-31T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 8, Noes 7",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Drake added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Economic Development and Technical Colleges, Ayes 4, Noes 2",2023-05-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Schraa added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 1 offered by Representatives Oldenburg, Novak, Tranel, Plumer and Mursau",2023-09-14T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:02 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-04-18T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-30T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 5, Noes 2",2024-02-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-10-11T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Callahan,2024-02-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-06T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-05-11T05:00:00+00:00,[],WI,2023 +Representatives Michalski and Rozar added as coauthors,2024-01-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-13T05:00:00+00:00,[],WI,2023 +Representative Donovan added as a coauthor,2023-04-26T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 2 recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Magnafici added as a coauthor,2023-05-30T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-21T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-15T05:00:00+00:00,['receipt'],WI,2023 +Senator Cabral-Guevara added as a coauthor,2023-11-01T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Stroebel,2023-06-23T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-08-08T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Representatives Conley, Madison, Palmeri and Subeck withdrawn as cosponsors",2024-02-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-02-07T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Ayes 5, Noes 0",2024-02-06T06:00:00+00:00,['amendment-passage'],WI,2023 +Assembly Amendment 1 offered by Representative Brooks,2023-06-05T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-06T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on State Affairs, Ayes 8, Noes 5",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Insurance, Ayes 8, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Jacobson added as a coauthor,2024-02-15T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Zimmerman,2023-09-20T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-01-29T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Adopted,2023-06-21T05:00:00+00:00,['passage'],WI,2023 +Available for scheduling,2024-01-25T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-06-21T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-06-21T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Made a special order of business at 10:01 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator James,2023-10-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Read a third time and passed, Ayes 91, Noes 2",2023-06-21T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Local Government, Ayes 12, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +"Assembly Amendment 1 offered by Representatives Kurtz, O'Connor and Gundrum",2023-11-28T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Campaigns and Elections, Ayes 9, Noes 0",2023-11-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-10-31T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:15 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Workforce Development and Economic Opportunities, Ayes 10, Noes 0",2023-11-03T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2024-01-26T06:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 14, Noes 0",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:21 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Stroebel,2024-01-16T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-25T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a coauthor,2023-04-25T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Jobs, Economy and Small Business Development, Ayes 11, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Corrections, Ayes 12, Noes 1",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:42 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +LRB correction (Assembly Amendment 1),2024-01-31T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Utilities and Technology, Ayes 5, Noes 0",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Campaigns and Elections, Ayes 5, Noes 3",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 10:28 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 5, Noes 2",2024-02-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Conley added as a coauthor,2024-01-11T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Stroebel,2024-01-16T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-16T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Snyder,2024-01-26T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2023-08-29T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-06-08T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Stroebel,2023-04-24T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Representative Andraca added as a coauthor,2024-03-18T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Cabral-Guevara,2023-04-07T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +LRB correction (Senate Amendment 1),2024-02-20T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-31T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-04T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Ways and Means, Ayes 8, Noes 4",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-05T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Utilities and Technology, Ayes 3, Noes 2",2023-12-21T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Moses added as a coauthor,2024-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +"Representatives J. Anderson, Joers, Nedweski, Goeben and Michalski added as coauthors",2023-06-08T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Financial Institutions, Ayes 9, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2023-10-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +LRB correction (Senate Substitute Amendment 1),2024-03-18T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-06T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Sporting Heritage, Ayes 12, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Bare added as a coauthor,2023-03-20T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +LRB correction,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2023-10-24T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Regulatory Licensing Reform, Ayes 5, Noes 3",2023-06-01T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 2 offered by Representative Novak,2024-02-15T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-04-18T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-10-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Agency briefing held by joint committee on Finance,2023-03-30T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-05T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +"Joint Committee for Review of Administrative Rules report received pursuant to s. 227.26(2)(g), Wisconsin Statutes",2023-03-13T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-04T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Snodgrass added as a cosponsor,2023-06-08T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2023-11-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Public hearing held,2023-06-08T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-07T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Health, Ayes 6, Noes 0",2023-12-01T06:00:00+00:00,['amendment-passage'],WI,2023 +Available for scheduling,2023-10-05T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-03-03T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Economic Development and Technical Colleges, Ayes 4, Noes 2",2023-05-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 3, Noes 2",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-07T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 4, Noes 1",2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2023-03-14T05:00:00+00:00,['reading-2'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 15, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-25T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2024-01-31T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-09-19T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-08T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Emerson added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Vining added as a coauthor,2024-03-28T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-05-22T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-02-21T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 3 offered by Senator Knodl,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Universities and Revenue, Ayes 5, Noes 3",2024-02-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Macco,2024-01-23T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-15T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-16T06:00:00+00:00,['receipt'],WI,2023 +Representative O'Connor added as a cosponsor,2023-12-28T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-11T05:00:00+00:00,['receipt'],WI,2023 +Representative J. Anderson added as a cosponsor,2024-01-03T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2023-04-13T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-06T06:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-01-04T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Allen added as a cosponsor,2023-05-11T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Palmeri,2024-02-13T06:00:00+00:00,[],WI,2023 +Laid on table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +Representative Joers withdrawn as a coauthor,2024-02-13T06:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 10, Noes 5",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Tourism, Ayes 11, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-05-23T05:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Senator Spreitzer added as a cosponsor,2024-03-11T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-03-30T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representatives Emerson and Ratcliff added as coauthors,2023-11-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +LRB correction (Assembly Substitute Amendment 1),2023-05-23T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Penterman,2024-02-12T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Energy and Utilities, Ayes 12, Noes 4",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Adopted,2023-11-14T06:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Joers and Andraca added as coauthors,2023-06-08T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-20T05:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Withdrawn from joint committee on Finance and referred to committee on Rules pursuant to Assembly Rule 42 (3)(c),2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-10-09T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Judiciary, Ayes 6, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Behnke,2024-01-23T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-04-12T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Quinn,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 2 offered by Representative Novak,2024-01-18T06:00:00+00:00,[],WI,2023 +Read a second time,2023-03-14T05:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2024-02-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 3, Noes 2",2024-02-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Available for scheduling,2023-10-10T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-06T06:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-11-07T06:00:00+00:00,[],WI,2023 +Adopted,2023-03-14T05:00:00+00:00,['passage'],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-12T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 8, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-11T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Hutton,2023-12-18T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Tusler,2024-01-31T06:00:00+00:00,[],WI,2023 +Adopted,2023-10-17T05:00:00+00:00,['passage'],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 3",2023-03-16T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2023-11-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 3 offered by Representative Born,2024-02-07T06:00:00+00:00,[],WI,2023 +Adopted,2023-05-17T05:00:00+00:00,['passage'],WI,2023 +Public hearing held,2023-05-03T05:00:00+00:00,[],WI,2023 +Representative Baldeh withdrawn as a coauthor,2023-04-24T05:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Goeben,2023-11-03T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-05-17T05:00:00+00:00,['receipt'],WI,2023 +Senator Cowles added as a cosponsor,2024-01-09T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 0",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-06-01T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-01T05:00:00+00:00,[],WI,2023 +"Report adoption recommended by Committee on Campaigns and Elections, Ayes 4, Noes 3",2023-11-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Spiros added as a coauthor,2023-09-22T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Wittke,2024-02-08T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Senate Amendment 2 offered by Senator Wimberger,2024-02-07T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator James,2023-11-02T05:00:00+00:00,[],WI,2023 +Senator Cowles added as a cosponsor,2024-02-06T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-06T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-05-17T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-05-26T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-19T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator LeMahieu,2024-02-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 2 offered by Representative Summerfield,2023-08-03T05:00:00+00:00,[],WI,2023 +"Report passage, with emergency statement attached, pursuant to s.16.47 (2), Wisconsin Statutes, recommended by Joint Committee on Finance, Ayes 16, Noes 0",2023-03-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-11-01T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-09-08T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Neylon,2024-02-05T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-06T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Education, Ayes 14, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Joers added as a cosponsor,2023-08-18T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-28T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Assembly Amendment 3 offered by Representative Schraa,2024-02-12T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-12-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-08T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator James,2023-09-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-15T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Transportation, Ayes 13, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-08T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 14, Noes 1",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Spreitzer added as a cosponsor,2023-09-05T05:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a coauthor,2023-08-23T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Dallman,2024-02-14T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Conley added as a cosponsor,2023-10-12T05:00:00+00:00,[],WI,2023 +Representative Palmeri added as a coauthor,2023-05-03T05:00:00+00:00,[],WI,2023 +Representative Jacobson withdrawn as a coauthor,2023-08-07T05:00:00+00:00,['withdrawal'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Ortiz-Velez,2023-10-02T05:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Joers added as a cosponsor,2023-08-25T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Education, Ayes 15, Noes 0",2024-02-20T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-01-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Spiros,2023-10-09T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-06T06:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Transportation, Ayes 9, Noes 4",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Andraca added as a coauthor,2023-06-20T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-09-07T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +Senator Carpenter added as a cosponsor,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Campaigns and Elections, Ayes 9, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 offered by Senator Knodl,2024-01-17T06:00:00+00:00,[],WI,2023 +LRB correction,2023-11-08T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Ways and Means, Ayes 7, Noes 0",2024-01-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-06-02T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on State Affairs, Ayes 14, Noes 0",2024-01-22T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Environment, Ayes 8, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-02-26T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 2 offered by Representative Schutt,2023-12-29T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 12, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 14, Noes 0",2023-12-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Made a special order of business at 10:09 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Representative Goeben added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-05T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Melotik,2024-01-12T06:00:00+00:00,[],WI,2023 +Read,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Brandtjen added as a coauthor,2024-01-23T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-11T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Universities and Revenue, Ayes 5, Noes 3",2023-09-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on table,2023-10-17T05:00:00+00:00,['deferral'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-11-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 14, Noes 0",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-10-12T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative Andraca added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-01T06:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Children and Families, Ayes 11, Noes 1",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Hurd added as a cosponsor,2023-09-21T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Sporting Heritage, Ayes 7, Noes 5",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +"Report adoption recommended by Committee on Judiciary, Ayes 6, Noes 1",2023-01-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Emerson added as a cosponsor,2023-09-12T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Housing, Rural Issues and Forestry, Ayes 4, Noes 1",2023-06-09T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Jacque added as a cosponsor,2023-11-15T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-09T06:00:00+00:00,[],WI,2023 +Representative Hong added as a cosponsor,2023-05-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +"Representatives Emerson, Stubbs and O'Connor added as coauthors",2023-05-17T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-08-15T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Marklein,2023-09-13T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Quinn,2023-06-07T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Campaigns and Elections, Ayes 8, Noes 1",2023-11-03T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-06-13T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Quinn,2023-06-05T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-12-19T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Campaigns and Elections, Ayes 5, Noes 3",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 9, Noes 6",2024-01-30T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-04-18T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Donovan added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Consumer Protection, Ayes 6, Noes 2",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-06-15T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report passage as amended recommended by Committee on Licensing, Constitution and Federalism, Ayes 3, Noes 2",2023-08-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-01-08T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 13, Noes 0",2023-12-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-24T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-04T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator L. Johnson,2024-02-22T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:12 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Brooks,2024-01-11T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 6, Noes 5",2024-02-02T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-25T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a coauthor,2023-05-17T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-04-05T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-06T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2023-02-28T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a cosponsor,2023-10-23T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Quinn,2023-06-29T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Environment, Ayes 5, Noes 3",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Wittke,2023-09-06T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Colleges and Universities, Ayes 10, Noes 3",2023-04-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Conley added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Agard added as a coauthor,2023-03-27T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-12-01T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-01-31T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Deposited in the office of the Secretary of State on 2-26-2024,2024-02-26T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 10, Noes 5",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-04-13T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-18T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-12-19T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-05T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-13T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 3, Noes 2",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative VanderMeer,2024-02-05T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 12, Noes 0",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Education, Ayes 14, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Madison added as a cosponsor,2023-09-20T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-22-2023 by Committee on Rules,2023-03-14T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Sporting Heritage, Ayes 12, Noes 0",2023-12-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Health, Ayes 6, Noes 0",2023-10-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read and referred to committee on Senate Organization,2023-06-23T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-01-31T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2023-09-06T05:00:00+00:00,['amendment-passage'],WI,2023 +Available for scheduling,2023-11-02T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Veterans and Military Affairs, Ayes 13, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Withdrawn from committee on Government Accountability and Oversight and referred to committee on State Affairs pursuant to Assembly Rule 42 (3)(c),2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Environment, Ayes 8, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Jobs, Economy and Small Business Development, Ayes 11, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 10, Noes 5",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Shankland added as a cosponsor,2023-05-18T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Donovan,2023-03-03T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 2 offered by Representatives Mursau and Swearingen,2023-11-14T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Cabral-Guevara,2024-01-18T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-17T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 8, Noes 7",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-03-14T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 8, Noes 0",2023-08-31T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-05-12T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Education, Ayes 5, Noes 2",2023-10-03T05:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2023-10-16T05:00:00+00:00,[],WI,2023 +Representatives Vining and Tranel added as coauthors,2024-01-12T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a cosponsor,2023-10-18T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-12-01T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a coauthor,2024-03-18T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-06T05:00:00+00:00,[],WI,2023 +Report correctly engrossed on 1-17-2024,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-18T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-01-10T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-04-13T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Workforce Development and Economic Opportunities, Ayes 10, Noes 5",2023-04-18T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Carpenter added as a cosponsor,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Melotik added as a cosponsor,2024-01-08T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-04-19T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-13T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-10-17T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-03-28T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Stubbs added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Education, Ayes 10, Noes 4",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Insurance and Small Business, Ayes 5, Noes 0",2023-09-28T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-11T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-20T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Conley added as a cosponsor,2023-05-03T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Health, Ayes 6, Noes 0",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-01-22T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Ballweg,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative McGuire added as a cosponsor,2024-03-13T05:00:00+00:00,[],WI,2023 +Senator Hutton added as a coauthor,2023-03-16T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-11T05:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a coauthor,2024-01-29T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Refused to withdraw from committee on Health, Ayes 10, Noes 22",2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Housing and Real Estate, Ayes 10, Noes 5",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-01T05:00:00+00:00,[],WI,2023 +Senator Carpenter added as a cosponsor,2024-01-11T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-06-14T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Brandtjen added as a coauthor,2023-03-07T06:00:00+00:00,[],WI,2023 +Referred to calendar of 10-12-2023 pursuant to Assembly Rule 45 (1),2023-10-10T05:00:00+00:00,['referral'],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-11-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly,2023-05-17T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-08-22T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-11-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Fiscal estimate received,2023-05-11T05:00:00+00:00,['receipt'],WI,2023 +LRB correction,2023-11-03T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 13, Noes 0",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Knodl,2024-02-16T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-01-05T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Regulatory Licensing Reform, Ayes 5, Noes 4",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 9, Noes 4",2023-12-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-25T06:00:00+00:00,[],WI,2023 +Senator Hesselbein added as a coauthor,2023-09-27T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Wanggaard,2024-02-08T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Palmeri added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Energy and Utilities, Ayes 14, Noes 1",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-11-10T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage recommended by Committee on Ways and Means, Ayes 11, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Made a special order of business at 10:36 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-22T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-26T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-06-21T05:00:00+00:00,[],WI,2023 +"Representatives Palmeri, McGuire, Rettinger, Schutt, Cabrera and Subeck added as cosponsors",2023-11-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-11T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative C. Anderson added as a coauthor,2023-12-13T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2023-05-30T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-03-01T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Ways and Means, Ayes 11, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Maxey,2024-02-19T06:00:00+00:00,[],WI,2023 +Representative Kurtz added as a coauthor,2023-05-10T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-10T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Ayes 4, Noes 1",2024-02-06T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Conley added as a cosponsor,2023-10-25T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-29T05:00:00+00:00,['receipt'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2023-03-16T05:00:00+00:00,['amendment-passage'],WI,2023 +Deposited in the office of the Secretary of State on 10-16-2023,2023-10-16T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Insurance and Small Business, Ayes 4, Noes 0",2023-12-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Shankland added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-06T05:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2023-04-25T05:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-06-21T05:00:00+00:00,[],WI,2023 +Representative Green added as a cosponsor,2023-12-28T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-16T05:00:00+00:00,['receipt'],WI,2023 +Representative Baldeh added as a cosponsor,2023-12-13T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Made a special order of business at 10:27 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-08-23T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Magnafici,2024-01-08T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-04T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Financial Institutions, Ayes 7, Noes 3",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-28T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Duchow,2023-06-02T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2023-04-10T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Edming added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-06T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-01-22T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-11-06T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-06T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-29T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 3, Noes 2",2024-01-05T06:00:00+00:00,['amendment-passage'],WI,2023 +Assembly Amendment 1 offered by Representative Brooks,2023-06-05T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Health, Ayes 6, Noes 0",2023-10-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 11, Noes 5",2023-04-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 3",2023-01-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Agriculture, Ayes 14, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Health, Ayes 6, Noes 0",2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +"Referred to joint survey committee on Tax Exemptions pursuant to s. 13.52, Wisconsin Statutes",2023-05-08T05:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-12-20T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 11, Noes 5",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-08-23T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 2 offered by Senator Cowles,2024-01-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Moore Omokunde added as a coauthor,2023-08-10T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-01-30T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 10, Noes 5",2023-10-10T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Bodden added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Environment, Ayes 9, Noes 0",2023-11-01T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-01-19T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Universities and Revenue, Ayes 7, Noes 1",2024-01-25T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage recommended by Committee on Corrections, Ayes 12, Noes 1",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-09-28T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-20T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-05T05:00:00+00:00,[],WI,2023 +Representative Donovan added as a coauthor,2023-04-26T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Senator James added as a coauthor,2023-09-05T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 11, Noes 4",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +Adopted,2023-03-22T05:00:00+00:00,['passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2023-11-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-10T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-11-28T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Universities and Revenue, Ayes 8, Noes 0",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 2 offered by Senator Ballweg,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Wichgers added as a coauthor,2023-09-06T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Goyke,2024-03-25T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Referred to committee on Rules,2023-03-08T06:00:00+00:00,['referral-committee'],WI,2023 +Representative J. Anderson added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Representative O'Connor added as a coauthor,2024-01-30T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-04-13T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Billings added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report passage recommended by Committee on Tourism, Ayes 11, Noes 0",2023-09-27T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Myers added as a coauthor,2024-02-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:11 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-11T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Licensing, Constitution and Federalism, Ayes 5, Noes 0",2023-10-09T05:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Children and Families, Ayes 12, Noes 0",2024-02-20T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-16T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-11-30T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-31T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative Snodgrass added as a cosponsor,2023-06-08T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Cabral-Guevara,2024-01-04T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Regulatory Licensing Reform, Ayes 9, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-09-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Myers added as a cosponsor,2024-02-02T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Callahan,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-04T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Sortwell,2023-03-02T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-03-15T05:00:00+00:00,[],WI,2023 +Assembly Amendment 3 offered by Representative Rozar,2024-01-23T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Representative Allen added as a coauthor,2024-02-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-09-28T05:00:00+00:00,[],WI,2023 +Representative Jacobson withdrawn as a cosponsor,2024-02-14T06:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Goeben,2023-09-11T05:00:00+00:00,[],WI,2023 +Representative Sinicki withdrawn as a cosponsor,2024-02-07T06:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2023-11-01T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-05-23T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Callahan added as a cosponsor,2023-03-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Joers and J. Anderson added as cosponsors,2023-06-08T05:00:00+00:00,[],WI,2023 +Representative Doyle added as a coauthor,2024-02-07T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-10-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2023-10-24T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Adopted,2023-09-14T05:00:00+00:00,['passage'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-01-05T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-25T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 13, Noes 2",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-06-15T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 13, Noes 1",2023-06-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-01-19T06:00:00+00:00,['receipt'],WI,2023 +Representative O'Connor added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Regulatory Licensing Reform, Ayes 5, Noes 3",2023-06-01T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Penterman added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-11-09T06:00:00+00:00,[],WI,2023 +Representative Snodgrass added as a cosponsor,2023-06-08T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Testin,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 3, Noes 2",2023-11-29T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-29T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Brooks added as a coauthor,2023-08-30T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-08-23T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2024-03-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Vining added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Shankland added as a coauthor,2024-01-19T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 9, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Allen added as a cosponsor,2023-04-07T05:00:00+00:00,[],WI,2023 +Representative Moses added as a cosponsor,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 4, Noes 1",2024-03-06T06:00:00+00:00,['amendment-passage'],WI,2023 +Public hearing held,2024-03-06T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Economic Development and Technical Colleges, Ayes 4, Noes 2",2023-05-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-16T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-03-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Moses added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-01T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Utilities and Technology, Ayes 4, Noes 1",2023-11-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Mursau added as a coauthor,2023-09-19T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Representative Bare added as a cosponsor,2023-03-20T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-07T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-31T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-04-19T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Labor and Integrated Employment, Ayes 5, Noes 3",2024-01-25T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-03-24T05:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 1 offered by Senator Stroebel,2023-08-31T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-10T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Environment, Ayes 8, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-05-10T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Family Law, Ayes 5, Noes 3",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 3 offered by Representative Wichgers,2024-02-12T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Local Government, Ayes 12, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-03-16T05:00:00+00:00,[],WI,2023 +Representative Callahan withdrawn as a cosponsor,2023-12-19T06:00:00+00:00,['withdrawal'],WI,2023 +"Report passage recommended by Committee on Colleges and Universities, Ayes 10, Noes 4",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Made a special order of business at 10:47 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2023-05-23T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2024-03-06T06:00:00+00:00,['amendment-passage'],WI,2023 +Assembly Amendment 1 offered by Representative Novak,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-11T05:00:00+00:00,[],WI,2023 +Representative Macco added as a coauthor,2023-05-31T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-30T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-28T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Tittl,2023-03-22T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Referred to calendar of 10-12-2023 pursuant to Assembly Rule 45 (1),2023-10-10T05:00:00+00:00,['referral'],WI,2023 +Public hearing held,2023-06-08T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Colleges and Universities, Ayes 9, Noes 5",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Children and Families, Ayes 12, Noes 0",2024-02-20T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-10-12T05:00:00+00:00,['reading-2'],WI,2023 +Representative Madison added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 3, Noes 2",2023-06-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 3, Noes 2",2024-03-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-09-11T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-10T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Tomczyk,2024-01-08T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Ways and Means, Ayes 10, Noes 0",2023-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage recommended by Committee on Government Accountability and Oversight, Ayes 7, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 2 to Assembly Substitute Amendment 1 offered by Representative Callahan,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative Nedweski added as a coauthor,2023-06-06T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-04T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-10-19T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-09T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Housing and Real Estate, Ayes 13, Noes 1",2023-06-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2023-11-02T05:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2024-02-21T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Licensing, Constitution and Federalism, Ayes 5, Noes 0",2023-10-09T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Ballweg added as a cosponsor,2023-10-05T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-04T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Armstrong,2023-12-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Universities and Revenue, Ayes 9, Noes 0",2023-03-20T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-02-29T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +LRB correction (Assembly Amendment 1),2023-09-11T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Campaigns and Elections, Ayes 8, Noes 0",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-03-11T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-03-07T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Spreitzer added as a coauthor,2024-03-11T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator James,2023-09-20T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Family Law, Ayes 6, Noes 3",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Representative Joers added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 offered by Senator James,2023-11-09T06:00:00+00:00,[],WI,2023 +Representative Vining added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2023-10-24T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-05-26T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Joers added as a cosponsor,2023-06-13T05:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-06-09T05:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 9, Noes 3",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-06-01T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Stubbs added as a coauthor,2023-06-01T05:00:00+00:00,[],WI,2023 +Representative Penterman withdrawn as a coauthor,2023-08-24T05:00:00+00:00,['withdrawal'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2023-09-20T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative Jacobson added as a cosponsor,2023-12-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-05T05:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a coauthor,2023-03-29T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Education, Ayes 10, Noes 5",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative O'Connor added as a cosponsor,2023-04-13T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Feyen,2023-03-16T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 4, Noes 1",2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Available for scheduling,2023-10-12T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Regulatory Licensing Reform, Ayes 9, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-01-25T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Veterans and Military Affairs, Ayes 13, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-23T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Economic Development and Technical Colleges, Ayes 4, Noes 2",2023-05-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Carpenter added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Moses added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2023-09-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 2 offered by Senator Cabral-Guevara,2024-01-04T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-13T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-06T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative Nedweski added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-30T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Local Government, Ayes 12, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 14, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-11-01T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-09-27T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-05-23T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-24T05:00:00+00:00,[],WI,2023 +Representatives Melotik and Steffen added as coauthors,2024-02-19T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Bare added as a coauthor,2024-04-19T05:00:00+00:00,[],WI,2023 +Representatives Vining and Joers added as coauthors,2024-02-08T06:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-04-20T05:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 offered by Representative Schraa,2024-02-12T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-09-08T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Moore Omokunde added as a coauthor,2024-01-29T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 to Senate Substitute Amendment 1 recommended by Committee on Health, Ayes 6, Noes 0",2024-03-06T06:00:00+00:00,['amendment-passage'],WI,2023 +Available for scheduling,2023-11-29T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Read and referred to committee on Assembly Organization,2023-06-29T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-01-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Agriculture, Ayes 14, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Kurtz added as a cosponsor,2023-05-10T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Goeben,2023-09-08T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Cabral-Guevara withdrawn as a cosponsor,2023-12-11T06:00:00+00:00,['withdrawal'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2024-03-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +"Refused to amend the motion to refer to the committee on Administrative Rules to refer to the committee on Mental Health, Substance Abuse, Children and Families, Ayes 11, Noes 20",2023-03-22T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator James,2023-08-28T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 14, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Macco added as a coauthor,2023-10-13T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-09-12T05:00:00+00:00,[],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2023-06-13T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 14, Noes 1",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Transportation, Ayes 14, Noes 0",2023-09-28T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Consumer Protection, Ayes 6, Noes 3",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Michalski added as a coauthor,2023-06-06T05:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a cosponsor,2023-11-20T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Krug,2023-11-06T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Kitchens,2023-11-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-28T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Available for scheduling,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2023-09-07T05:00:00+00:00,[],WI,2023 +Representative Pronschinske added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-01T05:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 offered by Representative Petersen,2023-06-14T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 3, Noes 2",2023-11-29T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 10, Noes 1",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-06-02T05:00:00+00:00,[],WI,2023 +Representative Drake added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Government Operations, Ayes 3, Noes 2",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Public hearing held,2024-02-21T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 4, Noes 1",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Senator Cowles added as a coauthor,2024-01-09T06:00:00+00:00,[],WI,2023 +Deposited in the office of the Secretary of State on 2-1-2024,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-15T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 3, Noes 2",2024-01-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Green added as a cosponsor,2023-12-28T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 3, Noes 2",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-16T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Education, Ayes 4, Noes 2",2024-02-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-06-02T05:00:00+00:00,['amendment-passage'],WI,2023 +Available for scheduling,2024-02-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Local Government, Ayes 12, Noes 0",2024-01-22T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Environment, Ayes 9, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Housing and Real Estate, Ayes 10, Noes 5",2024-01-30T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 2 offered by Senator Cabral-Guevara,2024-01-18T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-11T05:00:00+00:00,[],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Public hearing held,2023-04-11T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-07-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-12T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-23T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Feyen,2024-03-05T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-06-21T05:00:00+00:00,[],WI,2023 +Representative Vining added as a coauthor,2024-02-12T06:00:00+00:00,[],WI,2023 +Representative Plumer added as a coauthor,2024-01-18T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 5, Noes 2",2023-10-03T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 offered by Senator Knodl,2024-02-12T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on State Affairs, Ayes 9, Noes 3",2023-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Economic Development and Technical Colleges, Ayes 5, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2023-12-01T06:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 offered by Representative Zimmerman,2023-10-31T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-02T05:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-10-31T05:00:00+00:00,['receipt'],WI,2023 +Senator Spreitzer added as a cosponsor,2023-06-07T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Universities and Revenue, Ayes 7, Noes 1",2024-01-25T06:00:00+00:00,['amendment-passage'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Agard added as a coauthor,2023-06-01T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-11T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 1 offered by Representatives Baldeh, Conley, C. Anderson and Ratcliff",2023-05-11T05:00:00+00:00,[],WI,2023 +Referred to calendar of 10-12-2023 pursuant to Assembly Rule 45 (1),2023-10-10T05:00:00+00:00,['referral'],WI,2023 +Senator Wanggaard added as a cosponsor,2024-01-31T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2023-05-17T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Environment, Ayes 9, Noes 0",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representatives Jacobson and O'Connor added as cosponsors,2023-05-04T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 11, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-10-11T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 2 offered by Representative Tusler,2024-01-31T06:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-05-24T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Energy and Utilities, Ayes 11, Noes 5",2023-06-14T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-13T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Ways and Means, Ayes 9, Noes 3",2023-09-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Transportation, Ayes 9, Noes 4",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Wittke added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2023-08-09T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator James,2023-09-20T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-13T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Health, Ayes 6, Noes 0",2023-10-13T05:00:00+00:00,['amendment-passage'],WI,2023 +Available for scheduling,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-06T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Representative Dittrich added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-07T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-12-01T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 12, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-07T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Campaigns and Elections, Ayes 5, Noes 3",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Representative Stubbs added as a cosponsor,2023-09-22T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-24T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-02T05:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 11, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-09-28T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 7, Noes 2",2023-11-03T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Sinicki withdrawn as a coauthor,2023-09-08T05:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-12-01T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Housing and Real Estate, Ayes 10, Noes 5",2024-01-30T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 10, Noes 5",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2023-10-04T05:00:00+00:00,[],WI,2023 +Representative Drake added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Utilities and Technology, Ayes 3, Noes 2",2023-05-26T05:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-05-17T05:00:00+00:00,[],WI,2023 +Read,2023-11-07T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:08 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-30T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-07-18T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +Representative Brandtjen added as a coauthor,2023-03-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-08-31T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:04 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Cabral-Guevara,2023-05-10T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Workforce Development and Economic Opportunities, Ayes 15, Noes 0",2024-01-25T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 4-25-2023 by Committee on Rules,2023-04-20T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 9, Noes 5",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Vining added as a cosponsor,2024-03-28T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Campaigns and Elections, Ayes 5, Noes 3",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Moore Omokunde added as a coauthor,2023-05-23T05:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 12, Noes 0",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-03-07T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 12, Noes 1",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Available for scheduling,2024-01-12T06:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 14, Noes 1",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-05-10T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-04T05:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 11, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Carpenter added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-06T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-04-10T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2023-01-19T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Marklein,2023-10-30T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Read and referred to committee on Senate Organization,2023-09-14T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Received from Senate,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-05-17T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +Referred to committee on Campaigns and Elections,2023-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2023-11-06T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-06-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-06T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-22-2023 by Committee on Rules,2023-03-14T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-04T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-14T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 1",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-20T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Spiros,2023-08-01T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Universities and Revenue, Ayes 5, Noes 3",2024-01-25T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Read and referred to committee on Senate Organization,2023-05-24T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 3, Noes 2",2023-06-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Jacobson withdrawn as a coauthor,2024-02-14T06:00:00+00:00,['withdrawal'],WI,2023 +Assembly Amendment 1 offered by Representative Donovan,2023-10-09T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-01-05T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Dallman,2023-11-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-10T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Health, Ayes 5, Noes 1",2023-12-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 2 offered by Representatives Stubbs and Gundrum,2024-02-06T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-03-08T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-08-30T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2024-01-12T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-05T06:00:00+00:00,[],WI,2023 +Representative Myers added as a cosponsor,2024-02-02T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-08-29T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-15T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Andraca added as a cosponsor,2024-03-15T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-10-26T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Pronschinske,2023-10-16T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-12-19T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-03T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Local Government, Ayes 11, Noes 0",2023-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 15, Noes 0",2024-02-20T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2023-10-18T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 offered by Senator Stafsholt,2024-01-24T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 8, Noes 1",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-04-18T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Shankland added as a coauthor,2024-01-19T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Referred to joint committee on Finance,2024-01-09T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Environment, Ayes 8, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-04T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 9, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +LRB correction (Assembly Amendment 1 to Assembly Amendment 1),2024-01-23T06:00:00+00:00,[],WI,2023 +Representative Shelton added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 14, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-06-02T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-11-16T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-01-12T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +"Report passage as amended recommended by Committee on Children and Families, Ayes 11, Noes 1",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-12-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Jacobson added as a cosponsor,2023-12-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-09T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-05-17T05:00:00+00:00,[],WI,2023 +Made a special order of business at 11:08 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-08-25T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Snodgrass added as a cosponsor,2023-06-08T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2024-01-19T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Consumer Protection, Ayes 6, Noes 3",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on State Affairs, Ayes 9, Noes 5",2023-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Penterman added as a cosponsor,2024-01-26T06:00:00+00:00,[],WI,2023 +Senator Bradley added as a coauthor,2023-10-04T05:00:00+00:00,[],WI,2023 +Placed on calendar 4-25-2023 by Committee on Rules,2023-04-20T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-30T06:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Amendment 1 to Assembly Substitute Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 1",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-08-02T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Workforce Development and Economic Opportunities, Ayes 9, Noes 6",2024-01-25T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on State Affairs, Ayes 6, Noes 5",2024-02-02T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Licensing, Constitution and Federalism, Ayes 3, Noes 2",2024-01-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-04-12T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Universities and Revenue, Ayes 8, Noes 0",2023-09-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +Fiscal estimate received,2023-03-13T05:00:00+00:00,['receipt'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-01-05T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Placed on calendar 9-12-2023 by Committee on Rules,2023-09-07T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-03-15T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-04T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2023-09-06T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative Callahan added as a coauthor,2023-12-11T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Government Operations, Elections and Consumer Protection, Ayes 5, Noes 0",2023-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2023-12-01T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Public hearing held,2023-12-07T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-10-12T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Ballweg,2023-05-22T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2023-09-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Family Law, Ayes 5, Noes 3",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Colleges and Universities, Ayes 10, Noes 5",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly,2023-03-15T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Housing and Real Estate, Ayes 10, Noes 5",2024-01-30T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-10-23T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-06-08T05:00:00+00:00,['referral-committee'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Donovan,2023-04-21T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-10-18T05:00:00+00:00,[],WI,2023 +Representative Stubbs added as a cosponsor,2024-01-09T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Workforce Development and Economic Opportunities, Ayes 10, Noes 0",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-03-28T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-09-28T05:00:00+00:00,[],WI,2023 +Representative Macco added as a cosponsor,2023-05-30T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:29 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-08T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-03-16T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Consumer Protection, Ayes 8, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-30T06:00:00+00:00,[],WI,2023 +Senator Cowles added as a coauthor,2024-02-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 13, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +Available for scheduling,2023-11-10T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-01-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read,2023-03-22T05:00:00+00:00,[],WI,2023 +Representative Joers added as a coauthor,2024-01-12T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-10-12T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Regulatory Licensing Reform, Ayes 5, Noes 4",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-11-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Representatives Steffen and Rettinger added as cosponsors,2023-04-26T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-05-24T05:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 94, Noes 0",2023-06-21T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report passage recommended by Committee on Government Operations, Ayes 3, Noes 2",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-10-03T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Born,2023-03-07T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Public hearing held,2023-11-28T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Committee on Government Operations, Ayes 4, Noes 1",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Campaigns and Elections, Ayes 7, Noes 0",2024-03-14T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Insurance and Small Business, Ayes 4, Noes 0",2023-12-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to joint committee on Finance,2024-01-10T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2023-03-16T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Read a third time and passed, Ayes 94, Noes 0",2023-06-21T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-02T06:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Committee on Agriculture, Ayes 14, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Doyle added as a coauthor,2024-05-22T05:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Subeck,2024-01-16T06:00:00+00:00,[],WI,2023 +"Assembly Amendment 2 offered by Representatives C. Anderson, Baldeh, Conley and Ratcliff",2024-01-12T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Veterans and Military Affairs, Ayes 11, Noes 4",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 12, Noes 1",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 11, Noes 5",2023-04-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-01-12T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Health, Ayes 6, Noes 0",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Licensing, Constitution and Federalism, Ayes 5, Noes 0",2023-03-30T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Tranel,2023-05-31T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Colleges and Universities, Ayes 14, Noes 0",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 14, Noes 0",2023-10-05T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Agriculture, Ayes 14, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +LRB correction (Senate Substitute Amendment 1),2023-04-24T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-26T05:00:00+00:00,[],WI,2023 +LRB correction,2023-11-13T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2023-05-08T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-06-08T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Universities and Revenue, Ayes 5, Noes 3",2024-01-25T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 14, Noes 1",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Schutt added as a cosponsor,2023-10-05T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 6, Noes 2",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Ratcliff added as a cosponsor,2024-01-12T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-06-14T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Local Government, Ayes 12, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +"Referred to Family Law, Ayes 61, Noes 35",2023-03-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 4-25-2023 by Committee on Rules,2023-04-20T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-06-01T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-06-09T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 4, Noes 1",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Education, Ayes 14, Noes 1",2024-02-20T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-12-21T06:00:00+00:00,[],WI,2023 +Representative Bodden added as a cosponsor,2023-10-05T05:00:00+00:00,[],WI,2023 +"Referred to committee on Health, Aging and Long-Term Care",2023-06-07T05:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Executive action taken,2023-03-07T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Universities and Revenue, Ayes 8, Noes 0",2023-09-22T05:00:00+00:00,['amendment-passage'],WI,2023 +Public hearing held by joint committee on Finance,2023-04-05T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2023-03-14T05:00:00+00:00,['reading-2'],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +"Withdrawn from committee on Government Operations and rereferred to committee on Shared Revenue, Elections and Consumer Protection pursuant to Senate Rule 46(2)(c)",2023-07-10T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Representative Conley added as a cosponsor,2023-09-06T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Health, Ayes 5, Noes 1",2023-12-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2023-10-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Joers added as a cosponsor,2024-02-12T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:12 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Michalski added as a coauthor,2023-06-08T05:00:00+00:00,[],WI,2023 +Senator Carpenter added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Hutton,2023-09-07T05:00:00+00:00,[],WI,2023 +"Referred to committee on Administrative Rules, Ayes 20, Noes 11",2023-03-22T05:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-11-20T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-08-15T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-10-06T05:00:00+00:00,[],WI,2023 +"Representatives Joers, Palmeri, Bare, Steffen and Rettinger added as cosponsors",2023-04-26T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-05T06:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2023-11-10T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-07T06:00:00+00:00,[],WI,2023 +Read,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Judiciary, Ayes 5, Noes 1",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Made a special order of business at 10:03 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2023-05-23T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Palmeri added as a coauthor,2023-04-27T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 5, Noes 2",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Drake added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-12-18T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-14T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2023-10-04T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Senator Knodl added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2023-10-04T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2024-01-29T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-05T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Environment, Ayes 6, Noes 3",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative O'Connor added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a coauthor,2023-10-23T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Universities and Revenue, Ayes 7, Noes 1",2023-09-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Ratcliff added as a coauthor,2023-10-23T05:00:00+00:00,[],WI,2023 +Senator Ballweg added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Ayes 5, Noes 1",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Snodgrass added as a coauthor,2023-10-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-09-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-12T05:00:00+00:00,[],WI,2023 +LRB correction (Assembly Substitute Amendment 1),2023-12-19T06:00:00+00:00,[],WI,2023 +Adopted,2023-10-12T05:00:00+00:00,['passage'],WI,2023 +Representative Madison added as a coauthor,2023-12-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +Referred to committee on Rules,2023-04-12T05:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Corrections, Ayes 11, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-25T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-06T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 12, Noes 3",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-10-06T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Campaigns and Elections, Ayes 5, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Moore Omokunde added as a coauthor,2024-01-29T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Neubauer,2023-03-22T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-28T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Agriculture and Tourism, Ayes 7, Noes 1",2024-01-11T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Representative Zimmerman added as a cosponsor,2023-10-19T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Bradley,2024-02-26T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Made a special order of business at 11:00 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-15T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Cowles,2024-02-06T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2024-01-19T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-04-13T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read,2023-11-14T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 5, Noes 3",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Committee on Environment, Ayes 9, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Utilities and Technology, Ayes 5, Noes 0",2023-12-21T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Steffen added as a cosponsor,2024-01-31T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-05T06:00:00+00:00,[],WI,2023 +Representative Ohnstad added as a coauthor,2023-08-02T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Stafsholt,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-12-13T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Campaigns and Elections, Ayes 3, Noes 2",2023-11-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Mental Health and Substance Abuse Prevention, Ayes 12, Noes 0",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Government Operations, Ayes 5, Noes 0",2024-02-06T06:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2023-04-19T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-09-20T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-04T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Consumer Protection, Ayes 8, Noes 0",2023-05-31T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-10-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 8, Noes 7",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-01-17T06:00:00+00:00,['receipt'],WI,2023 +"Concurred in, Ayes 99, Noes 0",2023-01-03T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-07T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +"Adopted, Ayes 22, Noes 10",2023-01-17T06:00:00+00:00,['passage'],WI,2023 +Representative Andraca added as a coauthor,2024-01-31T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Stubbs,2024-02-06T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-10-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Senator Roys added as a coauthor,2023-04-21T05:00:00+00:00,[],WI,2023 +Representative Tusler added as a cosponsor,2023-11-29T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-05-26T05:00:00+00:00,[],WI,2023 +Representative Bare added as a coauthor,2024-04-19T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2023-11-22T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-10T05:00:00+00:00,[],WI,2023 +Representative S. Johnson added as a cosponsor,2024-02-02T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2023-12-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-10-06T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Health, Ayes 6, Noes 0",2023-06-01T05:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2024-01-04T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-10-02T05:00:00+00:00,['receipt'],WI,2023 +"Assembly Amendment 1 adopted, Ayes 63, Noes 35",2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-10T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +"Report passage recommended by Committee on Workforce Development and Economic Opportunities, Ayes 10, Noes 5",2023-04-18T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-10-09T05:00:00+00:00,[],WI,2023 +Representative Tusler withdrawn as a cosponsor,2023-10-13T05:00:00+00:00,['withdrawal'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-03-30T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 4-18-2023 by Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Ayes 5, Noes 1",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2024-01-09T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Novak,2024-02-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Senate,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-04-13T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:25 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-06-23T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-12-20T06:00:00+00:00,[],WI,2023 +Representative Conley added as a coauthor,2023-10-25T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Housing, Rural Issues and Forestry, Ayes 3, Noes 2",2024-03-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-05T06:00:00+00:00,[],WI,2023 +Senator Cabral-Guevara added as a coauthor,2023-10-27T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 2 recommended by Committee on Natural Resources and Energy, Ayes 3, Noes 2",2023-10-12T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative O'Connor added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-03-08T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Duchow,2024-01-23T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-12T05:00:00+00:00,['referral-committee'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 4, Noes 1",2023-05-12T05:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-05-26T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Representative Krug added as a coauthor,2024-01-11T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-21T06:00:00+00:00,['receipt'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2023-10-16T05:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Moore Omokunde added as a coauthor,2023-05-02T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-06-15T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Government Accountability and Oversight, Ayes 7, Noes 0",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Brooks,2023-06-05T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +"Referred to committee on Administrative Rules, Ayes 22, Noes 11",2023-06-07T05:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 offered by Representative Mursau,2024-01-04T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2024-02-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2023-09-28T05:00:00+00:00,[],WI,2023 +Representative Cabrera added as a cosponsor,2023-06-20T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-06T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Stroebel,2023-06-23T05:00:00+00:00,[],WI,2023 +Representative Palmeri added as a coauthor,2023-05-03T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:02 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-25T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2023-11-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Wanggaard,2023-03-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-08-15T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-05T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-21T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson withdrawn as a cosponsor,2024-02-19T06:00:00+00:00,['withdrawal'],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Dittrich withdrawn as a coauthor,2024-02-06T06:00:00+00:00,['withdrawal'],WI,2023 +"Report passage as amended recommended by Committee on Government Operations, Ayes 5, Noes 0",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-05-10T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-05T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 3 offered by Representative Sortwell,2023-11-03T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Colleges and Universities, Ayes 14, Noes 0",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-10-10T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 10, Noes 5",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Marklein,2023-05-31T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Insurance, Ayes 8, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Adopted, Ayes 21, Noes 11",2024-02-20T06:00:00+00:00,['passage'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Madison added as a coauthor,2023-05-04T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-22T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-11T05:00:00+00:00,[],WI,2023 +Representative Joers added as a coauthor,2023-05-08T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Bare added as a coauthor,2023-10-19T05:00:00+00:00,[],WI,2023 +Senator Cowles added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Health, Ayes 4, Noes 2",2023-10-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representatives Moore Omokunde and Sinicki,2023-05-23T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-03-15T05:00:00+00:00,['referral-committee'],WI,2023 +"Report adoption of Senate Amendment 2 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-28T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-11-08T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Housing and Real Estate, Ayes 10, Noes 5",2023-06-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Billings added as a cosponsor,2023-11-13T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Shankland added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-01T05:00:00+00:00,['receipt'],WI,2023 +Representative Joers added as a cosponsor,2024-02-27T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2023-05-08T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-28T05:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Tax Exemptions requested,2024-01-29T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 94, Noes 0",2023-06-21T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senator Larson added as a coauthor,2023-08-28T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-04-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-04-20T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 94, Noes 0",2023-06-21T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-04T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-09-29T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Jacque,2023-05-17T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Senators Wanggaard and Hutton added as coauthors,2023-03-28T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2023-03-16T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Transportation, Ayes 12, Noes 0",2023-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Made a special order of business at 10:14 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-06-23T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-04-04T05:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Children and Families, Ayes 12, Noes 0",2023-09-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 9-12-2023 by Committee on Rules,2023-09-07T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2024-01-12T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-09-12T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Read,2023-09-14T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Committee on Local Government, Ayes 12, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-11-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 offered by Senator Marklein,2023-11-28T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-04-19T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Local Government, Ayes 10, Noes 0",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 9, Noes 0",2023-11-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2023-12-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Representative Wichgers added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Kitchens,2023-03-23T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:43 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 3, Noes 2",2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-11-03T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on State Affairs, Ayes 13, Noes 1",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Representative Clancy added as a coauthor,2023-10-27T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-12-19T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-26T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-04-26T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Report correctly engrossed on 6-12-2023,2023-06-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-19T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Steffen,2023-08-24T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-11T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Public hearing held,2023-03-01T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Government Operations, Ayes 3, Noes 2",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-11-06T06:00:00+00:00,['referral-committee'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Health, Ayes 5, Noes 1",2024-02-16T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Spreitzer added as a cosponsor,2023-04-25T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Children and Families, Ayes 12, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-09-08T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-01-04T06:00:00+00:00,['referral-committee'],WI,2023 +Read and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-04-18T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:25 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Representative Macco added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-10-06T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Made a special order of business at 10:49 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2024-01-11T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Ways and Means, Ayes 8, Noes 4",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-31T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-10T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-05T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 10, Noes 5",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-11-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Representative Dittrich added as a coauthor,2024-01-11T06:00:00+00:00,[],WI,2023 +Read and referred to committee on Rules,2023-01-17T06:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Energy and Utilities, Ayes 16, Noes 0",2023-09-28T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read and referred to committee on Rules,2024-02-23T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 1 offered by Senator Marklein,2023-03-10T06:00:00+00:00,[],WI,2023 +Read and referred to committee on Rules,2024-02-23T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Senate Amendment 1 offered by Senator Cowles,2023-03-24T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-08T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2023-12-20T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read and referred to committee on Senate Organization,2023-05-02T05:00:00+00:00,['referral-committee'],WI,2023 +Adopted,2023-04-19T05:00:00+00:00,['passage'],WI,2023 +Ordered immediately messaged,2023-04-25T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-08T05:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2024-03-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Environment, Ayes 8, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Laid on the table,2023-10-17T05:00:00+00:00,['deferral'],WI,2023 +Senator Marklein added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-10T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Government Operations, Ayes 5, Noes 0",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-09-19T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +LRB correction,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative J. Anderson added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2024-01-30T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2024-02-02T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-01-10T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Economic Development and Technical Colleges, Ayes 5, Noes 0",2024-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-21T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2024-03-06T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-05-17T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Representatives Knodl and Gundrum added as coauthors,2023-03-21T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-15T06:00:00+00:00,['deferral'],WI,2023 +Executive action taken,2024-02-16T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-17T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-06T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Government Operations, Ayes 5, Noes 0",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Amendment 1 to Assembly Substitute Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-03-28T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +"Representatives O'Connor, C. Anderson and Macco added as coauthors",2024-01-17T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Representative Moore Omokunde added as a cosponsor,2023-03-29T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 12, Noes 1",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Agard added as a cosponsor,2023-06-06T05:00:00+00:00,[],WI,2023 +Representative Conley added as a coauthor,2023-03-29T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read and referred to committee on Senate Organization,2023-05-24T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Agriculture and Tourism, Ayes 5, Noes 3",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 2 offered by Representative Considine,2024-01-29T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-10-24T05:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 4, Noes 1",2023-05-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Representative Cabrera added as a coauthor,2023-06-07T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Local Government, Ayes 12, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representatives Andraca and Cabrera added as cosponsors,2023-03-22T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Ballweg,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-13T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Children and Families, Ayes 12, Noes 0",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Snodgrass added as a coauthor,2023-04-10T05:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Workforce Development and Economic Opportunities, Ayes 7, Noes 3",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Doyle added as a coauthor,2024-01-29T06:00:00+00:00,[],WI,2023 +Representative Donovan added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Transportation, Ayes 12, Noes 0",2023-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Laid on the table,2023-03-22T05:00:00+00:00,['deferral'],WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 2",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Bare added as a coauthor,2024-01-08T06:00:00+00:00,[],WI,2023 +Made a special order of business at 11:02 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-05T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report passage as amended recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2023-10-16T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Cabrera added as a coauthor,2023-11-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-11-14T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-10-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-19-2023 by Committee on Rules,2023-01-17T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Hurd,2023-09-08T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-10-10T05:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-17T05:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-05-30T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Public hearing held,2023-10-03T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2023-11-06T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2023-05-31T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-10-10T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Billings added as a coauthor,2023-11-30T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-09T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Representative Brandtjen added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2023-11-27T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Available for scheduling,2023-10-04T05:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2023-09-15T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Read and referred to committee on Rules,2023-09-28T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 32, Noes 0",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Madison added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 4, Noes 1",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage recommended by Committee on Workforce Development and Economic Opportunities, Ayes 15, Noes 0",2024-01-25T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-09T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-27T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Representative Subeck added as a cosponsor,2024-02-05T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-09-19T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2023-09-28T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 2 offered by Representative Murphy,2024-01-19T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Local Government, Ayes 11, Noes 0",2023-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 8, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-10-06T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-23T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 2 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-09-08T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on State Affairs, Ayes 11, Noes 2",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-01-10T06:00:00+00:00,['receipt'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Krug,2023-11-03T05:00:00+00:00,[],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-02-05T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 1 offered by Representative Bodden,2023-05-01T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Read a third time and passed, Ayes 31, Noes 0",2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Children and Families, Ayes 8, Noes 4",2023-09-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 32, Noes 0",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-03-16T05:00:00+00:00,[],WI,2023 +Representative Vining added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-01T05:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 4-18-2023 by Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Senator Pfaff added as a coauthor,2024-05-21T05:00:00+00:00,[],WI,2023 +Representatives Snodgrass and Emerson added as cosponsors,2023-06-21T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-09-12T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2024-02-02T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2024-02-15T06:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2024-01-26T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2023-06-07T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-11-02T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Utilities and Technology, Ayes 5, Noes 0",2023-12-21T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-11-06T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +Available for scheduling,2023-10-04T05:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2024-01-11T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-01-10T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-01-03T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-07T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-26T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative J. Anderson,2024-02-22T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-12T05:00:00+00:00,['referral-committee'],WI,2023 +Representative McGuire added as a coauthor,2023-06-19T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 9-14-2023 by Committee on Rules,2023-09-12T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Representative Joers added as a coauthor,2023-09-28T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-10-12T05:00:00+00:00,['receipt'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-03-06T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-16T06:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-02-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative McGuire added as a cosponsor,2023-09-19T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-19T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-03-16T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-24T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-09-14T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2023-04-26T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Judiciary, Ayes 7, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Representative Subeck added as a cosponsor,2023-12-22T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Senator Cowles added as a coauthor,2023-09-15T05:00:00+00:00,[],WI,2023 +Made a special order of business at 11:05 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-04-18T05:00:00+00:00,['referral-committee'],WI,2023 +Read,2023-09-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 7, Noes 0",2024-02-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative O'Connor added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2024-02-22T06:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-05-02T05:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Made a special order of business at 10:08 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-01T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-06T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2024-02-29T06:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Committee on Environment, Ayes 7, Noes 1",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Health, Ayes 5, Noes 1",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-11-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-04-12T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-15T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Senator Larson added as a cosponsor,2023-08-28T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Snodgrass added as a cosponsor,2023-10-03T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-10T06:00:00+00:00,[],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read,2023-03-22T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 9, Noes 2",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Health, Ayes 6, Noes 0",2023-06-01T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representatives O'Connor and Stubbs,2024-02-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Pronschinske added as a coauthor,2023-04-26T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-06T06:00:00+00:00,[],WI,2023 +Withdrawn from committee on Colleges and Universities and referred to joint committee on Finance pursuant to Assembly Rule 42 (3)(c),2024-02-02T06:00:00+00:00,[],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Laid on the table,2024-02-15T06:00:00+00:00,['deferral'],WI,2023 +Representative Jacobson added as a coauthor,2023-10-16T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-10T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Maxey added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 offered by Committee on Housing and Real Estate,2023-06-06T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Corrections, Ayes 9, Noes 2",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Representatives Palmeri and Steffen added as coauthors,2023-04-26T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Available for scheduling,2023-12-20T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Representatives Haywood and Wichgers added as coauthors,2024-02-01T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Representative Steffen added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Workforce Development and Economic Opportunities, Ayes 10, Noes 0",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 11, Noes 0",2023-06-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Consumer Protection, Ayes 7, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2023-11-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2023-11-02T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Workforce Development and Economic Opportunities, Ayes 10, Noes 5",2023-04-18T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-02T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-15T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-10-10T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2023-06-23T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-06-01T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2023-12-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-01-17T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Campaigns and Elections, Ayes 8, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 1",2023-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative C. Anderson added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-04-18T05:00:00+00:00,['referral-committee'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative O'Connor,2024-02-01T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-16T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Universities and Revenue, Ayes 8, Noes 0",2023-12-20T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Made a special order of business at 10:52 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:07 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-03-14T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Joers added as a coauthor,2023-09-07T05:00:00+00:00,[],WI,2023 +Placed on calendar 4-25-2023 by Committee on Rules,2023-04-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-10T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +Fiscal estimate received,2023-10-26T05:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +"Report passage recommended by Committee on Consumer Protection, Ayes 9, Noes 0",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Representatives Emerson, C. Anderson and Gustafson added as coauthors",2024-01-17T06:00:00+00:00,[],WI,2023 +Placed on calendar 4-18-2023 by Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-16T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Representative Conley added as a cosponsor,2023-03-29T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Children and Families, Ayes 8, Noes 4",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-10-12T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:38 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2024-02-27T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 12, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Deposited in the office of the Secretary of State on 6-16-2023,2023-06-16T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-12-01T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-04-26T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Regulatory Licensing Reform, Ayes 6, Noes 2",2023-12-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Read a third time and passed, Ayes 31, Noes 0",2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative O'Connor added as a coauthor,2023-09-19T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Read and referred to committee on Rules,2023-09-07T05:00:00+00:00,['referral-committee'],WI,2023 +Report of Joint Survey Committee on Tax Exemptions requested,2023-10-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-30T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 2 offered by Representatives Oldenburg, Novak, Tranel, Plumer and Mursau",2023-09-14T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:32 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Regulatory Licensing Reform, Ayes 9, Noes 0",2023-09-27T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative O'Connor added as a coauthor,2023-04-13T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Shankland,2024-01-25T06:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 3, Noes 2",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-03-30T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Testin,2024-02-20T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 3, Noes 2",2024-02-19T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Tax Exemptions requested,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Amendment 1 to Assembly Substitute Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Made a special order of business at 10:55 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['amendment-passage'],WI,2023 +Made a special order of business at 10:50 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-01T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Agriculture, Ayes 14, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Senator Marklein added as a cosponsor,2023-03-09T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Representative Andraca added as a cosponsor,2024-03-15T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-12-01T06:00:00+00:00,[],WI,2023 +Referred to committee on Tourism,2023-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Kurtz added as a cosponsor,2023-10-23T05:00:00+00:00,[],WI,2023 +Representative Andraca added as a coauthor,2024-03-18T05:00:00+00:00,[],WI,2023 +Representative Behnke added as a cosponsor,2023-09-05T05:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2023-04-26T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Representative Ratcliff added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Representatives S. Johnson and O'Connor added as coauthors,2023-06-15T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 2 offered by Committee on Campaigns and Elections,2023-11-07T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Representative Ratcliff added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +LRB correction (Senate Substitute Amendment 1),2023-10-09T05:00:00+00:00,[],WI,2023 +Public hearing held by joint committee on Finance,2023-04-11T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-03-30T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-05T05:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-04-25T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 13, Noes 1",2023-06-14T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Subeck added as a coauthor,2024-02-16T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2023-06-09T05:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2024-01-10T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 15, Noes 0",2024-02-20T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-02-15T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-12-12T06:00:00+00:00,['receipt'],WI,2023 +Representative Shankland added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Assembly,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Kitchens added as a coauthor,2023-04-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Colleges and Universities, Ayes 10, Noes 4",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Stubbs withdrawn as a coauthor,2024-02-14T06:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2024-01-04T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-23T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-21T06:00:00+00:00,['receipt'],WI,2023 +Read and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 11, Noes 5",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read and referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Ways and Means, Ayes 10, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Universities and Revenue, Ayes 8, Noes 0",2023-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-15T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-05-08T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Sortwell,2023-10-06T05:00:00+00:00,[],WI,2023 +Senate Amendment 2 offered by Senator Cabral-Guevara,2023-08-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-27T06:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Representative Billings added as a coauthor,2023-05-02T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2023-11-29T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-05T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Consumer Protection, Ayes 6, Noes 2",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read and referred to committee on Senate Organization,2023-04-18T05:00:00+00:00,['referral-committee'],WI,2023 +"Refused to refer to committee on Shared Revenue, Elections and Consumer Protection, Ayes 10, Noes 22",2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-11-08T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-13T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-01-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Campaigns and Elections, Ayes 9, Noes 0",2023-11-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 offered by Representative Donovan,2023-10-10T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 12, Noes 0",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Billings added as a cosponsor,2023-10-05T05:00:00+00:00,[],WI,2023 +Representative Kitchens added as a coauthor,2023-04-24T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Utilities and Technology, Ayes 3, Noes 2",2023-05-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2023-09-06T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-10-12T05:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2023-04-13T05:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-02T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-29T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Read and referred to committee on Senate Organization,2023-06-08T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-03-22T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Workforce Development and Economic Opportunities, Ayes 10, Noes 0",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Shankland added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-31T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 1-19-2023 by Committee on Rules,2023-01-17T06:00:00+00:00,[],WI,2023 +Placed on calendar 4-18-2023 by Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:18 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-12-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-10T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-12-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Children and Families, Ayes 8, Noes 4",2023-09-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-10-03T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Wanggaard added as a coauthor,2023-05-04T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Universities and Revenue, Ayes 8, Noes 0",2023-09-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative Billings added as a cosponsor,2023-10-19T05:00:00+00:00,[],WI,2023 +"Assembly Substitute Amendment 1 offered by Representatives Shelton, Sinicki and Cabrera",2024-02-20T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-10T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-01-27T06:00:00+00:00,['referral-committee'],WI,2023 +Read and referred to committee on Rules,2023-03-24T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-06-02T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Insurance, Ayes 11, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Snyder,2023-11-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-11-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Campaigns and Elections, Ayes 7, Noes 1",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Maxey added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-09T06:00:00+00:00,['deferral'],WI,2023 +Executive action taken,2023-03-07T06:00:00+00:00,[],WI,2023 +Representative Maxey added as a coauthor,2024-01-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 1 offered by Senator Nass,2023-06-14T05:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-09-19T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Representative Snodgrass added as a coauthor,2023-04-10T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2023-04-19T05:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Campaigns and Elections, Ayes 5, Noes 2",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read,2023-11-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-05T05:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 2 recommended by Committee on Universities and Revenue, Ayes 8, Noes 0",2023-11-09T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2024-01-04T06:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 3 offered by Senator Cabral-Guevara,2024-02-01T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Concurred in,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Vining added as a cosponsor,2024-04-03T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from committee on Senate Organization and take up,2023-09-14T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Made a special order of business at 10:24 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-12-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2023-03-15T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 2",2023-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 to Assembly Substitute Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-01T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 2 offered by Senator Quinn,2023-08-02T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Financial Institutions, Ayes 8, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +LRB correction,2024-01-16T06:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-09T06:00:00+00:00,['deferral'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2023-05-08T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-03-15T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-04-13T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-03-15T05:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-12T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2023-09-07T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2023-09-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a cosponsor,2023-05-09T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-16T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-17-2023 pursuant to Senate Rule 18(1),2023-01-13T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Transportation, Ayes 14, Noes 0",2023-09-28T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative O'Connor added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 10, Noes 1",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Ratcliff added as a cosponsor,2024-02-05T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-11T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 15, Noes 0",2023-10-05T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Economic Development and Technical Colleges, Ayes 5, Noes 0",2023-10-11T05:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage as amended recommended by Committee on Health, Ayes 6, Noes 0",2023-10-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Stubbs added as a cosponsor,2023-09-07T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-30T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Summerfield,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-06T05:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2023-04-17T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-05-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-17T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Sporting Heritage, Ayes 10, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 12, Noes 2",2023-12-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 offered by Representative Dallman,2023-05-22T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-24T05:00:00+00:00,[],WI,2023 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2023-11-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-12T05:00:00+00:00,['reading-3'],WI,2023 +Made a special order of business at 10:37 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-05T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-24T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Rules,2023-09-28T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-12-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Laid on the table,2023-10-17T05:00:00+00:00,['deferral'],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-05-17T05:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-12-13T06:00:00+00:00,[],WI,2023 +Referred to joint committee on Finance,2024-01-30T06:00:00+00:00,['referral-committee'],WI,2023 +Laid on the table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Licensing, Constitution and Federalism, Ayes 3, Noes 2",2024-01-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Hesselbein added as a cosponsor,2023-05-16T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-21T05:00:00+00:00,['reading-2'],WI,2023 +Senator Hutton added as a cosponsor,2023-03-16T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-05-17T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Referred to committee on Rules,2023-06-15T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 1",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:26 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Representative Kitchens added as a coauthor,2023-04-24T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 2 offered by Representative Armstrong,2023-05-24T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 2 recommended by Committee on Agriculture and Tourism, Ayes 8, Noes 0",2024-01-11T06:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-03-05T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 1 offered by Representative Rozar,2024-01-30T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-01-10T06:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Representative Tusler added as a coauthor,2023-11-29T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 11, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Substitute Amendment 2 adoption recommended by Committee on Ways and Means, Ayes 11, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken by committee on Local Government,2023-05-11T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-06-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 2 offered by Representative Steffen,2023-06-14T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 14, Noes 1",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Transportation, Ayes 12, Noes 0",2023-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 7, Noes 1",2024-03-14T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Ratcliff added as a coauthor,2024-02-08T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:27 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +LRB correction (Senate Amendment 1),2023-05-22T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 1",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on State Affairs, Ayes 9, Noes 5",2023-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-06-09T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Stroebel,2023-06-12T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Local Government, Ayes 11, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly,2023-05-17T05:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Amendment 1 to Assembly Amendment 1 adoption recommended by Committee on Veterans and Military Affairs, Ayes 13, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-08T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-06-23T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Senator Hutton withdrawn as a coauthor,2023-06-13T05:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-21T05:00:00+00:00,['reading-2'],WI,2023 +Representative Drake added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 2 recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-02-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 5, Noes 3",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-11-03T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Workforce Development and Economic Opportunities, Ayes 13, Noes 2",2024-01-25T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 11, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Executive action taken by joint survey committee on Tax Exemptions,2024-02-08T06:00:00+00:00,[],WI,2023 +Representative Conley added as a coauthor,2023-09-06T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Representative O'Connor added as a coauthor,2023-03-22T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on State Affairs, Ayes 11, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Spreitzer added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-11-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative O'Connor withdrawn as a cosponsor,2023-12-28T06:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2023-12-20T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-30T05:00:00+00:00,['receipt'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-27T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 12, Noes 0",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2023-10-04T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-01-19T06:00:00+00:00,[],WI,2023 +Senator Larson added as a cosponsor,2024-01-23T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-01-05T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-06T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Read and referred to committee on Senate Organization,2024-01-26T06:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Local Government, Ayes 12, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Sortwell,2023-10-18T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-22-2024 by Committee on Rules,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-09T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Health, Ayes 6, Noes 0",2023-10-06T05:00:00+00:00,['amendment-passage'],WI,2023 +Made a special order of business at 10:10 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-09-05T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Consumer Protection, Ayes 9, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-09-06T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Ways and Means, Ayes 8, Noes 4",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-21T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-25T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 10, Noes 5",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Universities and Revenue, Ayes 5, Noes 3",2024-01-25T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-05-12T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Environment, Ayes 9, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Subeck added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Representative Jacobson added as a cosponsor,2023-05-03T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 12, Noes 1",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative McGuire,2024-02-13T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Family Law, Ayes 6, Noes 3",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-25T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:54 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-27T06:00:00+00:00,['amendment-passage'],WI,2023 +Referred to joint committee on Finance,2024-02-02T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-09-12T05:00:00+00:00,['reading-2'],WI,2023 +Representative Rettinger added as a cosponsor,2024-02-09T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:31 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +"Report Assembly Amendment 1 to Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2023-04-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Nedweski added as a cosponsor,2023-06-07T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 1",2023-03-16T05:00:00+00:00,['amendment-passage'],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-03-08T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Marklein,2024-01-09T06:00:00+00:00,[],WI,2023 +"Withdrawn from committee on Health, Aging and Long-Term Care and referred to committee on Rules pursuant to Assembly Rule 42 (3)(c)",2024-01-23T06:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 2 offered by Representatives Allen and Emerson,2023-06-06T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report adoption of Senate Amendment 2 recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report Assembly Amendment 3 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 1",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 4, Noes 2",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 10:58 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Referred to joint committee on Finance,2024-01-30T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Ways and Means, Ayes 7, Noes 0",2024-01-17T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:16 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Withdrawn from committee on Rules and referred to joint committee on Finance pursuant to Assembly Rule 42 (3)(c),2024-02-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Environment, Ayes 9, Noes 0",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Energy and Utilities, Ayes 11, Noes 5",2023-06-14T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Kitchens added as a coauthor,2023-12-06T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-13T05:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2024-01-19T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +"Assembly Substitute Amendment 1 offered by Representatives Shelton, Sinicki and Cabrera",2024-02-20T06:00:00+00:00,[],WI,2023 +LRB correction,2024-01-17T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on State Affairs, Ayes 12, Noes 1",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Universities and Revenue, Ayes 8, Noes 0",2023-09-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 12, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Universities and Revenue, Ayes 8, Noes 0",2023-12-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 8, Noes 0",2023-08-31T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 4-25-2023 by Committee on Rules,2023-04-20T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +"Withdrawn from committee on Government Operations and rereferred to committee on Shared Revenue, Elections and Consumer Protection pursuant to Senate Rule 46(2)(c)",2023-07-10T05:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-01-04T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Haywood added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-05T06:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 2 adoption recommended by Committee on Agriculture, Ayes 14, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-12-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 5, Noes 3",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Bare added as a cosponsor,2023-10-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-04-20T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-30T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-09-11T05:00:00+00:00,['receipt'],WI,2023 +Read and referred to committee on Rules,2023-09-28T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Emerson added as a coauthor,2023-11-09T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Melotik added as a coauthor,2023-09-01T05:00:00+00:00,[],WI,2023 +"Referred to committee on Administrative Rules, Ayes 20, Noes 11",2023-03-22T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-10-05T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Subeck added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 to Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-10-24T05:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Colleges and Universities, Ayes 9, Noes 5",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Administrative Rules,2023-03-22T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-02T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Haywood added as a coauthor,2023-11-22T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 2 offered by Representative Schraa,2024-02-12T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Amendment 2 offered by Representative Armstrong,2024-01-02T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-26T05:00:00+00:00,[],WI,2023 +Representative Joers added as a coauthor,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Substitute Amendment 2 offered by Representative Macco,2023-06-15T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative O'Connor added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2023-06-09T05:00:00+00:00,['amendment-passage'],WI,2023 +Senate Amendment 1 offered by Senator Jacque,2024-01-12T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Knodl added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 3 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 9, Noes 7",2024-01-23T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 4, Noes 1",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-06-15T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Health, Ayes 6, Noes 0",2024-03-06T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Representative Oldenburg added as a coauthor,2023-06-07T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-10-12T05:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-12-13T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption of Senate Amendment 2 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 12, Noes 3",2023-06-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Donovan added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-11T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Stubbs added as a coauthor,2023-10-04T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-09T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2023-09-20T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-28T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-09-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-11-01T05:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 10, Noes 5",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2023-04-05T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-03-20T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Knodl added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Ballweg added as a coauthor,2023-04-20T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2023-06-09T05:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-09-19T05:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Bodden added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on State Affairs, Ayes 12, Noes 2",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-12T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 4-19-2023 pursuant to Senate Rule 18(1),2023-04-17T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2023-11-08T06:00:00+00:00,[],WI,2023 +Referred to committee on Senate Organization,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Laid on the table,2024-02-15T06:00:00+00:00,['deferral'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Sapik and Dittrich added as coauthors,2023-06-07T05:00:00+00:00,[],WI,2023 +Representative Stubbs added as a coauthor,2023-03-29T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 8, Noes 4",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Jacque added as a cosponsor,2024-03-01T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-15T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representatives Shelton and Hong,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-31T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Marklein,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-09-20T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2023-06-09T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Assembly Amendment 3 offered by Representative Schraa,2024-02-12T06:00:00+00:00,[],WI,2023 +Assembly Amendment 3 offered by Representative Armstrong,2024-01-03T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Substitute Amendment 2 offered by Senator Wanggaard,2024-02-23T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representatives Rettinger and Wittke,2023-11-02T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Economic Development and Technical Colleges, Ayes 6, Noes 0",2024-02-28T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 1",2023-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Rules,2023-03-24T05:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 1 offered by Senator Bradley,2024-02-19T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Children and Families, Ayes 12, Noes 0",2023-09-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative O'Connor added as a cosponsor,2023-11-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Senator Pfaff added as a cosponsor,2024-05-22T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Ratcliff added as a coauthor,2023-12-08T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-10-24T05:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-12-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Public hearing held,2023-05-18T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Assembly Amendment 1 offered by Representatives Vining, Billings, Conley, Neubauer, Haywood, Madison, Jacobson, Drake, Clancy, Hong, Moore Omokunde, Ratcliff, Palmeri, Emerson, Snodgrass, Sinicki, Ohnstad, Joers, Andraca, Bare, Shelton, Considine, Goyke, Shankland, Cabrera, Ortiz-Velez, Baldeh and Stubbs",2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-03-30T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 1 offered by Senator Jacque,2023-10-09T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-15T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Ratcliff added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-11-03T05:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-09-20T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Environment, Ayes 7, Noes 1",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Green added as a cosponsor,2024-01-29T06:00:00+00:00,[],WI,2023 +Representative Ortiz-Velez withdrawn as a coauthor,2024-01-17T06:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken by joint survey committee on Tax Exemptions,2023-09-11T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-11-02T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 13, Noes 1",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Rodriguez,2024-02-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Tax Exemptions requested,2023-06-15T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary, Ayes 6, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-06-07T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-03-14T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption of Senate Amendment 2 recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-12-14T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage as amended recommended by Committee on Health, Ayes 6, Noes 0",2024-03-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Agriculture, Ayes 14, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Macco added as a coauthor,2023-09-13T05:00:00+00:00,[],WI,2023 +Representative Myers added as a coauthor,2024-02-02T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['amendment-passage'],WI,2023 +LRB correction,2023-06-02T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2024-01-11T06:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give bill its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2023-06-09T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-09-11T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 9, Noes 7",2024-01-23T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Laid on table,2023-04-19T05:00:00+00:00,['deferral'],WI,2023 +Representative O'Connor added as a cosponsor,2023-09-19T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-19T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-10-12T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Concurred in,2023-03-22T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Jacque,2023-10-13T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-05-24T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-06-23T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Katsma,2024-02-07T06:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on State Affairs, Ayes 13, Noes 0",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 3 offered by Representative Brooks,2024-02-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Schraa added as a coauthor,2023-05-24T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 8, Noes 4",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-01-04T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 4-25-2023 by Committee on Rules,2023-04-20T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2023-03-22T05:00:00+00:00,[],WI,2023 +Representative Callahan added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Senator Spreitzer added as a coauthor,2023-09-05T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2023-01-27T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 2 offered by Representative Goeben,2023-11-02T05:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Health, Ayes 6, Noes 0",2023-10-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Local Government, Ayes 8, Noes 4",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-08-17T05:00:00+00:00,[],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Penterman added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 7, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 12, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-04-25T05:00:00+00:00,['reading-2'],WI,2023 +Representatives Emerson and Madison added as coauthors,2023-11-08T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-06-08T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage as amended recommended by Committee on Agriculture and Tourism, Ayes 8, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:21 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Kurtz added as a coauthor,2023-10-23T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-05-08T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Senator Taylor added as a coauthor,2023-12-12T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:30 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2023-01-19T06:00:00+00:00,['deferral'],WI,2023 +Made a special order of business at 10:23 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Placed on calendar 4-19-2023 pursuant to Senate Rule 18(1),2023-04-17T05:00:00+00:00,[],WI,2023 +Senate Amendment 2 offered by Senator James,2024-02-19T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-13T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-12-14T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-25T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Made a special order of business at 11:28 AM on 2-22-2024 pursuant to Assembly Resolution 29,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Rules suspended to give joint resolution its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Senator Cowles added as a coauthor,2024-01-09T06:00:00+00:00,[],WI,2023 +Representative Ortiz-Velez added as a coauthor,2024-02-16T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Government Operations, Ayes 5, Noes 0",2023-10-05T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Dittrich,2024-02-12T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2023-06-09T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Made a special order of business at 10:34 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Workforce Development and Economic Opportunities, Ayes 14, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Transportation, Ayes 13, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Assembly Amendment 2 offered by Representative Krug,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Transportation, Ayes 12, Noes 0",2023-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Made a special order of business at 10:06 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Representative Tranel added as a cosponsor,2023-05-11T05:00:00+00:00,[],WI,2023 +"Senate Amendment 2 offered by Senators Agard, Taylor, Hesselbein, Larson, L. Johnson, Roys and Smith",2023-03-22T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Financial Institutions, Ayes 8, Noes 0",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2023-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Haywood added as a cosponsor,2023-04-19T05:00:00+00:00,[],WI,2023 +Representative Joers added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Representative Macco added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2023-06-15T05:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 offered by Representative Oldenburg,2023-10-05T05:00:00+00:00,[],WI,2023 +Referred to joint committee on Finance,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give joint resolution its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +LRB correction (Assembly Amendment 1),2023-05-22T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Read,2023-09-14T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Universities and Revenue, Ayes 8, Noes 0",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Fiscal estimate received,2023-05-12T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 5, Noes 3",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 12, Noes 0",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 11, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Representative Callahan added as a coauthor,2024-02-07T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-06T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-12-11T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Magnafici added as a cosponsor,2023-10-31T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 11, Noes 4",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-13T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-05T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 13, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-09-07T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 4 offered by Senator Cabral-Guevara,2024-02-01T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-21T05:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Insurance and Small Business, Ayes 4, Noes 1",2024-02-26T06:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:28 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-21T05:00:00+00:00,['reading-3'],WI,2023 +Senate Amendment 2 to Senate Substitute Amendment 1 offered by Senator James,2024-01-12T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2023-09-12T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give bill its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-10-12T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +"Senate Substitute Amendment 1 adopted, Ayes 18, Noes 14",2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Laid on the table,2023-11-07T06:00:00+00:00,['deferral'],WI,2023 +Senator Carpenter added as a coauthor,2024-02-15T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-06T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Health, Ayes 6, Noes 0",2024-03-06T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage recommended by Committee on Health, Ayes 6, Noes 0",2023-10-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-15T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-12-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-25T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Consumer Protection, Ayes 6, Noes 3",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2023-04-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative O'Connor added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Campaigns and Elections, Ayes 8, Noes 0",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Jacobson added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 7, Noes 1",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Representatives Gustafson and O'Connor added as coauthors,2023-11-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 12, Noes 3",2023-10-05T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-11-02T05:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 offered by Representative VanderMeer,2024-02-21T06:00:00+00:00,[],WI,2023 +Senator Hesselbein added as a cosponsor,2024-05-15T05:00:00+00:00,[],WI,2023 +Made a special order of business at 11:03 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-06T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2023-05-08T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Referred to joint committee on Finance,2024-01-17T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a second time,2023-04-25T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-09-12T05:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Amendment 1 to Assembly Substitute Amendment 2 adoption recommended by Committee on Environment, Ayes 5, Noes 3",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Plumer,2024-02-21T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Referred to calendar of 10-12-2023 pursuant to Assembly Rule 45 (1),2023-10-10T05:00:00+00:00,['referral'],WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-13T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-23T05:00:00+00:00,[],WI,2023 +Read a second time,2023-01-17T06:00:00+00:00,['reading-2'],WI,2023 +Executive action taken by joint committee on Finance,2024-02-01T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2023-12-05T06:00:00+00:00,[],WI,2023 +Representative Kitchens added as a coauthor,2023-04-24T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Read and referred to committee on Senate Organization,2023-03-15T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-01-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-15T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-15T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-24T06:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-05-24T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Made a special order of business at 11:04 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2023-05-12T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Placed at the foot of the calendar of 2-20-2024,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to joint committee on Finance,2023-06-07T05:00:00+00:00,['referral-committee'],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representatives Snodgrass and C. Anderson,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Joers added as a cosponsor,2023-10-06T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Snodgrass added as a cosponsor,2024-02-12T06:00:00+00:00,[],WI,2023 +Representative Cabrera added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Representatives Gustafson and Joers added as coauthors,2024-01-25T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-12-01T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-12T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Armstrong added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 13, Noes 0",2023-03-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-05-26T05:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2024-01-11T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-28T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-09-12T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +"Report Assembly Amendment 1 to Assembly Amendment 1 adoption recommended by Committee on Consumer Protection, Ayes 7, Noes 0",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Made a special order of business at 10:19 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Placed on calendar 4-19-2023 pursuant to Senate Rule 18(1),2023-04-17T05:00:00+00:00,[],WI,2023 +Executive action taken by joint committee on Finance,2024-02-01T06:00:00+00:00,[],WI,2023 +Senator Cowles added as a cosponsor,2023-09-14T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-04-26T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Placed on calendar 9-12-2023 by Committee on Rules,2023-09-07T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-08-31T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-13T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-04-17T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-15T05:00:00+00:00,[],WI,2023 +Representatives Shelton and Shankland added as cosponsors,2024-01-18T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-02T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Jobs, Economy and Small Business Development, Ayes 11, Noes 0",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-01-10T06:00:00+00:00,['amendment-passage'],WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-03-22T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 4-18-2023 by Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Rules suspended to give joint resolution its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 4-18-2023 by Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 to Senate Substitute Amendment 1 recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Made a special order of business at 10:59 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Representative Drake added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Referred to joint committee on Finance,2024-02-06T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-10-04T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Financial Institutions, Ayes 7, Noes 1",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Laid on the table,2024-02-15T06:00:00+00:00,['deferral'],WI,2023 +Representative Steffen added as a cosponsor,2024-01-12T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Committee on Campaigns and Elections,2024-01-30T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 1",2023-03-16T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2024-01-04T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Assembly Amendment 2 offered by Representative Spiros,2024-02-12T06:00:00+00:00,[],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-04T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Veterans and Military Affairs, Ayes 13, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Transportation, Ayes 14, Noes 0",2023-09-28T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Universities and Revenue, Ayes 8, Noes 0",2023-09-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on the table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Representative Knodl added as a coauthor,2023-03-10T06:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +"Concurred in, Ayes 95, Noes 4",2023-11-07T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Ratcliff added as a coauthor,2023-08-22T05:00:00+00:00,[],WI,2023 +Representative Bare added as a cosponsor,2024-01-08T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-25T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Economic Development and Technical Colleges, Ayes 5, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 13, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 11, Noes 0",2023-06-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Housing, Rural Issues and Forestry, Ayes 4, Noes 1",2023-05-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-06-14T05:00:00+00:00,['referral-committee'],WI,2023 +LRB correction (Assembly Amendment 1),2024-02-14T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 13, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Campaigns and Elections, Ayes 9, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Kitchens added as a coauthor,2023-05-22T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-01-10T06:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Mental Health and Substance Abuse Prevention, Ayes 11, Noes 1",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2023-10-12T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Representative Subeck added as a coauthor,2023-06-20T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-04-18T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-02T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-01-26T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-11T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Read and referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Universities and Revenue, Ayes 8, Noes 0",2023-12-20T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +"Report passage as amended recommended by Committee on Colleges and Universities, Ayes 10, Noes 4",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Representative Shankland added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2023-06-09T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-01-04T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +"Report Assembly Substitute Amendment 2 adoption recommended by Committee on Campaigns and Elections, Ayes 8, Noes 0",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Ratcliff added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 2 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['amendment-passage'],WI,2023 +Senate Amendment 1 offered by Senator Stroebel,2024-02-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-22T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 8, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-01T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Public hearing held by joint committee on Finance,2023-04-12T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-09-26T05:00:00+00:00,[],WI,2023 +Concurred in,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Executive action taken,2023-09-20T05:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2023-04-27T05:00:00+00:00,[],WI,2023 +Representatives Wichgers and Nedweski added as coauthors,2023-06-07T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Representative Magnafici added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Jacque,2023-11-10T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Feyen,2024-02-19T06:00:00+00:00,[],WI,2023 +Representatives Vining and Joers added as cosponsors,2024-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 1",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2023-06-14T05:00:00+00:00,['referral-committee'],WI,2023 +Read and referred to committee on Senate Organization,2023-11-21T06:00:00+00:00,['referral-committee'],WI,2023 +Representative C. Anderson added as a coauthor,2023-06-08T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Representative Myers added as a coauthor,2024-02-02T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Joers added as a coauthor,2024-02-12T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Jacobson withdrawn as a cosponsor,2024-01-31T06:00:00+00:00,['withdrawal'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 1",2023-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Fiscal estimate received,2023-06-05T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-03-30T05:00:00+00:00,['receipt'],WI,2023 +LRB correction,2023-11-10T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-22T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-04-25T05:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2023-04-27T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Education, Ayes 11, Noes 4",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Representative Shankland added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 12, Noes 0",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2023-06-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Committee on Consumer Protection, Ayes 9, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-10-06T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2023-11-10T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Senator Carpenter added as a coauthor,2023-09-14T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-04-07T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-14-2023 by Committee on Rules,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-02-15T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a coauthor,2024-02-06T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Judiciary, Ayes 6, Noes 1",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Concurred in, Ayes 32, Noes 0",2023-10-17T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Duchow added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-06T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Government Operations, Ayes 5, Noes 0",2023-10-05T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Representative Riemer added as a coauthor,2023-06-21T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a cosponsor,2023-05-03T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-04-13T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-06-23T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Workforce Development and Economic Opportunities, Ayes 9, Noes 1",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read and referred to committee on Senate Organization,2023-05-02T05:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-01-25T06:00:00+00:00,['referral-committee'],WI,2023 +Representative O'Connor added as a coauthor,2023-05-11T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-02T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-12-21T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-09-08T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator L. Johnson added as a coauthor,2023-10-30T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Public hearing held,2024-03-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 4-19-2023 pursuant to Senate Rule 18(1),2023-04-17T05:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Kitchens,2024-02-19T06:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Local Government, Ayes 12, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2023-04-19T05:00:00+00:00,['receipt'],WI,2023 +Representatives Moore Omokunde and Drake added as coauthors,2023-10-10T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Representative O'Connor added as a coauthor,2023-03-22T05:00:00+00:00,[],WI,2023 +Laid on the table,2023-10-17T05:00:00+00:00,['deferral'],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-11-13T06:00:00+00:00,[],WI,2023 +Concurred in,2023-03-22T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Regulatory Licensing Reform, Ayes 6, Noes 2",2023-12-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Read and referred to committee on Senate Organization,2023-05-02T05:00:00+00:00,['referral-committee'],WI,2023 +"Assembly Substitute Amendment 1 laid on table, Ayes 63, Noes 35",2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Read a second time,2023-04-18T05:00:00+00:00,['reading-2'],WI,2023 +Representative Cabrera added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-10-16T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 3, Noes 2",2023-05-30T05:00:00+00:00,['amendment-passage'],WI,2023 +Senate Amendment 1 offered by Senator Jacque,2023-05-01T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-10-24T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Joers added as a cosponsor,2023-05-08T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator James,2024-02-19T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-04-18T05:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Local Government, Ayes 12, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-06-15T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Laid on the table,2023-11-09T06:00:00+00:00,['deferral'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Corrections, Ayes 13, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Cowles,2023-06-06T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Representative Billings added as a cosponsor,2024-01-29T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2023-06-23T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Campaigns and Elections, Ayes 7, Noes 1",2024-03-14T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to give bill its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Representative Clancy added as a cosponsor,2024-02-06T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-05-02T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-09-12T05:00:00+00:00,['referral-committee'],WI,2023 +Concurred in,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-09-12T05:00:00+00:00,['reading-3'],WI,2023 +Read,2023-11-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Senator Hesselbein added as a coauthor,2024-05-16T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Concurred in,2023-09-14T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Education, Ayes 14, Noes 1",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Colleges and Universities, Ayes 14, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-10-25T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 2 offered by Representative VanderMeer,2024-02-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-09-14T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-02T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Senate Organization,2023-10-13T05:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2023-11-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2024-01-18T06:00:00+00:00,['deferral'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Kurtz,2024-02-05T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Workforce Development and Economic Opportunities, Ayes 10, Noes 0",2023-11-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Rettinger added as a coauthor,2023-04-27T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-03T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 9-12-2023 by Committee on Rules,2023-09-07T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-03-22T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Concurred in,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-12-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-03-22T05:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-07T06:00:00+00:00,['deferral'],WI,2023 +Assembly Amendment 1 offered by Representative Moses,2023-10-30T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2023-03-22T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 offered by Senator Wimberger,2024-02-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-04-13T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Corrections, Ayes 8, Noes 5",2023-09-27T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Regulatory Licensing Reform, Ayes 9, Noes 0",2023-09-27T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-22T05:00:00+00:00,['receipt'],WI,2023 +"Assembly Amendment 2 adopted, Ayes 64, Noes 34",2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Available for scheduling,2023-10-12T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-11-02T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 3, Noes 2",2024-02-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Rettinger,2023-03-13T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Kitchens added as a coauthor,2023-04-24T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-17T05:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on the table,2024-01-18T06:00:00+00:00,['deferral'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Cabrera added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 10, Noes 5",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-05-24T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-03-30T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-12T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-30T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-01-30T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-16T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 3, Noes 2",2024-03-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-01-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-13T06:00:00+00:00,[],WI,2023 +Representative Drake added as a coauthor,2023-10-05T05:00:00+00:00,[],WI,2023 +Concurred in,2023-01-19T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a cosponsor,2023-07-12T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 5, Noes 3",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Steffen added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +"Report passage recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-10-10T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Myers added as a coauthor,2024-02-02T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 14, Noes 0",2023-06-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Available for scheduling,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Transportation, Ayes 13, Noes 0",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on the table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +"Report passage as amended recommended by Committee on State Affairs, Ayes 12, Noes 1",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Senator Ballweg added as a cosponsor,2023-10-05T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2024-02-27T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage as amended recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Representative O'Connor added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-10-10T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representatives C. Anderson and Gustafson added as coauthors,2024-01-17T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a coauthor,2024-03-18T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-04-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Health, Ayes 6, Noes 0",2023-03-20T05:00:00+00:00,['amendment-passage'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Public hearing held,2023-07-12T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 11, Noes 0",2024-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Gustafson and O'Connor added as coauthors,2023-11-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-26T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +"Senate Amendment 1 offered by Senators Hesselbein, Agard, L. Johnson, Larson, Smith and Taylor",2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-01-04T06:00:00+00:00,['receipt'],WI,2023 +Assembly Substitute Amendment 2 offered by Representative McGuire,2024-02-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-27T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Senator Wirch added as a cosponsor,2023-06-20T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 14, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Schraa,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Representative McGuire added as a coauthor,2023-09-18T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Health, Ayes 6, Noes 0",2023-03-20T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-01-31T06:00:00+00:00,[],WI,2023 +"Referred to joint survey committee on Tax Exemptions pursuant to s. 13.52, Wisconsin Statutes",2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Representative Andraca added as a cosponsor,2023-09-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-02-05T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-04-18T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Representatives Sinicki and Subeck withdrawn as coauthors,2024-02-16T06:00:00+00:00,[],WI,2023 +"Withdrawn from committee on Government Operations and rereferred to committee on Mental Health, Substance Abuse Prevention, Children and Families pursuant to Senate Rule 46(2)(c)",2024-03-05T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-27T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-11T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on State Affairs, Ayes 11, Noes 0",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Maxey added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-02T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Local Government, Ayes 11, Noes 0",2023-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Amendment 1 to Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 13, Noes 1",2023-06-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 15, Noes 0",2023-06-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-10-12T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Placed on calendar 4-25-2023 by Committee on Rules,2023-04-20T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-04-10T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +"Report adoption of Senate Amendment 1 to Senate Substitute Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-06-02T05:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2024-01-04T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Utilities and Technology, Ayes 5, Noes 0",2023-12-21T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 12, Noes 0",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-01-17T06:00:00+00:00,['receipt'],WI,2023 +Senator Agard added as a cosponsor,2023-06-01T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-03-16T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-07T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-01-18T06:00:00+00:00,['deferral'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative O'Connor added as a coauthor,2023-04-13T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-05-30T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Representatives O'Connor and Maxey added as coauthors,2023-11-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +Available for scheduling,2023-05-02T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Environment, Ayes 8, Noes 0",2023-04-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-15T06:00:00+00:00,['referral-committee'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Available for scheduling,2023-10-10T05:00:00+00:00,[],WI,2023 +Representative Vining added as a coauthor,2024-03-01T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-10-17T05:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Representative Madison added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-02T05:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Corrections, Ayes 10, Noes 3",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Children and Families, Ayes 12, Noes 0",2023-09-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Representative Michalski added as a cosponsor,2024-01-11T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2023-09-27T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-15T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +"Assembly Amendment 3 offered by Representatives Oldenburg, Novak, Tranel, Plumer and Mursau",2023-09-14T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-19T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and passed,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Health, Ayes 6, Noes 0",2023-03-20T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 offered by Representative Duchow,2023-11-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-16T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Representative Vining added as a coauthor,2024-02-12T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Joers added as a coauthor,2023-05-12T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-17T05:00:00+00:00,[],WI,2023 +Representative Kitchens added as a coauthor,2023-04-24T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report passage as amended recommended by Committee on Utilities and Technology, Ayes 5, Noes 0",2023-12-21T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 13, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +"Assembly Substitute Amendment 1 offered by Representatives Snodgrass, Shelton and Joers",2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-10-10T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2023-10-31T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Emerson added as a coauthor,2023-04-13T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:48 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-04-18T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Concurred in,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 3, Noes 2",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Energy and Utilities, Ayes 14, Noes 1",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Representatives Gustafson and O'Connor added as coauthors,2023-11-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2023-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-12T06:00:00+00:00,[],WI,2023 +"Concurred in, Ayes 62, Noes 35",2023-03-22T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-01-10T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Representative Magnafici added as a coauthor,2023-10-31T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2023-09-27T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 2 offered by Senators Wimberger and Cowles,2023-11-09T06:00:00+00:00,[],WI,2023 +Representatives Andraca and Shelton added as cosponsors,2023-11-07T06:00:00+00:00,[],WI,2023 +Read a second time,2023-03-14T05:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-04-25T05:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Concurred in,2023-10-17T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2024-02-15T06:00:00+00:00,[],WI,2023 +Senate Amendment 2 offered by Senator Wimberger,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative Stubbs withdrawn as a coauthor,2024-02-14T06:00:00+00:00,['withdrawal'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Campaigns and Elections, Ayes 8, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Carpenter added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Assembly Amendment 1 offered by Representative Novak,2024-01-22T06:00:00+00:00,[],WI,2023 +Representative Krug added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Representative Shankland added as a coauthor,2023-09-15T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-01-19T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Sinicki,2023-06-20T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Representative O'Connor added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Representative Vining added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 14, Noes 1",2023-06-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Transportation, Ayes 13, Noes 0",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-04-18T05:00:00+00:00,['reading-2'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-02-20T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 83, Noes 13",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-07T06:00:00+00:00,['deferral'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Senators Hesselbein and Carpenter added as coauthors,2023-07-14T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 7, Noes 4",2024-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Cabrera added as a coauthor,2023-11-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Placed on the foot of the 10th order of business on the calendar of 10-17-2023,2023-10-17T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 offered by Representative Tittl,2023-06-06T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-28T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and passed,2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled,2023-01-09T06:00:00+00:00,['enrolled'],WI,2023 +"Report adoption of Senate Amendment 1 to Senate Substitute Amendment 1 recommended by Committee on Education, Ayes 7, Noes 0",2023-06-27T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Hong added as a coauthor,2023-06-26T05:00:00+00:00,[],WI,2023 +Representative Madison withdrawn as a coauthor,2023-11-13T06:00:00+00:00,['withdrawal'],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Health, Ayes 5, Noes 1",2023-03-20T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Nass,2023-09-27T05:00:00+00:00,[],WI,2023 +Representative Callahan added as a cosponsor,2024-02-07T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 4-19-2023 pursuant to Senate Rule 18(1),2023-04-18T05:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2023-06-15T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Senator Cowles added as a cosponsor,2023-10-13T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:23 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Education, Ayes 15, Noes 0",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 1 offered by Senator Stroebel,2024-02-12T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Referred to joint committee on Finance,2024-01-10T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Made a special order of business at 10:09 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Senate Amendment 2 offered by Senators Nass and James,2023-06-07T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 14, Noes 0",2023-06-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read,2024-02-20T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-06-07T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2023-06-07T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Stubbs added as a coauthor,2023-11-02T05:00:00+00:00,[],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-02-05T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2023-04-10T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-06-02T05:00:00+00:00,['amendment-passage'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-13T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on State Affairs, Ayes 12, Noes 0",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Read and referred to committee on Rules,2023-01-17T06:00:00+00:00,['referral-committee'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +"Report passage recommended by Committee on Colleges and Universities, Ayes 14, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-04-18T05:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 8, Noes 0",2023-03-16T05:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Education, Ayes 14, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Representative Shankland added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2024-02-08T06:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Regulatory Licensing Reform, Ayes 4, Noes 3",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2023-11-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Concurred in,2023-03-22T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 10, Noes 5",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended and taken up,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator James,2023-04-26T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-09T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 1 offered by Senator Stafsholt,2023-10-17T05:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 2 adoption recommended by Committee on State Affairs, Ayes 11, Noes 2",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-08T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-01-11T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-09-08T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Financial Institutions, Ayes 10, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-23T05:00:00+00:00,[],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-05-30T05:00:00+00:00,[],WI,2023 +Withdrawn from committee on Rules and referred to joint committee on Finance pursuant to Assembly Rule 42 (3)(c),2024-02-01T06:00:00+00:00,[],WI,2023 +Senator Wanggaard added as a cosponsor,2023-05-11T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2023-11-01T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2023-10-24T05:00:00+00:00,[],WI,2023 +Senators Wanggaard and Carpenter added as coauthors,2024-03-06T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2023-06-23T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Fiscal estimate received,2024-03-07T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Marklein,2024-02-07T06:00:00+00:00,[],WI,2023 +Read,2023-04-25T05:00:00+00:00,[],WI,2023 +Read a second time,2023-04-19T05:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-10-05T05:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Referred to committee on Rules,2023-12-01T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-02T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 4-25-2023 by Committee on Rules,2023-04-20T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 3, Noes 2",2023-05-30T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Available for scheduling,2023-10-24T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Local Government, Ayes 12, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Steffen added as a cosponsor,2023-05-24T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Public hearing held,2023-05-10T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Local Government, Ayes 8, Noes 4",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Read a third time and passed, Ayes 22, Noes 10",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Haywood added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-23T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Concurred in,2023-09-14T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Insurance, Ayes 11, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-18T05:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 by Committee on Rules,2023-09-12T05:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Tax Exemptions requested,2024-01-10T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-09-12T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Wanggaard,2023-11-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-13T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 14, Noes 1",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Made a special order of business at 10:35 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Concurred in,2023-09-14T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Family Law, Ayes 6, Noes 0",2023-10-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-02T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Economic Development and Technical Colleges, Ayes 6, Noes 0",2024-01-09T06:00:00+00:00,['amendment-passage'],WI,2023 +Representatives Moore Omokunde and Tranel added as coauthors,2023-05-11T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and passed,2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representatives Gustafson and Maxey added as coauthors,2023-11-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Colleges and Universities, Ayes 9, Noes 5",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Emerson added as a coauthor,2024-01-18T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 10, Noes 5",2023-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-06-09T05:00:00+00:00,[],WI,2023 +Representative Edming added as a cosponsor,2023-12-21T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and passed, Ayes 32, Noes 0",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Public hearing held,2024-02-07T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Stroebel,2023-05-01T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-06-15T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-21T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-04-25T05:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2023-11-02T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held by joint committee on Finance,2023-04-26T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-14T05:00:00+00:00,['receipt'],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2023-09-22T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-11T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Representative Steffen added as a coauthor,2023-06-09T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-02T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 2",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report adoption of Senate Amendment 3 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2024-01-11T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 offered by Representative Sortwell,2023-06-06T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Substitute Amendment 2 offered by Senator Jacque,2023-11-28T06:00:00+00:00,[],WI,2023 +Representative Clancy added as a coauthor,2024-02-05T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-10-03T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Rural Development, Ayes 11, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Felzkowski added as a coauthor,2024-02-27T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +"Read a third time and passed, Ayes 63, Noes 35",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative Doyle added as a cosponsor,2023-04-12T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 8, Noes 0",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Made a special order of business at 10:56 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-07T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2023-09-20T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-05-10T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 9, Noes 6",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +"Report passage as amended recommended by Committee on State Affairs, Ayes 13, Noes 0",2023-03-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-09T06:00:00+00:00,['deferral'],WI,2023 +Public hearing held,2023-08-08T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Fiscal estimate received,2023-09-11T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2023-11-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Fiscal estimate received,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 63, Noes 35",2023-10-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Concurred in,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended,2023-10-12T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Local Government, Ayes 11, Noes 0",2024-01-22T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +LRB correction (Senate Substitute Amendment 1),2024-02-14T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +"Read a third time and adopted, Ayes 21, Noes 10",2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Fiscal estimate received,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-05-12T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Representative Joers added as a cosponsor,2023-06-19T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Representative Steffen added as a coauthor,2023-04-17T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-05T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Laid on the table,2023-11-07T06:00:00+00:00,['deferral'],WI,2023 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2023-10-16T05:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Senate Organization,2023-06-23T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-10-05T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Campaigns and Elections, Ayes 8, Noes 0",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Representative Moses added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Referred to joint committee on Finance,2023-09-22T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Transportation, Ayes 13, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-03-14T05:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2023-03-22T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-09T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Made a special order of business at 10:46 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-01-17T06:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 1 offered by Representative Steffen,2024-02-05T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 22, Noes 10",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senator Carpenter added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Utilities and Technology, Ayes 5, Noes 0",2023-10-06T05:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2023-06-21T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-07-14T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-02T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:22 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2023-09-28T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-12T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 23, Noes 8",2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2023-05-24T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-09-08T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-05-24T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-28-2023 pursuant to Senate Rule 18(1),2023-06-27T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Made a special order of business at 11:06 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-08-21T05:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 11, Noes 0",2023-06-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Read a third time and passed, Ayes 23, Noes 9",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senator Cowles added as a cosponsor,2023-06-07T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-16T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Assembly Amendment 3 offered by Representative Subeck,2024-01-24T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:39 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 4-19-2023 pursuant to Senate Rule 18(1),2023-04-18T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Representative Moore Omokunde added as a coauthor,2023-05-23T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +"Read a third time and adopted, Ayes 21, Noes 10",2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Senate Amendment 1 adopted,2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Committee on Insurance and Small Business, Ayes 3, Noes 2",2024-02-26T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-12-14T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report adoption of Senate Amendment 2 recommended by Committee on Health, Ayes 5, Noes 1",2024-03-06T06:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2024-01-11T06:00:00+00:00,['referral-committee'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Health, Ayes 6, Noes 0",2024-02-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-20T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2023-05-08T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +Read a third time and passed,2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2023-03-15T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Concurred in,2023-06-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +"Read a third time and passed, Ayes 22, Noes 10",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +"Representatives Gustafson, O'Connor and Maxey added as coauthors",2023-11-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Decision of the Chair appealed,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Senator Hesselbein added as a coauthor,2023-04-18T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 24, Noes 8",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2023-09-12T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Jobs, Economy and Small Business Development, Ayes 11, Noes 0",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-04-18T05:00:00+00:00,['withdrawal'],WI,2023 +"Report passage as amended recommended by Committee on Financial Institutions, Ayes 8, Noes 1",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2024-01-30T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:13 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-06-21T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Veterans and Military Affairs, Ayes 13, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Read a third time and passed, Ayes 25, Noes 7",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Public hearing held,2023-08-30T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 14, Noes 1",2023-06-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Read and referred to committee on Senate Organization,2023-05-24T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 to Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 12, Noes 0",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Concurred in,2023-10-12T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage as amended recommended by Committee on Mental Health and Substance Abuse Prevention, Ayes 11, Noes 1",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on State Affairs, Ayes 13, Noes 0",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +LRB correction (Assembly Amendment 3),2024-02-12T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 28, Noes 3",2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Fiscal estimate received,2023-11-09T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +"Read a third time and passed, Ayes 92, Noes 4",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representatives Gustafson and O'Connor added as coauthors,2023-11-13T06:00:00+00:00,[],WI,2023 +Senator Roys added as a cosponsor,2023-01-31T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-12-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-09-06T05:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-11T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-10-06T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Senator Marklein added as a cosponsor,2023-06-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Magnafici added as a coauthor,2023-11-22T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Substitute Amendment 1 offered by Representative Sinicki,2024-02-20T06:00:00+00:00,[],WI,2023 +"Representatives Plumer, Conley and Joers added as coauthors",2024-01-18T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 3 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Hesselbein added as a coauthor,2023-04-18T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +LRB correction (Senate Amendment 1),2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Brooks added as a coauthor,2024-02-07T06:00:00+00:00,[],WI,2023 +"Read a third time and adopted, Ayes 21, Noes 10",2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2023-04-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2023-06-09T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Workforce Development and Economic Opportunities, Ayes 14, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +LRB correction (Assembly Substitute Amendment 1),2024-02-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 1",2023-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Senator Cowles added as a cosponsor,2023-06-07T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Financial Institutions, Ayes 9, Noes 0",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Clancy added as a cosponsor,2023-05-15T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-11T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2023-11-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Concurred in,2024-01-25T06:00:00+00:00,[],WI,2023 +Concurred in by unanimous rising vote,2023-09-14T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Senator Cabral-Guevara withdrawn as a coauthor,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Referred to committee on Rules,2023-10-12T05:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give joint resolution its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +LRB correction,2023-05-09T05:00:00+00:00,[],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2023-09-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-09-08T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage, with emergency statement attached, pursuant to s. 16.47 (2), Wisconsin Statutes, recommended by Joint Committee on Finance, Ayes 11, Noes 3",2023-06-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-10-06T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 23, Noes 9",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Made a special order of business at 10:53 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-04-25T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 9-14-2023 by Committee on Rules,2023-09-12T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Senator Roys withdrawn as a coauthor,2023-09-14T05:00:00+00:00,['withdrawal'],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Representative Vining added as a cosponsor,2024-02-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-04-19T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 2 offered by Representative Emerson,2024-02-22T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Subeck and O'Connor added as cosponsors,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-04-25T05:00:00+00:00,['reading-3'],WI,2023 +"Report Assembly Substitute Amendment 2 adoption recommended by Committee on Environment, Ayes 5, Noes 3",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Representatives O'Connor and Michalski added as coauthors,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Cabrera added as a cosponsor,2023-06-07T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 offered by Representative Dallman,2023-11-14T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 12, Noes 0",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Wittke,2024-01-25T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report Assembly Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 12, Noes 3",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Veterans and Military Affairs, Ayes 15, Noes 0",2024-01-30T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2023-11-13T06:00:00+00:00,['referral-committee'],WI,2023 +Assembly Substitute Amendment 1 offered by Representatives Stubbs and Goeben,2024-02-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative Swearingen added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:51 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-21T05:00:00+00:00,['reading-2'],WI,2023 +Laid on the table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Representative Allen added as a cosponsor,2024-02-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Representative Macco added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Senator Hesselbein added as a coauthor,2023-08-23T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-11-29T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2023-06-07T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Concurred in,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2023-04-18T05:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Bodden added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Concurred in,2024-02-22T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Consumer Protection, Ayes 7, Noes 0",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on the table,2023-11-09T06:00:00+00:00,['deferral'],WI,2023 +Senator Larson added as a coauthor,2024-01-19T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-22-2023 by Committee on Rules,2023-03-14T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a coauthor,2023-09-19T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 21, Noes 11",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Penterman added as a coauthor,2024-01-04T06:00:00+00:00,[],WI,2023 +Representative Penterman added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-07T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Senate Amendment 1 offered by Senator Ballweg,2024-01-22T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-09-12T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-04-20T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-10-11T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage recommended by Committee on Colleges and Universities, Ayes 14, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Substitute Amendment 2 adoption recommended by Committee on Ways and Means, Ayes 7, Noes 3",2023-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-03-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Senate Amendment 2 offered by Senator Jacque,2023-10-13T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Andraca added as a coauthor,2023-07-27T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-09T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-06-07T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 1 laid on table, Ayes 63, Noes 35",2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Senate Amendment 2 offered by Senator Feyen,2023-05-24T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-06-09T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-12-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and passed,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Insurance and Small Business, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2024-01-04T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-10-24T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Education, Ayes 13, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Children and Families, Ayes 11, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-05T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-01-23T06:00:00+00:00,['referral-committee'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Education, Ayes 7, Noes 0",2024-02-05T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 2 offered by Senator Bradley,2024-02-19T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Made a special order of business at 11:07 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Vining added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report passage as amended recommended by Committee on Children and Families, Ayes 8, Noes 4",2023-09-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and passed, Ayes 63, Noes 35",2023-10-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Senate Amendment 2 offered by Senators Roys, L. Johnson, Pfaff, Spreitzer, Agard, Carpenter, Hesselbein, Larson and Smith",2023-10-17T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Economic Development and Technical Colleges, Ayes 6, Noes 0",2024-02-28T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Retirement Systems received,2023-05-26T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Colleges and Universities, Ayes 14, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-15T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-14-2023 by Committee on Rules,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-03-14T05:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-12-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Senator Cowles added as a coauthor,2024-02-15T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2023-09-11T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-07T06:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-09-20T05:00:00+00:00,[],WI,2023 +LRB correction (Assembly Amendment 2),2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Brandtjen added as a coauthor,2024-01-24T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Vining added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report Assembly Amendment 1 to Assembly Substitute Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 10, Noes 5",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 1 to Assembly Amendment 2 adoption recommended by Committee on Ways and Means, Ayes 12, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Made a special order of business at 10:30 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2024-02-22T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 2 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-27T06:00:00+00:00,['amendment-passage'],WI,2023 +Available for scheduling,2024-02-28T06:00:00+00:00,[],WI,2023 +Senator Wanggaard added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-09-12T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 13, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Representative Snodgrass added as a cosponsor,2023-06-08T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2023-10-16T05:00:00+00:00,['referral-committee'],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Representative Vining added as a coauthor,2024-02-22T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken by joint survey committee on Tax Exemptions,2023-06-20T05:00:00+00:00,[],WI,2023 +Representative Joers added as a coauthor,2023-06-13T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Sortwell,2023-06-06T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 2 offered by Senator Quinn,2023-06-12T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Decision of the Chair appealed,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 98, Noes 0",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Fiscal estimate received,2023-06-06T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended and taken up,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 7, Noes 0",2024-02-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Made a special order of business at 10:18 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-11T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-03-14T05:00:00+00:00,[],WI,2023 +Representative Penterman added as a coauthor,2024-01-26T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Executive action taken,2023-09-12T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-11-20T06:00:00+00:00,['receipt'],WI,2023 +Representative Conley withdrawn as a coauthor,2024-02-12T06:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Representatives Billings and Hong added as coauthors,2023-08-01T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 62, Noes 34, Paired 2",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-12-14T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Insurance and Small Business, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2023-12-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-24T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-10-12T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Senate Amendment 2 offered by Senator Feyen,2023-06-12T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Consumer Protection, Ayes 8, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 2 to Assembly Substitute Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 1",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 7, Noes 3",2023-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 3-22-2023 by Committee on Rules,2023-03-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-12-06T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Senator Carpenter added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-10-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative C. Anderson added as a coauthor,2024-02-12T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and passed, Ayes 62, Noes 35",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 12, Noes 3",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-29T06:00:00+00:00,[],WI,2023 +Senator Hutton added as a cosponsor,2023-03-16T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representatives Sortwell and Ortiz-Velez,2023-11-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended,2023-09-12T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Fiscal estimate received,2024-02-01T06:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2023-06-21T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Concurred in,2024-02-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:20 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Housing and Real Estate, Ayes 11, Noes 0",2023-06-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Representatives Penterman, O'Connor and Maxey added as coauthors",2023-11-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Bare added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Shankland added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Concurred in,2023-06-07T05:00:00+00:00,[],WI,2023 +Assembly Amendment 3 offered by Representative Green,2024-02-12T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Representative O'Connor added as a coauthor,2023-11-13T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-25T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +Made a special order of business at 10:34 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-12-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Health, Ayes 5, Noes 1",2024-03-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on State Affairs, Ayes 14, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on the table,2024-02-15T06:00:00+00:00,['deferral'],WI,2023 +Representatives C. Anderson and Gustafson added as coauthors,2023-11-13T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-06T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Cabrera added as a coauthor,2023-11-09T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Stubbs added as a cosponsor,2023-10-05T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Campaigns and Elections, Ayes 8, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Concurred in,2023-04-18T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Substitute Amendment 1 offered by Representative Summerfield,2023-09-08T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 11, Noes 1",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on the table,2023-11-07T06:00:00+00:00,['deferral'],WI,2023 +Referred to committee on Rules,2024-02-15T06:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Local Government, Ayes 12, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Concurred in,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Joint Committee on Finance, Ayes 12, Noes 3",2024-02-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Armstrong,2024-01-30T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 21, Noes 11",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-09-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Read a second time,2023-04-19T05:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2024-01-12T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Agriculture, Ayes 6, Noes 4",2023-10-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and passed,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Concurred in,2023-06-07T05:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read a third time and adopted, Ayes 21, Noes 10",2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Representative Shankland added as a cosponsor,2023-09-15T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Representative Macco added as a cosponsor,2023-10-13T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2023-05-31T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Rules suspended,2023-04-25T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Environment, Ayes 5, Noes 3",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2023-11-13T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 adopted,2024-01-25T06:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2024-01-30T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +"Read a third time and passed, Ayes 63, Noes 33, Paired 2",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Carpenter added as a coauthor,2023-09-14T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Children and Families, Ayes 11, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Laid on the table,2024-01-18T06:00:00+00:00,['deferral'],WI,2023 +"Read a third time and passed, Ayes 63, Noes 33, Paired 2",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-06-21T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 3, Noes 2",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senators Carpenter and Agard added as coauthors,2023-10-17T05:00:00+00:00,[],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-20T05:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Education, Ayes 14, Noes 0",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2023-09-22T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Representative Kitchens added as a coauthor,2023-04-24T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2023-11-13T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:17 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Executive action taken by joint survey committee on Tax Exemptions,2023-09-11T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-06-21T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-13T06:00:00+00:00,[],WI,2023 +Representative Cabrera added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 63, Noes 35",2023-10-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report Assembly Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 8, Noes 0",2023-11-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken by joint survey committee on Retirement Systems,2023-05-15T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 1",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 offered by Senator James,2023-06-29T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Representative Macco added as a coauthor,2023-04-18T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 12, Noes 1",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2023-10-16T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 21, Noes 11",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Joers added as a coauthor,2024-02-27T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Senator Cowles added as a cosponsor,2024-02-07T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Utilities and Technology, Ayes 5, Noes 0",2023-10-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken by joint survey committee on Tax Exemptions,2023-10-16T05:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Assembly Amendment 3 offered by Representative Summerfield,2023-09-13T05:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Joint Committee on Finance,2023-05-02T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-06T06:00:00+00:00,['referral-committee'],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2023-10-11T05:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give joint resolution its third reading,2023-01-17T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Representative Emerson added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-26T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-26T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 adopted,2023-03-22T05:00:00+00:00,['amendment-passage'],WI,2023 +Senate Amendment 1 adopted,2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Senate Amendment 1 adopted,2023-03-22T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 2 offered by Senator Knodl,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Representative O'Connor added as a cosponsor,2023-09-01T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Failed to adopt pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Consumer Protection, Ayes 7, Noes 0",2023-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representatives Subeck and O'Connor added as cosponsors,2024-01-16T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-10T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Public hearing held,2023-08-23T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and passed,2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2023-08-15T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-02-21T06:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Senate Amendment 3 offered by Senator Cabral-Guevara,2024-02-14T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Senate Substitute Amendment 1 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +"Agard, Bradley, Cabral-Guevara, Felzkowski, Feyen, Hesselbein, Hutton, Jagler, James, Kapenga, Knodl, L. Johnson, Larson, LeMahieu, Pfaff, Quinn, Roys, Stafsholt, Stroebel, Taylor, Testin, Tomczyk, Wanggaard, Wimberger and Wirch of the Senate added as cosponsors",2023-09-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-06-21T05:00:00+00:00,['withdrawal'],WI,2023 +Representative McGuire added as a cosponsor,2023-06-19T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-09T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Senators Taylor and Spreitzer added as coauthors,2023-06-14T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Bare added as a coauthor,2024-01-26T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Brooks added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative C. Anderson added as a coauthor,2024-02-12T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-24T05:00:00+00:00,[],WI,2023 +Concurred in,2023-04-19T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-06-07T05:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Concurred in,2023-03-22T05:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-07T06:00:00+00:00,['deferral'],WI,2023 +Senator Carpenter added as a coauthor,2023-04-19T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +"Decision of the Chair upheld, Ayes 62, Noes 34",2024-02-13T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 1 offered by Representative Vos,2024-02-22T06:00:00+00:00,[],WI,2023 +Concurred in,2023-03-22T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-03-22T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Health, Ayes 6, Noes 0",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Subeck,2024-02-22T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2023-06-23T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-03-14T05:00:00+00:00,['reading-3'],WI,2023 +Senator Knodl added as a cosponsor,2023-06-28T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Utilities and Technology, Ayes 5, Noes 0",2024-01-10T06:00:00+00:00,['amendment-passage'],WI,2023 +"Read a third time and passed, Ayes 62, Noes 35",2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2023-06-23T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-03-08T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-04-18T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +Senate Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2023-04-25T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 2 offered by Representative Neubauer,2024-02-22T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-13T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Shankland,2024-02-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-03-23T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Representative Edming added as a coauthor,2023-12-21T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-04-12T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Subeck added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +LRB correction,2023-09-13T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-06-21T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Senate Substitute Amendment 1 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Executive action taken by joint committee on Finance,2023-05-02T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-26T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Executive action taken,2023-12-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Executive action taken,2023-05-08T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Bare added as a cosponsor,2023-06-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-26T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Committee on Colleges and Universities, Ayes 9, Noes 5",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report adoption of Senate Amendment 2 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2023-10-04T05:00:00+00:00,['amendment-passage'],WI,2023 +"Read a third time and passed, Ayes 21, Noes 11",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Placed at the foot of the calendar of 2-20-2024,2024-02-20T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2023-04-25T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Andraca added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-13T05:00:00+00:00,['receipt'],WI,2023 +Representative C. Anderson added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Read a third time and passed, Ayes 22, Noes 10",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2023-09-20T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Vining added as a cosponsor,2023-08-22T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give bill its third reading,2023-03-22T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Dittrich added as a cosponsor,2024-01-11T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 31, Noes 0",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 3 offered by Senator Wimberger,2024-03-04T06:00:00+00:00,[],WI,2023 +Senator L. Johnson added as a cosponsor,2023-10-30T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Laid on the table,2023-11-09T06:00:00+00:00,['deferral'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Tax Exemptions requested,2024-03-04T06:00:00+00:00,[],WI,2023 +"Representatives Billings, Gustafson and O'Connor added as coauthors",2023-11-13T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-10-16T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-04-25T05:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +"Read a third time and passed, Ayes 21, Noes 10",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Substitute Amendment 1 offered by Representative Bare,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Deposited in the office of the Secretary of State on 1-19-2023,2023-01-19T06:00:00+00:00,[],WI,2023 +Executive action taken by joint survey committee on Tax Exemptions,2024-02-19T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read,2023-04-19T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:22 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-19-2023 by Committee on Rules,2023-01-17T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Public hearing held,2023-07-12T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Representative Melotik added as a cosponsor,2023-10-10T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Assembly Amendment 3 adopted, Ayes 64, Noes 34",2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2023-04-25T05:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +"Representatives Palmeri, Joers, Bare and Steffen added as coauthors",2023-04-26T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-04-18T05:00:00+00:00,[],WI,2023 +"Senate Substitute Amendment 2 offered by Senators Smith, Hesselbein, Larson, Spreitzer, Carpenter, Agard, Roys, Pfaff, Wirch and L. Johnson",2024-02-20T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Energy and Utilities, Ayes 15, Noes 0",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Concurred in,2023-11-14T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-01T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Substitute Amendment 1 adopted,2024-03-12T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Ballweg,2023-11-07T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-03-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2024-02-15T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Transportation, Ayes 12, Noes 1",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative O'Connor added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Read,2024-01-16T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-24T06:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Representative O'Connor added as a coauthor,2023-09-28T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-21T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2023-01-19T06:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 2 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Laid on the table,2024-02-15T06:00:00+00:00,['deferral'],WI,2023 +Concurred in,2023-06-07T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-06-07T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-10-16T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read,2023-11-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-08-15T05:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-09T06:00:00+00:00,['deferral'],WI,2023 +"Report passage recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-11-29T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to joint committee on Finance,2024-02-01T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Representatives C. Anderson and Considine added as coauthors,2023-06-28T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Education, Ayes 7, Noes 0",2023-06-27T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 21, Noes 11",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Available for scheduling,2023-03-20T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-05T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 15, Noes 0",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Senate Amendment 2 offered by Senator Stroebel,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 14, Noes 1",2023-06-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and passed, Ayes 62, Noes 34, Paired 2",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report passage as amended recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2023-04-10T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-06-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 15, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 8, Noes 0",2023-03-16T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Energy and Utilities, Ayes 16, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 14, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Read,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2023-11-10T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Regulatory Licensing Reform, Ayes 6, Noes 1",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Concurred in,2024-02-13T06:00:00+00:00,[],WI,2023 +Senator Hesselbein added as a coauthor,2023-05-16T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Brooks,2023-06-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-10-16T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Representatives Cabrera and Krug added as coauthors,2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-28-2023 pursuant to Senate Rule 18(1),2023-06-27T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Representative Ratcliff added as a coauthor,2023-05-17T05:00:00+00:00,[],WI,2023 +Representative Riemer added as a cosponsor,2023-11-13T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-03-22T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-23T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-04-25T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-04-19T05:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Senate Organization,2023-06-23T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-30T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Representative Joers added as a cosponsor,2023-07-07T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Insurance, Ayes 11, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Cabrera added as a coauthor,2023-06-20T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-23T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-06-27T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Executive action taken by joint survey committee on Tax Exemptions,2023-10-16T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-05-23T05:00:00+00:00,[],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Senator Agard added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +"Read a third time and adopted, Ayes 63, Noes 35",2023-09-12T05:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2023-09-14T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Senator Wimberger added as a cosponsor,2024-02-07T06:00:00+00:00,[],WI,2023 +Placed at the foot of the calendar of 2-20-2024,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Economic Development and Technical Colleges, Ayes 6, Noes 0",2024-01-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report passage recommended by Committee on Veterans and Military Affairs, Ayes 13, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2024-01-18T06:00:00+00:00,['deferral'],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +"Report passage recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2024-03-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Emerson added as a coauthor,2024-01-18T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Environment, Ayes 8, Noes 0",2023-04-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Ratcliff added as a coauthor,2023-11-03T05:00:00+00:00,[],WI,2023 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,['referral-committee'],WI,2023 +Senator Carpenter added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 20, Noes 13",2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Concurred in,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +"Read a third time and adopted, Ayes 62, Noes 35",2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Campaigns and Elections, Ayes 9, Noes 0",2023-11-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Substitute Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-20T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +"Concurred in, Ayes 22, Noes 10",2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Brandtjen,2024-02-12T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Representatives Subeck and O'Connor added as coauthors,2024-01-16T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 62, Noes 34",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-06T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-12-21T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-10-10T05:00:00+00:00,[],WI,2023 +"Read a third time and adopted, Ayes 64, Noes 34",2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Representative Joers added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Children and Families, Ayes 8, Noes 4",2023-09-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-26T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-13T06:00:00+00:00,['withdrawal'],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a cosponsor,2024-02-06T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +"Representatives Emerson, Gustafson and Duchow added as coauthors",2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Kitchens added as a coauthor,2023-04-24T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-07T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Transportation, Ayes 13, Noes 0",2023-11-01T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Concurred in,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on State Affairs, Ayes 9, Noes 4",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Made a special order of business at 10:11 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Shelton added as a coauthor,2023-04-18T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-10T06:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 62, Noes 35",2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 6-14-2023 by Committee on Rules,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 2 offered by Representative Kurtz,2024-01-10T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read and referred to committee on Senate Organization,2023-10-13T05:00:00+00:00,['referral-committee'],WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Senate Amendment 2 offered by Senator Testin,2023-10-17T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Read,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-02-20T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended,2023-06-07T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 30, Noes 2",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2023-11-15T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 96, Noes 1",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and passed, Ayes 21, Noes 11",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Adopted,2023-10-17T05:00:00+00:00,['passage'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Concurred in,2023-09-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representatives Duchow and Macco added as coauthors,2023-04-18T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +"Refused to refer to committee on Campaigns and Elections, Ayes 34, Noes 63",2023-11-09T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Report correctly enrolled,2023-09-20T05:00:00+00:00,['enrolled'],WI,2023 +Referred to joint committee on Finance,2023-06-07T05:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 62, Noes 36",2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-09-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Senate Amendment 2 offered by Senator LeMahieu,2023-11-14T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and passed,2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate concurred in,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Representative Joers added as a coauthor,2023-07-06T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 6-28-2023 pursuant to Senate Rule 18(1),2023-06-27T05:00:00+00:00,[],WI,2023 +"Report of Joint Survey Committee on Tax Exemptions received, Ayes 5, Noes 4",2023-10-16T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Senator Smith added as a coauthor,2024-02-09T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2023-05-23T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on the table,2023-06-21T05:00:00+00:00,['deferral'],WI,2023 +Laid on the table,2024-01-18T06:00:00+00:00,['deferral'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Concurred in,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Shankland added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:45 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 1 adopted,2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2023-04-25T05:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2023-06-23T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 23, Noes 9",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2023-04-19T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Concurred in,2023-04-25T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 31, Noes 1",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-11T05:00:00+00:00,['receipt'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-06-27T05:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2023-07-12T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-01T05:00:00+00:00,['referral-committee'],WI,2023 +Concurred in,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Amendment 2 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Haywood added as a cosponsor,2023-11-21T06:00:00+00:00,[],WI,2023 +Senator Cowles added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Representative Joers added as a coauthor,2023-06-19T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 62, Noes 35",2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2023-09-12T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Concurred in,2023-06-28T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Representative Magnafici added as a coauthor,2023-12-05T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Representative Steffen added as a coauthor,2024-01-12T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken by joint committee on Finance,2024-02-01T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 53, Noes 44",2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-02T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-05-23T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-11-07T06:00:00+00:00,[],WI,2023 +"Assembly Substitute Amendment 1 offered by Representatives Neubauer, Haywood, Subeck, Billings, Shelton, Snodgrass, Goyke, McGuire, C. Anderson, J. Anderson, Andraca, Baldeh, Bare, Clancy, Conley, Considine, Doyle, Drake, Emerson, Hong, Jacobson, Joers, Madison, Moore Omokunde, Myers, Ohnstad, Ortiz-Velez, Palmeri, Ratcliff, Riemer, Shankland, Sinicki, Stubbs and Vining",2023-01-19T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-03-16T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-04-18T05:00:00+00:00,['reading-3'],WI,2023 +Concurred in by unanimous rising vote,2023-04-19T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-06-02T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Assembly,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +"Representatives Emerson, Clancy, Madison, Andraca, Ratcliff and Conley added as coauthors",2023-11-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-04-10T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2024-01-12T06:00:00+00:00,['receipt'],WI,2023 +Representative Snodgrass added as a coauthor,2023-06-08T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-06-07T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Representatives Cabrera and Andraca added as coauthors,2023-06-20T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Senate Amendment 2 offered by Senator Stroebel,2024-02-12T06:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Placed on the foot of the 11th order of business on the calendar of 2-13-2024,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 96, Noes 0",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Swearingen added as a cosponsor,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 4, Noes 0",2023-10-09T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative Emerson added as a cosponsor,2023-03-29T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Senator Carpenter added as a cosponsor,2023-11-01T05:00:00+00:00,[],WI,2023 +"Concurred in, Ayes 63, Noes 35",2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Not published. Enrolled Joint Resolution 1,2023-05-11T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 5, Noes 2",2023-06-27T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Neylon added as a coauthor,2023-11-20T06:00:00+00:00,[],WI,2023 +"Report of Joint Survey Committee on Tax Exemptions received, Ayes 8, Noes 1",2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken by joint committee on Finance,2024-02-01T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-29T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-13T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-11-07T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +Laid on the table,2023-10-17T05:00:00+00:00,['deferral'],WI,2023 +Received from Assembly,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-04-18T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 6-14-2023 by Committee on Rules,2023-06-07T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Report correctly enrolled,2023-01-23T06:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Representatives O'Connor and Emerson added as coauthors,2023-06-21T05:00:00+00:00,[],WI,2023 +Representative Melotik added as a coauthor,2023-10-04T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 15, Noes 0",2024-01-30T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Substitute Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Transportation, Ayes 9, Noes 4",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Subeck added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-10-17T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 96, Noes 0",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-03-14T05:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +"Senate Substitute Amendment 3 offered by Senators Pfaff, Wirch, Hesselbein, Agard, Carpenter, L. Johnson, Larson, Smith, Spreitzer and Taylor",2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Plumer added as a coauthor,2024-01-18T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 13, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-10-16T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-03-23T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Representative Cabrera added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-04-25T05:00:00+00:00,[],WI,2023 +Representative Callahan added as a cosponsor,2023-12-11T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Referred to joint committee on Finance,2024-01-10T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +"Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senators Smith, Hesselbein, Larson, Spreitzer, Carpenter, Agard, Roys, Pfaff, Wirch and L. Johnson",2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 adopted,2023-11-09T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and passed,2023-04-18T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 3-24-2023,2023-03-24T05:00:00+00:00,['enrolled'],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Senator Carpenter added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +"Senate Substitute Amendment 1 offered by Senators Roys, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Smith, Spreitzer, Wirch and Taylor",2023-11-07T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Emerson added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 10-18-2023,2023-10-18T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-04-25T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +"Assembly Amendment 4 offered by Representatives Oldenburg, Novak, Tranel, Plumer and Mursau",2023-09-14T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Decision of the Chair appealed,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Representative Drake added as a cosponsor,2023-10-10T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 15, Noes 0",2023-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Representative Brooks added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-11-09T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 9, Noes 0",2023-11-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Brandtjen added as a cosponsor,2024-01-24T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Received from Senate,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 2-16-2024,2024-02-16T06:00:00+00:00,['enrolled'],WI,2023 +Fiscal estimate received,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2023-09-12T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2023-04-12T05:00:00+00:00,['referral-committee'],WI,2023 +Concurred in,2023-06-07T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-03-07T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +LRB correction,2023-12-22T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-11-09T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Shankland added as a coauthor,2024-01-19T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-01-09T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Senator Ballweg added as a coauthor,2023-10-05T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 15, Noes 0",2023-09-27T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Regulatory Licensing Reform, Ayes 9, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Fiscal estimate requested from the Legislative Fiscal Bureau, pursuant to Senate Rule 96 (1)",2023-06-13T05:00:00+00:00,[],WI,2023 +Referred to joint committee on Finance,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 2 offered by Joint Committee on Finance,2023-09-26T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2023-10-04T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and passed, Ayes 21, Noes 11",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Senator Agard added as a coauthor,2023-06-06T05:00:00+00:00,[],WI,2023 +"Senate Amendment 1 to Senate Substitute Amendment 1 adopted, Ayes 31, Noes 1",2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Cabrera added as a coauthor,2023-06-20T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 90, Noes 7",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Fiscal estimate received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +"Report adoption of Senate Amendment 1 to Senate Substitute Amendment 1 recommended by Committee on Universities and Revenue, Ayes 9, Noes 0",2023-05-09T05:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Colleges and Universities, Ayes 14, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Quinn,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-22-2023 by Committee on Rules,2023-03-14T05:00:00+00:00,[],WI,2023 +Representative Vining added as a coauthor,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Joint Committee on Finance,2023-05-02T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report adoption of Senate Substitute Amendment 2 recommended by Committee on Health, Ayes 4, Noes 2",2023-12-11T06:00:00+00:00,['amendment-passage'],WI,2023 +Report correctly enrolled,2024-02-28T06:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 97, Noes 0",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 60, Noes 34",2023-04-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Executive action taken,2023-05-04T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-14-2023 by Committee on Rules,2023-03-08T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 14, Noes 0",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2023-04-18T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-06-21T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Education, Ayes 6, Noes 1",2024-02-05T06:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2023-09-28T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and passed, Ayes 60, Noes 35",2023-04-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 22, Noes 10",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Executive action taken by joint survey committee on Tax Exemptions,2024-02-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Brooks,2024-02-22T06:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Jobs, Economy and Small Business Development, Ayes 10, Noes 1",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-01-25T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 5, Noes 2",2023-08-15T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Made a special order of business at 10:20 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative O'Connor added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-09-06T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-13T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 60, Noes 35",2023-04-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and passed,2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Representative Shankland added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Point of order that Assembly Substitute Amendment 2 not germane under Assembly Rule 54 (3)(f) well taken,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-11-13T06:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2023-05-31T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +LRB correction,2024-01-02T06:00:00+00:00,[],WI,2023 +Senate Amendment 2 to Senate Substitute Amendment 1 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2024-02-08T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +"Read a third time and passed, Ayes 22, Noes 10",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-15T06:00:00+00:00,['deferral'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Representative Penterman added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +"Fiscal estimate requested from the Legislative Fiscal Bureau, pursuant to Senate Rule 96 (1)",2023-06-13T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-21T05:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 1 adopted,2023-11-09T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage as amended recommended by Committee on Agriculture, Ayes 12, Noes 0",2023-10-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Senator Wirch added as a coauthor,2023-06-20T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-19T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Assembly Substitute Amendment 2 offered by Representative Dittrich,2024-02-16T06:00:00+00:00,[],WI,2023 +"Assembly Substitute Amendment 1 laid on table, Ayes 62, Noes 35",2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 to Senate Amendment 1 offered by Senator Quinn,2023-06-12T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Laid on the table,2024-02-15T06:00:00+00:00,['deferral'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +LRB correction (Assembly Amendment 1),2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-04-19T05:00:00+00:00,['reading-3'],WI,2023 +Senate Substitute Amendment 1 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Concurred in,2023-03-22T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Ratcliff added as a cosponsor,2023-10-16T05:00:00+00:00,[],WI,2023 +Withdrawn from committee on Rules and referred to joint committee on Finance pursuant to Assembly Rule 42 (3)(c),2024-02-06T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +Decision of the Chair appealed,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-10-12T05:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 12, Noes 3",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Wichgers,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage as amended recommended by Committee on Local Government, Ayes 8, Noes 4",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2023-03-28T05:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:40 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Macco added as a cosponsor,2023-04-18T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on State Affairs, Ayes 12, Noes 0",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 99, Noes 0",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Substitute Amendment 1 offered by Representative Stubbs,2024-02-21T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Substitute Amendment 1 offered by Senator Quinn,2023-09-15T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-14-2023 by Committee on Rules,2023-06-07T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:24 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 8, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Concurred in,2023-03-22T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-04-19T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Representatives Gustafson and O'Connor added as coauthors,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Assembly,2023-10-12T05:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2023-11-09T06:00:00+00:00,['deferral'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Cabrera added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2024-01-04T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Representatives Gustafson and Maxey added as coauthors,2023-11-08T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 77, Noes 20",2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-12-14T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 18, Noes 14",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Subeck added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 14, Noes 0",2023-05-31T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Rules suspended to give bill its third reading,2023-06-14T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 12, Noes 1",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 21, Noes 11",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 2 offered by Representative Sortwell,2023-11-08T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-23T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2023-03-14T05:00:00+00:00,[],WI,2023 +Representative Allen added as a coauthor,2024-01-02T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 14, Noes 0",2023-06-07T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Made a special order of business at 10:10 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Read,2023-06-28T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Representative Joers added as a coauthor,2023-10-06T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Senate,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 14, Noes 1",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Utilities and Technology, Ayes 5, Noes 0",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +"Report of Joint Survey Committee on Tax Exemptions received, Ayes 9, Noes 0",2023-10-16T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-06T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Gustafson added as a coauthor,2023-10-16T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:14 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and passed, Ayes 96, Noes 2",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and adopted, Ayes 23, Noes 9",2023-01-17T06:00:00+00:00,['reading-3'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-03-12T05:00:00+00:00,[],WI,2023 +Concurred in,2023-06-07T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-06-27T05:00:00+00:00,[],WI,2023 +Concurred in,2023-06-07T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Shankland added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 52, Noes 45",2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on State Affairs, Ayes 12, Noes 1",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-04-18T05:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +"Senate Amendment 2 rejected, Ayes 20, Noes 11",2023-03-22T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-21T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Retirement Systems received,2023-05-15T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-10-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2023-06-21T05:00:00+00:00,['deferral'],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2023-09-11T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-09-05T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Gustafson added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-11-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2023-11-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Read a third time and adopted, Ayes 63, Noes 35",2023-09-12T05:00:00+00:00,['reading-3'],WI,2023 +Representative O'Connor added as a coauthor,2023-04-25T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative C. Anderson added as a coauthor,2023-04-13T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Ayes 3, Noes 2",2024-02-06T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-26T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Representatives O'Connor and Maxey added as coauthors,2023-11-08T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on State Affairs, Ayes 14, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-22-2023 by Committee on Rules,2023-03-14T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-03-20T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-05T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Representative Rozar added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Fiscal estimate received,2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +"Report of Joint Survey Committee on Tax Exemptions received, Ayes 9, Noes 0",2023-06-20T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 9-14-2023 by Committee on Rules,2023-09-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +LRB correction (Assembly Amendment 3),2024-01-24T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Ways and Means, Ayes 8, Noes 4",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Representative C. Anderson added as a coauthor,2023-03-16T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-06-09T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-12-05T06:00:00+00:00,['receipt'],WI,2023 +Representative Moses added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Steffen,2024-02-14T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-10-12T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Representative Bare added as a cosponsor,2023-06-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 23, Noes 9",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Ratcliff added as a coauthor,2023-08-07T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2023-10-16T05:00:00+00:00,[],WI,2023 +Senator Hesselbein added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Decision of the Chair upheld, Ayes 63, Noes 35",2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Assembly Substitute Amendment 1 adopted,2023-11-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative O'Connor added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and passed,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 23, Noes 10",2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2023-06-06T05:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Agard added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Representative Bare added as a cosponsor,2023-06-12T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senator Hesselbein added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 61, Noes 35",2023-03-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Referred to committee on Rules,2023-06-15T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Concurred in,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 10, Noes 2",2023-09-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 adopted,2023-11-09T06:00:00+00:00,['amendment-passage'],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Senator Smith added as a coauthor,2024-04-12T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 8, Noes 4",2023-09-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Read first time and referred to committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-10-13T05:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +"Fiscal estimate requested from the Legislative Fiscal Bureau, pursuant to Senate Rule 96 (1)",2023-06-13T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-06-13T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Senate Amendment 1 offered by Senators Spreitzer and Smith,2023-06-09T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representatives Cabrera and Andraca added as coauthors,2023-03-21T05:00:00+00:00,[],WI,2023 +Senator Agard added as a coauthor,2024-02-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Senate Amendment 2 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Housing, Rural Issues and Forestry, Ayes 4, Noes 0",2023-06-09T05:00:00+00:00,['amendment-passage'],WI,2023 +Read first time and referred to committee on Rules,2023-12-06T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 withdrawn and returned to author,2024-02-22T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:07 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Macco added as a coauthor,2023-06-21T05:00:00+00:00,[],WI,2023 +Representatives Cabrera and C. Anderson added as coauthors,2023-06-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 3 adoption recommended by Committee on Ways and Means, Ayes 12, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-03-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Senator Hesselbein added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 12, Noes 3",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative Steffen added as a coauthor,2023-08-08T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +"Read first time and referred to committee on Licensing, Constitution and Federalism",2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 96, Noes 0",2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 1 adopted,2023-11-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Andraca added as a coauthor,2024-03-18T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-04-25T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Government Operations, Ayes 5, Noes 0",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Report correctly enrolled,2024-02-28T06:00:00+00:00,['enrolled'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2023-03-14T05:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Joint Committee on Finance, Ayes 15, Noes 0",2023-09-26T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-04-25T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-06-21T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Senator Cowles added as a cosponsor,2023-06-07T05:00:00+00:00,[],WI,2023 +"Representatives Nedweski, C. Anderson, Gustafson, Schutt, Rettinger, Ohnstad, McGuire and Palmeri added as coauthors",2023-11-13T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Palmeri withdrawn as a cosponsor,2023-10-19T05:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Read a third time and passed, Ayes 64, Noes 32",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Substitute Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +"Read first time and referred to committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-10-13T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +LRB correction,2023-09-13T05:00:00+00:00,[],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Representative Snodgrass added as a coauthor,2023-06-08T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Senator Carpenter added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 87, Noes 8",2023-04-18T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Representative Gustafson added as a coauthor,2023-10-16T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2023-09-29T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative O'Connor added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Education, Ayes 7, Noes 0",2024-02-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 2-27-2024,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Received from Assembly,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on State Affairs, Ayes 12, Noes 1",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-16T05:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-08T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage as amended recommended by Committee on Jobs, Economy and Small Business Development, Ayes 10, Noes 1",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give bill its third reading,2023-03-22T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2023-12-06T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-11-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report of Joint Survey Committee on Tax Exemptions received, Ayes 8, Noes 0",2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +"Read a third time and passed, Ayes 33, Noes 0",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Made a special order of business at 10:13 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 4-18-2023 by Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-03-23T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-08-15T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-04-19T05:00:00+00:00,['reading-3'],WI,2023 +Senate Amendment 1 adopted,2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-04-18T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Summerfield,2024-02-12T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Subeck added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 20, Noes 12",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-09-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-25T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Decision of the Chair appealed,2024-02-22T06:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-09-22T05:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Rules,2023-03-24T05:00:00+00:00,['referral-committee'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Received from Senate concurred in,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 6-15-2023,2023-06-15T05:00:00+00:00,['enrolled'],WI,2023 +Rules suspended,2023-09-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2023-05-31T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Senate Substitute Amendment 1 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Representative Jacobson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Senator Carpenter added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative O'Connor added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-09-12T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate concurred in,2023-04-19T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Representative O'Connor added as a coauthor,2023-11-13T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Representatives Steffen and O'Connor added as coauthors,2023-10-17T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +"Made a special order of business at 12:02 p.m. on 6-14-2023 by the committee on Senate Organization, Ayes 4, Noes 1",2023-06-13T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 22, Noes 10",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate concurred in,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-10T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-27T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 2 adopted,2024-01-25T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 28, Noes 3",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Referred to joint committee on Finance,2023-10-26T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Macco added as a coauthor,2023-06-21T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Ratcliff added as a cosponsor,2024-01-05T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Read a third time and passed, Ayes 29, Noes 2",2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Representative Andraca added as a coauthor,2024-02-22T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-05-31T05:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Representatives Emerson and Gustafson added as coauthors,2024-01-17T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +Read first time and referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative Bare added as a cosponsor,2023-06-12T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2023-09-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 1 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2023-01-17T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 9, Noes 6",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Executive action taken by joint survey committee on Tax Exemptions,2023-05-15T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2023-03-22T05:00:00+00:00,['amendment-passage'],WI,2023 +Read first time and referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and passed, Ayes 22, Noes 11",2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Representative C. Anderson added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Senator Hesselbein added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Placed on the foot of the 11th order of business on the calendar of 6-14-2023,2023-06-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2023-04-19T05:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2024-02-08T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-28-2023 pursuant to Senate Rule 18(1),2023-06-27T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:29 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 15, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-10-13T05:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-01-22T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-06-27T05:00:00+00:00,[],WI,2023 +"Decision of the Chair upheld, Ayes 63, Noes 35",2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Children and Families, Ayes 12, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +"Read a third time and passed, Ayes 96, Noes 0",2023-03-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 1 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Senate Amendment 2 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +"Read a third time and passed, Ayes 23, Noes 9",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 withdrawn and returned to author,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Senator Hutton added as a cosponsor,2023-03-16T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-18T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-03-24T05:00:00+00:00,['referral-committee'],WI,2023 +Decision of the Chair appealed,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 withdrawn and returned to author,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2023-06-07T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-10-12T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Representative Madison added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-12T05:00:00+00:00,['referral-committee'],WI,2023 +Concurred in by unanimous rising vote,2023-06-28T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Tax Exemptions requested,2024-01-29T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Health, Ayes 4, Noes 2",2023-12-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Regulatory Licensing Reform, Ayes 9, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Knodl added as a coauthor,2023-03-17T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Shankland added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-13T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Fiscal estimate received,2024-02-09T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Representatives Snodgrass and Emerson added as coauthors,2023-06-21T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-09-27T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-10-04T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Jacque,2024-02-27T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Universities and Revenue, Ayes 8, Noes 1",2023-05-09T05:00:00+00:00,['amendment-passage'],WI,2023 +Read first time and referred to committee on Rules,2024-02-15T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-04-25T05:00:00+00:00,[],WI,2023 +Executive action taken by joint committee on Finance,2023-05-04T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Joint Committee on Finance, Ayes 15, Noes 0",2023-09-26T05:00:00+00:00,['amendment-passage'],WI,2023 +Received from Assembly,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +"Representatives Conley, Madison, Palmeri and Subeck withdrawn as coauthors",2024-02-16T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-03-14T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Senator Wirch added as a coauthor,2023-03-20T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Representative O'Connor added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 10-19-2023,2023-10-19T05:00:00+00:00,['enrolled'],WI,2023 +Concurred in,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Assembly,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-04-25T05:00:00+00:00,['reading-3'],WI,2023 +LRB correction (Assembly Substitute Amendment 1),2023-09-12T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 4-18-2023 by Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Representative Shankland added as a cosponsor,2023-09-15T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-09-13T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Rules,2024-01-11T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-05-23T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 2 offered by Senator Jacque,2024-01-04T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-01-18T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-04-19T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2023-06-29T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 1 adopted,2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-05-23T05:00:00+00:00,['amendment-passage'],WI,2023 +Report correctly enrolled on 3-24-2023,2023-03-24T05:00:00+00:00,['enrolled'],WI,2023 +Assembly Amendment 2 to Assembly Substitute Amendment 1 offered by Representative Tusler,2024-01-04T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 2 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Read first time and referred to committee on Rules,2023-12-06T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-07T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Representative Stubbs added as a cosponsor,2023-03-30T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-06-21T05:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 15, Noes 0",2024-01-30T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Read a third time and passed, Ayes 69, Noes 27",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-11-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Representative Bare added as a coauthor,2024-01-26T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-03-28T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-04-18T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Representative Shankland added as a cosponsor,2023-09-15T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2023-01-19T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-19T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 60, Noes 35",2023-04-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Amendment 3 recommended by Committee on Universities and Revenue, Ayes 5, Noes 3",2024-03-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-04-18T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-06-21T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-09-13T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +"Senate Amendment 1 rejected, Ayes 23, Noes 9",2023-10-17T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-01-25T06:00:00+00:00,['amendment-passage'],WI,2023 +Senate Amendment 2 adopted,2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 to Senate Amendment 2 offered by Senators Hutton and Spreitzer,2023-11-14T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 adopted,2023-11-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Assembly Substitute Amendment 1 adopted,2023-11-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senator Carpenter added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-02T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Vining added as a cosponsor,2024-02-13T06:00:00+00:00,[],WI,2023 +Senator Hesselbein added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Representatives Clancy and Madison added as cosponsors,2023-04-25T05:00:00+00:00,[],WI,2023 +Assembly Amendment 3 offered by Representative Maxey,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Schutt added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-01-19T06:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 33, Noes 0",2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 30, Noes 2",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 13, Noes 0",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Representative Ratcliff added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Representative Riemer added as a coauthor,2023-11-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Made a special order of business at 10:16 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Decision of the Chair appealed,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2024-03-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2023-06-07T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-04-25T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Referred to joint survey committee on Tax Exemptions pursuant to s. 13.52 Wisconsin Statutes,2024-01-11T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Representative Snodgrass added as a coauthor,2023-06-08T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2023-06-08T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Shankland added as a cosponsor,2023-09-15T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-06-27T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 4, Noes 0",2023-10-09T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 6-14-2023 by Committee on Rules,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Laid on the table,2023-10-17T05:00:00+00:00,['deferral'],WI,2023 +Ordered immediately messaged,2023-06-28T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-28-2023 pursuant to Senate Rule 18(1),2023-06-27T05:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-06-27T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 adopted,2023-11-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-06-28T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 9-15-2023,2023-09-15T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Financial Institutions and Sporting Heritage,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on State Affairs,2023-03-24T05:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Senate Organization,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read,2024-01-16T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 2 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 32, Noes 0",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Referred to joint committee on Finance,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 31, Noes 1",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Senator Carpenter added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-01-26T06:00:00+00:00,['referral-committee'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Marklein,2024-02-05T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +LRB correction (Senate Amendment 2),2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Sapik added as a coauthor,2023-10-10T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Representatives Rettinger and C. Anderson added as coauthors,2023-04-27T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 4 adopted, Ayes 66, Noes 32",2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Representative Madison added as a cosponsor,2024-02-08T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Assembly Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Fiscal estimate received,2024-01-26T06:00:00+00:00,['receipt'],WI,2023 +Senator Agard added as a coauthor,2023-11-15T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Representatives Ratcliff and Bare added as coauthors,2023-06-12T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-04-18T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-03-11T05:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 1 offered by Senator James,2024-02-23T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Decision of the Chair upheld, Ayes 64, Noes 35",2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck withdrawn as a cosponsor,2023-03-23T05:00:00+00:00,['withdrawal'],WI,2023 +"Read first time and referred to committee on Housing, Rural Issues and Forestry",2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 offered by Representative Zimmerman,2024-01-04T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Universities and Revenue,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Carpenter added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:41 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 61, Noes 35",2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Emerson added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-23T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2023-11-06T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representatives Steffen and Billings added as cosponsors,2023-04-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Made a special order of business at 10:03 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-05-23T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Concurred in,2023-10-17T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 2-15-2024,2024-02-15T06:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-02-05T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Assembly Substitute Amendment 3 offered by Representatives Ohnstad and Clancy,2024-02-15T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 adopted,2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate concurred in,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-06-28T05:00:00+00:00,['reading-2'],WI,2023 +Assembly Substitute Amendment 2 offered by Representative Brandtjen,2024-02-19T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Macco,2024-02-15T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 10-18-2023,2023-10-18T05:00:00+00:00,['enrolled'],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-06-28T05:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-03-06T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-04-25T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-04-18T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Melotik added as a coauthor,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative Bare added as a coauthor,2023-09-22T05:00:00+00:00,[],WI,2023 +Senate Amendment 2 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2023-04-19T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 6-28-2023 pursuant to Senate Rule 18(1),2023-06-27T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-25T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on State Affairs,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Corrections,2023-03-24T05:00:00+00:00,['referral-committee'],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-01-31T06:00:00+00:00,[],WI,2023 +Senate Amendment 2 to Senate Amendment 2 offered by Senators Hutton and Spreitzer,2023-11-14T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 60, Noes 35",2023-04-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled,2023-11-16T06:00:00+00:00,['enrolled'],WI,2023 +"Decision of the Chair upheld, Ayes 63, Noes 35",2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-10T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-04-19T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Economic Development and Technical Colleges,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Decision of the Chair appealed,2023-01-19T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Senate Amendment 1 to Senate Substitute Amendment 1 rejected, Ayes 19, Noes 12",2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Government Operations,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Senate Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 4-19-2023 pursuant to Senate Rule 18(1),2023-04-17T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Representative O'Connor added as a cosponsor,2023-09-28T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative VanderMeer,2024-01-11T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Report of Joint Survey Committee on Tax Exemptions requested,2024-01-29T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-28T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Joint Committee on Finance, Ayes 13, Noes 0",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +"Read first time and referred to committee on Mental Health, Substance Abuse Prevention, Children and Families",2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Representative Kurtz added as a cosponsor,2023-10-18T05:00:00+00:00,[],WI,2023 +"Senate Substitute Amendment 1 rejected, Ayes 21, Noes 10",2023-11-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +"Senate Amendment 2 to Senate Substitute Amendment 2 offered by Senators Pfaff, Wirch, Hesselbein, Agard, Carpenter, L. Johnson, Larson, Smith, Spreitzer and Taylor",2023-11-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 2 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 1 adopted,2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Laid on the table,2024-01-16T06:00:00+00:00,['deferral'],WI,2023 +Received from Assembly,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Public hearing held,2024-03-06T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Education,2024-01-19T06:00:00+00:00,['referral-committee'],WI,2023 +Made a special order of business at 10:17 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-04-25T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 2 offered by Representative Moses,2024-02-06T06:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 by Committee on Rules,2023-09-12T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and passed, Ayes 21, Noes 11",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled,2023-09-15T05:00:00+00:00,['enrolled'],WI,2023 +"Report passage as amended recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly,2023-03-23T05:00:00+00:00,['receipt'],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 1-16-2024,2024-01-16T06:00:00+00:00,[],WI,2023 +Laid on the table,2023-06-21T05:00:00+00:00,['deferral'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Senate Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +"Read a third time and passed, Ayes 59, Noes 36",2023-03-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2023-11-10T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-19T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-30T06:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 1 adopted,2023-03-22T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 23, Noes 8",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 laid on table,2023-06-21T05:00:00+00:00,['deferral'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Read,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 offered by Representative Brooks,2023-06-09T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-06-13T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-08T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Health, Ayes 5, Noes 1",2023-10-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Read a third time and passed, Ayes 22, Noes 10",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Report correctly enrolled on 6-9-2023,2023-06-09T05:00:00+00:00,['enrolled'],WI,2023 +LRB correction (Senate Amendment 1 to Senate Substitute Amendment 1),2023-06-28T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-01-18T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Government Operations,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-10-09T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Melotik added as a coauthor,2024-01-23T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 63, Noes 35",2023-04-18T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Billings added as a cosponsor,2023-07-31T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Gustafson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Fiscal estimate received,2024-03-11T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +"Read a third time and passed, Ayes 32, Noes 0",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representatives Gustafson and O'Connor added as coauthors,2024-01-16T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 5 offered by Representatives Oldenburg, Novak, Tranel, Plumer and Mursau",2023-09-14T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Senate Amendment 2 offered by Senator Stafsholt,2024-02-12T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Representatives Steffen and Billings added as coauthors,2023-04-17T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Representative Snodgrass added as a coauthor,2023-06-08T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 2-19-2024,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 6-12-2023,2023-06-12T05:00:00+00:00,['enrolled'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 32, Noes 0",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Licensing, Constitution and Federalism",2023-06-08T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-01-26T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-09-20T05:00:00+00:00,['enrolled'],WI,2023 +Representative Haywood added as a coauthor,2023-11-21T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Madison added as a cosponsor,2023-05-08T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-11-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2024-02-06T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +"Read first time and referred to committee on Licensing, Constitution and Federalism",2023-09-20T05:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 2 to Senate Substitute Amendment 1 offered by Senator Marklein,2023-06-06T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Universities and Revenue, Ayes 5, Noes 3",2024-03-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-13T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-09-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 11, Noes 2",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 2 offered by Representative O'Connor,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Substitute Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-01-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-11-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 2 withdrawn and returned to author,2024-02-22T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Representative Brooks added as a cosponsor,2024-01-26T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2023-09-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 32, Noes 0",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly,2023-04-26T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Representative O'Connor added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Education,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 offered by Senator Testin,2023-10-17T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Jacobson withdrawn as a coauthor,2024-02-19T06:00:00+00:00,['withdrawal'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Representative Drake added as a cosponsor,2023-10-05T05:00:00+00:00,[],WI,2023 +Referred to joint committee on Finance,2023-06-07T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken by joint committee on Finance,2023-05-16T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-12-11T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-21T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Committee on Universities and Revenue, Ayes 7, Noes 2",2023-05-09T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-01-26T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Executive action taken,2024-02-05T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +"Representatives Jacobson, Cabrera, Conley and Haywood added as cosponsors",2023-06-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2023-10-13T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 10:28 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-11-09T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Assembly,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Senator Carpenter added as a coauthor,2023-09-14T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Assembly,2023-03-23T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2023-04-26T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-13T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2023-06-23T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 6-14-2023 by Committee on Rules,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senator Spreitzer added as a cosponsor,2023-06-07T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Assembly Amendment 2 withdrawn and returned to author,2023-11-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2023-10-17T05:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representatives Ohnstad, Conley, Baldeh and Riemer",2023-09-28T05:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Report correctly enrolled on 6-12-2023,2023-06-12T05:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Report Assembly Amendment 1 to Assembly Substitute Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and passed,2023-04-19T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 1 adopted,2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-10-31T05:00:00+00:00,[],WI,2023 +Made a special order of business at 11:32 AM on 2-22-2024 pursuant to Assembly Resolution 29,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Senate Amendment 1 offered by Senator Stafsholt,2024-01-18T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2023-04-26T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 3 offered by Representatives Shankland and Billings,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2023-06-08T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-05T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 1 offered by Representative Dallman,2023-10-12T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-06T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +"Assembly Amendment 1 offered by Representatives Ohnstad, Cabrera, Palmeri, Sinicki, Ratcliff, Joers, Myers, C. Anderson, Stubbs, Bare, Jacobson, Snodgrass, Conley, Emerson, Billings, Subeck, Considine, Riemer, Neubauer, J. Anderson, Shankland, Shelton, Goyke, Moore Omokunde, Andraca, Haywood, Baldeh, Ortiz-Velez, Drake, McGuire and Vining",2023-09-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2023-05-15T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken by joint survey committee on Tax Exemptions,2024-02-08T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-04-18T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Laid on the table,2023-11-07T06:00:00+00:00,['deferral'],WI,2023 +Senate Substitute Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Read first time and referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +Senator Carpenter added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2023-05-18T05:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 3 adoption recommended by Committee on Energy and Utilities, Ayes 16, Noes 0",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Laid on the table,2023-10-17T05:00:00+00:00,['deferral'],WI,2023 +Received from Senate,2023-01-17T06:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Vining added as a coauthor,2024-04-05T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 2 to Assembly Amendment 1 offered by Representative Zimmerman,2023-11-13T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 withdrawn and returned to author,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2023-09-06T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 10:09 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +"Read a third time and passed, Ayes 21, Noes 10",2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 10:15 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2023-09-14T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +Report correctly enrolled on 6-9-2023,2023-06-09T05:00:00+00:00,['enrolled'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 4-20-2023,2023-04-20T05:00:00+00:00,['enrolled'],WI,2023 +Laid on the table,2024-02-15T06:00:00+00:00,['deferral'],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage recommended by Committee on Insurance and Small Business, Ayes 5, Noes 0",2023-06-27T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Kitchens,2023-06-21T05:00:00+00:00,[],WI,2023 +"Fiscal estimate requested from the Legislative Fiscal Bureau, pursuant to Senate Rule 96 (1)",2023-06-13T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Laid on table,2023-06-14T05:00:00+00:00,['deferral'],WI,2023 +Representative C. Anderson added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 22, Noes 10",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Substitute Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Concurred in,2023-06-07T05:00:00+00:00,[],WI,2023 +Assembly Amendment 3 offered by Representative Brooks,2023-06-09T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2023-03-24T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-04-19T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-24-2023,2023-03-24T05:00:00+00:00,['enrolled'],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:02 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-28-2023 pursuant to Senate Rule 18(1),2023-06-27T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +"Hutton, James, Kapenga, L. Johnson, Larson, Pfaff, Quinn, Smith, Stafsholt, Testin, Tomczyk, Wanggaard, Wimberger and Wirch of the Senate added as cosponsors",2023-06-28T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-28T05:00:00+00:00,['reading-2'],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-01-10T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 adopted,2023-03-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-13T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Universities and Revenue, Ayes 8, Noes 0",2023-10-11T05:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-04-18T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Assembly Substitute Amendment 1 adopted,2023-11-09T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Assembly,2023-09-13T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 10:44 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Universities and Revenue,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate concurred in,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 10:05 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +"Representatives Rozar, Brooks and Bodden added as coauthors",2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-18T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2023-03-23T05:00:00+00:00,['referral-committee'],WI,2023 +"Decision of the Chair upheld, Ayes 62, Noes 35",2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 31, Noes 1",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 2 offered by Representative Snyder,2024-02-22T06:00:00+00:00,[],WI,2023 +"Decision of the Chair upheld, Ayes 62, Noes 35",2024-02-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Shankland added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 62, Noes 34",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senator Jacque added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Senator Nass withdrawn as a cosponsor,2024-02-21T06:00:00+00:00,['withdrawal'],WI,2023 +Laid on the table,2024-01-18T06:00:00+00:00,['deferral'],WI,2023 +Report correctly enrolled on 9-15-2023,2023-09-15T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 63, Noes 35",2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-29T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Goeben withdrawn as a coauthor,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended to give bill its third reading,2023-03-22T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-11-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 4-18-2023 by Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +"Read a third time and passed, Ayes 22, Noes 10",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +LRB correction (Senate Amendment 1),2023-10-16T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Tusler,2024-02-14T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-11-16T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Neubauer,2023-04-25T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2023-09-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Senate Organization,2023-06-08T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-08T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:27 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-12-06T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Read,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 31, Noes 1",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and passed, Ayes 21, Noes 11",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Made a special order of business at 10:12 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Children and Families, Ayes 12, Noes 0",2024-01-04T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Report correctly enrolled on 2-15-2024,2024-02-15T06:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Assembly Substitute Amendment 1 adopted,2023-11-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-03-14T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Deposited in the office of the Secretary of State on 3-6-2024,2024-03-06T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Laid on the table,2023-03-22T05:00:00+00:00,['deferral'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Referred to joint committee on Finance,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Assembly,2023-03-15T05:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2023-09-12T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Senate concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Education,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Senate Amendment 2 offered by Senators Spreitzer and Smith,2023-06-09T05:00:00+00:00,[],WI,2023 +Representative Drake added as a coauthor,2023-08-10T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +"Fiscal estimate requested from the Legislative Fiscal Bureau, pursuant to Senate Rule 96 (1)",2023-06-13T05:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Schraa,2024-02-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Amendment 2 recommended by Committee on Housing, Rural Issues and Forestry, Ayes 4, Noes 0",2023-06-09T05:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +"Read first time and referred to committee on Licensing, Constitution and Federalism",2023-06-08T05:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Education,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 5 offered by Representative Wichgers,2024-01-25T06:00:00+00:00,[],WI,2023 +"Senate Amendment 2 rejected, Ayes 22, Noes 10",2023-10-17T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 2 offered by Representative Oldenburg,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-06-21T05:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 8, Noes 4",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Substitute Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Received from Assembly,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Representative Krug added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-13T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Fiscal estimate received,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 28, Noes 4",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 2 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2023-06-12T05:00:00+00:00,[],WI,2023 +"Representatives Jacobson, Cabrera, Conley and Haywood added as cosponsors",2023-06-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 2 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and passed,2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Zimmerman,2023-06-21T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-16T06:00:00+00:00,['withdrawal'],WI,2023 +Assembly Amendment 2 adopted,2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative Ortiz-Velez added as a coauthor,2024-01-22T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Education,2023-03-15T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Point of order that Assembly Substitute Amendment 5 not germane under Assembly Rule 54 (3)(f) well taken,2024-01-25T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and passed, Ayes 63, Noes 34",2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-13T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 2-16-2024,2024-02-16T06:00:00+00:00,['enrolled'],WI,2023 +Senator Wimberger added as a cosponsor,2024-02-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 by Committee on Rules,2023-09-12T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Representative C. Anderson added as a coauthor,2023-08-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Agriculture and Tourism,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Read first time and referred to committee on Government Operations,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Education,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report passage as amended recommended by Committee on Housing, Rural Issues and Forestry, Ayes 4, Noes 1",2023-06-09T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 64, Noes 35",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Government Operations,2024-01-19T06:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 2 offered by Representative Goeben,2023-09-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 33, Noes 0",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-06-28T05:00:00+00:00,['reading-3'],WI,2023 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2023-04-25T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Report correctly enrolled on 6-9-2023,2023-06-09T05:00:00+00:00,['enrolled'],WI,2023 +Representative Shankland added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Point of order that Assembly Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2023-09-12T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 23, Noes 9",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 10:43 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-13T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Universities and Revenue,2023-09-20T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Steffen added as a cosponsor,2023-10-17T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-09-26T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +"Report passage recommended by Committee on Local Government, Ayes 8, Noes 4",2023-05-15T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report of Joint Survey Committee on Tax Exemptions received, Ayes 8, Noes 0",2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Committee on Universities and Revenue, Ayes 8, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Read a third time and passed, Ayes 62, Noes 35",2023-04-18T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Representative O'Connor added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-22T05:00:00+00:00,[],WI,2023 +Representative Snodgrass added as a coauthor,2023-06-08T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-28T05:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2023-11-13T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-01-04T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-06-28T05:00:00+00:00,['reading-2'],WI,2023 +"Read first time and referred to committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Report correctly enrolled on 6-9-2023,2023-06-09T05:00:00+00:00,['enrolled'],WI,2023 +Assembly Amendment 2 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Representatives Maxey and Ratcliff added as coauthors,2023-06-06T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Representatives Drake and O'Connor added as coauthors,2023-10-17T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Health,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 32, Noes 1",2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Financial Institutions and Sporting Heritage,2023-11-21T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 adopted,2023-11-09T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +"Representatives Brooks, Bodden and Rozar added as coauthors",2024-02-13T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-04-19T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-24-2023,2023-03-24T05:00:00+00:00,['enrolled'],WI,2023 +Laid on the table,2023-10-17T05:00:00+00:00,['deferral'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Neylon,2024-02-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Representatives Ratcliff and Bare added as coauthors,2023-06-12T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Read,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 12, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Report correctly enrolled on 3-24-2023,2023-03-24T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2023-03-23T05:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-03-06T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2023-03-22T05:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Representative Stubbs added as a cosponsor,2023-06-01T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative McGuire,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Economic Development and Technical Colleges,2023-05-02T05:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2023-04-21T05:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Representative Rozar added as a coauthor,2024-02-22T06:00:00+00:00,[],WI,2023 +Representatives Subeck and Emerson added as cosponsors,2023-06-16T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-15T06:00:00+00:00,['deferral'],WI,2023 +Read,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 2 offered by Representative Armstrong,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-13T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-05T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 adopted,2023-06-21T05:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-06-27T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Deposited in the office of the Secretary of State on 9-19-2023,2023-09-19T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-09T06:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 2 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2023-04-19T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled on 3-24-2023,2023-03-24T05:00:00+00:00,['enrolled'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and passed, Ayes 33, Noes 0",2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 8, Noes 4",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read first time and referred to committee on Education,2024-01-26T06:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 62, Noes 35",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-16T06:00:00+00:00,['withdrawal'],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 22, Noes 11",2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-02-05T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 1 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Madison added as a coauthor,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 6-9-2023,2023-06-09T05:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Representative Conley added as a cosponsor,2023-09-21T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Made a special order of business at 10:08 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Economic Development and Technical Colleges,2023-05-02T05:00:00+00:00,['referral-committee'],WI,2023 +Made a special order of business at 10:23 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Not published. Enrolled Joint Resolution 13,2024-05-01T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 21, Noes 10",2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senator Hesselbein added as a cosponsor,2024-04-10T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Krug added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Read,2024-01-16T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-08T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 4 offered by Representatives Shankland and Billings,2024-02-22T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 adopted,2023-04-18T05:00:00+00:00,['amendment-passage'],WI,2023 +Senate Substitute Amendment 2 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-03-14T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-09T06:00:00+00:00,['withdrawal'],WI,2023 +"Read a third time and passed, Ayes 22, Noes 11",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-08T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-01-17T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-03-22T05:00:00+00:00,[],WI,2023 +Read a second time,2023-04-18T05:00:00+00:00,['reading-2'],WI,2023 +"Read a third time and passed, Ayes 30, Noes 3",2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and passed, Ayes 96, Noes 2",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Representative C. Anderson added as a cosponsor,2023-12-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 2 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Public hearing held,2023-08-22T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Laid on the table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +"Report passage as amended recommended by Committee on Energy and Utilities, Ayes 16, Noes 0",2023-10-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Baldeh added as a cosponsor,2024-02-12T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-23T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-03-15T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken by joint committee on Finance,2023-05-18T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2023-06-07T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Available for scheduling,2023-05-09T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2024-02-19T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Universities and Revenue, Ayes 8, Noes 0",2024-02-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2023-06-21T05:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Neubauer,2023-03-22T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Assembly Amendment 2 adopted,2023-11-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Senator Roys added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-09-26T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Education,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Assembly Substitute Amendment 2 adopted,2023-11-09T06:00:00+00:00,['amendment-passage'],WI,2023 +Fiscal estimate received,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Government Operations, Elections and Consumer Protection",2023-05-02T05:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Financial Institutions and Sporting Heritage,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Vining added as a coauthor,2024-04-03T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 2 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Shankland added as a coauthor,2024-01-19T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Rules suspended,2023-06-07T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-16T06:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-26T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 32, Noes 1",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2024-01-02T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +Ordered immediately messaged,2023-04-18T05:00:00+00:00,[],WI,2023 +Representative Krug added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2024-01-18T06:00:00+00:00,['deferral'],WI,2023 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 6-12-2023,2023-06-12T05:00:00+00:00,['enrolled'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Withdrawn from committee on Education and rereferred to committee on Senate Organization pursuant to Senate Rule 46(2)(c),2024-02-05T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-05-23T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Senator Wimberger added as a coauthor,2024-02-07T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 59, Noes 35",2023-04-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 1 adopted,2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2023-03-23T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2023-11-16T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled on 6-29-2023,2023-06-29T05:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Laid on the table,2023-11-07T06:00:00+00:00,['deferral'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-01-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-06-28T05:00:00+00:00,['reading-3'],WI,2023 +Representative Hong added as a cosponsor,2023-08-01T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Hurd,2023-09-13T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Tourism,2023-03-24T05:00:00+00:00,['referral-committee'],WI,2023 +Assembly Substitute Amendment 4 offered by Representatives Madison and Ortiz-Velez,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 withdrawn and returned to author,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Drake added as a cosponsor,2023-10-24T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-28T05:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-18T05:00:00+00:00,[],WI,2023 +Assembly Amendment 2 adopted,2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2024-03-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2023-04-26T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-04-19T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2023-09-27T05:00:00+00:00,[],WI,2023 +Senator Jacque added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-28T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2023-11-08T06:00:00+00:00,[],WI,2023 +"Assembly Amendment 5 adopted, Ayes 66, Noes 32",2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2023-03-14T05:00:00+00:00,[],WI,2023 +"Report passage recommended by Committee on Education, Ayes 6, Noes 1",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Financial Institutions and Sporting Heritage,2024-01-26T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-11T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2023-04-26T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 6-9-2023,2023-06-09T05:00:00+00:00,['enrolled'],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Emerson added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-27T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative C. Anderson added as a coauthor,2023-12-01T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-04-25T05:00:00+00:00,[],WI,2023 +Senate Amendment 3 to Senate Amendment 2 offered by Senators Hutton and Spreitzer,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Representative Ortiz-Velez withdrawn as a cosponsor,2023-03-29T05:00:00+00:00,['withdrawal'],WI,2023 +Assembly Amendment 1 offered by Representative Kurtz,2023-12-27T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +Representative Emerson added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Representatives Subeck and Shelton added as cosponsors,2023-04-18T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Withdrawn from committee on Rules and referred to joint committee on Finance pursuant to Assembly Rule 42 (3)(c),2024-02-02T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Baldeh added as a coauthor,2024-02-12T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a cosponsor,2023-11-27T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Michalski added as a coauthor,2024-02-19T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Shared Revenue, Elections and Consumer Protection",2023-11-13T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Fiscal estimate received,2024-03-13T05:00:00+00:00,['receipt'],WI,2023 +Representative Magnafici added as a coauthor,2023-07-19T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 4-20-2023,2023-04-20T05:00:00+00:00,['enrolled'],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +"Decision of the Chair upheld, Ayes 62, Noes 35",2023-01-19T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled,2024-02-28T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-03-06T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Referred to joint committee on Finance,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +"Refused to refer to committee on Health, Ayes 10, Noes 22",2024-02-20T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2023-06-08T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-09T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 2 offered by Representative Vos,2023-06-21T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Representatives Ratcliff and Bare added as coauthors,2023-06-12T05:00:00+00:00,[],WI,2023 +Representative Melotik added as a cosponsor,2023-10-05T05:00:00+00:00,[],WI,2023 +Representatives Nedweski and Wichgers added as cosponsors,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Executive action taken by joint committee on Finance,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Received from Assembly,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Made a special order of business at 10:04 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-06-13T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-06T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 61, Noes 36",2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Made a special order of business at 11:30 AM on 2-22-2024 pursuant to Assembly Resolution 29,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +"Read first time and referred to committee on Licensing, Constitution and Federalism",2024-01-19T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2024-02-29T06:00:00+00:00,['amendment-passage'],WI,2023 +"Read first time and referred to committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-09-20T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 32, Noes 1",2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-16T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2023-04-18T05:00:00+00:00,['reading-2'],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 12, Noes 1",2024-01-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Health,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage recommended by Committee on Education, Ayes 13, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-03-06T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Brooks,2023-06-09T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Senator Carpenter added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Senator Carpenter added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senator Jacque added as a cosponsor,2024-02-07T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-11-01T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-06T06:00:00+00:00,[],WI,2023 +"Representatives S. Johnson, Brooks and Myers added as coauthors",2024-02-15T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-06T06:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 32, Noes 0",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Available for scheduling,2024-03-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-10-17T05:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2023-04-18T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Campaigns and Elections,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled on 10-19-2023,2023-10-19T05:00:00+00:00,['enrolled'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Senator Agard added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-02T06:00:00+00:00,['amendment-passage'],WI,2023 +"Read a third time and passed, Ayes 98, Noes 0",2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 91, Noes 7",2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2024-02-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-03-28T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Financial Institutions and Sporting Heritage,2024-01-19T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Senate Organization,2023-11-13T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-15T06:00:00+00:00,['withdrawal'],WI,2023 +"Report passage as amended recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2024-02-29T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read first time and referred to committee on Government Operations,2023-11-13T06:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 offered by Representative Novak,2024-02-21T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Steffen,2024-02-19T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2024-02-05T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-25T05:00:00+00:00,[],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Rules,2023-12-06T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-03-22T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Representatives Joers and Maxey added as coauthors,2023-11-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-02T05:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 86, Noes 12",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Gustafson added as a cosponsor,2023-11-13T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-10-17T05:00:00+00:00,['withdrawal'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +"Representatives Born, Subeck and Shelton added as coauthors",2023-04-18T05:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read first time and referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report concurrence recommended by Committee on State Affairs, Ayes 13, Noes 0",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Senator Carpenter added as a coauthor,2024-01-19T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 62, Noes 35",2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Shankland added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Emerson added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-28T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read first time and referred to committee on Rules,2023-06-15T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Haywood added as a cosponsor,2023-04-26T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-16T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-28T05:00:00+00:00,['reading-3'],WI,2023 +"Representatives C. Anderson, Donovan and Goyke added as coauthors",2023-10-04T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-06-28T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-13T06:00:00+00:00,['withdrawal'],WI,2023 +Assembly Amendment 3 adopted,2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Report correctly enrolled,2024-02-21T06:00:00+00:00,['enrolled'],WI,2023 +"Read a third time and concurred in, Ayes 95, Noes 3",2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Representatives Wichgers and Gustafson added as coauthors,2024-02-28T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 2 offered by Representative Zimmerman,2024-02-02T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representatives Ratcliff and Bare added as coauthors,2023-06-12T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Fiscal estimate received,2024-03-18T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Made a special order of business at 11:29 AM on 2-22-2024 pursuant to Assembly Resolution 29,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 2 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Steffen added as a cosponsor,2023-08-08T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-07T06:00:00+00:00,['withdrawal'],WI,2023 +Senator Roys added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-16T06:00:00+00:00,['receipt'],WI,2023 +Representative J. Anderson added as a coauthor,2024-02-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 98, Noes 0",2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-13T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-06-13T05:00:00+00:00,[],WI,2023 +Assembly Amendment 2 adopted,2023-06-21T05:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Representative Andraca added as a coauthor,2024-02-15T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Government Operations,2023-10-18T05:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 offered by Representative Gustafson,2024-01-09T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-03-15T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Representatives Emerson and Madison added as cosponsors,2023-11-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Mental Health and Substance Abuse Prevention, Ayes 10, Noes 0",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-01-26T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Substitute Amendment 1 offered by Representative Considine,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Universities and Revenue, Ayes 5, Noes 3",2024-03-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2023-04-18T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and concurred in, Ayes 96, Noes 1",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Clancy withdrawn as a cosponsor,2023-11-09T06:00:00+00:00,['withdrawal'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 2 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Senator Roys withdrawn as a coauthor,2023-05-09T05:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended to give bill its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-26T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Executive action taken by joint survey committee on Tax Exemptions,2024-01-12T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Emerson added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 96, Noes 1",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Substitute Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Senate Amendment 2 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +"Concurred in, Ayes 62, Noes 35",2023-01-19T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-03T06:00:00+00:00,[],WI,2023 +Deposited in the office of the Secretary of State on 4-21-2023,2023-04-21T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and passed, Ayes 31, Noes 1",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Vining added as a coauthor,2023-08-22T05:00:00+00:00,[],WI,2023 +Withdrawn from committee on State Affairs and referred to committee on Rules pursuant to Assembly Rule 42 (3)(c),2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-04-26T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Economic Development and Technical Colleges,2023-05-02T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Assembly Amendment 6 offered by Representatives Oldenburg, Novak, Tranel, Plumer and Mursau",2023-09-14T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-09-01T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-10-19T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-19T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Concurred in,2023-10-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Read,2024-02-20T06:00:00+00:00,[],WI,2023 +Laid on table,2023-04-19T05:00:00+00:00,['deferral'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Joers added as a cosponsor,2023-11-09T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Assembly Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken by joint committee on Finance,2023-05-23T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Natural Resources and Energy,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 31, Noes 1",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report of Joint Survey Committee on Tax Exemptions requested,2023-10-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Read a third time and passed, Ayes 22, Noes 10",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Representative O'Connor added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 31, Noes 1",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2023-03-22T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 62, Noes 34, Paired 2",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Rules suspended,2023-06-21T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-05T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Senators Taylor and Spreitzer added as coauthors,2023-06-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-06-13T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-14T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 85, Noes 12",2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 1-19-2023 by Committee on Rules,2023-01-17T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-04-18T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Executive action taken,2023-09-05T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2023-10-17T05:00:00+00:00,['deferral'],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-12T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Andraca added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 2 offered by Senator Marklein,2024-01-11T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-06-01T05:00:00+00:00,[],WI,2023 +Decision of the Chair appealed,2023-04-25T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-06-28T05:00:00+00:00,[],WI,2023 +Representatives Sapik and Dittrich added as cosponsors,2023-06-07T05:00:00+00:00,[],WI,2023 +Representative Callahan added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Deposited in the office of the Secretary of State on 11-28-2023,2023-11-28T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2023-03-20T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2024-01-18T06:00:00+00:00,['deferral'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-19T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Decision of the Chair appealed,2023-09-12T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Made a special order of business at 11:25 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 30, Noes 2",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Gustafson added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-11T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Shankland added as a coauthor,2024-01-18T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2023-11-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to joint committee on Finance,2024-02-01T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-10-16T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Rules,2023-12-06T06:00:00+00:00,['referral-committee'],WI,2023 +Laid on the table,2024-02-15T06:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Marklein,2024-01-31T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-06-13T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2023-06-23T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +"Representatives Jacobson, Cabrera, Conley and Haywood added as cosponsors",2023-06-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Referred to calendar of 5-17-2023 pursuant to Assembly Rule 45 (1),2023-05-15T05:00:00+00:00,['referral'],WI,2023 +"Report concurrence by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 2, Noes 3",2024-03-07T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Haywood added as a cosponsor,2023-09-27T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 1 adopted,2023-04-18T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-06T06:00:00+00:00,[],WI,2023 +Representative Bare added as a coauthor,2023-06-12T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Subeck added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-04-18T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 adopted,2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +"Read a third time and passed, Ayes 64, Noes 35",2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +Assembly Substitute Amendment 1 adopted,2023-06-21T05:00:00+00:00,['amendment-passage'],WI,2023 +"Representatives C. Anderson, Emerson and Gustafson added as cosponsors",2024-01-17T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Made a special order of business at 11:33 AM on 2-22-2024 pursuant to Assembly Resolution 29,2024-02-20T06:00:00+00:00,[],WI,2023 +Senator Hutton added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-28T05:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Senate Amendment 3 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Gustafson added as a coauthor,2023-10-16T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Received from Senate,2023-04-19T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-13T06:00:00+00:00,['withdrawal'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Goeben,2023-11-09T06:00:00+00:00,[],WI,2023 +Representatives C. Anderson and Considine added as cosponsors,2023-06-28T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Transportation and Local Government,2023-04-20T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Representative Cabrera added as a coauthor,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Senate Amendment 2 offered by Senator Stafsholt,2024-02-06T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a coauthor,2023-10-23T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative Palmeri added as a cosponsor,2023-11-17T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 97, Noes 0",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Executive action taken,2024-01-10T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Laid on the table,2023-06-07T05:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 24, Noes 8",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Not published. Enrolled Joint Resolution 6,2023-10-05T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Assembly Substitute Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-15T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-13T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Read first time and referred to joint committee on Finance,2024-02-01T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Universities and Revenue,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-04-19T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 96, Noes 0",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Transportation and Local Government,2024-01-19T06:00:00+00:00,['referral-committee'],WI,2023 +Made a special order of business at 10:26 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 30, Noes 1",2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representatives O'Connor and Jacobson added as coauthors,2023-06-13T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Krug,2023-11-03T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2023-10-16T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Jacobson added as a cosponsor,2023-10-27T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-03-14T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Wanggaard,2023-05-16T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 12, Noes 0",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-12-06T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Read,2024-01-16T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:36 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 12, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Education,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Withdrawn from committee on Rules and referred to joint committee on Finance pursuant to Assembly Rule 42 (3)(c),2024-01-25T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 adopted,2023-06-21T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Available for scheduling,2023-06-09T05:00:00+00:00,[],WI,2023 +Assembly Amendment 3 offered by Representative Snyder,2024-02-22T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 62, Noes 35",2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Decision of the Chair appealed,2024-01-25T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Representatives Jacobson, Cabrera, Conley and Haywood added as cosponsors",2023-06-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Snodgrass added as a coauthor,2023-08-18T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +LRB correction,2023-11-10T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Education,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 2 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2023-06-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2023-03-22T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Assembly Amendment 2 adopted,2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Assembly Substitute Amendment 2 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Colleges and Universities, Ayes 12, Noes 0",2023-10-05T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +"Decision of the Chair upheld, Ayes 90, Noes 9",2024-01-25T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and passed,2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-06-14T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-21T05:00:00+00:00,['reading-3'],WI,2023 +Representative Bare added as a cosponsor,2023-06-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Withdrawn from joint committee on Finance and referred to committee on Rules pursuant to Assembly Rule 42 (3)(c),2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Placed on the foot of the 11th order of business on the calendar of 6-14-2023,2023-06-14T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Rules,2023-12-06T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Education,2023-11-21T06:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 62, Noes 34, Paired 2",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 3 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +"Read a third time and passed, Ayes 24, Noes 8",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-16T06:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +"Assembly Substitute Amendment 1 offered by Representatives Billings, Goyke, Ratcliff, Myers, C. Anderson, Vining, Jacobson, Palmeri, Emerson, Riemer, Baldeh, Haywood, Hong, Stubbs, Madison, Sinicki, Joers, Ohnstad, Shelton, Bare, Snodgrass, Subeck, Andraca, Clancy, Neubauer, Ortiz-Velez, Moore Omokunde, Considine, Cabrera, Shankland and J. Anderson",2023-09-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2024-01-19T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Mursau added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-04-18T05:00:00+00:00,['reading-3'],WI,2023 +Report of Joint Survey Committee on Tax Exemptions requested,2023-10-12T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2023-09-27T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Senator Jacque added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 11, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Made a special order of business at 10:27 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +"Senate Amendment 1 offered by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-06-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 96, Noes 0",2023-03-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report of Joint Survey Committee on Tax Exemptions requested,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 4, Noes 3",2023-09-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Read a third time and concurred in, Ayes 33, Noes 0",2023-06-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-15T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled on 6-29-2023,2023-06-29T05:00:00+00:00,['enrolled'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2023-06-28T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Received from Senate,2023-04-19T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-23T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Senator Spreitzer added as a cosponsor,2023-06-07T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Transportation and Local Government,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Made a special order of business at 10:10 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Senator Larson added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report concurrence recommended by Committee on Economic Development and Technical Colleges, Ayes 4, Noes 2",2023-05-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2023-06-19T05:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-06T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-06-21T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Read first time and referred to committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-09-20T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-01T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Read,2024-01-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-14T06:00:00+00:00,['withdrawal'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Read,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Education,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Representative Moore Omokunde added as a cosponsor,2024-01-29T06:00:00+00:00,[],WI,2023 +Senators Carpenter and Hesselbein added as coauthors,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-01-26T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Penterman added as a cosponsor,2023-11-02T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-04-12T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Laid on the table,2023-10-17T05:00:00+00:00,['deferral'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-01-19T06:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended,2023-04-18T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Assembly Amendment 2 to Assembly Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-06-08T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-20T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-09T06:00:00+00:00,['withdrawal'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative J. Anderson,2024-02-22T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2023-06-23T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +"Representatives C. Anderson, Donovan and Goyke added as cosponsors",2023-10-05T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 32, Noes 0",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:02 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Representative Jacobson withdrawn as a coauthor,2024-02-15T06:00:00+00:00,['withdrawal'],WI,2023 +Placed on the foot of the 11th order of business on the calendar of 10-17-2023,2023-10-17T05:00:00+00:00,[],WI,2023 +LRB correction,2023-05-16T05:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +"Decision of the Chair upheld, Ayes 64, Noes 35",2023-09-12T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Decision of the Chair upheld, Ayes 60, Noes 35",2023-04-25T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Senator Cowles added as a coauthor,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative O'Connor added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-13T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a coauthor,2024-02-14T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-13T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Economic Development and Technical Colleges, Ayes 4, Noes 2",2023-05-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-18T06:00:00+00:00,['withdrawal'],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-09T06:00:00+00:00,['withdrawal'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +"Report concurrence recommended by Committee on Education, Ayes 6, Noes 1",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 adopted,2023-11-09T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2023-05-08T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-08T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:32 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Senator Carpenter added as a coauthor,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Not published. Enrolled Joint Resolution 7,2024-02-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read first time and referred to committee on Financial Institutions and Sporting Heritage,2024-01-26T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-07T06:00:00+00:00,['withdrawal'],WI,2023 +Read a third time and passed,2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-14T06:00:00+00:00,['withdrawal'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 1 offered by Senator Stafsholt,2024-02-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Housing, Rural Issues and Forestry",2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Representatives C. Anderson and Michalski added as coauthors,2024-02-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Representative O'Connor added as a coauthor,2023-06-13T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +LRB correction (Senate Amendment 1),2024-02-15T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 95, Noes 2",2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-19T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report concurrence recommended by Committee on Universities and Revenue, Ayes 7, Noes 1",2024-03-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Bodden added as a coauthor,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-05T05:00:00+00:00,[],WI,2023 +Representative Billings added as a cosponsor,2023-12-11T06:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2023-10-16T05:00:00+00:00,['receipt'],WI,2023 +"Read first time and referred to committee on Licensing, Constitution and Federalism",2024-01-19T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken by joint committee on Finance,2023-05-25T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Health,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2024-02-08T06:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 2 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +"Read a third time and passed, Ayes 82, Noes 11, Paired 4",2023-06-21T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on the foot of the 11th order of business on the calendar of 6-14-2023,2023-06-14T05:00:00+00:00,[],WI,2023 +Decision of the Chair appealed,2023-03-22T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 95, Noes 2",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +"Report of Joint Survey Committee on Tax Exemptions received, Ayes 8, Noes 0",2024-01-12T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-13T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-10T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Economic Development and Technical Colleges,2023-05-02T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Knodl added as a coauthor,2023-03-17T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Representatives Cabrera and Subeck added as coauthors,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2023-04-12T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Bare added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Agriculture and Tourism,2023-04-20T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 32, Noes 0",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2024-04-02T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2023-06-07T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Krug,2024-02-19T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Committee on Mental Health and Substance Abuse Prevention, Ayes 10, Noes 0",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Public hearing held,2023-09-05T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 adopted,2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Representative Wittke added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-20T05:00:00+00:00,['receipt'],WI,2023 +"Read a third time and concurred in, Ayes 33, Noes 0",2023-06-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly,2023-04-26T05:00:00+00:00,['receipt'],WI,2023 +Senator Cowles added as a cosponsor,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-03-08T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Government Operations,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-10-17T05:00:00+00:00,['withdrawal'],WI,2023 +Laid on the table,2024-02-13T06:00:00+00:00,['deferral'],WI,2023 +"Assembly Substitute Amendment 1 laid on table, Ayes 63, Noes 35",2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 20, Noes 11",2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-09T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Made a special order of business at 10:16 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-02-01T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 98, Noes 0",2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Senate Amendment 2 to Senate Substitute Amendment 2 rejected, Ayes 21, Noes 10",2023-11-14T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 33, Noes 0",2023-06-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and passed, Ayes 69, Noes 27",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and passed, Ayes 33, Noes 0",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senator Spreitzer withdrawn as a coauthor,2023-05-11T05:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:59 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Made a special order of business at 11:02 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Representative Cabrera added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-29T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 4-19-2023 pursuant to Senate Rule 18(1),2023-04-18T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:15 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-07T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Representative Drake added as a cosponsor,2023-08-10T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 27, Noes 6",2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 offered by Representative Moses,2024-01-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Senator Hesselbein added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Government Operations, Ayes 3, Noes 2",2024-03-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +"Assembly Amendment 6 adopted, Ayes 66, Noes 32",2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Representative Hong added as a coauthor,2023-10-11T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Representative Andraca added as a cosponsor,2024-03-18T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-06-28T05:00:00+00:00,[],WI,2023 +Representative Schutt added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-16T06:00:00+00:00,['receipt'],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 3, Noes 2",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-25T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Senators Hesselbein and Spreitzer withdrawn as coauthors,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-06-13T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-02T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Deposited in the office of the Secretary of State on 3-6-2024,2024-03-06T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and passed,2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Shelton added as a coauthor,2023-10-23T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a coauthor,2024-02-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-28-2023 pursuant to Senate Rule 18(1),2023-06-27T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-12T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Read a third time and passed, Ayes 23, Noes 9",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 2 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report concurrence recommended by Committee on Economic Development and Technical Colleges, Ayes 4, Noes 2",2024-01-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Not published. Enrolled Joint Resolution 4,2023-05-11T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-01-19T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Assembly Amendment 3 offered by Representatives C. Anderson, Vining, Considine, Hong, Ratcliff, Madison, Clancy, Emerson, J. Anderson, Jacobson and Moore Omokunde",2023-06-21T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Transportation and Local Government,2024-01-19T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Fiscal estimate received,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 adopted,2023-04-18T05:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Stubbs added as a coauthor,2024-02-01T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Senator Cowles added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Read,2024-02-13T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 96, Noes 2",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-05-01T05:00:00+00:00,['enrolled'],WI,2023 +Read first time and referred to committee on Transportation and Local Government,2023-04-20T05:00:00+00:00,['referral-committee'],WI,2023 +Representatives Cabrera and Conley added as coauthors,2023-06-14T05:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Government Operations, Ayes 3, Noes 2",2024-03-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled on 10-19-2023,2023-10-19T05:00:00+00:00,['enrolled'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Representative C. Anderson added as a cosponsor,2023-12-01T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Public hearing held,2023-10-25T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-13T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-09-20T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Economic Development and Technical Colleges, Ayes 4, Noes 2",2023-05-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Insurance and Small Business,2023-11-21T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Point of order that Senate Amendment 2 was not germane well taken,2023-11-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Andraca added as a cosponsor,2024-01-31T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-13T06:00:00+00:00,['withdrawal'],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-14T06:00:00+00:00,['withdrawal'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-02-06T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-04-18T05:00:00+00:00,['reading-3'],WI,2023 +Fiscal estimate received,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-04-10T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to joint committee on Finance,2024-02-06T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Representative Clancy added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2023-08-14T05:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-19T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 7 offered by Representative Allen,2023-09-14T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2023-10-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Maxey added as a cosponsor,2024-01-22T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Substitute Amendment 1 offered by Representative Snyder,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a coauthor,2024-01-17T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 10:52 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +"Assembly Amendment 3 laid on table, Ayes 65, Noes 30",2023-06-21T05:00:00+00:00,['deferral'],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 2 adopted,2023-11-09T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-06-13T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-01T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 1 adopted,2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 offered by Senator Feyen,2023-11-07T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-17T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2023-11-13T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 30, Noes 2",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Made a special order of business at 11:22 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Mental Health and Substance Abuse Prevention, Ayes 10, Noes 0",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Assembly Amendment 2 to Assembly Substitute Amendment 1 offered by Representatives Billings, Goyke, Ratcliff, Myers, C. Anderson, Vining, Jacobson, Palmeri, Emerson, Riemer, Baldeh, Haywood, Hong, Stubbs, Madison, Sinicki, Joers, Ohnstad, Shelton, Bare, Snodgrass, Subeck, Andraca, Clancy, Neubauer, Ortiz-Velez, Moore Omokunde, Considine, Drake, Cabrera, Shankland and J. Anderson",2023-09-14T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2023-11-21T06:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Economic Development and Technical Colleges,2023-05-02T05:00:00+00:00,['referral-committee'],WI,2023 +Senator James added as a cosponsor,2023-09-05T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Senator Spreitzer added as a coauthor,2023-06-07T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-03-07T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-04-18T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read first time and referred to committee on Housing, Rural Issues and Forestry",2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Representative Madison withdrawn as a cosponsor,2023-11-13T06:00:00+00:00,['withdrawal'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-06T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 2 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +"Report concurrence recommended by Committee on Tourism, Ayes 11, Noes 0",2023-04-12T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Krug added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-14T06:00:00+00:00,['withdrawal'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Made a special order of business at 10:25 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:23 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Not published. Enrolled Joint Resolution 12,2024-05-01T05:00:00+00:00,[],WI,2023 +Read first time and referred to joint committee on Finance,2023-09-22T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 1 to Assembly Amendment 2 offered by Representative VanderMeer,2024-01-17T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-11-13T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2023-12-21T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 22, Noes 10",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 60, Noes 39",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Public hearing held,2024-02-14T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-01-19T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +"Read first time and referred to committee on Shared Revenue, Elections and Consumer Protection",2023-11-13T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-01-09T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-14T06:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a coauthor,2023-10-12T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 33, Noes 0",2023-06-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and passed, Ayes 31, Noes 1",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Assembly Amendment 1 offered by Representative Plumer,2023-06-19T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-06-28T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2024-03-07T06:00:00+00:00,[],WI,2023 +Made a special order of business at 11:20 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-18T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered immediately messaged,2023-06-28T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-08T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-28T05:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-02T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 2 offered by Senator Hesselbein,2024-01-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Assembly Amendment 1 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2023-11-13T06:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Senate Amendment 2 to Senate Substitute Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Representatives Rozar and Ratcliff added as coauthors,2024-02-22T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 62, Noes 36",2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Laid on table,2023-06-14T05:00:00+00:00,['deferral'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Executive action taken by joint committee on Finance,2023-06-01T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 30, Noes 3",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report concurrence recommended by Committee on Government Operations, Ayes 3, Noes 2",2023-10-05T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Representative Neubauer added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Decision of the Chair upheld, Ayes 62, Noes 35",2023-03-22T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-12T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Rules,2023-06-14T05:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 21, Noes 11",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read first time and referred to committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-11-21T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +"Report concurrence recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2023-04-18T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a cosponsor,2024-02-08T06:00:00+00:00,[],WI,2023 +Read,2023-03-22T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-05-26T05:00:00+00:00,[],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Jacobson added as a cosponsor,2023-10-26T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-03-23T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 31, Noes 1",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Economic Development and Technical Colleges,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-06T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-06-27T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-16T06:00:00+00:00,[],WI,2023 +"Senate Amendment 2 offered by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-06-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-06T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Transportation and Local Government,2023-11-21T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +"Report concurrence recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 1 offered by Representative Murphy,2023-11-03T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 11, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +"Read first time and referred to committee on Shared Revenue, Elections and Consumer Protection",2023-11-13T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-13T06:00:00+00:00,['withdrawal'],WI,2023 +Representative Ratcliff added as a cosponsor,2023-05-30T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-06-21T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Placed on the foot of the 11th order of business on the calendar of 6-14-2023,2023-06-14T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-05-26T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-07T06:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-03-08T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-19T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Born,2024-02-21T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Executive action taken,2024-03-05T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Report correctly enrolled on 6-12-2023,2023-06-12T05:00:00+00:00,['enrolled'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Representative Ratcliff added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Senator Jacque added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Transportation and Local Government, Ayes 3, Noes 2",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2023-05-23T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Made a special order of business at 10:38 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a cosponsor,2023-05-03T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-10-06T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 11:21 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +"Read first time and referred to committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-11-08T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and concurred in, Ayes 63, Noes 33",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Laid on the table,2024-02-15T06:00:00+00:00,['deferral'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Public hearing held,2024-01-30T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +"Read a third time and concurred in, Ayes 33, Noes 0",2023-06-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2023-10-31T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 offered by Representative Sortwell,2023-10-31T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-03-06T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:04 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative O'Connor,2024-02-22T06:00:00+00:00,[],WI,2023 +Deposited in the office of the Secretary of State on 7-7-2023,2023-07-07T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-28T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Transportation and Local Government,2023-04-20T05:00:00+00:00,['referral-committee'],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 adopted,2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Made a special order of business at 10:26 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Moses,2024-02-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Representative Moore Omokunde added as a cosponsor,2023-10-12T05:00:00+00:00,[],WI,2023 +Laid on table,2023-10-17T05:00:00+00:00,['deferral'],WI,2023 +Read,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a second time,2023-05-17T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-03-20T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Cabrera added as a coauthor,2023-11-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-09-12T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2023-06-13T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Available for scheduling,2023-09-06T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 97, Noes 0",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Assembly Amendment 1 adopted,2023-04-25T05:00:00+00:00,['amendment-passage'],WI,2023 +Representative Jacobson added as a cosponsor,2023-06-14T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-05T06:00:00+00:00,[],WI,2023 +LRB correction (Assembly Amendment 3),2023-10-16T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-16T06:00:00+00:00,['withdrawal'],WI,2023 +Representative Emerson added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2023-11-02T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Joint Committee on Finance, Ayes 13, Noes 0",2024-01-11T06:00:00+00:00,['amendment-passage'],WI,2023 +"Read a third time and concurred in, Ayes 80, Noes 18",2023-04-18T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Representative Emerson added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Read a second time,2023-01-19T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Natural Resources and Energy,2024-01-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-03-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:07 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Placed on calendar 4-18-2023 by Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Universities and Revenue, Ayes 7, Noes 1",2024-03-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-26T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 29, Noes 3",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Assembly Substitute Amendment 1 laid on table, Ayes 61, Noes 35",2023-09-14T05:00:00+00:00,['deferral'],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Representative Steffen added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2023-06-13T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-06-21T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Universities and Revenue,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-06-13T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Education,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Senator Spreitzer added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 32, Noes 0",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Substitute Amendment 4 offered by Representative Wichgers,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on the foot of the 11th order of business on the calendar of 6-14-2023,2023-06-14T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Committee on Colleges and Universities, Ayes 13, Noes 0",2023-10-05T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2023-09-14T05:00:00+00:00,[],WI,2023 +Representative Drake added as a coauthor,2023-03-22T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Made a special order of business at 11:26 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 62, Noes 35",2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Fiscal estimate received,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read first time and referred to committee on Education,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Point of order that Assembly Substitute Amendment 4 not germane under Assembly Rule 54 (3)(f) well taken,2024-01-25T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 31, Noes 1",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-18T06:00:00+00:00,['withdrawal'],WI,2023 +Referred to joint committee on Finance,2023-10-05T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Received from Assembly,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 adopted,2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Executive action taken,2023-06-13T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Laid on table,2023-06-14T05:00:00+00:00,['deferral'],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +"Read first time and referred to committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2023-06-21T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:19 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +"Representatives Cabrera, C. Anderson, Conley, Jacobson and Haywood added as cosponsors",2023-06-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representatives Snodgrass and C. Anderson,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 60, Noes 34",2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-03-11T05:00:00+00:00,[],WI,2023 +Read a second time,2023-04-18T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 withdrawn and returned to author,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-09T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2023-03-15T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-06T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2023-12-13T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2023-06-01T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-18T06:00:00+00:00,['withdrawal'],WI,2023 +"Read first time and referred to committee on Housing, Rural Issues and Forestry",2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +"Report concurrence recommended by Committee on Transportation and Local Government, Ayes 3, Noes 2",2024-03-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-10-17T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-13-2024,2024-03-13T05:00:00+00:00,['enrolled'],WI,2023 +Read first time and referred to committee on Rules,2024-01-11T06:00:00+00:00,['referral-committee'],WI,2023 +Read,2024-01-16T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +"Representatives Cabrera, Subeck and Krug added as coauthors",2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-15T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Labor, Regulatory Reform, Veterans and Military Affairs",2024-01-19T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-03-22T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-01-26T06:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 33, Noes 0",2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2023-06-05T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Representative J. Anderson added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +"Representatives Cabrera, C. Anderson, Jacobson and Conley added as coauthors",2023-06-14T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-07T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-13-2024,2024-03-13T05:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Stroebel,2024-02-07T06:00:00+00:00,[],WI,2023 +Representative Stubbs added as a cosponsor,2023-10-17T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 2 recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2023-03-23T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Senate Amendment 1 offered by Senator Hutton,2023-09-11T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 94, Noes 0",2023-04-18T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-04-18T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Steffen added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Emerson added as a cosponsor,2023-11-10T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 92, Noes 5",2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report adoption of Senate Amendment 2 recommended by Joint Committee on Finance, Ayes 13, Noes 0",2024-01-11T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +"Refused to refer to committee on Local Government, Ayes 34, Noes 57",2023-05-17T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 1 adopted,2023-11-07T06:00:00+00:00,['amendment-passage'],WI,2023 +"Senate Amendment 3 offered by Senators Larson, Hesselbein, Roys, Pfaff, Wirch, L. Johnson, Smith, Agard and Carpenter",2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Moses added as a cosponsor,2024-01-24T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +"Report concurrence recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-10-10T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read,2023-03-22T05:00:00+00:00,[],WI,2023 +Representative Andraca added as a cosponsor,2024-03-18T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-10-17T05:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:18 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-19T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-14-2024,2024-03-14T05:00:00+00:00,['enrolled'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +"Report concurrence as amended recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2023-05-23T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-07T06:00:00+00:00,['withdrawal'],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Representatives Gustafson and O'Connor added as coauthors,2023-11-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Steffen added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-28-2023 pursuant to Senate Rule 18(1),2023-06-27T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Representatives O'Connor and Michalski added as cosponsors,2024-02-14T06:00:00+00:00,[],WI,2023 +Senator Cowles added as a cosponsor,2024-02-06T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-11-07T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-01-19T06:00:00+00:00,['reading-3'],WI,2023 +Decision of the Chair appealed,2024-02-22T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-06T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-06-07T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2023-04-25T05:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Universities and Revenue, Ayes 5, Noes 3",2024-02-05T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Rules,2024-02-07T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-03-08T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Refused to refer to committee on State Affairs, Ayes 34, Noes 60",2023-06-21T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-28T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-14-2024,2024-03-14T05:00:00+00:00,['enrolled'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Senator Spreitzer added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2024-03-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2023-06-05T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-18T06:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Not published. Enrolled Joint Resolution 5,2023-10-05T05:00:00+00:00,[],WI,2023 +Read,2024-01-16T06:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Tax Exemptions requested,2023-06-14T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 60, Noes 35",2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Read,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-09-12T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Executive action taken by joint committee on Finance,2023-06-08T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senators Roys, Larson, Smith, Agard, Carpenter, Hesselbein, L. Johnson, Pfaff, Spreitzer, Taylor and Wirch",2023-10-17T05:00:00+00:00,[],WI,2023 +Senate Amendment 2 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Subeck added as a cosponsor,2023-06-16T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-21T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Assembly Amendment 1 adopted,2023-03-22T05:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Licensing, Constitution and Federalism",2023-06-08T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Available for scheduling,2023-10-05T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-04-18T05:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-20T06:00:00+00:00,['deferral'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Referred to joint committee on Finance,2024-02-22T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +"Report concurrence recommended by Committee on Economic Development and Technical Colleges, Ayes 4, Noes 2",2023-05-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Report correctly enrolled,2023-01-19T06:00:00+00:00,['enrolled'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +"Report concurrence recommended by Committee on Transportation and Local Government, Ayes 3, Noes 2",2023-06-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Read a third time and passed, Ayes 20, Noes 12",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2023-11-13T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-13-2024,2024-03-13T05:00:00+00:00,['enrolled'],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-06-21T05:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-09-19T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Representatives Gustafson and O'Connor added as cosponsors,2023-11-08T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and passed, Ayes 32, Noes 0",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Education,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +"Assembly Substitute Amendment 1 offered by Representatives Shelton, Sinicki and Cabrera",2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 withdrawn and returned to author,2023-06-28T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Laid on the table,2024-01-18T06:00:00+00:00,['deferral'],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and concurred in, Ayes 63, Noes 35",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +"Read a third time and passed, Ayes 20, Noes 12",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report passage recommended by Committee on Ways and Means, Ayes 9, Noes 0",2024-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Carpenter added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Read,2023-11-14T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Received from Assembly,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Economic Development and Technical Colleges,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +"Read first time and referred to committee on Licensing, Constitution and Federalism",2024-01-19T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and concurred in,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:53 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled,2023-11-13T06:00:00+00:00,['enrolled'],WI,2023 +"Report concurrence recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2023-05-08T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Krug added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Senate Amendment 2 offered by Senator Bradley,2024-02-16T06:00:00+00:00,[],WI,2023 +Representative Stubbs added as a coauthor,2023-10-17T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-11-13T06:00:00+00:00,['enrolled'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Read,2023-09-14T05:00:00+00:00,[],WI,2023 +Withdrawn from committee on Insurance and Small Business and rereferred to committee on Senate Organization pursuant to Senate Rule 46(2)(c),2023-12-12T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-06-28T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Representatives Gustafson and O'Connor added as cosponsors,2023-11-08T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Representative Cabrera added as a cosponsor,2023-06-20T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +"Assembly Amendment 7 adopted, Ayes 66, Noes 32",2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-15T06:00:00+00:00,['withdrawal'],WI,2023 +Representative Kitchens added as a cosponsor,2023-12-06T06:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Representative Snodgrass added as a cosponsor,2023-08-18T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Referred to committee on Rules,2023-04-12T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-14T06:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +"Senate Substitute Amendment 1 offered by Senators Larson, Agard, Carpenter, Hesselbein, L. Johnson, Pfaff, Roys, Smith, Spreitzer and Wirch",2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2023-04-19T05:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-09-28T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Kitchens,2024-02-22T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-01-19T06:00:00+00:00,['enrolled'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Read first time and referred to committee on Economic Development and Technical Colleges,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Report correctly enrolled on 3-13-2024,2024-03-13T05:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Government Operations, Ayes 3, Noes 2",2024-02-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate concurred in,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 3-13-2024,2024-03-13T05:00:00+00:00,['enrolled'],WI,2023 +Rules suspended to give bill its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-05-24T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Maxey added as a coauthor,2023-09-08T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-18-2024,2024-03-18T05:00:00+00:00,['enrolled'],WI,2023 +Received from Senate concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-14T06:00:00+00:00,['withdrawal'],WI,2023 +LRB correction (Senate Substitute Amendment 1),2024-02-21T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Assembly Amendment 2 to Assembly Substitute Amendment 1 laid on table, Ayes 62, Noes 35",2023-09-14T05:00:00+00:00,['deferral'],WI,2023 +Available for scheduling,2023-05-26T05:00:00+00:00,[],WI,2023 +Representatives C. Anderson and Gustafson added as cosponsors,2023-11-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-11-13T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Campaigns and Elections, Ayes 9, Noes 0",2024-03-14T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read,2023-10-17T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +"Decision of the Chair does not stand as the judgment of the Senate, Ayes 14, Noes 19",2023-11-14T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Aging and Long-Term Care, Ayes 11, Noes 5",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled,2024-01-19T06:00:00+00:00,['enrolled'],WI,2023 +Made a special order of business at 10:19 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-26T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 3-14-2024,2024-03-14T05:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Fiscal estimate received,2024-01-23T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Cabral-Guevara,2024-01-04T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Read,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 2-1-2024,2024-02-01T06:00:00+00:00,['executive-receipt'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-06T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Placed on calendar 4-18-2023 by Committee on Rules,2023-04-13T05:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Economic Development and Technical Colleges, Ayes 4, Noes 2",2023-05-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Substitute Amendment 1 adopted,2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-11-13T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Health, Aging and Long-Term Care",2023-03-24T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-11-14T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Made a special order of business at 10:20 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-04-18T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Government Operations,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +"Report concurrence recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and concurred in,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-11-13T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 placed after Senate Substitute Amendment 2,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Report correctly enrolled on 6-30-2023,2023-06-30T05:00:00+00:00,['enrolled'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-06-21T05:00:00+00:00,['withdrawal'],WI,2023 +"Read a third time and concurred in, Ayes 62, Noes 34",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Representative Penterman added as a cosponsor,2024-01-04T06:00:00+00:00,[],WI,2023 +Representative Considine added as a coauthor,2023-10-18T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 30, Noes 2",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled on 6-29-2023,2023-06-29T05:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2023-06-28T05:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Senate Organization,2023-06-14T05:00:00+00:00,['referral-committee'],WI,2023 +Presented to the Governor on 11-15-2023,2023-11-15T06:00:00+00:00,['executive-receipt'],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Universities and Revenue,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Rozar added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Universities and Revenue,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-12-12T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2023-09-15T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 11-15-2023,2023-11-15T06:00:00+00:00,['executive-receipt'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-01-19T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and concurred in,2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2023-06-21T05:00:00+00:00,[],WI,2023 +Representatives Cabrera and Conley added as coauthors,2023-06-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Ayes 5, Noes 0",2023-11-08T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report passage as amended recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2024-03-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 by Committee on Rules,2023-11-02T05:00:00+00:00,[],WI,2023 +Representative Penterman added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered to a third reading,2023-04-19T05:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:39 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-14T06:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-10-17T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 32, Noes 0",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report concurrence recommended by Joint Committee on Finance, Ayes 15, Noes 0",2023-10-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2024-01-18T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-14T06:00:00+00:00,['withdrawal'],WI,2023 +Deposited in the office of the Secretary of State on 1-19-2023,2023-01-19T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 13, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read first time and referred to committee on Government Operations,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-09T06:00:00+00:00,['withdrawal'],WI,2023 +Available for scheduling,2023-05-26T05:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2023-06-05T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-06-02T05:00:00+00:00,[],WI,2023 +Representative Andraca added as a coauthor,2023-10-18T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a coauthor,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and passed, Ayes 21, Noes 11",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Health, Aging and Long-Term Care",2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Agriculture and Tourism,2023-06-08T05:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Transportation and Local Government,2024-01-26T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-11-21T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Government Operations,2023-10-18T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-09-14T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +"Senate Amendment 1 to Senate Amendment 2 rejected, Ayes 18, Noes 15",2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-09T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Read a third time and passed,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report concurrence as amended recommended by Committee on Campaigns and Elections, Ayes 9, Noes 0",2024-03-14T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Executive action taken,2023-09-11T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Presented to the Governor on 2-1-2024,2024-02-01T06:00:00+00:00,['executive-receipt'],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-06-14T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 1 adopted,2024-01-18T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2023-05-08T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +"Report concurrence recommended by Joint Committee on Finance, Ayes 14, Noes 1",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-09-20T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Ratcliff added as a coauthor,2023-06-22T05:00:00+00:00,[],WI,2023 +Made a special order of business at 11:35 AM on 2-22-2024 pursuant to Assembly Resolution 29,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report passage recommended by Committee on State Affairs, Ayes 8, Noes 5",2024-02-13T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 31, Noes 1",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Executive action taken by joint committee on Finance,2023-06-13T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +Representative Steffen added as a cosponsor,2023-10-17T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +Senate Amendment 3 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-19T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-03-11T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 1 adopted,2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and passed, Ayes 95, Noes 1",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Senate Organization,2024-03-06T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and concurred in,2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Shared Revenue, Elections and Consumer Protection",2023-11-13T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Laid on the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Read first time and referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Representative C. Anderson added as a cosponsor,2024-02-12T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-02-15T06:00:00+00:00,[],WI,2023 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Read a third time and passed, Ayes 32, Noes 0",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Billings added as a cosponsor,2023-11-30T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Assembly Substitute Amendment 2 offered by Representatives Neubauer, Haywood, Subeck, Billings, C. Anderson, Andraca, Baldeh, Bare, Clancy, Conley, Considine, Doyle, Drake, Emerson, Goyke, Hong, Joers, Madison, McGuire, Moore Omokunde, Ohnstad, Ortiz-Velez, Ratcliff, Shelton, Sinicki, Snodgrass, Stubbs, Vining and Cabrera",2023-05-17T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +Laid on the table,2023-10-17T05:00:00+00:00,['deferral'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-01-19T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-04-18T05:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2024-01-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Representative Cabrera added as a cosponsor,2023-11-09T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-10-17T05:00:00+00:00,['withdrawal'],WI,2023 +Placed on calendar 11-9-2023 by Committee on Rules,2023-11-07T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 67, Noes 27, Paired 2",2023-06-21T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Laid on table,2023-06-14T05:00:00+00:00,['deferral'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +"Read first time and referred to committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-11-21T06:00:00+00:00,['referral-committee'],WI,2023 +Representative O'Connor added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 1 offered by Representative Oldenburg,2023-11-13T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate concurred in,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Report correctly enrolled on 6-30-2023,2023-06-30T05:00:00+00:00,['enrolled'],WI,2023 +"Senate Amendment 4 offered by Senators Larson, Hesselbein, Roys, Pfaff, Wirch, L. Johnson, Smith, Agard and Carpenter",2023-06-14T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Representative Cabrera added as a coauthor,2023-11-14T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Referred to joint committee on Finance,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-04-13T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Financial Institutions and Sporting Heritage,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-01-18T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Universities and Revenue,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2024-03-06T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Universities and Revenue,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Senator Cowles added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +"Decision of the Chair upheld, Ayes 62, Noes 35",2024-02-22T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Representatives Emerson and Gustafson added as cosponsors,2024-01-17T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-04-25T05:00:00+00:00,[],WI,2023 +Assembly Amendment 2 offered by Representative Stubbs,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-16T06:00:00+00:00,['withdrawal'],WI,2023 +Read first time and referred to committee on Senate Organization,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and concurred in,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Representative Cabrera added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +"Report concurrence as amended recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2024-01-26T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 1 offered by Representative Zimmerman,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-03-06T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Considine added as a cosponsor,2023-10-18T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly concurred in,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +"Senate Amendment 1 offered by Senators Larson, Hesselbein, Carpenter, L. Johnson, Roys, Smith, Spreitzer, Pfaff, Agard and Wirch",2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-13T06:00:00+00:00,['withdrawal'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-10-10T05:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-03-11T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Report concurrence as amended recommended by Committee on Universities and Revenue, Ayes 5, Noes 3",2024-02-05T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-01-16T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 63, Noes 33",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Representative Rozar added as a coauthor,2023-04-18T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Economic Development and Technical Colleges,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-03-22T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-15T06:00:00+00:00,['withdrawal'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2023-03-16T05:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 13, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Read a third time and concurred in, Ayes 96, Noes 0",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representatives Cabrera and Conley added as coauthors,2023-06-14T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-09T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-06-15T05:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Transportation and Local Government, Ayes 3, Noes 2",2023-06-02T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 64, Noes 35",2023-09-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2023-06-14T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-06-21T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly concurred in,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-10-17T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Read first time and referred to joint committee on Finance,2024-02-06T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2023-05-23T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Made a special order of business at 11:23 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-28T05:00:00+00:00,['reading-2'],WI,2023 +Representative Subeck added as a cosponsor,2023-06-16T05:00:00+00:00,[],WI,2023 +"Report passage, with emergency statement attached, pursuant to s. 16.47 (2), Wisconsin Statutes, recommended by Joint Committee on Finance, Ayes 10, Noes 4",2023-06-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Read first time and referred to committee on Licensing, Constitution and Federalism",2023-06-08T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Withdrawn from joint committee on Finance and referred to committee on Rules pursuant to Assembly 42 (3)(c),2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-03-23T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Made a special order of business at 10:35 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Universities and Revenue,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Laid on table,2023-06-14T05:00:00+00:00,['deferral'],WI,2023 +Decision of the Chair appealed,2024-01-25T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +"Decision of the Chair upheld, Ayes 92, Noes 7",2024-01-25T06:00:00+00:00,[],WI,2023 +Made a special order of business at 11:27 AM on 2-22-2024 pursuant to Assembly Resolution 29,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2023-03-23T05:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Available for scheduling,2023-06-13T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Substitute Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2023-09-14T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-28T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-06-19T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Referred to joint committee on Finance,2024-02-22T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Subeck added as a cosponsor,2023-06-16T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Representative Haywood added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Senator James added as a coauthor,2023-12-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-16T05:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-19T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Senator Jacque added as a cosponsor,2024-03-01T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Health,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2023-06-05T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-06T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-02-05T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-11-09T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 2 adopted,2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative Cabrera added as a coauthor,2023-11-09T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and concurred in,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +"Representatives Steffen, Vining and O'Connor added as coauthors",2023-10-17T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Senator Cowles added as a coauthor,2024-02-07T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-13T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Senate Organization,2023-11-13T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Taken from the table,2023-11-14T06:00:00+00:00,['deferral'],WI,2023 +Representatives Emerson and Gustafson added as cosponsors,2024-01-17T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-28T06:00:00+00:00,['enrolled'],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 11-14-2023 by Committee on Rules,2023-11-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 62, Noes 35",2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senator Carpenter added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-29-2024. 2023 Wisconsin Act 260,2024-03-29T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-13T06:00:00+00:00,['withdrawal'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Senators Wanggaard and Carpenter added as cosponsors,2024-03-06T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-06-21T05:00:00+00:00,['withdrawal'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Decision of the Chair appealed,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 11",2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled,2024-02-29T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-29-2024. 2023 Wisconsin Act 256,2024-03-29T05:00:00+00:00,['executive-signature'],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-09-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +"Report concurrence recommended by Committee on Housing, Rural Issues and Forestry, Ayes 5, Noes 0",2024-03-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 11",2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 2 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +"Assembly Substitute Amendment 2 laid on table, Ayes 57, Noes 34",2023-05-17T05:00:00+00:00,['deferral'],WI,2023 +Available for scheduling,2023-06-02T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 60, Noes 35",2023-04-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-18T06:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2023-06-22T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-16T06:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Report approved by the Governor on 3-29-2024. 2023 Wisconsin Act 259,2024-03-29T05:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +"Refused to refer to committee on Judiciary, Ayes 35, Noes 62",2023-01-19T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-04-18T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +"Report concurrence recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2024-01-10T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Senator Roys added as a coauthor,2023-10-19T05:00:00+00:00,[],WI,2023 +"Representatives Plumer, Conley and Joers added as cosponsors",2024-01-18T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 2 offered by Representative McGuire,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-29-2024. 2023 Wisconsin Act 257,2024-03-29T05:00:00+00:00,['executive-signature'],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-08T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-13T06:00:00+00:00,['withdrawal'],WI,2023 +Made a special order of business at 10:10 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 32, Noes 1",2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senator Carpenter added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2023-12-08T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +LRB correction,2023-04-21T05:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-06-16T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-14T06:00:00+00:00,['withdrawal'],WI,2023 +Received from Assembly concurred in,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2023-12-13T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-15T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-13T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-28T06:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Neubauer,2023-03-22T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 6-30-2023,2023-06-30T05:00:00+00:00,['enrolled'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 7-13-2023,2023-07-13T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-03-16T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Summerfield,2024-02-12T06:00:00+00:00,[],WI,2023 +"Senate Amendment 5 offered by Senators Larson, Hesselbein, Roys, Wirch, L. Johnson, Smith, Agard and Carpenter",2023-06-14T05:00:00+00:00,[],WI,2023 +Representatives Gustafson and Joers added as cosponsors,2024-01-25T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-06-28T05:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-18T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Representative Penterman added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +"Report concurrence recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Shared Revenue, Elections and Consumer Protection",2023-11-13T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2024-03-06T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Universities and Revenue,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-05T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 1",2023-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +"Report concurrence recommended by Joint Committee on Finance, Ayes 10, Noes 4",2024-03-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in as amended,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senator Spreitzer added as a cosponsor,2023-11-13T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2023-03-22T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Health,2023-06-23T05:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Universities and Revenue,2023-11-09T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on the foot of the 11th order of business on the calendar of 10-17-2023,2023-10-17T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-06-12T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken by joint committee on Finance,2023-06-15T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Housing, Rural Issues and Forestry",2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2023-09-15T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-11-15T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-09-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Report approved by the Governor on 3-29-2024. 2023 Wisconsin Act 258,2024-03-29T05:00:00+00:00,['executive-signature'],WI,2023 +Read first time and referred to committee on Rules,2023-06-14T05:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled on 10-18-2023,2023-10-18T05:00:00+00:00,['enrolled'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2023-06-05T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-09-14T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2023-06-05T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 1 offered by Representative Edming,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +"Withdrawn from committee on Government Operations and rereferred to committee on Mental Health, Substance Abuse Prevention, Children and Families pursuant to Senate Rule 46(2)(c)",2024-03-05T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +"Report Assembly Amendment 2 adoption recommended by Joint Committee on Finance, Ayes 13, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Not published. Enrolled Joint Resolution 3,2023-05-11T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Health, Ayes 4, Noes 2",2024-01-18T06:00:00+00:00,['amendment-passage'],WI,2023 +Referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Report approved by the Governor on 2-2-2024. 2023 Wisconsin Act 93,2024-02-02T06:00:00+00:00,['executive-signature'],WI,2023 +Report approved by the Governor on 2-2-2024. 2023 Wisconsin Act 92,2024-02-02T06:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a third time,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Report approved by the Governor on 3-29-2024. 2023 Wisconsin Act 261,2024-03-29T05:00:00+00:00,['executive-signature'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and concurred in,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and concurred in,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Health,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2023-04-19T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-06T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-29-2024. 2023 Wisconsin Act 263,2024-03-29T05:00:00+00:00,['executive-signature'],WI,2023 +"Read a third time and passed, Ayes 63, Noes 35",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representatives Subeck and Emerson added as coauthors,2024-02-14T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-14T06:00:00+00:00,['withdrawal'],WI,2023 +Senate Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and passed,2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +"Report concurrence as amended recommended by Committee on Government Operations, Ayes 3, Noes 2",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 adopted,2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 90, Noes 4",2023-06-21T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2024-01-19T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +"Report concurrence recommended by Committee on Corrections, Ayes 8, Noes 5",2023-09-28T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Assembly Amendment 2 adopted,2024-01-18T06:00:00+00:00,['amendment-passage'],WI,2023 +Report approved by the Governor on 11-16-2023. 2023 Wisconsin Act 39,2023-11-17T06:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Referred to joint committee on Finance,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative O'Connor added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Representative Shankland added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Representatives Cabrera and Conley added as coauthors,2023-06-14T05:00:00+00:00,[],WI,2023 +Referred to joint committee on Finance,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Representative Steffen added as a cosponsor,2023-10-17T05:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2023-06-05T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 11-16-2023. 2023 Wisconsin Act 38,2023-11-17T06:00:00+00:00,['executive-signature'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-06-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 7-13-2023,2023-07-13T05:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-06-28T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Read,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 10:17 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 6-30-2023,2023-06-30T05:00:00+00:00,['enrolled'],WI,2023 +Senator Roys added as a cosponsor,2023-10-19T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-01-16T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-06-21T05:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 7-13-2023,2023-07-13T05:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +"Senate Amendment 1 to Senate Substitute Amendment 2 rejected, Ayes 20, Noes 12",2024-01-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in as amended,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-16T06:00:00+00:00,[],WI,2023 +LRB correction,2024-01-19T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-04-18T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2024-02-08T06:00:00+00:00,['referral-committee'],WI,2023 +Representative C. Anderson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Representative O'Connor added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-29-2024. 2023 Wisconsin Act 262,2024-03-29T05:00:00+00:00,['executive-signature'],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-03-11T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Senate Organization,2024-03-06T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and concurred in as amended,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative Snodgrass added as a cosponsor,2023-04-10T05:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Read a second time,2023-04-18T05:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-05-26T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-29-2024. 2023 Wisconsin Act 255,2024-03-29T05:00:00+00:00,['executive-signature'],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +"Senate Substitute Amendment 1 rejected, Ayes 22, Noes 10",2024-02-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-11-21T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Representative Plumer added as a cosponsor,2024-01-18T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +"Report concurrence recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 3, Noes 2",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-03T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-01-03T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-25T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Decision of the Chair appealed,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +"Read a third time and concurred in, Ayes 98, Noes 0",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 4 to Senate Amendment 2 offered by Senator Spreitzer,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Representative Jacobson added as a coauthor,2023-12-13T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Published 3-30-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 97, Noes 0",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Published 2-3-2024,2024-02-02T06:00:00+00:00,['became-law'],WI,2023 +Read,2024-02-20T06:00:00+00:00,[],WI,2023 +"Decision of the Chair upheld, Ayes 63, Noes 35",2024-02-20T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 97, Noes 0",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Published 3-30-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Made a special order of business at 10:34 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-04-18T05:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2024-03-11T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-01-19T06:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and concurred in,2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report approved by the Governor on 7-19-2023. 2023 Wisconsin Act 21,2023-07-20T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 1-18-2024 by Committee on Rules,2024-01-16T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 7-13-2023,2023-07-13T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 7-19-2023. 2023 Wisconsin Act 22,2023-07-20T05:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-03-06T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Assembly Amendment 1 adopted,2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 1 adopted,2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-07T06:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2024-03-05T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +"Passed, Ayes 22, Noes 11",2023-11-14T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 13, Noes 0",2024-02-19T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Made a special order of business at 10:05 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 64, Noes 32",2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-21-2023 by Committee on Rules,2023-06-15T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Published 3-30-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +Representatives C. Anderson and Gustafson added as coauthors,2024-01-30T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Executive action taken,2023-12-13T06:00:00+00:00,[],WI,2023 +Referred to joint committee on Finance,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Senate Amendment 1 offered by Senator Feyen,2023-11-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2023-09-11T05:00:00+00:00,[],WI,2023 +Published 2-3-2024,2024-02-02T06:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Insurance and Small Business,2023-11-21T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Referred to committee on Rules,2023-09-28T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-13T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:06 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:22 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a cosponsor,2024-03-18T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +"Report concurrence recommended by Committee on Economic Development and Technical Colleges, Ayes 5, Noes 1",2024-01-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report concurrence recommended by Committee on Economic Development and Technical Colleges, Ayes 5, Noes 0",2024-01-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senate Amendment 5 to Senate Amendment 2 offered by Senator Spreitzer,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +"Report concurrence recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Representative Dittrich withdrawn as a cosponsor,2023-11-15T06:00:00+00:00,['withdrawal'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +"Read a third time and concurred in, Ayes 31, Noes 1",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Haywood added as a coauthor,2023-10-23T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Read,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and concurred in,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage as amended recommended by Committee on Health, Ayes 6, Noes 0",2024-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Representative Steffen added as a cosponsor,2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-04-19T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 3-30-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +Laid on the table,2024-02-15T06:00:00+00:00,['deferral'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-11-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Published 11-17-2023,2023-11-17T06:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Education,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Report correctly enrolled,2024-01-19T06:00:00+00:00,['enrolled'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-10-17T05:00:00+00:00,['withdrawal'],WI,2023 +Senator Roys added as a cosponsor,2023-12-19T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 11-17-2023,2023-11-17T06:00:00+00:00,['became-law'],WI,2023 +Read a third time and passed,2023-06-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Representative J. Anderson added as a coauthor,2023-10-23T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-06-21T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Senate Substitute Amendment 2 adopted, Ayes 19, Noes 13",2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-10-19T05:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-15T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 62, Noes 35",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Public hearing held,2023-04-12T05:00:00+00:00,[],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 11-14-2023,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-09-14T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Feyen,2023-06-05T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2023-12-13T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Read a third time and concurred in,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 3-30-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Public hearing held,2023-07-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative Riemer added as a cosponsor,2023-06-21T05:00:00+00:00,[],WI,2023 +Laid on table,2023-10-17T05:00:00+00:00,['deferral'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Education,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +"Read first time and referred to committee on Shared Revenue, Elections and Consumer Protection",2023-11-15T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Executive action taken by joint committee on Finance,2023-06-22T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 62, Noes 35",2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Public hearing held,2023-12-05T06:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a cosponsor,2023-11-13T06:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +"Senate Amendment 6 offered by Senators Larson, Roys, Wirch, Smith, Agard, Hesselbein and Carpenter",2023-06-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Published 3-30-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +Rules suspended to give bill its third reading,2023-03-22T05:00:00+00:00,[],WI,2023 +Representative Vining added as a cosponsor,2024-02-12T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-09-13T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 97, Noes 0",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Assembly Substitute Amendment 1 offered by Representatives Neubauer, Haywood, Billings, C. Anderson, Andraca, Baldeh, Drake, Goyke, Joers, Palmeri and Stubbs",2023-05-17T05:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2023-06-05T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-11T05:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-11-21T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-04-25T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Senate Substitute Amendment 2 offered by Joint Committee on Finance,2023-06-22T05:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Public hearing held,2024-03-06T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +Published 3-30-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Representatives Gustafson and Rozar added as cosponsors,2024-01-25T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 74, Noes 23",2023-01-19T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2023-04-18T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Referred to joint committee on Finance,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-02-28T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2024-01-10T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-12-06T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 1 offered by Representative VanderMeer,2024-02-22T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Bare added as a cosponsor,2024-01-29T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-28T05:00:00+00:00,[],WI,2023 +Representative J. Anderson added as a cosponsor,2023-10-23T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Point of order that Assembly Substitute Amendment 2 not germane under Assembly Rule 54 (3)(f) well taken,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-15T06:00:00+00:00,['withdrawal'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-01-19T06:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly concurred in,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Published 3-30-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-11-09T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Joint Committee on Finance, Ayes 13, Noes 0",2024-03-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Fiscal estimate received,2023-06-19T05:00:00+00:00,['receipt'],WI,2023 +"Report concurrence recommended by Committee on Transportation and Local Government, Ayes 4, Noes 1",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Report correctly enrolled,2023-04-21T05:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Senate Amendment 1 adopted,2023-09-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Public hearing held,2024-03-06T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Housing, Rural Issues and Forestry",2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +"Report concurrence recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-12-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-19T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-11-15T06:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Fiscal estimate received,2024-03-06T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Report correctly enrolled,2024-02-22T06:00:00+00:00,['enrolled'],WI,2023 +"Read a third time and concurred in, Ayes 21, Noes 11",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Read,2023-11-14T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-04-13T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Assembly Amendment 2 withdrawn and returned to author,2023-06-14T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 3-11-2024,2024-03-11T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-03-11T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-14T06:00:00+00:00,['withdrawal'],WI,2023 +Executive action taken,2024-02-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Deposited in the office of the Secretary of State on 3-6-2024,2024-03-06T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in as amended,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 97, Noes 0",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +"Representatives Cabrera, Drake and Krug added as coauthors",2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-13T06:00:00+00:00,['withdrawal'],WI,2023 +Report correctly enrolled,2024-02-29T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 7-13-2023,2023-07-13T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a third time and concurred in,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled,2023-11-15T06:00:00+00:00,['enrolled'],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in as amended,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report concurrence recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Report approved by the Governor on 7-19-2023. 2023 Wisconsin Act 25,2023-07-20T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-18T06:00:00+00:00,['withdrawal'],WI,2023 +"Assembly Amendment 1 laid on table, Ayes 62, Noes 35",2023-03-22T05:00:00+00:00,['deferral'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Available for scheduling,2023-11-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-13T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-15T06:00:00+00:00,['withdrawal'],WI,2023 +"Report concurrence recommended by Committee on Financial Institutions and Sporting Heritage, Ayes 5, Noes 0",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Published 3-30-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-03-20T05:00:00+00:00,[],WI,2023 +Senator Cowles added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-21T05:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-10-17T05:00:00+00:00,[],WI,2023 +"Decision of the Chair upheld, Ayes 64, Noes 35",2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-13T06:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2023-06-19T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-01-19T06:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Assembly Amendment 2 to Assembly Substitute Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Representative Joers added as a coauthor,2023-05-08T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-25T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Assembly Substitute Amendment 3 offered by Representative Wichgers,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2024-02-22T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-03-05T06:00:00+00:00,['enrolled'],WI,2023 +Read first time and referred to committee on Universities and Revenue,2023-06-23T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Government Operations,2023-06-14T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Representative Steffen added as a coauthor,2024-01-31T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 62, Noes 35",2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-09-20T05:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 1 offered by Senator Quinn,2024-01-16T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-05-10T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Assembly Amendment 1 offered by Representative Krug,2024-02-22T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Health,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Public hearing held,2024-01-31T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Assembly concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Point of order that Assembly Substitute Amendment 3 not germane under Assembly Rule 54 (3)(f) well taken,2024-01-25T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Assembly Amendment 3 to Assembly Substitute Amendment 1 offered by Representative Callahan,2024-02-22T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +LRB correction,2024-01-29T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2024-01-12T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and concurred in, Ayes 31, Noes 0",2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +"Senate Amendment 1 rejected, Ayes 22, Noes 10",2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 3 adopted,2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 3-22-2023 pursuant to Senate Rule 18(1),2023-03-20T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Report approved by the Governor on 3-29-2024. 2023 Wisconsin Act 252,2024-03-29T05:00:00+00:00,['executive-signature'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +"Senate Amendment 7 offered by Senators Larson, Roys, Wirch, Smith, Agard, Hesselbein and Carpenter",2023-06-14T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +"Report concurrence recommended by Joint Committee on Finance, Ayes 15, Noes 0",2024-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +"Senate Amendment 1 offered by Senators Wirch, Pfaff, Carpenter, Larson, Hesselbein and Smith",2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Representative Schutt added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Universities and Revenue,2023-09-20T05:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Universities and Revenue, Ayes 7, Noes 1",2024-03-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Rules,2023-12-06T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-12-14T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +"Assembly Substitute Amendment 1 laid on table, Ayes 57, Noes 34",2023-05-17T05:00:00+00:00,['deferral'],WI,2023 +"Read a third time and concurred in, Ayes 62, Noes 35",2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 5-4-2023,2023-05-04T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 4-29-2024. Enrolled Joint Resolution 11,2024-05-01T05:00:00+00:00,['became-law'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-29T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Published 7-20-2023,2023-07-20T05:00:00+00:00,['became-law'],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 197,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Representative O'Connor added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2023-04-26T05:00:00+00:00,['receipt'],WI,2023 +Deposited in the office of the Secretary of State on 11-28-2023,2023-11-28T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2023-11-21T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Joint Committee on Finance, Ayes 12, Noes 4",2023-06-26T05:00:00+00:00,['amendment-passage'],WI,2023 +Assembly Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Presented to the Governor on 3-11-2024,2024-03-11T05:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended,2023-03-22T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-13T06:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-01-19T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-18T05:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Economic Development and Technical Colleges, Ayes 6, Noes 0",2024-02-28T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and concurred in as amended,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-06-21T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2024-02-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Made a special order of business at 10:41 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Report correctly enrolled,2023-06-09T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 withdrawn and returned to author,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 161,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Joint Committee on Finance, Ayes 11, Noes 4",2024-02-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Report of Joint Survey Committee on Tax Exemptions requested,2024-03-04T06:00:00+00:00,[],WI,2023 +Representative Ohnstad added as a cosponsor,2024-01-29T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:16 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +LRB correction,2024-01-25T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Representative Emerson added as a cosponsor,2024-03-15T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-06-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Deposited in the office of the Secretary of State on 11-28-2023,2023-11-28T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:14 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2023-06-14T05:00:00+00:00,[],WI,2023 +Read,2023-10-17T05:00:00+00:00,[],WI,2023 +Executive action taken,2024-03-08T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2023-04-20T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Decision of the Chair appealed,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +LRB correction,2023-11-15T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 225,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Report approved by the Governor on 7-19-2023. 2023 Wisconsin Act 23,2023-07-20T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Available for scheduling,2024-03-11T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Education,2023-06-08T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Andraca added as a cosponsor,2024-03-18T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-11-14T06:00:00+00:00,['withdrawal'],WI,2023 +Placed on calendar 10-17-2023 pursuant to Senate Rule 18(1),2023-10-17T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Read a third time and concurred in,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-04-17T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +LRB correction,2024-02-29T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-11-09T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Senate Organization,2023-06-27T05:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Made a special order of business at 11:34 AM on 2-22-2024 pursuant to Assembly Resolution 29,2024-02-20T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-03-05T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-14-2024. 2023 Wisconsin Act 111,2024-03-14T05:00:00+00:00,['executive-signature'],WI,2023 +Read a third time and concurred in,2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +LRB correction,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Executive action taken,2024-03-11T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 2 offered by Joint Committee on Finance,2023-06-22T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Senators Hesselbein and Carpenter added as cosponsors,2023-07-14T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Fiscal estimate received,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senator Pfaff added as a cosponsor,2024-02-27T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-12T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2024-02-21T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +"Report concurrence recommended by Joint Committee on Finance, Ayes 11, Noes 2",2024-03-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2023-04-18T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Spiros,2024-02-12T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 offered by Senator Cabral-Guevara,2024-01-18T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-04-19T05:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Subeck added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Education,2023-11-21T06:00:00+00:00,['referral-committee'],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 6 to Senate Amendment 2 offered by Senator Spreitzer,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 2 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-01-09T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +"Read a third time and passed, Ayes 62, Noes 35",2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2023-06-05T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-09T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Made a special order of business at 10:46 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 97, Noes 0",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Report concurrence recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-12-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Read,2023-11-07T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 6-15-2023,2023-06-15T05:00:00+00:00,['enrolled'],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2023-10-17T05:00:00+00:00,[],WI,2023 +Read,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-13T06:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-10-17T05:00:00+00:00,['withdrawal'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Published 7-20-2023,2023-07-20T05:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +"Report concurrence recommended by Committee on Health, Ayes 6, Noes 0",2024-03-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-06-28T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 7-19-2023. 2023 Wisconsin Act 24,2023-07-20T05:00:00+00:00,['executive-signature'],WI,2023 +Available for scheduling,2024-01-18T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2023-11-08T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-19T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-09T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly concurred in,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 11:03 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Representative Emerson added as a cosponsor,2024-01-17T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +"Report concurrence recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2024-03-07T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Representative Vining added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +"Read a third time and concurred in, Ayes 21, Noes 11",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Published 7-20-2023,2023-07-20T05:00:00+00:00,['became-law'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-21T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2024-01-11T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and concurred in,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Cabrera added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2023-11-06T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2024-01-16T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-04-19T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Representatives Cabrera and Andraca added as cosponsors,2023-06-20T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-10-17T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 10:58 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled on 2-15-2024,2024-02-15T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2023-10-19T05:00:00+00:00,['enrolled'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +LRB correction,2023-10-19T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 offered by Representative Subeck,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +LRB correction,2024-02-28T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Report correctly enrolled,2024-02-22T06:00:00+00:00,['enrolled'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in as amended,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2024-02-23T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Read first time and referred to committee on Senate Organization,2023-04-18T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +LRB correction,2023-11-08T06:00:00+00:00,[],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-12-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-09-14T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Report correctly enrolled,2023-11-13T06:00:00+00:00,['enrolled'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Read,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Universities and Revenue,2023-06-23T05:00:00+00:00,['referral-committee'],WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-06-14T05:00:00+00:00,[],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 1-16-2024 by Committee on Rules,2024-01-11T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-19T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 96, Noes 1",2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2023-06-14T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 11",2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2023-12-14T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-11-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 6-7-2023 pursuant to Senate Rule 18(1),2023-06-05T05:00:00+00:00,[],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 4-4-2024,2024-04-04T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-03-06T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Representative Subeck added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +"Senate Amendment 2 to Senate Amendment 2 rejected, Ayes 19, Noes 14",2023-11-14T06:00:00+00:00,[],WI,2023 +Representative Andraca added as a cosponsor,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +"Report concurrence recommended by Committee on Health, Aging and Long-Term Care, Ayes 16, Noes 0",2023-05-31T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly concurred in,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Senate Organization,2023-11-13T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and concurred in,2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-12-14T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-19T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-04-18T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2023-04-18T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-14-2024,2024-03-14T05:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 4-1-2024,2024-04-01T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2024-02-28T06:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 246,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Executive action taken,2024-01-23T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Representative C. Anderson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Representative Joers added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Representative O'Connor added as a cosponsor,2023-06-21T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 2-26-2024,2024-02-26T06:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-06-21T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-18T06:00:00+00:00,['withdrawal'],WI,2023 +Made a special order of business at 10:33 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +"Report Assembly Amendment 1 adoption recommended by Committee on Mental Health and Substance Abuse Prevention, Ayes 8, Noes 4",2023-12-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and concurred in,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Amendment 2 offered by Senator Jacque,2024-01-30T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +Published 7-20-2023,2023-07-20T05:00:00+00:00,['became-law'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-13T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 97, Noes 0",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +"Read a third time and concurred in, Ayes 95, Noes 2",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Withdrawn from committee on Education and rereferred to committee on Senate Organization pursuant to Senate Rule 46(2)(c),2024-02-05T06:00:00+00:00,['referral-committee'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a third time and concurred in,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 171,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Insurance and Small Business, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-04-19T05:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 2 adopted,2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Executive action taken by joint survey committee on Tax Exemptions,2023-06-27T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Magnafici added as a cosponsor,2023-12-05T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Executive action taken,2023-09-13T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-03-23T05:00:00+00:00,['receipt'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Report correctly enrolled,2024-02-20T06:00:00+00:00,['enrolled'],WI,2023 +Available for scheduling,2024-02-07T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in as amended, Ayes 89, Noes 8",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 3-15-2024,2024-03-14T05:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Published 2-9-2024. Enrolled Joint Resolution 10,2024-02-09T06:00:00+00:00,['became-law'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Report correctly enrolled,2023-11-15T06:00:00+00:00,['enrolled'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-01-22T06:00:00+00:00,['enrolled'],WI,2023 +Representative Steffen added as a cosponsor,2023-10-17T05:00:00+00:00,[],WI,2023 +Published 3-30-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled on 6-15-2023,2023-06-15T05:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled,2024-01-19T06:00:00+00:00,['enrolled'],WI,2023 +Read first time and referred to committee on Economic Development and Technical Colleges,2023-05-02T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +"Decision of the Chair upheld, Ayes 62, Noes 35",2024-02-22T06:00:00+00:00,[],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Senate Amendment 1 offered by Senators Roys, Larson, Smith, Agard, Carpenter, Hesselbein, L. Johnson, Pfaff, Spreitzer, Taylor and Wirch",2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Rozar added as a cosponsor,2024-01-18T06:00:00+00:00,[],WI,2023 +Published 2-9-2024. Enrolled Joint Resolution 8,2024-02-09T06:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 5-10-2023. 2023 Wisconsin Act 10,2023-05-11T05:00:00+00:00,['executive-signature'],WI,2023 +LRB correction,2024-01-25T06:00:00+00:00,[],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-03-22T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Representative O'Connor added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Made a special order of business at 10:04 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 174,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 163,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Available for scheduling,2024-03-08T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +"Senate Substitute Amendment 1 offered by Senators Pfaff, Agard, Hesselbein, L. Johnson, Larson, Roys, Smith, Spreitzer and Wirch",2024-02-20T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-14-2024. 2023 Wisconsin Act 116,2024-03-14T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative C. Anderson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2024-03-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Report concurrence recommended by Committee on Universities and Revenue, Ayes 5, Noes 3",2024-03-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2024-03-07T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Placed on calendar 4-19-2023 pursuant to Senate Rule 18(1),2023-04-17T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 32, Noes 0",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Public hearing held,2023-12-06T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-06-28T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 133,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Public hearing held,2023-05-10T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-28T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +"Read a third time and concurred in, Ayes 85, Noes 12",2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly concurred in,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 2-13-2024 by directive of the Majority Leader,2024-02-13T06:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Read a third time and concurred in,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Senate Amendment 8 offered by Senators Larson, Roys, Wirch, L. Johnson, Smith, Agard, Hesselbein and Carpenter",2023-06-14T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-13T06:00:00+00:00,['amendment-passage'],WI,2023 +Senator Wirch added as a cosponsor,2023-03-20T05:00:00+00:00,[],WI,2023 +Placed on the foot of the 14th order of business on the calendar of 1-16-2024,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2024-02-23T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Published 7-20-2023,2023-07-20T05:00:00+00:00,['became-law'],WI,2023 +Assembly Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-09T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Made a special order of business at 10:29 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-27T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-09T06:00:00+00:00,['reading-3'],WI,2023 +Read first time and referred to committee on Rules,2023-10-19T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative O'Connor added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Representative O'Connor added as a cosponsor,2023-11-15T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-11-15T06:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and concurred in,2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2023-01-19T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Made a special order of business at 11:31 AM on 2-22-2024 pursuant to Assembly Resolution 29,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +"Report adoption of Senate Substitute Amendment 2 recommended by Joint Committee on Finance, Ayes 12, Noes 4",2023-06-26T05:00:00+00:00,['amendment-passage'],WI,2023 +Report correctly enrolled,2023-11-13T06:00:00+00:00,['enrolled'],WI,2023 +Assembly Amendment 2 offered by Representative Kurtz,2023-05-17T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled on 10-18-2023,2023-10-18T05:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 2-13-2024 by Committee on Rules,2024-02-08T06:00:00+00:00,[],WI,2023 +Withdrawn from committee on Universities and Revenue and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2023-09-22T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 6-15-2023,2023-06-15T05:00:00+00:00,['enrolled'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-06-21T05:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Labor, Regulatory Reform, Veterans and Military Affairs, Ayes 5, Noes 0",2024-03-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 11",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 1 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-09T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-29T06:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and passed,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +"Report concurrence recommended by Joint Committee on Finance, Ayes 14, Noes 0",2024-03-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Read first time and referred to committee on Transportation and Local Government,2023-10-18T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-19T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-29T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2023-11-16T06:00:00+00:00,['enrolled'],WI,2023 +Executive action taken,2023-08-15T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Senate Substitute Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 11",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2023-12-13T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +LRB correction (Senate Amendment 1),2024-02-27T06:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +"Read first time and referred to committee on Shared Revenue, Elections and Consumer Protection",2023-11-13T06:00:00+00:00,['referral-committee'],WI,2023 +Executive action taken,2023-05-23T05:00:00+00:00,[],WI,2023 +Assembly Amendment 3 to Assembly Substitute Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Representative Shankland added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-26T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-03-05T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 162,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Senate Amendment 1 offered by Senator Wimberger,2024-03-04T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Representative Emerson added as a cosponsor,2024-01-18T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 173,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Decision of the Chair appealed,2024-01-25T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Public hearing held,2024-01-17T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Substitute Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +"Report concurrence recommended by Committee on Health, Ayes 5, Noes 1",2024-03-06T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Fiscal estimate received,2024-02-26T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +"Read first time and referred to committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-09-20T05:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 2 offered by Senator Quinn,2024-02-12T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2023-05-23T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Report correctly enrolled,2024-01-19T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +"Decision of the Chair upheld, Ayes 91, Noes 8",2024-01-25T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Representative Steffen added as a cosponsor,2023-10-17T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +"Read first time and referred to committee on Shared Revenue, Elections and Consumer Protection",2023-11-21T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 130,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Read a third time and concurred in,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Neylon added as a cosponsor,2023-11-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-09T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Representative C. Anderson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-06-27T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended and taken up,2024-05-14T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-09T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +"Senate Amendment 1 rejected, Ayes 22, Noes 10",2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2023-04-19T05:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled on 3-18-2024,2024-03-18T05:00:00+00:00,['enrolled'],WI,2023 +Read a third time and concurred in,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Senator Spreitzer added as a cosponsor,2023-11-13T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +"Report concurrence recommended by Committee on Education, Ayes 5, Noes 2",2023-08-15T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Read a third time and concurred in as amended,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 181,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Representative Shankland added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2023-10-24T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-11T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and concurred in, Ayes 32, Noes 0",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate concurred in,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-01-19T06:00:00+00:00,['enrolled'],WI,2023 +Received from Senate concurred in,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2023-11-08T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Published 3-15-2024,2024-03-14T05:00:00+00:00,['became-law'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Report approved by the Governor on 8-4-2023. 2023 Wisconsin Act 29,2023-08-07T05:00:00+00:00,['executive-signature'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2024-02-22T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Referred to joint committee on Finance,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-11-2024,2024-03-11T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2023-10-24T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and concurred in as amended, Ayes 22, Noes 11",2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2024-02-22T06:00:00+00:00,['enrolled'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 4-1-2024,2024-04-01T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Senate Amendment 2 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Deposited in the office of the Secretary of State on 11-28-2023,2023-11-28T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-03-11T05:00:00+00:00,[],WI,2023 +Senate Amendment 9 offered by Senators Larson and Carpenter,2023-06-14T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-06-21T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report approved by the Governor on 2-19-2024. 2023 Wisconsin Act 94,2024-02-19T06:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +Representative Ratcliff added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +Available for scheduling,2024-03-08T06:00:00+00:00,[],WI,2023 +Read a second time,2023-03-22T05:00:00+00:00,['reading-2'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Executive action taken,2023-09-26T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-13T06:00:00+00:00,['withdrawal'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 2 adopted,2023-05-17T05:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Representative Gustafson added as a coauthor,2024-01-10T06:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 12, Noes 4",2023-06-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and concurred in,2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled,2023-01-19T06:00:00+00:00,['enrolled'],WI,2023 +Senate Amendment 1 to Senate Amendment 2 offered by Senator Marklein,2024-01-16T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-04-21T05:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and concurred in, Ayes 67, Noes 30",2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2023-12-13T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-11-2024,2024-03-11T05:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 228,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2023-06-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Plumer added as a cosponsor,2024-01-18T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Read a third time and concurred in,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled,2024-01-25T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2024-01-19T06:00:00+00:00,['enrolled'],WI,2023 +Available for scheduling,2024-03-11T05:00:00+00:00,[],WI,2023 +Representative Andraca added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2024-02-22T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Report correctly enrolled,2023-11-15T06:00:00+00:00,['enrolled'],WI,2023 +Published 5-11-2023,2023-05-11T05:00:00+00:00,['became-law'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Judiciary and Public Safety,2023-03-23T05:00:00+00:00,['referral-committee'],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2023-06-27T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Representative Shankland added as a coauthor,2023-09-15T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-03-06T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-22T06:00:00+00:00,['enrolled'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 4-20-2023,2023-04-20T05:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 4-19-2023 pursuant to Senate Rule 18(1),2023-04-18T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-04-18T05:00:00+00:00,[],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2024-02-23T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Rules suspended,2023-10-17T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-11-2024,2024-03-11T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 4-4-2024. 2023 Wisconsin Act 268,2024-04-04T05:00:00+00:00,['executive-signature'],WI,2023 +Available for scheduling,2024-01-11T06:00:00+00:00,[],WI,2023 +LRB correction,2023-11-15T06:00:00+00:00,[],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report without recommendation (Assembly Rule 19) by Committee on Health, Aging and Long-Term Care, Ayes 8, Noes 8",2024-01-23T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 48,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +LRB correction,2024-01-17T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Substitute Amendment 1 offered by Representative McGuire,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2024-02-26T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Received from Senate concurred in,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +Report correctly enrolled on 3-18-2024,2024-03-18T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-06-21T05:00:00+00:00,['withdrawal'],WI,2023 +Report correctly enrolled,2023-10-19T05:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 49,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2024-02-29T06:00:00+00:00,['enrolled'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-06-14T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 concurred in,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-19-2024,2024-03-19T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +LRB correction (Assembly Amendment 4),2023-09-15T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +"Read a third time and passed, Ayes 27, Noes 5",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +"Read a third time and concurred in, Ayes 98, Noes 0",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 11",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled,2024-01-22T06:00:00+00:00,['enrolled'],WI,2023 +Read a third time and concurred in as amended,2023-06-21T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-11-2024,2024-03-11T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Representative Cabrera added as a cosponsor,2023-11-09T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Ayes 5, Noes 0",2023-11-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-01-16T06:00:00+00:00,['withdrawal'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +"Report passage as amended recommended by Committee on Mental Health and Substance Abuse Prevention, Ayes 11, Noes 1",2023-12-01T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-01-18T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Representative Subeck added as a coauthor,2024-02-21T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Referred to joint committee on Finance,2024-02-22T06:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 1 concurred in,2024-03-12T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 98, Noes 0",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Vining added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled,2023-11-13T06:00:00+00:00,['enrolled'],WI,2023 +Representative Jacobson withdrawn as a cosponsor,2024-02-15T06:00:00+00:00,['withdrawal'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Joint Committee on Finance, Ayes 15, Noes 0",2023-11-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Senator Pfaff added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2023-10-11T05:00:00+00:00,['referral-committee'],WI,2023 +Read a third time and passed,2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +LRB correction (Senate Substitute Amendment 2),2024-02-27T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Report approved by the Governor on 8-4-2023. 2023 Wisconsin Act 33,2023-08-04T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Report vetoed by the Governor on 4-8-2024,2024-04-08T05:00:00+00:00,['executive-veto'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Representative Cabrera added as a cosponsor,2023-11-09T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Public hearing held,2023-08-17T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly concurred in,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Representative Steffen added as a cosponsor,2023-06-09T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-05T06:00:00+00:00,[],WI,2023 +"Senate Amendment 3 to Senate Amendment 2 rejected, Ayes 17, Noes 16",2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-05-31T05:00:00+00:00,['referral-committee'],WI,2023 +LRB correction,2024-02-27T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-15T06:00:00+00:00,['withdrawal'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Available for scheduling,2023-11-13T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-29T06:00:00+00:00,['enrolled'],WI,2023 +Representative Cabrera added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-20T05:00:00+00:00,['receipt'],WI,2023 +Printed engrossed by the direction of the Senate Chief Clerk-4395,2023-09-15T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Shankland added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 98, Noes 1",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Report correctly enrolled on 3-19-2024,2024-03-19T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 3-14-2024. 2023 Wisconsin Act 107,2024-03-14T05:00:00+00:00,['executive-signature'],WI,2023 +Report correctly enrolled,2023-11-20T06:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 10-17-2023 by Committee on Rules,2023-10-12T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 30, Noes 2",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled on 3-19-2024,2024-03-19T05:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-04-18T05:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate concurred in,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended,2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-29T06:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 168,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Representative O'Connor added as a cosponsor,2023-11-07T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-14-2024. 2023 Wisconsin Act 115,2024-03-14T05:00:00+00:00,['executive-signature'],WI,2023 +Received from Assembly,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2023-12-01T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 5-4-2023,2023-05-04T05:00:00+00:00,['executive-receipt'],WI,2023 +Senator Agard added as a cosponsor,2024-02-08T06:00:00+00:00,[],WI,2023 +Published 4-5-2024,2024-04-04T05:00:00+00:00,['became-law'],WI,2023 +"Read a third time and concurred in, Ayes 29, Noes 3",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2023-06-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +"Refused passage, Ayes 16, Noes 16",2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-18T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2023-04-18T05:00:00+00:00,['receipt'],WI,2023 +"Senate Amendment 4 to Senate Amendment 2 rejected, Ayes 19, Noes 14",2023-11-14T06:00:00+00:00,[],WI,2023 +Action ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 11",2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Referred to committee on Rules,2024-01-23T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Representative Andraca added as a coauthor,2024-02-22T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Published 8-5-2023,2023-08-04T05:00:00+00:00,['became-law'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Read a third time and passed, Ayes 96, Noes 0",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2024-02-22T06:00:00+00:00,[],WI,2023 +Read,2023-06-14T05:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +"Report concurrence as amended recommended by Committee on Government Operations, Ayes 3, Noes 2",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-25T06:00:00+00:00,[],WI,2023 +Representative Neubauer added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 2-21-2024,2024-02-21T06:00:00+00:00,['enrolled'],WI,2023 +LRB correction,2024-02-27T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a third time and concurred in,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and concurred in, Ayes 97, Noes 0",2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Senate concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 50,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-06-21T05:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-11-15T06:00:00+00:00,['enrolled'],WI,2023 +Rules suspended,2023-06-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 167,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-02-23T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Action ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 adopted,2023-06-07T05:00:00+00:00,['amendment-passage'],WI,2023 +Report correctly enrolled,2023-11-16T06:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Made a special order of business at 11:24 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 11",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Representative Shankland added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Placed on calendar 6-7-2023 by Committee on Rules,2023-06-01T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 11",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled,2023-11-16T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,[],WI,2023 +"Report concurrence as amended recommended by Joint Committee on Finance, Ayes 14, Noes 1",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Report correctly enrolled on 1-18-2024,2024-01-18T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 3-11-2024,2024-03-11T05:00:00+00:00,['executive-receipt'],WI,2023 +LRB correction,2024-02-27T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-09-15T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +"Report concurrence recommended by Committee on Health, Ayes 5, Noes 1",2023-10-06T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Senator Hutton added as a cosponsor,2023-03-28T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +"Report Assembly Substitute Amendment 2 adoption recommended by Joint Committee on Finance, Ayes 12, Noes 4",2023-06-27T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +"Report concurrence recommended by Joint Committee on Finance, Ayes 11, Noes 4",2023-09-26T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and concurred in,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled,2024-02-13T06:00:00+00:00,['enrolled'],WI,2023 +"Read a third time and concurred in, Ayes 29, Noes 3",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Report vetoed by the Governor on 8-4-2023,2023-08-04T05:00:00+00:00,['executive-veto'],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2023-03-23T05:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a cosponsor,2024-01-10T06:00:00+00:00,[],WI,2023 +Representative Bare added as a cosponsor,2024-01-26T06:00:00+00:00,[],WI,2023 +"Senate Amendment 1 rejected, Ayes 22, Noes 10",2023-10-17T05:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2023-10-24T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in as amended, Ayes 97, Noes 0",2023-11-09T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 47,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Presented to the Governor on 4-1-2024,2024-04-01T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered to a third reading,2023-03-22T05:00:00+00:00,['reading-3'],WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-28-2023 pursuant to Senate Rule 18(1),2023-06-27T05:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-12-19T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Deposited in the office of the Secretary of State on 1-19-2023,2023-01-19T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-11-2024,2024-03-11T05:00:00+00:00,['executive-receipt'],WI,2023 +"Passed notwithstanding the objections of the Governor, Ayes 22, Noes 9",2024-05-14T05:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly concurred in,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 2-28-2024 by directive of the Majority Leader,2024-02-28T06:00:00+00:00,['executive-receipt'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 184,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-04-19T05:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-receipt'],WI,2023 +Report vetoed by the Governor on 12-6-2023,2023-12-06T06:00:00+00:00,['executive-veto'],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 1-29-2024,2024-01-29T06:00:00+00:00,['executive-receipt'],WI,2023 +Received from Assembly concurred in,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-02-27T06:00:00+00:00,[],WI,2023 +Published 2-9-2024. Enrolled Joint Resolution 9,2024-02-09T06:00:00+00:00,['became-law'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Published 2-20-2024,2024-02-19T06:00:00+00:00,['became-law'],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 1-17-2024,2024-01-17T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 5-4-2023,2023-05-04T05:00:00+00:00,['executive-receipt'],WI,2023 +Representative Subeck added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-14-2024,2024-03-14T05:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +LRB correction,2024-01-22T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-08-15T05:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 226,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 68,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator Knodl,2024-01-22T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-01-22T06:00:00+00:00,['enrolled'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +"Report concurrence recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 5, Noes 0",2023-12-14T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2023-05-17T05:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Representative C. Anderson added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-14-2024. 2023 Wisconsin Act 109,2024-03-14T05:00:00+00:00,['executive-signature'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-09T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 199,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 69,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Representative Steffen added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Presented to the Governor on 1-29-2024,2024-01-29T06:00:00+00:00,['executive-receipt'],WI,2023 +Public hearing held,2023-10-24T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Received from Assembly concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Report vetoed by the Governor on 8-4-2023,2023-08-04T05:00:00+00:00,['executive-veto'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled on 3-19-2024,2024-03-19T05:00:00+00:00,['enrolled'],WI,2023 +"Read a third time and concurred in, Ayes 96, Noes 0",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled on 6-29-2023,2023-06-29T05:00:00+00:00,['enrolled'],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 180,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +"Read a third time and passed, Ayes 98, Noes 0",2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Received from Assembly concurred in,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2024-02-23T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Report correctly enrolled on 3-24-2023,2023-03-24T05:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-06-26T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-14-2024. 2023 Wisconsin Act 117,2024-03-14T05:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Published 8-5-2023,2023-08-07T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 4-5-2024. 2023 Wisconsin Act 271,2024-04-08T05:00:00+00:00,['executive-signature'],WI,2023 +Received from Assembly concurred in,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2023-11-13T06:00:00+00:00,['enrolled'],WI,2023 +Read,2024-02-20T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 127,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Assembly Amendment 1 concurred in,2024-03-12T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +"Senate Substitute Amendment 1 rejected, Ayes 22, Noes 10",2024-02-20T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2023-05-23T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Report correctly enrolled,2024-01-22T06:00:00+00:00,['enrolled'],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-26T06:00:00+00:00,['receipt'],WI,2023 +Assembly Substitute Amendment 2 offered by Representative Wichgers,2024-01-25T06:00:00+00:00,[],WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Representative Ratcliff added as a coauthor,2023-05-30T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Read a third time and concurred in as amended, Ayes 97, Noes 0",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Point of order that Assembly Substitute Amendment 2 not germane under Assembly Rule 54 (3)(f) well taken,2024-01-25T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 99, Noes 0",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-03-01T06:00:00+00:00,['enrolled'],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 3-15-2024. 2023 Wisconsin Act 178,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 175,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Received from Assembly concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 1-31-2024. 2023 Wisconsin Act 88,2024-02-01T06:00:00+00:00,['executive-signature'],WI,2023 +Received from Assembly concurred in,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-6-2024. 2023 Wisconsin Act 103,2024-03-06T06:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 4-1-2024,2024-04-01T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 4-4-2024. 2023 Wisconsin Act 269,2024-04-04T05:00:00+00:00,['executive-signature'],WI,2023 +"Read a third time and concurred in, Ayes 25, Noes 7",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read first time and referred to committee on Universities and Revenue,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Senate Amendment 1 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Published 5-11-2023. Enrolled Joint Resolution 2,2023-05-11T05:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Published 3-15-2024,2024-03-14T05:00:00+00:00,['became-law'],WI,2023 +Rules suspended,2023-10-17T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-24T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-03-23T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-01-22T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2024-01-22T06:00:00+00:00,['enrolled'],WI,2023 +Received from Senate amended and concurred in as amended (Senate Amendment 1 adopted),2023-09-14T05:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Read a third time and concurred in,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 183,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Report approved by the Governor on 5-8-2023. 2023 Wisconsin Act 6,2023-05-09T05:00:00+00:00,['executive-signature'],WI,2023 +Action ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +LRB correction (Senate Amendment 1),2023-11-13T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Representatives Cabrera, Drake and Rozar added as coauthors",2023-11-14T06:00:00+00:00,[],WI,2023 +Published 4-6-2024,2024-04-08T05:00:00+00:00,['became-law'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Presented to the Governor on 2-13-2024 by directive of the Majority Leader,2024-02-13T06:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-03-28T05:00:00+00:00,['enrolled'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +LRB correction,2023-06-09T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 169,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-11-2024,2024-03-11T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 78,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Published 3-15-2024,2024-03-14T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 3-14-2024. 2023 Wisconsin Act 113,2024-03-14T05:00:00+00:00,['executive-signature'],WI,2023 +Received from Assembly concurred in,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +"Senate Substitute Amendment 1 offered by Senators Roys, Hesselbein, Agard, Carpenter, L. Johnson, Larson, Pfaff, Smith, Spreitzer and Wirch",2024-03-12T05:00:00+00:00,[],WI,2023 +"Representatives Cabrera, Drake and Rozar added as cosponsors",2023-11-14T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +"Senate Amendment 1 rejected, Ayes 21, Noes 12",2023-06-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 1-31-2024. 2023 Wisconsin Act 89,2024-02-01T06:00:00+00:00,['executive-signature'],WI,2023 +Referred to committee on Rules,2023-10-26T05:00:00+00:00,['referral-committee'],WI,2023 +Report correctly enrolled,2023-10-19T05:00:00+00:00,['enrolled'],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Executive action taken,2024-03-11T05:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Public hearing held,2024-01-25T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-11-13T06:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Representative Ohnstad added as a cosponsor,2024-01-29T06:00:00+00:00,[],WI,2023 +Representative Shankland added as a cosponsor,2024-01-18T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2023-09-26T05:00:00+00:00,[],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2023-10-26T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly concurred in,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Representative Melotik added as a cosponsor,2024-01-23T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2023-03-22T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-09T06:00:00+00:00,[],WI,2023 +Executive action taken,2024-02-15T06:00:00+00:00,[],WI,2023 +LRB correction (Assembly Amendment 1 to Assembly Substitute Amendment 1),2023-06-28T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2024-02-27T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Available for scheduling,2023-12-14T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 6-9-2023,2023-06-09T05:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Messaged,2024-05-14T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +"Read a third time and concurred in as amended, Ayes 28, Noes 5",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-04-19T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Report vetoed by the Governor on 4-2-2024,2024-04-02T05:00:00+00:00,['executive-veto'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +LRB correction,2024-02-29T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in as amended,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended,2023-05-17T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 139,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2024-01-16T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 11",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-09-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in as amended, Ayes 22, Noes 10",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Referred to joint committee on Finance,2024-03-12T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-15T06:00:00+00:00,['withdrawal'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 129,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Assembly Amendment 1 concurred in,2024-03-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2024-03-06T06:00:00+00:00,['referral-committee'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +Executive action taken,2023-11-02T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 concurred in,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-11-13T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 4-3-2023,2023-04-03T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2024-01-19T06:00:00+00:00,['enrolled'],WI,2023 +Report of Joint Survey Committee on Tax Exemptions received,2023-06-27T05:00:00+00:00,['receipt'],WI,2023 +"Read a third time and concurred in, Ayes 21, Noes 11",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Received from Senate concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Public hearing held,2023-03-28T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +LRB correction,2023-10-18T05:00:00+00:00,[],WI,2023 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 12, Noes 4",2023-06-27T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Made a special order of business at 10:24 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-10-06T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2023-06-21T05:00:00+00:00,['reading-3'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 151,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +"Read first time and referred to committee on Shared Revenue, Elections and Consumer Protection",2023-10-10T05:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended and taken up,2024-05-14T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Published 3-15-2024,2024-03-14T05:00:00+00:00,['became-law'],WI,2023 +Representative Shankland added as a coauthor,2024-01-18T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 209,2024-03-25T05:00:00+00:00,['executive-signature'],WI,2023 +"Motion for reconsideration of the vote by which Senate Bill 52 was passed offered by Senator Feyen, Ayes 19, Noes 13",2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2023-06-07T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-14-2024. 2023 Wisconsin Act 114,2024-03-14T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a third time and passed,2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-06-14T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 242,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2023-06-22T05:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled on 3-19-2024,2024-03-19T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Representative Allen added as a cosponsor,2024-01-02T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +"Read first time and referred to committee on Mental Health, Substance Abuse Prevention, Children and Families",2023-09-20T05:00:00+00:00,['referral-committee'],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2024-03-11T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 2-23-2024 by directive of the Majority Leader,2024-02-23T06:00:00+00:00,['executive-receipt'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 96, Noes 0",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Subeck added as a cosponsor,2024-02-13T06:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2024-03-15T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-18T06:00:00+00:00,[],WI,2023 +Laid on the table,2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Presented to the Governor on 11-15-2023,2023-11-15T06:00:00+00:00,['executive-receipt'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Emerson,2024-02-22T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-08T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +"Senate Amendment 1 offered by Senators Carpenter, Wirch, Agard, Hesselbein, L. Johnson, Larson, Pfaff, Smith and Spreitzer",2024-03-12T05:00:00+00:00,[],WI,2023 +Received from Assembly,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Deposited in the office of the Secretary of State on 3-19-2024,2024-03-19T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 3-25-2024. 2023 Wisconsin Act 215,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 65,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +LRB correction,2023-09-20T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2023-11-16T06:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 155,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-08T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from calendar and take up,2023-10-17T05:00:00+00:00,['withdrawal'],WI,2023 +Senator Carpenter added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and concurred in,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and concurred in,2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Read a second time,2023-04-19T05:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled on 11-15-2023,2023-11-15T06:00:00+00:00,['enrolled'],WI,2023 +Assembly Amendment 1 adopted,2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +"Read a third time and concurred in, Ayes 97, Noes 0",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 3-15-2024,2024-03-14T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Assembly Amendment 1 concurred in,2024-03-12T05:00:00+00:00,[],WI,2023 +Deposited in the office of the Secretary of State on 3-19-2024,2024-03-19T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 32, Noes 1",2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Made a special order of business at 10:13 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Made a special order of business at 10:06 AM on 1-25-2024 pursuant to Assembly Resolution 23,2024-01-23T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-03-14T05:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +"Senate Amendment 5 to Senate Amendment 2 rejected, Ayes 19, Noes 14",2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-04-19T05:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 5-8-2023. 2023 Wisconsin Act 8,2023-05-08T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Decision of the Chair appealed,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-11-07T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 2-27-2024,2024-02-27T06:00:00+00:00,['executive-receipt'],WI,2023 +Representative O'Connor added as a cosponsor,2023-10-18T05:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Received from Senate concurred in,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2023-11-10T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 2-15-2024,2024-02-15T06:00:00+00:00,['enrolled'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-19T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 213,2024-03-25T05:00:00+00:00,['executive-signature'],WI,2023 +Representative Haywood added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +LRB correction (Assembly Amendment 1),2024-02-19T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 45,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Representative Madison added as a cosponsor,2023-06-07T05:00:00+00:00,[],WI,2023 +LRB correction,2023-11-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Rules suspended,2023-10-17T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-16T06:00:00+00:00,[],WI,2023 +Report approved by the Governor with partial veto on 2-28-2024. 2023 Wisconsin Act 97,2024-02-28T06:00:00+00:00,['executive-veto-line-item'],WI,2023 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2023-11-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-25T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Senate Organization,2024-01-19T06:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Senators Taylor and Spreitzer added as cosponsors,2023-06-14T05:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 3-1-2024,2024-03-01T06:00:00+00:00,['executive-veto'],WI,2023 +Action ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Published 4-29-2024. Enrolled Joint Resolution 16,2024-04-29T05:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-11-15T06:00:00+00:00,['enrolled'],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +LRB correction,2024-03-01T06:00:00+00:00,[],WI,2023 +"Senate Amendment 6 to Senate Amendment 2 rejected, Ayes 19, Noes 14",2023-11-14T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-09-20T05:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended,2023-06-21T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 3-23-2024,2024-03-25T05:00:00+00:00,['became-law'],WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Fiscal estimate received,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 6-9-2023,2023-06-09T05:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2023-11-13T06:00:00+00:00,['enrolled'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 56,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +"Assembly Substitute Amendment 1 laid on table, Ayes 62, Noes 35",2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +LRB correction,2023-11-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 94, Noes 2",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled,2023-10-19T05:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2023-11-15T06:00:00+00:00,['enrolled'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-21-2024 by directive of the Majority Leader,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 82,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Published 5-9-2023,2023-05-08T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2023-11-15T06:00:00+00:00,['enrolled'],WI,2023 +"Senate Amendment 1 offered by Senators Pfaff, Wirch, Hesselbein, Agard, Carpenter, L. Johnson, Larson, Smith, Spreitzer and Roys",2024-03-12T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 182,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Read first time and referred to committee on Rules,2024-02-12T06:00:00+00:00,['referral-committee'],WI,2023 +Read first time and referred to committee on Senate Organization,2023-06-14T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 247,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Representative Shankland added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled,2024-02-28T06:00:00+00:00,['enrolled'],WI,2023 +Executive action taken,2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Received from Senate concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Senators Taylor and Spreitzer added as cosponsors,2023-06-14T05:00:00+00:00,[],WI,2023 +Read a second time,2023-10-17T05:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 1 offered by Representative Katsma,2024-02-22T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 29, Noes 3",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2024-01-18T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Placed on calendar 6-28-2023 pursuant to Senate Rule 18(1),2023-06-27T05:00:00+00:00,[],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Published 3-15-2024,2024-03-14T05:00:00+00:00,['became-law'],WI,2023 +Read first time and referred to committee on Rules,2024-02-14T06:00:00+00:00,['referral-committee'],WI,2023 +"Passed, Ayes 17, Noes 15",2024-01-16T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 245,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 5-4-2023,2023-05-04T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 158,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-04-19T05:00:00+00:00,['reading-3'],WI,2023 +Report correctly enrolled,2023-11-16T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2024-02-29T06:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly concurred in,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +"Senate Amendment 2 offered by Senators Roys, Agard, Hesselbein, Smith, Larson, L. Johnson, Spreitzer, Pfaff, Wirch and Carpenter",2024-03-12T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to withdraw from calendar and take up,2023-06-07T05:00:00+00:00,['withdrawal'],WI,2023 +Received from Senate concurred in,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +"Read a third time and concurred in, Ayes 95, Noes 1",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Public hearing held,2023-10-18T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled on 2-26-2024,2024-02-26T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 2-28-2024 by directive of the Majority Leader,2024-02-28T06:00:00+00:00,['executive-receipt'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +"Passed notwithstanding the objections of the Governor, Ayes 21, Noes 10",2024-05-14T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-15-2024. 2023 Wisconsin Act 185,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +"Decision of the Chair upheld, Ayes 64, Noes 35",2024-02-20T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 84,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Report correctly enrolled,2024-02-28T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2023-11-16T06:00:00+00:00,['enrolled'],WI,2023 +Published 4-29-2024. Enrolled Joint Resolution 15,2024-04-29T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 11-16-2023. 2023 Wisconsin Act 37,2023-11-17T06:00:00+00:00,['executive-signature'],WI,2023 +Published 3-26-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Referred to calendar of 6-29-2023 pursuant to Assembly Rule 45 (1),2023-06-27T05:00:00+00:00,['referral'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 10-18-2023,2023-10-18T05:00:00+00:00,['enrolled'],WI,2023 +Read a second time,2024-01-25T06:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 186,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +"Report concurrence recommended by Joint Committee on Finance, Ayes 13, Noes 0",2024-03-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate passed notwithstanding the objections of the Governor,2024-05-14T05:00:00+00:00,['receipt'],WI,2023 +"Read a third time and concurred in, Ayes 30, Noes 2",2023-04-19T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +LRB correction (Senate Amendment 1),2024-02-28T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 2-29-2024,2024-02-29T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 8-4-2023. 2023 Wisconsin Act 26,2023-08-04T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2024-03-12T05:00:00+00:00,[],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-15T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 4-5-2024,2024-04-04T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 4-5-2024. 2023 Wisconsin Act 270,2024-04-08T05:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 1-29-2024,2024-01-29T06:00:00+00:00,['executive-receipt'],WI,2023 +Representative Subeck added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-14-2024. 2023 Wisconsin Act 112,2024-03-14T05:00:00+00:00,['executive-signature'],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-29-2023 by directive of the Majority Leader,2023-03-29T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Senate Amendment 2 rejected,2023-06-14T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 31, Noes 0",2023-03-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Senate Amendment 1 to Senate Amendment 2 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Report correctly enrolled,2023-03-23T05:00:00+00:00,['enrolled'],WI,2023 +LRB correction (Assembly Amendment 1),2024-03-21T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 152,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Read a third time and concurred in as amended,2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 1 offered by Representative Moses,2024-02-06T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2023-11-13T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 66,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Knodl,2024-01-31T06:00:00+00:00,[],WI,2023 +Published 2-1-2024,2024-02-01T06:00:00+00:00,['became-law'],WI,2023 +Action ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-01-22T06:00:00+00:00,['enrolled'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-28T05:00:00+00:00,['reading-2'],WI,2023 +Rules suspended to give bill its third reading,2023-10-17T05:00:00+00:00,[],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2023-11-10T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +"Representatives Myers, S. Johnson, Palmeri and Brooks added as cosponsors",2024-02-15T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +"Report concurrence recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 4, Noes 1",2024-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Report correctly enrolled,2023-10-19T05:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Published 2-1-2024,2024-02-01T06:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 2-20-2024. 2023 Wisconsin Act 95,2024-02-21T06:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-22T06:00:00+00:00,['enrolled'],WI,2023 +Available for scheduling,2024-02-27T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Published 5-9-2023,2023-05-09T05:00:00+00:00,['became-law'],WI,2023 +Read a third time and concurred in,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled on 3-13-2024,2024-03-13T05:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2024-01-22T06:00:00+00:00,['enrolled'],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative O'Connor added as a cosponsor,2024-01-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 6-28-2023 pursuant to Senate Rule 18(1),2023-06-27T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-03-06T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 56, Noes 36, Paired 4",2023-05-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-13T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled,2023-11-16T06:00:00+00:00,['enrolled'],WI,2023 +Referred to joint committee on Finance,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2023-06-22T05:00:00+00:00,['enrolled'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled on 2-26-2024,2024-02-26T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled on 6-9-2023,2023-06-09T05:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +"Read a third time and passed, Ayes 32, Noes 0",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Representative Subeck added as a cosponsor,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2024-03-11T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a coauthor,2024-01-05T06:00:00+00:00,[],WI,2023 +Published 3-7-2024,2024-03-06T06:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled on 10-18-2023,2023-10-18T05:00:00+00:00,['enrolled'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Assembly Amendment 1 concurred in,2024-03-12T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Report approved by the Governor on 4-5-2023. 2023 Wisconsin Act 2,2023-04-06T05:00:00+00:00,['executive-signature'],WI,2023 +Action ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-11-02T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 9-14-2023 pursuant to Senate Rule 18(1),2023-09-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 176,2024-03-25T05:00:00+00:00,['executive-signature'],WI,2023 +Read first time and referred to committee on Senate Organization,2023-06-14T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Published 3-15-2024,2024-03-14T05:00:00+00:00,['became-law'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 1 concurred in,2023-09-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 1-29-2024,2024-01-29T06:00:00+00:00,['executive-receipt'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +"Read a third time and concurred in, Ayes 23, Noes 9",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled on 10-18-2023,2023-10-18T05:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 198,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Decision of the Chair appealed,2024-01-25T06:00:00+00:00,[],WI,2023 +Read a third time and passed,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +"Decision of the Chair upheld, Ayes 92, Noes 7",2024-01-25T06:00:00+00:00,[],WI,2023 +Read first time and referred to joint committee on Finance,2024-02-26T06:00:00+00:00,[],WI,2023 +Representative Jacobson added as a coauthor,2024-01-02T06:00:00+00:00,[],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2024-02-23T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Report approved by the Governor on 3-29-2024. 2023 Wisconsin Act 264,2024-03-29T05:00:00+00:00,['executive-signature'],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2024-02-14T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Action ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled on 3-19-2024,2024-03-19T05:00:00+00:00,['enrolled'],WI,2023 +Received from Senate concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-11-2024,2024-03-11T05:00:00+00:00,['executive-receipt'],WI,2023 +Placed on calendar 5-15-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Representative Shankland added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Published 4-6-2024,2024-04-08T05:00:00+00:00,['became-law'],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 2-16-2024,2024-02-16T06:00:00+00:00,['enrolled'],WI,2023 +Read a third time and concurred in,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +"Report concurrence recommended by Committee on Universities and Revenue, Ayes 6, Noes 2",2024-03-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Received from Senate amended and concurred in as amended (Senate substitute amendment 1 adopted),2023-06-07T05:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Executive action taken,2024-02-09T06:00:00+00:00,[],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 1-31-2024. 2023 Wisconsin Act 90,2024-02-01T06:00:00+00:00,['executive-signature'],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-04-19T05:00:00+00:00,[],WI,2023 +Senator Agard added as a cosponsor,2023-11-06T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-03-21T05:00:00+00:00,['enrolled'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Report correctly enrolled,2024-03-20T05:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2024-02-28T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 3-30-2023 by directive of the Majority Leader,2023-03-30T05:00:00+00:00,['executive-receipt'],WI,2023 +Report vetoed by the Governor on 8-4-2023,2023-08-04T05:00:00+00:00,['executive-veto'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 1-31-2024. 2023 Wisconsin Act 87,2024-02-01T06:00:00+00:00,['executive-signature'],WI,2023 +Received from Assembly concurred in,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Published 3-15-2024,2024-03-14T05:00:00+00:00,['became-law'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Representative J. Anderson added as a cosponsor,2024-02-16T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 2 adopted,2024-01-16T06:00:00+00:00,['amendment-passage'],WI,2023 +Report correctly enrolled on 2-22-2024,2024-02-26T06:00:00+00:00,['enrolled'],WI,2023 +"Read a third time and concurred in as amended, Ayes 31, Noes 1",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2023-06-14T05:00:00+00:00,[],WI,2023 +Available for scheduling,2024-02-15T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Read a third time and concurred in,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report approved by the Governor on 4-3-2023. 2023 Wisconsin Act 1,2023-04-04T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2024-01-22T06:00:00+00:00,['enrolled'],WI,2023 +Published 8-5-2023,2023-08-04T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Published 3-23-2024,2024-03-25T05:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 concurred in,2024-02-13T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 32, Noes 0",2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Action ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 93, Noes 3",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +Senator Spreitzer added as a cosponsor,2023-09-14T05:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2024-01-12T06:00:00+00:00,[],WI,2023 +Received from Senate amended and concurred in as amended (Senate Amendment 1 adopted),2024-02-13T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2023-06-28T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Senate Organization,2023-06-14T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Moses added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +Representative Shankland added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and concurred in, Ayes 30, Noes 2",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Senate Amendment 3 rejected, Ayes 22, Noes 11",2023-06-14T05:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 12-6-2023,2023-12-07T06:00:00+00:00,['executive-veto'],WI,2023 +"Report concurrence recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2023-11-03T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Representative Shankland added as a cosponsor,2024-01-18T06:00:00+00:00,[],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +LRB correction,2024-02-27T06:00:00+00:00,[],WI,2023 +Senator Nass withdrawn as a coauthor,2024-02-21T06:00:00+00:00,['withdrawal'],WI,2023 +Point of order that Senate Substitute Amendment 1 was not germane well taken,2024-03-12T05:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Read first time and referred to committee on Rules,2024-02-13T06:00:00+00:00,['referral-committee'],WI,2023 +Rules suspended to withdraw from joint committee on Finance and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 44,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +"Senate Amendment 1 to Senate Substitute Amendment 2 offered by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-06-28T05:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 156,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Available for scheduling,2024-03-11T05:00:00+00:00,[],WI,2023 +Published 4-6-2023,2023-04-06T05:00:00+00:00,['became-law'],WI,2023 +Published 2-21-2024,2024-02-21T06:00:00+00:00,['became-law'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +LRB correction (Assembly Amendment 1),2023-11-16T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-18-2024,2024-03-18T05:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 67,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Ordered immediately messaged,2023-03-22T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Presented to the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 10-23-2023,2023-10-23T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-05-17T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and concurred in, Ayes 30, Noes 2",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Fiscal estimate received,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Laid on the table,2023-06-29T05:00:00+00:00,['deferral'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Placed on calendar 2-20-2024 by Committee on Rules,2024-02-15T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 6-12-2023,2023-06-12T05:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Executive action taken,2023-11-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled on 6-9-2023,2023-06-09T05:00:00+00:00,['enrolled'],WI,2023 +Public hearing held,2023-10-19T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Joint Committee on Finance, Ayes 14, Noes 0",2024-03-11T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Report correctly enrolled on 6-9-2023,2023-06-09T05:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Available for scheduling,2024-01-19T06:00:00+00:00,[],WI,2023 +Received from Assembly,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and concurred in,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled on 1-17-2024,2024-01-17T06:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Report vetoed by the Governor on 3-21-2024,2024-03-22T05:00:00+00:00,['executive-veto'],WI,2023 +Assembly Substitute Amendment 2 offered by Representatives Shankland and Billings,2024-02-22T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-10-18T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2024-03-14T05:00:00+00:00,['enrolled'],WI,2023 +Report vetoed by the Governor on 12-6-2023,2023-12-06T06:00:00+00:00,['executive-veto'],WI,2023 +LRB correction (Senate Amendment 1),2024-01-29T06:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Senator Carpenter added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Messaged,2024-05-14T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Published 2-29-2024,2024-02-28T06:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 3-6-2024. 2023 Wisconsin Act 102,2024-03-06T06:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Tranel,2023-06-14T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Published 11-17-2023,2023-11-17T06:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Received from Senate concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Senate Amendment 2 offered by Senator Feyen,2023-11-14T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +"Read a third time and concurred in as amended, Ayes 22, Noes 11",2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-10-17T05:00:00+00:00,['reading-3'],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Executive action taken,2024-02-08T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-06-14T05:00:00+00:00,[],WI,2023 +LRB correction,2023-11-15T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +"Senate Amendment 2 adopted, Ayes 19, Noes 14",2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Report approved by the Governor on 3-29-2024. 2023 Wisconsin Act 251,2024-03-29T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a second time,2023-06-07T05:00:00+00:00,['reading-2'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2023-11-20T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 3-18-2024,2024-03-18T05:00:00+00:00,['enrolled'],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2024-03-05T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2024-03-01T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Received from Assembly concurred in,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 157,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-01-18T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Rules suspended to give bill its third reading,2023-04-19T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Assembly Amendment 2 offered by Representative Subeck,2024-01-25T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 concurred in,2023-06-28T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +LRB correction (Assembly Amendment 1),2024-03-18T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Read a third time and concurred in,2023-06-21T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled on 11-15-2023,2023-11-15T06:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 5-8-2023. 2023 Wisconsin Act 7,2023-05-09T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-26-2024. 2023 Wisconsin Act 217,2024-03-27T05:00:00+00:00,['executive-signature'],WI,2023 +Received from Senate passed notwithstanding the objections of the Governor,2024-05-14T05:00:00+00:00,['receipt'],WI,2023 +Action ordered immediately messaged,2023-06-28T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 9-15-2023,2023-09-15T05:00:00+00:00,['enrolled'],WI,2023 +Assembly Substitute Amendment 1 adopted,2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +"Read a third time and concurred in, Ayes 25, Noes 7",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Available for scheduling,2024-03-11T05:00:00+00:00,[],WI,2023 +LRB correction,2024-03-01T06:00:00+00:00,[],WI,2023 +"Assembly Amendment 2 laid on table, Ayes 64, Noes 35",2024-01-25T06:00:00+00:00,['deferral'],WI,2023 +Received from Assembly concurred in,2023-11-08T06:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 85,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 46,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +LRB correction (Assembly Substitute Amendment 1),2024-02-15T06:00:00+00:00,[],WI,2023 +"Senate Substitute Amendment 1 offered by Senators Larson, Carpenter and Taylor",2023-11-14T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 64,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Report vetoed by the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-veto'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-18-2024,2024-03-18T05:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 53,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Received from Senate concurred in,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2024-01-18T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-14T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-10-19T05:00:00+00:00,['enrolled'],WI,2023 +"Report adoption of Senate Amendment 1 recommended by Joint Committee on Finance, Ayes 15, Noes 0",2023-11-08T06:00:00+00:00,['amendment-passage'],WI,2023 +Presented to the Governor on 3-11-2024 by directive of the Majority Leader,2024-03-11T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Senate concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-10-17T05:00:00+00:00,[],WI,2023 +"Report concurrence recommended by Committee on Mental Health, Substance Abuse Prevention, Children and Families, Ayes 3, Noes 2",2024-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 188,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Received from Assembly concurred in,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled on 11-15-2023,2023-11-15T06:00:00+00:00,['enrolled'],WI,2023 +Read first time and referred to committee on Universities and Revenue,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Published 5-9-2023,2023-05-09T05:00:00+00:00,['became-law'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 54,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Published 3-27-2024,2024-03-27T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 172,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Report vetoed by the Governor on 8-4-2023,2023-08-04T05:00:00+00:00,['executive-veto'],WI,2023 +Received from Senate concurred in,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-20T06:00:00+00:00,['withdrawal'],WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +"Senate Amendment 1 rejected, Ayes 22, Noes 10",2024-03-12T05:00:00+00:00,[],WI,2023 +Representative Ratcliff added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 3-25-2024. 2023 Wisconsin Act 216,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +"Withdrawn from committee on Shared Revenue, Elections and Consumer Protection and rereferred to committee on Senate Organization pursuant to Senate Rule 46(2)(c)",2024-01-22T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2023-06-07T05:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 76,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Published 3-30-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 191,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-02-09T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 136,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Read first time and referred to committee on Senate Organization,2023-06-14T05:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Read a third time and concurred in,2023-04-19T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Report correctly enrolled,2023-11-13T06:00:00+00:00,['enrolled'],WI,2023 +Recalled fron enrolling pursuant to Senate Joint Resolution 113,2024-02-13T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 137,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Assembly concurred in,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +"Assembly Substitute Amendment 2 laid on table, Ayes 61, Noes 35",2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Representatives C. Anderson and Michalski added as cosponsors,2024-02-14T06:00:00+00:00,[],WI,2023 +LRB correction (Senate Amendment 2),2023-10-19T05:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 83,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Made a special order of business at 10:15 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 71,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Published 3-7-2024,2024-03-06T06:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Representative Shankland added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-21T05:00:00+00:00,[],WI,2023 +LRB correction,2024-01-29T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Point of order that Senate Amendment 1 was not germane well taken,2024-03-12T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in as amended, Ayes 94, Noes 3",2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly concurred in,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 204,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Representatives O'Connor and Michalski added as coauthors,2024-02-14T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 12-6-2023,2023-12-06T06:00:00+00:00,['executive-veto'],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +"Senate Amendment 2 to Senate Substitute Amendment 2 offered by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-06-28T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Senate concurred in,2023-03-22T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Assembly,2023-05-18T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 6-9-2023,2023-06-09T05:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 203,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +LRB correction (Senate Substitute Amendment 1),2024-02-27T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 70,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Representative Schutt added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 2-27-2024,2024-02-27T06:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Representative Rozar added as a cosponsor,2024-02-22T06:00:00+00:00,[],WI,2023 +Assembly Amendment 1 concurred in,2023-11-14T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-28T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Report correctly enrolled on 3-14-2024,2024-03-14T05:00:00+00:00,['enrolled'],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 223,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Senate Substitute Amendment 1 concurred in,2023-06-07T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-04-19T05:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative Gustafson added as a coauthor,2023-11-07T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 51,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 159,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Action ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 59,2023-12-06T06:00:00+00:00,['executive-signature'],WI,2023 +Referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2023-09-14T05:00:00+00:00,['reading-2'],WI,2023 +Representative Gustafson added as a coauthor,2023-12-08T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 138,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-11-03T05:00:00+00:00,[],WI,2023 +LRB correction (Senate Substitute Amendment 2),2024-02-29T06:00:00+00:00,[],WI,2023 +Placed on calendar 2-15-2024 by Committee on Rules,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-11-16T06:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 1-16-2024 pursuant to Senate Rule 18(1),2024-01-12T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 10-25-2023. 2023 Wisconsin Act 35,2023-10-26T05:00:00+00:00,['executive-signature'],WI,2023 +"Decision of the Chair stands as the judgment of the Senate, Ayes 22, Noes 10",2024-03-12T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 1-18-2024,2024-01-18T06:00:00+00:00,['enrolled'],WI,2023 +LRB correction (Assembly Amendment 1),2024-03-18T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Senate concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 3-14-2024. 2023 Wisconsin Act 118,2024-03-14T05:00:00+00:00,['executive-signature'],WI,2023 +Report correctly enrolled on 1-19-2024,2024-01-19T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled on 2-15-2024,2024-02-15T06:00:00+00:00,['enrolled'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-11-16T06:00:00+00:00,['enrolled'],WI,2023 +Representative Steffen added as a coauthor,2024-02-09T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 2-26-2024 by directive of the Speaker,2024-02-26T06:00:00+00:00,['executive-receipt'],WI,2023 +Available for scheduling,2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-11-2024,2024-03-11T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Published 2-1-2024,2024-02-01T06:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Published 2-1-2024,2024-02-01T06:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +LRB correction (Senate Substitute Amendment 1),2024-02-19T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Published 4-4-2023,2023-04-04T05:00:00+00:00,['became-law'],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Read first time and referred to committee on Senate Organization,2023-11-14T06:00:00+00:00,['referral-committee'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled on 9-15-2023,2023-09-15T05:00:00+00:00,['enrolled'],WI,2023 +Senator Carpenter added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 244,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Received from Senate concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 8-4-2023,2023-08-04T05:00:00+00:00,['executive-veto'],WI,2023 +Report approved by the Governor on 4-5-2023. 2023 Wisconsin Act 3,2023-04-06T05:00:00+00:00,['executive-signature'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-26-2024. 2023 Wisconsin Act 218,2024-03-27T05:00:00+00:00,['executive-signature'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 201,2024-03-25T05:00:00+00:00,['executive-signature'],WI,2023 +Report approved by the Governor on 4-3-2024. 2023 Wisconsin Act 265,2024-04-03T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 8-4-2023,2023-08-07T05:00:00+00:00,['executive-veto'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-06-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +"Senate Amendment 4 rejected, Ayes 22, Noes 11",2023-06-14T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +LRB correction (Senate Amendment 1),2024-01-19T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Received from Senate concurred in,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 79,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Assembly Substitute Amendment 1 offered by Representative Wichgers,2024-01-25T06:00:00+00:00,[],WI,2023 +Senator Carpenter added as a cosponsor,2024-01-19T06:00:00+00:00,[],WI,2023 +Published 3-30-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +Representative Shankland added as a coauthor,2024-03-07T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-28T06:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2024-01-25T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 2-28-2024,2024-02-28T06:00:00+00:00,['executive-receipt'],WI,2023 +Senator Spreitzer added as a coauthor,2024-03-11T05:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Education,2024-02-26T06:00:00+00:00,['referral-committee'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Received from Senate concurred in,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-14T05:00:00+00:00,[],WI,2023 +Rules suspended and taken up,2024-05-14T05:00:00+00:00,[],WI,2023 +Received from Senate amended and concurred in as amended (Senate amendment 1 adopted),2024-02-20T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +"Read a third time and concurred in, Ayes 94, Noes 3",2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2024-03-01T06:00:00+00:00,['enrolled'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-15T06:00:00+00:00,['withdrawal'],WI,2023 +Representative Ratcliff added as a coauthor,2024-02-20T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 2-29-2024. 2023 Wisconsin Act 98,2024-03-01T06:00:00+00:00,['executive-signature'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Report correctly enrolled on 1-18-2024,2024-01-18T06:00:00+00:00,['enrolled'],WI,2023 +LRB correction (Senate Amendment 1),2023-10-19T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-25T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 190,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Received from Senate concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Published 12-7-2023,2023-12-06T06:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2024-01-19T06:00:00+00:00,['enrolled'],WI,2023 +"Senate Amendment 3 to Senate Substitute Amendment 2 offered by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-06-28T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 4-20-2023,2023-04-20T05:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly concurred in,2024-02-14T06:00:00+00:00,['receipt'],WI,2023 +Assembly Amendment 1 concurred in,2024-02-20T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +LRB correction (Assembly Amendment 2),2023-05-24T05:00:00+00:00,[],WI,2023 +LRB correction (Assembly Substitute Amendment 1),2024-03-15T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 160,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +LRB correction (Assembly Amendment 1),2023-03-24T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +"Senate Amendment 5 rejected, Ayes 23, Noes 10",2023-06-14T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 195,2024-03-25T05:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 9-14-2023 by committee on Senate Organization,2023-09-12T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-27-2024,2024-03-27T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled on 2-21-2024,2024-02-21T06:00:00+00:00,['enrolled'],WI,2023 +Published 4-6-2023,2023-04-06T05:00:00+00:00,['became-law'],WI,2023 +Referred to committee on Rules,2023-12-01T06:00:00+00:00,['referral-committee'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 128,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Rules suspended to withdraw from committee on Senate Organization and take up,2023-11-14T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Senator Hesselbein added as a coauthor,2024-04-10T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +LRB correction,2023-11-16T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Report approved by the Governor on 3-14-2024. 2023 Wisconsin Act 106,2024-03-14T05:00:00+00:00,['executive-signature'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +LRB correction (Assembly Amendment 1),2024-01-19T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +"Read a third time and concurred in, Ayes 92, Noes 6",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 3-15-2024,2024-03-14T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled on 1-18-2024,2024-01-18T06:00:00+00:00,['enrolled'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Published 10-26-2023,2023-10-26T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2024-03-18T05:00:00+00:00,['enrolled'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +"Read a third time and concurred in, Ayes 32, Noes 0",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Report adoption of Senate Amendment 1 to Senate Substitute Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-02-09T06:00:00+00:00,['amendment-passage'],WI,2023 +Read a third time and concurred in,2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Placed on calendar 11-7-2023 pursuant to Senate Rule 18(1),2023-11-03T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-09-14T05:00:00+00:00,['reading-3'],WI,2023 +Made a special order of business at 10:01 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +LRB correction,2024-02-20T06:00:00+00:00,[],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Senators Carpenter and Hesselbein added as cosponsors,2024-01-16T06:00:00+00:00,[],WI,2023 +Senator James added as a cosponsor,2023-12-20T06:00:00+00:00,[],WI,2023 +Action ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 193,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 208,2024-03-25T05:00:00+00:00,['executive-signature'],WI,2023 +Report approved by the Governor on 3-4-2024. 2023 Wisconsin Act 101,2024-03-04T06:00:00+00:00,['executive-signature'],WI,2023 +Received from Senate concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 25, Noes 7",2023-06-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Action ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Received from Senate concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Published 4-4-2024,2024-04-03T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 233,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2023-06-30T05:00:00+00:00,['enrolled'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Report correctly enrolled,2024-03-01T06:00:00+00:00,['enrolled'],WI,2023 +"Decision of the Chair stands as the judgment of the Senate, Ayes 22, Noes 10",2024-03-12T05:00:00+00:00,[],WI,2023 +LRB correction (Senate Substitute Amendment 1),2024-02-27T06:00:00+00:00,[],WI,2023 +"Senate Amendment 3 offered by Senators Larson, Carpenter and Taylor",2023-11-14T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-06-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 5-15-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +"Rules suspended to give bill its third reading, Ayes 25, Noes 8",2023-11-14T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-10-19T05:00:00+00:00,['enrolled'],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-13T06:00:00+00:00,[],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-11-13T06:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Report vetoed by the Governor on 8-4-2023,2023-08-04T05:00:00+00:00,['executive-veto'],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled on 2-15-2024,2024-02-15T06:00:00+00:00,['enrolled'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 212,2024-03-25T05:00:00+00:00,['executive-signature'],WI,2023 +LRB correction (Assembly Amendment 2),2023-06-15T05:00:00+00:00,[],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Available for scheduling,2024-01-22T06:00:00+00:00,[],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2024-01-22T06:00:00+00:00,['enrolled'],WI,2023 +Rules suspended,2023-06-07T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 2-19-2024,2024-02-19T06:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2024-02-28T06:00:00+00:00,['enrolled'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Representative Haywood added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Received from Senate amended and concurred in as amended (Senate amendment 1 adopted),2023-06-07T05:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Received from Assembly concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 189,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 3-14-2024. 2023 Wisconsin Act 120,2024-03-14T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 135,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Received from Assembly concurred in,2023-06-22T05:00:00+00:00,['receipt'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Rules suspended to withdraw from calendar and take up,2024-02-15T06:00:00+00:00,['withdrawal'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2024-02-23T06:00:00+00:00,['enrolled'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Available for scheduling,2024-02-08T06:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Report approved by the Governor on 8-4-2023. 2023 Wisconsin Act 32,2023-08-04T05:00:00+00:00,['executive-signature'],WI,2023 +"Report concurrence as amended recommended by Joint Committee on Finance, Ayes 14, Noes 1",2023-11-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Read a third time and concurred in,2023-10-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate concurred in,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled on 1-18-2024,2024-01-18T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2024-02-28T06:00:00+00:00,['enrolled'],WI,2023 +Rules suspended to give bill its third reading,2023-06-14T05:00:00+00:00,[],WI,2023 +Public hearing held,2024-03-06T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-14-2024,2024-03-14T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2023-04-19T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 192,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Representative Gustafson added as a coauthor,2023-12-08T06:00:00+00:00,[],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Assembly Substitute Amendment 1 offered by Representatives Shankland and Billings,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 55,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 52,2023-12-06T06:00:00+00:00,['executive-signature'],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and concurred in, Ayes 63, Noes 34",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Published 3-26-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Report vetoed by the Governor on 8-4-2023,2023-08-04T05:00:00+00:00,['executive-veto'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 232,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Report correctly enrolled on 2-26-2024,2024-02-26T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-14T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 2-23-2024 by directive of the Majority Leader,2024-02-23T06:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-25T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 63,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +"Assembly Substitute Amendment 1 laid on table, Ayes 61, Noes 35",2024-02-22T06:00:00+00:00,['deferral'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +LRB correction,2024-02-19T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Emerson added as a coauthor,2023-06-15T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 43,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Representatives Vining and Drake added as cosponsors,2023-10-17T05:00:00+00:00,[],WI,2023 +Published 3-15-2024,2024-03-14T05:00:00+00:00,['became-law'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +"Read a third time and concurred in as amended, Ayes 97, Noes 0",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Senate Amendment 2 offered by Senator LeMahieu,2024-02-16T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Executive action taken,2024-03-07T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-01-19T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Published 12-7-2023,2023-12-06T06:00:00+00:00,['became-law'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Made a special order of business at 10:03 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 1-23-2024 pursuant to Senate Rule 18(1),2024-01-22T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-26T05:00:00+00:00,['referral-committee'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Representative Shankland added as a cosponsor,2024-03-07T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 202,2024-03-25T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-06-22T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Failed to pass partial veto notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Received from Senate concurred in,2023-04-19T05:00:00+00:00,['receipt'],WI,2023 +LRB correction (Assembly Substitute Amendment 1),2024-02-21T06:00:00+00:00,[],WI,2023 +Point of order that Senate Amendment 2 was not germane well taken,2024-03-12T05:00:00+00:00,[],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a third time and concurred in,2023-06-07T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a third time,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Report vetoed by the Governor on 12-6-2023,2023-12-06T06:00:00+00:00,['executive-veto'],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Placed on calendar 2-13-2024 pursuant to Senate Rule 18(1),2024-02-09T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 134,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Senate Amendment 1 concurred in,2023-06-07T05:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Available for scheduling,2023-11-08T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2024-02-15T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Presented to the Governor on 3-11-2024,2024-03-11T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 61,2023-12-06T06:00:00+00:00,['executive-signature'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 238,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Rules suspended and taken up,2024-05-14T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 8-5-2023,2023-08-04T05:00:00+00:00,['became-law'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +LRB correction,2024-02-23T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Representative O'Connor added as a cosponsor,2023-10-18T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Report correctly enrolled on 3-14-2024,2024-03-14T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 224,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Report vetoed by the Governor on 12-6-2023,2023-12-06T06:00:00+00:00,['executive-veto'],WI,2023 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-02-09T06:00:00+00:00,['amendment-passage'],WI,2023 +Report approved by the Governor on 3-29-2024. 2023 Wisconsin Act 254,2024-03-29T05:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +LRB correction (Assembly Amendment 1),2024-03-15T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2023-10-19T05:00:00+00:00,['enrolled'],WI,2023 +LRB correction (Assembly Amendment 1),2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Read first time and referred to committee on Rules,2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Read a second time,2024-02-15T06:00:00+00:00,['reading-2'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 166,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +LRB correction,2024-01-18T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-28T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 97, Noes 0",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +LRB correction (Assembly Substitute Amendment 1),2023-10-19T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +"Senate Amendment 4 to Senate Substitute Amendment 2 offered by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-06-28T05:00:00+00:00,[],WI,2023 +Published 3-1-2024,2024-03-01T06:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +"Passed notwithstanding the objections of the Governor, Ayes 22, Noes 9",2024-05-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 2-27-2024 by directive of the Speaker,2024-02-27T06:00:00+00:00,['executive-receipt'],WI,2023 +Representative Haywood added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Published 3-5-2024,2024-03-04T06:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled on 3-24-2023,2023-03-24T05:00:00+00:00,['enrolled'],WI,2023 +"Senate Amendment 6 rejected, Ayes 22, Noes 11",2023-06-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Report vetoed by the Governor on 3-21-2024,2024-03-22T05:00:00+00:00,['executive-veto'],WI,2023 +LRB correction,2023-05-24T05:00:00+00:00,[],WI,2023 +Senate Amendment 1 concurred in,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-25T05:00:00+00:00,['became-law'],WI,2023 +Read a second time,2024-01-16T06:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 62,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 154,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Presented to the Governor on 5-4-2023,2023-05-04T05:00:00+00:00,['executive-receipt'],WI,2023 +"Passed notwithstanding the objections of the Governor, Ayes 22, Noes 11",2023-09-14T05:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled on 2-19-2024,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Report vetoed by the Governor on 8-4-2023,2023-08-04T05:00:00+00:00,['executive-veto'],WI,2023 +LRB correction,2024-02-21T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +LRB correction,2023-11-16T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-09-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Representative Gustafson added as a coauthor,2023-12-08T06:00:00+00:00,[],WI,2023 +"Read a third time and passed, Ayes 30, Noes 2",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled on 2-16-2024,2024-02-16T06:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 to Senate Amendment 1 offered by Representative August,2024-02-22T06:00:00+00:00,[],WI,2023 +Senator Spreitzer added as a cosponsor,2023-11-06T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +LRB correction (Assembly Substitute Amendment 1),2024-03-15T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 6-9-2023,2023-06-09T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Published 3-15-2024,2024-03-14T05:00:00+00:00,['became-law'],WI,2023 +Action ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-11-2024,2024-03-11T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-23-2024,2024-03-25T05:00:00+00:00,['became-law'],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 72,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Printed engrossed by the direction of the Senate Chief Clerk-5464,2023-12-20T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-11-16T06:00:00+00:00,['enrolled'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Assembly Amendment 1 concurred in, Ayes 31, Noes 1",2024-03-12T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 2-29-2024. 2023 Wisconsin Act 99,2024-02-29T06:00:00+00:00,['executive-signature'],WI,2023 +"Referred to committee on Senate Organization, Ayes 22, Noes 10",2024-02-20T06:00:00+00:00,['referral-committee'],WI,2023 +Decision of the Chair appealed,2024-01-25T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +Action ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +"Decision of the Chair upheld, Ayes 92, Noes 7",2024-01-25T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-01T06:00:00+00:00,['receipt'],WI,2023 +Senator Hesselbein added as a cosponsor,2024-04-10T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2024-03-21T05:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-14-2024. 2023 Wisconsin Act 110,2024-03-14T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 4-3-2023,2023-04-03T05:00:00+00:00,['executive-receipt'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Messaged,2024-05-14T05:00:00+00:00,[],WI,2023 +"Senate Amendment 7 rejected, Ayes 22, Noes 11",2023-06-14T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Senator Spreitzer added as a cosponsor,2024-03-11T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-05-31T05:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 221,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Assembly Amendment 1 to Senate Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +LRB correction (Assembly Amendment 1),2024-01-18T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled on 3-14-2024,2024-03-14T05:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 187,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 147,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Report correctly enrolled,2023-11-16T06:00:00+00:00,['enrolled'],WI,2023 +"Report concurrence as amended recommended by Committee on Shared Revenue, Elections and Consumer Protection, Ayes 5, Noes 0",2024-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Senate concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Representative Gustafson added as a coauthor,2023-12-08T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 2-21-2024,2024-02-21T06:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Published 3-23-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +Made a special order of business at 10:06 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Action ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-20T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-10-26T05:00:00+00:00,['referral-committee'],WI,2023 +Report vetoed by the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-veto'],WI,2023 +Ordered to a third reading,2024-01-16T06:00:00+00:00,['reading-3'],WI,2023 +Read a second time,2023-11-07T06:00:00+00:00,['reading-2'],WI,2023 +Report vetoed by the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-veto'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 179,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Report vetoed by the Governor on 3-1-2024,2024-03-01T06:00:00+00:00,['executive-veto'],WI,2023 +Received from Senate concurred in,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 177,2024-03-25T05:00:00+00:00,['executive-signature'],WI,2023 +"Read a third time and concurred in, Ayes 29, Noes 4",2023-09-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Assembly Amendment 1 adopted,2024-02-15T06:00:00+00:00,['amendment-passage'],WI,2023 +Report correctly enrolled on 10-19-2023,2023-10-19T05:00:00+00:00,['enrolled'],WI,2023 +LRB correction (Senate Amendment 3),2024-02-27T06:00:00+00:00,[],WI,2023 +Senators Taylor and Spreitzer added as cosponsors,2023-06-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 2-15-2024,2024-02-15T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and concurred in,2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +"Senate Amendment 5 to Senate Substitute Amendment 2 offered by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-06-28T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 5-10-2023. 2023 Wisconsin Act 9,2023-05-11T05:00:00+00:00,['executive-signature'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 231,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +"Refused to refer to committee on Universities and Revenue, Ayes 13, Noes 20",2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 200,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +LRB correction (Assembly Amendment 1),2024-02-23T06:00:00+00:00,[],WI,2023 +Representative Haywood added as a coauthor,2023-06-14T05:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-06-07T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Received from Assembly concurred in,2024-02-23T06:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 4-4-2024,2024-04-04T05:00:00+00:00,['executive-receipt'],WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report approved by the Governor on 2-21-2024. 2023 Wisconsin Act 96,2024-02-21T06:00:00+00:00,['executive-signature'],WI,2023 +Report approved by the Governor with partial veto on 2-29-2024. 2023 Wisconsin Act 100,2024-02-29T06:00:00+00:00,['executive-veto-line-item'],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Published 3-23-2024,2024-03-25T05:00:00+00:00,['became-law'],WI,2023 +Read a third time and concurred in,2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 8-4-2023. 2023 Wisconsin Act 28,2023-08-07T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Representative Ratcliff added as a cosponsor,2023-06-28T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +"Passed notwithstanding the objections of the Governor, Ayes 22, Noes 9",2024-05-14T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 57,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 243,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 12-7-2023,2023-12-06T06:00:00+00:00,['became-law'],WI,2023 +Representative Subeck added as a cosponsor,2024-03-14T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-10-19T05:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 11-14-2023 pursuant to Senate Rule 18(1),2023-11-13T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Senate concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 1-17-2024,2024-01-17T06:00:00+00:00,['enrolled'],WI,2023 +Read a third time and concurred in as amended,2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Report vetoed by the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-veto'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 74,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Representative Subeck added as a coauthor,2023-06-15T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Report correctly enrolled on 4-20-2023,2023-04-20T05:00:00+00:00,['enrolled'],WI,2023 +Representatives Jacobson and Ratcliff withdrawn as cosponsors,2024-02-21T06:00:00+00:00,[],WI,2023 +Action ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a second time,2024-02-13T06:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 165,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +"Decision of the Chair stands as the judgment of the Senate, Ayes 22, Noes 10",2024-03-12T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-20-2024. 2023 Wisconsin Act 122,2024-03-20T05:00:00+00:00,['executive-signature'],WI,2023 +Read a second time,2024-01-23T06:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled on 2-21-2024,2024-02-21T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-01-18T06:00:00+00:00,['referral-committee'],WI,2023 +"Report concurrence recommended by Committee on Universities and Revenue, Ayes 6, Noes 2",2024-03-08T06:00:00+00:00,['committee-passage-favorable'],WI,2023 +"Senate Substitute Amendment 1 rejected, Ayes 30, Noes 3",2023-11-14T06:00:00+00:00,[],WI,2023 +Messaged,2024-05-14T05:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Published 8-5-2023,2023-08-07T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled on 1-17-2024,2024-01-17T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 5-4-2023,2023-05-04T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Available for scheduling,2024-03-08T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +LRB correction,2023-11-13T06:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +"Read a third time and concurred in, Ayes 90, Noes 7",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2024-02-22T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Ordered immediately messaged,2023-06-07T05:00:00+00:00,[],WI,2023 +"Passed, Ayes 21, Noes 11",2023-11-14T06:00:00+00:00,[],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Report correctly enrolled,2024-02-23T06:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Received from Assembly concurred in,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Ordered to a third reading,2024-02-13T06:00:00+00:00,['reading-3'],WI,2023 +Published 3-21-2024,2024-03-20T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 234,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +LRB correction,2023-06-12T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 239,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +LRB correction (Assembly Amendment 2),2023-06-16T05:00:00+00:00,[],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 concurred in,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 141,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Report approved by the Governor on 3-14-2024. 2023 Wisconsin Act 108,2024-03-14T05:00:00+00:00,['executive-signature'],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled on 1-17-2024,2024-01-17T06:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-28T06:00:00+00:00,['enrolled'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Published 3-1-2024,2024-02-29T06:00:00+00:00,['became-law'],WI,2023 +Published 2-22-2024,2024-02-21T06:00:00+00:00,['became-law'],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-14T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 2-23-2024,2024-02-23T06:00:00+00:00,['enrolled'],WI,2023 +Senate Amendment 1 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 132,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +"Read a third time and concurred in, Ayes 96, Noes 2",2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Representative Vining added as a cosponsor,2024-04-05T05:00:00+00:00,[],WI,2023 +Senate Substitute Amendment 1 offered by Senator LeMahieu,2024-01-23T06:00:00+00:00,[],WI,2023 +LRB correction (Senate Amendment 3),2024-01-29T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 240,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Read a third time and passed,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered to a third reading,2024-02-15T06:00:00+00:00,['reading-3'],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 4-6-2023. 2023 Wisconsin Act 4,2023-04-06T05:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +LRB correction (Assembly Substitute Amendment 1),2023-06-29T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 153,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +"Senate Amendment 6 to Senate Substitute Amendment 2 offered by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-06-28T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Presented to the Governor on 2-27-2024,2024-02-27T06:00:00+00:00,['executive-receipt'],WI,2023 +"Senate Amendment 8 rejected, Ayes 22, Noes 11",2023-06-14T05:00:00+00:00,[],WI,2023 +Rules suspended and taken up,2024-05-14T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate passed notwithstanding the objections of the Governor,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 207,2024-03-25T05:00:00+00:00,['executive-signature'],WI,2023 +Published 5-11-2023,2023-05-11T05:00:00+00:00,['became-law'],WI,2023 +Received from Assembly concurred in,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 10-23-2023,2023-10-23T05:00:00+00:00,['executive-receipt'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Published 3-15-2024,2024-03-14T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 77,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-05-31T05:00:00+00:00,['receipt'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Report approved by the Governor on 8-4-2023. 2023 Wisconsin Act 31,2023-08-04T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended to give bill its third reading,2023-11-14T06:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 125,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 236,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Available for scheduling,2024-02-09T06:00:00+00:00,[],WI,2023 +"Senate Amendment 1 concurred in as amended, Ayes 61, Noes 35",2024-02-22T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 81,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended and taken up,2024-05-14T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 237,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Published 3-23-2024,2024-03-25T05:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +LRB correction,2024-03-04T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-16T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 196,2024-03-25T05:00:00+00:00,['executive-signature'],WI,2023 +Read a second time,2024-03-12T05:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered to a third reading,2023-11-07T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2024-02-22T06:00:00+00:00,['enrolled'],WI,2023 +Received from Senate passed notwithstanding the objections of the Governor,2024-05-14T05:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +LRB correction (Assembly Substitute Amendment 1),2024-02-19T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +LRB correction (Assembly Amendment 1),2024-03-18T05:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Assembly Amendment 3 adopted,2024-01-25T06:00:00+00:00,['amendment-passage'],WI,2023 +Fiscal estimate received,2024-03-13T05:00:00+00:00,['receipt'],WI,2023 +LRB correction,2024-03-18T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-01-25T06:00:00+00:00,['reading-3'],WI,2023 +Report correctly enrolled on 2-19-2024,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +"Move to call the question, Ayes 22, Noes 9",2024-05-14T05:00:00+00:00,[],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Read first time and referred to committee on Rules,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2023-11-07T06:00:00+00:00,[],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Report correctly enrolled on 6-29-2023,2023-06-29T05:00:00+00:00,['enrolled'],WI,2023 +"Senate Amendment 7 to Senate Substitute Amendment 2 offered by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-06-28T05:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Published 3-23-2024,2024-03-25T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 206,2024-03-25T05:00:00+00:00,['executive-signature'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 80,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 150,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 211,2024-03-25T05:00:00+00:00,['executive-signature'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +"Read a third time and concurred in, Ayes 32, Noes 0",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +"Passed notwithstanding the objections of the Governor, Ayes 22, Noes 9",2024-05-14T05:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2024-01-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Representative Nedweski added as a coauthor,2024-03-20T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2023-11-02T05:00:00+00:00,['referral-committee'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +"Read a third time and concurred in, Ayes 31, Noes 2",2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-03-12T05:00:00+00:00,['reading-3'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Fiscal estimate received,2024-04-10T05:00:00+00:00,['receipt'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +"Senate Amendment 9 rejected, Ayes 22, Noes 11",2023-06-14T05:00:00+00:00,[],WI,2023 +Published 8-5-2023,2023-08-04T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 10-25-2023. 2023 Wisconsin Act 36,2023-10-26T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Published 4-7-2023,2023-04-06T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Printed engrossed by the direction of the Senate Chief Clerk-3255,2023-06-12T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 5-15-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-02-15T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate concurred in,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 3-4-2024,2024-03-04T06:00:00+00:00,['enrolled'],WI,2023 +Report vetoed by the Governor on 3-1-2024,2024-03-01T06:00:00+00:00,['executive-veto'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-25T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +LRB correction,2024-01-29T06:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-18-2024,2024-03-18T05:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 5-8-2023. 2023 Wisconsin Act 5,2023-05-08T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Representative Shankland added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Representative O'Connor added as a cosponsor,2023-10-18T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-06-07T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Read a third time and concurred in,2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report approved by the Governor on 8-4-2023. 2023 Wisconsin Act 30,2023-08-07T05:00:00+00:00,['executive-signature'],WI,2023 +Report approved by the Governor on 4-9-2024. 2023 Wisconsin Act 272,2024-04-09T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended to give bill its third reading,2024-02-13T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 62, Noes 35",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate passed notwithstanding the objections of the Governor,2024-05-14T05:00:00+00:00,['receipt'],WI,2023 +Action ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Senator Cowles withdrawn as a coauthor,2023-11-14T06:00:00+00:00,['withdrawal'],WI,2023 +Received from Assembly concurred in,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a coauthor,2023-06-15T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled on 6-16-2023,2023-06-16T05:00:00+00:00,['enrolled'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and concurred in,2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Substitute Amendment 1 adopted",2023-06-14T05:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Presented to the Governor on 2-23-2024 by directive of the Majority Leader,2024-02-23T06:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Senate Amendment 2 adopted,2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +"Read a third time and concurred in, Ayes 30, Noes 2",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Senate Amendment 2 adopted,2024-02-20T06:00:00+00:00,['amendment-passage'],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 75,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +LRB correction,2024-01-17T06:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Published 3-15-2024,2024-03-14T05:00:00+00:00,['became-law'],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +Senate Amendment 2 offered by Senator Nass,2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled on 6-12-2023,2023-06-12T05:00:00+00:00,['enrolled'],WI,2023 +"Senate Substitute Amendment 1 adopted, Ayes 18, Noes 13",2024-01-23T06:00:00+00:00,['amendment-passage'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 164,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Ordered to a third reading,2024-01-23T06:00:00+00:00,['reading-3'],WI,2023 +"Taken off the Assembly message, pursuant to Senate Rule 18 (1b)",2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Shankland added as a cosponsor,2024-02-23T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-06-08T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Senators Taylor and Spreitzer added as cosponsors,2023-06-14T05:00:00+00:00,[],WI,2023 +"Senate Amendment 3 rejected, Ayes 22, Noes 10",2023-11-14T06:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 2-28-2024,2024-02-28T06:00:00+00:00,['executive-veto'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 230,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Report correctly enrolled on 3-19-2024,2024-03-19T05:00:00+00:00,['enrolled'],WI,2023 +Rules suspended to give bill its third reading,2023-06-14T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-10-19T05:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 214,2024-03-25T05:00:00+00:00,['executive-signature'],WI,2023 +"Read a third time and concurred in, Ayes 23, Noes 9",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Read a third time and concurred in, Ayes 22, Noes 10",2024-02-13T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Failed to pass partial veto notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Published 4-10-2024,2024-04-09T05:00:00+00:00,['became-law'],WI,2023 +LRB correction,2024-01-30T06:00:00+00:00,[],WI,2023 +Representative C. Anderson withdrawn as a cosponsor,2023-11-14T06:00:00+00:00,['withdrawal'],WI,2023 +Senate Substitute Amendment 1 offered by Senator Feyen,2023-11-14T06:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 32, Noes 0",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Placed on calendar 5-15-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 4-1-2024,2024-04-01T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 5-9-2023,2023-05-08T05:00:00+00:00,['became-law'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +"Assembly Amendment 1 concurred in, Ayes 27, Noes 5",2024-03-12T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 1-29-2024,2024-01-29T06:00:00+00:00,['executive-receipt'],WI,2023 +Published 8-5-2023,2023-08-07T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled on 6-16-2023,2023-06-16T05:00:00+00:00,['enrolled'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 2-21-2024,2024-02-21T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 6-16-2023 by directive of the Speaker,2023-06-16T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 219,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Senator Hesselbein added as a cosponsor,2024-04-10T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 29, Noes 2",2023-11-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 170,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Read first time and referred to joint committee on Finance,2023-06-12T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 229,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-01-16T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 205,2024-03-25T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-23-2024,2024-03-25T05:00:00+00:00,['became-law'],WI,2023 +Published 3-23-2024,2024-03-25T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 144,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Report correctly enrolled on 11-8-2023,2023-11-08T06:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled on 9-15-2023,2023-09-15T05:00:00+00:00,['enrolled'],WI,2023 +Rules suspended to give bill its third reading,2023-06-14T05:00:00+00:00,[],WI,2023 +Made a special order of business at 10:33 AM on 2-22-2024 pursuant to Assembly Resolution 28,2024-02-20T06:00:00+00:00,[],WI,2023 +Messaged,2024-05-14T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-03-12T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in as amended, Ayes 97, Noes 0",2024-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 123,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +"Passed notwithstanding the objections of the Governor, Ayes 21, Noes 10",2024-05-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 210,2024-03-26T05:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 142,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +"Senate Amendment 8 to Senate Substitute Amendment 2 offered by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-06-28T05:00:00+00:00,[],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 to Senate Amendment 1 adopted",2024-02-22T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Report correctly enrolled on 1-17-2024,2024-01-17T06:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 145,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Published 10-26-2023,2023-10-26T05:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 7-13-2023 by directive of the Speaker,2023-07-13T05:00:00+00:00,['executive-receipt'],WI,2023 +LRB correction,2024-03-18T05:00:00+00:00,[],WI,2023 +Rules suspended,2024-01-25T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-13T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-03-18T05:00:00+00:00,['enrolled'],WI,2023 +"Read a third time and passed, Ayes 53, Noes 46",2024-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Fiscal estimate received,2024-03-13T05:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 131,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-23-2024,2024-03-26T05:00:00+00:00,['became-law'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2023-06-14T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-29-2024. 2023 Wisconsin Act 248,2024-03-29T05:00:00+00:00,['executive-signature'],WI,2023 +Received from Senate concurred in,2024-01-16T06:00:00+00:00,['receipt'],WI,2023 +Received from Senate passed notwithstanding the objections of the Governor,2024-05-14T05:00:00+00:00,['receipt'],WI,2023 +Representative Subeck added as a cosponsor,2024-02-21T06:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-25T05:00:00+00:00,['became-law'],WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate concurred in,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +"Read a third time and concurred in, Ayes 26, Noes 6",2024-03-12T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2024-02-15T06:00:00+00:00,[],WI,2023 +Messaged,2024-05-14T05:00:00+00:00,[],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 124,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +LRB correction (Assembly Substitute Amendment 1),2024-03-15T05:00:00+00:00,[],WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2023-11-07T06:00:00+00:00,[],WI,2023 +Read a third time and concurred in,2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 227,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Report approved by the Governor on 7-19-2023. 2023 Wisconsin Act 20,2023-07-20T05:00:00+00:00,['executive-signature'],WI,2023 +Executive action taken,2023-06-13T05:00:00+00:00,[],WI,2023 +"Senate Amendment 9 to Senate Substitute Amendment 2 offered by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-06-28T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-18-2024,2024-03-18T05:00:00+00:00,['enrolled'],WI,2023 +Senator Smith added as a cosponsor,2024-04-12T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 4-1-2024,2024-04-01T05:00:00+00:00,['executive-receipt'],WI,2023 +Fiscal estimate received,2024-02-16T06:00:00+00:00,['receipt'],WI,2023 +Presented to the Governor on 10-19-2023 by directive of the Majority Leader,2023-10-19T05:00:00+00:00,['executive-receipt'],WI,2023 +LRB correction (Senate Amendment 1),2024-02-27T06:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 8-4-2023,2023-08-04T05:00:00+00:00,['executive-veto'],WI,2023 +Report correctly enrolled,2024-02-29T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 8-2-2023,2023-08-02T05:00:00+00:00,['executive-receipt'],WI,2023 +Assembly Substitute Amendment 1 concurred in,2023-06-14T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 4-4-2024. 2023 Wisconsin Act 266,2024-04-05T05:00:00+00:00,['executive-signature'],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Read a third time and concurred in,2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Presented to the Governor on 6-16-2023 by directive of the Speaker,2023-06-16T05:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Rules suspended to give bill its third reading,2024-01-23T06:00:00+00:00,[],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Read a third time and concurred in,2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Action ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 1-31-2024. 2023 Wisconsin Act 91,2024-01-31T06:00:00+00:00,['executive-signature'],WI,2023 +Received from Senate concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Rules suspended to give bill its third reading,2024-02-20T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 6-22-2023. 2023 Wisconsin Act 16,2023-06-23T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2024-02-13T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-01-30T06:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-25T05:00:00+00:00,['became-law'],WI,2023 +Received from Assembly concurred in,2024-02-15T06:00:00+00:00,['receipt'],WI,2023 +LRB correction (Senate Amendment 1),2024-03-14T05:00:00+00:00,[],WI,2023 +Received from Senate,2023-11-14T06:00:00+00:00,['receipt'],WI,2023 +LRB correction (Senate Substitute Amendment 1),2024-02-22T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 8-4-2023. 2023 Wisconsin Act 27,2023-08-07T05:00:00+00:00,['executive-signature'],WI,2023 +Report correctly enrolled,2024-02-19T06:00:00+00:00,['enrolled'],WI,2023 +Rules suspended and taken up,2024-05-14T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 10-25-2023. 2023 Wisconsin Act 34,2023-10-26T05:00:00+00:00,['executive-signature'],WI,2023 +Received from Senate concurred in,2024-02-13T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-03-13T05:00:00+00:00,['referral-committee'],WI,2023 +Published 4-5-2024,2024-04-05T05:00:00+00:00,['became-law'],WI,2023 +Action ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +"Senate Substitute Amendment 1 adopted, Ayes 25, Noes 8",2023-11-14T06:00:00+00:00,['amendment-passage'],WI,2023 +Presented to the Governor on 4-4-2024,2024-04-04T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 6-23-2023,2023-06-23T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2024-03-01T06:00:00+00:00,['enrolled'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2023-06-20T05:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 3-22-2024. 2023 Wisconsin Act 194,2024-03-25T05:00:00+00:00,['executive-signature'],WI,2023 +Senator Hesselbein added as a cosponsor,2024-04-10T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Published 2-1-2024,2024-01-31T06:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled on 2-15-2024,2024-02-15T06:00:00+00:00,['enrolled'],WI,2023 +Senators Taylor and Spreitzer added as cosponsors,2023-06-14T05:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +"Read a third time and concurred in as amended, Ayes 17, Noes 14",2024-01-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Rules suspended to give bill its third reading, Ayes 25, Noes 7",2023-11-14T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Received from Senate concurred in,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Read a third time and passed,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report approved by the Governor on 4-4-2024. 2023 Wisconsin Act 267,2024-04-04T05:00:00+00:00,['executive-signature'],WI,2023 +Fiscal estimate received,2024-02-16T06:00:00+00:00,['receipt'],WI,2023 +Published 7-20-2023,2023-07-20T05:00:00+00:00,['became-law'],WI,2023 +Read a second time,2024-02-22T06:00:00+00:00,['reading-2'],WI,2023 +Report correctly enrolled on 1-18-2024,2024-01-18T06:00:00+00:00,['enrolled'],WI,2023 +Published 3-30-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +Received from Senate passed notwithstanding the objections of the Governor,2024-05-14T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +"Assembly Amendment 1 to Senate Amendment 1 concurred in, Ayes 22, Noes 10",2024-03-12T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 60,2023-12-06T06:00:00+00:00,['executive-signature'],WI,2023 +"Report concurrence, with emergency statement attached, pursuant to s. 16.47 (2), Wisconsin Statutes, recommended by Joint Committee on Finance, Ayes 10, Noes 4",2023-06-13T05:00:00+00:00,['committee-passage-favorable'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 58,2023-12-06T06:00:00+00:00,['executive-signature'],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Representative Subeck added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled on 11-15-2023,2023-11-15T06:00:00+00:00,['enrolled'],WI,2023 +Received from Senate concurred in,2023-11-07T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Placed on calendar 5-15-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +"Read a third time and passed, Ayes 24, Noes 9",2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +"Senate Amendment 10 to Senate Substitute Amendment 2 offered by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-06-28T05:00:00+00:00,[],WI,2023 +Failed to pass pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['failure'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 126,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2024-01-25T06:00:00+00:00,[],WI,2023 +Received from Assembly,2024-01-25T06:00:00+00:00,['receipt'],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Published 12-7-2023,2023-12-06T06:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +LRB correction,2024-01-18T06:00:00+00:00,[],WI,2023 +Placed on calendar 5-15-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Representative Emerson added as a cosponsor,2024-02-14T06:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Available for scheduling,2023-06-13T05:00:00+00:00,[],WI,2023 +Published 12-7-2023,2023-12-06T06:00:00+00:00,['became-law'],WI,2023 +Action ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +"Senate Amendment 11 to Senate Substitute Amendment 2 offered by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-06-28T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 11-8-2023,2023-11-08T06:00:00+00:00,['enrolled'],WI,2023 +Assembly Amendment 1 offered by Representative Born,2024-02-22T06:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Published 4-5-2024,2024-04-04T05:00:00+00:00,['became-law'],WI,2023 +Fiscal estimate received,2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +"Read a third time and concurred in as amended, Ayes 19, Noes 14",2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report correctly enrolled on 2-16-2024,2024-02-16T06:00:00+00:00,['enrolled'],WI,2023 +Received from Assembly concurred in,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 3-19-2024,2024-03-19T05:00:00+00:00,['enrolled'],WI,2023 +LRB correction,2024-03-15T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Representative Kitchens added as a coauthor,2023-06-15T05:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Read,2023-11-14T06:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +LRB correction,2024-03-14T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-06-15T05:00:00+00:00,['enrolled'],WI,2023 +Report vetoed by the Governor on 4-4-2024,2024-04-04T05:00:00+00:00,['executive-veto'],WI,2023 +Presented to the Governor on 3-11-2024,2024-03-11T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 8-5-2023,2023-08-07T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2024-02-22T06:00:00+00:00,['enrolled'],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Move to call the question,2024-05-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 4-4-2024,2024-04-04T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 3-29-2024. 2023 Wisconsin Act 253,2024-03-29T05:00:00+00:00,['executive-signature'],WI,2023 +Report approved by the Governor on 6-22-2023. 2023 Wisconsin Act 17,2023-06-23T05:00:00+00:00,['executive-signature'],WI,2023 +Ordered immediately messaged,2024-01-23T06:00:00+00:00,[],WI,2023 +Published 10-26-2023,2023-10-26T05:00:00+00:00,['became-law'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +LRB correction (Assembly Amendment 1),2024-02-15T06:00:00+00:00,[],WI,2023 +Published 3-23-2024,2024-03-25T05:00:00+00:00,['became-law'],WI,2023 +Report vetoed by the Governor on 4-9-2024,2024-04-09T05:00:00+00:00,['executive-veto'],WI,2023 +LRB correction (Assembly Amendment 2),2024-02-15T06:00:00+00:00,[],WI,2023 +Published 3-30-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +Presented to the Governor on 6-16-2023 by directive of the Majority Leader,2023-06-16T05:00:00+00:00,['executive-receipt'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Published 6-23-2023,2023-06-23T05:00:00+00:00,['became-law'],WI,2023 +"Ordered immediately messaged, Ayes 26, Noes 7",2023-11-14T06:00:00+00:00,[],WI,2023 +"Rules suspended to give bill its third reading, Ayes 26, Noes 7",2023-11-14T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 140,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Report correctly enrolled on 6-15-2023,2023-06-15T05:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Representative Andraca withdrawn as a cosponsor,2024-02-22T06:00:00+00:00,['withdrawal'],WI,2023 +Received from Senate concurred in,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate amended and concurred in as amended (Senate Substitute Amendment 1 adopted),2024-01-24T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +"Passed notwithstanding the objections of the Governor, Ayes 22, Noes 9",2024-05-14T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-03-14T05:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Received from Senate,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 3-14-2024. 2023 Wisconsin Act 119,2024-03-14T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-11-14T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 148,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 42,2023-12-06T06:00:00+00:00,['executive-signature'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Placed on the foot of the 11th order of business on the calendar of 6-28-2023,2023-06-28T05:00:00+00:00,[],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2024-02-15T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Report correctly enrolled on 3-15-2024,2024-03-15T05:00:00+00:00,['enrolled'],WI,2023 +Received from Senate concurred in,2024-03-12T05:00:00+00:00,['receipt'],WI,2023 +Received from Senate,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +LRB correction (Senate Amendment 1),2024-02-27T06:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2023-06-13T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 adopted,2024-02-22T06:00:00+00:00,['amendment-passage'],WI,2023 +Representative Subeck added as a coauthor,2023-06-15T05:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 235,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Senator Hesselbein added as a cosponsor,2024-04-10T05:00:00+00:00,[],WI,2023 +Senator Wanggaard added as a cosponsor,2024-02-01T06:00:00+00:00,[],WI,2023 +"Read first time and referred to committee on Licensing, Constitution and Federalism",2024-02-08T06:00:00+00:00,['referral-committee'],WI,2023 +Ordered to a third reading,2024-02-22T06:00:00+00:00,['reading-3'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +"Made a special order of business at 12:01 p.m. on 6-14-2023 by the committee on Senate Organization, Ayes 4, Noes 1",2023-06-13T05:00:00+00:00,[],WI,2023 +Placed on calendar 2-20-2024 pursuant to Senate Rule 18(1),2024-02-19T06:00:00+00:00,[],WI,2023 +Published 12-7-2023,2023-12-06T06:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 86,2023-12-06T06:00:00+00:00,['executive-signature'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Report correctly enrolled on 6-16-2023,2023-06-16T05:00:00+00:00,['enrolled'],WI,2023 +Report correctly enrolled on 3-19-2024,2024-03-19T05:00:00+00:00,['enrolled'],WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 220,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Read a second time,2023-06-28T05:00:00+00:00,['reading-2'],WI,2023 +Read,2023-06-14T05:00:00+00:00,[],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Read first time and referred to committee on Government Operations,2024-02-19T06:00:00+00:00,['referral-committee'],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 241,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-15-2024 by directive of the Majority Leader,2024-03-15T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Received from Senate amended and concurred in as amended (Senate Amendment 1 and Senate Amendment 2 adopted),2023-11-14T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Rules suspended and taken up,2024-05-14T05:00:00+00:00,[],WI,2023 +"Senate Substitute Amendment 1 concurred in, Ayes 63, Noes 35",2024-01-24T06:00:00+00:00,[],WI,2023 +Read,2024-02-20T06:00:00+00:00,[],WI,2023 +Published 3-15-2024,2024-03-14T05:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +Read a second time,2023-11-14T06:00:00+00:00,['reading-2'],WI,2023 +Report approved by the Governor with partial veto on 3-29-2024. 2023 Wisconsin Act 250,2024-03-29T05:00:00+00:00,['executive-veto-line-item'],WI,2023 +Report approved by the Governor on 6-21-2023. 2023 Wisconsin Act 13,2023-06-22T05:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 3-18-2024,2024-03-18T05:00:00+00:00,['executive-receipt'],WI,2023 +Representative Subeck added as a coauthor,2023-06-15T05:00:00+00:00,[],WI,2023 +Messaged,2024-05-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-21-2024,2024-03-21T05:00:00+00:00,['executive-receipt'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +Read a third time,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +LRB correction,2023-06-15T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-11-14T06:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to withdraw from Senate message and take up,2024-02-20T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-27-2024. 2023 Wisconsin Act 222,2024-03-28T05:00:00+00:00,['executive-signature'],WI,2023 +"Passed notwithstanding the objections of the Governor, Ayes 21, Noes 10",2024-05-14T05:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Representative Subeck added as a coauthor,2023-06-15T05:00:00+00:00,[],WI,2023 +Action ordered immediately messaged,2024-01-24T06:00:00+00:00,[],WI,2023 +Received from Senate passed notwithstanding the objections of the Governor,2024-05-14T05:00:00+00:00,['receipt'],WI,2023 +Rules suspended and taken up,2024-05-14T05:00:00+00:00,[],WI,2023 +"Senate Amendment 1 concurred in, Ayes 72, Noes 26",2023-11-14T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 6-16-2023,2023-06-16T05:00:00+00:00,['enrolled'],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 146,2024-03-22T05:00:00+00:00,['executive-signature'],WI,2023 +Published 6-22-2023,2023-06-22T05:00:00+00:00,['became-law'],WI,2023 +Published 3-30-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +"Refused to suspend the rules to return to the amendable stage, Ayes 15, Noes 18",2023-11-14T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 149,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Representative Moore Omokunde withdrawn as a cosponsor,2024-03-18T05:00:00+00:00,['withdrawal'],WI,2023 +Fiscal estimate received,2024-02-19T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 6-14-2023 pursuant to Senate Rule 18(1),2023-06-13T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-21-2024. 2023 Wisconsin Act 143,2024-03-21T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended,2024-02-22T06:00:00+00:00,[],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Senate Substitute Amendment 1 withdrawn and returned to author,2023-06-28T05:00:00+00:00,[],WI,2023 +Deposited in the office of the Secretary of State on 3-19-2024,2024-03-19T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 concurred in,2024-02-20T06:00:00+00:00,[],WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-06-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 2-28-2024 by directive of the Majority Leader,2024-02-28T06:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 6-16-2023 by directive of the Speaker,2023-06-16T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 12-7-2023,2023-12-06T06:00:00+00:00,['became-law'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +Action ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +"Read a third time and concurred in as amended, Ayes 94, Noes 2",2024-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 3-6-2024. 2023 Wisconsin Act 104,2024-03-06T06:00:00+00:00,['executive-signature'],WI,2023 +Senate Amendment 1 offered by Senator LeMahieu,2023-06-14T05:00:00+00:00,[],WI,2023 +"Senate Amendment 1 to Senate Substitute Amendment 2 rejected, Ayes 22, Noes 11",2023-06-28T05:00:00+00:00,[],WI,2023 +Published 4-29-2024. Enrolled Joint Resolution 14,2024-04-29T05:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 6-22-2023. 2023 Wisconsin Act 18,2023-06-23T05:00:00+00:00,['executive-signature'],WI,2023 +Fiscal estimate received,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Published 3-22-2024,2024-03-21T05:00:00+00:00,['became-law'],WI,2023 +Placed on calendar 5-15-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Read a second time,2024-02-20T06:00:00+00:00,['reading-2'],WI,2023 +Presented to the Governor on 6-16-2023 by directive of the Speaker,2023-06-16T05:00:00+00:00,['executive-receipt'],WI,2023 +Messaged,2024-05-14T05:00:00+00:00,[],WI,2023 +"Passed notwithstanding the objections of the Governor, Ayes 22, Noes 9",2024-05-14T05:00:00+00:00,[],WI,2023 +"Concurred in as amended, Ayes 19, Noes 14",2023-11-14T06:00:00+00:00,[],WI,2023 +Report correctly enrolled on 1-24-2024,2024-01-24T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 6-16-2023 by directive of the Speaker,2023-06-16T05:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-22-2024,2024-03-22T05:00:00+00:00,['became-law'],WI,2023 +Rules suspended,2023-11-14T06:00:00+00:00,[],WI,2023 +"Senate Amendment 2 concurred in, Ayes 72, Noes 26",2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Published 3-28-2024,2024-03-28T05:00:00+00:00,['became-law'],WI,2023 +Report vetoed by the Governor on 3-29-2024,2024-03-29T05:00:00+00:00,['executive-veto'],WI,2023 +"Ordered immediately messaged, Ayes 26, Noes 7",2023-11-14T06:00:00+00:00,[],WI,2023 +Report approved by the Governor on 6-22-2023. 2023 Wisconsin Act 14,2023-06-23T05:00:00+00:00,['executive-signature'],WI,2023 +Action ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Presented to the Governor on 1-24-2024 by directive of the Speaker,2024-01-24T06:00:00+00:00,['executive-receipt'],WI,2023 +Failed to pass partial veto notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Ordered to a third reading,2024-02-20T06:00:00+00:00,['reading-3'],WI,2023 +Messaged,2024-05-14T05:00:00+00:00,[],WI,2023 +Received from Senate passed notwithstanding the objections of the Governor,2024-05-14T05:00:00+00:00,['receipt'],WI,2023 +"Read a third time and concurred in, Ayes 88, Noes 10",2023-11-14T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Report approved by the Governor on 6-22-2023. 2023 Wisconsin Act 15,2023-06-23T05:00:00+00:00,['executive-signature'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Fiscal estimate received,2024-02-20T06:00:00+00:00,['receipt'],WI,2023 +Representative Ratcliff added as a cosponsor,2024-02-20T06:00:00+00:00,[],WI,2023 +Published 6-23-2023,2023-06-23T05:00:00+00:00,['became-law'],WI,2023 +"Senate Amendment 2 to Senate Substitute Amendment 2 rejected, Ayes 22, Noes 11",2023-06-28T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +Published 3-7-2024,2024-03-06T06:00:00+00:00,['became-law'],WI,2023 +"Senate Amendment 1 to Senate Amendment 1 offered by Senators Spreitzer, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Roys, Pfaff, Smith, Taylor and Wirch",2023-06-14T05:00:00+00:00,[],WI,2023 +Representative Andraca added as a cosponsor,2024-02-22T06:00:00+00:00,[],WI,2023 +"Senate Amendment 2 to Senate Amendment 1 offered by Senators Spreitzer, Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Taylor and Wirch",2023-06-14T05:00:00+00:00,[],WI,2023 +LRB correction,2024-02-27T06:00:00+00:00,[],WI,2023 +Rules suspended,2023-06-14T05:00:00+00:00,[],WI,2023 +"Senate Amendment 12 to Senate Substitute Amendment 2 offered by Senators Agard, Carpenter, Hesselbein, L. Johnson, Larson, Pfaff, Roys, Smith, Spreitzer, Taylor and Wirch",2023-06-28T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2024-02-22T06:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-02-22T06:00:00+00:00,['receipt'],WI,2023 +LRB correction (Assembly Amendment 1),2023-11-16T06:00:00+00:00,[],WI,2023 +Placed on calendar 5-15-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Received from Senate passed notwithstanding the objections of the Governor,2024-05-14T05:00:00+00:00,['receipt'],WI,2023 +Ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Received from Senate amended and concurred in as amended (Senate Substitute Amendment 1 adopted),2023-11-14T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Published 6-23-2023,2023-06-23T05:00:00+00:00,['became-law'],WI,2023 +Rules suspended,2024-02-20T06:00:00+00:00,[],WI,2023 +Report vetoed by the Governor on 1-30-2024,2024-01-30T06:00:00+00:00,['executive-veto'],WI,2023 +Published 6-23-2023,2023-06-23T05:00:00+00:00,['became-law'],WI,2023 +Representative Joers withdrawn as a cosponsor,2024-04-01T05:00:00+00:00,['withdrawal'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Read a third time and concurred in,2024-02-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Senate Substitute Amendment 1 concurred in, Ayes 72, Noes 26",2023-11-14T06:00:00+00:00,[],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-11-15T06:00:00+00:00,['receipt'],WI,2023 +Placed on calendar 5-15-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Report correctly enrolled on 11-16-2023,2023-11-16T06:00:00+00:00,['enrolled'],WI,2023 +Fiscal estimate received,2024-02-28T06:00:00+00:00,['receipt'],WI,2023 +LRB correction (Senate Amendment 1),2024-02-27T06:00:00+00:00,[],WI,2023 +"Senate Amendment 3 to Senate Substitute Amendment 2 rejected, Ayes 22, Noes 11",2023-06-28T05:00:00+00:00,[],WI,2023 +"Senate Amendment 3 to Senate Amendment 1 offered by Senators Carpenter, Taylor, Larson, Hesselbein, Roys and Smith",2023-06-14T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 62, Noes 31, Paired 2",2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2024-02-23T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Placed on calendar 3-12-2024 pursuant to Senate Rule 18(1),2024-03-11T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-14T05:00:00+00:00,['reading-2'],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +LRB correction (Assembly Amendment 1),2024-02-27T06:00:00+00:00,[],WI,2023 +Senate Amendment 13 to Senate Substitute Amendment 2 offered by Senator Marklein,2023-06-28T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +Action ordered immediately messaged,2023-11-14T06:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Ordered immediately messaged,2024-02-20T06:00:00+00:00,[],WI,2023 +LRB correction (Senate Amendment 1),2023-11-20T06:00:00+00:00,[],WI,2023 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,['failure'],WI,2023 +LRB correction (Senate Substitute Amendment 1),2023-11-15T06:00:00+00:00,[],WI,2023 +LRB correction (Senate Amendment 2),2023-11-20T06:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2024-02-21T06:00:00+00:00,['receipt'],WI,2023 +Report approved by the Governor on 12-5-2023. 2023 Wisconsin Act 41,2023-12-05T06:00:00+00:00,['executive-signature'],WI,2023 +Fiscal estimate received,2024-03-05T06:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled,2024-02-27T06:00:00+00:00,['enrolled'],WI,2023 +"Senate Amendment 4 to Senate Substitute Amendment 2 rejected, Ayes 22, Noes 11",2023-06-28T05:00:00+00:00,[],WI,2023 +LRB correction,2023-06-15T05:00:00+00:00,[],WI,2023 +Assembly Amendment 1 concurred in,2024-03-12T05:00:00+00:00,[],WI,2023 +Senate Amendment 4 to Senate Amendment 1 offered by Senator Taylor,2023-06-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-26-2024,2024-03-26T05:00:00+00:00,['executive-receipt'],WI,2023 +Report correctly enrolled,2023-06-15T05:00:00+00:00,['enrolled'],WI,2023 +"Senate Amendment 1 to Senate Amendment 1 rejected, Ayes 22, Noes 11",2023-06-14T05:00:00+00:00,[],WI,2023 +"Senate Amendment 5 to Senate Substitute Amendment 2 rejected, Ayes 22, Noes 11",2023-06-28T05:00:00+00:00,[],WI,2023 +Action ordered immediately messaged,2024-03-12T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2024-03-13T05:00:00+00:00,['receipt'],WI,2023 +Report correctly enrolled on 11-15-2023,2023-11-15T06:00:00+00:00,['enrolled'],WI,2023 +LRB correction,2023-11-20T06:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-02-29T06:00:00+00:00,['enrolled'],WI,2023 +Published 12-6-2023,2023-12-05T06:00:00+00:00,['became-law'],WI,2023 +Report correctly enrolled,2023-11-20T06:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 3-4-2024 by directive of the Majority Leader,2024-03-04T06:00:00+00:00,['executive-receipt'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Failed to concur in pursuant to Senate Joint Resolution 1,2024-04-15T05:00:00+00:00,['amendment-failure'],WI,2023 +"Senate Amendment 2 to Senate Amendment 1 rejected, Ayes 22, Noes 11",2023-06-14T05:00:00+00:00,[],WI,2023 +"Senate Amendment 6 to Senate Substitute Amendment 2 rejected, Ayes 22, Noes 11",2023-06-28T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-29-2024. 2023 Wisconsin Act 249,2024-03-29T05:00:00+00:00,['executive-signature'],WI,2023 +LRB correction (Senate Amendment 1),2024-03-14T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 6-15-2023 by directive of the Majority Leader,2023-06-15T05:00:00+00:00,['executive-receipt'],WI,2023 +"Senate Amendment 3 to Senate Amendment 1 rejected, Ayes 22, Noes 11",2023-06-14T05:00:00+00:00,[],WI,2023 +Published 3-30-2024,2024-03-29T05:00:00+00:00,['became-law'],WI,2023 +LRB correction (Senate Amendment 1 to Senate Amendment 2),2024-03-14T05:00:00+00:00,[],WI,2023 +"Senate Amendment 7 to Senate Substitute Amendment 2 rejected, Ayes 22, Noes 11",2023-06-28T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 6-20-2023. 2023 Wisconsin Act 11,2023-06-21T05:00:00+00:00,['executive-signature'],WI,2023 +Report approved by the Governor on 12-5-2023. 2023 Wisconsin Act 40,2023-12-05T06:00:00+00:00,['executive-signature'],WI,2023 +Report approved by the Governor on 3-8-2024. 2023 Wisconsin Act 105,2024-03-08T06:00:00+00:00,['executive-signature'],WI,2023 +Presented to the Governor on 11-30-2023,2023-11-30T06:00:00+00:00,['executive-receipt'],WI,2023 +Published 3-9-2024,2024-03-08T06:00:00+00:00,['became-law'],WI,2023 +Report approved by the Governor on 12-6-2023. 2023 Wisconsin Act 73,2023-12-07T06:00:00+00:00,['executive-signature'],WI,2023 +Published 12-6-2023,2023-12-05T06:00:00+00:00,['became-law'],WI,2023 +LRB correction (Senate Amendment 2),2024-03-14T05:00:00+00:00,[],WI,2023 +Published 6-21-2023,2023-06-21T05:00:00+00:00,['became-law'],WI,2023 +Senate Amendment 8 to Senate Substitute Amendment 2 withdrawn and returned to author,2023-06-28T05:00:00+00:00,[],WI,2023 +Senate Amendment 4 to Senate Amendment 1 withdrawn and returned to author,2023-06-14T05:00:00+00:00,[],WI,2023 +"Senate Amendment 1 adopted, Ayes 21, Noes 12",2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +"Senate Amendment 9 to Senate Substitute Amendment 2 rejected, Ayes 22, Noes 11",2023-06-28T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2024-03-14T05:00:00+00:00,['enrolled'],WI,2023 +Published 12-7-2023,2023-12-07T06:00:00+00:00,['became-law'],WI,2023 +Ordered to a third reading,2023-06-14T05:00:00+00:00,['reading-3'],WI,2023 +"Senate Amendment 10 to Senate Substitute Amendment 2 rejected, Ayes 22, Noes 11",2023-06-28T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 3-15-2024 by directive of the Majority Leader,2024-03-15T05:00:00+00:00,['executive-receipt'],WI,2023 +"Senate Amendment 11 to Senate Substitute Amendment 2 rejected, Ayes 22, Noes 11",2023-06-28T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 3-20-2024. 2023 Wisconsin Act 121,2024-03-20T05:00:00+00:00,['executive-signature'],WI,2023 +Rules suspended to give bill its third reading,2023-06-14T05:00:00+00:00,[],WI,2023 +Published 3-21-2024,2024-03-20T05:00:00+00:00,['became-law'],WI,2023 +"Senate Amendment 12 to Senate Substitute Amendment 2 rejected, Ayes 22, Noes 11",2023-06-28T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in as amended, Ayes 21, Noes 12",2023-06-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +"Senate Amendment 13 to Senate Substitute Amendment 2 adopted, Ayes 21, Noes 12",2023-06-28T05:00:00+00:00,['amendment-passage'],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Received from Senate amended and concurred in as amended (Senate amendment 1 adopted),2023-06-14T05:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Senate Substitute Amendment 2 adopted,2023-06-28T05:00:00+00:00,['amendment-passage'],WI,2023 +"Assembly Amendment 1 to Senate Amendment 1 offered by Representatives Neubauer, Snodgrass, Clancy, Vining, Bare, Moore Omokunde, Madison, Jacobson, Considine, Ratcliff, C. Anderson, Andraca, Joers, Haywood, Sinicki, Billings, J. Anderson, Ortiz-Velez, Baldeh, Ohnstad, Shelton, Drake, Palmeri, Conley, Cabrera, Hong, Emerson and Stubbs",2023-06-14T05:00:00+00:00,[],WI,2023 +Ordered to a third reading,2023-06-28T05:00:00+00:00,['reading-3'],WI,2023 +Rules suspended to give bill its third reading,2023-06-28T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 1 to Senate Amendment 1 laid on table, Ayes 60, Noes 34",2023-06-14T05:00:00+00:00,['deferral'],WI,2023 +"Read a third time and passed, Ayes 20, Noes 13",2023-06-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Assembly Amendment 2 to Senate Amendment 1 offered by Representative Kurtz,2023-06-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-28T05:00:00+00:00,[],WI,2023 +Assembly Amendment 2 to Senate Amendment 1 adopted,2023-06-14T05:00:00+00:00,['amendment-passage'],WI,2023 +Received from Senate,2023-06-29T05:00:00+00:00,['receipt'],WI,2023 +"Senate Amendment 1 concurred in as amended, Ayes 68, Noes 26, Paired 2",2023-06-14T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Read,2023-06-29T05:00:00+00:00,[],WI,2023 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 2 to Senate Amendment 1 adopted",2023-06-14T05:00:00+00:00,"['amendment-passage', 'receipt']",WI,2023 +Rules suspended to withdraw from Senate message and take up,2023-06-29T05:00:00+00:00,[],WI,2023 +Read a second time,2023-06-29T05:00:00+00:00,['reading-2'],WI,2023 +"Taken off the Assembly message, pursuant to Senate Rule 18 (1b)",2023-06-14T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 1 offered by Representatives Sinicki, Bare, Joers, Andraca, C. Anderson, Vining, Madison, Clancy, Haywood, Subeck, J. Anderson, Hong, Neubauer, Emerson, Jacobson, Ohnstad, Palmeri, Ratcliff, Conley, Snodgrass, Shelton, Cabrera, Drake, Baldeh, Considine, Moore Omokunde, Billings, Goyke, Stubbs, Myers, Ortiz-Velez, Riemer and Shankland",2023-06-29T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 2 to Senate Amendment 1 concurred in, Ayes 29, Noes 4",2023-06-14T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 1 laid on table, Ayes 63, Noes 33",2023-06-29T05:00:00+00:00,['deferral'],WI,2023 +Action ordered immediately messaged,2023-06-14T05:00:00+00:00,[],WI,2023 +Received from Senate concurred in,2023-06-14T05:00:00+00:00,['receipt'],WI,2023 +"Assembly Amendment 2 offered by Representatives McGuire, Bare, Joers, Andraca, C. Anderson, Vining, Madison, Clancy, Haywood, Subeck, Sinicki, J. Anderson, Hong, Neubauer, Emerson, Jacobson, Ohnstad, Palmeri, Ratcliff, Conley, Snodgrass, Shelton, Cabrera, Drake, Baldeh, Considine, Moore Omokunde, Billings, Goyke, Stubbs, Myers, Ortiz-Velez, Riemer and Shankland",2023-06-29T05:00:00+00:00,[],WI,2023 +LRB correction,2023-06-15T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 2 laid on table, Ayes 63, Noes 33",2023-06-29T05:00:00+00:00,['deferral'],WI,2023 +Report correctly enrolled on 6-15-2023,2023-06-15T05:00:00+00:00,['enrolled'],WI,2023 +"Assembly Amendment 3 offered by Representatives Drake, Bare, Joers, Andraca, C. Anderson, Vining, Madison, Clancy, Haywood, Subeck, Sinicki, J. Anderson, Hong, Neubauer, Emerson, Jacobson, Ohnstad, Palmeri, Ratcliff, Conley, Snodgrass, Shelton, Cabrera, Baldeh, Considine, Moore Omokunde, Billings, Goyke, Stubbs, Myers, Ortiz-Velez and Shankland",2023-06-29T05:00:00+00:00,[],WI,2023 +Presented to the Governor on 6-15-2023 by directive of the Speaker,2023-06-15T05:00:00+00:00,['executive-receipt'],WI,2023 +"Assembly Amendment 3 laid on table, Ayes 63, Noes 34",2023-06-29T05:00:00+00:00,['deferral'],WI,2023 +"Assembly Amendment 4 offered by Representatives Subeck, Bare, Joers, Andraca, C. Anderson, Vining, Madison, Clancy, Haywood, Sinicki, J. Anderson, Hong, Neubauer, Emerson, Jacobson, Ohnstad, Palmeri, Ratcliff, Conley, Snodgrass, Shelton, Cabrera, Drake, Baldeh, Considine, Moore Omokunde, Billings, Goyke, Stubbs, Myers, Ortiz-Velez, Riemer and Shankland",2023-06-29T05:00:00+00:00,[],WI,2023 +Report approved by the Governor on 6-20-2023. 2023 Wisconsin Act 12,2023-06-21T05:00:00+00:00,['executive-signature'],WI,2023 +"Assembly Amendment 4 laid on table, Ayes 63, Noes 34",2023-06-29T05:00:00+00:00,['deferral'],WI,2023 +Published 6-21-2023,2023-06-21T05:00:00+00:00,['became-law'],WI,2023 +"Assembly Amendment 5 offered by Representatives Vining, Bare, Joers, Andraca, C. Anderson, Madison, Clancy, Subeck, Sinicki, J. Anderson, Hong, Neubauer, Emerson, Jacobson, Ohnstad, Palmeri, Ratcliff, Conley, Snodgrass, Shelton, Cabrera, Drake, Baldeh, Considine, Moore Omokunde, Billings, Goyke, Stubbs, Myers, Ortiz-Velez, Riemer and Shankland",2023-06-29T05:00:00+00:00,[],WI,2023 +Fiscal estimate received,2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +"Assembly Amendment 5 laid on table, Ayes 63, Noes 34",2023-06-29T05:00:00+00:00,['deferral'],WI,2023 +"Assembly Amendment 6 offered by Representatives Riemer, Bare, Joers, Andraca, C. Anderson, Vining, Madison, Clancy, Haywood, Subeck, Sinicki, J. Anderson, Hong, Neubauer, Emerson, Jacobson, Ohnstad, Palmeri, Ratcliff, Conley, Snodgrass, Shelton, Cabrera, Drake, Baldeh, Considine, Moore Omokunde, Billings, Goyke, Stubbs, Myers, Ortiz-Velez and Shankland",2023-06-29T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 6 laid on table, Ayes 63, Noes 34",2023-06-29T05:00:00+00:00,['deferral'],WI,2023 +"Assembly Amendment 7 offered by Representatives Shelton, Bare, Joers, Andraca, C. Anderson, Vining, Madison, Clancy, Haywood, Subeck, Sinicki, J. Anderson, Hong, Neubauer, Emerson, Jacobson, Ohnstad, Palmeri, Ratcliff, Conley, Snodgrass, Cabrera, Drake, Baldeh, Considine, Moore Omokunde, Billings, Goyke, Stubbs, Myers, Ortiz-Velez, Riemer and Shankland",2023-06-29T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 7 laid on table, Ayes 63, Noes 34",2023-06-29T05:00:00+00:00,['deferral'],WI,2023 +"Assembly Amendment 8 offered by Representatives Emerson, Bare, Joers, Andraca, C. Anderson, Vining, Madison, Clancy, Haywood, Subeck, Sinicki, J. Anderson, Hong, Neubauer, Jacobson, Ohnstad, Palmeri, Ratcliff, Conley, Snodgrass, Shelton, Cabrera, Drake, Baldeh, Considine, Moore Omokunde, Billings, Goyke, Stubbs, Myers, Ortiz-Velez, Riemer and Shankland",2023-06-29T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 8 laid on table, Ayes 63, Noes 34",2023-06-29T05:00:00+00:00,['deferral'],WI,2023 +"Assembly Amendment 9 offered by Representatives Shankland, Bare, Joers, Andraca, C. Anderson, Vining, Madison, Clancy, Haywood, Subeck, Sinicki, J. Anderson, Hong, Neubauer, Emerson, Jacobson, Ohnstad, Palmeri, Ratcliff, Conley, Snodgrass, Shelton, Cabrera, Drake, Baldeh, Considine, Moore Omokunde, Billings, Goyke, Stubbs, Myers, Ortiz-Velez and Riemer",2023-06-29T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 9 laid on table, Ayes 63, Noes 34",2023-06-29T05:00:00+00:00,['deferral'],WI,2023 +"Assembly Amendment 10 offered by Representatives Stubbs, Bare, Joers, Andraca, C. Anderson, Vining, Haywood, Subeck, Sinicki, J. Anderson, Hong, Neubauer, Emerson, Jacobson, Ohnstad, Palmeri, Ratcliff, Conley, Snodgrass, Shelton, Cabrera, Drake, Baldeh, Considine, Moore Omokunde, Billings, Goyke, Myers, Riemer and Ortiz-Velez",2023-06-29T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 10 laid on table, Ayes 63, Noes 34",2023-06-29T05:00:00+00:00,['deferral'],WI,2023 +"Assembly Amendment 11 offered by Representatives Doyle, Bare, Joers, Andraca, C. Anderson, Vining, Madison, Haywood, Subeck, Sinicki, J. Anderson, Hong, Neubauer, Emerson, Jacobson, Ohnstad, Palmeri, Ratcliff, Conley, Snodgrass, Shelton, Cabrera, Drake, Baldeh, Considine, Moore Omokunde, Billings, Goyke, Stubbs, Myers, Ortiz-Velez, Riemer and Shankland",2023-06-29T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 11 laid on table, Ayes 63, Noes 34",2023-06-29T05:00:00+00:00,['deferral'],WI,2023 +"Assembly Amendment 12 offered by Representatives Considine, Bare, Joers, Andraca, C. Anderson, Vining, Madison, Clancy, Haywood, Subeck, Sinicki, J. Anderson, Hong, Neubauer, Emerson, Jacobson, Ohnstad, Palmeri, Ratcliff, Conley, Snodgrass, Shelton, Cabrera, Drake, Baldeh, Moore Omokunde, Billings, Goyke, Stubbs, Myers, Ortiz-Velez, Riemer and Shankland",2023-06-29T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 12 laid on table, Ayes 63, Noes 34",2023-06-29T05:00:00+00:00,['deferral'],WI,2023 +"Assembly Amendment 13 offered by Representatives Andraca, Bare, Joers, C. Anderson, Vining, Haywood, Subeck, Sinicki, J. Anderson, Hong, Neubauer, Emerson, Jacobson, Ohnstad, Palmeri, Ratcliff, Conley, Snodgrass, Shelton, Cabrera, Drake, Baldeh, Considine, Moore Omokunde, Billings, Goyke, Stubbs, Myers, Ortiz-Velez, Riemer and Shankland",2023-06-29T05:00:00+00:00,[],WI,2023 +"Assembly Amendment 13 laid on table, Ayes 65, Noes 32",2023-06-29T05:00:00+00:00,['deferral'],WI,2023 +Ordered to a third reading,2023-06-29T05:00:00+00:00,['reading-3'],WI,2023 +Rules suspended,2023-06-29T05:00:00+00:00,[],WI,2023 +"Read a third time and concurred in, Ayes 63, Noes 34",2023-06-29T05:00:00+00:00,"['passage', 'reading-3']",WI,2023 +Ordered immediately messaged,2023-06-29T05:00:00+00:00,[],WI,2023 +Received from Assembly concurred in,2023-06-30T05:00:00+00:00,['receipt'],WI,2023 +LRB correction (Senate Amendment 13 to Senate Substitute Amendment 2),2023-06-30T05:00:00+00:00,[],WI,2023 +Report correctly enrolled,2023-06-30T05:00:00+00:00,['enrolled'],WI,2023 +Presented to the Governor on 6-30-2023,2023-06-30T05:00:00+00:00,['executive-receipt'],WI,2023 +Report approved by the Governor with partial veto on 7-5-2023. 2023 Wisconsin Act 19,2023-07-05T05:00:00+00:00,['executive-veto-line-item'],WI,2023 +Published 7-6-2023,2023-07-05T05:00:00+00:00,['became-law'],WI,2023 +Partial veto placed on calendar 9-14-2023 by committee on Senate Organization,2023-09-12T05:00:00+00:00,[],WI,2023 +"Passed partial veto as it relates to Per pupil revenue limit adjustment (A-1 as it effects Sections 402, 403, 404 and 408), Ayes 22, Noes 11",2023-09-14T05:00:00+00:00,[],WI,2023 +"Passed partial veto as it relates to Individual income tax rate reduction (B-7 Part 1 as it effects Sections 328, 332 and 336), Ayes 22, Noes 11",2023-09-14T05:00:00+00:00,[],WI,2023 +"Partial veto as it relates Individual income tax rate reduction (B-7 Part 2 as it effects sections 329, 333 and 337) laid on the table",2023-09-14T05:00:00+00:00,['deferral'],WI,2023 +Ordered immediately messaged,2023-09-14T05:00:00+00:00,[],WI,2023 +"Received from Senate Item Veto A-1 Sections 402, 403, 404, and 408 (Per Pupil Revenue Limit Adjustment) passed notwithstanding the objections of the Governor",2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +"Received from Senate Item Veto B-7 Part 1 Sections 328, 332, and 336 (Individual Income Tax Rate Reduction) passed notwithstanding the objections of the Governor",2023-09-14T05:00:00+00:00,['receipt'],WI,2023 +"Passed partial veto as it relates to Housing rehabilitation (C-16 as it effects Sections 51 [as it relates to s. 20.490 (6)(d)] and 134), Ayes 22, Noes 10",2023-10-17T05:00:00+00:00,[],WI,2023 +Ordered immediately messaged,2023-10-17T05:00:00+00:00,[],WI,2023 +Received from Senate Item Veto C-16 relating to Housing Rehabilitation (C-16 as it effects Sections 51 [as it relates to s. 20.490 (6)(d)] and 134) passed notwithstanding the objections of the Governor,2023-10-18T05:00:00+00:00,['receipt'],WI,2023 +Referred to committee on Rules,2024-03-14T05:00:00+00:00,['referral-committee'],WI,2023 +Placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-13T05:00:00+00:00,[],WI,2023 +Partial veto placed on calendar 5-14-2024 pursuant to Joint Rule 82 (2)(a),2024-05-14T05:00:00+00:00,[],WI,2023 +Failed to pass partial veto notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-14T05:00:00+00:00,['failure'],WI,2023 +Partial veto failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2024-05-15T05:00:00+00:00,[],WI,2023 +Filed with Secretary by Sen. Adriane Johnson,2023-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-05-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-03-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-01-11,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-05,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-03-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-03-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2024-04-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-11-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-16,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-02-15,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-17,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2024-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-02-15,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-02-08,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-12-01,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-02-02,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-05-21,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-02-02,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-16,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-05-28,['filing'],IL,103rd +Filed with Secretary,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-14,['filing'],IL,103rd +Filed with Secretary,2024-05-21,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-02-02,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-02,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-17,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-16,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-27,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-02-24,['filing'],IL,103rd +Filed with Secretary,2024-05-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-01-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-04-05,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2023-02-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-04-17,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Porfirio,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-02-28,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-14,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-01-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2024-04-12,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-01-27,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-04-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-20,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-08-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-17,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-03-10,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-31,['filing'],IL,103rd +Filed with Secretary,2023-03-08,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-03-28,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-04-25,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-07,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-16,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2024-01-11,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-04-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2024-04-15,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-10-12,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2024-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-04-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-05-09,['filing'],IL,103rd +Filed with Secretary,2023-02-22,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-04-15,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-07-06,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Dave Syverson,2024-05-14,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-01-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-05-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2024-01-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2024-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-05-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2024-05-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-01-16,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-05-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-05-17,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-17,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-05-19,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jonathan Carroll,2023-02-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-05-18,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-03-29,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2023-05-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-22,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-05-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with Secretary,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2024-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-02-07,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-05-10,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-01-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jawaharial Williams,2023-03-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2024-05-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-05-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-08,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Emil Jones, III",2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2023-03-02,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2024-05-13,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2024-07-08,['filing'],IL,103rd +Filed with Secretary,2023-03-02,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-05-02,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2023-01-20,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-02-14,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-01-11,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2024-01-23,['filing'],IL,103rd +Filed with Secretary,2023-04-19,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-01-22,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2023-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-01-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-10-13,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-30,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-01-31,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-02-23,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2024-01-31,['filing'],IL,103rd +Filed with Secretary,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2024-01-04,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-14,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-04-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2024-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-05-14,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-02-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-05-24,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-03-23,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2024-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-01-16,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-08-28,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-08,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-07-17,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2023-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2024-01-22,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Dave Syverson,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Porfirio,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-01-24,['filing'],IL,103rd +Filed with Secretary,2023-03-23,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-14,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-02-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2024-07-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-05-11,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-05-13,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2023-01-25,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2024-05-24,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Wayne A Rosenthal,2023-05-05,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-03-17,['filing'],IL,103rd +Filed with Secretary,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2024-07-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2024-07-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-03-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-27,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-07,['filing'],IL,103rd +Prefiled with Clerk by Rep. Jay Hoffman,2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2024-05-15,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2024-07-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-07-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-03-18,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-10-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2024-04-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-04-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-05-15,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-01-16,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-04-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-01-17,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +Filed with Secretary,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-31,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-06,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +Filed with Secretary,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2023-10-04,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-14,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2024-04-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-07-22,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-05-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-12-11,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-01-31,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-15,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-17,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2024-04-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-01-31,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jonathan Carroll,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-05-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-15,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2024-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Wayne A Rosenthal,2024-05-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-02-07,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-03-04,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2023-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-07,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-01-12,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-01-22,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Frances Ann Hurley,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-01-17,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2024-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-01-19,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tracy Katz Muhl,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Wayne A Rosenthal,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2024-09-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-01-17,['filing'],IL,103rd +Filed with Secretary,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2023-05-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-05-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-04-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-04-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-03-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2024-03-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Diane Blair-Sherlock,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-05-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-03-08,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-01-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-07-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2023-02-15,['filing'],IL,103rd +Filed with Secretary,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2024-01-19,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-03-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Randy E. Frese,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2024-01-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-02-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-05-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-01-25,['filing'],IL,103rd +Filed with Secretary,2023-04-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-04-24,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-01-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-01-29,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Randy E. Frese,2023-12-18,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2023-03-02,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-05-04,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2023-03-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2023-12-08,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-03-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2024-01-08,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2024-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2024-01-08,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-01-16,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-10-04,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-03-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Randy E. Frese,2023-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Emanuel ""Chris"" Welch",2023-12-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-12-12,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Emanuel ""Chris"" Welch",2024-01-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. Emanuel ""Chris"" Welch",2023-11-30,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2024-03-05,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2024-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2024-01-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-01-08,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2023-12-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2024-05-07,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-01-22,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-11-29,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-01-08,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-01-16,['filing'],IL,103rd +Filed with Secretary,2023-05-17,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-11-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-11-29,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2024-05-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-02-08,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2024-01-17,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicole La Ha,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-27,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-03-01,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-01-29,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-02,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-03-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2023-03-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-12-18,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-03-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-03-22,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-01-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-12-21,['filing'],IL,103rd +Filed with Secretary,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-03-22,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-12-21,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-03-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-03-07,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-01-22,['filing'],IL,103rd +Filed with Secretary by Sen. Michael E. Hastings,2024-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2024-03-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-03-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-12-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2023-05-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Yolonda Morris,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2023-03-29,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2024-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-01-23,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin McLaughlin,2023-01-23,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-03-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-09-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-09-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2024-01-04,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-10-26,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-10,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2024-01-29,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Maurice A. West, II",2023-01-04,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-01-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-01-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-03-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Frances Ann Hurley,2023-02-17,['filing'],IL,103rd +Prefiled with Clerk by Rep. Rita Mayfield,2022-12-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-01-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-11-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-01-12,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-02-14,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-04-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +Prefiled with Clerk by Rep. Natalie A. Manley,2022-12-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-05-10,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2023-11-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-02-07,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2024-01-19,['filing'],IL,103rd +Filed with Secretary,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-12,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-08,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-19,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-11-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-12,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Jason Bunting,2023-05-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2023-12-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-04-10,['filing'],IL,103rd +Filed with Secretary,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2023-05-25,['filing'],IL,103rd +Filed with Secretary,2023-03-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-01-30,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-04-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with Secretary,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-17,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-05-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Michael E. Hastings,2024-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-01-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2024-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-12-21,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-01-30,['filing'],IL,103rd +Filed with Secretary,2024-05-24,['filing'],IL,103rd +Filed with Secretary,2023-05-04,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-10-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2024-09-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-12-21,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-03-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2023-10-18,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2023-10-05,['filing'],IL,103rd +Filed with Secretary,2023-05-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Jonathan Carroll,2023-02-17,['filing'],IL,103rd +Prefiled with Clerk by Rep. Daniel Didech,2023-01-06,['filing'],IL,103rd +Filed with Secretary,2023-02-23,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-01-17,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-10-13,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-01-30,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-11-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-08-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-01-24,['filing'],IL,103rd +Filed with Secretary,2024-05-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-12-19,['filing'],IL,103rd +Filed with Secretary,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-05-02,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-03-21,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-05-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-03-22,['filing'],IL,103rd +Filed with the Clerk by Rep. John Egofske,2023-05-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Maurice A. West, II",2023-01-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-01-12,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-11-29,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2023-05-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-01-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2023-09-19,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-08-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2023-07-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-25,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-01-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2023-12-13,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-24,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-12-21,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-25,['filing'],IL,103rd +Filed with Secretary,2024-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-04-26,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-05-18,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2023-05-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jonathan Carroll,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-10-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2023-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-04-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-01-19,['filing'],IL,103rd +Filed with Secretary,2023-04-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2024-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-05-25,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-10-23,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Porfirio,2023-05-19,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-05-02,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-10-12,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-02,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-05-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-04-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2024-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Frances Ann Hurley,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-03-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with Secretary,2023-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-02-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-01-30,['filing'],IL,103rd +Filed with Secretary,2024-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-03-13,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-01-30,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-03-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-04-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jonathan Carroll,2023-09-25,['filing'],IL,103rd +Filed with Secretary,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Aaron M. Ortiz,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Frances Ann Hurley,2023-02-27,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-17,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-01-18,['filing'],IL,103rd +Filed with Secretary,2023-04-19,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-01-30,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with Secretary,2023-03-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-17,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-01-24,['filing'],IL,103rd +Filed with Secretary,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2024-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-04-26,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-01-23,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2024-03-21,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-11-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-03-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-04-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-12-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-05-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-04-01,['filing'],IL,103rd +Filed with Secretary,2023-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Yolonda Morris,2024-04-01,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2024-04-02,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Yolonda Morris,2024-04-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2024-04-01,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2024-03-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-04-01,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-11-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-04-29,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-05-21,['filing'],IL,103rd +Filed with Secretary,2024-05-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2024-05-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-05-20,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2024-01-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2024-04-01,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-21,['filing'],IL,103rd +Filed with Secretary,2023-04-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2024-01-19,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-29,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-03-21,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2024-05-23,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-02-07,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2024-01-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-02-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2024-01-17,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-21,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2024-01-25,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-03-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-02-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-04-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-05-20,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2024-05-21,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-03-30,['filing'],IL,103rd +Filed with Secretary,2024-05-20,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-01-24,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-03-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Gill,2024-01-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-12-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-09-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-01-20,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-12-19,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-10-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-10-24,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-10-24,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-09-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-07-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2023-08-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-06-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-09-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-09-08,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-09-29,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2023-10-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2023-02-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. Terra Costa Howard,2023-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-05-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-17,['filing'],IL,103rd +Prefiled with Clerk by Rep. Will Guzzardi,2023-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-09-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-01-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-01-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-10-24,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2024-01-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-09-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-08-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-08-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Yolonda Morris,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-09-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-10-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jawaharial Williams,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-09-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-10-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2024-01-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-10-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-09-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Jonathan Carroll,2023-10-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-07-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. John Egofske,2023-06-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2024-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2023-06-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-05-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-06-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-10-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-08-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-04-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jonathan Carroll,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-03-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-01-25,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-03-29,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Prefiled with Clerk by Rep. Jay Hoffman,2022-12-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-01-23,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-05-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-06-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2023-05-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-05-22,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-25,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-01-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-07-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2023-09-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin McLaughlin,2023-07-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-01-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Frances Ann Hurley,2023-01-27,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2024-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Prefiled with Clerk by Rep. Anthony DeLuca,2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-05-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-05-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-05-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2023-10-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-05-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin McLaughlin,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Aaron M. Ortiz,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-05-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Prefiled with Clerk by Rep. Rita Mayfield,2022-12-21,['filing'],IL,103rd +Prefiled with Clerk by Rep. Anthony DeLuca,2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-09-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-01-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-05-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-05-22,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-11-28,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-11-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-11-29,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-01-23,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-12-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-05-09,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-03-14,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-23,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-04-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-04-30,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-10-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2024-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2024-01-08,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2024-03-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2024-05-08,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-03-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2023-12-01,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-01-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-05-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-01-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-08,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-05-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-01-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2024-05-08,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-05-14,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2024-03-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-17,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-03-12,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Porfirio,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2024-07-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2024-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Yolonda Morris,2024-03-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-01-23,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2024-03-12,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-05-03,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2024-05-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-06-28,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-08-29,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-01-29,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-01-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2024-04-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2024-03-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Aaron M. Ortiz,2023-05-22,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2024-05-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-20,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2024-03-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2024-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-20,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-06,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with Secretary,2024-04-26,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-03,['filing'],IL,103rd +Filed with Secretary,2024-04-26,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-03-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-05-03,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2024-05-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2024-01-31,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2023-05-03,['filing'],IL,103rd +Filed with Secretary,2024-05-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2023-05-03,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2024-04-29,['filing'],IL,103rd +Filed with Secretary,2024-03-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-08-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-05-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-05-17,['filing'],IL,103rd +Filed with Secretary,2024-04-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2024-03-12,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-10-13,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2023-01-30,['filing'],IL,103rd +Filed with Secretary,2024-03-14,['filing'],IL,103rd +Filed with Secretary,2024-04-24,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2024-04-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-08-30,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-01-31,['filing'],IL,103rd +Filed with Secretary,2024-03-21,['filing'],IL,103rd +Filed with Secretary,2024-02-28,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-17,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-10-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-03-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-03-23,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jawaharial Williams,2023-03-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Randy E. Frese,2023-03-23,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-03-23,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-03-27,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-12-21,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Dave Syverson,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-11-01,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-10-27,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-04-29,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-10-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-04-26,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-10-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2024-04-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-04-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-10-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-10-30,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2024-01-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-01-12,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Dave Syverson,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Michael E. Hastings,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-08,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-04-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-01-26,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-05-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-08-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-01,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Prefiled with Clerk by Rep. Anthony DeLuca,2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-01,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-12,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-05-02,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-05-13,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-01-16,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2023-05-26,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2023-10-24,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-04-30,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-11-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-10-26,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2023-10-24,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2023-11-03,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-01-10,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Michael E. Hastings,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-03-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-02-23,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-01-24,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2023-03-13,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-23,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-27,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-01-18,['filing'],IL,103rd +Filed with Secretary,2023-11-07,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-02-23,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2024-04-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-25,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-05-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-05-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-04-28,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-04-30,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-05-09,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2023-05-12,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-05-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2024-05-01,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-05-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-01-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2024-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-05-21,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-04-05,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-12-18,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-03-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-24,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-04-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-05-21,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-04-29,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-08-12,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-11-08,['filing'],IL,103rd +Filed with Secretary,2024-04-24,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-11-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-03-09,['filing'],IL,103rd +Filed with Secretary,2024-05-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2024-05-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-04-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2024-08-20,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2024-05-23,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2024-05-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-05-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-02-22,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-03-11,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-01-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Emanuel ""Chris"" Welch",2023-05-11,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2023-05-11,['filing'],IL,103rd +Filed with Secretary,2024-04-26,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-05-01,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-04-30,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2024-05-01,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-05-10,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with Secretary,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-03,['filing'],IL,103rd +Filed with Secretary,2024-05-02,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-04-26,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-06,['filing'],IL,103rd +Filed with Secretary,2024-04-30,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-05-01,['filing'],IL,103rd +Filed with Secretary,2024-04-30,['filing'],IL,103rd +Filed with Secretary,2024-04-29,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-05-03,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2024-05-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-05-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Diane Blair-Sherlock,2024-02-20,['filing'],IL,103rd +Filed with Secretary,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-04-26,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-05-02,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Dave Syverson,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-04-12,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2024-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-01-19,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2024-04-12,['filing'],IL,103rd +Filed with Secretary,2024-04-10,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-09-05,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-06-28,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-11-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2024-01-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2024-01-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-07-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-07-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2024-07-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-11-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2024-03-26,['filing'],IL,103rd +Filed with Secretary,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-09-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-03-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-05-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Gill,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-12-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2024-07-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-07-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2024-04-15,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-04-16,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-04-16,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Brandun Schweizer,2024-02-26,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2024-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2024-02-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Randy E. Frese,2024-02-27,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-02-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-02-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-03-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2024-03-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2024-02-28,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-02-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-02-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-03-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Yolonda Morris,2024-05-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2024-05-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-05-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-05-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-05-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-05-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Yolonda Morris,2024-05-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-05-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-05-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2024-05-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-05-14,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-05-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2024-05-14,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-04-20,['filing'],IL,103rd +Filed with Secretary,2024-04-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-09-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-12-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2023-04-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2024-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Gill,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-10-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-07-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2024-03-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-03-19,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-05-17,['filing'],IL,103rd +Filed with Secretary,2024-04-18,['filing'],IL,103rd +Filed with Secretary,2024-05-10,['filing'],IL,103rd +Filed with Secretary,2024-05-17,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-05-16,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2024-05-16,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-05-16,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +Filed with Secretary,2024-04-29,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2024-05-15,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-08,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-05-16,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-05-16,['filing'],IL,103rd +Filed with Secretary,2024-05-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-05-01,['filing'],IL,103rd +Filed with Secretary,2024-04-16,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-17,['filing'],IL,103rd +Filed with Secretary,2024-05-17,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with Secretary,2024-05-15,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-05-17,['filing'],IL,103rd +Filed with Secretary,2024-05-01,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-04-20,['filing'],IL,103rd +Filed with Secretary,2024-05-15,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2024-01-16,['filing'],IL,103rd +Filed with Secretary,2024-05-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2024-05-17,['filing'],IL,103rd +Filed with Secretary,2024-05-17,['filing'],IL,103rd +Filed with Secretary,2024-05-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-05-16,['filing'],IL,103rd +Filed with Secretary,2024-05-09,['filing'],IL,103rd +Filed with Secretary,2024-05-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-05-16,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-09-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2024-04-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-11-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-01-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Prefiled with Clerk by Rep. Rita Mayfield,2022-12-21,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-01-24,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-01-25,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-01-25,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-01-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-01-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-25,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Prefiled with Clerk by Rep. Sue Scherer,2022-12-12,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-25,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jonathan Carroll,2023-01-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Prefiled with Clerk by Rep. Margaret Croke,2023-01-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-01-26,['filing'],IL,103rd +Prefiled with Clerk by Rep. Jonathan Carroll,2023-01-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-01-17,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-01-19,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-01-18,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-01-20,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Prefiled with Clerk by Rep. Chris Miller,2023-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-01-31,['filing'],IL,103rd +Prefiled with Clerk by Rep. Chris Miller,2023-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-01-19,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mark L. Walker,2023-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Prefiled with Clerk by Rep. Rita Mayfield,2022-12-21,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mark L. Walker,2023-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-12,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Prefiled with Clerk by Rep. Rita Mayfield,2022-12-21,['filing'],IL,103rd +Prefiled with Clerk by Rep. Rita Mayfield,2022-12-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin McLaughlin,2023-01-25,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-01-23,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-01-25,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Jonathan Carroll,2023-01-18,['filing'],IL,103rd +Prefiled with Clerk by Rep. Will Guzzardi,2023-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-01-19,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-01-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-26,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-01-30,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-01-30,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2024-03-20,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-03-18,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-05-21,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-05-21,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-04-24,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-04-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2024-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2024-04-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-04-02,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-05-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-01-25,['filing'],IL,103rd +Filed with Secretary,2024-03-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2024-05-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-01,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2023-02-01,['filing'],IL,103rd +Prefiled with Clerk by Rep. Anthony DeLuca,2022-12-06,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-01-30,['filing'],IL,103rd +Prefiled with Clerk by Rep. Lance Yednock,2023-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2023-02-02,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-01-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-02,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-01-30,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Maurice A. West, II",2023-01-09,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-07-26,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-01-31,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-01-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-01-20,['filing'],IL,103rd +Filed with Secretary,2024-05-21,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-06,['filing'],IL,103rd +Filed with Secretary,2024-05-20,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +Filed with Secretary,2024-05-17,['filing'],IL,103rd +Filed with Secretary,2024-05-17,['filing'],IL,103rd +Filed with Secretary,2024-05-20,['filing'],IL,103rd +Filed with Secretary,2024-01-31,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with Secretary,2024-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-03,['filing'],IL,103rd +Filed with Secretary,2024-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-01-23,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +Filed with Secretary,2024-05-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-06,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-02-06,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-01-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-05-24,['filing'],IL,103rd +Filed with Secretary,2024-05-24,['filing'],IL,103rd +Filed with Secretary,2024-05-24,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-05-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-05-20,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +Filed with Secretary,2024-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-08-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-02-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-05-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-05-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Wayne A Rosenthal,2023-05-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Wayne A Rosenthal,2023-05-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-05-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Aaron M. Ortiz,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Frances Ann Hurley,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-02-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-02-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Frances Ann Hurley,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2024-05-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. John Egofske,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Diane Blair-Sherlock,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Aaron M. Ortiz,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin McLaughlin,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. John Egofske,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Diane Blair-Sherlock,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin McLaughlin,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2024-06-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Randy E. Frese,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-03-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-05-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-04-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-04-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Jonathan Carroll,2023-04-20,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-21,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2023-02-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-03-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2023-03-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-10-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-03-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2024-09-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-09-13,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-05-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-28,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-05-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-10-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-07-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-12-21,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-03-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-02-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-08-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-27,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-09-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2023-03-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-11-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-03-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-05-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-04-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-03-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-03-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-12-19,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-04-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-04-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-05-04,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-04-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-05-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-04-03,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-05-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2024-01-04,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-05-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-05-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-05-16,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-11-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with Secretary,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-05-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-10-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-09-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-11-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-10-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-10-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Jonathan Carroll,2023-09-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-09-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-09-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2024-01-03,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-01-16,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-10-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-11-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-11-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2024-07-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-08-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-08-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-08-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-08-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-01-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-11-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2024-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-01-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-01-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-03-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-03-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-03-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-04-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-05-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-01-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-04-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2024-01-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2024-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-04-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-05-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-01-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2024-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-05-11,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-01-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-08-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-05-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2024-09-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2024-09-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-08-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-01-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2023-07-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-07-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin McLaughlin,2023-06-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-10-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-10-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-09-28,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-04-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-11-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2024-04-03,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-04-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-04-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2024-01-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-11-27,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-11-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Gill,2024-01-22,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-12-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jason Bunting,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-01-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-01-04,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-12-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-12-21,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2024-02-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2024-01-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2024-01-22,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2024-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-01-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-01-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2024-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2024-01-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-01-26,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-01-25,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-06,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2024-01-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-01-29,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Gill,2024-01-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Diane Blair-Sherlock,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-01-29,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-01-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-03-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2024-01-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-01-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-03-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-03-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-04-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Gill,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-01-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-04-20,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-04-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-03-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-04-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-03-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-03-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2024-03-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-04-11,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-04-14,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-03-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Diane Blair-Sherlock,2023-03-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-05-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-05-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2024-02-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-04-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-02-13,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-10-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2023-05-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2024-01-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2024-02-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2024-02-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-11-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-02-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-03-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-03-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. Emanuel ""Chris"" Welch",2023-03-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-01-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-03-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. John Egofske,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-05-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-05-15,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-05-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-02-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-04-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-03-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-03-01,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-05-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-04-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-04-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-11-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-04-25,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-28,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-03-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-05-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-02-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-05-31,['filing'],IL,103rd +Prefiled with Secretary by Sen. Sara Feigenholtz,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Frances Ann Hurley,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-05-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2023-06-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-07-31,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-05-17,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2023-11-21,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-11-07,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-12-20,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-04-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-04-17,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-11-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-04-24,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-05-03,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-05-01,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-05-10,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-10-16,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-03-13,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2023-03-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-08-31,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-03-15,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-12-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-23,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-11-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-03-29,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2023-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-06-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-05-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-01-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2024-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-03-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-12-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jawaharial Williams,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Frances Ann Hurley,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-11-02,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2023-11-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-05-04,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Porfirio,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-04-19,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-12-13,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-12-21,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-11-15,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-07-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2024-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-01-09,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Wayne A Rosenthal,2023-11-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-12-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2024-02-05,['filing'],IL,103rd +Filed with Secretary,2023-03-23,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2023-01-31,['filing'],IL,103rd +Filed with Secretary,2023-05-25,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-03-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-10-03,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-31,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-04-27,['filing'],IL,103rd +Filed with Secretary,2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-05-08,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2023-01-20,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Gill,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2023-04-25,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-04-25,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-08,['filing'],IL,103rd +Filed with Secretary,2023-03-28,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-01-31,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +Filed with Secretary,2023-05-25,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2024-04-17,['filing'],IL,103rd +Filed with Secretary,2023-05-04,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-01-26,['filing'],IL,103rd +Filed with Secretary,2023-04-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2024-01-12,['filing'],IL,103rd +Filed with Secretary,2023-05-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with Secretary,2023-04-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-20,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2023-01-31,['filing'],IL,103rd +Filed with Secretary,2024-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-08-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-01-25,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-09-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2024-01-19,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-07-17,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-08-10,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-07-06,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2023-01-20,['filing'],IL,103rd +Filed with Secretary,2024-01-12,['filing'],IL,103rd +Filed with Secretary,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-01-26,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-01-03,['filing'],IL,103rd +Filed with Secretary,2024-01-26,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-09-19,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-10-20,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2024-01-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-05-18,['filing'],IL,103rd +Filed with Secretary,2024-01-31,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-07-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-01-20,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-04-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-04-25,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-05-10,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2024-02-21,['filing'],IL,103rd +Filed with Secretary,2023-05-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-07-19,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-17,['filing'],IL,103rd +Filed with Secretary,2023-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-03,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Prefiled with Clerk by Rep. Natalie A. Manley,2023-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-05-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2023-05-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with Secretary,2023-05-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2024-02-21,['filing'],IL,103rd +Filed with Secretary,2023-05-04,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-05-03,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-05-04,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-01-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-03,['filing'],IL,103rd +Filed with Secretary,2023-01-24,['filing'],IL,103rd +Filed with Secretary,2023-05-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with Secretary,2023-05-05,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Gill,2023-12-12,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-01-12,['filing'],IL,103rd +Filed with Secretary,2023-05-25,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-05-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-01-18,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-10-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-05-04,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-02-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-05-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-10-10,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-05-10,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with Secretary,2023-05-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2024-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-01-24,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2023-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-09-18,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2023-05-18,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-11-09,['filing'],IL,103rd +Filed with Secretary,2023-05-19,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-05-04,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2023-05-03,['filing'],IL,103rd +Filed with Secretary,2023-05-02,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-05-18,['filing'],IL,103rd +Filed with Secretary,2023-05-24,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2023-01-31,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-04-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-11-09,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-01-20,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2024-01-31,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2023-07-31,['filing'],IL,103rd +Filed with Secretary,2023-05-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-03,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-04-19,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2023-04-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-05-31,['filing'],IL,103rd +Filed with Secretary,2024-01-17,['filing'],IL,103rd +Filed with Secretary,2023-04-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-12,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-01-31,['filing'],IL,103rd +Filed with Secretary,2023-05-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-05-11,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +Filed with Secretary,2023-04-25,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-06-15,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-01-17,['filing'],IL,103rd +Filed with Secretary,2023-04-27,['filing'],IL,103rd +Filed with Secretary,2023-04-19,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-07-06,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2024-01-12,['filing'],IL,103rd +Filed with Secretary,2023-05-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-01-31,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-11-07,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2023-05-16,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-01-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2024-02-06,['filing'],IL,103rd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-02,[],IL,103rd +Filed with Secretary,2023-05-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Dave Syverson,2023-01-24,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-05-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Randy E. Frese,2023-06-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-01-08,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2024-01-08,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-12-20,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-01-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2024-01-19,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-12-11,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-07-31,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-08-23,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-05-25,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-06-29,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-03,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-01-18,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-10-25,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-06,['filing'],IL,103rd +Filed with Secretary,2023-01-11,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-01-11,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2023-11-09,['filing'],IL,103rd +Filed with Secretary,2023-05-19,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tracy Katz Muhl,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-05-25,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-01-26,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2024-01-16,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-02-06,['filing'],IL,103rd +Filed with Secretary,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-11-29,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-01-08,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-08,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-20,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-11-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-01-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-19,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-06,['filing'],IL,103rd +Filed with Secretary,2023-02-06,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-07,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2024-02-06,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2023-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2024-01-19,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-01-09,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-10-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-03,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-10,['filing'],IL,103rd +Prefiled with Clerk by Rep. Daniel Didech,2022-12-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-11-06,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-08,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-11-06,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-11-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-11-09,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-05-18,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-10-10,['filing'],IL,103rd +Filed with Secretary,2023-05-15,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-24,['filing'],IL,103rd +Filed with Secretary,2023-05-15,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-05-18,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-07,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-05-10,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-05-15,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-05-10,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-02,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-09-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-07,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-05-08,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-18,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2023-01-31,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2023-05-10,['filing'],IL,103rd +Filed with Secretary by Sen. Michael E. Hastings,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-01-17,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-05-18,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-03-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-03-28,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-01-31,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-04-19,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-03-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-03-08,['filing'],IL,103rd +Filed with Secretary,2023-03-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-01-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-03-28,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-31,['filing'],IL,103rd +Filed with Secretary,2023-03-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Diane Blair-Sherlock,2023-10-23,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-11-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-02,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Dave Syverson,2024-01-31,['filing'],IL,103rd +Filed with Secretary,2023-03-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-01-22,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2023-03-23,['filing'],IL,103rd +Filed with Secretary,2023-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-02-21,['filing'],IL,103rd +Filed with Secretary,2023-02-23,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-01-19,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2023-04-12,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-03-02,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2023-03-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-01-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-30,['filing'],IL,103rd +Filed with Secretary,2023-03-07,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-02-23,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-01-30,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-01-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-10-13,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +Filed with Secretary,2023-03-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-01-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2023-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-04-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Yolonda Morris,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Filed with Secretary,2023-03-02,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2023-02-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-05-08,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-05-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-05-08,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2024-02-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-21,['filing'],IL,103rd +Filed with Secretary,2023-03-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-01-30,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-03-02,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-01-27,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-03-02,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-21,['filing'],IL,103rd +Filed with Secretary,2023-03-02,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-04-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Tracy Katz Muhl,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-01-16,['filing'],IL,103rd +Filed with Secretary,2023-04-12,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-03-29,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Dave Syverson,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2024-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-01-18,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-05-25,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-05-25,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2024-01-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-05-25,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-03-28,['filing'],IL,103rd +Filed with Secretary,2023-03-31,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2024-05-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-11-14,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-01-24,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-03-29,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-04-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-12,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-05-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2024-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-03-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-12,['filing'],IL,103rd +Filed with Secretary,2023-03-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2023-10-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-01-12,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-12,['filing'],IL,103rd +Filed with Secretary,2023-02-23,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-04-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-03-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Prefiled with Clerk by Rep. Rita Mayfield,2022-12-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Porfirio,2024-02-06,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Prefiled with Clerk by Rep. Rita Mayfield,2023-01-03,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mark L. Walker,2023-01-04,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-03-23,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2024-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-01-12,['filing'],IL,103rd +Filed with Secretary,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-03-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Wayne A Rosenthal,2024-01-30,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with Secretary,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-01-08,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2024-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2024-02-28,['filing'],IL,103rd +Filed with Secretary,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2024-01-12,['filing'],IL,103rd +Filed with Secretary,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-05-19,['filing'],IL,103rd +Filed with Secretary,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Prefiled with Clerk by Rep. Rita Mayfield,2023-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2023-08-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-01-30,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Dave Syverson,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2023-03-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-03-08,['filing'],IL,103rd +Filed with Secretary,2023-01-20,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Dave Syverson,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-03-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-01,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-02-14,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2024-03-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2023-02-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-02-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2023-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2024-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-04-27,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2023-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-05-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2023-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-01-20,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-03-07,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-02-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-31,['filing'],IL,103rd +Filed with Secretary,2023-01-31,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Emil Jones, III",2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-03-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-01-29,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jawaharial Williams,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2024-02-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2023-03-28,['filing'],IL,103rd +Filed with Secretary,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2024-01-31,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-24,['filing'],IL,103rd +Filed with Secretary,2024-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-03-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2023-03-02,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-03-03,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-03-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-11-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with Secretary,2023-01-24,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-11-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2024-02-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-07-18,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-10-12,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-02-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2023-02-28,['filing'],IL,103rd +Filed with Secretary,2023-02-23,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-11-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-10-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2024-02-07,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-04-19,['filing'],IL,103rd +Filed with Secretary,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2023-03-29,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-04-19,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-04-20,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2024-02-07,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-09-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2023-12-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-02-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-05-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-12-21,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-01-12,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-21,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-09-28,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-04-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-08,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-12-21,['filing'],IL,103rd +Filed with Secretary,2023-01-12,['filing'],IL,103rd +Filed with Secretary,2023-04-26,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2023-10-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-12-20,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-10-24,['filing'],IL,103rd +Filed with Secretary,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2023-10-23,['filing'],IL,103rd +Filed with Secretary,2023-05-04,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2024-02-05,['filing'],IL,103rd +Filed with Secretary,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-09-29,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2023-01-20,['filing'],IL,103rd +Filed with Secretary,2023-05-15,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2024-01-24,['filing'],IL,103rd +Filed with Secretary,2023-04-26,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary,2024-01-16,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-12-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-01-17,['filing'],IL,103rd +Filed with Secretary,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-03-07,['filing'],IL,103rd +Filed with Secretary,2023-05-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2023-01-12,['filing'],IL,103rd +Filed with Secretary,2023-03-02,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-05-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-10-20,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-12-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-12-18,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-02-14,['filing'],IL,103rd +Filed with Secretary,2023-02-06,['filing'],IL,103rd +Filed with Secretary,2023-04-26,['filing'],IL,103rd +Filed with Secretary by Sen. Dave Syverson,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-04-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-10-20,['filing'],IL,103rd +Filed with Secretary,2024-02-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-12-21,['filing'],IL,103rd +Filed with Secretary,2024-01-19,['filing'],IL,103rd +Filed with Secretary,2023-04-26,['filing'],IL,103rd +"Filed with the Clerk by Rep. Emanuel ""Chris"" Welch",2024-01-11,['filing'],IL,103rd +Filed with Secretary,2023-05-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-02-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2024-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-09-26,['filing'],IL,103rd +Filed with Secretary,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2024-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-02-14,['filing'],IL,103rd +Filed with Secretary,2023-05-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-08,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-11-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-01-31,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-08-30,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin McLaughlin,2023-12-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2023-10-24,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-12-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2024-02-08,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-02,['filing'],IL,103rd +Prefiled with Secretary by Sen. Sara Feigenholtz,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-09,['filing'],IL,103rd +Prefiled with Secretary by Sen. Dave Syverson,2023-01-20,['filing'],IL,103rd +"Filed with Secretary by Sen. Emil Jones, III",2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Dave Syverson,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Frances Ann Hurley,2023-02-27,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Gill,2024-01-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-04-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-04-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-04-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-04-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2023-04-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-03-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-04-03,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2023-04-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-04-11,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-03-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-03-30,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-04-13,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-04-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-04-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-04-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-02-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-01-04,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-06-05,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-06-04,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-06-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-05-01,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-05-01,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-10-24,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-06-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-06-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-04-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-01-24,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Yolonda Morris,2024-04-29,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2024-02-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2024-04-29,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-04-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-05-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-04-28,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-01-23,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-08,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-01-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-01-31,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-04-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-05-21,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-05-21,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2024-05-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-05-21,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-05-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-12-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-01-19,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-05-03,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2024-05-22,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-05-24,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-05-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2024-05-07,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2024-01-31,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-05-16,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-03-11,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2024-03-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2024-03-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-05-23,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-04-09,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2024-03-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-11-06,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-01-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2024-05-07,['filing'],IL,103rd +Filed with Secretary,2024-05-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2023-07-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2024-08-22,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2024-01-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-05-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2023-05-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-05-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-05-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-05-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Yolonda Morris,2024-03-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Yolonda Morris,2024-03-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Yolonda Morris,2024-03-13,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-03-12,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-04-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2024-03-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2024-02-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-03-12,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-03-12,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2024-05-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-09-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2023-11-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-05-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-10-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-11-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-30,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2024-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-08-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tracy Katz Muhl,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-01-20,['filing'],IL,103rd +Filed with Secretary,2024-05-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2024-05-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-04-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-04-05,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-01-17,['filing'],IL,103rd +Filed with Secretary,2024-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-01,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-05-01,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-05-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Emanuel ""Chris"" Welch",2023-03-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-08-12,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-02-02,['filing'],IL,103rd +Prefiled with Clerk by Rep. Steven Reick,2023-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-11-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-11-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-03-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-05-24,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-04-30,['filing'],IL,103rd +Filed with Secretary,2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with Secretary,2024-02-28,['filing'],IL,103rd +Filed with Secretary,2023-11-08,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-07,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-02-07,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2024-01-31,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-03-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-03-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-03-14,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-11-07,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-11-06,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2024-01-16,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2023-10-31,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-10-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-10-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2023-11-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-08-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-08-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-08-09,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-11-07,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-04-26,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-20,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-20,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-16,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Gill,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-04-11,['filing'],IL,103rd +Filed with Secretary,2024-03-12,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2024-03-13,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-01-26,['filing'],IL,103rd +Filed with Secretary,2024-03-12,['filing'],IL,103rd +Filed with Secretary,2024-03-12,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-06-29,['filing'],IL,103rd +Filed with Secretary,2024-03-12,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2024-03-13,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-03-13,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-05-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2024-04-01,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-01-24,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-05-08,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-05-08,['filing'],IL,103rd +Filed with Secretary,2024-03-12,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2024-05-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Diane Blair-Sherlock,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-10-10,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-12-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-08-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-09-29,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Diane Blair-Sherlock,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2024-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Aaron M. Ortiz,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Diane Blair-Sherlock,2024-02-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-04-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2023-05-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-04-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Aaron M. Ortiz,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-03-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-05-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-04-10,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicole La Ha,2024-03-05,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2024-03-12,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2024-04-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-01-19,['filing'],IL,103rd +"Filed with the Clerk by Rep. Emanuel ""Chris"" Welch",2023-09-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-04-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-10-25,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Diane Blair-Sherlock,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-08-15,['filing'],IL,103rd +Prefiled with Clerk by Rep. Lance Yednock,2023-01-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2024-04-15,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jawaharial Williams,2024-01-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-04-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-03-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2024-01-29,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2024-01-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-11-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-04-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-05-03,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-05-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-05-03,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-04-30,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-03-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-05-01,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2024-01-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Wayne A Rosenthal,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-04-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-05-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Wayne A Rosenthal,2023-12-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-05-23,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-05-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2024-01-12,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-02-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2024-05-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-05-03,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-05-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2024-01-03,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Gill,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Sheehan,2024-04-30,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-03-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2024-01-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-01-24,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-01-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-01-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2024-01-19,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin McLaughlin,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin McLaughlin,2024-01-19,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Diane Blair-Sherlock,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-01-08,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Wayne A Rosenthal,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-04-22,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-04-03,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-09-27,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2024-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2024-01-19,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Yolonda Morris,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-11-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2023-10-23,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-11-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jonathan Carroll,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-05-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-02-17,['filing'],IL,103rd +Prefiled with Secretary by Sen. David Koehler,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-10-24,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2024-04-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-04-29,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-12-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-02-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Diane Blair-Sherlock,2024-03-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-02-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-11-01,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-11-08,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-05-04,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-24,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-03-07,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-14,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-06,['filing'],IL,103rd +Prefiled with Secretary by Sen. Cristina Castro,2023-01-20,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-12-14,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-12-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-11-29,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2024-05-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-12-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-12-04,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-09-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-01-24,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-07-31,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-12-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2024-05-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2024-05-13,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2023-02-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Frances Ann Hurley,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-02-17,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2024-05-10,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-01-24,['filing'],IL,103rd +Filed with Secretary,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-05-24,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-03-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2024-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Wayne A Rosenthal,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-05-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-02-20,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-09-11,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-24,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-09-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-01-18,['filing'],IL,103rd +Filed with Secretary,2024-05-14,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2024-05-14,['filing'],IL,103rd +Filed with Secretary,2024-05-20,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-10-19,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-01-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-01-20,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-04-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-04-29,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-03,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2023-04-24,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2023-04-24,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-04-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Porfirio,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-03-27,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-05-13,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-05-03,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2024-05-13,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-05-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-01-30,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-03,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-05-09,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-09-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-05-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-23,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-07-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2024-04-16,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-03-14,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-08-21,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2024-04-16,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +Filed with Secretary,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2024-02-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-01-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2024-02-13,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-01-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-05-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-05-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2024-05-14,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-05-14,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-05-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-05-16,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-03-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2023-05-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-03-27,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2024-02-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. Michael E. Hastings,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-22,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-08,['filing'],IL,103rd +"Filed with Secretary by Sen. Emil Jones, III",2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2024-02-08,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Gill,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2024-01-16,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-01-19,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-01-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2023-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2024-01-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2024-01-04,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-07-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-12-04,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-07,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2024-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-03,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-04-10,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-12,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-02-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-01-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-07,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-10,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Porfirio,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2024-01-16,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-01-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2024-01-11,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2024-01-05,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-01-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Diane Blair-Sherlock,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2024-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2024-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-12-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-01-03,['filing'],IL,103rd +Filed with Secretary,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-05-24,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-03-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-10-26,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-10-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-12-11,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2023-10-24,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-09-25,['filing'],IL,103rd +Filed with Secretary,2024-03-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-09-20,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-05-20,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-01-22,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-01-22,['filing'],IL,103rd +Filed with Secretary,2024-03-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-09-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-04-20,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-01-11,['filing'],IL,103rd +Filed with Secretary,2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-01,['filing'],IL,103rd +Prefiled with Clerk by Rep. Anthony DeLuca,2023-01-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-01-11,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2024-01-22,['filing'],IL,103rd +Filed with Secretary,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-01-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-05-04,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2023-05-04,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-01-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-01-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-01-24,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2023-12-21,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-12-21,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-02-23,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-12-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Gill,2024-01-22,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-01-22,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-17,['filing'],IL,103rd +Filed with Secretary,2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-01-04,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-11-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-12-14,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-03,['filing'],IL,103rd +Filed with Secretary,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-01-19,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-10-23,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2024-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-12-21,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-11-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-08,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-10-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with Secretary,2024-05-20,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Dave Syverson,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-01-17,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-01-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-10-27,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-09-19,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-06-06,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-05-10,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-27,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-21,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2024-04-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-05-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-10-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2023-03-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-03,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2023-03-10,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Randy E. Frese,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-07-18,['filing'],IL,103rd +Filed with Secretary,2024-05-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-03-24,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-17,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-27,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicole La Ha,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-22,['filing'],IL,103rd +Filed with Secretary,2024-04-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-05-28,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Brandun Schweizer,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Yolonda Morris,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-12-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Randy E. Frese,2023-12-20,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-12-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-11-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2024-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Frances Ann Hurley,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-02-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-01-26,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-04-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-17,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-03-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Porfirio,2024-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-03-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. Rita Mayfield,2022-12-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-03-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-17,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-03-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-03-22,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-03-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-03-22,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-02-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. Rita Mayfield,2022-12-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jonathan Carroll,2023-03-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-03-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-03-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Frances Ann Hurley,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-03-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-05-20,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-03-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-03-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2024-04-12,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-05-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-02-16,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-04-12,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-05-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2024-04-12,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Brandun Schweizer,2024-04-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-04-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Wayne A Rosenthal,2024-04-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-07-11,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Randy E. Frese,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-02-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-14,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-07-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2024-03-20,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-03-18,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-03-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2024-02-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin McLaughlin,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-04-15,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2023-02-14,['filing'],IL,103rd +Filed with Secretary,2024-05-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-02-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2024-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-16,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-02,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-03-20,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-03-20,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-05-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-05-24,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2024-01-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2024-01-23,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2024-04-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-01-31,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-05-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-07,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2023-03-23,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2024-02-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-02,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary,2023-05-11,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-02-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-08,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2024-01-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-10-23,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-12-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-02,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-09-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2024-09-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-02-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-10-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2023-02-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-01-25,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-05-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2024-04-29,['filing'],IL,103rd +Filed with Secretary,2024-05-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jawaharial Williams,2024-03-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-15,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2024-02-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-02,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2024-02-09,['filing'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-01,[],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Frances Ann Hurley,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-11-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-05,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2024-04-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Prefiled with Clerk by Rep. Rita Mayfield,2022-12-29,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-31,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-04-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2024-04-12,['filing'],IL,103rd +Prefiled with Clerk by Rep. Rita Mayfield,2022-12-21,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Michael E. Hastings,2024-05-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-02-14,['filing'],IL,103rd +Prefiled with Clerk by Rep. Rita Mayfield,2022-12-21,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2024-01-04,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-31,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2023-02-27,['filing'],IL,103rd +Filed with Secretary,2023-04-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-01-31,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with Secretary,2024-05-25,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2024-02-01,['filing'],IL,103rd +Filed with Secretary,2023-04-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2023-02-14,['filing'],IL,103rd +Filed with Secretary,2023-03-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-01-31,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-03-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2024-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2024-02-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-26,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-01-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2023-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-01-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-01-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-31,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-16,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-01-25,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-14,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2024-02-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-14,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-12-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-02-14,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2024-02-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-01-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lamont J. Robinson, Jr.",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-24,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-05-10,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2023-01-31,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-08,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-12,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-03,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-02-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-01-24,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-05-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-11-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin McLaughlin,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2024-02-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-01-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2024-02-05,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2023-05-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Maurice A. West, II",2023-01-04,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2024-05-09,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-01-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-03-21,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-03-20,['filing'],IL,103rd +Filed with Secretary,2024-05-21,['filing'],IL,103rd +Prefiled with Secretary by Sen. Sara Feigenholtz,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Prefiled with Secretary by Sen. Sara Feigenholtz,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-05-17,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-05-17,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-05-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-11-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-05-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tracy Katz Muhl,2024-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-02-15,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-04-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tracy Katz Muhl,2024-05-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-05-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Gill,2024-05-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2024-05-17,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2024-05-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-05-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2024-01-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-05-12,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Prefiled with Secretary by Sen. Linda Holmes,2023-01-20,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin McLaughlin,2023-05-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-03-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-24,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-10-27,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2024-05-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-07-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-03-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-02-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-15,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2024-02-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Frances Ann Hurley,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-04-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +Filed with Secretary,2024-05-21,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jonathan Carroll,2023-02-14,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-05-23,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-01-24,['filing'],IL,103rd +Filed with Secretary,2024-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-02-14,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-05-25,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-31,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-05-23,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2024-05-23,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-11-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2024-05-23,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-05-11,['filing'],IL,103rd +Filed with Secretary,2024-05-25,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-02-28,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-01-24,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2023-10-24,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2023-01-24,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2023-02-24,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-01-03,['filing'],IL,103rd +Filed with Secretary,2024-05-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2024-01-09,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-01-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-09-14,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-11-07,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Aaron M. Ortiz,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-19,['filing'],IL,103rd +Filed with Secretary,2023-04-26,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-04-25,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2023-02-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. Will Guzzardi,2023-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2023-02-14,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-02,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-05-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-10,['filing'],IL,103rd +Filed with Secretary,2023-05-11,['filing'],IL,103rd +Filed with Secretary,2023-05-10,['filing'],IL,103rd +Filed with Secretary,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-01-25,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-14,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-04-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-08,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-09,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-01-19,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-05-04,['filing'],IL,103rd +Filed with Secretary,2023-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-01-18,['filing'],IL,103rd +Filed with Secretary,2023-05-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-02-14,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-26,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-10-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-11,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-04-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-14,['filing'],IL,103rd +Filed with Secretary,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-09-28,['filing'],IL,103rd +Filed with Secretary,2023-04-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-08-31,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-14,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2023-09-27,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-15,['filing'],IL,103rd +Filed with Secretary,2023-04-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-19,['filing'],IL,103rd +Prefiled with Clerk by Rep. Michelle Mussman,2023-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-10-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. Lance Yednock,2023-01-04,['filing'],IL,103rd +Filed with Secretary,2023-05-10,['filing'],IL,103rd +Filed with Secretary,2023-04-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-16,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with Secretary,2023-05-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-01-20,['filing'],IL,103rd +Filed with Secretary,2023-05-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-02-15,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-09-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-09-08,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-05-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-10-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-03,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-08-14,['filing'],IL,103rd +Filed with Secretary,2023-05-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-03,['filing'],IL,103rd +Filed with Secretary,2023-05-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-11-09,['filing'],IL,103rd +Filed with Secretary,2023-05-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-11,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-15,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-09-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-01-25,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-04-25,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Prefiled with Clerk by Rep. Camille Y. Lilly,2023-01-03,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-11-07,['filing'],IL,103rd +Filed with Secretary,2023-05-02,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-03,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-11-06,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-06-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-11-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-01-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-11-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-08-29,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin McLaughlin,2023-01-24,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-04-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-10-20,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-11-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-04-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-01-27,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-02-15,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Randy E. Frese,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2024-05-25,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2023-01-17,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-04-27,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-01-18,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-02-15,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-11,['filing'],IL,103rd +Filed with Secretary,2023-03-30,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-04-27,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-15,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-03,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-05-16,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-15,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-03,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2024-03-07,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-01-17,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-25,['filing'],IL,103rd +Filed with Secretary,2023-11-09,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-08-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-02-06,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-02-21,['filing'],IL,103rd +Filed with Secretary,2023-11-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-02-07,['filing'],IL,103rd +Prefiled with Clerk by Rep. Daniel Didech,2022-12-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-01-18,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with Secretary,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-15,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-02-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-08-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-03,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with Secretary,2023-05-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-01-31,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-08-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Porfirio,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-04-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-01-12,['filing'],IL,103rd +Filed with Secretary,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-01-30,['filing'],IL,103rd +Filed with Secretary,2023-03-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-03-07,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Wayne A Rosenthal,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-19,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Prefiled with Clerk by Rep. Rita Mayfield,2022-12-20,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Emanuel ""Chris"" Welch",2023-02-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-06,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-01-25,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-03-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2023-03-29,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-02-06,['filing'],IL,103rd +Filed with Secretary,2023-03-30,['filing'],IL,103rd +Prefiled with Clerk by Rep. Will Guzzardi,2023-01-10,['filing'],IL,103rd +Filed with Secretary,2023-05-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-03,['filing'],IL,103rd +Filed with Secretary,2023-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-03-07,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-05-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jawaharial Williams,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-05-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2023-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-01-30,['filing'],IL,103rd +Filed with Secretary,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-02-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-03,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-01-18,['filing'],IL,103rd +Filed with Secretary,2023-05-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2023-11-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2023-02-03,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2024-01-31,['filing'],IL,103rd +Filed with Secretary,2024-01-24,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-01-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-08,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Prefiled with Clerk by Rep. Margaret Croke,2023-01-06,['filing'],IL,103rd +Filed with Secretary,2023-11-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2023-01-24,['filing'],IL,103rd +Filed with Secretary,2023-11-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-05-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-05-16,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Jawaharial Williams,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-02-06,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2023-05-04,['filing'],IL,103rd +Filed with Secretary,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-03,['filing'],IL,103rd +Filed with Secretary,2023-11-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2023-01-30,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-01-25,['filing'],IL,103rd +Filed with Secretary,2023-11-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-11-09,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Prefiled with Clerk by Rep. Will Guzzardi,2023-01-10,['filing'],IL,103rd +Filed with Secretary,2023-05-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-09-08,['filing'],IL,103rd +Filed with Secretary,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with Secretary,2023-05-02,['filing'],IL,103rd +Filed with Secretary,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2024-02-20,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Prefiled with Clerk by Rep. Kam Buckner,2023-01-06,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2023-09-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2023-04-25,['filing'],IL,103rd +Filed with Secretary,2023-11-08,['filing'],IL,103rd +Filed with Secretary,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-06-09,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Randy E. Frese,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with Secretary,2024-01-26,['filing'],IL,103rd +Filed with Secretary,2023-11-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael T. Marron,2023-09-19,['filing'],IL,103rd +Filed with Secretary,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-10-11,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Prefiled with Clerk by Rep. Jonathan Carroll,2023-01-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Randy E. Frese,2023-09-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-09-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2023-10-12,['filing'],IL,103rd +Filed with Secretary,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2023-02-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-09-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-09-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-08-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-14,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-09-08,['filing'],IL,103rd +Filed with Secretary,2023-05-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-09-08,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Lakesia Collins,2023-02-08,['filing'],IL,103rd +Filed with Secretary,2023-05-02,['filing'],IL,103rd +Prefiled with Clerk by Rep. Jay Hoffman,2023-01-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-08-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-10-25,['filing'],IL,103rd +Filed with Secretary,2023-03-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-04-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-02-17,['filing'],IL,103rd +Filed with Secretary,2023-08-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary,2023-05-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-09,['filing'],IL,103rd +Filed with Secretary,2023-05-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-11-08,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-08,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-05-24,['filing'],IL,103rd +Filed with Secretary by Sen. Michael E. Hastings,2023-11-07,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-11-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-10-26,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2024-04-01,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-11-08,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2024-03-27,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-04-02,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Porfirio,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2024-04-01,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-04-01,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2023-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Michael E. Hastings,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Porfirio,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2023-05-02,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-01-16,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-05-02,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-04-28,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-05-02,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-31,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-03-15,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Win Stoller,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-01-16,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Natalie Toro,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Emanuel ""Chris"" Welch",2024-05-08,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Porfirio,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-01-23,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Craig Wilcox,2023-01-31,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Michael E. Hastings,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Paul Jacobs,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-01-16,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-04-04,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2024-02-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-01-16,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-04-08,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicholas K. Smith,2024-04-09,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-10-26,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-05-11,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Diane Blair-Sherlock,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-04-09,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Chapin Rose,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2024-04-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-01-18,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Emanuel ""Chris"" Welch",2024-04-09,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-03-23,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Michael E. Hastings,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-01-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2024-04-04,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Neil Anderson,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Porfirio,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2024-03-06,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jason Bunting,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-10-26,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-05-25,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Emanuel ""Chris"" Welch",2023-05-26,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-02-21,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-02-09,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Michael E. Hastings,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2024-05-02,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-05-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-04-29,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Seth Lewis,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-05-02,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2024-05-02,['filing'],IL,103rd +Prefiled with Clerk by Rep. Rita Mayfield,2022-12-21,['filing'],IL,103rd +Filed with Secretary,2024-04-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-02-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2024-08-19,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-03-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2024-04-29,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-03-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-05-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-03-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-04-27,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-03-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-03-16,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-01-27,['filing'],IL,103rd +"Filed with the Clerk by Rep. Jaime M. Andrade, Jr.",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-03-20,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brandun Schweizer,2024-08-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin Schmidt,2023-04-19,['filing'],IL,103rd +Filed with Secretary,2024-04-30,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-04-19,['filing'],IL,103rd +Filed with Secretary,2024-05-01,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-01-30,['filing'],IL,103rd +Filed with Secretary,2024-04-30,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-10-18,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with Secretary,2024-05-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-05-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-04-18,['filing'],IL,103rd +Filed with Secretary,2024-04-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-04-18,['filing'],IL,103rd +Filed with Secretary,2024-05-02,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-04-18,['filing'],IL,103rd +Filed with Secretary,2024-04-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-04-18,['filing'],IL,103rd +Filed with Secretary,2024-04-29,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-01-26,['filing'],IL,103rd +Filed with Secretary,2024-05-02,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-02-02,['filing'],IL,103rd +Filed with Secretary,2024-04-30,['filing'],IL,103rd +Filed with Secretary by Sen. Jason Plummer,2023-02-15,['filing'],IL,103rd +Filed with Secretary,2024-04-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-11-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2024-01-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-01-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2024-01-05,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-11-03,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-01-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-05-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Wayne A Rosenthal,2024-05-07,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2024-05-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-08-28,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-08-28,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with Secretary,2024-03-12,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Porfirio,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-09-21,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-03-13,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Yolonda Morris,2024-03-13,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Yolonda Morris,2024-03-13,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Donald P. DeWitte,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-05-02,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-04-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Jonathan Carroll,2023-05-17,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Dan McConchie,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-11-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-11-07,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2023-08-21,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2024-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with Secretary,2024-04-18,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-11-07,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-05-03,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-05-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-04-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-12-19,['filing'],IL,103rd +Filed with Secretary by Sen. Dave Syverson,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-11-02,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-10,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-03-12,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Sara Feigenholtz,2024-03-12,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-10-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2024-05-06,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2024-05-03,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-05-03,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Theresa Mah,2024-05-03,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2024-04-26,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-05-06,['filing'],IL,103rd +Filed with Secretary,2023-10-24,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-07-06,['filing'],IL,103rd +Filed with Secretary,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-05-03,['filing'],IL,103rd +Filed with Secretary,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2024-01-24,['filing'],IL,103rd +Filed with Secretary,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-10,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-02-16,['filing'],IL,103rd +Filed with Secretary,2024-03-05,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2023-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-04-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-07,['filing'],IL,103rd +Filed with Secretary,2024-01-10,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2024-02-07,['filing'],IL,103rd +Filed with Secretary,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-02-06,['filing'],IL,103rd +Filed with Secretary,2024-04-24,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-04-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Brandun Schweizer,2024-05-22,['filing'],IL,103rd +Filed with Secretary,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-01-17,['filing'],IL,103rd +Filed with Secretary,2024-03-21,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Erica Harriss,2023-10-18,['filing'],IL,103rd +Filed with Secretary,2024-03-12,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Sally J. Turner,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2023-01-18,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2023-04-27,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-05-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Wayne A Rosenthal,2024-05-22,['filing'],IL,103rd +"Filed with the Clerk by Rep. Emanuel ""Chris"" Welch",2023-11-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-11-09,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-05-22,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Simmons,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-29,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. John Egofske,2023-03-29,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-02-10,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2022-12-19,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2023-03-29,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-05-01,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Prefiled with Clerk by Rep. Mary E. Flowers,2023-01-04,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2023-02-15,['filing'],IL,103rd +Prefiled with Clerk by Rep. Lance Yednock,2023-01-03,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-10-16,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-01-11,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-11-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-05-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2024-06-13,['filing'],IL,103rd +Filed with Secretary by Sen. Mattie Hunter,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2024-05-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Sue Scherer,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2024-04-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2024-01-04,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-05,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Steve Stadelman,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Jil Tracy,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-02-09,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Lakesia Collins,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2024-04-29,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tracy Katz Muhl,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-02-08,[],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-10,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-04-19,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Ellman,2023-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin McLaughlin,2023-03-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Andrew S. Chesney,2023-10-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-01-18,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2023-10-26,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2024-04-12,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-08-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-05-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-12-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2023-10-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary E. Flowers,2023-09-22,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-03-29,['filing'],IL,103rd +Filed with Secretary by Sen. Bill Cunningham,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Mary Edly-Allen,2024-01-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2024-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. Rachel Ventura,2024-01-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-02-05,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Tom Bennett,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2024-05-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Emanuel ""Chris"" Welch",2024-04-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-04-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2024-01-22,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2023-03-01,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2023-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2024-01-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Eva-Dina Delgado,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Mike Porfirio,2023-10-18,['filing'],IL,103rd +"Filed with Secretary by Sen. Emil Jones, III",2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Doris Turner,2023-10-24,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-12-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-03-13,['filing'],IL,103rd +Filed with Secretary by Sen. Javier L. Cervantes,2023-05-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-01-30,['filing'],IL,103rd +Filed with Secretary,2024-05-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Omar Aquino,2023-02-09,['filing'],IL,103rd +"Filed with Secretary by Sen. Emil Jones, III",2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2024-08-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2024-05-08,['filing'],IL,103rd +Filed with Secretary by Sen. Christopher Belt,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Bob Morgan,2023-12-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-02-27,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-04-17,['filing'],IL,103rd +Filed with Secretary,2024-03-14,['filing'],IL,103rd +Filed with Secretary,2024-03-14,['filing'],IL,103rd +Filed with Secretary,2024-03-14,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-09,['filing'],IL,103rd +Filed with Secretary,2024-03-14,['filing'],IL,103rd +Filed with Secretary,2024-03-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-01-31,['filing'],IL,103rd +Filed with Secretary,2024-05-08,['filing'],IL,103rd +Filed with Secretary,2024-05-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-04-24,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-03-20,['filing'],IL,103rd +Filed with Secretary by Sen. Adriane Johnson,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2024-01-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2024-04-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2023-09-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Martin J. Moylan,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-08-22,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2023-05-22,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tim Ozinga,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-01-29,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lance Yednock,2023-05-15,['filing'],IL,103rd +Filed with Secretary by Sen. Dale Fowler,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-01-19,['filing'],IL,103rd +"Filed with the Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-05-09,['filing'],IL,103rd +Filed with Secretary by Sen. Cristina Castro,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Meg Loughran Cappel,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Prefiled with Clerk by Rep. Steven Reick,2023-01-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-10-18,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-10-12,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-11-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tracy Katz Muhl,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2023-08-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2024-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2024-01-17,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Maurice A. West, II",2023-01-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-01-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Joe C. Sosnowski,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Terri Bryant,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-12-19,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-01-17,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-01-18,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Norma Hernandez,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-01-12,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-01-09,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-01-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jehan Gordon-Booth,2024-03-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. David Koehler,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Nicole La Ha,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-01-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2024-01-22,['filing'],IL,103rd +Filed with Secretary by Sen. Julie A. Morrison,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. William E Hauter,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jeff Keicher,2024-01-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-25,['filing'],IL,103rd +Filed with Secretary,2024-03-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Caulkins,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-01-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-01-29,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jawaharial Williams,2023-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Norine K. Hammond,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jawaharial Williams,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2023-01-25,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2024-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-01-26,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-10-23,['filing'],IL,103rd +Filed with the Clerk by Rep. Mark L. Walker,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Sharon Chung,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2023-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Steven Reick,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2023-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Gill,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. David Friess,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-01-23,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-12-04,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-12-04,['filing'],IL,103rd +Filed with Secretary,2024-03-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2023-12-21,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-08,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Kam Buckner,2023-12-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-03-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Diane Blair-Sherlock,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy L. Grant,2024-02-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-03-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Chris Miller,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Mary Beth Canty,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-03-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-16,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Emanuel ""Chris"" Welch",2024-03-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Wayne A Rosenthal,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-03-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2024-02-27,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Maura Hirschauer,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2024-02-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2024-03-20,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-03-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2024-04-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2024-03-12,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2024-04-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2024-04-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Halbrook,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Patrick Windhorst,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2024-04-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Margaret Croke,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Thaddeus Jones,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Ann Gillespie,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2024-04-10,['filing'],IL,103rd +"Filed with the Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-03-19,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-03-13,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Tom Weber,2024-05-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Brandun Schweizer,2024-04-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-04-29,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2024-04-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Tracy Katz Muhl,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Travis Weaver,2024-04-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Kimberly Du Buclet,2024-04-29,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-05-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Swanson,2023-05-03,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Robert ""Bob"" Rita",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Joyce Mason,2024-05-20,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2023-02-14,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2024-02-01,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Gregg Johnson,2023-10-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2024-05-21,['filing'],IL,103rd +Filed with the Clerk by Rep. Brandun Schweizer,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-02-06,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-05-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Debbie Meyers-Martin,2024-05-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-05-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-05-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-01-23,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-02-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2024-02-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Natalie A. Manley,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Robert F. Martwick,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-01-19,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2024-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-03-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Angelica Guerrero-Cuellar,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2024-01-26,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-02-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Paul Faraci,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2024-03-15,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Gong-Gershowitz,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Aaron M. Ortiz,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-03-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-12-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. La Shawn K. Ford,2024-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Maurice A. West, II",2024-04-30,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kevin John Olickal,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Patrick J. Joyce,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Anthony DeLuca,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tracy Katz Muhl,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jennifer Sanalitro,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with the Clerk by Rep. Adam M. Niemerg,2023-05-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Laura Faver Dias,2024-04-04,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Steve McClure,2023-02-03,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-01-11,['filing'],IL,103rd +"Filed with the Clerk by Rep. Michael J. Coffey, Jr.",2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-14,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-22,['filing'],IL,103rd +"Filed with the Clerk by Rep. William ""Will"" Davis",2023-02-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-03-20,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-03-22,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Robyn Gabel,2024-01-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Jenn Ladisch Douglass,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-02-28,['filing'],IL,103rd +"Filed with Secretary by Sen. Napoleon Harris, III",2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Abdelnasser Rashid,2023-08-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Ryan Spain,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Ann M. Williams,2024-01-31,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lindsey LaPointe,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Hoan Huynh,2023-10-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Curtis J. Tarver, II",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2024-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-02-08,['filing'],IL,103rd +Filed with the Clerk by Rep. Janet Yang Rohr,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jay Hoffman,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2023-01-19,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Will Guzzardi,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Rita Mayfield,2023-04-18,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-01,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Celina Villanueva,2023-02-06,['filing'],IL,103rd +Filed with the Clerk by Rep. Jackie Haas,2024-02-07,['filing'],IL,103rd +Filed with the Clerk by Rep. Justin Slaughter,2023-05-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-02-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Aaron M. Ortiz,2023-02-15,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dagmara Avelar,2024-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2023-02-17,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-02-07,['filing'],IL,103rd +"Filed with the Clerk by Rep. Emanuel ""Chris"" Welch",2023-05-23,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Cassidy,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-02-03,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2023-03-06,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Michael J. Kelly,2023-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +"Filed with the Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Prefiled with Secretary by Sen. Sara Feigenholtz,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Sonya M. Harper,2024-02-07,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Michael W. Halpin,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Barbara Hernandez,2024-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Kelly M. Burke,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Lilian Jiménez,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Carol Ammons,2023-05-22,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2023-02-10,['filing'],IL,103rd +Filed with the Clerk by Rep. Jason Bunting,2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Prefiled with Clerk by Rep. Emanuel ""Chris"" Welch",2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-06-11,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Nabeela Syed,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Amy Elik,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Sue Rezin,2023-01-20,['filing'],IL,103rd +Filed with the Clerk by Rep. Jawaharial Williams,2024-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Anna Moeller,2024-01-30,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Katie Stuart,2024-01-31,['filing'],IL,103rd +"Filed with the Clerk by Rep. Marcus C. Evans, Jr.",2024-02-08,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-05-10,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-06-11,['filing'],IL,103rd +Filed with Secretary by Sen. Robert Peters,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Jed Davis,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Stephanie A. Kifowit,2023-05-10,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +Filed with Secretary,2024-03-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Michelle Mussman,2024-02-01,['filing'],IL,103rd +Filed with the Clerk by Rep. Bradley Fritts,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Matt Hanson,2024-01-23,['filing'],IL,103rd +Filed with Secretary,2024-03-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +"Filed with the Clerk by Rep. Edgar Gonzalez, Jr.",2023-02-16,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-04-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Daniel Didech,2024-01-30,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Harry Benton,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-20,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-03-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. John M. Cabello,2024-01-03,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura M. Murphy,2023-01-24,['filing'],IL,103rd +Filed with Secretary,2024-03-20,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +"Filed with the Clerk by Rep. Dennis Tipsword, Jr.",2023-04-24,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Terra Costa Howard,2024-02-05,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Ram Villivalam,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Laura Fine,2023-01-24,['filing'],IL,103rd +Filed with Secretary by Sen. Linda Holmes,2023-01-24,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Fred Crespo,2024-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Karina Villa,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Blaine Wilhour,2023-02-17,['filing'],IL,103rd +Prefiled with Clerk by Rep. La Shawn K. Ford,2022-12-05,['filing'],IL,103rd +Filed with the Clerk by Rep. Charles Meier,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Dan Ugaste,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Suzanne M. Ness,2023-05-15,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Severin,2023-02-17,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary,2024-03-20,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2024-01-25,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Camille Y. Lilly,2024-02-08,['filing'],IL,103rd +Filed with Secretary,2024-03-21,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with the Clerk by Rep. Anne Stava-Murray,2024-01-25,['filing'],IL,103rd +Filed with the Clerk by Rep. Dave Vella,2023-01-17,['filing'],IL,103rd +Filed with the Clerk by Rep. Tony M. McCombie,2024-02-09,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Brad Stephens,2023-05-02,['filing'],IL,103rd +Filed with the Clerk by Rep. Cyril Nichols,2023-04-26,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Filed with Secretary by Sen. John F. Curran,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-02-02,['filing'],IL,103rd +Filed with Secretary by Sen. Don Harmon,2023-01-31,['filing'],IL,103rd +Co-Sponsor All Senators,2024-03-20,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-02-08,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-11,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-11,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Amy L. Grant,2023-02-17,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Amy L. Grant,2024-02-08,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-05-03,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-01-29,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-08-18,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-05-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-22,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Adam M. Niemerg,2023-01-19,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-10-23,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Amy L. Grant,2024-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2023-02-17,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-01-19,[],IL,103rd +Chief Sponsor Changed to Rep. Michael J. Kelly,2024-01-03,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-01-09,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-08-18,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Chief Sponsor Changed to Rep. Angelica Guerrero-Cuellar,2023-02-08,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-24,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2023-05-02,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Chief Sponsor Changed to Rep. Justin Slaughter,2024-01-03,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-02-14,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-24,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-24,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-04-19,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-22,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-20,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Referred to Rules Committee,2023-05-18,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-01,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. Barbara Hernandez,2024-04-24,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-20,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-21,[],IL,103rd +Referred to Rules Committee,2023-05-10,[],IL,103rd +Referred to Rules Committee,2023-05-02,[],IL,103rd +Referred to Rules Committee,2024-05-28,[],IL,103rd +Referred to Rules Committee,2023-05-10,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-22,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-25,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2024-05-20,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-20,[],IL,103rd +Referred to Rules Committee,2024-05-01,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-30,[],IL,103rd +Referred to Rules Committee,2024-04-30,[],IL,103rd +Referred to Rules Committee,2024-04-30,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-09,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-14,[],IL,103rd +Referred to Rules Committee,2024-03-20,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Referred to Rules Committee,2024-04-17,[],IL,103rd +Referred to Rules Committee,2024-04-16,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-16,[],IL,103rd +Referred to Rules Committee,2024-03-13,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-15,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-03-20,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-03-12,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. Robyn Gabel,2024-03-04,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Chief Sponsor Changed to Rep. Robyn Gabel,2024-02-09,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-12,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2023-12-20,[],IL,103rd +Referred to Rules Committee,2023-11-08,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-11-09,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2023-10-13,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +Referred to Rules Committee,2023-05-16,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-20,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-20,[],IL,103rd +Co-Sponsor All Senators,2024-03-20,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-20,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-20,[],IL,103rd +Co-Sponsor All Senators,2024-03-20,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-03-08,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-23,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-23,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2024-02-06,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-27,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-25,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-27,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-20,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-20,[],IL,103rd +Co-Sponsor All Senators,2024-03-20,[],IL,103rd +Co-Sponsor All Senators,2024-03-20,[],IL,103rd +Co-Sponsor All Senators,2024-03-21,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-20,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +Filed with Secretary by Sen. Willie Preston,2023-02-09,['filing'],IL,103rd +First Reading,2023-03-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-10-26,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-09,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-10,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-10,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-10,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2024-04-10,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-10,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-10,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-07,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +Referred to Assignments,2024-04-26,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-08,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-08,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-05-08,['reading-1'],IL,103rd +Referred to Assignments,2024-03-12,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Read in Full a First Time,2024-03-13,[],IL,103rd +First Reading,2024-03-13,['reading-1'],IL,103rd +First Reading,2024-03-13,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-05-02,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2023-11-09,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Co-Sponsor All Senators,2024-04-18,[],IL,103rd +Co-Sponsor All Senators,2024-04-18,[],IL,103rd +First Reading,2024-05-03,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-05-03,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-03-12,['reading-1'],IL,103rd +First Reading,2024-03-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-06,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-06,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-06,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-07-10,[],IL,103rd +First Reading,2024-05-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-02-07,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-23,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-05-23,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-23,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-23,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-05-14,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-22,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-04-02,['reading-1'],IL,103rd +First Reading,2024-04-02,['reading-1'],IL,103rd +First Reading,2024-04-02,['reading-1'],IL,103rd +First Reading,2024-04-02,['reading-1'],IL,103rd +First Reading,2024-04-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-03,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-03,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-02,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-03,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-10-26,['reading-1'],IL,103rd +First Reading,2023-05-11,['reading-1'],IL,103rd +First Reading,2023-04-18,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-03,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2024-04-29,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-03,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-03,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-22,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-21,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-21,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-21,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-21,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-21,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-21,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-20,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-20,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-20,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-20,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-19,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-19,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-19,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-04-18,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-30,[],IL,103rd +Co-Sponsor All Senators,2024-04-30,[],IL,103rd +Co-Sponsor All Senators,2024-05-02,[],IL,103rd +Co-Sponsor All Senators,2024-04-29,[],IL,103rd +Co-Sponsor All Senators,2024-04-26,[],IL,103rd +Co-Sponsor All Senators,2024-05-02,[],IL,103rd +Co-Sponsor All Senators,2024-04-26,[],IL,103rd +Co-Sponsor All Senators,2024-04-26,[],IL,103rd +Co-Sponsor All Senators,2024-05-01,[],IL,103rd +Co-Sponsor All Senators,2024-04-30,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-01,[],IL,103rd +Co-Sponsor All Senators,2024-04-30,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-14,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-04-15,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-02,[],IL,103rd +First Reading,2024-05-01,['reading-1'],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-02-21,[],IL,103rd +Chief Co-Sponsor Rep. Jay Hoffman,2023-05-26,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-26,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-11-08,['reading-1'],IL,103rd +First Reading,2023-10-26,['reading-1'],IL,103rd +First Reading,2023-11-08,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-05-24,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-11-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-01-22,[],IL,103rd +First Reading,2023-11-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-05-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-30,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-30,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-30,[],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-09,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +Resolution Adopted,2023-04-19,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-01-31,[],IL,103rd +Referred to Assignments,2024-03-12,[],IL,103rd +Referred to Assignments,2024-03-21,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-03-05,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Referred to Assignments,2024-03-05,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-08,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-08,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-11-07,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-03-07,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-11-02,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Resolution Adopted,2024-04-30,['passage'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-30,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-30,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-30,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-30,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-07,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Referred to Assignments,2024-05-23,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-24,[],IL,103rd +"Chief Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-05-24,[],IL,103rd +Referred to Assignments,2024-05-21,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-24,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Assignments,2024-05-15,[],IL,103rd +Co-Sponsor All Senators,2024-05-22,[],IL,103rd +Referred to Assignments,2024-05-25,[],IL,103rd +Co-Sponsor All Senators,2024-05-22,[],IL,103rd +Co-Sponsor All Senators,2024-05-22,[],IL,103rd +Referred to Assignments,2024-05-22,[],IL,103rd +Co-Sponsor All Senators,2024-05-21,[],IL,103rd +Co-Sponsor All Senators,2024-05-20,[],IL,103rd +Co-Sponsor All Senators,2024-05-25,[],IL,103rd +First Reading,2024-05-24,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-24,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-22,[],IL,103rd +Co-Sponsor All Senators,2024-05-20,[],IL,103rd +Co-Sponsor All Senators,2024-05-20,[],IL,103rd +Co-Sponsor All Senators,2024-05-20,[],IL,103rd +Referred to Assignments,2024-05-24,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2024-05-14,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-02-03,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Adam M. Niemerg,2023-01-19,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-23,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-25,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Moved to Suspend Rule Sen. Christopher Belt; 3-6(a),2024-05-02,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-05-08,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Moved to Suspend Rule Sen. Mike Porfirio; 3-6(a),2024-05-09,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-05-25,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-01-31,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-11-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-25,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-19,[],IL,103rd +Co-Sponsor All Senators,2023-03-29,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-03-07,['reading-1'],IL,103rd +First Reading,2023-03-10,['reading-1'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +First Reading,2023-04-12,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-05-11,['reading-1'],IL,103rd +First Reading,2023-10-24,['reading-1'],IL,103rd +First Reading,2023-10-24,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-10-24,['reading-1'],IL,103rd +First Reading,2023-05-04,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-15,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Burke,2023-05-09,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Co-Sponsor All Senators,2023-05-11,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +Referred to Assignments,2023-04-18,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-25,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2024-03-07,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-05-03,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-02-21,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-03-14,[],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-03-12,[],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +Referred to Assignments,2024-03-20,[],IL,103rd +Referred to Assignments,2023-05-09,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +Referred to Assignments,2024-02-21,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-02-21,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-03-05,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-21,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Assignments,2024-03-05,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2024-02-08,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Travis Weaver,2024-02-09,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-02-08,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-23,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-23,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-23,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-08,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-23,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-23,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-23,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicole La Ha,2024-02-08,[],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-01,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-03-02,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-08,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-29,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-14,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-14,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-14,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-15,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-15,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-02,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-15,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-15,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-02-02,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-25,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-03-22,['reading-1'],IL,103rd +Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-02,['filing'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2024-04-15,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-01-30,[],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-07,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-25,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-05-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Steven Reick,2023-05-18,[],IL,103rd +"Added Chief Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-11-03,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Read in Full a First Time,2023-05-17,[],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +Read in Full a First Time,2023-02-22,[],IL,103rd +First Reading,2023-11-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Read in Full a First Time,2023-02-22,[],IL,103rd +First Reading,2023-04-19,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-05-11,['reading-1'],IL,103rd +Read in Full a First Time,2023-02-22,[],IL,103rd +Read in Full a First Time,2024-02-07,[],IL,103rd +First Reading,2023-05-11,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-05-12,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2023-05-02,[],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-25,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-01-25,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-11-07,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-11-07,['reading-1'],IL,103rd +First Reading,2023-11-08,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-03-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-21,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-08-08,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-13,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-14,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-13,[],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Read in Full a First Time,2023-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-13,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Read in Full a First Time,2023-02-22,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-09-20,[],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +First Reading,2023-01-25,['reading-1'],IL,103rd +Referred to Assignments,2024-05-14,[],IL,103rd +Referred to Assignments,2024-05-14,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-10-19,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-25,[],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +Resolution Adopted,2023-04-25,['passage'],IL,103rd +Resolution Adopted,2023-04-25,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-25,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-28,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-05-14,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-14,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-05-14,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Sanalitro,2023-09-26,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +First Reading,2024-03-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2024-02-09,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-05-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-15,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-05-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-14,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-03,[],IL,103rd +Referred to Rules Committee,2023-05-19,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-28,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-07-13,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-01-08,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-10-24,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-04-25,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Resolution Adopted,2023-01-11,['passage'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Resolution Adopted,2023-01-11,['passage'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2023-05-02,[],IL,103rd +Resolution Adopted,2023-01-12,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-08,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-08,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-23,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-01-24,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-11-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-11-08,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-05-10,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-10-13,[],IL,103rd +First Reading,2023-03-15,['reading-1'],IL,103rd +First Reading,2023-03-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2023-03-28,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-23,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-05-14,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-23,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-17,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-20,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-02-17,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2024-02-08,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-02-17,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Chief Sponsor Changed to Rep. Kevin John Olickal,2023-02-16,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-03-20,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-03-20,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-03-20,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-03-20,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-02-16,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2024-05-17,[],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-01-30,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-01-23,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-03-21,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-21,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-20,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-20,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-20,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-20,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-05-17,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-21,[],IL,103rd +First Reading,2024-05-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-20,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-28,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Referred to Assignments,2024-05-21,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-22,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-24,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Referred to Assignments,2024-03-07,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-05-25,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-24,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-24,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-05-25,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-23,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-22,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Chief Sponsor Changed to Rep. Sonya M. Harper,2023-02-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2023-01-26,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-26,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-26,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-02-27,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-07,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-01-26,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-01-23,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-01-23,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Resolution Adopted,2023-10-25,['passage'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-26,[],IL,103rd +Referred to Assignments,2023-04-25,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-01-25,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Assignments,2023-05-10,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-28,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-01-20,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-01-18,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2023-02-15,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-24,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-01-31,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-01-31,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-05-19,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-05-24,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-25,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-05-25,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-25,[],IL,103rd +Co-Sponsor All Senators,2023-05-16,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-11-08,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Referred to Assignments,2023-11-03,[],IL,103rd +Co-Sponsor All Senators,2023-10-24,[],IL,103rd +Co-Sponsor All Senators,2023-10-24,[],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-01-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-04-26,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-02,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-17,[],IL,103rd +Co-Sponsor All Senators,2023-05-11,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-10,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-05-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-05-11,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-11,[],IL,103rd +Co-Sponsor All Senators,2023-05-17,[],IL,103rd +Referred to Assignments,2023-04-26,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-05-24,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-15,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Co-Sponsor All Senators,2023-04-19,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Co-Sponsor All Senators,2023-05-10,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-05-11,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-18,[],IL,103rd +Referred to Assignments,2023-05-18,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Co-Sponsor All Senators,2023-05-15,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-05-16,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2023-05-11,[],IL,103rd +Co-Sponsor All Senators,2023-05-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-10-23,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2023-11-09,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2023-05-11,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2023-11-03,[],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2023-11-06,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-11-09,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Referred to Assignments,2023-04-27,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2023-04-27,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-26,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-27,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-19,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-17,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +Co-Sponsor All Senators,2023-11-08,[],IL,103rd +Referred to Assignments,2023-11-06,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-11-06,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +Co-Sponsor All Senators,2023-11-07,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2024-01-31,[],IL,103rd +Co-Sponsor All Senators,2023-05-11,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +Referred to Assignments,2023-05-19,[],IL,103rd +Co-Sponsor All Senators,2023-10-24,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2023-11-09,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Added as Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +Co-Sponsor All Senators,2023-10-24,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2023-05-08,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added as Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-04,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-24,[],IL,103rd +Co-Sponsor All Senators,2023-04-20,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-26,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Referred to Assignments,2023-04-25,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-19,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-31,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Co-Sponsor All Senators,2023-04-20,[],IL,103rd +Referred to Assignments,2023-05-02,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-05-18,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-02-21,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-02-02,[],IL,103rd +Co-Sponsor All Senators,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Co-Sponsor All Senators,2024-02-02,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Co-Sponsor All Senators,2024-02-06,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-26,[],IL,103rd +Co-Sponsor All Senators,2024-01-19,[],IL,103rd +Co-Sponsor All Senators,2023-05-05,[],IL,103rd +Co-Sponsor All Senators,2024-01-24,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-11-08,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Chief Co-Sponsor Sen. Steve McClure,2023-04-25,[],IL,103rd +Co-Sponsor All Senators,2024-02-20,[],IL,103rd +Co-Sponsor All Senators,2024-02-09,[],IL,103rd +Co-Sponsor All Senators,2024-02-06,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2023-11-09,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2023-11-09,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-02-02,[],IL,103rd +Co-Sponsor All Senators,2023-11-07,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-02-07,[],IL,103rd +Co-Sponsor All Senators,2024-02-07,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-02-06,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2023-11-09,[],IL,103rd +Co-Sponsor All Senators,2023-05-08,[],IL,103rd +Co-Sponsor All Senators,2024-01-24,[],IL,103rd +Co-Sponsor All Senators,2024-01-31,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-11-07,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2023-05-03,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Assignments,2023-08-16,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Chief Sponsor Changed to Rep. Jennifer Gong-Gershowitz,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-28,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-05,[],IL,103rd +Co-Sponsor All Senators,2024-03-05,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Co-Sponsor All Senators,2024-03-07,[],IL,103rd +Referred to Assignments,2023-02-28,[],IL,103rd +Referred to Assignments,2023-05-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Assignments,2023-03-30,[],IL,103rd +Chief Co-Sponsor Sen. Don Harmon,2023-03-29,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-02-03,[],IL,103rd +Moved to Suspend Rule Sen. Julie A. Morrison; 3-6(a),2024-03-07,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-03-30,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-02-06,[],IL,103rd +Referred to Assignments,2023-05-10,[],IL,103rd +Referred to Assignments,2024-03-05,[],IL,103rd +Co-Sponsor All Senators,2024-02-06,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2024-03-05,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Co-Sponsor All Senators,2024-02-07,[],IL,103rd +Co-Sponsor All Senators,2024-02-21,[],IL,103rd +Co-Sponsor All Senators,2024-02-06,[],IL,103rd +Co-Sponsor All Senators,2024-02-21,[],IL,103rd +Co-Sponsor All Senators,2024-03-07,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Assignments,2023-03-30,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2023-05-16,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-01-31,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2023-05-02,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-04,[],IL,103rd +Co-Sponsor All Senators,2023-05-10,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-20,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-20,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-20,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Chief Sponsor Changed to Rep. Jenn Ladisch Douglass,2023-02-03,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2023-02-03,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-20,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2023-02-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-20,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-20,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-14,[],IL,103rd +Co-Sponsor All Senators,2024-05-07,[],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-14,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-09,[],IL,103rd +Co-Sponsor All Senators,2024-03-14,[],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-10-24,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-14,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-06,[],IL,103rd +Referred to Rules Committee,2023-11-07,[],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Referred to Rules Committee,2024-05-08,[],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2024-03-14,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-03,[],IL,103rd +First Reading,2023-05-04,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Tom Weber,2024-01-09,[],IL,103rd +Referred to Rules Committee,2024-05-01,[],IL,103rd +Co-Sponsor All Senators,2024-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2024-09-03,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-08,[],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-04-19,['reading-1'],IL,103rd +First Reading,2023-03-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-04-19,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. Jehan Gordon-Booth,2024-04-10,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-11,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-03-16,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-03-07,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-15,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-28,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-28,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-14,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-28,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-28,[],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +First Reading,2024-04-29,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-30,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-30,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-28,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-28,[],IL,103rd +Referred to Assignments,2024-02-21,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-03-21,[],IL,103rd +Chief Co-Sponsor Sen. Laura Ellman,2024-03-14,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-03-13,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-18,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Assignments,2024-03-21,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-04,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-04,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-05-03,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-06,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-12,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2024-02-21,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-17,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-04,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. John M. Cabello,2023-05-10,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-12,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-12,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-01-31,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-01-12,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-25,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-25,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-12,[],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +Placed on Calendar Order of Resolutions,2023-02-22,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-09,[],IL,103rd +Referred to Rules Committee,2024-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2024-05-23,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Resolution Adopted,2023-03-09,['passage'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-09,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-09,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-30,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-22,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-28,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-28,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-16,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Michelle Mussman,2024-01-16,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-22,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-07,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-16,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-02,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-03,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-08,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-11-03,['reading-1'],IL,103rd +First Reading,2023-10-24,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-10-26,['reading-1'],IL,103rd +First Reading,2023-11-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-10-24,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-05-14,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-03,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Resolution Adopted,2024-02-21,['passage'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-19,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-19,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-19,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-19,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-01-17,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-24,[],IL,103rd +Co-Sponsor All Senators,2024-04-30,[],IL,103rd +Co-Sponsor All Senators,2024-04-29,[],IL,103rd +Co-Sponsor All Senators,2024-05-02,[],IL,103rd +Co-Sponsor All Senators,2024-04-26,[],IL,103rd +Co-Sponsor All Senators,2024-05-01,[],IL,103rd +Co-Sponsor All Senators,2024-04-29,[],IL,103rd +Co-Sponsor All Senators,2024-05-01,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-30,[],IL,103rd +Co-Sponsor All Senators,2024-04-26,[],IL,103rd +Co-Sponsor All Senators,2024-05-02,[],IL,103rd +Co-Sponsor All Senators,2024-05-01,[],IL,103rd +Co-Sponsor All Senators,2024-04-30,[],IL,103rd +Co-Sponsor All Senators,2024-05-01,[],IL,103rd +Co-Sponsor All Senators,2024-04-26,[],IL,103rd +Co-Sponsor All Senators,2024-05-01,[],IL,103rd +Co-Sponsor All Senators,2024-05-02,[],IL,103rd +Co-Sponsor All Senators,2024-04-24,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-05-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-02,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-15,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-15,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-01,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-02,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-11-07,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2024-05-01,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Moved to Suspend Rule Sen. Bill Cunningham; 3-6(a),2023-05-26,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-09-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-02-07,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-25,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-25,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Chief Sponsor Changed to Rep. Kam Buckner,2023-01-23,[],IL,103rd +Chief Sponsor Changed to Rep. Matt Hanson,2023-02-16,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-26,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-05-04,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-24,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-26,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2023-01-31,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-10,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-25,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-10-03,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-26,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-12-14,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-07-20,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Paul Jacobs,2023-10-17,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Chief Sponsor Changed to Rep. Robyn Gabel,2023-02-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Paul Jacobs,2023-10-10,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-24,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-10,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Steven Reick,2023-05-18,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. Patrick Windhorst,2023-04-26,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-10,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-07,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-01-31,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-30,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-01-26,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-26,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-01-19,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-01-26,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-02-07,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-01-26,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-18,[],IL,103rd +"Added Chief Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-02-17,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-10,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-05-03,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-01-31,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-05-21,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Assignments,2024-05-20,[],IL,103rd +Co-Sponsor All Senators,2023-03-28,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +"Added Chief Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-03-22,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-11,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-05-24,['reading-1'],IL,103rd +First Reading,2024-05-24,['reading-1'],IL,103rd +First Reading,2024-05-24,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-05-07,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-25,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-01-25,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2023-01-25,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Read in Full a First Time,2023-10-25,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-18,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-05-24,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-09,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-25,['reading-1'],IL,103rd +First Reading,2023-11-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-01-30,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-05-11,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-08,[],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-10,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Chief Co-Sponsor Sen. Don Harmon,2024-02-07,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-01-30,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-25,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-03-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2023-05-23,[],IL,103rd +Read in Full a First Time,2023-02-22,[],IL,103rd +Referred to Rules Committee,2023-05-19,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-19,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-31,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-25,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Co-Sponsor All Senators,2023-02-06,[],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-26,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +Referred to Rules Committee,2023-02-21,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-22,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-01-23,[],IL,103rd +Referred to Rules Committee,2023-03-02,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Chris Miller,2024-02-02,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-29,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Assignments,2023-02-23,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +Co-Sponsor All Senators,2024-05-22,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2024-05-22,[],IL,103rd +Co-Sponsor All Senators,2024-05-24,[],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +Co-Sponsor All Senators,2024-05-23,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-24,[],IL,103rd +Co-Sponsor All Senators,2024-05-25,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-21,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-04-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-20,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-22,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-14,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-24,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-21,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-21,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-20,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-22,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-22,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-03-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-14,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-01-23,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Co-Sponsor All Senators,2023-03-02,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-21,[],IL,103rd +Referred to Rules Committee,2023-02-21,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-21,[],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-03-07,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-09-09,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-02,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-01-31,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-21,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-28,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-02,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-28,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-07,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-03-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-01-20,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-02-01,[],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-07,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-23,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-19,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-28,[],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-22,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-06,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-02-16,[],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +Referred to Assignments,2023-04-18,[],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-08,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Assignments,2023-02-22,[],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-16,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-16,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Assignments,2023-01-25,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-05-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-13,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Assignments,2024-05-10,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2023-02-06,[],IL,103rd +First Reading,2024-05-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-18,[],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-19,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-19,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-13,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-05-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-13,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-13,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-01-11,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Assignments,2024-05-13,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Michelle Mussman,2024-05-02,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-03,[],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-23,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-17,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-07,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-21,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-23,[],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2024-05-13,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-19,[],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-16,[],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2024-05-15,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-09-29,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-16,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-05-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-16,[],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-05-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-05-18,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +Moved to Suspend Rule Sen. Don Harmon; 3-6(a),2023-01-12,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +Referred to Assignments,2023-02-28,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-03-01,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-01-31,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +First Reading,2023-02-23,['reading-1'],IL,103rd +First Reading,2024-03-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-21,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-10-26,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-01-22,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-09,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-11-08,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-10-24,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Assignments,2023-03-08,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-04-25,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-10-24,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-11-07,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-05-02,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-10-05,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-22,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-05-10,['reading-1'],IL,103rd +First Reading,2023-05-18,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-05-10,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-08-18,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-05-18,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. Patrick Windhorst,2023-04-26,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-04-20,[],IL,103rd +First Reading,2023-05-19,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-05-02,[],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-05-09,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-04-27,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-03-15,['reading-1'],IL,103rd +First Reading,2023-03-08,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-04-19,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Chief Sponsor Changed to Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-24,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-23,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. Patrick Windhorst,2023-04-26,[],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-11-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-11-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-23,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-03-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-04-20,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-03-07,['reading-1'],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-03-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-03-10,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-10,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-12,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. Patrick Windhorst,2023-04-26,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-25,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Referred to Assignments,2023-04-18,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-23,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-02,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-05-24,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-02,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-09,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-05-17,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +Referred to Assignments,2023-04-20,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2024-03-20,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-20,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-17,[],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2024-04-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-16,[],IL,103rd +Co-Sponsor All Senators,2024-04-16,[],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-16,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Co-Sponsor All Senators,2024-04-16,[],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-16,[],IL,103rd +Referred to Assignments,2023-02-15,[],IL,103rd +Co-Sponsor All Senators,2024-04-17,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-16,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-16,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-16,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-02-17,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-04,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-02,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-03-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-18,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-18,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-17,[],IL,103rd +First Reading,2023-10-24,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-04-25,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. Jay Hoffman,2024-01-11,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Chief Co-Sponsor Sen. Tom Bennett,2023-02-08,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-17,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-06,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2024-02-08,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-07,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-08,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-23,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-02,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-23,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-08,[],IL,103rd +First Reading,2023-03-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-23,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-02,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-01,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-05,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-07,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-10,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-05-25,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-10,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-01-12,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Assignments,2023-05-04,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-25,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Assignments,2024-03-21,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2023-01-30,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Chief Co-Sponsor Sen. Steve Stadelman,2024-03-22,[],IL,103rd +Co-Sponsor All Senators,2023-01-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-07,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-01-25,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-01-18,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-02,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-01-30,[],IL,103rd +Co-Sponsor All Senators,2023-02-09,[],IL,103rd +Co-Sponsor All Senators,2023-02-09,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Assignments,2024-03-21,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-04,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-02,[],IL,103rd +First Reading,2024-04-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-04-02,['reading-1'],IL,103rd +First Reading,2024-04-02,['reading-1'],IL,103rd +First Reading,2024-04-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-02,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-02,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-02,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-04-29,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-22,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-21,[],IL,103rd +Referred to Assignments,2023-04-19,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-21,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-04-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-21,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-13,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-05-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-03-14,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-20,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-12,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-03-07,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-03-14,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-09,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2024-01-11,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-12-08,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-03-14,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-01-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Co-Sponsor All Senators,2024-03-12,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Chief Sponsor Changed to Rep. Matt Hanson,2024-01-12,[],IL,103rd +Referred to Rules Committee,2024-04-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-09,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-05-13,[],IL,103rd +Co-Sponsor All Senators,2024-05-03,[],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-16,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-03-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-03,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-03-14,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-24,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2024-02-08,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-12-13,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-12-15,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2024-02-08,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-01-23,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-02-08,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-18,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-02-09,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Resolution Adopted,2024-03-21,['passage'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Amy L. Grant,2024-02-08,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-18,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-10-24,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-05-03,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2024-01-30,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Caulkins,2023-05-03,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Amy L. Grant,2023-02-17,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-01,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2024-02-05,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-22,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-12,[],IL,103rd +Referred to Rules Committee,2024-05-02,[],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-16,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2023-11-09,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-24,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-30,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-30,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-01-31,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-11,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-18,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-04,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-24,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-24,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-01-31,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-01-31,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-02,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-11,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-05-03,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-17,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-07,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. Jackie Haas,2023-05-05,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-04-25,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-01-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2024-02-08,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-01,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-18,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. Charles Meier,2023-01-19,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-17,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-13,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-06,[],IL,103rd +First Reading,2023-05-10,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +First Reading,2023-05-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-01-31,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-13,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +"Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-09-26,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-16,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-27,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-28,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +Chief Co-Sponsor Sen. Sue Rezin,2024-01-19,[],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-07,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-21,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-20,[],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +Chief Co-Sponsor Sen. Sue Rezin,2024-01-19,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-04-26,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-11-07,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-11-06,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-11-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-15,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-14,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-15,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-11-08,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Referred to Assignments,2024-03-05,[],IL,103rd +Referred to Assignments,2024-03-05,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Resolution Adopted,2023-05-25,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2023-05-24,[],IL,103rd +Resolution Adopted,2024-02-07,['passage'],IL,103rd +Resolution Adopted,2023-03-30,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-09,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-21,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-16,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-05-01,['reading-1'],IL,103rd +First Reading,2024-05-01,['reading-1'],IL,103rd +First Reading,2024-05-01,['reading-1'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-01-25,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-10,[],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-01-25,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-16,[],IL,103rd +Referred to Assignments,2024-05-07,[],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-01-24,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-01-23,[],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2023-05-02,[],IL,103rd +First Reading,2023-11-08,['reading-1'],IL,103rd +First Reading,2024-05-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-13,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-13,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-05,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-13,[],IL,103rd +First Reading,2024-03-13,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-05,[],IL,103rd +First Reading,2024-03-13,['reading-1'],IL,103rd +First Reading,2024-03-13,['reading-1'],IL,103rd +First Reading,2024-03-13,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-18,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-08-23,[],IL,103rd +Chief Sponsor Changed to Rep. Kevin John Olickal,2023-02-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Referred to Assignments,2024-05-06,[],IL,103rd +First Reading,2024-05-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2023-11-07,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-03-27,['reading-1'],IL,103rd +First Reading,2024-04-09,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2023-10-20,[],IL,103rd +First Reading,2024-04-09,['reading-1'],IL,103rd +First Reading,2024-04-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2024-05-23,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-12,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-12,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-12,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-17,[],IL,103rd +First Reading,2024-05-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-09,[],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +Referred to Assignments,2024-05-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-05-24,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Michelle Mussman,2024-05-22,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-05-03,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-21,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-22,[],IL,103rd +First Reading,2024-05-22,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-22,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-22,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-02,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-02,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-02,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Chief Sponsor Changed to Rep. Kelly M. Burke,2023-01-23,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-05-01,['reading-1'],IL,103rd +First Reading,2024-05-01,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-04-11,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-10-24,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-01-25,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-21,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-01-26,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-17,[],IL,103rd +Referred to Rules Committee,2023-05-11,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2024-05-01,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-03,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-04-20,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-01-31,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-01-19,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Co-Sponsor All Senators,2024-05-15,[],IL,103rd +Referred to Rules Committee,2023-04-18,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2023-01-27,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-21,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-14,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-17,[],IL,103rd +Referred to Rules Committee,2023-03-22,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-17,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-14,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-17,[],IL,103rd +Referred to Rules Committee,2023-05-08,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-09,[],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-17,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-01,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-19,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Tony M. McCombie,2023-09-28,[],IL,103rd +Referred to Rules Committee,2023-04-18,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-19,[],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2024-01-23,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-18,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Read in Full a First Time,2024-01-17,[],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +Read in Full a First Time,2023-02-22,[],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-02-02,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-03-06,['reading-1'],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-28,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-18,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-18,[],IL,103rd +Read in Full a First Time,2023-03-15,[],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-03-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-11-03,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-04-18,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-25,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-02-14,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Referred to Assignments,2024-03-07,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-04-20,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-22,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-13,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-26,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-23,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2024-01-23,[],IL,103rd +Referred to Rules Committee,2023-02-22,[],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-14,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-16,[],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-14,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-25,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +First Reading,2023-11-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-11-07,['reading-1'],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-05-11,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-03-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-02,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-05,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-05,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-05,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-05,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-05,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2024-07-02,[],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-05,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-05,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-05,[],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2024-03-05,[],IL,103rd +First Reading,2024-03-27,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-05,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. Kam Buckner,2024-02-28,[],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-05,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-05,[],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-03-22,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-10,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-05-16,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-04-12,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-16,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Yolonda Morris,2024-05-15,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-15,[],IL,103rd +First Reading,2024-05-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-16,[],IL,103rd +Resolution Adopted,2023-10-25,['passage'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-25,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-05-14,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-09,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-15,[],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-15,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-05-14,['reading-1'],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-04-20,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2024-02-08,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-04,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-25,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-01-25,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-11-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-11-07,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-04,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-04,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-04,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-04-03,['reading-1'],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-18,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2024-01-31,[],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-01-24,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-07-05,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-05-16,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2023-05-11,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar Order of Resolutions,2023-01-12,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. Amy L. Grant,2023-04-26,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-04-19,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-08,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-03-02,['reading-1'],IL,103rd +First Reading,2023-03-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Chief Co-Sponsor Sen. Tom Bennett,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-11-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2024-01-19,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-11-08,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-09-29,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-11-07,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +First Reading,2023-05-16,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-08-29,[],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-08,[],IL,103rd +Moved to Suspend Rule Sen. Mattie Hunter,2023-02-08,[],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-05-16,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +First Reading,2023-05-10,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2023-05-03,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-01-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2023-04-19,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Added Co-Sponsor All Other Republican Members of the House,2023-05-03,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. Patrick Windhorst,2023-04-26,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-27,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-04-19,['reading-1'],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-03-28,['reading-1'],IL,103rd +First Reading,2023-04-19,['reading-1'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +First Reading,2023-04-19,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-05-19,[],IL,103rd +First Reading,2023-03-15,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-23,['reading-1'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-23,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +First Reading,2023-02-23,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-05-04,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +First Reading,2023-02-23,['reading-1'],IL,103rd +First Reading,2023-02-23,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2023-03-08,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-18,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-23,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-04-25,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. Patrick Windhorst,2023-04-26,[],IL,103rd +First Reading,2023-04-25,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-05-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-08,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-17,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-21,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-02-17,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-02-17,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-23,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-04-27,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-25,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-07,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-01,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-15,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-15,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-21,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-26,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Read in Full a First Time,2023-01-31,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-05-09,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. Martin McLaughlin,2023-11-07,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-25,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-20,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Read in Full a First Time,2023-01-31,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-02-21,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-05-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-11,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-03-05,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-18,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-18,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-04-26,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-19,[],IL,103rd +Referred to Rules Committee,2023-02-23,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-02-08,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-19,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-19,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-19,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Read in Full a First Time,2023-01-31,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-17,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Chief Sponsor Changed to Rep. Harry Benton,2023-02-14,[],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-16,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-07,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-11,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-02-14,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-02-03,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Read in Full a First Time,2023-02-07,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-11,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Read in Full a First Time,2023-02-22,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-24,[],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-22,[],IL,103rd +Co-Sponsor All Senators,2024-05-20,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Referred to Assignments,2024-05-15,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-05-24,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-03-20,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-03-20,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-20,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-22,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-24,[],IL,103rd +Co-Sponsor All Senators,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-22,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-17,[],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-10,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-21,[],IL,103rd +Co-Sponsor All Senators,2024-05-17,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-05-10,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-17,[],IL,103rd +Co-Sponsor All Senators,2024-05-22,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-21,[],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Referred to Assignments,2024-05-22,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-24,[],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-24,[],IL,103rd +Referred to Assignments,2024-05-06,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-17,[],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-10-23,[],IL,103rd +Co-Sponsor All Senators,2024-05-24,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Co-Sponsor All Senators,2024-05-22,[],IL,103rd +Co-Sponsor All Senators,2024-05-17,[],IL,103rd +Co-Sponsor All Senators,2024-05-17,[],IL,103rd +Co-Sponsor All Senators,2024-05-22,[],IL,103rd +Co-Sponsor All Senators,2024-05-20,[],IL,103rd +Referred to Rules Committee,2023-02-22,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Chief Sponsor Changed to Rep. Camille Y. Lilly,2023-02-03,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-17,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Chief Co-Sponsor Rep. Robyn Gabel,2023-03-20,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Sponsor Removed All Senators,2024-04-29,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-15,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-29,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-01-25,[],IL,103rd +First Reading,2024-02-22,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-21,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-15,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-11-07,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-04-20,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-17,[],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-11-08,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-17,[],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-09,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-05-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Moved to Suspend Rule Sen. Suzy Glowiak Hilton; 3-6a,2024-04-18,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Read in Full a First Time,2024-05-25,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Moved to Suspend Rule Sen. Ram Villivalam; 3-6(a),2024-03-14,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Moved to Suspend Rule Sen. Kimberly A. Lightford; 3-6(a),2024-05-26,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-03,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2024-01-25,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-22,[],IL,103rd +First Reading,2024-05-21,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-17,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-20,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-05-15,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-09,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-04-18,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-03-28,[],IL,103rd +Co-Sponsor All Senators,2023-03-23,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-23,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-03-07,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-10-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-25,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2023-07-24,[],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-05-10,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-25,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Added Chief Co-Sponsor Rep. William E Hauter,2024-01-04,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-01-09,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-02-01,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-09,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-09,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-09,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-09,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-22,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2023-01-20,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-28,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-28,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-28,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-28,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-01-18,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-10,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Co-Sponsor All Senators,2024-02-21,[],IL,103rd +Co-Sponsor All Senators,2024-03-05,[],IL,103rd +Co-Sponsor All Senators,2024-02-21,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-05,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-02-21,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-02-28,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-02-06,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-02-09,[],IL,103rd +Co-Sponsor All Senators,2024-03-05,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Moved to Suspend Rule Sen. Kimberly A. Lightford; 3-6(a),2023-05-19,[],IL,103rd +Co-Sponsor All Senators,2024-02-02,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-28,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-28,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-20,[],IL,103rd +Co-Sponsor All Senators,2024-03-07,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Assignments,2024-03-06,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Chief Co-Sponsor Sen. Chapin Rose,2023-03-07,[],IL,103rd +Co-Sponsor All Senators,2024-03-07,[],IL,103rd +Referred to Assignments,2023-04-27,[],IL,103rd +Referred to Assignments,2023-03-07,[],IL,103rd +Referred to Assignments,2023-05-10,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-28,[],IL,103rd +Co-Sponsor All Senators,2024-03-07,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2023-03-09,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-02-21,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-05,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-31,[],IL,103rd +Co-Sponsor All Senators,2024-01-31,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-07,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2023-11-09,[],IL,103rd +Referred to Assignments,2023-11-03,[],IL,103rd +Co-Sponsor All Senators,2023-11-08,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Referred to Assignments,2023-11-08,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-02-06,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-02-08,[],IL,103rd +Co-Sponsor All Senators,2024-02-02,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-26,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-02-06,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-01-12,[],IL,103rd +Co-Sponsor All Senators,2024-02-02,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-24,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-24,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-16,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-03-02,[],IL,103rd +Referred to Assignments,2023-05-09,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Moved to Suspend Rule Sen. Don Harmon; 3-6(a),2023-04-18,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-07,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-02-14,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-02-22,[],IL,103rd +Co-Sponsor All Senators,2024-01-19,[],IL,103rd +Co-Sponsor All Senators,2024-02-06,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-02-21,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-31,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-31,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-11-08,['reading-1'],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-05,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-20,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +Chief Sponsor Changed to Rep. Eva-Dina Delgado,2024-02-09,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Chief Co-Sponsor Sen. Chapin Rose,2024-03-05,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Co-Sponsor All Senators,2024-03-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy L. Grant,2024-02-08,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-26,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-26,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-26,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-05,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-05,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +"Added Chief Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-02-08,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-24,[],IL,103rd +Co-Sponsor All Senators,2024-03-05,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-12,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-31,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-26,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-26,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-19,[],IL,103rd +Co-Sponsor All Senators,2024-02-21,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +Co-Sponsor All Senators,2024-02-21,[],IL,103rd +Co-Sponsor All Senators,2024-03-05,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-24,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-24,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-24,[],IL,103rd +Referred to Assignments,2023-11-03,[],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-24,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-11-09,[],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-02-15,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Referred to Assignments,2023-11-03,[],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-11-09,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-11-07,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-21,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +Referred to Assignments,2023-08-16,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-11-09,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-11-06,[],IL,103rd +Moved to Suspend Rule Sen. Mattie Hunter; 3-6(a),2023-02-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-11-08,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-11-09,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-24,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2024-01-10,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-05-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-05-10,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Assignments,2023-08-16,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-05-18,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-03,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-05-08,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Referred to Assignments,2023-08-16,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-15,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-05-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-05-15,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-05-15,[],IL,103rd +Co-Sponsor All Senators,2023-05-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Referred to Assignments,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-24,[],IL,103rd +Co-Sponsor All Senators,2023-11-03,[],IL,103rd +Co-Sponsor All Senators,2023-11-06,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-06,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Referred to Assignments,2023-10-26,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-24,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-11-06,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-05-25,[],IL,103rd +Co-Sponsor All Senators,2023-05-19,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-05-25,[],IL,103rd +Referred to Assignments,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-24,[],IL,103rd +Co-Sponsor All Senators,2023-10-24,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Referred to Assignments,2023-11-03,[],IL,103rd +Co-Sponsor All Senators,2023-10-18,[],IL,103rd +Referred to Assignments,2023-05-17,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-05-05,[],IL,103rd +Filed with Secretary,2023-05-03,['filing'],IL,103rd +Co-Sponsor All Senators,2023-04-18,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-16,[],IL,103rd +Referred to Assignments,2023-04-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-05-05,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-11,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-04-25,[],IL,103rd +Co-Sponsor All Senators,2023-04-19,[],IL,103rd +Co-Sponsor All Senators,2023-04-27,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-02,[],IL,103rd +Referred to Assignments,2023-04-18,[],IL,103rd +Co-Sponsor All Senators,2023-05-11,[],IL,103rd +Co-Sponsor All Senators,2023-04-25,[],IL,103rd +Co-Sponsor All Senators,2023-04-18,[],IL,103rd +Co-Sponsor All Senators,2023-05-15,[],IL,103rd +Referred to Assignments,2023-04-25,[],IL,103rd +Co-Sponsor All Senators,2023-04-19,[],IL,103rd +Co-Sponsor All Senators,2023-05-05,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Referred to Assignments,2023-04-27,[],IL,103rd +Referred to Assignments,2023-05-24,[],IL,103rd +Referred to Assignments,2023-05-19,[],IL,103rd +Referred to Assignments,2023-05-02,[],IL,103rd +Referred to Assignments,2023-05-03,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Referred to Assignments,2023-05-04,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-19,[],IL,103rd +Referred to Assignments,2023-05-18,[],IL,103rd +Co-Sponsor All Senators,2023-05-24,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-10,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-10,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-05-10,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-05-04,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-05-05,[],IL,103rd +Referred to Assignments,2023-05-25,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-05-05,[],IL,103rd +Referred to Assignments,2023-05-02,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +Co-Sponsor All Senators,2023-05-04,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-05-03,[],IL,103rd +Co-Sponsor All Senators,2023-05-04,[],IL,103rd +Co-Sponsor All Senators,2023-05-04,[],IL,103rd +Co-Sponsor All Senators,2023-05-19,[],IL,103rd +Co-Sponsor All Senators,2023-05-05,[],IL,103rd +Co-Sponsor All Senators,2023-05-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Chief Co-Sponsor Sen. Laura M. Murphy,2023-05-24,[],IL,103rd +Co-Sponsor All Senators,2023-05-02,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-05-18,[],IL,103rd +Co-Sponsor All Senators,2023-08-16,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +Co-Sponsor All Senators,2023-05-03,[],IL,103rd +Referred to Assignments,2023-04-27,[],IL,103rd +Co-Sponsor All Senators,2023-05-04,[],IL,103rd +Co-Sponsor All Senators,2023-05-25,[],IL,103rd +Co-Sponsor All Senators,2023-04-18,[],IL,103rd +Co-Sponsor All Senators,2023-04-18,[],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-28,[],IL,103rd +Co-Sponsor All Senators,2023-04-18,[],IL,103rd +Co-Sponsor All Senators,2023-04-18,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-25,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-18,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-19,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-04-18,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-18,[],IL,103rd +Chief Co-Sponsor Sen. Jason Plummer,2023-02-09,[],IL,103rd +Co-Sponsor All Senators,2023-05-02,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-04,[],IL,103rd +Referred to Assignments,2023-04-26,[],IL,103rd +Co-Sponsor All Senators,2023-04-27,[],IL,103rd +Referred to Assignments,2023-04-26,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-18,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-04-18,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-05-15,[],IL,103rd +Referred to Assignments,2023-04-26,[],IL,103rd +Referred to Assignments,2023-05-15,[],IL,103rd +Co-Sponsor All Senators,2023-05-04,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-18,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-26,[],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-05-02,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-20,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-19,[],IL,103rd +Co-Sponsor All Senators,2023-03-29,[],IL,103rd +Co-Sponsor All Senators,2023-04-19,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-02-23,[],IL,103rd +Co-Sponsor All Senators,2023-04-18,[],IL,103rd +Referred to Assignments,2023-02-28,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Co-Sponsor All Senators,2023-02-02,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-06,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-01-24,[],IL,103rd +Co-Sponsor All Senators,2023-03-07,[],IL,103rd +Co-Sponsor All Senators,2023-01-24,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-03-07,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Co-Sponsor All Senators,2023-02-02,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-28,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-06,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-03,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Co-Sponsor All Senators,2023-03-08,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-06,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-09,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Co-Sponsor All Senators,2023-03-08,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-01-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Co-Sponsor All Senators,2023-02-23,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-03-08,[],IL,103rd +Co-Sponsor All Senators,2023-03-02,[],IL,103rd +Co-Sponsor All Senators,2023-03-21,[],IL,103rd +Co-Sponsor All Senators,2023-05-10,[],IL,103rd +Co-Sponsor All Senators,2023-04-12,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-07,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-18,[],IL,103rd +Co-Sponsor All Senators,2023-03-28,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-21,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-21,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-04-12,[],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-07,[],IL,103rd +Co-Sponsor All Senators,2023-03-02,[],IL,103rd +Co-Sponsor All Senators,2023-03-02,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-21,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Co-Sponsor All Senators,2023-03-02,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2023-03-07,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-23,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-02,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-07,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Co-Sponsor All Senators,2023-03-08,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-23,[],IL,103rd +Referred to Assignments,2023-02-16,[],IL,103rd +Co-Sponsor All Senators,2023-03-07,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-03-02,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-21,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Referred to Assignments,2023-02-23,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Co-Sponsor All Senators,2023-03-23,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-28,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-08,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-07,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-03-28,[],IL,103rd +Co-Sponsor All Senators,2023-03-24,[],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-12,[],IL,103rd +Co-Sponsor All Senators,2023-02-06,[],IL,103rd +Co-Sponsor All Senators,2023-02-02,[],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-01-11,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Referred to Assignments,2023-01-11,[],IL,103rd +Co-Sponsor All Senators,2023-02-02,[],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-01-20,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-01-12,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +Referred to Assignments,2023-01-12,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2023-01-25,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-01-31,[],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-01-20,[],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-02-02,[],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-01-12,[],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +Co-Sponsor All Senators,2023-01-25,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-10,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-03-07,['reading-1'],IL,103rd +First Reading,2023-04-19,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-21,['reading-1'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +First Reading,2023-03-09,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +Referred to Assignments,2023-03-09,[],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-02-28,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-20,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-05-11,['reading-1'],IL,103rd +First Reading,2023-05-18,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-10-24,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-08-16,['reading-1'],IL,103rd +First Reading,2023-08-16,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-05-08,['reading-1'],IL,103rd +First Reading,2023-04-27,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-11-07,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-12,['reading-1'],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +Placed on Calendar Order of Resolutions,2024-01-17,[],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2024-01-24,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +First Reading,2024-05-09,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-04-02,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-09,[],IL,103rd +First Reading,2024-01-26,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Caulkins,2024-03-13,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-12,[],IL,103rd +Co-Sponsor All Senators,2024-03-12,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-09,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-12,[],IL,103rd +Co-Sponsor All Senators,2024-03-13,[],IL,103rd +Co-Sponsor All Senators,2024-03-12,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +First Reading,2024-02-02,['reading-1'],IL,103rd +Co-Sponsor All Senators,2024-03-13,[],IL,103rd +First Reading,2024-01-10,['reading-1'],IL,103rd +First Reading,2024-05-08,['reading-1'],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-06-30,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2023-01-12,['reading-1'],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-04-11,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +Referred to Rules Committee,2024-04-02,[],IL,103rd +Referred to Rules Committee,2024-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-06-30,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-05-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-13,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-12,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-14,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Resolution Adopted,2024-04-16,['passage'],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Resolution Adopted,2024-03-05,['passage'],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Resolution Adopted,2024-03-05,['passage'],IL,103rd +Resolution Adopted,2024-03-05,['passage'],IL,103rd +Resolution Adopted,2024-03-05,['passage'],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Resolution Adopted,2024-03-05,['passage'],IL,103rd +Resolution Adopted,2024-03-05,['passage'],IL,103rd +Resolution Adopted,2024-03-05,['passage'],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Resolution Adopted,2024-03-05,['passage'],IL,103rd +Resolution Adopted,2024-03-05,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-05,[],IL,103rd +Resolution Adopted,2024-03-05,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-03-05,[],IL,103rd +Resolution Adopted,2024-03-05,['passage'],IL,103rd +Resolution Adopted,2024-03-05,['passage'],IL,103rd +Referred to Rules Committee,2024-03-22,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-05-16,[],IL,103rd +Resolution Adopted,2024-05-16,['passage'],IL,103rd +Resolution Adopted,2024-05-16,['passage'],IL,103rd +Referred to Rules Committee,2024-04-18,[],IL,103rd +Resolution Adopted,2024-05-16,['passage'],IL,103rd +Resolution Adopted,2024-05-16,['passage'],IL,103rd +First Reading,2024-05-15,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-16,[],IL,103rd +Resolution Adopted,2024-05-16,['passage'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-05-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2024-05-15,[],IL,103rd +Resolution Adopted,2024-05-15,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2024-05-15,['passage'],IL,103rd +Referred to Rules Committee,2024-05-14,[],IL,103rd +Referred to Assignments,2023-04-20,[],IL,103rd +Approved for Consideration Assignments,2024-04-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-04-27,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Referred to Rules Committee,2024-03-20,[],IL,103rd +Referred to Rules Committee,2024-03-20,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Resolution Adopted,2024-03-20,['passage'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-17,[],IL,103rd +Approved for Consideration Assignments,2024-05-15,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-17,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Approved for Consideration Assignments,2024-05-15,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Approved for Consideration Assignments,2024-05-15,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-04-29,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-15,[],IL,103rd +Approved for Consideration Assignments,2024-05-15,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Approved for Consideration Assignments,2024-05-15,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-09,[],IL,103rd +Referred to Assignments,2024-05-01,[],IL,103rd +Approved for Consideration Assignments,2024-05-15,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-17,[],IL,103rd +Approved for Consideration Assignments,2024-05-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-15,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-17,[],IL,103rd +Approved for Consideration Assignments,2024-05-15,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +"Added Chief Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-04-20,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-15,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-14,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-14,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-17,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-09-28,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2024-04-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-03-07,['referral-committee'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Resolution Adopted,2024-04-19,['passage'],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Assigned to Energy & Environment Committee,2023-04-25,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-23,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Police & Fire Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-01-30,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-03-07,['referral-committee'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Resolution Adopted,2024-03-21,['passage'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-05-21,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-01-25,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2024-04-03,['passage'],IL,103rd +Resolution Adopted,2024-04-03,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2024-05-26,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2024-03-14,[],IL,103rd +Referred to Rules Committee,2024-05-25,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Prevailed to Suspend Rule 3-6a,2024-04-18,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-11-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-21,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Assigned to Human Services Committee,2023-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-03-21,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Approved for Consideration Assignments,2024-05-25,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-20,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-22,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-22,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-25,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-21,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-22,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-05-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-22,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Chief Sponsor Changed to Rep. Camille Y. Lilly,2024-02-20,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-02-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-04-11,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-20,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-03-07,['referral-committee'],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-22,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Assigned to Veterans' Affairs Committee,2023-05-12,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-21,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-02-03,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Assigned to State Government Administration Committee,2023-05-12,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Assigned to Human Services Committee,2023-05-09,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Assigned to State Government Administration Committee,2023-04-25,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Assigned to Higher Education Committee,2023-04-18,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Read in Full a First Time,2024-03-06,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-05-12,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Read in Full a First Time,2023-02-22,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-04-25,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-05-02,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-11-08,[],IL,103rd +Referred to Rules Committee,2024-05-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2023-04-26,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-15,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2023-02-15,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Veterans' Affairs Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to State Government Administration Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-04-11,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Public Health Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-02-24,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-05-19,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Public Health Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-03-08,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-04-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2023-10-24,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-27,[],IL,103rd +Referred to Rules Committee,2023-04-25,[],IL,103rd +Referred to Rules Committee,2023-02-21,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +First Reading,2023-04-27,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-23,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-03-08,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-23,[],IL,103rd +Referred to Rules Committee,2023-02-23,[],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2023-02-16,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2023-02-16,['passage'],IL,103rd +Resolution Adopted,2023-02-16,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +First Reading,2023-05-04,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-23,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-23,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Referred to Rules Committee,2023-02-23,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-03-15,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +Referred to Rules Committee,2023-04-19,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Referred to Rules Committee,2023-04-19,[],IL,103rd +Referred to Rules Committee,2023-03-28,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Referred to Rules Committee,2023-04-19,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2023-04-27,['reading-1'],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2023-04-20,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +First Reading,2023-05-03,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-27,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-04-19,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +"Removed Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-01-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-05-03,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-05-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +Referred to Rules Committee,2023-05-16,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Prevailed to Suspend Rule 3-6 (a),2023-02-08,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-08-29,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2023-05-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-11-07,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-09-29,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-11-08,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2023-03-02,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Resolution Adopted,2023-05-08,['passage'],IL,103rd +Resolution Adopted,2023-05-08,['passage'],IL,103rd +Resolution Adopted,2023-05-08,['passage'],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-04-19,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Chief Co-Sponsor Rep. Patrick Windhorst,2023-04-26,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Resolution Adopted,2023-01-12,['passage'],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-05-11,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-05-16,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-07-05,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-01-24,[],IL,103rd +Added Chief Co-Sponsor Rep. David Friess,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Assigned to Higher Education Committee,2023-04-18,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Assigned to State Government Administration Committee,2023-04-25,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Referred to Rules Committee,2024-04-03,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Resolution Adopted,2024-04-04,['passage'],IL,103rd +Resolution Adopted,2024-04-04,['passage'],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Resolution Adopted,2024-04-04,['passage'],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-11-07,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-11-08,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Assigned to State Government Administration Committee,2023-05-02,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +"Added Chief Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-05-04,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-01-25,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Assigned to Police & Fire Committee,2023-05-08,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-03-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Assigned to Human Services Committee,2023-03-07,['referral-committee'],IL,103rd +Assigned to Veterans' Affairs Committee,2023-05-12,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-02-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-02-14,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Assigned to Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-11-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-25,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-14,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Recommends Be Adopted Rules Committee; 004-000-000,2023-03-02,['committee-passage-favorable'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Assigned to Energy & Environment Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-02-23,[],IL,103rd +Assigned to Public Health Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Assigned to State Government Administration Committee,2023-03-07,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Assigned to Public Health Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Assigned to Public Health Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-04-20,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-25,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-04-19,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-04-11,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-09-29,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-03-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Assigned to Human Services Committee,2023-04-25,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-03-15,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-04-11,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Referred to Rules Committee,2024-03-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Referred to Rules Committee,2023-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-22,[],IL,103rd +Assigned to State Government Administration Committee,2023-04-18,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-04-25,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-03-27,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-05-09,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-04-18,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-05-08,['referral-committee'],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Assigned to Human Services Committee,2023-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-11-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-10-23,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-04-26,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Assignments,2023-05-02,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-05-02,['referral-committee'],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Moved to Suspend Rule Sen. Don Harmon; 3-6a,2024-04-12,[],IL,103rd +Referred to Assignments,2024-04-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-11-08,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-11-03,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-20,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-27,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-04-15,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2024-03-12,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Public Health Committee,2024-03-27,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2024-04-24,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-02-14,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Assigned to Energy & Environment Committee,2024-04-24,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-04-24,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2024-05-06,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Public Health Committee,2024-05-06,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Higher Education Committee,2024-05-06,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Human Services Committee,2024-04-24,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Public Health Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-05-06,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-05-13,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Assigned to State Government Administration Committee,2024-05-06,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-05-08,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Assigned to Public Health Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-02-14,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-05-06,[],IL,103rd +Assigned to State Government Administration Committee,2024-04-10,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-11-09,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2024-01-17,['reading-1'],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-04-15,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-02-28,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-12-13,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Public Health Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-05-10,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Chief Sponsor Changed to Rep. Justin Slaughter,2024-02-05,[],IL,103rd +Remove Chief Co-Sponsor Rep. Lance Yednock,2023-10-24,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Resolution Adopted,2023-01-31,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-05-03,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-02-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-08-18,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-05-03,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Arrive in Senate,2024-03-22,['introduction'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy L. Grant,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-05-16,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-05-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-01-31,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-04-25,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Public Health Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-04-30,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2023-01-31,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Resolution Adopted,2023-01-31,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2024-03-12,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-04-30,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Human Services Committee,2024-04-24,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-03-05,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-03-13,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-10-24,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-03-13,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-11-08,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-11-06,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2023-02-07,['passage'],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Resolution Adopted,2023-02-07,['passage'],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-24,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Resolution Adopted,2023-02-07,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Resolution Adopted,2023-02-07,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Approved for Consideration Assignments,2024-05-08,[],IL,103rd +Resolution Adopted,2023-02-07,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2024-03-12,['passage'],IL,103rd +Resolution Adopted,2024-03-12,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2024-03-12,['passage'],IL,103rd +Resolution Adopted,2024-03-13,['passage'],IL,103rd +Resolution Adopted,2023-05-17,['passage'],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-05-20,['referral-committee'],IL,103rd +Referred to Assignments,2024-05-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-05-24,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-23,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2023-05-02,['reading-1'],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-01-25,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Resolution Adopted,2024-04-10,['passage'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-05-03,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Resolution Adopted,2024-03-13,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-22,[],IL,103rd +Resolution Adopted,2024-05-22,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-05-22,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2024-05-22,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2024-05-22,['passage'],IL,103rd +Referred to Assignments,2024-04-10,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Approved for Consideration Assignments,2024-04-30,[],IL,103rd +Referred to Assignments,2024-05-01,[],IL,103rd +Referred to Assignments,2024-05-01,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Referred to Assignments,2024-05-01,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2024-02-21,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Resolution Adopted,2024-03-21,['passage'],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Arrive in Senate,2023-03-31,['introduction'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Arrive in Senate,2024-02-08,['introduction'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-25,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Assigned to Local Government,2024-05-14,['referral-committee'],IL,103rd +Assigned to Public Health,2024-01-24,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-13,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Assigned to Agriculture,2024-03-20,['referral-committee'],IL,103rd +Assigned to Public Health,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-27,[],IL,103rd +Removed Co-Sponsor Rep. Brad Halbrook,2024-08-23,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-04-16,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-04-30,['referral-committee'],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Assigned to Health and Human Services,2024-04-16,['referral-committee'],IL,103rd +Assigned to Public Health,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Assigned to Human Rights,2024-01-24,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Assigned to State Government,2024-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Chief Co-Sponsor Sen. Jil Tracy,2024-01-19,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Resolution Adopted,2023-05-02,['passage'],IL,103rd +Resolution Adopted,2023-05-02,['passage'],IL,103rd +Resolution Adopted,2023-05-02,['passage'],IL,103rd +Referred to Assignments,2024-05-07,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-04-30,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Resolution Adopted,2024-03-13,['passage'],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2024-04-30,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-03-13,[],IL,103rd +Chief Co-Sponsor Sen. Jil Tracy,2024-01-19,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2024-05-01,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Assignments,2024-05-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-04-26,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Resolution Adopted,2023-02-28,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2024-03-13,['passage'],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-11-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Resolution Adopted,2023-03-14,['passage'],IL,103rd +Resolution Adopted,2023-03-15,['passage'],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted by Voice Vote,2023-04-18,['passage'],IL,103rd +Resolution Adopted by Voice Vote,2023-04-18,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-11-07,[],IL,103rd +Resolution Adopted by Voice Vote,2023-04-18,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-11-07,[],IL,103rd +Resolution Adopted by Voice Vote,2023-04-18,['passage'],IL,103rd +Resolution Adopted by Voice Vote,2023-04-18,['passage'],IL,103rd +Resolution Adopted,2023-04-18,['passage'],IL,103rd +Resolution Adopted by Voice Vote,2023-04-18,['passage'],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Rules Committee,2024-03-27,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Resolution Adopted by Voice Vote,2023-04-18,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Resolution Adopted by Voice Vote,2023-04-18,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted by Voice Vote,2023-04-18,['passage'],IL,103rd +Resolution Adopted by Voice Vote,2023-04-18,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Resolution Adopted by Voice Vote,2023-04-18,['passage'],IL,103rd +Resolution Adopted by Voice Vote,2023-04-18,['passage'],IL,103rd +Resolution Adopted by Voice Vote,2023-04-18,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-18,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Rules Committee,2024-05-08,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2023-02-07,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-04-10,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-04-30,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-03-07,['referral-committee'],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Co-Sponsor All Senators,2024-03-05,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-19,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-05,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-11-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-18,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Chief Co-Sponsor Sen. Jil Tracy,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-02,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-04,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Approved for Consideration Assignments,2024-03-05,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-21,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-27,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-22,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-18,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-14,[],IL,103rd +Referred to Assignments,2023-11-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-07,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2023-04-18,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-15,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Approved for Consideration Assignments,2023-04-26,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-19,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-04,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-24,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-19,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-18,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-24,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-26,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-02,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Approved for Consideration Assignments,2024-03-05,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +First Reading,2023-05-02,['reading-1'],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Approved for Consideration Assignments,2024-03-05,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-26,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-19,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-29,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-19,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Assigned to Education,2023-03-07,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-02,[],IL,103rd +Assigned to Local Government,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-01-24,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2023-03-14,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-01-24,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Resolution Adopted,2023-03-14,['passage'],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-03-07,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Approved for Consideration Assignments,2024-03-05,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-24,[],IL,103rd +Approved for Consideration Assignments,2023-03-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-03-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-10-16,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Approved for Consideration Assignments,2023-03-09,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-05,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Assigned to Transportation,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-05,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-03-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Assigned to Public Health,2023-03-07,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-08,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2024-02-20,['passage'],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-19,[],IL,103rd +Assigned to Environment and Conservation,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2023-05-19,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Assigned to Health and Human Services,2023-03-07,['referral-committee'],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-05,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-28,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Assigned to Transportation,2023-03-07,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-21,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-01-24,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-05,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-21,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-05,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-21,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2023-01-31,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Assigned to Education,2023-05-16,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-03-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-04-19,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-02,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-21,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-12,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-03-30,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-01-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-28,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Resolution Adopted,2024-05-29,['passage'],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-21,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Resolution Adopted,2024-05-29,['passage'],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2024-05-29,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2024-05-29,['passage'],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-12,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-23,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-07,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Resolution Adopted,2023-02-22,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-02,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-23,[],IL,103rd +Resolution Adopted,2023-05-09,['passage'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Resolution Adopted,2023-05-09,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2023-05-09,['passage'],IL,103rd +Resolution Adopted,2023-05-09,['passage'],IL,103rd +Referred to Assignments,2023-03-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-02,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-07,[],IL,103rd +Resolution Adopted,2023-05-09,['passage'],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-23,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Approved for Consideration Assignments,2023-03-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-07,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Assigned to Public Health,2023-03-21,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Assigned to Behavioral and Mental Health,2023-03-21,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-21,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Approved for Consideration Assignments,2023-05-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Erica Harriss,2023-02-23,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-23,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-02-22,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-23,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-23,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-28,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Approved for Consideration Assignments,2023-03-29,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-28,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-24,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-21,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Assigned to Environment and Conservation,2023-05-02,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-18,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-10,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-18,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-02-21,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-15,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Assigned to Transportation,2023-05-16,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-18,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-15,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-15,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-18,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Approved for Consideration Assignments,2023-02-14,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Approved for Consideration Assignments,2023-01-12,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Approved for Consideration Assignments,2024-03-05,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-24,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-06,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-20,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2023-02-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Approved for Consideration Assignments,2023-01-11,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-06,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Approved for Consideration Assignments,2023-01-11,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-10-26,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-24,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Approved for Consideration Assignments,2024-03-05,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-25,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-19,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-10-25,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-25,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-24,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-24,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-02-21,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2023-05-11,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Assignments,2023-05-18,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Assigned to Agriculture,2023-05-16,['referral-committee'],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Co-Sponsor All Senators,2023-05-03,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-18,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-16,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-05,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-01-20,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-11,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-04,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-27,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-05-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-11,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-25,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-15,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-19,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-05-02,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-09,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Approved for Consideration Assignments,2023-05-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Assigned to Public Health,2023-05-09,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-10-25,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Approved for Consideration Assignments,2023-05-19,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-24,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-10,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-09,[],IL,103rd +Assigned to Public Health,2023-03-07,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-05-10,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-10,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-10,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-24,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Assigned to Public Health,2023-05-09,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-05,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-05,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-24,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-24,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-04,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Assigned to Health and Human Services,2023-05-09,['referral-committee'],IL,103rd +Assigned to Early Childhood Education,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-04,[],IL,103rd +Referred to Assignments,2023-08-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-05,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-04,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-21,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-19,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-05,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-24,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Co-Sponsor All Senators,2023-05-24,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Resolution Adopted,2023-04-26,['passage'],IL,103rd +Referred to Assignments,2023-08-16,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Resolution Adopted,2023-04-26,['passage'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-01-25,[],IL,103rd +Resolution Adopted,2023-04-26,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-21,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-04-17,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Assigned to Public Health,2024-02-06,['referral-committee'],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-05-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-25,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-05,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-24,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-03-05,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-04-27,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Approved for Consideration Assignments,2024-03-05,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-05,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-03,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-05,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-04,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-25,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-18,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-18,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-26,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-28,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Resolution Adopted,2023-04-26,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-18,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Resolution Adopted,2023-04-26,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-18,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-05,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-25,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Resolution Adopted,2023-10-25,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-03-07,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Rules Committee,2023-03-16,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Adam M. Niemerg,2024-05-08,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-14,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Robyn Gabel,2024-04-10,[],IL,103rd +Resolution Adopted,2024-04-11,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-08,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-04-19,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-13,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-07,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-14,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-03-07,['referral-committee'],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-14,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Assigned to Public Health Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-03-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-18,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Rules Committee,2024-03-14,[],IL,103rd +Referred to Assignments,2023-05-04,[],IL,103rd +Assigned to Police & Fire Committee,2024-05-13,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-20,['referral-committee'],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-06,[],IL,103rd +Assigned to Police & Fire Committee,2024-05-06,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Assigned to Executive Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2023-04-19,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-14,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-11-07,[],IL,103rd +First Reading,2023-03-15,['reading-1'],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-07,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Kimberly Du Buclet,2024-07-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-05-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-25,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2024-03-20,[],IL,103rd +Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy L. Grant,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Resolution Adopted,2023-02-14,['passage'],IL,103rd +Resolution Adopted,2023-02-14,['passage'],IL,103rd +Resolution Adopted,2023-02-14,['passage'],IL,103rd +Resolution Adopted,2024-04-15,['passage'],IL,103rd +Resolution Adopted,2024-04-15,['passage'],IL,103rd +Resolution Adopted by Voice Vote,2024-04-02,['passage'],IL,103rd +Resolution Adopted,2024-04-15,['passage'],IL,103rd +Resolution Adopted,2024-04-15,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-03-22,[],IL,103rd +Referred to Rules Committee,2024-04-16,[],IL,103rd +Resolution Adopted,2024-04-16,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-03-07,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Resolution Adopted,2024-05-13,['passage'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-05-14,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Resolution Adopted,2024-05-13,['passage'],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Resolution Adopted,2024-05-13,['passage'],IL,103rd +Referred to Assignments,2024-02-20,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-04-30,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-05-14,[],IL,103rd +Resolution Adopted,2024-05-14,['passage'],IL,103rd +Referred to Assignments,2024-05-14,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2024-04-16,[],IL,103rd +Referred to Rules Committee,2024-03-14,[],IL,103rd +Referred to Rules Committee,2024-04-16,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-20,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-05-15,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Resolution Adopted,2024-05-15,['passage'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-05-15,[],IL,103rd +Approved for Consideration Assignments,2023-05-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-07-17,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-03-20,[],IL,103rd +Referred to Rules Committee,2024-03-20,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Resolution Adopted,2024-04-16,['passage'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2024-03-20,[],IL,103rd +Referred to Assignments,2024-03-20,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Approved for Consideration Assignments,2024-05-15,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-04-30,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-03-21,[],IL,103rd +Resolution Adopted,2024-03-21,['passage'],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2024-05-20,['passage'],IL,103rd +Resolution Adopted,2024-05-20,['passage'],IL,103rd +Resolution Adopted,2024-05-20,['passage'],IL,103rd +Resolution Adopted,2024-05-20,['passage'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-17,[],IL,103rd +Referred to Assignments,2024-05-17,[],IL,103rd +Resolution Adopted,2024-05-20,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2024-03-07,[],IL,103rd +Referred to Assignments,2024-05-25,[],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-05-22,[],IL,103rd +Referred to Rules Committee,2024-05-24,[],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-05-14,[],IL,103rd +Approved for Consideration Assignments,2024-02-20,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2024-05-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-05-25,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-05-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2024-05-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-01-19,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-01-25,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-20,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-20,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-20,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-22,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-20,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-22,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-22,[],IL,103rd +Approved for Consideration Assignments,2024-05-25,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-22,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Approved for Consideration Assignments,2024-05-25,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-22,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Resolution Adopted,2023-03-01,['passage'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-23,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-21,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-05-14,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-23,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2023-03-28,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-03-15,[],IL,103rd +Referred to Rules Committee,2023-03-15,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-21,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-05-10,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-11-08,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-11-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-01-24,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-23,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Resolution Adopted,2023-05-08,['passage'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2023-05-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-04-25,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Burke,2023-10-24,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-04-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-04-11,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Assigned to Public Health Committee,2023-05-08,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Added Co-Sponsor All Other Republican Members of the House,2023-03-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Assigned to Human Services Committee,2023-05-10,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +Referred to Rules Committee,2023-04-20,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2023-09-26,[],IL,103rd +Referred to Rules Committee,2023-05-10,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Dennis Tipsword, Jr.",2023-04-25,[],IL,103rd +Resolution Adopted,2023-04-25,['passage'],IL,103rd +Resolution Adopted,2023-04-25,['passage'],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2023-10-19,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2023-01-25,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-22,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-03-07,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-02-01,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-03-07,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-08-08,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2023-11-08,[],IL,103rd +Referred to Rules Committee,2023-11-07,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-11-07,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-25,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2023-01-25,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +First Reading,2023-05-02,['reading-1'],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-05-12,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-05-11,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-22,[],IL,103rd +Referred to Rules Committee,2023-05-11,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-04-19,[],IL,103rd +Referred to Rules Committee,2023-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-11-07,[],IL,103rd +Referred to Rules Committee,2023-02-22,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-05-17,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +First Reading,2023-11-07,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Mark L. Walker,2023-05-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-05-10,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-10,[],IL,103rd +Referred to Assignments,2023-01-25,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2023-05-04,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Assigned to State Government Administration Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2023-02-02,['reading-1'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2023-03-14,[],IL,103rd +Resolution Adopted,2023-03-14,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-07,[],IL,103rd +Resolution Adopted,2023-03-02,['passage'],IL,103rd +Resolution Adopted,2023-03-01,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-07,[],IL,103rd +Resolution Adopted,2023-03-14,['passage'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Resolution Adopted,2023-03-23,['passage'],IL,103rd +Resolution Adopted,2023-03-23,['passage'],IL,103rd +Resolution Adopted,2023-03-23,['passage'],IL,103rd +Resolution Adopted,2023-03-08,['passage'],IL,103rd +Resolution Adopted,2023-03-23,['passage'],IL,103rd +Resolution Adopted,2023-03-23,['passage'],IL,103rd +Resolution Adopted,2023-03-23,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. David Friess,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2023-05-03,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-28,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-23,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Assigned to State Government,2023-05-02,['referral-committee'],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-11,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Assigned to Agriculture,2023-03-07,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-05-04,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +Referred to Assignments,2023-05-11,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-10,[],IL,103rd +Referred to Assignments,2023-02-28,[],IL,103rd +Referred to Assignments,2023-03-07,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-29,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-19,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-29,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-20,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-20,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Assigned to Human Services Committee,2024-03-27,['referral-committee'],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Human Services Committee,2024-04-15,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Kimberly Du Buclet,2024-04-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-24,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-04-19,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Human Services Committee,2024-04-24,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-20,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-20,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Assigned to Higher Education Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-20,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Assigned to Higher Education Committee,2024-03-12,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-12,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2023-08-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Chief Sponsor Changed to Rep. Camille Y. Lilly,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-28,['referral-committee'],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-20,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Public Health Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to State Government Administration Committee,2024-03-20,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-22,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to State Government Administration Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-12,['referral-committee'],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-20,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-02-27,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Health Care Licenses Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-20,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2023-02-27,['passage'],IL,103rd +Assigned to State Government Administration Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2023-05-03,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-04-15,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-02-14,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-03-05,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Public Health Committee,2024-03-12,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-01-19,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Assigned to State Government Administration Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2023-10-23,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to State Government Administration Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-05-06,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2024-01-31,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Recommends Be Adopted Rules Committee; 004-000-000,2024-02-20,['committee-passage-favorable'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-03-27,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Removed Co-Sponsor Rep. David Friess,2024-01-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-21,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-02-14,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-24,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Veterans' Affairs Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +First Reading,2023-05-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +"Referred to Transportation: Regulations, Roads & Bridges",2023-05-11,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-05-08,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to State Government Administration Committee,2024-05-28,['referral-committee'],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-05-11,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +"Assigned to Small Business, Tech Innovation, and Entrepreneurship Committee",2024-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Assigned to Human Services Committee,2024-05-24,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-10-16,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-10-25,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Veterans' Affairs Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-05-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to State Government Administration Committee,2024-01-31,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-20,[],IL,103rd +Chief Co-Sponsor Rep. Robyn Gabel,2023-09-26,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2024-05-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-20,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-05-06,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +"Assigned to Small Business, Tech Innovation, and Entrepreneurship Committee",2024-05-06,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-20,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Energy & Environment Committee,2024-05-06,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-05-06,['referral-committee'],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-20,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Veterans' Affairs Committee,2024-05-13,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Assigned to Consumer Protection Committee,2024-03-27,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Approved for Consideration Assignments,2024-04-30,[],IL,103rd +Resolution Adopted,2024-05-22,['passage'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Resolution Adopted,2024-04-30,['passage'],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-11-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2024-05-14,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-05-01,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2023-03-30,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2023-03-30,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2023-03-30,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2024-04-25,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Arrive in Senate,2023-11-09,['introduction'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +Arrive in Senate,2023-04-27,['introduction'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-05-23,[],IL,103rd +Arrive in Senate,2023-04-20,['introduction'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-01-31,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Assigned to Public Health,2024-04-16,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-30,['passage'],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Assigned to State Government,2024-04-16,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Assigned to Environment and Conservation,2024-01-31,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Behavioral and Mental Health,2024-05-07,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +Assigned to Human Rights,2024-02-20,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Assigned to Environment and Conservation,2024-01-24,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Assigned to Behavioral and Mental Health,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Assigned to Public Health,2024-02-06,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-30,['passage'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Assigned to Agriculture,2024-02-06,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Public Health,2024-02-06,['referral-committee'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-01-24,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Rules Committee,2024-05-06,[],IL,103rd +Assigned to Executive,2024-01-24,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2023-07-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2024-05-07,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2024-05-06,['passage'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-11-07,[],IL,103rd +Resolution Adopted,2024-05-06,['passage'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Resolution Adopted,2024-04-30,['passage'],IL,103rd +Resolution Adopted,2024-05-06,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Resolution Adopted,2024-05-07,['passage'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2024-03-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-03-12,[],IL,103rd +Resolution Adopted,2023-02-07,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Assigned to Human Rights,2024-02-20,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-05-03,[],IL,103rd +Resolution Adopted,2023-11-08,['passage'],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-05-03,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-18,[],IL,103rd +Resolution Adopted,2023-11-08,['passage'],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-11-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2023-10-24,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2023-05-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-03-13,[],IL,103rd +Referred to Rules Committee,2024-03-13,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Rules Committee,2024-03-13,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Rules Committee,2024-03-13,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Approved for Consideration Assignments,2024-03-12,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-05-08,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Resolution Adopted,2024-05-08,['passage'],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Resolution Adopted,2024-05-08,['passage'],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-04-30,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-30,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-30,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-02,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-29,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2023-04-19,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-29,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2023-04-19,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2023-04-19,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-29,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-29,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2023-04-19,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2023-05-16,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-30,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-01,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-30,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-10-26,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2023-03-21,['passage'],IL,103rd +Resolution Adopted,2023-02-14,['passage'],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2023-03-21,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-04-15,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2023-05-02,['passage'],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2023-03-21,['passage'],IL,103rd +Referred to Rules Committee,2024-05-01,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Resolution Adopted,2023-03-21,['passage'],IL,103rd +Referred to Rules Committee,2024-04-30,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Resolution Adopted,2023-03-21,['passage'],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2023-03-21,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Resolution Adopted,2024-05-03,['passage'],IL,103rd +Approved for Consideration Assignments,2024-05-07,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Resolution Adopted,2024-05-03,['passage'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Resolution Adopted,2024-05-03,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2024-05-03,['passage'],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-30,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2024-03-11,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Chief Co-Sponsor Rep. Katie Stuart,2023-05-26,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2023-05-27,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Resolution Adopted,2024-04-10,['passage'],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Resolution Adopted,2024-04-10,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Resolution Adopted,2024-04-10,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Resolution Adopted,2024-04-10,['passage'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Resolution Adopted,2024-04-10,['passage'],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-04-18,[],IL,103rd +Referred to Assignments,2023-05-11,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-10-26,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Resolution Adopted,2024-04-10,['passage'],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-03-07,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-05-03,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-05-03,['passage'],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Resolution Adopted,2023-05-03,['passage'],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2023-05-03,['passage'],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Resolution Adopted,2023-03-15,['passage'],IL,103rd +Referred to Rules Committee,2024-04-02,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2023-11-07,[],IL,103rd +Referred to Rules Committee,2024-04-02,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-04-02,[],IL,103rd +Referred to Assignments,2023-11-08,[],IL,103rd +Referred to Rules Committee,2024-04-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-04-02,[],IL,103rd +Referred to Assignments,2023-10-26,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2024-04-02,[],IL,103rd +Referred to Assignments,2023-11-08,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-05-24,[],IL,103rd +Referred to Assignments,2023-03-07,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-21,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-11-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-11,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-18,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Assigned to Health and Human Services,2023-05-02,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-10-25,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-20,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Assignments,2023-05-18,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Approved for Consideration Assignments,2024-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-19,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-21,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2024-02-20,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-31,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-05,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Resolution Adopted,2023-10-25,['passage'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-26,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-19,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-24,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Approved for Consideration Assignments,2024-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-02,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-20,[],IL,103rd +Co-Sponsor All Senators,2023-04-25,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-06,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Approved for Consideration Assignments,2023-05-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-09,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-07,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Approved for Consideration Assignments,2024-03-05,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-24,[],IL,103rd +Resolution Adopted,2023-02-23,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-09,[],IL,103rd +Assigned to Public Health,2023-05-02,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-31,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-25,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Approved for Consideration Assignments,2023-05-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-16,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-10,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-04,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Chief Sponsor Changed to Sen. Neil Anderson,2023-01-23,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-25,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-05,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-25,[],IL,103rd +Resolution Adopted,2023-01-31,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Resolution Adopted,2024-02-20,['passage'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Assigned to Licensed Activities,2023-05-17,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Chief Co-Sponsor Sen. Bill Cunningham,2023-03-29,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Resolution Adopted,2023-02-22,['passage'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Randy E. Frese,2023-03-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-19,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-19,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2024-03-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Agriculture,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Sanalitro,2023-01-31,[],IL,103rd +Resolution Adopted,2024-02-20,['passage'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Resolution Adopted,2023-04-26,['passage'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-06,[],IL,103rd +Resolution Adopted,2024-02-20,['passage'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-21,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-11-08,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-27,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-02-21,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-08,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Assigned to State Government,2023-05-16,['referral-committee'],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Resolution Adopted,2023-05-27,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-01-30,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-28,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Assigned to State Government,2023-05-18,['referral-committee'],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-19,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-26,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-11,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Approved for Consideration Assignments,2024-03-05,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-27,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-10-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-03-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-19,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2023-01-31,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-04,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-11,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Approved for Consideration Assignments,2023-05-19,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2023-10-25,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-16,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-24,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-11-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-15,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-05,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-11,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-03,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2024-02-20,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-10,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-04,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-10,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-24,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-15,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-19,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-26,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Assigned to Public Health,2024-01-24,['referral-committee'],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-24,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-24,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-20,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-11,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2024-01-25,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-11,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Arrive in Senate,2023-10-26,['introduction'],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-18,[],IL,103rd +Resolution Adopted,2024-02-20,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-19,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-08-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-10,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Assigned to Higher Education Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-03-07,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-20,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Assigned to Executive,2024-01-24,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2024-05-08,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-10-25,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-03,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-03,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-03-14,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-04-24,['referral-committee'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-01-31,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Assigned to Police & Fire Committee,2024-05-13,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-03-14,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Assigned to Human Services Committee,2024-05-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Assigned to Ethics & Elections,2024-03-27,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Referred to Assignments,2024-02-20,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Assigned to Executive Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Assigned to Police & Fire Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-03-14,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2023-12-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-01-11,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Assigned to Energy & Environment Committee,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Rules Committee,2024-03-14,[],IL,103rd +Assigned to State Government Administration Committee,2024-02-14,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Assigned to Human Services Committee,2024-05-20,['referral-committee'],IL,103rd +Assigned to Mental Health & Addiction Committee,2024-05-20,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-03-07,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Assigned to State Government,2024-04-16,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-03-08,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2023-04-26,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-01-31,['passage'],IL,103rd +Removed Co-Sponsor Rep. Joyce Mason,2023-01-26,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-07-20,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Resolution Adopted,2023-05-10,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2023-05-18,['reading-1'],IL,103rd +Resolution Adopted,2023-05-10,['passage'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2023-05-10,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Resolution Adopted,2023-05-10,['passage'],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-05-10,['passage'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-01-31,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-01-31,['passage'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-10-25,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-25,['passage'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-25,['passage'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-10-25,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-10-25,['passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-09-26,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2023-05-04,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +First Reading,2023-02-14,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Public Health Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-05-27,['passage'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-05-27,['passage'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Resolution Adopted,2023-05-27,['passage'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Resolution Adopted,2023-05-27,['passage'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Resolution Adopted,2023-03-30,['passage'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Resolution Adopted,2023-03-14,['passage'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +First Reading,2023-04-27,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2023-05-03,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2023-05-16,['passage'],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2023-05-26,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-29,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2024-05-06,['passage'],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-05-14,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2024-05-01,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2024-05-03,['passage'],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2024-05-22,['passage'],IL,103rd +Arrive in Senate,2024-02-22,['introduction'],IL,103rd +Approved for Consideration Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-01,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-04-10,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Resolution Adopted,2023-03-01,['passage'],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2023-03-01,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Resolution Adopted,2023-05-17,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2023-11-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2024-01-16,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2024-05-22,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-01,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-05-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-30,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Assigned to Education,2024-03-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Assigned to State Government Administration Committee,2024-03-12,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-05-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Assigned to Public Health,2024-02-06,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-29,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2023-03-16,['passage'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-05-15,['passage'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Assigned to Higher Education,2023-03-07,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-04,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-29,[],IL,103rd +Resolution Adopted,2023-05-04,['passage'],IL,103rd +Chief Co-Sponsor Rep. La Shawn K. Ford,2023-05-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Resolution Adopted,2023-05-15,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2024-05-01,['passage'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2023-05-02,['passage'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-03-13,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-02-28,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Co-Sponsor All Senators,2023-11-07,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-01,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Resolution Adopted,2023-03-14,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-05-02,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Resolution Adopted,2023-05-03,['passage'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Chief Co-Sponsor Sen. Mary Edly-Allen,2024-03-14,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Resolution Adopted,2023-02-28,['passage'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Resolution Adopted,2023-02-28,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-04-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-12,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to State Government,2024-04-16,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Assigned to Environment and Conservation,2024-01-24,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-24,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Assigned to Energy and Public Utilities,2024-03-20,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-02-28,['passage'],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Resolution Adopted,2023-03-15,['passage'],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Resolution Adopted,2023-03-28,['passage'],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-01-17,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Resolution Adopted,2023-05-12,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-30,[],IL,103rd +Resolution Adopted,2023-05-12,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Resolution Adopted,2023-03-28,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Resolution Adopted,2023-01-31,['passage'],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-05-01,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-29,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2023-01-12,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2024-03-18,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-02,[],IL,103rd +Resolution Adopted,2024-04-30,['passage'],IL,103rd +Assigned to Human Rights,2024-04-16,['referral-committee'],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Resolution Adopted,2024-04-30,['passage'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-29,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-04-29,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Resolution Adopted,2023-05-09,['passage'],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2023-11-07,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-01,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Halbrook,2024-05-23,[],IL,103rd +Referred to Assignments,2023-11-03,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-02-22,['passage'],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-10-26,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-11-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-30,[],IL,103rd +Arrive in Senate,2023-03-10,['introduction'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-04-19,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Resolution Adopted,2023-05-04,['passage'],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Resolution Adopted,2023-04-19,['passage'],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Resolution Adopted,2023-04-19,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2023-04-19,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-01,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Resolution Adopted,2023-04-19,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Referred to Rules Committee,2023-05-17,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-09,[],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-03-08,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-28,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-04-25,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-05-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-04-09,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-14,['referral-committee'],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Approved for Consideration Assignments,2023-01-25,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-02,[],IL,103rd +Approved for Consideration Assignments,2023-01-11,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-03,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-01-25,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-03-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-25,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-23,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Assignments,2024-02-28,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-17,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Assigned to State Government,2023-05-09,['referral-committee'],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-25,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-20,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-09,[],IL,103rd +Referred to Assignments,2024-03-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-01-30,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Co-Sponsor All Senators,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-03-10,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-19,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-09-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Resolution Adopted,2023-01-25,['passage'],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Resolution Adopted,2024-04-16,['passage'],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Resolution Adopted,2024-04-16,['passage'],IL,103rd +Referred to Assignments,2024-05-14,[],IL,103rd +Resolution Adopted,2024-05-13,['passage'],IL,103rd +Referred to Rules Committee,2024-05-08,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Resolution Adopted,2024-05-13,['passage'],IL,103rd +Referred to Assignments,2024-05-10,[],IL,103rd +Resolution Adopted,2024-05-13,['passage'],IL,103rd +Resolution Adopted,2024-05-13,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2024-05-02,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Assignments,2024-01-26,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Resolution Adopted,2024-05-16,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-05-16,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Resolution Adopted,2024-05-16,['passage'],IL,103rd +Referred to Rules Committee,2024-05-16,[],IL,103rd +Resolution Adopted,2024-05-16,['passage'],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Approved for Consideration Assignments,2023-03-09,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Assignments,2023-10-25,[],IL,103rd +Referred to Assignments,2023-10-26,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Resolution Adopted,2023-03-09,['passage'],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-11-08,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +Referred to Assignments,2023-04-25,[],IL,103rd +Referred to Assignments,2023-05-09,[],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Assignments,2023-05-02,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-10,[],IL,103rd +Referred to Assignments,2023-05-18,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Assignments,2023-05-18,[],IL,103rd +Referred to Assignments,2023-05-19,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-23,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Referred to Assignments,2023-03-02,[],IL,103rd +Referred to Assignments,2023-04-20,[],IL,103rd +Referred to Assignments,2023-03-07,[],IL,103rd +Referred to Assignments,2023-02-28,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-07,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Referred to Assignments,2023-03-10,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-14,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-21,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-02,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-21,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Rules Committee,2024-03-20,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Resolution Adopted,2024-03-20,['passage'],IL,103rd +Resolution Adopted,2024-04-17,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-17,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-10,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-16,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Approved for Consideration Assignments,2024-04-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-16,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-16,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-16,[],IL,103rd +Approved for Consideration Assignments,2024-04-16,[],IL,103rd +Assigned to State Government,2023-05-18,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-16,[],IL,103rd +Approved for Consideration Assignments,2023-03-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-16,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-04-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-04,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-02-17,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Assignments,2023-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Approved for Consideration Assignments,2023-03-09,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2024-01-23,[],IL,103rd +Referred to Assignments,2023-02-03,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Referred to Assignments,2023-10-24,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2023-02-07,[],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +"Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-01-11,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Chief Co-Sponsor Sen. Erica Harriss,2023-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-16,[],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Resolution Adopted,2024-03-06,['passage'],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2024-01-24,[],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy L. Grant,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-05,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-07,[],IL,103rd +Resolution Adopted,2023-03-08,['passage'],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-02,[],IL,103rd +Resolution Adopted,2023-03-23,['passage'],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Resolution Adopted,2023-03-23,['passage'],IL,103rd +Resolution Adopted,2023-03-08,['passage'],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2023-03-23,['passage'],IL,103rd +Referred to Assignments,2024-02-02,[],IL,103rd +Resolution Adopted,2023-03-02,['passage'],IL,103rd +Resolution Adopted,2023-03-01,['passage'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-07,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Approved for Consideration Assignments,2023-03-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Veterans Affairs,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-01-24,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Public Health,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Remove Chief Co-Sponsor Rep. Norine K. Hammond,2023-01-18,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-09,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-04,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +First Reading,2024-04-02,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-02,[],IL,103rd +Referred to Rules Committee,2024-04-02,[],IL,103rd +Referred to Rules Committee,2024-04-02,[],IL,103rd +Resolution Adopted by Voice Vote,2024-04-02,['passage'],IL,103rd +Resolution Adopted by Voice Vote,2024-04-02,['passage'],IL,103rd +Resolution Adopted by Voice Vote,2024-04-02,['passage'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Assignments,2024-04-29,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Resolution Adopted,2024-05-22,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Michelle Mussman,2024-05-21,[],IL,103rd +Resolution Adopted,2024-05-21,['passage'],IL,103rd +Referred to Rules Committee,2024-04-02,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Assignments,2024-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-28,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Resolution Adopted,2024-05-21,['passage'],IL,103rd +Referred to Rules Committee,2024-05-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2024-05-20,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +First Reading,2024-03-22,['reading-1'],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-11,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-05-24,[],IL,103rd +Referred to Assignments,2024-05-24,[],IL,103rd +Referred to Rules Committee,2024-05-24,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Assignments,2024-01-10,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-18,[],IL,103rd +Referred to Assignments,2023-01-25,[],IL,103rd +Referred to Assignments,2023-01-25,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Assignments,2024-05-24,[],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +Approved for Consideration Assignments,2023-03-21,[],IL,103rd +Referred to Assignments,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Assignments,2023-01-24,[],IL,103rd +Referred to Assignments,2023-01-25,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-11-07,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Remove Chief Co-Sponsor Rep. Jeff Keicher,2023-01-30,[],IL,103rd +Referred to Rules Committee,2023-05-11,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-01-30,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-05-10,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-31,[],IL,103rd +Referred to Rules Committee,2024-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-05-23,[],IL,103rd +Referred to Rules Committee,2023-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-04-17,[],IL,103rd +Referred to Assignments,2023-01-20,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Rules Refers to Mental Health & Addiction Committee,2023-05-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Recommends Be Adopted Rules Committee; 005-000-000,2023-02-07,['committee-passage-favorable'],IL,103rd +Assigned to Human Services Committee,2023-04-11,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-05-02,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +Assigned to Energy & Environment Committee,2023-04-11,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-03-07,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Recommends Be Adopted Rules Committee; 003-002-000,2023-02-01,['committee-passage-favorable'],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Assigned to Transportation,2023-05-16,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-04-11,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-03-07,['referral-committee'],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-29,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Approved for Consideration Assignments,2023-03-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-22,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-21,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-23,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-25,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-21,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-20,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-21,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Resolution Adopted,2023-02-14,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-22,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-24,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-21,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-21,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-20,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-22,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Assignments,2024-02-06,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-22,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Assigned to Public Health,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Resolution Adopted,2023-02-14,['passage'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-21,[],IL,103rd +Assigned to State Government Administration Committee,2023-03-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-21,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-21,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Approved for Consideration Assignments,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-02,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-03-07,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2023-02-01,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-07,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-08,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-23,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-22,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Assigned to Public Health,2023-05-02,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +First Reading,2023-02-16,['reading-1'],IL,103rd +Referred to Assignments,2024-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-08,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Approved for Consideration Assignments,2023-02-22,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-02-23,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +First Reading,2023-02-07,['reading-1'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-07,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-21,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Approved for Consideration Assignments,2023-03-07,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-09-29,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-15,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-05-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Referred to Rules Committee,2023-05-18,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-03-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-01-12,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Referred to Rules Committee,2023-03-01,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-23,[],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-21,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Referred to Rules Committee,2023-11-07,[],IL,103rd +Resolution Adopted,2023-02-15,['passage'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Resolution Adopted,2023-03-22,['passage'],IL,103rd +Referred to Rules Committee,2023-05-10,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Resolutions Consent Calendar,2023-03-24,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-05-10,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-08-21,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2023-05-02,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-09,[],IL,103rd +Referred to Rules Committee,2023-04-27,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-03-15,[],IL,103rd +Referred to Rules Committee,2023-03-08,[],IL,103rd +Referred to Rules Committee,2023-04-19,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +First Reading,2023-02-28,['reading-1'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Assignments,2024-02-09,[],IL,103rd +Referred to Rules Committee,2023-02-23,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-27,[],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-11-07,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-11-07,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-01-19,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-16,['referral-committee'],IL,103rd +Directed to Multiple Committees Public Health; Appropriations,2024-02-06,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-28,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-20,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2024-01-31,['referral-committee'],IL,103rd +Assigned to Education,2024-01-31,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Public Health,2024-02-20,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2024-01-31,['referral-committee'],IL,103rd +Assigned to Education,2024-02-20,['referral-committee'],IL,103rd +Assigned to Education,2024-02-28,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2024-02-20,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to Insurance,2024-02-20,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-02-14,[],IL,103rd +Assigned to Energy and Public Utilities,2024-02-20,['referral-committee'],IL,103rd +Assigned to Insurance,2024-01-31,['referral-committee'],IL,103rd +Assigned to Agriculture,2024-01-31,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-06,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-02-07,[],IL,103rd +Assigned to Licensed Activities,2024-01-31,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Higher Education,2023-01-31,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-07,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation,2023-01-31,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-01-31,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-07,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-07,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-07,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-07,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-02-07,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-09,[],IL,103rd +Assigned to Labor,2023-03-07,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-16,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-02-16,[],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2023-02-14,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-28,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-03-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2023-02-28,['referral-committee'],IL,103rd +Assigned to Local Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-21,[],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-04-11,[],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Agriculture,2024-02-28,['referral-committee'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-02-23,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-02-08,[],IL,103rd +Moved to Suspend Rule Sen. John F. Curran; 3-6(a),2024-02-07,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-21,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Assigned to Insurance,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Assigned to Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-09-09,[],IL,103rd +Assigned to Appropriations,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-07-11,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-06-03,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-06-03,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-02-22,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-05,[],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2024-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-02-07,[],IL,103rd +Resolution Adopted,2024-05-16,['passage'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-29,[],IL,103rd +Assigned to Revenue,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-14,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-28,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Mental Health & Addiction Committee,2024-02-28,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-12,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-14,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Daniel Didech,2024-02-09,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-01-31,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2024-02-20,[],IL,103rd +Assigned to Housing,2024-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-17,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Cities & Villages Committee,2024-03-12,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-17,['passage'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-22,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-23,[],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 17, 2024",2024-04-16,[],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-04-16,[],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 17, 2024",2024-04-16,[],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-01-30,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Yolonda Morris,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Yolonda Morris,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-02-06,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations,2024-02-28,['referral-committee'],IL,103rd +Assigned to Insurance,2024-02-06,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2024-01-16,[],IL,103rd +Assigned to Appropriations,2024-02-20,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Higher Education,2023-02-07,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-16,['referral-committee'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-01-25,[],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2024-02-06,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-01-31,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-29,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-14,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-14,['referral-committee'],IL,103rd +Assigned to Local Government,2024-02-20,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-07,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-07,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-02-15,[],IL,103rd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Natalie A. Manley",2023-01-25,[],IL,103rd +Assigned to Executive Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-07,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-23,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-21,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-02-10,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-15,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-11-13,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations-Higher Education Committee,2023-02-15,['referral-committee'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Executive Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-07,[],IL,103rd +Assigned to Energy & Environment Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Appropriations-Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Assigned to Executive Committee,2023-02-15,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-02-13,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-03,[],IL,103rd +Referred to Rules Committee,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-22,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-24,[],IL,103rd +Assigned to Higher Education,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-01-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-05-25,[],IL,103rd +Assigned to Insurance,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Robyn Gabel,2024-05-25,[],IL,103rd +Assigned to Appropriations,2024-01-24,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-20,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-02-01,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-30,[],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-01-30,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-05-25,[],IL,103rd +Assigned to Ethics & Elections,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-02-15,[],IL,103rd +Assigned to Counties & Townships Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2023-03-29,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-15,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-27,[],IL,103rd +Assigned to Insurance Committee,2023-02-15,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Assigned to Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-25,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-02-01,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-02-15,[],IL,103rd +Assigned to Higher Education Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-02-16,[],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-27,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-02-21,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-01,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-23,['referral-committee'],IL,103rd +Removed Co-Sponsor Rep. Anne Stava-Murray,2023-10-31,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-23,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2023-02-21,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-02-23,[],IL,103rd +Assigned to Executive Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-22,[],IL,103rd +Assigned to Gaming Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-23,['referral-committee'],IL,103rd +Assigned to Veterans' Affairs Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-27,[],IL,103rd +Chief Sponsor Changed to Rep. Michael J. Kelly,2023-02-28,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2023-02-14,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Housing,2023-02-28,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Justin Slaughter,2023-02-21,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Restorative Justice,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-08-01,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-02-21,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-04-03,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Housing,2023-02-28,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-08-08,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-02-23,[],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-02-28,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-22,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2024-02-15,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-22,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-22,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-02-27,[],IL,103rd +Assigned to Public Utilities Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-24,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-08-18,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Hoan Huynh,2023-03-09,[],IL,103rd +Assigned to Labor,2024-02-20,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-05-06,[],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Counties & Townships Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-24,[],IL,103rd +Assigned to Appropriations-Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-04-11,[],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-24,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-24,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-08,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-05-28,[],IL,103rd +Assigned to Prescription Drug Affordability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-22,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +First Reading,2023-04-27,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2023-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-05-08,[],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2023-05-02,[],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-05-03,[],IL,103rd +First Reading,2023-04-27,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-01-10,[],IL,103rd +Removed Co-Sponsor Rep. Lindsey LaPointe,2023-08-21,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-01-22,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-01-19,[],IL,103rd +Chief Sponsor Changed to Rep. Camille Y. Lilly,2024-02-20,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +First Reading,2023-02-23,['reading-1'],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-25,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-01-23,[],IL,103rd +Resolution Adopted,2023-01-12,['passage'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Norma Hernandez,2024-03-06,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-02-06,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Tabled By Sponsor Rep. Amy L. Grant,2023-05-05,['withdrawal'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2023-03-23,['committee-passage-favorable'],IL,103rd +Assigned to State Government Administration Committee,2023-02-21,['referral-committee'],IL,103rd +Recommends Be Adopted Health Care Licenses Committee; 007-000-000,2023-03-29,['committee-passage-favorable'],IL,103rd +Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-000-000,2023-04-26,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of Resolutions,2023-02-01,[],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2023-04-18,['committee-passage-favorable'],IL,103rd +Recommends Be Adopted Adoption & Child Welfare Committee; 012-000-000,2023-03-14,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Recommends Be Adopted Energy & Environment Committee; 026-000-000,2023-04-18,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-03-10,[],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 017-000-000",2023-05-09,['committee-passage-favorable'],IL,103rd +Recommends Be Adopted Human Services Committee; 009-000-000,2023-04-19,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of Resolutions,2023-02-07,[],IL,103rd +Recommends Be Adopted Mental Health & Addiction Committee; 020-000-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Insurance,2023-01-31,['referral-committee'],IL,103rd +Recommends Be Adopted Health Care Licenses Committee; 011-000-000,2023-03-01,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2023-05-23,[],IL,103rd +Recommends Be Adopted Agriculture & Conservation Committee; 007-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-13,[],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-01-18,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Terri Bryant,2023-01-31,[],IL,103rd +Assigned to Public Utilities Committee,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-23,[],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-02-14,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-07,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-02,[],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Assigned to Health Care Licenses Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-14,[],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2024-02-14,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-03-05,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2024-02-08,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-03-05,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-02-27,[],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-03-05,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2024-02-20,[],IL,103rd +Assigned to Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Norma Hernandez,2024-03-06,[],IL,103rd +Assigned to Restorative Justice,2024-03-12,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-02-28,['referral-committee'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Cities & Villages Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-14,['referral-committee'],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Norma Hernandez,2024-03-06,[],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-02-14,[],IL,103rd +"Assigned to Small Business, Tech Innovation, and Entrepreneurship Committee",2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-02-16,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Cities & Villages Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-07,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Assigned to Human Services Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-02-16,[],IL,103rd +Assigned to Ethics & Elections,2024-03-27,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-02-06,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2024-02-15,[],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-03-28,[],IL,103rd +Assigned to Early Childhood Education,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-28,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +Assigned to Transportation,2023-02-14,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Assigned to Appropriations- Education,2023-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2023-03-02,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Terri Bryant,2023-02-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-02-08,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Assigned to Labor,2023-02-14,['referral-committee'],IL,103rd +Assigned to Education,2023-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-02-07,[],IL,103rd +Assigned to Insurance,2023-01-31,['referral-committee'],IL,103rd +Assigned to Education,2024-01-31,['referral-committee'],IL,103rd +Assigned to Education,2024-02-06,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Financial Institutions,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-08,[],IL,103rd +Assigned to Agriculture,2024-02-14,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2023-02-21,[],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-09,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-06,['referral-committee'],IL,103rd +Assigned to Insurance,2024-01-31,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Behavioral and Mental Health,2023-02-21,['referral-committee'],IL,103rd +Assigned to Public Health,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-21,['referral-committee'],IL,103rd +Assigned to Education,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-02-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2023-02-15,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-22,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Assigned to Labor,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-02-23,[],IL,103rd +Assigned to Insurance,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Local Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-02-22,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-24,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-15,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-04-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dan McConchie,2023-02-23,[],IL,103rd +Assigned to State Government,2023-02-28,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-15,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-03,[],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2023-02-28,['referral-committee'],IL,103rd +Waive Posting Notice,2023-05-16,[],IL,103rd +Assigned to Appropriations- Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to Education,2023-03-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-21,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Assigned to Appropriations,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-23,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dan McConchie,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-22,[],IL,103rd +Assigned to Human Rights,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2023-02-21,[],IL,103rd +"Directed to Multiple Committees Health and Human Services, then to Appropriations-Health and Human Services",2023-02-28,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +"Directed to Multiple Committees Health and Human Services, then to Appropriations-Health and Human Services",2023-02-28,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-02-16,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-02-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-05-09,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-30,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Dave Syverson,2023-04-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-04-25,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2024-02-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-10-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sue Rezin,2023-05-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2024-01-17,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Jil Tracy,2024-01-31,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-02-01,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sue Rezin,2024-02-14,[],IL,103rd +Referred to Congratulatory Consent Calendar,2023-03-09,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-02-22,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-05,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2024-03-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-02-14,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-02-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-02-22,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2024-02-06,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2024-02-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-03-06,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Jil Tracy,2024-02-16,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-22,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-03-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-31,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-01-25,['passage'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-01-25,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Be Adopted Senate Special Committee on Pensions; 011-000-000,2023-02-22,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-27,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-16,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 8, 2023",2023-03-07,[],IL,103rd +Be Adopted Health and Human Services; 013-000-000,2023-02-22,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-02-23,['passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 23, 2023",2023-02-22,[],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2023-05-05,[],IL,103rd +Resolution Adopted,2023-02-23,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-02-23,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 15, 2023",2023-02-14,[],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Resolution Adopted,2023-02-23,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Be Adopted Public Health; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Assigned to Housing,2024-03-05,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 8, 2023",2023-03-07,[],IL,103rd +Resolution Adopted,2023-03-31,['passage'],IL,103rd +Waive Posting Notice,2023-05-16,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 22, 2023",2023-03-21,[],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-03-31,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Be Adopted Agriculture; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Resolution Adopted,2023-02-16,['passage'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Be Adopted Public Health; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-01-25,['passage'],IL,103rd +Be Adopted Veterans Affairs; 008-000-000,2023-04-27,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2023-01-31,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-02-16,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-03-09,[],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Resolution Adopted,2023-02-16,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-03-09,[],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 8, 2023",2023-03-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-03-09,[],IL,103rd +Assigned to Environment and Conservation,2023-03-07,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Resolution Adopted,2023-01-25,['passage'],IL,103rd +Resolution Adopted,2023-02-16,['passage'],IL,103rd +Re-referred to Assignments,2023-03-30,[],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Resolution Adopted,2023-02-16,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Postponed - State Government,2023-05-17,[],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-24,[],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +Resolution Adopted,2023-03-31,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Waive Posting Notice,2023-05-18,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-02-28,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Restorative Justice,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. David Friess,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-02-14,[],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-01-17,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-07,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-15,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Robyn Gabel,2023-02-22,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-24,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Housing,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-02-24,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2023-03-15,[],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2023-02-16,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-01-31,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-03-01,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-01-23,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-02-16,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) April 28, 2023",2023-03-13,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-29,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-02-28,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-27,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added Chief Co-Sponsor Rep. David Friess,2023-05-03,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +"Assigned to Small Business, Tech Innovation, and Entrepreneurship Committee",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-22,[],IL,103rd +Assigned to Human Services Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-11-01,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Restorative Justice,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-06,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-05-18,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-02-23,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-02-14,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-01-31,['referral-committee'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-02-28,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-11-14,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-07-21,[],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-05-04,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Housing,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-07,['referral-committee'],IL,103rd +Referred to State Government Administration Committee,2024-03-05,[],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-02-27,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-15,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-02-21,[],IL,103rd +"Chief Sponsor Changed to Rep. Edgar Gonzalez, Jr.",2023-02-16,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-02-16,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-02-21,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-01-27,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-15,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2024-04-15,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-02-07,[],IL,103rd +Chief Sponsor Changed to Rep. Dagmara Avelar,2023-02-15,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Restorative Justice,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-02-09,[],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-04-27,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-02-21,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-04-27,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-02-17,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-27,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-06,[],IL,103rd +Assigned to Cities & Villages Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-22,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Higher Education,2023-02-07,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2023-02-23,[],IL,103rd +Assigned to Personnel & Pensions Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-01-25,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-07,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-02-24,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Education,2023-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-14,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Mary Beth Canty,2024-02-08,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-21,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-28,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-02-24,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-10-25,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-21,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. William E Hauter,2023-02-21,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Small Business, Tech Innovation, and Entrepreneurship Committee",2023-02-23,['referral-committee'],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-03-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Will Guzzardi,2023-02-23,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-23,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-02-03,[],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-02-23,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-02-15,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Be Adopted Executive; 008-003-000,2024-04-10,['committee-passage-favorable'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +To Subcommittee on Government Operations,2024-02-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Natalie Toro,2023-10-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-09,[],IL,103rd +Assigned to Appropriations- Education,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-10,[],IL,103rd +Assigned to Judiciary,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-05-01,[],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Karina Villa,2024-04-10,[],IL,103rd +Assigned to Education,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Agriculture,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Insurance,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2024-02-20,['referral-committee'],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Education,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2024-02-20,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-16,['referral-committee'],IL,103rd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. John M. Cabello",2024-04-19,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-04-30,[],IL,103rd +Assigned to Appropriations- Education,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-02-14,['referral-committee'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Assigned to Appropriations- Education,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2024-05-21,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2024-05-15,[],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-04-16,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-12-22,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-02-08,[],IL,103rd +Recommends Be Adopted Human Services Committee; 008-000-000,2024-05-28,['committee-passage-favorable'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-09,[],IL,103rd +Assigned to Appropriations-Higher Education Committee,2024-03-27,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-02-16,[],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-04-15,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-23,[],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Public Health,2024-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted Higher Education Committee; 011-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Assigned to Appropriations-Higher Education Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2024-02-14,[],IL,103rd +Assigned to Appropriations-Higher Education Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-22,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Appropriations-Higher Education Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-04,[],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-03-01,[],IL,103rd +Assigned to Appropriations-General Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Insurance,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Higher Education Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-23,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-13,[],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2024-01-11,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2024-02-13,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2023-11-08,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-12,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-05-08,[],IL,103rd +Assigned to Appropriations-General Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-03-14,[],IL,103rd +Assigned to Human Services Committee,2023-04-11,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-21,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Assigned to Health and Human Services,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-02-06,[],IL,103rd +Assigned to Insurance,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-22,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kimberly Du Buclet,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-25,[],IL,103rd +Assigned to Appropriations,2024-02-28,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-02-07,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-02-28,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-01-31,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-02-09,[],IL,103rd +Assigned to Appropriations,2024-03-05,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-01-24,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-01-31,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Higher Education,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-03-25,[],IL,103rd +Assigned to Public Health,2024-02-06,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-01-24,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Licensed Activities,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-01-31,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-02-20,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-21,['referral-committee'],IL,103rd +Assigned to Higher Education,2023-02-21,['referral-committee'],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Assigned to Appropriations,2024-01-31,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-10-24,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Arrive in Senate,2023-02-23,['introduction'],IL,103rd +Assigned to Behavioral and Mental Health,2023-02-14,['referral-committee'],IL,103rd +Sponsor Removed Sen. Laura Fine,2024-05-06,[],IL,103rd +Assigned to Judiciary,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2023-02-28,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2024-02-14,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2023-02-14,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Agriculture,2024-02-14,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Transportation,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Higher Education,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to State Government,2024-03-12,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-03-10,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-11-03,[],IL,103rd +Resolution Adopted,2023-04-19,['passage'],IL,103rd +Assigned to State Government Administration Committee,2024-03-12,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Laura M. Murphy,2023-02-10,[],IL,103rd +Assigned to Veterans Affairs,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-02-06,[],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Transportation,2023-02-07,['referral-committee'],IL,103rd +Assigned to Education,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Labor,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor,2024-02-20,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-05-10,[],IL,103rd +Assigned to Insurance,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Police & Fire Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Transportation,2023-02-21,['referral-committee'],IL,103rd +Assigned to Local Government,2024-02-20,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-14,['referral-committee'],IL,103rd +Referred to Education,2024-01-10,[],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to State Government,2024-02-06,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-04-08,[],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Transportation,2024-02-20,['referral-committee'],IL,103rd +Assigned to Education,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-01-17,[],IL,103rd +Assigned to Energy and Public Utilities,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-06,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Public Health,2024-01-24,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-20,['referral-committee'],IL,103rd +Assigned to Labor,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-02-15,[],IL,103rd +Assigned to Local Government,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Chapin Rose,2023-02-10,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Chris Miller,2024-05-23,[],IL,103rd +Assigned to Revenue,2023-02-07,['referral-committee'],IL,103rd +Assigned to Financial Institutions,2024-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-03-27,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-01-23,[],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Assigned to Insurance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Education,2023-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-13,[],IL,103rd +Assigned to Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-02-07,[],IL,103rd +Assigned to Appropriations,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-02-09,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2024-05-01,[],IL,103rd +Assigned to Labor,2024-01-31,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-21,['referral-committee'],IL,103rd +Assigned to Local Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Assigned to Higher Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-02-09,[],IL,103rd +Assigned to Appropriations,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2024-02-20,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Referred to Resolutions Consent Calendar,2023-11-07,[],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to Local Government,2024-02-06,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-11-07,[],IL,103rd +Assigned to Behavioral and Mental Health,2023-02-21,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Human Rights,2023-02-14,['referral-committee'],IL,103rd +Assigned to Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Public Health,2024-01-24,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-02-14,[],IL,103rd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2024-01-10,[],IL,103rd +Assigned to Local Government,2023-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2024-01-19,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Higher Education,2023-02-14,['referral-committee'],IL,103rd +Assigned to Local Government,2023-02-21,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-12-06,[],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-01-31,['referral-committee'],IL,103rd +"Directed to Multiple Committees Environment & Conservation, Appropriations Committee",2023-02-21,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-06,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-09,[],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Licensed Activities,2023-02-14,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-06,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-02-01,[],IL,103rd +Assigned to Agriculture,2023-02-21,['referral-committee'],IL,103rd +Assigned to Veterans' Affairs Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-21,['referral-committee'],IL,103rd +Referred to Assignments,2024-03-14,[],IL,103rd +Assigned to Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Public Health,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-02-08,[],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-01-26,[],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Education,2023-02-14,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-02-28,['referral-committee'],IL,103rd +Assigned to Financial Institutions,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-01-31,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-02-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2024-05-20,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-04-17,[],IL,103rd +Assigned to Insurance,2023-02-21,['referral-committee'],IL,103rd +Assigned to State Government,2024-02-20,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to Public Health,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-06,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-02-07,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-02-08,[],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-14,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Dan McConchie,2023-02-09,[],IL,103rd +Resolution Adopted,2023-05-03,['passage'],IL,103rd +Assigned to Environment and Conservation,2024-03-05,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-02-23,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-15,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to State Government,2024-02-20,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 7, 2024",2024-02-06,[],IL,103rd +Assigned to Executive Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-02-01,[],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-06,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to State Government,2024-02-20,['referral-committee'],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-01-31,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Omar Aquino,2024-02-22,[],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2024-03-05,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Be Adopted State Government; 007-000-000,2024-05-01,['committee-passage-favorable'],IL,103rd +Assigned to Public Health,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-20,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-02-15,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-11-08,[],IL,103rd +Assigned to Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Assigned to Judiciary,2024-01-24,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-02-16,[],IL,103rd +Assigned to Education,2024-02-20,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-05-07,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-02-06,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Assigned to Insurance,2023-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-02-20,[],IL,103rd +Assigned to Public Health,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-01-24,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Local Government,2023-02-14,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-23,[],IL,103rd +Assigned to Licensed Activities,2023-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-01-31,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-16,['passage'],IL,103rd +Assigned to Higher Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-02-07,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-06,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Omar Aquino,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-11-02,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Local Government,2023-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-05-16,[],IL,103rd +Assigned to Senate Special Committee on Pensions,2024-02-06,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to Transportation,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2024-02-22,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Public Health,2023-02-14,['referral-committee'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-02-07,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Veterans Affairs,2023-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Labor,2023-02-28,['referral-committee'],IL,103rd +Assigned to Veterans' Affairs Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Assigned to Higher Education,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations,2024-01-24,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2024-01-31,['amendment-introduction'],IL,103rd +Assigned to Transportation,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-02-14,[],IL,103rd +Postponed - Education,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-16,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-28,['referral-committee'],IL,103rd +Assigned to Transportation,2024-02-14,['referral-committee'],IL,103rd +Assigned to Financial Institutions,2023-02-28,['referral-committee'],IL,103rd +Assigned to Local Government,2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-12,[],IL,103rd +Be Adopted Public Health; 007-000-000,2024-02-21,['committee-passage-favorable'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-28,['referral-committee'],IL,103rd +Be Adopted Energy and Public Utilities; 014-000-000,2024-04-11,['committee-passage-favorable'],IL,103rd +Assigned to Public Health,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Education,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Transportation,2023-02-14,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-03-14,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2024-02-06,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2024-02-20,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-14,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Education,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-21,[],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to Higher Education,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Be Adopted Higher Education; 010-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Assigned to Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Higher Education,2024-01-24,['referral-committee'],IL,103rd +Be Adopted Health and Human Services; 014-000-000,2024-05-08,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Behavioral and Mental Health,2023-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-07,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-02-28,['referral-committee'],IL,103rd +Assigned to Police & Fire Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-14,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2024-02-28,['referral-committee'],IL,103rd +Assigned to Education,2024-02-06,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-02-08,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-01-31,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Public Health,2024-02-14,['referral-committee'],IL,103rd +Be Adopted Human Rights; 008-000-000,2024-05-02,['committee-passage-favorable'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-28,['referral-committee'],IL,103rd +Assigned to Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-01-31,['referral-committee'],IL,103rd +Assigned to Public Health,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2024-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-01-31,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-02-03,[],IL,103rd +Assigned to Executive,2023-01-31,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Cities & Villages Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-01-31,[],IL,103rd +Assigned to Insurance Committee,2024-03-27,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2023-12-07,[],IL,103rd +Assigned to Ethics & Elections,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-29,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-01-31,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-01-31,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-05-02,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-29,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Housing,2024-03-05,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Housing,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2023-03-14,['committee-passage-favorable'],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-07,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-02-08,[],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-01-18,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-01-23,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-02-14,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-27,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-03-05,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Assigned to Ethics & Elections,2024-02-14,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-27,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-01-31,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2023-01-31,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +Assigned to Counties & Townships Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-07,[],IL,103rd +Assigned to Higher Education Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to State Government Administration Committee,2024-03-05,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-20,[],IL,103rd +Assigned to Transportation,2023-02-07,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Housing,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-02-23,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-02-28,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-03-12,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-02-28,['referral-committee'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Immigration & Human Rights Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Restorative Justice,2024-03-12,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-05,['referral-committee'],IL,103rd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2024-03-12,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2024-03-12,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-02-22,[],IL,103rd +Assigned to Human Services Committee,2024-02-14,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-02-28,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-02-28,['referral-committee'],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-23,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-08,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-28,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-23,[],IL,103rd +Referred to State Government Administration Committee,2024-03-05,[],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-02-16,[],IL,103rd +Assigned to Insurance,2023-02-07,['referral-committee'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Assigned to Public Health Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-07,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-02-03,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Housing,2024-03-05,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Police & Fire Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2024-03-06,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Education,2023-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2024-03-06,[],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-02-08,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-27,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-03-12,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-02-15,[],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-02-23,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-03-05,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-03-01,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-07,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-06,[],IL,103rd +Assigned to Appropriations,2023-02-14,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-02-14,['referral-committee'],IL,103rd +Assigned to Higher Education,2023-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-22,[],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-03,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2023-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Resolution Adopted,2023-02-16,['passage'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Terri Bryant,2023-02-15,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Assigned to Higher Education,2023-02-07,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2023-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-02-07,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Assigned to Transportation,2023-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Terri Bryant,2023-02-14,[],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Assigned to Energy and Public Utilities,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-01-24,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2024-03-12,['referral-committee'],IL,103rd +Assigned to Insurance,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-21,[],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to Labor,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-03-28,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-06,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +Chief Sponsor Changed to Sen. Erica Harriss,2023-02-09,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2023-02-15,[],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-02-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Assigned to Insurance,2023-02-21,['referral-committee'],IL,103rd +Assigned to Labor,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Chief Co-Sponsor Sen. Craig Wilcox,2023-02-09,[],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-15,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Assigned to Appropriations,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-28,[],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Transportation,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-03-08,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-21,['referral-committee'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2023-02-16,[],IL,103rd +Assigned to Appropriations- Education,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-04-27,[],IL,103rd +Assigned to Insurance,2023-02-21,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Assigned to Insurance,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Assigned to State Government,2023-02-21,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2024-02-14,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-02-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-03-28,[],IL,103rd +Assigned to Labor,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-21,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Education,2023-02-21,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-28,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-02-22,[],IL,103rd +Assigned to Appropriations- Education,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-02-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2023-02-15,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Education,2023-03-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-22,[],IL,103rd +Resolution Adopted,2023-02-23,['passage'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Christopher Belt,2023-04-27,[],IL,103rd +Assigned to Insurance,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2023-02-21,[],IL,103rd +Assigned to Appropriations- Education,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-02-22,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Assigned to Public Health,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-08,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-23,[],IL,103rd +Assigned to Labor,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-04-25,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-04-25,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to State Government Administration Committee,2024-03-05,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-10-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-10-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-03-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. Erica Harriss,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-01-25,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-01-23,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-01-17,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-02-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Arrive in Senate,2024-01-17,['introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-01-30,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-29,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2024-04-18,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Be Adopted Environment and Conservation; 007-000-000,2023-05-11,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 30, 2023",2023-03-29,[],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 3, 2023",2023-05-02,[],IL,103rd +Be Adopted Behavioral and Mental Health; 008-000-000,2023-03-29,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-05,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Steve McClure,2024-02-09,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-01-11,[],IL,103rd +Resolution Adopted,2023-01-12,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-01-25,['passage'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-01-25,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Postponed - Public Health,2023-03-22,[],IL,103rd +Resolution Adopted,2023-01-12,['passage'],IL,103rd +Resolution Adopted,2023-01-25,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-01-11,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-01-11,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2023-02-22,[],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-01-12,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 15, 2023",2023-02-14,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Resolution Adopted,2023-03-31,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-31,['passage'],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Assigned to State Government,2023-03-07,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2023-02-23,[],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Be Adopted Public Health; 007-000-000,2023-03-29,['committee-passage-favorable'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-03-09,[],IL,103rd +Resolution Adopted,2023-02-23,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-02-23,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Resolution Adopted,2023-03-31,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-31,['passage'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Waive Posting Notice,2023-05-16,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-01-25,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-03-16,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-02-16,['passage'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Be Adopted Environment and Conservation; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Be Adopted Public Health; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-02,[],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-03-09,[],IL,103rd +Resolution Adopted,2023-01-25,['passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Postponed - Education,2023-03-22,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-03-31,['passage'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 27, 2023",2023-04-26,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-24,[],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-03-31,['passage'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 19, 2023",2023-04-18,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to State Government Administration Committee,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-22,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-24,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-24,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Be Adopted Health and Human Services; 009-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Be Adopted Public Health; 006-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-19,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Be Adopted Public Health; 006-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 10, 2023",2023-05-09,[],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-24,[],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-05-03,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-24,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-05-04,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2023-05-03,[],IL,103rd +Re-referred to Assignments,2023-05-18,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-01-19,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-03-05,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-03-05,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-10-25,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Assigned to Human Services Committee,2023-02-15,['referral-committee'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Be Adopted Public Health; 007-000-000,2024-02-21,['committee-passage-favorable'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Steve McClure,2024-01-10,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-03-05,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-03-05,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 6, 2024",2024-01-31,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-02-02,[],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-03-05,[],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Resolution Adopted,2023-04-18,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-03-05,[],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-03-05,[],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-03-05,[],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Assigned to State Government,2023-03-21,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Approved for Consideration Assignments,2023-05-17,[],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-24,[],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Assigned to Insurance Committee,2023-02-15,['referral-committee'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2023-03-21,[],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Assigned to Higher Education Committee,2023-02-21,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-01-18,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-29,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-07,['referral-committee'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Assigned to Cities & Villages Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-02-15,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-15,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-02-15,[],IL,103rd +Assigned to Human Services Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Housing,2023-02-21,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2023-02-15,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-15,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-02-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Hoan Huynh,2023-02-16,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-28,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-02-22,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2024-05-20,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Nicole La Ha,2024-05-14,[],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2023-03-01,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2024-03-18,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-14,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Higher Education,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2024-02-08,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-02-27,[],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2024-01-17,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Revenue & Finance Committee,2024-03-05,[],IL,103rd +Assigned to Revenue,2023-02-07,['referral-committee'],IL,103rd +Assigned to Revenue,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Restorative Justice,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-22,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2023-05-03,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Higher Education Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Restorative Justice,2023-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted Human Services Committee; 008-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-12,['referral-committee'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-04-11,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 21, 2024",2024-03-20,[],IL,103rd +Chief Sponsor Changed to Rep. Michael J. Kelly,2023-02-15,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2023-02-14,['referral-committee'],IL,103rd +"Committee Deadline Extended-Rule 9(b) April 28, 2023",2023-03-13,[],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2024-03-05,['committee-passage-favorable'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-02-24,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-02-20,[],IL,103rd +Assigned to Housing,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2024-04-11,['committee-passage-favorable'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Ellman,2023-01-30,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-20,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted Higher Education Committee; 011-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Public Health Committee; 009-000-000,2024-05-16,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-02-21,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-07,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Human Services Committee; 008-000-000,2024-05-08,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Fred Crespo,2023-02-21,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-27,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-02-22,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Veterans' Affairs Committee,2023-02-23,['referral-committee'],IL,103rd +Recommends Be Adopted Immigration & Human Rights Committee; 007-003-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted Appropriations-Elementary & Secondary Education Committee; 013-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-04-25,[],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-05-03,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-08-18,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-26,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. David Friess,2023-05-03,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Restorative Justice,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +First Reading,2024-02-06,['reading-1'],IL,103rd +Assigned to Licensed Activities,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-03-05,['referral-committee'],IL,103rd +Recommends Be Adopted Labor & Commerce Committee; 026-000-000,2024-05-01,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-02-14,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2024-02-08,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-16,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2023-02-23,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-02-28,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 014-000-000",2024-04-30,['committee-passage-favorable'],IL,103rd +Assigned to Judiciary,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Public Health Committee; 008-000-000,2024-05-02,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-06,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-02-27,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Police & Fire Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Ann Gillespie,2024-03-22,[],IL,103rd +Recommends Be Adopted Health Care Licenses Committee; 011-000-000,2024-04-11,['committee-passage-favorable'],IL,103rd +Assigned to Energy & Environment Committee,2023-03-01,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2023-02-28,[],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Energy & Environment Committee; 024-000-000,2024-05-07,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-28,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-07,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2024-02-26,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Nicole La Ha,2024-02-08,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2024-02-08,[],IL,103rd +Assigned to Counties & Townships Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-02-17,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Paul Jacobs,2023-01-23,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-02-08,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted Consumer Protection Committee; 009-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-02,[],IL,103rd +Assigned to Public Health Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Cities & Villages Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-22,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2024-02-20,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-11-09,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-21,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-02-27,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-04-11,['committee-passage-favorable'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Recommends Be Adopted Public Health Committee; 009-000-000,2024-04-04,['committee-passage-favorable'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-03-20,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2024-04-10,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Cities & Villages Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-03-12,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Joyce Mason,2024-02-09,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-23,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-07,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-03-05,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-02-23,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-02-21,[],IL,103rd +Assigned to Personnel & Pensions Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-03-05,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Justin Slaughter,2024-03-11,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2023-02-22,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-02-21,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-03-05,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 013-000-000,2024-05-02,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-24,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-05-01,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Higher Education Committee,2024-02-14,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-05,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Veterans' Affairs Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted Public Health Committee; 008-000-000,2024-05-02,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-15,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-02-21,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-02-22,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-02-22,[],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dan Swanson,2024-04-26,['amendment-introduction'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-03-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-02-14,[],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 014-000-000",2024-04-30,['committee-passage-favorable'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Transportation: Vehicles & Safety; 011-000-000,2024-04-11,['committee-passage-favorable'],IL,103rd +Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-05-06,[],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-01-09,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-27,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-02-23,[],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 014-000-000",2023-05-16,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-01-31,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2024-04-10,['committee-passage-favorable'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-10-18,[],IL,103rd +Assigned to Higher Education Committee,2024-04-24,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-15,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-02-21,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-23,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Assigned to Consumer Protection Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Housing,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Housing,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Travis Weaver,2023-04-25,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-02-22,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2024-04-10,['committee-passage-favorable'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-02-16,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2024-01-23,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-02-08,[],IL,103rd +Assigned to Licensed Activities,2024-01-31,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2023-03-09,[],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-06-30,[],IL,103rd +Assigned to Licensed Activities,2024-02-06,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-09,[],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-01-31,[],IL,103rd +Assigned to Revenue,2024-02-06,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Insurance,2024-02-06,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-22,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-01-31,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-02-22,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-21,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2024-02-20,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-11,[],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Assigned to Labor,2024-02-06,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Randy E. Frese,2024-02-14,[],IL,103rd +Recommends Be Adopted Health Care Availability & Accessibility Committee; 008-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-05-01,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-07,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-05-11,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2023-01-31,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-02-22,[],IL,103rd +Assigned to Revenue,2023-01-31,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-01-31,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-16,[],IL,103rd +Assigned to Judiciary,2024-02-20,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-03-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-10,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-02-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-02-21,[],IL,103rd +Assigned to Education,2024-02-06,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-13,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-07,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-02-23,[],IL,103rd +Recommends Be Adopted Public Health Committee; 006-000-000,2023-04-20,['committee-passage-favorable'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Removed Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2023-02-23,[],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-02-20,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2024-02-28,['referral-committee'],IL,103rd +Assigned to Police & Fire Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 012-000-000",2023-04-18,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Moved to - Table Bill/Resolution Pursuant to Rule 60(b) Rep. Jay Hoffman,2024-02-09,[],IL,103rd +Recommends Be Adopted Adoption & Child Welfare Committee; 009-004-000,2023-03-14,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Assigned to Judiciary,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-02-21,[],IL,103rd +Assigned to Local Government,2024-01-31,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Insurance,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-01-24,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-15,[],IL,103rd +Assigned to Transportation,2024-01-31,['referral-committee'],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Insurance,2024-01-24,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-18,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-03-07,[],IL,103rd +Assigned to Revenue,2024-02-06,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-02-21,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-05,['passage'],IL,103rd +Assigned to Energy and Public Utilities,2024-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted Health Care Availability & Accessibility Committee; 009-000-000,2023-02-21,['committee-passage-favorable'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-02-23,[],IL,103rd +Assigned to Veterans' Affairs Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-06,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Bob Morgan,2024-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-01-31,['referral-committee'],IL,103rd +Assigned to Behavioral and Mental Health,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-24,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-05-02,[],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-10,[],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-11-06,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-07,['referral-committee'],IL,103rd +Assigned to Veterans' Affairs Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-08,[],IL,103rd +Assigned to Agriculture,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2023-03-13,['amendment-introduction'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. Barbara Hernandez,2023-02-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2024-02-20,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-11-16,[],IL,103rd +Assigned to Judiciary,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. William E Hauter,2024-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. William E Hauter,2024-03-07,[],IL,103rd +Assigned to Energy and Public Utilities,2024-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-01-31,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-23,['referral-committee'],IL,103rd +Recommends Be Adopted Human Services Committee; 007-000-000,2023-03-29,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-12,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-12,['referral-committee'],IL,103rd +Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2023-03-15,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-29,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-03-12,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2024-04-19,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-02-15,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Prevailed to Suspend Rule 3-6a,2024-04-12,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-02-09,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-03-01,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted Police & Fire Committee; 014-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-01,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-05,['passage'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-06-11,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-03-28,['referral-committee'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-03-07,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-02-21,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-01-31,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Laura Faver Dias,2024-02-27,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-27,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-25,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Assigned to Appropriations,2024-01-31,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-05-09,[],IL,103rd +Recommends Be Adopted Veterans' Affairs Committee; 012-000-000,2023-03-14,['committee-passage-favorable'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted Health Care Licenses Committee; 007-000-000,2023-03-29,['committee-passage-favorable'],IL,103rd +Assigned to Public Utilities Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-04-20,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Local Government,2024-01-31,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Recommends Be Adopted Labor & Commerce Committee; 023-000-000,2023-03-29,['committee-passage-favorable'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2024-02-20,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-09-29,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted Human Services Committee; 008-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Directed to Multiple Committees Appropriations then to Judiciary,2024-01-31,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-27,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-04-17,[],IL,103rd +Assigned to Appropriations,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-06,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Robyn Gabel,2024-02-20,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Insurance,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-15,['referral-committee'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-06,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2023-02-21,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-21,['referral-committee'],IL,103rd +Recommends Be Adopted Health Care Licenses Committee; 007-000-000,2023-03-29,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-03-01,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-03-20,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-07,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-07,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-02-28,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-02-03,[],IL,103rd +Chief Sponsor Changed to Rep. Lilian Jiménez,2023-02-22,[],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-03-01,[],IL,103rd +Assigned to Higher Education Committee,2024-03-05,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-15,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Assigned to Human Services Committee,2024-02-14,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Motion Filed to Suspend Rule 21 Veterans' Affairs Committee; Rep. Barbara Hernandez,2023-05-24,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations,2024-02-20,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-14,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-05-16,[],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-01-18,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-02-13,[],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-11-07,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-15,[],IL,103rd +Assigned to Restorative Justice,2023-02-21,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-24,[],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-24,[],IL,103rd +Assigned to Gaming Committee,2024-03-12,['referral-committee'],IL,103rd +Recommends Be Adopted Agriculture & Conservation Committee; 007-000-000,2023-03-14,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-01-24,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-02-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Chief Sponsor Changed to Rep. Bob Morgan,2024-02-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-02-10,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations,2024-02-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-04,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2024-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-03-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Recommends Be Adopted Human Services Committee; 008-000-000,2023-03-01,['committee-passage-favorable'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-02-14,['referral-committee'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-05,[],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-21,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Assigned to Environment and Conservation,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-16,[],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-15,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Approved for Consideration Assignments,2024-05-15,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-01-17,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Recommends Be Adopted Human Services Committee; 007-000-000,2023-03-29,['committee-passage-favorable'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-09-29,[],IL,103rd +Recommends Be Adopted Higher Education Committee; 010-000-000,2023-04-26,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-01-24,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-02-03,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +First Reading,2023-02-08,['reading-1'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-02,[],IL,103rd +Removed Co-Sponsor Rep. Hoan Huynh,2023-10-31,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-07-05,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-02,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-05-17,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2023-02-16,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-02-15,[],IL,103rd +Directed to Multiple Committees Health & Human Services Committee then Appropriations-Health & Human Services,2023-02-07,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-02-22,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Arrive in Senate,2023-01-12,['introduction'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Assigned to Judiciary,2024-01-31,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-02-08,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2024-02-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-01-31,[],IL,103rd +Assigned to Executive,2023-03-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-27,[],IL,103rd +Assigned to Appropriations,2024-02-20,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-05-10,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Abdelnasser Rashid,2023-02-16,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-03-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-02-27,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Transportation,2024-02-20,['referral-committee'],IL,103rd +Recommends Be Adopted Public Health Committee; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Restorative Justice,2023-02-28,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-07,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2023-02-22,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted Health Care Availability & Accessibility Committee; 008-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Mary E. Flowers",2023-02-10,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-02,[],IL,103rd +Referred to Assignments,2023-01-31,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-24,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-02-15,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-07,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-06-09,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Recommends Be Adopted Public Health Committee; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-02-20,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-04-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-02-15,[],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-28,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Recommends Be Adopted Public Health Committee; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-04-25,[],IL,103rd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Ryan Spain",2024-02-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-01-08,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-01-23,[],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-12-20,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-10-03,[],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-03-12,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-02-21,[],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-11-08,[],IL,103rd +Assigned to Transportation,2024-02-06,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-03-18,[],IL,103rd +Assigned to Ethics & Elections,2024-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2023-02-24,[],IL,103rd +Assigned to Revenue,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-05-18,['committee-passage-favorable'],IL,103rd +Referred to Rules Committee,2024-03-06,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-02-15,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-23,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 017-000-000",2023-05-18,['committee-passage-favorable'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-04-25,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Seth Lewis,2024-02-15,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-05-17,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-08-29,[],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-03-05,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-01-31,[],IL,103rd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Tom Weber",2024-02-07,[],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Seth Lewis,2024-02-16,[],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Housing,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +First Reading,2023-05-03,['reading-1'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-11-08,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2024-01-24,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-05-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-01-23,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-02-22,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-04-20,[],IL,103rd +First Reading,2023-04-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-10,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-04-27,[],IL,103rd +Assigned to Prescription Drug Affordability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Camille Y. Lilly,2023-04-16,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Police & Fire Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-02-20,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2023-04-05,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-15,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-02-06,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-04-20,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-14,[],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-28,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-05-15,[],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 016-000-000",2023-03-14,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-24,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-02-22,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-19,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-02-21,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-10-31,[],IL,103rd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Terra Costa Howard",2023-02-23,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-06-09,[],IL,103rd +Referred to Rules Committee,2023-05-04,[],IL,103rd +Assigned to Education,2024-02-20,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-02-15,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-01-16,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Anthony DeLuca",2023-01-17,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-05-06,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2023-02-15,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-01-25,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-02,[],IL,103rd +Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2023-05-03,['committee-passage-favorable'],IL,103rd +Assigned to Higher Education Committee,2023-02-15,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-27,[],IL,103rd +Added Co-Sponsor All Other Members of the House,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-24,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-15,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-28,['referral-committee'],IL,103rd +"Assigned to Small Business, Tech Innovation, and Entrepreneurship Committee",2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Jay Hoffman,2023-02-17,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Prescription Drug Affordability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-24,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-20,[],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Recommends Be Adopted Human Services Committee; 008-000-000,2023-05-03,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2023-04-18,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government,2024-02-14,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-04-27,[],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule April 28, 2023",2023-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-01-23,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +First Reading,2023-04-27,['reading-1'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-01-26,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2023-10-25,[],IL,103rd +Assigned to Housing,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2024-02-15,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-14,[],IL,103rd +Recommends Be Adopted State Government Administration Committee; 006-003-000,2023-04-26,['committee-passage-favorable'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-02,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-01-26,[],IL,103rd +Assigned to Gaming Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-03-01,[],IL,103rd +Assigned to Energy & Environment Committee,2024-02-29,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-03-01,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-05-08,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2024-02-20,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Recommends Be Adopted Adoption & Child Welfare Committee; 013-000-000,2023-05-09,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-01-31,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-21,[],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Recommends Be Adopted Public Health Committee; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-15,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Removed Co-Sponsor Rep. Jay Hoffman,2023-03-27,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jeff Keicher,2023-04-12,['amendment-introduction'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-05-18,[],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Insurance,2024-02-06,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2024-07-15,[],IL,103rd +Assigned to Energy & Environment Committee,2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-25,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2024-02-20,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-27,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-28,['referral-committee'],IL,103rd +Motion Filed to Suspend Rule 21 Veterans' Affairs Committee; Rep. Barbara Hernandez,2023-05-24,[],IL,103rd +Assigned to Police & Fire Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-02-14,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-28,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 014-000-000",2023-05-16,['committee-passage-favorable'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-04-26,[],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-03-21,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-05-09,[],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-03-30,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted Human Services Committee; 009-000-000,2023-04-19,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-02-23,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-02-06,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Recommends Be Adopted Public Health Committee; 007-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Housing,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Judiciary - Criminal Committee,2023-02-28,[],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-28,['referral-committee'],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-11,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lilian Jiménez,2023-03-20,['amendment-introduction'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2024-02-13,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-21,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-02-07,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-11-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-03-01,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-02-08,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-24,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-05,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-10-23,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-27,[],IL,103rd +Assigned to Education,2023-02-21,['referral-committee'],IL,103rd +Be Adopted Public Health; 007-000-000,2024-02-21,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-06,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-02-07,[],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Education,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Higher Education,2024-02-14,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-29,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2023-12-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-01-31,[],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-05-02,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Housing,2024-03-12,['referral-committee'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-03-20,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-23,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-02-06,['referral-committee'],IL,103rd +Assigned to Education,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-06,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-06,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-06,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-01-31,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-01-30,[],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2023-02-14,[],IL,103rd +Assigned to Executive,2024-03-12,['referral-committee'],IL,103rd +Assigned to Labor,2024-01-24,['referral-committee'],IL,103rd +Assigned to Local Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-06,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Assigned to Higher Education Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-01-29,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-06,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-02-07,[],IL,103rd +Assigned to Executive,2024-01-24,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Assigned to Transportation,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-02-06,[],IL,103rd +Assigned to Local Government,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Seth Lewis,2024-02-15,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-29,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2023-02-24,[],IL,103rd +Assigned to Education,2024-02-20,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-02-14,[],IL,103rd +Assigned to Judiciary,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-13,[],IL,103rd +Assigned to Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-14,[],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-28,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2024-02-08,[],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Assigned to Higher Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Higher Education,2023-02-28,['referral-committee'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Assigned to State Government,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation,2024-02-20,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-28,['referral-committee'],IL,103rd +Assigned to Human Rights,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-28,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-28,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Local Government,2024-02-20,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-02-16,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Public Health,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-03-12,['referral-committee'],IL,103rd +Assigned to Agriculture,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assignments Refers to Executive,2024-01-10,[],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to Financial Institutions,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Public Health,2024-02-20,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Local Government,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2024-02-13,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Higher Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-20,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-02-22,[],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Insurance,2024-02-20,['referral-committee'],IL,103rd +Assigned to Financial Institutions,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Public Health,2024-02-28,['referral-committee'],IL,103rd +Assigned to Local Government,2024-02-20,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Resolution Adopted by Voice Vote,2023-04-18,['passage'],IL,103rd +Assigned to Executive,2024-01-24,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-02-16,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-11-08,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-28,['referral-committee'],IL,103rd +Assigned to Local Government,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Higher Education,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-01-24,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-21,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-28,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2024-02-20,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-20,[],IL,103rd +Assigned to Insurance,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Public Health,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-22,[],IL,103rd +Assigned to Health and Human Services,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-06,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-03-01,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2024-03-07,[],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Transportation,2024-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-02-20,[],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-08-14,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-05-16,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Kelly M. Burke,2023-02-17,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-20,['referral-committee'],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Transportation,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-16,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-26,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-02-21,['referral-committee'],IL,103rd +Assigned to State Government,2024-02-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-01,[],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to State Government,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-06,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-11,[],IL,103rd +Assigned to Revenue,2024-02-28,['referral-committee'],IL,103rd +Assigned to Housing,2024-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-02-21,[],IL,103rd +First Reading,2024-01-19,['reading-1'],IL,103rd +Be Adopted State Government; 008-000-000,2024-04-10,['committee-passage-favorable'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2024-02-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2024-01-24,[],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Be Adopted Public Health; 005-000-000,2024-04-10,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-29,[],IL,103rd +Assigned to Executive,2024-01-24,['referral-committee'],IL,103rd +Assigned to Revenue,2024-03-12,['referral-committee'],IL,103rd +Be Adopted Special Committee on Criminal Law and Public Safety; 008-000-000,2024-05-01,['committee-passage-favorable'],IL,103rd +Approved for Consideration Assignments,2023-05-17,[],IL,103rd +Assigned to Executive,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations,2024-02-20,['referral-committee'],IL,103rd +Be Adopted Public Health; 005-000-000,2024-04-10,['committee-passage-favorable'],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Be Adopted Agriculture; 012-000-000,2024-04-11,['committee-passage-favorable'],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-13,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2024-05-17,[],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2024-02-08,[],IL,103rd +Chief Senate Sponsor Sen. Linda Holmes,2023-03-31,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-01-25,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-06,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-02-06,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-16,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-20,['referral-committee'],IL,103rd +Assigned to Labor,2024-02-14,['referral-committee'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 30, 2024",2024-04-30,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Directed to Multiple Committees Appropriations; Judiciary,2024-02-06,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-05-07,[],IL,103rd +Assigned to Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-05-22,[],IL,103rd +Assigned to Human Services Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2024-02-07,[],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2023-01-31,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2023-02-06,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-02-13,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2023-01-31,['referral-committee'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-23,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-06-03,[],IL,103rd +Motion Filed to Suspend Rule 21 Elementary & Secondary Education: School Curriculum & Policies Committee; Rep. Robyn Gabel,2024-05-20,[],IL,103rd +Assigned to Local Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to Insurance,2024-01-31,['referral-committee'],IL,103rd +Assigned to Local Government,2023-02-21,['referral-committee'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-08,[],IL,103rd +"Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2024-02-26,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-20,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2024-02-28,['referral-committee'],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-05-07,[],IL,103rd +Assigned to Revenue,2024-02-06,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Norma Hernandez,2024-03-06,[],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-11-07,[],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Chief Sponsor Changed to Sen. Napoleon Harris, III",2024-03-12,[],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Housing,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-23,[],IL,103rd +Assigned to Gaming Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-06,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Brad Halbrook,2024-08-27,[],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-05,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Referred to State Government Administration Committee,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-02-28,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2024-02-20,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Transportation,2024-02-06,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-04-10,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-05,[],IL,103rd +Assigned to Human Rights,2024-02-06,['referral-committee'],IL,103rd +Assigned to Local Government,2024-02-14,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-03-05,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-10,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Resolutions Consent Calendar,2023-04-25,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-24,[],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-05-04,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +"Committee Deadline Extended-Rule 9(b) April 28, 2023",2023-03-13,[],IL,103rd +Waive Posting Notice,2023-05-18,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-02-22,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-27,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-02-22,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-12,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Prescription Drug Affordability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-01-31,['passage'],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Natalie Toro,2023-10-25,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-05-10,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-24,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-19,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-03-05,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-11-08,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-24,[],IL,103rd +Assigned to Police & Fire Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-11-09,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-02-23,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Be Adopted Public Health; 007-000-000,2024-02-21,['committee-passage-favorable'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Referred to Resolutions Consent Calendar,2024-01-10,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-02-22,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Approved for Consideration Assignments,2024-03-05,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Assigned to Restorative Justice,2023-02-07,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-05-04,[],IL,103rd +Assigned to Public Utilities Committee,2023-02-07,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Approved for Consideration Assignments,2023-05-19,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2024-01-29,[],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 20, 2024",2024-02-14,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-03-05,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 18, 2023",2023-05-17,[],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-02-23,[],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Approved for Consideration Assignments,2023-05-17,[],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Waive Posting Notice,2023-05-17,[],IL,103rd +Chief Co-Sponsor Sen. Tom Bennett,2023-03-29,[],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Police & Fire Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Be Adopted Agriculture; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-02-22,[],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-27,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2023-02-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-22,[],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Small Business, Tech Innovation, and Entrepreneurship Committee",2023-02-28,['referral-committee'],IL,103rd +Assigned to Housing,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-01-30,[],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-03-01,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Police & Fire Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Restorative Justice,2023-02-21,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-07,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Restorative Justice,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-01-27,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Housing,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Police & Fire Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Housing,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Restorative Justice,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-07,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2023-02-21,[],IL,103rd +Assigned to Restorative Justice,2023-02-28,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-28,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2024-02-08,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-24,[],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-07,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Resolution Adopted,2023-03-14,['passage'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-15,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-02-22,[],IL,103rd +Assigned to Appropriations-Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-07,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-07,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Anna Moeller,2023-02-17,[],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-01-23,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-02-21,[],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Cities & Villages Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Waive Posting Notice,2023-05-17,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2023-01-31,[],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Police & Fire Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-15,['referral-committee'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-07,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-02-23,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-01-30,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-05-28,[],IL,103rd +Assigned to Police & Fire Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-21,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-02-07,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-21,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-15,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Police & Fire Committee,2023-03-01,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-02-23,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-21,['referral-committee'],IL,103rd +Assigned to Police & Fire Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-21,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-10-26,[],IL,103rd +Assigned to Housing,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-21,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-01,[],IL,103rd +Assigned to Consumer Protection Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-21,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Kevin John Olickal,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-02-10,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-27,[],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-21,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-15,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-02-16,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Housing,2023-02-21,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2024-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Assigned to Public Health Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-02-15,[],IL,103rd +Assigned to Public Utilities Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-27,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-02-16,[],IL,103rd +Assigned to Insurance Committee,2023-02-21,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-02-14,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-02-08,[],IL,103rd +Assigned to Energy & Environment Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2023-02-21,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-02-10,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-02-07,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-23,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-15,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-15,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-21,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Assigned to Public Utilities Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-03,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-21,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-07,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-02-10,[],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-02-10,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Assigned to State Government Administration Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-02-14,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-15,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2023-02-10,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-15,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Police & Fire Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-15,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-02-08,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-15,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2023-02-02,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2023-02-02,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Restorative Justice,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-02-03,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +First Reading (CORRECTED),2023-02-15,['reading-1'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-10-16,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 3, 2023",2023-05-02,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Be Adopted Public Health; 007-000-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-24,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-29,[],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-03-20,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-22,[],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-05,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-05-02,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jed Davis,2023-01-25,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Local Government,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Fred Crespo,2024-01-31,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Housing,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-02-22,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Public Health,2023-01-31,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Assigned to Higher Education Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Terri Bryant,2023-01-31,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Prescription Drug Affordability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2024-02-07,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Prescription Drug Affordability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Insurance,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Veterans' Affairs Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-09,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-02-08,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Restorative Justice,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-02-23,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Police & Fire Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-05,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-27,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Local Government,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-02-22,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-02-02,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Mental Health & Addiction Committee,2024-03-05,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Norma Hernandez,2024-03-06,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-01-31,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-08-21,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Behavioral and Mental Health,2023-01-31,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-02-28,['referral-committee'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2024-04-10,['committee-passage-favorable'],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-02-21,[],IL,103rd +Referred to State Government Administration Committee,2024-03-05,[],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-05-10,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. David Friess,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-02-26,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2024-05-03,['amendment-introduction'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2024-03-05,['committee-passage-favorable'],IL,103rd +Assigned to Licensed Activities,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2024-04-10,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-28,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-14,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Harry Benton,2024-04-01,['amendment-introduction'],IL,103rd +Assigned to Higher Education Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-08,[],IL,103rd +Assigned to Public Health Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Donald P. DeWitte,2023-02-02,[],IL,103rd +Recommends Be Adopted Appropriations-Elementary & Secondary Education Committee; 009-004-000,2024-05-14,['committee-passage-favorable'],IL,103rd +Recommends Be Adopted Immigration & Human Rights Committee; 012-000-000,2024-02-07,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-02-22,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Resolution Adopted,2024-02-20,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Adoption & Child Welfare Committee; 014-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-22,[],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2024-03-05,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-07,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-03-05,['referral-committee'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 009-000-000,2024-03-21,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2024-03-05,['committee-passage-favorable'],IL,103rd +Referred to State Government Administration Committee,2024-03-05,[],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 017-000-000",2023-05-18,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 014-000-000",2023-05-16,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Motion Filed to Suspend Rule 21 State Government Administration Committee; Rep. Kam Buckner,2024-05-28,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 017-000-000",2023-05-18,['committee-passage-favorable'],IL,103rd +Assigned to Consumer Protection Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +"Motion Filed to Suspend Rule 21 Human Services Committee; Rep. Elizabeth ""Lisa"" Hernandez",2024-05-24,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Police & Fire Committee,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-10-31,[],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-20,[],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-05-20,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-02-21,[],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +"Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-05-15,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Recommends Be Adopted Small Business, Tech Innovation, and Entrepreneurship Committee; 010-000-000",2024-05-16,['committee-passage-favorable'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Energy & Environment Committee; 026-000-000,2024-05-16,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-02-20,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Labor & Commerce Committee; 029-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-05-15,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Human Services Committee; 009-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2024-02-14,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-05-08,[],IL,103rd +Assigned to Public Health Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2024-04-17,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Human Services Committee; 008-000-000,2024-05-08,['committee-passage-favorable'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Education,2023-02-07,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-20,[],IL,103rd +Assigned to Cities & Villages Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Local Government,2023-02-14,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2024-02-08,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Cities & Villages Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Higher Education Committee; 011-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2023-02-21,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-03-07,[],IL,103rd +Recommends Be Adopted Higher Education Committee; 010-000-000,2024-03-21,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2024-03-06,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Anna Moeller,2024-02-09,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2024-03-21,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Public Health Committee; 008-000-000,2024-05-02,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-21,[],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-04-11,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-02-15,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-04-11,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2024-02-21,[],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Cities & Villages Committee,2024-03-20,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 013-000-000",2024-04-10,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-03-20,[],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Referred to State Government Administration Committee,2024-03-05,[],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-12,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 009-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Immigration & Human Rights Committee,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-02-09,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-14,['referral-committee'],IL,103rd +Assigned to Housing,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-03-05,['referral-committee'],IL,103rd +Recommends Be Adopted Adoption & Child Welfare Committee; 014-000-000,2024-03-12,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-27,[],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-22,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Public Health Committee; 008-000-000,2024-05-02,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-01-27,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-03-02,[],IL,103rd +Assigned to Agriculture,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-12,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-10-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-06-01,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +"Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-05-01,['committee-passage-favorable'],IL,103rd +Assigned to Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-16,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-23,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +First Reading,2023-02-17,['reading-1'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-03-20,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-02-23,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-02-15,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2024-01-26,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-09,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Veterans' Affairs Committee; 014-000-000,2024-04-10,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-21,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-20,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-10-24,[],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2024-03-05,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2024-02-09,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Labor,2023-02-07,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Paul Jacobs,2023-02-23,[],IL,103rd +Assigned to Public Health,2023-02-07,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2023-02-28,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-01-31,['referral-committee'],IL,103rd +"Recommends Be Adopted Small Business, Tech Innovation, and Entrepreneurship Committee; 012-000-000",2024-04-04,['committee-passage-favorable'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-03,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2024-02-14,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Paul Jacobs,2023-02-23,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-02-23,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Transportation,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Human Services Committee; 009-000-000,2024-03-21,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-10-24,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-02-21,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted Veterans' Affairs Committee; 015-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-04-11,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-29,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Housing,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +Chief Co-Sponsor Rep. Jehan Gordon-Booth,2023-09-26,[],IL,103rd +Assigned to Insurance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2024-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-14,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-02-06,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-16,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-21,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-02-22,[],IL,103rd +Assigned to Insurance,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-02-01,[],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-02-22,[],IL,103rd +Assigned to Energy and Public Utilities,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Referred to State Government Administration Committee,2024-03-05,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2023-02-06,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-23,[],IL,103rd +Assigned to Appropriations,2023-03-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2024-03-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-05-08,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-02-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. John F. Curran,2023-02-14,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Education,2024-02-14,['referral-committee'],IL,103rd +Assigned to Education,2024-02-20,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-03-25,[],IL,103rd +Assigned to Higher Education,2024-02-06,['referral-committee'],IL,103rd +Assigned to Agriculture,2024-02-14,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-01-31,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-02-02,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-14,['referral-committee'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-11,[],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-06,['referral-committee'],IL,103rd +Assigned to Agriculture,2024-02-06,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-01-24,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-02-01,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-01-24,['referral-committee'],IL,103rd +Assigned to Local Government,2024-01-24,['referral-committee'],IL,103rd +Assigned to Revenue,2024-01-24,['referral-committee'],IL,103rd +Assigned to Revenue,2024-01-24,['referral-committee'],IL,103rd +Assigned to Revenue,2024-01-24,['referral-committee'],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-02-28,[],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-01-31,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2024-02-20,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-18,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2024-01-30,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-05-07,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Recommends Be Adopted Public Health Committee; 008-000-000,2024-05-02,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-27,[],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-02-01,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-02-09,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-16,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-02-23,[],IL,103rd +Assigned to Appropriations-General Services Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-27,[],IL,103rd +Assigned to Appropriations-General Services Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-16,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Higher Education Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-15,[],IL,103rd +Referred to Assignments,2023-02-02,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-04-17,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-01-31,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Cristina H. Pacione-Zayas,2023-01-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Assigned to Revenue,2023-02-07,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-07,['referral-committee'],IL,103rd +Assigned to Local Government,2024-02-06,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-01-31,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-07,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Bradley Fritts,2024-04-15,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-07,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-03-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-01-31,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-05,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-05-19,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-16,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-11-07,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-10-30,[],IL,103rd +Assigned to Revenue,2023-01-31,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +First Reading,2023-05-18,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Terri Bryant,2024-02-16,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-02-22,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-05-08,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-02-14,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-07,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 016-000-000",2023-03-14,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-02-16,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-02-23,[],IL,103rd +Chief Sponsor Changed to Rep. Jenn Ladisch Douglass,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-06-09,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Jil Tracy,2023-09-05,[],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-15,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-02-15,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Executive Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-16,[],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-01-24,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-21,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-02-14,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-24,[],IL,103rd +Assigned to Revenue,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-02-22,[],IL,103rd +Assigned to Executive Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-15,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-23,[],IL,103rd +Assigned to Executive Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-05-07,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-21,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Seth Lewis,2024-02-15,[],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-22,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-15,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-13,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-02-23,[],IL,103rd +Assigned to Insurance Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-31,['passage'],IL,103rd +Assigned to Veterans' Affairs Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Executive Committee,2023-02-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-23,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-02-14,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Cities & Villages Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-02-21,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-01-30,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-15,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-04-20,[],IL,103rd +Assigned to Higher Education Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-03-07,[],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2024-02-21,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-26,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-02-01,[],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Paul Jacobs,2023-02-23,[],IL,103rd +Assigned to Consumer Protection Committee,2023-02-15,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Diane Blair-Sherlock,2023-02-17,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-05-12,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2024-03-21,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-02-09,[],IL,103rd +Chief Sponsor Changed to Sen. Celina Villanueva,2023-02-14,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-27,[],IL,103rd +Assigned to Police & Fire Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-05-17,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2023-02-28,['referral-committee'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule April 28, 2023",2023-03-13,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-27,[],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-21,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2023-02-15,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-24,[],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Transportation,2023-02-28,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Education,2024-01-31,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-06-09,[],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2024-04-03,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-16,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-02-21,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-24,[],IL,103rd +Assigned to Insurance,2024-01-31,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-24,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-02-26,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2023-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2023-04-06,[],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-05-22,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-24,[],IL,103rd +Assigned to Appropriations-Public Safety Committee,2023-02-28,['referral-committee'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-06,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-24,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-25,[],IL,103rd +Chief Sponsor Changed to Rep. Maura Hirschauer,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-02-26,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-10-23,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-02-21,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-02-27,[],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-24,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Assigned to Judiciary,2024-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-02-28,[],IL,103rd +First Reading,2023-03-28,['reading-1'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Assigned to Appropriations,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-03-05,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-07-25,[],IL,103rd +Assigned to Executive Committee,2023-02-15,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-12-20,[],IL,103rd +"Added Chief Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-05-14,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Housing,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Assigned to Ethics & Elections,2023-02-21,['referral-committee'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2023-02-08,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 21, 2024",2024-02-20,[],IL,103rd +Assigned to Energy and Public Utilities,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-15,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2024-01-26,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-01-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-11-08,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation,2024-02-14,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-01-24,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Assigned to Ethics & Elections,2023-02-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-02-06,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-02-10,[],IL,103rd +Assigned to Executive Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-07,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Appropriations,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-01-24,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-01-18,[],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Higher Education,2024-02-06,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-01-18,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-10-27,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-08-01,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-02-03,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-01-24,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-05-15,[],IL,103rd +Assigned to Insurance Committee,2023-02-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-17,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Chief Sponsor Changed to Sen. Chapin Rose,2024-02-08,[],IL,103rd +Referred to Rules Committee,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-02-03,[],IL,103rd +Assigned to Public Utilities Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-01-31,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-02-22,[],IL,103rd +Referred to Rules Committee,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-06-09,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2023-05-02,[],IL,103rd +Directed to Multiple Committees Insurance Committee then Special Committee on Criminal Law and Public Safety,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-20,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Katie Stuart",2024-03-05,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-03-12,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2024-04-17,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-10-25,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-11-16,[],IL,103rd +Assigned to Licensed Activities,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to State Government,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-10,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-02-20,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-17,[],IL,103rd +Assigned to Licensed Activities,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-02-14,[],IL,103rd +Assigned to Executive,2023-03-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-06,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-02-20,[],IL,103rd +Assigned to Appropriations- Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Police & Fire Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-21,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-02-22,[],IL,103rd +Assigned to Judiciary,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Education,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael T. Marron,2023-05-09,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Transportation,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Robyn Gabel,2023-03-01,[],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2023-02-28,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Don Harmon,2024-02-13,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-02-22,[],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-28,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-03-30,[],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Be Adopted State Government; 008-000-000,2023-05-17,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2024-02-21,[],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-02-08,[],IL,103rd +Assigned to Licensed Activities,2024-01-24,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-03-01,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Financial Institutions,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Directed to Multiple Committees Higher Education, Appropriations-Education",2023-01-31,[],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-02-21,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-03-07,[],IL,103rd +Assigned to Public Health Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-01-31,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-31,['passage'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-02-23,[],IL,103rd +Assigned to Revenue,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2023-02-17,[],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Public Health,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-16,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-24,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Education,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-02-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2023-01-31,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-21,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Terri Bryant,2023-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-24,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-28,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-03-05,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-14,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-02-21,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2023-02-09,[],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2023-02-16,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Local Government,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Education,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-02-09,[],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-03-01,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-02-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Education,2024-02-06,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-06,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2024-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2024-02-22,[],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Assigned to Insurance,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-02-22,[],IL,103rd +Assigned to State Government,2024-02-06,['referral-committee'],IL,103rd +Assigned to Cities & Villages Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Insurance,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-02-20,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Assigned to Insurance,2024-02-20,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-02-23,[],IL,103rd +Assigned to Judiciary,2024-01-24,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Insurance,2024-01-24,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2024-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-03-07,[],IL,103rd +Assigned to Gaming Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-01-31,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Assigned to Executive,2023-03-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to Financial Institutions,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Behavioral and Mental Health,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-06,[],IL,103rd +Assigned to Labor,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Transportation,2024-01-24,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-28,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Labor,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-02-08,[],IL,103rd +Assigned to Energy and Public Utilities,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Terri Bryant,2023-02-14,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-02-09,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-02-09,[],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-16,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2023-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-03-17,[],IL,103rd +Assigned to Public Utilities Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-02-21,['referral-committee'],IL,103rd +Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2023-04-25,['committee-passage-favorable'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-28,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 013-000-000",2023-04-18,['committee-passage-favorable'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Education,2023-02-14,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-03-23,[],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Assigned to Local Government,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 18, 2023",2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-28,[],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-05-15,[],IL,103rd +Recommends Be Adopted Human Services Committee; 007-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Assigned to Higher Education,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Veterans' Affairs Committee,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-22,[],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-20,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-04-25,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Education,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2024-03-06,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Assigned to Local Government,2024-02-14,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2023-02-08,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2023-02-08,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Chief Sponsor Changed to Sen. Erica Harriss,2023-02-09,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-02-22,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2023-03-01,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Housing,2024-03-12,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-03-20,[],IL,103rd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-04-11,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-03-01,['referral-committee'],IL,103rd +Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-04-11,[],IL,103rd +Referred to Congratulatory Consent Calendar,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-01-26,[],IL,103rd +Referred to Congratulatory Consent Calendar,2024-04-11,[],IL,103rd +Referred to Congratulatory Consent Calendar,2024-04-11,[],IL,103rd +Assigned to Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-02-20,[],IL,103rd +Referred to Congratulatory Consent Calendar,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-09-26,[],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-04-11,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-04-11,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-05-11,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-04-11,[],IL,103rd +Referred to Congratulatory Consent Calendar,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-03-01,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-02-07,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Assigned to Counties & Townships Committee,2024-03-05,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-08,[],IL,103rd +Assigned to Executive,2023-01-31,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-02,[],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Assigned to Counties & Townships Committee,2024-02-28,['referral-committee'],IL,103rd +Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-03-05,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-03-07,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2023-10-19,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2024-02-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2024-02-22,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-01-26,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 013-000-000",2023-04-18,['committee-passage-favorable'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to State Government,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-02-13,[],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Assigned to Environment and Conservation,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-02-28,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2023-03-14,['committee-passage-favorable'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2024-02-21,[],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 016-000-000",2023-03-14,['committee-passage-favorable'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-03-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-02-20,[],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +Assigned to Public Utilities Committee,2024-03-12,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2023-03-14,['committee-passage-favorable'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Counties & Townships Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +"Chief Sponsor Changed to Rep. Marcus C. Evans, Jr.",2024-02-07,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-03-12,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-02-07,[],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-02-28,['referral-committee'],IL,103rd +Assigned to Gaming Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-03-12,['referral-committee'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-02-22,[],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Education,2023-02-07,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-14,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2024-02-15,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Resolution Adopted,2023-03-14,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Sanalitro,2024-02-08,[],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2023-03-14,['passage'],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Travis Weaver,2023-03-14,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Mental Health & Addiction Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-08-08,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-11-16,[],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-15,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2024-02-06,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-15,[],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-15,[],IL,103rd +Recommends Be Adopted Transportation: Vehicles & Safety; 011-000-000,2023-03-08,['committee-passage-favorable'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-07,['referral-committee'],IL,103rd +"Assigned to Small Business, Tech Innovation, and Entrepreneurship Committee",2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-05,[],IL,103rd +Assigned to Executive,2023-01-31,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-16,[],IL,103rd +Assigned to Revenue,2023-02-07,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-02-14,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Referred to State Government Administration Committee,2024-03-05,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2024-02-21,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +Assigned to Executive Committee,2024-03-27,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2024-02-16,[],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2024-02-14,[],IL,103rd +Assigned to Executive,2023-01-31,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Housing,2024-02-28,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-03-05,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-13,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations,2023-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Michelle Mussman,2024-02-21,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-23,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-03-01,[],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Health Care Licenses Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-02-15,[],IL,103rd +Chief Sponsor Changed to Sen. Willie Preston,2023-01-25,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Assigned to Revenue,2023-01-31,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-03-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2023-01-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2023-01-24,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-03-12,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2024-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-25,[],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-05-02,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Education,2023-02-07,['referral-committee'],IL,103rd +Referred to Revenue & Finance Committee,2024-03-05,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-09,[],IL,103rd +Assigned to Energy & Environment Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-02-06,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-02-21,['referral-committee'],IL,103rd +Assigned to Local Government,2023-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to Transportation,2023-02-21,['referral-committee'],IL,103rd +Assigned to Local Government,2023-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2023-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Assigned to Local Government,2023-02-14,['referral-committee'],IL,103rd +Assigned to Financial Institutions,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Assigned to Education,2023-02-14,['referral-committee'],IL,103rd +Assigned to Local Government,2023-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-14,['referral-committee'],IL,103rd +Assigned to Higher Education,2023-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-02-15,[],IL,103rd +Assigned to Licensed Activities,2023-02-14,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2023-02-14,['referral-committee'],IL,103rd +Assigned to Labor,2023-02-21,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-21,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-14,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-16,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-02-21,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-21,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-21,['referral-committee'],IL,103rd +Assigned to Local Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2023-02-21,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-21,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2023-02-21,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-02-21,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-14,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2023-02-23,[],IL,103rd +Assigned to Education,2023-02-21,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to Education,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-02-16,[],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-21,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-02-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-02-14,[],IL,103rd +Assigned to Energy and Public Utilities,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-02-21,['referral-committee'],IL,103rd +Assigned to Higher Education,2023-02-21,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-21,['referral-committee'],IL,103rd +Assigned to Transportation,2023-02-21,['referral-committee'],IL,103rd +Assigned to Agriculture,2023-02-21,['referral-committee'],IL,103rd +Assigned to Transportation,2023-02-21,['referral-committee'],IL,103rd +Assigned to Financial Institutions,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to Local Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to Behavioral and Mental Health,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Assigned to Environment and Conservation,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-02-14,[],IL,103rd +Assigned to Licensed Activities,2023-02-21,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-02-22,[],IL,103rd +Assigned to Education,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to Labor,2023-02-28,['referral-committee'],IL,103rd +Assigned to Education,2023-02-21,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-02-16,[],IL,103rd +Assigned to Environment and Conservation,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-02-22,[],IL,103rd +Assigned to Public Health,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-28,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-21,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-02-21,['referral-committee'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-30,[],IL,103rd +Assigned to Transportation,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-02-21,['passage'],IL,103rd +Assigned to Education,2023-02-21,['referral-committee'],IL,103rd +Assigned to Veterans Affairs,2023-02-21,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2023-02-28,['referral-committee'],IL,103rd +Assigned to Financial Institutions,2023-02-28,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Assigned to Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-28,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Assigned to Insurance,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-03-07,[],IL,103rd +Assigned to Early Childhood Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-28,['referral-committee'],IL,103rd +Assigned to Local Government,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-28,['referral-committee'],IL,103rd +Assigned to Insurance,2023-02-28,['referral-committee'],IL,103rd +Assigned to State Government,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Assigned to Transportation,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-02-27,[],IL,103rd +Assigned to Transportation,2023-02-28,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-01-24,['referral-committee'],IL,103rd +Assigned to Insurance,2024-01-24,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-01-24,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-24,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Education,2024-01-31,['referral-committee'],IL,103rd +Assigned to Veterans Affairs,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-02-07,[],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Transportation,2024-02-20,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-06,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +"Directed to Multiple Committees Behavioral and Mental Health, then Appropriations.",2024-02-20,[],IL,103rd +Assigned to Financial Institutions,2024-02-14,['referral-committee'],IL,103rd +Assigned to Education,2024-02-14,['referral-committee'],IL,103rd +Assigned to Labor,2024-02-20,['referral-committee'],IL,103rd +Assigned to State Government,2024-02-14,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Agriculture,2024-02-20,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Transportation,2024-02-20,['referral-committee'],IL,103rd +Assigned to Education,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +Assigned to Labor,2024-02-20,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-28,['referral-committee'],IL,103rd +Assigned to State Government,2024-02-20,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-02-20,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-01-31,['amendment-introduction'],IL,103rd +Be Adopted Public Health; 007-000-000,2024-02-21,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-02-07,[],IL,103rd +Be Adopted Public Health; 008-000-000,2024-02-21,['committee-passage-favorable'],IL,103rd +Be Adopted Special Committee on Criminal Law and Public Safety; 010-000-000,2024-04-10,['committee-passage-favorable'],IL,103rd +Be Adopted Behavioral and Mental Health; 007-000-000,2024-04-10,['committee-passage-favorable'],IL,103rd +Be Adopted Environment and Conservation; 006-000-000,2024-02-08,['committee-passage-favorable'],IL,103rd +Be Adopted Human Rights; 007-000-000,2024-03-07,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2024-05-08,['amendment-introduction'],IL,103rd +Postponed - Environment and Conservation,2024-02-08,[],IL,103rd +Be Adopted State Government; 007-000-000,2024-05-01,['committee-passage-favorable'],IL,103rd +Be Adopted Public Health; 008-000-000,2024-05-07,['committee-passage-favorable'],IL,103rd +Chief Senate Sponsor Sen. Steve Stadelman,2023-04-20,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-11-09,[],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-05,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-11-27,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-01-31,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kimberly Du Buclet,2024-02-21,[],IL,103rd +Assigned to Housing,2024-03-05,['referral-committee'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-28,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Immigration & Human Rights Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Education,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-24,['referral-committee'],IL,103rd +Assigned to Insurance,2024-01-24,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2024-01-24,['referral-committee'],IL,103rd +Assigned to Insurance,2024-01-31,['referral-committee'],IL,103rd +Assigned to Insurance,2024-01-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-10-31,[],IL,103rd +Assigned to Judiciary,2024-01-24,['referral-committee'],IL,103rd +Assigned to Higher Education,2024-01-31,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-01-31,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +Assigned to Labor,2024-01-31,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-02-08,[],IL,103rd +Assigned to Judiciary,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Assigned to Labor,2024-02-06,['referral-committee'],IL,103rd +Assigned to Local Government,2024-02-06,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-20,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-14,['referral-committee'],IL,103rd +Assigned to Behavioral and Mental Health,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-02-07,[],IL,103rd +Assigned to Education,2024-02-14,['referral-committee'],IL,103rd +Assigned to Higher Education,2024-02-14,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-14,['referral-committee'],IL,103rd +Assigned to Public Health,2024-02-14,['referral-committee'],IL,103rd +Assigned to Insurance,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-07,[],IL,103rd +Assigned to Labor,2024-02-20,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-02-06,[],IL,103rd +Assigned to Environment and Conservation,2024-02-20,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-03-12,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-20,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-02-20,[],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-20,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-20,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2024-02-20,['referral-committee'],IL,103rd +Assigned to Behavioral and Mental Health,2024-02-20,['referral-committee'],IL,103rd +Assigned to Public Health,2024-02-20,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-28,['referral-committee'],IL,103rd +Assigned to Higher Education,2024-02-20,['referral-committee'],IL,103rd +Assigned to Public Health,2024-02-20,['referral-committee'],IL,103rd +Assigned to Environment and Conservation,2024-02-20,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2024-02-28,['referral-committee'],IL,103rd +Assigned to State Government,2024-02-20,['referral-committee'],IL,103rd +Assigned to Judiciary,2024-02-28,['referral-committee'],IL,103rd +Assigned to State Government,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-03-11,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-26,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-15,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-02-23,[],IL,103rd +Chief Sponsor Changed to Sen. David Koehler,2024-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-22,[],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-23,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-02-24,[],IL,103rd +Assigned to Appropriations- Education,2023-02-21,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Assigned to Education,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-22,[],IL,103rd +Assigned to Insurance Committee,2023-02-07,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-02-15,[],IL,103rd +Assigned to Revenue,2024-01-24,['referral-committee'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-01-24,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-04-26,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-01-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-10-26,[],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Assigned to Revenue,2024-01-24,['referral-committee'],IL,103rd +Assigned to Revenue,2024-03-12,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-01-31,['referral-committee'],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-01-31,['referral-committee'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations,2024-01-31,['referral-committee'],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-06,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-06,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-14,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-06,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-06,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-02-21,[],IL,103rd +Assigned to Revenue,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-05-03,[],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-02-14,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations,2024-02-20,['referral-committee'],IL,103rd +Assigned to Executive,2024-03-05,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-07,[],IL,103rd +Assigned to Appropriations- Education,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 1, 2024",2024-04-30,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-14,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-05-13,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-02-27,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-22,[],IL,103rd +Assigned to Appropriations- Education,2023-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations- Education,2023-02-07,['referral-committee'],IL,103rd +Assigned to Revenue,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Education,2023-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-10-18,[],IL,103rd +Assigned to Energy & Environment Committee,2023-02-15,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-20,[],IL,103rd +Assigned to Labor,2024-02-28,['referral-committee'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-15,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-28,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-09,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +Assigned to Revenue,2024-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-07-17,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-02-23,[],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-11-09,[],IL,103rd +Resolution Adopted,2023-10-25,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2023-05-02,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-08,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 13, 2024",2024-03-12,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Referred to State Government Administration Committee,2024-03-05,[],IL,103rd +Referred to State Government Administration Committee,2024-03-05,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-05,['referral-committee'],IL,103rd +"Assigned to Small Business, Tech Innovation, and Entrepreneurship Committee",2024-03-12,['referral-committee'],IL,103rd +Referred to State Government Administration Committee,2024-03-05,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-02-23,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2024-02-22,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 8, 2024",2024-05-07,[],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-10,['passage'],IL,103rd +Resolution Adopted,2024-04-10,['passage'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Assigned to Financial Institutions,2023-02-21,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2023-02-21,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2024-01-10,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-02-02,[],IL,103rd +Assigned to Judiciary,2024-01-24,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-11-07,[],IL,103rd +Chief Sponsor Changed to Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Assigned to Appropriations,2024-01-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-10-31,[],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-06,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-02-05,[],IL,103rd +Assigned to Executive,2024-02-06,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Willie Preston,2024-01-26,[],IL,103rd +Assigned to Executive,2024-02-06,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Do Pass Labor; 012-003-000,2024-03-06,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 22, 2024",2024-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2024-02-28,[],IL,103rd +To Subcommittee on Procurement,2023-02-23,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Labor; 016-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-02-22,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 12, 2024",2024-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass State Government; 005-003-000,2024-03-07,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2023-03-02,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-03,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-11-07,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-02-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2024-02-27,[],IL,103rd +Do Pass Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. John Egofske,2023-05-02,[],IL,103rd +Postponed - Education,2023-03-08,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"To Subcommittee on Gaming, Wagering, and Racing",2024-02-21,[],IL,103rd +Do Pass Executive; 011-000-000,2024-03-14,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +To Subcommittee on Ethics,2024-02-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Health and Human Services; 013-000-000,2023-03-08,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2023-03-03,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass Revenue; 008-000-000,2024-02-21,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Be Adopted Agriculture; 013-000-000,2024-03-07,['committee-passage-favorable'],IL,103rd +Do Pass State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Postponed - Education,2023-03-08,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-03-13,['committee-passage'],IL,103rd +Do Pass Education; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-15,[],IL,103rd +Do Pass Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2024-03-05,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-05-14,[],IL,103rd +Do Pass Education; 013-000-000,2023-03-08,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2023-03-07,['amendment-introduction'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +To Subcommittee on Elections,2024-02-08,[],IL,103rd +Postponed - Labor,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-03,['amendment-introduction'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-28,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-03-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-13,[],IL,103rd +Do Pass Education; 013-000-000,2024-02-21,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-13,[],IL,103rd +Do Pass Local Government; 009-000-000,2023-02-23,['committee-passage'],IL,103rd +Do Pass Financial Institutions; 005-003-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2024-02-22,['amendment-introduction'],IL,103rd +Postponed - Health and Human Services,2023-02-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-10-23,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2024-03-04,['amendment-introduction'],IL,103rd +Do Pass Labor; 015-000-000,2024-02-21,['committee-passage'],IL,103rd +Do Pass Insurance; 008-000-000,2024-03-13,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-23,[],IL,103rd +To Subcommittee on Elections,2023-02-23,[],IL,103rd +Do Pass Judiciary; 008-000-000,2023-02-22,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2024-03-06,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2024-03-20,['amendment-introduction'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +To Subcommittee on Government Operations,2024-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Postponed - Labor,2024-02-07,[],IL,103rd +Do Pass Transportation; 016-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Health and Human Services; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary Gill,2024-03-26,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Subcommittee on Procurement,2023-02-16,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2024-03-05,['amendment-introduction'],IL,103rd +Moved to Suspend Rule Sen. Steve Stadelman; 3-6(a),2023-04-20,[],IL,103rd +To Subcommittee on Cannabis,2023-02-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +To Subcommittee on Liquor,2024-02-08,[],IL,103rd +Do Pass Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. David Friess,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-04,[],IL,103rd +Do Pass Labor; 016-000-000,2024-03-13,['committee-passage'],IL,103rd +Assigned to Licensed Activities,2024-02-14,['referral-committee'],IL,103rd +Do Pass Judiciary; 005-002-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-02-21,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 009-000-000,2024-03-05,['committee-passage'],IL,103rd +Do Pass Higher Education; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 007-003-000,2024-03-07,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 009-000-000,2024-04-03,['committee-passage'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass Energy and Public Utilities; 015-000-000,2024-03-14,['committee-passage'],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Assigned to Appropriations- Education,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-14,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-02-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2024-02-29,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +To Subcommittee on State Gov. Special Issues,2023-02-23,[],IL,103rd +Waive Posting Notice,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2023-03-02,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2024-03-04,['amendment-introduction'],IL,103rd +Do Pass State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass State Government; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-03,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 11, 2024",2024-04-10,[],IL,103rd +Do Pass Local Government; 009-000-000,2023-02-23,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-02-26,[],IL,103rd +Do Pass Revenue; 010-000-000,2023-02-23,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2024-03-06,['amendment-introduction'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Moved to Suspend Rule Sen. Bill Cunningham; 3-6(a),2023-04-27,[],IL,103rd +To Subcommittee on Procurement,2024-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-02-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Erica Harriss,2024-02-29,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-02-08,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2023-02-24,['amendment-introduction'],IL,103rd +Do Pass Labor; 012-004-000,2024-03-13,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-007-001,2024-03-13,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-10-25,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2024-04-01,['amendment-introduction'],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 023-000-000,2024-03-21,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2024-02-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-02-23,[],IL,103rd +Postponed - Education,2023-02-22,[],IL,103rd +Do Pass Judiciary; 006-001-001,2023-03-08,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-03-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2024-03-05,[],IL,103rd +Resolution Adopted,2024-04-30,['passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 9, 2024",2024-05-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 20, 2024",2024-02-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Environment and Conservation; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Do Pass Environment and Conservation; 008-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Revenue; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Postponed - Insurance,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2024-03-07,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Economic Opportunity & Equity Committee; 005-003-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 010-000-000,2024-03-07,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2023-03-01,['amendment-introduction'],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Postponed - Local Government,2023-02-23,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Do Pass Transportation; 017-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 008-000-000,2024-02-07,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2023-02-28,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Postponed - Revenue,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2024-02-21,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Postponed - Local Government,2023-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2024-03-07,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 023-000-000,2024-03-05,['committee-passage'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Postponed - Public Health,2024-03-06,[],IL,103rd +To Subcommittee on Elections,2023-02-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-02-22,[],IL,103rd +Postponed - Executive,2023-02-23,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-03-06,[],IL,103rd +To Subcommittee on Government Operations,2024-03-07,[],IL,103rd +Postponed - Education,2024-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass Revenue; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-02-22,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Chief Sponsor Changed to Sen. Laura Fine,2024-04-11,[],IL,103rd +Do Pass Executive; 007-003-000,2024-03-07,['committee-passage'],IL,103rd +Assigned to Education,2024-02-14,['referral-committee'],IL,103rd +Do Pass Environment and Conservation; 006-003-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-02-21,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-21,[],IL,103rd +Postponed - Insurance,2024-03-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 7, 2024",2024-05-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2024-02-02,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-21,[],IL,103rd +Do Pass Education; 013-000-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass Revenue; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2024-03-04,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. John F. Curran,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-03-14,['amendment-introduction'],IL,103rd +Resolution Adopted,2024-05-08,['passage'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass Executive; 007-003-000,2024-03-07,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to State Government,2024-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2024-02-08,[],IL,103rd +Do Pass State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +To Subcommittee on Elections,2024-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-02-28,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2024-04-01,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2024-02-07,[],IL,103rd +Do Pass Executive; 008-004-000,2023-02-23,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2024-03-27,[],IL,103rd +Do Pass Executive; 011-000-000,2024-02-21,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +To Subcommittee on Ethics,2024-03-07,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-02-08,[],IL,103rd +Do Pass Financial Institutions; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Judiciary; 006-003-000,2024-02-07,['committee-passage'],IL,103rd +To Subcommittee on End of Life Issues,2024-03-07,[],IL,103rd +Do Pass Agriculture; 012-000-000,2024-03-07,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Postponed - Financial Institutions,2023-03-08,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-02-23,[],IL,103rd +"Do Pass / Short Debate Small Business, Tech Innovation, and Entrepreneurship Committee; 012-000-000",2024-04-04,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass State Government; 007-000-000,2024-02-21,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-03,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 007-003-000,2024-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-01-31,['referral-committee'],IL,103rd +Do Pass Education; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Assigned to Public Health,2023-02-21,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Judiciary; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Transportation; 015-000-000,2023-03-08,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2023-02-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-03-03,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2024-05-03,[],IL,103rd +Re-referred to Assignments,2023-03-07,[],IL,103rd +To Business & Industry Innovation Subcommittee,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2024-03-05,[],IL,103rd +Do Pass State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Appropriations- Education,2023-02-28,['referral-committee'],IL,103rd +Do Pass Local Government; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-03-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-22,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2023-03-02,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2024-02-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-03-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Postponed - Transportation,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2023-03-02,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-10-31,[],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-07,[],IL,103rd +Assigned to Energy and Public Utilities,2023-02-28,['referral-committee'],IL,103rd +Postponed - Licensed Activities,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-03-19,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Moved to Suspend Rule Sen. Bill Cunningham; 3-6(a),2023-11-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 009-000-000,2024-04-04,['committee-passage'],IL,103rd +Do Pass Public Health; 008-000-000,2024-03-13,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-01-31,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +To Subcommittee on Paid Leave,2024-03-07,[],IL,103rd +Do Pass Health and Human Services; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2024-02-06,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 11, 2024",2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-07,[],IL,103rd +Resolution Adopted,2024-03-13,['passage'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-01,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-03-06,['amendment-introduction'],IL,103rd +To Subcommittee on Procurement,2024-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-02-28,[],IL,103rd +Do Pass State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-02-27,['amendment-introduction'],IL,103rd +Do Pass Insurance; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Energy and Public Utilities; 015-000-000,2024-03-14,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2024-02-28,['amendment-introduction'],IL,103rd +Assigned to Licensed Activities,2023-02-21,['referral-committee'],IL,103rd +Do Pass Veterans Affairs; 007-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Transportation; 015-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 014-000-000,2024-02-21,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Education,2023-02-28,['referral-committee'],IL,103rd +To Subcommittee on Government Operations,2023-02-16,[],IL,103rd +Resolution Adopted,2024-05-01,['passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Postponed - Education,2023-02-22,[],IL,103rd +Do Pass Executive; 010-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-02-21,[],IL,103rd +Postponed - Revenue,2024-03-07,[],IL,103rd +Do Pass State Government; 009-000-000,2023-02-23,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-22,[],IL,103rd +Do Pass Judiciary; 008-000-000,2024-03-06,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2024-02-28,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Kimberly Du Buclet,2023-11-09,[],IL,103rd +Do Pass Judiciary; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Housing; 012-005-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass Judiciary; 008-001-000,2023-02-22,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Environment and Conservation; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Do Pass Insurance; 010-000-000,2023-02-22,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-03-04,['amendment-introduction'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2024-02-08,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2023-02-28,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2024-03-12,[],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2024-02-20,[],IL,103rd +Assigned to Labor,2024-01-24,['referral-committee'],IL,103rd +Do Pass Executive; 007-003-000,2024-03-07,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-02-22,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass Judiciary; 008-000-000,2024-03-06,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-03-02,['amendment-introduction'],IL,103rd +Assigned to Labor,2023-02-21,['referral-committee'],IL,103rd +Do Pass Agriculture; 012-000-000,2023-03-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 22, 2024",2024-02-21,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Postponed - Judiciary,2024-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-09,[],IL,103rd +Assigned to Education,2024-02-20,['referral-committee'],IL,103rd +Do Pass State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Licensed Activities; 008-000-000,2024-03-07,['committee-passage'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Postponed - Special Committee on Criminal Law and Public Safety,2024-03-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-11-07,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2023-03-03,['amendment-introduction'],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-07-19,[],IL,103rd +Do Pass Local Government; 009-000-000,2023-02-23,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-03-05,['referral-committee'],IL,103rd +Do Pass Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Do Pass Behavioral and Mental Health; 009-000-000,2024-03-06,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-03-05,[],IL,103rd +To Subcommittee on Procurement,2023-03-09,[],IL,103rd +Postponed - Public Health,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jil Tracy,2024-02-29,['amendment-introduction'],IL,103rd +Do Pass Local Government; 011-000-000,2024-02-21,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-02-16,[],IL,103rd +Do Pass Behavioral and Mental Health; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Assigned to Behavioral and Mental Health,2024-02-20,['referral-committee'],IL,103rd +Postponed - Health and Human Services,2024-03-06,[],IL,103rd +Be Adopted Environment and Conservation; 007-001-000,2024-03-07,['committee-passage-favorable'],IL,103rd +Do Pass Executive; 007-003-000,2024-03-07,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-06,[],IL,103rd +Do Pass Local Government; 010-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2024-03-13,['committee-passage'],IL,103rd +Do Pass Financial Institutions; 005-003-000,2023-03-08,['committee-passage'],IL,103rd +Assigned to Local Government,2023-02-21,['referral-committee'],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 010-000-000,2024-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-19,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-02,['amendment-introduction'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-21,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Energy and Public Utilities; 012-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Revenue; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Resolution Adopted,2023-05-27,['passage'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-02-14,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-09,[],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-03-06,['amendment-introduction'],IL,103rd +To Subcommittee on Government Operations,2024-02-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2024-02-29,['amendment-introduction'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass Education; 012-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Revenue; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-15,[],IL,103rd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2023-03-03,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2023-03-02,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2024-03-06,['amendment-introduction'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-01-24,['referral-committee'],IL,103rd +To Subcommittee on Procurement,2024-03-07,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 18, 2023",2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-07,['amendment-introduction'],IL,103rd +Postponed - Transportation,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Omar Aquino,2023-03-03,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2024-03-13,[],IL,103rd +Do Pass Revenue; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass Executive; 007-003-000,2024-03-07,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-05,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Postponed - Judiciary,2024-02-21,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-02-01,[],IL,103rd +To Subcommittee on Special Issues on Criminal Law & Public Safety,2023-02-23,[],IL,103rd +To Subcommittee on CLEAR Compliance,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Removed Co-Sponsor Rep. Dan Ugaste,2024-02-09,[],IL,103rd +Postponed - Agriculture,2024-03-07,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2024-05-08,[],IL,103rd +To Subcommittee on Special Issues,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Porfirio,2024-03-05,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-03-04,[],IL,103rd +To Subcommittee on Special Issues on Criminal Law & Public Safety,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-06,[],IL,103rd +Assigned to Insurance,2024-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-05-08,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-02,[],IL,103rd +Postponed - Special Committee on Criminal Law and Public Safety,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Terri Bryant,2023-03-06,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-04-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-03-05,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-01-31,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-02-01,[],IL,103rd +Postponed - Health and Human Services,2024-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Postponed - Revenue,2024-03-14,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2024-04-11,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-02-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Removed Co-Sponsor Rep. Blaine Wilhour,2023-02-23,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Assigned to Revenue,2024-02-14,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-25,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-18,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-11,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Postponed - Revenue,2024-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-14,[],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Postponed - Local Government,2024-02-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-02,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Counties & Townships Committee,2023-02-15,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Ann M. Williams,2023-03-07,[],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 008-004-000,2023-03-07,['committee-passage'],IL,103rd +Arrived in House,2024-03-07,['introduction'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 24, 2023",2023-03-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-02-27,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2024-02-28,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 010-005-000,2023-03-07,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 014-000-000,2024-03-13,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 006-003-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-21,['referral-committee'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 015-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-02,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Moved to Suspend Rule 21 Rep. Robyn Gabel,2023-02-28,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-02-08,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-15,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 016-010-000,2023-02-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Fred Crespo,2023-03-07,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-02,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-03-02,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 021-000-000,2023-02-14,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-03,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Insurance Committee,2023-02-07,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2023-02-16,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 006-003-000,2023-02-23,['committee-passage'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-06,[],IL,103rd +Assigned to Executive Committee,2023-02-07,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Restorative Justice; 008-001-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-03-08,['amendment-introduction'],IL,103rd +"Do Pass / Short Debate Small Business, Tech Innovation, and Entrepreneurship Committee; 006-004-000",2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2023-02-27,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-22,[],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 028-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 014-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sharon Chung,2023-03-07,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-01,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-27,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-02-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-16,[],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 012-000-000,2023-03-07,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-16,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-21,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2023-02-28,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 006-003-000,2023-02-28,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-02-28,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2023-02-10,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-01,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Appropriations-General Services Committee; 013-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Restorative Justice; 004-002-000,2023-03-02,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2023-03-07,['amendment-introduction'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-01-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-07,['referral-committee'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Objection filed with the Secretary of Senate pursuant to Senate Rule 6-1(c) by Senator Harmon, Senator Castro, Senator Bill Cunningham.",2023-04-27,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2023-03-06,[],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-04,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-02-14,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2023-03-06,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-23,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-28,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Housing; 016-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 015-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 008-004-000,2023-02-15,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-02-28,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-02-21,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 11, 2023",2023-05-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2023-03-02,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 022-000-000,2023-02-28,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 022-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Child Care Accessibility & Early Childhood Education Committee; 015-000-000,2023-03-02,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-22,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2024-03-13,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 020-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 013-000-000,2023-02-22,['committee-passage'],IL,103rd +Assigned to Counties & Townships Committee,2023-03-01,['referral-committee'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-03,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-21,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2023-02-15,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-03,[],IL,103rd +Removed Co-Sponsor Rep. Jed Davis,2023-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-10-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-28,[],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-10-25,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-02-28,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-16,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2023-02-27,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 009-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-06,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-10-25,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-05-10,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 010-005-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-02-16,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 010-005-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-02-17,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. William ""Will"" Davis",2023-03-03,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 012-000-000,2023-03-02,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-02-15,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 017-010-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 005-004-000,2023-03-08,['committee-passage'],IL,103rd +To Sex Offenses and Sex Offender Registration Subcommittee,2023-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2024-04-01,['amendment-introduction'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Do Pass / Short Debate Cities & Villages Committee; 017-000-000,2023-02-14,['committee-passage'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-02-07,['referral-committee'],IL,103rd +Assigned to Human Services Committee,2023-02-15,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2023-11-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2023-03-01,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 012-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2023-03-02,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Judiciary,2024-02-20,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-21,['referral-committee'],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 013-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2023-03-02,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2023-03-01,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 022-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 024-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 016-010-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 014-008-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-27,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2023-02-25,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-03-03,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 006-003-000,2023-03-07,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2023-03-01,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-02-28,[],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2023-02-01,[],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-11-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-15,['referral-committee'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 010-000-000,2023-02-22,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-02-17,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-21,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 009-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Appropriations-Higher Education Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-23,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 22, 2024",2024-02-21,[],IL,103rd +Do Pass / Short Debate Restorative Justice; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-02-23,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-08,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-02-28,[],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2023-02-24,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 009-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-01,['committee-passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-03-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2023-02-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 017-008-000,2023-02-14,['committee-passage'],IL,103rd +"Removed Co-Sponsor Rep. Maurice A. West, II",2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 017-010-000,2023-03-07,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Be Adopted State Government; 008-000-000,2023-05-17,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-02-08,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 029-000-000,2023-03-07,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2023-01-31,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2023-02-17,['amendment-introduction'],IL,103rd +Be Adopted Health and Human Services; 008-000-000,2023-05-09,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2023-03-06,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Insurance Committee,2023-02-15,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 014-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Do Pass / Short Debate Child Care Accessibility & Early Childhood Education Committee; 015-000-000,2023-03-02,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-02-27,['amendment-introduction'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-19,[],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-03,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-15,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Assigned to State Government Administration Committee,2023-02-23,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 008-004-000,2023-02-28,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-05-19,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-02-14,[],IL,103rd +Do Pass / Short Debate Restorative Justice; 004-002-000,2023-02-23,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2023-03-09,['amendment-introduction'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-15,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-15,['referral-committee'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-010-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Housing; 016-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Insurance Committee,2023-02-15,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2023-02-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-02-28,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 18, 2023",2023-05-17,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2023-02-23,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2023-03-08,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 008-005-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 017-010-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 014-000-000,2023-03-07,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-02-02,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-03-27,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-10-23,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2023-08-25,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 006-003-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Cities & Villages Committee; 016-000-000,2023-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-02,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Senate Special Committee on Pensions; 008-001-002,2023-02-22,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Removed Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-22,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass State Government; 009-000-000,2023-02-23,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass State Government; 009-000-000,2023-02-23,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve McClure,2023-02-24,['amendment-introduction'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. William ""Will"" Davis",2023-02-28,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2023-03-08,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Economic Opportunity & Equity Committee; 005-003-000,2023-03-08,['committee-passage'],IL,103rd +Postponed - Senate Special Committee on Pensions,2023-02-22,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-21,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2023-02-21,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bradley Fritts,2024-02-20,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +"Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-09-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-02-17,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Utilities Subcommittee,2024-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2023-02-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Criminal Administration and Enforcement Subcommittee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-01,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tony M. McCombie,2023-03-01,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Sex Offenses and Sex Offender Registration Subcommittee,2023-03-07,[],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2024-01-31,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2024-03-05,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +To Job Growth & Workforce Development Subcommittee,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 006-003-000,2024-04-03,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-14,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-02-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2024-03-08,['amendment-introduction'],IL,103rd +Do Pass Judiciary; 009-000-000,2023-02-22,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2024-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2024-03-08,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 005-003-000,2024-03-14,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-05,['referral-committee'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-02-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 009-000-000,2024-04-02,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-16,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dan Caulkins,2024-04-02,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2024-03-12,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2024-03-12,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 017-010-000,2024-03-12,['committee-passage'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 019-010-000,2024-04-03,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2024-04-01,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Insurance Committee; 010-005-000,2024-04-02,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 010-005-000,2024-04-02,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-13,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-02-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Housing; 012-005-000,2024-03-21,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2024-03-04,[],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2024-03-06,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 011-000-000,2024-02-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-007-000,2024-03-05,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-02,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2024-02-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-02-21,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-02,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Insurance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-01-31,['referral-committee'],IL,103rd +Remove Chief Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2024-02-27,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2024-03-12,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Gaming Committee; 010-000-000,2024-04-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-26,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 009-006-000,2024-04-04,['committee-passage'],IL,103rd +Do Pass / Short Debate Public Health Committee; 005-003-000,2024-04-04,['committee-passage'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2024-03-21,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Insurance Committee; 010-000-000,2024-03-05,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-03-06,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-003-000,2024-04-03,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 010-000-000,2024-03-14,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2024-04-01,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-12,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-04-02,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2024-03-05,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2023-02-28,['amendment-introduction'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2023-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2023-02-23,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2023-03-01,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-02-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. John M. Cabello,2024-02-22,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Ryan Spain,2024-03-13,['amendment-introduction'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-28,['referral-committee'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2024-03-06,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Patrick Windhorst,2024-03-25,['amendment-introduction'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Assigned to Police & Fire Committee,2024-03-05,['referral-committee'],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 007-004-000,2024-03-05,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-02-09,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dale Fowler,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 007-000-000,2024-04-04,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 014-000-000",2024-04-02,['committee-passage'],IL,103rd +Do Pass / Short Debate Public Health Committee; 007-000-000,2024-03-14,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2023-02-15,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-05,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-20,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 023-000-000,2024-03-05,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-01,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2024-03-21,['amendment-introduction'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-003-000,2024-03-13,['committee-passage'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2024-03-11,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2023-03-03,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anthony DeLuca,2023-03-06,['amendment-introduction'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2024-03-04,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-02-29,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 011-000-000,2024-04-04,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 011-000-000,2024-03-22,['committee-passage'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 007-004-000,2024-04-04,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 023-000-000,2024-03-05,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 020-001-000,2024-03-20,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-02-26,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-03-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Immigration & Human Rights Committee; 007-003-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Chief Sponsor Changed to Rep. Janet Yang Rohr,2024-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Insurance Committee; 009-004-000,2024-03-20,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2024-03-13,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2024-03-05,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2024-03-07,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Erica Harriss,2024-02-26,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-03-12,[],IL,103rd +Do Pass Local Government; 009-000-000,2023-02-23,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2024-02-22,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 006-003-000,2024-04-02,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 013-000-000,2024-03-12,['committee-passage'],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 012-000-000,2024-03-22,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-02-22,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass Agriculture; 012-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jed Davis,2024-03-05,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 007-004-000,2024-04-04,['committee-passage'],IL,103rd +Do Pass / Short Debate Restorative Justice; 006-003-000,2024-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 026-000-000,2024-03-05,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2024-03-07,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-02-22,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Public Health Committee; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-03-14,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 010-004-000,2024-04-03,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 024-000-000,2024-03-21,['committee-passage'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2024-04-01,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Economic Opportunity & Equity Committee; 008-000-000,2024-04-03,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-01,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 009-006-000,2024-04-04,['committee-passage'],IL,103rd +Do Pass / Short Debate Veterans' Affairs Committee; 014-000-000,2024-03-05,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-01,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-12,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-03,[],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-03-21,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-04,[],IL,103rd +Added Chief Co-Sponsor Rep. Yolonda Morris,2023-11-09,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-11,[],IL,103rd +Assigned to Human Services Committee,2024-01-31,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-27,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-02,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-02,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-03-13,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-04,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Public Health Committee,2024-03-20,['referral-committee'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-11,[],IL,103rd +Recommends Be Adopted Cities & Villages Committee; 016-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-12,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-12,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-02,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-03-21,[],IL,103rd +Referred to Rules Committee,2024-02-20,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to State Government Administration Committee,2024-03-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-03-12,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-03-07,[],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 006-003-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-03,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-04,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-05-01,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-05-08,[],IL,103rd +Assigned to State Government Administration Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-05-08,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-05-15,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-16,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-16,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-16,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-16,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-20,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2024-05-20,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2024-05-24,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-18,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Motion to Suspend Rule 21 - Prevailed 070-038-000,2024-05-28,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-16,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-18,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-03-06,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-03-22,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-03-06,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-03,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-02-08,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-05-06,[],IL,103rd +Assigned to Executive,2023-03-02,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-11,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-03,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-02-14,['amendment-introduction'],IL,103rd +Do Pass Revenue; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-02-01,['amendment-introduction'],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Local Government; 009-000-000,2023-02-23,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2023-03-02,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Insurance; 010-000-000,2023-02-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-02-23,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-02-16,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2023-02-03,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Postponed - Health and Human Services,2023-02-15,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Local Government; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2023-02-14,[],IL,103rd +Do Pass Insurance; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Postponed - Judiciary,2023-02-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-02-21,[],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Assigned to Licensed Activities,2023-02-07,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-02-26,[],IL,103rd +Do Pass Executive; 011-000-000,2023-02-16,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2023-03-09,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-02-22,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-02-16,['committee-passage'],IL,103rd +Do Pass Judiciary; 007-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Transportation; 018-000-000,2023-02-22,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-06,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-03-06,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-09,[],IL,103rd +Do Pass Judiciary; 009-000-000,2023-02-15,['committee-passage'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-10,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-10-25,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-06,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-02-14,[],IL,103rd +Do Pass Health and Human Services; 013-000-000,2023-02-22,['committee-passage'],IL,103rd +Do Pass Licensed Activities; 006-000-000,2023-02-23,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-02-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2023-03-06,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-02,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-02-26,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Criminal Administration and Enforcement Subcommittee,2023-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-02-21,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-05-03,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2024-02-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2024-03-15,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2024-02-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-15,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Family Preservation Subcommittee,2023-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-05-16,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +Added Chief Co-Sponsor Rep. Jason Bunting,2023-03-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2024-02-06,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2024-03-15,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-03-19,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2024-01-26,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2023-03-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-01,[],IL,103rd +Postponed - Financial Institutions,2024-03-06,[],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-01-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Family Law & Probate Subcommittee,2023-03-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-21,['referral-committee'],IL,103rd +To Business & Industry Innovation Subcommittee,2023-03-02,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Sponsor Removed Sen. Lakesia Collins,2024-03-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-03-07,[],IL,103rd +To Subcommittee on Procurement,2023-03-09,[],IL,103rd +Postponed - Behavioral and Mental Health,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-02-22,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2024-03-13,['amendment-introduction'],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-02-21,[],IL,103rd +Assigned to Higher Education Committee,2024-02-28,['referral-committee'],IL,103rd +Postponed - Labor,2024-03-06,[],IL,103rd +Assigned to Higher Education Committee,2023-02-15,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-04-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2024-02-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary Beth Canty,2024-04-01,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2023-03-01,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Ethics & Elections,2023-02-21,['referral-committee'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Transportation,2024-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Violence Reduction & Prevention Subcommittee,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jenn Ladisch Douglass,2024-03-27,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-02-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Paul Jacobs,2023-03-01,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Javier L. Cervantes,2024-03-05,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-02-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-10,[],IL,103rd +Recommends Be Adopted Judiciary - Criminal Committee; 013-000-000,2023-05-09,['committee-passage-favorable'],IL,103rd +To Civil Procedure & Tort Liability subcommittee,2023-03-08,[],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-19,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-15,['referral-committee'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-04-03,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Health and Human Services,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-03,['amendment-introduction'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +To Clean Energy Subcommittee,2024-03-22,[],IL,103rd +Postponed - Judiciary,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2024-05-17,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2023-03-24,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-02-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Resolution Adopted,2023-03-15,['passage'],IL,103rd +Do Pass Education; 011-000-000,2024-03-06,['committee-passage'],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +To Special Issues Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-08,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-02-08,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2023-01-26,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-03-09,[],IL,103rd +Postponed - Revenue,2023-03-09,[],IL,103rd +To Subcommittee on State Gov. Special Issues,2023-02-23,[],IL,103rd +To Subcommittee on State Gov. Special Issues,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2023-05-09,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-04-18,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-02-14,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-02-28,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +To Civil Procedure & Tort Liability subcommittee,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-15,[],IL,103rd +To Family Preservation Subcommittee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-02-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-03-07,[],IL,103rd +Assigned to Energy and Public Utilities,2023-02-14,['referral-committee'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2023-02-14,['referral-committee'],IL,103rd +Postponed - Transportation,2023-03-08,[],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Elections,2023-02-23,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Business & Industry Innovation Subcommittee,2023-03-08,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-12,['referral-committee'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-22,[],IL,103rd +Postponed - Transportation,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 30, 2023",2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-05-22,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Telecom Subcommittee,2024-03-13,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +To Sex Offenses and Sex Offender Registration Subcommittee,2023-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-02-23,[],IL,103rd +Assigned to Appropriations- Education,2023-02-07,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tracy Katz Muhl,2024-04-02,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-02-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-09,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2024-03-08,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-02-02,[],IL,103rd +To Insurance Main Subcommittee,2023-02-24,[],IL,103rd +To Local Government Subcommittee,2024-03-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-03-08,[],IL,103rd +Do Pass / Short Debate Veterans' Affairs Committee; 014-000-000,2024-03-05,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-02-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-01-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Appropriations-Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-03,['amendment-introduction'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sue Rezin,2023-02-21,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-26,[],IL,103rd +To Subcommittee on State Gov. Special Issues,2023-02-23,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +To Subcommittee on CLEAR Compliance,2023-03-10,[],IL,103rd +To Business & Industry Innovation Subcommittee,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-09,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-02-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Chief Sponsor Changed to Rep. Abdelnasser Rashid,2023-02-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Jed Davis,2024-04-15,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-04,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-02-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Civil Procedure & Tort Liability subcommittee,2023-03-01,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2024-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Procurement,2023-03-09,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Postponed - Insurance,2023-03-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-04-17,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2024-02-27,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-01-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2023-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-13,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Travis Weaver",2024-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2023-05-19,[],IL,103rd +Assigned to Education,2024-02-20,['referral-committee'],IL,103rd +To Family Law & Probate Subcommittee,2023-03-08,[],IL,103rd +Postponed - Judiciary,2024-03-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-10,[],IL,103rd +Do Pass Local Government; 009-000-000,2024-03-14,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Chief Sponsor Changed to Rep. Diane Blair-Sherlock,2023-02-24,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-03-11,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-05-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Postponed - Judiciary,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-02-15,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-05-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Subcommittee on Procurement,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-01-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2023-02-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-05-09,[],IL,103rd +Postponed - Environment and Conservation,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-05-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2023-03-03,['amendment-introduction'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2024-03-27,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2023-05-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2024-03-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-11-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Health Care Licenses Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-28,['referral-committee'],IL,103rd +Postponed - Education,2023-02-22,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-02-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2024-03-20,['amendment-introduction'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-02,[],IL,103rd +To Subcommittee on Government Operations,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-05-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Do Pass Higher Education; 011-000-000,2023-02-22,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Subcommittee on CLEAR Compliance,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Postponed - Judiciary,2023-03-08,[],IL,103rd +Correctional Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Property,2023-03-08,[],IL,103rd +To Subcommittee on Procurement,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Appropriations-Public Safety Committee,2023-02-28,['referral-committee'],IL,103rd +To Job Growth & Workforce Development Subcommittee,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Assigned to Ethics & Elections,2024-02-14,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +To Subcommittee on Government Operations,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-01-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-07,[],IL,103rd +To Commercial & Property Subcommittee,2023-03-01,[],IL,103rd +To Water Subcommittee,2023-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Revenue,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-11-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2023-02-14,[],IL,103rd +Referred to Congratulatory Consent Calendar,2024-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 18, 2023",2023-05-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-15,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Alternate Chief Sponsor Removed Rep. Stephanie A. Kifowit,2024-02-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-02-16,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Dennis Tipsword, Jr.",2023-03-03,['amendment-introduction'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-03-06,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-01-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-23,[],IL,103rd +Resolution Adopted; 055-000-000,2023-05-19,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2023-02-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Postponed - Insurance,2023-02-08,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-11-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Subcommittee on Ethics,2023-03-09,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Nabeela Syed,2024-03-04,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-10-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-21,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-05,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2023-03-03,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Liquor,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2024-02-29,['amendment-introduction'],IL,103rd +Assigned to Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +To Financial Institutions Subcommitee on Special Issues,2023-03-08,[],IL,103rd +"Added Chief Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-05-14,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2023-03-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2024-02-26,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-02-26,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-03-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-15,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2024-03-11,['amendment-introduction'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-15,[],IL,103rd +Assigned to Higher Education,2023-01-31,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2024-01-18,[],IL,103rd +Assigned to Insurance,2023-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-03-05,['amendment-introduction'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +To Criminal Administration and Enforcement Subcommittee,2023-03-07,[],IL,103rd +Postponed - State Government,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-23,['referral-committee'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2023-03-14,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Executive Committee; 008-003-000,2023-03-08,['committee-passage'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +To Clean Energy Subcommittee,2024-03-22,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2024-03-04,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2023-02-22,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Assigned to Executive Committee,2024-03-12,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-02-22,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-02-22,[],IL,103rd +Do Pass Transportation; 014-000-000,2024-03-06,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Executive Subcommittee on Special Issues,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-02-21,[],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-02-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2024-03-08,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Energy and Public Utilities,2024-02-06,['referral-committee'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Subcommittee on Procurement,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-03,['amendment-introduction'],IL,103rd +Postponed - Transportation,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Steven Reick,2023-03-03,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-02-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2024-03-07,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2024-03-19,['amendment-introduction'],IL,103rd +Chief Sponsor Changed to Rep. Michael J. Kelly,2023-02-28,[],IL,103rd +Added as Chief Co-Sponsor Sen. Chapin Rose,2024-02-06,[],IL,103rd +To Subcommittee on Government Operations,2023-02-16,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-03-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-02-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2023-03-15,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve McClure,2024-02-21,['amendment-introduction'],IL,103rd +Postponed - Judiciary,2023-02-15,[],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-02-15,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2024-02-22,[],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +To Occupational Licenses Subcommittee,2024-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-02,[],IL,103rd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-01-31,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-02-22,[],IL,103rd +Assigned to Executive Committee,2024-03-12,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-02,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2024-04-11,[],IL,103rd +Resolution Adopted,2024-04-17,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2024-02-16,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2024-03-12,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Subcommittee on CLEAR Compliance,2024-03-07,[],IL,103rd +Do Pass Education; 013-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Moved to Suspend Rule 21 Rep. Robyn Gabel,2023-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2024-02-21,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-21,['referral-committee'],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 014-001-000,2024-03-05,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-04-26,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2023-03-01,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-11-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +To Subcommittee on Elections,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-02-15,[],IL,103rd +To Executive Subcommittee on Special Issues,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2024-03-01,['amendment-introduction'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Postponed - Revenue,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Elections,2023-03-09,[],IL,103rd +Referred to Rules Committee,2023-03-28,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Licensed Activities,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-02-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Postponed - Insurance,2023-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. John F. Curran,2023-02-09,[],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2023-03-02,['amendment-introduction'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Postponed - Agriculture,2023-03-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-11,[],IL,103rd +Assigned to Revenue,2023-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-10-27,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Procurement,2023-02-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-03-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-12,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-03-14,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Subcommittee on Elections,2023-03-09,[],IL,103rd +To Subcommittee on State Gov. Special Issues,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2024-02-28,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Business & Industry Innovation Subcommittee,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2023-02-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-02-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-05-17,[],IL,103rd +To Subcommittee on Elections,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2024-02-28,['amendment-introduction'],IL,103rd +Postponed - Local Government,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Fire Subcommittee,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-03-01,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 014-000-000,2024-03-12,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2023-10-19,[],IL,103rd +Postponed - Education,2023-03-08,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Assigned to Licensed Activities,2023-02-14,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Harry Benton,2024-04-01,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-10-17,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Angelica Guerrero-Cuellar,2024-03-21,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-03-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Assigned to Education,2024-02-14,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2024-03-07,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-02-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Postponed - Local Government,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Postponed - Education,2024-02-21,[],IL,103rd +To Subcommittee on Cannabis,2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-02-14,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-02-07,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-03-06,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Executive Subcommittee on Special Issues,2023-03-09,[],IL,103rd +Postponed - Health and Human Services,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2024-03-06,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-02-22,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-22,[],IL,103rd +To Executive Subcommittee on Special Issues,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Do Pass Health and Human Services; 013-000-000,2024-02-21,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Subcommittee on Elections,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +To Subcommittee on Procurement,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-21,[],IL,103rd +Assigned to Housing,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-05-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2024-04-02,['amendment-introduction'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Seth Lewis,2023-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Public Utilities Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Higher Education; 012-000-000,2024-02-21,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Subcommittee on Elections,2023-02-23,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2024-02-20,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-10-23,[],IL,103rd +Chief Sponsor Changed to Rep. Michael J. Kelly,2023-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2023-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2024-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +To Clean Energy Subcommittee,2024-03-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-01-29,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-02-14,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-03-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-03-12,[],IL,103rd +Postponed - Health and Human Services,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-24,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-02-28,[],IL,103rd +To Subcommittee on Elections,2023-03-09,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Michael J. Kelly,2023-02-28,[],IL,103rd +To Executive Subcommittee on Special Issues,2023-02-23,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Porfirio,2024-03-05,['amendment-introduction'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Postponed - Insurance,2024-03-13,[],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-09-26,[],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2023-05-26,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2023-03-03,['amendment-introduction'],IL,103rd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2024-02-29,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2023-03-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-05-28,[],IL,103rd +To Subcommittee on Special Issues,2023-03-08,[],IL,103rd +To Subcommittee on Special Issues on Criminal Law & Public Safety,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-03-05,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Postponed - Education,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Energy and Public Utilities,2023-03-09,[],IL,103rd +Sponsor Removed Sen. Celina Villanueva,2024-02-21,[],IL,103rd +Do Pass Judiciary; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2024-03-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Correctional Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-10,[],IL,103rd +Postponed - Education,2023-02-22,[],IL,103rd +To Family Law & Probate Subcommittee,2024-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-02-14,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Moved to Suspend Rule 21 Rep. Robyn Gabel,2023-02-28,[],IL,103rd +Do Pass Judiciary; 008-000-000,2024-02-07,['committee-passage'],IL,103rd +Do Pass Judiciary; 006-003-000,2024-03-06,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-02-21,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Revenue; 010-000-000,2023-02-23,['committee-passage'],IL,103rd +Do Pass Judiciary; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Higher Education; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Correctional Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Yolonda Morris,2023-11-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-03-06,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-02-16,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Postponed - Education,2024-03-06,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2024-03-08,['amendment-introduction'],IL,103rd +Do Pass Public Health; 007-000-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Sue Rezin,2024-03-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Do Pass Revenue; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Public Health; 007-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2023-02-21,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass Executive; 008-004-000,2023-02-23,['committee-passage'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-000-000,2024-03-21,['committee-passage'],IL,103rd +Removed Co-Sponsor Rep. Harry Benton,2023-02-23,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-02-01,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2024-03-01,['amendment-introduction'],IL,103rd +Arrive in Senate,2024-05-01,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-07,['amendment-introduction'],IL,103rd +Do Pass State Government; 008-001-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Caulkins,2024-05-23,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass Judiciary; 007-000-000,2024-03-06,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-03-25,[],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2023-02-23,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 007-002-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-02-14,[],IL,103rd +Do Pass Transportation; 014-000-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 007-003-000,2024-03-07,['committee-passage'],IL,103rd +Assigned to Environment and Conservation,2023-02-21,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2023-03-01,['amendment-introduction'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-24,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2024-03-13,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-01-25,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-02-15,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Terri Bryant,2023-02-15,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-05-16,[],IL,103rd +Postponed - Public Health,2024-03-06,[],IL,103rd +Do Pass Transportation; 018-000-000,2023-02-22,['committee-passage'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Do Pass / Short Debate Veterans' Affairs Committee; 012-000-000,2024-03-05,['committee-passage'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2024-03-04,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Transportation; 012-006-000,2023-02-22,['committee-passage'],IL,103rd +Do Pass Licensed Activities; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 026-000-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass Revenue; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Health and Human Services; 013-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 007-003-000,2024-03-07,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-07,[],IL,103rd +Do Pass Environment and Conservation; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2024-03-21,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-02-08,[],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-01,[],IL,103rd +Do Pass Education; 013-000-000,2023-02-22,['committee-passage'],IL,103rd +Postponed - Public Health,2024-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 027-000-000,2024-04-03,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2024-03-08,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-03-14,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-04,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Assigned to Public Health,2024-01-24,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Assigned to Judiciary,2024-02-14,['referral-committee'],IL,103rd +Do Pass / Short Debate Insurance Committee; 013-000-000,2024-03-12,['committee-passage'],IL,103rd +Assigned to Energy and Public Utilities,2024-02-20,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-03-03,['amendment-introduction'],IL,103rd +"To Subcommittee on Gaming, Wagering, and Racing",2023-02-16,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. John F. Curran,2023-11-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Public Health; 008-000-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass Judiciary; 005-002-000,2023-03-08,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Do Pass Revenue; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Veterans' Affairs Committee; 014-000-000,2024-03-05,['committee-passage'],IL,103rd +Do Pass Revenue; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Higher Education; 011-000-000,2023-02-22,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2023-03-03,['amendment-introduction'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Judiciary; 005-003-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass State Government; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2023-03-01,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 013-000-000,2024-03-05,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-03-05,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-08,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Higher Education; 011-000-000,2024-03-06,['committee-passage'],IL,103rd +To Subcommittee on State Gov. Special Issues,2023-02-23,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-07,[],IL,103rd +Do Pass Executive; 007-003-000,2024-03-07,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Health and Human Services; 013-000-000,2024-02-21,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-01,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2023-03-03,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2023-02-09,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Norma Hernandez,2024-03-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-03-08,[],IL,103rd +Assigned to Public Health,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-02-21,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Removed Co-Sponsor Rep. Dan Ugaste,2024-02-09,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2023-03-03,['amendment-introduction'],IL,103rd +To Subcommittee on Elections,2023-02-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Judiciary; 008-000-000,2024-03-06,['committee-passage'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Assigned to Judiciary,2024-02-28,['referral-committee'],IL,103rd +Do Pass Veterans Affairs; 007-000-000,2023-02-23,['committee-passage'],IL,103rd +Do Pass Education; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-03-12,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve McClure,2024-02-21,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-03,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-02-14,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-02-20,[],IL,103rd +Do Pass Transportation; 015-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-03-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2024-03-08,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Revenue; 010-000-000,2023-02-23,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-02-01,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass State Government; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Postponed - Senate Special Committee on Pensions,2023-02-22,[],IL,103rd +Chief Sponsor Changed to Sen. Sara Feigenholtz,2023-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Postponed - Special Committee on Criminal Law and Public Safety,2023-02-23,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Revenue,2024-01-24,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Assigned to Revenue,2024-01-24,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve McClure,2024-03-01,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Judiciary; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Insurance; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Postponed - Education,2024-02-21,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-03-06,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-01-24,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Assigned to Labor,2023-02-21,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Local Government; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jason Plummer,2023-02-21,['amendment-introduction'],IL,103rd +Do Pass Judiciary; 009-000-000,2024-02-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Education; 013-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-02-23,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Licensed Activities; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Health and Human Services; 013-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2023-03-02,['amendment-introduction'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-03,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2024-02-28,['amendment-introduction'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jason Plummer,2024-03-05,['amendment-introduction'],IL,103rd +Do Pass Licensed Activities; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Arrived in House,2023-05-26,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-03-02,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass Labor; 009-004-000,2024-02-07,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2024-03-13,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-02-16,[],IL,103rd +Do Pass Judiciary; 007-001-000,2023-03-08,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-02-23,[],IL,103rd +Do Pass Environment and Conservation; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Do Pass Behavioral and Mental Health; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-01-31,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-01-19,[],IL,103rd +Assigned to Transportation,2024-01-31,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass Judiciary; 009-000-000,2024-02-07,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-08,[],IL,103rd +Do Pass Local Government; 010-000-000,2023-03-09,['committee-passage'],IL,103rd +Postponed - Judiciary,2023-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-23,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Postponed - Insurance,2024-03-06,[],IL,103rd +Do Pass Executive; 011-000-000,2023-02-23,['committee-passage'],IL,103rd +Do Pass State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-05-23,[],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Postponed - State Government,2024-03-07,[],IL,103rd +Postponed - Environment and Conservation,2024-02-08,[],IL,103rd +Assigned to Appropriations,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Licensed Activities,2023-02-14,['referral-committee'],IL,103rd +Moved to Suspend Rule Sen. Omar Aquino; 3-6(a),2024-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2023-02-28,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-03-06,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-02-23,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Correctional Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Do Pass Revenue; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 009-000-000,2024-03-20,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Education; 013-000-000,2023-02-22,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-02-01,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-03-05,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-02-09,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2024-02-20,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Do Pass Executive; 012-000-000,2024-02-21,['committee-passage'],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Assigned to Environment and Conservation,2024-01-31,['referral-committee'],IL,103rd +Do Pass Judiciary; 009-000-000,2024-02-21,['committee-passage'],IL,103rd +Do Pass Health and Human Services; 011-000-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass Health and Human Services; 009-000-000,2024-03-06,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +To Police Subcommittee,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-06,['amendment-introduction'],IL,103rd +Postponed - Licensed Activities,2024-03-07,[],IL,103rd +Do Pass Revenue; 010-000-000,2023-02-23,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 007-000-000,2024-03-07,['committee-passage'],IL,103rd +Do Pass Agriculture; 013-000-000,2024-03-07,['committee-passage'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass Executive; 007-003-000,2024-03-07,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Assigned to Education,2023-02-14,['referral-committee'],IL,103rd +Resolution Adopted,2023-11-07,['passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-11-02,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2023-02-21,['amendment-introduction'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Postponed - Education,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2024-04-01,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2023-03-02,['amendment-introduction'],IL,103rd +Do Pass Senate Special Committee on Pensions; 011-000-000,2023-02-22,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2023-03-03,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2024-03-08,['amendment-introduction'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2024-03-15,['amendment-introduction'],IL,103rd +Do Pass Higher Education; 011-000-000,2024-03-06,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2023-03-02,[],IL,103rd +Resolution Adopted,2024-02-06,['passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2023-02-23,['amendment-introduction'],IL,103rd +Do Pass Labor; 012-003-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Energy and Public Utilities; 013-000-000,2024-03-14,['committee-passage'],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 007-001-003,2024-04-02,['committee-passage'],IL,103rd +Do Pass Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 12, 2024",2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-01-31,[],IL,103rd +Do Pass / Short Debate Economic Opportunity & Equity Committee; 005-003-000,2023-03-08,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-04-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-05,[],IL,103rd +Do Pass Agriculture; 012-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Financial Institutions,2024-04-16,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-12-07,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-03-03,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2024-02-02,[],IL,103rd +Do Pass Higher Education; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-02-16,[],IL,103rd +Postponed - Local Government,2024-03-07,[],IL,103rd +Resolution Adopted; 057-000-000,2023-05-24,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2024-02-22,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-10-24,[],IL,103rd +Postponed - State Government,2024-02-21,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 026-000-000,2024-03-20,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-06-25,[],IL,103rd +Do Pass State Government; 009-000-000,2023-02-23,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 9, 2024",2024-05-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-02-17,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 22, 2024",2024-02-21,[],IL,103rd +Do Pass Environment and Conservation; 007-002-000,2024-03-07,['committee-passage'],IL,103rd +Be Adopted Education; 011-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Do Pass Judiciary; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass Public Health; 005-000-000,2023-02-22,['committee-passage'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-02,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Paul Faraci,2023-03-03,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-06-24,[],IL,103rd +Sponsor Removed Sen. Julie A. Morrison,2024-02-16,[],IL,103rd +Postponed - Licensed Activities,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-07,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-03-06,[],IL,103rd +Do Pass Public Health; 005-003-000,2023-03-08,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2024-03-13,[],IL,103rd +Do Pass Health and Human Services; 012-000-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 7, 2024",2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-02-08,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 7, 2024",2024-05-02,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass Education; 013-000-000,2023-02-22,['committee-passage'],IL,103rd +Do Pass Local Government; 009-000-000,2023-02-23,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 23, 2023",2023-03-22,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Behavioral and Mental Health; 007-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 014-000-000,2024-03-12,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sharon Chung,2024-03-13,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-02,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-21,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 028-000-000,2023-03-08,['committee-passage'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-01-31,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2023-03-07,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Matt Hanson,2023-03-07,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2023-03-06,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Suzanne M. Ness,2023-03-07,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2023-02-22,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-28,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 008-004-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Debbie Meyers-Martin,2023-02-28,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 014-000-000,2024-03-12,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-02-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Bradley Fritts,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-05-28,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dan Caulkins,2023-03-08,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2023-03-02,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2024-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-02-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-03-08,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-08,['committee-passage'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Margaret Croke,2024-01-24,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2023-03-03,['amendment-introduction'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +To Civil Procedure & Tort Liability subcommittee,2023-03-01,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-09,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 010-005-000,2023-03-07,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-03-01,[],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-05-24,[],IL,103rd +Referred to Rules Committee,2024-04-24,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-28,[],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 009-003-000,2023-03-07,['committee-passage'],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-02-16,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 005-003-000,2023-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-02-21,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lilian Jiménez,2023-03-06,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 006-003-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-02,[],IL,103rd +Assigned to Counties & Townships Committee,2023-02-23,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2024-04-01,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-04-25,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 013-000-000,2023-03-07,['committee-passage'],IL,103rd +Assigned to Insurance Committee,2024-01-31,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Chief Sponsor Changed to Rep. Michael J. Kelly,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-07-21,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-02-23,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-03-02,['amendment-introduction'],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Assigned to Executive Committee,2023-02-21,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2023-02-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Remove Chief Co-Sponsor Rep. Steven Reick,2023-05-18,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-11-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-02-16,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2023-01-31,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-02-08,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 023-002-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-05-09,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-06,[],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 012-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2024-02-28,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-16,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-010-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-02-15,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-01-16,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 016-012-000,2023-03-07,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 008-003-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Insurance Committee; 009-005-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-02-20,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Assigned to Police & Fire Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-003-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Restorative Justice,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 016-000-000",2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-02,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-02-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Sanalitro,2024-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-003-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 028-000-000,2024-02-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2023-03-07,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2024-04-01,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-03-02,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 007-004-000,2024-04-04,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2024-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-04,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Public Health Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-02-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-010-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 011-000-000,2024-03-22,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 027-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-02-20,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Restorative Justice,2024-03-05,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Insurance Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2023-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-07,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 006-003-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 019-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Executive Committee,2023-02-15,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2024-03-04,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-010-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2023-03-06,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2024-03-05,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-03-06,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2024-02-28,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Abdelnasser Rashid,2024-04-02,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2024-03-13,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-02,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Chief Sponsor Changed to Rep. Sharon Chung,2023-03-02,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Paul Jacobs,2023-03-02,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2023-03-01,['amendment-introduction'],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Criminal Administration and Enforcement Subcommittee,2023-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-008-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +"Do Pass / Short Debate Small Business, Tech Innovation, and Entrepreneurship Committee; 006-004-000",2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-08-18,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2023-03-02,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Public Utilities Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Immigration & Human Rights Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-23,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Economic Opportunity & Equity Committee; 005-003-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Labor & Commerce Committee,2023-03-14,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-02,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2023-02-21,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-02-24,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Moved to Suspend Rule 21 Rep. Robyn Gabel,2023-02-28,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-02-21,['amendment-introduction'],IL,103rd +To Business & Industry Innovation Subcommittee,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-02-16,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Matt Hanson,2024-03-13,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 010-005-000,2023-03-07,['committee-passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 007-000-000,2023-02-23,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2024-03-26,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 008-004-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-03-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-03-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2023-03-07,[],IL,103rd +Assigned to Counties & Townships Committee,2023-02-23,['referral-committee'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-001-000,2023-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-03-04,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2023-03-01,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Assigned to Human Services Committee,2024-03-12,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-02,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-03-06,[],IL,103rd +Chief Sponsor Changed to Rep. Fred Crespo,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-02,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Restorative Justice; 008-000-000,2024-04-04,['committee-passage'],IL,103rd +Do Pass / Short Debate Human Services Committee; 008-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-03-01,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2024-03-21,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2024-03-11,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-03-07,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-28,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-02,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-23,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-02-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2024-03-13,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-04,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Gregg Johnson,2024-04-01,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2023-03-01,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-001-000",2024-03-06,['committee-passage'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted Public Health Committee; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-05-04,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Judiciary,2023-01-31,['referral-committee'],IL,103rd +Do Pass Revenue; 010-000-000,2023-02-23,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Travis Weaver,2023-02-24,['amendment-introduction'],IL,103rd +Postponed - Executive,2023-02-23,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2024-03-08,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2023-02-28,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 007-002-000,2023-03-02,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-21,[],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 022-000-000,2023-02-28,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-02-09,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2023-03-02,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-003-000,2023-03-09,['committee-passage'],IL,103rd +"Committee Deadline Extended-Rule 9(b) April 28, 2023",2023-03-13,[],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Postponed - Judiciary,2023-02-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2023-02-08,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 017-010-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-05-03,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 009-005-000,2023-03-07,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-02-22,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-02-23,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Moved to Suspend Rule Sen. Bill Cunningham; 3-6(a),2023-10-26,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 010-004-000,2023-02-28,['committee-passage'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Subcommittee on Special Issues,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-02-21,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Postponed - Energy and Public Utilities,2023-02-23,[],IL,103rd +To Subcommittee on Firearms,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 2, 2023",2023-04-27,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2023-03-02,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2024-02-21,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 021-000-000,2024-03-14,['committee-passage'],IL,103rd +Resolution Adopted,2023-03-22,['passage'],IL,103rd +To Subcommittee on Ethics,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-15,[],IL,103rd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-03,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Postponed - Energy and Public Utilities,2023-03-09,[],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 018-000-000",2024-04-02,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass Agriculture; 012-000-000,2024-03-07,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2024-03-27,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 012-000-001,2024-03-12,['committee-passage'],IL,103rd +Assigned to Education,2024-02-14,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-02-28,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 23, 2023",2023-03-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-21,[],IL,103rd +Postponed - Local Government,2023-03-09,[],IL,103rd +Postponed - Executive,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-02-23,[],IL,103rd +Be Adopted State Government; 009-000-000,2023-05-18,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-07,[],IL,103rd +Postponed - Judiciary,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2024-03-05,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-02-14,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-02-22,[],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 016-000-000,2024-04-02,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-02-27,['amendment-introduction'],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dan Swanson,2024-03-20,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-02-27,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-02-22,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 24, 2023",2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-02-15,[],IL,103rd +Postponed - Education,2023-03-08,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Postponed - Public Health,2024-02-21,[],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2024-02-29,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-02-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2024-02-07,[],IL,103rd +Postponed - Education,2023-03-08,[],IL,103rd +Postponed - Behavioral and Mental Health,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Postponed - State Government,2023-03-09,[],IL,103rd +Postponed - Revenue,2023-03-09,[],IL,103rd +Postponed - Senate Special Committee on Pensions,2023-02-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-02-01,[],IL,103rd +Postponed - Health and Human Services,2024-02-21,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Resolution Adopted; 055-000-000,2024-05-25,['passage'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2023-02-21,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-03-07,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Revenue; 008-000-000,2024-02-21,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-25,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-02-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-01-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2024-02-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-02-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-05-18,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-11,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-03,[],IL,103rd +Re-assigned to Mental Health & Addiction Committee,2023-03-02,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-03-06,[],IL,103rd +Assigned to Environment and Conservation,2023-03-21,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Chief Sponsor Changed to Rep. Lakesia Collins,2023-03-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Motion Do Pass - Lost Insurance Committee; 005-008-000,2023-03-09,['committee-failure'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-02,[],IL,103rd +Assigned to Public Health,2024-02-06,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2023-02-09,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-03-07,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Executive Committee,2023-02-23,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-02,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Public Utilities Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Re-assigned to Judiciary - Civil Committee,2023-03-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-11-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2024-03-06,[],IL,103rd +To Special Issues Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Removed Co-Sponsor Rep. Sharon Chung,2024-02-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-05-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. John Egofske,2023-05-02,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-27,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Licensed Activities; 005-000-000,2024-02-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Utilities Subcommittee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Removed Co-Sponsor Rep. Maura Hirschauer,2023-10-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-02-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-05-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Removed Co-Sponsor Rep. Joe C. Sosnowski,2024-01-24,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-29,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 23, 2023",2023-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 23, 2023",2023-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted; 045-000-000,2023-01-25,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Revenue; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Restorative Justice,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2023-03-02,['amendment-introduction'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-02-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Violence Reduction & Prevention Subcommittee,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-23,[],IL,103rd +Assigned to Public Utilities Committee,2023-02-21,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-04-27,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2023-03-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2023-02-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-03-07,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +To Subcommittee on State Gov. Special Issues,2023-02-23,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-02-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2024-02-07,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2023-03-02,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-29,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Family Law & Probate Subcommittee,2023-03-01,[],IL,103rd +To Subcommittee on CLEAR Compliance,2024-03-07,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-02-27,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-29,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Postponed - Health and Human Services,2023-02-15,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Resolution Adopted 074-035-000,2023-02-01,['passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-19,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +To Subcommittee on Special Issues,2023-02-22,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-15,[],IL,103rd +Postponed - Health and Human Services,2023-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Prescription Drug Affordability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-02-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-19,[],IL,103rd +To Labor Subcommittee on Employment Security,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Special Issues on Criminal Law & Public Safety,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-22,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-17,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-19,[],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-05-25,[],IL,103rd +Postponed - Insurance,2023-02-08,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Arrived in House,2024-04-18,['introduction'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Executive Subcommittee on Special Issues,2023-02-23,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-02-14,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-01-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - State Government,2023-03-09,[],IL,103rd +Recommends Be Adopted Immigration & Human Rights Committee; 008-004-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Public Health,2024-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Arrived in House,2024-05-09,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-02-01,[],IL,103rd +To Subcommittee on CLEAR Compliance,2023-02-23,[],IL,103rd +To Clean Energy Subcommittee,2024-03-06,[],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Arrived in House,2024-05-02,['introduction'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-01-31,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-05-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2023-02-23,[],IL,103rd +To Subcommittee on Procurement,2023-02-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Postponed - Health and Human Services,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2023-03-02,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Lakesia Collins,2024-03-01,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2024-02-20,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Revenue,2024-01-31,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2024-03-07,['amendment-introduction'],IL,103rd +Postponed - Local Government,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-02-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on CLEAR Compliance,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-05,['referral-committee'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-03-09,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Postponed - Higher Education,2024-03-13,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-05,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Judiciary,2023-03-08,[],IL,103rd +Be Adopted Public Health; 005-002-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-04-03,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-03-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2024-03-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Andrew S. Chesney,2024-05-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Be Adopted Environment and Conservation; 006-003-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2024-02-22,[],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-14,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Ethics & Elections,2024-02-14,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2024-02-22,[],IL,103rd +Resolution Adopted,2024-05-21,['passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2024-02-20,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-05-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Postponed - Education,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Clean Energy Subcommittee,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-02,[],IL,103rd +To Occupational Licenses Subcommittee,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Postponed - Education,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-03-07,['amendment-introduction'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-07,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Agriculture; 013-000-000,2024-03-07,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2023-03-02,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 009-000-000,2024-03-14,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-28,[],IL,103rd +Assigned to Ethics & Elections,2024-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Steven Reick,2023-03-08,['amendment-introduction'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-03-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-27,[],IL,103rd +To Civil Procedure & Tort Liability subcommittee,2024-03-13,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-03-16,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-02-22,['passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy L. Grant,2024-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on CLEAR Compliance,2024-03-07,[],IL,103rd +To Business & Industry Innovation Subcommittee,2023-03-02,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-15,[],IL,103rd +To Civil Procedure & Tort Liability subcommittee,2024-03-13,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Fred Crespo,2023-03-06,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-02-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2023-02-27,['amendment-introduction'],IL,103rd +Resolution Adopted,2023-03-09,['passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Criminal Administration and Enforcement Subcommittee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Sponsor Removed Sen. Meg Loughran Cappel,2023-02-23,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +To Business & Industry Innovation Subcommittee,2024-03-06,[],IL,103rd +To Family Preservation Subcommittee,2023-03-07,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Removed Co-Sponsor Rep. Dave Vella,2024-02-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Correctional Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2024-02-20,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-03-06,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2024-03-05,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Firearms,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-02-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 23, 2023",2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-01,[],IL,103rd +Postponed - Licensed Activities,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-04,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +To Local Government Subcommittee,2024-03-12,[],IL,103rd +Postponed - Local Government,2024-03-07,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2024-02-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Subcommittee on CLEAR Compliance,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Subcommittee on Privacy,2024-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Subcommittee on Special Issues,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Environment and Conservation; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-07,[],IL,103rd +To Family Law & Probate Subcommittee,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Insurance,2024-03-13,[],IL,103rd +Postponed - State Government,2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2024-03-08,['amendment-introduction'],IL,103rd +To Subcommittee on CLEAR Compliance,2024-03-07,[],IL,103rd +To Higher Ed-Scholarship & Tuition Assistance Subcommittee,2024-03-20,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-03-08,['amendment-introduction'],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-02-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2024-03-21,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +To Subcommittee on Firearms,2023-03-09,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +To Wage Policy Study Subcommittee,2024-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Don Harmon,2024-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Subcommittee on Special Issues,2024-02-21,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-02-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Subcommittee on Special Issues,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +To Subcommittee on Special Issues,2024-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Sponsor Removed Sen. Adriane Johnson,2024-01-26,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Local Government Subcommittee,2024-03-13,[],IL,103rd +Referred to Assignments,2023-02-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Occupational Licenses Subcommittee,2024-03-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2024-02-14,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-02-22,[],IL,103rd +To Subcommittee on CLEAR Compliance,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Postponed - Higher Education,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-02-20,[],IL,103rd +Postponed - Health and Human Services,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-09-09,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Family Law & Probate Subcommittee,2023-03-01,[],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +To Subcommittee on Elections,2023-02-16,[],IL,103rd +Assigned to Insurance,2024-01-24,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-08-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Postponed - Insurance,2024-03-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Resolution Adopted,2023-03-08,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-07-01,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-07-11,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-06-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Constitutional Law Subcommittee,2024-03-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Executive,2023-02-14,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-05-09,[],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-02-22,[],IL,103rd +Assigned to Housing,2024-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Be Adopted Transportation; 011-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +To Civil Procedure & Tort Liability subcommittee,2024-03-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2024-03-20,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2024-03-07,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2024-04-18,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-21,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tracy Katz Muhl,2024-04-01,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2023-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-15,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Procurement,2023-02-23,[],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-01-29,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Assigned to State Government,2023-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-18,[],IL,103rd +To Subcommittee on Firearms,2023-03-09,[],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-03-05,[],IL,103rd +Postponed - Transportation,2023-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2024-03-05,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Insurance,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-02,[],IL,103rd +To Subcommittee on Firearms,2023-02-23,[],IL,103rd +To Subcommittee on Elections,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-02-07,[],IL,103rd +To Executive Subcommittee on Special Issues,2023-03-03,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2024-02-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-02-22,[],IL,103rd +Chief Sponsor Changed to Sen. Jil Tracy,2024-01-31,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-05-17,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2024-02-29,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2023-09-07,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-04-03,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2024-03-11,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-02-14,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Judiciary,2023-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-02-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 013-000-000,2024-03-05,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +Chief Sponsor Changed to Rep. Justin Slaughter,2023-02-28,[],IL,103rd +Postponed - Labor,2023-03-08,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2024-03-11,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2023-10-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-03,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2023-02-23,[],IL,103rd +Assigned to Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +To Subcommittee on Government Operations,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Housing; 011-003-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-03-06,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Education; 013-000-000,2024-02-07,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-02-23,[],IL,103rd +Approved for Consideration Assignments,2023-05-04,[],IL,103rd +Postponed - Health and Human Services,2023-03-08,[],IL,103rd +To Subcommittee on Elections,2023-03-09,[],IL,103rd +To Subcommittee on Elections,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Elections,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-03-13,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2024-02-06,['amendment-introduction'],IL,103rd +To Executive Subcommittee on Special Issues,2023-03-09,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-02-20,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2024-02-20,['amendment-introduction'],IL,103rd +To Subcommittee on Liquor,2024-03-07,[],IL,103rd +"To Subcommittee on Gaming, Wagering, and Racing",2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Postponed - Executive,2024-03-07,[],IL,103rd +Assigned to Appropriations-General Services Committee,2024-02-29,['referral-committee'],IL,103rd +To Subcommittee on End of Life Issues,2024-03-07,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +To Subcommittee on Cannabis,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +To Subcommittee on Elections,2024-03-07,[],IL,103rd +To Subcommittee on Liquor,2024-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-02-01,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2024-03-07,['amendment-introduction'],IL,103rd +To Subcommittee on End of Life Issues,2024-03-07,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +To Subcommittee on Government Operations,2024-02-21,[],IL,103rd +To Subcommittee on Procurement,2024-03-07,[],IL,103rd +Postponed - Judiciary,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-30,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-28,[],IL,103rd +Assigned to Appropriations-General Services Committee,2024-03-12,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-12,[],IL,103rd +Assigned to Executive,2024-04-09,['referral-committee'],IL,103rd +To Subcommittee on Liquor,2024-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-03-04,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2024-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-10-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Tracy Katz Muhl,2024-05-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-01-22,[],IL,103rd +"To Subcommittee on Gaming, Wagering, and Racing",2024-03-07,[],IL,103rd +To Subcommittee on Tobacco,2024-03-07,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +To Subcommittee on Procurement,2024-03-07,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +To Subcommittee on Government Operations,2024-03-07,[],IL,103rd +To Subcommittee on End of Life Issues,2024-03-07,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2024-04-11,[],IL,103rd +To Subcommittee on Procurement,2024-03-07,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-24,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-03-05,['referral-committee'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-04-11,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +To Subcommittee on Procurement,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-02-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2024-03-05,['amendment-introduction'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2024-03-08,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2024-02-26,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-02-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-02-20,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-16,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2024-05-08,[],IL,103rd +Postponed - Health and Human Services,2024-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-09,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-04,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +To Subcommittee on Liquor,2024-03-07,[],IL,103rd +To Subcommittee on Government Operations,2024-03-07,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +To Subcommittee on Procurement,2024-03-07,[],IL,103rd +To Subcommittee on Procurement,2024-03-07,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +To Subcommittee on CLEAR Compliance,2023-02-23,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +To Subcommittee on Paid Leave,2024-03-07,[],IL,103rd +To Subcommittee on Liquor,2024-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-01-03,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2024-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Re-assigned to Appropriations-Higher Education Committee,2024-03-12,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-02-13,[],IL,103rd +To Subcommittee on Procurement,2024-03-07,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Assigned to Executive,2024-04-09,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-16,[],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2024-02-13,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +To Subcommittee on Property,2024-02-21,[],IL,103rd +Assigned to State Government Administration Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2024-01-31,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-07,[],IL,103rd +Postponed - Public Health,2024-03-06,[],IL,103rd +To Subcommittee on Procurement,2024-03-07,[],IL,103rd +To Subcommittee on CLEAR Compliance,2024-03-07,[],IL,103rd +To Subcommittee on Cannabis,2024-03-07,[],IL,103rd +To Subcommittee on Elections,2024-03-07,[],IL,103rd +To Subcommittee on Procurement,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +To Subcommittee on Procurement,2024-03-07,[],IL,103rd +To Subcommittee on Cannabis,2024-03-07,[],IL,103rd +"To Subcommittee on Gaming, Wagering, and Racing",2024-03-07,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +To Subcommittee on Cannabis,2024-03-07,[],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Assigned to Executive,2024-02-20,['referral-committee'],IL,103rd +To Subcommittee on Elections,2024-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2023-03-23,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 11, 2024",2024-04-10,[],IL,103rd +To Subcommittee on Elections,2024-03-07,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2024-02-29,['amendment-introduction'],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-02-23,[],IL,103rd +To Subcommittee on Elections,2024-03-07,[],IL,103rd +To Subcommittee on Elections,2024-03-07,[],IL,103rd +Do Pass Education; 010-000-000,2024-03-06,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-04-03,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dave Syverson,2024-02-15,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2023-02-23,[],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2024-03-01,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 012-000-000,2024-04-03,['committee-passage'],IL,103rd +To Subcommittee on Cannabis,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Omar Aquino,2024-02-28,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 011-001-000,2024-03-06,['committee-passage'],IL,103rd +Postponed - Health and Human Services,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2024-03-04,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 11, 2024",2024-04-10,[],IL,103rd +To Subcommittee on Paid Leave,2024-03-07,[],IL,103rd +To Executive Subcommittee on Special Issues,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-02,[],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Postponed - Special Committee on Criminal Law and Public Safety,2024-03-14,[],IL,103rd +Do Pass Revenue; 008-000-000,2024-02-21,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-29,[],IL,103rd +Do Pass State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2023-03-03,[],IL,103rd +To Subcommittee on Elections,2023-03-09,[],IL,103rd +Assigned to Behavioral and Mental Health,2024-03-20,['referral-committee'],IL,103rd +To Subcommittee on Ethics,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-02-20,[],IL,103rd +Do Pass Insurance; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +To Subcommittee on Cannabis,2023-03-09,[],IL,103rd +Assigned to Judiciary,2023-02-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-02-16,[],IL,103rd +Assigned to Energy and Public Utilities,2024-03-12,['referral-committee'],IL,103rd +Do Pass Human Rights; 005-002-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Resolution Adopted,2024-05-01,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-02-28,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-02-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Subcommittee on Procurement,2024-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2023-03-01,[],IL,103rd +Do Pass Revenue; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 021-007-000,2024-02-21,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2024-03-04,['amendment-introduction'],IL,103rd +To Subcommittee on Elections,2024-02-21,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-07,['referral-committee'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +To Subcommittee on Cannabis,2024-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-03-03,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2024-02-28,[],IL,103rd +"To Subcommittee on Gaming, Wagering, and Racing",2024-03-07,[],IL,103rd +Do Pass Local Government; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2023-02-24,[],IL,103rd +Do Pass Revenue; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Executive,2024-03-12,['referral-committee'],IL,103rd +Assigned to Appropriations,2024-02-06,['referral-committee'],IL,103rd +Postponed - Labor,2024-02-07,[],IL,103rd +To Subcommittee on Elections,2024-02-21,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Be Adopted Local Government; 008-000-000,2024-05-22,['committee-passage-favorable'],IL,103rd +Assigned to Revenue,2024-02-28,['referral-committee'],IL,103rd +Do Pass Judiciary; 006-000-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass Insurance; 010-000-000,2024-03-06,['committee-passage'],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-07,['referral-committee'],IL,103rd +Be Adopted Health and Human Services; 011-000-000,2024-05-01,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2024-02-15,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-03-02,['amendment-introduction'],IL,103rd +To Job Growth & Workforce Development Subcommittee,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-03,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve McClure,2024-03-05,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-08-27,[],IL,103rd +Postponed - Local Government,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-02-28,[],IL,103rd +Postponed - Transportation,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2023-02-23,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-02-20,[],IL,103rd +Do Pass Education; 012-000-000,2023-03-08,['committee-passage'],IL,103rd +Motion to Suspend Rule 21 - Prevailed 068-038-000,2024-05-20,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-03,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2023-03-07,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2024-03-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-02-07,[],IL,103rd +To Subcommittee on Elections,2024-03-14,[],IL,103rd +To Executive Subcommittee on Special Issues,2024-03-14,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2024-03-07,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-02-05,[],IL,103rd +Do Pass State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2024-02-16,['amendment-introduction'],IL,103rd +To Subcommittee on Elections,2023-02-23,[],IL,103rd +Do Pass Judiciary; 005-001-000,2024-03-06,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Javier L. Cervantes,2023-03-03,['amendment-introduction'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-20,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Sanalitro,2024-02-02,[],IL,103rd +Do Pass Judiciary; 009-000-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +To Subcommittee on Government Operations,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-03-05,[],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 020-000-000,2024-03-12,['committee-passage'],IL,103rd +Do Pass / Short Debate Housing; 011-006-000,2024-03-06,['committee-passage'],IL,103rd +Postponed - Higher Education,2024-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-20,[],IL,103rd +Do Pass Higher Education; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Postponed - Financial Institutions,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2024-03-07,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Health and Human Services; 013-000-000,2024-03-06,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 11, 2024",2024-04-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Harry Benton,2024-03-07,['amendment-introduction'],IL,103rd +Assigned to Education,2024-02-28,['referral-committee'],IL,103rd +To Subcommittee on Paid Leave,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +"To Subcommittee on Gaming, Wagering, and Racing",2024-03-07,[],IL,103rd +Do Pass Licensed Activities; 008-000-000,2024-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-010-000,2023-03-07,['committee-passage'],IL,103rd +Moved to Suspend Rule Sen. Bill Cunningham; 3-6(a),2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michael J. Kelly,2024-03-06,['amendment-introduction'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-27,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2024-02-22,[],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Do Pass Higher Education; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Assigned to State Government,2024-02-28,['referral-committee'],IL,103rd +Do Pass Local Government; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Insurance Committee,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Sponsor Removed Sen. Julie A. Morrison,2024-02-16,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2024-03-13,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Assigned to Executive,2024-02-06,['referral-committee'],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Do Pass Local Government; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-05-22,[],IL,103rd +Do Pass Revenue; 008-000-000,2024-02-21,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 7, 2024",2024-05-02,[],IL,103rd +To Subcommittee on Procurement,2024-02-08,[],IL,103rd +Do Pass Revenue; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Subcommittee on Government Operations,2024-02-08,[],IL,103rd +Do Pass Public Health; 007-001-000,2024-03-06,['committee-passage'],IL,103rd +Postponed - Health and Human Services,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-02-07,[],IL,103rd +To Subcommittee on Elections,2024-02-21,[],IL,103rd +Do Pass Environment and Conservation; 007-001-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 013-000-000,2024-03-05,['committee-passage'],IL,103rd +To Civil Procedure & Tort Liability subcommittee,2023-02-14,[],IL,103rd +Do Pass Higher Education; 011-000-000,2024-03-06,['committee-passage'],IL,103rd +Moved to Suspend Rule Sen. Kimberly A. Lightford; 3-6(a),2024-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-03-07,[],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-15,['referral-committee'],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 009-000-000,2023-03-10,['committee-passage'],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Do Pass Executive; 012-000-000,2024-03-14,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Agriculture; 012-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2024-02-29,['amendment-introduction'],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Resolution Adopted,2024-05-08,['passage'],IL,103rd +Do Pass State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +To Subcommittee on Tobacco,2024-03-07,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 010-000-000,2024-03-07,['committee-passage'],IL,103rd +To Subcommittee on Elections,2024-02-08,[],IL,103rd +To Subcommittee on Government Operations,2024-02-21,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2024-03-07,['amendment-introduction'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-02-21,[],IL,103rd +To Subcommittee on Procurement,2024-02-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. John M. Cabello,2024-03-14,['amendment-introduction'],IL,103rd +To Subcommittee on Paid Leave,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-03,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-02-01,[],IL,103rd +Do Pass Local Government; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Education; 013-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 010-004-000,2024-03-13,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2024-03-01,['amendment-introduction'],IL,103rd +Moved to Suspend Rule Sen. Linda Holmes; 3-6(a),2023-03-31,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +To Subcommittee on Ethics,2023-02-16,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2024-02-21,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2024-03-04,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2024-03-12,[],IL,103rd +Be Adopted Human Rights; 005-000-000,2024-02-08,['committee-passage-favorable'],IL,103rd +To Subcommittee on Cannabis,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2024-02-21,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Jil Tracy,2023-02-21,[],IL,103rd +Referred to Assignments,2024-01-19,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Postponed - Health and Human Services,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-03-02,['amendment-introduction'],IL,103rd +To Subcommittee on Liquor,2024-03-07,[],IL,103rd +Do Pass Judiciary; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2024-03-08,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2024-03-11,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 007-000-000,2024-03-14,['committee-passage'],IL,103rd +To Subcommittee on Elections,2023-02-23,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 010-000-000,2024-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-03-04,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 006-003-000,2024-03-12,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-04,[],IL,103rd +Do Pass Revenue; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +To Subcommittee on Government Operations,2024-02-21,[],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +To Subcommittee on Ethics,2023-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2024-02-20,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-06-05,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-07,[],IL,103rd +To Subcommittee on Elections,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-06,['amendment-introduction'],IL,103rd +Assigned to Ethics & Elections,2023-02-21,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-05-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Judiciary; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Environment and Conservation; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-24,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-01-24,[],IL,103rd +To Subcommittee on Elections,2024-03-07,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2023-02-28,['amendment-introduction'],IL,103rd +To Subcommittee on Ethics,2023-02-23,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 014-000-000,2024-03-13,['committee-passage'],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-12,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-02-07,[],IL,103rd +Assigned to Agriculture,2024-02-20,['referral-committee'],IL,103rd +Postponed - Local Government,2024-03-07,[],IL,103rd +To Subcommittee on Elections,2024-02-08,[],IL,103rd +Assigned to Energy & Environment Committee,2024-01-31,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Executive,2024-01-31,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +To Subcommittee on Government Operations,2024-02-21,[],IL,103rd +Do Pass Revenue; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-02-02,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-02-20,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2024-03-12,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-03,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-08,[],IL,103rd +Postponed - Local Government,2024-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2024-01-04,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-02,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2023-03-06,['amendment-introduction'],IL,103rd +To Subcommittee on Ethics,2023-02-16,[],IL,103rd +Do Pass State Government; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Do Pass Agriculture; 012-000-000,2024-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Environment and Conservation,2023-02-28,['referral-committee'],IL,103rd +To Subcommittee on Liquor,2024-02-21,[],IL,103rd +To Subcommittee on CLEAR Compliance,2023-03-10,[],IL,103rd +Assigned to Health and Human Services,2024-02-28,['referral-committee'],IL,103rd +Postponed - Human Rights,2024-03-07,[],IL,103rd +Removed Co-Sponsor Rep. Dagmara Avelar,2024-02-05,[],IL,103rd +Do Pass Executive; 012-000-000,2024-03-14,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-05-01,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 11, 2024",2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2024-03-11,['amendment-introduction'],IL,103rd +Do Pass Transportation; 018-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 006-003-000,2024-03-14,['committee-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2024-03-05,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-02-28,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Win Stoller,2024-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Public Health; 007-000-000,2024-03-06,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2023-03-03,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Harry Benton,2024-03-06,['amendment-introduction'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-18,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Subcommittee on Procurement,2024-02-21,[],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-02-21,[],IL,103rd +To Constitutional Amendments,2024-03-07,[],IL,103rd +Do Pass Judiciary; 006-001-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass Insurance; 008-000-000,2024-03-13,['committee-passage'],IL,103rd +Do Pass Education; 011-000-000,2024-02-21,['committee-passage'],IL,103rd +Assigned to Executive,2024-03-20,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-02-05,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-21,[],IL,103rd +To Subcommittee on Government Operations,2023-02-16,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-02-24,[],IL,103rd +Chief Sponsor Changed to Rep. Kelly M. Cassidy,2024-03-12,[],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2024-02-28,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2024-05-22,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2024-03-07,[],IL,103rd +Do Pass Higher Education; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Public Health; 007-000-000,2024-03-06,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-03-04,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2024-03-08,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 22, 2024",2024-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2024-03-04,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-03,['amendment-introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-29,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-02-28,[],IL,103rd +Assigned to Education,2023-02-28,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-03,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-02-13,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Public Health; 006-002-000,2024-03-13,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Hoan Huynh,2024-04-02,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-27,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 12, 2024",2024-04-11,[],IL,103rd +Re-assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-16,[],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +To Subcommittee on Elections,2023-02-16,[],IL,103rd +Do Pass Agriculture; 012-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Revenue; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2024-02-22,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2023-03-03,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-11-09,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-01-30,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Subcommittee on Elections,2024-02-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-000-000,2024-03-06,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass Judiciary; 005-003-000,2023-03-08,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Do Pass / Short Debate Gaming Committee; 010-000-000,2024-04-03,['committee-passage'],IL,103rd +Do Pass Revenue; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-03-05,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2024-03-04,['amendment-introduction'],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +To Subcommittee on CLEAR Compliance,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Postponed - Executive,2024-02-21,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-03-21,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-02-22,[],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2023-02-10,[],IL,103rd +To Subcommittee on Special Issues,2024-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Assigned to Revenue,2023-02-07,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Labor,2024-02-21,[],IL,103rd +Postponed - Licensed Activities,2024-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-02-22,[],IL,103rd +To Subcommittee on Special Issues on Criminal Law & Public Safety,2023-02-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Postponed - Special Committee on Criminal Law and Public Safety,2024-02-07,[],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Do Pass / Short Debate Cities & Villages Committee; 011-005-000,2023-02-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Public Health,2023-02-14,['referral-committee'],IL,103rd +To Wage Policy Study Subcommittee,2024-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Pensions Special Issues,2023-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 014-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Special Issues,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-02-27,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Debbie Meyers-Martin,2024-03-14,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Approved for Consideration Assignments,2023-05-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Paul Jacobs,2023-02-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-27,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-01-30,[],IL,103rd +To Subcommittee on Ethics,2023-02-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Moved to Suspend Rule 21 Rep. Robyn Gabel,2023-02-28,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Be Adopted Education; 012-000-000,2023-03-29,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2024-03-07,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Judiciary; 006-003-000,2024-03-13,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 023-004-000,2023-02-15,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-03-25,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2024-03-06,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-02-14,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +To Insurance Main Subcommittee,2024-03-13,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Judiciary; 008-000-000,2024-02-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2023-03-06,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Privacy,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Firearms,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Insurance Main Subcommittee,2024-03-13,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-10,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-02-22,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-29,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Ethics,2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2024-03-11,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +"To Subcommittee on Gaming, Wagering, and Racing",2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Executive Subcommittee on Special Issues,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +To Subcommittee on Pensions Special Issues,2023-02-22,[],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +To Subcommittee on Elections,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-29,[],IL,103rd +To Wage Policy Study Subcommittee,2024-03-14,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-01-31,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2024-02-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Be Adopted Transportation; 011-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 014-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-01-11,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Revenue,2023-02-21,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 012-000-000,2024-03-13,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-02-15,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-01,[],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-02-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-28,[],IL,103rd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-02-28,[],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-02-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 007-001-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Chief Co-Sponsor Sen. Tom Bennett,2023-02-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Revenue,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 022-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Labor Subcommittee on Employment Security,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 008-001-000,2023-02-22,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2023-02-24,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-03-02,[],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +To Subcommittee on Ethics,2023-03-09,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Sex Offenses and Sex Offender Registration Subcommittee,2023-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-07,[],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-14,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-02-14,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Human Services Committee,2023-04-18,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 011-002-000,2024-03-06,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-02-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2024-03-18,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 006-003-000,2023-03-08,['committee-passage'],IL,103rd +Chief Sponsor Changed to Rep. Anna Moeller,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Insurance Committee; 015-000-000,2023-02-21,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Elections,2023-03-09,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-05,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Do Pass / Short Debate Cybersecurity, Data Analytics, & IT Committee; 009-004-000",2023-03-09,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +To Business & Industry Innovation Subcommittee,2024-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Be Adopted State Government; 009-000-000,2023-03-30,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 010-000-000,2024-03-07,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-02-21,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass Health and Human Services; 013-000-000,2024-02-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-02-14,[],IL,103rd +To Subcommittee on Procurement,2023-02-16,[],IL,103rd +Chief Sponsor Changed to Sen. Cristina H. Pacione-Zayas,2023-02-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2023-02-28,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-01-25,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Cities & Villages Committee,2024-03-05,['referral-committee'],IL,103rd +To Subcommittee on Property,2023-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Business & Industry Innovation Subcommittee,2024-02-22,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Chief Sponsor Changed to Rep. Dave Vella,2024-03-15,[],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +To Subcommittee on Elections,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-02-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-07,[],IL,103rd +Arrived in House,2023-02-16,['introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-04-19,['passage'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-23,[],IL,103rd +To Subcommittee on Government Operations,2023-02-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2024-03-15,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-02-17,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 012-003-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Civil Procedure & Tort Liability subcommittee,2024-03-13,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-02-14,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Energy and Public Utilities,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-01-25,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-04,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-21,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-04-03,[],IL,103rd +Sponsor Removed Sen. Adriane Johnson,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-23,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Privacy,2023-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Amy L. Grant,2024-02-15,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +To Executive Subcommittee on Special Issues,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2024-03-08,[],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Margaret Croke,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-10,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-01-31,['referral-committee'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Assigned to Gaming Committee,2024-03-05,['referral-committee'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 015-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-15,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-03-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Subcommittee on Elections,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 019-009-000,2023-02-15,['committee-passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-02-27,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Labor,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-01-11,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 18, 2023",2023-05-17,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-11-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2024-03-01,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Public Health,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2023-02-28,['amendment-introduction'],IL,103rd +Be Adopted State Government; 008-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2024-04-04,[],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-02-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-16,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 010-000-000,2024-03-22,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Judiciary,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-02-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-01-20,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +To Insurance Main Subcommittee,2024-03-13,[],IL,103rd +Resolution Adopted; 052-000-000,2023-01-12,['passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 30, 2023",2023-03-29,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2024-03-27,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Elections,2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-03-14,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Wage Policy Study Subcommittee,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-01-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 010-000-000,2023-02-22,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Elections,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-10-25,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-02-15,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-02-15,[],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-03-12,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2023-03-06,['amendment-introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Education,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Elections,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2023-02-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-02-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-03-28,[],IL,103rd +To Insurance Main Subcommittee,2024-03-13,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-02-22,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-04-26,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - State Government,2023-03-09,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 17, 2023",2023-05-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-16,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Education,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-01-19,[],IL,103rd +To Labor Subcommittee on Employment Security,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2024-04-18,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2023-03-03,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-01-24,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Insurance Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-17,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-02-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-02-22,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-02-02,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-04-11,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-25,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-02-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-11-09,[],IL,103rd +To Subcommittee on Government Operations,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-03,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-03-25,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Be Adopted Education; 012-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted; 058-000-000,2023-01-11,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-20,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-02-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted; 056-000-000,2023-05-24,['passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 17, 2023",2023-05-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2024-02-26,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-02-08,[],IL,103rd +Do Pass / Short Debate Housing; 012-005-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-08,[],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2023-02-08,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Postponed - Education,2023-02-22,[],IL,103rd +Postponed - Licensed Activities,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lilian Jiménez,2024-04-02,['amendment-introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Executive Subcommittee on Special Issues,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Be Adopted Public Health; 007-000-000,2023-03-29,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-02-09,[],IL,103rd +Assigned to Restorative Justice,2024-02-28,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-01-17,[],IL,103rd +Be Adopted Transportation; 015-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - State Government,2023-03-09,[],IL,103rd +Postponed - Energy and Public Utilities,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Chief Sponsor Changed to Rep. Fred Crespo,2024-03-12,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Energy and Public Utilities,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-29,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Be Adopted Health and Human Services; 012-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-11,[],IL,103rd +Postponed - Insurance,2023-02-22,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Resolution Adopted,2023-05-10,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 010-005-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Postponed - Judiciary,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-26,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2024-03-04,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 17, 2023",2023-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Arrived in House,2023-04-18,['introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-01,[],IL,103rd +To Subcommittee on Government Operations,2023-02-23,[],IL,103rd +To Subcommittee on Government Operations,2023-03-09,[],IL,103rd +To Subcommittee on Privacy,2023-02-22,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 24, 2023",2023-03-23,[],IL,103rd +To Insurance Main Subcommittee,2023-02-24,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2024-03-05,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Elections,2023-02-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Insurance,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Procurement,2023-03-09,[],IL,103rd +Assigned to Public Utilities Committee,2024-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 23, 2023",2023-03-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +To Occupational Licenses Subcommittee,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-27,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-02-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 22, 2024",2024-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-01-31,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-05-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Insurance,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Postponed - Judiciary,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-02-28,[],IL,103rd +Assigned to Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-21,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Assigned to Higher Education Committee,2024-02-29,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 016-000-000",2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-04-03,['committee-passage'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-06,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-010-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 017-000-000",2024-04-02,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-05-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-04-03,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-02,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 017-010-000,2024-04-03,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-11,[],IL,103rd +Assigned to Police & Fire Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 013-000-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass / Short Debate Human Services Committee; 008-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 009-006-000,2024-04-04,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-06,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 016-000-000",2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2023-02-14,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-02-01,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-06,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-01,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-14,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2023-03-07,[],IL,103rd +Arrive in Senate,2024-02-21,['introduction'],IL,103rd +Do Pass / Short Debate Economic Opportunity & Equity Committee; 005-003-000,2023-03-08,['committee-passage'],IL,103rd +Assigned to State Government Administration Committee,2023-02-21,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-03-06,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-28,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 011-000-000,2024-03-20,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Energy and Public Utilities; 015-000-000,2023-02-23,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jawaharial Williams,2023-03-07,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2024-03-07,['amendment-introduction'],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Immigration & Human Rights Committee; 008-004-000,2023-03-08,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2023-02-27,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-22,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Suzanne M. Ness,2024-03-07,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-01,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Postponed - Judiciary,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-01-12,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-14,['referral-committee'],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-23,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Commercial & Property Subcommittee,2023-03-08,[],IL,103rd +Chief Sponsor Changed to Rep. Diane Blair-Sherlock,2023-02-24,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2023-03-03,['amendment-introduction'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-11,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-02-27,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Do Pass / Short Debate Human Services Committee; 006-003-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 020-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Matt Hanson,2024-04-02,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 011-000-000,2024-03-20,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-02-21,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Housing; 018-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-02-22,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2024-03-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 009-006-000,2024-04-04,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tom Weber,2023-03-03,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-02,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2024-03-05,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2023-03-01,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-03-02,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2024-03-07,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-03-21,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-02-20,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-02,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-02-17,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sue Scherer,2024-03-04,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-06,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 016-000-000",2023-03-07,['committee-passage'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2023-03-06,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jackie Haas,2024-03-22,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. William ""Will"" Davis",2024-02-28,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Restorative Justice; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Cities & Villages Committee; 010-006-000,2023-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-02,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-02,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Human Services Committee; 006-003-000,2024-04-03,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-04-26,[],IL,103rd +To Medicaid Subcommittee,2023-03-09,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Travis Weaver,2024-03-05,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 010-004-000,2024-03-13,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-23,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-12,[],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-02,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 008-000-000,2024-04-04,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2024-03-21,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Recommends Be Adopted Immigration & Human Rights Committee; 009-000-000,2024-03-21,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Veterans' Affairs Committee; 015-000-000,2023-03-07,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-02-22,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-16,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-02-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-23,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Human Services Committee; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 013-000-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 010-005-000,2023-03-07,['committee-passage'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-03-06,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-03,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-03-19,['amendment-introduction'],IL,103rd +Referred to State Government Administration Committee,2024-03-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Housing; 017-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 008-001-000,2023-03-02,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-20,[],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-21,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2024-05-14,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 010-005-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tony M. McCombie,2023-03-01,['amendment-introduction'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-17,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-20,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Standard Debate Judiciary - Criminal Committee; 008-006-000,2024-03-12,['committee-passage'],IL,103rd +Recommends Be Adopted Public Health Committee; 008-000-000,2024-05-02,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2024-02-28,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. David Friess,2023-05-03,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-16,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2024-05-15,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 022-000-000,2023-03-07,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Yolonda Morris,2024-03-13,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-06,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-09,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-02-03,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2024-03-12,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Assigned to Police & Fire Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +Assigned to Labor & Commerce Committee,2023-03-14,['referral-committee'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Housing; 017-000-000,2024-03-06,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-02-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-08,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bradley Fritts,2024-02-28,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 012-000-000,2024-02-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Insurance,2023-01-31,['referral-committee'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-08,[],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-23,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-16,[],IL,103rd +Do Pass Revenue; 010-000-000,2023-02-23,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-16,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2023-03-06,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-02-16,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-12,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 008-004-000,2023-03-08,['committee-passage'],IL,103rd +Assigned to Police & Fire Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-12,[],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 013-000-000,2023-03-07,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2024-03-18,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 011-000-000,2024-04-04,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2023-03-02,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +First Reading,2024-02-07,['reading-1'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-02-14,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-04-25,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Chief Sponsor Changed to Rep. Suzanne M. Ness,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2023-05-03,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2024-02-29,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-05-03,[],IL,103rd +Chief Sponsor Changed to Rep. La Shawn K. Ford,2023-03-07,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 007-004-000,2024-04-04,['committee-passage'],IL,103rd +Motion Do Pass - Lost Child Care Accessibility & Early Childhood Education Committee; 006-008-001,2023-03-09,['committee-failure'],IL,103rd +Do Pass / Short Debate Restorative Justice; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-02,[],IL,103rd +Postponed - Licensed Activities,2023-02-23,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 006-003-000,2024-04-02,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2024-02-08,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-01,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 010-005-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 016-000-000",2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +To Subcommittee on Property,2023-02-22,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2024-02-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Moved to Suspend Rule Sen. Ann Gillespie; 3-6(a),2024-03-22,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-06,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 005-003-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 011-000-000,2024-03-22,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2024-03-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tony M. McCombie,2024-04-02,['amendment-introduction'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Moved to Suspend Rule 21 Rep. Robyn Gabel,2023-02-28,[],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 012-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-03,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-16,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Sanalitro,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-03-06,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-08,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-03,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-06,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 007-002-000,2024-03-21,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-02,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 010-001-000,2024-03-22,['committee-passage'],IL,103rd +Assigned to Higher Education Committee,2024-03-05,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-11,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Immigration & Human Rights Committee; 008-004-000,2023-03-08,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2023-03-06,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-03-01,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 015-009-000,2024-03-20,['committee-passage'],IL,103rd +Do Pass / Short Debate Cities & Villages Committee; 016-000-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2024-03-21,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-22,[],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 008-004-000,2023-03-07,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2024-03-21,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2023-03-02,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-03-11,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 012-000-000,2024-03-05,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-02-16,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-03-08,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-02-21,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Economic Opportunity & Equity Committee; 008-000-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2024-03-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-02,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-02,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-03-06,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-006-000,2024-02-06,['committee-passage'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-04,['committee-passage'],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-22,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-26,[],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-30,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 018-007-000,2024-03-05,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-02-14,[],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-22,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2023-03-02,['amendment-introduction'],IL,103rd +Recommends Be Adopted Transportation: Vehicles & Safety; 011-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Recommends Be Adopted Higher Education Committee; 011-000-000,2024-04-11,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 005-003-000,2023-03-07,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-11,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Suzanne M. Ness,2024-02-26,['amendment-introduction'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Insurance Committee; 009-005-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass Appropriations; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-02-23,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-20,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 021-003-000,2023-03-08,['committee-passage'],IL,103rd +Chief Sponsor Changed to Rep. Sharon Chung,2024-02-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 005-003-000,2023-03-07,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-01-31,['referral-committee'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2024-03-06,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Appropriations-General Services Committee; 013-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-01,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2024-02-29,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-02-22,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2024-03-18,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-02-16,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-16,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2024-04-17,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Public Health,2023-02-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-02-27,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-04,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-06-11,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-21,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +To Clean Energy Subcommittee,2024-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-02-22,[],IL,103rd +Assigned to Executive Committee,2024-03-27,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-02-22,[],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2024-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2023-02-01,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +To Business & Industry Innovation Subcommittee,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-01,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-02,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Subcommittee on Procurement,2023-02-16,[],IL,103rd +Do Pass Revenue; 009-000-000,2024-03-14,['committee-passage'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-01-24,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-02-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-10,[],IL,103rd +To Special Issues Subcommittee,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2023-03-06,['amendment-introduction'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-000-000",2024-03-13,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Referred to Congratulatory Consent Calendar,2024-05-15,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 014-000-000,2024-02-21,['committee-passage'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-13,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-02-16,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass Transportation; 014-000-000,2024-03-06,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-27,[],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2024-03-20,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lilian Jiménez,2024-03-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +Postponed - Environment and Conservation,2024-03-07,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-10,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Recommends Be Adopted Higher Education Committee; 010-000-000,2023-04-26,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Gregg Johnson,2024-03-06,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2024-03-21,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-11-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-29,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Chief Sponsor Changed to Rep. Diane Blair-Sherlock,2023-02-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-23,[],IL,103rd +To Business & Industry Innovation Subcommittee,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-03-02,[],IL,103rd +To Business & Industry Innovation Subcommittee,2023-03-02,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-02-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Postponed - Education,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Business & Industry Innovation Subcommittee,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2024-05-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Moved to Suspend Rule 21 Rep. Robyn Gabel,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-01,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-01-19,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-27,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Arrived in House,2024-03-14,['introduction'],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-02-23,[],IL,103rd +Do Pass State Government; 007-000-000,2024-02-21,['committee-passage'],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-01-30,[],IL,103rd +Sponsor Removed Sen. David Koehler,2024-02-15,[],IL,103rd +Referred to Rules Committee,2024-02-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-03,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Steven Reick,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-05-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2024-03-07,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Severin,2023-03-07,['amendment-introduction'],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Steven Reick,2024-07-30,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 012-000-000,2024-04-03,['committee-passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 014-000-000,2024-04-04,['committee-passage'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-23,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-02-21,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-04-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Re-assigned to Housing,2023-03-01,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2023-02-08,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +To Business & Industry Innovation Subcommittee,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-02-24,['amendment-introduction'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-21,['referral-committee'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-23,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 015-000-000,2024-03-07,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2023-03-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2024-03-14,[],IL,103rd +Postponed - Education,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-11-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-13,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Job Growth & Workforce Development Subcommittee,2023-03-08,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-15,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2023-03-06,['amendment-introduction'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-03-06,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2023-03-02,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-02-21,[],IL,103rd +Do Pass Judiciary; 008-000-000,2024-02-07,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-02,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +"Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-15,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2023-04-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2023-01-31,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 12, 2024",2024-04-11,[],IL,103rd +To Fire Subcommittee,2023-05-17,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-02-15,[],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Recommends Be Adopted Mental Health & Addiction Committee; 013-000-000,2023-03-16,['committee-passage-favorable'],IL,103rd +Moved to Suspend Rule 21 Rep. Robyn Gabel,2023-02-28,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 005-003-000,2023-03-09,['committee-passage'],IL,103rd +Chief Sponsor Changed to Rep. Jenn Ladisch Douglass,2023-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-02-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-06-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-02-10,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Assigned to Appropriations,2024-01-31,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-03-05,['amendment-introduction'],IL,103rd +Recommends Be Adopted Energy & Environment Committee; 016-009-000,2023-05-09,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-02-03,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joe C. Sosnowski,2024-03-12,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-20,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +To Civil Procedure & Tort Liability subcommittee,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2023-02-21,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Postponed - Licensed Activities,2024-03-14,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +To Subcommittee on CLEAR Compliance,2024-03-07,[],IL,103rd +To Subcommittee on Special Issues,2024-02-21,[],IL,103rd +To Subcommittee on Special Issues,2024-02-21,[],IL,103rd +Postponed - Local Government,2024-02-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-01,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Insurance Committee,2024-03-05,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Appropriations-General Services Committee,2023-02-28,['referral-committee'],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +To Subcommittee on CLEAR Compliance,2024-02-07,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-28,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +To Civil Procedure & Tort Liability subcommittee,2023-03-08,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 012-001-000,2024-03-06,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2024-02-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-04-04,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-01-30,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 004-000-000,2023-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-04-19,[],IL,103rd +Postponed - Judiciary,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-11-21,[],IL,103rd +Postponed - Executive,2024-03-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Removed Co-Sponsor Rep. Michelle Mussman,2023-03-21,[],IL,103rd +To Utilities Subcommittee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Hoan Huynh,2024-04-01,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-02-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-02-27,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2024-03-05,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2024-02-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Postponed - Judiciary,2024-03-13,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2023-03-03,['amendment-introduction'],IL,103rd +Assigned to Health Care Licenses Committee,2024-03-05,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2024-02-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Postponed - Transportation,2024-03-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-03-05,[],IL,103rd +To Subcommittee on CLEAR Compliance,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Postponed - Local Government,2024-02-08,[],IL,103rd +Postponed - Judiciary,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-13,[],IL,103rd +To Police Subcommittee,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-20,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Insurance,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-02-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Chapin Rose,2023-02-03,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Paul Jacobs,2023-02-24,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-05-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-15,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-03-01,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-02-14,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-10-23,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-11-07,[],IL,103rd +Assigned to Police & Fire Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-02-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +"Motion Do Pass - Lost Elementary & Secondary Education: Administration, Licensing & Charter Schools; 003-006-000",2024-03-13,['committee-failure'],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2024-02-28,['amendment-introduction'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-02-06,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-16,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-23,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 012-000-000,2024-02-07,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 009-000-000,2024-03-14,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-03-03,['amendment-introduction'],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 024-000-000,2024-03-12,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-14,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to State Government,2023-01-31,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-04-27,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-10-25,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Energy & Environment Committee,2023-03-14,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Mental Health & Addiction Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-19,[],IL,103rd +To Investigations and Reporting Subcommittee,2023-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-05-03,[],IL,103rd +To Family Preservation Subcommittee,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-07-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2024-03-20,['amendment-introduction'],IL,103rd +To Criminal Administration and Enforcement Subcommittee,2023-03-07,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2024-03-19,['amendment-introduction'],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-07-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Housing; 012-005-000,2024-03-21,['committee-passage'],IL,103rd +To Family Law & Probate Subcommittee,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Insurance Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-05-24,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-07-01,[],IL,103rd +To Commercial & Property Subcommittee,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-02-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-02-23,[],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 016-001-000,2024-04-02,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-10-26,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2023-03-08,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Jil Tracy,2024-01-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-15,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Postponed - Transportation,2024-03-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Fred Crespo,2024-04-02,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-05-19,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-04-20,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Chief Sponsor Changed to Rep. Michael J. Kelly,2023-02-28,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-04-27,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-10,[],IL,103rd +Referred to Rules Committee,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-04-20,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-04-27,[],IL,103rd +To Subcommittee on Cannabis,2023-02-16,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-18,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-05-03,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 009-000-000,2024-03-12,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Arrived in House,2023-02-08,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2023-08-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-05-17,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Recommends Be Adopted Higher Education Committee; 011-000-000,2023-05-03,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-05,[],IL,103rd +Assigned to State Government Administration Committee,2023-03-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Subcommittee on Procurement,2023-02-16,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-10-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-10-03,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-03-18,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-05-02,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2023-03-06,['amendment-introduction'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-03-11,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2023-02-21,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Chief Sponsor Changed to Rep. Michael J. Kelly,2023-02-28,[],IL,103rd +Recommends Be Adopted Executive Committee; 010-000-000,2023-04-19,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-04-25,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +First Reading,2023-04-27,['reading-1'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2023-01-12,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Remove Chief Co-Sponsor Rep. Katie Stuart,2024-02-05,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2023-05-12,['amendment-introduction'],IL,103rd +Assigned to Health and Human Services,2023-02-07,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-05-17,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-07-05,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-18,[],IL,103rd +Resolution Adopted 103-000-002,2023-03-02,['passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +First Reading,2024-01-31,['reading-1'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2023-03-06,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-27,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-09-29,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Michelle Mussman,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-02-07,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-12,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-04-04,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Consumer Protection Committee,2024-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Investigations and Reporting Subcommittee,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Clean Energy Subcommittee,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-11-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Assigned to Insurance Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-05,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass Health and Human Services; 009-000-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2024-03-06,[],IL,103rd +To Subcommittee on Property,2023-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-02-14,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2024-03-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Recommends Be Adopted Transportation: Vehicles & Safety; 007-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-04,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-01-25,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-14,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-02-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-02-06,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2024-01-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-02-27,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 022-000-000,2024-03-05,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Referred to Rules Committee,2023-02-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-01,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2023-02-28,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-15,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 004-000-000,2023-05-24,[],IL,103rd +Assigned to Public Health Committee,2023-03-07,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-02-22,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2024-04-17,['passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-29,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-13,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. William ""Will"" Davis",2024-03-06,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2023-02-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2024-03-08,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-07,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Executive Subcommittee on Consolidation,2023-02-16,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-16,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-10-23,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2023-10-19,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-11-07,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2023-03-01,['amendment-introduction'],IL,103rd +To Police Subcommittee,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-02-24,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2023-05-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-02-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted 114-000-000,2023-05-18,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2023-03-21,[],IL,103rd +Re-assigned to Appropriations,2024-01-10,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-28,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-02-06,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2023-05-15,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-02-23,[],IL,103rd +To Subcommittee on Liquor,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-29,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-02-27,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-10-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-11-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Remains in Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-02-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-05-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-03-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Resolution Adopted,2023-05-15,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Amy L. Grant,2023-03-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-03-06,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-04-17,[],IL,103rd +Assigned to Police & Fire Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-04-27,[],IL,103rd +To Subcommittee on State Gov. Special Issues,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Appropriations,2024-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2023-03-08,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-10-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Chief Sponsor Changed to Rep. Jennifer Gong-Gershowitz,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2024-03-14,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-07-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-19,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-02-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-07-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2024-02-28,['referral-committee'],IL,103rd +Chief Sponsor Changed to Rep. Jay Hoffman,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-07-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Chief Co-Sponsor Changed to Rep. Emanuel ""Chris"" Welch",2023-02-16,[],IL,103rd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Suspend Rule 21 - Prevailed,2023-02-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-02,[],IL,103rd +Correctional Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Randy E. Frese,2023-03-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2024-01-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-28,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-02-22,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-08,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-24,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2023-03-02,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +First Reading,2023-05-19,['reading-1'],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 19, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-08-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-02-17,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-01,[],IL,103rd +To Police Subcommittee,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-09,[],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-04-27,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-04-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-04-27,[],IL,103rd +Assigned to Executive Committee,2024-03-12,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-01-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Dan McConchie,2024-02-20,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-02-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-02-16,[],IL,103rd +Chief House Sponsor Rep. Robyn Gabel,2023-02-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted 101-000-000,2023-05-24,['passage'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-05-17,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +To Reproductive Health Subcommittee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-10-27,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-10-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-03-21,[],IL,103rd +Resolution Adopted,2023-03-28,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-03-19,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Resolution Adopted,2023-05-02,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Correctional Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +To Criminal Administration and Enforcement Subcommittee,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Recommends Be Adopted Veterans' Affairs Committee; 014-000-000,2023-05-24,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-10,[],IL,103rd +Moved to Suspend Rule Sen. Kimberly A. Lightford; 3-6(a),2023-01-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Recommends Be Adopted Public Health Committee; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-20,[],IL,103rd +Do Pass Health and Human Services; 010-000-000,2023-02-22,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-04-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-12-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-15,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-07-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-10-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted 112-000-000,2023-04-26,['passage'],IL,103rd +Resolution Adopted,2023-05-15,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-05-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2024-04-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2024-02-29,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-01-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-02-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-11-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Special Issues Subcommittee,2024-04-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Assigned to Police & Fire Committee,2024-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Insurance Main Subcommittee,2024-03-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-000-000,2024-04-03,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Executive Committee,2024-01-31,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2023-03-08,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2024-02-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-02-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-02-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2023-02-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-03-07,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-14,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2023-03-07,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-02-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2023-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Norma Hernandez,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +To Subcommittee on CLEAR Compliance,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-08-08,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. William E Hauter,2024-04-02,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Rita Mayfield,2023-02-23,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Recommends Be Adopted Veterans' Affairs Committee; 014-000-000,2023-05-24,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +To Subcommittee on CLEAR Compliance,2023-03-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-01,[],IL,103rd +Suspend Rule 21 - Prevailed,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Patricia Van Pelt,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-01-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-08-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-04-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2024-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Postponed - Judiciary,2024-03-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-01-25,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Postponed - Judiciary,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-24,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2024-02-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2024-04-01,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 8, 2024",2024-02-07,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-02,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Postponed - Insurance,2024-03-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Postponed - Insurance,2024-03-13,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-16,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2023-02-23,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2024-03-06,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Postponed - Judiciary,2024-03-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +To Subcommittee on CLEAR Compliance,2023-03-10,[],IL,103rd +Resolution Adopted,2023-05-15,['passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2023-03-14,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-03-05,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2024-03-25,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2023-02-01,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-07,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Postponed - Licensed Activities,2023-02-23,[],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2023-03-07,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-02-10,[],IL,103rd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Dan Swanson",2024-03-12,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 23, 2023",2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-10,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-02-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +Re-assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2023-03-01,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-02-14,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2023-03-08,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2023-03-02,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Suspend Rule 21 - Prevailed,2023-02-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2023-03-03,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-02-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-02-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Sponsor Removed Sen. Linda Holmes,2023-02-10,[],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Revenue,2023-02-28,['referral-committee'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-02-29,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-03-01,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-02-24,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-15,[],IL,103rd +To Executive Subcommittee on Special Issues,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +To Special Issues Subcommittee,2024-04-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Robyn Gabel,2023-02-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Executive Committee,2024-03-12,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Postponed - Higher Education,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2024-03-27,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-03-07,[],IL,103rd +To Subcommittee on Procurement,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Chief House Sponsor Rep. Robyn Gabel,2023-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-02-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-03,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 24, 2023",2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2024-01-25,[],IL,103rd +Assigned to Executive,2023-03-07,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Margaret Croke,2023-02-28,[],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2024-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-04-28,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +To Environmental Justice Subcommittee,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 17, 2023",2023-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Natalie Toro,2024-01-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-04-18,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 007-000-000,2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jed Davis,2024-02-29,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-04-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-05-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-23,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-02-27,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 17, 2023",2023-05-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2023-02-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-26,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jeff Keicher,2023-03-06,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2024-03-06,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Moved to Suspend Rule Sen. Adriane Johnson; 3-6(a),2024-01-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 23, 2023",2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +To Water Subcommittee,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Arrived in House,2023-05-24,['introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-03-08,[],IL,103rd +Chief House Sponsor Rep. Robyn Gabel,2023-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-03-04,[],IL,103rd +Resolution Adopted,2023-04-26,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-03-20,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-02-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-02-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-02-09,[],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 30, 2023",2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Special Issues Subcommittee,2024-04-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Postponed - Transportation,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2024-02-07,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-04-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-01,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +First Reading,2023-02-09,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-02-24,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 31, 2023",2023-03-30,[],IL,103rd +"To Subcommittee on Gaming, Wagering, and Racing",2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-22,['reading-2'],IL,103rd +To Subcommittee on Liquor,2023-02-16,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 005-003-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2023-02-28,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-02-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-03-08,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-02-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-01-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2024-03-20,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Postponed - Health and Human Services,2023-02-22,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 025-000-000,2024-04-02,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-02-22,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-02-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2024-03-08,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2024-03-06,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 30, 2023",2023-03-29,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Postponed - Agriculture,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-02-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Resolution Adopted 113-000-000,2023-04-18,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-14,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jenn Ladisch Douglass,2024-04-01,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-05-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass Judiciary; 009-000-000,2024-02-21,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2023-03-01,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-01-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Postponed - Education,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-02-28,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-10-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2024-03-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Resolution Adopted 113-000-000,2023-04-18,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Sponsor Removed Sen. Ann Gillespie,2024-02-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-04-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2023-02-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 8, 2024",2024-02-07,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-02-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Postponed - Education,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Assigned to Appropriations,2023-01-31,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +To Subcommittee on Government Operations,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-03-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-03-07,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-12,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-02-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Suzanne M. Ness,2024-04-16,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 20, 2024",2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-03-05,[],IL,103rd +Assigned to Public Health,2024-01-31,['referral-committee'],IL,103rd +Re-assigned to Appropriations- Public Safety and Infrastructure,2024-01-10,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-03-19,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-02-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2023-02-28,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-29,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 2, 2024",2024-05-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-02-21,[],IL,103rd +Assigned to Transportation,2024-03-12,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Jil Tracy,2024-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 8, 2024",2024-02-07,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-05-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-01-29,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-03-07,[],IL,103rd +Resolution Adopted,2024-05-01,['passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-01-31,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-02-21,[],IL,103rd +Be Adopted Behavioral and Mental Health; 007-000-000,2024-04-10,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 22, 2024",2024-05-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2024-02-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2024-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Resolution Adopted,2024-03-13,['passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2024-03-08,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +To Subcommittee on End of Life Issues,2024-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-04-01,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2024-02-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 024-000-000,2024-03-12,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Prevailed to Suspend Rule 3-6(a),2023-03-31,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-06-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Assigned to Executive,2024-02-06,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-04,[],IL,103rd +To Subcommittee on Liquor,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-11-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-03,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-14,[],IL,103rd +Removed Co-Sponsor Rep. Kelly M. Cassidy,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-13,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-03-07,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-03,[],IL,103rd +Postponed - Labor,2024-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2024-03-07,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2023-02-21,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Do Pass Local Government; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-04,[],IL,103rd +To Subcommittee on Government Operations,2024-03-07,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2024-04-04,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +To Foster Care Placement Subcommittee,2024-04-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sally J. Turner,2023-02-23,['amendment-introduction'],IL,103rd +Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 009-003-000,2024-05-21,['committee-passage-favorable'],IL,103rd +Removed Co-Sponsor Rep. Laura Faver Dias,2024-02-05,[],IL,103rd +Do Pass Health and Human Services; 009-000-000,2024-03-13,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Health and Human Services; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2024-03-07,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Postponed - Health and Human Services,2024-03-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2024-04-01,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-02-16,[],IL,103rd +Postponed - Transportation,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2024-03-19,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2024-03-08,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-04,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Donald P. DeWitte,2023-03-02,['amendment-introduction'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-03-06,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-03-14,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-20,[],IL,103rd +Assigned to Judiciary,2023-02-28,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Laura Fine,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2024-03-08,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Donald P. DeWitte,2024-03-12,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-03-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass Revenue; 008-000-000,2024-02-21,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Do Pass Executive; 011-000-000,2024-03-07,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-18,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2024-02-14,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +"To Subcommittee on Gaming, Wagering, and Racing",2024-02-21,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Postponed - Health and Human Services,2024-03-06,[],IL,103rd +Do Pass Transportation; 014-000-000,2024-03-13,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2024-04-05,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-03-06,['amendment-introduction'],IL,103rd +Do Pass Financial Institutions; 007-000-000,2024-03-13,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2024-03-08,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-04,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-08-14,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-003-000,2024-03-13,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-03-04,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-02-21,[],IL,103rd +Do Pass Health and Human Services; 009-000-000,2024-03-13,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 009-000-000,2023-02-21,['committee-passage'],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-29,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-003-000,2023-03-09,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-04,[],IL,103rd +Assigned to Executive,2024-03-20,['referral-committee'],IL,103rd +Re-assigned to Appropriations- Public Safety and Infrastructure,2024-01-10,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-06-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-01,[],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-21,[],IL,103rd +Assigned to Executive,2024-02-06,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Postponed - Judiciary,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-22,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-28,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-02-27,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-16,[],IL,103rd +To Subcommittee on Procurement,2024-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-03-07,[],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2024-02-14,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2024-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-11,[],IL,103rd +Referred to Rules Committee,2024-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +Do Pass Executive; 011-000-000,2024-02-21,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2024-03-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-01,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-02-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-28,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 013-000-000,2024-03-06,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-02-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass Revenue; 008-000-000,2024-02-21,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Assigned to Appropriations- Education,2024-02-14,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2024-02-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-06-30,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2023-03-01,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2024-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-02-01,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Neil Anderson,2024-03-07,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Omar Aquino,2023-02-10,[],IL,103rd +Postponed - Labor,2024-03-13,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-000-000,2023-03-01,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +To Family Law & Probate Subcommittee,2024-02-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 013-008-000,2023-03-07,['committee-passage'],IL,103rd +Resolution Adopted,2024-05-03,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2024-04-12,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2024-01-16,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2023-03-07,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2023-05-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-03,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kevin Schmidt,2024-03-01,['amendment-introduction'],IL,103rd +Resolution Adopted 106-000-000,2024-05-25,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-09,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 017-010-000,2023-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2024-03-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Mark L. Walker,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-21,[],IL,103rd +Assigned to Restorative Justice,2024-02-14,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-02,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Motion Filed to Suspend Rule 21 Rules Committee; Rep. Bob Morgan,2023-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Standard Debate,2024-03-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Mark L. Walker,2024-03-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-008-000,2023-03-22,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Referred to Rules Committee,2024-02-07,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2024-05-15,[],IL,103rd +Resolution Adopted,2024-05-03,['passage'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 008-004-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-02-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 021-004-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-07,[],IL,103rd +Suspend Rule 21 - Prevailed,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Gaming Committee,2024-02-14,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Housing,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-27,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Norine K. Hammond,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-04-03,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Resolution Adopted 110-000-000,2024-05-02,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Appropriations-Elementary & Secondary Education Committee; 008-003-000,2024-04-30,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-06-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Removed Co-Sponsor Rep. Camille Y. Lilly,2024-02-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-07,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-02,[],IL,103rd +Do Pass / Short Debate Restorative Justice; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-22,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-21,[],IL,103rd +Resolution Adopted 114-000-000,2023-05-18,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-03-01,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-28,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-20,[],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 028-000-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-05-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Sanalitro,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-05-03,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-03-07,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-02-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +Do Pass Public Health; 005-000-000,2023-02-22,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Do Pass / Short Debate Appropriations-General Services Committee; 015-000-000,2024-04-12,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-003-000,2024-04-03,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Executive Committee; 008-001-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-02-10,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass Insurance; 010-000-000,2023-02-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-02-05,[],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-04,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2023-02-22,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted 113-000-000,2024-04-30,['passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted 064-038-000,2024-05-25,['passage'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-22,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-05-08,[],IL,103rd +Do Pass Health and Human Services; 012-000-000,2023-02-15,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-03-01,[],IL,103rd +Remains in Child Care Accessibility & Early Childhood Education Committee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-04,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Norine K. Hammond,2023-03-03,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2024-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2024-05-14,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-06,[],IL,103rd +Resolution Adopted 111-000-000,2024-04-30,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 007-004-000,2024-04-03,['committee-passage'],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-08,[],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 017-000-000,2024-04-02,['committee-passage'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-05-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-06,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Recommends Be Adopted Public Health Committee; 008-000-000,2024-05-02,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-02-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-01-31,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-07,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-02-23,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-05-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-02-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-29,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Norine K. Hammond,2023-02-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Norine K. Hammond,2024-03-01,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-02-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2023-03-09,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-05-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2023-03-09,['committee-passage'],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Do Pass Executive; 010-001-000,2023-02-16,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2024-04-02,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-07,[],IL,103rd +Do Pass Labor; 010-004-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-02-15,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-22,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-23,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-02-22,[],IL,103rd +Assigned to State Government Administration Committee,2024-03-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-04,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2024-04-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-010-000,2023-03-07,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2024-03-12,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-02-29,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Diane Blair-Sherlock,2023-03-06,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Appropriations-General Services Committee; 013-000-000,2023-03-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Assigned to Executive Committee,2024-03-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 016-008-000,2024-03-06,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-08,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2024-03-15,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Assigned to Police & Fire Committee,2024-05-17,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Insurance,2023-02-14,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-08-21,[],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-18,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2023-03-01,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Chief House Sponsor Rep. Robyn Gabel,2024-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Amy L. Grant,2023-10-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-22,['reading-2'],IL,103rd +To Criminal Administration and Enforcement Subcommittee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Referred to Rules Committee,2024-01-31,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-05-22,[],IL,103rd +Chief House Sponsor Rep. Robyn Gabel,2024-05-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-09-26,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Referred to Rules Committee,2023-04-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Assigned to Executive Committee,2024-02-29,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-03-04,[],IL,103rd +To Executive Subcommittee on Special Issues,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-02-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-09-29,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-03-07,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-04-21,[],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-10-24,[],IL,103rd +Do Pass State Government; 009-000-000,2024-03-22,['committee-passage'],IL,103rd +To Subcommittee on CLEAR Compliance,2023-02-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-10-19,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-02-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 027-000-000,2024-03-13,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-03-09,[],IL,103rd +Assigned to Ethics & Elections,2024-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Dave Syverson,2023-10-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-01-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2024-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2023-03-23,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Reported Back To State Government; 003-000-000,2023-03-08,[],IL,103rd +Recommends Be Adopted Rules Committee; 004-000-000,2023-05-09,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Assigned to Energy & Environment Committee,2024-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-03-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2024-03-27,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-04-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-02-07,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Norine K. Hammond,2023-02-22,['amendment-introduction'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-04,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-03-05,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2024-02-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-06-11,[],IL,103rd +Resolution Adopted 113-000-000,2023-04-18,['passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Public Utilities Committee,2024-03-05,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-15,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. John M. Cabello,2023-04-11,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-03-08,[],IL,103rd +To Special Issues Subcommittee,2024-04-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Re-assigned to Licensed Activities,2024-01-10,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-02-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-03-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Executive,2023-02-07,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2024-02-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Amy Elik,2024-04-01,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2023-02-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-02-16,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-28,[],IL,103rd +Postponed - Local Government,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-01,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Postponed - Licensed Activities,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass Education; 011-000-000,2024-02-21,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-03-06,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2024-03-07,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-06,[],IL,103rd +Do Pass Health and Human Services; 010-000-000,2024-03-06,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2024-03-08,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-02-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass Judiciary; 007-002-000,2024-02-07,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-02-14,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2024-03-12,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-01,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +To Sex Offenses and Sex Offender Registration Subcommittee,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-29,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-02,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-04-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Be Adopted Special Committee on Criminal Law and Public Safety; 008-001-000,2023-05-10,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 8, 2024",2024-02-07,['reading-2'],IL,103rd +Postponed - Financial Institutions,2024-03-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Postponed - Labor,2024-03-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-04-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2024-03-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-01,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-28,[],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Resolution Adopted 113-000-000,2023-04-18,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +To Higher Ed-Degree Conferral Subcommittee,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-01-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-02-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-02-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2023-02-14,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-04-03,['committee-passage'],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-01,[],IL,103rd +Assigned to Executive,2023-01-31,['referral-committee'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2024-02-06,[],IL,103rd +Resolution Adopted,2023-05-03,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-02-02,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2023-03-06,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-01-31,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Burke,2024-02-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2024-01-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-05-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-02-27,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2024-03-05,['committee-passage'],IL,103rd +Postponed - Education,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Postponed - Judiciary,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Pension Note Requested by Rep. Stephanie A. Kifowit,2023-07-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-02-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-02-27,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-02-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2023-02-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-02-16,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-11-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Do Pass Local Government; 007-000-000,2024-02-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +Correctional Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-05-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-04-25,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-04-11,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-28,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-05-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Correctional Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-02-08,[],IL,103rd +To Water Subcommittee,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-10-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Insurance Main Subcommittee,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 010-000-000,2024-03-07,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-03-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-02,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +To Occupational Licenses Subcommittee,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Suspend Rule 21 - Prevailed,2023-02-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-27,[],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-05-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-02,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +To Natural Gas Subcommittee,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Assigned to Insurance Committee,2023-02-15,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-01-16,[],IL,103rd +Chief Sponsor Changed to Rep. Nabeela Syed,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Postponed - Local Government,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +To Subcommittee on Government Operations,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Suspend Rule 21 - Prevailed,2023-02-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Special Issues Subcommittee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-21,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-02-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-02-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-29,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-08-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-04-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-18,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2024-03-13,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Approved for Consideration Assignments,2024-05-23,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-23,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +To Subcommittee on CLEAR Compliance,2023-02-23,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-02,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-29,[],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Moved to Suspend Rule 21 Rep. Robyn Gabel,2023-02-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-02-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-10-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2023-02-21,[],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-03-07,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2024-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2024-03-18,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-04-03,[],IL,103rd +To Special Issues Subcommittee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-10-04,[],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2023-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-02-13,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-21,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-04-18,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Assigned to Appropriations-Higher Education Committee,2023-02-07,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-02-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-09-26,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-02,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-23,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-08,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sue Rezin,2024-01-26,[],IL,103rd +Re-assigned to Energy and Public Utilities,2024-01-10,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-01-31,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 027-000-000,2023-03-07,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Randy E. Frese,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-02-22,[],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 011-000-000,2023-02-28,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-09,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 008-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2023-02-17,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 027-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-02-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-16,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Frances Ann Hurley,2023-02-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-22,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 009-006-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-27,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 017-010-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-02-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Bob Morgan,2023-02-17,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2024-03-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 006-003-000,2023-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-02-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-25,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-03-07,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-21,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2023-02-27,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Fred Crespo,2023-03-06,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-15,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2023-02-22,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Michael T. Marron,2023-02-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-02-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-08,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-03-06,['amendment-introduction'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-08,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 009-000-000,2023-02-23,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-02-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-02-06,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-21,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-27,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2023-03-07,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Robyn Gabel,2023-02-08,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-02-28,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2023-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-15,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-003-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Assigned to Public Health Committee,2023-02-23,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-03-02,[],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 012-000-000,2023-03-07,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-02-22,[],IL,103rd +Do Pass / Short Debate Housing; 011-005-000,2023-03-08,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Lance Yednock,2023-01-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-23,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Suspend Rule 21 - Prevailed,2023-02-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 027-000-000,2023-03-07,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2023-05-03,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Chief House Sponsor Rep. Robyn Gabel,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Transportation,2023-04-18,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2023-02-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Executive Committee,2023-02-15,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-02-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-02-27,[],IL,103rd +Fiscal Note Requested by Rep. Patrick Windhorst,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted; 056-000-000,2023-05-19,['passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 10, 2023",2023-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-05-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-02-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 007-004-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-11-09,[],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-03-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2023-03-06,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-11-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Assigned to Education,2023-05-16,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-10-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-10-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass / Short Debate Child Care Accessibility & Early Childhood Education Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-01-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-10-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-010-000,2023-03-07,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Be Adopted State Government; 009-000-000,2023-05-18,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Michael T. Marron,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Referred to Assignments,2023-04-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-02-17,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 18, 2023",2023-05-17,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2023-02-27,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-22,['reading-2'],IL,103rd +Assigned to State Government Administration Committee,2023-02-23,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-15,['reading-2'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 014-000-000,2023-03-07,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 029-000-000,2023-03-07,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-02-28,[],IL,103rd +Assigned to Housing,2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 009-000-000,2023-02-23,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-02-28,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2023-03-06,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-02-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-01-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 016-010-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-02-03,[],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Resolution Adopted,2023-05-03,['passage'],IL,103rd +Chief Co-Sponsor Changed to Rep. Lindsey LaPointe,2023-03-21,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Assigned to Public Health,2023-02-21,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-29,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2024-03-20,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Do Pass Labor; 016-000-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Postponed - Public Health,2024-03-06,[],IL,103rd +Do Pass Health and Human Services; 009-000-000,2024-03-13,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-02-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-08,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-29,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 12, 2024",2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-01,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-19,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Do Pass Revenue; 009-000-000,2024-03-14,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-11-07,[],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Norma Hernandez,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-02-26,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-03-07,['amendment-introduction'],IL,103rd +To Subcommittee on End of Life Issues,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2023-03-06,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2024-03-05,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Re-assigned to Appropriations- Education,2024-01-10,['referral-committee'],IL,103rd +Do Pass Local Government; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2023-03-07,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2024-03-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-04-15,[],IL,103rd +Do Pass Education; 013-000-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2023-11-09,[],IL,103rd +To Subcommittee on Paid Leave,2024-03-07,[],IL,103rd +Assigned to Housing,2024-03-05,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-29,[],IL,103rd +Assigned to Transportation,2023-03-21,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-04,[],IL,103rd +Postponed - Education,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 8, 2024",2024-02-07,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Re-assigned to Appropriations - Health and Human Services,2024-01-10,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-21,[],IL,103rd +Assigned to Licensed Activities,2023-02-28,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2024-02-20,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-05-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-14,[],IL,103rd +Do Pass Veterans Affairs; 009-000-000,2024-02-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass Transportation; 015-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass Higher Education; 010-000-000,2024-02-21,['committee-passage'],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Arrived in House,2024-05-01,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-02-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2024-03-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Do Pass Licensed Activities; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-20,[],IL,103rd +Postponed - Education,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2024-03-06,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2024-01-29,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-14,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-02-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Do Pass Local Government; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2024-03-08,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-02,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-02-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-01,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Resolution Adopted; 056-000-000,2023-05-19,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-13,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Postponed - Executive,2024-02-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Correctional Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-11-07,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-02-05,[],IL,103rd +Do Pass Health and Human Services; 013-000-000,2024-02-21,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +First Reading,2023-05-02,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Re-assigned to Appropriations,2024-01-10,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-02-15,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-21,['reading-2'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 027-000-000,2024-03-13,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-04,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2024-05-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Prevailed to Suspend Rule 3-6(a),2023-04-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-02-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-24,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-01,[],IL,103rd +Sponsor Removed Sen. Javier L. Cervantes,2023-02-27,[],IL,103rd +Do Pass Agriculture; 012-000-000,2023-03-09,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +Do Pass Health and Human Services; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Do Pass / Short Debate Child Care Accessibility & Early Childhood Education Committee; 014-000-000,2024-04-04,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-26,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Win Stoller,2024-03-08,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Prevailed to Suspend Rule 3-6(a),2023-04-27,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-01,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sue Scherer,2024-03-06,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Lakesia Collins,2024-03-08,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-11-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-02-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Norine K. Hammond,2024-04-02,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-02-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-02-08,[],IL,103rd +Postponed - Health and Human Services,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-01-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2024-05-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-01,[],IL,103rd +Re-assigned to Appropriations- Education,2024-01-10,['referral-committee'],IL,103rd +Re-assigned to Education,2023-03-07,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Assigned to Education,2023-03-07,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-02-08,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Do Pass Transportation; 014-000-000,2024-03-13,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2024-03-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-04,[],IL,103rd +Chief Sponsor Changed to Sen. David Koehler,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2023-03-02,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2023-11-09,[],IL,103rd +Sponsor Removed Sen. Bill Cunningham,2024-02-06,[],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-29,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-09,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2024-03-11,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Do Pass Revenue; 009-000-000,2024-03-14,['committee-passage'],IL,103rd +Do Pass State Government; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-03-12,[],IL,103rd +Re-assigned to Appropriations- Education,2024-01-10,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-03-07,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2024-03-08,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-01,[],IL,103rd +Do Pass State Government; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Do Pass Environment and Conservation; 008-000-000,2023-03-09,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 12, 2024",2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2024-03-20,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Postponed - Health and Human Services,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-02-23,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-08-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-04,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Waive Posting Notice,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-12,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2024-01-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2024-02-13,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-02-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-11,[],IL,103rd +Postponed - Special Committee on Criminal Law and Public Safety,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2023-02-01,[],IL,103rd +Postponed - Health and Human Services,2024-03-06,[],IL,103rd +To Subcommittee on CLEAR Compliance,2023-03-10,[],IL,103rd +Assigned to Appropriations-Public Safety Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-03-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-05-08,[],IL,103rd +Directed to Multiple Committees State Government; Appropriations,2024-02-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-02-28,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Assigned to Appropriations-Higher Education Committee,2024-01-31,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-25,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2024-02-22,['amendment-introduction'],IL,103rd +Postponed - Education,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-28,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-05-07,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Assigned to Appropriations-General Services Committee,2024-01-31,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-03-20,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-04-18,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-02-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-03,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2024-04-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Labor & Commerce Committee,2024-05-06,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Resolution Adopted 075-032-000,2024-05-24,['passage'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-02-08,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-04-27,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Resolution Adopted,2024-05-03,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-01-31,['referral-committee'],IL,103rd +Resolution Adopted 084-000-000,2024-05-01,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2024-03-05,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Adam M. Niemerg,2024-03-08,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted 052-036-003,2024-05-03,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-05-01,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted 114-000-000,2023-05-18,['passage'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 005-000-000,2024-05-28,['committee-passage-favorable'],IL,103rd +Resolution Adopted 101-000-000,2023-05-24,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Recommends Be Adopted Human Services Committee; 009-000-000,2024-05-24,['committee-passage-favorable'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-04-24,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Ethics & Elections,2024-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-20,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-28,[],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2024-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2024-05-16,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2024-03-06,[],IL,103rd +Assigned to Gaming Committee,2024-01-31,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-01-31,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-03-21,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Referred to Rules Committee,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-05-08,[],IL,103rd +Recommends Be Adopted State Government Administration Committee; 007-000-000,2024-05-01,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-30,[],IL,103rd +Recommends Be Adopted Higher Education Committee; 012-000-000,2024-05-01,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-04-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Cities & Villages Committee; 016-000-000,2024-04-02,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-05,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2024-04-03,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 017-010-000,2024-03-12,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-02-29,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-24,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-07,[],IL,103rd +Removed Co-Sponsor Rep. Norine K. Hammond,2023-02-21,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 010-005-000,2023-03-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tracy Katz Muhl,2024-03-27,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2023-03-03,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-02-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +To Fire Subcommittee,2024-04-04,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-02-28,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2024-04-01,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-02-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Labor & Commerce Committee,2024-01-31,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2024-03-15,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +To Sex Offenses and Sex Offender Registration Subcommittee,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Appropriations-Public Safety Committee; 008-000-000,2024-05-15,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-09-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 005-000-000,2024-04-04,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass Insurance; 009-000-000,2023-03-22,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-29,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Debbie Meyers-Martin,2024-03-19,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-03-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-10-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2024-03-26,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Referred to Revenue & Finance Committee,2024-03-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-03-12,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-02,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2023-02-14,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2024-05-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to State Government Administration Committee,2024-03-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-22,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-03-07,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-21,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Hoan Huynh,2024-03-27,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-05-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-04-26,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Suzanne M. Ness,2023-03-13,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-02-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-10-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 021-003-001,2024-03-13,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2024-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Steven Reick,2023-08-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 16, 2023",2023-02-15,['reading-2'],IL,103rd +Do Pass Public Health; 007-000-000,2023-02-22,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Remove Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-02-16,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 21, 2023",2023-02-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2024-02-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-14,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 007-003-000,2023-02-23,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Chief Sponsor Changed to Rep. Jenn Ladisch Douglass,2024-01-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 017-009-000,2024-04-02,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 21, 2023",2023-02-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-08-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Bradley Fritts,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass Judiciary; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2024-04-02,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-02-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-02-21,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass Judiciary; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Appropriations-General Services Committee; 015-000-000,2024-04-12,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Assigned to Executive Committee,2024-03-27,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass Health and Human Services; 010-000-000,2023-02-22,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Kelly M. Cassidy,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2024-03-21,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted 107-004-000,2024-04-30,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Michelle Mussman,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-02-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-04-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2024-02-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-03-02,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-10-25,[],IL,103rd +Assigned to Mental Health & Addiction Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 14, 2023",2023-02-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-05-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 014-000-000,2024-04-02,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-02-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-11-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Michelle Mussman,2023-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted,2024-05-22,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +To Telecom Subcommittee,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Insurance Committee; 011-003-000,2024-04-02,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-02-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-02-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Sponsor Removed Sen. Mary Edly-Allen,2023-02-15,[],IL,103rd +Recommends Be Adopted Public Health Committee; 008-000-000,2024-05-02,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Health Care Licenses Committee,2024-03-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-04-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted 111-000-000,2024-04-30,['passage'],IL,103rd +Assigned to Housing,2024-02-29,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted 109-000-000,2024-05-02,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Gregg Johnson,2024-02-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Transportation: Regulations, Roads & Bridges",2024-05-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-02-26,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-05-01,[],IL,103rd +Recommends Be Adopted Public Health Committee; 006-000-000,2024-05-09,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-15,[],IL,103rd +Assigned to State Government Administration Committee,2024-01-31,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-02-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-05-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-02-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-02,[],IL,103rd +Sponsor Removed Sen. Ann Gillespie,2024-02-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2024-03-13,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Do Pass Public Health; 005-003-000,2024-03-13,['committee-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-04-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +To Subcommittee on End of Life Issues,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-02-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Joyce Mason,2024-01-22,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-05-09,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-02-26,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-29,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2024-04-25,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Postponed - Local Government,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-20,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Assigned to Appropriations-Higher Education Committee,2024-01-31,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Bradley Fritts,2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Porfirio,2024-03-05,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-04-19,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-10-25,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-04-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Postponed - Judiciary,2024-03-13,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2024-04-10,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-04-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-03-13,[],IL,103rd +To Subcommittee on Procurement,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2023-03-02,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Motion Filed to Suspend Rule 21 Human Services Committee; Rep. Robyn Gabel,2023-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-09,[],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 014-000-000,2023-03-07,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Yolonda Morris,2024-03-15,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 009-000-000,2023-02-14,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-01-31,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Executive Committee,2024-01-31,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Ethics & Elections,2024-03-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Ethics & Elections,2024-03-12,['referral-committee'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Child Care Accessibility & Early Childhood Education Committee; 010-005-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 027-000-000,2023-03-01,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-14,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-28,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-02-22,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-02-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Remove Chief Co-Sponsor Rep. Lilian Jiménez,2023-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-23,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Remove Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Energy & Environment Committee; 026-000-000,2024-04-02,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-23,[],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-05-04,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-06,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass / Short Debate Restorative Justice; 008-000-000,2024-03-14,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-04,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Kevin John Olickal,2023-02-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-02-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-01-31,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2023-03-02,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Assigned to Consumer Protection Committee,2024-01-31,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-02-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Ethics & Elections,2024-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-02-14,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Restorative Justice; 006-003-000,2023-03-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 004-001-000,2024-04-04,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Prevailed to Suspend Rule 3-6(a),2023-10-26,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve McClure,2023-03-21,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-02-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-01-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-02-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-01,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-02-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-06,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-06-22,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2023-03-01,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-01,['amendment-introduction'],IL,103rd +Assigned to Consumer Protection Committee,2024-03-12,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-01-31,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2023-03-01,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 007-003-000,2024-03-22,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-02-29,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +To Violence Reduction & Prevention Subcommittee,2024-05-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-01-08,[],IL,103rd +Remove Chief Co-Sponsor Rep. Norine K. Hammond,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-02-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Pension Note Requested by Rep. Stephanie A. Kifowit,2023-07-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Ethics & Elections,2024-02-29,['referral-committee'],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-07-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2024-02-20,['amendment-introduction'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 026-000-000,2023-02-21,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-02-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-003-000,2023-03-01,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2024-03-06,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 010-005-000,2023-03-07,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-02-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2024-02-07,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-08,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-01,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 028-000-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2024-03-12,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Brad Stephens,2024-03-04,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2024-03-15,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Ryan Spain,2024-04-02,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Travis Weaver,2024-03-08,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-03-06,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-23,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-26,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kevin Schmidt,2024-03-12,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2024-04-01,['amendment-introduction'],IL,103rd +Assigned to Health Care Licenses Committee,2024-01-31,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Fred Crespo,2024-04-02,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-13,[],IL,103rd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2024-03-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-02-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-02-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Suspend Rule 21 - Prevailed,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-02-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 026-000-000,2023-03-22,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-02-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2023-02-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Assigned to Health Care Licenses Committee,2024-03-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 022-000-000,2023-03-07,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Ethics & Elections,2024-02-29,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2023-03-07,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2024-03-14,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2024-04-11,['amendment-introduction'],IL,103rd +Do Pass Education; 011-000-000,2024-03-06,['committee-passage'],IL,103rd +Chief Sponsor Changed to Sen. Laura Ellman,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-02-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2023-03-02,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass Education; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Moved to Suspend Rule Sen. David Koehler; 3-6(a),2023-02-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +Assigned to Education,2023-02-28,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-04-26,[],IL,103rd +Do Pass State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2023-03-08,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-02-07,[],IL,103rd +Do Pass Financial Institutions; 006-002-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-11-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-08-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Postponed - Licensed Activities,2024-02-21,[],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-03-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2023-03-01,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-21,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2024-03-04,['amendment-introduction'],IL,103rd +Assigned to Consumer Protection Committee,2024-03-05,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-03-12,[],IL,103rd +Chief Senate Sponsor Sen. John F. Curran,2024-05-01,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2023-02-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2024-02-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2023-03-06,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-02,[],IL,103rd +Postponed - Health and Human Services,2023-02-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-02-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Postponed - Transportation,2023-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-03-08,[],IL,103rd +Do Pass Health and Human Services; 012-000-000,2023-03-22,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sue Rezin,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-02-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass Executive; 010-000-000,2024-03-07,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-03-03,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-01,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-02-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-05-01,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Tom Bennett,2024-03-05,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Neil Anderson,2023-02-23,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. David Koehler,2024-02-06,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Assigned to Appropriations- Education,2024-03-12,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-04-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Insurance,2023-02-14,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Health Care Licenses Committee,2024-03-12,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-25,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Do Pass Executive; 009-000-000,2024-02-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-12-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Postponed - Judiciary,2024-02-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-03-25,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-11-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Postponed - Health and Human Services,2023-03-22,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-11-08,[],IL,103rd +Do Pass Higher Education; 011-000-000,2023-02-22,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-05-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Do Pass Transportation; 014-000-000,2024-03-06,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Thaddeus Jones,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2024-03-22,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Arrived in House,2023-05-24,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-11-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Erica Harriss,2024-03-08,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-02-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass State Government; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +Do Pass Executive,2024-02-21,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-01,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-21,[],IL,103rd +Do Pass Public Health; 007-000-000,2024-03-06,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-02-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2023-02-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-03-07,[],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-02-23,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2023-02-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-04,[],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 18, 2024",2024-04-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2024-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-16,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2023-03-07,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-03-07,['amendment-introduction'],IL,103rd +Assigned to Health Care Licenses Committee,2024-01-31,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2024-02-20,['amendment-introduction'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-06,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2024-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-28,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-02-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2024-03-07,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2024-02-29,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-03-03,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2024-03-08,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-02-09,[],IL,103rd +Do Pass Licensed Activities; 008-000-000,2024-03-07,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-01-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-02-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Do Pass Licensed Activities; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2023-03-02,['amendment-introduction'],IL,103rd +Re-assigned to Appropriations - Health and Human Services,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-03,[],IL,103rd +Do Pass Agriculture; 012-000-000,2023-03-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 8, 2024",2024-02-07,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Erica Harriss,2024-02-08,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-02-06,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2024-01-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +Postponed - Local Government,2024-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-02-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 8, 2024",2024-02-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-02-20,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Re-assigned to Appropriations- Education,2024-01-10,['referral-committee'],IL,103rd +Chief House Sponsor Rep. Robyn Gabel,2023-05-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-15,[],IL,103rd +Postponed - Environment and Conservation,2024-02-08,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-03-01,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-21,[],IL,103rd +Re-assigned to Appropriations - Health and Human Services,2024-01-31,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass Transportation; 016-000-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Re-assigned to Appropriations- Public Safety and Infrastructure,2024-01-10,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-06,[],IL,103rd +Do Pass Environment and Conservation; 006-002-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2023-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Do Pass Licensed Activities; 007-000-000,2024-03-14,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2024-04-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2023-03-03,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Robyn Gabel,2024-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-02-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-02-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-02-21,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-07,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2024-02-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted; 055-000-000,2024-05-25,['passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-14,[],IL,103rd +Remove Chief Co-Sponsor Rep. Yolonda Morris,2024-04-18,[],IL,103rd +Referred to Congratulatory Consent Calendar,2023-05-04,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Remove Chief Co-Sponsor Rep. Yolonda Morris,2024-04-18,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Mental Health & Addiction Committee,2024-03-05,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-24,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-07,['referral-committee'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-02-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +Removed Co-Sponsor Rep. William E Hauter,2024-03-01,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-29,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Postponed - Judiciary,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-17,[],IL,103rd +Assigned to Licensed Activities,2023-02-14,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2023-03-01,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2023-05-10,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-02-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2024-03-05,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-03-03,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-03-11,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-03-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-04-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Re-referred to Assignments,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-01-26,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-04-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Assigned to Public Health Committee,2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-02-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Do Pass Financial Institutions; 007-000-000,2024-03-06,['committee-passage'],IL,103rd +Arrive in Senate,2023-02-15,['introduction'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-04-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-02-23,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Postponed - Education,2024-03-13,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. William ""Will"" Davis",2023-03-07,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-11-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-02-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-03-28,[],IL,103rd +Postponed - Education,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Removed Co-Sponsor Rep. Norine K. Hammond,2023-02-21,[],IL,103rd +To Subcommittee on State Gov. Special Issues,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-07,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-02,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-02-22,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-03-21,['referral-committee'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-18,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2023-03-01,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-02-24,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Motion Filed to Suspend Rule 21 Human Services Committee; Rep. Robyn Gabel,2023-05-03,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2024-03-06,['committee-passage'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Resolution Adopted,2023-05-02,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-02-01,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-13,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-05-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2023-02-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-03-11,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +Be Adopted Early Childhood Education; 006-000-000,2023-03-29,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-08-18,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2023-03-29,['amendment-introduction'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-03-06,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-04-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-03-18,[],IL,103rd +Resolution Adopted,2023-03-28,['passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Arrived in House,2024-05-25,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2024-03-18,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Amy L. Grant,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2024-03-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-03-01,['amendment-introduction'],IL,103rd +Resolution Adopted; 055-000-000,2024-05-25,['passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Removed Co-Sponsor Rep. Jonathan Carroll,2023-02-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2024-03-04,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-29,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2024-03-12,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2024-02-22,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-23,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2023-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-08,[],IL,103rd +Resolution Adopted,2023-05-15,['passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-07-17,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-01,[],IL,103rd +Re-assigned to Higher Education,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-01-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2023-09-08,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-01-30,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-03-02,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-03-29,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-05-13,[],IL,103rd +Resolution Adopted,2024-02-07,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-02-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Labor,2024-03-06,['referral-committee'],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Postponed - Local Government,2024-03-14,[],IL,103rd +Postponed - Licensed Activities,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-01,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-10-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2024-01-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-28,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Do Pass / Short Debate Housing; 012-005-000,2024-03-21,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. William E Hauter,2023-02-01,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-18,[],IL,103rd +Chief House Sponsor Rep. Robyn Gabel,2024-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-02-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Resolution Adopted,2023-05-15,['passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Chief House Sponsor Rep. Robyn Gabel,2024-05-27,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-09-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-20,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-28,[],IL,103rd +First Reading,2023-05-02,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-02-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2024-02-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Insurance Committee,2024-02-14,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-11,[],IL,103rd +Waive Posting Notice,2023-03-07,[],IL,103rd +Postponed - Health and Human Services,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-02-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-01-18,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2024-02-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-02-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-22,[],IL,103rd +Re-assigned to Appropriations,2024-01-10,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Resolution Adopted,2023-02-23,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-20,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2024-03-08,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-02-22,[],IL,103rd +To Civil Procedure & Tort Liability subcommittee,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-20,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-14,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2024-03-07,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2024-04-04,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-02-14,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-13,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Removed Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-05-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2024-02-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2024-02-07,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-02-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-02-08,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-07-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-02-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-06-03,[],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-07-02,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +To Subcommittee on Privacy,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-06-11,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 24, 2023",2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-03-01,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 11, 2023",2023-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-01,[],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 018-000-000,2024-03-05,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-02-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-11-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Travis Weaver,2024-03-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-04-27,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-14,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2023-02-14,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-05-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Judiciary,2024-02-06,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2023-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Remains in Insurance Committee,2023-03-09,[],IL,103rd +To Special Issues Subcommittee,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to State Government Administration Committee,2024-03-12,['referral-committee'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2024-02-29,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2024-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-02-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-03-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-02-09,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-02-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dave Syverson,2023-03-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Resolution Adopted,2023-05-02,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Removed Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 17, 2023",2023-05-16,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 8, 2024",2024-02-07,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2023-03-01,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2023-03-13,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-02-07,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Re-assigned to Insurance,2024-01-10,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Re-assigned to State Government,2024-01-10,['referral-committee'],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 020-000-000,2024-03-14,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-02-27,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-07,[],IL,103rd +Re-assigned to Transportation,2024-01-10,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-09,[],IL,103rd +Re-assigned to Health and Human Services,2024-01-10,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Resolution Adopted,2023-03-29,['passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2024-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Chief Sponsor Changed to Rep. Nicholas K. Smith,2023-03-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-09,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-09,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +To Subcommittee on Special Issues,2024-02-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-02-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Caulkins,2023-04-19,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 014-000-000,2024-03-21,['committee-passage'],IL,103rd +Re-assigned to Labor,2024-01-10,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Postponed - Licensed Activities,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Matt Hanson,2023-03-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-02-06,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2023-03-01,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-02,[],IL,103rd +Resolution Adopted,2023-05-15,['passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2023-03-07,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2024-03-07,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2024-03-08,[],IL,103rd +Re-assigned to Higher Education,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-01-26,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-01-24,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-03-21,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-20,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Assigned to Executive Committee,2023-02-15,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-02,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Resolution Adopted,2024-05-29,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-28,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2024-04-03,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2023-03-20,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-22,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-03-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2024-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-02-28,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-02-15,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Public Utilities Committee,2024-03-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-04,[],IL,103rd +Added as Chief Co-Sponsor Sen. Chapin Rose,2023-02-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-05-28,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-02-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-06,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-26,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Re-assigned to Special Committee on Criminal Law and Public Safety,2024-01-10,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-06-10,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-28,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-07-11,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-15,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-07-02,[],IL,103rd +Re-assigned to Judiciary,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-07-11,[],IL,103rd +Chief Sponsor Changed to Rep. Suzanne M. Ness,2023-03-21,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Assigned to Energy and Public Utilities,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-03-25,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-05-21,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-05-13,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Police & Fire Committee,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-03,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-04-25,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Dagmara Avelar,2024-02-09,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-20,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Resolution Adopted,2023-05-05,['passage'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-15,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Arrived in House,2024-05-25,['introduction'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-06,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-03-09,[],IL,103rd +Remove Chief Co-Sponsor Rep. Suzanne M. Ness,2024-04-18,[],IL,103rd +Remove Chief Co-Sponsor Rep. Suzanne M. Ness,2024-04-18,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2024-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-19,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2023-02-14,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-29,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Postponed - Energy and Public Utilities,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Re-assigned to Executive,2023-03-22,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-03-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Margaret Croke,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2023-03-03,['amendment-introduction'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2023-10-19,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-02-22,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2024-03-06,['amendment-passage'],IL,103rd +To Subcommittee on Liquor,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments",2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2024-04-15,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-13,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Chapin Rose,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-21,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-01,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-02-09,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-02-01,[],IL,103rd +Assigned to Labor,2023-02-28,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-04-19,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-02-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2024-02-23,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-03-21,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-04-28,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-02-08,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-18,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +To Criminal Administration and Enforcement Subcommittee,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-04,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-03-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-13,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-03-21,[],IL,103rd +Chief House Sponsor Rep. Gregg Johnson,2024-05-27,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2023-02-16,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2024-03-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 071-040-000,2023-05-03,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations - Health and Human Services,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-06,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Public Health Committee,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-18,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-01-18,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-04-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-04-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-02-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2024-03-07,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-13,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Assigned to Public Utilities Committee,2024-02-28,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Assigned to Higher Education Committee,2023-02-28,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-04-26,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-16,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-02-26,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2024-03-08,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Steven Reick,2024-03-18,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-04-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-05-10,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-29,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-02,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Referred to Rules Committee,2023-05-02,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2023-03-07,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Re-assigned to Appropriations,2024-01-10,['referral-committee'],IL,103rd +Do Pass Health and Human Services; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Be Adopted Environment and Conservation; 006-000-000,2023-03-30,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-07-31,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2023-03-24,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-03-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-03-19,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-13,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-16,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-02-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 30, 2023",2023-03-29,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2024-05-02,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Postponed - Education,2024-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-01-29,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2024-03-15,['amendment-introduction'],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +To Constitutional Law Subcommittee,2024-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-02-24,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-02-23,[],IL,103rd +Re-assigned to State Government,2024-01-10,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-02-09,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-03,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Mary Beth Canty,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2024-02-20,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +To Utilities Subcommittee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-22,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-05-05,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2024-04-03,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Daniel Didech,2023-03-03,['amendment-introduction'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-03-12,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2023-02-28,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-03-03,['amendment-introduction'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +"Removed Co-Sponsor Rep. Maurice A. West, II",2023-03-02,[],IL,103rd +Re-assigned to Appropriations-Health & Human Services Committee,2024-03-20,['referral-committee'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dan Caulkins,2023-03-07,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-02-17,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-05-28,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-02-09,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-02,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-01,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 009-000-000,2023-03-02,['committee-passage'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-02-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-02-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2023-03-15,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2023-03-14,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-17,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2023-03-03,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2024-04-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Blaine Wilhour,2023-03-10,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Sponsor Changed to Rep. Norine K. Hammond,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Norine K. Hammond,2023-03-13,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-13,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 009-000-000,2023-02-23,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 008-004-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-16,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2023-02-24,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 009-000-000,2023-03-02,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2023-03-21,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Remove Chief Co-Sponsor Rep. Amy Elik,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-02-28,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-02-28,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-10,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-02-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Resolution Adopted,2023-10-26,['passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2023-03-01,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-02-15,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-04-27,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-03-10,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-03-21,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-14,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Assigned to Police & Fire Committee,2023-02-28,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2023-03-09,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-08,['amendment-failure'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-17,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-23,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Do Pass Energy and Public Utilities; 015-000-000,2023-02-23,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-010-000,2023-03-07,['committee-passage'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-02-14,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +To Subcommittee on Government Operations,2023-02-16,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Maura Hirschauer,2023-03-01,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass Judiciary; 009-000-000,2023-02-08,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-03-13,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-01,[],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-02,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2024-04-12,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2023-02-23,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Financial Institutions and Licensing Committee,2024-03-12,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lilian Jiménez,2024-03-27,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-01,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Nabeela Syed,2023-03-20,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2024-03-05,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. William ""Will"" Davis",2023-03-21,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-04-02,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Debbie Meyers-Martin,2024-03-25,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-02-28,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-14,['referral-committee'],IL,103rd +Removed Co-Sponsor Rep. Jawaharial Williams,2023-02-24,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Remove Chief Co-Sponsor Rep. Anna Moeller,2023-02-27,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dan Swanson,2023-03-10,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2024-04-03,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-03-07,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2023-03-15,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-01,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 016-000-000",2023-03-07,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Insurance Committee,2024-01-31,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2024-03-05,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2024-03-12,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2024-03-12,[],IL,103rd +Chief Sponsor Changed to Rep. Lilian Jiménez,2023-03-09,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Tony M. McCombie,2023-02-21,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-07,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-02-22,[],IL,103rd +Chief Sponsor Changed to Rep. Diane Blair-Sherlock,2024-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2023-03-21,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2024-03-06,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +"Do Pass / Short Debate Small Business, Tech Innovation, and Entrepreneurship Committee; 010-000-000",2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Do Pass / Standard Debate Judiciary - Criminal Committee; 008-006-000,2024-03-12,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-21,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 005-000-000,2024-04-04,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-07,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2024-01-31,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-02-29,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-03-13,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2024-02-26,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2023-03-17,['amendment-introduction'],IL,103rd +Reported Back To Revenue & Finance Committee;,2024-04-04,[],IL,103rd +Chief Sponsor Changed to Rep. Michael J. Kelly,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-20,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-03-15,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2024-03-05,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 010-005-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-08-08,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-14,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +Assigned to Executive Committee,2024-02-29,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-02-01,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2023-03-07,[],IL,103rd +Assigned to Personnel & Pensions Committee,2024-01-31,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-07-24,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-03-21,['amendment-introduction'],IL,103rd +Assigned to Ethics & Elections,2024-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-04-25,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-04-02,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Fred Crespo,2023-03-20,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +Do Pass Judiciary; 008-000-000,2024-03-06,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2023-03-21,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2023-03-21,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2023-03-17,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2023-03-16,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-02-21,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Consumer Protection Committee,2023-03-01,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-07,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2023-03-14,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Motion to Suspend Rule 21 - Prevailed 071-040-000,2023-05-03,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2024-04-01,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-03-02,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-23,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-03-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-03-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-04-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Assigned to Judiciary,2024-02-28,['referral-committee'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-01-31,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Assigned to Appropriations-General Services Committee,2024-01-31,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-01-26,[],IL,103rd +Do Pass Local Government; 010-000-000,2024-03-14,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-02-20,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2024-04-04,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Travis Weaver,2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2024-03-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-10-25,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-05-01,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-02-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-03-13,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-20,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Public Health Committee,2024-03-12,[],IL,103rd +Assigned to Appropriations-General Services Committee,2024-03-05,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2024-04-02,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-02-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-04-03,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-05-13,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2024-02-26,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-05-01,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-03-06,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-03-13,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2024-01-30,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2024-04-05,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 20, 2024",2024-02-08,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2024-03-08,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2024-01-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-02-16,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-05-01,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-03-27,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-04,[],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Rachel Ventura,2023-03-03,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Jil Tracy,2023-02-21,[],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-10-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2024-04-17,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-11-14,[],IL,103rd +Re-assigned to Judiciary - Criminal Committee,2024-04-02,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-22,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-03-19,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-12-07,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-03-03,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-11-07,[],IL,103rd +Assigned to Higher Education Committee,2024-03-12,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2023-02-21,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-02-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-14,[],IL,103rd +Waive Posting Notice,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-02-22,[],IL,103rd +Re-assigned to Rules Committee,2024-03-12,['referral-committee'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-03-12,[],IL,103rd +To Subcommittee on Property,2023-02-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-23,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2023-03-03,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-02-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-03,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-20,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations - Health and Human Services,2024-03-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-02-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2024-04-09,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-03-12,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2023-03-17,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-02-14,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Education,2024-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2023-03-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2023-03-23,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Education,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Re-assigned to Appropriations,2024-01-10,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-02-23,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2023-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-22,[],IL,103rd +Resolution Adopted,2024-02-22,['passage'],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Assigned to Executive Committee,2023-02-07,['referral-committee'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-05-02,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-02-27,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Paul Faraci,2024-04-05,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-06,[],IL,103rd +Do Pass Labor; 011-003-000,2023-03-22,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Nicholas K. Smith,2023-03-16,['amendment-introduction'],IL,103rd +Resolution Adopted,2023-05-27,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Chapin Rose,2024-01-30,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2024-03-05,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2024-03-26,['amendment-introduction'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2024-03-06,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Javier L. Cervantes,2023-03-02,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-08,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-02-15,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 009-000-000,2024-03-22,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Assigned to State Government,2023-02-14,['referral-committee'],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Cristina H. Pacione-Zayas,2023-03-03,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Veterans Affairs,2023-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-08,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ann Gillespie,2024-03-01,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2024-03-07,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-03-24,['amendment-introduction'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2023-02-23,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2023-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-02-16,[],IL,103rd +Assigned to Insurance,2024-02-20,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2024-03-05,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-09,[],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2024-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Public Health,2023-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2023-03-23,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2024-03-05,[],IL,103rd +Do Pass Licensed Activities; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2024-03-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2024-03-05,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2024-03-12,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-07,[],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2024-02-16,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dale Fowler,2024-03-07,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-29,[],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Omar Aquino,2023-02-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2024-02-07,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sally J. Turner,2024-02-16,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-13,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Seth Lewis,2023-03-03,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-02-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Public Health,2024-03-12,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-03-28,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-12,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-02-28,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2023-03-21,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-03-06,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2024-04-04,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-18,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Jil Tracy,2023-03-06,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-03-13,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-01,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2023-03-21,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-23,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2024-03-12,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2023-03-09,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Margaret Croke,2024-02-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-02-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-General Services Committee,2023-03-07,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-03-09,[],IL,103rd +Referred to Resolutions Consent Calendar,2024-05-01,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2023-11-09,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-27,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-07,[],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-05-09,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Omar Aquino,2023-03-20,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2023-03-07,[],IL,103rd +3/5 Vote Required,2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-07,[],IL,103rd +Chief House Sponsor Rep. Norine K. Hammond,2023-05-24,[],IL,103rd +Postponed - Financial Institutions,2024-04-30,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-02-06,[],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Do Pass Environment and Conservation; 008-000-000,2023-03-09,['committee-passage'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-07,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-01,['amendment-introduction'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-03-25,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-06,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 23, 2023",2023-03-22,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-10,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-09,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-04,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Do Pass Transportation; 015-000-000,2023-03-08,['committee-passage'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-12,[],IL,103rd +Recommends Do Pass Subcommittee/ Judiciary - Criminal Committee; 005-000-000,2024-04-04,['committee-passage'],IL,103rd +Do Pass Insurance; 008-000-000,2024-03-13,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-16,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-03-14,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-04,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-10,[],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 009-000-000,2024-04-02,['committee-passage'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-03-07,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-02-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-02-28,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-01,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-17,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-02-17,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2023-03-16,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2023-03-01,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2023-03-21,['amendment-introduction'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2023-03-17,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2023-03-09,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 021-005-000,2023-03-01,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 008-004-000,2023-03-08,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-02,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Fred Crespo,2023-03-10,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 006-003-000,2023-03-02,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2023-03-06,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Consumer Protection Committee,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-02,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-14,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-02-23,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-12,[],IL,103rd +First Reading,2024-01-16,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2024-04-02,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-04-18,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Joyce Mason,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-03,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2023-03-10,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +To Re-Entry Policy Subcommittee,2024-03-07,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 005-000-000,2023-05-03,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2023-03-20,['amendment-introduction'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-14,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2023-03-21,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-27,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-25,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-02-22,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Economic Opportunity & Equity Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-05-09,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-08-08,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Cyril Nichols,2023-03-21,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +First Reading,2023-05-04,['reading-1'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-05-15,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +First Reading,2023-05-04,['reading-1'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +First Reading,2023-05-04,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2024-04-19,['amendment-introduction'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-11,[],IL,103rd +First Reading,2023-05-04,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-20,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-06,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mark L. Walker,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-02-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Pension Note Filed,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-17,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-04,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-09,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2023-03-09,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-02,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-10,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 009-000-000,2023-03-07,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-02-28,[],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-02,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-02,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Norine K. Hammond,2023-03-01,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-01,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass / Short Debate Economic Opportunity & Equity Committee; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2023-03-21,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-20,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Debbie Meyers-Martin,2023-03-20,['amendment-introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Suzanne M. Ness,2023-03-02,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2023-03-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-03-21,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2023-03-09,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-10,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass / Short Debate Insurance Committee; 010-000-000,2023-03-09,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-03-13,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 21, 2023",2023-02-16,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Public Utilities Committee,2024-03-05,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Ethics & Elections,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-14,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-20,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-03-05,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-29,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Resolution Adopted,2024-03-22,['passage'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +To Civil Procedure & Tort Liability subcommittee,2023-03-01,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2024-04-17,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-02-23,[],IL,103rd +Do Pass Licensed Activities; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 16, 2023",2023-02-15,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-22,[],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +Do Pass / Short Debate Child Care Accessibility & Early Childhood Education Committee; 014-000-000,2024-02-08,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-03-01,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 14, 2023",2023-02-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2024-03-04,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-02-16,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-29,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-03-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2024-03-27,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2024-03-05,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-02,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2024-03-27,[],IL,103rd +Assigned to Insurance Committee,2024-02-28,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2024-03-12,[],IL,103rd +Do Pass / Short Debate Child Care Accessibility & Early Childhood Education Committee; 014-000-000,2024-03-22,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Fiscal Note Requested by Rep. Ryan Spain,2024-03-20,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-07,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-02-22,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2024-02-20,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-16,[],IL,103rd +Second Reading - Standard Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2023-02-06,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-01-11,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Referred to Revenue & Finance Committee,2024-03-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Wayne A Rosenthal,2024-04-11,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Human Services Committee,2024-01-31,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2023-03-02,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-29,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-12-01,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-02-07,[],IL,103rd +Resolution Adopted 110-000-000,2024-05-02,['passage'],IL,103rd +To Sex Offenses and Sex Offender Registration Subcommittee,2023-03-07,[],IL,103rd +"Motion Do Pass - Lost Elementary & Secondary Education: Administration, Licensing & Charter Schools; 004-002-000",2024-03-06,['committee-failure'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-05-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kevin Schmidt,2024-03-06,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-03-25,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-05,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-03-12,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Restorative Justice,2024-03-20,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-03-05,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-03-20,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Brandun Schweizer,2024-04-11,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-02-08,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2024-03-27,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-15,[],IL,103rd +Arrive in Senate,2024-05-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-15,[],IL,103rd +Arrive in Senate,2024-05-14,['introduction'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Moved to Suspend Rule Sen. Kimberly A. Lightford,2024-02-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2024-04-17,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-03-27,[],IL,103rd +Arrive in Senate,2023-05-18,['introduction'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-006-000,2024-03-21,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-05-24,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-23,[],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 012-000-000,2024-03-12,['committee-passage'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Financial Institutions and Licensing Committee,2024-03-12,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-04-01,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2024-05-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-04-03,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-05-03,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-03-27,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jawaharial Williams,2024-04-16,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2024-03-26,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-02-29,[],IL,103rd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2024-05-08,['amendment-passage'],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +Chief Co-Sponsor Changed to Rep. Camille Y. Lilly,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-05-08,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Gaming Committee,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-02-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-03,[],IL,103rd +Chief Sponsor Changed to Rep. Norine K. Hammond,2024-04-01,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-22,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-03-27,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-05-24,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-02,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-03-20,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2024-04-02,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2024-05-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-03-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-05-02,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-05,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Reported Back To Special Committee on Criminal Law and Public Safety; 003-000-000,2023-03-22,[],IL,103rd +Assigned to Executive,2024-02-06,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2024-03-07,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-08,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-03,[],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Economic Opportunity & Equity Committee,2024-03-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-20,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +To Subcommittee on Property,2023-03-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"To Subcommittee on Gaming, Wagering, and Racing",2024-02-08,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Financial Institutions,2023-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dan McConchie,2024-03-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Seth Lewis,2024-04-09,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-02-09,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2024-03-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-03-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2024-02-05,[],IL,103rd +Second Reading,2024-04-11,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-22,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-03-12,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-07,[],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-02-14,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-03-12,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2024-03-08,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Assigned to Insurance Committee,2024-02-14,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Natalie Toro,2024-04-05,['amendment-introduction'],IL,103rd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-20,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-04-04,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2024-04-15,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-02-23,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Correctional Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2024-03-08,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-02-24,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +To Subcommittee on Elections,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2024-03-07,['amendment-introduction'],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2024-03-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-02-28,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-02-28,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Cyril Nichols,2023-03-16,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-09,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-14,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dale Fowler,2024-04-03,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Health and Human Services; 009-000-000,2024-03-13,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Michelle Mussman,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2024-03-18,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2024-03-06,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-06,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2024-03-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Economic Opportunity & Equity Committee,2024-03-12,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Willie Preston,2024-02-26,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Tracy Katz Muhl,2024-03-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2024-03-12,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2023-03-07,[],IL,103rd +To Subcommittee on Elections,2024-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Chief Sponsor Changed to Rep. Natalie A. Manley,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2024-03-07,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Sue Rezin,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2024-03-08,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dave Syverson,2024-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-02-27,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2024-03-12,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2024-03-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Kimberly Du Buclet,2024-05-01,[],IL,103rd +Do Pass State Government; 007-000-000,2024-02-21,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Do Pass / Short Debate Appropriations-General Services Committee; 015-000-000,2024-04-12,['committee-passage'],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2024-04-16,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Natalie Toro,2024-04-05,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-05,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-03,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-03-17,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-04,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-02-09,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2024-05-25,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2024-03-04,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-03-25,[],IL,103rd +Resolution Adopted,2024-03-13,['passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Omar Aquino,2024-03-06,[],IL,103rd +Arrived in House,2024-05-01,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-06,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 11, 2024",2024-04-10,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-07,[],IL,103rd +Resolution Adopted,2023-03-10,['passage'],IL,103rd +Resolution Adopted,2024-02-08,['passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Resolution Adopted,2023-03-31,['passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2024-03-13,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Subcommittee on Elections,2024-03-07,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations - Health and Human Services,2024-03-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-04-05,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Chief Sponsor Changed to Rep. Diane Blair-Sherlock,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Consumer Protection Committee,2024-03-20,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2024-03-13,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-03,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-10,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 009-000-000,2023-03-07,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2024-03-06,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Jay Hoffman,2023-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jenn Ladisch Douglass,2024-03-12,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-06-25,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Agriculture,2023-03-07,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Joe C. Sosnowski,2024-04-01,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2024-03-26,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-03-21,['committee-passage'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Sponsor Removed Sen. Mike Porfirio,2024-02-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-03-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Re-assigned to Appropriations - Health and Human Services,2024-01-10,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-16,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Do Pass Executive; 010-000-000,2024-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Re-assigned to Executive,2024-03-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jackie Haas,2024-03-19,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2023-03-21,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2024-02-26,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-03-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2023-03-07,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2024-03-12,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-22,['reading-2'],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 010-003-000,2024-03-06,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-03-04,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Do Pass Insurance; 009-000-000,2023-03-22,['committee-passage'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-03-08,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2023-03-06,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-18,[],IL,103rd +Do Pass Transportation; 014-000-000,2024-03-06,['committee-passage'],IL,103rd +Re-assigned to Insurance,2024-04-16,['referral-committee'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-03-13,[],IL,103rd +Assigned to Judiciary,2024-03-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-03-06,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +To Subcommittee on Privacy,2023-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-05,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. David Koehler,2023-03-03,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-06,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-21,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-06,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Do Pass Health and Human Services; 013-000-000,2023-03-08,['committee-passage'],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2024-03-13,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-02-28,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-06-11,[],IL,103rd +Assigned to Appropriations,2023-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-03-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2024-03-21,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Omar Aquino,2023-03-24,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-02-20,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-19,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2023-02-23,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Financial Institutions,2024-03-12,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2024-03-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-04-20,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-08,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Postponed - Licensed Activities,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2024-02-21,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-28,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-02-02,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-06-11,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-01-30,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-02-09,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Ethics & Elections,2023-03-07,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-08-18,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Postponed - Local Government,2024-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Energy & Environment Committee,2024-03-12,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-05-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2023-02-28,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-16,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Harry Benton,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-18,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-02-22,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-01-11,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Utilities Subcommittee,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Norine K. Hammond,2023-02-27,[],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-02-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2024-04-16,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Energy & Environment Committee,2023-03-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. David Friess,2023-03-28,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2024-04-04,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2024-04-02,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Robyn Gabel,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-12,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Assigned to Insurance Committee,2024-02-29,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Patrick Windhorst,2024-03-21,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-16,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-08,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2024-04-08,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2023-03-03,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-03-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-03-02,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-01-25,[],IL,103rd +Resolution Adopted,2024-04-12,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-02-07,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-28,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-02-23,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Arrive in Senate,2023-05-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-05-24,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-22,[],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-04-02,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Postponed - Insurance,2024-03-06,[],IL,103rd +Assigned to Education,2023-02-07,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-05-18,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-10-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-02-08,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Resolution Adopted,2023-02-08,['passage'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-11-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-16,[],IL,103rd +Re-assigned to Appropriations- Education,2024-01-10,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-20,[],IL,103rd +Remove Chief Co-Sponsor Rep. Michael J. Kelly,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2023-03-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2024-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jenn Ladisch Douglass,2023-03-06,['amendment-introduction'],IL,103rd +Chief Sponsor Changed to Rep. Carol Ammons,2023-03-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-07-02,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sharon Chung,2023-03-17,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-02-24,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-04,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-01,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Resolution Adopted,2023-05-02,['passage'],IL,103rd +Resolution Adopted,2024-04-19,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-16,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Bradley Fritts,2023-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-07-11,[],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Maurice A. West, II",2023-03-17,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-03-16,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-11-08,[],IL,103rd +Postponed - Judiciary,2024-03-06,[],IL,103rd +Assigned to Energy & Environment Committee,2023-02-21,['referral-committee'],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-09,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-16,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-05-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-12-15,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-02-22,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-02-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Referred to Rules Committee,2023-02-07,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-03-13,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-13,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-05-18,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Prevailed to Suspend Rule 3-6(a),2023-01-12,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-05-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-02-15,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-07-11,[],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2024-03-04,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-02-05,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-15,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-24,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-02-27,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-23,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-02-22,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-07-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2023-03-20,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-05-17,[],IL,103rd +Chief Co-Sponsor Changed to Rep. John M. Cabello,2023-03-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2024-03-20,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-22,['referral-committee'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-28,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Fred Crespo,2024-04-03,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-01-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-03-01,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2023-09-19,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-11-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-07-05,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Adopted Both Houses,2024-03-14,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-03,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-01-16,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations - Health and Human Services,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-04-12,[],IL,103rd +Assigned to Ethics & Elections,2024-03-05,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Resolution Adopted,2023-05-02,['passage'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-05-16,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2023-03-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-02-01,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2023-04-18,['committee-passage-favorable'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-16,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Resolution Adopted,2023-05-15,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-18,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-20,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Arrive in Senate,2023-05-17,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2023-03-02,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-11-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-10-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2024-04-10,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-15,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-01-30,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Motion Filed to Suspend Rule 21 Rules Committee; Rep. Natalie A. Manley,2024-02-29,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-03-07,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-11-08,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-02-22,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-05-16,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-02-21,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2023-03-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-10-03,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-02-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Ethics & Elections,2024-03-21,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-07,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-02-28,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2023-04-20,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-27,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-02-23,[],IL,103rd +Recommends Be Adopted Police & Fire Committee; 013-000-000,2024-03-07,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-29,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-30,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-01-25,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-29,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-01,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-01-25,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-02-14,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 026-000-000,2023-03-08,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-03-12,[],IL,103rd +Prevailed to Suspend Rule 3-6(a),2024-01-17,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2024-03-04,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-25,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Public Utilities Committee,2024-04-02,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2024-02-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-02-15,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-02-02,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-25,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Referred to Rules Committee,2023-04-18,[],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-12,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-30,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-04-03,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-06,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-09,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Assigned to Human Services Committee,2023-02-15,['referral-committee'],IL,103rd +"Re-assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-05,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Assigned to Insurance,2023-02-14,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Resolution Adopted,2023-02-22,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Assigned to Public Utilities Committee,2024-03-05,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Tony M. McCombie,2023-03-10,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-29,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-04-20,[],IL,103rd +Chief Sponsor Changed to Rep. Charles Meier,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-04-18,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-03-23,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-10-25,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2023-03-16,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Arrive in Senate,2023-05-17,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-04-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-22,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-05-05,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-21,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-03-12,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Resolution Adopted; 056-000-000,2023-05-19,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Assigned to Licensed Activities,2023-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-04-27,[],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2024-02-14,['referral-committee'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-13,[],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2023-04-20,['introduction'],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Removed Co-Sponsor Rep. Harry Benton,2023-02-27,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2024-03-04,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-02-29,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will stay in Assignments,2024-03-05,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Do Pass / Short Debate Insurance Committee; 013-001-000,2023-02-28,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Referred to Rules Committee,2023-05-24,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Randy E. Frese,2023-03-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-04-02,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Sponsor Removed Sen. Andrew S. Chesney,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Education,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Assigned to Appropriations,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-05-04,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Resolution Adopted,2023-02-16,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-05-04,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-04,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 008-001-000,2023-02-28,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-01-30,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Public Utilities Committee,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-28,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-01,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-09-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2023-03-20,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-01-25,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-02-14,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2023-03-20,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Chapin Rose,2023-02-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-03-14,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-02-08,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-15,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-26,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 009-000-000,2023-02-23,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2023-03-21,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Assigned to Health and Human Services,2023-02-28,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-20,[],IL,103rd +Referred to Assignments,2023-02-09,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-03,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Norine K. Hammond,2023-03-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-01,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-04-26,[],IL,103rd +Resolution Adopted; 056-000-000,2023-05-03,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-01,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Paul Jacobs,2023-03-16,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-02-22,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-04-27,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Sponsor Removed Sen. Doris Turner,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-01,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-24,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2023-03-14,['amendment-introduction'],IL,103rd +Re-assigned to Revenue,2023-03-21,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2023-02-24,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-24,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2023-03-16,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Resolution Adopted; 054-000-000,2023-05-11,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Postponed - Higher Education,2023-02-22,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Postponed - Senate Special Committee on Pensions,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Chapin Rose,2023-02-14,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Approved for Consideration Assignments,2023-05-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-02-06,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +To Utilities Subcommittee,2024-03-13,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-01,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sue Rezin,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-14,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-27,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-01,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-02-15,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Mark L. Walker,2024-03-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-15,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-04-17,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Adam M. Niemerg,2023-03-20,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-15,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-06-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2023-03-14,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-02-29,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-02-26,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2024-02-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2023-02-14,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-03-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 010-004-000,2024-03-21,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2024-04-10,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-03-16,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-26,[],IL,103rd +Do Pass / Short Debate Executive Committee; 010-001-000,2024-03-21,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-02-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-04-11,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Bradley Fritts,2024-04-11,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-03-12,[],IL,103rd +Chief Sponsor Changed to Sen. Dale Fowler,2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2024-04-17,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-02-09,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-02,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2024-03-12,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Travis Weaver,2024-03-22,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-22,[],IL,103rd +Reported Back To Revenue & Finance Committee;,2024-04-04,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-19,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-03-11,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Public Utilities Committee,2024-03-20,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-15,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2024-03-13,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lilian Jiménez,2024-04-05,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-03-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-02,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Re-assigned to Labor & Commerce Committee,2024-03-14,['referral-committee'],IL,103rd +Remove Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-03,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-04-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-15,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2024-03-05,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-01-31,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-02-22,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-05-04,[],IL,103rd +Referred to Revenue & Finance Committee,2024-03-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-15,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2023-08-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-02-23,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Resolution Adopted 112-000-000,2024-04-30,['passage'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-11-09,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-03-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-05-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2024-05-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-01-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Resolution Adopted 112-000-000,2024-04-30,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-03,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-09,[],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-01-29,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-29,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-02-27,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-03-01,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2024-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-01,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Removed Co-Sponsor Rep. Norma Hernandez,2024-03-12,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-02,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-01,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-03-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-05-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2024-03-07,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-08,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-05-28,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-05-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-05-17,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-02,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2024-04-17,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-20,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-20,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-24,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-24,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-05-24,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-28,[],IL,103rd +Arrive in Senate,2023-05-18,['introduction'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-03-12,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Resolution Adopted 101-000-000,2023-05-24,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Resolution Adopted 109-000-000,2024-05-02,['passage'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-02,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-03-06,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Arrive in Senate,2024-05-09,['introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2024-03-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-05-07,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2024-04-11,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-04-15,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-03-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-15,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Resolution Adopted 110-000-000,2024-05-02,['passage'],IL,103rd +Assigned to Higher Education Committee,2024-02-28,['referral-committee'],IL,103rd +"House Committee Amendment No. 1 Adopted in Transportation: Regulations, Roads & Bridges; by Voice Vote",2024-05-14,['amendment-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Arrive in Senate,2024-05-14,['introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2023-02-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2024-03-13,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Cyril Nichols,2023-03-17,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-27,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-14,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-02-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-04-04,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2024-04-15,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-02-16,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-06,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2024-03-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2024-02-20,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-03-15,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-03-17,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Fiscal Note Requested by Rep. Patrick Windhorst,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Postponed - Licensed Activities,2023-02-23,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2024-04-09,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2024-05-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-04-02,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-11,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Housing,2024-03-13,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Ryan Spain,2024-02-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2023-03-09,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2024-03-13,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-04-03,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Remove Chief Co-Sponsor Rep. Charles Meier,2023-08-25,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Debbie Meyers-Martin,2024-02-16,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-General Services Committee,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2024-02-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-02-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-01-31,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-13,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-03-21,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2024-03-12,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Thaddeus Jones,2024-04-01,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-05-08,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-03-22,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 012-000-000,2024-03-13,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-09,[],IL,103rd +Assigned to Executive Committee,2024-03-27,['referral-committee'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2024-03-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Seth Lewis,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-02,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-05-17,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-02,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2024-04-15,['amendment-introduction'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-14,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-01,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Debbie Meyers-Martin,2024-03-18,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2024-03-12,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-29,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-10-23,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +To Sex Offenses and Sex Offender Registration Subcommittee,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-29,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-14,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-01,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-04-25,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-02-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-29,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 23, 2023",2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2024-03-20,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-09-27,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 010-000-000,2024-02-22,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-15,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2024-02-26,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Correctional Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-04-27,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2023-03-21,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2023-03-21,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-21,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-03-12,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-02-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-01,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2023-03-14,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Steve McClure,2023-03-01,['amendment-introduction'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-02-14,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-03,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Cyril Nichols,2023-03-21,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2024-03-13,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2024-04-05,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2024-03-27,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 010-000-000,2024-04-02,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-04-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2024-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-06,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2023-03-07,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Police & Fire Committee,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Dan McConchie,2024-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-03-20,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-02-29,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-02-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Assigned to Restorative Justice,2024-02-28,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2024-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2024-04-16,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2024-03-12,[],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-04,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2024-04-02,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-03-17,['amendment-introduction'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2024-04-02,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-010-000,2023-03-07,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2024-02-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2024-03-07,['amendment-introduction'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-03-05,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 20, 2024",2024-02-08,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-06,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-04,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Arrived in House,2024-05-17,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2023-03-07,[],IL,103rd +Removed Co-Sponsor Rep. Tom Weber,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-04-08,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-02-28,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Public Safety and Infrastructure,2024-03-12,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Agriculture,2023-03-08,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2024-03-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2024-02-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-02-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2024-03-13,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2023-03-01,['amendment-introduction'],IL,103rd +Do Pass Education; 013-000-000,2024-02-21,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Public Health,2023-03-07,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 009-005-000,2024-03-12,['committee-passage'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Public Safety and Infrastructure,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-12-13,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2024-03-12,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-03-09,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-20,['referral-committee'],IL,103rd +Postponed - Judiciary,2024-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Senate Special Committee on Pensions,2023-03-07,[],IL,103rd +Second Reading,2024-04-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Assigned to Executive,2024-03-20,['referral-committee'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-11-07,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Dagmara Avelar,2023-03-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Gaming Committee,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Terra Costa Howard,2024-03-13,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2024-03-05,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2024-04-04,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-03-16,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 014-000-000,2024-03-21,['committee-passage'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-03-13,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2024-03-07,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-05-23,[],IL,103rd +Resolution Adopted,2023-04-20,['passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2023-03-07,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2023-03-08,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-02-21,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass Licensed Activities; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-02-27,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Gregg Johnson,2024-03-20,['amendment-introduction'],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments",2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-03-07,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2024-02-28,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Senate Special Committee on Pensions,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Nabeela Syed,2024-03-08,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2024-03-13,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2024-03-05,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2024-04-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-03-08,[],IL,103rd +Removed Co-Sponsor Rep. Brandun Schweizer,2024-02-01,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Tom Bennett,2023-03-08,['amendment-introduction'],IL,103rd +Do Pass Education; 013-000-000,2023-03-08,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +To Subcommittee on Procurement,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Waive Posting Notice,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-02-07,[],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2023-03-10,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-08,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 010-005-000,2024-03-21,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2024-03-07,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-03-14,['amendment-introduction'],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-30,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2023-03-23,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-04-02,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Do Pass Higher Education; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2024-03-13,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2023-03-07,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2024-04-10,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-03-12,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2024-03-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2024-04-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Do Pass Education; 012-000-000,2024-03-06,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Senate Special Committee on Pensions,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Chief Co-Sponsor Changed to Rep. Robert ""Bob"" Rita",2023-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2023-03-02,['amendment-introduction'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Tom Bennett,2024-03-07,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2023-03-09,['amendment-introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-11-07,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-13,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-04-02,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Norma Hernandez,2023-02-21,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Steve McClure,2023-03-16,['amendment-introduction'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2023-02-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2023-03-07,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-05-20,[],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-08,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2023-03-21,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-14,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Chief Sponsor Changed to Sen. Javier L. Cervantes,2024-04-10,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Assigned to Appropriations- Education,2024-01-10,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-01-19,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +Chief House Sponsor Rep. Kimberly Du Buclet,2024-05-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-03-06,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-02-07,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2023-03-20,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Financial Institutions,2024-03-12,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2024-03-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-02-23,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2023-03-07,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-21,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2024-03-12,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2023-02-28,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-28,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Agriculture,2023-03-07,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kimberly Du Buclet,2024-04-11,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2023-05-02,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-02-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Financial Institutions,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2023-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-02-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-05-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Do Pass Health and Human Services; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-07,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-03-05,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2023-03-07,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-11,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2023-02-23,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-04-18,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Resolution Adopted,2024-01-16,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2024-04-04,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Postponed - Labor,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-19,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-13,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Porfirio,2024-03-11,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-03,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2024-04-30,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2024-03-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-14,[],IL,103rd +Postponed - Executive,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2024-02-22,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 20, 2024",2024-02-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-13,[],IL,103rd +Assigned to Mental Health & Addiction Committee,2024-03-05,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-02-07,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2023-03-16,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-13,[],IL,103rd +Postponed - Education,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-02-22,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 11, 2023",2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-28,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-10-18,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-05-11,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-11-09,[],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-05-26,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-03-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Postponed - Judiciary,2024-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-03-13,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Dan McConchie,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-04-20,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-10-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Postponed - State Government,2024-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2023-03-07,[],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 010-000-000,2024-04-02,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2024-03-05,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-01,[],IL,103rd +Assigned to Appropriations,2023-02-14,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +To Occupational Licenses Subcommittee,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2024-01-19,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-03-07,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Norine K. Hammond,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-04-17,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. William ""Will"" Davis",2024-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2023-09-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Harry Benton,2024-04-02,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 9, 2024",2024-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-09,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-03-27,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Re-assigned to State Government,2024-01-10,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Omar Aquino,2023-10-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Kelly M. Cassidy,2024-04-01,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-02-21,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-05-17,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-05-18,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations - Health and Human Services,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2024-03-06,['amendment-introduction'],IL,103rd +Re-assigned to Revenue,2024-01-24,['referral-committee'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Re-assigned to Insurance,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-04-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Fred Crespo,2023-10-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Michelle Mussman,2024-02-14,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-09-29,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-03-08,[],IL,103rd +Re-assigned to Revenue,2023-03-21,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-03-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Postponed - Senate Special Committee on Pensions,2023-03-30,[],IL,103rd +Re-referred to Assignments,2023-02-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-03-13,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2024-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Re-assigned to Judiciary,2024-01-10,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-01-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Counties & Townships Committee,2023-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-01,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jil Tracy,2023-03-06,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-02-26,[],IL,103rd +Postponed - Licensed Activities,2024-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-30,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Arrive in Senate,2023-05-18,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Joyce Mason,2024-03-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-04-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-01-23,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-02-22,[],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-01,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2023-02-23,['amendment-introduction'],IL,103rd +Resolution Adopted 113-000-000,2023-04-18,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-04-12,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-03-12,[],IL,103rd +Arrive in Senate,2023-05-17,['introduction'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-07-01,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-04-27,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-05-15,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Karina Villa,2023-03-06,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Resolution Adopted,2024-05-09,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-03-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-03-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-29,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-03-16,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-12-13,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-22,[],IL,103rd +Chief House Sponsor Rep. Michael T. Marron,2023-05-19,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-05-09,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-02-23,['referral-committee'],IL,103rd +Re-assigned to Insurance,2024-01-10,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-02-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-02-16,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2023-03-14,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-02-02,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-03-03,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-05-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-03-29,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2024-03-01,['amendment-introduction'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2024-03-20,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Postponed - Judiciary,2024-03-13,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-02-15,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-04-25,[],IL,103rd +Assigned to Personnel & Pensions Committee,2024-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-04-25,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-08,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-01,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-03-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2024-09-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-04-16,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2024-02-20,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Ethics & Elections,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2023-05-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-03-01,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-03-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-05-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-01-30,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2024-03-27,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Resolution Adopted,2024-05-03,['passage'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2024-02-20,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-05-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-04-02,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2023-03-14,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-05-19,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lindsey LaPointe,2023-05-09,[],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-01-31,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Public Safety and Infrastructure,2023-03-07,[],IL,103rd +Resolution Adopted,2023-05-02,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-09,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-02-15,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-21,[],IL,103rd +Resolution Adopted,2024-04-15,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-05-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-06,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +To Higher Ed-Degree Conferral Subcommittee,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +To Subcommittee on Firearms,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-04-28,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 24, 2024",2024-05-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-02-01,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-11-14,[],IL,103rd +Postponed - State Government,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-13,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2023-03-07,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 015-000-000,2024-04-02,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-23,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-07-27,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-05,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-09,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-04-28,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-03-04,[],IL,103rd +Chief Sponsor Changed to Sen. Willie Preston,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-02-15,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-13,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2024-01-26,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-05,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Omar Aquino,2023-02-21,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2023-03-14,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Arrive in Senate,2023-04-19,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-02-16,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Do Pass Insurance; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-23,[],IL,103rd +Postponed - Judiciary,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-01-10,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-10,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-02-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Norma Hernandez,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-11-16,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Suspend Rule 21 - Prevailed,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-02-28,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Police & Fire Committee,2024-04-02,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lilian Jiménez,2023-03-16,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 8, 2024",2024-02-07,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +To Insurance Main Subcommittee,2024-03-13,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-02-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-01-25,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-15,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-13,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-03-09,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Removed Co-Sponsor Rep. Maurice A. West, II",2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-18,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-17,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-03-15,['amendment-introduction'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-02-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2023-03-02,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Frances Ann Hurley,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-15,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-02-21,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-16,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2023-03-15,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 008-004-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-01-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dan Swanson,2023-03-10,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 008-004-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-11-15,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-02-16,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Re-assigned to Higher Education Committee,2023-03-09,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2023-02-24,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2023-03-02,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-17,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2023-03-20,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-20,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-01,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2023-03-21,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-02-27,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-02-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-23,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-22,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-01,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Gregg Johnson,2023-03-01,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. John M. Cabello,2023-03-21,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-10-16,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Nabeela Syed,2023-01-19,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2023-03-07,['amendment-introduction'],IL,103rd +Waive Posting Notice,2023-05-16,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Counties & Townships Committee,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2023-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Margaret Croke,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-10-25,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. David Friess,2023-03-20,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-10-25,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-14,[],IL,103rd +Do Pass / Short Debate Housing; 012-006-000,2023-03-08,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 027-000-000,2023-02-21,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-04-24,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-02-16,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Resolution Adopted,2024-03-07,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-07,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Public Utilities Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-24,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-02-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2023-03-15,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-02-08,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2023-03-20,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Financial Institutions and Licensing Committee,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Tom Weber,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 007-002-000,2023-02-28,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2023-03-15,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Counties & Townships Committee,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-03,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-02-23,[],IL,103rd +Do Pass / Short Debate Restorative Justice; 004-002-000,2023-02-23,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-02-17,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Michael J. Kelly,2023-03-01,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Arrived in House,2023-05-03,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Michael J. Kelly,2023-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2023-03-15,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 008-004-000,2023-03-01,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anthony DeLuca,2023-03-10,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 006-003-000,2023-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Jonathan Carroll,2023-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-03-05,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Resolution Adopted; 055-000-000,2023-05-19,['passage'],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-02-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-07,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-29,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 013-001-000,2023-03-08,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. David Friess,2023-03-21,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Remove Chief Co-Sponsor Rep. Randy E. Frese,2023-02-15,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-02-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2023-03-01,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Norine K. Hammond,2023-03-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Halbrook,2023-02-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-08,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-28,[],IL,103rd +Chief House Sponsor Rep. David Friess,2023-05-24,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2023-03-07,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Consumer Protection Committee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Assigned to Human Services Committee,2023-02-15,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-02-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-14,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-22,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2023-03-20,['amendment-introduction'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-11-09,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-05-10,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 016-000-000",2023-03-07,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. La Shawn K. Ford,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-03,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-23,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Pension Note Requested by Rep. Patrick Windhorst,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-03-10,['amendment-introduction'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-02-27,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-05-04,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. William E Hauter,2023-03-09,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Economic Opportunity & Equity Committee,2024-03-20,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2023-02-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Amy L. Grant,2023-03-02,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-23,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-06,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 018-009-000,2023-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-18,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2024-04-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2023-02-01,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-14,[],IL,103rd +Postponed - Health and Human Services,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-02-01,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-02-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-11,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-25,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-05-07,[],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +Postponed - Judiciary,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2024-03-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-11,[],IL,103rd +Assigned to State Government,2024-02-06,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dale Fowler,2024-03-08,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-05-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-04-05,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-04,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-02-01,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-18,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-06,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-01,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-04-25,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2023-03-01,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Jenn Ladisch Douglass,2024-04-02,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-04-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2024-09-12,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-03-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-11-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-05-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-05,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-02-28,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Thaddeus Jones,2024-03-20,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-05-18,[],IL,103rd +Referred to Rules Committee,2024-05-28,[],IL,103rd +Arrived in House,2024-05-25,['introduction'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sharon Chung,2024-04-02,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-16,[],IL,103rd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-02,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Suzanne M. Ness,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-11-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-10-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2024-03-20,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-09-29,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2024-04-04,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2024-03-14,[],IL,103rd +House Committee Amendment No. 1 Adopted in Police & Fire Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-02-28,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-04-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-02,['amendment-failure'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-05-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Referred to Rules Committee,2023-05-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-02-26,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-09-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-05-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-10-24,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-10-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-03-06,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2023-05-17,[],IL,103rd +Arrive in Senate,2023-04-19,['introduction'],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulations, Roads & Bridges",2023-04-18,[],IL,103rd +Recommends Be Adopted Subcommittee/ Revenue & Finance Committee; 006-000-000,2023-04-26,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-17,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2023-04-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-03-07,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-05,[],IL,103rd +Resolution Adopted 106-000-000,2023-03-30,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-14,[],IL,103rd +Chief Senate Sponsor Sen. Jason Plummer,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Daniel Didech,2024-03-15,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-02-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-02,['amendment-failure'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Postponed - Health and Human Services,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-04-29,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Removed Co-Sponsor Rep. Jay Hoffman,2024-01-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-03-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-20,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-01,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2023-02-16,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-02-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Do Pass / Short Debate Executive Committee; 007-002-000,2024-03-21,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-01-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +To Civil Procedure & Tort Liability subcommittee,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-02-02,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-02-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2024-03-12,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-03-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-02,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-01,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Nabeela Syed,2024-04-01,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Adopted in Counties & Townships Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary Beth Canty,2024-03-06,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-04-02,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-03-20,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-02-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-02-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2024-02-15,['amendment-introduction'],IL,103rd +Postponed - Health and Human Services,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Executive,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-04-28,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-30,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2024-03-12,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2024-03-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-03-08,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2024-03-04,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-16,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-13,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-06,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2024-02-28,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2024-03-12,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-09,[],IL,103rd +Re-assigned to Local Government,2024-01-10,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Ram Villivalam,2023-03-07,[],IL,103rd +Re-referred to Energy and Public Utilities,2023-02-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2023-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Re-assigned to Public Health,2024-01-10,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Restorative Justice,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-07-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2023-02-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Postponed - Education,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Resolution Adopted 112-001-000,2023-05-09,['passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Health and Human Services,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 007-003-001,2024-04-02,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-14,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2023-02-03,[],IL,103rd +Adopted Both Houses,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-06,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-01-19,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-01-29,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joe C. Sosnowski,2023-03-03,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2024-03-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-05-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +To Subcommittee on Government Operations,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-03-05,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-29,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2024-03-08,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-15,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2024-03-05,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-02-01,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Resolution Adopted,2024-05-20,['passage'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-05-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Rita Mayfield,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2023-02-24,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-04-10,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-12-04,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-10,[],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-05-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-02-16,[],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-02-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +To Family Preservation Subcommittee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-01,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-04-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Referred to Rules Committee,2024-01-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-04-02,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Elizabeth ""Lisa"" Hernandez; filed before 3 pm",2024-05-07,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-11,[],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-13,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Aaron M. Ortiz,2024-04-02,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-03-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +To Business & Industry Innovation Subcommittee,2024-02-22,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-07,['amendment-failure'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Higher Education Committee; by Voice Vote,2024-03-13,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2024-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2024-03-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-02-07,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Sara Feigenholtz,2024-05-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-02-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2024-03-12,['committee-passage-favorable'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Chief Co-Sponsor Changed to Rep. Stephanie A. Kifowit,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-04-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Arrive in Senate,2024-05-07,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Terri Bryant,2023-05-18,[],IL,103rd +Arrive in Senate,2023-05-24,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Terri Bryant,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-02-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Resolution Adopted,2024-05-28,['passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-02-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-05-24,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Removed Co-Sponsor Rep. Theresa Mah,2024-05-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +To Sex Offenses and Sex Offender Registration Subcommittee,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-03-07,['amendment-passage'],IL,103rd +"Recommends Be Adopted as Amended Transportation: Regulations, Roads & Bridges; 013-000-000",2024-05-14,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 009-006-000,2024-04-30,['committee-passage'],IL,103rd +Removed Co-Sponsor Rep. Dave Vella,2024-04-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2023-03-03,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Assigned to Appropriations-General Services Committee,2024-02-29,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-05-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-02-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-03-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-05-20,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Abdelnasser Rashid,2023-03-20,['amendment-introduction'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2024-03-06,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-04-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-03-05,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2023-02-16,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-03-22,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-05-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Do Pass / Short Debate Restorative Justice; 008-000-000,2024-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-08,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-17,[],IL,103rd +Arrive in Senate,2024-05-14,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-14,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Norma Hernandez,2024-03-12,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-13,[],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2024-04-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Resolution Adopted 113-000-000,2024-04-30,['passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Debbie Meyers-Martin,2024-04-04,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2024-03-04,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-03,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Referred to Revenue & Finance Committee,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-02-07,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-16,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-06,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-02-22,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-000-000,2024-04-03,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-02-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-21,['amendment-failure'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Home Rule Note Requested by Rep. Patrick Windhorst,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; 009-000-000,2023-03-08,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-02-23,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary Beth Canty,2024-04-05,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-03-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-02-22,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Norine K. Hammond,2024-04-01,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety; by Voice Vote,2024-03-13,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; 008-001-000,2023-03-08,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-20,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Fiscal Note Requested by Rep. Jackie Haas,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-04-11,[],IL,103rd +Chief Sponsor Changed to Sen. John F. Curran,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-12-07,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-15,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-29,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Senate Special Committee on Pensions,2023-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-02-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-03-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2024-03-21,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 012-000-000,2024-04-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-10-04,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2024-02-13,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Chief Sponsor Changed to Rep. Angelica Guerrero-Cuellar,2024-04-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-04-02,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-29,['referral-committee'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-05-14,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-006-000,2024-03-21,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-03-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Gregg Johnson,2024-03-27,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2024-04-10,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2024-04-02,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-21,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2024-03-21,[],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-26,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-15,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Public Utilities Committee,2024-04-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2023-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Adoption & Child Welfare Committee; by Voice Vote,2024-03-12,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-04-02,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-02-06,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2024-03-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-09-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Harry Benton,2024-04-02,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2024-04-04,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Police & Fire Committee; by Voice Vote,2024-03-22,['amendment-passage'],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-22,[],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-29,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-21,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-03-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-02-23,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2024-03-21,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Insurance,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-10-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Seth Lewis,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-03-07,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-28,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Economic Opportunity & Equity Committee,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-04-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Environment and Conservation,2023-03-09,['amendment-passage'],IL,103rd +Postponed - Labor,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; State Government,2023-03-08,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-04-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-03-14,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-05-02,[],IL,103rd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-03-11,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-17,[],IL,103rd +Be Adopted Behavioral and Mental Health; 005-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-09,[],IL,103rd +Adopted Both Houses,2023-11-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2024-05-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2024-02-21,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-07,[],IL,103rd +Do Pass Energy and Public Utilities; 017-000-000,2023-03-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-26,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-02-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-13,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-26,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2024-03-12,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Licensed Activities,2023-03-08,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2024-03-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2024-02-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2023-03-02,['amendment-introduction'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2024-04-05,['amendment-introduction'],IL,103rd +Postponed - Executive,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2023-03-03,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-02-06,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Health and Human Services,2023-03-07,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Senate Special Committee on Pensions,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-13,[],IL,103rd +Adopted Both Houses,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2024-03-12,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Agriculture & Conservation Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-02-22,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Adopted Both Houses,2023-04-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +To Subcommittee on Elections,2024-02-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-21,['amendment-failure'],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Remove Chief Co-Sponsor Rep. John Egofske,2023-05-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Re-assigned to Rules Committee,2024-05-06,['referral-committee'],IL,103rd +Do Pass Environment and Conservation; 008-000-000,2023-03-09,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-04,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Harry Benton,2024-03-22,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-03-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Porfirio,2024-04-04,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Environment and Conservation,2023-03-09,['amendment-passage'],IL,103rd +To Subcommittee on Procurement,2024-02-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-11-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-17,[],IL,103rd +Chief House Sponsor Rep. Brad Halbrook,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Environment and Conservation,2023-03-09,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2024-03-12,[],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Senate Special Committee on Pensions,2023-03-09,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-03-22,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-03-07,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Financial Institutions,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Brad Stephens,2024-04-02,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Education,2024-03-12,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2023-03-24,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-11,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Do Pass Health and Human Services; 013-000-000,2024-02-21,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-06,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-03-07,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-03,['amendment-introduction'],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Public Health,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-01-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Sponsor Removed Sen. Rachel Ventura,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Public Health,2023-03-07,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-05-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-06,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-01,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Assigned to Executive,2024-01-24,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-13,[],IL,103rd +Resolution Adopted; 058-000-000,2024-05-17,['passage'],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments.",2024-03-20,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-28,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-05,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 024-000-000,2024-03-21,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2024-03-19,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-05,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Do Pass / Short Debate Housing; 017-000-000,2024-03-21,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +Placed on Calendar Agreed Resolutions,2024-04-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Agriculture,2023-03-09,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Insurance,2023-03-07,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-16,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-03,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-04-02,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Chief House Sponsor Rep. Joyce Mason,2024-05-17,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Referred to Rules Committee,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Senate Special Committee on Pensions,2023-03-09,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Laura Faver Dias,2024-03-18,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-20,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-22,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jil Tracy,2023-03-17,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Housing,2024-04-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-03-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-06,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-09,[],IL,103rd +Chief House Sponsor Rep. Lance Yednock,2023-05-08,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-003-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-02-17,[],IL,103rd +Adopted Both Houses,2024-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. La Shawn K. Ford,2023-03-08,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-04-18,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2023-02-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Be Adopted Transportation; 013-000-000,2023-04-26,['committee-passage-favorable'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Financial Institutions and Licensing Committee; by Voice Vote,2023-03-07,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Jil Tracy,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-02-27,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-05-24,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Do Pass / Short Debate Restorative Justice; 006-003-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-03,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-23,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-28,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. William ""Will"" Davis",2023-03-21,['amendment-introduction'],IL,103rd +Chief House Sponsor Rep. Patrick Windhorst,2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-02-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2023-03-21,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-09,['amendment-failure'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2023-02-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 008-004-000,2023-03-08,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Randy E. Frese,2023-03-20,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-02-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-23,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-02-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Fred Crespo,2023-03-06,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 111-001-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-24,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-04,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Adopted in Consumer Protection Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-02-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-11-09,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-09,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-03,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Economic Opportunity & Equity Committee; by Voice Vote,2024-03-21,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2023-03-16,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-02-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; 008-000-000,2023-03-08,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2023-03-20,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2024-02-28,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Be Adopted Education; 012-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Joe C. Sosnowski,2023-02-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-10-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2023-03-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2023-10-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dan Swanson,2023-03-13,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-20,[],IL,103rd +Removed Co-Sponsor Rep. Joyce Mason,2023-01-19,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2023-03-06,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-10-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Will Guzzardi,2023-02-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-01-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lakesia Collins,2023-03-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-02-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-18,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-13,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-02-22,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 011-003-000,2023-03-01,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-02-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-05-04,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-13,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-07,['amendment-failure'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-28,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 009-005-000,2023-03-07,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2023-03-16,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-04-18,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2023-03-21,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-02-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2023-03-07,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 008-000-000,2023-03-09,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2023-03-01,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-05-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Re-assigned to Appropriations-Higher Education Committee,2023-03-08,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2023-03-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-02-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2023-03-17,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Public Utilities Committee; by Voice Vote,2023-03-07,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Assigned to State Government Administration Committee,2023-02-07,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-04-18,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-15,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-04,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Insurance,2023-03-07,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Do Pass State Government; 009-000-000,2023-02-23,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-03-14,[],IL,103rd +Do Pass Insurance; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-23,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-03-07,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 23, 2023",2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Chief House Sponsor Rep. Norine K. Hammond,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura Ellman,2024-03-08,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Omar Aquino,2023-02-24,[],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-10-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-01-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-23,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Health and Human Services,2023-03-07,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-02-27,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-02-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2024-03-05,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-02-27,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-04-26,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 9, 2024",2024-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2023-05-11,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2023-03-24,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Postponed - State Government,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Re-assigned to Education,2023-03-21,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-07,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-02-20,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-05-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dave Syverson,2024-03-07,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-25,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-02,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-23,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2024-03-21,['amendment-passage'],IL,103rd +Do Pass Transportation; 018-000-000,2023-02-22,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Insurance,2023-03-07,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-02-16,[],IL,103rd +Re-assigned to Education,2024-01-10,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-04-01,[],IL,103rd +Resolution Adopted,2023-02-23,['passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-03-07,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2023-03-08,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-11-09,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-08,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-02-16,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Judicial Note Filed,2023-03-12,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Licensed Activities,2023-03-08,['amendment-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Public Health,2023-03-07,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-02-22,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-03-21,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-05-21,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-05-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Dan McConchie,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Robyn Gabel,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-01-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-16,[],IL,103rd +Do Pass Education; 011-000-000,2023-03-22,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass Judiciary; 009-000-000,2023-02-22,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-02-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2024-04-10,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Re-assigned to Appropriations- Education,2024-01-10,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-01-25,[],IL,103rd +Do Pass Local Government; 007-004-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-02-28,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Postponed - Labor,2024-02-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-21,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Seth Lewis,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-02-09,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +Postponed - Executive,2024-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-03-07,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-02-06,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-13,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-04-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Adopted Both Houses,2024-02-22,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2024-03-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-05-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-03-13,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Seth Lewis,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Licensed Activities,2023-03-08,['amendment-passage'],IL,103rd +Be Adopted Environment and Conservation; 007-000-000,2024-02-08,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +To Subcommittee on Government Operations,2024-03-14,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-02-24,[],IL,103rd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-02-20,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-26,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2023-03-20,['amendment-introduction'],IL,103rd +Be Adopted Financial Institutions; 008-000-000,2024-05-08,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-12-07,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Energy and Public Utilities,2023-03-09,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +Do Pass State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-11,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-07,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-02-22,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-03-07,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Senate Special Committee on Pensions,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Agriculture,2023-03-09,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2024-03-20,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2024-03-12,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Paul Faraci,2024-04-05,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-11-07,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-16,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-14,[],IL,103rd +Do Pass Behavioral and Mental Health; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-03-12,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-09,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Veterans Affairs,2023-02-23,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-02-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-03-05,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Revenue,2023-03-08,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Postponed - Revenue,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-02,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-03,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Anna Moeller,2024-03-26,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Assigned to State Government Administration Committee,2024-03-12,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; 009-000-000,2023-03-08,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2024-03-21,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-03,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2023-03-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-01-31,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Public Health Committee; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2024-03-13,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Do Pass / Standard Debate Judiciary - Criminal Committee; 008-006-000,2023-03-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-02-22,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Reported Back To Revenue & Finance Committee;,2024-04-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-10,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2023-03-20,['amendment-introduction'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-08,['amendment-failure'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Norma Hernandez,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-08,[],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-18,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Abdelnasser Rashid,2024-04-04,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Do Pass / Short Debate Cities & Villages Committee; 015-000-000,2024-03-05,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Public Health Committee,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-04-03,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 007-004-000,2024-04-04,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-02-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Do Pass / Short Debate Restorative Justice; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-03-12,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2023-03-16,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 028-000-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Pension Note Filed as Amended,2024-03-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-03,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Counties & Townships Committee,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Suzanne M. Ness,2023-03-20,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-20,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. William ""Will"" Davis",2023-03-16,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-03-12,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2023-03-08,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-04-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Standard Debate,2024-03-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-25,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-04-27,[],IL,103rd +Referred to Rules Committee,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2023-03-21,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-03,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 013-005-000,2024-04-04,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-06,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-02,[],IL,103rd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2024-04-03,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Paul Jacobs,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +To Business & Industry Innovation Subcommittee,2024-02-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Assigned to Cybersecurity, Data Analytics, & IT Committee",2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Assigned to Consumer Protection Committee,2023-02-21,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-17,[],IL,103rd +Do Pass Judiciary; 009-000-000,2023-02-15,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2023-02-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Do Pass / Short Debate Appropriations-Health & Human Services Committee; 015-008-000,2023-05-04,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-23,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Hoan Huynh,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-08-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2023-03-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-16,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Steven Reick,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Adoption & Child Welfare Committee; by Voice Vote,2024-03-06,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2023-03-03,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Norine K. Hammond,2023-03-02,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-22,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-02-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Referred to Revenue & Finance Committee,2024-03-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2024-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-28,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-15,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Removed Co-Sponsor Rep. Dagmara Avelar,2023-03-09,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Adopted in Consumer Protection Committee; by Voice Vote,2023-03-07,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-03-20,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Child Care Accessibility & Early Childhood Education Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-02-09,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-11-08,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-26,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Motion Filed to Suspend Rule 21 Police & Fire Committee; Rep. Robyn Gabel,2024-05-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-13,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-29,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Wayne A Rosenthal,2023-02-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Financial Institutions and Licensing Committee; by Voice Vote,2024-03-12,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-02-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Adopted Both Houses,2023-10-26,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-13,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +To Insurance Main Subcommittee,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Do Pass / Short Debate Immigration & Human Rights Committee; 008-004-000,2023-03-08,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2023-02-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-08,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-03-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-04-26,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-02-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments",2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-06,[],IL,103rd +Sponsor Removed Sen. Tom Bennett,2024-05-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-07-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-02-23,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-03-25,[],IL,103rd +To Labor Subcommittee on Employment Security,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-07-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-13,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Suzanne M. Ness,2023-03-21,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2024-03-08,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-05-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-18,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-07-11,[],IL,103rd +House Committee Amendment No. 1 Adopted in Police & Fire Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-02-14,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Suzanne M. Ness,2023-03-02,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-03-08,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-06-11,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2024-04-02,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +To Subcommittee on CLEAR Compliance,2024-02-07,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-03-07,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-03-07,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-02-28,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-05-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-02-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-09,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-09,[],IL,103rd +Re-assigned to Energy and Public Utilities,2024-02-06,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-02-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-05-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-02-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-02-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Re-assigned to Agriculture,2024-01-10,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2023-03-01,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-04-04,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2024-03-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2024-05-16,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 31, 2023",2023-03-30,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-28,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-13,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-24,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Privacy,2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Postponed - Local Government,2024-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2024-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Adopted Both Houses,2024-05-29,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dagmara Avelar,2023-02-28,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Nicholas K. Smith,2023-03-21,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Re-assigned to State Government,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Re-assigned to Health and Human Services,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-03-20,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jackie Haas,2023-02-22,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor All Other Members of the House,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-03-13,[],IL,103rd +Chief House Sponsor Rep. Robyn Gabel,2024-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-07,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-01-10,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-11-09,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-01-26,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-03-21,['committee-passage'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Postponed - Education,2024-03-13,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to State Government,2023-03-07,['referral-committee'],IL,103rd +Postponed - Health and Human Services,2024-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-05-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-02-27,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2024-03-07,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-02-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety; by Voice Vote,2024-03-13,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Public Health,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-05-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Referred to Revenue & Finance Committee,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations - Health and Human Services,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-02-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-16,[],IL,103rd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-29,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Higher Education Committee,2023-04-18,[],IL,103rd +Chief Sponsor Changed to Rep. Suzanne M. Ness,2024-03-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +"Moved to Suspend Rule Sen. Elgie R. Sims, Jr.",2023-02-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-03-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-02-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-03,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-11,[],IL,103rd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-02-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-14,[],IL,103rd +House Committee Amendment No. 1 Adopted in Public Health Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-02-09,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2024-04-03,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-05-17,[],IL,103rd +Do Pass Education; 011-002-000,2024-03-06,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-01-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-03-06,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Assigned to Energy & Environment Committee,2023-02-21,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-04-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +To Subcommittee on Cannabis,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2023-03-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 013-000-000,2024-03-06,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-01-18,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-03,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-03-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-03-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-03,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-03-23,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-04-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dan McConchie,2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Maurice A. West, II",2024-04-02,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2024-02-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2024-03-12,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-23,[],IL,103rd +Assigned to Licensed Activities,2023-02-28,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 016-000-000",2023-03-14,['committee-passage-favorable'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-02-22,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-03-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-02-08,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-02-06,[],IL,103rd +Chief House Sponsor Rep. David Friess,2024-05-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-26,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-05-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-02-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +To Utilities Subcommittee,2024-03-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-26,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-05-10,[],IL,103rd +Postponed - Education,2024-03-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-10-04,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-06-11,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2024-03-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-08,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-12-04,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-03-12,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Postponed - Transportation,2024-03-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-02-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2023-10-25,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"To Subcommittee on Gaming, Wagering, and Racing",2024-02-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Chief Sponsor Changed to Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-03-13,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-05,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-03-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2024-04-10,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-03-06,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2024-04-05,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Chief Co-Sponsor Changed to Sen. Cristina Castro,2024-02-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-02,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-03,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2024-05-01,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-02-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-03-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-03-05,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-04,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-04-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-03-07,[],IL,103rd +Chief Sponsor Changed to Sen. Lakesia Collins,2024-04-03,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-03,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-04-25,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Fred Crespo,2024-04-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-02-02,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-01,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-13,[],IL,103rd +House Committee Amendment No. 1 Adopted in Public Health Committee; by Voice Vote,2024-03-14,['amendment-passage'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-13,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-16,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-04-16,[],IL,103rd +Motion Filed to Suspend Rule 21 Human Services Committee; Rep. Kam Buckner,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-04-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Hoan Huynh,2024-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-02-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), this committee amendment will remain in the Committee on Assignments.",2024-03-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-06-30,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-18,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-13,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-04-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-02-06,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-02-02,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-18,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-11-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Terri Bryant,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2024-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-27,[],IL,103rd +Adopted Both Houses,2023-02-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-18,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Resolution Adopted,2023-05-02,['passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-14,[],IL,103rd +Recommends Be Adopted Higher Education Committee; 009-000-000,2023-05-10,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-05-15,[],IL,103rd +Assigned to Insurance,2024-02-28,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-11-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-02-22,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 015-000-000,2024-04-02,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-03,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-02,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2024-03-21,['amendment-passage'],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-05-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-11-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-02-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2024-03-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-18,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +Resolution Adopted,2023-01-12,['passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2023-03-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-01,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-07-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-04-02,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2023-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-07-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Resolution Adopted,2023-03-28,['passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Recommends Be Adopted Agriculture & Conservation Committee; 007-000-000,2023-03-14,['committee-passage-favorable'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-31,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-07,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-02-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Amy Elik,2024-03-12,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2024-02-29,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-01-26,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-02-13,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-11-08,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-04-18,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-04-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +To Utilities Subcommittee,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2024-03-13,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-01-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Fred Crespo,2023-03-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-10-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Bradley Fritts,2023-05-18,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-11-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2024-02-28,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-01,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Norine K. Hammond,2023-03-01,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-02-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-02-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Remove Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Adopted in Immigration & Human Rights Committee; 008-003-000,2023-03-22,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-02-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2023-05-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-05-18,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-05-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Arrive in Senate,2023-05-16,['introduction'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. William ""Will"" Davis",2024-04-17,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2023-03-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-28,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-08-18,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2023-03-01,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-03-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2023-04-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2024-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-02-27,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-02-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-10-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-05-10,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2024-02-29,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-28,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-04-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-10-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-04-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Motion Filed to Suspend Rule 21 Rules Committee; Rep. Bob Morgan,2023-05-03,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Adopted Both Houses,2024-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Re-assigned to Rules Committee,2024-03-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-02-01,[],IL,103rd +House Committee Amendment No. 1 Adopted in Higher Education Committee; by Voice Vote,2024-03-21,['amendment-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Janet Yang Rohr,2023-12-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-04,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 017-000-000,2024-04-04,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Justin Slaughter,2023-02-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-05-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Adopted Both Houses,2024-04-19,[],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-02-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-03-22,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-04-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-03-30,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-06,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2024-02-07,[],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-03-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-02-21,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2024-02-20,[],IL,103rd +House Committee Amendment No. 1 To Job Growth & Workforce Development Subcommittee,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-07,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Maurice A. West, II",2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Resolution Adopted,2023-05-15,['passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +To Insurance Main Subcommittee,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-03-02,[],IL,103rd +Postponed - Licensed Activities,2024-03-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Appropriations-General Services Committee,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2024-03-08,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Removed Co-Sponsor Rep. Travis Weaver,2023-03-08,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Re-assigned to Cities & Villages Committee,2024-03-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 007-001-000,2023-03-07,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Assigned to Public Health Committee,2023-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-03-07,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2024-03-13,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +To Special Issues Subcommittee,2024-04-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-02-23,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-09,['amendment-failure'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-09,['amendment-failure'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2023-03-21,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-02-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Angelica Guerrero-Cuellar,2023-03-21,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Gaming Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Tom Weber,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2024-03-06,['committee-passage'],IL,103rd +Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2024-04-30,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2024-04-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Public Utilities Committee; by Voice Vote,2024-03-05,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Referred to Rules Committee,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-02-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 011-000-000,2024-05-08,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 007-004-000,2024-04-04,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-02-22,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-08,['amendment-failure'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-26,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2023-03-21,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2024-04-15,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-06,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-05-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-02-07,[],IL,103rd +Adopted Both Houses,2024-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Energy & Environment Committee; by Voice Vote,2023-03-07,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-05-03,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2024-04-04,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-03,[],IL,103rd +Second Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Referred to Rules Committee,2023-05-04,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-07,[],IL,103rd +First Reading,2023-05-04,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Adopted in Financial Institutions and Licensing Committee; by Voice Vote,2024-03-12,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2024-05-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2024-05-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; 009-000-000,2023-03-08,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-12,['amendment-failure'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-05-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-05-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Fred Crespo,2023-03-13,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Referred to Rules Committee,2023-05-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 010-000-000,2024-03-07,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-02-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 14, 2023",2023-02-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-05-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Prevailed to Suspend Rule 3-6(a),2024-02-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Diane Blair-Sherlock,2024-04-02,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-03-12,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Neil Anderson,2024-05-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-22,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Justin Slaughter,2024-04-02,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-03-10,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-02,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-04-18,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-05-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Referred to Rules Committee,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-22,[],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2023-03-20,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-06,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Aaron M. Ortiz,2023-03-22,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Personnel & Pensions Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-03-01,[],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 019-000-000,2023-03-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-02,['amendment-failure'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-03-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-01-31,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Angelica Guerrero-Cuellar,2023-03-17,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Adopted in Adoption & Child Welfare Committee; by Voice Vote,2024-03-12,['amendment-passage'],IL,103rd +Do Pass / Short Debate Veterans' Affairs Committee; 015-000-000,2023-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-02-05,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-11-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Housing; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Adopted in Economic Opportunity & Equity Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-06,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2024-04-12,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-03-12,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Arrive in Senate,2024-05-25,['introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2024-03-20,[],IL,103rd +Fiscal Note Filed,2024-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-02-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2024-04-02,[],IL,103rd +Chief Sponsor Changed to Rep. Kam Buckner,2023-03-14,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-02-07,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-02-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-06-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-02-08,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2023-03-08,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dagmara Avelar,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-09,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-05-15,['amendment-introduction'],IL,103rd +"Remains in Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-16,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Standard Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2024-05-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2023-03-07,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-02,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-28,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-03,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-03,[],IL,103rd +To Commercial & Property Subcommittee,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 009-000-000,2023-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Nabeela Syed,2023-03-06,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-02-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-05-01,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Hoan Huynh,2024-03-20,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 010-000-000,2024-03-07,['committee-passage'],IL,103rd +To Subcommittee on Ethics,2024-02-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Matt Hanson,2024-04-02,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Child Care Accessibility & Early Childhood Education Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-02-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2024-03-22,['amendment-passage'],IL,103rd +To Subcommittee on Elections,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +To Subcommittee on Ethics,2024-02-08,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2023-03-21,['amendment-introduction'],IL,103rd +Resolution Adopted,2023-11-09,['passage'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Michael W. Halpin,2024-03-04,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Sponsor Removed Sen. Willie Preston,2024-02-26,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Transportation,2023-03-07,['amendment-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2024-03-11,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Adopted in Economic Opportunity & Equity Committee; by Voice Vote,2024-03-21,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-03-09,[],IL,103rd +To Subcommittee on Ethics,2024-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-02-22,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Judiciary,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety; by Voice Vote,2024-03-13,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-03-11,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Judiciary,2024-03-06,[],IL,103rd +Postponed - Public Health,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Child Care Accessibility & Early Childhood Education Committee; by Voice Vote,2024-03-14,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Adopted in Agriculture & Conservation Committee; by Voice Vote,2024-03-12,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2024-04-01,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-03-05,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-06-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +To Subcommittee on Government Operations,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 23, 2023",2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-01-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2024-02-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2024-03-20,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-11,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-18,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-03-13,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Fiscal Note Requested by Rep. Ryan Spain,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Financial Institutions,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass Executive; 012-000-001,2024-03-22,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2024-02-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Labor,2023-03-08,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Education,2023-03-07,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-11-13,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; State Government,2023-03-08,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2024-03-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-06,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Removed Co-Sponsor Rep. Nicole La Ha,2024-04-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-06,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Lakesia Collins,2024-03-25,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-03-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2023-02-24,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; State Government,2023-03-08,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2023-02-23,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-06,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-23,[],IL,103rd +Resolution Adopted 073-039-000,2024-05-22,['passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Economic Opportunity & Equity Committee; by Voice Vote,2024-03-21,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Erica Harriss,2024-03-21,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2023-03-16,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-02-28,[],IL,103rd +To Subcommittee on Procurement,2024-02-08,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Judiciary,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-03,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +Assigned to Judiciary,2024-02-14,['referral-committee'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-03-06,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2023-03-07,[],IL,103rd +Chief Sponsor Changed to Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-06,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2023-12-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2024-04-02,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Education,2023-03-07,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Remove Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +To Subcommittee on Cannabis,2024-02-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2023-03-01,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-05-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 007-000-000,2023-03-23,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2024-03-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-13,[],IL,103rd +Removed Co-Sponsor Rep. Yolonda Morris,2024-04-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. John M. Cabello,2024-03-20,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-03-07,['amendment-passage'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-07,[],IL,103rd +Added Co-Sponsor All Other Members of the House,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2024-03-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-06-22,[],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2024-03-13,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-08,[],IL,103rd +Adopted Both Houses,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Adopted Both Houses,2024-02-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Licensed Activities,2023-03-08,['amendment-passage'],IL,103rd +Adopted Both Houses,2023-03-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Will Guzzardi,2023-03-03,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-05-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Chief House Sponsor Rep. Dan Swanson,2024-05-06,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Mark L. Walker,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2024-03-01,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-03-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2024-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +To Subcommittee on Cannabis,2024-02-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Nicholas K. Smith,2024-04-01,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Be Adopted Public Health; 007-000-000,2024-03-06,['committee-passage-favorable'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-01-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-03-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-02-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Public Safety Committee,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2024-01-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Do Pass State Government; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Chief Co-Sponsor Changed to Rep. Maura Hirschauer,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-03,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Omar Aquino,2024-03-13,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-03-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Nabeela Syed,2024-03-04,['amendment-introduction'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2024-04-15,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-02-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Jenn Ladisch Douglass,2024-04-02,['amendment-introduction'],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +To Insurance Main Subcommittee,2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Adam M. Niemerg,2024-03-22,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Resolution Adopted,2024-01-17,['passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-02-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-01-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Chapin Rose,2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-05-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-02-05,[],IL,103rd +Added as Co-Sponsor Sen. Patricia Van Pelt,2023-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-02-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2023-04-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Chapin Rose,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-30,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-04-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-03-12,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +To Subcommittee on Government Operations,2023-03-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-04-28,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 014-000-000,2024-03-12,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-09-20,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2023-02-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-23,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-04,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-02-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2023-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Do Pass Insurance; 010-000-000,2024-03-06,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-02-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Consumer Protection Committee,2024-04-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-01-26,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 11, 2023",2023-05-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 009-005-000,2023-02-28,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Doris Turner,2023-04-20,[],IL,103rd +Resolution Adopted 113-000-000,2023-04-18,['passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Omar Aquino,2024-02-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-02-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-02-03,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-02-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-07-18,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Postponed - Higher Education,2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Adopted Both Houses,2023-02-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Constitutional Law Subcommittee,2024-03-22,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-04-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-03-04,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2024-03-21,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-14,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-02-14,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Hoan Huynh,2024-04-02,['amendment-introduction'],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Hoan Huynh,2024-03-05,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Hoan Huynh,2024-04-02,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2023-03-08,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-02-22,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-02-28,['amendment-failure'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-10,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Assigned to Housing,2024-03-05,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-02-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anthony DeLuca,2023-03-15,['amendment-introduction'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; 006-003-000,2023-03-08,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-27,[],IL,103rd +House Committee Amendment No. 1 Adopted in Public Utilities Committee; by Voice Vote,2023-02-28,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-02-17,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2023-03-21,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-27,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2023-03-08,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-06,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Recommends Be Adopted Rules Committee; 004-000-000,2023-04-19,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Insurance Committee; 009-005-000,2023-02-28,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-02-22,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. David Friess,2023-02-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Terra Costa Howard,2024-04-01,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-02-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-24,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrived in House,2023-05-03,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-06,[],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-05,[],IL,103rd +Chief Sponsor Changed to Rep. Paul Jacobs,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-02-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Financial Institutions and Licensing Committee,2023-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-02-15,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Sponsor Changed to Rep. Blaine Wilhour,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-02-07,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-02-23,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-01,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Arrive in Senate,2023-04-19,['introduction'],IL,103rd +Referred to Assignments,2023-04-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 014-000-000,2023-03-08,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-03-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-02-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Rita Mayfield,2023-02-27,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief House Sponsor Rep. Dan Caulkins,2023-05-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Rita Mayfield,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Referred to Assignments,2023-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-14,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-02-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-02,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Sponsor Changed to Rep. Adam M. Niemerg,2023-03-20,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Marcus C. Evans, Jr.",2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-02-07,[],IL,103rd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 004-001-000,2024-04-04,['committee-passage'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Chief Sponsor Changed to Rep. Anna Moeller,2023-03-16,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +"Chief Sponsor Changed to Rep. Elizabeth ""Lisa"" Hernandez",2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-04,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-02-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-05-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-02-23,['amendment-failure'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-22,[],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 020-000-000,2023-02-16,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 006-003-000,2023-03-08,['committee-passage'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-27,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-20,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-14,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Cybersecurity, Data Analytics, & IT Committee",2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-10-02,[],IL,103rd +Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Removed Co-Sponsor Rep. Lilian Jiménez,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Public Utilities Committee; 022-000-000,2023-02-28,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Sponsor Changed to Rep. Theresa Mah,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2023-03-24,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-02-14,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; 028-000-000,2023-03-08,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-03-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Adopted Both Houses,2024-01-17,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-04-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-04-24,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-04-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-03-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Special Issues,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-03-16,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-02-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-22,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Special Issues,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2024-03-08,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dagmara Avelar,2023-02-22,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Privacy,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2023-03-17,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-02-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 013-000-000,2024-03-21,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Sponsor Changed to Rep. Norine K. Hammond,2023-03-14,[],IL,103rd +Re-assigned to Insurance,2023-05-02,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-01-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Sponsor Changed to Rep. Joyce Mason,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-21,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 006-003-000,2023-03-09,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-07,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Health Committee,2023-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2024-04-02,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-02-07,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-30,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 029-000-000,2023-03-07,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2023-03-21,['amendment-introduction'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2023-03-23,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2023-03-22,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-02,[],IL,103rd +Assigned to Police & Fire Committee,2024-03-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2023-03-29,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Restorative Justice,2023-03-22,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-16,[],IL,103rd +Fiscal Note Requested by Rep. Norine K. Hammond,2024-04-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 010-005-000,2023-03-07,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-03,[],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. William ""Will"" Davis",2024-03-11,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2024-04-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2024-05-03,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-14,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2024-05-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-02,['committee-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 028-000-000,2023-03-08,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-05-04,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Cities & Villages Committee,2024-03-20,[],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2024-02-14,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-07,['amendment-failure'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2024-04-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Financial Institutions and Licensing Committee; 012-000-000,2024-03-12,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tony M. McCombie,2023-03-06,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-02-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-001,2023-03-22,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-24,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 010-004-000,2024-03-13,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-08-08,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-02,[],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Dan McConchie,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Personnel & Pensions Committee; 007-004-000,2024-04-04,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Angelica Guerrero-Cuellar,2023-03-17,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2024-04-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Chief Sponsor Changed to Sen. Dale Fowler,2023-03-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-03-17,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2023-02-28,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Tom Weber,2023-03-09,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-01,[],IL,103rd +Chief Sponsor Changed to Sen. Chapin Rose,2023-03-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulations, Roads & Bridges",2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Chief Co-Sponsor Changed to Rep. Debbie Meyers-Martin,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-24,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-02-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-02-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Yolonda Morris,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-11,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-05-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-07,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-05-23,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2024-04-11,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2023-03-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-03-08,[],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2024-03-27,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Aaron M. Ortiz,2023-03-23,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Gaming Committee,2024-03-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Chief Sponsor Changed to Sen. Sue Rezin,2023-03-29,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Economic Opportunity & Equity Committee,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Cities & Villages Committee,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-02-16,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-13,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Do Pass as Amended / Short Debate Adoption & Child Welfare Committee; 014-000-000,2024-03-12,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2024-03-12,['committee-passage-favorable'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-05-20,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-03-29,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Chief Senate Sponsor Sen. Jason Plummer,2023-05-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-02-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-02-06,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Gaming Committee; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Chief Sponsor Changed to Sen. Sue Rezin,2023-03-15,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2023-03-01,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Bradley Fritts,2023-03-21,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-03-23,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-11-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Referred to Assignments,2023-05-18,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 008-003-000,2024-04-03,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 007-004-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-06,['amendment-failure'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Chief Sponsor Changed to Sen. Dale Fowler,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-02-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Housing; 012-006-000,2024-04-03,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-05-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-02-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2023-03-20,['amendment-introduction'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-04-12,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-15,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2024-04-01,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Public Utilities Committee; 020-000-000,2024-03-05,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-05-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2023-03-28,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Adopted in Energy & Environment Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2024-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2023-03-13,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-14,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Maurice A. West, II",2023-03-06,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-03-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-05-14,[],IL,103rd +Removed Co-Sponsor Rep. Yolonda Morris,2024-04-04,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Resolution Adopted,2024-02-21,['passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. John F. Curran,2023-03-24,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2023-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-03-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Javier L. Cervantes,2023-03-28,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-03-21,['amendment-introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 008-005-000,2024-03-12,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-05-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass Energy and Public Utilities; 017-000-000,2023-02-23,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-09,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Financial Institutions and Licensing Committee,2024-04-02,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-06,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Jason Bunting,2024-05-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Referred to Assignments,2024-05-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Financial Institutions and Licensing Committee,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-01-31,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Restorative Justice,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-01,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2023-03-22,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-02,[],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-07,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 010-004-000,2023-03-08,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-03-24,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Referred to Assignments,2024-05-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Win Stoller,2023-03-22,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Postponed - Executive,2024-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2024-02-29,[],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-02-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-02-05,[],IL,103rd +Chief Sponsor Changed to Rep. Lance Yednock,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2023-02-22,['amendment-introduction'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-05-16,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-21,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Patrick Windhorst,2023-02-08,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2024-03-05,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2024-02-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-04-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-02-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-21,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-03,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-16,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-02-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-10,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-13,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Referred to Assignments,2023-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-10-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-02-21,[],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-05-16,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-03-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-07-05,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-02,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 005-000-000,2023-05-03,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-11-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +"Chief Sponsor Changed to Rep. Edgar Gonzalez, Jr.",2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-01-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-03-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Do Pass as Amended / Short Debate Higher Education Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-06-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-03-28,[],IL,103rd +To Job Growth & Workforce Development Subcommittee,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-12-18,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-16,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-04-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted - Referred to Floor,2023-03-07,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-02-22,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-02-08,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Judiciary,2024-03-12,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-04,['amendment-failure'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Chief Sponsor Changed to Rep. Robyn Gabel,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-05-10,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-19,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Adopted Both Houses,2023-01-12,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-02,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-03-13,[],IL,103rd +Added Co-Sponsor All Other Members of the House,2023-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-04-09,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-28,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 011-002-000,2024-04-03,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor All Other Members of the House,2023-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2024-04-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Joyce Mason,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-09,[],IL,103rd +Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2023-05-18,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-02-24,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Housing,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-02-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-24,[],IL,103rd +"Chief Sponsor Changed to Rep. William ""Will"" Davis",2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-07,[],IL,103rd +Do Pass as Amended Judiciary; 006-001-000,2024-03-13,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2024-03-06,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-01,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2023-03-24,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Do Pass as Amended / Short Debate Human Services Committee; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-02-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 012-000-000,2024-03-13,['committee-passage'],IL,103rd +Resolution Adopted 112-000-001,2023-04-18,['passage'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Recommends Be Adopted as Amended Immigration & Human Rights Committee; 008-003-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-28,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2023-05-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-10-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-06-11,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Adam M. Niemerg,2023-02-23,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2024-04-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2024-04-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-01-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Chief Sponsor Changed to Rep. Katie Stuart,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-06,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-04-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-11,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-10,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-01,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Rules Refers to Police & Fire Committee,2024-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2024-04-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-28,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-04-20,[],IL,103rd +Remove Chief Co-Sponsor Rep. Dave Severin,2024-03-04,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2024-03-22,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-11-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-29,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-04-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-10,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-02,['amendment-failure'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-17,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-15,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Referred to Assignments,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2024-03-07,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2023-11-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Chief Sponsor Changed to Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-16,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-06,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-10-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-20,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-05-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Government Operations,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Do Pass Education; 012-000-000,2023-03-08,['committee-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-02-27,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended Judiciary; 006-002-000,2023-03-08,['committee-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Neil Anderson,2024-04-02,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-02-28,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Karina Villa,2024-02-20,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Local Government,2023-03-08,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-02-20,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Do Pass as Amended State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments",2023-03-07,[],IL,103rd +Do Pass as Amended Labor; 012-003-000,2023-03-08,['committee-passage'],IL,103rd +Third Reading - Passed; 043-013-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Elections,2024-03-14,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Re-assigned to Executive,2024-03-12,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments",2023-03-07,[],IL,103rd +Postponed - Judiciary,2024-03-06,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +To Subcommittee on Elections,2024-02-08,[],IL,103rd +Do Pass as Amended State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Sponsor Removed Sen. Lakesia Collins,2024-02-07,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2024-05-01,['amendment-introduction'],IL,103rd +Third Reading - Passed; 054-002-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Do Pass as Amended Education; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Do Pass Financial Institutions; 005-003-000,2023-03-08,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-03-22,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-04-09,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Elections,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2024-03-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended Revenue; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Third Reading - Passed; 039-019-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Postponed - Judiciary,2024-03-06,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2024-03-12,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-01,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Third Reading - Passed; 053-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2024-04-09,['amendment-introduction'],IL,103rd +Do Pass as Amended Judiciary; 007-000-000,2024-03-13,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-03-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 7, 2024",2024-03-06,[],IL,103rd +Referred to Rules Committee,2024-05-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-08-08,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Daniel Didech,2023-03-02,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2024-03-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2024-02-21,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Meg Loughran Cappel,2024-03-11,['amendment-introduction'],IL,103rd +To Subcommittee on Elections,2024-02-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-18,[],IL,103rd +Arrive in Senate,2024-05-24,['introduction'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-03,[],IL,103rd +House Committee Amendment No. 1 Adopted in Economic Opportunity & Equity Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-12,[],IL,103rd +Postponed - Judiciary,2024-02-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2023-03-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Do Pass as Amended / Short Debate Child Care Accessibility & Early Childhood Education Committee; 014-000-000,2024-04-04,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Gaming Committee,2024-04-17,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-03-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-11,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-06,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-19,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) April 19, 2024",2024-04-05,[],IL,103rd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 018-000-000,2024-03-22,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2024-03-21,['amendment-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Do Pass as Amended / Short Debate Economic Opportunity & Equity Committee; 008-000-000,2024-03-21,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Do Pass as Amended / Short Debate Economic Opportunity & Equity Committee; 005-003-000,2024-03-21,['committee-passage'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2024-03-22,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Adopted in Appropriations-Public Safety Committee; by Voice Vote,2024-05-15,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-03-16,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-03,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-010-000,2023-03-07,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2024-04-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-15,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Firearms,2024-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2024-03-22,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2024-03-13,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2024-03-27,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2024-04-05,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Housing Affordability Impact Note Filed,2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-03-04,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-12-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-04,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-06-20,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-23,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-02-26,[],IL,103rd +Third Reading - Passed; 037-019-002,2024-04-11,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-05-21,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-03-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2024-05-01,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2024-03-21,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-28,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Do Pass as Amended Transportation; 017-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass as Amended / Short Debate Child Care Accessibility & Early Childhood Education Committee; 014-000-000,2024-03-14,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-16,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2024-03-12,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-03,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-04-12,[],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2024-03-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-04-16,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-06,['amendment-failure'],IL,103rd +Third Reading - Passed; 040-012-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-13,['amendment-passage'],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-13,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-03-12,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2024-03-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-01,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-03-14,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2024-04-05,['amendment-introduction'],IL,103rd +Do Pass as Amended Higher Education; 011-000-000,2024-03-06,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 24, 2023",2023-03-23,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Public Health,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-20,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2023-02-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 9, 2024",2024-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-11,[],IL,103rd +Do Pass as Amended / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-03-18,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-13,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-06,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-25,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Do Pass / Short Debate Insurance Committee; 010-000-000,2024-03-05,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-20,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Third Reading - Passed; 034-018-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Education; 012-000-000,2023-03-08,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-01,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-03-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-04-18,[],IL,103rd +Do Pass as Amended Licensed Activities; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Environment and Conservation,2023-03-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-03-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2023-03-17,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-14,['committee-passage-favorable'],IL,103rd +Chief Sponsor Changed to Rep. Amy L. Grant,2023-03-02,[],IL,103rd +Pension Note Filed,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass / Short Debate Immigration & Human Rights Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Economic Opportunity & Equity Committee; 008-000-000,2024-03-21,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-02-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Stephanie A. Kifowit,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-14,[],IL,103rd +Removed Co-Sponsor Rep. Michael J. Kelly,2023-03-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Chief House Sponsor Rep. Michael J. Kelly,2023-05-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2023-03-21,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-05-19,[],IL,103rd +Chief Sponsor Changed to Rep. Theresa Mah,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2023-03-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 009-004-000,2023-03-08,['committee-passage'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-02-15,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-11-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Anna Moeller,2023-03-02,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2023-04-19,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Do Pass as Amended / Short Debate Consumer Protection Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-08,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-17,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Financial Institutions and Licensing Committee,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 006-003-000,2023-03-07,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Sponsor Changed to Rep. Norine K. Hammond,2023-03-08,[],IL,103rd +To Insurance Main Subcommittee,2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Harry Benton,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-02-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Referred to Rules Committee,2023-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Removed Co-Sponsor Rep. Michelle Mussman,2023-03-02,[],IL,103rd +Third Reading - Short Debate - Passed 083-026-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2023-03-21,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-03-22,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2023-05-19,[],IL,103rd +Assigned to Public Health Committee,2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2023-03-13,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Adopted in Appropriations-Higher Education Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-07,[],IL,103rd +Do Pass as Amended / Short Debate Human Services Committee; 006-003-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2023-03-21,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-02-28,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-02-08,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-03-06,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Police & Fire Committee,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +Chief Sponsor Changed to Rep. Charles Meier,2023-03-20,[],IL,103rd +"Motion Filed - Table Bill/Resolution Pursuant to Rule 60(b), Rep. Joe C. Sosnowski",2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-02-08,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2023-03-02,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 098-010-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-08,[],IL,103rd +Third Reading - Short Debate - Passed 097-008-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Do Pass as Amended / Short Debate Financial Institutions and Licensing Committee; 012-000-000,2023-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-02-24,['amendment-failure'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2023-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-06,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2023-10-25,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 010-005-000,2023-03-07,['committee-passage'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Do Pass as Amended / Short Debate Public Utilities Committee; 014-008-000,2023-03-07,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief House Sponsor Rep. Carol Ammons,2023-05-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-10-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass / Short Debate Housing; 017-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-02-23,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-13,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-09,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Patrick Windhorst,2023-03-21,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 17, 2023",2023-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-10-18,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-06,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-09,['amendment-failure'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2023-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary E. Flowers,2023-03-21,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions April 27, 2023",2023-04-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Sponsor Changed to Rep. Charles Meier,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-22,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2023-02-15,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 007-002-000,2024-04-02,['committee-passage'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-01,[],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) April 28, 2023",2023-03-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-22,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Remove Chief Co-Sponsor Rep. Katie Stuart,2023-01-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-03-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Norine K. Hammond,2023-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-02-22,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2023-03-21,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-02-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Janet Yang Rohr,2023-02-17,[],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Alternate Chief Sponsor Removed Rep. Patrick Windhorst,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-05-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-09,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2023-03-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +Do Pass as Amended / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Assigned to Counties & Townships Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Adopted in Higher Education Committee; 010-002-000,2023-03-08,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 109-001-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Postponed - Insurance,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-01-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2023-02-21,['amendment-introduction'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-03,['amendment-failure'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-21,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 005-000-000,2024-04-04,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-02-22,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2023-03-14,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2023-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-02-22,['amendment-failure'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Chief Sponsor Changed to Sen. Sue Rezin,2023-03-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2024-03-20,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-06,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Neil Anderson,2023-03-30,['amendment-introduction'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-11,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2024-04-17,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Police & Fire Committee; 012-000-000,2024-03-22,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Counties & Townships Committee,2024-04-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Assigned to Energy & Environment Committee,2024-03-12,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-03-15,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2024-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2023-03-16,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Chief Sponsor Changed to Sen. Chapin Rose,2023-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Chief Sponsor Changed to Sen. Donald P. DeWitte,2023-03-24,[],IL,103rd +Postponed - Licensed Activities,2023-03-09,[],IL,103rd +Referred to Assignments,2024-05-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-03-24,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-04,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2024-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-03-12,[],IL,103rd +Do Pass as Amended / Short Debate Higher Education Committee; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Chief Sponsor Changed to Sen. Chapin Rose,2023-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Chief Sponsor Changed to Sen. Win Stoller,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-03-28,['amendment-introduction'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Health Committee,2024-04-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2024-03-12,[],IL,103rd +Do Pass as Amended / Short Debate Adoption & Child Welfare Committee; 014-000-000,2024-03-12,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +Chief Sponsor Changed to Sen. Win Stoller,2023-03-17,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-03-26,[],IL,103rd +Recommends Be Adopted Human Services Committee; 009-000-000,2024-02-07,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2024-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-02-21,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2023-03-28,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-05-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Donald P. DeWitte,2023-03-13,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2024-05-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-04-16,[],IL,103rd +Chief Sponsor Changed to Sen. Jil Tracy,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Neil Anderson,2023-03-24,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-02,['amendment-passage'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2024-03-06,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 008-001-000,2023-03-08,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Thaddeus Jones,2024-04-09,['amendment-introduction'],IL,103rd +Remove Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2024-04-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Chief Senate Sponsor Sen. Chapin Rose,2024-05-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Chief Sponsor Changed to Sen. Win Stoller,2023-03-17,[],IL,103rd +Fiscal Note Filed,2024-03-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-12,[],IL,103rd +Referred to Assignments,2023-05-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dave Syverson,2023-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-18,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2024-05-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-02-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Assigned to Human Services Committee,2024-03-20,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Cyril Nichols,2023-03-23,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 072-034-002,2024-04-17,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-22,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-15,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-04-03,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Passed; 058-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-30,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2023-02-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Chief Sponsor Changed to Sen. Chapin Rose,2023-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Do Pass as Amended Judiciary; 006-003-000,2023-03-08,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-04-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Referred to Assignments,2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Education,2023-03-21,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-03-07,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Do Pass as Amended / Short Debate Human Services Committee; 008-000-000,2024-03-21,['committee-passage'],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-05,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-12,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-03-22,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jawaharial Williams,2024-04-17,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Norma Hernandez,2024-02-05,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2023-03-24,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Hoan Huynh,2024-03-20,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2023-03-01,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2024-05-13,[],IL,103rd +Chief Sponsor Changed to Sen. Donald P. DeWitte,2023-03-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-03-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-05-20,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Economic Opportunity & Equity Committee,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Chief Sponsor Changed to Sen. Jason Plummer,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-06-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Higher Education,2023-03-07,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Tom Bennett,2023-03-24,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-03-30,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 011-000-000,2024-03-14,['committee-passage'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-04-04,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-05-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-09-27,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Senate Special Committee on Pensions,2023-03-09,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2023-03-29,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Resolution Adopted,2024-05-03,['passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Chief Senate Sponsor Sen. Chapin Rose,2024-05-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2023-03-21,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 000-038-000,2024-05-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2024-04-11,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 009-000-000,2024-03-20,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2023-03-22,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-10-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-03-24,['amendment-introduction'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sally J. Turner,2023-03-24,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-04-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Human Services Committee; 007-000-000,2024-04-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-15,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-03-21,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-05-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-03-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-10-26,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-16,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Camille Y. Lilly,2024-05-20,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-03-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. David Friess,2024-04-11,[],IL,103rd +Postponed - Revenue,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-05-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2024-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2023-03-24,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Adopted in Public Utilities Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2023-03-23,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-03-05,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-03-07,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 009-004-000,2024-03-20,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2024-04-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2024-04-30,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2024-03-21,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2023-03-28,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-04,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2023-03-30,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2023-03-23,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass / Short Debate Housing; 011-003-000,2024-04-03,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-04,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-02-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-04-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2024-04-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Donald P. DeWitte,2023-03-21,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-04-15,[],IL,103rd +Removed Co-Sponsor Rep. Ryan Spain,2023-10-04,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-04-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-04-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-03-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-03,['amendment-failure'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2023-03-24,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Motion Filed to Suspend Rule 21 Rules Committee; Rep. Bob Morgan,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-05-04,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-16,[],IL,103rd +Chief Sponsor Changed to Sen. Sue Rezin,2023-03-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2023-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2024-04-17,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2024-02-26,['amendment-introduction'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-04-03,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2023-03-16,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 013-000-000,2024-03-12,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2024-04-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended Judiciary; 009-000-000,2023-02-08,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Natalie Toro,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-02-06,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-03-05,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-05-08,[],IL,103rd +Removed Co-Sponsor Rep. Cyril Nichols,2024-04-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-30,[],IL,103rd +Postponed - Health and Human Services,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-11,[],IL,103rd +Removed Co-Sponsor Rep. Travis Weaver,2023-02-01,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-18,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-02,[],IL,103rd +Postponed - Insurance,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-10-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-02-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-03-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-06,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2024-03-06,[],IL,103rd +Referred to Assignments,2023-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Senate Sponsor Sen. Steve McClure,2023-04-19,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 016-000-000",2023-04-25,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Motion Do Pass - Lost Counties & Townships Committee; 004-005-000,2023-03-09,['committee-failure'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-02-21,[],IL,103rd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2023-04-26,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-04-11,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2024-04-02,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-02,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-21,['amendment-failure'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Ethics & Elections,2024-03-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-02-16,[],IL,103rd +Chief Sponsor Changed to Rep. Theresa Mah,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-03-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-02-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2024-04-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-05-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-15,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-12-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Removed Co-Sponsor Rep. Brad Stephens,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-04-21,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-02-01,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-02-28,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-11,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Jason Bunting,2023-02-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-02,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2024-04-22,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +To Insurance Policy Subcommittee,2023-02-24,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2024-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-02-22,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Joyce Mason,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Fred Crespo,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 102-010-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-18,[],IL,103rd +Do Pass as Amended Education; 012-000-000,2024-03-06,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-29,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jenn Ladisch Douglass,2024-03-20,['amendment-introduction'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2024-05-25,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-03-05,[],IL,103rd +Chief House Sponsor Rep. Stephanie A. Kifowit,2024-05-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Assigned to Appropriations- Education,2023-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2024-04-02,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-01-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Education,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-11-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Chief Sponsor Changed to Rep. Jay Hoffman,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2024-03-13,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Transportation: Vehicles & Safety; 010-000-000,2024-04-03,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-01-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-11-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Third Reading - Short Debate - Passed 101-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-11-06,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2023-03-15,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-05-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Tom Bennett,2024-03-12,['amendment-introduction'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-15,['referral-committee'],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-12,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-15,[],IL,103rd +Do Pass as Amended Energy and Public Utilities; 015-000-000,2024-03-14,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Waive Posting Notice,2023-03-07,[],IL,103rd +Do Pass as Amended / Short Debate Insurance Committee; 013-000-000,2024-03-20,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-09-29,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-04,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Postponed - Health and Human Services,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Do Pass as Amended / Short Debate Police & Fire Committee; 014-000-000,2024-04-04,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-03-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-11-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-05-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Chief Sponsor Changed to Rep. Marcus C. Evans, Jr.",2023-03-20,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Chief Sponsor Changed to Rep. Curtis J. Tarver, II",2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Appropriations,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 3 Filed with Clerk by Rep. Mary E. Flowers,2023-02-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-04-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-02-22,[],IL,103rd +House Committee Amendment No. 1 Adopted in Restorative Justice; by Voice Vote,2024-03-14,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Directed to Multiple Committees Higher Education, Appropriations-Education",2024-01-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-03-02,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-03-21,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-04-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-09,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-21,['amendment-failure'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-03-18,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-02-22,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2024-03-12,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-06,['amendment-passage'],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-06,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-03-29,[],IL,103rd +Do Pass as Amended Insurance; 010-000-000,2024-03-06,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended Licensed Activities; 007-000-000,2024-03-14,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-03-02,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2024-04-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Referred to Assignments,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-07,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-01-31,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-01-31,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-30,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Sponsor Changed to Rep. Bob Morgan,2023-03-14,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Resolution Adopted 108-001-000,2023-04-25,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-05-11,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Referred to Assignments,2023-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2024-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Postponed - Executive,2023-03-09,[],IL,103rd +Assigned to Mental Health & Addiction Committee,2024-03-05,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2024-02-27,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-15,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate **,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Chief Sponsor Changed to Rep. Lilian Jiménez,2023-03-16,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-07-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-05-11,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Health Care Availability & Accessibility Committee,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-09-04,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-28,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-04-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-09-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +To Insurance Main Subcommittee,2024-03-13,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2024-03-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-10-24,[],IL,103rd +To Subcommittee on Procurement,2024-02-08,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 16, 2024",2024-05-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Referred to Rules Committee,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-02-06,[],IL,103rd +Arrived in House,2024-05-17,['introduction'],IL,103rd +Referred to Rules Committee,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-03-07,[],IL,103rd +Do Pass / Short Debate Housing; 012-002-000,2024-04-03,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Public Health,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-03-11,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-03-21,[],IL,103rd +Do Pass as Amended Judiciary; 009-000-000,2024-03-13,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-16,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2024-03-04,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-22,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Third Reading - Passed; 056-001-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-03-22,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Public Health; 007-000-000,2023-03-08,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-02,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2024-03-19,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Do Pass as Amended Judiciary; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-02-23,[],IL,103rd +Do Pass as Amended Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Do Pass as Amended Environment and Conservation; 007-001-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Health and Human Services; 009-002-000,2023-03-08,['committee-passage'],IL,103rd +Assigned to State Government,2024-01-24,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Erica Harriss,2024-03-05,[],IL,103rd +Do Pass as Amended Environment and Conservation; 006-002-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2024-04-09,[],IL,103rd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-24,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2024-02-27,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Labor,2024-03-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2024-04-05,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-13,['amendment-passage'],IL,103rd +Do Pass Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-06,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2023-03-09,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-22,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-09,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-11,[],IL,103rd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Licensed Activities,2023-03-08,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations - Health and Human Services,2024-03-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended Environment and Conservation; 008-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Financial Institutions,2023-03-28,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-12-18,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-01,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-08,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Rachel Ventura,2024-03-19,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-09,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-18,[],IL,103rd +Do Pass as Amended Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-03-22,[],IL,103rd +Third Reading - Passed; 034-017-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-11-08,[],IL,103rd +Third Reading - Passed; 045-006-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2024-03-12,[],IL,103rd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 101-009-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2023-03-21,[],IL,103rd +Do Pass as Amended Judiciary; 008-000-000,2024-03-06,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-04-08,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-03-20,[],IL,103rd +Do Pass as Amended Higher Education; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +Do Pass as Amended State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Do Pass as Amended Judiciary; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-05-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-21,[],IL,103rd +Postponed - Financial Institutions,2023-03-08,[],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-11-07,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-09,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended Insurance; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-13,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Postponed - Judiciary,2024-03-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-04-02,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-04-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 10, 2024",2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-03-12,[],IL,103rd +Do Pass as Amended Revenue; 009-000-000,2024-03-14,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2024-04-04,['amendment-introduction'],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-03-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Do Pass as Amended / Short Debate Agriculture & Conservation Committee; 006-003-000,2024-04-02,['committee-passage'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Firearms,2024-03-14,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-03-06,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Special Committee on Criminal Law and Public Safety,2023-03-09,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Do Pass Public Health; 007-000-000,2023-03-08,['committee-passage'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 017-008-000,2023-02-28,['committee-passage'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-20,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-03-07,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Do Pass as Amended Agriculture; 009-002-000,2023-03-09,['committee-passage'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-25,[],IL,103rd +Do Pass as Amended / Short Debate Insurance Committee; 015-000-000,2024-04-02,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-22,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-04-26,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Third Reading - Passed; 045-005-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Postponed - Labor,2024-03-13,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-04-03,['committee-passage'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Do Pass as Amended / Short Debate Insurance Committee; 012-000-000,2024-03-12,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Sponsor Removed Sen. Andrew S. Chesney,2023-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2024-03-05,['amendment-introduction'],IL,103rd +Do Pass as Amended Financial Institutions; 005-002-000,2024-03-13,['committee-passage'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Resolution Adopted,2024-04-16,['passage'],IL,103rd +Third Reading - Short Debate - Passed 069-043-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-11,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-02-09,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-04-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-04-03,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-03-20,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-01,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-01,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-03-21,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Local Government,2023-03-08,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended Licensed Activities; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2024-03-20,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-02-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Porfirio,2024-03-21,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Special Committee on Criminal Law and Public Safety,2023-03-09,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 110-000-001,2024-04-17,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended Labor; 011-004-000,2024-03-06,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2024-03-20,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2024-02-22,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-16,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended Insurance; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-20,[],IL,103rd +Be Adopted as Amended Executive; 011-000-000,2024-02-21,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2024-03-07,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2024-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-03-06,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-02-26,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-30,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-03-13,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-23,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Do Pass Judiciary; 005-002-000,2024-03-06,['committee-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2024-05-02,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-03-14,[],IL,103rd +Do Pass as Amended Insurance; 008-000-000,2024-03-13,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-03-13,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-02-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-04-25,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Procurement,2024-03-14,[],IL,103rd +Assigned to Appropriations-Higher Education Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-07,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-02-16,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-02,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2024-04-04,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +To Subcommittee on Procurement,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 070-038-000,2024-05-28,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-02-21,[],IL,103rd +"To Subcommittee on Gaming, Wagering, and Racing",2024-03-07,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Do Pass as Amended / Short Debate Public Health Committee; 007-000-000,2024-03-14,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 078-032-002,2023-03-22,"['passage', 'reading-3']",IL,103rd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2023-03-22,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-03-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Referred to Higher Education Committee,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Standard Debate,2023-03-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Omar Aquino,2023-03-21,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Consumer Protection Committee; 006-003-000,2023-03-07,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-21,[],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 006-003-000,2024-03-13,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-08,['amendment-failure'],IL,103rd +House Committee Amendment No. 1 Adopted in Personnel & Pensions Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2024-03-21,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-24,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Adoption & Child Welfare Committee; 013-000-000,2024-03-06,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Sponsor Changed to Rep. Norine K. Hammond,2023-03-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2023-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-08,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 082-023-002,2023-03-23,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-04-04,[],IL,103rd +Do Pass as Amended / Short Debate Economic Opportunity & Equity Committee; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-03-09,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Mark L. Walker,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-04-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-22,[],IL,103rd +Do Pass / Short Debate Immigration & Human Rights Committee; 012-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-08-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 16, 2023",2023-02-15,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-03-20,['amendment-introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2023-03-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-14,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-11-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-02-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Public Health Committee,2023-03-01,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-03-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Human Services Committee; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-16,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael T. Marron,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 3 Filed with Clerk by Rep. Daniel Didech,2023-03-06,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-02-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2024-02-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2024-04-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-03-28,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-02-16,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Omar Aquino,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Do Pass as Amended / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-04-03,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Remove Chief Co-Sponsor Rep. Kevin John Olickal,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-23,['reading-2'],IL,103rd +Remove Chief Co-Sponsor Rep. Matt Hanson,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Cassidy,2024-04-12,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-16,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. William ""Will"" Davis",2023-03-21,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-03-10,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2023-03-13,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-09,['amendment-failure'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Motion Filed to Suspend Rule 21 Ethics & Elections; Rep. Natalie A. Manley,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-03-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Financial Institutions and Licensing Committee; 012-000-000,2024-03-12,['committee-passage'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-08,['amendment-failure'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2023-03-28,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-03,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-02-16,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-28,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 092-017-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-03-21,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 010-005-000,2024-04-04,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-02-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-02-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sharon Chung,2024-03-20,['amendment-introduction'],IL,103rd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2024-04-03,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Consumer Protection Committee,2024-03-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-03-07,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-04-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 068-037-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 014-002-000,2024-04-04,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Remove Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-01,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-13,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2024-03-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-04,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Public Health Committee; 008-000-000,2023-02-28,['committee-passage-favorable'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Adopted in Public Health Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +To Commercial & Property Subcommittee,2024-03-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Adopted in Counties & Townships Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Judicial Note Requested by Rep. Patrick Windhorst,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-04-25,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-04-02,[],IL,103rd +Third Reading - Short Debate - Passed 075-027-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-02-16,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 075-034-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-03-30,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-02-27,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-02-23,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-03-22,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-02-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2023-03-20,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-006-000,2024-04-02,['committee-passage'],IL,103rd +Do Pass as Amended / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-01,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-02-02,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-04-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-03,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Motion to Suspend Rule 21 - Prevailed 068-038-000,2024-05-20,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2024-04-05,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-03-20,['amendment-introduction'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass as Amended Veterans Affairs; 007-000-000,2023-02-23,['committee-passage'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-03-08,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Reported Back To State Government; 003-000-000,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2023-03-22,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-03-07,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-02-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Do Pass as Amended Public Health; 008-000-000,2024-03-13,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-03-03,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-03-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-03-12,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Third Reading - Passed; 058-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2024-03-20,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2023-03-02,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2024-03-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-01-30,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Win Stoller,2023-03-23,['amendment-introduction'],IL,103rd +Postponed - State Government,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Do Pass as Amended Licensed Activities; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-02-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-09,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Do Pass as Amended / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-10,[],IL,103rd +Do Pass as Amended Financial Institutions; 007-000-000,2024-03-13,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Public Health,2024-03-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Michael W. Halpin,2024-04-05,['amendment-introduction'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Third Reading - Passed; 041-015-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2023-03-10,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-07,[],IL,103rd +Third Reading - Short Debate - Passed 098-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2023-10-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Tom Weber,2024-04-16,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-02-21,[],IL,103rd +Do Pass Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-10,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-03-13,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2024-03-07,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-21,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 056-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 041-016-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-03-26,[],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended / Short Debate Agriculture & Conservation Committee; 009-000-000,2024-03-12,['committee-passage'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-21,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-01,[],IL,103rd +Do Pass as Amended Public Health; 007-000-000,2023-03-08,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +Assigned to Energy & Environment Committee,2024-01-31,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 23, 2023",2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-20,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2023-03-24,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-03-07,['amendment-passage'],IL,103rd +Do Pass as Amended Judiciary; 006-001-000,2023-03-08,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-06-13,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2024-03-12,[],IL,103rd +Chief Sponsor Changed to Rep. Nicholas K. Smith,2023-03-16,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-13,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-07,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 20, 2024",2024-02-08,[],IL,103rd +Resolution Adopted,2024-04-18,['passage'],IL,103rd +Assigned to Transportation,2024-04-16,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-12-07,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Human Rights,2023-03-07,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Environment and Conservation; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 9, 2024",2024-05-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Senate Special Committee on Pensions,2023-03-09,['amendment-passage'],IL,103rd +Do Pass as Amended Agriculture; 012-000-000,2023-03-09,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-05-24,[],IL,103rd +To Higher Ed-Degree Conferral Subcommittee,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass Judiciary; 009-000-000,2023-02-22,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Executive,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Javier L. Cervantes,2024-03-18,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Do Pass as Amended Revenue; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-08,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Public Health,2023-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended Insurance; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-05-09,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2023-03-24,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-28,[],IL,103rd +Referred to Rules Committee,2023-05-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 010-000-000,2024-03-07,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-29,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-03-12,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-03-02,['amendment-introduction'],IL,103rd +Do Pass as Amended Health and Human Services; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-15,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-02-23,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-01,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-05,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Postponed - Judiciary,2024-03-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Resolution Adopted,2023-05-11,['passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Re-assigned to Health and Human Services,2024-01-10,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-03-07,[],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-03-07,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-03-09,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-06,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-20,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Referred to Rules Committee,2024-05-01,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-02-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-02-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Adopted Both Houses,2024-05-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Sponsor Removed Sen. Doris Turner,2023-03-23,[],IL,103rd +Do Pass as Amended Higher Education; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Do Pass as Amended Judiciary; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-04-16,[],IL,103rd +Adopted Both Houses,2023-02-23,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-04-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sue Rezin,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Licensed Activities,2023-03-22,['amendment-passage'],IL,103rd +Third Reading - Passed; 040-018-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-05-23,[],IL,103rd +Do Pass Licensed Activities; 006-000-000,2023-02-23,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-11-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2024-04-03,['amendment-introduction'],IL,103rd +Chief Sponsor Changed to Rep. Daniel Didech,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-22,[],IL,103rd +To Subcommittee on Cannabis,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2024-02-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Do Pass Local Government; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-02-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-23,['amendment-introduction'],IL,103rd +Third Reading - Passed; 041-013-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), this committee amendment will remain in the Committee on Assignments.",2024-03-12,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2023-03-13,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-03-13,[],IL,103rd +To Subcommittee on Property,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2024-01-26,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2024-02-28,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-08,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-04-18,['amendment-introduction'],IL,103rd +Do Pass Executive; 010-000-000,2024-04-18,['committee-passage'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations - Health and Human Services,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-01,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Public Safety and Infrastructure,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-04-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-03-13,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-03-05,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Do Pass as Amended Licensed Activities; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2023-03-10,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2024-04-15,['committee-passage-favorable'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-02-27,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-02-20,[],IL,103rd +Reported Back To State Government; 003-000-000,2023-03-08,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-03-06,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-20,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Meg Loughran Cappel,2023-03-28,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-03-07,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Health and Human Services,2023-03-07,['amendment-passage'],IL,103rd +Do Pass as Amended Energy and Public Utilities; 017-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2024-04-04,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1) this amendment will stay in Assignments,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-02-23,[],IL,103rd +Do Pass as Amended Judiciary; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2024-02-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2024-03-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-12-14,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-10-04,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-04-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-02-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Public Health Committee,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-17,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-20,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Removed Co-Sponsor Rep. Ryan Spain,2023-04-04,[],IL,103rd +Resolution Adopted,2023-04-27,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-11-09,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-02-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-30,[],IL,103rd +Be Adopted State Government; 008-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +To Insurance Main Subcommittee,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-07,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-20,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-03-22,[],IL,103rd +Recommends Be Adopted Immigration & Human Rights Committee; 012-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-18,['amendment-passage'],IL,103rd +Prevailed to Suspend Rule 3-6(a),2023-02-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-01-30,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-02-01,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-03-21,[],IL,103rd +Do Pass as Amended Executive; 012-000-000,2024-03-14,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-05-22,[],IL,103rd +Chief Sponsor Changed to Rep. Lakesia Collins,2023-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-02-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-03-25,[],IL,103rd +Sponsor Removed Sen. Karina Villa,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-03-06,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-02-23,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-25,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Removed Co-Sponsor Rep. Janet Yang Rohr,2024-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-17,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2024-03-11,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2024-03-22,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-02-23,[],IL,103rd +Re-assigned to Special Committee on Criminal Law and Public Safety,2024-01-10,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-02-29,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-02-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2024-04-04,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-02-09,[],IL,103rd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2024-03-21,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 081-031-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2024-03-25,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-21,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-05,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-03-12,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2024-03-20,[],IL,103rd +Do Pass as Amended / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Do Pass as Amended / Short Debate Transportation: Vehicles & Safety; 010-000-000,2024-04-03,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Hoan Huynh,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-20,[],IL,103rd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulations, Roads & Bridges",2024-04-16,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Revenue,2023-03-07,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Postponed - Executive,2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2024-04-09,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass as Amended / Short Debate Public Health Committee; 006-003-000,2024-04-04,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-11,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-05-16,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-01-26,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Chief Sponsor Changed to Rep. Bob Morgan,2023-03-13,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-05-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Police & Fire Committee; 012-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2024-03-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-07-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-07-02,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-06-10,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations - Health and Human Services,2023-03-08,[],IL,103rd +Chief Sponsor Changed to Rep. Matt Hanson,2023-03-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-03-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-01-29,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-01-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-04-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dan McConchie,2024-02-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-04-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2024-02-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Re-assigned to Energy and Public Utilities,2023-05-19,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-02-22,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Re-assigned to Special Committee on Criminal Law and Public Safety,2024-01-10,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-02-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Re-assigned to Judiciary,2024-01-10,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Sponsor Changed to Rep. Terra Costa Howard,2023-03-22,[],IL,103rd +Postponed - Transportation,2024-03-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +To Subcommittee on Privacy,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-06-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-01-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +To Telecom Subcommittee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass Labor; 011-004-000,2024-03-06,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-04-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-14,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-02-09,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-02-07,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-10,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Amy Elik,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-09-29,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-02-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-04-19,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-03-02,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 24, 2023",2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-28,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-21,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 19, 2023",2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-11-09,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-03-14,[],IL,103rd +Senate Committee Amendment No. 1 Held in Health and Human Services,2024-03-20,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-25,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +To Subcommittee on Special Issues,2024-02-06,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-07,[],IL,103rd +To Subcommittee on Special Issues,2024-02-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Do Pass as Amended Insurance; 008-000-000,2024-03-13,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2024-03-20,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-02-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-09,[],IL,103rd +To Subcommittee on CLEAR Compliance,2024-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-01-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-15,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-14,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Bradley Fritts,2024-04-17,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-03,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-04-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-03-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Approved for Consideration Rules Committee; 004-000-000,2024-04-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-25,[],IL,103rd +Resolution Adopted 106-000-000,2023-03-30,['passage'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-30,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-02-28,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-05-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Sponsor Removed Sen. Rachel Ventura,2024-05-22,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-24,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Approved for Consideration Rules Committee; 004-000-000,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ann Gillespie,2024-03-12,['amendment-introduction'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-13,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-03-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 015-000-000,2024-04-10,[],IL,103rd +Approved for Consideration Rules Committee; 004-000-000,2024-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-20,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-24,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2024-03-12,[],IL,103rd +Resolution Adopted,2023-02-15,['passage'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-04-05,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-04-26,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 014-000-000,2024-04-03,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-07-11,[],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-12-07,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-01-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Do Pass as Amended Education; 008-003-000,2024-03-13,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-03-07,[],IL,103rd +Do Pass as Amended Public Health; 008-000-000,2024-03-13,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Public Utilities Committee,2023-03-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-05-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2023-03-28,[],IL,103rd +Do Pass as Amended Judiciary; 007-000-000,2024-03-13,['committee-passage'],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Postponed - Executive,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-13,[],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; 009-000-000,2023-03-08,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-02-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-30,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2024-03-13,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-13,[],IL,103rd +Re-assigned to Local Government,2024-01-10,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-05-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2023-03-22,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-10-04,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-02-28,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2023-03-20,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Anna Moeller,2024-04-16,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-02-22,['amendment-introduction'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-07-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-22,[],IL,103rd +Sponsor Removed Sen. Rachel Ventura,2023-02-09,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-08,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-02-09,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-02-07,[],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), this committee amendment will remain in the Committee on Assignments.",2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-07-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2023-05-18,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-27,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-07-02,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-03-28,[],IL,103rd +Chief Sponsor Changed to Rep. Janet Yang Rohr,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-07-23,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-12,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-05-28,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Katie Stuart,2023-03-06,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-04-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-02-14,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-03-25,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-28,[],IL,103rd +House Committee Amendment No. 1 Adopted in Public Health Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Do Pass as Amended / Short Debate Human Services Committee; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-05-18,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-11,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-07-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-03-06,[],IL,103rd +To Subcommittee on CLEAR Compliance,2024-03-07,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2024-03-21,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-29,[],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 016-000-000,2024-04-02,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2023-04-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Chief Sponsor Changed to Rep. Jay Hoffman,2024-03-20,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-13,[],IL,103rd +Chief Sponsor Changed to Rep. Kelly M. Cassidy,2024-05-15,[],IL,103rd +Fiscal Note Requested by Rep. Dan Ugaste,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-04-17,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-24,[],IL,103rd +To Labor Subcommittee on Employment Security,2023-03-09,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-27,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-27,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-25,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-03-06,[],IL,103rd +Do Pass as Amended Licensed Activities; 009-000-000,2024-03-22,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-02-16,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-03-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-08-28,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2023-03-16,[],IL,103rd +Removed Co-Sponsor Rep. Bob Morgan,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-03,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-04-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +"Chief Co-Sponsor Changed to Rep. Curtis J. Tarver, II",2023-03-09,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-20,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Reported Back To Judiciary; 003-000-000,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-09,[],IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2023-03-06,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2023-03-23,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-16,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-20,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-09,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Human Services Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-02,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2023-03-28,['amendment-introduction'],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2023-03-09,['amendment-introduction'],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-15,[],IL,103rd +Do Pass / Short Debate Housing; 010-004-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-02-23,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-12,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-28,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-03-20,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 014-000-000,2023-03-09,['committee-passage-favorable'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2023-03-21,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-28,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Will Guzzardi,2023-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 013-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-26,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +"Do Pass as Amended / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2024-04-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-03-07,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-03-14,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Fred Crespo,2023-03-22,[],IL,103rd +Remove Chief Co-Sponsor Rep. Abdelnasser Rashid,2023-03-01,[],IL,103rd +Fiscal Note Requested by Rep. Ryan Spain,2024-03-20,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Third Reading - Short Debate - Passed 092-017-002,2023-03-22,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended / Short Debate Counties & Townships Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Cassidy,2023-03-21,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-03-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-02-14,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2023-03-09,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-15,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-15,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 011-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-02-28,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Second Reading - Standard Debate,2023-03-16,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-02-15,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Abdelnasser Rashid,2023-03-06,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2024-05-21,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-03,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-10-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2023-03-17,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-21,[],IL,103rd +Judicial Note Filed,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-26,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 008-006-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Public Health Committee; 005-003-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 010-000-000,2024-03-14,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Higher Education Committee; 010-002-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-04-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-04-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2023-03-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-22,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-02-09,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-03-10,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-02-09,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Consumer Protection Committee; 007-002-000,2023-03-21,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-08,['amendment-failure'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-02-08,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Assigned to Executive Committee,2024-02-29,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-13,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Dave Vella,2024-03-14,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-30,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2023-03-22,[],IL,103rd +Approved for Consideration Assignments,2024-05-21,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-22,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Tom Weber,2023-03-07,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-07,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Public Health,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-04,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2024-03-19,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments",2023-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-05-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-04-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-13,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-03-18,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-16,[],IL,103rd +Recommends Be Adopted Human Services Committee; 008-000-000,2024-05-28,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-03-13,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-20,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Suzanne M. Ness,2024-04-10,['amendment-introduction'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-13,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-05-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +Do Pass as Amended Education; 010-000-000,2024-03-13,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-02-16,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-09,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 009-001-000,2023-03-23,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-02-26,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Patrick J. Joyce,2023-02-28,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2024-04-02,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-08,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 056-001-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Third Reading - Passed; 056-003-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Licensed Activities; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2024-04-11,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-20,[],IL,103rd +Do Pass as Amended Judiciary; 005-002-000,2024-03-21,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Do Pass as Amended Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 8, 2023",2023-03-08,['reading-2'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Education,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-06,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-07,[],IL,103rd +Do Pass as Amended Judiciary; 006-002-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass as Amended Executive; 010-000-000,2024-03-07,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-04-17,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2023-03-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2023-03-08,[],IL,103rd +Do Pass as Amended Licensed Activities; 009-000-000,2023-03-23,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-03,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-07,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-16,[],IL,103rd +Postponed - Local Government,2024-03-14,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-06,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-09,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 30, 2024",2024-04-18,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-07,['amendment-passage'],IL,103rd +Third Reading - Passed; 053-000-001,2024-04-09,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-05,[],IL,103rd +Do Pass Health and Human Services; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Do Pass as Amended Judiciary; 006-002-000,2023-03-08,['committee-passage'],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-04,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-03-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Labor,2024-04-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Terri Bryant,2024-03-01,[],IL,103rd +Re-assigned to Appropriations,2024-03-12,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2024-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-03-10,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Chief Sponsor Changed to Sen. Sue Rezin,2023-05-09,[],IL,103rd +Re-assigned to Appropriations- Education,2024-01-10,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-12,[],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-07,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Postponed - Judiciary,2023-02-22,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Agriculture,2023-03-21,[],IL,103rd +Do Pass as Amended Judiciary; 007-002-000,2023-03-08,['committee-passage'],IL,103rd +Chief Sponsor Changed to Sen. Sara Feigenholtz,2023-05-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; State Government,2023-03-08,['amendment-passage'],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-03-25,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-14,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Patrick J. Joyce,2023-03-09,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 010-004-000,2024-03-13,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-02-23,[],IL,103rd +Do Pass Public Health; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-01-26,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-03-21,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; State Government,2023-03-08,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 007-000-000,2023-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Licensed Activities,2023-03-08,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-04,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-10,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-02-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2024-03-07,[],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 026-000-000,2024-03-13,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-13,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-02-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2024-03-20,['amendment-introduction'],IL,103rd +Third Reading - Passed; 053-004-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2023-03-22,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-09,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-04-08,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-02-06,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2023-03-10,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Executive,2023-03-23,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-02-23,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 006-000-002,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-08,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-05,[],IL,103rd +Assigned to State Government Administration Committee,2024-03-27,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-03-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-14,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Public Health,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-02-08,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Elections,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-03-05,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Laura Ellman,2024-05-25,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Human Rights,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2023-12-07,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-06-24,[],IL,103rd +Be Adopted Transportation; 012-000-000,2024-05-01,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-08,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-03-21,['amendment-introduction'],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Do Pass State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-03-21,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Adopted; Special Committee on Criminal Law and Public Safety,2023-03-09,['amendment-passage'],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-04,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sue Rezin,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-01,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2023-03-02,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-17,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2023-03-10,[],IL,103rd +Do Pass Higher Education; 011-000-000,2023-02-22,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2024-01-19,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Insurance,2023-03-07,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-10,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-03-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2024-04-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2024-01-30,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Do Pass as Amended Transportation; 014-000-000,2024-03-13,['committee-passage'],IL,103rd +Approved for Consideration Assignments,2023-10-25,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-05,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Judiciary,2024-03-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-27,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 009-000-000,2024-03-13,[],IL,103rd +Do Pass as Amended State Government; 005-003-000,2024-03-14,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Environment and Conservation,2023-04-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2024-04-03,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Re-assigned to Education,2023-05-02,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 078-033-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education,2024-03-13,[],IL,103rd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Do Pass as Amended / Short Debate Insurance Committee; 015-000-000,2024-04-02,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Financial Institutions,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-12,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2023-03-24,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-01,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-30,[],IL,103rd +Third Reading - Passed; 056-003-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-23,['amendment-introduction'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-10,[],IL,103rd +Do Pass as Amended / Short Debate Economic Opportunity & Equity Committee; 005-003-000,2024-04-03,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Transportation,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Judiciary,2024-03-05,[],IL,103rd +Senate Floor Amendment No. 1 Be Adopted Public Health; 008-000-000,2024-03-13,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-03-12,[],IL,103rd +Do Pass as Amended / Short Debate Appropriations-Public Safety Committee; 010-000-000,2024-05-15,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2024-04-08,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Lakesia Collins,2024-03-04,['amendment-introduction'],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-02-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-02-13,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Do Pass as Amended Judiciary; 008-000-000,2024-03-21,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-05-01,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Approved for Consideration Assignments,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-01,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Immigration & Human Rights Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-10,[],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-02-28,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Maurice A. West, II",2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-05-24,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Jenn Ladisch Douglass,2024-04-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Motion Filed to Suspend Rule 21 Revenue & Finance Committee; Rep. Robyn Gabel,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-03-29,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Postponed - Agriculture,2024-03-07,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-05,[],IL,103rd +"To Subcommittee on Gaming, Wagering, and Racing",2024-02-08,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Do Pass as Amended Higher Education; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2024-04-16,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-11,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2024-03-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Postponed - Executive,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-22,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +To Subcommittee on Government Operations,2024-02-08,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-01,[],IL,103rd +Removed Co-Sponsor Rep. Joyce Mason,2024-02-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-27,[],IL,103rd +Removed Co-Sponsor Rep. Lilian Jiménez,2023-03-02,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-13,['amendment-passage'],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-03-13,[],IL,103rd +Approved for Consideration Assignments,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2023-04-18,['amendment-introduction'],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-21,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-04-16,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-04-16,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-01,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Consumer Protection Committee,2024-03-21,[],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +Third Reading - Passed; 054-001-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2024-04-17,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-02,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2024-04-17,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-11-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Linda Holmes,2024-03-13,['amendment-introduction'],IL,103rd +Do Pass as Amended Education; 010-000-000,2024-03-13,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +Assigned to State Government Administration Committee,2024-05-24,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Third Reading - Passed; 053-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-03-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Procurement,2024-03-07,[],IL,103rd +Resolution Adopted,2024-05-08,['passage'],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2024-03-07,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-03-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2024-04-15,[],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2024-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 010-000-000,2024-03-21,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Environment and Conservation,2023-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Do Pass Judiciary; 006-001-001,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-09,[],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-01,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2024-03-12,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 014-000-000,2024-03-21,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Sara Feigenholtz,2024-03-12,['amendment-introduction'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Third Reading - Short Debate - Passed 072-040-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2024-03-18,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Education,2023-03-21,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Public Safety and Infrastructure,2024-03-12,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-06-12,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2023-03-21,[],IL,103rd +Sponsor Removed Sen. Julie A. Morrison,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Dan McConchie,2024-03-06,['amendment-introduction'],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-03-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 074-039-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-06,[],IL,103rd +Third Reading - Short Debate - Passed 099-013-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2023-04-26,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-04-20,['amendment-introduction'],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Do Pass as Amended Local Government; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2024-04-03,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 007-000-000,2024-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +To Subcommittee on Ethics,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-14,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2023-03-24,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kevin John Olickal,2024-04-01,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Fiscal Note Filed,2024-03-22,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-04-15,[],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2024-03-12,[],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-03-04,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 008-000-000,2024-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-22,['amendment-passage'],IL,103rd +Approved for Consideration Assignments,2024-04-10,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to State Government Administration Committee,2024-03-20,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-03-07,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-20,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-06,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-03-21,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2024-03-21,['amendment-introduction'],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Do Pass as Amended Revenue; 009-000-000,2024-03-14,['committee-passage'],IL,103rd +Approved for Consideration Assignments,2024-05-09,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-12,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Health and Human Services; 008-000-000,2024-03-21,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2024-03-12,['amendment-introduction'],IL,103rd +Do Pass as Amended Local Government; 009-000-000,2024-03-14,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-22,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-25,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-04-09,[],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Postponed - Environment and Conservation,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-03-12,[],IL,103rd +Do Pass as Amended Local Government; 009-000-000,2024-03-14,['committee-passage'],IL,103rd +Do Pass as Amended Executive; 011-000-000,2023-03-23,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-03-13,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-01-16,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Early Childhood Education,2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Adoption & Child Welfare Committee; 013-000-000,2024-04-15,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2023-03-24,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-02-06,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2023-03-01,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-11,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-05-03,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-11-03,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-10-11,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-03-09,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2024-04-16,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-04-25,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-03-28,[],IL,103rd +To Subcommittee on Special Issues,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-04-25,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-05-18,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2024-03-13,['committee-passage'],IL,103rd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 028-000-000,2023-03-08,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Veterans' Affairs Committee,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Gregg Johnson,2024-04-16,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-20,[],IL,103rd +Third Reading - Passed; 046-013-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Judiciary; 005-002-000,2024-03-13,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Agriculture,2024-03-05,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-05-19,[],IL,103rd +Do Pass as Amended Education; 011-000-000,2024-03-06,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2024-02-28,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-03-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-10-24,[],IL,103rd +Assigned to Ethics & Elections,2023-02-07,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-04-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Re-assigned to Higher Education,2024-01-10,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-13,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Public Utilities Committee,2024-03-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-02-16,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2024-04-01,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-04-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-03,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-08,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-06,[],IL,103rd +Resolution Adopted,2023-04-19,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-03-06,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2024-04-03,[],IL,103rd +First Reading,2024-02-08,['reading-1'],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Referred to Rules Committee,2023-05-23,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-02-20,[],IL,103rd +Motion Filed to Suspend Rule 21 Insurance Committee; Rep. Robyn Gabel,2023-03-08,[],IL,103rd +Referred to Rules Committee,2023-05-23,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2024-04-02,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2023-03-08,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-02-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-15,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-01,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-02-27,['amendment-introduction'],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-09,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-02-22,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-02-27,[],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2023-02-17,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-27,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-03-09,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-09,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Financial Institutions and Licensing Committee; 012-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-02-23,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Counties & Townships Committee,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Ethics & Elections,2023-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-02-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Sue Rezin,2023-05-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-04-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Burke,2023-02-23,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-02-24,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Cybersecurity, Data Analytics, & IT Committee; 012-000-000",2023-03-22,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Hoan Huynh,2023-03-06,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-03-14,[],IL,103rd +Do Pass / Short Debate Rules Committee; 006-003-000,2024-05-28,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-04-18,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-15,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-05-09,[],IL,103rd +Chief Sponsor Changed to Rep. Natalie A. Manley,2023-05-02,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-21,[],IL,103rd +Approved for Consideration Rules Committee; 004-000-000,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-02-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-20,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +Approved for Consideration Assignments,2024-05-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Removed Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-02,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dale Fowler,2023-03-24,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-22,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 014-000-000",2023-03-21,['committee-passage-favorable'],IL,103rd +Removed Co-Sponsor Rep. Gregg Johnson,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-28,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; 028-000-000,2023-03-08,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-09,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Eva-Dina Delgado,2024-04-10,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-24,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-02-23,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-03-15,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-03-10,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-10-25,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-01,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Approved for Consideration Assignments,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-14,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-22,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-04-16,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-21,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-07,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Removed Co-Sponsor Rep. La Shawn K. Ford,2023-03-06,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-22,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-02-07,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-22,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-29,['referral-committee'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2023-03-20,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-02-20,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-14,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Bob Morgan,2024-03-22,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Third Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-26,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-14,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-20,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-05-14,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-02-21,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-22,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to State Government Administration Committee,2024-04-03,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Daniel Didech,2024-04-16,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-11,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Donald P. DeWitte,2023-03-13,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2024-03-01,['amendment-introduction'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-12-19,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-05-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-14,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-04-03,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-04-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-24,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-05-16,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-06,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 008-006-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-02-22,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Mental Health & Addiction Committee; 014-000-000,2023-03-16,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-01-24,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-05-03,[],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2024-03-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jonathan Carroll,2023-03-21,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Yolonda Morris,2024-05-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Approved for Consideration Assignments,2024-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Burke,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-17,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Do Pass as Amended / Short Debate Personnel & Pensions Committee; 007-004-000,2024-04-04,['committee-passage'],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-16,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-20,[],IL,103rd +House Committee Amendment No. 1 Adopted in Cities & Villages Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-14,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-02-29,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-03-01,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2023-03-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-03,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Sue Scherer,2024-03-13,['amendment-introduction'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2024-04-03,[],IL,103rd +Referred to Revenue & Finance Committee,2024-03-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-11-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-02-06,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Approved for Consideration Assignments,2024-05-22,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tony M. McCombie,2024-04-02,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2024-03-12,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 007-003-000,2024-04-03,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Public Health Committee; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Approved for Consideration Assignments,2024-05-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-10-24,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +Resolution Adopted,2024-05-03,['passage'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-06,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2024-04-03,[],IL,103rd +Adopted Both Houses,2024-02-21,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Maurice A. West, II",2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Referred to Assignments,2023-05-24,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 009-001-000,2024-03-14,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-05-20,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 017-008-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2023-03-01,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2023-03-29,['amendment-introduction'],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2024-05-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-11,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-10-25,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2024-03-27,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. William E Hauter,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2024-05-03,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 104-003-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. John M. Cabello,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Financial Institutions and Licensing Committee; 012-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2023",2023-02-23,['reading-2'],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-11,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2023-03-17,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-13,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-30,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-23,['referral-committee'],IL,103rd +Do Pass as Amended / Short Debate Energy & Environment Committee; 018-008-000,2024-04-02,['committee-passage'],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. William ""Will"" Davis",2024-05-20,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-02,[],IL,103rd +Third Reading - Short Debate - Passed 095-017-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-05-08,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dale Fowler,2023-03-22,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-24,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2023-03-15,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulations, Roads & Bridges",2023-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-29,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-23,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Ann M. Williams,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-09,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2023-03-24,['amendment-introduction'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-20,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-02-22,[],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-20,[],IL,103rd +Approved for Consideration Assignments,2023-10-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-01,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-02-21,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-05-18,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-24,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-05-19,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Adopted in Police & Fire Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-02,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Sue Rezin,2023-05-25,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-01,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-10-26,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2024-04-02,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +Removed Co-Sponsor Rep. Dagmara Avelar,2023-04-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Mark L. Walker,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-01,[],IL,103rd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 017-010-000,2024-04-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Health Committee,2023-03-16,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-02-20,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-15,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-04-06,[],IL,103rd +Resolution Adopted,2023-03-29,['passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-22,[],IL,103rd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-02-28,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-04-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Robyn Gabel,2024-04-03,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2024-04-04,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-22,[],IL,103rd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 011-000-000,2024-03-06,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-03-22,[],IL,103rd +Assigned to Counties & Townships Committee,2023-02-28,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-02,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-01-30,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-13,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-03,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-14,[],IL,103rd +House Committee Amendment No. 1 Referred to Prescription Drug Affordability & Accessibility Committee,2023-03-08,[],IL,103rd +"Added Chief Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-17,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-04-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-24,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-12-18,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-03-20,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-07,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-05-17,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2024-03-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-07-05,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-03-07,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-02-29,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-10-19,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2023-03-20,[],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments",2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-02-14,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-29,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-23,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-17,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-15,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Chief Sponsor Changed to Rep. Sonya M. Harper,2023-04-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +To Subcommittee on Procurement,2023-03-09,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-16,[],IL,103rd +Chief Sponsor Changed to Rep. Katie Stuart,2023-05-10,[],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2023-03-22,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-05-24,[],IL,103rd +Approved for Consideration Rules Committee; 004-000-000,2024-05-20,[],IL,103rd +Chief Sponsor Changed to Rep. Jennifer Gong-Gershowitz,2023-05-09,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-05-11,[],IL,103rd +Chief Sponsor Changed to Rep. Jay Hoffman,2023-05-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2023-03-20,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-14,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-28,[],IL,103rd +Chief Sponsor Changed to Rep. Daniel Didech,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-07-02,[],IL,103rd +Arrive in Senate,2023-04-19,['introduction'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-13,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-05-10,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Sue Rezin,2023-05-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Reported Back To State Government; 003-000-000,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-16,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. William ""Will"" Davis",2023-03-21,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-02-16,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-10-23,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-11-07,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-07,['committee-passage-favorable'],IL,103rd +Do Pass as Amended Local Government; 009-000-000,2024-03-14,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-02-08,[],IL,103rd +Postponed - Judiciary,2024-03-13,[],IL,103rd +Postponed - Judiciary,2024-03-21,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-03-01,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-03-20,[],IL,103rd +Re-assigned to Special Committee on Criminal Law and Public Safety,2024-01-10,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Postponed - Local Government,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-02-09,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-04-19,[],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), this committee amendment will remain in the Committee on Assignments.",2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-02,[],IL,103rd +Referred to Rules Committee,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-22,[],IL,103rd +Third Reading - Passed; 056-002-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Education,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-05-18,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-21,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-26,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-29,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-05-17,[],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-02-09,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-02-20,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-22,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-02,[],IL,103rd +Chief Sponsor Changed to Rep. Tracy Katz Muhl,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-02-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-13,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-21,[],IL,103rd +Referred to Assignments,2023-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Housing; 011-006-000,2024-04-16,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-11,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-05-18,[],IL,103rd +Re-assigned to Judiciary,2024-05-02,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Education,2023-03-07,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-11-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-03-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2024-04-11,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-03-13,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-03,['amendment-failure'],IL,103rd +To Subcommittee on Elections,2024-02-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Health and Human Services,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-04-17,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Agriculture,2023-03-09,[],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-16,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +Do Pass Public Health; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2024-03-25,['amendment-introduction'],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 010-000-000,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2023-03-28,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Approved for Consideration Rules Committee; 004-000-000,2024-04-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +To Subcommittee on Procurement,2024-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-04-18,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +To Subcommittee on Procurement,2024-02-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Approved for Consideration Assignments,2024-02-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2023-03-08,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Third Reading - Passed; 058-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Katie Stuart,2024-05-20,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 006-000-000,2023-03-23,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Joe C. Sosnowski,2024-03-11,[],IL,103rd +Third Reading - Passed; 046-010-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2024-04-05,['amendment-introduction'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Assigned to State Government,2024-01-24,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Approved for Consideration Assignments,2024-04-16,[],IL,103rd +Approved for Consideration Assignments,2024-04-16,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Second Reading,2024-04-17,['reading-2'],IL,103rd +Second Reading,2024-04-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Labor & Commerce Committee,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-19,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Public Health,2024-03-12,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions February 22, 2024",2024-02-21,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-000-000,2024-04-10,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 053-003-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-01-23,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 014-000-000,2024-04-02,['committee-passage'],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-09,[],IL,103rd +Approved for Consideration Assignments,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 008-000-000,2024-03-20,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Education,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2024-04-05,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Sponsor Removed Sen. Rachel Ventura,2024-02-20,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2023-03-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sue Rezin,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-21,[],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-06,[],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-09,[],IL,103rd +Do Pass as Amended Environment and Conservation; 005-003-000,2024-03-22,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 007-000-000,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-03-12,[],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +Do Pass as Amended Health and Human Services; 009-000-000,2024-03-13,['committee-passage'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2024-04-29,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 013-000-000,2024-03-21,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 021-000-000,2024-03-20,['committee-passage-favorable'],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-02-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass as Amended Licensed Activities; 007-000-000,2024-03-14,['committee-passage'],IL,103rd +Postponed - Local Government,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-02-14,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Third Reading - Passed; 058-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-03,['amendment-failure'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Labor; 016-000-000,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-10,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-03-05,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-03-13,[],IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Don Harmon,2024-03-08,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 008-001-000,2024-04-10,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-13,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Gaming Committee,2024-04-02,[],IL,103rd +Do Pass as Amended Local Government; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2024-02-20,['amendment-introduction'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Veterans' Affairs Committee,2024-04-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2023-03-23,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-02-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Do Pass as Amended Health and Human Services; 009-002-000,2023-03-08,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2023-03-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 009-000-000,2024-03-22,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2024-04-09,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-09,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-16,[],IL,103rd +Do Pass as Amended Judiciary; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-07,[],IL,103rd +Do Pass as Amended Judiciary; 008-000-000,2024-03-21,['committee-passage'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-05-25,['referral-committee'],IL,103rd +Re-referred to Assignments,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-02-28,['amendment-failure'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-04-03,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-03-07,[],IL,103rd +Do Pass as Amended Public Health; 008-000-000,2024-03-13,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-21,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-04-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura Ellman,2024-03-20,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-04,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2024-04-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Do Pass / Short Debate Housing; 012-005-000,2024-03-21,['committee-passage'],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on End of Life Issues,2024-03-14,[],IL,103rd +Third Reading - Passed; 058-001-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Revenue; 010-000-000,2024-03-22,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-22,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-04,[],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2024-04-03,['amendment-introduction'],IL,103rd +Third Reading - Passed; 058-001-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 012-000-000,2024-03-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-03-18,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-22,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-03-19,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Harry Benton,2024-04-12,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-02-20,[],IL,103rd +House Committee Amendment No. 1 Adopted in Immigration & Human Rights Committee; by Voice Vote,2024-03-13,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Seth Lewis,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2024-04-16,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-01,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-04-27,[],IL,103rd +Postponed - Education,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-03-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Removed Co-Sponsor Rep. La Shawn K. Ford,2024-04-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-19,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-29,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-05-07,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Health and Human Services,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-05-10,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-04,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2023-05-04,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-18,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-13,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-10-25,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-13,[],IL,103rd +Referred to Rules Committee,2023-05-15,[],IL,103rd +Chief House Sponsor Rep. Rita Mayfield,2023-05-25,[],IL,103rd +Chief House Sponsor Rep. Paul Jacobs,2023-05-19,[],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Resolution Adopted; 054-000-000,2023-05-11,['passage'],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Reported Back To Revenue & Finance Committee;,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-02-01,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2023-03-15,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Adopted in Counties & Townships Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-03-05,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 007-004-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Will Guzzardi,2023-03-03,['amendment-introduction'],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-21,[],IL,103rd +Removed Co-Sponsor Rep. Rita Mayfield,2023-01-23,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-02-15,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lakesia Collins,2023-03-21,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-10,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-02-22,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-02-17,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-03,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-02-08,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-14,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Maurice A. West, II",2023-03-21,['amendment-introduction'],IL,103rd +"Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-03-02,[],IL,103rd +Assigned to Public Utilities Committee,2023-02-21,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Public Utilities Committee; 020-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-06,[],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-10-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-05,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Police & Fire Committee,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Gaming Committee,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2023-03-14,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Burke,2023-02-23,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-03-03,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 009-006-000,2023-03-07,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-16,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michelle Mussman,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-02-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-02-27,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Stephanie A. Kifowit,2023-02-21,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jeff Keicher,2023-03-07,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Daniel Didech,2023-02-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-02-08,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-03-07,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Public Utilities Committee; 017-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +"Added Chief Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-02-22,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2023-02-28,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-02,['amendment-failure'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-02-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Do Pass / Short Debate Immigration & Human Rights Committee; 008-004-000,2023-03-08,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2023-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-15,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2023-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 090-021-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Removed Co-Sponsor Rep. Dagmara Avelar,2023-03-06,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-14,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Terra Costa Howard,2023-02-28,[],IL,103rd +Third Reading - Short Debate - Passed 098-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-16,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-18,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-14,['committee-passage-favorable'],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-03-01,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-02,['amendment-failure'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-07,[],IL,103rd +Third Reading - Short Debate - Passed 102-000-002,2023-03-23,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 065-047-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Camille Y. Lilly,2023-03-21,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Sharon Chung,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-15,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Do Pass as Amended / Short Debate Appropriations-Higher Education Committee; 009-005-000,2023-03-09,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 107-005-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Chief Co-Sponsor Changed to Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-01,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety; 009-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 014-000-000,2023-03-08,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 068-041-001,2023-03-22,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Travis Weaver,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Suzanne M. Ness,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-08,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. William E Hauter,2023-03-20,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Abdelnasser Rashid,2023-03-06,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-27,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-14,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 007-004-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 073-040-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-01,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Randy E. Frese,2023-03-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-10,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2023-03-17,['amendment-introduction'],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-08,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2023-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2023-03-01,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Cyril Nichols,2023-03-22,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Terri Bryant,2024-05-25,[],IL,103rd +Arrive in Senate,2024-05-09,['introduction'],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Behavioral and Mental Health,2023-03-07,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-30,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 14, 2023",2023-02-08,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Mental Health & Addiction Committee; by Voice Vote,2024-03-22,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-13,[],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Higher Education,2023-02-07,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2023-03-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-04,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Approved for Consideration Assignments,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jil Tracy,2023-03-29,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Win Stoller,2023-03-20,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2023-03-03,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-21,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-30,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-02-21,[],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 013-000-000",2024-04-10,['committee-passage-favorable'],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-14,[],IL,103rd +Do Pass as Amended Higher Education; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2024-04-04,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jawaharial Williams,2024-04-17,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-03-03,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-03-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-10-25,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-02-16,[],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-12,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 019-009-000,2024-04-15,['committee-passage-favorable'],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Referred to Rules Committee,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2023-03-13,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2023-03-22,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-02-22,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-17,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2023-03-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-06,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-03-23,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-09,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2024-04-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-03,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-16,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-05-20,[],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-20,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-02-22,[],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Availability & Accessibility Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Anthony DeLuca,2023-03-22,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-02-06,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-16,[],IL,103rd +Do Pass / Short Debate Appropriations-General Services Committee; 015-000-000,2024-04-12,['committee-passage'],IL,103rd +Do Pass Agriculture; 009-003-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 011-000-000,2024-04-04,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-05-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +To Violence Reduction & Prevention Subcommittee,2024-05-15,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2024-04-16,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-04-02,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-11-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Chapin Rose,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-22,[],IL,103rd +Do Pass as Amended / Short Debate Public Utilities Committee; 015-008-000,2024-04-02,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Economic Opportunity & Equity Committee,2024-04-15,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 005-000-000,2023-05-03,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2024-04-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Do Pass as Amended Judiciary; 009-000-000,2023-02-22,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Ellman,2023-04-26,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Fred Crespo,2024-03-21,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-03,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-29,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Reported Back To Revenue & Finance Committee;,2024-04-04,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2023-03-20,['amendment-introduction'],IL,103rd +Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-20,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-02,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-02-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Robert ""Bob"" Rita",2024-04-17,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 011-000-000,2024-04-04,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Donald P. DeWitte,2023-03-24,['amendment-introduction'],IL,103rd +Approved for Consideration Assignments,2024-04-16,[],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sharon Chung,2024-03-12,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-11,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-14,['referral-committee'],IL,103rd +Approved for Consideration Assignments,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-04-25,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Housing,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-08-08,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-09-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-05-16,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-16,[],IL,103rd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2024-03-21,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-23,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-21,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-10-25,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Do Pass as Amended Education; 014-000-000,2023-03-22,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Win Stoller,2023-03-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-30,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Approved for Consideration Assignments,2024-04-10,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-06-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-02-22,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 028-000-000,2024-04-15,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Do Pass as Amended Senate Special Committee on Pensions; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-10-25,[],IL,103rd +Approved for Consideration Assignments,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-26,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Win Stoller,2023-03-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-13,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Counties & Townships Committee; 008-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2023-03-13,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-12,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-02-22,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Licensed Activities,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-26,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-04,[],IL,103rd +Resolution Adopted 106-000-000,2024-04-30,['passage'],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2024-04-30,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-18,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-05-14,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Terra Costa Howard,2024-03-27,['amendment-introduction'],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-05-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Recommends Be Adopted Veterans' Affairs Committee; 010-000-000,2024-05-21,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Consumer Protection Committee; 009-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jason Plummer,2023-03-22,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-05-20,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-22,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-02-14,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-02-27,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-03-12,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Referred to Assignments,2024-05-07,[],IL,103rd +Third Reading - Short Debate - Passed 109-003-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-02,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Resolution Adopted 110-000-000,2024-05-02,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Donald P. DeWitte,2023-03-13,['amendment-introduction'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-05-24,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-05,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-15,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-03-12,[],IL,103rd +Referred to Assignments,2024-05-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-05-20,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Chief Sponsor Changed to Rep. Kelly M. Burke,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-15,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2024-03-20,[],IL,103rd +To Clean Energy Subcommittee,2024-03-06,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2024-03-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-09,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-30,[],IL,103rd +Pension Note Requested by Rep. Steven Reick,2024-05-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2024-03-07,[],IL,103rd +Approved for Consideration Assignments,2023-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"House Committee Amendment No. 3 Filed with Clerk by Rep. Maurice A. West, II",2023-03-28,['amendment-introduction'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +House Committee Amendment No. 3 Filed with Clerk by Rep. Harry Benton,2024-04-02,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-03-08,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-01,[],IL,103rd +Remains in Counties & Townships Committee,2023-03-09,[],IL,103rd +Recommends Be Adopted as Amended Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-04-26,['amendment-passage'],IL,103rd +Referred to Assignments,2023-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-07,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-001,2024-04-17,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-10-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-10-24,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-09-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2024-03-14,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-29,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-08-13,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-17,[],IL,103rd +Re-assigned to Education,2023-03-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-22,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 010-000-000,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2024-05-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2024-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-02-20,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-02-27,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-21,[],IL,103rd +Postponed - Energy and Public Utilities,2023-02-23,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-05,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-21,['amendment-passage'],IL,103rd +Do Pass as Amended Transportation; 016-000-000,2024-03-13,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2024-03-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Rita Mayfield,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-12,[],IL,103rd +Do Pass as Amended Insurance; 007-000-000,2024-03-06,['committee-passage'],IL,103rd +Do Pass as Amended State Government; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-15,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Bob Morgan,2024-04-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-02-22,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 009-000-000,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-18,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-10-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-04-02,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-21,[],IL,103rd +Do Pass as Amended / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-04-25,[],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-04-17,[],IL,103rd +Re-assigned to Higher Education,2024-01-10,['referral-committee'],IL,103rd +Do Pass as Amended / Short Debate Restorative Justice; 005-003-000,2024-03-14,['committee-passage'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-12,[],IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2023-02-24,[],IL,103rd +To Commercial & Property Subcommittee,2023-03-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Financial Institutions and Licensing Committee,2023-03-20,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-03-07,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-02-20,[],IL,103rd +Arrive in Senate,2023-05-10,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-04-11,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-15,[],IL,103rd +Chief Sponsor Changed to Rep. Martin J. Moylan,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-04,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-01,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-14,[],IL,103rd +To Subcommittee on Liquor,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-02,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-06,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-06,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-02-23,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-05-23,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Health Care Licenses Committee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-11-06,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-28,[],IL,103rd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2024-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-01-30,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-15,[],IL,103rd +Removed Co-Sponsor Rep. Lilian Jiménez,2023-03-02,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-16,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-10-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2023-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-11-09,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Referred to Rules Committee,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Porfirio,2023-03-03,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Insurance,2024-03-12,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Insurance Committee,2024-03-21,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +Motion Filed to Suspend Rule 21 Rules Committee; Rep. Bob Morgan,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-02-28,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Fred Crespo,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-02,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Adoption & Child Welfare Committee; 014-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-22,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-02,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Kelly M. Cassidy,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-05-11,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-02-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-05-08,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-03-14,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-12-19,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-14,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-03,[],IL,103rd +House Committee Amendment No. 1 Adopted in Agriculture & Conservation Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-03-08,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-03-16,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-02-16,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-05-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Jay Hoffman,2024-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-22,[],IL,103rd +First Reading,2023-01-31,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-03-17,[],IL,103rd +Postponed - Health and Human Services,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2023-04-19,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-02-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Sharon Chung,2023-03-29,[],IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2023-03-28,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2024-04-03,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-06,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-04-26,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-11-09,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-16,[],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2024-05-15,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-02-22,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +Do Pass as Amended Executive; 010-000-000,2024-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-16,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Resolution Adopted 112-000-000,2023-04-26,['passage'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-03-07,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-10-24,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-03-01,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Postponed - Health and Human Services,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-15,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-05-11,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-02-15,[],IL,103rd +Referred to Assignments,2023-04-19,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 011-000-000,2024-03-13,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-09-26,[],IL,103rd +Assigned to Executive,2023-02-22,['referral-committee'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2023-03-06,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Agriculture & Conservation Committee; 006-003-000,2024-04-02,['committee-passage'],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-02-06,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-02,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-03-17,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-13,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 011-000-000,2024-04-04,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-15,['reading-2'],IL,103rd +House Committee Amendment No. 4 Filed with Clerk by Rep. Mary E. Flowers,2023-02-27,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-02-08,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations - Health and Human Services,2024-04-30,[],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-01,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Financial Institutions and Licensing Committee; 012-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Do Pass as Amended Licensed Activities; 009-000-000,2024-03-22,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-15,[],IL,103rd +Postponed - Insurance,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-07,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments.",2024-03-20,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Steve McClure,2024-03-13,['amendment-introduction'],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-15,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; 011-000-000,2024-04-03,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-03-16,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-05-15,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Mary E. Flowers,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-10-19,[],IL,103rd +Do Pass as Amended Executive; 009-003-000,2023-03-09,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Terra Costa Howard,2024-04-15,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 18, 2023",2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2023-03-24,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-03-22,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Referred to Rules Committee,2023-01-31,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-15,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2023-03-22,[],IL,103rd +First Reading,2023-02-01,['reading-1'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-05-10,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-02-13,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Mark L. Walker,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-08,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2023-03-28,[],IL,103rd +House Committee Amendment No. 3 Filed with Clerk by Rep. Mark L. Walker,2024-04-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-03-14,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-02-28,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-03,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2024-03-20,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-08,[],IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2024-04-02,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Removed Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Executive,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Insurance,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jed Davis,2024-02-20,['amendment-introduction'],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-09-06,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-03-21,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-28,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Public Utilities Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-08,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-02-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2023-03-22,[],IL,103rd +Assigned to Public Utilities Committee,2023-02-15,['referral-committee'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-23,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Curtis J. Tarver, II",2023-02-22,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2023-03-09,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Placed on Calendar Order of First Reading March 23, 2023",2023-03-22,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-04-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-01-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-06,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dan Swanson,2023-03-17,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-10-25,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-03-22,[],IL,103rd +Chief Sponsor Changed to Rep. Jackie Haas,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 070-038-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-11-09,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-03-15,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Chief House Sponsor Rep. Dan Swanson,2023-05-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-05-19,[],IL,103rd +Chief Sponsor Changed to Rep. Michael J. Kelly,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2023-03-14,[],IL,103rd +House Committee Amendment No. 2 Adopted in Judiciary - Criminal Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2023-03-21,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 014-000-000,2023-03-08,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Dagmara Avelar,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 012-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-15,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Chief Co-Sponsor Changed to Rep. Jaime M. Andrade, Jr.",2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sharon Chung,2023-03-16,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-08,[],IL,103rd +Remove Chief Co-Sponsor Rep. Travis Weaver,2023-03-15,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-03,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +Chief Sponsor Changed to Rep. Charles Meier,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Chief Sponsor Changed to Rep. Michael J. Kelly,2023-03-23,[],IL,103rd +Chief Sponsor Changed to Rep. Travis Weaver,2024-04-11,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. John Egofske,2023-03-22,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-21,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-09,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Lamont J. Robinson, Jr.",2023-02-22,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 009-000-000,2023-02-23,['committee-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-01,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 013-005-000,2024-04-04,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Consumer Protection Committee; 009-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Theresa Mah,2023-03-02,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lakesia Collins,2023-03-20,['amendment-introduction'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2023-03-21,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Tom Weber,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-13,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-03-21,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-09,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-03-22,['committee-passage-favorable'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-07,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-05-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Adam M. Niemerg,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-03-17,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 2 Adopted in Judiciary - Criminal Committee; by Voice Vote,2023-03-07,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-05-10,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2023-03-14,['amendment-introduction'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-28,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Restorative Justice,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-01,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2023-03-21,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2024-04-16,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2023-05-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-22,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2023-03-07,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-09,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-10-25,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lakesia Collins,2023-03-01,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2023-03-01,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Chief Co-Sponsor Changed to Rep. Joyce Mason,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-15,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Adopted in Higher Education Committee; by Voice Vote,2023-03-15,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Chief Sponsor Changed to Rep. Dan Swanson,2024-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-02-24,[],IL,103rd +Removed Co-Sponsor Rep. Dan Swanson,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-02-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Chief Sponsor Changed to Rep. Dennis Tipsword, Jr.",2024-03-07,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2023-03-21,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-05-04,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-21,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Assigned to Police & Fire Committee,2023-05-09,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-10,[],IL,103rd +Do Pass as Amended / Short Debate Counties & Townships Committee; 008-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-001,2023-03-21,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-24,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Chief Sponsor Changed to Rep. Amy L. Grant,2024-03-07,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Frances Ann Hurley,2023-02-28,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-18,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-02-24,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Patrick Windhorst,2023-05-19,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 010-005-000,2023-03-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-06,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 2 Tabled,2023-03-02,['amendment-failure'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 016-008-000,2023-03-22,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Do Pass as Amended Judiciary; 009-000-000,2024-03-13,['committee-passage'],IL,103rd +Removed Co-Sponsor Rep. Maura Hirschauer,2024-03-06,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 011-000-000,2023-03-29,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-10,[],IL,103rd +Third Reading - Passed; 058-001-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-23,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Approved for Consideration Assignments,2024-04-30,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 010-000-000,2024-05-09,['committee-passage'],IL,103rd +Postponed - Education,2023-03-22,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-03-21,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2023-03-22,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-02-27,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-02-28,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-11-07,[],IL,103rd +Do Pass Labor; 012-003-000,2024-03-21,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-03-21,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 098-008-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Ellman,2023-03-09,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-11,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +To Investigations and Reporting Subcommittee,2024-02-21,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-02-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Referred to Rules Committee,2024-05-21,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Second Reading,2023-03-24,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-07-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Health and Human Services,2023-03-07,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2024-02-21,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Karina Villa,2023-03-10,['amendment-introduction'],IL,103rd +Postponed - Agriculture,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Appropriations- Public Safety and Infrastructure,2024-03-20,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 9, 2024",2024-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Re-assigned to Financial Institutions,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-10,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Steve Stadelman,2024-04-05,['amendment-introduction'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-25,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-03-16,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-19,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass Behavioral and Mental Health; 009-000-000,2024-03-06,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-23,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2024-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2023-03-10,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Gregg Johnson,2024-04-16,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-28,[],IL,103rd +Second Reading,2023-03-24,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-03-21,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-02-20,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-13,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-29,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-03-05,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-03-21,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Do Pass as Amended Public Health; 008-000-000,2024-03-13,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-04-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-03-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Third Reading - Passed; 057-001-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-06,['amendment-failure'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 9, 2024",2024-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2023-05-01,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-02-06,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Human Rights,2024-04-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2024-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-10-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Dave Syverson,2024-03-13,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2024-04-01,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 5, 2024",2024-02-28,['reading-3'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-15,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-02-14,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Labor,2024-04-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Placed on Calendar Order of First Reading April 18, 2024",2024-04-17,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-04-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-03-22,['amendment-passage'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-20,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2024-04-05,[],IL,103rd +Chief House Sponsor Rep. Thaddeus Jones,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2024-04-11,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-15,['referral-committee'],IL,103rd +Do Pass as Amended Transportation; 014-000-000,2024-03-13,['committee-passage'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-04-03,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-02,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-03-24,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Energy and Public Utilities,2023-03-09,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Suzanne M. Ness,2024-04-01,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 22, 2024",2024-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Health and Human Services,2023-03-07,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 18, 2024",2024-04-17,['reading-3'],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2024-05-03,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Chief House Sponsor Rep. Jenn Ladisch Douglass,2024-04-11,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-27,[],IL,103rd +Approved for Consideration Assignments,2024-04-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Revenue,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Public Health,2024-03-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Maura Hirschauer,2024-04-16,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Adopted in Gaming Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2023-03-01,[],IL,103rd +Third Reading - Short Debate - Passed 073-038-001,2023-03-22,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Veterans' Affairs Committee; 015-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2023-04-10,[],IL,103rd +Chief House Sponsor Rep. Natalie A. Manley,2023-03-31,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-20,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-01-24,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-13,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-04,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2024-03-20,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-07,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-04-17,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Education,2024-03-13,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-19,[],IL,103rd +Postponed - Health and Human Services,2024-03-13,[],IL,103rd +Assigned to Higher Education Committee,2024-03-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2024-04-11,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-04-30,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-02-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-05-14,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Chief Sponsor Changed to Sen. Neil Anderson,2023-03-30,[],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-05-08,['referral-committee'],IL,103rd +Assigned to Ethics & Elections,2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-06,[],IL,103rd +Assigned to Higher Education Committee,2024-03-20,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-13,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-15,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-11-08,[],IL,103rd +Added Co-Sponsor All Other Members of the House,2024-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-02,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Housing; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2024-05-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Chapin Rose,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +Assigned to Health Care Licenses Committee,2024-02-14,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-20,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-05-08,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-28,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Justin Slaughter,2024-04-15,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-02-22,[],IL,103rd +Do Pass as Amended / Short Debate Health Care Availability & Accessibility Committee; 008-002-000,2024-04-02,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-04-16,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-24,[],IL,103rd +Resolution Adopted 113-000-000,2024-05-23,['passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-26,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2023-03-28,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Economic Opportunity & Equity Committee; 005-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-05-09,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-03-13,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-29,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-08,[],IL,103rd +Chief Sponsor Changed to Sen. Chapin Rose,2023-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2024-04-30,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Licensed Activities,2023-03-08,[],IL,103rd +Chief Sponsor Changed to Sen. Donald P. DeWitte,2023-03-13,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-02-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-02-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Bob Morgan,2024-03-21,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-16,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Arrive in Senate,2023-05-24,['introduction'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-30,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-04-26,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-01,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-03-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Donald P. DeWitte,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-24,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Appropriations-Health & Human Services Committee,2024-05-21,[],IL,103rd +Chief Sponsor Changed to Sen. Michael W. Halpin,2023-03-29,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-05-03,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Behavioral and Mental Health,2023-03-07,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-04,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Health and Human Services,2023-03-28,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2024-04-04,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2023-05-08,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Economic Opportunity & Equity Committee,2024-03-05,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Sara Feigenholtz,2023-03-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-11-02,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2024-03-12,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Chief Sponsor Changed to Sen. Sally J. Turner,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2023-03-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Dave Vella,2024-02-21,[],IL,103rd +Chief House Sponsor Rep. Dagmara Avelar,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-10-25,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-03-22,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-03-06,[],IL,103rd +Chief Sponsor Changed to Sen. Dan McConchie,2023-03-24,[],IL,103rd +Chief Sponsor Changed to Sen. Julie A. Morrison,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-02,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-14,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-03-11,[],IL,103rd +Resolution Adopted 113-000-000,2024-04-30,['passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-03-01,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-13,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-04-03,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 021-000-000,2024-03-14,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Human Services Committee; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-20,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Agriculture,2023-02-28,[],IL,103rd +Postponed - Licensed Activities,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-05-16,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2024-03-06,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 23, 2023",2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-05,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-04-27,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-11-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 26, 2023",2023-10-25,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-28,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2024-04-18,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-13,[],IL,103rd +Chief Sponsor Changed to Sen. Dan McConchie,2023-03-30,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2024-03-20,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Higher Education,2023-02-21,['amendment-passage'],IL,103rd +Chief Sponsor Changed to Sen. Tom Bennett,2023-03-24,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2024-03-22,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-09-28,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 5, 2024",2024-02-28,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-22,[],IL,103rd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Thaddeus Jones,2024-04-09,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2023-05-03,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Gregg Johnson,2024-04-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-05-17,[],IL,103rd +Chief Sponsor Changed to Sen. Neil Anderson,2023-03-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-03-28,[],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-02-16,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-04-16,['amendment-introduction'],IL,103rd +Approved for Consideration Assignments,2023-05-25,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-20,[],IL,103rd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2024-03-13,['amendment-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2023-03-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Removed Co-Sponsor Rep. Dan Swanson,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 26, 2023",2023-10-25,['reading-3'],IL,103rd +Third Reading - Passed; 055-001-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Balanced Budget Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 010-005-000,2023-03-22,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 21, 2024",2024-05-20,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-26,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-03-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2024-04-03,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-28,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-05-13,[],IL,103rd +Do Pass as Amended / Short Debate Mental Health & Addiction Committee; 014-005-000,2024-03-22,['committee-passage'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-04,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-14,[],IL,103rd +Assigned to Appropriations-General Services Committee,2024-01-31,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 025-000-000,2024-04-15,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrive in Senate,2024-05-14,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-03-07,[],IL,103rd +Chief House Sponsor Rep. Nabeela Syed,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-22,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +"Do Pass as Amended / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-02-09,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-17,[],IL,103rd +Chief House Sponsor Rep. Daniel Didech,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Do Pass as Amended Executive; 010-000-000,2024-04-18,['committee-passage'],IL,103rd +Approved for Consideration Assignments,2024-05-14,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 010-000-000,2023-03-23,[],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-07,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-22,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Do Pass as Amended Labor; 011-004-000,2024-03-06,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Appropriations,2024-03-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-29,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-14,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-03-21,[],IL,103rd +Reported Back To Judiciary; 003-000-000,2023-03-21,[],IL,103rd +Racial Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2023-03-09,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2023-03-09,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 24, 2023",2023-03-23,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 005-003-000,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-05,['amendment-passage'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Do Pass as Amended Insurance; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2023-03-28,[],IL,103rd +Do Pass as Amended State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert F. Martwick,2024-04-04,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-04,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sue Rezin,2023-03-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jil Tracy,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-03-07,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-05-15,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Nicholas K. Smith,2023-03-20,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Approved for Consideration Assignments,2024-04-16,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Do Pass as Amended Environment and Conservation; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. David Koehler,2024-02-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-09,[],IL,103rd +Chief House Sponsor Rep. Kelly M. Burke,2024-04-09,[],IL,103rd +Postponed - Licensed Activities,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-04-09,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-29,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Javier L. Cervantes,2023-03-07,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-06-25,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-16,['amendment-passage'],IL,103rd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-03-13,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 2, 2024",2024-05-01,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Steve McClure,2024-03-13,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2024-03-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 26, 2023",2023-10-25,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-12-08,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-03-21,['amendment-passage'],IL,103rd +Chief Sponsor Changed to Sen. Chapin Rose,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-02-16,[],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Appropriations- Education,2024-01-10,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Human Rights,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Michael W. Halpin,2024-04-05,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 014-000-000",2024-04-10,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert F. Martwick,2023-03-23,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2023-03-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Karina Villa,2023-03-08,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-03-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-01-26,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Patrick J. Joyce,2023-02-27,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations - Health and Human Services,2023-03-07,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-12,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 22, 2024",2024-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2024-03-20,[],IL,103rd +Chief Sponsor Changed to Sen. Win Stoller,2023-03-24,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-09,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-22,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2023-03-21,['amendment-introduction'],IL,103rd +Chief House Sponsor Rep. Stephanie A. Kifowit,2024-04-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Napoleon Harris, III",2023-03-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-09,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-11-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-20,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 008-000-000,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2024-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-24,[],IL,103rd +Third Reading - Passed; 039-016-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Third Reading - Passed; 052-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Do Pass as Amended State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Transportation,2023-03-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-04-11,['committee-passage-favorable'],IL,103rd +Do Pass as Amended Environment and Conservation; 006-003-000,2024-03-07,['committee-passage'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-02-01,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-05-03,[],IL,103rd +Do Pass as Amended Behavioral and Mental Health; 009-000-000,2024-03-06,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-04-11,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-03-12,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2023-03-13,['amendment-introduction'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-02-23,[],IL,103rd +Chief House Sponsor Rep. Joe C. Sosnowski,2024-04-12,[],IL,103rd +Do Pass as Amended Licensed Activities; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-24,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Do Pass Labor; 017-000-000,2023-03-08,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Rachel Ventura,2023-03-20,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Financial Institutions and Licensing Committee,2024-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Ellman,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-02-28,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-05-12,[],IL,103rd +Do Pass Health and Human Services; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-29,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-02,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Jason Plummer,2024-04-05,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 24, 2023",2023-03-23,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-01,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-02-07,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Maura Hirschauer,2024-01-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Chief House Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-23,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Chief House Sponsor Rep. Nabeela Syed,2023-03-23,[],IL,103rd +Sponsor Removed Sen. Adriane Johnson,2024-04-09,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Michael W. Halpin,2024-03-13,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-14,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-03-05,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading March 23, 2023",2023-03-22,['reading-1'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-08,[],IL,103rd +Fiscal Note Filed,2024-03-26,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; 018-010-000,2023-03-08,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-22,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-10-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-07,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Remove Chief Co-Sponsor Rep. Kevin John Olickal,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-000-000",2023-03-22,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2023-03-20,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Removed Co-Sponsor Rep. Lilian Jiménez,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-05-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Matt Hanson,2023-03-09,['amendment-introduction'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-16,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-29,['referral-committee'],IL,103rd +Do Pass as Amended / Short Debate Human Services Committee; 009-000-000,2024-04-03,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2023-02-22,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 007-004-000,2024-04-03,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-13,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-15,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-04,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-02-26,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-03,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2023-03-22,[],IL,103rd +Chief Sponsor Changed to Rep. John M. Cabello,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-13,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-03,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2023-02-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Housing,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-03-07,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-03-16,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-14,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2023-03-21,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-02-06,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 24, 2024",2024-05-23,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2023-03-09,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-03-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Bradley Fritts,2024-02-23,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-16,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dan Swanson,2024-04-01,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 024-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-09,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-02,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Third Reading - Passed; 055-002-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2023-03-15,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-21,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Yolonda Morris,2024-03-25,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2023-03-06,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Senate Special Committee on Pensions,2023-03-28,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2023-05-10,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 22, 2024",2024-05-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +House Committee Amendment No. 2 Adopted in Human Services Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-03-21,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-08,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-22,[],IL,103rd +First Reading,2024-02-09,['reading-1'],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-30,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2023-03-28,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-16,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Kevin John Olickal,2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-25,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 018-008-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-05-03,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Referred to Revenue & Finance Committee,2024-03-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 027-000-000,2023-03-07,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Robyn Gabel,2023-03-06,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 008-005-000,2024-04-02,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Steven Reick,2024-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Fiscal Note Requested by Rep. Ryan Spain,2024-03-20,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Terra Costa Howard,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Debbie Meyers-Martin,2023-03-16,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-11,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2023-03-29,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-15,['reading-2'],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-15,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 9, 2024",2024-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-03-31,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-02-07,[],IL,103rd +Second Reading,2024-04-11,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Bob Morgan,2023-03-17,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-11,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-13,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-14,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-03-20,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 005-000-000,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-09-29,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2024-04-02,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. David Koehler,2024-04-05,['amendment-introduction'],IL,103rd +Recommends Be Adopted as Amended State Government Administration Committee; 009-000-000,2023-03-08,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-02-24,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Health and Human Services,2023-03-08,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Removed Co-Sponsor Rep. Blaine Wilhour,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-07,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +To Subcommittee on CLEAR Compliance,2023-03-30,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-12,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2024-04-11,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-15,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-05-08,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-25,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2023-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-29,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-05-02,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Correctional Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety; 008-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-05-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-24,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-01-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-14,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 014-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Third Reading - Passed; 053-005-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-10-04,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-05-17,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 014-000-000,2024-03-13,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-29,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-02-20,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-01-17,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Do Pass as Amended Education; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-02-28,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-02-23,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-03-06,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-04-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-07-18,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-27,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-27,['reading-2'],IL,103rd +Assigned to Gaming Committee,2024-03-12,['referral-committee'],IL,103rd +Chief Co-Sponsor Changed to Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-04-20,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-03,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-27,[],IL,103rd +Postponed - Health and Human Services,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2024-03-20,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-01,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 012-000-000",2024-04-17,['committee-passage-favorable'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-06,[],IL,103rd +Arrive in Senate,2023-03-30,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-05-10,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-02,[],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2023-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Do Pass as Amended Health and Human Services; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2023-05-19,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-01-16,[],IL,103rd +Adopted Both Houses,2023-02-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-28,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2024-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-19,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-14,[],IL,103rd +Resolution Adopted,2023-03-24,['passage'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Sponsor Removed Sen. Dale Fowler,2024-02-06,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-04-29,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-05-08,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 010-004-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-04-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Postponed - Judiciary,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-02-09,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-28,[],IL,103rd +Assigned to Appropriations,2023-02-14,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Yolonda Morris,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-18,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Adoption & Child Welfare Committee; 012-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-05-28,[],IL,103rd +Do Pass as Amended / Short Debate Public Health Committee; 009-000-000,2024-04-04,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-07-11,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-02-15,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-16,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-28,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Nicholas K. Smith,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-18,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-02,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-07,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-28,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-19,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Firearms,2024-04-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Second Reading,2024-04-11,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2024-03-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2024-04-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Public Health,2024-04-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-05-08,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-03-14,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-27,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Do Pass as Amended Executive; 010-000-000,2024-03-14,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Elections,2024-04-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-26,['reading-3'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-05-08,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-04-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-07,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-03-06,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-06,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-02-01,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Eva-Dina Delgado,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-02-28,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-22,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2024-03-08,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-02-20,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-06-22,[],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2023-07-05,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-11-08,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-11-07,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-04-04,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-04-27,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-15,['referral-committee'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-03-14,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2023-03-20,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-10-26,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-21,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-21,['referral-committee'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-15,[],IL,103rd +"Removed Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-04-28,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Police & Fire Committee,2024-04-17,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-05,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-02-20,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-04-24,[],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), this committee amendment will remain in the Committee on Assignments.",2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-24,[],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-03-04,[],IL,103rd +Resolution Adopted,2024-04-03,['passage'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-31,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Public Utilities Committee; 015-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-22,[],IL,103rd +"Recommends Be Adopted as Amended Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-000-000",2023-03-22,['committee-passage-favorable'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-15,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-02-08,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-02-09,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-05-16,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-10-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; State Government,2023-03-08,['amendment-passage'],IL,103rd +Arrive in Senate,2023-05-24,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Jason Plummer,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-03,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Michelle Mussman,2023-03-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Katie Stuart,2023-03-21,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Randy E. Frese,2024-04-04,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-05-11,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-24,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-28,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Carol Ammons,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-03-01,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-02-28,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Remove Chief Co-Sponsor Rep. Will Guzzardi,2024-04-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-01-10,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Consumer Protection Committee,2024-03-12,[],IL,103rd +Resolution Adopted,2023-05-15,['passage'],IL,103rd +Approved for Consideration Assignments,2023-05-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-18,[],IL,103rd +Removed Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-23,[],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. William E Hauter,2024-04-09,['amendment-introduction'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-03-07,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-02-22,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-10,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-15,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-11-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Police & Fire Committee; 014-000-000,2024-04-04,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-03-16,[],IL,103rd +House Committee Amendment No. 3 Filed with Clerk by Rep. Thaddeus Jones,2024-03-25,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-02-27,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-02-21,[],IL,103rd +Removed Co-Sponsor Rep. Ryan Spain,2023-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-10-23,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Insurance,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-05-09,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Assigned to State Government,2023-05-18,['referral-committee'],IL,103rd +Approved for Consideration Assignments,2023-05-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-20,['reading-2'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-06-22,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-31,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 010-004-000,2024-03-21,['committee-passage'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-02,[],IL,103rd +Assigned to Executive,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-10-25,[],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-09,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-05-11,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-13,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-01,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-07-11,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-03-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Approved for Consideration Assignments,2023-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-04-25,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-02-22,[],IL,103rd +Approved for Consideration Rules Committee; 004-000-000,2023-05-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2024-03-05,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Norine K. Hammond,2024-03-19,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-29,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-03-05,['referral-committee'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2024-02-20,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-03-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-15,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-02-27,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-24,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2023-03-21,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Sanalitro,2024-04-01,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-13,['amendment-failure'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-13,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-02-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-15,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-07-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-02-15,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-11-02,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Counties & Townships Committee; 008-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2023-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-28,[],IL,103rd +Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-14,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2023-03-06,['amendment-introduction'],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-05-18,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Re-referred to Assignments,2023-02-28,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-13,[],IL,103rd +House Committee Amendment No. 1 Adopted in Agriculture & Conservation Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-03-13,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Adopted Both Houses,2023-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 18, 2023",2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Availability & Accessibility Committee; 007-000-000,2023-03-14,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-16,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-02-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 008-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2023-02-27,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Counties & Townships Committee,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-03,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Sonya M. Harper,2023-03-01,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2023-05-02,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-02-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-23,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-05-24,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-02-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-17,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Health Care Availability & Accessibility Committee,2024-04-03,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-17,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-15,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-03-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2023-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Chief Sponsor Changed to Rep. Dagmara Avelar,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 012-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Carol Ammons,2024-04-15,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 25, 2023",2023-10-24,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-02-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Referred to Rules Committee,2024-02-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-15,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Chief House Sponsor Rep. Janet Yang Rohr,2023-03-23,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 22, 2024",2024-03-21,['reading-2'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Chief House Sponsor Rep. Kelly M. Cassidy,2024-04-12,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2024-03-12,[],IL,103rd +Do Pass as Amended Labor; 015-000-000,2024-03-13,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-18,[],IL,103rd +Do Pass as Amended / Short Debate Immigration & Human Rights Committee; 007-004-000,2024-03-13,['committee-passage'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Firearms,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Energy & Environment Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2024-04-08,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-03-21,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-01,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-05,[],IL,103rd +To Sex Offenses and Sex Offender Registration Subcommittee,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-12,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Omar Aquino,2023-03-22,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +House Committee Amendment No. 3 Filed with Clerk by Rep. John M. Cabello,2024-03-22,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-06-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 019-007-000,2024-03-13,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-23,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Motion Filed to Suspend Rule 21 State Government Administration Committee; Rep. Elizabeth ""Lisa"" Hernandez",2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-01,[],IL,103rd +Do Pass as Amended Health and Human Services; 009-000-000,2024-03-13,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-03-13,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-04-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Do Pass as Amended Energy and Public Utilities; 014-000-000,2024-03-22,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-22,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2024-04-05,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Environment and Conservation; 009-000-000,2023-03-23,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-15,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2024-04-10,[],IL,103rd +Re-assigned to Rules Committee,2024-05-06,['referral-committee'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lance Yednock,2024-03-11,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Firearms,2024-04-10,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Do Pass as Amended Education; 008-004-000,2023-03-22,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-18,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-12,[],IL,103rd +Third Reading - Passed; 058-001-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Government Operations,2024-04-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-03-14,[],IL,103rd +Chief House Sponsor Rep. Justin Slaughter,2023-04-03,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sue Scherer,2024-03-13,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2024-02-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2024-03-25,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2023-03-24,['amendment-introduction'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-03-14,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-14,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Chief House Sponsor Rep. Kevin John Olickal,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-17,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-02,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-04-18,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-03-18,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kam Buckner,2024-04-02,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-09,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-06,[],IL,103rd +Do Pass as Amended Judiciary; 006-002-000,2024-03-13,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +To Subcommittee on Ethics,2024-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Financial Institutions; 006-000-000,2024-04-10,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Public Health,2024-03-20,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Labor,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2023-03-16,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-03,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2024-03-20,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-03-08,['amendment-passage'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-03-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2024-04-09,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-23,[],IL,103rd +Approved for Consideration Assignments,2024-04-30,[],IL,103rd +Postponed - Transportation,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-03-21,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-10,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Rachel Ventura,2023-03-24,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2023-03-24,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-03-21,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Education,2023-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 010-000-000,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +House Committee Amendment No. 2 Adopted in State Government Administration Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Chief House Sponsor Rep. Sue Scherer,2023-03-29,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-04,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-02-23,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Assigned to Executive,2024-02-14,['referral-committee'],IL,103rd +Do Pass as Amended Energy and Public Utilities; 015-000-000,2024-03-14,['committee-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-03-28,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-08,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-02-14,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 22, 2024",2024-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-13,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-05-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-01,[],IL,103rd +Third Reading - Short Debate - Passed 072-035-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Assigned to Health Care Licenses Committee,2023-02-28,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 016-000-000,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-03,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Privacy,2023-03-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Referred to Assignments,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-19,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-01,[],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Adopted; Early Childhood Education,2023-03-08,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 092-011-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-29,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-05,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Approved for Consideration Assignments,2023-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Chief House Sponsor Rep. Daniel Didech,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-02-09,[],IL,103rd +"To Subcommittee on Gaming, Wagering, and Racing",2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2024-04-04,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-05,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-03-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Chief House Sponsor Rep. Jay Hoffman,2024-04-10,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-04-02,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-03-08,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 24, 2023",2023-03-23,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-05,['amendment-passage'],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-02,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2024-04-05,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Special Committee on Criminal Law and Public Safety,2023-03-09,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-03-12,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-01,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-01,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-05,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2024-02-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-15,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-15,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-03-12,[],IL,103rd +Chief Sponsor Changed to Sen. Win Stoller,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-10,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Margaret Croke,2024-03-18,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-02-22,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Jonathan Carroll,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Harry Benton,2024-03-22,['amendment-introduction'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-02,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-04-26,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-30,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 26, 2023",2023-10-25,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading October 25, 2023",2023-10-24,['reading-3'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 009-000-000,2023-03-07,['committee-passage'],IL,103rd +Second Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2023-05-01,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-03-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-10,[],IL,103rd +Removed Co-Sponsor Rep. Jonathan Carroll,2023-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Michelle Mussman,2024-02-13,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-03-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Daniel Didech,2024-04-11,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-05-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-000-000",2023-03-15,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-02,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-11,[],IL,103rd +House Committee Amendment No. 1 Adopted in Higher Education Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Removed Co-Sponsor Rep. Martin McLaughlin,2023-02-28,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-02-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-05-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michelle Mussman,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-03-28,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2024-04-02,['amendment-introduction'],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 028-000-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-03-14,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Natalie A. Manley,2024-04-16,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 22, 2024",2024-05-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-02-23,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2024-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-14,['reading-2'],IL,103rd +Remove Chief Co-Sponsor Rep. Harry Benton,2023-03-08,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-02-16,[],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2024-03-08,[],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-15,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-02,[],IL,103rd +Third Reading - Short Debate - Passed 099-003-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Adopted in Higher Education Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2023-03-09,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-01,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety; 009-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 009-006-000,2024-04-04,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2023-03-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-19,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-22,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-03-23,[],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 014-000-000,2023-03-07,['committee-passage'],IL,103rd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-11-15,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Standard Debate,2023-03-16,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-02-15,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 073-039-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Ann M. Williams,2023-03-15,['amendment-introduction'],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Small Business, Tech Innovation, and Entrepreneurship Committee",2023-03-22,[],IL,103rd +Added Co-Sponsor All Other Members of the House,2024-05-03,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Tony M. McCombie,2023-03-20,['amendment-introduction'],IL,103rd +Approved for Consideration Assignments,2024-05-26,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2024-04-01,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Police & Fire Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2023-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Norine K. Hammond,2024-03-12,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-22,[],IL,103rd +Sponsor Removed Sen. Neil Anderson,2023-10-26,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-05-08,[],IL,103rd +Do Pass as Amended / Short Debate Cities & Villages Committee; 011-003-000,2024-04-02,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-04-17,[],IL,103rd +Removed Co-Sponsor Rep. Kelly M. Cassidy,2023-03-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Suzanne M. Ness,2024-04-05,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 080-030-002,2023-03-22,"['passage', 'reading-3']",IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-22,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2023-03-09,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Added Co-Sponsor All Other Members of the House,2024-04-30,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-12-19,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Sue Rezin,2023-03-13,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Financial Institutions and Licensing Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-02-06,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-03-07,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-02-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 22, 2024",2024-05-21,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-28,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-08,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-08,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-01,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-08,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Daniel Didech,2024-03-14,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-13,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lilian Jiménez,2023-03-23,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 072-040-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-03-22,[],IL,103rd +"House Committee Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-08,[],IL,103rd +Removed Co-Sponsor Rep. Matt Hanson,2023-03-09,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 019-009-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 25, 2023",2023-10-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-05-05,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-03,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2023-03-20,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Lilian Jiménez,2023-03-09,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +House Committee Amendment No. 2 Rules Refers to State Government Administration Committee,2024-03-12,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-28,[],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-03-17,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-15,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 19, 2023",2023-04-18,['reading-3'],IL,103rd +House Floor Amendment No. 1 Withdrawn by Rep. Mary E. Flowers,2023-03-22,[],IL,103rd +To Civil Procedure & Tort Liability subcommittee,2024-04-03,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-06,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +To Family Preservation Subcommittee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-02,[],IL,103rd +Added Co-Sponsor All Other Members of the House,2024-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Fiscal Note Requested by Rep. Dan Ugaste,2023-03-10,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-02,[],IL,103rd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Cities & Villages Committee; 011-005-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-22,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2023-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Barbara Hernandez,2024-04-01,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-22,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Sponsor Changed to Sen. Steve McClure,2024-04-10,[],IL,103rd +Chief Sponsor Changed to Sen. Javier L. Cervantes,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-09,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Higher Education Committee; 008-004-000,2024-04-03,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-25,[],IL,103rd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-02,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lilian Jiménez,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2023-03-10,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-26,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-03,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-04,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-07,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-03-01,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-22,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 011-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-04-03,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-03,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Agriculture & Conservation Committee,2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Restorative Justice; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2024-04-17,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-04-26,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-01,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Terri Bryant,2023-10-25,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-02-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-11,[],IL,103rd +Chief Sponsor Changed to Sen. Linda Holmes,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-05-15,[],IL,103rd +Do Pass as Amended / Standard Debate Higher Education Committee; 007-005-000,2024-04-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2024-05-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2024-05-24,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-14,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-02-16,[],IL,103rd +Resolution Adopted 109-000-000,2024-05-02,['passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2024-04-18,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-25,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2023-02-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2023-03-28,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-11,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-27,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-03-16,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-02-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Amy Elik,2024-04-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-15,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2023-03-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-29,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-03-05,[],IL,103rd +Chief Sponsor Changed to Sen. Rachel Ventura,2023-03-30,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Chief House Sponsor Rep. Travis Weaver,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-13,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Chief Co-Sponsor Changed to Rep. William E Hauter,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-02-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-03-18,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2023-03-02,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-04-16,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Ann M. Williams,2023-03-15,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-02-07,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +Referred to Rules Committee,2024-02-09,[],IL,103rd +Third Reading - Short Debate - Passed 095-016-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-02,[],IL,103rd +Chief Sponsor Changed to Sen. Rachel Ventura,2023-10-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Removed Co-Sponsor All Other Members of the House,2024-05-03,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-03-30,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-22,[],IL,103rd +Second Reading,2023-03-24,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. David Koehler,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-05-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-02-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-02-28,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Financial Institutions and Licensing Committee,2024-04-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 17, 2024",2024-04-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-20,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments",2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-01,[],IL,103rd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2023-10-25,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Adopted in Appropriations-Elementary & Secondary Education Committee; by Voice Vote,2024-04-10,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Daniel Didech,2024-04-16,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-05,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 006-003-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2023-03-28,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-03-12,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-21,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 006-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-11-01,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Chief Sponsor Changed to Sen. David Koehler,2023-03-29,[],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-03-22,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 067-035-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Economic Opportunity & Equity Committee; 005-003-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-10,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments",2023-03-21,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Barbara Hernandez,2023-03-15,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Fred Crespo,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2024-05-21,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-03-01,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-01,[],IL,103rd +Chief Senate Sponsor Sen. Paul Faraci,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-06,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2024-04-04,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Mattie Hunter,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-07,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Janet Yang Rohr,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-20,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Removed Co-Sponsor Rep. Suzanne M. Ness,2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-15,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-02,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-05-03,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-03-28,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2024-04-29,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-17,[],IL,103rd +Chief House Sponsor Rep. Camille Y. Lilly,2024-04-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-17,[],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2024-04-18,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-02-26,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-04-09,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2024-04-17,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-03-13,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-03-18,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments.",2023-04-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Do Pass as Amended Early Childhood Education; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-16,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 17, 2024",2024-04-16,['reading-3'],IL,103rd +Do Pass as Amended / Short Debate Energy & Environment Committee; 018-008-000,2024-04-02,['committee-passage'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 013-000-000,2024-03-21,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Chief House Sponsor Rep. Kelly M. Burke,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Second Reading,2024-04-09,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Laura Ellman,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-02-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Assigned to Insurance Committee,2024-03-05,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-04-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Chapin Rose,2024-04-10,[],IL,103rd +Chief Sponsor Changed to Sen. Patrick J. Joyce,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-03-12,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 005-000-000,2024-04-12,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-12,[],IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2024-03-22,[],IL,103rd +Chief House Sponsor Rep. Steven Reick,2023-03-30,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-03-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-30,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Public Health; 005-000-000,2024-04-10,[],IL,103rd +"Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments:",2024-04-24,[],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-16,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-04-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 008-000-000,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 006-003-000,2023-03-29,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-02-09,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-12-18,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-16,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-04-09,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Robert ""Bob"" Rita",2024-04-01,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Transportation: Vehicles & Safety,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-25,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety; 011-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Procurement,2024-03-14,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Third Reading - Passed; 057-002-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Ellman,2023-03-28,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-07,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-03-28,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-05-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-28,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-21,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Tony M. McCombie,2024-04-16,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Gaming Committee; 014-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-20,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2024-04-05,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2024-03-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-29,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Rachel Ventura,2024-04-03,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2024-05-01,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +Chief House Sponsor Rep. Michelle Mussman,2024-04-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Reported Back To Judiciary; 003-000-000,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-09,[],IL,103rd +Second Reading,2023-03-24,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +Re-assigned to Executive,2023-05-04,['referral-committee'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-01,[],IL,103rd +Third Reading - Passed; 054-003-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Chief House Sponsor Rep. Laura Faver Dias,2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Chief Sponsor Changed to Sen. Neil Anderson,2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Second Reading,2023-03-24,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-04-09,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Chief House Sponsor Rep. Maura Hirschauer,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 9, 2024",2024-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Chief Sponsor Changed to Rep. Michelle Mussman,2024-04-15,[],IL,103rd +Removed Co-Sponsor Rep. Bob Morgan,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 17, 2024",2024-04-16,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-04-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-13,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2024-04-10,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2024-04-02,[],IL,103rd +"Chief House Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Norine K. Hammond,2024-03-19,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Celina Villanueva,2024-04-02,['amendment-introduction'],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-03-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Sara Feigenholtz,2024-04-05,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Chief House Sponsor Rep. Jenn Ladisch Douglass,2023-03-31,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 2 Adopted; Executive,2023-03-08,['amendment-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-03-20,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-08,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-03-22,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-06,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Sims,2023-03-29,['amendment-passage'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading March 23, 2023",2023-03-22,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-02-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2024-03-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 009-000-000,2024-04-03,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-04,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-04-03,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Placed on Calendar Order of First Reading April 18, 2024",2024-04-17,['reading-1'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-03-13,[],IL,103rd +Do Pass Education; 008-003-000,2023-03-22,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-03-06,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-05-01,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-20,[],IL,103rd +Chief Sponsor Changed to Sen. Adriane Johnson,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-03-05,['amendment-passage'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2023-04-19,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Dan McConchie,2024-03-07,['amendment-introduction'],IL,103rd +Assigned to Executive,2024-05-24,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Rachel Ventura,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-01,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-21,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Javier L. Cervantes,2024-03-20,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2023-03-22,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-03-14,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-04-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +Third Reading - Passed; 058-001-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-03-21,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-02-15,[],IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 010-000-000,2023-03-10,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-19,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +To Subcommittee on Elections,2024-03-14,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Rachel Ventura,2023-05-02,['amendment-introduction'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-03-30,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-04-11,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-09,[],IL,103rd +Chief Senate Sponsor Sen. Linda Holmes,2024-04-18,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-22,[],IL,103rd +Do Pass as Amended State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Chapin Rose,2023-05-24,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-11,['reading-2'],IL,103rd +Chief House Sponsor Rep. Anna Moeller,2024-04-12,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-08-08,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-03-13,[],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2024-04-17,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-13,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-14,[],IL,103rd +Referred to Assignments,2023-04-19,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2024-04-17,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary Gill,2024-03-14,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-22,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Committee Amendment No. 1 Adopted in Consumer Protection Committee; by Voice Vote,2024-03-12,['amendment-passage'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-25,[],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2024-04-16,[],IL,103rd +Chief Sponsor Changed to Rep. Sonya M. Harper,2024-04-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-15,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-21,['referral-committee'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-15,[],IL,103rd +Chief Sponsor Changed to Rep. Jehan Gordon-Booth,2024-05-06,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-05-18,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-06,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-04-24,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-07-05,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-03-11,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-28,[],IL,103rd +Chief Senate Sponsor Sen. Sara Feigenholtz,2024-04-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +Resolution Adopted; 056-000-000,2023-10-26,['passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-15,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2024-03-27,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-18,['reading-2'],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-05-16,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2024-04-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2024-05-07,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-24,[],IL,103rd +Postponed - Insurance,2024-03-13,[],IL,103rd +First Reading,2024-05-15,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Police & Fire Committee; 011-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-11,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2023-11-07,[],IL,103rd +"Removed Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-15,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-04-27,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-01,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2023-04-26,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-21,[],IL,103rd +Alternate Chief Sponsor Removed Rep. Jeff Keicher,2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-15,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-07,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Chief Sponsor Changed to Rep. Patrick Windhorst,2024-03-07,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-21,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-10-05,[],IL,103rd +Postponed - Education,2024-03-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Public Health Committee; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2023-04-20,[],IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2024-03-25,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-14,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-11-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +To Subcommittee on CLEAR Compliance,2024-02-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Subcommittee on CLEAR Compliance,2024-03-07,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-15,[],IL,103rd +Chief Sponsor Changed to Sen. Ram Villivalam,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-11,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2024-04-18,[],IL,103rd +Do Pass as Amended / Short Debate Insurance Committee; 015-000-000,2024-04-02,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-18,[],IL,103rd +Chief Sponsor Changed to Sen. Meg Loughran Cappel,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-04-09,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-03-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-22,[],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 006-003-000,2024-04-03,['committee-passage'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-11-07,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-06-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2024-02-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Paul Jacobs,2023-10-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-01,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-06-21,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2024-03-20,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-02-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-21,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-26,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-14,[],IL,103rd +Remove Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-04-16,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-01-17,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Counties & Townships Committee; 006-002-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-02,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Rules Refers to Personnel & Pensions Committee,2023-02-28,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-27,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 017-006-000,2023-03-22,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Insurance,2023-03-29,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-02,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-25,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Norine K. Hammond,2023-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-04-25,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-26,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-02-22,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-13,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-19,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-02-09,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-04-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-03-06,[],IL,103rd +"Motion Filed to Suspend Rule 21 Transportation: Regulations, Roads & Bridges; Rep. Barbara Hernandez",2023-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-05-03,[],IL,103rd +Do Pass as Amended / Short Debate Agriculture & Conservation Committee; 009-000-000,2024-04-02,['committee-passage'],IL,103rd +Re-referred to Health and Human Services,2023-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Labor & Commerce Committee,2023-03-07,[],IL,103rd +Third Reading - Short Debate - Passed 074-040-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-11,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-02,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-02-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-06,[],IL,103rd +Chief Sponsor Changed to Sen. Cristina Castro,2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-02-06,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-15,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Chief Sponsor Changed to Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-04-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2024-03-07,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-02-16,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2024-04-19,[],IL,103rd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-21,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2023-01-25,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-05-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-06,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-14,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-28,[],IL,103rd +Chief Sponsor Changed to Rep. Anthony DeLuca,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-16,['amendment-passage'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-01,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Chief Sponsor Changed to Rep. Lindsey LaPointe,2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2023-03-21,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-09,[],IL,103rd +Resolution Adopted; 055-000-000,2023-05-19,['passage'],IL,103rd +Chief Senate Sponsor Sen. Sue Rezin,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-02-21,[],IL,103rd +Removed Co-Sponsor Rep. Anna Moeller,2024-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-02-09,[],IL,103rd +Chief Sponsor Changed to Rep. Margaret Croke,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-02-16,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lance Yednock,2023-03-21,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-03-21,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-02-27,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Sue Rezin,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-05-25,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2024-04-16,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2024-03-06,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Recommends Be Adopted Higher Education Committee; 011-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2023-10-24,['amendment-introduction'],IL,103rd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2023-03-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-22,[],IL,103rd +Remove Chief Co-Sponsor Rep. Janet Yang Rohr,2024-04-03,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-03-21,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-05-14,[],IL,103rd +Home Rule Note Requested by Rep. Margaret Croke,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2024-04-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2023-10-25,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-22,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-22,[],IL,103rd +Senate Committee Amendment No. 2 Adopted; Licensed Activities,2023-03-08,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Financial Institutions and Licensing Committee,2024-04-02,[],IL,103rd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 018-000-000,2024-04-04,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-21,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +Chief Sponsor Changed to Sen. Doris Turner,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2023-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-04-04,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Do Pass as Amended / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2024-03-13,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Local Government,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2023-03-20,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Wayne A Rosenthal,2024-03-07,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 013-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Travis Weaver,2024-04-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-02-27,[],IL,103rd +Chief Sponsor Changed to Sen. Cristina H. Pacione-Zayas,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-04,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-05-21,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Chief Sponsor Changed to Sen. Tom Bennett,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 17, 2024",2024-04-16,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Appropriations,2023-03-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-03-05,[],IL,103rd +"House Committee Amendment No. 3 Filed with Clerk by Rep. William ""Will"" Davis",2024-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-02-15,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-07,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Curtis J. Tarver, II",2024-04-17,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-20,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2023-10-20,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2024-03-22,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-05-21,[],IL,103rd +Do Pass as Amended Executive; 011-000-001,2023-03-23,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Chapin Rose,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kam Buckner,2024-04-02,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-02,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2023-03-24,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2023-03-29,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Agriculture,2023-03-09,['amendment-passage'],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-11-14,[],IL,103rd +Re-assigned to Insurance,2024-01-10,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Appropriations- Education,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2024-04-17,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +Do Pass as Amended / Short Debate Housing; 012-006-000,2024-04-03,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2024-05-20,['amendment-introduction'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michelle Mussman,2024-04-01,['amendment-introduction'],IL,103rd +Chief Sponsor Changed to Sen. Laura Ellman,2023-03-29,[],IL,103rd +Chief Sponsor Changed to Sen. Doris Turner,2023-03-28,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-10-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-03-12,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-General Services Committee,2024-01-31,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendments will remain in the Committee on Assignments.",2023-03-28,[],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 014-001-000",2024-04-02,['committee-passage'],IL,103rd +Assigned to Higher Education Committee,2024-04-24,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-30,[],IL,103rd +Chief Senate Sponsor Sen. Chapin Rose,2024-05-14,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. David Koehler,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Neil Anderson,2023-03-30,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-02,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-02-23,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-11-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2024-04-11,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Appropriations,2023-03-28,[],IL,103rd +Arrive in Senate,2024-05-23,['introduction'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Anna Moeller,2024-02-28,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of First Reading April 18, 2024",2024-04-17,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Patrick J. Joyce,2023-03-23,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-03-28,[],IL,103rd +Recommends Be Adopted Human Services Committee; 009-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Christopher Belt,2023-03-28,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Resolution Adopted; 057-000-000,2023-05-24,['passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Appropriations- Education,2023-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bradley Fritts,2023-03-03,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-03-22,[],IL,103rd +Remove Chief Co-Sponsor Rep. Dave Vella,2024-02-22,[],IL,103rd +Chief Sponsor Changed to Sen. Julie A. Morrison,2023-03-28,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-29,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Terri Bryant,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-15,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Tracy Katz Muhl,2024-05-07,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Porfirio,2024-04-12,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-02-05,[],IL,103rd +Third Reading - Passed; 055-001-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-30,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Appropriations,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Thaddeus Jones,2024-03-22,[],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2024-03-11,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-03-01,[],IL,103rd +Do Pass as Amended Health and Human Services; 009-000-000,2023-03-29,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-10-20,['amendment-introduction'],IL,103rd +Chief Sponsor Changed to Sen. Julie A. Morrison,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2023-03-29,[],IL,103rd +Chief Sponsor Changed to Sen. Sara Feigenholtz,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jed Davis,2024-04-15,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2024-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-10-23,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-06,[],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-20,[],IL,103rd +Senate Committee Amendment No. 2 Adopted; Behavioral and Mental Health,2023-03-08,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Economic Opportunity & Equity Committee; 008-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2024-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-05-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-14,['amendment-failure'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Appropriations,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-09-28,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-05-20,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-24,[],IL,103rd +Chief Sponsor Changed to Sen. Julie A. Morrison,2023-03-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-23,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-11,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-02-28,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-25,[],IL,103rd +Referred to Assignments,2024-05-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 006-003-000,2024-04-18,['committee-passage-favorable'],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2023-03-29,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. La Shawn K. Ford,2024-05-17,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2023-03-29,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2023-10-24,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Rachel Ventura,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-05-25,[],IL,103rd +Correctional Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Revenue & Finance Committee,2024-04-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 Adopted; Higher Education,2023-02-21,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-05-13,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Chief Sponsor Changed to Sen. Mattie Hunter,2023-03-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-10,[],IL,103rd +"Removed Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +Chief House Sponsor Rep. Ryan Spain,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Chief House Sponsor Rep. Tracy Katz Muhl,2024-04-12,[],IL,103rd +"Placed on Calendar Order of First Reading April 18, 2024",2024-04-17,['reading-1'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2023-03-23,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Chief House Sponsor Rep. Dave Vella,2023-03-30,[],IL,103rd +Chief House Sponsor Rep. Martin J. Moylan,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2023-03-07,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-03-06,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-30,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Financial Institutions,2023-03-28,[],IL,103rd +Do Pass as Amended Health and Human Services; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-13,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Chief House Sponsor Rep. Kelly M. Burke,2023-03-23,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +To Subcommittee on Paid Leave,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-13,[],IL,103rd +Chief House Sponsor Rep. Kelly M. Burke,2023-03-30,[],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Morrison,2023-03-24,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2023-03-09,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-04-10,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-21,[],IL,103rd +Chief House Sponsor Rep. Sharon Chung,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-01,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-01,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-03-24,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; McClure,2023-03-23,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-03-08,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Elections,2024-02-08,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Holmes,2023-03-24,['amendment-passage'],IL,103rd +Do Pass Financial Institutions; 005-002-000,2024-03-13,['committee-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Chief Sponsor Changed to Rep. Angelica Guerrero-Cuellar,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-03-10,[],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2023-07-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Chief Sponsor Changed to Sen. Jil Tracy,2024-04-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-03-28,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-30,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-09,[],IL,103rd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-16,[],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-04-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-05-02,[],IL,103rd +Chief Sponsor Changed to Sen. Dan McConchie,2024-04-10,[],IL,103rd +Second Reading,2024-04-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 22, 2024",2024-03-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-03-09,[],IL,103rd +Assigned to Appropriations,2024-04-11,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 25, 2023",2023-10-24,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-23,[],IL,103rd +Chief House Sponsor Rep. Theresa Mah,2024-04-29,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Second Reading,2024-04-11,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-04-09,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 006-003-000,2024-03-07,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. John F. Curran,2024-04-10,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Tom Bennett,2024-04-10,['amendment-introduction'],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-02-14,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2024-04-19,[],IL,103rd +Second Reading,2024-04-11,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-02-23,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Chief Sponsor Changed to Rep. Tracy Katz Muhl,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-05-22,[],IL,103rd +Do Pass Education; 014-000-000,2023-03-22,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-05-23,['referral-committee'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-02-14,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2023-03-02,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Craig Wilcox,2024-04-11,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Appropriations-Elementary & Secondary Education Committee; 014-000-000,2024-04-10,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2024-03-27,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-13,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-03,[],IL,103rd +Chief Sponsor Changed to Sen. Sue Rezin,2024-04-10,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 009-000-000,2024-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jed Davis,2024-03-15,['amendment-introduction'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 005-000-000,2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Chief House Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 17, 2024",2024-04-16,['reading-3'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Consumer Protection Committee; 009-000-000,2024-04-10,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-03-06,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Norine K. Hammond,2024-04-05,['amendment-introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-05,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +Chief House Sponsor Rep. Wayne A Rosenthal,2024-04-12,[],IL,103rd +Chief House Sponsor Rep. Amy Elik,2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-30,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Brad Stephens,2024-04-12,['amendment-introduction'],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2024-04-01,['amendment-introduction'],IL,103rd +Chief House Sponsor Rep. Nicholas K. Smith,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Laura Ellman,2024-03-21,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Removed Co-Sponsor Rep. Camille Y. Lilly,2024-04-10,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Chief House Sponsor Rep. Rita Mayfield,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 010-001-000,2023-03-23,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2024-03-21,['amendment-introduction'],IL,103rd +Assigned to Judiciary,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-25,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Agriculture; 013-000-000,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2024-04-05,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Adopted; Health and Human Services,2023-03-07,['amendment-passage'],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-10,[],IL,103rd +Chief House Sponsor Rep. Ann M. Williams,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-02-21,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2024-04-10,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-01,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2024-02-28,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-04-12,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Chief House Sponsor Rep. Chris Miller,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2024-04-09,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Do Pass as Amended Energy and Public Utilities; 012-000-000,2023-03-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 17, 2024",2024-04-16,['reading-3'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Public Health,2024-03-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +Chief House Sponsor Rep. Lindsey LaPointe,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-01-30,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Chief House Sponsor Rep. Maura Hirschauer,2024-04-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-03-10,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-04-30,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-02-06,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Feigenholtz,2023-03-23,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Labor; 010-003-000,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-03-08,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-20,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Gaming Committee; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2024-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-28,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-03-05,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-15,[],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2024-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2024-03-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2024-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-03,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2024-03-21,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-04-27,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Health Care Availability & Accessibility Committee,2024-04-15,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-22,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-02-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-09-26,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-03-07,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Financial Institutions and Licensing Committee,2024-04-17,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-21,[],IL,103rd +Chief Sponsor Changed to Rep. Camille Y. Lilly,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-05-19,[],IL,103rd +Chief Senate Sponsor Sen. Steve Stadelman,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-10-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-05-23,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Chief Sponsor Changed to Sen. Cristina H. Pacione-Zayas,2023-03-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-01,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-02-13,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 3 Rules Refers to Health Care Availability & Accessibility Committee,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Revenue,2024-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Robyn Gabel,2024-02-22,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Justin Slaughter,2024-04-16,['amendment-introduction'],IL,103rd +Sponsor Removed Sen. Ann Gillespie,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-04-23,[],IL,103rd +Arrive in Senate,2023-05-18,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2024-05-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Fine,2023-03-23,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-27,[],IL,103rd +Chief Sponsor Changed to Rep. Nabeela Syed,2024-05-06,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2023-03-21,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-06,[],IL,103rd +Do Pass as Amended Insurance; 010-000-000,2024-03-06,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2023-03-28,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-20,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-26,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-07,[],IL,103rd +Removed Co-Sponsor Rep. Will Guzzardi,2024-04-04,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-10-25,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Education,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-03-28,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 2 Postponed - Insurance,2024-03-12,[],IL,103rd +Postponed - Executive,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-10,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-04,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-02-16,[],IL,103rd +To Constitutional Law Subcommittee,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-03-06,[],IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2024-04-01,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Chief Senate Sponsor Sen. Steve Stadelman,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-11,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-02-22,[],IL,103rd +Referred to Assignments,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-16,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-03-07,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Barbara Hernandez,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-02-16,[],IL,103rd +Chief Sponsor Changed to Rep. Joe C. Sosnowski,2024-03-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Steven Reick,2023-02-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Chief Sponsor Changed to Rep. Elizabeth ""Lisa"" Hernandez",2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-16,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-06-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 9, 2024",2024-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Arrive in Senate,2023-04-20,['introduction'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2024-04-05,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Michael E. Hastings,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-29,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-16,['amendment-passage'],IL,103rd +House Committee Amendment No. 4 Referred to Rules Committee,2023-02-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Cassidy,2024-04-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-03,[],IL,103rd +Removed Co-Sponsor Rep. Kimberly Du Buclet,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-05-09,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-26,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-03-21,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-07-18,[],IL,103rd +Resolution Adopted; 057-000-000,2023-05-24,['passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-05-20,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-02-22,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-03-08,[],IL,103rd +Referred to Rules Committee,2023-02-01,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. David Koehler,2023-03-29,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2024-04-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +"Removed Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-10,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Joyce Mason,2023-03-29,[],IL,103rd +Chief House Sponsor Rep. Joyce Mason,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-23,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-02-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Insurance Committee; 010-005-000,2023-03-09,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +Recommends Be Adopted Agriculture & Conservation Committee; 007-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Charles Meier,2024-03-27,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-03-03,[],IL,103rd +Referred to Rules Committee,2023-05-23,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Health Care Availability & Accessibility Committee,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2023-03-21,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-02-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Recommends Be Adopted Police & Fire Committee; 014-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dave Vella,2023-03-15,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Personnel & Pensions Committee,2023-02-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-08,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-11,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Referred to Rules Committee,2023-05-26,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-02,[],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-02-23,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Police & Fire Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-15,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-03-07,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-04-18,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-16,[],IL,103rd +Chief Senate Sponsor Sen. Willie Preston,2023-03-24,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-14,[],IL,103rd +House Committee Amendment No. 2 Adopted in Judiciary - Civil Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 101-012-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Chief Co-Sponsor Changed to Rep. Dagmara Avelar,2023-03-01,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-09,[],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-01,[],IL,103rd +"House Floor Amendment No. 1 Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-08,[],IL,103rd +Removed Co-Sponsor Rep. Jehan Gordon-Booth,2023-03-02,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dan Swanson,2024-03-22,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-16,[],IL,103rd +Do Pass as Amended / Short Debate Higher Education Committee; 007-004-000,2023-03-15,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-16,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Dennis Tipsword, Jr.",2024-03-07,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-14,[],IL,103rd +Chief Senate Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Amy L. Grant,2024-03-07,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-09,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Suzanne M. Ness,2023-03-21,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Steve McClure,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-06,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2023-03-02,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2023-02-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-09,[],IL,103rd +Chief Senate Sponsor Sen. Laura M. Murphy,2024-05-01,[],IL,103rd +Third Reading - Short Debate - Passed 071-037-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2023-04-26,['amendment-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-17,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-10-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-13,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-17,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Terri Bryant,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-03-09,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Travis Weaver,2024-04-11,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2023-03-13,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Chief Co-Sponsor Changed to Rep. Dave Severin,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2023-03-07,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Travis Weaver,2023-02-23,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-23,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 006-003-000,2023-02-22,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-06,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-02-23,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Financial Institutions and Licensing Committee,2023-03-22,[],IL,103rd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 010-000-001,2023-03-08,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-03-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jackie Haas,2024-03-07,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-03-08,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-02-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2023-03-16,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-11-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Michael J. Kelly,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-01-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 015-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dan Caulkins,2023-03-22,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-23,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-08,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2023-03-15,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-03-23,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Maurice A. West, II",2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2023-02-23,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Immigration & Human Rights Committee,2023-03-22,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-14,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-07,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Robyn Gabel,2023-03-17,['amendment-introduction'],IL,103rd +"Remove Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-21,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Jil Tracy,2023-03-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-05-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-08,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Randy E. Frese,2023-03-14,['amendment-introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-03-15,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-03-17,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2023-02-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Carol Ammons,2023-03-06,[],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Amy Elik,2023-02-23,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2023-03-08,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-05-02,[],IL,103rd +Re-assigned to Health and Human Services,2024-01-10,['referral-committee'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2023-10-24,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2024-03-13,['amendment-passage'],IL,103rd +Remove Chief Co-Sponsor Rep. Patrick Sheehan,2024-05-07,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-02-28,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-02-08,[],IL,103rd +Re-assigned to Rules Committee,2024-05-09,['referral-committee'],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-02-14,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2024-03-20,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-10-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-05-08,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Local Government,2024-04-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-03-19,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2024-03-27,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-08,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-21,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-05-08,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-23,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-13,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +To Subcommittee on End of Life Issues,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-11,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-04-26,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-07,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-02-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-16,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-10,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Michael E. Hastings,2023-03-29,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-16,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dan Swanson,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Re-assigned to Education,2023-03-23,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-15,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 008-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2023-03-30,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-16,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-02,[],IL,103rd +Chief Senate Sponsor Sen. Rachel Ventura,2023-03-30,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Chief Sponsor Changed to Sen. David Koehler,2023-03-28,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +First Reading,2023-04-25,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-06,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Ann M. Williams,2023-03-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 015-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-23,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2023-03-15,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Michael W. Halpin,2023-03-24,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Omar Aquino,2023-10-23,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-23,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-07,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-14,[],IL,103rd +Removed from Short Debate Status,2023-03-08,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to State Government Administration Committee,2023-03-07,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-03-16,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-28,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-08,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Robyn Gabel,2023-03-06,[],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2023-03-16,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-18,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Tom Weber,2023-03-22,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Removed Co-Sponsor Rep. Terra Costa Howard,2024-04-11,[],IL,103rd +"Chief Sponsor Changed to Sen. Napoleon Harris, III",2023-03-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-10,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-23,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Small Business, Tech Innovation, and Entrepreneurship Committee",2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-04-04,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 077-036-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +First Reading,2023-02-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-13,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 017-000-000,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-10,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-02-28,['committee-passage-favorable'],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 070-036-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-15,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-01,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2023-03-27,[],IL,103rd +Fiscal Note Filed,2024-03-25,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. John M. Cabello,2024-03-07,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-16,[],IL,103rd +Third Reading - Short Debate - Passed 073-038-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2024-04-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading March 23, 2023",2023-03-22,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2024-04-16,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Labor & Commerce Committee,2024-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Sara Feigenholtz,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-02-23,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Chief Sponsor Changed to Sen. Rachel Ventura,2023-03-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-16,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2023-10-20,['amendment-introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Anthony DeLuca,2023-03-22,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-16,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Jay Hoffman,2023-02-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Chief Sponsor Changed to Sen. Patrick J. Joyce,2023-03-28,[],IL,103rd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 028-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2023-03-23,[],IL,103rd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2023-03-28,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2024-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-13,[],IL,103rd +Do Pass as Amended / Short Debate Human Services Committee; 006-003-000,2024-04-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Dale Fowler,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-08,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Housing,2023-03-07,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2023-03-06,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-24,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-10-24,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2024-03-27,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-24,[],IL,103rd +Chief Sponsor Changed to Sen. Omar Aquino,2023-03-21,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-02-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; 009-000-000,2024-03-21,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Hoan Huynh,2023-03-21,['amendment-introduction'],IL,103rd +Chief Sponsor Changed to Sen. Bill Cunningham,2023-03-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +Do Pass as Amended Judiciary; 006-002-000,2023-03-22,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Counties & Townships Committee,2023-03-14,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 009-006-000,2024-04-04,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-05-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-03-21,[],IL,103rd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-05-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-05-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-16,[],IL,103rd +"Removed Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 011-001-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-02-29,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Chief Sponsor Changed to Sen. Omar Aquino,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Jason Plummer,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Financial Institutions and Licensing Committee; 012-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendments will remain in the Committee on Assignments.",2023-03-28,[],IL,103rd +Chief House Sponsor Rep. Natalie A. Manley,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-05,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-22,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2024-04-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-01-19,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to State Government,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Gillespie,2023-03-22,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-30,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-28,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Neil Anderson,2023-10-25,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-04-05,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-11-09,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-15,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-11,[],IL,103rd +Chief House Sponsor Rep. Patrick Windhorst,2023-03-24,[],IL,103rd +Do Pass as Amended Public Health; 008-000-000,2024-03-13,['committee-passage'],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Chief House Sponsor Rep. Michael J. Kelly,2023-03-23,[],IL,103rd +Chief Sponsor Changed to Sen. Neil Anderson,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jil Tracy,2023-03-22,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-24,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Tom Bennett,2023-03-17,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-05-10,[],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Transportation; 015-000-000,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2024-02-29,['amendment-introduction'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-04-01,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2024-05-03,[],IL,103rd +Second Reading,2024-05-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-04-18,[],IL,103rd +Chief House Sponsor Rep. Ryan Spain,2023-03-30,[],IL,103rd +Chief Senate Sponsor Sen. Sara Feigenholtz,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-08,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-02-09,[],IL,103rd +Chief House Sponsor Rep. Michael J. Kelly,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-09,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Third Reading - Passed; 058-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 28, 2023",2023-04-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-03-21,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Win Stoller,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-03-18,[],IL,103rd +Do Pass as Amended Transportation; 014-000-000,2024-03-06,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 011-006-001,2023-03-29,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Chief House Sponsor Rep. Gregg Johnson,2023-03-23,[],IL,103rd +Chief House Sponsor Rep. Norma Hernandez,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Lance Yednock,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-21,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Labor; 012-003-000,2024-04-10,[],IL,103rd +House Committee Amendment No. 1 Adopted in Child Care Accessibility & Early Childhood Education Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Counties & Townships Committee,2023-03-22,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +Chief House Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Behavioral and Mental Health; 008-000-000,2023-03-29,[],IL,103rd +Do Pass as Amended Judiciary; 008-000-000,2024-03-06,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-22,[],IL,103rd +Chief House Sponsor Rep. Mary Beth Canty,2023-03-31,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +Second Reading,2023-03-24,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 30, 2024",2024-04-18,['reading-2'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2023-10-24,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Javier L. Cervantes,2023-03-21,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-02-09,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-03,['amendment-introduction'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Tom Bennett,2024-04-10,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-20,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +"Chief House Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2023-05-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 22, 2024",2024-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-28,[],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Curtis J. Tarver, II",2024-04-10,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-04-04,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments.",2024-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-13,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-12,[],IL,103rd +Third Reading - Passed; 047-010-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2023-03-23,[],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Dave Syverson,2024-04-11,[],IL,103rd +Chief Co-Sponsor Changed to Sen. Willie Preston,2024-05-09,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2023-03-21,[],IL,103rd +Second Reading,2024-04-09,['reading-2'],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-03-14,[],IL,103rd +Do Pass Revenue; 009-000-000,2024-03-14,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Chief House Sponsor Rep. Anna Moeller,2023-03-31,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Chief House Sponsor Rep. Gregg Johnson,2023-03-30,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-02-27,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Doris Turner,2024-04-09,['amendment-introduction'],IL,103rd +Chief Sponsor Changed to Sen. Celina Villanueva,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-03-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-02-22,[],IL,103rd +Senate Committee Amendment No. 2 Adopted; Human Rights,2023-03-09,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert F. Martwick,2023-03-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-12-15,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-01,[],IL,103rd +Second Reading,2023-03-24,['reading-2'],IL,103rd +Sponsor Removed Sen. Javier L. Cervantes,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-02-08,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 017-000-000,2023-03-29,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-09,[],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-14,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. David Koehler,2023-05-02,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Chief House Sponsor Rep. Natalie A. Manley,2023-03-30,[],IL,103rd +Chief House Sponsor Rep. Kelly M. Burke,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-04-17,['amendment-passage'],IL,103rd +Chief House Sponsor Rep. Eva-Dina Delgado,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Second Reading,2023-03-24,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Steve McClure,2024-04-10,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2024-03-12,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-05,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Education,2023-03-07,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Dan McConchie,2023-03-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendments will remain in the Committee on Assignments.",2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-03-14,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Licensed Activities,2023-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2023-03-09,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +Chief House Sponsor Rep. Justin Slaughter,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Steve McClure,2023-03-29,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-04-19,[],IL,103rd +House Committee Amendment No. 1 Fiscal Note Filed as Amended,2023-03-13,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-03,[],IL,103rd +Chief Sponsor Changed to Rep. Jay Hoffman,2023-04-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-03-06,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading March 13, 2024",2024-03-13,['reading-2'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-03-27,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-02-15,[],IL,103rd +Chief Senate Sponsor Sen. Linda Holmes,2024-04-19,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-04-20,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-03-21,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Do Pass as Amended Labor; 012-004-000,2024-03-13,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-17,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Postponed - Licensed Activities,2023-03-09,[],IL,103rd +Referred to Rules Committee,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-03-29,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-24,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2024-04-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-02-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Re-assigned to Revenue,2024-01-10,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-02-20,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-30,[],IL,103rd +Chief Sponsor Changed to Rep. Kam Buckner,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-03-27,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Assigned to Executive,2023-03-07,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-03-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Insurance,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 22, 2024",2024-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dave Syverson,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2023-03-07,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-02-07,[],IL,103rd +Sponsor Removed Sen. Dale Fowler,2024-02-06,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-02-27,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Christopher Belt,2023-03-20,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-08,['reading-2'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-03-24,[],IL,103rd +Assigned to Mental Health & Addiction Committee,2024-02-14,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-11-09,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-02-15,[],IL,103rd +Resolution Adopted,2023-03-29,['passage'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-26,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-07,[],IL,103rd +House Committee Amendment No. 2 Tabled,2024-04-02,['amendment-failure'],IL,103rd +Chief Sponsor Changed to Rep. Suzanne M. Ness,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2024-03-07,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +Second Reading,2024-04-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Removed Co-Sponsor Rep. Lindsey LaPointe,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-03-06,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2024-04-16,['amendment-introduction'],IL,103rd +Postponed - Health and Human Services,2023-03-08,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-04-18,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-03-12,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-04-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2024-02-28,[],IL,103rd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2023-03-21,[],IL,103rd +Chief Sponsor Changed to Rep. Nicholas K. Smith,2024-04-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-10-04,[],IL,103rd +Chief Senate Sponsor Sen. Mike Simmons,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-24,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Chief Sponsor Changed to Sen. Mark L. Walker,2024-05-13,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2023-03-22,[],IL,103rd +Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2024-04-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-02-07,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-11,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-05-18,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-09-04,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-05-18,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-05-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Sara Feigenholtz,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-02-22,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-13,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-05-13,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-03-07,[],IL,103rd +Chief Senate Sponsor Sen. Erica Harriss,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-17,[],IL,103rd +Postponed - Judiciary,2024-02-21,[],IL,103rd +Do Pass as Amended / Short Debate Insurance Committee; 013-000-000,2024-03-20,['committee-passage'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-28,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-05-03,[],IL,103rd +Resolution Adopted 113-000-000,2023-04-18,['passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2024-03-27,['amendment-introduction'],IL,103rd +Chief Sponsor Changed to Rep. Katie Stuart,2023-04-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-03-07,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Chief Sponsor Changed to Rep. Jennifer Gong-Gershowitz,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-12-14,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-08,[],IL,103rd +Chief Sponsor Changed to Rep. Rita Mayfield,2024-04-17,[],IL,103rd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 018-010-000,2024-04-03,['committee-passage'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Appropriations-Health & Human Services Committee,2023-04-18,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-02-07,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-02-22,[],IL,103rd +Chief Senate Sponsor Sen. Paul Faraci,2024-04-24,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-05-17,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-02-28,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-01-30,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-05-02,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-29,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-13,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-02-22,[],IL,103rd +Chief Sponsor Changed to Rep. Dave Vella,2024-05-14,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2023-03-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2024-01-30,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-04-19,[],IL,103rd +Postponed - Local Government,2024-02-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2023-04-26,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-04-17,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-30,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. William ""Will"" Davis",2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-24,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-04-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-08,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Insurance; 008-000-000,2024-04-10,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2023-03-30,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2024-03-21,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-03-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Arrive in Senate,2023-04-19,['introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-04-26,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2024-04-15,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-04-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-10-04,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 010-004-000,2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Nicholas K. Smith,2024-04-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-03-07,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2024-04-17,['amendment-introduction'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-04-24,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2024-04-01,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-21,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2024-03-20,['amendment-introduction'],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-11-21,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-04-10,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-09,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-05-16,[],IL,103rd +Chief Sponsor Changed to Rep. Jay Hoffman,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2024-01-17,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-03,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Bob Morgan,2023-03-21,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2024-03-01,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2023-03-02,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2024-04-17,['amendment-introduction'],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Do Pass as Amended Judiciary; 005-002-000,2024-03-13,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-24,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-04-16,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-02-22,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-04-17,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Will Guzzardi,2023-03-15,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-04-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2024-02-22,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2024-05-13,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-11,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Suzanne M. Ness,2024-04-15,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Lilian Jiménez,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-05-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2024-04-18,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Removed Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-02-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2023-05-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-20,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Terra Costa Howard,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-21,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-02-27,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-13,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-03-22,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-03-21,[],IL,103rd +House Committee Amendment No. 3 Filed with Clerk by Rep. Dave Vella,2024-04-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-07,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Counties & Townships Committee; 006-002-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-20,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +Resolution Adopted,2023-10-24,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 010-000-000,2023-03-30,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Severin,2023-03-09,['amendment-introduction'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Small Business, Tech Innovation, and Entrepreneurship Committee; 008-000-000",2023-03-22,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-03-06,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-10-25,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 23, 2023",2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-03-01,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-02-07,['committee-passage'],IL,103rd +Assigned to Public Health Committee,2023-02-21,['referral-committee'],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-16,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2024-03-08,['amendment-introduction'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-16,[],IL,103rd +Referred to Rules Committee,2023-02-15,[],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2024-04-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading March 23, 2023",2023-03-22,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-03-14,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-04-03,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Fred Crespo,2023-03-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Donald P. DeWitte,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Balanced Budget Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-23,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2024-05-23,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-03-14,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2023-03-24,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Randy E. Frese,2024-05-08,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-14,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-16,[],IL,103rd +Referred to Rules Committee,2023-04-25,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-03-20,[],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-04,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Stephanie A. Kifowit,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-03-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Judiciary,2023-03-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Jeff Keicher,2023-03-08,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-04-17,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Jay Hoffman,2023-02-22,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Seth Lewis,2023-03-27,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-14,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 009-000-000,2023-03-29,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-05-24,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-03-14,['amendment-passage'],IL,103rd +Chief Co-Sponsor Changed to Rep. Katie Stuart,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-11,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-16,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 013-000-000,2024-04-15,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2023-03-29,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 006-003-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Chief Senate Sponsor Sen. Tom Bennett,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-10,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-03-28,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Tom Weber,2023-03-17,['amendment-introduction'],IL,103rd +"Committee Deadline Extended-Rule 9(b) April 28, 2023",2023-03-13,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-02-23,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-03-23,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-07,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Mary E. Flowers,2023-03-10,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Revenue,2023-03-08,['amendment-passage'],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-02,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-05-08,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-000-000,2023-03-30,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-02,[],IL,103rd +Chief Senate Sponsor Sen. Ann Gillespie,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 103-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Personnel & Pensions Committee,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-13,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Executive,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 011-006-000,2023-03-29,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-03-07,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-16,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sonya M. Harper,2024-04-18,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-24,[],IL,103rd +House Committee Amendment No. 3 Rules Refers to State Government Administration Committee,2023-03-08,[],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-04-25,[],IL,103rd +Assigned to Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-06,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Ram Villivalam,2023-03-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-02-22,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2024-04-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-02-07,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2024-03-27,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-23,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Amy Elik,2023-02-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Consumer Protection Committee,2023-03-20,[],IL,103rd +Removed Co-Sponsor Rep. Norine K. Hammond,2023-03-13,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-03-15,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-06,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2023-03-07,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-22,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2023-03-20,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-28,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-03-20,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Committee Amendment No. 1 Adopted in Adoption & Child Welfare Committee; by Voice Vote,2024-03-20,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-10-25,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-05-08,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-01,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-23,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 007-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2024-05-08,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2024-04-17,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-30,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2024-05-13,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-13,[],IL,103rd +Second Reading,2024-04-18,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-05,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-17,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-30,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Mike Porfirio,2024-04-18,['amendment-introduction'],IL,103rd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2024-03-19,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Re-assigned to Health and Human Services,2024-05-02,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-21,[],IL,103rd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-10,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Javier L. Cervantes,2023-03-23,['amendment-introduction'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 28, 2023",2023-03-24,['reading-3'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2024",2024-05-01,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-12,[],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Chief House Sponsor Rep. Norine K. Hammond,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-04,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-09,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-29,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-04-23,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2023-03-21,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Chief House Sponsor Rep. Jenn Ladisch Douglass,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2023-04-04,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Natalie Toro,2024-05-10,['amendment-introduction'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2023-03-30,[],IL,103rd +Resolution Adopted,2024-05-03,['passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2024-03-14,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. David Koehler,2023-03-24,['amendment-introduction'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Lightford,2023-03-22,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-17,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 017-010-000,2024-03-12,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dave Syverson,2024-04-11,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-11-09,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Environment and Conservation,2023-03-22,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-30,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-09,[],IL,103rd +Do Pass Public Health; 005-003-000,2024-02-21,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Neil Anderson,2024-04-10,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Insurance,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-04-12,[],IL,103rd +Re-assigned to Environment and Conservation,2023-03-21,['referral-committee'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 015-000-000,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Mike Porfirio,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-12,[],IL,103rd +Do Pass as Amended Education; 012-000-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Tom Bennett,2023-03-09,['amendment-introduction'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Public Health; 005-002-000,2023-03-29,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-09,[],IL,103rd +Chief House Sponsor Rep. Kam Buckner,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Do Pass as Amended Human Rights; 007-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-21,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-25,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2023-03-13,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-17,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-12-15,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Chapin Rose,2023-03-30,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-02-21,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Environment and Conservation,2024-03-20,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-01,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Public Health,2024-03-12,[],IL,103rd +Waive Posting Notice,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Rachel Ventura,2024-03-20,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 009-005-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-08,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2023-03-21,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Gillespie,2023-03-22,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Recalled to Second Reading,2023-03-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-03-22,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-02-09,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-16,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-05-15,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Third Reading - Passed; 054-001-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Reported Back To Executive; 002-001-000,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Paul Jacobs,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 011-000-000,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Counties & Townships Committee; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-03-21,[],IL,103rd +Chief House Sponsor Rep. Margaret Croke,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-01-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2023-03-29,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 28, 2023",2023-03-24,['reading-3'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. David Koehler,2024-04-05,['amendment-introduction'],IL,103rd +Approved for Consideration Assignments,2024-04-16,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 011-000-000,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-09,[],IL,103rd +Do Pass as Amended Judiciary; 008-001-000,2023-03-22,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 17, 2024",2024-04-16,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass Judiciary; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-23,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-23,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Education,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert F. Martwick,2023-03-30,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-03-22,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2024-03-08,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Environment and Conservation,2023-03-21,[],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-08,[],IL,103rd +Assigned to Insurance,2023-02-14,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 005-000-000,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Ellman,2023-03-28,['amendment-passage'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2023-03-30,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-13,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-03-09,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-09,[],IL,103rd +Chief House Sponsor Rep. Dagmara Avelar,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-02-09,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-03-20,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 025-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Celina Villanueva,2023-03-30,['amendment-introduction'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Public Health,2024-04-09,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dagmara Avelar,2024-04-19,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Insurance,2024-04-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Chief Sponsor Changed to Rep. Theresa Mah,2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-16,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2024-04-15,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-02-20,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-07-05,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-06-09,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-31,[],IL,103rd +Do Pass as Amended Judiciary; 009-000-000,2024-04-10,['committee-passage'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-04-17,[],IL,103rd +Chief House Sponsor Rep. Jeff Keicher,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2024-04-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-03-14,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Chief Sponsor Changed to Rep. Katie Stuart,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-01-25,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-10-24,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-10-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-06-11,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-14,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-02,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2023-03-23,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-15,[],IL,103rd +House Committee Amendment No. 2 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-04-09,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Resolution Adopted; 053-000-000,2023-05-26,['passage'],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-04,[],IL,103rd +Referred to Assignments,2023-05-24,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-18,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-07,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-11-09,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-05-18,[],IL,103rd +"Chief Sponsor Changed to Rep. Curtis J. Tarver, II",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-05-17,[],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2024-04-19,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-15,[],IL,103rd +Chief Senate Sponsor Sen. Dale Fowler,2024-04-18,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-05,[],IL,103rd +Resolution Adopted,2023-05-15,['passage'],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-02-22,[],IL,103rd +"Chief House Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +Resolution Adopted,2023-03-29,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Consumer Protection Committee; 006-003-000,2024-03-12,['committee-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-05-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2024-04-09,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2024-05-15,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-04-11,[],IL,103rd +Resolution Adopted,2023-05-15,['passage'],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Correctional Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Adopted Both Houses,2023-10-26,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-05-12,[],IL,103rd +Remove Chief Co-Sponsor Rep. Rita Mayfield,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-02-21,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-15,[],IL,103rd +Recalled to Second Reading - Short Debate,2024-04-18,['reading-2'],IL,103rd +Do Pass as Amended Insurance; 008-000-000,2024-03-13,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-21,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jehan Gordon-Booth,2024-05-06,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2023-04-20,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-16,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-05-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-11-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2024-04-04,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-04-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-10-25,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 017-008-000,2023-03-22,['committee-passage-favorable'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-21,[],IL,103rd +House Committee Amendment No. 3 Rules Refers to Insurance Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-11-08,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-08,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Appropriations- Education,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-03-21,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-05-17,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-05-11,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 011-000-000,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-07,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-02-21,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-16,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2024-05-20,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-03-07,[],IL,103rd +Chief Sponsor Changed to Sen. Laura Fine,2023-03-28,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 012-000-000,2023-03-31,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lindsey LaPointe,2023-03-10,[],IL,103rd +Third Reading - Short Debate - Passed 072-040-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-20,[],IL,103rd +Do Pass as Amended / Short Debate Appropriations-Elementary & Secondary Education Committee; 011-002-000,2024-04-11,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-02-15,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-02,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mark L. Walker,2024-05-24,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-10,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lilian Jiménez,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Financial Institutions and Licensing Committee; 012-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Janet Yang Rohr,2024-05-17,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 017-000-000,2023-03-29,[],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 018-000-000,2023-03-07,['committee-passage'],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-03-14,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2023-03-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-03-30,[],IL,103rd +To Police Subcommittee,2024-04-04,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2024-04-17,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-28,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-10,[],IL,103rd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-05-25,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-02-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-07,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2023-03-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-02-08,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 007-000-000,2023-03-07,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-02-20,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-25,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-18,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-10-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-15,[],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2024-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-09,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Natalie A. Manley,2024-04-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-20,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-05-23,[],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-22,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-01,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Will Guzzardi,2023-03-16,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2024-03-20,[],IL,103rd +Resolution Adopted; 055-000-000,2024-05-25,['passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Public Utilities Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-20,[],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-16,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Licenses Committee; 011-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-16,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2023-03-16,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor All Other Members of the House,2024-05-03,[],IL,103rd +Chief Sponsor Changed to Sen. Sally J. Turner,2023-04-21,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-20,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-21,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 28, 2023",2023-03-24,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-05-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. David Koehler,2023-03-24,['amendment-introduction'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Standard Debate,2024-04-04,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 078-032-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Chief Co-Sponsor Changed to Rep. Amy Elik,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-16,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 013-007-000,2023-03-09,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-05-03,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Appropriations-Elementary & Secondary Education Committee; 009-003-000,2024-05-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-01,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-21,['amendment-passage'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Linda Holmes,2023-03-29,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-06,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Financial Institutions and Licensing Committee,2023-03-20,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Steve McClure,2024-04-10,['amendment-introduction'],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-03-14,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Higher Education Committee,2024-03-13,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2024-04-24,[],IL,103rd +House Committee Amendment No. 2 Adopted in Agriculture & Conservation Committee; by Voice Vote,2023-03-07,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2024-04-15,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Removed Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 010-000-000,2023-03-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-21,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2024-04-15,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Energy and Public Utilities; 015-000-000,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2023-03-22,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-06,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-25,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-04-02,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-02,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 012-000-000,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-16,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Re-assigned to Transportation: Vehicles & Safety,2024-04-02,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-02-29,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Chief Sponsor Changed to Sen. Mike Simmons,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-13,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-02,[],IL,103rd +Third Reading - Short Debate - Passed 072-036-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-04-26,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-03,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-24,[],IL,103rd +Adopted Both Houses,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-02-27,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-06,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-02-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2024-04-30,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Financial Institutions and Licensing Committee,2024-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-02-22,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-11-01,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-20,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-05-03,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2024-05-26,[],IL,103rd +Removed Co-Sponsor Rep. La Shawn K. Ford,2024-02-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-03,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2023-03-23,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Donald P. DeWitte,2023-03-24,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-02-22,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendments will remain in the Committee on Assignments.",2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-17,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2024-05-10,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-02,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-04-02,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2024-03-21,[],IL,103rd +Do Pass as Amended Judiciary; 006-003-000,2024-03-13,['committee-passage'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Human Services Committee,2024-04-02,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Laura Fine,2024-03-25,['amendment-introduction'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Be Adopted Human Rights; 007-000-000,2024-03-07,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Elections,2024-04-10,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Anna Moeller,2024-04-08,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Kevin John Olickal,2024-04-05,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2024-02-09,[],IL,103rd +First Reading,2024-05-01,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-04-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-07,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tracy Katz Muhl,2024-03-13,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2023-03-30,['amendment-introduction'],IL,103rd +Assigned to State Government Administration Committee,2024-05-06,['referral-committee'],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-05,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-01,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-03-28,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Daniel Didech,2023-03-02,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-22,[],IL,103rd +Reported Back To Revenue & Finance Committee;,2024-04-12,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations - Health and Human Services,2024-03-12,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-04-18,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary Gill,2024-03-05,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 012-000-000,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-03-14,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2024-04-16,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2024-04-09,['amendment-introduction'],IL,103rd +Chief Sponsor Changed to Rep. Nabeela Syed,2023-03-07,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Committee Amendment No. 3 Rules Refers to Consumer Protection Committee,2024-04-02,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Third Reading - Short Debate - Passed 091-019-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-12-19,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-05-24,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Alternate Co-Sponsor Rep. Chris Miller,2024-04-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-04-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2024-03-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-09,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-09-13,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2024-04-15,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 009-000-000,2024-03-22,[],IL,103rd +"Removed Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-25,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2024-04-12,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 012-000-000,2024-03-22,[],IL,103rd +Do Pass as Amended Judiciary; 007-000-000,2024-03-13,['committee-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-14,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2024-03-27,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2023-03-21,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Chief Sponsor Changed to Sen. Mike Simmons,2023-04-26,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-04,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 014-000-000,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Neil Anderson,2024-04-10,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Steve Stadelman,2024-04-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Steve McClure,2023-03-28,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Agriculture & Conservation Committee,2024-04-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-29,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Do Pass as Amended Local Government; 007-000-000,2024-04-18,['committee-passage'],IL,103rd +Do Pass as Amended Executive; 012-000-000,2024-03-14,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Second Reading,2024-04-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-12,[],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-03-21,[],IL,103rd +Chief House Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-03,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2024-04-09,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-03,[],IL,103rd +Second Reading,2023-03-24,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-20,[],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2024-04-09,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Chief House Sponsor Rep. Stephanie A. Kifowit,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 28, 2023",2023-03-24,['reading-3'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Do Pass Judiciary; 006-003-000,2023-03-22,['committee-passage'],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-11,[],IL,103rd +Chief Sponsor Changed to Sen. Donald P. DeWitte,2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-03-24,[],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2024-04-18,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 23, 2023",2023-03-22,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Referred to Rules Committee,2023-03-29,[],IL,103rd +Do Pass Local Government; 007-003-000,2024-03-07,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Elections,2024-05-08,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Doris Turner,2023-03-16,['amendment-introduction'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2024-04-18,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-02-20,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Alternate Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2023-03-31,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-04,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2024-04-17,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Do Pass as Amended Transportation; 014-000-000,2024-03-21,['committee-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2023-03-29,['amendment-introduction'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Chief House Sponsor Rep. Nabeela Syed,2024-04-12,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Do Pass as Amended Executive; 011-001-000,2023-03-09,['committee-passage'],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Transportation: Vehicles & Safety; 011-000-000,2024-03-21,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 2 Adopted; Labor,2023-03-08,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 008-000-000,2024-04-10,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2023-03-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Judiciary; 009-000-000,2024-04-10,['committee-passage'],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2024-03-13,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2023-03-21,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Second Reading,2024-04-11,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2024-04-24,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Do Pass as Amended Judiciary; 007-000-000,2024-03-06,['committee-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 005-002-001,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2023-03-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2023-03-24,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-16,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Joyce,2023-03-24,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Elections,2024-04-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2023-03-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Gill,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Energy and Public Utilities; 015-000-000,2023-04-20,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-22,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-23,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-30,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-21,[],IL,103rd +Chief House Sponsor Rep. Nabeela Syed,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-18,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-04,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Willie Preston,2024-02-23,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-01,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Recommends Do Pass Subcommittee/ Adoption & Child Welfare Committee; 004-000-000,2024-04-10,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-03,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-04-18,[],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-05-02,[],IL,103rd +Chief Sponsor Changed to Rep. Norine K. Hammond,2024-03-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2023-03-02,['amendment-introduction'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Adopted Both Houses,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Financial Institutions and Licensing Committee; 008-001-001,2024-04-17,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lakesia Collins,2023-03-20,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-01-25,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2024-04-15,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-04-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2023-03-21,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lakesia Collins,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2023-09-20,[],IL,103rd +House Committee Amendment No. 2 Adopted in Labor & Commerce Committee; 018-010-000,2023-03-08,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2023-03-06,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-15,['amendment-introduction'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-16,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-02,[],IL,103rd +Postponed - Insurance,2023-03-29,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-02-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Chief Sponsor Changed to Rep. Maura Hirschauer,2023-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Laura Faver Dias,2024-04-15,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-29,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-08,['committee-passage-favorable'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-02-28,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 011-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Adoption & Child Welfare Committee,2023-03-22,[],IL,103rd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 091-019-001,2024-04-16,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Hoan Huynh,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-03-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-02-17,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2024-04-12,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2024-04-09,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-02-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Omar Aquino,2023-02-16,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Amy Elik,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Removed Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 004-000-000,2023-05-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Personnel & Pensions Committee; 007-000-000,2023-03-16,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-05-18,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2023-03-09,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 2 Tabled,2023-03-08,['amendment-failure'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-11,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-02-20,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anthony DeLuca,2024-04-16,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-07,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2023-05-25,[],IL,103rd +Second Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-05-11,[],IL,103rd +Third Reading - Short Debate - Passed 073-036-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Health Committee,2023-03-22,[],IL,103rd +Third Reading - Passed; 057-001-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-10-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-18,[],IL,103rd +Arrive in Senate,2023-04-27,['introduction'],IL,103rd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-18,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Third Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-05-09,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-04-06,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2024-03-13,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-03-16,[],IL,103rd +Adopted Both Houses,2023-05-24,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-07,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2023-02-16,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Public Health Committee,2023-02-28,[],IL,103rd +Re-assigned to Energy and Public Utilities,2024-01-10,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-13,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-05-15,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-01,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Economic Opportunity & Equity Committee,2023-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Re-assigned to Appropriations - Health and Human Services,2024-01-10,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-08-28,[],IL,103rd +House Committee Amendment No. 2 Tabled,2024-04-03,['amendment-failure'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-03-22,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-04-16,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jeff Keicher,2024-03-25,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Lakesia Collins,2024-03-11,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-02-23,[],IL,103rd +Removed Co-Sponsor Rep. Chris Miller,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-09-26,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2023-06-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +House Committee Amendment No. 3 Rules Refers to Judiciary - Criminal Committee,2024-04-03,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Patrick Windhorst,2024-03-07,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-03-14,[],IL,103rd +To Firearms and Firearm Safety Subcommittee,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-12,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-03-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-17,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Tracy Katz Muhl,2024-04-11,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 010-000-000,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-04-10,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2024-04-04,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +Remove Chief Co-Sponsor Rep. Aaron M. Ortiz,2024-04-16,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Assigned to Counties & Townships Committee,2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-02-16,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 011-000-000,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-06,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +House Committee Amendment No. 3 Rules Refers to Executive Committee,2024-04-02,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-07,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-04-15,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-05-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-04-03,[],IL,103rd +Approved for Consideration Assignments,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-16,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-05-03,[],IL,103rd +Chief House Sponsor Rep. Dave Vella,2024-04-12,[],IL,103rd +Adopted Both Houses,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Nabeela Syed,2024-05-06,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-02-23,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Robert ""Bob"" Rita",2024-04-19,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-05-18,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Availability & Accessibility Committee; 011-000-000,2024-04-15,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Joe C. Sosnowski,2024-03-27,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2024-02-22,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-05-07,[],IL,103rd +Postponed - Insurance,2024-03-13,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2024-03-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Availability & Accessibility Committee; 009-000-000,2023-04-25,['amendment-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2024-04-15,['amendment-introduction'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2024-04-15,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Yolonda Morris,2024-02-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Sue Rezin,2024-02-14,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-05-20,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-10-23,[],IL,103rd +Postponed - Revenue,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Steve McClure,2024-03-19,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-22,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-12,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Adopted in Appropriations-Elementary & Secondary Education Committee; by Voice Vote,2024-04-10,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-08,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Margaret Croke,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-18,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-02,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - State Government,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Executive,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2023-03-28,['amendment-introduction'],IL,103rd +Balanced Budget Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2024-05-22,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-10-03,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2024-03-27,[],IL,103rd +Do Pass as Amended Higher Education; 011-000-000,2023-02-22,['committee-passage'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-16,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-17,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Cassidy,2024-04-15,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - State Government,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Tom Bennett,2024-04-10,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-12-18,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-22,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2024-03-27,[],IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 24, 2023",2023-03-23,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Steve McClure,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-24,[],IL,103rd +Added Chief Co-Sponsor Rep. William E Hauter,2024-04-17,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-11-14,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-12,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2024-04-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-05-10,[],IL,103rd +Third Reading - Short Debate - Passed 101-011-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-17,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-02-23,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2023-03-24,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-03-08,[],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-04-11,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-19,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Insurance,2024-01-10,['referral-committee'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-05-22,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-15,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-29,['amendment-failure'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-03-22,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 30, 2023",2023-03-29,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-20,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 006-002-002,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-07,[],IL,103rd +Removed Co-Sponsor Rep. La Shawn K. Ford,2024-05-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Margaret Croke,2024-03-21,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-05,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-03,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-02-28,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2024-05-24,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 012-000-000,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2023-03-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-26,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Norine K. Hammond,2024-04-18,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-05-03,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2024-04-15,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Chief House Sponsor Rep. Daniel Didech,2023-03-30,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-02-16,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-05-03,[],IL,103rd +Fiscal Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +Removed Co-Sponsor Rep. Kelly M. Cassidy,2024-05-13,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 1 To Subcommittee on Ethics,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2023-03-24,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. John M. Cabello,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-16,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Judiciary,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-03,[],IL,103rd +Do Pass as Amended Licensed Activities; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-02-22,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-19,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 006-000-000,2023-03-23,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2023-04-19,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2023-03-31,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-05-16,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 017-000-000,2023-03-29,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-04,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 014-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-04,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2023-03-29,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-05-14,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-16,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Financial Institutions and Licensing Committee; 012-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-05-08,[],IL,103rd +"Placed on Calendar Order of First Reading April 18, 2024",2024-04-17,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-17,[],IL,103rd +"Placed on Calendar Order of First Reading April 18, 2024",2024-04-17,['reading-1'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-15,[],IL,103rd +Chief Sponsor Changed to Rep. Dagmara Avelar,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-02,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 007-000-000,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 008-002-000,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 012-000-000,2023-03-29,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-03-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-05-20,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Executive,2023-03-09,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-01-31,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-24,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass as Amended Behavioral and Mental Health; 008-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2024-02-22,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Senate Special Committee on Pensions; 011-000-000,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-04,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-30,[],IL,103rd +Referred to Assignments,2023-05-24,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-03,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2023-03-29,[],IL,103rd +Adopted Both Houses,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2023-03-29,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-03,[],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2024-05-23,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-02-28,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-02,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-25,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-03-29,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-01-31,[],IL,103rd +Referred to Assignments,2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-30,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-15,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-20,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-03-28,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-04,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Resolution Adopted; 055-000-000,2024-05-25,['passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-20,[],IL,103rd +Chief Sponsor Changed to Sen. Christopher Belt,2023-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2024-04-17,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-21,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-02-28,['referral-committee'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2024-04-10,['amendment-introduction'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-11,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-28,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Adopted in Energy & Environment Committee; by Voice Vote,2024-03-20,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Dale Fowler,2023-03-21,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Do Pass as Amended Agriculture; 008-004-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-02,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 008-000-000,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-02,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading,2024-04-09,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Chief House Sponsor Rep. Adam M. Niemerg,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Chief House Sponsor Rep. Jay Hoffman,2024-04-09,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-12,[],IL,103rd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 027-000-000,2024-04-03,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2024-04-17,['amendment-introduction'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-03,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2024-04-16,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2024-03-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-03-23,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-02-22,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-02-29,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2024-05-03,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Chief House Sponsor Rep. Michael J. Kelly,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Johnson,2023-03-29,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2024-03-14,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2024-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Meg Loughran Cappel,2023-03-22,['amendment-introduction'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +Chief House Sponsor Rep. Amy Elik,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 009-000-000,2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-06,['amendment-passage'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +"Chief House Sponsor Rep. Curtis J. Tarver, II",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 28, 2023",2023-03-24,['reading-3'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +Chief Sponsor Changed to Sen. Dan McConchie,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-03-05,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2024-04-17,[],IL,103rd +House Committee Amendment No. 2 Tabled,2024-04-03,['amendment-failure'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Chief Senate Sponsor Sen. Robert F. Martwick,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2024-04-11,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-18,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-06,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 28, 2023",2023-03-24,['reading-3'],IL,103rd +Third Reading - Passed; 043-009-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-02,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-23,['amendment-introduction'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-09,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2023-03-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jil Tracy,2024-04-11,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2024-03-13,['amendment-passage'],IL,103rd +Chief House Sponsor Rep. Norma Hernandez,2023-03-30,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-08,[],IL,103rd +Third Reading - Passed; 051-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2024-04-10,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-16,[],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Debbie Meyers-Martin,2023-03-06,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2023-03-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Chapin Rose,2023-03-23,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-30,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Insurance,2023-03-21,[],IL,103rd +Re-assigned to Appropriations- Education,2024-01-10,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-05,[],IL,103rd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-03-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +Chief House Sponsor Rep. Adam M. Niemerg,2023-03-27,[],IL,103rd +Recalled to Second Reading,2024-04-12,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-01-29,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-02-06,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 23, 2023",2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-23,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Third Reading - Passed; 054-001-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2024-04-10,[],IL,103rd +"Motion Filed to Suspend Rule 21 Appropriations-Elementary & Secondary Education Committee; Rep. Elizabeth ""Lisa"" Hernandez",2024-05-23,[],IL,103rd +Chief House Sponsor Rep. Anna Moeller,2024-04-12,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Senate Committee Amendment No. 2 Postponed - Executive,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-21,['amendment-passage'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 027-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Do Pass as Amended Education; 012-000-000,2024-03-13,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-02,[],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Rachel Ventura,2024-05-03,['amendment-introduction'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-14,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2024-03-08,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-04-12,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2024-03-14,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-27,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +Do Pass as Amended Executive; 009-002-000,2024-04-10,['committee-passage'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Third Reading - Short Debate - Passed 097-014-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-02-29,[],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Do Pass as Amended Labor; 012-004-000,2024-02-21,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-07,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-21,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-05-22,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2024-04-10,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-07,[],IL,103rd +To Subcommittee on Elections,2024-02-08,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-26,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-04-11,[],IL,103rd +Chief House Sponsor Rep. Laura Faver Dias,2024-04-12,[],IL,103rd +Do Pass as Amended / Short Debate Child Care Accessibility & Early Childhood Education Committee; 014-000-000,2024-04-04,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-06,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As May 25, 2023",2023-04-28,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-04-09,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Angelica Guerrero-Cuellar,2024-04-16,['amendment-introduction'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Sonya M. Harper,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-04-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 28, 2023",2023-03-24,['reading-3'],IL,103rd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2024-04-05,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Sara Feigenholtz,2024-03-15,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-27,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Financial Institutions,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Jil Tracy,2023-03-24,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-03-22,['amendment-introduction'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Do Pass as Amended Health and Human Services; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-04-16,['amendment-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Tracy Katz Muhl,2024-04-15,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Health and Human Services,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. David Koehler,2024-05-01,['amendment-introduction'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-04-12,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2024-03-05,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Chief House Sponsor Rep. Kelly M. Burke,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-09,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Labor,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2023-03-29,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-02-16,[],IL,103rd +Third Reading - Short Debate - Passed 072-039-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Police & Fire Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +First Reading,2023-04-12,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-06,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jeff Keicher,2023-03-17,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-20,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-09,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-02-24,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-08,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Suzanne M. Ness,2023-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2023-02-28,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-02-08,[],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2023-03-24,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-16,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Kelly M. Cassidy,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-21,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-15,[],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 102-001-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 027-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 106-005-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-03-21,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-05-24,['referral-committee'],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-16,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-02-09,[],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2023-03-23,[],IL,103rd +Motion Filed to Suspend Rule 21 Insurance Committee; Rep. Robyn Gabel,2023-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-28,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 014-000-000,2023-03-08,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-09,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-13,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-02,[],IL,103rd +Chief Sponsor Changed to Rep. Charles Meier,2024-04-16,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2023-03-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Halbrook,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-08,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Restorative Justice; 005-002-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-09,['amendment-failure'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-28,[],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2023-03-28,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-17,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-07,['amendment-failure'],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-03-15,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 010-005-000,2023-03-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Counties & Townships Committee,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Re-assigned to Restorative Justice,2023-03-15,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 080-029-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Financial Institutions and Licensing Committee,2023-03-22,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-11,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2023-04-18,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-10,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-02-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-24,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-16,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-14,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-21,[],IL,103rd +Do Pass as Amended / Short Debate Insurance Committee; 009-005-000,2023-03-07,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-23,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-14,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-13,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-03-27,[],IL,103rd +"Placed on Calendar Order of First Reading March 23, 2023",2023-03-22,['reading-1'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 006-003-000,2023-03-21,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-09,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Financial Institutions and Licensing Committee; 008-004-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-08,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Personnel & Pensions Committee; 007-000-000,2023-03-16,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-17,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +"House Committee Amendment No. 2 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-08,['amendment-passage'],IL,103rd +Chief Co-Sponsor Changed to Rep. Eva-Dina Delgado,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-11-09,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-03-08,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-15,[],IL,103rd +First Reading,2024-05-01,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-08,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Agriculture & Conservation Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-01-24,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2024-05-13,['amendment-introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-10,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-15,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-23,['amendment-failure'],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Removed Co-Sponsor Rep. Maura Hirschauer,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Travis Weaver,2023-03-20,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-10,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-02-08,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 022-000-000,2023-02-28,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-04-26,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2024-04-15,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Tony M. McCombie,2023-03-20,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Neil Anderson,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Restorative Justice; 007-002-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-15,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary Beth Canty,2023-03-01,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2024-04-02,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-16,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-09,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2024-04-17,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2023-03-20,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed,2023-03-08,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-04-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Justin Slaughter,2023-03-21,['amendment-introduction'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Sharon Chung,2023-03-21,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-17,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Kevin John Olickal,2023-03-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2023-03-03,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-13,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2023-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-22,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-10-25,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2023-03-21,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-05-02,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2023-03-15,[],IL,103rd +Referred to Assignments,2024-05-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Michelle Mussman,2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-23,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-02,[],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2024-04-18,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 096-009-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-10,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-15,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-11-09,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Robyn Gabel,2023-01-26,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-03-09,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Consumer Protection Committee,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-24,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-02-09,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-09,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Adopted in Mental Health & Addiction Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-16,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2023-03-22,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 101-001-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-02-22,[],IL,103rd +Third Reading - Short Debate - Passed 091-010-006,2023-03-15,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2023-03-09,['committee-passage'],IL,103rd +"Chief Co-Sponsor Changed to Rep. Maurice A. West, II",2023-03-16,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 018-008-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 005-003-000,2023-03-09,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-15,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +"Motion Filed to Suspend Rule 21 Transportation: Regulations, Roads & Bridges; Rep. Barbara Hernandez",2023-05-24,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-02-08,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2023-02-27,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2023-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-01,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-05-19,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Chief House Sponsor Rep. Michael T. Marron,2023-05-11,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-28,[],IL,103rd +First Reading,2023-03-28,['reading-1'],IL,103rd +Removed Co-Sponsor Rep. Brad Halbrook,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Financial Institutions and Licensing Committee; 008-003-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Jil Tracy,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2023-03-23,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-23,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 103-001-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 099-000-001,2023-03-24,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 103-003-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-23,[],IL,103rd +House Committee Amendment No. 2 Tabled,2023-03-07,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-09,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-02-22,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-08,[],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-08,['amendment-failure'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-09,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-13,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-000-000,2023-03-30,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Appropriations-Health & Human Services Committee,2024-05-13,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2024-02-16,['amendment-introduction'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-21,[],IL,103rd +Chief Sponsor Changed to Sen. Jason Plummer,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 006-003-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2023-03-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-01-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-12,[],IL,103rd +Resolution Adopted; 055-000-000,2024-05-25,['passage'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Chief Sponsor Changed to Sen. Cristina Castro,2023-05-03,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Recalled to Second Reading,2023-03-23,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-01,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-03-21,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-24,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Housing,2024-04-15,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 017-011-000,2024-04-03,['committee-passage'],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2024-05-14,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-20,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Do Pass as Amended / Short Debate Energy & Environment Committee; 020-002-000,2024-03-20,['committee-passage'],IL,103rd +Chief Co-Sponsor Changed to Rep. Sharon Chung,2024-02-22,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Donald P. DeWitte,2023-03-23,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-01-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Agriculture,2024-04-09,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Economic Opportunity & Equity Committee,2024-03-12,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-02,[],IL,103rd +Recalled to Second Reading,2023-03-31,['reading-2'],IL,103rd +Adopted Both Houses,2024-05-25,[],IL,103rd +Home Rule Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Michael W. Halpin,2023-03-30,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-10,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendments will remain in the Committee on Assignments.",2023-03-28,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Higher Education Committee,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Chief Sponsor Changed to Sen. Julie A. Morrison,2023-05-09,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-02-05,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-10-24,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-10-24,[],IL,103rd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2024-03-21,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2023-03-02,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Ram Villivalam,2023-03-23,['amendment-introduction'],IL,103rd +Second Reading,2023-03-30,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 015-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-03,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments.",2023-05-10,[],IL,103rd +House Committee Amendment No. 3 Rules Refers to State Government Administration Committee,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 009-000-000,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-04-09,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-10-25,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2024-04-17,[],IL,103rd +Chief Sponsor Changed to Sen. Rachel Ventura,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2023-05-02,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-05-16,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-03-20,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-04,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Chief Sponsor Changed to Sen. Dan McConchie,2023-10-25,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2024-01-03,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Cities & Villages Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-20,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-10-24,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Recalled to Second Reading,2023-03-23,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2024-04-24,[],IL,103rd +To Sex Offenses and Sex Offender Registration Subcommittee,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2023-05-11,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-10-24,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-05-15,[],IL,103rd +Chief Senate Sponsor Sen. Robert F. Martwick,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-04-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-27,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-08,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-03-28,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-02-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 23, 2023",2023-02-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-29,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Recommends Be Adopted Human Services Committee; 008-000-000,2024-05-08,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-16,[],IL,103rd +Resolution Adopted,2024-05-02,['passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-16,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 014-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-10-03,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-23,['amendment-introduction'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Recalled to Second Reading,2023-03-23,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 To Subcommittee on Privacy,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Transportation,2023-03-28,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-05-16,[],IL,103rd +Fiscal Note Filed,2024-04-22,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-03-14,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-10-24,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-01,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-02-16,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-05-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-11,[],IL,103rd +Referred to Assignments,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2024-04-18,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-03,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Postponed - Executive,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-02-28,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-28,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-02,[],IL,103rd +Removed Co-Sponsor Rep. Dave Vella,2024-05-13,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-03,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Health Care Licenses Committee,2024-03-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-19,[],IL,103rd +Postponed - State Government,2024-02-21,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-03-13,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Placed on Calendar Order of First Reading,2023-04-27,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Erica Harriss,2023-10-26,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-18,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-05-16,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-04,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2023-05-10,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-11,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Third Reading - Passed; 040-017-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2024-02-28,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-05-28,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-25,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-10-04,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-17,[],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 009-000-000,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-16,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Public Health Committee,2023-02-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Rita Mayfield,2023-03-22,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Energy and Public Utilities,2024-01-10,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-05-15,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2024-04-03,['amendment-introduction'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Do Pass as Amended Agriculture; 013-000-000,2024-03-07,['committee-passage'],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendments will remain in the Committee on Assignments.",2023-03-28,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Restorative Justice,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-08-28,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-11,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Do Pass as Amended / Short Debate Appropriations-Elementary & Secondary Education Committee; 012-000-000,2024-04-10,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-03-07,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-07,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-04-16,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-10,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Bob Morgan,2024-04-16,['amendment-introduction'],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2023-05-04,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-25,[],IL,103rd +Motion Do Pass - Lost Counties & Townships Committee; 003-005-001,2024-03-07,['committee-failure'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Doris Turner,2024-04-16,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Executive,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-09-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-11-15,[],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-23,[],IL,103rd +Referred to Assignments,2023-05-18,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Revenue,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-01,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-23,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Maurice A. West, II",2024-04-12,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-03-21,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2024-03-07,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-24,[],IL,103rd +House Committee Amendment No. 2 Tabled,2023-04-25,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-02-23,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-04-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 006-003-000,2023-03-22,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2023-03-07,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-03-08,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2024-02-22,[],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Resolution Adopted; 056-000-000,2023-05-25,['passage'],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Remove Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-04-23,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-03-13,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Resolution Adopted 090-016-000,2023-05-02,['passage'],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2024-05-21,['amendment-introduction'],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-03-19,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-10-23,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-07,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 005-000-000,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-01,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-19,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-15,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Adopted; Peters,2023-03-23,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Do Pass as Amended Human Rights; 006-002-000,2024-05-02,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-11,[],IL,103rd +Removed Co-Sponsor Rep. Anna Moeller,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Health and Human Services,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-04-12,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Chief Sponsor Changed to Sen. Craig Wilcox,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-09,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Transportation,2023-03-28,['amendment-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Education,2023-03-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. David Koehler,2023-05-02,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-02-07,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Fine,2023-03-30,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-22,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2023-03-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Joyce,2023-03-23,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-12,['amendment-passage'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-16,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-24,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 072-040-000,2024-05-23,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-02-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-03-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 11, 2024",2024-04-10,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Tom Bennett,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-03-24,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-03-24,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-21,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments.",2024-04-11,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2024-03-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-09,[],IL,103rd +Do Pass as Amended Insurance; 007-003-000,2024-03-06,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2024-04-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-01-23,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-03-14,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-05,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-17,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +First Reading,2024-05-02,['reading-1'],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Glowiak Hilton,2023-03-30,['amendment-passage'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-04-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-16,[],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2024-04-03,[],IL,103rd +Chief House Sponsor Rep. Kimberly Du Buclet,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Referred to Rules Committee,2024-04-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Swanson,2023-03-24,[],IL,103rd +Do Pass as Amended State Government; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-04-18,['referral-committee'],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-09,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-03-06,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-09,[],IL,103rd +Approved for Consideration Assignments,2024-05-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-03-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Blaine Wilhour,2023-03-27,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 025-000-000,2024-02-06,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2024-04-05,['amendment-introduction'],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 011-004-000,2024-03-13,['committee-passage'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 015-000-000,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-24,[],IL,103rd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-23,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-07,['amendment-passage'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Third Reading - Passed; 038-019-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-03-05,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Education,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2023-03-21,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +House Floor Amendment No. 1 Home Rule Note Requested as Amended by Rep. Patrick Windhorst,2024-04-17,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Third Reading - Passed; 054-000-000,2023-03-28,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Sara Feigenholtz,2024-04-01,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2023-03-07,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-03-21,[],IL,103rd +Chief House Sponsor Rep. Lindsey LaPointe,2023-03-30,[],IL,103rd +House Committee Amendment No. 2 Tabled,2024-04-03,['amendment-failure'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Transportation: Vehicles & Safety,2024-04-15,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-29,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +Do Pass as Amended Health and Human Services; 009-002-000,2024-04-17,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 064-039-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-04-10,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Assigned to Judiciary,2024-02-28,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Karina Villa,2023-03-24,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2024-03-13,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Karina Villa,2023-03-10,['amendment-introduction'],IL,103rd +"Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), this committee amendment will remain in the Committee on Assignments.",2024-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-04-24,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 010-000-000,2024-04-10,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-02-20,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Approved for Consideration Assignments,2024-05-14,[],IL,103rd +Do Pass as Amended Insurance; 010-000-000,2024-05-08,['committee-passage'],IL,103rd +Chief House Sponsor Rep. Gregg Johnson,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-03-09,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-21,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-01,[],IL,103rd +Referred to Rules Committee,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2024-04-10,[],IL,103rd +Chief House Sponsor Rep. Joe C. Sosnowski,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-01-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Assigned to Public Utilities Committee,2023-04-11,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2024-05-03,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-02,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Labor,2023-03-08,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2024-04-09,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-03-14,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-22,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Do Pass as Amended Local Government; 008-000-000,2024-03-22,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2024-03-05,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Education,2023-03-28,['amendment-passage'],IL,103rd +Chief Sponsor Changed to Sen. Natalie Toro,2023-10-19,[],IL,103rd +Assigned to Ethics & Elections,2024-03-05,['referral-committee'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Do Pass as Amended Executive; 013-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-03-07,[],IL,103rd +Chief Sponsor Changed to Sen. Doris Turner,2023-10-24,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2024-04-05,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-30,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Third Reading - Passed; 050-003-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Michael W. Halpin,2024-04-05,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-03-21,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-03-12,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Public Health; 005-000-000,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Postponed - Environment and Conservation,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 009-000-000,2023-03-29,[],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-16,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-03-22,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Robert F. Martwick,2023-03-28,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Steve McClure,2023-03-29,[],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 23, 2023",2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Health and Human Services; 012-000-000,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-17,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-10,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-12-19,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Tom Bennett,2023-03-22,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-02,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Assigned to Insurance Committee,2023-04-11,['referral-committee'],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2024-04-16,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-04-11,['referral-committee'],IL,103rd +Chief House Sponsor Rep. Sharon Chung,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-14,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Environment and Conservation; 008-000-000,2024-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2024-04-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Education,2023-03-21,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-01-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Adopted; State Government,2023-03-08,['amendment-passage'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2024-08-15,[],IL,103rd +Second Reading,2024-05-01,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading February 22, 2024",2024-02-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2024-06-12,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 006-002-000,2024-04-10,[],IL,103rd +Chief Sponsor Changed to Sen. Steve McClure,2024-04-10,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Environment and Conservation,2024-02-20,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Licensed Activities,2023-03-08,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-15,['referral-committee'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2023-03-20,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-21,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2023-03-22,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2024-03-07,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-23,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Tom Bennett,2024-04-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-03-14,[],IL,103rd +Chief House Sponsor Rep. Justin Slaughter,2023-04-03,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Financial Institutions; 005-002-000,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2024-04-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Simmons,2023-03-29,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-22,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-15,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-001,2024-04-16,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-03-05,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2024-04-17,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-03-23,['amendment-passage'],IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-10,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2023-03-22,['amendment-introduction'],IL,103rd +Assigned to Energy & Environment Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-23,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Assigned to Executive Committee,2023-02-28,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Villivalam,2023-03-22,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-24,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Chief Sponsor Changed to Sen. Sue Rezin,2023-05-02,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Rose,2023-03-30,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Rachel Ventura,2023-03-29,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Rezin,2023-03-23,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-03-12,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Environment and Conservation; 009-000-000,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-02-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-11-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-09,[],IL,103rd +Third Reading - Passed; 042-011-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Eva-Dina Delgado,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-05-07,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-09,[],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2024-03-08,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Chief House Sponsor Rep. Lindsey LaPointe,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-04-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Yolonda Morris,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Insurance; 009-000-000,2023-03-29,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +Do Pass as Amended Public Health; 008-000-000,2024-03-13,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-11,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Bob Morgan,2023-03-21,['amendment-introduction'],IL,103rd +Third Reading - Passed; 054-000-000,2023-03-28,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Health and Human Services,2023-03-07,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 005-000-000,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-09,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 007-000-000,2023-03-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-07,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Assigned to Executive Committee,2023-04-11,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mike Simmons,2024-04-05,['amendment-introduction'],IL,103rd +Chief Sponsor Changed to Sen. Neil Anderson,2023-10-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-18,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Emanuel ""Chris"" Welch",2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-02-24,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +"Do Pass as Amended / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-03-08,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-10-24,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2023-03-29,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-07,[],IL,103rd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-05-26,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Chief Co-Sponsor Changed to Rep. Camille Y. Lilly,2023-03-21,[],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-03-27,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-30,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Do Pass as Amended Revenue; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2023-02-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 076-035-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-11,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 013-000-000,2024-04-15,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-17,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Appropriations-General Services Committee,2023-03-22,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-03-22,['amendment-passage'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-04,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-000-000",2023-03-15,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-03-20,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-07,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Balanced Budget Note Requested by Rep. Patrick Windhorst,2023-03-16,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Rita Mayfield,2023-03-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-03,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-09,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-02-28,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-03-16,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-25,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-02,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 019-010-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Health Committee,2024-03-12,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Lost 006-097-001,2023-03-23,"['failure', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Charles Meier,2023-02-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-30,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Terra Costa Howard,2023-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-10-25,[],IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2024-04-16,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2023-03-08,['amendment-introduction'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-14,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +"Removed Co-Sponsor Rep. William ""Will"" Davis",2024-03-22,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-23,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-16,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +"Chief Co-Sponsor Changed to Rep. William ""Will"" Davis",2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-03-11,[],IL,103rd +Remove Chief Co-Sponsor Rep. Randy E. Frese,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-10,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Restorative Justice,2023-03-22,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-000-000,2024-04-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-16,[],IL,103rd +Removed Co-Sponsor Rep. Rita Mayfield,2023-03-07,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-15,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-14,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-03-13,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Rules Refers to Immigration & Human Rights Committee,2023-03-20,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-04-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-02,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 105-002-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2024-04-01,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-04-03,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Omar Aquino,2023-10-23,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Wayne A Rosenthal,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-03-22,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-03-23,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-07,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 010-005-000,2023-03-09,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2023-03-20,[],IL,103rd +Removed Co-Sponsor Rep. Yolonda Morris,2024-02-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-13,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Remove Chief Co-Sponsor Rep. Travis Weaver,2023-04-25,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Tom Weber,2023-03-22,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-23,[],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-14,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dave Vella,2023-03-02,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-01,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-05-20,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Health Committee,2024-04-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-03-16,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 017-008-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-05-28,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Consumer Protection Committee; 009-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mark L. Walker,2023-03-17,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-13,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-16,['amendment-passage'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Removed Co-Sponsor Rep. Dave Severin,2023-04-20,[],IL,103rd +"Do Pass / Short Debate Cybersecurity, Data Analytics, & IT Committee; 013-000-000",2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Correctional Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-14,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-24,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Suzanne M. Ness,2023-03-17,['amendment-introduction'],IL,103rd +Fiscal Note Filed,2023-03-13,[],IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2023-03-23,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Recalled to Second Reading,2023-03-31,['reading-2'],IL,103rd +House Committee Amendment No. 3 Adopted in State Government Administration Committee; 006-003-000,2023-03-08,['amendment-passage'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-15,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +Postponed - Public Health,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-24,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-15,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Mattie Hunter,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Transportation,2024-04-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-04-03,[],IL,103rd +Re-assigned to Licensed Activities,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-28,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-02-20,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-04-26,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-20,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-04-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Re-assigned to Special Committee on Criminal Law and Public Safety,2024-01-10,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-03-06,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2024-03-27,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Resolution Adopted,2023-03-28,['passage'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2024-05-14,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Resolution Adopted 114-000-000,2023-05-18,['passage'],IL,103rd +Senate Committee Amendment No. 3 Assignments Refers to Revenue,2023-03-21,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Maurice A. West, II",2023-03-24,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-10-04,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-04-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-04-03,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-07,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-07,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-21,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-02-28,['referral-committee'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2024-05-15,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-05-09,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-05-18,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-02-24,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-07,[],IL,103rd +First Reading,2023-04-20,['reading-1'],IL,103rd +Third Reading - Passed; 057-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-02-22,[],IL,103rd +Chief Sponsor Changed to Rep. Jay Hoffman,2024-03-12,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-04-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Sponsor Changed to Sen. Laura Fine,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-01,[],IL,103rd +Chief House Sponsor Rep. Kevin John Olickal,2024-04-12,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-03-27,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-01-17,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-05-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-04-16,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2024-04-09,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Mental Health & Addiction Committee,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-02-21,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-04-17,[],IL,103rd +Chief House Sponsor Rep. Eva-Dina Delgado,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-05-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-03,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-04-16,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-02-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-01,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2023-05-02,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-03-21,[],IL,103rd +Chief House Sponsor Rep. Anthony DeLuca,2024-04-12,[],IL,103rd +"Senate Committee Amendment No. 1 Purusant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2023-05-24,[],IL,103rd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-02,[],IL,103rd +Re-assigned to Judiciary,2024-01-10,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2024-05-21,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-04-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-03,['amendment-introduction'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2024-03-12,[],IL,103rd +Sponsor Removed Sen. Lakesia Collins,2024-03-19,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2024-05-08,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-10-25,[],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 30, 2024",2024-04-18,['reading-3'],IL,103rd +Do Pass as Amended / Short Debate Adoption & Child Welfare Committee; 011-000-000,2024-03-20,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-05-08,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-13,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-04-30,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Housing,2024-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-25,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2024-05-09,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-02,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-23,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-17,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-05-02,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2023-03-01,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-05-10,[],IL,103rd +Motion Filed to Suspend Rule 21 Adoption & Child Welfare Committee; Rep. Kam Buckner,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-02-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-03-23,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2023-03-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Travis Weaver,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-05-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Do Pass as Amended / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2023-03-07,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Public Health Committee; 007-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Human Services Committee,2023-03-07,[],IL,103rd +Third Reading - Short Debate - Passed 091-013-004,2023-03-15,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2023-05-09,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-02-23,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Katie Stuart,2023-03-16,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-000-000,2024-04-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-06,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2024-02-28,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-001,2023-03-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 103-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-18,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-16,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-04-17,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2023-03-14,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-02-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +Arrive in Senate,2023-05-03,['introduction'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-10-16,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Theresa Mah,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-04-25,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-29,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-03-20,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-20,[],IL,103rd +Remove Chief Co-Sponsor Rep. Matt Hanson,2023-05-11,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-01-25,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2023-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-15,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-03-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Veterans' Affairs Committee; 009-005-000,2023-03-21,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-12,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael W. Halpin,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2023-03-23,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-02-28,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-07,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Hoan Huynh,2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-02-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 010-000-000",2023-05-24,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading,2024-04-09,['reading-2'],IL,103rd +Third Reading - Passed; 036-019-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2024-03-13,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2024-04-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-24,[],IL,103rd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 010-005-000,2023-03-22,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2023-03-16,[],IL,103rd +"House Committee Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2024-05-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-24,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 010-003-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2024-02-08,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mary E. Flowers,2023-03-23,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2024-02-21,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-03-04,[],IL,103rd +Remove Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-02,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Justin Slaughter,2024-04-15,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Tracy Katz Muhl,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-04-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-02-27,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-03-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-12,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2024-05-22,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +House Floor Amendment No. 1 Motion Filed to Table Rep. Jay Hoffman,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dale Fowler,2023-05-01,['amendment-introduction'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-02-26,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-02,[],IL,103rd +Added as Chief Co-Sponsor Sen. Erica Harriss,2023-03-30,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-05-02,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2023-05-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-02-28,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-24,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-10,[],IL,103rd +Do Pass as Amended / Short Debate Agriculture & Conservation Committee; 008-000-000,2023-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 010-001-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-28,[],IL,103rd +"Chief Sponsor Changed to Sen. Napoleon Harris, III",2023-10-25,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Chief Co-Sponsor Changed to Rep. Jackie Haas,2024-05-03,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2024-04-17,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Suzanne M. Ness,2024-04-15,['amendment-introduction'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-02,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sally J. Turner,2023-04-21,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-16,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Agriculture & Conservation Committee,2024-04-02,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +House Committee Amendment No. 2 Tabled,2024-04-11,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2023-11-02,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-21,[],IL,103rd +Resolution Adopted; 057-000-000,2024-05-26,['passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-27,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-22,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-28,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-20,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-02-14,['referral-committee'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Recalled to Second Reading,2023-03-31,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-06,[],IL,103rd +Removed Co-Sponsor Rep. Theresa Mah,2024-02-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2024-03-20,[],IL,103rd +Remove Chief Co-Sponsor Rep. Barbara Hernandez,2023-03-15,[],IL,103rd +Referred to Revenue & Finance Committee,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Janet Yang Rohr,2023-03-17,['amendment-introduction'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-28,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-02-22,[],IL,103rd +Third Reading - Short Debate - Passed 066-036-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2023-05-02,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Morrison,2023-03-30,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-05-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-03-02,[],IL,103rd +Resolution Adopted; 055-000-000,2024-05-25,['passage'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-24,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Angelica Guerrero-Cuellar,2023-03-20,['amendment-introduction'],IL,103rd +Adopted Both Houses,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +Chief Sponsor Changed to Sen. Bill Cunningham,2023-05-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-21,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-05-20,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 006-003-000,2023-03-22,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-03-22,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Gregg Johnson,2024-04-17,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2024-04-11,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-02-06,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 009-001-000,2023-03-29,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Recalled to Second Reading,2023-03-31,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Financial Institutions and Licensing Committee; 009-003-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2023-03-22,[],IL,103rd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-30,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-02,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 008-005-000,2024-04-15,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 010-000-000,2023-03-29,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-22,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +Chief Sponsor Changed to Sen. Terri Bryant,2023-10-25,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-04-02,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-24,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2024-04-15,[],IL,103rd +Removed Co-Sponsor Rep. Abdelnasser Rashid,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-24,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Chief Sponsor Changed to Sen. Jil Tracy,2023-05-02,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Financial Institutions and Licensing Committee; 011-000-000,2024-03-20,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-02-23,[],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Curtis J. Tarver, II",2024-05-03,['amendment-introduction'],IL,103rd +Assigned to Police & Fire Committee,2024-02-28,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2023-05-15,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-02-16,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Lance Yednock,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-11,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-14,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-06,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-06,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-10-25,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-02-21,[],IL,103rd +Do Pass Education; 013-001-000,2024-03-21,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-09,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2023-03-15,['amendment-introduction'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-10-24,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-02-22,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-20,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-10-10,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-02,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-22,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-05-03,[],IL,103rd +House Committee Amendment No. 2 Adopted in Insurance Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-15,[],IL,103rd +Chief House Sponsor Rep. Matt Hanson,2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-23,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-22,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-07-05,[],IL,103rd +Chief Sponsor Changed to Rep. Rita Mayfield,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-02,[],IL,103rd +Adopted Both Houses,2023-05-26,[],IL,103rd +To Family Law & Probate Subcommittee,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-11-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Tracy Katz Muhl,2024-05-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-02,[],IL,103rd +Referred to Assignments,2023-04-20,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 013-000-000,2024-04-02,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-04-25,[],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-15,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-07-06,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 11, 2024",2024-04-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2024-05-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-28,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2023-05-11,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-02-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-02-07,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2024-03-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-05-11,['amendment-introduction'],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-12-07,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Debbie Meyers-Martin,2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2023-04-18,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-03-05,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2024-05-15,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-15,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-28,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2023-10-26,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-05-12,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-05-09,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-04,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-15,[],IL,103rd +Assigned to Executive,2024-02-28,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2023-05-02,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2024-05-15,['amendment-introduction'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-11-08,[],IL,103rd +Motion Filed to Suspend Rule 21 Judiciary - Criminal Committee; Rep. Natalie A. Manley,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-13,[],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-04-26,[],IL,103rd +Third Reading - Passed; 053-003-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2024-04-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-03-20,[],IL,103rd +Approved for Consideration Assignments,2024-04-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Local Government,2024-04-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Paul Jacobs,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2023-03-29,[],IL,103rd +Third Reading - Passed; 037-018-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2023-03-13,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2024-04-09,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2024-05-01,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2024-04-09,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-02-13,[],IL,103rd +Do Pass as Amended Labor; 011-004-000,2023-03-08,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-09,[],IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +"Chief House Sponsor Rep. Maurice A. West, II",2024-04-12,[],IL,103rd +"Chief House Sponsor Rep. Curtis J. Tarver, II",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 11, 2024",2024-04-10,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Elections,2024-02-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 010-004-000,2024-03-21,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Environment and Conservation,2023-03-28,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Transportation: Vehicles & Safety,2024-04-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 30, 2024",2024-04-18,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-08,[],IL,103rd +Do Pass as Amended Education; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-04-24,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Public Health,2024-04-30,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-03-25,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Chief House Sponsor Rep. Carol Ammons,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2024-04-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-17,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2024-04-05,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 12, 2024",2024-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 017-000-000,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-04-04,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 008-004-000,2023-04-27,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-16,[],IL,103rd +"Chief House Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-12,[],IL,103rd +Chief House Sponsor Rep. Kevin Schmidt,2024-04-16,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-04-19,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-17,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-03-07,[],IL,103rd +First Reading,2023-03-28,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2024-04-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-25,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-03-22,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 28, 2023",2023-03-24,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 009-000-000,2024-04-10,[],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2024-04-12,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-01,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-23,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Ellman,2024-04-09,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-03-21,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-13,[],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2024-05-14,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Adam M. Niemerg,2024-05-01,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2024-03-20,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-04-11,['referral-committee'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-12-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 007-004-000,2024-04-03,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-10,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Transportation: Vehicles & Safety,2024-04-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-04-16,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Committee Amendment No. 1 Adopted in Consumer Protection Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2023-03-08,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-09,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Loughran Cappel,2024-03-14,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2024-04-02,[],IL,103rd +"Removed Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-14,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-04-02,[],IL,103rd +Approved for Consideration Assignments,2024-05-16,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2024-03-12,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-04-03,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-23,[],IL,103rd +Recalled to Second Reading,2023-04-20,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-09,[],IL,103rd +Chief Sponsor Changed to Rep. Norine K. Hammond,2024-03-19,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2024-04-17,[],IL,103rd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2024-04-12,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 012-000-000,2023-03-31,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-03-21,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-05,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-03-27,[],IL,103rd +Do Pass as Amended Judiciary; 008-000-000,2024-03-06,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Passed; 058-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Re-assigned to Judiciary,2024-01-10,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-02-20,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-30,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Reported Back To Adoption & Child Welfare Committee;,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-21,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-16,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Aquino,2023-03-30,['amendment-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-11,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Higher Education,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-05,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-17,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-13,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Donald P. DeWitte,2024-04-30,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 009-000-000,2024-04-10,[],IL,103rd +Removed Co-Sponsor Rep. Mary Beth Canty,2024-03-07,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-05-05,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Local Government,2024-04-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-17,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 22, 2024",2024-03-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 23, 2023",2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-17,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Re-referred to Assignments,2023-05-03,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-003-000,2024-04-04,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2023-03-21,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading March 28, 2023",2023-03-24,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2024-04-04,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-07,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Do Pass Judiciary; 006-003-000,2024-03-06,['committee-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-02-07,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Chief House Sponsor Rep. Mark L. Walker,2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-09,[],IL,103rd +Chief Sponsor Changed to Sen. Ram Villivalam,2024-04-09,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-30,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Judiciary,2024-01-10,['referral-committee'],IL,103rd +Removed Co-Sponsor Rep. Eva-Dina Delgado,2023-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2024-04-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2024-04-09,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-01,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Rachel Ventura,2024-04-09,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-04-26,[],IL,103rd +Sponsor Removed Sen. Jason Plummer,2024-04-11,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-02-20,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4a,2024-04-12,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Higher Education; 011-000-000,2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Chief Sponsor Changed to Sen. Ram Villivalam,2024-04-09,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-02-21,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2023-03-28,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +Resolution Adopted 093-000-000,2024-05-03,['passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-02-28,[],IL,103rd +Assigned to Higher Education Committee,2024-04-15,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-13,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-03-21,[],IL,103rd +Second Reading,2024-04-11,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-03-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Judiciary - Civil Committee,2024-04-15,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Resolution Adopted 094-000-000,2024-05-03,['passage'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Remove Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-07,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Omar Aquino,2024-04-11,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Behavioral and Mental Health,2024-04-09,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2024-03-12,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-03-30,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Transportation: Vehicles & Safety; 011-000-000,2024-04-11,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +To Subcommittee on Elections,2024-02-08,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Environment and Conservation; 006-000-000,2023-03-30,[],IL,103rd +"Chief House Sponsor Rep. Maurice A. West, II",2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-12,['amendment-passage'],IL,103rd +Re-assigned to Environment and Conservation,2023-05-03,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-02-07,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-03-22,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 021-001-005,2024-02-21,['committee-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Removed Co-Sponsor Rep. Joyce Mason,2024-04-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Housing,2024-04-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-04-03,[],IL,103rd +Do Pass as Amended / Short Debate Consumer Protection Committee; 009-000-000,2024-04-02,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2024-03-20,['amendment-introduction'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Assigned to Agriculture & Conservation Committee,2023-04-18,['referral-committee'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. William E Hauter,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Insurance,2024-04-30,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 008-000-000,2023-03-30,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 009-004-001,2024-04-30,['committee-passage'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-03-15,[],IL,103rd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2024-04-18,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Public Health; 005-001-000,2024-05-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2024-04-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-08,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-03-21,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2024-04-19,[],IL,103rd +Third Reading - Passed; 039-019-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Chief Sponsor Changed to Sen. Celina Villanueva,2024-04-09,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Third Reading - Passed; 053-003-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Adriane Johnson,2024-04-05,['amendment-introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Local Government; 009-000-000,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-04-23,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Stadelman,2023-03-30,['amendment-passage'],IL,103rd +Remove Chief Co-Sponsor Rep. Jeff Keicher,2023-03-22,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-15,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-03-29,[],IL,103rd +Re-assigned to Appropriations,2024-01-10,['referral-committee'],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Re-assigned to Executive,2024-04-16,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 011-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Assigned to State Government,2024-04-24,['referral-committee'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Neil Anderson,2024-04-11,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2024-04-12,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2024",2024-04-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Executive,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-04-15,[],IL,103rd +Recalled to Second Reading,2023-04-27,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Committee Amendment No. 2 Adopted in Human Services Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Chief Sponsor Changed to Sen. Julie A. Morrison,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-03-07,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Third Reading - Passed; 053-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +Substitute House Sponsorship Request Filed Pursuant Rule 37(c) - Sen. Christopher Belt,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-03-21,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-17,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Third Reading - Short Debate - Passed 101-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Appropriations- Education,2024-04-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-03-14,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Javier L. Cervantes,2023-03-23,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Referred to Assignments,2023-03-28,[],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 107-000-001,2024-04-18,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Cunningham,2023-04-20,['amendment-passage'],IL,103rd +Waive Posting Notice,2023-03-21,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-03-20,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-13,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-09,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-04,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-04-16,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2024-04-05,['amendment-introduction'],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2024-04-16,[],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 018-000-000,2024-04-12,['committee-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-04-04,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-03-21,[],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +Recalled to Second Reading,2023-03-31,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-19,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Assigned to State Government Administration Committee,2023-04-18,['referral-committee'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-14,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Patrick J. Joyce,2023-03-27,['amendment-introduction'],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jenn Ladisch Douglass,2024-04-01,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-17,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 010-004-000,2024-05-01,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-01,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Sara Feigenholtz,2024-04-17,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-11,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-22,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-02-16,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-23,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 012-000-000,2023-03-01,['committee-passage'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-02-13,[],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 006-003-000,2023-02-28,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 017-008-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-03-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-03-06,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 028-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2023-04-26,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Transportation; 015-000-000,2024-04-10,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-08,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-15,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief House Sponsor Rep. Ann M. Williams,2024-04-12,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Will Guzzardi,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-02-16,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2024-03-22,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief House Sponsor Rep. Jackie Haas,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-02-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 010-004-000,2023-03-07,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Consumer Protection Committee; 006-002-000,2023-03-23,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Veterans' Affairs Committee,2023-03-22,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-04-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-13,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-09,[],IL,103rd +Removed Co-Sponsor Rep. Kelly M. Cassidy,2023-03-23,[],IL,103rd +Removed Co-Sponsor Rep. Jonathan Carroll,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Paul Faraci,2024-03-21,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-02-21,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 075-039-000,2023-05-18,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-03-07,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +Arrive in Senate,2023-05-03,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Severin,2023-05-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Housing,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2023-03-21,[],IL,103rd +"Placed on Calendar Order of First Reading May 4, 2023",2023-05-03,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-02-23,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Cities & Villages Committee,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-01-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Executive Committee,2024-04-17,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Camille Y. Lilly,2024-04-18,['amendment-introduction'],IL,103rd +Assigned to Health and Human Services,2023-04-26,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Harry Benton,2023-03-21,['amendment-introduction'],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-02-28,[],IL,103rd +Arrive in Senate,2023-05-03,['introduction'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-02,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 021-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 109-002-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Fiscal Note Requested by Rep. Patrick Windhorst,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-13,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-04-26,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2023-03-28,[],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2023-03-23,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Mary Beth Canty,2023-03-16,[],IL,103rd +Third Reading - Short Debate - Passed 090-014-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Removed Co-Sponsor Rep. Tom Weber,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-14,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 026-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-10,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Consumer Protection Committee; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Immigration & Human Rights Committee; 008-002-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Carol Ammons,2023-03-21,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 073-029-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-22,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2023-03-27,[],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-16,[],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-04-18,['referral-committee'],IL,103rd +Chief Co-Sponsor Changed to Rep. Jenn Ladisch Douglass,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Restorative Justice,2023-03-14,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Rita Mayfield,2023-03-02,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-11,[],IL,103rd +Fiscal Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Margaret Croke,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-02-27,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-06,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Assigned to Higher Education,2023-04-12,['referral-committee'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-02-06,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-17,[],IL,103rd +Third Reading - Short Debate - Passed 100-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-02-26,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-03,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-10,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-09-06,[],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 010-005-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Tom Weber,2024-04-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2024-02-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-14,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +To Family Preservation Subcommittee,2024-02-21,[],IL,103rd +"House Committee Amendment No. 2 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2024-03-21,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-02-07,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-11,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-11,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sonya M. Harper,2024-04-15,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Balanced Budget Note Requested by Rep. Rita Mayfield,2024-04-16,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-02-27,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Tracy Katz Muhl,2024-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-04,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-23,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-20,[],IL,103rd +Adopted Both Houses,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-05-24,[],IL,103rd +Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Adopted Both Houses,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-11,['referral-committee'],IL,103rd +Third Reading - Passed; 042-014-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +"Senate Floor Amendment No. 3 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-05-25,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 012-000-000,2023-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 007-000-000,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-10-24,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Koehler,2023-03-31,['amendment-passage'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2024-03-26,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-29,[],IL,103rd +Chief Sponsor Changed to Sen. Rachel Ventura,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-11-02,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. David Koehler,2023-04-12,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-10-25,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Environment and Conservation,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Insurance,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-21,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-05-03,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-03-29,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Higher Education Committee,2024-04-30,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Stephanie A. Kifowit,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-02,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 010-000-000,2023-05-04,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Chief Sponsor Changed to Sen. Mark L. Walker,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jil Tracy,2023-05-02,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-01,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments.",2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-10-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-01,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Fowler,2023-03-30,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Rose,2023-03-30,['amendment-passage'],IL,103rd +Chief Sponsor Changed to Sen. Craig Wilcox,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 012-000-000,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Education,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Stoller,2023-03-31,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-06,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-03-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 068-034-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-04-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 22, 2024",2024-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-08-28,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-22,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-03-29,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2023-02-27,['amendment-introduction'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-28,[],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-04-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-10-04,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-02-29,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-03-21,[],IL,103rd +Assigned to Health and Human Services,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-04,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Nabeela Syed,2023-03-14,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-05-08,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-01,[],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Health Care Availability & Accessibility Committee,2024-03-12,[],IL,103rd +Chief Sponsor Changed to Rep. Michelle Mussman,2024-04-01,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-07,[],IL,103rd +Assigned to State Government,2024-04-24,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Paul Jacobs,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2024-03-04,['amendment-introduction'],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-12,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-02-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-01,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-14,[],IL,103rd +Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2023-12-18,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-15,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-10-10,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +House Committee Amendment No. 3 Adopted in Insurance Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-16,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-04-19,[],IL,103rd +House Committee Amendment No. 3 Rules Refers to Public Health Committee,2023-02-28,[],IL,103rd +Chief House Sponsor Rep. Kam Buckner,2024-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Second Reading,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-16,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-01,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-11-07,[],IL,103rd +Home Rule Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-10-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-02-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-22,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-14,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sally J. Turner,2024-04-23,[],IL,103rd +Third Reading - Short Debate - Passed 100-011-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-02,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-10-25,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-11,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-04-11,[],IL,103rd +Resolution Adopted; 056-000-000,2023-05-24,['passage'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-04-17,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-10,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-02-20,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-07-02,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-11-09,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-10-05,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-03-18,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Re-assigned to Executive,2023-04-26,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-02,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-05-17,[],IL,103rd +Approved for Consideration Assignments,2023-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Halbrook,2023-07-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-09,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ann Gillespie,2023-03-24,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Chief Sponsor Changed to Sen. Laura Ellman,2024-04-09,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Michelle Mussman,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-02,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 9, 2024",2024-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Chief House Sponsor Rep. Hoan Huynh,2024-04-10,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2024-03-20,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-02,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-17,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-24,[],IL,103rd +Do Pass as Amended Labor; 012-004-000,2023-03-08,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2024-03-20,['amendment-introduction'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-05,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Rachel Ventura,2023-03-23,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Christopher Belt,2023-03-23,['amendment-introduction'],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-15,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 3 Assignments Refers to State Government,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-05-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2024-04-09,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Health and Human Services; 011-000-000,2024-04-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Assigned to Executive,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2023-03-15,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Jed Davis,2024-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-03,[],IL,103rd +Chief House Sponsor Rep. Dagmara Avelar,2023-03-24,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-18,['referral-committee'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Dave Severin,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Education,2023-03-21,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Chief House Sponsor Rep. Kelly M. Burke,2023-03-23,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Reported Back To Executive,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Procurement,2024-02-08,[],IL,103rd +Second Reading,2024-04-11,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 013-000-000,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-18,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-18,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 8, 2024",2024-05-08,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Health Committee,2024-04-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-02-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Agriculture,2023-03-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2023-03-28,[],IL,103rd +Recommends Be Adopted Appropriations-Elementary & Secondary Education Committee; 015-000-000,2024-05-23,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-03-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Insurance,2023-03-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2024-03-05,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Assigned to Executive,2024-04-24,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Christopher Belt,2023-10-04,[],IL,103rd +Do Pass as Amended Transportation; 017-000-000,2023-03-29,['committee-passage'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-04-10,[],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Celina Villanueva,2024-04-16,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-07,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2024-03-05,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Alternate Chief Sponsor Removed Rep. Adam M. Niemerg,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 019-000-000,2023-04-18,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2024-05-01,[],IL,103rd +Assigned to Human Services Committee,2023-04-18,['referral-committee'],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-03-07,[],IL,103rd +Assigned to Higher Education Committee,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 006-001-000,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-27,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-04-18,['referral-committee'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-03-28,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Judiciary,2024-04-09,[],IL,103rd +Assigned to Energy & Environment Committee,2024-04-24,['referral-committee'],IL,103rd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-30,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2023-03-28,[],IL,103rd +Sponsor Removed Sen. Terri Bryant,2024-04-09,[],IL,103rd +Assigned to State Government Administration Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-09,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Harry Benton,2024-04-15,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-05-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2024-03-06,[],IL,103rd +Do Pass as Amended Insurance; 010-000-000,2024-05-08,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-03-14,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-04-18,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-03-05,[],IL,103rd +Do Pass as Amended Education; 012-000-000,2023-03-29,['committee-passage'],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-09,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Education,2023-03-29,[],IL,103rd +Chief House Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Suzy Glowiak Hilton,2024-03-19,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-07,[],IL,103rd +Third Reading - Passed; 041-014-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-03,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2023-03-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-04-29,[],IL,103rd +Assigned to Energy & Environment Committee,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tracy Katz Muhl,2024-03-19,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-03-28,[],IL,103rd +House Floor Amendment No. 1 Pension Note Requested as Amended by Rep. Patrick Windhorst,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 010-000-000,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-23,[],IL,103rd +Added Co-Sponsor All Other Members of the House,2024-04-11,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Ellman,2023-12-18,[],IL,103rd +Arrived in House,2023-03-28,['introduction'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-04-30,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-01,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jackie Haas,2024-04-16,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2024-04-17,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Assigned to Higher Education Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-05,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2024-04-16,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Chief House Sponsor Rep. Harry Benton,2023-03-31,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Referred to Assignments,2024-05-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2024-02-22,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Re-assigned to Education,2024-01-10,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +"Chief House Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Transportation: Vehicles & Safety; 009-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Revenue; 009-000-000,2024-04-10,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-24,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-02-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2023-02-28,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-11,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-13,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Special Committee on Criminal Law and Public Safety,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-04-23,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-10-26,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 013-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-22,[],IL,103rd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2023-03-21,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-16,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-09,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 087-020-001,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-03-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-22,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-14,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 103-003-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 019-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-03-24,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-16,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2023-03-22,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Energy & Environment Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-09,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2023-03-22,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Do Pass as Amended / Short Debate Mental Health & Addiction Committee; 020-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-02-09,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-09,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Immigration & Human Rights Committee; 011-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-12,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-03-23,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-03-08,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2023-03-23,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-09,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Debbie Meyers-Martin,2023-03-21,['amendment-introduction'],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-01-26,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Chief Co-Sponsor Changed to Rep. Daniel Didech,2023-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2023-11-09,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-16,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Passed; 041-018-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-010-000,2023-03-07,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-03-15,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-07,['amendment-failure'],IL,103rd +Chief Senate Sponsor Sen. Javier L. Cervantes,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-10,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-11,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 101-006-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-05-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-24,[],IL,103rd +Assigned to State Government,2024-05-01,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2024-03-06,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-03-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-15,[],IL,103rd +Removed Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted State Government Administration Committee; 008-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 101-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-09,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-03-27,[],IL,103rd +Arrive in Senate,2023-05-03,['introduction'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-08,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kam Buckner,2023-03-21,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-10-25,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-09,[],IL,103rd +Removed Co-Sponsor Rep. Cyril Nichols,2023-03-09,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 011-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-02,[],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2023-02-22,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Chief Sponsor Changed to Rep. Robert ""Bob"" Rita",2024-05-14,[],IL,103rd +Arrive in Senate,2023-04-27,['introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-13,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-04-20,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2023-03-21,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Postponed - Education,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-20,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Assigned to Local Government,2023-04-12,['referral-committee'],IL,103rd +Do Pass / Short Debate Insurance Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-07,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-02,[],IL,103rd +Referred to Assignments,2023-03-28,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2024-03-21,['committee-passage-favorable'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Referred to Rules Committee,2023-05-12,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-01,[],IL,103rd +Third Reading - Short Debate - Passed 101-008-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 103-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-04-18,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-02-08,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-20,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-01,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. John M. Cabello,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-28,[],IL,103rd +Assigned to Judiciary,2023-04-25,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2023-03-08,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Chief Co-Sponsor Changed to Rep. Anne Stava-Murray,2023-02-27,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2023-03-20,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 028-000-000,2023-03-08,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-08,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 004-000-000,2023-05-24,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-02-22,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-10-25,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-03-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 027-000-000,2024-04-03,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-17,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-18,[],IL,103rd +Removed Co-Sponsor Rep. Michael J. Kelly,2024-05-13,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Insurance Committee,2024-04-15,[],IL,103rd +Removed Co-Sponsor Rep. Sue Scherer,2024-02-05,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-05-25,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments.",2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 014-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +First Reading,2024-05-02,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Yolonda Morris,2024-05-24,[],IL,103rd +Recalled to Second Reading,2023-03-23,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-03,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-001,2024-05-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-05-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2023-05-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Morrison,2023-03-30,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Bennett,2023-03-29,['amendment-passage'],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2024-05-20,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-03-20,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2024-05-23,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-03-24,['amendment-introduction'],IL,103rd +Adopted Both Houses,2024-05-25,[],IL,103rd +Assigned to Executive Committee,2023-05-16,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 009-004-000,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-24,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-03-06,[],IL,103rd +Third Reading - Short Debate - Passed 065-036-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Laura Fine,2023-10-24,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 31, 2023",2023-03-30,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-17,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Assigned to Higher Education,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-24,[],IL,103rd +Chief House Sponsor Rep. Daniel Didech,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - State Government,2023-05-10,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-11,[],IL,103rd +Chief Sponsor Changed to Sen. Dale Fowler,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-05-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Housing; 010-005-001,2024-04-16,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +Resolution Adopted 112-000-000,2024-05-02,['passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Dan McConchie,2024-05-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; McConchie,2023-03-29,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Michael W. Halpin,2023-10-24,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Stoller,2023-03-29,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-01-24,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Natalie A. Manley,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 013-000-000,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Laura Fine,2023-02-27,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Postponed - Transportation,2023-03-29,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-08,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-02,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Morrison,2023-03-23,['amendment-passage'],IL,103rd +Chief Co-Sponsor Changed to Rep. Camille Y. Lilly,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Transportation,2023-03-30,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Terri Bryant,2023-05-11,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Rose,2023-03-23,['amendment-passage'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Assigned to State Government,2023-04-18,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-03-12,[],IL,103rd +Remove Chief Co-Sponsor Rep. Carol Ammons,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-04-18,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-24,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +House Committee Amendment No. 1 To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Chief Sponsor Changed to Sen. Doris Turner,2024-04-09,[],IL,103rd +Removed Co-Sponsor Rep. Kelly M. Cassidy,2024-03-06,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-11,[],IL,103rd +Assigned to Human Services Committee,2024-01-31,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-12,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 101-000-001,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-06,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-04-11,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Mike Simmons,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-01-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Morrison,2023-03-30,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - State Government,2023-05-04,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-03,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Senate Special Committee on Pensions,2023-03-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Hunter,2023-03-29,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Higher Education Committee; 011-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Do Pass as Amended / Short Debate Human Services Committee; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-05-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Chief Sponsor Changed to Sen. Doris Turner,2023-10-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2024-04-03,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-23,[],IL,103rd +"House Committee Amendment No. 4 Filed with Clerk by Rep. William ""Will"" Davis",2024-04-02,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-01-17,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-02-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-10-24,[],IL,103rd +Third Reading - Short Debate - Passed 070-034-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2023-11-07,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-14,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-04-18,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-16,[],IL,103rd +Chief Sponsor Changed to Sen. Sue Rezin,2023-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Daniel Didech,2024-04-12,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments.",2024-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-16,[],IL,103rd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Rezin,2023-03-23,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-04-15,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Doris Turner,2023-03-29,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-04-17,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-25,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-11,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Insurance Committee; 014-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2024-04-16,[],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-28,[],IL,103rd +Chief Sponsor Changed to Sen. Bill Cunningham,2023-10-24,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-04-15,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Stephanie A. Kifowit,2023-03-01,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-03,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Charles Meier,2023-02-21,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Dale Fowler,2023-04-27,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Insurance,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Third Reading - Passed; 055-004-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2023-05-03,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-30,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-05-18,[],IL,103rd +Tabled Pursuant to Rule,2024-03-07,['withdrawal'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Insurance Committee; 015-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-04-19,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 008-004-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-06,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-12,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-09,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2024-04-09,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-02-15,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Pacione-Zayas,2023-03-29,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-11,['amendment-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Chief House Sponsor Rep. Harry Benton,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-09-27,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-02-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-03-06,[],IL,103rd +To Occupational Licenses Subcommittee,2023-04-27,[],IL,103rd +Assigned to Energy and Public Utilities,2024-04-24,['referral-committee'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Special Issues,2024-02-08,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulations, Roads & Bridges",2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-24,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-07,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Cities & Villages Committee,2024-04-15,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Assigned to Public Health,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-02,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-14,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-02-21,[],IL,103rd +Assigned to Revenue,2024-04-24,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Education,2024-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Julie A. Morrison,2024-04-09,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-10-23,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2024-04-09,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-05-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-04-18,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-09,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Restorative Justice; 005-003-000,2024-04-04,['committee-passage-favorable'],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Licensed Activities,2024-03-05,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-02,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-15,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-09-15,[],IL,103rd +Postponed - Executive,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-02-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-03,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +House Committee Amendment No. 3 Adopted in Health Care Availability & Accessibility Committee; 009-000-000,2023-04-25,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-15,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-02-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Omar Aquino,2024-03-05,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-04-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Re-assigned to Energy and Public Utilities,2024-01-10,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2024-04-19,['committee-passage-favorable'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Adopted Both Houses,2023-05-25,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-06,[],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-04-15,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-11,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-13,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-05-16,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-04-21,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-24,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Tracy Katz Muhl,2024-04-12,['amendment-introduction'],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-06,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-01,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-07,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Chief Sponsor Changed to Rep. Kelly M. Cassidy,2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2024-03-22,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Don Harmon,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-05-08,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-04-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Chief Sponsor Changed to Rep. Kelly M. Burke,2024-04-01,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-21,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-09,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2024-04-24,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-10-25,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-03-23,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-20,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 026-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Do Pass / Standard Debate Judiciary - Criminal Committee; 008-005-001,2023-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-02-24,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Removed Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Assigned to State Government,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +House Committee Amendment No. 1 Adopted in Agriculture & Conservation Committee; 005-003-000,2023-03-07,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Dan Swanson,2023-03-07,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-10-23,[],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-04-18,['referral-committee'],IL,103rd +House Committee Amendment No. 3 Rules Refers to Labor & Commerce Committee,2024-04-02,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Harris,2023-03-31,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-06,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-04-25,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Immigration & Human Rights Committee; 010-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 006-003-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Assigned to State Government,2023-04-18,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-03-21,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Immigration & Human Rights Committee,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-13,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-02-07,[],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2023-03-24,[],IL,103rd +Remove Chief Co-Sponsor Rep. Carol Ammons,2023-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2023-03-16,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. William ""Will"" Davis",2023-03-23,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Public Health Committee; 007-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-05-20,[],IL,103rd +House Committee Amendment No. 1 Adopted in Housing; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-16,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-03,['amendment-failure'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-03,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-26,[],IL,103rd +Chief Senate Sponsor Sen. Dale Fowler,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Alternate Chief Sponsor Changed to Sen. Napoleon Harris, III",2024-04-16,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Restorative Justice,2023-03-22,[],IL,103rd +Assigned to Transportation,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-23,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-05-02,['referral-committee'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-09,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2024-03-12,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-01,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-23,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Elizabeth ""Lisa"" Hernandez",2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-18,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-16,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-10-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. John F. Curran,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 112-001-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-05-28,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-16,[],IL,103rd +Third Reading - Short Debate - Passed 091-010-002,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-30,[],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 009-005-000,2023-03-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-02,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Willie Preston,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-03-23,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Cities & Villages Committee,2024-04-17,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-17,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Assigned to Health and Human Services,2023-05-09,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-23,[],IL,103rd +Assigned to Labor,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-02,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2023-03-20,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-13,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-21,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Housing; 010-002-000,2023-03-22,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Steven Reick,2024-02-20,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Joyce,2023-03-30,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2023-03-09,[],IL,103rd +Assigned to Transportation,2023-04-12,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Celina Villanueva,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-03,[],IL,103rd +Chief Sponsor Changed to Sen. Sara Feigenholtz,2023-10-24,[],IL,103rd +Motion Filed to Suspend Rule 21 Human Services Committee; Rep. Robyn Gabel,2023-05-03,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 070-039-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Removed Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 068-034-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-07,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-15,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dagmara Avelar,2023-02-15,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-02,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Assigned to Financial Institutions,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-25,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-21,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2024-04-04,[],IL,103rd +Removed Co-Sponsor Rep. Anna Moeller,2023-03-02,[],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2024-03-05,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Cunningham,2023-03-29,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-17,[],IL,103rd +Removed Co-Sponsor Rep. Kam Buckner,2023-03-17,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-03-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-17,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-15,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-02-24,[],IL,103rd +Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-02-16,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2023-03-06,['amendment-introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Castro,2023-03-30,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-02-27,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 006-003-000,2023-03-08,['committee-passage'],IL,103rd +Assigned to Licensed Activities,2023-04-12,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-04-17,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Chief Sponsor Changed to Sen. Ram Villivalam,2024-05-22,[],IL,103rd +Assigned to Human Rights,2023-04-12,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Koehler,2023-03-29,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Ventura,2023-03-31,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-04-12,['referral-committee'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Villivalam,2023-03-30,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 102-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Chief Co-Sponsor Changed to Rep. Stephanie A. Kifowit,2023-03-22,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-18,['referral-committee'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Celina Villanueva,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-04-26,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-21,[],IL,103rd +Remove Chief Co-Sponsor Rep. Jeff Keicher,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 078-023-002,2023-03-24,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2023-04-25,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-13,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2024-03-12,[],IL,103rd +Assigned to Personnel & Pensions Committee,2024-02-28,['referral-committee'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Assigned to State Government Administration Committee,2023-04-18,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-03-12,[],IL,103rd +Chief House Sponsor Rep. Katie Stuart,2023-03-30,[],IL,103rd +Do Pass as Amended Public Health; 008-000-000,2024-03-13,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Chief House Sponsor Rep. William E Hauter,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Do Pass as Amended Health and Human Services; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Rachel Ventura,2023-03-24,['amendment-introduction'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Assigned to Energy & Environment Committee,2024-04-24,['referral-committee'],IL,103rd +Do Pass as Amended Education; 011-000-000,2023-03-22,['committee-passage'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-03-12,[],IL,103rd +Third Reading - Passed; 040-014-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-22,['amendment-introduction'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Bob Morgan,2023-04-12,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2023-03-21,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 015-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 026-000-000,2024-04-30,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Erica Harriss,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Senate Special Committee on Pensions,2023-03-28,[],IL,103rd +Arrived in House,2024-05-02,['introduction'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-02-14,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2023-04-19,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-03-11,[],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-29,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 012-006-000,2024-05-02,['committee-passage'],IL,103rd +Assigned to Executive Committee,2023-04-11,['referral-committee'],IL,103rd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-09,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 008-005-000,2024-04-15,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-02-09,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-04-18,['referral-committee'],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2023-04-05,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-10,[],IL,103rd +Do Pass as Amended Executive; 009-003-000,2023-03-23,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Arrived in House,2023-03-28,['introduction'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-05-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 009-000-000,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-03-30,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-05-12,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Property,2023-03-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Assigned to Health Care Licenses Committee,2023-04-18,['referral-committee'],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2023-04-20,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2024-03-18,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2023-02-28,['amendment-introduction'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Chief House Sponsor Rep. Michelle Mussman,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Ellman,2024-04-12,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-20,[],IL,103rd +Recalled to Second Reading,2023-03-23,['reading-2'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-04-21,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. David Koehler,2023-03-28,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Chief House Sponsor Rep. Anna Moeller,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 009-000-000,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-14,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +Assigned to Human Services Committee,2023-04-18,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-24,[],IL,103rd +Assigned to Counties & Townships Committee,2024-04-24,['referral-committee'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joe C. Sosnowski,2024-05-01,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2024-04-10,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-20,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-12-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-01,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-03-22,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-06-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2024-03-04,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-02-22,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 008-001-000,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +To Revenue-Income Tax Subcommittee,2023-02-23,[],IL,103rd +Waive Posting Notice,2024-05-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-04-18,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2024-04-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-22,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Aquino,2023-03-30,['amendment-passage'],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Fiscal Note Requested by Rep. Ryan Spain,2024-03-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Assigned to Local Government,2024-04-24,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Johnson,2023-03-22,['amendment-passage'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2024-04-19,['committee-passage-favorable'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Doris Turner,2023-03-30,['amendment-passage'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Assigned to Energy & Environment Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-01-19,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-04-09,[],IL,103rd +Chief House Sponsor Rep. Norma Hernandez,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-23,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2023-03-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-12,[],IL,103rd +Do Pass / Short Debate Immigration & Human Rights Committee; 007-000-000,2023-04-19,['committee-passage'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-03-21,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2024-03-06,['amendment-introduction'],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments.",2024-04-11,[],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-04-12,[],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2024-04-15,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Education,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2023-05-02,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 2 Adopted; State Government,2023-03-08,['amendment-passage'],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2023-11-07,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 Adopted; Licensed Activities,2023-03-08,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Transportation,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Fine,2023-03-29,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2024-04-11,[],IL,103rd +Assigned to Gaming Committee,2023-04-11,['referral-committee'],IL,103rd +Chief House Sponsor Rep. Katie Stuart,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-09,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments.",2024-04-11,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2024-01-31,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Postponed - Education,2023-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-07,[],IL,103rd +Third Reading - Passed; 042-007-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Postponed - Executive,2024-04-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-10-24,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Steve McClure,2023-03-16,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-14,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 17, 2024",2024-04-16,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-24,[],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Assigned to Revenue & Finance Committee,2023-04-11,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Judiciary,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2024-04-03,[],IL,103rd +Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2024-04-16,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-22,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-04-27,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-04-10,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Tom Weber,2024-04-16,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Postponed - Agriculture,2023-03-30,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Steve Stadelman,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Gillespie,2024-04-11,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-30,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2023-03-21,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-02-23,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-04-14,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Revenue,2023-03-23,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-20,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-04-15,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-03-07,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Arrive in Senate,2023-05-24,['introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-21,[],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-02-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-06,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-05-09,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2024-03-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-28,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-02-23,[],IL,103rd +Removed Co-Sponsor Rep. Lilian Jiménez,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-03,[],IL,103rd +Assigned to Agriculture,2024-04-30,['referral-committee'],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-13,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-04-19,[],IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2023-05-19,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-06,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Bob Morgan,2024-04-16,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-15,[],IL,103rd +Chief Sponsor Changed to Rep. Joyce Mason,2024-04-01,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-09,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-04-21,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-15,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-17,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-04-19,[],IL,103rd +Sponsor Removed Sen. Mattie Hunter,2023-02-22,[],IL,103rd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2024-04-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-03-14,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Ram Villivalam,2024-04-29,[],IL,103rd +Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2024-04-01,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-02-21,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2024-03-21,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-08,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 009-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-05-02,[],IL,103rd +Referred to Rules Committee,2023-04-20,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Katie Stuart,2023-04-26,['amendment-introduction'],IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-07,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-02,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2024-02-22,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-05-18,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-26,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-02,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Agriculture,2024-03-21,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Will Guzzardi,2023-03-24,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-16,[],IL,103rd +To Subcommittee on CLEAR Compliance,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-02-22,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Environment and Conservation,2024-04-09,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-03-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 009-004-000,2023-03-22,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-04-03,[],IL,103rd +Second Reading,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 017-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Re-assigned to Energy and Public Utilities,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-12,[],IL,103rd +Chief House Sponsor Rep. Barbara Hernandez,2024-04-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Fred Crespo,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-02-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Do Pass Judiciary; 006-003-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-07,[],IL,103rd +Chief Senate Sponsor Sen. Mattie Hunter,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-30,[],IL,103rd +Recommends Be Adopted Judiciary - Criminal Committee; 014-001-000,2023-05-25,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Adoption & Child Welfare Committee; 014-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-03-07,['referral-committee'],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulations, Roads & Bridges",2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-02-07,[],IL,103rd +Senate Committee Amendment No. 2 Postponed - Revenue,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-23,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Laura M. Murphy,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-04-19,[],IL,103rd +Be Adopted Public Health; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-16,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2024-05-15,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-20,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-02-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 009-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-15,[],IL,103rd +Chief Senate Sponsor Sen. Sally J. Turner,2024-04-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Adam M. Niemerg,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 014-000-000,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-04-21,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-03-13,[],IL,103rd +Assigned to Energy and Public Utilities,2024-04-30,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Placed on Calendar Agreed Resolutions,2023-03-08,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2023-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-03,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-04-24,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-18,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Assigned to Human Rights,2023-05-02,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mary Edly-Allen,2024-04-04,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-04-26,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Environment and Conservation; 005-000-000,2024-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-10,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 009-000-001,2024-04-16,['committee-passage-favorable'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-27,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-02-21,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2024-05-14,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Assigned to State Government,2024-04-24,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2023-05-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-06,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 008-004-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Chief Sponsor Changed to Rep. Kelly M. Cassidy,2024-05-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2024-02-22,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Will Guzzardi,2024-04-11,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +"House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-04-17,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-04-19,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-04-15,['amendment-introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Sue Scherer,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 102-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-03-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2023-03-21,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-23,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2023-03-21,['amendment-introduction'],IL,103rd +Do Pass Higher Education; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-05-28,[],IL,103rd +Third Reading - Short Debate - Passed 081-030-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2024-02-22,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-04-06,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-03-28,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Personnel & Pensions Committee; 011-000-000,2024-03-14,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-02,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Adoption & Child Welfare Committee; 013-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-06,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2023-03-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-03,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2024-04-17,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-23,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Mark L. Walker,2023-03-20,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +Chief Senate Sponsor Sen. Mike Porfirio,2023-03-27,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Stephanie A. Kifowit,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +"Placed on Calendar Order of First Reading March 22, 2023",2023-03-21,['reading-1'],IL,103rd +Do Pass Labor; 011-005-000,2023-04-27,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Steve Stadelman,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-02,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-22,[],IL,103rd +"House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 010-004-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 072-030-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-15,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2023-03-23,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. John M. Cabello,2023-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Assigned to Public Health Committee,2023-04-11,['referral-committee'],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Do Pass Transportation; 017-000-000,2023-04-19,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-01,[],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2023-03-27,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 071-040-000,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 008-004-000,2023-10-24,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-03-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-03-14,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Assigned to State Government Administration Committee,2023-02-28,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Restorative Justice,2024-03-20,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Feigenholtz,2023-03-30,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-24,[],IL,103rd +Chief Sponsor Changed to Sen. Ram Villivalam,2023-10-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve McClure,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2024-03-05,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-18,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-03,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-22,[],IL,103rd +Do Pass Licensed Activities; 008-000-000,2023-04-20,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-24,[],IL,103rd +Removed Co-Sponsor Rep. Bob Morgan,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-02-24,[],IL,103rd +Do Pass State Government; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-03-08,[],IL,103rd +Chief Senate Sponsor Sen. Andrew S. Chesney,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 069-038-001,2024-04-18,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended / Short Debate Agriculture & Conservation Committee; 005-003-000,2023-03-07,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sharon Chung,2024-04-01,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2023-10-24,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 017-010-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass Senate Special Committee on Pensions; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-04-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-31,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-03-23,[],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-22,[],IL,103rd +Assigned to Labor,2023-04-12,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-15,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-04-25,[],IL,103rd +Chief Senate Sponsor Sen. Javier L. Cervantes,2023-03-27,[],IL,103rd +Do Pass Financial Institutions; 007-000-000,2023-04-26,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-04,[],IL,103rd +Do Pass State Government; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Fiscal Note Filed,2024-04-19,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-13,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-07,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Ann M. Williams,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2023-03-02,[],IL,103rd +Removed Co-Sponsor Rep. Daniel Didech,2023-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Postponed - Human Rights,2023-04-27,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Mike Porfirio,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-15,[],IL,103rd +Do Pass as Amended / Short Debate Housing; 012-006-000,2023-03-08,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2024-03-05,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-16,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2023-03-27,[],IL,103rd +"Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2024-05-26,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Travis Weaver,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-03-23,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Martin J. Moylan,2023-03-23,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-08,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Assigned to Environment and Conservation,2023-04-12,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-03-23,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael T. Marron,2023-03-23,[],IL,103rd +Do Pass Senate Special Committee on Pensions; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Do Pass Transportation; 013-000-000,2023-04-26,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-14,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-05-02,['amendment-introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2023-03-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2024-03-12,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Bob Morgan,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2023-03-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Adopted in Child Care Accessibility & Early Childhood Education Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 008-004-000,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-03-20,[],IL,103rd +Do Pass Judiciary; 009-000-000,2023-04-19,['committee-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-24,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-20,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dave Vella,2024-04-10,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-26,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-30,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2024-05-14,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2024-03-22,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-22,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-05-14,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Housing; 012-006-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-04-30,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-05-06,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Steve Stadelman,2024-05-22,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-03-19,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-10-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Mike Porfirio,2024-04-29,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2024-04-25,['amendment-introduction'],IL,103rd +Do Pass as Amended Licensed Activities; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2024-04-26,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-11,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-24,[],IL,103rd +Fiscal Note Filed,2024-03-26,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +Third Reading - Passed; 043-012-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Tom Bennett,2023-03-21,['amendment-introduction'],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2023-04-18,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Camille Y. Lilly,2023-03-17,['amendment-introduction'],IL,103rd +Assigned to Human Services Committee,2023-04-18,['referral-committee'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2024-05-02,['committee-passage'],IL,103rd +Third Reading - Passed; 055-004-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Third Reading - Short Debate - Passed 070-035-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Assigned to Counties & Townships Committee,2024-04-24,['referral-committee'],IL,103rd +"Chief House Sponsor Rep. Maurice A. West, II",2024-04-10,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-07,['amendment-passage'],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-12,[],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Environment and Conservation; 009-000-000,2024-03-07,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-01-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2024-04-09,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-01,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-03-24,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-09,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Joyce,2023-03-10,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Linda Holmes,2023-03-10,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Lakesia Collins,2024-04-19,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-05,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-22,[],IL,103rd +Chief House Sponsor Rep. Stephanie A. Kifowit,2023-03-23,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-03-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-28,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Third Reading - Passed; 050-007-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Adopted; Belt,2023-03-23,['amendment-passage'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-05-02,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Appropriations,2024-04-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-04-09,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-28,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 027-000-000,2024-04-30,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-18,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Villa,2023-03-22,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-04-20,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2023-04-26,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Ryan Spain,2023-04-25,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Assigned to Executive,2024-05-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-05-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-24,[],IL,103rd +"Chief House Sponsor Rep. Robert ""Bob"" Rita",2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 009-000-000,2023-10-24,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Fine,2023-03-31,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 008-004-000,2023-03-31,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Insurance; 009-000-000,2023-03-29,[],IL,103rd +Chief Sponsor Changed to Sen. Michael W. Halpin,2024-03-22,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-02,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Ann M. Williams,2023-03-30,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2024-04-24,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-23,[],IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +Assigned to Personnel & Pensions Committee,2024-04-16,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-04-11,['referral-committee'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 006-003-000,2023-04-27,['committee-passage'],IL,103rd +Chief House Sponsor Rep. Kevin John Olickal,2023-03-28,[],IL,103rd +Chief House Sponsor Rep. Anthony DeLuca,2023-03-30,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Joyce,2023-03-28,['amendment-passage'],IL,103rd +Chief House Sponsor Rep. Ann M. Williams,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 24, 2023",2023-03-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Fiscal Note Requested by Rep. Bradley Fritts,2023-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-02-09,[],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-03-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2023-04-14,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Passed; 044-013-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2024-04-16,['amendment-introduction'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-03-30,[],IL,103rd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2023-03-23,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-14,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4 (a),2024-04-09,['amendment-failure'],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Senate Special Committee on Pensions,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-14,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +"Chief House Sponsor Rep. William ""Will"" Davis",2024-05-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-02,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Executive,2023-02-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-12,[],IL,103rd +Waive Posting Notice,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-04-11,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 23, 2023",2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Do Pass as Amended State Government; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Assigned to Executive Committee,2023-04-18,['referral-committee'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-04-10,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 007-000-000,2023-03-30,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2024-04-30,[],IL,103rd +House Committee Amendment No. 3 Filed with Clerk by Rep. Laura Faver Dias,2024-04-01,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-30,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Tom Weber,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Third Reading - Passed; 053-000-000,2023-03-28,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Anna Moeller,2024-04-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-04-03,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2024-05-01,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Halpin,2023-03-30,['amendment-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 022-000-000,2024-04-30,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2024-04-29,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-02-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Assigned to Energy and Public Utilities,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-20,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-17,[],IL,103rd +"Placed on Calendar Order of First Reading March 23, 2023",2023-03-22,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 092-017-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-22,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-09-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Resolution Adopted,2023-03-30,['passage'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-11-09,[],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-29,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-07-11,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-14,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 18, 2023",2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-10-05,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 4 Rules Refers to Public Health Committee,2023-02-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-05-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2024-04-15,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-16,[],IL,103rd +Do Pass as Amended / Short Debate Insurance Committee; 012-000-000,2024-04-02,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-10-10,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-07,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-04,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Janet Yang Rohr,2024-05-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-12-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-01,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-22,[],IL,103rd +Third Reading - Short Debate - Passed 073-039-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Health Committee,2024-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-03-22,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Kam Buckner,2023-05-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Gaming Committee,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-02-23,[],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michelle Mussman,2024-04-02,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Availability & Accessibility Committee; by Voice Vote,2024-03-12,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-04-26,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-18,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-07-06,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-04,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-05-15,[],IL,103rd +Do Pass Health and Human Services; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-11-08,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-02-22,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-15,[],IL,103rd +"Chief Sponsor Changed to Rep. Curtis J. Tarver, II",2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2023-04-18,[],IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-02-28,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kam Buckner,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 005-002-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 28, 2023",2023-04-26,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-27,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-17,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-05-14,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Adopted Both Houses,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-03-14,[],IL,103rd +Referred to Executive Committee,2024-04-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2024-04-15,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Ethics & Elections,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-10-25,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-13,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-04-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to State Government,2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-03-21,[],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 013-000-000",2023-04-18,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-03-06,[],IL,103rd +Third Reading - Short Debate - Passed 101-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-22,[],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Resolution Adopted 101-000-000,2023-05-24,['passage'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-03-06,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Swanson,2023-05-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Margaret Croke,2023-03-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-01-25,[],IL,103rd +Chief Sponsor Changed to Rep. Suzanne M. Ness,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-04-25,[],IL,103rd +"Placed on Calendar Order of First Reading March 22, 2023",2023-03-21,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-03-23,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-04-21,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-05-24,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-14,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Assigned to Insurance,2023-04-12,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-05-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-03-01,[],IL,103rd +Placed on Calendar Order of First Reading,2023-05-03,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-04-03,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Public Utilities Committee; 016-000-000,2023-05-02,['committee-passage-favorable'],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-05-11,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-16,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 017-008-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-09,[],IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 010-000-000,2024-03-14,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-16,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-21,[],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Bob Morgan,2023-03-21,['amendment-introduction'],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Joyce Mason,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-02,[],IL,103rd +Postponed - Higher Education,2024-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-08,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-23,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-15,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-24,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2023-03-15,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Chief House Sponsor Rep. Amy Elik,2023-03-23,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-04-20,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Simmons,2023-03-30,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-16,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-21,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Passed; 040-016-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Licensed Activities,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Mary Gill,2024-03-07,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 012-006-000,2023-03-29,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-27,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Postponed - State Government,2023-03-23,[],IL,103rd +Third Reading - Passed; 050-008-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Chief House Sponsor Rep. Lance Yednock,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 008-000-000,2023-03-23,[],IL,103rd +Assigned to Executive Committee,2023-05-16,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Villivalam,2023-03-22,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2023-05-03,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-09,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-02-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +Substitute House Sponsorship Request Referred to Rules Committee,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-07,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-09,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Mary Beth Canty,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Adopted Both Houses,2024-05-03,[],IL,103rd +Adopted Both Houses,2024-05-25,[],IL,103rd +Adopted Both Houses,2024-05-03,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 022-000-000,2024-03-20,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-02-20,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-24,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Linda Holmes,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-01,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 014-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Janet Yang Rohr,2024-04-15,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +Do Pass as Amended / Short Debate Human Services Committee; 009-000-000,2024-04-03,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Housing,2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2024-03-12,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 2 Tabled,2024-04-02,['amendment-failure'],IL,103rd +House Floor Amendment No. 1 Motion Filed to Table Rep. Kam Buckner,2024-04-16,[],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-03-14,[],IL,103rd +Assigned to Energy and Public Utilities,2024-05-07,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-03-20,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-17,[],IL,103rd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2024-04-16,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 008-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Assigned to Local Government,2024-04-24,['referral-committee'],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-04-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-16,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Robert F. Martwick,2024-04-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Transportation: Vehicles & Safety; 010-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 089-014-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of First Reading April 18, 2024",2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-03-15,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Re-assigned to Transportation,2024-01-10,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Ventura,2023-03-29,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 013-000-000,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 014-000-000,2024-04-10,[],IL,103rd +Chief Sponsor Changed to Sen. Celina Villanueva,2024-04-17,[],IL,103rd +Fiscal Note Filed,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-04-09,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-04,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-17,[],IL,103rd +Recalled to Second Reading,2024-04-12,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-04-30,['amendment-passage'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Chief House Sponsor Rep. Nicholas K. Smith,2024-04-11,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Behavioral and Mental Health; 007-000-000,2024-04-10,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-10,[],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-04-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Assigned to State Government Administration Committee,2024-04-15,['referral-committee'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-04-09,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-04-24,['referral-committee'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 008-004-000,2024-05-01,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Recalled to Second Reading,2024-05-02,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-03-22,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Assigned to State Government,2023-04-12,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-03-13,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michelle Mussman,2024-04-17,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-01,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-23,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-01-10,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 017-010-000,2023-03-07,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 012-000-000,2023-03-08,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-02-21,[],IL,103rd +Resolution Adopted,2024-03-12,['passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-21,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-03,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-22,[],IL,103rd +Arrive in Senate,2024-05-20,['introduction'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-11,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2024-03-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-30,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Judiciary - Civil Committee; 009-005-000,2024-04-16,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-01-19,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 006-003-000,2024-03-14,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 088-019-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 012-000-000,2023-03-31,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-21,[],IL,103rd +Chief Sponsor Changed to Sen. Cristina Castro,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +Chief Sponsor Changed to Sen. Michael W. Halpin,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Simmons,2023-04-27,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-11,[],IL,103rd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 17, 2024",2024-04-16,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-04-19,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +To Subcommittee on Procurement,2024-02-08,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Elections,2024-04-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-05-08,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Second Reading,2024-04-18,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-04-23,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Procurement,2024-03-07,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Executive,2024-04-16,['referral-committee'],IL,103rd +Senate Committee Amendment No. 2 To Subcommittee on Procurement,2024-04-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-26,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2024-03-18,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2024-02-16,[],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-07,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-03-29,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Resolution Adopted,2024-05-23,['passage'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-02-27,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-04-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ann Gillespie,2023-03-28,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-02,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2024-04-18,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-02-28,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Terri Bryant,2023-10-25,['amendment-introduction'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-09-11,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-02-22,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Restorative Justice; 008-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-22,[],IL,103rd +Chief Sponsor Changed to Sen. Dale Fowler,2023-05-01,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-05-24,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-05-21,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-06,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-21,[],IL,103rd +Second Reading,2023-03-07,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-05-22,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-04,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Recalled to Second Reading,2023-05-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-03-10,[],IL,103rd +Third Reading - Short Debate - Passed 102-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-31,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2023-11-07,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2023-03-23,[],IL,103rd +Home Rule Note Requested by Rep. Patrick Windhorst,2023-03-16,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Fine,2023-03-29,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-04-15,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-03-22,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary Beth Canty,2023-03-21,['amendment-introduction'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Do Pass as Amended / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2024-03-21,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-16,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-05-22,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Recalled to Second Reading,2023-03-31,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-12,[],IL,103rd +Chief Senate Sponsor Sen. Sara Feigenholtz,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2023-03-16,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 066-035-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-07,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-18,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-05-03,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Harry Benton,2023-03-20,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-02,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2023-03-28,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-19,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-21,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-22,[],IL,103rd +Do Pass Senate Special Committee on Pensions; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-20,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-02,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-26,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-09,[],IL,103rd +Assigned to Financial Institutions,2023-04-12,['referral-committee'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 009-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of First Reading,2023-05-03,['reading-1'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-04,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-10-25,[],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2024-04-17,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Robert ""Bob"" Rita",2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Recalled to Second Reading,2023-05-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-02-22,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2024-04-19,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-20,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-03,[],IL,103rd +Third Reading - Short Debate - Passed 069-034-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-02-28,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-29,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-22,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-15,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2024-04-17,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-03-06,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 029-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-15,[],IL,103rd +Third Reading - Short Debate - Passed 112-001-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-28,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-18,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-11,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2023-03-24,['amendment-introduction'],IL,103rd +Recalled to Second Reading,2023-05-04,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-05-22,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Executive Committee; 008-004-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 009-000-000,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - State Government,2023-10-24,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-03-30,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments.",2023-04-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 009-004-000,2023-03-09,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-26,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 010-003-000,2024-05-16,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Craig Wilcox,2023-05-16,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-06,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Revenue & Finance Committee,2024-05-13,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Public Utilities Committee,2024-04-17,[],IL,103rd +Home Rule Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Diane Blair-Sherlock,2024-04-15,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Postponed - Education,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-02-26,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-01,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Remove Chief Co-Sponsor Rep. Tracy Katz Muhl,2024-03-07,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 010-000-000,2024-03-14,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-19,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2024-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-03-21,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-16,[],IL,103rd +Chief House Sponsor Rep. Dave Vella,2024-04-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-12,[],IL,103rd +Third Reading - Passed; 054-004-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Do Pass Public Health; 006-000-000,2024-05-01,['committee-passage'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-09,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-04-17,['committee-passage-favorable'],IL,103rd +Third Reading - Passed; 038-019-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Chief House Sponsor Rep. Kelly M. Cassidy,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +"Remove Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-02-22,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-07,[],IL,103rd +Recalled to Second Reading - Short Debate,2024-04-19,['reading-2'],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Lakesia Collins,2024-03-12,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-05-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-03-19,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2024-04-10,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-03-23,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-15,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-10-23,[],IL,103rd +To Subcommittee on Special Issues,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2023-05-03,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-04-25,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Energy and Public Utilities,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-05-10,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-02-07,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-04-18,['amendment-introduction'],IL,103rd +Recommends Be Adopted as Amended Health Care Availability & Accessibility Committee; 009-000-000,2023-04-25,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-23,[],IL,103rd +Chief Senate Sponsor Sen. Rachel Ventura,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-21,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Second Reading,2024-04-11,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-05-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-02-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-05-18,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Health and Human Services,2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 009-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Steve Stadelman,2024-04-18,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-09-27,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Chris Miller,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 008-000-000,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-05-16,[],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-03-06,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-23,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Sponsor Removed Sen. Michael E. Hastings,2024-03-07,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-09-25,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-05-09,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Education,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-04-09,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 006-001-000,2024-04-10,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-05-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-22,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-02-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Fine,2023-03-29,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-10-18,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-04-19,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-03-14,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-11,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2024-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-09,['amendment-failure'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-22,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Ethics & Elections,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-22,['amendment-passage'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2023-04-27,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Maura Hirschauer,2024-03-26,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-15,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2023-11-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-02-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Chief Sponsor Changed to Rep. Anna Moeller,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Removed Co-Sponsor Rep. Aaron M. Ortiz,2023-03-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2023-03-16,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-23,[],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 010-000-000",2023-05-24,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-08,[],IL,103rd +Assigned to State Government,2023-04-12,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jackie Haas,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-21,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-05-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-28,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-24,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-03-22,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-24,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-03-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-09,[],IL,103rd +Assigned to Transportation,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Counties & Townships Committee,2023-03-22,[],IL,103rd +Assigned to Local Government,2023-04-18,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2023-03-23,[],IL,103rd +Do Pass Education; 013-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-11,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-04-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-08,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-08,[],IL,103rd +Do Pass Education; 012-000-000,2023-04-26,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. John F. Curran,2023-03-24,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-05-04,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-10,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2023-03-21,['amendment-introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-14,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Patrick J. Joyce,2023-04-06,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Immigration & Human Rights Committee,2023-03-14,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-14,[],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-02,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-01,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-28,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Assigned to Executive,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-16,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-08,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-14,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-22,[],IL,103rd +Assigned to Environment and Conservation,2023-04-12,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-27,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-02-09,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 086-018-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Mike Simmons,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-01-26,[],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-10,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lakesia Collins,2023-03-15,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Robert F. Martwick,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-22,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Theresa Mah,2023-03-21,[],IL,103rd +"Placed on Calendar Order of First Reading May 4, 2023",2023-05-03,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Maura Hirschauer,2023-03-21,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-14,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jeff Keicher,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-21,[],IL,103rd +Assigned to Transportation,2023-04-12,['referral-committee'],IL,103rd +Do Pass Local Government; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-09,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dagmara Avelar,2023-04-25,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-02-22,[],IL,103rd +Assigned to Licensed Activities,2023-04-12,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-02-27,[],IL,103rd +Third Reading - Short Debate - Passed 076-036-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2024-04-16,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-24,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-15,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2024-04-05,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-02-22,[],IL,103rd +Reported Back To Executive; 002-000-000,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-02-14,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-04-16,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-21,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2024-03-21,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Referred to Rules Committee,2024-04-16,[],IL,103rd +Chief Sponsor Changed to Sen. Cristina Castro,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-05,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-15,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Lakesia Collins,2024-03-25,['amendment-introduction'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2024",2024-05-14,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2024-04-25,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-04-04,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Judiciary; 009-000-000,2024-04-10,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Blaine Wilhour,2023-03-27,[],IL,103rd +"Chief House Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Chief House Sponsor Rep. Joyce Mason,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-10-04,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-05,[],IL,103rd +"Chief House Sponsor Rep. Robert ""Bob"" Rita",2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-05,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-000-000,2024-04-30,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2024-05-07,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2024-04-09,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 055-002-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-16,[],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Emanuel ""Chris"" Welch",2024-05-20,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Brandun Schweizer,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-03-13,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Held in State Government,2024-03-21,[],IL,103rd +Chief House Sponsor Rep. Justin Slaughter,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-23,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Public Health Committee; 007-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Chief House Sponsor Rep. Jay Hoffman,2024-04-09,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Chief House Sponsor Rep. Stephanie A. Kifowit,2024-04-09,[],IL,103rd +Third Reading - Passed; 044-012-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 008-000-000,2024-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Assigned to Judiciary,2024-05-20,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Insurance; 009-000-000,2023-03-29,[],IL,103rd +Assigned to Energy & Environment Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-05-03,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 30, 2023",2023-03-29,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-11,[],IL,103rd +Postponed - Judiciary,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-06-07,[],IL,103rd +Re-assigned to Appropriations- Education,2024-01-10,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 012-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Natalie Toro,2024-03-27,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2024-04-10,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2024-05-01,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2023-03-30,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2024-04-24,['amendment-introduction'],IL,103rd +Arrived in House,2023-03-28,['introduction'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Postponed - Executive,2023-03-30,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 30, 2023",2023-03-29,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-03-07,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-03-25,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Adam M. Niemerg,2024-04-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Anne Stava-Murray,2023-04-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jehan Gordon-Booth,2024-04-18,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-10,[],IL,103rd +Chief Sponsor Changed to Sen. Linda Holmes,2024-04-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-03-29,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-04-26,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-05-14,['amendment-introduction'],IL,103rd +"Sponsor Removed Sen. Elgie R. Sims, Jr.",2023-03-22,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Karina Villa,2024-04-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-06,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 009-000-000,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Education,2024-01-10,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-04-04,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-04-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-03-11,[],IL,103rd +House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Patrick Windhorst,2024-04-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2023-04-12,[],IL,103rd +Senate Committee Amendment No. 2 Adopted; Executive,2023-03-22,['amendment-passage'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Sue Rezin,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 8, 2024",2024-05-08,['reading-2'],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Simmons,2023-03-22,['amendment-passage'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2024-04-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2024-02-08,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-03-23,[],IL,103rd +Do Pass as Amended Insurance; 008-000-000,2024-03-13,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 012-000-000,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2023-04-27,['amendment-introduction'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Morrison,2023-03-29,['amendment-passage'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-05,['amendment-passage'],IL,103rd +Assigned to Police & Fire Committee,2023-04-18,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Assigned to Gaming Committee,2023-04-18,['referral-committee'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-04-10,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +Chief House Sponsor Rep. Margaret Croke,2023-03-30,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-23,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-03-06,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Do Pass as Amended Education; 012-000-000,2023-03-22,['committee-passage'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-12,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 009-000-000,2023-03-29,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Katie Stuart,2024-04-29,[],IL,103rd +Removed Co-Sponsor All Other Members of the House,2024-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-04-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-16,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-19,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Energy and Public Utilities; 015-002-000,2024-04-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Norma Hernandez,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Local Government,2023-03-08,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-05-03,[],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-23,[],IL,103rd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2024-05-14,[],IL,103rd +Third Reading - Passed; 053-002-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 010-001-002,2023-03-29,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added as Chief Co-Sponsor Sen. Seth Lewis,2023-10-26,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-02-28,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2023-02-28,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-24,[],IL,103rd +First Reading,2023-05-02,['reading-1'],IL,103rd +Postponed - Special Committee on Criminal Law and Public Safety,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-19,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-23,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-15,[],IL,103rd +Do Pass Higher Education; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-05-11,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Do Pass State Government; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Third Reading - Passed; 053-000-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +Chief Co-Sponsor Changed to Rep. Will Guzzardi,2023-03-08,[],IL,103rd +To Family Law & Probate Subcommittee,2023-03-01,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-03-12,['referral-committee'],IL,103rd +Arrive in Senate,2024-05-20,['introduction'],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Committee Amendment No. 4 Referred to Rules Committee,2024-04-02,[],IL,103rd +Chief Senate Sponsor Sen. Robert F. Martwick,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Fred Crespo,2024-04-24,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Thaddeus Jones,2024-04-17,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-12,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Referred to Assignments,2024-05-02,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-04-15,[],IL,103rd +Arrive in Senate,2024-05-22,['introduction'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-02-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-22,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-12,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-04-18,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Correctional Note Requested by Rep. Rita Mayfield,2024-04-16,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. William E Hauter,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-13,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 014-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Balanced Budget Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Availability & Accessibility Committee; 011-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2024-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-24,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Education,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-15,[],IL,103rd +Judicial Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-21,[],IL,103rd +Assigned to Human Services Committee,2024-03-27,['referral-committee'],IL,103rd +Resolution Adopted,2024-05-24,['passage'],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-20,[],IL,103rd +Resolution Adopted; 055-000-000,2024-05-25,['passage'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-15,[],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-30,[],IL,103rd +Recalled to Second Reading,2024-03-05,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-02-27,[],IL,103rd +Chief House Sponsor Rep. Sharon Chung,2023-03-30,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +Third Reading - Passed; 040-015-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Assigned to Gaming Committee,2023-04-11,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 2 Re-referred to Assignments,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-04-20,['amendment-introduction'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 009-002-000,2023-10-24,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendments will remain in the Committee on Assignments:",2024-04-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2023-10-20,['amendment-introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 009-000-000,2023-10-24,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2023-10-20,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2023-10-24,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Feigenholtz,2023-03-23,['amendment-passage'],IL,103rd +Chief Sponsor Changed to Sen. Mike Simmons,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Doris Turner,2023-03-30,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 009-000-000,2023-10-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-07,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-03,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-11,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-05-21,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-27,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-01,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-02,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-05-03,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Appropriations-General Services Committee,2024-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-05-12,[],IL,103rd +Motion Filed to Suspend Rule 21 Appropriations-General Services Committee; Rep. Theresa Mah,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-04-29,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Chief Sponsor Changed to Sen. Sue Rezin,2023-05-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-04-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Appropriations- Education,2023-03-28,[],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 012-000-000,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Chief Sponsor Changed to Sen. Suzy Glowiak Hilton,2023-10-24,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2023-10-24,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Rachel Ventura,2023-05-10,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 008-000-000,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2024-05-07,['amendment-introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Health and Human Services,2023-03-28,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Chief Sponsor Changed to Sen. Sue Rezin,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-04-27,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Senate Special Committee on Pensions; 011-000-000,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-29,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-12,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Chief Sponsor Changed to Sen. Sue Rezin,2023-05-11,[],IL,103rd +Chief House Sponsor Rep. Stephanie A. Kifowit,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2023-04-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-23,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-02-17,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Simmons,2023-03-29,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-05-03,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-03-21,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 009-004-000,2024-05-22,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Third Reading - Passed; 053-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2024-04-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-04-16,[],IL,103rd +House Committee Amendment No. 4 Rules Refers to State Government Administration Committee,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-05-16,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Correctional Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Recalled to Second Reading,2023-10-25,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 009-003-000,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-04-11,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-20,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-11,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-07-18,[],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Local Government,2023-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-16,[],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2023-02-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Third Reading - Passed; 055-001-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +"Alternate Chief Sponsor Changed to Rep. Robert ""Bob"" Rita",2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Castro,2023-05-04,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-28,[],IL,103rd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 019-010-000,2024-04-03,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-02-07,[],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Kam Buckner,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-03-07,[],IL,103rd +Approved for Consideration Assignments,2024-04-30,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Assigned to Executive Committee,2023-10-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Lightford,2023-03-30,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mike Simmons,2024-05-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-03-06,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-02,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Environment and Conservation,2024-04-18,[],IL,103rd +Placed on Calendar Order of First Reading,2024-05-20,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-05,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Agriculture,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Higher Education,2023-03-07,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 005-000-000,2024-05-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Agriculture; 012-000-000,2024-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-05-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-04-17,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 013-000-000,2023-03-29,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Harmon,2024-03-05,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-12,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2023-05-02,[],IL,103rd +Do Pass / Short Debate Prescription Drug Affordability & Accessibility Committee; 009-004-000,2023-03-08,['committee-passage'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Re-assigned to Executive,2023-03-21,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-01,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Approved for Consideration Assignments,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2024-05-22,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2024-01-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-03-21,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Third Reading - Passed; 032-016-002,2023-03-23,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 006-003-000,2023-10-24,[],IL,103rd +Third Reading - Short Debate - Passed 078-030-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 054-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-05-02,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2024-03-12,['amendment-introduction'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-08,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-02-22,[],IL,103rd +"Third Reading Deadline Extended-Rule May 25, 2024",2024-05-24,[],IL,103rd +Chief Sponsor Changed to Sen. Omar Aquino,2023-10-24,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Resolution Adopted; 055-000-000,2024-05-25,['passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jason Plummer,2023-05-11,['amendment-introduction'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Education,2023-04-19,[],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-14,"['passage', 'reading-3']",IL,103rd +Recalled to Second Reading,2023-10-25,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-05-20,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-04,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-000-000,2023-03-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-10-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Neil Anderson,2024-04-23,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-02,[],IL,103rd +Third Reading - Passed; 039-016-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-07,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-20,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Fiscal Note Requested by Rep. Rita Mayfield,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-02-21,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-10-24,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-04,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Rita Mayfield,2024-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Recalled to Second Reading,2023-03-31,['reading-2'],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Re-assigned to Executive Committee,2024-05-20,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-12,[],IL,103rd +Chief Sponsor Changed to Sen. Mike Simmons,2024-05-14,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-03-21,['amendment-passage'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-04-18,[],IL,103rd +"Senate Floor Amendment No. 3 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-03-30,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2024-03-07,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 24, 2024",2024-05-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-06-24,[],IL,103rd +Do Pass as Amended Local Government; 011-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-11,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Tracy,2023-03-29,['amendment-passage'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2024-03-26,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Glowiak-Hilton,2023-03-28,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-04-24,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-04,[],IL,103rd +Senate Floor Amendment No. 3 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +First Reading,2023-03-28,['reading-1'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Bill Cunningham,2024-04-09,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 011-000-000,2023-03-30,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-04-20,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2023-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 009-000-000,2024-04-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-04-15,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Halpin,2023-03-22,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 009-000-000,2024-05-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-05,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-24,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +House Floor Amendment No. 2 Home Rule Note Requested as Amended by Rep. Patrick Windhorst,2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 011-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-03-24,[],IL,103rd +"Chief House Sponsor Rep. Robert ""Bob"" Rita",2023-03-28,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-04-16,[],IL,103rd +Assigned to Higher Education Committee,2023-04-18,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2024-05-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2024-04-18,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-02,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Chief House Sponsor Rep. Justin Slaughter,2024-04-09,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments:",2024-05-07,[],IL,103rd +Do Pass / Short Debate Economic Opportunity & Equity Committee; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +Do Pass as Amended Judiciary; 009-000-000,2024-05-08,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2023-03-29,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-27,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-05-16,['referral-committee'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-03-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-24,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-02-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-03-07,[],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 012-000-000,2023-04-25,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Ventura,2023-03-29,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-15,[],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-03-12,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-03-30,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Education,2024-03-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-04-09,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Alternate Chief Sponsor Removed Rep. Dave Severin,2023-03-30,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-04-25,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Tom Bennett,2024-04-17,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 23, 2023",2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2024-04-17,[],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Appropriations- Education,2024-01-10,['referral-committee'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Adoption & Child Welfare Committee,2024-03-27,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Approved for Consideration Assignments,2024-03-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2024-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-03-29,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-03-06,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-04-15,[],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Counties & Townships Committee,2024-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-07,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Travis Weaver,2024-04-18,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-04,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-30,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2023-04-27,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Ellman,2024-04-11,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2024-04-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Assigned to Executive,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-05-17,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Second Reading,2024-04-11,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Assigned to Energy & Environment Committee,2024-04-24,['referral-committee'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-04-11,[],IL,103rd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2023-03-10,[],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Postponed - Education,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Senate Committee Amendment No. 3 Adopted,2024-03-21,['amendment-passage'],IL,103rd +Do Pass as Amended Judiciary; 009-000-000,2024-03-06,['committee-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-09,[],IL,103rd +Chief House Sponsor Rep. Daniel Didech,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 017-008-000,2024-05-08,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Do Pass as Amended Insurance; 010-000-000,2024-03-06,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-04-25,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-27,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-25,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-03-21,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jeff Keicher,2023-05-01,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2024-04-16,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2024-04-29,['amendment-introduction'],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Recalled to Second Reading,2023-03-31,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-07,[],IL,103rd +"Chief House Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-10-23,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-09-27,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Licensed Activities,2024-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2024-03-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-17,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-04-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2023-02-23,[],IL,103rd +Third Reading - Short Debate - Passed 071-040-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Restorative Justice,2024-02-28,['referral-committee'],IL,103rd +Third Reading - Passed; 051-006-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-04-26,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-03-20,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Andrew S. Chesney,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-16,[],IL,103rd +Chief House Sponsor Rep. Katie Stuart,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-04-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Referred to Assignments,2023-05-03,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-02-16,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-04-25,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2024-02-28,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2024-04-11,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 017-000-000,2024-05-22,['committee-passage-favorable'],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +Chief House Sponsor Rep. Diane Blair-Sherlock,2024-04-12,[],IL,103rd +Third Reading - Passed; 042-016-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-12,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-03-10,[],IL,103rd +Chief House Sponsor Rep. Abdelnasser Rashid,2024-04-12,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Postponed - Judiciary,2023-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-18,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Chief House Sponsor Rep. Suzanne M. Ness,2024-04-12,[],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Tracy Katz Muhl,2024-04-15,['amendment-introduction'],IL,103rd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2024-04-09,[],IL,103rd +Chief House Sponsor Rep. Michael J. Kelly,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-27,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 014-000-000,2024-04-02,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dave Vella,2024-04-25,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 013-000-000,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-23,[],IL,103rd +To Criminal Administration and Enforcement Subcommittee,2023-03-07,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Amy Elik,2024-04-10,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-21,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Angelica Guerrero-Cuellar,2023-05-11,[],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2023-03-23,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-11-02,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-04-20,[],IL,103rd +Do Pass Revenue; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2023-05-12,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-02-07,[],IL,103rd +Do Pass Energy and Public Utilities; 015-000-000,2024-05-02,['committee-passage'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-10,[],IL,103rd +House Committee Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-18,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-05,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-05-18,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2024-03-12,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2024-04-10,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-03-07,[],IL,103rd +Chief Senate Sponsor Sen. Steve Stadelman,2024-04-24,[],IL,103rd +Chief House Sponsor Rep. Kam Buckner,2024-04-10,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Nabeela Syed,2024-05-15,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-04-27,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-05-23,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +Sponsor Removed Sen. Sue Rezin,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-15,[],IL,103rd +Fiscal Note Filed,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2023-03-21,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +"Chief Co-Sponsor Changed to Rep. Curtis J. Tarver, II",2023-03-08,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Robert ""Bob"" Rita",2024-05-17,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jennifer Sanalitro,2023-03-20,['amendment-introduction'],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-23,[],IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-08,['committee-passage'],IL,103rd +Chief House Sponsor Rep. Stephanie A. Kifowit,2024-04-09,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-11-09,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Assigned to Local Government,2023-04-12,['referral-committee'],IL,103rd +Do Pass Transportation; 013-000-000,2023-04-26,['committee-passage'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-23,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Mary E. Flowers,2023-03-14,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-02-28,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-21,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Mary E. Flowers,2023-03-24,['amendment-introduction'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Mary E. Flowers,2023-03-24,['amendment-introduction'],IL,103rd +Assigned to Agriculture,2023-04-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-05-17,[],IL,103rd +Do Pass State Government; 007-000-000,2024-05-09,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 071-035-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Robyn Gabel,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 070-040-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted State Government Administration Committee; 008-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-01-26,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-02,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-03-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-03-09,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Ethics & Elections; by Voice Vote,2023-03-07,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-22,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-24,['reading-1'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 011-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 009-003-000,2023-03-14,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-02-08,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-04-13,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Dan Caulkins,2023-03-23,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-19,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-02-22,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Consumer Protection Committee; 006-003-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Chief Co-Sponsor Changed to Rep. Justin Slaughter,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-20,[],IL,103rd +Do Pass Environment and Conservation; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Assigned to Local Government,2023-04-12,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2023-03-22,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2023-03-27,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Sponsor Changed to Rep. Lilian Jiménez,2023-03-15,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. David Friess,2023-03-23,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-11,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-15,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-26,[],IL,103rd +Do Pass Local Government; 010-000-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-10,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2023-03-22,[],IL,103rd +House Committee Amendment No. 2 Tabled,2023-03-08,['amendment-failure'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 010-005-000,2023-03-09,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-10-25,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate **,2024-03-05,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-26,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-03-07,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-02-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-04-27,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-23,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dagmara Avelar,2023-02-27,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Chief Co-Sponsor Changed to Rep. Sharon Chung,2023-03-21,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-21,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-24,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-05-04,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Rita Mayfield,2023-03-09,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-02-28,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-02-28,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Gregg Johnson,2023-05-18,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-01,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-15,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Postponed - Judiciary,2023-05-03,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Sara Feigenholtz,2023-03-24,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Travis Weaver,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-21,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-02-28,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-11,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Doris Turner,2023-04-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Burke,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-03-20,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-04-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-15,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-20,[],IL,103rd +Chief Senate Sponsor Sen. Tom Bennett,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-20,[],IL,103rd +Re-assigned to Special Committee on Criminal Law and Public Safety,2024-01-10,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Referred to Assignments,2023-05-02,[],IL,103rd +Postponed - State Government,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-24,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-03-23,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-05-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-01,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Revenue; 007-000-000,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Licensed Activities,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Senate Special Committee on Pensions; 011-000-000,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 2 Postponed - Transportation,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-03-24,[],IL,103rd +Arrived in House,2023-03-28,['introduction'],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Third Reading - Passed; 052-004-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Adriane Johnson,2023-03-22,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Belt,2023-03-22,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-30,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-04-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Recalled to Second Reading,2023-03-31,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 016-000-000",2023-04-25,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 012-000-000,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-02-15,[],IL,103rd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2023-03-23,[],IL,103rd +"Chief House Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-29,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2023-04-20,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-04-25,['amendment-introduction'],IL,103rd +"Chief House Sponsor Rep. Robert ""Bob"" Rita",2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Third Reading - Passed; 053-004-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-03-28,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Postponed - Higher Education,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 010-000-000,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Chief House Sponsor Rep. Jay Hoffman,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Morrison,2023-03-28,['amendment-passage'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2023-04-20,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 009-000-000,2023-03-30,[],IL,103rd +Postponed - Executive,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Chief House Sponsor Rep. Jenn Ladisch Douglass,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-04-10,[],IL,103rd +Re-assigned to Financial Institutions,2024-01-10,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Education,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-10,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Tony M. McCombie,2023-04-14,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +First Reading,2024-05-03,['reading-1'],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2023-03-28,[],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2023-04-27,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Special Committee on Criminal Law and Public Safety,2023-03-09,['amendment-passage'],IL,103rd +Third Reading - Passed; 040-016-001,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-03-28,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-25,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-31,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-04-18,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2023-03-23,['amendment-introduction'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Recalled to Second Reading,2023-03-31,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jawaharial Williams,2023-04-26,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Dave Vella,2023-03-29,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-05,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Third Reading - Passed; 040-016-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-23,['amendment-failure'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-10,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-000-000,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-24,[],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +Third Reading - Passed; 058-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Jason Bunting,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-04-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Koehler,2024-05-25,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-23,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2024-03-27,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-14,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-16,['amendment-passage'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2024-05-03,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-04-30,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-15,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-12,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-03-12,[],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Transportation,2024-01-10,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-02,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Adriane Johnson,2024-04-04,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-16,[],IL,103rd +Recalled to Second Reading,2024-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-10-25,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2024-04-17,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 007-000-000,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 007-000-000,2024-04-18,[],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Third Reading - Passed; 054-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-21,[],IL,103rd +Arrived in House,2024-05-02,['introduction'],IL,103rd +Second Reading,2024-04-09,['reading-2'],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Environment and Conservation,2024-03-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-03-14,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +Chief House Sponsor Rep. Kam Buckner,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Laura Fine,2024-05-07,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-25,[],IL,103rd +Third Reading - Passed; 041-016-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2024-05-02,['committee-passage'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Michael W. Halpin,2024-04-09,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2024-05-02,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 005-003-000,2024-04-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-29,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-16,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Adam M. Niemerg,2024-04-29,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-05-13,['amendment-introduction'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 058-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Alternate Chief Sponsor Changed to Rep. Mark L. Walker,2024-04-12,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-04-11,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 010-005-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-05-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Chief Sponsor Changed to Sen. Natalie Toro,2023-10-19,[],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-12,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-01-16,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-01,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2024-04-01,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 103-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2024-04-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-30,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2024-04-18,[],IL,103rd +Chief Senate Sponsor Sen. Tom Bennett,2024-04-19,[],IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2024-04-01,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2024-04-15,['amendment-introduction'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Porfirio,2024-05-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-05,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Elections,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-16,[],IL,103rd +Do Pass as Amended / Short Debate Child Care Accessibility & Early Childhood Education Committee; 014-000-000,2024-04-04,['committee-passage'],IL,103rd +Waive Posting Notice,2023-03-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Standard Debate,2023-03-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-10-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-24,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Lakesia Collins,2023-03-23,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-02-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-05,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-03-21,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Kelly M. Cassidy,2024-04-18,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-24,[],IL,103rd +Chief Sponsor Changed to Sen. Ram Villivalam,2023-05-24,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 007-000-000,2023-03-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-05-06,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-21,[],IL,103rd +Removed Co-Sponsor Rep. Anna Moeller,2023-03-15,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-28,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Ann M. Williams,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Yolonda Morris,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-04-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-04-18,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Norma Hernandez,2023-03-20,['amendment-introduction'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-01,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-10,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Eva-Dina Delgado,2024-04-16,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-02,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-02-07,[],IL,103rd +Third Reading - Passed; 055-001-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-04-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-02-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Pension Note Filed,2023-03-07,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Bob Morgan,2023-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-20,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-20,[],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Third Reading - Passed; 052-001-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Willie Preston,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-06,[],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-04-12,['referral-committee'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety; 008-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2023-03-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-14,[],IL,103rd +Do Pass Labor; 013-000-000,2023-04-27,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-02,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-10,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-04-26,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Chief Co-Sponsor Changed to Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-16,[],IL,103rd +Do Pass Licensed Activities; 008-000-000,2023-04-20,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-09,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-16,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Theresa Mah,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-04-25,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2023-03-22,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-15,[],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2023-03-29,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-15,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Passed; 038-018-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +Do Pass Environment and Conservation; 006-000-000,2023-04-20,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-23,[],IL,103rd +To Foster Care Placement Subcommittee,2024-02-21,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-30,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-04-04,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Do Pass / Short Debate Public Health Committee; 007-000-000,2023-04-20,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Third Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-000",2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-04-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Appropriations-Health & Human Services Committee; by Voice Vote,2023-05-04,['amendment-passage'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Health Care Licenses Committee,2023-03-22,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 005-003-000,2023-03-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-16,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-20,[],IL,103rd +Recalled to Second Reading,2023-10-25,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Third Reading - Passed; 052-005-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-03-14,[],IL,103rd +Assigned to State Government,2023-04-12,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2023-03-16,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-08,[],IL,103rd +Do Pass as Amended / Short Debate Insurance Committee; 010-002-000,2024-03-12,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Anna Moeller,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-24,[],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-07,[],IL,103rd +Chief Senate Sponsor Sen. Linda Holmes,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-03-14,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-10-24,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +Do Pass Judiciary; 007-002-000,2023-04-19,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2023-03-22,[],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 020-000-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-02-24,[],IL,103rd +Removed Co-Sponsor Rep. Brad Stephens,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-05-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dan McConchie,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-02-23,[],IL,103rd +Third Reading - Short Debate - Passed 073-038-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-26,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Availability & Accessibility Committee; 011-000-000,2024-05-16,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-26,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-03-06,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Julie A. Morrison,2024-04-05,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-04-19,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2024-04-17,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-04-24,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2023-03-20,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Meg Loughran Cappel,2024-04-10,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-03-21,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions March 23, 2023",2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-06,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-04-17,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-04-26,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-02-27,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-02-24,[],IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-08,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. John F. Curran,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2024-05-14,['amendment-introduction'],IL,103rd +Do Pass Agriculture; 012-000-000,2024-05-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-03-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Steve Stadelman,2024-04-05,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-04-19,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2023-03-23,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Fred Crespo,2023-03-02,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-02-22,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2023-05-11,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-05-09,[],IL,103rd +Referred to Assignments,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-02-28,[],IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-08,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Energy and Public Utilities,2024-01-10,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Blaine Wilhour,2023-03-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2024-04-19,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +Third Reading - Passed; 051-001-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Rules Refers to Mental Health & Addiction Committee,2024-04-18,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-07,[],IL,103rd +Re-assigned to Energy and Public Utilities,2024-01-10,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-13,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-21,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-02-27,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Senate Committee Amendment No. 3 Postponed - Revenue,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-12,[],IL,103rd +Resolution Adopted,2023-03-08,['passage'],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-18,[],IL,103rd +Re-assigned to Agriculture,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-15,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kam Buckner,2024-04-17,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-10,[],IL,103rd +Re-assigned to Special Committee on Criminal Law and Public Safety,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-30,['committee-passage'],IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-02-22,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-03-21,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-22,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Third Reading - Passed; 055-004-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-02,[],IL,103rd +Assigned to Human Services Committee,2024-04-24,['referral-committee'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-04-19,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2023-11-07,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-08,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-05-15,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-05-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-03-23,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-22,[],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2024-04-29,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-05-10,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Health and Human Services,2024-05-07,[],IL,103rd +"Chief Senate Sponsor Sen. Emil Jones, III",2023-03-27,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Harry Benton,2023-03-21,['amendment-introduction'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-05-21,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Prescription Drug Affordability & Accessibility Committee,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-22,['amendment-failure'],IL,103rd +Added as Chief Co-Sponsor Sen. Erica Harriss,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-000-000,2024-05-22,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments.",2023-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Curran,2023-03-31,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2024-05-26,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2024-03-07,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-10-25,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-04-25,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Insurance; 009-000-000,2023-03-29,[],IL,103rd +Removed Co-Sponsor Rep. Yolonda Morris,2024-02-22,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-05-02,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-10,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-11,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2023-03-24,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Restorative Justice,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Cunningham,2023-05-05,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-02,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2023-04-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-10,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 074-039-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Housing Affordability Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-04-19,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +"Removed Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-15,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Maurice A. West, II",2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-06,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-11,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 102-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-10,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Koehler,2023-05-05,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Third Reading - Passed; 054-000-001,2023-03-31,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-03-30,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2023-03-30,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2023-05-25,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-02-21,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-21,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Chief House Sponsor Rep. Daniel Didech,2023-03-30,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-19,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-16,[],IL,103rd +Third Reading - Short Debate - Passed 101-001-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-05-21,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-03-06,[],IL,103rd +Referred to Assignments,2023-03-28,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Insurance Committee; 015-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 009-004-000,2024-05-22,[],IL,103rd +Fiscal Note Requested by Rep. Sonya M. Harper,2024-04-18,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2024-04-09,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-02-26,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Kimberly Du Buclet,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Suzanne M. Ness,2023-04-26,['amendment-introduction'],IL,103rd +Assigned to Energy & Environment Committee,2024-03-05,['referral-committee'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-28,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Public Health Committee,2023-03-07,[],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-04-24,['referral-committee'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-10-25,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-15,[],IL,103rd +"Senate Floor Amendment No. 3 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-05-26,['amendment-introduction'],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 8, 2023",2023-03-07,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-16,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-02,[],IL,103rd +Assigned to Insurance Committee,2023-04-11,['referral-committee'],IL,103rd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2023-11-07,[],IL,103rd +Pension Note Requested by Rep. Patrick Windhorst,2023-03-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-16,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-22,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-16,[],IL,103rd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2023-03-07,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-02,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Cervantes,2023-03-29,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-02-17,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-16,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 009-005-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Rachel Ventura,2023-03-29,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Chief Senate Sponsor Sen. Donald P. DeWitte,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-02-28,[],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-02,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-04-15,['amendment-introduction'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Judicial Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2024-04-18,[],IL,103rd +Third Reading - Short Debate - Passed 080-027-001,2024-04-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-05-20,[],IL,103rd +Chief Senate Sponsor Sen. Willie Preston,2023-03-27,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-02-15,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Bradley Fritts,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-22,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-03-20,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Barbara Hernandez,2024-04-03,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Angelica Guerrero-Cuellar,2023-03-21,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Postponed - Education,2023-03-29,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 086-016-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lilian Jiménez,2023-03-21,['amendment-introduction'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +"Third Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +Chief House Sponsor Rep. Dagmara Avelar,2024-04-17,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +"House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2024-03-21,['committee-passage-favorable'],IL,103rd +Third Reading - Passed; 056-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Executive; 010-001-000,2023-03-23,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2024-03-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-14,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-04-16,['amendment-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-05-01,['committee-passage'],IL,103rd +"Chief House Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-11,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-10,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Murphy,2023-03-30,['amendment-passage'],IL,103rd +To Subcommittee on Special Issues,2024-02-06,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Assigned to Human Services Committee,2024-04-24,['referral-committee'],IL,103rd +Second Reading,2024-04-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Placed on Calendar Order of First Reading,2024-05-20,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 008-000-000,2024-04-18,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 073-037-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 026-000-000,2024-05-01,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-11,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 2 Re-assigned to Executive,2024-04-16,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2024-04-24,['amendment-introduction'],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Licensed Activities,2023-03-22,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-09,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-03-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-04,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-04-27,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sally J. Turner,2024-03-07,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2024-04-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Approved for Consideration Assignments,2024-04-09,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2024-04-11,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Chief House Sponsor Rep. Katie Stuart,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Jay Hoffman,2024-04-12,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2024-03-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2024-05-01,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Financial Institutions,2024-04-09,[],IL,103rd +Recalled to Second Reading,2023-03-23,['reading-2'],IL,103rd +Assigned to Housing,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Swanson,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Environment and Conservation,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-18,[],IL,103rd +Chief House Sponsor Rep. Ann M. Williams,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-12,['amendment-passage'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Chief House Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Villivalam,2023-03-30,['amendment-passage'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-04-23,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Rita Mayfield,2024-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Kimberly Du Buclet,2024-05-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-05-01,[],IL,103rd +House Committee Amendment No. 3 Tabled,2024-04-02,['amendment-failure'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-23,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Chief House Sponsor Rep. Matt Hanson,2023-03-31,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 30, 2024",2024-04-18,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2024-04-18,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-01,[],IL,103rd +"Chief House Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-17,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Gaming Committee,2024-04-16,[],IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2024-04-10,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mark L. Walker,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-24,[],IL,103rd +House Floor Amendment No. 2 Motion Filed to Table Rep. Kevin John Olickal,2024-04-17,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2024-05-02,['committee-passage'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2023-03-30,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Do Pass State Government; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-01-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Housing; 011-006-000,2024-04-16,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-04-20,"['passage', 'reading-3']",IL,103rd +Postponed - State Government,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2024-04-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"To Subcommittee on Gaming, Wagering, and Racing",2024-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 012-000-000,2023-03-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-05-06,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Arrive in Senate,2024-05-25,['introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-03-24,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-03,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-03-24,[],IL,103rd +Chief House Sponsor Rep. Lakesia Collins,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-02-20,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-02-21,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-18,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Assigned to Executive,2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 3 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-22,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Removed Co-Sponsor Rep. Camille Y. Lilly,2024-03-19,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Norine K. Hammond,2024-04-12,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-03,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-11,[],IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Eva-Dina Delgado,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 010-001-000,2023-04-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-22,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2024-04-04,['amendment-introduction'],IL,103rd +Do Pass as Amended / Short Debate Insurance Committee; 010-002-000,2024-03-12,['committee-passage'],IL,103rd +Approved for Consideration Assignments,2024-04-16,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-05-02,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Environment and Conservation,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Education,2023-03-28,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. David Koehler,2024-04-08,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-29,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Daniel Didech,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2024-04-09,[],IL,103rd +"Assigned to Small Business, Tech Innovation, and Entrepreneurship Committee",2024-04-24,['referral-committee'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2024-05-02,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-09,[],IL,103rd +Assigned to Executive,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 010-000-000,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +Third Reading - Short Debate - Passed 091-020-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Simmons,2024-05-02,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-22,['reading-2'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-20,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2023-03-28,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Assigned to Revenue & Finance Committee,2024-02-14,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Omar Aquino,2024-03-27,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 012-000-000,2024-05-15,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Third Reading - Passed; 057-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Chief Sponsor Changed to Sen. Julie A. Morrison,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-04-30,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura Ellman,2023-03-21,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2023-04-25,['committee-passage-favorable'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Paul Faraci,2024-04-30,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-22,[],IL,103rd +Do Pass / Short Debate Restorative Justice; 004-002-000,2023-03-02,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-29,[],IL,103rd +House Floor Amendment No. 1 Fiscal Note Requested as Amended by Rep. Norine K. Hammond,2024-04-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-03-01,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-09,[],IL,103rd +House Committee Amendment No. 2 Adopted in Public Health Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-05-15,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-11-09,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-04-17,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Bob Morgan,2024-04-11,['amendment-introduction'],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-13,[],IL,103rd +"Third Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Resolution Adopted; 055-000-000,2023-05-19,['passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-07-06,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2024-04-10,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2024-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-04-26,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-28,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Gaming Committee; 015-000-000,2024-05-16,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kevin John Olickal,2024-04-01,['amendment-introduction'],IL,103rd +"House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-03-23,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-10-05,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-14,[],IL,103rd +"Third Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-10-25,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Ethics & Elections; 015-000-000,2023-05-12,['committee-passage-favorable'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-05-11,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 008-000-000,2023-03-23,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-22,[],IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 106-008-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 064-038-004,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. David Friess,2023-10-26,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-18,[],IL,103rd +Chief House Sponsor Rep. Martin J. Moylan,2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 013-000-000,2024-04-15,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-16,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-03-05,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-16,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-02,['amendment-failure'],IL,103rd +Third Reading - Short Debate - Passed 074-029-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-08,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-10-11,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-10,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-15,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-18,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-21,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-03-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Sanalitro,2024-04-18,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-22,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +"Chief Co-Sponsor Changed to Rep. Jaime M. Andrade, Jr.",2023-05-12,[],IL,103rd +"Third Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Do Pass State Government; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-07,[],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-09,[],IL,103rd +House Committee Amendment No. 2 Adopted in Health Care Availability & Accessibility Committee; by Voice Vote,2024-03-12,['amendment-passage'],IL,103rd +Assigned to State Government Administration Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-03-21,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-11-08,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-01,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-02,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Jehan Gordon-Booth,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-05-12,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-27,[],IL,103rd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2024-04-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Javier L. Cervantes,2023-03-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-04-26,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-04-03,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 093-018-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Abdelnasser Rashid,2024-04-12,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2024-04-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Margaret Croke,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-16,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Jonathan Carroll,2023-03-08,[],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2023-03-27,[],IL,103rd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-05-28,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Do Pass Insurance; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-21,[],IL,103rd +House Committee Amendment No. 2 Tabled,2023-03-08,['amendment-failure'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-22,[],IL,103rd +House Committee Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. William E Hauter,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2023-05-02,[],IL,103rd +First Reading,2023-05-04,['reading-1'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-05-03,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Public Utilities Committee; 015-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Postponed - Higher Education,2024-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-14,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-04,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-01-25,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +Chief House Sponsor Rep. Laura Faver Dias,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-23,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2023-03-21,[],IL,103rd +Third Reading - Passed; 058-001-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-03,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Will Guzzardi,2023-03-17,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2024-04-18,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-11,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-02-16,[],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-02-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2023-03-16,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dan Swanson,2023-03-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-24,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2023-02-27,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-04-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Brad Halbrook,2023-05-24,[],IL,103rd +Chief Senate Sponsor Sen. Ann Gillespie,2023-05-03,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Sue Scherer,2024-02-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-08,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2024-04-16,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Remove Chief Co-Sponsor Rep. Suzanne M. Ness,2024-02-16,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-05-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-13,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Lakesia Collins,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-08,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 010-000-000,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-05,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-10-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-13,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Eva-Dina Delgado,2024-05-22,['amendment-introduction'],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-05-09,[],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-05-18,[],IL,103rd +House Committee Amendment No. 3 Adopted in Public Health Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Approved for Consideration Rules Committee; 004-000-000,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-05-17,[],IL,103rd +Assigned to State Government Administration Committee,2023-04-11,['referral-committee'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-17,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-01,[],IL,103rd +Judicial Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +"Chief Co-Sponsor Changed to Rep. Elizabeth ""Lisa"" Hernandez",2023-02-22,[],IL,103rd +Do Pass State Government; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-16,[],IL,103rd +Adopted Both Houses,2023-05-19,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-10-27,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-05-25,['amendment-introduction'],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-19,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-14,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Harry Benton,2024-03-22,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2023-04-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Bradley Fritts,2023-03-01,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-26,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2024-04-10,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-03-07,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-15,[],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +Resolution Adopted,2023-04-26,['passage'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-10,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-17,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-11,[],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-11,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-05-12,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jehan Gordon-Booth,2024-04-18,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-07-11,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-11-08,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-02,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-09-06,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-21,[],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-15,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-16,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-11-09,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Mental Health & Addiction Committee; 017-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-06-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-05-11,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-05-17,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Feigenholtz,2023-10-25,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2024-03-13,['amendment-passage'],IL,103rd +Removed Co-Sponsor Rep. John Egofske,2023-03-02,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-23,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-22,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-15,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-11,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Higher Education Committee,2024-04-16,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-10-25,[],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-05-16,[],IL,103rd +Assigned to Judiciary,2023-04-18,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-03-07,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2024-05-26,[],IL,103rd +Recalled to Second Reading,2024-05-23,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-09,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Third Reading - Short Debate - Passed 073-039-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-05,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Celina Villanueva,2023-03-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-23,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-25,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-02-16,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 063-033-001,2024-04-19,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Caulkins,2024-04-18,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-02-07,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Feigenholtz,2023-03-23,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-02-28,[],IL,103rd +First Reading,2023-05-03,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Sanalitro,2023-03-06,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-02-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-02,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Harry Benton,2023-03-20,['amendment-introduction'],IL,103rd +Do Pass as Amended / Short Debate Insurance Committee; 013-000-000,2023-03-07,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Do Pass Judiciary; 008-000-001,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2023-03-27,[],IL,103rd +Third Reading - Passed; 046-011-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +State Debt Impact Note Requested by Rep. Patrick Windhorst,2023-03-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-17,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-04,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-03-22,[],IL,103rd +Do Pass Judiciary; 009-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-26,[],IL,103rd +Added Chief Co-Sponsor Rep. David Friess,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-08,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-000-000,2023-10-26,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-05-16,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-10-18,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Martin McLaughlin,2024-03-19,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-02-26,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Ann Gillespie,2024-04-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Recalled to Second Reading,2024-05-23,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-10,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-04-12,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-05-21,[],IL,103rd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2023-04-12,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-02,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +"Senate Floor Amendment No. 4 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-05-25,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Omar Aquino,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 093-010-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-18,[],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-13,[],IL,103rd +Third Reading - Short Debate - Passed 070-039-001,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-04-10,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-04-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-22,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-15,[],IL,103rd +Judicial Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-05,[],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Restorative Justice; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-11,['reading-2'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-23,[],IL,103rd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-03-07,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2023-03-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-05-02,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +"Added as Chief Co-Sponsor Sen. Napoleon Harris, III",2023-04-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-03-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-07,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-27,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-10,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 24, 2023",2023-03-23,['reading-2'],IL,103rd +First Reading,2024-05-02,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-02,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2024-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Health and Human Services,2024-04-30,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Do Pass as Amended Judiciary; 008-000-000,2024-04-17,['committee-passage'],IL,103rd +"Chief House Sponsor Rep. Maurice A. West, II",2024-04-12,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-22,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2023-03-20,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Special Issues,2024-02-06,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2024-05-09,['amendment-introduction'],IL,103rd +Recalled to Second Reading,2024-04-17,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-04,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-05-03,[],IL,103rd +"Chief House Sponsor Rep. Maurice A. West, II",2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-02-08,[],IL,103rd +Assigned to Executive,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Revenue; 008-000-000,2024-04-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-04-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +"Chief Senate Sponsor Sen. Emil Jones, III",2024-05-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-22,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-01-19,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mike Simmons,2023-03-30,['amendment-introduction'],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Removed Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-03,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2024-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-05-02,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Environment and Conservation; 006-000-000,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-11,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Committee Amendment No. 2 Adopted; Licensed Activities,2023-03-22,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-16,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Willie Preston,2024-03-20,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2024-04-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Postponed - State Government,2023-04-27,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-05-05,[],IL,103rd +Arrived in House,2023-04-20,['introduction'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2023-03-21,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Referred to Rules Committee,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. David Koehler,2023-03-24,['amendment-introduction'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Kam Buckner,2023-05-16,[],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2024-04-09,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Diane Blair-Sherlock,2024-03-20,['amendment-introduction'],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 013-000-000,2023-03-29,[],IL,103rd +Third Reading - Passed; 035-017-000,2023-04-27,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Third Reading - Passed; 053-004-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2024-05-06,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-12,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Recalled to Second Reading,2023-03-31,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-03-24,['amendment-introduction'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2024-03-12,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-16,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Third Reading - Passed; 054-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2024-05-01,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Referred to Assignments,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-21,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Chief Sponsor Changed to Sen. Julie A. Morrison,2024-04-09,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-11,[],IL,103rd +Do Pass / Short Debate Housing; 017-000-000,2024-05-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-04-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-04-29,[],IL,103rd +Do Pass as Amended Insurance; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Third Reading - Passed; 041-007-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Doris Turner,2023-03-23,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Financial Institutions,2024-01-10,['referral-committee'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2024-04-17,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Labor,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-02-23,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-20,[],IL,103rd +Chief Sponsor Changed to Sen. David Koehler,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-21,[],IL,103rd +Chief Sponsor Changed to Sen. Laura M. Murphy,2024-04-09,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Patrick Windhorst,2023-03-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-03-21,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-20,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Maurice A. West, II",2024-03-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Third Reading - Short Debate - Passed 099-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +"Do Pass / Short Debate Small Business, Tech Innovation, and Entrepreneurship Committee; 010-000-000",2024-05-02,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-03-29,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-12,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2024-05-07,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +"Chief House Sponsor Rep. Maurice A. West, II",2024-04-12,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lance Yednock,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-02,[],IL,103rd +Assigned to Insurance Committee,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Third Reading - Passed; 056-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Licensed Activities,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-04-30,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2023-03-28,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-04-11,[],IL,103rd +Assigned to Public Health,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-12,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Agriculture & Conservation Committee,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-11,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Gaming Committee; 010-002-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Assigned to Higher Education Committee,2023-04-11,['referral-committee'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-12,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anthony DeLuca,2024-04-19,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 015-000-000",2023-05-16,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-23,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-04-12,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-27,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-04-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-05-18,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-05-18,[],IL,103rd +First Reading,2023-04-12,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-02-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-10-25,[],IL,103rd +Chief Sponsor Changed to Sen. Paul Faraci,2024-04-09,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Veterans' Affairs Committee; 009-005-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-05-24,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Assigned to Restorative Justice,2023-02-28,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 012-006-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-05-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-04-15,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Health Care Licenses Committee,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Do Pass Higher Education; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2024-04-01,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-03-06,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-03-22,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-16,[],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-08,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-27,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; 027-000-000,2023-03-08,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-02-21,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-02-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-10,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2023-03-24,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2023-03-24,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-21,[],IL,103rd +Third Reading - Passed; 058-001-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-05-24,[],IL,103rd +First Reading,2023-05-03,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Chief Sponsor Changed to Sen. Laura Fine,2024-04-09,[],IL,103rd +Referred to Assignments,2023-05-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Paul Jacobs,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-02-06,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-04-25,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-02,[],IL,103rd +Postponed - State Government,2024-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-02-16,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-04-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2024-03-07,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Postponed - Revenue,2023-03-23,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-05-16,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-02-07,[],IL,103rd +Third Reading - Passed; 053-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-04-20,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Education; 013-000-000,2024-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2024-04-30,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-25,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-05-01,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-10,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-04-27,[],IL,103rd +Senate Committee Amendment No. 2 To Subcommittee on Special Issues,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-04-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-05-23,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-18,[],IL,103rd +Chief House Sponsor Rep. Dave Vella,2024-04-09,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +"Third Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-24,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-04-11,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +3/5 Vote Required,2023-05-11,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Senate Committee Amendment No. 3 Assignments Refers to Insurance,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-10-23,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-04-26,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-03-14,[],IL,103rd +Chief House Sponsor Rep. Michael J. Kelly,2024-04-12,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Resolution Adopted; 056-000-000,2023-05-24,['passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-11,[],IL,103rd +Re-assigned to Energy and Public Utilities,2024-01-10,['referral-committee'],IL,103rd +Do Pass / Short Debate Appropriations-Health & Human Services Committee; 022-000-000,2024-05-16,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-15,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-04-19,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Blaine Wilhour,2023-05-11,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-02-23,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-04-11,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-05-09,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-03-22,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-22,[],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-09,[],IL,103rd +"Chief House Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Theresa Mah,2024-04-02,['amendment-introduction'],IL,103rd +Assigned to State Government,2023-05-16,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Health and Human Services,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-23,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Public Utilities Committee,2024-04-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Do Pass as Amended Licensed Activities; 009-000-000,2024-03-07,['committee-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Steven Reick,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. David Koehler,2024-03-08,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-09-29,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-18,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-04-12,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-04-04,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +House Floor Amendment No. 5 Filed with Clerk by Rep. Thaddeus Jones,2024-04-17,['amendment-introduction'],IL,103rd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-16,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-04-17,['committee-passage-favorable'],IL,103rd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments.",2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 1, 2024",2024-04-30,['reading-2'],IL,103rd +"Removed Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2024-03-13,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 102-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-17,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-10-25,['amendment-introduction'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Revenue; 009-000-000,2023-10-24,[],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2023-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-29,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 012-000-000,2023-10-24,[],IL,103rd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sharon Chung,2024-04-02,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-04-16,[],IL,103rd +Home Rule Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2023-10-24,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Fine,2023-03-29,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-11,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-04-11,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-10-25,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-15,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Pension Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-16,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2024-03-25,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Patrick J. Joyce,2023-10-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-03-07,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Senate Special Committee on Pensions; 011-000-000,2023-03-30,[],IL,103rd +Chief Senate Sponsor Sen. Robert F. Martwick,2024-05-02,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-05,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Home Rule Note Requested by Rep. Rita Mayfield,2024-04-16,[],IL,103rd +Chief Senate Sponsor Sen. Robert F. Martwick,2024-05-02,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-03,[],IL,103rd +Resolution Adopted,2024-05-03,['passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-10-24,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-05-02,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-25,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-05-25,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-05-25,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-05-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Adopted Both Houses,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 009-003-000,2023-04-26,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; D. Turner,2023-10-25,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-22,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-11,[],IL,103rd +Adopted Both Houses,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-02,[],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Rachel Ventura,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Mattie Hunter,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-02-05,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will reamin in the Committee on Assignments.",2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-04-01,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-03-15,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-03-05,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-04-25,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-01-31,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-04-11,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Postponed - Health and Human Services,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Higher Education; 010-000-000,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Agriculture; 012-000-000,2023-03-30,[],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2024-05-20,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-08,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Assigned to Gaming Committee,2023-04-11,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-21,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-02-08,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 075-040-000,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-08,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2023-10-19,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-30,[],IL,103rd +Third Reading - Passed; 055-002-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Gaming Committee; 016-000-000,2023-04-27,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-08,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dan Swanson,2024-04-15,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Michael W. Halpin,2023-04-26,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-03-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2024-05-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Chief House Sponsor Rep. Lakesia Collins,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-02-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Andrew S. Chesney,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Michael E. Hastings,2024-05-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 008-004-000,2024-05-24,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Rose,2023-03-30,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-26,[],IL,103rd +House Committee Amendment No. 3 Adopted in State Government Administration Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-06,[],IL,103rd +Arrive in Senate,2024-05-14,['introduction'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Second Reading,2023-03-30,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Feigenholtz,2024-05-02,['amendment-passage'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 015-000-000,2024-05-14,['committee-passage'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 013-000-000,2024-03-21,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Harris,2023-03-29,['amendment-passage'],IL,103rd +Chief House Sponsor Rep. Hoan Huynh,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-04-16,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-29,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2024",2024-03-20,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Recalled to Second Reading,2024-04-18,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 8, 2024",2024-05-08,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2024-04-12,[],IL,103rd +Third Reading - Passed; 054-001-000,2024-05-09,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Amy Elik,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-10,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-29,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Chief Sponsor Changed to Sen. Ram Villivalam,2024-05-14,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Financial Institutions,2023-03-28,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 006-002-000,2024-03-12,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-15,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Revenue; 007-000-000,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Do Pass as Amended State Government; 008-001-000,2024-03-22,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Edly-Allen,2023-03-31,['amendment-passage'],IL,103rd +"Chief Co-Sponsor Changed to Rep. Maurice A. West, II",2024-03-21,[],IL,103rd +Chief House Sponsor Rep. Janet Yang Rohr,2024-04-11,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-04-16,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Emanuel ""Chris"" Welch",2024-05-20,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-07,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2024-04-12,[],IL,103rd +Chief House Sponsor Rep. Anne Stava-Murray,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Chief House Sponsor Rep. Norine K. Hammond,2023-03-31,[],IL,103rd +Chief House Sponsor Rep. Kelly M. Burke,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-04-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-11,[],IL,103rd +House Floor Amendment No. 2 Pension Note Requested as Amended by Rep. Patrick Windhorst,2024-04-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2023-04-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin Schmidt,2024-05-01,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Labor,2024-04-16,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-03-07,[],IL,103rd +Postponed - Judiciary,2024-03-06,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Remove Chief Co-Sponsor Rep. Harry Benton,2024-04-10,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Patrick J. Joyce,2024-04-05,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-03-21,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 014-000-000",2024-04-30,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-03-21,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Kam Buckner,2023-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2024-05-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-05,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-09,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Environment and Conservation,2023-05-03,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Holmes,2023-03-31,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-09,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2024-04-19,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Postponed - Education,2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-04-11,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 027-000-000,2024-04-30,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-04-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-07,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2024-04-10,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Belt,2023-03-23,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2023-04-26,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2024-04-09,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Loughran-Cappel,2023-03-30,['amendment-passage'],IL,103rd +"Motion Filed to Suspend Rule 21 Adoption & Child Welfare Committee; Rep. Elizabeth ""Lisa"" Hernandez",2024-04-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-04-17,[],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2024-04-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-03-22,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Chief House Sponsor Rep. Nicole La Ha,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-03-14,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2024-05-01,['amendment-introduction'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Chief House Sponsor Rep. Justin Slaughter,2023-03-30,[],IL,103rd +Removed Co-Sponsor Rep. Katie Stuart,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 097-010-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-03-12,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2024-02-20,[],IL,103rd +Chief House Sponsor Rep. Daniel Didech,2023-03-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Do Pass as Amended Executive; 012-000-000,2024-05-15,['committee-passage'],IL,103rd +Assigned to Housing,2023-04-18,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-30,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-04-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-04-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Loughran Cappel,2023-03-30,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Second Reading - Short Debate,2024-05-14,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 084-028-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-14,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-11,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Second Reading,2023-03-30,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-03-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Paul Jacobs,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-09,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-29,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-09,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-05-01,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 007-001-000,2023-03-29,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-29,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-06-25,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +First Reading,2023-05-04,['reading-1'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-15,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Camille Y. Lilly,2023-03-21,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2023-03-29,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-05-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +"Chief Co-Sponsor Changed to Rep. Edgar Gonzalez, Jr.",2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-02-22,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-11,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dave Vella,2023-03-17,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-15,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2024-04-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-04-27,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-14,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-15,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-24,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-03-21,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-14,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-24,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2023-03-14,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Jay Hoffman,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Christopher Belt,2023-03-28,[],IL,103rd +Do Pass Local Government; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-05-05,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-10,[],IL,103rd +Chief Senate Sponsor Sen. Willie Preston,2023-03-29,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dan Ugaste,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 010-005-000,2023-03-22,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2023-05-02,['committee-passage-favorable'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-20,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 017-000-000",2023-05-18,['committee-passage-favorable'],IL,103rd +Chief Co-Sponsor Changed to Rep. Tony M. McCombie,2023-03-01,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2023-03-17,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2023-04-11,[],IL,103rd +Third Reading - Short Debate - Passed 099-008-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2023-04-12,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-21,[],IL,103rd +Do Pass Local Government; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Alternate Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2023-05-05,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Mental Health & Addiction Committee; 015-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-03-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-03-01,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Resolution Adopted 113-000-000,2023-05-18,['passage'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-28,[],IL,103rd +Assigned to Higher Education,2023-04-12,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Resolution Adopted 101-000-000,2023-05-24,['passage'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Re-assigned to Executive,2023-05-09,['referral-committee'],IL,103rd +Chief Co-Sponsor Changed to Rep. Lakesia Collins,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Availability & Accessibility Committee; 005-003-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-02,[],IL,103rd +Chief Senate Sponsor Sen. Willie Preston,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-13,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 014-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-21,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-03-24,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-13,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2023-03-27,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-15,['amendment-passage'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Do Pass as Amended / Short Debate Ethics & Elections; 015-000-000,2023-03-07,['committee-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-14,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Public Health Committee,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2024-03-20,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-04-26,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-02-08,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Energy & Environment Committee; 025-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-07,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-23,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-14,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Erica Harriss,2023-03-24,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-02-27,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +First Reading,2023-05-02,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-12,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2023-03-20,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. John F. Curran,2023-11-09,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Lakesia Collins,2023-02-22,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Remove Chief Co-Sponsor Rep. Robyn Gabel,2023-01-26,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-08,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Special Committee on Criminal Law and Public Safety,2023-03-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-05-14,['amendment-passage'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Dave Vella,2024-04-11,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-05-10,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-29,[],IL,103rd +Assigned to Executive,2024-04-16,['referral-committee'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Ram Villivalam,2024-05-21,['amendment-introduction'],IL,103rd +Assigned to Agriculture,2024-01-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-05-06,[],IL,103rd +"Senate Committee Amendment No. 3 Pursuant to Senate Rule 3-8(b-1), the following amendments will remain in the Committee on Assignments:",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-02,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-04-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-12,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Cities & Villages Committee; 011-004-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-03-15,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Appropriations-Health & Human Services Committee; 023-000-000,2023-05-04,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Chief Co-Sponsor Changed to Rep. Barbara Hernandez,2023-03-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2023-03-22,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Assigned to Executive,2023-05-04,['referral-committee'],IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-24,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-23,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-16,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-10-25,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-04-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2023-03-21,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Adopted by Voice Vote,2023-03-23,['amendment-passage'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 099-011-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 073-037-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-21,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Do Pass State Government; 006-000-000,2023-04-20,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Mark L. Walker,2023-03-15,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-09,[],IL,103rd +Do Pass Senate Special Committee on Pensions; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-15,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-15,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Chief Co-Sponsor Changed to Rep. Terra Costa Howard,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-10,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Aaron M. Ortiz,2023-03-21,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-05-02,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-02,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-08,[],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2023-03-29,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-23,['amendment-passage'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-03-23,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-03-23,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 068-037-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Jil Tracy,2023-05-11,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Do Pass Judiciary; 007-002-000,2023-04-19,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 010-005-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Win Stoller,2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Restorative Justice; 006-003-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-09,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-08,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-09,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lance Yednock,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Rachel Ventura,2023-03-30,[],IL,103rd +Second Reading,2023-04-26,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 075-033-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 086-026-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2023-03-21,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 112-001-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-03-20,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-16,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Harry Benton,2023-03-20,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2023-03-20,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Assigned to Energy and Public Utilities,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-04-11,['committee-passage-favorable'],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-03-02,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 070-035-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-02,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Aaron M. Ortiz,2023-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-24,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2023-04-12,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +Assigned to Police & Fire Committee,2024-02-29,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-23,[],IL,103rd +Assigned to Executive,2024-04-24,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Randy E. Frese,2024-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2024-03-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-25,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-16,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2024-03-05,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-02-14,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-02-28,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-19,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-16,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-10,[],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-03-05,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-18,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Judiciary,2023-03-29,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Licensed Activities,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-24,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2023-05-24,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-31,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 009-000-000,2023-03-30,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Fine,2023-10-25,['amendment-passage'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 011-000-000,2023-03-30,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-03-21,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-05-06,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-05-24,[],IL,103rd +State Debt Impact Note Filed,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-06,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-04-09,['amendment-failure'],IL,103rd +Re-assigned to Higher Education Committee,2024-04-30,['referral-committee'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-22,[],IL,103rd +Chief House Sponsor Rep. Stephanie A. Kifowit,2024-04-09,[],IL,103rd +Chief House Sponsor Rep. Barbara Hernandez,2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Counties & Townships Committee; 008-000-000,2024-04-04,['committee-passage-favorable'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2023-04-20,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 009-005-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-04-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-23,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-05-15,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-04-18,['referral-committee'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-04-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +Senate Committee Amendment No. 2 Adopted; Education,2023-03-21,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-13,[],IL,103rd +Third Reading - Passed; 038-017-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-03-12,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Senate Special Committee on Pensions,2023-03-28,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-02-05,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +First Reading,2023-03-28,['reading-1'],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-04-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 013-000-000,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-23,['amendment-failure'],IL,103rd +Resolution Adopted as Amended,2024-05-25,['passage'],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments:",2024-04-30,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 008-000-000,2023-03-29,[],IL,103rd +Recalled to Second Reading,2023-03-31,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2024-04-18,[],IL,103rd +Remove Chief Co-Sponsor Rep. Mark L. Walker,2024-03-12,[],IL,103rd +Recalled to Second Reading,2024-04-18,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-14,['referral-committee'],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Assigned to State Government Administration Committee,2023-04-11,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2023-04-27,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-03-29,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-04-09,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Steve McClure,2023-10-25,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Janet Yang Rohr,2024-04-25,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Environment and Conservation; 006-002-000,2024-03-22,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 006-002-000,2023-04-20,['committee-passage'],IL,103rd +Chief House Sponsor Rep. Dagmara Avelar,2024-04-12,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-03-10,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Will Guzzardi,2023-03-30,[],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Marcus C. Evans, Jr.",2023-04-21,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-03-06,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Martwick,2023-03-31,['amendment-passage'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-07,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Referred to Rules Committee,2024-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-17,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-10,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-02,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Villanueva,2023-03-31,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2023-03-24,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Chief House Sponsor Rep. Michelle Mussman,2024-04-15,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-03-24,[],IL,103rd +Assigned to Ethics & Elections,2023-04-11,['referral-committee'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2023-04-26,['committee-passage'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-01-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-03-24,[],IL,103rd +Chief House Sponsor Rep. Amy Elik,2024-04-12,[],IL,103rd +Chief House Sponsor Rep. Dave Vella,2024-05-02,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Ellman,2023-03-29,['amendment-passage'],IL,103rd +Approved for Consideration Assignments,2023-10-18,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +To Subcommittee on Elections,2024-02-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Human Rights,2023-03-28,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-03-28,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 029-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-22,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-03,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-01-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2024-04-04,['amendment-introduction'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-04,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Kam Buckner,2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-07,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2023-03-02,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-12,[],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 012-000-000,2023-03-29,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2024-05-07,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-03-22,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Third Reading - Passed; 052-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 008-000-000,2024-05-15,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-04-12,[],IL,103rd +Assigned to Higher Education Committee,2024-04-15,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Chief House Sponsor Rep. Jed Davis,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Yolonda Morris,2023-03-31,[],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +Assigned to Veterans' Affairs Committee,2023-04-18,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-09,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-23,[],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 008-004-000,2024-04-30,['committee-passage'],IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 007-003-000,2023-03-10,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2023-04-17,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-15,[],IL,103rd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-16,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Third Reading - Passed; 057-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-01,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Re-assigned to Appropriations - Health and Human Services,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-04-15,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 015-000-000,2024-05-14,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-03-08,[],IL,103rd +Chief House Sponsor Rep. Martin J. Moylan,2023-03-30,[],IL,103rd +Chief House Sponsor Rep. Anthony DeLuca,2023-03-24,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-04-30,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Education,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Referred to Rules Committee,2023-03-29,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-15,[],IL,103rd +Recalled to Second Reading,2024-04-18,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-02-15,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2024-04-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-03-10,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-04-19,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-03-24,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-04-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-14,[],IL,103rd +Assigned to Behavioral and Mental Health,2024-05-07,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-02,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-02-28,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-05-17,[],IL,103rd +Recalled to Second Reading,2024-04-12,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Neil Anderson,2024-03-05,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Restorative Justice; 006-001-000,2024-03-22,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-14,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Do Pass State Government; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-13,[],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2023-02-28,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2024-04-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Seth Lewis,2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-04-10,[],IL,103rd +Chief House Sponsor Rep. Debbie Meyers-Martin,2024-04-12,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Resolution Adopted by Voice Vote,2023-03-23,['passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-16,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2024-05-08,['committee-passage'],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments.",2024-02-28,[],IL,103rd +To Subcommittee on CLEAR Compliance,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2024-04-05,['amendment-introduction'],IL,103rd +Second Reading,2024-04-17,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-04-25,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-04-24,['referral-committee'],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Agriculture,2024-04-09,[],IL,103rd +Do Pass Energy and Public Utilities; 010-000-000,2024-05-09,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2024-04-17,[],IL,103rd +Removed Co-Sponsor Rep. Tim Ozinga,2023-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-03-09,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-10,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-22,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Do Pass as Amended / Short Debate Health Care Availability & Accessibility Committee; 006-004-000,2024-03-12,['committee-passage'],IL,103rd +Approved for Consideration Assignments,2023-05-24,[],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-03-29,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-02-28,[],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 071-035-002,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-04-06,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-02-22,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-01-25,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2023-03-10,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-04-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-27,[],IL,103rd +Resolution Adopted,2023-05-26,['passage'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Agriculture,2024-04-11,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2024-05-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-04-18,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2024-04-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-04-25,[],IL,103rd +Assigned to Energy and Public Utilities,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-02-26,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-04-18,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2024-04-01,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 010-005-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 18, 2024",2024-04-17,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-05-16,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-01-25,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Assigned to Labor & Commerce Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-04-25,[],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2024-04-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-05-02,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-03-13,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Insurance,2024-04-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2023-08-29,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-11,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Laura Faver Dias,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-02,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Adriane Johnson,2024-03-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-12,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-04-13,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-04-18,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dave Vella,2024-05-20,['amendment-introduction'],IL,103rd +Assigned to Insurance Committee,2024-03-05,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Sanalitro,2023-04-26,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2024-04-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-30,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2024-04-19,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Win Stoller,2023-05-19,[],IL,103rd +Sponsor Removed Sen. Cristina Castro,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-02-28,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-03-29,[],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-04-06,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-09,[],IL,103rd +Assigned to Local Government,2024-04-24,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-03-05,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-03-14,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. John F. Curran,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 27, 2023",2023-04-26,['reading-3'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-10-25,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-03-20,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-03-12,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Erica Harriss,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-16,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-30,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-11-29,[],IL,103rd +Chief Senate Sponsor Sen. John F. Curran,2023-03-27,[],IL,103rd +Second Reading - Standard Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-08,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bradley Fritts,2024-02-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Third Reading - Consideration Postponed,2023-03-21,['reading-3'],IL,103rd +Chief Co-Sponsor Changed to Rep. Eva-Dina Delgado,2023-03-14,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Neil Anderson,2023-03-29,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-09,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2024-04-18,[],IL,103rd +Assigned to Licensed Activities,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-24,[],IL,103rd +"Added Chief Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael W. Halpin,2023-03-30,[],IL,103rd +Recalled to Second Reading,2024-05-23,['reading-2'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-06,[],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Second Reading,2023-05-05,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Terri Bryant,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-24,[],IL,103rd +Chief House Sponsor Rep. Martin J. Moylan,2023-03-31,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-30,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Remove Chief Co-Sponsor Rep. John M. Cabello,2024-03-04,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-21,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2023-03-21,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Sue Scherer,2024-04-02,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Judicial Note Filed,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-04-05,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 009-000-000,2023-03-29,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-15,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Adriane Johnson,2023-04-12,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-24,['committee-passage-favorable'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-09,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-02,[],IL,103rd +Postponed - Education,2023-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2024-02-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-10-25,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Do Pass Energy and Public Utilities; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-04-19,[],IL,103rd +To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +House Committee Amendment No. 1 Adopted in Transportation: Vehicles & Safety; 007-000-000,2023-03-22,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2023-03-21,['amendment-introduction'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Anne Stava-Murray,2023-04-26,[],IL,103rd +Assigned to Environment and Conservation,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-15,[],IL,103rd +Arrive in Senate,2023-05-03,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-16,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-15,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-24,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to State Government Administration Committee,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Education,2023-03-28,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 006-000-000,2023-05-03,[],IL,103rd +First Reading,2023-04-12,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-14,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 006-003-000,2023-03-07,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-03-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 091-018-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Hoan Huynh,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Withdrawn by Sen. David Koehler,2023-03-30,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dagmara Avelar,2023-03-16,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2023-05-04,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-03-16,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-05-03,[],IL,103rd +Third Reading - Short Debate - Passed 077-031-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Correctional Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-03-02,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-03,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-23,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-04-24,['referral-committee'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sharon Chung,2023-03-20,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-10-24,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-24,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-01,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-04-20,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Rachel Ventura,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Hoan Huynh,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sally J. Turner,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-16,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-11,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Postponed - Agriculture,2024-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on End of Life Issues,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-05-10,[],IL,103rd +Senate Committee Amendment No. 2 To Subcommittee on Government Operations,2024-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-07,[],IL,103rd +Postponed - Special Committee on Criminal Law and Public Safety,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-03,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-05-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-05-17,[],IL,103rd +Do Pass as Amended Health and Human Services; 009-002-002,2024-05-15,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2024-05-21,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Referred to Rules Committee,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Transportation,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-10,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-02,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Assigned to Health and Human Services,2024-04-30,['referral-committee'],IL,103rd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2024-04-12,[],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-17,[],IL,103rd +Chief House Sponsor Rep. Chris Miller,2024-04-15,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Chief House Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-07,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-05-14,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Stoller,2023-03-30,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-02-14,[],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 018-000-000,2023-04-27,['committee-passage'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-05-13,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-23,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-04-26,[],IL,103rd +Chief House Sponsor Rep. Abdelnasser Rashid,2023-03-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-04-26,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-17,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading October 24, 2023",2023-10-18,['reading-3'],IL,103rd +Third Reading - Passed; 053-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 013-000-000,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 007-000-000,2023-03-30,[],IL,103rd +Chief House Sponsor Rep. Aaron M. Ortiz,2024-04-12,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-03-11,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Behavioral and Mental Health,2024-04-09,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-26,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Tracy,2023-03-30,['amendment-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Paul Jacobs,2023-04-25,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Murphy,2023-03-23,['amendment-passage'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Motion Filed to Suspend Rule 21 Personnel & Pensions Committee; Rep. Kam Buckner,2023-05-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-15,[],IL,103rd +Chief Sponsor Changed to Sen. Linda Holmes,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Ram Villivalam,2023-03-15,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 077-034-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Assigned to Judiciary,2024-05-09,['referral-committee'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Do Pass as Amended Education; 012-000-000,2023-03-22,['committee-passage'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-04-26,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Senate Special Committee on Pensions,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-05-23,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-03-20,['amendment-introduction'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-18,[],IL,103rd +Chief House Sponsor Rep. Justin Slaughter,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Recalled to Second Reading,2023-10-25,['reading-2'],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2023-03-31,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Sue Rezin,2023-05-09,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-21,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-26,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2024-04-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 010-000-000,2023-04-26,['committee-passage'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-31,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-03-22,[],IL,103rd +Do Pass as Amended Executive; 009-004-000,2023-03-30,['committee-passage'],IL,103rd +Third Reading - Passed; 043-013-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Transportation: Vehicles & Safety,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-04-20,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-25,['amendment-failure'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Chief House Sponsor Rep. Sue Scherer,2023-03-31,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-14,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-29,[],IL,103rd +Referred to Rules Committee,2023-03-29,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-02-21,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2024-05-03,['amendment-introduction'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Chief House Sponsor Rep. Natalie A. Manley,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-15,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Postponed - Transportation,2024-03-06,[],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-02-05,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-30,['amendment-failure'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2024-03-12,[],IL,103rd +Chief House Sponsor Rep. Jackie Haas,2024-04-12,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2024-05-01,['committee-passage'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Villa,2023-03-30,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-02,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-05-07,[],IL,103rd +Chief House Sponsor Rep. Dagmara Avelar,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-05-07,['amendment-passage'],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2024-05-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2023-03-28,[],IL,103rd +Do Pass / Short Debate Executive Committee; 012-000-000,2023-04-26,['committee-passage'],IL,103rd +Third Reading - Passed; 039-019-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +First Reading,2024-05-03,['reading-1'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-03-21,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Chief House Sponsor Rep. Hoan Huynh,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Ventura,2023-03-31,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-01-17,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-23,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 010-005-000,2024-05-01,['committee-passage'],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2024-04-16,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-06,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-008-000,2024-04-30,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 21, 2023",2023-03-10,['reading-2'],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-12,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-04-18,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-10,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-24,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-03-27,[],IL,103rd +Chief House Sponsor Rep. Lilian Jiménez,2023-03-30,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-04-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2023-04-19,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Joyce Mason,2024-05-01,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Camille Y. Lilly,2023-03-21,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-28,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-05-17,[],IL,103rd +Referred to Assignments,2023-05-03,[],IL,103rd +Assigned to Public Health,2024-04-24,['referral-committee'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Chief Co-Sponsor Changed to Rep. Kelly M. Cassidy,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-11-07,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Removed Co-Sponsor Rep. Dagmara Avelar,2023-02-08,[],IL,103rd +Third Reading - Short Debate - Passed 068-040-001,2024-04-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-16,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2023-02-28,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-04-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2024-02-21,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-16,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Will Guzzardi,2024-04-15,['amendment-introduction'],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-16,[],IL,103rd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 027-000-000,2023-03-08,['committee-passage'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Recommends Be Adopted Adoption & Child Welfare Committee; 011-000-000,2023-05-18,['committee-passage-favorable'],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Adopted Both Houses,2023-05-24,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Labor & Commerce Committee,2023-03-21,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-02-23,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-03-06,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 078-027-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Chapin Rose,2024-04-16,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-07,[],IL,103rd +Chief Senate Sponsor Sen. Ann Gillespie,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-03-15,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2023-05-03,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-04,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +House Floor Amendment No. 4 Rules Refers to Health Care Licenses Committee,2023-03-22,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Sonya M. Harper,2023-03-09,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Charles Meier,2024-04-09,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Financial Institutions and Licensing Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-16,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-06,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-24,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-04-03,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-05-09,[],IL,103rd +Chief House Sponsor Rep. Amy Elik,2024-04-12,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-24,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-04-11,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2023-02-27,['amendment-introduction'],IL,103rd +Adopted Both Houses,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-05-28,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-02-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-16,[],IL,103rd +Referred to Assignments,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 011-000-000,2024-04-10,[],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-09,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 006-000-000,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-10-26,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Public Utilities Committee; 025-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-05-16,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Harry Benton,2023-03-21,['amendment-introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-07,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +To Special Issues Subcommittee,2023-03-09,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-04-25,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-10-23,[],IL,103rd +Chief House Sponsor Rep. Tony M. McCombie,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-23,[],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-17,[],IL,103rd +Arrive in Senate,2024-05-22,['introduction'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-21,[],IL,103rd +Motion Filed to Reconsider Vote Rep. Daniel Didech,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Public Utilities Committee,2024-04-18,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Simmons,2024-05-23,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-19,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-25,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-14,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-23,[],IL,103rd +Assigned to State Government,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-17,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-21,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Celina Villanueva,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-31,[],IL,103rd +Chief Senate Sponsor Sen. Dale Fowler,2023-03-23,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2023-03-17,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Energy and Public Utilities; 015-000-000,2023-03-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2023-04-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2024-02-27,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-31,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-04-11,['committee-passage-favorable'],IL,103rd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2023-02-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Harry Benton,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Chief Senate Sponsor Sen. Rachel Ventura,2023-03-30,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-10-25,[],IL,103rd +Third Reading - Passed; 054-002-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 072-039-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-24,[],IL,103rd +Chief Senate Sponsor Sen. Rachel Ventura,2023-03-30,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 097-008-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Third Reading - Passed; 051-002-000,2023-05-05,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 009-004-001,2024-03-13,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Financial Institutions,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Ventura,2024-05-23,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-19,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-05-25,[],IL,103rd +Assigned to Insurance,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-02-08,[],IL,103rd +Chief Senate Sponsor Sen. Willie Preston,2024-04-19,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-04-04,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-22,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Approved for Consideration Assignments,2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-03-13,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Jennifer Gong-Gershowitz,2024-02-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2024-03-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2024-05-26,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Higher Education Committee; 012-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 079-025-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-04-20,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2023-04-18,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-16,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Agriculture & Conservation Committee,2024-04-04,[],IL,103rd +Chief Co-Sponsor Changed to Rep. John M. Cabello,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-10,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2023-03-21,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Chief House Sponsor Rep. Bradley Fritts,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2023-04-21,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-15,[],IL,103rd +Do Pass Judiciary; 007-000-000,2023-04-26,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2024-04-17,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-05,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-05-16,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Patrick Windhorst,2023-03-16,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Justin Slaughter,2024-04-18,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-05-20,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +First Reading,2023-04-12,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Janet Yang Rohr,2023-03-21,['amendment-introduction'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-05,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-27,[],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-22,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. Rita Mayfield,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 009-005-000,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-02-20,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-03-05,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-04-11,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-003,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Patricia Van Pelt,2023-03-14,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-11,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-28,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 009-000-000,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-03-30,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-10-25,[],IL,103rd +Referred to Assignments,2023-05-03,[],IL,103rd +Do Pass / Short Debate Appropriations-General Services Committee; 010-000-000,2023-03-09,['committee-passage'],IL,103rd +Chief House Sponsor Rep. Tony M. McCombie,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Omar Aquino,2024-04-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-05-16,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-14,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-01,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Dagmara Avelar,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Fine,2023-03-23,['amendment-passage'],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-10-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-21,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-05-13,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-22,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Paul Jacobs,2024-02-06,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-05-03,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-09-21,[],IL,103rd +House Committee Amendment No. 4 Adopted in Public Health Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2024-04-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-11-27,[],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2023-04-19,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-16,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2023-03-29,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2024-04-02,[],IL,103rd +Chief House Sponsor Rep. Nicholas K. Smith,2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-04-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-17,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Assigned to State Government,2024-04-24,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-02-27,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-19,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-05-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-03-27,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Neil Anderson,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-13,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Assigned to Higher Education,2024-04-30,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-05-17,[],IL,103rd +Do Pass Energy and Public Utilities; 015-000-000,2024-05-02,['committee-passage'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +"House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-05-03,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-22,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-05-09,[],IL,103rd +To Subcommittee on Firearms,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-03-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-03,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Consumer Protection Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-11-13,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2024-05-09,['committee-passage'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2024-04-17,['amendment-passage'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Resolution Adopted,2023-03-28,['passage'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-03,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Elizabeth ""Lisa"" Hernandez",2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-11-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-05-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-11-07,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Referred to Assignments,2024-05-02,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Environment and Conservation,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-24,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Dan Ugaste,2023-04-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Paul Faraci,2024-04-24,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-11,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-03-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-03-14,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 007-001-000,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-30,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-16,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Mary E. Flowers,2023-03-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Chief House Sponsor Rep. Camille Y. Lilly,2023-03-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-12,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2024-04-10,['amendment-introduction'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-16,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Mike Porfirio,2024-04-16,[],IL,103rd +Sponsor Removed Sen. Linda Holmes,2023-03-27,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-01-16,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Labor; 016-000-000,2024-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-04-11,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2024-04-01,['amendment-introduction'],IL,103rd +Third Reading - Passed; 055-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-05-01,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Sonya M. Harper,2024-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. John M. Cabello,2024-04-17,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Do Pass Public Health; 006-000-000,2024-05-01,['committee-passage'],IL,103rd +Postponed - Judiciary,2024-04-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-04-18,[],IL,103rd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-05-15,['amendment-introduction'],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Harry Benton,2024-04-17,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Chief House Sponsor Rep. Mary Gill,2024-04-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-01-19,[],IL,103rd +Assigned to Behavioral and Mental Health,2024-04-30,['referral-committee'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2023-04-24,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Castro,2023-03-31,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-05-25,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-02-29,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Kelly M. Cassidy,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2024-04-15,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-04-11,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-30,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Edgar Gonzalez, Jr.",2023-03-22,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Recalled to Second Reading,2024-05-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-02,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Energy and Public Utilities,2024-04-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Passed; 056-002-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Chief Co-Sponsor Changed to Rep. Rita Mayfield,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-20,[],IL,103rd +Do Pass Energy and Public Utilities; 012-000-000,2024-05-16,['committee-passage'],IL,103rd +Third Reading - Passed; 038-018-000,2024-05-02,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anthony DeLuca,2024-04-24,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-04-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Chief House Sponsor Rep. William E Hauter,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Environment and Conservation,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Sara Feigenholtz,2024-03-27,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2024",2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-04-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-09,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-08,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-03-07,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Chief Sponsor Changed to Sen. Sara Feigenholtz,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Do Pass as Amended Licensed Activities; 009-000-000,2023-03-23,['committee-passage'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Local Government,2024-04-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-29,[],IL,103rd +Substitute House Sponsorship Request Accepted No Action Taken by Rules,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-09,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-04-27,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Janet Yang Rohr,2024-04-15,['amendment-introduction'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-16,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-12,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Insurance Committee,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-13,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-24,['amendment-failure'],IL,103rd +Assigned to Police & Fire Committee,2024-04-15,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Financial Institutions; 006-000-000,2024-04-10,[],IL,103rd +Assigned to Insurance,2024-05-14,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-01,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-03-21,[],IL,103rd +Fiscal Note Requested by Rep. Sonya M. Harper,2024-04-18,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Chief House Sponsor Rep. Kevin Schmidt,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2024-04-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-15,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-12,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +First Reading,2024-05-20,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Third Reading - Passed; 052-003-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-03-13,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-21,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-12,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Environment and Conservation,2023-05-11,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 17, 2024",2024-04-16,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments:",2024-05-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2023-03-06,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 075-040-000,2023-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-04-11,[],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 111-001-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-04-12,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Chief House Sponsor Rep. Will Guzzardi,2024-04-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Do Pass Judiciary; 006-001-000,2024-03-13,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-18,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +Assigned to Executive Committee,2024-05-09,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 068-035-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +Chief House Sponsor Rep. Anna Moeller,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-16,[],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-22,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2023-04-27,[],IL,103rd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 007-005-000,2023-03-08,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-05-05,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 084-019-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Assigned to Executive,2023-05-09,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2023-03-30,[],IL,103rd +Assigned to Executive,2023-05-04,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-22,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Aaron M. Ortiz,2023-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +To Sex Offenses and Sex Offender Registration Subcommittee,2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-20,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-17,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-15,[],IL,103rd +Chief Senate Sponsor Sen. John F. Curran,2023-03-27,[],IL,103rd +First Reading,2024-05-02,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2023-03-21,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-14,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Counties & Townships Committee; 005-003-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Amy L. Grant,2023-03-16,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Theresa Mah,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-03-10,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-23,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-23,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-11,[],IL,103rd +Placed on Calendar - Consideration Postponed,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-23,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-08,[],IL,103rd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Norine K. Hammond,2024-04-12,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-13,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Hoan Huynh,2023-03-15,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-23,['amendment-failure'],IL,103rd +Referred to Assignments,2023-05-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-04-18,[],IL,103rd +Third Reading - Short Debate - Passed 086-015-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Michelle Mussman,2023-03-24,[],IL,103rd +Assigned to Executive,2023-04-25,['referral-committee'],IL,103rd +Chief Co-Sponsor Changed to Rep. Martin McLaughlin,2023-03-16,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Laura Fine,2023-03-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-21,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Chief Co-Sponsor Changed to Rep. Mary E. Flowers,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-08,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Javier L. Cervantes,2023-03-27,[],IL,103rd +Referred to Assignments,2023-05-04,[],IL,103rd +Removed Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Tabled,2023-03-21,['amendment-failure'],IL,103rd +Adopted Both Houses,2023-05-18,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-24,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Insurance Committee,2023-03-14,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-24,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Ann M. Williams,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-01,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-02-28,[],IL,103rd +Assigned to Local Government,2023-04-12,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Chief Co-Sponsor Changed to Rep. Barbara Hernandez,2023-02-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Assigned to Health and Human Services,2023-04-12,['referral-committee'],IL,103rd +First Reading,2023-04-12,['reading-1'],IL,103rd +Assigned to Transportation,2023-04-12,['referral-committee'],IL,103rd +House Floor Amendment No. 4 Rules Refers to Immigration & Human Rights Committee,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-28,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-03-21,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-23,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Postponed - Higher Education,2023-04-19,[],IL,103rd +Postponed - Executive,2023-04-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Do Pass Executive; 013-000-000,2023-04-20,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 014-008-000,2023-03-07,['committee-passage'],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2024-05-21,[],IL,103rd +Remove Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-01-26,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Stephanie A. Kifowit,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2023-03-22,[],IL,103rd +First Reading,2023-04-12,['reading-1'],IL,103rd +Re-assigned to Agriculture,2023-05-09,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-14,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2023-03-09,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +Third Reading - Short Debate - Passed 083-025-001,2023-03-23,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-24,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-02-22,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Removed Co-Sponsor Rep. Dagmara Avelar,2023-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-01,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2023-03-06,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-10,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Assigned to Licensed Activities,2023-04-12,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-23,[],IL,103rd +Assigned to Human Rights,2023-04-12,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2023-03-23,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Daniel Didech,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-02,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-04-11,['referral-committee'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 010-003-000,2024-04-03,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-16,[],IL,103rd +"Third Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +First Reading,2023-04-12,['reading-1'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-02,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +To Family Law & Probate Subcommittee,2024-02-21,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2024-04-19,[],IL,103rd +Third Reading - Passed; 037-020-000,2024-03-05,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-03-05,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Chief Sponsor Changed to Sen. Mary Edly-Allen,2023-10-24,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2023-04-27,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Murphy,2023-03-29,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-04-26,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-04-11,['referral-committee'],IL,103rd +Racial Impact Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-10-24,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-05-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Kevin John Olickal,2024-04-01,['amendment-introduction'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 068-034-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-15,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-04-15,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-02-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2024-04-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 009-000-001,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +First Reading,2024-05-02,['reading-1'],IL,103rd +Third Reading - Passed; 054-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading April 17, 2024",2024-04-16,['reading-3'],IL,103rd +Housing Affordability Impact Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Chief Sponsor Changed to Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-07,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Nicholas K. Smith,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jil Tracy,2024-04-10,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-07,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Belt,2023-03-30,['amendment-passage'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-16,[],IL,103rd +Chief Sponsor Changed to Sen. Ann Gillespie,2023-10-24,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-04-03,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-11,[],IL,103rd +Senate Committee Amendment No. 2 Adopted; Licensed Activities,2023-03-29,['amendment-passage'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +First Reading,2024-05-22,['reading-1'],IL,103rd +House Floor Amendment No. 5 Referred to Rules Committee,2024-04-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2023-03-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-10-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Kimberly Du Buclet,2024-05-14,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Chief House Sponsor Rep. Tony M. McCombie,2023-03-30,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +House Committee Amendment No. 4 Adopted in State Government Administration Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Dale Fowler,2023-05-05,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Anne Stava-Murray,2024-04-15,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-05-14,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-11,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-30,[],IL,103rd +Second Reading,2024-05-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-16,[],IL,103rd +Recalled to Second Reading,2023-04-27,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-10-25,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-21,[],IL,103rd +Resolution Adopted,2024-05-03,['passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2024-05-25,[],IL,103rd +First Reading,2023-04-12,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-09,[],IL,103rd +First Reading,2024-05-02,['reading-1'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-02-14,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-05-16,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-02-08,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Third Reading - Passed; 047-006-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2024-03-13,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-25,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-16,[],IL,103rd +Chief House Sponsor Rep. Ryan Spain,2023-03-30,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-25,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 014-000-000,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-15,[],IL,103rd +Chief Senate Sponsor Sen. Dale Fowler,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-08,[],IL,103rd +Recalled to Second Reading,2023-10-25,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Joyce,2023-03-30,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-04,[],IL,103rd +Chief House Sponsor Rep. Tony M. McCombie,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +First Reading,2024-05-20,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-04-17,[],IL,103rd +Assigned to Executive Committee,2023-04-11,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-08,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mike Simmons,2024-05-07,['amendment-introduction'],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-05-05,[],IL,103rd +Placed on Calendar Order of First Reading,2024-05-14,['reading-1'],IL,103rd +"Chief House Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2023-05-10,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-01,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-03-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-11,[],IL,103rd +To Subcommittee on CLEAR Compliance,2024-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Assigned to Executive,2023-05-02,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-02-27,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-10,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-05-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-02-27,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-18,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Hoan Huynh,2023-03-22,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Third Reading - Short Debate - Passed 098-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Assigned to Mental Health & Addiction Committee,2024-04-24,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 010-000-000,2024-05-16,['committee-passage-favorable'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-04-24,['referral-committee'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Pension Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-05-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2023-04-20,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2023-10-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-30,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2024-04-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-09,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Adopted Both Houses,2023-05-24,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-03,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-03-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-03,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-03-21,['amendment-passage'],IL,103rd +Waive Posting Notice,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-08,[],IL,103rd +Assigned to Education,2024-04-24,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2023-03-03,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-10,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-22,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Transportation: Vehicles & Safety,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-05-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-05-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 12, 2024",2024-03-07,['reading-2'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 014-000-000,2024-05-14,['committee-passage'],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 008-000-000,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2024-04-11,[],IL,103rd +Resolution Adopted; 056-000-000,2023-05-11,['passage'],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Assigned to Revenue,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-05-02,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-06,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Transportation: Vehicles & Safety,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2023-05-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +Chief House Sponsor Rep. Margaret Croke,2024-04-12,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-03-07,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Public Utilities Committee; 017-008-000,2024-04-15,['committee-passage-favorable'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Health and Human Services; 011-000-000,2024-04-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Bradley Fritts,2024-04-11,[],IL,103rd +Third Reading - Short Debate - Passed 078-027-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-10-03,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Chris Miller,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-06-10,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-24,[],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Marcus C. Evans, Jr.",2023-03-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Chief House Sponsor Rep. Anna Moeller,2024-04-10,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-02-17,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-10-23,[],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Energy and Public Utilities,2024-01-10,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-12,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4a,2024-04-17,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-28,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Assigned to Housing,2024-04-24,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Sue Rezin,2023-03-24,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2024-03-07,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-30,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 9, 2024",2024-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-14,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2024-03-06,['amendment-introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Dan Swanson,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jil Tracy,2024-04-10,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-04-18,['referral-committee'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2024-04-05,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2023-03-15,['amendment-introduction'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Agriculture; 012-000-000,2023-03-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2024-05-02,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Tracy Katz Muhl,2024-03-19,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-10,[],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kam Buckner,2024-05-07,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Assigned to Executive Committee,2023-05-16,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 008-000-000,2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2024-05-08,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Belt,2023-03-23,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Assigned to Labor & Commerce Committee,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-04-02,[],IL,103rd +Added as Chief Co-Sponsor Sen. Donald P. DeWitte,2024-05-14,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 31, 2023",2023-03-30,['reading-3'],IL,103rd +Motion to Suspend Rule 21 - Prevailed,2024-04-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-03-21,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-10,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-04-18,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-03-24,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-19,[],IL,103rd +"Senate Floor Amendment No. 1 To Subcommittee on Gaming, Wagering, and Racing",2024-05-01,[],IL,103rd +Chief Sponsor Changed to Sen. Doris Turner,2024-04-09,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Dagmara Avelar,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2024-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-03-14,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-23,[],IL,103rd +Chief House Sponsor Rep. Camille Y. Lilly,2024-04-12,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 31, 2023",2023-03-30,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-04-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-12,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2024-03-11,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2024-04-11,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. William ""Will"" Davis",2024-05-24,[],IL,103rd +Do Pass Executive; 011-000-000,2024-05-22,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Chris Miller,2024-04-30,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2024-05-03,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Do Pass / Short Debate Housing; 011-006-000,2023-04-26,['committee-passage'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2024-05-09,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Assigned to State Government Administration Committee,2023-04-11,['referral-committee'],IL,103rd +Arrived in House,2024-05-09,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Chief House Sponsor Rep. Joyce Mason,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-02,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 010-000-000,2023-04-26,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Patrick Windhorst,2024-04-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2024-05-01,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-04-17,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Chief House Sponsor Rep. Anna Moeller,2023-03-23,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-03-06,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Chief Sponsor Changed to Sen. Robert F. Martwick,2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-08,[],IL,103rd +Third Reading - Passed; 054-000-000,2024-05-09,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Assigned to Executive Committee,2024-04-15,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-29,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Karina Villa,2024-04-17,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-04-25,[],IL,103rd +Chief Senate Sponsor Sen. Rachel Ventura,2024-04-24,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-04-25,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Bill Cunningham,2023-03-20,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2023-03-31,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Licensed Activities,2024-04-10,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-30,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2024-05-08,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Third Reading - Passed; 053-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-25,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-04-20,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-23,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-04-11,['referral-committee'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-04-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-22,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-003-000,2023-04-19,['committee-passage'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-04-18,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2023-05-01,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2023-03-29,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Education,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-08,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-03-30,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-20,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Castro,2023-03-30,['amendment-passage'],IL,103rd +Assigned to Veterans' Affairs Committee,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-14,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Motion Filed to Table Rep. Brad Stephens,2024-04-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +House Committee Amendment No. 1 Adopted in Energy & Environment Committee; by Voice Vote,2024-04-30,['amendment-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Laura Faver Dias,2024-04-29,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Sonya M. Harper,2024-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Housing,2024-04-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-31,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-03-23,[],IL,103rd +Chief House Sponsor Rep. Suzanne M. Ness,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Environment and Conservation; 006-003-000,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-05,[],IL,103rd +Do Pass as Amended / Short Debate Energy & Environment Committee; 019-000-000,2024-04-30,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-03-06,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Housing; 017-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Laura Faver Dias,2024-03-21,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Paul Jacobs,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Laura Ellman,2024-04-03,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Margaret Croke,2023-03-23,[],IL,103rd +Third Reading - Passed; 038-017-000,2024-05-09,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-02,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-07,[],IL,103rd +Chief House Sponsor Rep. Hoan Huynh,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Arrived in House,2024-05-09,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-03-22,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-04-24,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2023-04-18,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Chief House Sponsor Rep. Gregg Johnson,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-03-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Second Reading,2024-05-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-10,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 042-016-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2024-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 062-042-002,2024-04-16,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-06,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2024-04-04,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-12,[],IL,103rd +Chief House Sponsor Rep. Lindsey LaPointe,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-15,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 009-000-000,2023-04-25,['committee-passage'],IL,103rd +Assigned to Cities & Villages Committee,2023-04-18,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2024-03-11,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2024-05-07,[],IL,103rd +Chief House Sponsor Rep. Mary Beth Canty,2024-04-12,[],IL,103rd +Third Reading - Passed; 054-001-001,2023-03-30,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Third Reading - Passed; 037-014-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 014-000-000,2023-04-25,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 22, 2024",2024-05-22,['reading-2'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-24,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2023-04-20,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2023-05-03,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-04-15,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 013-000-000,2023-04-25,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lilian Jiménez,2023-04-26,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2024-05-09,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-31,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-19,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-23,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-02,[],IL,103rd +Chief House Sponsor Rep. Patrick Windhorst,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-03-19,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-14,[],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-03,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2024-04-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Barbara Hernandez,2024-05-07,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 012-000-000,2024-05-09,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2024-04-30,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 2 Postponed - Licensed Activities,2024-04-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-04-26,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-04-27,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Chief House Sponsor Rep. Kam Buckner,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2024",2024-05-14,['reading-3'],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 017-008-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Chief House Sponsor Rep. Dagmara Avelar,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-05-20,[],IL,103rd +Recommends Do Pass Subcommittee/ Adoption & Child Welfare Committee; 004-000-000,2024-04-02,['committee-passage'],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Adopted; Senate Special Committee on Criminal Law and Public Safety,2023-03-22,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 074-036-001,2023-05-11,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-05-14,[],IL,103rd +Recalled to Second Reading,2024-05-02,['reading-2'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-24,[],IL,103rd +Assigned to Executive,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Assigned to Counties & Townships Committee,2023-04-11,['referral-committee'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-04-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-03-23,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 006-003-000,2023-04-18,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Recalled to Second Reading,2023-05-05,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Chief House Sponsor Rep. Abdelnasser Rashid,2023-03-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-23,[],IL,103rd +Assigned to Police & Fire Committee,2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-20,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-01,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-05-09,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-18,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-02-27,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2024-02-07,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-04-06,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-05-05,[],IL,103rd +Third Reading - Short Debate - Passed 085-021-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-02,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Janet Yang Rohr,2023-03-08,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-22,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Will Guzzardi,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-23,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Do Pass Executive; 007-002-000,2023-04-27,['committee-passage'],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-04-06,[],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-21,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-22,[],IL,103rd +"Removed Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-24,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Jenn Ladisch Douglass,2023-03-23,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2023-03-16,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Insurance Committee; 008-005-000,2023-03-14,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2023-04-27,['amendment-introduction'],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Norma Hernandez,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-02-28,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Do Pass Transportation; 017-000-000,2023-04-19,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 010-003-000,2023-03-01,['committee-passage'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-16,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2023-04-21,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-23,[],IL,103rd +Assigned to Higher Education,2023-04-26,['referral-committee'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-05-09,[],IL,103rd +Assigned to Health and Human Services,2023-04-12,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-22,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-01-27,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-04-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Counties & Townships Committee,2023-03-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Celina Villanueva,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2023-03-21,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-02,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 009-006-000,2023-03-23,['committee-passage-favorable'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-04-11,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 090-001-004,2024-04-17,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-15,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Eva-Dina Delgado,2023-04-28,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-02-22,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-24,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-04-20,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Assigned to Executive,2023-04-18,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jenn Ladisch Douglass,2023-03-21,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Tabled,2023-03-24,['amendment-failure'],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-000",2023-03-22,['committee-passage-favorable'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +Do Pass Executive; 010-003-000,2023-04-27,['committee-passage'],IL,103rd +Assigned to Executive,2023-05-09,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-14,[],IL,103rd +Assigned to Financial Institutions,2023-04-18,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-11-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-14,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Referred to Assignments,2024-05-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-15,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. William ""Will"" Davis",2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2023-04-19,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-21,['amendment-passage'],IL,103rd +Postponed - Licensed Activities,2023-04-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-04-20,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Chief Co-Sponsor Changed to Rep. Tony M. McCombie,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-03-21,[],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-23,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Jeff Keicher,2023-03-22,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Do Pass Health and Human Services; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2023-04-26,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-03-22,[],IL,103rd +Postponed - Education,2023-04-26,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Neil Anderson,2023-04-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-22,['amendment-failure'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-14,[],IL,103rd +Assigned to Public Health,2023-04-12,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-03-14,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Harry Benton,2023-03-21,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Martin J. Moylan,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Margaret Croke,2023-04-20,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 014-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Linda Holmes,2024-01-09,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 009-004-000,2023-03-22,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-05-13,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-10-24,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-03-05,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Referred to Assignments,2024-05-02,[],IL,103rd +Recalled to Second Reading,2023-10-25,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 012-000-000,2023-10-24,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-02-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-07,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Recommends Be Adopted Human Services Committee; 009-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Referred to Assignments,2024-05-22,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +"Alternate Chief Sponsor Removed Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-02-22,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Lightford,2023-04-27,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2024-05-15,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +3/5 Vote Required,2023-10-25,[],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-05-12,[],IL,103rd +To Higher Ed-Special Topics Subcommittee,2024-03-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Aquino,2023-10-25,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2024-05-20,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 006-002-000,2023-04-20,['committee-passage'],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +Arrive in Senate,2024-05-09,['introduction'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Local Government,2023-04-26,[],IL,103rd +"Senate Floor Amendment No. 5 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-05-25,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2024-04-18,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-01,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-15,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-10-25,['amendment-introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Chief Sponsor Changed to Sen. Dan McConchie,2024-04-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-15,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 012-000-000,2023-04-27,['committee-passage'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-01,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-15,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 013-000-000,2023-04-19,['committee-passage'],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Arrived in House,2024-03-05,['introduction'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-04-16,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Chief House Sponsor Rep. Hoan Huynh,2023-03-30,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-04-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-05-05,[],IL,103rd +Third Reading - Passed; 054-001-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Adopted; Villa,2023-03-30,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Fine,2023-03-23,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-03-13,[],IL,103rd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2024-05-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-01,[],IL,103rd +Referred to Assignments,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-04-24,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-05-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-30,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-25,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-02-08,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Patrick Windhorst,2023-03-31,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-03-30,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 20, 2024",2024-05-17,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-13,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-16,[],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 006-003-000,2024-04-03,['committee-passage'],IL,103rd +Chief House Sponsor Rep. Tony M. McCombie,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-05,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-05-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Licensed Activities,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-04-11,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-001,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 009-000-000,2023-10-24,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2023-03-16,[],IL,103rd +Removed Co-Sponsor Rep. Camille Y. Lilly,2024-03-22,[],IL,103rd +Judicial Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-04-15,[],IL,103rd +State Debt Impact Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-04-18,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Adam M. Niemerg,2023-03-24,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-27,[],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-05-16,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Resolution Adopted,2024-05-03,['passage'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-23,[],IL,103rd +Referred to Assignments,2024-05-02,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-07,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2023-03-30,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-29,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-04-21,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Energy and Public Utilities,2024-03-12,[],IL,103rd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-02-17,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-04-16,[],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-18,[],IL,103rd +Do Pass Education; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-03-23,[],IL,103rd +Assigned to Housing,2024-04-24,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2024-04-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-01-10,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-23,[],IL,103rd +Be Adopted State Government; 008-000-000,2023-05-17,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-21,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Dave Syverson,2023-05-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 3 Adopted,2024-04-10,['amendment-passage'],IL,103rd +"Chief House Sponsor Rep. William ""Will"" Davis",2024-04-12,[],IL,103rd +State Debt Impact Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Yolonda Morris,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-10-23,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Insurance Committee,2024-04-15,[],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-05-11,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-04-24,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Mary Beth Canty,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-03,[],IL,103rd +Chief House Sponsor Rep. Natalie A. Manley,2024-04-12,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Lilian Jiménez,2023-03-22,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-03-28,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-04-11,[],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 019-000-000,2024-05-02,['committee-passage'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2023-05-12,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2024-04-03,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Insurance,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-05-16,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-01,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-05-18,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-17,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +First Reading,2024-05-15,['reading-1'],IL,103rd +Adopted Both Houses,2023-05-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-03-21,[],IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Julie A. Morrison,2024-03-12,['amendment-introduction'],IL,103rd +Third Reading - Passed; 055-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Removed Co-Sponsor Rep. Lakesia Collins,2023-04-25,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-07-09,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-05-03,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2024-04-30,['committee-passage'],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-04-05,[],IL,103rd +Re-assigned to Special Committee on Criminal Law and Public Safety,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Erica Harriss,2023-03-30,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Resolution Adopted 111-000-000,2023-05-11,['passage'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-07,[],IL,103rd +Do Pass / Short Debate Housing; 011-006-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Transportation: Vehicles & Safety; 009-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Energy and Public Utilities,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-03-07,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 069-038-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2024-04-10,[],IL,103rd +Third Reading - Passed; 050-009-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Janet Yang Rohr,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-20,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-02-15,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 075-040-000,2023-05-16,[],IL,103rd +Chief House Sponsor Rep. Maura Hirschauer,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Transportation,2023-03-28,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-11,['referral-committee'],IL,103rd +Chief House Sponsor Rep. Abdelnasser Rashid,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2023-03-23,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Assigned to Education,2024-04-24,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-30,['amendment-failure'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-10,[],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-04-24,['referral-committee'],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-05-03,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Laura Ellman,2024-05-01,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Veterans' Affairs Committee; 014-000-000,2023-04-25,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-17,[],IL,103rd +Chief Senate Sponsor Sen. Celina Villanueva,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-10,[],IL,103rd +Chief House Sponsor Rep. Jay Hoffman,2024-04-15,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Chief Senate Sponsor Sen. Dave Syverson,2024-04-17,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-04-11,['referral-committee'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-04-24,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-04-26,[],IL,103rd +Chief Sponsor Changed to Sen. Adriane Johnson,2024-04-09,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Toro,2024-05-16,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-04-15,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; McClure,2023-03-23,['amendment-passage'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Chief House Sponsor Rep. Kevin John Olickal,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Martwick,2023-03-30,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Ventura,2023-03-31,['amendment-passage'],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2023-03-30,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 010-000-000,2023-04-26,['committee-passage'],IL,103rd +Chief House Sponsor Rep. Sonya M. Harper,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-07,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-15,['referral-committee'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Third Reading - Passed; 055-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2023-04-20,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Transportation; 017-000-000,2023-03-29,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2024-05-16,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-04-17,[],IL,103rd +Referred to Rules Committee,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Javier L. Cervantes,2023-10-20,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +Do Pass as Amended Insurance; 010-000-000,2024-05-08,['committee-passage'],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-17,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-26,['amendment-failure'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Referred to Rules Committee,2024-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Bennett,2023-03-29,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-02-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2023-05-16,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-21,[],IL,103rd +Chief House Sponsor Rep. Suzanne M. Ness,2023-03-30,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-24,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Environment and Conservation,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-17,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Joe C. Sosnowski,2024-05-06,['amendment-introduction'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-04-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Assigned to Higher Education Committee,2023-04-18,['referral-committee'],IL,103rd +Third Reading - Passed; 036-019-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 010-000-000,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-09,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Karina Villa,2023-03-21,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2024-05-15,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-03-30,['reading-2'],IL,103rd +Chief House Sponsor Rep. Hoan Huynh,2023-03-23,[],IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; D. Turner,2023-10-25,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Education,2023-03-28,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-04-19,['committee-passage'],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2023-05-09,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-02-14,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-05-04,['amendment-introduction'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Transportation: Vehicles & Safety,2024-04-16,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2023-04-20,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4a,2024-04-10,['amendment-failure'],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Pacione-Zayas,2023-03-29,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-31,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Chief House Sponsor Rep. Blaine Wilhour,2024-04-12,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-03-05,[],IL,103rd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2024-05-25,['amendment-failure'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-04-30,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Robert F. Martwick,2023-03-29,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-04-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-14,[],IL,103rd +Do Pass Local Government; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 018-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-03-12,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-04-11,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Rachel Ventura,2023-03-24,['amendment-introduction'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-09,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-05-05,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 23, 2023",2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Janet Yang Rohr,2024-04-09,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-21,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-04-11,['amendment-failure'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-15,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Dan McConchie,2024-03-07,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Adopted; Environment and Conservation,2023-05-11,['amendment-passage'],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 007-000-000,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-03,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2024-04-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-01,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Stoller,2023-03-30,['amendment-passage'],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-11,['referral-committee'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 008-004-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-03-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Assigned to Transportation,2023-04-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-03-24,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2023-05-04,[],IL,103rd +Removed Co-Sponsor Rep. Nabeela Syed,2023-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 010-001-000,2023-10-25,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-04-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-15,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-02-29,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Angelica Guerrero-Cuellar,2023-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-04-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Placed on Calendar - Consideration Postponed,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Steve Stadelman,2023-04-17,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-09,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Chief Co-Sponsor Changed to Rep. Camille Y. Lilly,2023-03-22,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-24,['reading-1'],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2024-04-04,[],IL,103rd +Third Reading - Short Debate - Passed 099-008-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2023-04-11,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Housing Affordability Impact Note Filed,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-04,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michelle Mussman,2023-05-18,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-04-26,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-05-06,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-15,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +Do Pass Judiciary; 009-000-000,2023-04-19,['committee-passage'],IL,103rd +Assigned to State Government,2023-04-18,['referral-committee'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Anthony DeLuca,2023-04-03,[],IL,103rd +House Committee Amendment No. 1 To Revenue-Income Tax Subcommittee,2024-03-08,[],IL,103rd +3/5 Vote Required,2023-10-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-04-27,[],IL,103rd +Referred to Assignments,2023-03-30,[],IL,103rd +Removed Co-Sponsor Rep. Dave Severin,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2023-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Abdelnasser Rashid,2023-03-21,['amendment-introduction'],IL,103rd +Do Pass as Amended Education; 009-005-000,2023-03-29,['committee-passage'],IL,103rd +Chief Co-Sponsor Changed to Rep. La Shawn K. Ford,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Chief House Sponsor Rep. Ann M. Williams,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Special Committee on Criminal Law and Public Safety,2023-05-09,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Chief Co-Sponsor Changed to Rep. Angelica Guerrero-Cuellar,2023-03-16,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-03-09,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-05,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Will Guzzardi,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-03,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2024-04-01,['amendment-introduction'],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Appropriations-General Services Committee,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2023-03-30,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-10-25,[],IL,103rd +Assigned to Environment and Conservation,2023-04-12,['referral-committee'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Standard Debate,2024-04-17,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-16,[],IL,103rd +Third Reading - Short Debate - Passed 071-038-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Assigned to Transportation,2023-04-12,['referral-committee'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-03,['amendment-passage'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-02-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael W. Halpin,2023-04-20,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Villivalam,2024-05-23,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-16,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Remove Chief Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Laura M. Murphy,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Counties & Townships Committee,2023-03-21,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-24,['amendment-failure'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-02,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2024-03-20,[],IL,103rd +Third Reading - Short Debate - Passed 098-009-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-02,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-02,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-04,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-22,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Transportation: Vehicles & Safety; 007-000-000,2023-03-22,['committee-passage'],IL,103rd +Postponed - Environment and Conservation,2023-04-20,[],IL,103rd +Placed on Calendar Order of First Reading,2023-05-03,['reading-1'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-02-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-16,[],IL,103rd +Recalled to Second Reading,2023-05-05,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-05-09,[],IL,103rd +Third Reading - Short Debate - Passed 077-026-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Koehler,2023-03-30,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-05-24,[],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-03-22,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-20,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-30,[],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-27,[],IL,103rd +Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-23,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Bob Morgan,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Justin Slaughter,2023-04-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-02-28,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 090-018-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-11,[],IL,103rd +Do Pass Health and Human Services; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-04-17,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-05-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Senate Floor Amendment No. 3 Adopted,2024-03-21,['amendment-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 018-008-000,2023-02-28,['committee-passage'],IL,103rd +Assigned to Ethics & Elections,2023-02-28,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2024-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Higher Education Committee,2024-04-18,[],IL,103rd +Resolution Adopted,2023-05-15,['passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-02,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-04-15,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-04-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-03-27,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 102-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-15,[],IL,103rd +Sponsor Removed Sen. Lakesia Collins,2024-04-25,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 009-000-000,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-01-25,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-15,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 025-000-000,2024-05-01,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Agriculture,2024-03-12,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2023-04-19,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Re-assigned to Judiciary,2024-01-10,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-19,[],IL,103rd +Resolution Adopted; 056-000-000,2023-05-24,['passage'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Insurance; 008-000-000,2024-04-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-01-05,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-02-27,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-03-06,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Insurance Committee; 015-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-05-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-12,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-05,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Assigned to Transportation,2024-04-30,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Agriculture; 012-000-000,2024-04-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Removed Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-05-02,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Labor,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-11,[],IL,103rd +Recalled to Second Reading,2024-04-12,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-01,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-02-23,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-05-07,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-22,['amendment-passage'],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-15,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-17,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-30,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Adoption & Child Welfare Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +"Senate Committee Amendment No. 3 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments:",2024-05-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-16,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-04-03,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-05-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dan McConchie,2024-04-17,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-03-27,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Referred to Assignments,2024-05-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-08,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-01,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Environment and Conservation,2023-03-23,[],IL,103rd +Chief House Sponsor Rep. Natalie A. Manley,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-11,[],IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8(b-1), the following amendments will remain in the Committee on Assignments:",2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-10,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-09,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Ram Villivalam,2023-03-22,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Insurance Committee; 015-000-000,2024-04-30,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-18,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Arrived in House,2024-05-03,['introduction'],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Labor,2023-03-21,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 005-000-000,2024-04-18,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-09,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-04-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Lightford,2023-03-30,['amendment-passage'],IL,103rd +Recalled to Second Reading,2024-04-12,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Energy and Public Utilities; 014-000-000,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Assigned to Appropriations-General Services Committee,2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Rezin,2024-05-16,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-14,[],IL,103rd +Chief Sponsor Changed to Sen. Chapin Rose,2024-04-18,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-09,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Kevin John Olickal,2023-03-22,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Joyce,2023-03-30,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-04-17,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 027-000-000,2024-04-15,['committee-passage-favorable'],IL,103rd +Chief House Sponsor Rep. Lance Yednock,2023-04-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-04-20,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. David Koehler,2023-03-24,['amendment-introduction'],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2024-02-29,[],IL,103rd +Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Remove Chief Co-Sponsor Rep. Lance Yednock,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Environment and Conservation,2023-03-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Castro,2023-03-31,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Third Reading - Passed; 042-016-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2024-04-09,['amendment-introduction'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-05-16,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +First Reading,2023-04-26,['reading-1'],IL,103rd +Do Pass State Government; 006-003-000,2023-05-04,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-04-11,[],IL,103rd +Assigned to Higher Education,2024-05-07,['referral-committee'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2024-04-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Chief House Sponsor Rep. Mary E. Flowers,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-01-19,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-14,[],IL,103rd +Chief Senate Sponsor Sen. Paul Faraci,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-18,['amendment-passage'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Judiciary - Civil Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-23,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Assigned to Cities & Villages Committee,2024-04-24,['referral-committee'],IL,103rd +Assigned to Education,2023-05-09,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Assigned to Licensed Activities,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2023-04-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Assigned to State Government Administration Committee,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-24,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2024-04-17,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-16,[],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2024-04-12,[],IL,103rd +Chief House Sponsor Rep. Laura Faver Dias,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-22,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Anne Stava-Murray,2024-03-21,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-01-18,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2023-04-20,['amendment-introduction'],IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-10,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 012-001-000,2024-05-02,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-11,['referral-committee'],IL,103rd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2024-05-14,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-01,[],IL,103rd +Assigned to Local Government,2023-04-18,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2024-03-13,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-03,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-16,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b1), the following amendment will remain in the Committee on Assignments.",2023-04-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Swanson,2024-04-19,[],IL,103rd +Assigned to Licensed Activities,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-29,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-04-27,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-28,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-04-12,[],IL,103rd +First Reading,2023-04-18,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-04-10,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-21,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2024-03-20,[],IL,103rd +Assigned to Executive Committee,2024-05-09,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 014-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 24, 2023",2023-03-23,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Local Government; 008-001-000,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Laura M. Murphy,2024-04-17,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2024-04-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-10,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 017-000-000,2024-05-02,['committee-passage'],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-07,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2024-04-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-30,['amendment-failure'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-04-03,[],IL,103rd +Third Reading - Short Debate - Passed 072-041-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2024-05-13,[],IL,103rd +Second Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-15,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-16,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-04-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Third Reading - Passed; 055-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-16,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 011-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-04-16,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Assigned to Revenue,2023-05-09,['referral-committee'],IL,103rd +Assigned to Licensed Activities,2023-04-25,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Norma Hernandez,2024-03-07,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Labor & Commerce Committee; 018-008-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2023-05-09,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-02,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-05-28,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-18,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-27,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Assigned to Health and Human Services,2023-04-12,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Financial Institutions and Licensing Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-02-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Third Reading - Short Debate - Passed 104-009-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Camille Y. Lilly,2023-03-15,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Immigration & Human Rights Committee; by Voice Vote,2023-03-01,['amendment-passage'],IL,103rd +House Committee Amendment No. 2 Adopted in Judiciary - Civil Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-06,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-01,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-09,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2024-03-28,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2023-03-22,['amendment-introduction'],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2024-04-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2024-02-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2024-04-12,[],IL,103rd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Robert ""Bob"" Rita",2024-05-21,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-16,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Resolution Adopted 088-003-000,2023-05-18,['passage'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-10,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Margaret Croke,2023-03-23,[],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Assigned to Human Services Committee,2024-04-15,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Chapin Rose,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-04-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Bob Morgan,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2024-05-16,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Robert F. Martwick,2023-03-24,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-15,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Assigned to Education,2024-04-24,['referral-committee'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-03,[],IL,103rd +Chief Senate Sponsor Sen. Robert F. Martwick,2024-04-17,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-16,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lilian Jiménez,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-05-09,[],IL,103rd +Assigned to Licensed Activities,2023-04-18,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Do Pass Public Health; 006-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-15,[],IL,103rd +Removed Co-Sponsor Rep. Jason Bunting,2024-04-03,[],IL,103rd +Adopted Both Houses,2023-05-18,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-03-06,[],IL,103rd +Chief Senate Sponsor Sen. Jason Plummer,2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-03-15,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Motion Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Recalled to Second Reading,2023-10-26,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Personnel & Pensions Committee,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-05-14,['amendment-introduction'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-25,[],IL,103rd +Postponed - Insurance,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Removed Co-Sponsor Rep. Bradley Fritts,2024-03-04,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 017-010-000,2024-03-13,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-03-30,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-11,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-22,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-19,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-10-23,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-01,[],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2024-02-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Labor & Commerce Committee,2024-04-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-23,[],IL,103rd +Third Reading - Short Debate - Passed 103-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2023-03-27,[],IL,103rd +Second Reading - Standard Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-02-20,[],IL,103rd +Resolution Adopted; 057-000-000,2024-05-26,['passage'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-04-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Referred to Assignments,2023-03-30,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-05-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-05-16,[],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2023-05-09,['amendment-introduction'],IL,103rd +Referred to Revenue & Finance Committee,2024-03-05,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-11,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Sara Feigenholtz,2023-03-24,['amendment-introduction'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-07,[],IL,103rd +Assigned to Revenue,2023-05-09,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-07,[],IL,103rd +3/5 Vote Required,2023-10-25,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2023-10-25,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-24,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 010-000-000,2024-04-18,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-02-16,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2023-04-18,['amendment-introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2023-03-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Ellman,2023-02-21,[],IL,103rd +Motion to Reconsider Vote - Withdrawn Rep. Daniel Didech,2024-04-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-29,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Financial Institutions,2023-04-25,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; 009-000-000,2023-03-08,['amendment-passage'],IL,103rd +Third Reading - Passed; 053-002-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-02,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Pension Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-04-18,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Revenue; 006-000-000,2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2024-05-22,['reading-1'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-15,[],IL,103rd +Chief Senate Sponsor Sen. Mike Porfirio,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-08,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-15,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Adam M. Niemerg,2023-03-31,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-15,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2023-04-12,['referral-committee'],IL,103rd +Chief Co-Sponsor Changed to Rep. Justin Slaughter,2023-03-22,[],IL,103rd +Judicial Note Requested by Rep. Rita Mayfield,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2023-05-03,['amendment-introduction'],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +State Debt Impact Note Filed,2023-03-16,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Amy Elik,2024-04-15,['amendment-introduction'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-12,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +House Committee Amendment No. 3 Filed with Clerk by Rep. La Shawn K. Ford,2024-03-22,['amendment-introduction'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-04-11,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-03-13,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-07,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Agriculture & Conservation Committee; 007-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-24,['amendment-failure'],IL,103rd +Assigned to Executive,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-04-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Assigned to Executive Committee,2023-04-11,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-04-18,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-22,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-21,[],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-02-08,[],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2023-03-27,[],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-02-22,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-11-13,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-14,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-05-12,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Adopted by Voice Vote,2023-05-08,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Assigned to Transportation,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Re-assigned to Executive,2023-11-09,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-11-07,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Transportation: Vehicles & Safety; 011-000-000,2024-05-01,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Chief House Sponsor Rep. Laura Faver Dias,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-17,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Assigned to Veterans' Affairs Committee,2024-04-24,['referral-committee'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2024-05-02,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-09-21,[],IL,103rd +Assigned to Licensed Activities,2023-04-12,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2023-03-06,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-28,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-24,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-04-26,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-29,[],IL,103rd +Be Adopted Human Rights; 006-000-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-16,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Gaming Committee,2024-05-23,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-04-20,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-03-22,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 010-004-000,2024-04-03,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 086-018-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-19,[],IL,103rd +Third Reading - Passed; 039-020-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended / Short Debate Public Health Committee; 005-003-000,2023-03-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-17,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2024-05-08,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-10-18,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-15,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-03-14,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 013-000-000,2024-05-21,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-14,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Added Co-Sponsor All Other Members of the House,2023-03-15,[],IL,103rd +House Committee Amendment No. 2 Adopted in Executive Committee; by Voice Vote,2024-04-17,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-05-26,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-14,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-05-17,[],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2024-04-24,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-23,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Bob Morgan,2024-04-15,['amendment-introduction'],IL,103rd +Pension Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-10,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Chief Senate Sponsor Sen. Laura M. Murphy,2024-04-24,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Assigned to Licensed Activities,2024-04-24,['referral-committee'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Chief House Sponsor Rep. Travis Weaver,2024-04-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +Assigned to Education,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-09-21,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lance Yednock,2024-04-26,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-23,['amendment-introduction'],IL,103rd +Sponsor Removed Sen. Patrick J. Joyce,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-17,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-29,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-08,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-04-12,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-23,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-05-22,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 093-014-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-13,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-03-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-11-07,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Assigned to Health and Human Services,2024-04-30,['referral-committee'],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 012-000-000,2024-04-17,['committee-passage'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-02,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-10,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-09,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Resolution Adopted by Voice Vote,2023-03-15,['passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-04-29,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2023-05-16,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-05-09,[],IL,103rd +Removed Co-Sponsor Rep. Mark L. Walker,2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-15,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-05-17,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Adopted Both Houses,2023-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-04-04,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2023-04-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-11-13,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-21,[],IL,103rd +First Reading,2024-05-01,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-02-27,[],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-11-08,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-06,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Gaming Committee; 010-005-000,2024-05-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-15,[],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +Do Pass State Government; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-14,[],IL,103rd +Do Pass Higher Education; 009-000-000,2024-05-08,['committee-passage'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Curtis J. Tarver, II",2024-05-21,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2023-05-11,[],IL,103rd +Do Pass Transportation; 013-000-000,2024-05-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-09,['amendment-failure'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-03-21,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-12,['amendment-passage'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Dale Fowler,2024-04-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Tom Bennett,2024-05-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2024-04-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-15,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Do Pass Health and Human Services; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-02-08,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-05-19,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2024-05-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-16,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Camille Y. Lilly,2023-03-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-04-18,['amendment-introduction'],IL,103rd +Third Reading - Passed; 057-001-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-17,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-12,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-30,[],IL,103rd +Third Reading - Short Debate - Passed 100-000-001,2024-04-18,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-05-21,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 013-000-000,2024-04-03,['committee-passage'],IL,103rd +Third Reading - Passed; 050-001-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Postponed - Education,2024-04-30,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2023-03-27,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Labor & Commerce Committee,2024-04-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Hoan Huynh,2023-03-15,['amendment-introduction'],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-27,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2023-05-03,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-14,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-02-16,[],IL,103rd +Waive Posting Notice,2023-04-26,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Javier L. Cervantes,2023-04-25,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Executive,2023-03-30,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-05-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-02-14,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-03-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-11,['reading-2'],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Arrive in Senate,2023-05-18,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 098-011-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-10-25,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 010-005-000,2024-05-01,['committee-passage'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-04-24,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2024-03-07,[],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-04-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-03-22,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-01-18,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-12,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 010-000-000,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-20,[],IL,103rd +Chief House Sponsor Rep. Kevin John Olickal,2023-03-31,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-09,[],IL,103rd +Referred to Rules Committee,2023-04-26,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Rachel Ventura,2023-03-30,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-29,[],IL,103rd +Chief House Sponsor Rep. Hoan Huynh,2023-03-31,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-04-26,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Labor; 011-003-000,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-04-16,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 2 Adopted; Environment and Conservation,2023-03-23,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-30,['amendment-failure'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2024-04-17,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-28,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Chief House Sponsor Rep. Michael J. Kelly,2023-03-28,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Willie Preston,2024-03-21,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Paul Faraci,2023-03-23,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Bill Cunningham,2023-03-29,['amendment-introduction'],IL,103rd +Third Reading - Passed; 057-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4a,2024-04-11,['amendment-failure'],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2023-04-20,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Do Pass / Short Debate Executive Committee; 012-000-000,2024-05-15,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-05-09,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Willie Preston,2024-04-03,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2023-04-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Environment and Conservation; 008-001-000,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-04-27,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-03-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-04-16,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-09,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Dale Fowler,2024-04-24,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Assigned to Human Services Committee,2024-04-24,['referral-committee'],IL,103rd +Do Pass / Short Debate Cities & Villages Committee; 010-000-000,2024-04-30,['committee-passage'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-16,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2024-05-07,[],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Chapin Rose,2024-04-18,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-05-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2023-03-22,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Assigned to State Government Administration Committee,2024-04-24,['referral-committee'],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2024-04-12,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +Third Reading - Passed; 054-001-000,2024-05-09,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Alternate Chief Sponsor Removed Rep. Kevin Schmidt,2024-04-12,[],IL,103rd +Fiscal Note Filed,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Sally J. Turner,2024-03-19,['amendment-introduction'],IL,103rd +Chief House Sponsor Rep. Amy Elik,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2024-05-01,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Swanson,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-04-10,[],IL,103rd +Assigned to Public Health Committee,2024-04-15,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 011-003-000,2024-03-13,['committee-passage'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-03-29,[],IL,103rd +Assigned to Higher Education Committee,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-04-27,[],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-04-24,['referral-committee'],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-04-11,['amendment-failure'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Assigned to Energy and Public Utilities,2024-04-30,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Omar Aquino,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 3 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 007-004-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-09,['reading-3'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Second Reading,2024-04-18,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-04-09,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2024-05-03,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2024-04-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-09,[],IL,103rd +Chief House Sponsor Rep. Kevin John Olickal,2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Recalled to Second Reading,2024-04-12,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2024-05-02,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lilian Jiménez,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-16,[],IL,103rd +Do Pass / Standard Debate Personnel & Pensions Committee; 005-003-000,2023-04-27,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2024-02-29,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 5, 2023",2023-05-04,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-01-19,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading,2024-05-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-03-21,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 5 Filed with Clerk by Rep. John M. Cabello,2024-04-17,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-05-22,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-08,[],IL,103rd +Do Pass Local Government; 010-000-000,2023-04-27,['committee-passage'],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-18,[],IL,103rd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Robert ""Bob"" Rita",2024-04-16,['amendment-introduction'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 073-037-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2024-05-01,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 005-000-000,2024-04-18,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-14,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2024-03-20,['committee-passage-favorable'],IL,103rd +Assigned to Transportation,2024-05-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-04-17,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 079-026-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-07,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Margaret Croke,2024-04-16,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Judiciary,2024-04-17,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-001,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-05-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +First Reading,2023-03-31,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 011-000-000,2024-04-04,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Sims,2024-05-26,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +"To Revenue - Sales, Amusement and Other Taxes Subcommittee",2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 013-002-000,2024-04-04,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Laura Faver Dias,2023-03-21,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Bryant,2023-10-26,['amendment-passage'],IL,103rd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Emil Jones, III",2023-04-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-10-23,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Assigned to Health Care Licenses Committee,2023-04-11,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-03,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-05,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Rita Mayfield,2024-04-16,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Remove Chief Co-Sponsor Rep. Dan Caulkins,2024-04-18,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Passed; 043-014-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-11,['reading-3'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Chief House Sponsor Rep. Anna Moeller,2023-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 007-003-000,2023-04-20,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-05-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2023-03-30,[],IL,103rd +Pension Note Filed,2023-03-21,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-02-08,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Do Pass / Short Debate Prescription Drug Affordability & Accessibility Committee; 013-000-000,2023-03-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-17,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 013-000-000,2023-04-19,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 008-001-000,2023-05-10,['committee-passage'],IL,103rd +Removed Co-Sponsor Rep. Jeff Keicher,2024-03-04,[],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Police & Fire Committee,2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-04-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-22,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments.",2023-04-25,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-03-29,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-03-30,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-02-20,[],IL,103rd +Chief Senate Sponsor Sen. Laura M. Murphy,2023-03-23,[],IL,103rd +Assigned to Licensed Activities,2023-04-12,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Adopted Both Houses,2024-05-26,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-05-02,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Public Health Committee; 007-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-02,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Assigned to State Government,2023-04-12,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 069-038-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-19,[],IL,103rd +Referred to Assignments,2023-03-30,[],IL,103rd +Racial Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Arrive in Senate,2024-04-30,['introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-02-07,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Resolution Adopted; 055-000-000,2024-05-26,['passage'],IL,103rd +Do Pass as Amended Financial Institutions; 005-003-000,2023-04-26,['committee-passage'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-14,['referral-committee'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-15,[],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-03-13,[],IL,103rd +Recalled to Second Reading,2023-03-31,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2023-03-23,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Abdelnasser Rashid,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-22,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Labor & Commerce Committee; 029-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-14,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-10-25,[],IL,103rd +Chief Senate Sponsor Sen. Linda Holmes,2023-03-27,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-29,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +Chief Co-Sponsor Changed to Rep. Dagmara Avelar,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-02-16,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-07,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-18,['referral-committee'],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +First Reading,2023-03-31,['reading-1'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Assigned to Judiciary,2024-05-07,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2023-05-02,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Standard Debate,2024-04-17,['reading-2'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-03-16,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-24,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-03-09,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-05-03,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-16,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-22,[],IL,103rd +Third Reading - Passed; 037-018-000,2023-10-25,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-02-28,[],IL,103rd +Second Reading,2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-31,[],IL,103rd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-16,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-14,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-15,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-15,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-08,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-04-17,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Do Pass Revenue; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Hoan Huynh,2023-03-22,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 18, 2023",2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-19,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Do Pass / Short Debate Housing; 011-006-000,2024-05-01,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-04-26,[],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments",2023-03-07,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Third Reading - Short Debate - Passed 097-015-000,2023-05-03,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-07-16,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-08,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 010-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Postponed - Energy and Public Utilities,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-18,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Mark L. Walker,2023-02-28,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2023-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-03-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Windhorst,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-16,[],IL,103rd +House Floor Amendment No. 4 Rules Refers to Insurance Committee,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-21,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-05-11,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2024-05-15,[],IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Assigned to State Government Administration Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 013-000-000,2024-04-30,['committee-passage'],IL,103rd +Arrived in House,2024-04-17,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2024-05-02,[],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2024-04-12,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-05-17,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-04-25,[],IL,103rd +Assigned to Higher Education,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-04-24,['referral-committee'],IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-05-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-16,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 012-000-000,2024-05-17,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-10-23,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-05-12,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-04-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2023-05-24,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-21,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Referred to Rules Committee,2024-05-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2023-04-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Do Pass Local Government; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Postponed - Energy and Public Utilities,2023-03-23,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-13,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-18,[],IL,103rd +Arrive in Senate,2023-05-11,['introduction'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Abdelnasser Rashid,2024-05-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 2 Postponed - Insurance,2024-03-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-02-17,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +To Subcommittee on CLEAR Compliance,2024-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-08,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-16,[],IL,103rd +"Removed Co-Sponsor Rep. Maurice A. West, II",2023-01-27,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Counties & Townships Committee; 006-003-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-04-21,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-22,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-22,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-03-29,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-03-20,[],IL,103rd +Assigned to Executive,2024-05-07,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-04-06,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted - Referred to Floor,2023-03-07,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-10,[],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2023-03-22,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Do Pass Public Health; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 065-037-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-24,[],IL,103rd +Postponed - Health and Human Services,2023-04-19,[],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-23,[],IL,103rd +Waive Posting Notice,2023-05-09,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-09,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Linda Holmes,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-14,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-16,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +Assigned to Licensed Activities,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-06,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-03-29,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 063-038-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 5 Filed with Clerk by Rep. Mary E. Flowers,2023-03-21,['amendment-introduction'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-02-28,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-22,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-03-17,['amendment-introduction'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Do Pass Education; 013-000-000,2023-04-19,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-31,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Will Guzzardi,2023-03-22,[],IL,103rd +Assigned to State Government,2023-04-18,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-02-28,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-04-19,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-27,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety; 007-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Assigned to Energy and Public Utilities,2023-04-18,['referral-committee'],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Mary Beth Canty,2023-03-07,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 107-001-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-26,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-22,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-04-28,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-04-20,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Will Guzzardi,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Waive Posting Notice,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-16,[],IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Chief House Sponsor Rep. Justin Slaughter,2024-04-12,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-21,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-03-16,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-15,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 21, 2023",2023-05-11,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-23,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-14,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Joyce Mason,2023-03-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 102-001-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Assigned to Health and Human Services,2023-04-12,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-21,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 009-006-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2023-03-24,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-05-05,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-10-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-23,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-22,[],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 006-003-000,2023-03-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-03-25,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-03-10,[],IL,103rd +Third Reading - Short Debate - Passed 071-037-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-11,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2023-05-09,['amendment-introduction'],IL,103rd +Third Reading - Passed; 049-002-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Remove Chief Co-Sponsor Rep. Jawaharial Williams,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-15,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2023-03-14,[],IL,103rd +Removed Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-02,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Assigned to Senate Special Committee on Pensions,2023-04-12,['referral-committee'],IL,103rd +Referred to Assignments,2023-03-30,[],IL,103rd +Postponed - Executive,2023-04-20,[],IL,103rd +Do Pass Energy and Public Utilities; 016-000-000,2023-04-20,['committee-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +Chief House Sponsor Rep. Dagmara Avelar,2023-03-31,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Recalled to Second Reading,2023-04-27,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2023-04-26,['amendment-introduction'],IL,103rd +Assigned to Health Care Licenses Committee,2023-04-18,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-31,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Special Committee on Criminal Law and Public Safety,2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Don Harmon,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Chapin Rose,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mary Edly-Allen,2023-03-29,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-04-25,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Chief House Sponsor Rep. Lakesia Collins,2023-03-24,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-04-19,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-10,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-03-31,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Chief House Sponsor Rep. Rita Mayfield,2023-03-24,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Kam Buckner,2023-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Do Pass as Amended Environment and Conservation; 007-000-000,2023-05-11,['committee-passage'],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-02,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Revenue; 009-000-000,2024-03-22,[],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Robyn Gabel,2024-05-20,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Feigenholtz,2024-05-02,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-03-06,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-04-12,[],IL,103rd +Third Reading - Short Debate - Passed 098-007-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Recalled to Second Reading,2024-05-09,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Assigned to Police & Fire Committee,2023-04-18,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-13,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-05-02,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Appropriations-Elementary & Secondary Education Committee; 015-000-000,2024-05-25,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Tom Bennett,2023-03-22,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2024-04-09,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Chief House Sponsor Rep. Lindsey LaPointe,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Licensed Activities,2023-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-05-07,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +House Committee Amendment No. 2 Adopted in Adoption & Child Welfare Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Mike Simmons,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Education,2024-05-07,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 007-004-000,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2024-04-30,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Assigned to Police & Fire Committee,2023-04-11,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-03-20,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 008-000-000,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-04,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Third Reading - Passed; 057-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2024-05-14,[],IL,103rd +Chief Sponsor Changed to Sen. Jil Tracy,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Education,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-03-31,[],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2024-05-09,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Licensed Activities; 005-000-000,2024-04-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2024-05-13,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Labor; 011-001-000,2024-04-17,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Assigned to Executive,2024-04-30,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-04,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-04-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-20,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-11,[],IL,103rd +First Reading,2024-05-13,['reading-1'],IL,103rd +Assigned to Revenue,2024-04-24,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-03-26,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Koehler,2023-05-05,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2024-05-14,['reading-2'],IL,103rd +Arrived in House,2024-05-09,['introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-04-17,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 20, 2024",2024-05-17,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2024-05-13,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lance Yednock,2024-04-16,['amendment-introduction'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-04-15,['referral-committee'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Randy E. Frese,2024-04-12,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Insurance,2024-03-12,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-05-06,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2024-05-07,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-04-03,[],IL,103rd +Third Reading - Short Debate - Passed 075-037-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2024-04-11,[],IL,103rd +Chief House Sponsor Rep. Kevin John Olickal,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-01,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Ryan Spain,2023-05-03,['amendment-introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2024-03-11,['amendment-introduction'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-04-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anthony DeLuca,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Laura Ellman,2024-04-02,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 019-005-000,2024-05-01,['committee-passage'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura M. Murphy,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-11,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 066-038-002,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Joe C. Sosnowski,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-03,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-03-23,['amendment-introduction'],IL,103rd +Third Reading - Passed; 035-016-001,2023-03-24,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Bob Morgan,2023-03-31,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Sponsor Removed Sen. Michael E. Hastings,2024-03-13,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-04-11,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Tracy,2023-03-30,['amendment-passage'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-09,[],IL,103rd +Resolution Adopted,2024-04-11,['passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-03-23,[],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-10-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-05-14,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Lightford,2023-05-05,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-02-14,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-10-25,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 008-000-000,2024-05-23,[],IL,103rd +First Reading,2024-05-20,['reading-1'],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-07-18,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2024-05-13,[],IL,103rd +Third Reading - Passed; 052-003-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Environment and Conservation,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-03-22,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-04-16,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-25,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-05-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-02,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-02,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-16,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Assigned to Licensed Activities,2023-04-12,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. David Koehler,2023-04-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-11,[],IL,103rd +Third Reading - Passed; 044-012-000,2023-10-25,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-05-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sue Rezin,2023-03-30,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-03-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Chief House Sponsor Rep. Anne Stava-Murray,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-05-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-04-27,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 009-001-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Cunningham,2023-10-25,['amendment-passage'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-03,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Ventura,2023-05-11,['amendment-passage'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-04-11,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-05,[],IL,103rd +Do Pass as Amended Licensed Activities; 009-000-000,2023-03-30,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-25,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Removed Co-Sponsor Rep. Kelly M. Cassidy,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-02-23,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-16,[],IL,103rd +Chief Sponsor Changed to Sen. Jil Tracy,2024-04-10,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-04-05,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-02-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Recalled to Second Reading,2023-10-25,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dan McConchie,2024-04-16,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Murphy,2024-05-26,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mary Edly-Allen,2023-10-25,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Villivalam,2023-03-30,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2023-03-24,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-01,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-01,[],IL,103rd +Third Reading - Short Debate - Passed 091-009-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ann Gillespie,2023-03-27,['amendment-introduction'],IL,103rd +Assigned to Insurance,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-12,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-04,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Sharon Chung,2024-04-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-15,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-15,[],IL,103rd +Senate Floor Amendment No. 5 Referred to Assignments,2023-05-25,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Adriane Johnson,2023-04-12,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lindsey LaPointe,2023-03-16,[],IL,103rd +Chief Sponsor Changed to Sen. Patrick J. Joyce,2023-10-24,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-15,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-15,[],IL,103rd +Chief Senate Sponsor Sen. Willie Preston,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-16,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Local Government; 010-000-000,2023-04-27,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-02-21,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Chief House Sponsor Rep. Jehan Gordon-Booth,2023-05-08,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Recommends Be Adopted Judiciary - Civil Committee; 010-004-000,2024-03-13,['committee-passage-favorable'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Recommends Do Pass Subcommittee/ Higher Education Committee; 003-000-000,2024-04-03,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-07-18,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-05-05,[],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-05-22,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Adoption & Child Welfare Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-05-09,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-23,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-04-30,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-08,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-16,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2024-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2024-04-17,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-04-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Mary E. Flowers,2023-03-24,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-12,['referral-committee'],IL,103rd +Do Pass State Government; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-04,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2023-03-27,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-13,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-04-26,[],IL,103rd +Assigned to Health and Human Services,2023-04-18,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2024-04-04,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 056-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 065-039-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Assigned to Insurance,2023-04-12,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-03-24,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Elizabeth ""Lisa"" Hernandez",2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-05,[],IL,103rd +Assigned to Local Government,2023-04-12,['referral-committee'],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-10,[],IL,103rd +Assigned to Local Government,2023-04-12,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-03-05,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-02-22,[],IL,103rd +Remove Chief Co-Sponsor Rep. Will Guzzardi,2023-02-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-23,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-23,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-05-24,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-05-09,['amendment-introduction'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +"Removed Co-Sponsor Rep. Curtis J. Tarver, II",2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Lightford,2023-03-30,['amendment-passage'],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-08,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 010-005-000,2023-03-09,['committee-passage'],IL,103rd +Do Pass Judiciary; 009-000-000,2023-04-19,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Willie Preston,2023-04-28,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-24,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 087-015-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-09,[],IL,103rd +Postponed - Special Committee on Criminal Law and Public Safety,2024-05-01,[],IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2023-03-29,[],IL,103rd +Third Reading - Short Debate - Passed 101-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-10,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-05-09,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-15,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Do Pass Transportation; 017-000-000,2023-04-19,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-23,['amendment-passage'],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-21,[],IL,103rd +Referred to Assignments,2023-03-30,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 066-042-001,2023-03-23,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-03-21,[],IL,103rd +Removed Co-Sponsor Rep. La Shawn K. Ford,2024-05-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-02-16,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Daniel Didech,2023-03-16,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2023-04-21,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Remove Chief Co-Sponsor Rep. Jonathan Carroll,2023-04-19,[],IL,103rd +Do Pass as Amended / Short Debate Immigration & Human Rights Committee; 008-003-000,2023-03-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-16,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Hoan Huynh,2023-03-21,['amendment-introduction'],IL,103rd +Assigned to Local Government,2023-04-12,['referral-committee'],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 009-000-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-14,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Steve Stadelman,2023-04-20,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Neil Anderson,2023-04-20,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 083-015-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-04-18,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-15,[],IL,103rd +Do Pass Environment and Conservation; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 090-009-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-03,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 30, 2023",2023-03-29,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2023-04-19,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Agriculture & Conservation Committee,2023-03-22,[],IL,103rd +Third Reading - Passed; 058-000-000,2023-10-25,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-06,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Halpin,2023-03-29,['amendment-passage'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 018-010-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Home Rule Note Filed,2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-23,[],IL,103rd +Assigned to Local Government,2023-04-12,['referral-committee'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-21,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Human Services Committee,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-14,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Assigned to Ethics & Elections,2024-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-24,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dave Severin,2023-05-04,[],IL,103rd +Removed Co-Sponsor Rep. Tony M. McCombie,2023-03-16,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-03-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-15,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 088-015-000,2024-05-13,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-10-25,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Martin J. Moylan,2023-05-16,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 009-000-000,2023-04-25,['committee-passage'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Assigned to Cities & Villages Committee,2023-04-11,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-04-29,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2023-04-17,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Postponed - Education,2023-03-29,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-04-12,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Murphy,2023-03-29,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-04-20,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-13,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 013-000-000,2024-04-30,['committee-passage'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Assigned to Higher Education Committee,2024-04-15,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Assigned to Personnel & Pensions Committee,2023-04-11,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-04-10,[],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Emanuel ""Chris"" Welch",2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-06,[],IL,103rd +Assigned to Housing,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-04-12,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Transportation: Vehicles & Safety; 009-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-03-24,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-04-12,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 012-000-000,2023-04-25,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-01,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-001,2023-05-09,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2023-02-21,[],IL,103rd +Do Pass Education; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2024-05-08,['committee-passage'],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Curtis J. Tarver, II",2024-05-07,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Assigned to Counties & Townships Committee,2023-04-11,['referral-committee'],IL,103rd +Chief House Sponsor Rep. Joyce Mason,2024-04-11,[],IL,103rd +Assigned to Executive Committee,2024-05-13,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-02-05,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 8, 2024",2024-05-08,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Laura Faver Dias,2024-05-02,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-001,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-05-09,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Barbara Hernandez,2023-04-26,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2024-04-24,['committee-passage-favorable'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Assigned to Appropriations,2024-01-10,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Fred Crespo,2024-05-02,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2024-05-06,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-16,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-09,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-02,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-02-14,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-03-05,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-04-17,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Licensed Activities,2023-03-28,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 012-000-000,2024-04-30,['committee-passage'],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 016-000-000",2023-04-25,['committee-passage'],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-21,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-04-26,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Assigned to Licensed Activities,2024-04-30,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Second Reading,2023-03-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-08,['amendment-failure'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Assigned to Human Services Committee,2024-04-24,['referral-committee'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-15,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-03-08,['amendment-passage'],IL,103rd +Do Pass as Amended Judiciary; 006-002-001,2024-05-08,['committee-passage'],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Assigned to Health Care Licenses Committee,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2024-04-25,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Alternate Co-Sponsor Removed Rep. Janet Yang Rohr,2023-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-05-07,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Martwick,2023-03-30,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-30,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-05,[],IL,103rd +Recommends Be Adopted State Government Administration Committee; 009-000-000,2024-03-21,['committee-passage-favorable'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Motion Filed to Suspend Rule 21 Revenue & Finance Committee; Rep. Kam Buckner,2024-05-15,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-04-20,[],IL,103rd +House Committee Amendment No. 1 Adopted in Higher Education Committee; by Voice Vote,2024-05-09,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-30,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin Schmidt,2023-04-20,[],IL,103rd +Assigned to Human Services Committee,2024-04-24,['referral-committee'],IL,103rd +Recalled to Second Reading,2024-04-18,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-31,['amendment-failure'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-10-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-03-29,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-04-11,['referral-committee'],IL,103rd +Recalled to Second Reading,2024-05-02,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Transportation,2023-03-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-04-04,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-05-19,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Behavioral and Mental Health; 007-000-000,2024-04-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-04-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-10-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 055-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-01,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-02,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-12,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-03-13,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-02-15,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2024-05-02,['amendment-passage'],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Insurance Committee; 015-000-000,2024-04-02,['committee-passage'],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-29,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Resolution Adopted,2023-05-02,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Javier L. Cervantes,2024-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-18,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-01-19,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-03-14,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-05-02,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Third Reading - Passed; 054-001-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-06,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-15,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Robyn Gabel,2023-04-19,['amendment-introduction'],IL,103rd +Arrive in Senate,2023-05-04,['introduction'],IL,103rd +Assigned to Licensed Activities,2024-04-24,['referral-committee'],IL,103rd +Assigned to State Government Administration Committee,2024-04-24,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-19,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-04-18,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Do Pass Behavioral and Mental Health; 005-000-000,2024-05-15,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-15,[],IL,103rd +Chief House Sponsor Rep. Barbara Hernandez,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-04,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-06-10,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Judiciary,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-12,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-10,[],IL,103rd +Do Pass Energy and Public Utilities; 015-000-000,2024-05-02,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Labor; 014-000-000,2024-04-10,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-02,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Fiscal Note Requested by Rep. Ryan Spain,2024-03-20,[],IL,103rd +Assigned to Appropriations-General Services Committee,2024-03-05,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-01,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-19,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 057-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Judiciary,2024-01-10,['referral-committee'],IL,103rd +Assigned to Energy and Public Utilities,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-07-02,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-23,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Adriane Johnson,2023-04-12,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-12,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-04-27,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-04-26,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-10,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Third Reading - Passed; 057-002-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-02,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 009-001-000,2024-05-21,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-14,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Do Pass Transportation; 014-000-000,2024-05-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-06,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-22,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2024-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2024-04-02,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-04-29,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-01,[],IL,103rd +Arrive in Senate,2023-05-03,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 3 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Balanced Budget Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-04-15,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-04-02,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4a,2024-04-12,['amendment-failure'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-11,['amendment-passage'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-24,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-03-23,[],IL,103rd +Postponed - Executive,2023-03-30,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2024-04-23,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-15,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-17,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-03-07,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Michael W. Halpin,2023-04-12,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +Removed Co-Sponsor Rep. Dave Vella,2024-03-21,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-03-05,['amendment-passage'],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. William E Hauter,2024-04-17,[],IL,103rd +Placed on Calendar Order of First Reading,2023-05-04,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-04-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 009-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Third Reading - Short Debate - Passed 089-023-000,2023-05-03,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-04-11,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-15,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-09,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-15,[],IL,103rd +Assigned to State Government Administration Committee,2023-04-11,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-04-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2023-03-23,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Assigned to Labor & Commerce Committee,2023-02-28,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Health Care Licenses Committee,2023-05-02,[],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-23,[],IL,103rd +First Reading,2023-05-03,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Arrived in House,2023-10-25,['introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura Fine,2024-04-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2023-03-22,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-22,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-20,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Agriculture & Conservation Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-08,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Theresa Mah,2023-03-27,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +Do Pass Insurance; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-15,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Dale Fowler,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-05-13,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Cybersecurity, Data Analytics, & IT Committee",2023-03-22,[],IL,103rd +Do Pass Executive; 008-003-000,2024-05-22,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-03-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Bradley Fritts,2024-04-01,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-23,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Chief Co-Sponsor Changed to Rep. Lakesia Collins,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 2 To Teacher Policy & Research Subcommittee,2024-04-17,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-29,[],IL,103rd +Assigned to Judiciary,2023-04-18,['referral-committee'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Paul Faraci,2023-03-27,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-04-03,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-07,[],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-02,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Lightford,2023-03-30,['amendment-passage'],IL,103rd +Assigned to Transportation,2023-04-12,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Counties & Townships Committee,2023-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-03-05,[],IL,103rd +Do Pass Local Government; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Pacione-Zayas,2023-03-30,['amendment-passage'],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Third Reading - Short Debate - Passed 089-015-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-28,[],IL,103rd +Third Reading - Passed; 047-006-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-24,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-04-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Diane Blair-Sherlock,2023-04-05,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 056-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-02,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Do Pass State Government; 006-000-000,2023-04-20,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-03-16,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-17,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2023-05-12,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2023-04-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2023-03-29,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-14,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +Chief House Sponsor Rep. Anna Moeller,2023-03-30,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-05-03,[],IL,103rd +Do Pass Health and Human Services; 010-000-000,2023-04-26,['committee-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-04-17,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-24,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dave Severin,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Chief Senate Sponsor Sen. Dale Fowler,2023-03-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-23,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Thaddeus Jones,2023-04-03,[],IL,103rd +Do Pass Local Government; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-09,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Ethics & Elections,2024-01-31,[],IL,103rd +Third Reading - Passed; 040-019-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-25,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-05-06,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-10-25,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-03-23,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dagmara Avelar,2023-03-15,[],IL,103rd +Chief Senate Sponsor Sen. Laura M. Murphy,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Assigned to Appropriations,2023-04-18,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-09,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-04-20,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Porfirio,2023-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-19,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Senate Committee Amendment No. 4 Filed with Secretary by Sen. Mike Porfirio,2024-05-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2024-04-04,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-04-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-30,[],IL,103rd +Third Reading - Short Debate - Passed 092-017-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Senate Special Committee on Criminal Law and Public Safety,2023-03-22,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-20,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-08,[],IL,103rd +Do Pass as Amended Executive; 010-003-000,2024-05-22,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2024-05-01,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-17,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2024-05-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Assigned to Transportation,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-21,[],IL,103rd +Arrived in House,2024-04-18,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Adriane Johnson,2024-05-03,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-06,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-04-26,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Senate Special Committee on Pensions,2023-03-29,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-08,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2023-05-08,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-01,[],IL,103rd +Chief House Sponsor Rep. Jay Hoffman,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +First Reading,2023-03-28,['reading-1'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2023-05-17,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 013-000-000,2024-05-09,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2024-04-25,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-23,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 057-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Assigned to Human Services Committee,2023-04-18,['referral-committee'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-04-15,['referral-committee'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +3/5 Vote Required,2023-10-25,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-18,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2023",2023-03-21,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Energy and Public Utilities,2023-03-28,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 006-003-000,2024-05-01,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2023-04-17,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 012-000-000,2023-05-10,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Arrived in House,2024-04-18,['introduction'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-03-24,[],IL,103rd +Chief House Sponsor Rep. Martin J. Moylan,2024-04-11,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +"Added Alternate Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-20,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Agriculture,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Assigned to Judiciary - Civil Committee,2024-04-24,['referral-committee'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Transportation: Vehicles & Safety; 009-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Anna Moeller,2024-05-03,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-02,[],IL,103rd +Senate Floor Amendment No. 4 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 010-000-000,2024-04-10,[],IL,103rd +Do Pass as Amended / Short Debate Higher Education Committee; 012-000-000,2024-05-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-02-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Emanuel ""Chris"" Welch",2024-05-20,['amendment-introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +Chief House Sponsor Rep. Kelly M. Cassidy,2024-04-12,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2024-05-13,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-02-05,[],IL,103rd +Do Pass / Short Debate Housing; 017-000-000,2023-04-26,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Cervantes,2023-03-30,['amendment-passage'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 010-000-000,2023-04-26,['committee-passage'],IL,103rd +Assigned to Labor & Commerce Committee,2024-04-24,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 068-036-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-04-11,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-03,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-04-26,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Sponsor Removed Sen. Michael E. Hastings,2024-03-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-17,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Third Reading - Passed; 054-003-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Javier L. Cervantes,2023-10-23,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Assigned to Housing,2023-04-18,['referral-committee'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2024-05-02,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-03-30,[],IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-23,[],IL,103rd +Alternate Chief Sponsor Removed Rep. Tony M. McCombie,2023-03-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2024-03-21,[],IL,103rd +Assigned to Police & Fire Committee,2023-04-18,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-22,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Do Pass as Amended Executive; 010-003-000,2024-03-14,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2024-05-01,['committee-passage'],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lilian Jiménez,2023-05-02,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 018-000-000,2024-05-02,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. John M. Cabello,2024-04-16,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-05-01,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-16,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Postponed - Education,2023-03-29,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 2 Adopted; Executive,2023-03-08,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Johnson,2023-03-29,['amendment-passage'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-27,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2024-04-24,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2024-05-01,[],IL,103rd +Assigned to Human Services Committee,2023-04-18,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Transportation; 017-000-000,2023-03-29,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +State Mandates Fiscal Note Filed,2023-03-10,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-30,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2024-04-02,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-16,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Transportation,2024-03-12,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-03-07,[],IL,103rd +Chief House Sponsor Rep. Natalie A. Manley,2024-04-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-07,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 010-000-000,2023-03-23,[],IL,103rd +Chief Co-Sponsor Changed to Sen. Don Harmon,2023-03-23,[],IL,103rd +Re-assigned to Executive,2024-04-24,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 011-000-000,2023-04-18,['committee-passage'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2024-05-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-15,[],IL,103rd +Chief House Sponsor Rep. Ann M. Williams,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-02-16,[],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-02-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Assigned to Insurance Committee,2024-04-24,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 111-000-001,2023-03-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-03-25,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-15,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Assigned to Transportation,2023-04-12,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Margaret Croke,2023-04-20,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Assigned to Transportation,2024-04-30,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-04-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael W. Halpin,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-20,[],IL,103rd +Third Reading - Short Debate - Passed 067-034-003,2024-04-18,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-18,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-24,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2024-04-12,['amendment-introduction'],IL,103rd +Waive Posting Notice,2023-05-10,[],IL,103rd +Do Pass Education; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Removed Co-Sponsor Rep. Dan Caulkins,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Ventura,2023-03-31,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Terri Bryant,2023-02-21,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-30,[],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-19,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-15,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Peters,2023-03-23,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-21,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Kelly M. Cassidy,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 27, 2023",2023-04-26,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-23,[],IL,103rd +Pension Note Requested by Rep. Rita Mayfield,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2024-04-16,[],IL,103rd +Balanced Budget Note Filed,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-04-25,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-09,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Anna Moeller,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-02-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Bryant,2023-10-26,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Assigned to Local Government,2023-04-18,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2024-03-13,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-04-11,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-10-24,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-03-01,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +Pension Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Brad Stephens,2024-03-07,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-04-26,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2023-04-25,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-25,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Margaret Croke,2023-03-22,[],IL,103rd +Do Pass Licensed Activities; 008-000-000,2023-04-20,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-04-18,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-23,[],IL,103rd +Assigned to Energy & Environment Committee,2023-04-18,['referral-committee'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-31,[],IL,103rd +Referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2023-05-10,['amendment-introduction'],IL,103rd +First Reading,2024-05-22,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-21,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Justin Slaughter,2023-04-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +Do Pass Judiciary; 008-001-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-02-08,[],IL,103rd +State Debt Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-04-18,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Nabeela Syed,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Jay Hoffman,2023-03-15,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Suzanne M. Ness,2024-04-01,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-31,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Rachel Ventura,2023-10-25,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Anna Moeller,2023-03-23,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-05-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Chief House Sponsor Rep. Tony M. McCombie,2023-04-04,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Adopted Both Houses,2024-05-26,[],IL,103rd +Chief House Sponsor Rep. Lindsey LaPointe,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-14,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-03-09,['amendment-failure'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +"Placed on Calendar Order of First Reading May 1, 2024",2024-04-30,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Ann Gillespie,2023-03-27,[],IL,103rd +Assigned to Mental Health & Addiction Committee,2024-04-24,['referral-committee'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-04-30,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mark L. Walker,2024-04-15,[],IL,103rd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-12,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-11,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-17,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-05-14,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-29,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-04-25,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2023-04-24,['amendment-introduction'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Assigned to Local Government,2023-04-12,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-23,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-24,[],IL,103rd +Recalled to Second Reading,2023-03-31,['reading-2'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-04-02,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-01,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-18,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-05-16,[],IL,103rd +Racial Impact Note Filed,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2024-03-21,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-04-24,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2023-05-02,['referral-committee'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Second Reading,2023-05-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2024-05-10,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura Fine,2024-05-06,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-01-19,[],IL,103rd +Chief House Sponsor Rep. Kam Buckner,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-24,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 010-000-000,2024-04-10,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Third Reading - Short Debate - Passed 103-003-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Assigned to State Government Administration Committee,2024-04-24,['referral-committee'],IL,103rd +Do Pass as Amended Environment and Conservation; 009-000-000,2023-03-23,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michael J. Kelly,2023-04-26,[],IL,103rd +Do Pass Licensed Activities; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 30, 2024",2024-04-18,['reading-3'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Standard Debate,2023-04-27,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-03,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Maura Hirschauer,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Assigned to Licensed Activities,2024-04-30,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Chief House Sponsor Rep. Hoan Huynh,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-12,['amendment-passage'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Wayne A Rosenthal,2023-04-20,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2023-03-31,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 20, 2024",2024-05-17,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Governor Approved,2023-06-27,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-01-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Judiciary,2024-03-12,[],IL,103rd +Assigned to Cities & Villages Committee,2023-04-18,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Waive Posting Notice,2024-05-21,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +Chief House Sponsor Rep. Margaret Croke,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-12,[],IL,103rd +Third Reading - Short Debate - Passed 087-013-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Agriculture,2023-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2024-04-11,['amendment-failure'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Senate Committee Amendment No. 3 Assignments Refers to Executive,2024-04-17,[],IL,103rd +Third Reading - Passed; 048-002-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-03-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-04-04,[],IL,103rd +First Reading,2024-05-03,['reading-1'],IL,103rd +Senate Floor Amendment No. 3 Adopted,2024-04-11,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Emanuel ""Chris"" Welch",2024-05-20,[],IL,103rd +Resolution Adopted,2024-05-26,['passage'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-09,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Motion Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-04-17,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +House Floor Amendment No. 5 Referred to Rules Committee,2024-04-17,[],IL,103rd +Recalled to Second Reading,2024-04-18,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 093-012-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-19,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-04-27,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-20,[],IL,103rd +Do Pass Licensed Activities; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-16,['amendment-passage'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2024-05-02,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-03-12,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Aaron M. Ortiz,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-04-12,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2024-04-30,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2024-04-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-04-24,['referral-committee'],IL,103rd +Fiscal Note Requested by Rep. Anthony DeLuca,2024-04-10,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Chief House Sponsor Rep. Sue Scherer,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-13,['reading-2'],IL,103rd +Do Pass / Short Debate Public Health Committee; 009-000-000,2024-05-02,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. John M. Cabello,2024-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Nabeela Syed,2024-03-20,['amendment-introduction'],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2024-05-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +First Reading,2023-03-28,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Arrived in House,2024-05-09,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-29,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-04-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-05-11,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Hoan Huynh,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 091-012-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 010-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-09-27,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-15,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-11-07,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert F. Martwick,2023-05-24,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-11-13,[],IL,103rd +House Floor Amendment No. 2 Correctional Note Filed as Amended,2023-03-08,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-21,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-12,['amendment-passage'],IL,103rd +Third Reading - Passed; 051-002-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-15,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Do Pass / Short Debate Veterans' Affairs Committee; 013-000-000,2024-04-30,['committee-passage'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Do Pass Licensed Activities; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-04-19,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 012-001-000,2024-04-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-02,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 011-003-000",2024-05-01,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 To Subcommittee on Firearms,2024-03-14,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-03-29,[],IL,103rd +Sponsor Removed Sen. Mike Porfirio,2023-11-09,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-14,[],IL,103rd +State Mandates Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-02-28,[],IL,103rd +Do Pass Education; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-04-04,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-03-24,[],IL,103rd +Referred to Assignments,2024-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-16,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-04-17,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Fiscal Note Filed,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +"Third Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 014-000-000",2024-04-30,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-05-03,[],IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2024-05-14,['reading-2'],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-29,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-18,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-15,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 010-005-000,2024-05-01,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-24,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Do Pass Judiciary; 009-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-04,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2024-04-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Tom Bennett,2024-04-30,[],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2024-04-24,['referral-committee'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-24,['referral-committee'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Maura Hirschauer,2023-03-20,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Rachel Ventura,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 018-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-05-05,[],IL,103rd +Third Reading - Short Debate - Passed 084-023-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-15,[],IL,103rd +Assigned to Licensed Activities,2023-04-19,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-18,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 012-000-000,2023-02-15,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Executive Committee,2024-05-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-04-12,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Do Pass Licensed Activities; 006-000-000,2023-04-27,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-10-25,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-05-09,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +Do Pass Education; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-09,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-08,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Assigned to Health and Human Services,2023-04-18,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-04-04,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2024-04-11,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 018-010-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2023-02-28,[],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Third Reading - Short Debate - Passed 077-027-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Waive Posting Notice,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-05-16,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jeff Keicher,2024-04-15,['amendment-introduction'],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-03-29,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Rita Mayfield,2023-04-14,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-22,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-07,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-03-06,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-13,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2024-04-09,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Insurance Committee; 013-000-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-08,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Energy and Public Utilities,2023-05-09,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-05,[],IL,103rd +Third Reading - Passed; 051-002-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-01,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-05-02,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Local Government; 009-001-000,2023-04-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-03-13,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-03-30,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Third Reading - Passed; 037-010-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-26,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-04-12,[],IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. Lance Yednock,2024-04-19,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Recalled to Second Reading,2024-05-23,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-05-25,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-01-26,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-04-24,['referral-committee'],IL,103rd +House Committee Amendment No. 2 Adopted in Judiciary - Civil Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-30,['amendment-failure'],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-04-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Postponed - Education,2023-03-22,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments.",2024-04-11,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Environment and Conservation; 008-000-000,2024-05-09,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Referred to Assignments,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-16,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-02-23,[],IL,103rd +Referred to Assignments,2024-05-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jehan Gordon-Booth,2023-04-20,[],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2023-03-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2023-04-19,['committee-passage'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-05,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-15,[],IL,103rd +Assigned to Executive Committee,2023-04-18,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 077-026-000,2024-05-25,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-01,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Lightford,2023-05-05,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-02-08,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-30,['amendment-failure'],IL,103rd +Third Reading - Short Debate - Passed 098-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-05,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-15,[],IL,103rd +Chief Senate Sponsor Sen. Robert F. Martwick,2024-04-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-05-23,[],IL,103rd +Resolution Adopted 110-000-000,2024-05-02,['passage'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-16,[],IL,103rd +First Reading,2024-03-05,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-15,[],IL,103rd +Third Reading - Short Debate - Passed 103-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-04-16,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Katie Stuart,2024-04-15,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Gillespie,2023-10-25,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-04-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +3/5 Vote Required,2023-10-25,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-03-30,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-10-25,[],IL,103rd +Arrived in House,2023-10-25,['introduction'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-18,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2024-04-24,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2024-03-12,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-05-16,[],IL,103rd +Do Pass Licensed Activities; 008-000-000,2023-04-20,['committee-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-04-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-04-12,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-03-24,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-03-05,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-10-25,[],IL,103rd +"Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2023-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-10-25,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Tom Bennett,2024-04-30,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2024-04-18,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Cunningham,2023-10-25,['amendment-passage'],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Reported Back To Higher Education Committee;,2024-04-03,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 013-000-000,2023-04-19,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2023-10-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Third Reading - Passed; 050-002-000,2023-04-27,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 2 Tabled,2024-04-03,['amendment-failure'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +Chief House Sponsor Rep. Kelly M. Cassidy,2023-03-31,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 012-000-000,2023-04-26,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-02,[],IL,103rd +Chief Sponsor Changed to Sen. Cristina Castro,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Edgar Gonzalez, Jr.",2023-04-04,[],IL,103rd +Third Reading - Short Debate - Passed 074-035-000,2024-05-28,"['passage', 'reading-3']",IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-03-14,[],IL,103rd +Chief House Sponsor Rep. Carol Ammons,2024-05-09,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2023-04-20,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Chief House Sponsor Rep. Thaddeus Jones,2023-03-30,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2024-05-07,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-04-02,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-12,[],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-04-24,['referral-committee'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-03-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-15,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Recalled to Second Reading,2024-04-12,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-10,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Motion to Suspend Rule 21 - Prevailed 068-038-000,2024-05-20,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-24,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-04-20,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-03-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-11,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 010-000-000,2023-04-26,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-03-11,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 012-000-000,2024-05-15,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2024-04-18,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Chief Sponsor Changed to Sen. Patrick J. Joyce,2024-04-09,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-10,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Wayne A Rosenthal,2024-05-07,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-09,[],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +Fiscal Note Requested by Rep. Blaine Wilhour,2023-05-02,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Public Health,2024-04-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Lightford,2024-05-09,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-10,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Arrived in House,2024-04-18,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-05-09,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Insurance,2024-04-09,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2023-04-25,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Labor,2024-04-17,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-04-18,['referral-committee'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-30,['amendment-failure'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-15,[],IL,103rd +Waive Posting Notice,2024-05-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2024-04-11,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-30,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Severin,2024-05-07,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 011-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2024-05-07,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Licensed Activities; 009-000-000,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-02,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-05-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Eva-Dina Delgado,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-04-05,[],IL,103rd +Arrived in House,2024-05-03,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Do Pass as Amended / Short Debate Adoption & Child Welfare Committee; 014-000-000,2024-04-02,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 015-000-000,2024-05-01,['committee-passage'],IL,103rd +Senate Committee Amendment No. 2 Postponed - Education,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-06,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-31,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-15,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-24,[],IL,103rd +"Senate Floor Amendment No. 3 Pursuant to Senate Rule 3-8 (b1), the following amendment will remain in the Committee on Assignments.",2023-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-30,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2024-05-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 015-008-000,2023-04-19,['committee-passage'],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +Assigned to Housing,2023-04-11,['referral-committee'],IL,103rd +Chief House Sponsor Rep. Jenn Ladisch Douglass,2023-03-31,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-23,[],IL,103rd +Remove Chief Co-Sponsor Rep. Margaret Croke,2023-03-23,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-29,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Public Health,2024-04-11,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 075-040-000,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-24,[],IL,103rd +Chief Senate Sponsor Sen. Mike Porfirio,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-04-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-11,[],IL,103rd +Resolution Adopted 109-000-000,2024-05-28,['passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Willie Preston,2024-04-12,['amendment-introduction'],IL,103rd +First Reading,2024-05-13,['reading-1'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-04-18,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-30,['amendment-failure'],IL,103rd +Chief House Sponsor Rep. Daniel Didech,2023-03-31,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-30,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-31,[],IL,103rd +Recalled to Second Reading,2024-04-12,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Do Pass / Short Debate Executive Committee; 012-000-000,2024-05-15,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Holmes,2024-05-02,['amendment-passage'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 010-000-000,2023-03-23,['committee-passage'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-15,['referral-committee'],IL,103rd +Recalled to Second Reading,2024-04-18,['reading-2'],IL,103rd +Referred to Rules Committee,2024-05-13,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2023-05-03,[],IL,103rd +Chief House Sponsor Rep. Kam Buckner,2023-03-31,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Removed Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-03-20,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Lightford,2023-04-27,['amendment-passage'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-24,[],IL,103rd +Chief Senate Sponsor Sen. Dave Syverson,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-05-14,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-04-24,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-04-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-19,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Edgar Gonzalez, Jr.",2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-03-24,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2024-04-18,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2024-05-02,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Assigned to Higher Education Committee,2023-04-11,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-04-16,[],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Insurance Committee; 015-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-02-21,[],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-05-18,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Arrive in Senate,2023-05-04,['introduction'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-03-14,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Do Pass Higher Education; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-04-26,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-03-10,[],IL,103rd +Postponed - Judiciary,2023-03-08,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-04-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Hoan Huynh,2024-05-01,[],IL,103rd +Chief House Sponsor Rep. Robyn Gabel,2024-04-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Steve Stadelman,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Licensed Activities,2024-03-20,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-04-10,[],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Emanuel ""Chris"" Welch",2024-05-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Senate Committee Amendment No. 3 Postponed - Insurance,2024-03-12,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-03-21,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-18,[],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-10-23,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-05-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-04-04,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-05-21,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-02-17,[],IL,103rd +Assigned to Housing,2024-04-24,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-30,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-04-29,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-23,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-02-28,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Jay Hoffman,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Do Pass Judiciary; 006-000-000,2023-05-10,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-14,[],IL,103rd +Do Pass Local Government; 010-000-000,2023-04-27,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Do Pass Executive; 012-000-000,2023-05-10,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-02-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-20,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +House Committee Amendment No. 1 Fiscal Note Filed as Amended,2023-03-16,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-04-25,[],IL,103rd +House Floor Amendment No. 5 Referred to Rules Committee,2023-03-21,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-24,[],IL,103rd +Chief Senate Sponsor Sen. John F. Curran,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Chief Co-Sponsor Changed to Rep. Dave Severin,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Willie Preston,2023-04-21,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-16,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-15,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lakesia Collins,2023-03-08,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-04-25,[],IL,103rd +Do Pass State Government; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Jil Tracy,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-22,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-28,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-01,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2023-03-28,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-05,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Mattie Hunter,2023-03-27,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-10,[],IL,103rd +Assigned to Insurance,2023-04-18,['referral-committee'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-21,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-04-20,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Maurice A. West, II",2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-15,[],IL,103rd +Do Pass Health and Human Services; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2023-03-22,[],IL,103rd +Assigned to Local Government,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-01,[],IL,103rd +Placed on Calendar - Consideration Postponed,2023-04-18,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Assigned to Judiciary,2023-05-04,['referral-committee'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-07,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Assigned to Licensed Activities,2023-04-12,['referral-committee'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-07,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-23,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Human Rights,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-21,[],IL,103rd +Do Pass Senate Special Committee on Pensions; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-01-30,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-16,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Mike Simmons,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Postponed - Executive,2023-04-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 070-037-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-15,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-04-26,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2023-04-28,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-23,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2023-03-24,[],IL,103rd +Waive Posting Notice,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-03-02,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Linda Holmes,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-21,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Re-assigned to Executive,2023-05-18,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Paul Faraci,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2023-04-25,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-17,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Local Government,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-07,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Christopher Belt,2023-04-12,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-07,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-04-11,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-04-26,[],IL,103rd +Assigned to Local Government,2023-04-12,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-04-03,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-05-02,['amendment-introduction'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Transportation: Vehicles & Safety,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-10,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-22,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-16,[],IL,103rd +Passed Both Houses,2023-05-05,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-11,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-04-09,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Adoption & Child Welfare Committee; 014-000-000,2024-04-15,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-03-06,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-01,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-05-10,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-01,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Adoption & Child Welfare Committee; 014-000-000,2024-04-15,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-03-29,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-04-18,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2023-02-22,['amendment-introduction'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2024-04-30,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Do Pass / Short Debate Housing; 011-006-000,2024-05-01,['committee-passage'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 014-000-000,2024-05-01,['committee-passage'],IL,103rd +Referred to Assignments,2023-05-11,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-09,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Licenses Committee; 010-000-000,2024-04-11,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-03-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-05-14,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-03-21,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-24,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-02-21,[],IL,103rd +Assigned to Agriculture,2024-05-14,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading **,2024-04-10,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-08,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-05-23,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-04-27,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-05-14,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-02,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-30,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Postponed - Insurance,2024-03-13,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Assigned to Insurance Committee,2023-04-18,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2024-05-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-13,[],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-17,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +House Floor Amendment No. 2 Judicial Note Filed as Amended,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-02-09,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-04-17,[],IL,103rd +Chief House Sponsor Rep. Michelle Mussman,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-01,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Dale Fowler,2024-04-16,[],IL,103rd +Second Reading,2024-04-11,['reading-2'],IL,103rd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2024-04-24,[],IL,103rd +Placed on Calendar Order of First Reading,2023-05-04,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-18,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-18,['referral-committee'],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 058-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Emanuel ""Chris"" Welch",2024-05-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-15,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-05-01,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-04-16,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Assigned to Health Care Licenses Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-10-23,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-10-24,[],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Chief Co-Sponsor Changed to Sen. Karina Villa,2023-03-24,[],IL,103rd +Third Reading - Passed; 053-001-000,2023-10-25,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-10-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2023-04-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-18,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-16,[],IL,103rd +Third Reading - Passed; 040-015-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Assigned to Counties & Townships Committee,2023-04-11,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Holmes,2023-03-30,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-24,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Linda Holmes,2023-05-24,[],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-04-03,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-02-08,[],IL,103rd +Arrived in House,2023-04-27,['introduction'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-10-25,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-02,[],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-04-04,[],IL,103rd +Recalled to Second Reading,2023-05-25,['reading-2'],IL,103rd +Assigned to Executive,2023-04-18,['referral-committee'],IL,103rd +Do Pass Insurance; 008-000-000,2023-04-26,['committee-passage'],IL,103rd +Third Reading - Passed; 055-000-001,2023-03-30,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-01,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-05,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-04-19,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-04-11,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-03-30,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Anna Moeller,2023-05-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Ann Gillespie,2023-03-29,[],IL,103rd +Second Reading,2023-03-30,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-04-11,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-30,[],IL,103rd +To Family Preservation Subcommittee,2023-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-05-05,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-05-15,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Energy and Public Utilities; 010-000-000,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +House Committee Amendment No. 1 Adopted in Higher Education Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-30,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +Assigned to Cities & Villages Committee,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-02-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-04-24,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2023-04-14,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-02-22,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Judiciary,2023-03-28,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 012-000-000,2023-04-26,['committee-passage'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-20,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Simmons,2024-05-23,['amendment-passage'],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-16,[],IL,103rd +Referred to Rules Committee,2024-03-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2024-04-16,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2024-05-13,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 010-004-000,2024-04-03,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-16,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-10-25,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-02,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-25,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-23,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-21,[],IL,103rd +Chief House Sponsor Rep. Michelle Mussman,2023-03-30,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. Lance Yednock,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +House Floor Amendment No. 3 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-03-30,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Margaret Croke,2024-04-12,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2024-04-19,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Chief Senate Sponsor Sen. Lakesia Collins,2024-04-18,[],IL,103rd +Assigned to Appropriations,2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to State Government,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-05,[],IL,103rd +Arrive in Senate,2024-05-26,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-02-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-10,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2024-04-16,['amendment-introduction'],IL,103rd +Recalled to Second Reading,2024-05-16,['reading-2'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2024-05-14,['amendment-introduction'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Postponed - Revenue,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Public Health; 005-000-000,2024-04-10,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-03-06,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-18,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Do Pass Behavioral and Mental Health; 006-000-000,2024-05-08,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2024-03-14,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Lance Yednock,2023-04-04,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2023-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 012-000-000,2024-04-30,['committee-passage'],IL,103rd +First Reading,2024-05-13,['reading-1'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-02,['amendment-failure'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 007-003-000,2024-04-10,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +First Reading,2024-05-09,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Steven Reick,2024-05-16,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-11,['referral-committee'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2023-04-27,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-04-18,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-008-000,2024-05-01,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-04-24,['amendment-introduction'],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-24,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-09,[],IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-29,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Chief House Sponsor Rep. Laura Faver Dias,2023-03-31,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-04-18,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-04-24,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2024-05-14,['amendment-introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-02,[],IL,103rd +Do Pass Revenue; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Lance Yednock,2024-04-16,['amendment-introduction'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-11,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Carol Ammons,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-12,['amendment-passage'],IL,103rd +Assigned to Higher Education Committee,2024-04-15,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2024-04-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-10,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-04-25,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-04-20,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-04-20,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-24,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2024-05-23,[],IL,103rd +Third Reading - Short Debate - Passed 100-006-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Chief House Sponsor Rep. Sharon Chung,2024-04-12,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2023-04-18,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Chief House Sponsor Rep. Nabeela Syed,2023-03-31,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2024-04-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2024-04-11,[],IL,103rd +Do Pass Executive; 013-000-000,2024-05-22,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2024-05-01,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Sue Scherer,2023-04-25,[],IL,103rd +Chief House Sponsor Rep. Janet Yang Rohr,2023-03-31,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-09,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Education,2023-03-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 095-016-001,2023-05-09,"['passage', 'reading-3']",IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Charles Meier,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-11,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Steven Reick,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-03-14,[],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to State Government,2024-04-09,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2024-05-21,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-15,[],IL,103rd +Third Reading - Passed; 037-016-001,2023-05-05,"['passage', 'reading-3']",IL,103rd +Assigned to Judiciary - Civil Committee,2024-04-24,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Passed Both Houses,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-13,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Lightford,2023-04-27,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Assigned to Insurance,2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 3 Adopted,2024-04-12,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Referred to Rules Committee,2024-05-13,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 017-009-000,2023-04-26,['committee-passage'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Assigned to Insurance Committee,2024-05-13,['referral-committee'],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2023-04-20,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-05-28,['amendment-failure'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-05-16,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Postponed - Education,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-31,[],IL,103rd +Third Reading - Passed; 037-018-000,2024-05-02,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Laura Faver Dias,2023-03-30,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-03-22,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Assigned to Human Services Committee,2023-04-11,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-14,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 24, 2023",2023-03-23,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Ellman,2023-05-11,[],IL,103rd +Third Reading - Passed; 058-001-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2023-04-17,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Dave Severin,2024-05-07,[],IL,103rd +Assigned to Insurance Committee,2023-04-18,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 009-000-000,2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-05-07,[],IL,103rd +Arrived in House,2024-05-17,['introduction'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-04-25,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-03-23,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-04-20,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-14,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-08,[],IL,103rd +Removed Co-Sponsor Rep. Amy Elik,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-04,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Assigned to Health and Human Services,2023-04-18,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-04-14,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-16,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Camille Y. Lilly,2023-03-21,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2023-05-16,[],IL,103rd +Third Reading - Passed; 058-000-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Chief Co-Sponsor Changed to Rep. Michelle Mussman,2023-03-24,[],IL,103rd +Assigned to State Government,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Licensed Activities,2023-04-25,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-10,[],IL,103rd +Do Pass Insurance; 008-000-000,2023-04-26,['committee-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2023-05-19,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Tony M. McCombie,2023-03-15,[],IL,103rd +Do Pass Higher Education; 008-005-000,2023-05-10,['committee-passage'],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Higher Education,2023-04-25,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Sally J. Turner,2023-03-24,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-01,[],IL,103rd +Chief Senate Sponsor Sen. Steve McClure,2023-03-24,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Insurance Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-28,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Local Government; 009-000-000,2023-05-04,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-03-24,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2023-04-21,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Licensed Activities,2023-04-26,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2023-03-27,[],IL,103rd +House Committee Amendment No. 3 Filed with Clerk by Rep. Mary Beth Canty,2023-03-08,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-22,[],IL,103rd +Resolution Adopted 101-000-000,2023-05-24,['passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Public Safety and Infrastructure,2023-04-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-21,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Charles Meier,2023-03-22,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Assigned to Behavioral and Mental Health,2023-04-18,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-04-25,['amendment-passage'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +House Floor Amendment No. 5 Rules Refers to Immigration & Human Rights Committee,2023-03-22,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-22,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Fiscal Note Filed,2023-03-16,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-10,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Donald P. DeWitte,2023-04-12,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 013-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-04-25,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Justin Slaughter,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Willie Preston,2023-03-27,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Assigned to Local Government,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-02-08,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-16,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Jason Plummer,2023-04-18,[],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-26,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-01,[],IL,103rd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-22,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-23,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-21,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Do Pass Executive; 012-000-000,2023-05-10,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-02-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-15,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-26,[],IL,103rd +Assigned to Health Care Licenses Committee,2024-04-24,['referral-committee'],IL,103rd +Third Reading - Passed; 055-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-05,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2024-05-02,[],IL,103rd +"House Floor Amendment No. 3 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-22,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Chief House Sponsor Rep. Anna Moeller,2024-04-12,[],IL,103rd +Do Pass Energy and Public Utilities; 010-000-000,2024-05-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2024-05-09,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Assigned to Executive,2023-04-18,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2024-05-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-03-23,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-008-000,2024-05-01,['committee-passage'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Sponsor Removed Sen. Donald P. DeWitte,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-31,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-03,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kevin John Olickal,2023-03-15,['amendment-introduction'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Hoan Huynh,2023-04-20,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2023-04-21,['amendment-introduction'],IL,103rd +Assigned to Human Services Committee,2023-04-18,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Do Pass as Amended Executive; 010-001-000,2023-03-09,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-05-01,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-04-18,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Amy L. Grant,2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-05-16,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Financial Institutions and Licensing Committee,2024-05-13,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-15,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 015-000-000,2024-04-30,['committee-passage'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Javier L. Cervantes,2023-03-24,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2024-03-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jackie Haas,2024-05-08,[],IL,103rd +Chief House Sponsor Rep. Tony M. McCombie,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-03-14,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-11-01,[],IL,103rd +Second Reading - Short Debate,2024-05-14,['reading-2'],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Kam Buckner,2023-05-16,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Balanced Budget Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 010-000-000,2024-05-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-04-01,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Chief House Sponsor Rep. Dave Vella,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Sheehan,2024-04-29,[],IL,103rd +Chief House Sponsor Rep. Lance Yednock,2023-03-31,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-04-26,['committee-passage'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2024-05-16,['committee-passage'],IL,103rd +Chief House Sponsor Rep. Joe C. Sosnowski,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-24,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-04-20,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-31,[],IL,103rd +Recalled to Second Reading - Short Debate,2024-04-19,['reading-2'],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Revenue & Finance Committee; 019-000-000,2024-05-16,['committee-passage-favorable'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Matt Hanson,2023-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Third Reading - Passed; 042-016-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-20,[],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Cervantes,2023-03-30,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Energy and Public Utilities; 015-000-000,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 007-000-000,2023-03-23,[],IL,103rd +Chief House Sponsor Rep. Kelly M. Cassidy,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Third Reading - Passed; 058-000-000,2023-10-25,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +"Chief House Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-12,[],IL,103rd +Referred to Rules Committee,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2024-04-25,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-11,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-04-26,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-03-29,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 006-002-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Do Pass Transportation; 013-000-000,2024-05-01,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Assigned to Executive Committee,2023-04-11,['referral-committee'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2023-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-02-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Recalled to Second Reading,2023-03-23,['reading-2'],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +Fiscal Note Requested by Rep. Steven Reick,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Transportation; 017-000-000,2023-03-29,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-03-30,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-04-26,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Curtis J. Tarver, II",2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2024-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2023-03-24,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-10-23,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 010-000-000,2024-03-21,['committee-passage-favorable'],IL,103rd +Assigned to State Government Administration Committee,2023-04-11,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-29,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Eva-Dina Delgado,2024-05-07,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 010-000-000,2024-04-17,[],IL,103rd +Arrived in House,2024-04-17,['introduction'],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-03,[],IL,103rd +Chief House Sponsor Rep. Martin McLaughlin,2023-04-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-23,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2024-04-16,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 012-000-000,2023-03-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-04-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Postponed - Environment and Conservation,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Adam M. Niemerg,2024-05-08,['amendment-introduction'],IL,103rd +Alternate Chief Sponsor Changed to Rep. David Friess,2024-04-26,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Matt Hanson,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-03,[],IL,103rd +Assigned to Gaming Committee,2024-05-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-12,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Transportation,2024-03-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Brad Stephens,2023-03-21,[],IL,103rd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2023-05-24,['amendment-introduction'],IL,103rd +Judicial Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-21,[],IL,103rd +Assigned to Education,2024-04-24,['referral-committee'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of First Reading March 23, 2023",2023-03-22,['reading-1'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-08,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-04-19,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-02-16,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Joyce Mason,2023-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Referred to Assignments,2023-05-03,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-09,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-10-11,[],IL,103rd +Recalled to Second Reading,2023-05-25,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Do Pass Judiciary; 008-000-000,2023-04-26,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Chief House Sponsor Rep. Michael J. Kelly,2023-04-21,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-24,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lakesia Collins,2023-03-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-21,[],IL,103rd +Postponed - Local Government,2023-04-20,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-04-20,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-22,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Tony M. McCombie,2023-03-16,[],IL,103rd +Do Pass State Government; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-04-18,['referral-committee'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Assigned to Insurance Committee,2023-04-18,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2024-04-24,[],IL,103rd +Assigned to Public Health,2023-04-12,['referral-committee'],IL,103rd +"Chief Co-Sponsor Changed to Rep. Marcus C. Evans, Jr.",2024-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-16,[],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 014-000-000",2023-04-18,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-05-01,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-02,[],IL,103rd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-02-26,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-15,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-03-27,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Hoan Huynh,2023-03-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-26,['amendment-failure'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-03-30,[],IL,103rd +Assigned to Local Government,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-01,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Kam Buckner,2024-04-02,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Erica Harriss,2023-04-18,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2023-05-03,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Anna Moeller,2023-03-21,['amendment-introduction'],IL,103rd +Removed Co-Sponsor Rep. Lindsey LaPointe,2023-03-16,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-03,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Second Reading,2023-03-30,['reading-2'],IL,103rd +House Floor Amendment No. 1 Motion Filed to Table Rep. Abdelnasser Rashid,2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-04-04,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 22, 2024",2024-05-22,['reading-2'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-10-25,[],IL,103rd +Third Reading - Passed; 049-005-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Licenses Committee; 007-003-002,2023-05-03,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-21,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Third Reading - Passed; 055-001-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2023-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2023-03-23,[],IL,103rd +Arrive in Senate,2023-05-04,['introduction'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-15,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Do Pass Local Government; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-03,[],IL,103rd +Chief Senate Sponsor Sen. Laura M. Murphy,2023-03-27,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-23,[],IL,103rd +Recalled to Second Reading,2023-10-25,['reading-2'],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-05-13,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-10,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Postponed - Judiciary,2023-04-19,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-05-06,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Erica Harriss,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-04-11,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-04-20,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-05-10,[],IL,103rd +Assigned to Labor,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Pacione-Zayas,2023-03-30,['amendment-passage'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-04-15,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +First Reading,2023-03-28,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-15,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Assigned to Police & Fire Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-03-07,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Judiciary,2024-03-06,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-02,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Nabeela Syed,2023-03-06,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-04-02,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-05-04,[],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-04-24,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-002-000",2024-05-01,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Yolonda Morris,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-05-16,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-04-02,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-26,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Assigned to Insurance Committee,2024-04-24,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-05-03,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-20,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +Do Pass Judiciary; 008-001-000,2023-04-19,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-07,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Correctional Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Robert F. Martwick,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-03-14,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-04-26,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Assigned to Licensed Activities,2024-04-24,['referral-committee'],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Do Pass Licensed Activities; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-05-19,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Assigned to Health and Human Services,2023-04-25,['referral-committee'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 009-001-000,2023-03-23,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-04-16,[],IL,103rd +First Reading,2024-05-01,['reading-1'],IL,103rd +Senate Committee Amendment No. 4 Referred to Assignments,2024-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 22, 2024",2024-05-22,['reading-2'],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments:",2024-04-24,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-05-01,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-04-30,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-04,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-05-16,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Margaret Croke,2024-04-17,['amendment-introduction'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-09-27,[],IL,103rd +Resolution Adopted; 046-000-000,2023-05-19,['passage'],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2023-11-15,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-11-08,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2024-05-22,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-12,['reading-3'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2023-05-19,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mattie Hunter,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-04-04,[],IL,103rd +Assigned to Transportation,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-01,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-05-08,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-11-13,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-03-14,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-05-16,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2024-03-20,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-10-18,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Assigned to Insurance,2024-04-30,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-05-21,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-05-15,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-23,[],IL,103rd +Assigned to Local Government,2024-04-30,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Mark L. Walker,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-16,[],IL,103rd +Recalled to Second Reading,2024-04-17,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 095-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 5 Filed with Clerk by Rep. Mary E. Flowers,2023-03-09,['amendment-introduction'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Waive Posting Notice,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-18,['amendment-failure'],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-05-02,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-14,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-02-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-04-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-04-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-01,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Public Utilities Committee; 025-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Robert Peters,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tracy Katz Muhl,2024-04-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-04-15,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-29,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-29,[],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 021-000-000,2023-04-25,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Ventura,2023-03-31,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b1), the following amendment will remain in the Committee on Assignments.",2023-04-18,[],IL,103rd +Third Reading - Passed; 054-000-001,2023-05-11,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading,2023-10-26,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +Assigned to Energy and Public Utilities,2023-02-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2023-05-02,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-04-19,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Assigned to Transportation,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 009-003-000,2024-05-25,[],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-01,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Adam M. Niemerg,2023-03-06,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Tom Weber,2023-03-16,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Assigned to Agriculture,2023-04-12,['referral-committee'],IL,103rd +State Mandates Fiscal Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-15,[],IL,103rd +House Committee Amendment No. 3 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-02,[],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-10,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2024-05-22,[],IL,103rd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-27,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2024-05-07,['amendment-introduction'],IL,103rd +Assigned to Adoption & Child Welfare Committee,2023-04-11,['referral-committee'],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2024-03-12,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-26,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-20,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Assigned to Education,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-16,[],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-04-29,[],IL,103rd +Chief Senate Sponsor Sen. Steve Stadelman,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-05-20,[],IL,103rd +Racial Impact Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-07,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2023-03-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-14,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-04-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Re-referred to Assignments,2023-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Education,2023-04-18,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 010-005-000,2023-03-23,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-04-25,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 006-003-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-03-14,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-18,[],IL,103rd +Remove Chief Co-Sponsor Rep. Ryan Spain,2024-04-18,[],IL,103rd +Third Reading - Passed; 038-021-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2024-03-13,[],IL,103rd +Sponsor Removed Sen. Linda Holmes,2023-05-10,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-04-19,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-12,[],IL,103rd +Second Reading - Short Debate,2023-03-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-09,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Do Pass Revenue; 006-000-000,2023-05-10,['committee-passage'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Sonya M. Harper,2023-04-17,[],IL,103rd +Assigned to Executive,2023-04-18,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2023-05-17,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-05-03,[],IL,103rd +Fiscal Note Filed,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-29,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Executive Committee; 008-000-004,2023-10-24,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-18,[],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-000-000,2023-10-26,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-05-20,[],IL,103rd +Arrived in House,2023-10-25,['introduction'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-01,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-24,['reading-2'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2023-03-08,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 069-034-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-08,['reading-2'],IL,103rd +Second Reading,2023-04-26,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Rachel Ventura,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-16,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-31,[],IL,103rd +Racial Impact Note Requested by Rep. Rita Mayfield,2024-04-16,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-23,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-04-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mike Porfirio,2023-04-25,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Karina Villa,2023-04-27,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 085-026-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-04-28,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Emanuel ""Chris"" Welch",2024-05-20,['amendment-introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-01,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Patrick Sheehan,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-16,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2024-04-30,['reading-1'],IL,103rd +Assigned to Energy & Environment Committee,2024-04-15,['referral-committee'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 115-000-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2024-05-22,[],IL,103rd +"Effective Date June 27, 2023",2023-06-27,[],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Executive,2023-03-28,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-05-09,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-05-09,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 24, 2024",2024-05-21,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Third Reading - Passed; 038-018-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-02,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 012-000-000,2024-04-30,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Public Health,2023-03-28,[],IL,103rd +Assigned to Executive,2024-04-30,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Withdrawn by Sen. Mike Simmons,2023-03-31,[],IL,103rd +Referred to Rules Committee,2023-03-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2024-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2024-04-29,[],IL,103rd +Third Reading - Passed; 039-016-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-03-12,['amendment-passage'],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2024-01-31,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-08,[],IL,103rd +Third Reading - Passed; 058-001-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Judiciary,2024-03-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Senate Committee Amendment No. 3 Assignments Refers to Agriculture,2023-03-22,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 004-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Assigned to Public Utilities Committee,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Brad Stephens,2023-04-20,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Do Pass as Amended Local Government; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Morrison,2024-04-11,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-19,['amendment-failure'],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-04-18,[],IL,103rd +Removed Co-Sponsor Rep. Wayne A Rosenthal,2024-05-16,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-24,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-03-22,[],IL,103rd +Balanced Budget Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-30,[],IL,103rd +Re-assigned to Judiciary,2024-05-20,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Belt,2023-03-28,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2024-04-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-05-09,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-10,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 9, 2023",2023-05-08,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Revenue,2024-04-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Yolonda Morris,2024-05-02,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-01-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Charles Meier,2024-04-15,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-15,[],IL,103rd +Third Reading - Short Debate - Passed 108-001-002,2023-03-22,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2024-05-01,[],IL,103rd +Home Rule Note Requested by Rep. Anthony DeLuca,2024-04-10,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Adriane Johnson,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-03-20,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2024-05-01,['committee-passage'],IL,103rd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 005-000-000,2024-04-04,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2024-04-24,[],IL,103rd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Chief House Sponsor Rep. Matt Hanson,2024-05-13,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-03-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2024-05-01,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2023-05-17,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2024-05-16,[],IL,103rd +Assigned to Human Services Committee,2024-04-24,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-02,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Ram Villivalam,2024-05-01,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Environment and Conservation; 006-000-000,2023-03-30,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Committee Amendment No. 2 Adopted in Judiciary - Civil Committee; by Voice Vote,2024-04-03,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-04-27,[],IL,103rd +House Floor Amendment No. 2 Tabled,2024-04-18,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Lakesia Collins,2024-04-05,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 008-000-000,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Labor,2024-04-09,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-05-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 24, 2023",2023-03-23,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jason Bunting,2023-04-26,[],IL,103rd +Referred to Rules Committee,2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2023-03-29,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-07,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Fred Crespo,2024-05-15,[],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-16,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-04-27,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Patrick J. Joyce,2024-05-23,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 20, 2024",2024-03-14,['reading-2'],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Assigned to Energy and Public Utilities,2024-04-30,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2024-04-17,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Do Pass / Short Debate Appropriations-Public Safety Committee; 009-000-000,2024-05-15,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-05-22,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-30,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lance Yednock,2023-04-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-30,[],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Rules Committee; 004-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-05-12,[],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-20,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Financial Institutions,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-10,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2023-03-20,['committee-passage-favorable'],IL,103rd +Do Pass Health and Human Services; 010-000-000,2023-04-26,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-04-14,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-03-06,[],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2024-04-10,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-04-26,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 3 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 011-000-000,2024-04-10,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-02-16,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-03-07,[],IL,103rd +Judicial Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2023-02-28,['amendment-passage'],IL,103rd +Do Pass Education; 013-000-000,2024-05-07,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Do Pass Revenue; 006-000-000,2023-05-10,['committee-passage'],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Will Guzzardi,2024-04-16,['amendment-introduction'],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-04-05,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-03-07,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-05-28,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-10-25,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Adopted Both Houses,2023-05-24,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-05-09,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2023-03-20,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Executive Committee; 012-000-000,2024-05-22,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-15,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-05-05,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-23,[],IL,103rd +Assigned to Health Care Licenses Committee,2024-04-24,['referral-committee'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-04-25,['referral-committee'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2023-04-25,[],IL,103rd +Referred to Assignments,2023-05-18,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-03-21,[],IL,103rd +Do Pass / Short Debate Child Care Accessibility & Early Childhood Education Committee; 012-000-000,2024-05-02,['committee-passage'],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-05-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-05-10,['amendment-passage'],IL,103rd +House Floor Amendment No. 3 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-04-10,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-02-08,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-05-10,[],IL,103rd +Do Pass as Amended / Short Debate Insurance Committee; 009-005-000,2023-02-28,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +"Alternate Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2023-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-05-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2024-04-16,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Seth Lewis,2023-04-20,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Chief House Sponsor Rep. Margaret Croke,2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-05-18,[],IL,103rd +Do Pass Judiciary; 009-000-000,2023-04-19,['committee-passage'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-13,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Linda Holmes,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-05-09,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-23,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-03-13,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2023-04-18,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-05-28,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +House Floor Amendment No. 3 Adopted,2024-05-22,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-03-06,[],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Do Pass Licensed Activities; 006-000-000,2023-04-27,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Sara Feigenholtz,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-06,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Financial Institutions,2023-04-25,['amendment-passage'],IL,103rd +Assigned to Labor,2023-02-28,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-03-07,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-10,[],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-04-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-04-18,[],IL,103rd +Waive Posting Notice,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-10,[],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-26,['amendment-failure'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-03-05,[],IL,103rd +3/5 Vote Required,2023-10-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +Fiscal Note Filed,2023-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-29,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2024-03-14,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Counties & Townships Committee; 006-002-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-22,[],IL,103rd +Do Pass as Amended Education; 012-000-001,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 010-005-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Balanced Budget Note Requested by Rep. Kevin John Olickal,2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-04-25,[],IL,103rd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2023-10-26,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Margaret Croke,2023-03-22,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-31,[],IL,103rd +State Debt Impact Note Requested by Rep. Rita Mayfield,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 27, 2023",2023-04-26,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass Transportation; 013-000-000,2023-04-26,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Financial Institutions and Licensing Committee,2023-04-25,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Assigned to Financial Institutions,2023-04-18,['referral-committee'],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-02-08,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-16,[],IL,103rd +Waive Posting Notice,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-07,[],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 008-005-000,2023-04-25,['committee-passage'],IL,103rd +Third Reading - Passed; 055-001-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 037-017-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-16,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 016-000-000",2023-04-25,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-04-26,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2023-05-11,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-02-08,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2023-02-28,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-04-19,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-23,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-04-27,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-03-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-31,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-10-25,[],IL,103rd +First Reading,2024-05-20,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-04-18,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Appropriations-Health & Human Services Committee,2024-04-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 007-004-000,2023-05-17,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-15,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-15,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mattie Hunter,2023-04-26,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Postponed - Executive,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-19,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Re-assigned to Education,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-02-23,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-29,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-20,[],IL,103rd +Chief Senate Sponsor Sen. Michael E. Hastings,2023-03-29,[],IL,103rd +Chief Co-Sponsor Changed to Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Postponed - Transportation,2024-05-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Standard Debate,2024-04-18,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-01,[],IL,103rd +First Reading,2024-05-24,['reading-1'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-10-24,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-03-13,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2024-04-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +State Debt Impact Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-12,[],IL,103rd +Assigned to Counties & Townships Committee,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-03-24,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-10-25,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Police & Fire Committee; 008-004-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-17,[],IL,103rd +Assigned to Energy and Public Utilities,2024-04-24,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-04,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-11-15,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-04-18,[],IL,103rd +Chief Senate Sponsor Sen. Michael E. Hastings,2024-04-17,[],IL,103rd +Do Pass Health and Human Services; 014-000-000,2024-05-08,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-17,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-22,[],IL,103rd +Arrive in Senate,2024-05-02,['introduction'],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-10-23,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve McClure,2023-05-19,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-29,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-19,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-04-12,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-25,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Do Pass Transportation; 013-000-000,2024-05-01,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-15,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-11-14,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-04-02,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 013-000-000,2024-05-22,['committee-passage-favorable'],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Re-assigned to Labor,2023-05-02,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-04-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-02-22,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-13,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Tony M. McCombie,2023-03-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +To Job Growth & Workforce Development Subcommittee,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-05-09,[],IL,103rd +Arrive in Senate,2023-05-09,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. William E Hauter,2024-04-16,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-22,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-05-16,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-24,[],IL,103rd +Assigned to Agriculture,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-05-15,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +"Added Chief Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-28,[],IL,103rd +House Floor Amendment No. 5 Referred to Rules Committee,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-05-16,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2024-04-26,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-10-03,[],IL,103rd +Assigned to Executive,2023-05-17,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Adopted Both Houses,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Licensed Activities,2023-04-26,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-21,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Emanuel ""Chris"" Welch",2023-05-16,[],IL,103rd +Assigned to Revenue,2024-04-30,['referral-committee'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Patrick J. Joyce,2023-04-12,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-04-11,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-16,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Chief House Sponsor Rep. Carol Ammons,2023-03-31,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Withdrawn by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-03-21,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2024-05-01,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-08-30,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-30,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Waive Posting Notice,2023-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Environment and Conservation,2023-03-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jackie Haas,2024-05-01,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-15,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-03-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-04-20,[],IL,103rd +Reported Back To Revenue & Finance Committee;,2024-04-04,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Do Pass Licensed Activities; 007-000-000,2024-05-08,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Public Act . . . . . . . . . 103-0109,2023-06-27,['became-law'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Do Pass Transportation; 014-000-000;,2024-05-21,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-05-20,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2023-04-25,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2023-03-24,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Public Health; 007-000-000,2023-03-29,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 007-004-000,2023-05-17,['committee-passage'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-01-31,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-20,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-20,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-05,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2024-05-01,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-21,[],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 021-000-000,2024-04-30,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2024-03-27,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 013-000-000,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-05-26,[],IL,103rd +First Reading,2024-05-13,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-04-16,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-10,[],IL,103rd +Arrived in House,2024-05-09,['introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Assigned to Executive,2024-05-20,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Simmons,2023-03-31,['amendment-passage'],IL,103rd +"House Floor Amendment No. 4 Filed with Clerk by Rep. Robert ""Bob"" Rita",2024-04-17,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-04-18,[],IL,103rd +Correctional Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 3 Assignments Refers to Executive,2024-04-09,[],IL,103rd +Chief House Sponsor Rep. Jehan Gordon-Booth,2024-04-17,[],IL,103rd +"Chief House Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-18,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-20,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Senate Committee Amendment No. 2 Filed with Secretary by Sen. Napoleon Harris, III",2024-05-20,['amendment-introduction'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jennifer Sanalitro,2024-05-02,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2024-04-30,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2024-04-15,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-04-11,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-04-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2024-05-02,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2023-04-03,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-24,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Anthony DeLuca,2024-04-10,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2024-04-29,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-19,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 016-010-000,2023-03-07,['committee-passage'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-05-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-04-27,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-05-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-04-27,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sally J. Turner,2024-05-23,[],IL,103rd +Third Reading - Passed; 049-006-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-04-16,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 24, 2024",2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 3 Adopted,2024-03-12,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-12,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-05-20,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-008-000,2024-04-30,['committee-passage'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2024-04-18,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Gillespie,2023-03-30,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-17,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 014-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Chief House Sponsor Rep. La Shawn K. Ford,2024-04-12,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Home Rule Note Requested by Rep. Patrick Windhorst,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-10,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-01-19,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-09,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Police & Fire Committee,2023-04-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-08-12,[],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 016-000-000,2023-05-09,['committee-passage'],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 014-000-000,2024-05-02,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-12,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-03-22,[],IL,103rd +Chief House Sponsor Rep. William E Hauter,2024-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2023-05-01,[],IL,103rd +Assigned to Human Services Committee,2024-05-13,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2023-04-21,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Villa,2023-03-23,['amendment-passage'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Approved for Consideration Assignments,2023-11-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 010-003-000,2024-04-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-16,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-02-02,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2023-03-03,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +Postponed - Judiciary,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-15,[],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Human Rights,2023-04-27,['amendment-passage'],IL,103rd +First Reading,2023-04-12,['reading-1'],IL,103rd +Do Pass Executive; 012-000-000,2024-05-15,['committee-passage'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Removed Co-Sponsor Rep. Sonya M. Harper,2023-03-23,[],IL,103rd +Public Act . . . . . . . . . 103-0152,2023-06-30,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-04-26,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Correctional Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-23,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Ann M. Williams,2023-03-10,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kevin Schmidt,2023-03-07,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 079-029-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-10,[],IL,103rd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 010-005-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2023-03-08,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 101-000-002,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-23,[],IL,103rd +Do Pass Education; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2023-03-10,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +Third Reading - Short Debate - Passed 067-038-001,2023-03-16,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Adopted; Environment and Conservation,2023-04-27,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Joyce Mason,2023-03-14,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-05-10,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-14,['amendment-passage'],IL,103rd +Waive Posting Notice,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-08,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-04-20,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mark L. Walker,2023-04-24,['amendment-introduction'],IL,103rd +Do Pass Executive; 013-000-000,2023-05-04,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Michelle Mussman,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Sponsor Removed Sen. Mary Edly-Allen,2023-05-01,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-14,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2023-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-16,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-03-08,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2023-04-25,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Waive Posting Notice,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-05-03,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Health and Human Services,2023-05-16,['amendment-passage'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-21,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-003-000,2023-03-01,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Do Pass State Government; 006-000-000,2023-04-20,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-11,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-04-20,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Licensed Activities,2023-04-26,['amendment-passage'],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-26,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Dan Swanson,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-03-23,['amendment-passage'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-10,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Third Reading - Short Debate - Passed 072-040-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +"Senate Committee Amendment No. 2 Filed with Secretary by Sen. Napoleon Harris, III",2023-05-03,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-23,[],IL,103rd +Do Pass as Amended Licensed Activities; 008-000-000,2023-04-27,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2023-03-22,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Linda Holmes,2023-03-28,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-05-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Do Pass as Amended Judiciary; 008-000-000,2023-04-26,['committee-passage'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-03-29,[],IL,103rd +Do Pass as Amended Higher Education; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-04-20,['amendment-introduction'],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-04-26,['amendment-passage'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-01,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-23,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Insurance Committee; 014-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Do Pass Local Government; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-02-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +Chief Co-Sponsor Changed to Rep. Lakesia Collins,2023-03-24,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Sonya M. Harper,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2024-04-24,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Licensed Activities,2023-04-26,['amendment-passage'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-15,[],IL,103rd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2023-03-21,[],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-04-12,['referral-committee'],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2023-03-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-16,[],IL,103rd +Chief Co-Sponsor Changed to Sen. Meg Loughran Cappel,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-04-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Sims,2023-05-25,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2024-03-13,[],IL,103rd +3/5 Vote Required,2023-10-25,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2023-04-21,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-05-26,['reading-1'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-18,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-18,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2023-10-26,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Judiciary; 006-002-000,2023-03-29,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-19,['reading-1'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Patrick J. Joyce,2023-10-25,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-22,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 007-003-000,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-05-15,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-10-11,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 31, 2023",2023-03-30,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-10-25,['amendment-failure'],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Seth Lewis,2024-04-17,[],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Dennis Tipsword, Jr.",2023-04-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-04,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-20,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-05-09,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-17,[],IL,103rd +Chief House Sponsor Rep. Jonathan Carroll,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2024-05-23,[],IL,103rd +First Reading,2024-05-24,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Holmes,2023-03-30,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-05-25,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 006-003-000,2023-04-20,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-03-30,['amendment-failure'],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Sue Scherer,2023-10-31,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-01,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-08,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-02-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-26,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2023-05-03,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-05,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-19,[],IL,103rd +Assigned to Insurance Committee,2023-04-18,['referral-committee'],IL,103rd +Do Pass / Short Debate Cities & Villages Committee; 013-000-000,2023-04-25,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-15,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2024-05-15,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 010-005-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Chief Co-Sponsor Changed to Sen. Mattie Hunter,2023-03-30,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-16,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2023-05-24,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-05-05,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2023-03-10,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-12,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-30,[],IL,103rd +Do Pass as Amended / Short Debate Higher Education Committee; 008-004-000,2024-04-03,['committee-passage'],IL,103rd +Recalled to Second Reading,2023-10-25,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-04-04,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Michael W. Halpin,2023-05-08,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-03,['amendment-failure'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Assigned to Public Health Committee,2023-05-09,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-19,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-03-30,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will reamin in the Committee on Assignments.",2023-05-16,[],IL,103rd +Chief House Sponsor Rep. Dagmara Avelar,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2024-05-16,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-02,[],IL,103rd +3/5 Vote Required,2023-10-25,[],IL,103rd +Assigned to Insurance,2023-04-18,['referral-committee'],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2023-03-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Simmons,2024-05-23,['amendment-passage'],IL,103rd +Sponsor Removed Sen. Doris Turner,2023-04-13,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-05,[],IL,103rd +"Chief House Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lance Yednock,2023-04-20,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-05-16,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +Assigned to Higher Education Committee,2024-02-28,['referral-committee'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2023-04-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-04-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-02-23,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-04-14,[],IL,103rd +Do Pass as Amended Executive; 009-004-000,2023-05-10,['committee-passage'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +Do Pass as Amended Executive; 011-000-000,2024-05-15,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-01,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Third Reading - Short Debate - Passed 101-007-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-11,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2023-05-04,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-04-12,['amendment-failure'],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Re-assigned to Revenue,2024-02-20,['referral-committee'],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-04-12,[],IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. La Shawn K. Ford,2023-03-09,['amendment-introduction'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-04-11,[],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-02,[],IL,103rd +Passed Both Houses,2024-05-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-02-21,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. William ""Will"" Davis",2024-04-30,['amendment-introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lance Yednock,2024-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-03-14,[],IL,103rd +Referred to Rules Committee,2024-04-17,[],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Revenue & Finance Committee; 018-000-000,2024-03-22,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-02-22,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-11,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 072-037-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-23,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 025-000-000,2024-05-01,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-04-27,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-05-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2024-04-17,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-03-07,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-04-18,[],IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-02-17,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-04-16,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-05-09,[],IL,103rd +Assigned to State Government,2023-05-17,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-05-24,[],IL,103rd +Waive Posting Notice,2024-05-15,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-20,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-05-06,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Julie A. Morrison,2024-04-04,['amendment-introduction'],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-05-23,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-16,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-05-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-24,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-04-20,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-03-13,[],IL,103rd +Senate Committee Amendment No. 2 Held in Energy and Public Utilities,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-10,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Sent to the Governor,2024-06-26,['executive-receipt'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Third Reading - Short Debate - Passed 092-013-002,2024-05-17,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2024-05-08,['committee-passage'],IL,103rd +Assigned to Restorative Justice,2024-04-24,['referral-committee'],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-21,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-29,[],IL,103rd +Third Reading - Short Debate - Passed 105-008-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-04-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-16,[],IL,103rd +"Re-assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-30,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Chief House Sponsor Rep. Natalie A. Manley,2023-03-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 111-001-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary Beth Canty,2023-04-25,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2024-05-07,['amendment-introduction'],IL,103rd +Third Reading - Passed; 054-000-000,2024-05-02,"['passage', 'reading-3']",IL,103rd +Assigned to Insurance Committee,2023-04-18,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-05-13,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-26,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-15,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Public Health; 005-000-000,2024-04-17,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Third Reading - Passed; 057-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-14,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-04-18,['referral-committee'],IL,103rd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-31,[],IL,103rd +Chief House Sponsor Rep. Maura Hirschauer,2023-03-31,[],IL,103rd +Second Reading,2023-03-24,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-05-02,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Cunningham,2023-03-28,['amendment-passage'],IL,103rd +Adopted Both Houses,2024-05-28,[],IL,103rd +Do Pass / Short Debate Housing; 017-000-000,2023-04-26,['committee-passage'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Chief House Sponsor Rep. Anna Moeller,2023-03-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2023-04-20,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-04-24,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-14,[],IL,103rd +Assigned to Health and Human Services,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-03-29,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-29,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-04-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2024-04-09,[],IL,103rd +Removed Co-Sponsor Rep. Justin Slaughter,2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-03-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Villivalam,2024-05-16,['amendment-passage'],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-19,['reading-1'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-000-000",2024-05-08,['committee-passage-favorable'],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2024-05-08,['amendment-introduction'],IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2024-05-07,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Charles Meier,2023-04-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Alternate Co-Sponsor Removed Rep. Norma Hernandez,2023-04-12,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2024-04-24,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 22, 2024",2024-05-22,['reading-2'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Arrived in House,2024-05-03,['introduction'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Referred to Assignments,2024-05-09,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Abdelnasser Rashid,2023-04-20,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2024-05-23,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Assigned to Executive,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-04-20,[],IL,103rd +Third Reading - Passed; 051-001-000,2024-05-09,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Insurance; 008-000-000,2024-04-10,[],IL,103rd +First Reading,2024-05-03,['reading-1'],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 014-000-000,2024-04-30,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-09,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Education; 012-000-000,2023-03-29,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2024-05-23,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Chief House Sponsor Rep. Margaret Croke,2023-03-31,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2024-05-07,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-04-20,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-10,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Referred to Rules Committee,2024-05-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Chief House Sponsor Rep. Kam Buckner,2023-03-24,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-04-15,['referral-committee'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Do Pass / Short Debate Appropriations-Elementary & Secondary Education Committee; 014-000-000,2024-04-30,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-10,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2023-04-13,['amendment-introduction'],IL,103rd +Postponed - Executive,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-23,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Karina Villa,2024-04-30,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2024-05-01,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-11,['referral-committee'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +Remove Chief Co-Sponsor Rep. Dan Ugaste,2024-04-09,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-03,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 014-000-000,2024-05-01,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-05,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-05-16,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-12,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 009-000-000,2024-05-02,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 008-004-000,2024-05-21,['committee-passage'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Chief House Sponsor Rep. Jay Hoffman,2024-05-17,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-23,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Referred to Assignments,2024-05-01,[],IL,103rd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-04-30,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura Ellman,2024-05-21,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-20,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2024-04-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Mark L. Walker,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-05-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 24, 2023",2023-03-23,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-04-19,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-26,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-02-22,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-21,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-23,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Do Pass Public Health; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-04-25,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2023-03-23,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Correctional Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2023-04-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-23,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2023-03-27,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-000",2023-03-23,['committee-passage-favorable'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-24,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-24,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Bob Morgan,2023-04-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-03-23,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-15,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Waive Posting Notice,2023-05-10,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-07,[],IL,103rd +House Committee Amendment No. 1 Adopted in Public Health Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-04-20,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-22,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2023-04-19,['amendment-introduction'],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-24,[],IL,103rd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-05-04,['reading-1'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Chief Co-Sponsor Changed to Rep. Lilian Jiménez,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Removed Co-Sponsor Rep. Jed Davis,2023-02-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-05-13,[],IL,103rd +Referred to Assignments,2023-03-28,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-21,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-21,[],IL,103rd +Do Pass Education; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Villivalam,2023-10-25,['amendment-passage'],IL,103rd +Third Reading - Passed; 034-019-000,2023-05-25,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-23,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-04-20,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-03-21,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-24,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-20,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-05,[],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-22,[],IL,103rd +Fiscal Note Requested - Withdrawn by Rep. Lance Yednock,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Terri Bryant,2023-04-21,['amendment-introduction'],IL,103rd +Do Pass Transportation; 017-000-000,2023-04-19,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-05-24,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-10,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Second Reading,2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-04-03,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-04-11,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2023-03-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2023-03-07,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-24,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Chief Senate Sponsor Sen. Chapin Rose,2024-04-30,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-04,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 006-003-000,2024-04-18,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Transportation: Vehicles & Safety,2024-04-02,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-02-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 31, 2023",2023-03-30,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-12,[],IL,103rd +Assigned to Appropriations- Education,2023-04-12,['referral-committee'],IL,103rd +Do Pass Local Government; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-15,[],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 006-003-000,2023-04-27,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2023-04-20,['amendment-introduction'],IL,103rd +Postponed - Education,2023-04-26,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-03-10,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Villivalam,2023-05-25,['amendment-passage'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mary Edly-Allen,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-15,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-03-15,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Natalie A. Manley,2023-10-31,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-04-25,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Transporation,2023-04-25,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-02,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-09,['amendment-passage'],IL,103rd +Assigned to Human Services Committee,2024-02-29,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-05-04,[],IL,103rd +Third Reading - Passed; 036-015-000,2023-05-05,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-04-20,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-04-27,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-16,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-29,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-003-000,2023-04-26,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Assigned to Revenue,2023-05-09,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 081-027-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2024-05-25,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2023-04-25,['amendment-introduction'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-03-23,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-12,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-02-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Assigned to Labor & Commerce Committee,2024-05-13,['referral-committee'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Villivalam,2023-03-23,['amendment-passage'],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Eva-Dina Delgado,2023-04-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-03,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-16,[],IL,103rd +Chief Senate Sponsor Sen. Celina Villanueva,2024-04-19,[],IL,103rd +"House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-000",2023-03-22,['committee-passage-favorable'],IL,103rd +Pension Note Requested by Rep. Steven Reick,2023-05-17,[],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Suzanne M. Ness,2023-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2024-02-05,['amendment-introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-04-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Swanson,2024-05-01,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Camille Y. Lilly,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Local Government,2024-05-07,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Human Rights; 006-000-000,2023-03-30,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2024-05-03,[],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-14,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Burke,2023-05-19,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 010-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2024-05-16,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-07,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2023-04-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-01,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2023-05-02,[],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-04-27,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2023-04-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-04,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-02,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Paul Faraci,2024-05-17,[],IL,103rd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-21,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-23,[],IL,103rd +Chief House Sponsor Rep. Martin J. Moylan,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-03-24,[],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Agriculture; 012-000-000,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2023-10-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-04-25,[],IL,103rd +Assigned to Housing,2023-04-11,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-07,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 015-000-000,2024-05-01,['committee-passage'],IL,103rd +Recalled to Second Reading,2023-03-31,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sally J. Turner,2023-03-24,['amendment-introduction'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-04-19,['committee-passage'],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-29,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-20,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-05-02,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2024-05-14,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Tom Weber,2023-03-31,[],IL,103rd +Do Pass / Short Debate Cities & Villages Committee; 015-000-000,2023-04-18,['committee-passage'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-17,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-04-26,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Withdrawn by Sen. Sue Rezin,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2024-05-20,[],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0499,2023-08-04,['became-law'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-16,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sally J. Turner,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-04-20,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Joyce Mason,2024-05-10,['amendment-introduction'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-28,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-04-24,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Rachel Ventura,2023-03-30,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Arrived in House,2023-10-25,['introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-15,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Belt,2023-03-30,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2024-03-22,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Public Act . . . . . . . . . 103-0229,2023-06-30,['became-law'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2024-02-20,[],IL,103rd +Assigned to Restorative Justice,2023-04-11,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2023-04-26,[],IL,103rd +House Committee Amendment No. 3 Rules Refers to Labor & Commerce Committee,2024-04-02,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2024-05-13,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-17,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Senate Special Committee on Pensions; 011-000-000,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2023-04-27,['amendment-introduction'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 075-040-000,2023-05-16,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-04-25,[],IL,103rd +Assigned to Executive Committee,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-03-14,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-01,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Laura Fine,2024-05-09,['amendment-introduction'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2023-04-19,['committee-passage'],IL,103rd +Chief House Sponsor Rep. Tony M. McCombie,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anthony DeLuca,2024-05-01,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +Correctional Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-05-14,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-03-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 24, 2023",2023-03-10,[],IL,103rd +Placed on Calendar - Consideration Postponed,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-05-07,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-22,[],IL,103rd +Do Pass Energy and Public Utilities; 015-000-000,2024-05-02,['committee-passage'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anthony DeLuca,2024-04-30,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-04-06,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2024-05-21,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Fiscal Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-05-10,[],IL,103rd +Assigned to Higher Education Committee,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-03-14,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Referred to Assignments,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-29,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-03-07,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-04-27,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-13,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-15,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Third Reading - Passed; 054-001-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-05-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2024-04-18,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4a,2024-04-11,['amendment-failure'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Do Pass as Amended Judiciary,2024-03-06,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-02,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-04-24,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-26,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-16,[],IL,103rd +First Reading,2023-05-04,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 071-038-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-05-02,[],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2024-04-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-23,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-04-12,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-14,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Swanson,2024-04-25,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-03,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2024-04-03,[],IL,103rd +Chief House Sponsor Rep. Sharon Chung,2024-04-15,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-05-01,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4a,2024-04-10,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Do Pass Agriculture; 008-000-000,2024-05-16,['committee-passage'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Do Pass Licensed Activities; 006-001-000,2024-05-01,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Adopted in Mental Health & Addiction Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Third Reading - Passed; 053-001-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-18,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Jason Bunting,2024-04-17,[],IL,103rd +Chief Senate Sponsor Sen. Steve Stadelman,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2024-04-16,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-05-07,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2024-05-02,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 015-000-000,2024-04-30,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2024-05-02,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2023-04-25,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-23,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-13,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-16,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 7, 2024",2024-03-06,['reading-2'],IL,103rd +Do Pass Health and Human Services; 012-000-000,2023-05-03,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-14,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-03-22,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Referred to Assignments,2023-05-04,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin Schmidt,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-09,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-09,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-17,[],IL,103rd +Home Rule Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-04-25,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-21,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-29,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Assigned to Executive,2023-05-09,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-04-26,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-04-28,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2024-04-30,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Margaret Croke,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2024-04-16,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-30,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Do Pass as Amended / Short Debate Public Health Committee; 008-000-000,2023-03-09,['committee-passage'],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-03-16,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2024-02-29,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Camille Y. Lilly,2023-03-15,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-02,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 010-005-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Maurice A. West, II",2023-05-08,['amendment-introduction'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Kevin Schmidt,2024-03-25,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-22,['amendment-failure'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Counties & Townships Committee,2023-03-22,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Anne Stava-Murray,2023-03-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-12,[],IL,103rd +Do Pass Education; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-03-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 27, 2023",2023-04-26,['reading-3'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Jennifer Gong-Gershowitz,2023-04-14,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-23,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Mary E. Flowers,2023-03-10,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Alternate Chief Sponsor Removed Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-30,[],IL,103rd +Pension Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2024-04-15,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-24,[],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-04-20,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Public Act . . . . . . . . . 103-0172,2023-06-30,['became-law'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-19,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-05-10,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-23,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. Lance Yednock,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-02-22,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-04-20,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2023-03-23,[],IL,103rd +Assigned to Human Services Committee,2023-04-11,['referral-committee'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Assigned to Transportation,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +Do Pass as Amended Transportation; 013-000-000,2023-04-26,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-05-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2024-04-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Linda Holmes,2023-05-05,['amendment-introduction'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-03,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-09,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-03-29,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2023-03-29,[],IL,103rd +Assigned to Higher Education,2023-04-12,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Hoan Huynh,2023-03-23,[],IL,103rd +Assigned to Labor,2023-04-12,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2023-03-29,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2024-04-19,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lindsey LaPointe,2023-03-16,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-05-24,[],IL,103rd +Assigned to Licensed Activities,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass / Short Debate Insurance Committee; 012-000-000,2023-04-25,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-05-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-10-25,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Third Reading - Passed; 052-005-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Assigned to Executive,2023-04-18,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Energy and Public Utilities,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-07,[],IL,103rd +Public Act . . . . . . . . . 103-0179,2023-06-30,['became-law'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-16,[],IL,103rd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2023-03-27,[],IL,103rd +Passed Both Houses,2023-05-05,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-04-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2023-05-04,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2023-05-04,[],IL,103rd +Assigned to Financial Institutions,2023-04-12,['referral-committee'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2023-03-24,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-21,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +"Chief Co-Sponsor Changed to Rep. Maurice A. West, II",2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2023-10-24,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael W. Halpin,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-24,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Michael J. Kelly,2023-03-22,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Justin Slaughter,2023-04-14,[],IL,103rd +Assigned to Appropriations,2024-04-30,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-16,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Rachel Ventura,2023-03-24,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2024-04-17,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-05-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-05-16,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-20,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-04-30,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2023-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Public Health,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-05-09,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2024-05-07,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-03-20,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Robert ""Bob"" Rita",2023-03-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dan McConchie,2023-03-30,[],IL,103rd +"Alternate Co-Sponsor Removed Rep. Marcus C. Evans, Jr.",2023-04-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-23,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Restorative Justice; 006-002-000,2023-04-27,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Villa,2023-03-23,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Rezin,2023-05-11,['amendment-passage'],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-19,['amendment-passage'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-24,[],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-03,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2023-11-01,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-17,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-23,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-04-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Matt Hanson,2023-04-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-04-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-08,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-02,['amendment-passage'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-05-10,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 008-004-000,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-15,[],IL,103rd +Do Pass / Short Debate Executive Committee; 012-000-000,2023-04-26,['committee-passage'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Local Government; 009-000-000,2024-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-02-20,[],IL,103rd +Chief Senate Sponsor Sen. Javier L. Cervantes,2024-04-24,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-25,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Bennett,2023-03-31,['amendment-passage'],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Sue Scherer,2024-04-15,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-05-14,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-14,[],IL,103rd +Re-assigned to Executive,2024-04-24,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2023-03-20,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Ryan Spain,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-05-16,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-13,[],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-05-16,['amendment-introduction'],IL,103rd +Resolution Adopted by Voice Vote,2024-04-02,['passage'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Lance Yednock,2023-04-20,[],IL,103rd +Chief Senate Sponsor Sen. Paul Faraci,2023-03-27,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-12,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-02,[],IL,103rd +Do Pass Health and Human Services; 014-000-000,2024-05-08,['committee-passage'],IL,103rd +Assigned to Energy & Environment Committee,2023-04-18,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-04,[],IL,103rd +Chief House Sponsor Rep. Hoan Huynh,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-02-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2023-04-18,[],IL,103rd +Third Reading - Short Debate - Passed 081-029-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Fiscal Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-08,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2024-05-29,['amendment-introduction'],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mark L. Walker,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Do Pass as Amended Transportation; 014-000-000,2024-03-13,['committee-passage'],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 019-000-000,2023-04-27,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-09,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Ventura,2023-03-30,['amendment-passage'],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-04-25,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Chief Sponsor Changed to Sen. Javier L. Cervantes,2023-10-24,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-27,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Theresa Mah,2024-04-12,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Martin J. Moylan,2023-05-17,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Senate Special Committee on Pensions; 011-000-000,2023-03-30,[],IL,103rd +Chief House Sponsor Rep. Ann M. Williams,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-12,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-10-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-09,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-03-14,[],IL,103rd +Second Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Referred to Rules Committee,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2024-05-08,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Labor,2023-03-28,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Severin,2024-05-01,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-01,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-04-25,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-05-19,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 018-008-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Margaret Croke,2024-05-09,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Matt Hanson,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 5 Referred to Assignments,2023-03-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2024-04-16,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-05,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-07,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-03-07,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Counties & Townships Committee,2024-05-13,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-04-24,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-04-11,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-21,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2023-05-05,['amendment-failure'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Effective Date August 4, 2023; Some Provisions",2023-08-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Eva-Dina Delgado,2024-04-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Chief House Sponsor Rep. Nicholas K. Smith,2024-04-11,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Public Act . . . . . . . . . 103-0090,2023-06-09,['became-law'],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-04-12,[],IL,103rd +Chief House Sponsor Rep. Stephanie A. Kifowit,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-05-13,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Recalled to Second Reading,2024-04-17,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2024-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-03-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-04-26,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Lindsey LaPointe,2024-04-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Amy Elik,2024-05-01,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Charles Meier,2024-05-01,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 24, 2024",2024-05-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Tom Weber,2023-03-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Assigned to Executive Committee,2023-05-16,['referral-committee'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sally J. Turner,2024-05-06,[],IL,103rd +Pension Note Requested by Rep. Patrick Windhorst,2024-04-18,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Cities & Villages Committee; 016-000-000,2023-04-25,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-30,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Public Act . . . . . . . . . 103-0985,2024-08-09,['became-law'],IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Public Health,2024-04-16,[],IL,103rd +Second Reading,2024-04-17,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-14,['reading-2'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2024-05-02,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 013-000-000,2023-04-25,['committee-passage'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Do Pass as Amended Judiciary; 009-000-000,2024-03-13,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2023-03-28,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Recalled to Second Reading,2024-04-12,['reading-2'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2024-05-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Assigned to Higher Education Committee,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-06,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-01,['amendment-failure'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2024-05-24,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Terri Bryant,2024-04-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-31,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading November 7, 2023",2023-11-06,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 007-000-000,2024-05-21,[],IL,103rd +Chief House Sponsor Rep. Thaddeus Jones,2024-05-09,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Balanced Budget Note Requested by Rep. Blaine Wilhour,2023-05-02,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Judiciary - Civil Committee; 014-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 2 Postponed - Executive,2024-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0920,2024-08-09,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Agriculture,2023-03-23,[],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-14,[],IL,103rd +Arrived in House,2024-04-17,['introduction'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-04-24,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-04-18,[],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-22,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2024-04-04,['committee-passage'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-04-20,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-04-18,['referral-committee'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-01,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-22,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 3 Postponed - Executive,2023-03-30,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +"Chief House Sponsor Rep. Curtis J. Tarver, II",2024-04-12,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-12,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin Schmidt,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 4 Rules Refers to Judiciary - Civil Committee,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Home Rule Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-11,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 010-005-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2023-04-27,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-16,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +"Chief House Sponsor Rep. Curtis J. Tarver, II",2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Martin J. Moylan,2023-04-19,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Harry Benton,2024-04-16,[],IL,103rd +Assigned to Counties & Townships Committee,2024-04-24,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Public Act . . . . . . . . . 103-0396,2023-07-28,['became-law'],IL,103rd +Second Reading,2024-03-21,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2024-04-10,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2024-04-05,['amendment-introduction'],IL,103rd +Assigned to Executive Committee,2023-04-11,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-05-02,[],IL,103rd +Referred to Rules Committee,2024-05-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-29,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Do Pass Energy and Public Utilities; 010-000-000,2024-05-09,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 008-004-000,2024-05-22,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. John M. Cabello,2024-05-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Janet Yang Rohr,2024-05-02,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2024-05-02,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Senate Committee Amendment No. 3 Assignments Refers to Executive,2024-05-01,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2024-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-11,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2024-05-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-25,[],IL,103rd +Chief Senate Sponsor Sen. John F. Curran,2024-04-24,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4a,2024-04-11,['amendment-failure'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-01-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-05-15,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-02-07,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-05-16,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-04-10,[],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2024-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Education,2023-05-09,['amendment-passage'],IL,103rd +Chief House Sponsor Rep. Margaret Croke,2024-04-12,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Linda Holmes,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Daniel Didech,2024-04-12,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-01,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. John F. Curran,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-05-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +House Floor Amendment No. 2 Adopted by Voice Vote,2023-03-23,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Licensed Activities,2023-04-26,['amendment-passage'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Justin Slaughter,2023-03-15,[],IL,103rd +Public Act . . . . . . . . . 103-0430,2023-08-04,['became-law'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-21,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Do Pass Senate Special Committee on Pensions; 007-000-000,2023-05-04,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-10-25,[],IL,103rd +Waive Posting Notice,2023-05-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-03-06,[],IL,103rd +Pension Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-07,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-11,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Energy and Public Utilities,2023-04-27,['amendment-passage'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. William ""Will"" Davis",2024-03-07,['amendment-introduction'],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Third Reading - Short Debate - Passed 071-040-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-28,['reading-2'],IL,103rd +House Floor Amendment No. 4 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-05-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Yolonda Morris,2024-05-15,[],IL,103rd +House Floor Amendment No. 4 Rules Refers to Labor & Commerce Committee,2024-04-17,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Do Pass Judiciary; 009-000-000,2023-04-19,['committee-passage'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Rita Mayfield,2024-05-14,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-04-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +House Floor Amendment No. 3 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2023-04-18,[],IL,103rd +Re-assigned to Transportation,2023-05-09,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-15,[],IL,103rd +Public Act . . . . . . . . . 103-0774,2024-08-02,['became-law'],IL,103rd +Do Pass as Amended Financial Institutions; 008-000-000,2023-04-26,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-27,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Do Pass as Amended Executive; 009-004-000,2023-05-10,['committee-passage'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-05-10,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-04-20,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-02-08,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jil Tracy,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Appropriations-Health & Human Services Committee; 014-007-000,2023-05-12,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jed Davis,2024-03-19,['amendment-introduction'],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Financial Institutions,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-13,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Executive,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-16,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-29,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Third Reading - Passed; 054-000-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-21,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Rita Mayfield,2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2023-04-19,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2024-05-26,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Linda Holmes,2023-04-21,['amendment-introduction'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Ann M. Williams,2023-10-31,[],IL,103rd +Referred to Assignments,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-04-16,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-29,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-04,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-000",2023-03-22,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-31,[],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-05-03,[],IL,103rd +Correctional Note Requested by Rep. Kevin John Olickal,2024-04-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-09,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +Balanced Budget Note Filed,2023-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-15,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 011-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-15,[],IL,103rd +Approved for Consideration Rules Committee; 004-000-000,2024-05-21,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-12,['referral-committee'],IL,103rd +Do Pass Local Government; 010-000-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-03-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Ann M. Williams,2023-03-22,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-03-20,['reading-3'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Jaime M. Andrade, Jr.",2023-03-22,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Ann M. Williams,2024-03-05,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-10-25,[],IL,103rd +Removed Co-Sponsor Rep. Michael T. Marron,2023-04-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mark L. Walker,2024-05-17,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-24,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Police & Fire Committee,2024-03-13,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Villivalam,2023-05-25,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-11,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-20,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +State Mandates Fiscal Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2023-03-24,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Anne Stava-Murray,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-05-23,[],IL,103rd +To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Robert F. Martwick,2024-05-09,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-16,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Financial Institutions and Licensing Committee; 008-004-000,2023-04-25,['committee-passage-favorable'],IL,103rd +Placed on Calendar - Consideration Postponed,2023-03-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 073-032-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 006-000-000,2023-05-10,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2023-04-27,['amendment-introduction'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-22,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Do Pass Agriculture; 008-005-000,2023-05-11,['committee-passage'],IL,103rd +Third Reading - Passed; 057-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-02-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-10-26,[],IL,103rd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2024-04-24,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2023-04-21,['amendment-introduction'],IL,103rd +Public Act . . . . . . . . . 103-0455,2023-08-07,['became-law'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Barbara Hernandez,2023-03-23,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-01,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-02-08,[],IL,103rd +Chief Senate Sponsor Sen. Jil Tracy,2023-03-29,[],IL,103rd +Chief Senate Sponsor Sen. Linda Holmes,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-02-28,[],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-14,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Referred to Rules Committee,2024-05-24,[],IL,103rd +Third Reading - Passed; 037-019-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-05-24,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-04-20,[],IL,103rd +First Reading,2023-10-18,['reading-1'],IL,103rd +Do Pass as Amended Licensed Activities; 006-000-000,2023-04-27,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2024-05-22,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2023-04-18,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-24,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-29,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0113,2023-06-30,['became-law'],IL,103rd +Do Pass Insurance; 010-000-000,2024-05-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-11-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2023-05-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-18,[],IL,103rd +Public Act . . . . . . . . . 103-0697,2024-07-19,['became-law'],IL,103rd +Do Pass Executive; 012-000-000,2024-05-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-05-09,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-11-14,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-04-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-22,[],IL,103rd +Third Reading - Short Debate - Passed 066-038-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +"Placed on Calendar Order of First Reading April 17, 2024",2024-04-16,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-04-04,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-05-17,[],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 014-000-000,2024-04-30,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2024-04-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-17,[],IL,103rd +Waive Posting Notice,2023-05-17,[],IL,103rd +House Floor Amendment No. 5 Rules Refers to Public Health Committee,2023-03-14,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Mark L. Walker,2023-03-28,[],IL,103rd +Placed on Calendar Order of First Reading,2023-05-09,['reading-1'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2023-10-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-04-18,[],IL,103rd +Public Act . . . . . . . . . 103-0605,2024-07-01,['became-law'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-11-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 010-004-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 013-000-000,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-05-17,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Consumer Protection Committee; 005-001-000,2024-04-15,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-17,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Resolution Adopted; 046-000-000,2023-05-19,['passage'],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Placed on Calendar Order of First Reading,2024-05-02,['reading-1'],IL,103rd +Do Pass Judiciary; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-15,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-02-22,[],IL,103rd +Do Pass Local Government; 008-000-000,2024-05-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-10-16,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-29,[],IL,103rd +Third Reading - Passed; 058-001-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-14,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2024-04-18,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-04-09,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2023-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Dave Syverson,2024-04-29,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-23,[],IL,103rd +Do Pass / Short Debate Restorative Justice; 007-000-000,2024-05-02,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-04-09,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-12,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Environment and Conservation; 009-000-000,2023-03-31,[],IL,103rd +Chief Senate Sponsor Sen. Michael E. Hastings,2024-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2023-04-20,[],IL,103rd +Approved for Consideration Assignments,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-25,[],IL,103rd +Chief House Sponsor Rep. Margaret Croke,2024-05-03,[],IL,103rd +First Reading,2024-05-17,['reading-1'],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2024-04-16,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-06,[],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-05-13,['referral-committee'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-04-25,['committee-passage-favorable'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-24,[],IL,103rd +Third Reading - Short Debate - Passed 073-035-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Assigned to Executive,2024-04-30,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-18,[],IL,103rd +Chief House Sponsor Rep. Kelly M. Cassidy,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 5 Referred to Assignments,2024-04-30,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-04-20,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-04-30,[],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Lance Yednock,2024-04-17,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 21, 2024",2024-05-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-03-31,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-30,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Abdelnasser Rashid,2023-04-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-03,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-03-24,[],IL,103rd +Recalled to Second Reading,2024-04-10,['reading-2'],IL,103rd +Arrived in House,2024-05-09,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-04-25,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Sponsor Removed Sen. Javier L. Cervantes,2024-04-09,[],IL,103rd +Do Pass / Short Debate Child Care Accessibility & Early Childhood Education Committee; 013-000-000,2024-05-02,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-04-12,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-23,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Assigned to Executive Committee,2024-05-23,['referral-committee'],IL,103rd +Chief House Sponsor Rep. Travis Weaver,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Martin J. Moylan,2023-04-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2024-04-30,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +Third Reading - Passed; 044-007-000,2023-04-27,"['passage', 'reading-3']",IL,103rd +Chief Sponsor Changed to Rep. Dan Ugaste,2024-04-09,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 28, 2023",2023-03-24,['reading-3'],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4a,2024-04-12,['amendment-failure'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-03-24,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Education,2024-04-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2024-05-20,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-21,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-14,[],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2024-04-12,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Assigned to Public Health Committee,2023-04-18,['referral-committee'],IL,103rd +Recalled to Second Reading,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Assigned to Executive Committee,2023-05-16,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-05-07,[],IL,103rd +Assigned to Insurance Committee,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-16,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-13,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-04-18,['referral-committee'],IL,103rd +Second Reading,2024-04-09,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Senate Floor Amendment No. 3 Adopted,2024-04-10,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Labor & Commerce Committee,2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 008-001-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4a,2024-04-18,['amendment-failure'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Do Pass / Short Debate Insurance Committee; 015-000-000,2023-04-25,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-15,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Assigned to State Government,2024-05-20,['referral-committee'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-04-18,['referral-committee'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Severin,2023-04-27,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 014-000-000,2023-04-25,['committee-passage'],IL,103rd +Do Pass Health and Human Services; 008-004-000,2024-05-01,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-23,[],IL,103rd +Assigned to Consumer Protection Committee,2023-04-18,['referral-committee'],IL,103rd +Recalled to Second Reading,2024-05-02,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Referred to Rules Committee,2024-05-03,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Arrived in House,2024-05-03,['introduction'],IL,103rd +Balanced Budget Note Requested by Rep. Kam Buckner,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lance Yednock,2024-05-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-08,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2024-05-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Steven Reick,2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Public Act . . . . . . . . . 103-0509,2023-08-04,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-07,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Sponsor Removed Sen. Meg Loughran Cappel,2023-12-19,[],IL,103rd +Motion Filed to Suspend Rule 21 Human Services Committee; Rep. Robyn Gabel,2023-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2023-04-20,[],IL,103rd +Third Reading - Short Debate - Passed 106-001-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-05-15,[],IL,103rd +Assigned to Gaming Committee,2023-04-18,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-05-09,[],IL,103rd +Third Reading - Short Debate - Passed 110-001-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-12,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-21,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-16,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2024-05-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2023-03-28,[],IL,103rd +Assigned to Higher Education,2023-04-12,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Do Pass Senate Special Committee on Pensions; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Adopted,2023-03-22,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-10-30,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-15,[],IL,103rd +Second Reading,2023-04-26,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 5, 2023",2023-05-04,['reading-2'],IL,103rd +Do Pass as Amended Licensed Activities; 006-000-000,2023-04-27,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-03,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 010-005-000,2023-03-23,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. John F. Curran,2023-04-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-24,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-05-19,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-16,['amendment-passage'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-16,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Mary E. Flowers,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Third Reading - Passed; 053-002-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2023-03-27,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Do Pass Education; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-23,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Do Pass Judiciary; 006-000-000,2023-05-10,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-04-25,[],IL,103rd +Do Pass as Amended Human Rights; 005-002-000,2023-04-27,['committee-passage'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-17,[],IL,103rd +Arrive in Senate,2023-04-27,['introduction'],IL,103rd +Do Pass as Amended Executive; 009-004-000,2023-05-10,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-04-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Assigned to Transportation,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 2 Adopted; Licensed Activities,2023-04-26,['amendment-passage'],IL,103rd +Do Pass / Short Debate Restorative Justice; 006-003-000,2023-03-09,['committee-passage'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2023-03-09,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Do Pass as Amended Environment and Conservation; 008-001-000,2023-04-27,['committee-passage'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-02,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-08,[],IL,103rd +Third Reading - Short Debate - Passed 079-026-001,2023-03-23,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-12,[],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2023-03-28,[],IL,103rd +Do Pass as Amended Health and Human Services; 010-000-000,2023-05-16,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-05-10,[],IL,103rd +Approved for Consideration Assignments,2023-04-18,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-05-08,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-02-28,[],IL,103rd +Assigned to Public Health,2023-04-12,['referral-committee'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-05-24,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-04-11,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Assigned to Restorative Justice,2024-04-24,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 081-031-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2023-04-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Transportation: Vehicles & Safety; 008-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +Do Pass Executive; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Third Reading - Passed; 052-001-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Executive; 007-002-000,2023-04-27,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 067-033-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-02-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-03,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-25,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Suzanne M. Ness,2024-04-16,['amendment-introduction'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-04-18,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-04-25,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-22,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-04-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 079-028-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Chief Co-Sponsor Changed to Rep. Nabeela Syed,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-23,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-05-18,[],IL,103rd +Arrive in Senate,2024-05-14,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Edly-Allen,2023-10-25,['amendment-passage'],IL,103rd +Third Reading - Passed; 056-000-000,2023-10-26,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-26,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; McConchie,2024-05-26,['amendment-passage'],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-04-04,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-20,[],IL,103rd +Assigned to Human Services Committee,2024-02-28,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-05-03,[],IL,103rd +First Reading,2023-05-02,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-05-25,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-16,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2023-04-19,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Julie A. Morrison,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-17,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-03-30,[],IL,103rd +Recalled to Second Reading,2024-05-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-30,[],IL,103rd +Public Act . . . . . . . . . 103-0204,2023-06-30,['became-law'],IL,103rd +Do Pass Insurance; 008-000-000,2023-04-26,['committee-passage'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-03,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt State Government; 009-000-000,2023-10-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 072-040-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-10,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-05-14,[],IL,103rd +Third Reading - Passed; 052-000-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-01,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-15,[],IL,103rd +Arrived in House,2023-10-25,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +Assigned to Human Services Committee,2024-02-29,['referral-committee'],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. David Koehler,2023-04-21,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-03-19,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-02-22,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-16,[],IL,103rd +Third Reading - Passed; 050-007-000,2023-10-25,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-21,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Anna Moeller,2024-03-15,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2024-04-30,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-04,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-04-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2023-05-17,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-18,[],IL,103rd +Do Pass Agriculture; 008-004-000,2023-04-27,['committee-passage'],IL,103rd +Third Reading - Passed; 040-018-000,2023-10-25,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-07,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2023-03-22,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-16,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Chief House Sponsor Rep. Jaime M. Andrade, Jr.",2024-05-26,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Assigned to Higher Education Committee,2023-04-11,['referral-committee'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Kelly M. Burke,2023-04-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-02-26,[],IL,103rd +Removed Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-04-03,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Referred to Rules Committee,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 010-000-001,2024-05-01,[],IL,103rd +"House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-000",2024-04-18,['committee-passage-favorable'],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Senate Floor Amendment No. 5 Approved For Consideration Pursuant to Senate Rule 3-8 (d-10),2023-05-25,[],IL,103rd +Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-09,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Recommends Be Adopted as Amended Labor & Commerce Committee; 018-010-000,2024-05-15,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 008-000-000,2023-05-04,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Fowler,2023-05-11,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-03,[],IL,103rd +Removed Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-10-25,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Ethics & Elections,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-04-04,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-05-11,[],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Assigned to Insurance Committee,2024-04-24,['referral-committee'],IL,103rd +Assigned to Insurance,2024-04-30,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Paul Jacobs,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-04-14,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-05-24,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-11,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0685,2024-07-19,['became-law'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-03-07,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jackie Haas,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-16,[],IL,103rd +Waive Posting Notice,2023-05-17,[],IL,103rd +Moved to - Table Bill/Resolution Pursuant to Rule 60(b) Rep. Anthony DeLuca,2023-04-20,[],IL,103rd +First Reading,2023-05-04,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-04-12,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-09,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-18,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-02-20,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lindsey LaPointe,2023-04-27,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Postponed - Energy and Public Utilities,2024-03-22,[],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-04-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-04-18,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2024-05-20,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-02,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Margaret Croke,2024-05-06,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-04-18,[],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-23,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-12,['executive-receipt'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Paul Jacobs,2024-05-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Removed Co-Sponsor Rep. Anna Moeller,2024-04-18,[],IL,103rd +Remove Chief Co-Sponsor Rep. Carol Ammons,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-13,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-16,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2024-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-05-23,[],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2024-04-30,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-14,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jennifer Sanalitro,2024-05-09,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-02-21,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-04-29,[],IL,103rd +"House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-03-22,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2024-04-12,['amendment-failure'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2023-02-28,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-03-14,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Wayne A Rosenthal,2024-05-09,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-02-21,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2024-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Assigned to Human Services Committee,2024-04-15,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-11,[],IL,103rd +Sponsor Removed Sen. Christopher Belt,2024-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-001,2024-05-17,"['passage', 'reading-3']",IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2024-05-15,[],IL,103rd +Third Reading - Short Debate - Passed 073-037-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-05-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-09,[],IL,103rd +Chief Senate Sponsor Sen. Dave Syverson,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-14,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Third Reading - Short Debate - Passed 098-009-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Sanalitro,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-02-21,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-12,['amendment-passage'],IL,103rd +Be Adopted State Government; 008-000-000,2023-05-17,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2024-04-30,['committee-passage'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Robert F. Martwick,2024-04-30,[],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2024-05-02,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-14,[],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Licensed Activities,2024-04-09,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +"Alternate Chief Sponsor Removed Rep. Emanuel ""Chris"" Welch",2024-05-20,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-04-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2023-03-29,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-05-23,[],IL,103rd +Chief House Sponsor Rep. Sonya M. Harper,2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Curtis J. Tarver, II",2024-05-06,[],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-03-21,[],IL,103rd +Assigned to Executive,2024-04-30,['referral-committee'],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Third Reading - Passed; 045-008-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Judicial Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-11,[],IL,103rd +Re-assigned to Judiciary,2024-01-10,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 081-030-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Assigned to Insurance Committee,2024-04-24,['referral-committee'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-17,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-19,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-02-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brandun Schweizer,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-04-24,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-003-000",2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-23,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Immigration & Human Rights Committee,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-02-22,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-04-26,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2023-10-18,[],IL,103rd +House Floor Amendment No. 2 State Mandates Fiscal Note Filed as Amended,2023-03-09,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2023-03-02,['amendment-introduction'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-03-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-03-02,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0731,2024-08-02,['became-law'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-04-16,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Financial Institutions and Licensing Committee,2023-04-25,[],IL,103rd +Assigned to Public Health,2023-04-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-24,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 010-002-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Assigned to Education,2024-04-30,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Do Pass Local Government; 009-000-000,2023-05-04,['committee-passage'],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2023-04-27,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-02-28,[],IL,103rd +Public Act . . . . . . . . . 103-0144,2023-06-30,['became-law'],IL,103rd +Assigned to Appropriations- Education,2023-04-12,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0154,2023-06-30,['became-law'],IL,103rd +House Floor Amendment No. 2 Tabled,2023-03-24,['amendment-failure'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-16,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Public Health Committee,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-05-02,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-03-14,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Executive,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Do Pass Public Health; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +Assigned to Executive,2023-05-08,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-05-09,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-08,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading April 19, 2023",2023-04-18,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2023-03-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-28,[],IL,103rd +Third Reading - Short Debate - Passed 072-036-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-04-25,[],IL,103rd +Third Reading - Short Debate - Passed 063-047-001,2023-03-22,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-23,[],IL,103rd +Do Pass Transportation; 017-000-000,2023-04-19,['committee-passage'],IL,103rd +Second Reading,2023-05-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-03-21,[],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +First Reading,2023-03-28,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +First Reading,2023-03-28,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-03-27,[],IL,103rd +Do Pass / Short Debate Restorative Justice; 005-003-000,2024-05-02,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 075-032-001,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-02-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2023-03-16,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Do Pass as Amended Licensed Activities; 006-000-000,2023-04-27,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 27, 2023",2023-04-26,['reading-3'],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Tom Bennett,2023-03-27,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-08,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-24,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Recalled to Second Reading,2023-05-19,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-09-08,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-15,[],IL,103rd +Do Pass Health and Human Services; 010-000-000,2023-04-26,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-02-02,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Education,2023-05-09,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-23,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Maurice A. West, II",2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Re-assigned to Education,2023-05-09,['referral-committee'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Tabled,2023-03-24,['amendment-failure'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Assigned to Appropriations,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-08,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +House Floor Amendment No. 5 Recommends Be Adopted Immigration & Human Rights Committee; 008-003-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Public Act . . . . . . . . . 103-0740,2024-08-02,['became-law'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-11,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-03-07,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Edgar Gonzalez, Jr.",2023-03-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Paul Faraci,2023-03-21,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2023-05-17,[],IL,103rd +Second Reading,2023-04-26,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Do Pass Executive; 011-000-000,2023-05-18,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Margaret Croke,2023-03-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Insurance Committee; 010-004-000,2023-04-18,['committee-passage-favorable'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Assigned to Labor,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-000-000,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0171,2023-07-04,['became-law'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-25,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-16,['reading-2'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-20,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Licensed Activities,2023-04-26,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2023-05-08,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2024-05-14,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-17,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-18,['referral-committee'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Third Reading - Passed; 037-019-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Lindsey LaPointe,2024-05-07,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-03-21,[],IL,103rd +Public Act . . . . . . . . . 103-0221,2023-06-30,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-09,[],IL,103rd +Senate Committee Amendment No. 2 Postponed - Education,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Education,2023-03-28,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Will Guzzardi,2023-04-17,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Chief House Sponsor Rep. Aaron M. Ortiz,2023-03-30,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 4 Recommend Do Adopt State Government; 008-000-000,2024-04-10,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin John Olickal,2023-04-20,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2023-03-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2023-04-14,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-20,[],IL,103rd +Correctional Note Requested by Rep. Kam Buckner,2023-05-03,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-04-26,['committee-passage'],IL,103rd +Arrived in House,2023-04-27,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-03,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-18,['amendment-failure'],IL,103rd +Second Reading,2023-03-24,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 008-004-000,2024-05-22,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Postponed - Executive,2024-04-10,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-23,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-15,[],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Pacione-Zayas,2023-03-30,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2024-05-23,['amendment-introduction'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. William ""Will"" Davis",2024-05-02,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2023-04-26,['amendment-passage'],IL,103rd +Chief House Sponsor Rep. Kam Buckner,2024-05-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Matt Hanson,2023-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Koehler,2023-03-30,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-04-16,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-16,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 015-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2024-05-03,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin John Olickal,2024-05-07,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2023-05-17,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-22,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 056-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-05-07,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-04-16,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Sponsor Removed Sen. Patrick J. Joyce,2023-05-10,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2024-05-09,[],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2024-04-17,[],IL,103rd +Assigned to Counties & Townships Committee,2023-04-18,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lance Yednock,2023-04-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-05-13,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-18,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Chief House Sponsor Rep. Michael T. Marron,2023-03-30,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2024-05-20,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 071-040-000,2023-05-03,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-20,[],IL,103rd +Public Act . . . . . . . . . 103-0946,2024-08-09,['became-law'],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2024-05-23,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-29,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-09,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0507,2023-08-04,['became-law'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. David Friess,2023-04-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-05-13,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Natalie A. Manley,2024-04-18,[],IL,103rd +Assigned to State Government Administration Committee,2023-04-18,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 24, 2024",2024-05-20,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-1025,2024-08-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2023-04-25,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +First Reading,2024-05-03,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Arrived in House,2024-04-18,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2023-04-27,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 10, 2024",2024-04-09,['reading-3'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-04-19,['committee-passage'],IL,103rd +Referred to Rules Committee,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-05-16,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-19,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-07,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2023-04-25,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Tom Weber,2023-04-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Bob Morgan,2023-04-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-04-20,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Bill Cunningham,2023-03-29,['amendment-introduction'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Ellman,2024-05-02,['amendment-passage'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-01,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-16,['amendment-passage'],IL,103rd +"Removed Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-05-10,[],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 015-000-000",2023-05-09,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-03,[],IL,103rd +Third Reading - Short Debate - Passed 087-017-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-11,['referral-committee'],IL,103rd +Chief House Sponsor Rep. Kam Buckner,2023-05-08,[],IL,103rd +Recalled to Second Reading,2023-05-17,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-04-04,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Kevin John Olickal,2024-04-09,['amendment-introduction'],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2023-05-16,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +House Floor Amendment No. 4 Rules Refers to Insurance Committee,2024-04-18,[],IL,103rd +Arrived in House,2023-10-25,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-24,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Matt Hanson,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-03-30,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Simmons,2024-05-16,['amendment-passage'],IL,103rd +Arrived in House,2023-10-26,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Chief House Sponsor Rep. Michael J. Kelly,2024-04-12,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-16,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2024-04-24,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to State Government,2023-10-25,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-05-05,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Edly-Allen,2023-10-25,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As March 31, 2023",2023-03-23,[],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Robyn Gabel,2024-03-06,[],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Local Government,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-12,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-05-05,['amendment-introduction'],IL,103rd +First Reading,2024-05-26,['reading-1'],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-15,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-22,[],IL,103rd +Assigned to Executive Committee,2023-04-18,['referral-committee'],IL,103rd +Arrive in Senate,2023-04-20,['introduction'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-16,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Resolution Adopted,2024-05-03,['passage'],IL,103rd +Resolution Adopted 113-000-000,2024-05-08,['passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Resolution Adopted 112-000-000,2024-05-08,['passage'],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-15,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Resolution Adopted 074-036-000,2024-04-30,['passage'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2023-04-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2024-04-22,[],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Assigned to Executive Committee,2024-02-28,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2024-05-25,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2024-05-15,[],IL,103rd +Recalled to Second Reading,2024-05-02,['reading-2'],IL,103rd +Referred to Rules Committee,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-05-03,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Patrick Windhorst,2023-05-09,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-03-05,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-10-25,[],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-03-19,[],IL,103rd +Assigned to Insurance Committee,2023-05-09,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-31,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-05-14,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-04-11,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2024-02-29,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-04-21,[],IL,103rd +Arrive in Senate,2024-05-14,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-16,[],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments.",2023-04-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Assigned to Health and Human Services,2024-04-24,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-02-27,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Feigenholtlz,2023-03-29,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-12,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Senate Floor Amendment No. 5 Adopted; Sims,2023-05-25,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 071-032-001,2023-05-08,"['passage', 'reading-3']",IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2024-05-09,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-15,[],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-04-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-09,[],IL,103rd +Second Reading - Short Debate,2023-05-08,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-05-17,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-15,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-04-20,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-24,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lilian Jiménez,2023-04-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2024-04-25,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2024-03-08,['amendment-introduction'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Alternate Chief Sponsor Changed to Rep. Norma Hernandez,2023-10-31,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-12,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Senate Floor Amendment No. 4 Postponed - Senate Special Committee on Pensions,2023-03-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-12,['reading-3'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2023-05-02,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Postponed - Insurance,2023-02-22,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-05-13,[],IL,103rd +Assigned to Health Care Licenses Committee,2024-04-24,['referral-committee'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Third Reading - Passed; 053-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2024-05-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lilian Jiménez,2024-04-24,[],IL,103rd +Public Act . . . . . . . . . 103-0508,2023-08-04,['became-law'],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Matt Hanson,2023-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-01,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0965,2024-08-09,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anthony DeLuca,2023-04-21,['amendment-introduction'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Public Health; 007-000-000,2023-03-22,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2024-05-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +Assigned to Consumer Protection Committee,2023-04-11,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-03-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2024-05-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-03,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Ann M. Williams,2023-04-20,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Cunningham,2023-03-30,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-11-01,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-03-23,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 102-000-001,2024-05-17,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Adopted; Morrison,2023-03-28,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-04,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Do Pass / Short Debate Executive Committee; 007-004-000,2024-05-08,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Suzanne M. Ness,2023-04-25,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-23,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Hoan Huynh,2023-04-24,['amendment-introduction'],IL,103rd +Home Rule Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-17,['amendment-passage'],IL,103rd +Do Pass / Short Debate Housing; 017-000-000,2023-04-26,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0234,2023-06-30,['became-law'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2023-05-02,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Assigned to Energy & Environment Committee,2024-04-16,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-02,['reading-3'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 015-000-000,2024-05-01,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2024-05-14,['committee-passage-favorable'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-17,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Abdelnasser Rashid,2023-04-18,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-03-14,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-007-000,2024-05-20,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. David Friess,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2023-05-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Adriane Johnson,2024-05-15,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-02-20,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-09,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 010-000-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2024-04-16,[],IL,103rd +Chief House Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-10-24,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-29,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. William E Hauter,2023-04-13,[],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Environment and Conservation,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-02-06,[],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2024-05-08,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-04-11,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Do Pass as Amended Judiciary; 008-000-000,2024-03-21,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin John Olickal,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-03-14,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-14,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2024-05-15,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0963,2024-08-09,['became-law'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 019-000-000,2023-05-19,['committee-passage-favorable'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Kevin John Olickal,2023-03-21,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-04-10,['amendment-failure'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-19,[],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2023-04-26,['amendment-passage'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Alternate Co-Sponsor Removed Rep. Kevin Schmidt,2024-05-01,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Glowiak Hilton,2023-03-30,['amendment-passage'],IL,103rd +Third Reading - Passed; 040-017-001,2024-05-23,"['passage', 'reading-3']",IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2023-04-20,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-13,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-16,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Margaret Croke,2023-05-03,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-02,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Labor; 015-000-000,2023-03-29,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Assigned to Counties & Townships Committee,2024-04-30,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-16,[],IL,103rd +Assigned to Housing,2023-04-18,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. David Friess,2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Third Reading - Passed; 043-015-000,2023-10-25,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-11,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-16,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2023-03-15,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2023-04-26,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-23,[],IL,103rd +Do Pass Licensed Activities; 008-000-000,2023-04-20,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-01,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-05-16,['amendment-introduction'],IL,103rd +"Alternate Chief Sponsor Changed to Sen. Napoleon Harris, III",2023-05-24,[],IL,103rd +First Reading,2023-05-04,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2023-03-21,['amendment-introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Donald P. DeWitte,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-03-01,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Will Guzzardi,2023-03-23,[],IL,103rd +Do Pass Higher Education; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +Chief House Sponsor Rep. Lance Yednock,2023-03-30,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Recalled to Second Reading,2023-05-10,['reading-2'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-27,['referral-committee'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mary Edly-Allen,2024-04-12,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Third Reading - Short Debate - Passed 082-031-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-04-24,[],IL,103rd +Do Pass Financial Institutions; 008-000-000,2023-04-26,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Paul Faraci,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-04-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-04-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-03,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0443,2023-08-04,['became-law'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2023-04-19,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-05,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. John F. Curran,2023-03-27,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Camille Y. Lilly,2023-03-21,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-03-21,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Do Pass Transportation; 013-000-000,2023-04-26,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-08,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Alternate Chief Sponsor Changed to Sen. Erica Harriss,2023-04-18,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-15,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-15,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-22,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-04-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-03-13,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-10-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-05-28,[],IL,103rd +Waive Posting Notice,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-20,[],IL,103rd +Public Act . . . . . . . . . 103-0127,2023-06-30,['became-law'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-02-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-02-16,[],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. Lance Yednock,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-24,[],IL,103rd +Assigned to Public Health,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-24,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-10-24,['reading-2'],IL,103rd +Do Pass as Amended Executive; 009-004-000,2023-05-10,['committee-passage'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-09,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2023-04-27,[],IL,103rd +Assigned to Human Rights,2023-04-12,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-02-15,[],IL,103rd +To Special Issues Subcommittee,2024-04-03,[],IL,103rd +Assigned to Labor,2023-04-18,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-04-25,[],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Assigned to Higher Education,2023-04-12,['referral-committee'],IL,103rd +Chief Co-Sponsor Changed to Rep. Cyril Nichols,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-04-28,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Assigned to Health and Human Services,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-04-20,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-22,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 013-000-000,2023-04-25,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-16,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Willie Preston,2023-05-05,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-15,[],IL,103rd +Racial Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Do Pass Local Government; 010-000-000,2023-04-27,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Chapin Rose,2023-03-30,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-21,[],IL,103rd +Public Act . . . . . . . . . 103-0124,2023-06-30,['became-law'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-18,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2023-03-22,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-03-05,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-26,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-04-17,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Jennifer Gong-Gershowitz,2023-03-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2023-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 081-022-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Fiscal Note Requested by Rep. Dan Caulkins,2023-05-02,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 010-005-000,2023-03-09,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Energy and Public Utilities; 009-000-000,2023-04-27,[],IL,103rd +Public Act . . . . . . . . . 103-0155,2023-06-30,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-02,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0042,2023-06-09,['became-law'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Special Committee on Criminal Law and Public Safety,2023-04-26,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-03,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-22,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2024-03-20,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-05-02,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Chief Sponsor Changed to Sen. David Koehler,2024-04-11,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-16,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2024-04-29,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-13,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Housing Affordability Impact Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +"Chief Co-Sponsor Changed to Rep. Edgar Gonzalez, Jr.",2023-04-27,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Public Act . . . . . . . . . 103-0666,2024-07-19,['became-law'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-07,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2024-04-18,[],IL,103rd +"Placed on Calendar Order of First Reading April 18, 2024",2024-04-17,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Removed Co-Sponsor Rep. Mary Gill,2023-04-26,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Terra Costa Howard,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-07,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-05-16,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-14,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2024-03-14,[],IL,103rd +Third Reading - Passed; 053-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Public Act . . . . . . . . . 103-0696,2024-07-19,['became-law'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-04-10,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-10-04,[],IL,103rd +Assigned to Local Government,2023-05-09,['referral-committee'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-05-24,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Mark L. Walker,2024-04-19,[],IL,103rd +Third Reading - Passed; 053-001-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-10,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-05-22,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety; 009-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Assigned to Education,2024-05-01,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0684,2024-07-19,['became-law'],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2024-04-24,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Do Pass as Amended / Short Debate Mental Health & Addiction Committee; 017-000-000,2024-04-04,['committee-passage'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Maura Hirschauer,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 4, 2023",2023-05-03,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-05-05,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-12-15,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Kimberly A. Lightford,2024-04-10,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-04-29,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-21,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Rachel Ventura,2024-05-14,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Executive Committee,2024-04-17,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 013-000-000,2024-05-16,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-29,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michelle Mussman,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-17,[],IL,103rd +Do Pass Energy and Public Utilities; 010-000-000,2024-05-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-05-08,[],IL,103rd +Adopted Both Houses,2023-05-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-04-04,[],IL,103rd +Third Reading - Short Debate - Passed 073-038-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-22,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jay Hoffman,2023-05-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-10-23,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2024-05-07,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0607,2024-07-01,['became-law'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-05-17,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-05-09,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-03-07,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-11-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Re-assigned to Executive,2024-01-10,['referral-committee'],IL,103rd +Waive Posting Notice,2023-05-02,[],IL,103rd +House Floor Amendment No. 1 Motion Filed to Table Rep. Harry Benton,2024-04-17,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-11-16,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-05-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-04-18,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-05-09,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2024-04-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-05-12,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-15,[],IL,103rd +Third Reading - Short Debate - Passed 088-022-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-11-07,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 075-033-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2024-04-18,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-05-23,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-18,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-25,[],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Referred to Assignments,2023-05-04,[],IL,103rd +Chief Senate Sponsor Sen. Linda Holmes,2024-04-18,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Recalled to Second Reading,2024-05-23,['reading-2'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-05-17,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Consumer Protection Committee,2024-04-16,[],IL,103rd +Referred to Rules Committee,2023-11-09,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-19,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Christopher ""C.D."" Davidsmeyer",2023-03-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-03-15,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Theresa Mah,2024-04-29,['amendment-introduction'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Steve Stadelman,2024-05-02,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-17,['amendment-passage'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-10,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael W. Halpin,2023-04-20,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-05-09,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-07,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-06,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-09,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Do Pass as Amended Energy and Public Utilities; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-30,['reading-2'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0129,2023-06-30,['became-law'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-05-28,[],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael W. Halpin,2023-04-24,[],IL,103rd +Do Pass as Amended Licensed Activities; 006-000-000,2023-04-27,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 014-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Assigned to Public Health,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-02-08,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Tom Weber,2024-05-01,[],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Labor & Commerce Committee; 019-010-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-03-14,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 5, 2023",2023-05-04,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 068-038-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Seth Lewis,2023-05-19,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Approved for Consideration Assignments,2023-11-07,[],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2023-03-22,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Lilian Jiménez,2023-03-15,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-21,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-12,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2023-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0738,2024-08-02,['became-law'],IL,103rd +Do Pass Executive; 011-000-000,2023-05-04,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-10-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0025,2023-06-09,['became-law'],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-05-10,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-05-16,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-23,[],IL,103rd +Third Reading - Passed; 053-003-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-05-09,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary Gill,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-12,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 008-004-000,2024-05-01,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-05,[],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-04-30,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 013-000-000,2024-03-20,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 3 Adopted,2024-05-01,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2024-05-01,['amendment-introduction'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-04-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-04-27,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Second Reading,2023-03-30,['reading-2'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2023-03-08,['amendment-introduction'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Third Reading - Short Debate - Passed 107-003-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 006-003-000,2024-05-21,['committee-passage'],IL,103rd +House Floor Amendment No. 5 Rules Refers to Judiciary - Civil Committee,2024-04-18,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-20,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Murphy,2023-03-29,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-02-20,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-21,[],IL,103rd +Do Pass Executive; 011-000-000,2024-05-22,['committee-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-03-23,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-03-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joe C. Sosnowski,2023-04-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2024-05-02,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-19,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 098-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-12,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-0098,2023-06-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-04-11,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-31,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Local Government,2023-04-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +Assigned to State Government Administration Committee,2024-04-24,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Paul Faraci,2024-05-10,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Third Reading - Passed; 046-009-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-04-20,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-12,[],IL,103rd +Chief House Sponsor Rep. Harry Benton,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2024-05-02,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2024-05-16,[],IL,103rd +Third Reading - Passed; 056-001-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-18,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-11-06,['amendment-introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 2 Adopted; Agriculture,2023-03-23,['amendment-passage'],IL,103rd +Assigned to State Government,2024-05-20,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-05-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 18, 2024",2024-04-17,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-19,[],IL,103rd +Assigned to Executive,2024-04-24,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0962,2024-08-09,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +State Mandates Fiscal Note Requested by Rep. Patrick Windhorst,2024-04-18,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Second Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anna Moeller,2024-05-01,[],IL,103rd +Do Pass as Amended Education; 013-000-000,2023-05-10,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-01,[],IL,103rd +Assigned to Consumer Protection Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2024-05-15,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Kam Buckner,2024-04-16,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-01-19,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-09,[],IL,103rd +Do Pass Judiciary; 008-000-000,2024-05-08,['committee-passage'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-14,['amendment-passage'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-000",2023-04-19,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Suzanne M. Ness,2024-05-24,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 010-000-000,2023-04-19,['committee-passage'],IL,103rd +Fiscal Note Requested by Rep. Blaine Wilhour,2023-05-02,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Tracy Katz Muhl,2024-04-11,['amendment-introduction'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Norma Hernandez,2024-03-27,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 4 Recommend Do Adopt Executive; 008-002-000,2023-03-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin John Olickal,2023-04-19,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-27,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-04-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Barbara Hernandez,2024-04-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-18,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 2 To Subcommittee on Procurement,2024-04-10,[],IL,103rd +Chief House Sponsor Rep. Margaret Croke,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 22, 2024",2024-03-21,['reading-3'],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Rules Committee; 004-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2024-05-06,[],IL,103rd +Motion Filed to Reconsider Vote Sen. Julie A. Morrison,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-05-10,[],IL,103rd +First Reading,2024-05-13,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-12,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Will Guzzardi,2024-04-16,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Paul Faraci,2023-03-29,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-05-08,[],IL,103rd +"Effective Date January 1, 2024; Some Provisions",2023-08-04,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Insurance,2024-05-20,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Waive Posting Notice,2024-05-22,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-04-15,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Brandun Schweizer,2024-05-23,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicole La Ha,2024-04-15,[],IL,103rd +Assigned to Counties & Townships Committee,2024-05-14,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-12,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-22,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-05-02,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Joyce Mason,2023-03-22,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-13,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-04-16,[],IL,103rd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Governor Approved,2023-05-31,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-23,['amendment-passage'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-05-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-10,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-27,[],IL,103rd +Resolution Adopted 113-000-000,2024-05-08,['passage'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-03-22,[],IL,103rd +Chief House Sponsor Rep. Debbie Meyers-Martin,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Financial Institutions; 005-000-000,2023-05-03,[],IL,103rd +Assigned to Transportation,2023-04-12,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-05-07,[],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Elizabeth ""Lisa"" Hernandez",2023-04-03,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-02-08,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-25,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Chief House Sponsor Rep. Jenn Ladisch Douglass,2023-03-23,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Fiscal Note Requested by Rep. Kevin John Olickal,2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-04-19,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-27,[],IL,103rd +"Removed Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-05-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Robyn Gabel,2023-10-31,[],IL,103rd +Re-assigned to Executive,2023-05-18,['referral-committee'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-21,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments.",2023-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2024-04-19,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Public Utilities Committee; 017-008-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Do Pass Senate Special Committee on Pensions; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2023-04-05,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Resolution Adopted 113-000-000,2024-05-08,['passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Terri Bryant,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-04-21,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-18,[],IL,103rd +Recalled to Second Reading,2023-10-26,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 10, 2023",2023-05-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2024-04-18,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-15,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-17,[],IL,103rd +Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-10-25,[],IL,103rd +First Reading,2024-05-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-29,[],IL,103rd +Third Reading - Short Debate - Passed 075-038-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-05-03,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-11,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jed Davis,2023-03-17,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-02,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 069-040-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-15,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +House Committee Amendment No. 1 To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Walker,2024-05-26,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-16,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 2 Postponed - Executive,2023-03-30,[],IL,103rd +Approved for Consideration Assignments,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-04-04,[],IL,103rd +Postponed - Transportation,2024-05-14,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Energy and Public Utilities,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-31,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-22,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-21,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-02-08,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Transportation: Vehicles & Safety,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-04-27,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-03-19,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-04-18,[],IL,103rd +House Committee Amendment No. 1 Adopted in Police & Fire Committee; by Voice Vote,2024-03-22,['amendment-passage'],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Assigned to Executive,2023-04-18,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-02,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Assigned to Appropriations,2024-05-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-05-23,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Loughran Cappel,2023-05-19,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-20,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Mental Health & Addiction Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-05-20,[],IL,103rd +Postponed - Executive,2023-03-30,[],IL,103rd +Third Reading - Standard Debate - Passed 105-001-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-04-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Mark L. Walker,2024-05-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Mark L. Walker,2024-05-08,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-03-24,['amendment-passage'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Revenue & Finance Committee,2024-04-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +House Committee Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Do Pass Revenue; 006-000-000,2023-05-10,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Home Rule Note Requested by Rep. Kevin John Olickal,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-11,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Chief House Sponsor Rep. Jay Hoffman,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-09,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Public Act . . . . . . . . . 103-0165,2023-06-30,['became-law'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-04-18,[],IL,103rd +"Effective Date May 31, 2023",2023-05-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-04-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-30,[],IL,103rd +Chief House Sponsor Rep. Jehan Gordon-Booth,2024-05-26,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Neil Anderson,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-23,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-21,[],IL,103rd +Do Pass as Amended / Short Debate Police & Fire Committee; 009-003-000,2024-03-22,['committee-passage'],IL,103rd +Assigned to Appropriations,2023-04-12,['referral-committee'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0040,2023-06-09,['became-law'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Celina Villanueva,2023-05-16,['filing'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-18,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 014-000-000,2023-03-15,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +Recalled to Second Reading,2024-04-18,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-15,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Matt Hanson,2024-04-16,['amendment-introduction'],IL,103rd +Third Reading - Passed; 045-011-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Assigned to Education,2023-04-18,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-03-27,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-05,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-04,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-31,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-09,[],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-02-08,[],IL,103rd +Arrived in House,2023-10-25,['introduction'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-04-18,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Financial Institutions,2023-04-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Yolonda Morris,2024-04-11,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +House Committee Amendment No. 2 To Medicaid & Managed Care Subcommittee,2024-04-04,[],IL,103rd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-27,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Chief Senate Sponsor Sen. Omar Aquino,2023-03-23,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-02-08,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Hoan Huynh,2023-03-22,[],IL,103rd +Third Reading - Passed; 037-016-000,2023-05-25,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 032-018-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-16,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-12-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Referred to Rules Committee,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-22,[],IL,103rd +Assigned to Human Services Committee,2023-04-11,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-10-25,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-17,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-17,[],IL,103rd +Do Pass Education; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-03-07,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-04-11,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-04-25,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Cunningham,2023-10-26,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-04-10,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Dave Vella,2024-04-29,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-04-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-02,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Koehler,2023-03-30,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Do Pass Executive; 011-000-000,2024-05-22,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 022-005-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-03-29,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Do Pass as Amended Higher Education; 009-000-000,2024-05-15,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-02-21,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Public Health; 006-001-000,2024-04-17,[],IL,103rd +Chief House Sponsor Rep. Robyn Gabel,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-01-30,[],IL,103rd +State Debt Impact Note Requested by Rep. Blaine Wilhour,2023-05-02,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Seth Lewis,2024-05-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 22, 2024",2024-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Third Reading - Passed; 043-015-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 012-000-000,2024-05-20,['committee-passage'],IL,103rd +Assigned to Judiciary,2024-05-14,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2024-04-24,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-04-10,[],IL,103rd +Public Act . . . . . . . . . 103-0464,2023-08-04,['became-law'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-05-09,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. William E Hauter,2024-05-09,['amendment-introduction'],IL,103rd +Motion to Reconsider Vote - Prevails 057-000-000,2024-04-11,[],IL,103rd +Public Act . . . . . . . . . 103-0988,2024-08-09,['became-law'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2024-05-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2023-05-11,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-20,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michael J. Kelly,2023-04-25,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Chief House Sponsor Rep. Martin J. Moylan,2023-04-03,[],IL,103rd +Assigned to Energy & Environment Committee,2023-04-18,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-11,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Curtis J. Tarver, II",2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-27,[],IL,103rd +House Floor Amendment No. 4 Motion Filed to Table Rep. John M. Cabello,2024-04-18,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Public Act . . . . . . . . . 103-0231,2023-06-30,['became-law'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2024-05-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Abdelnasser Rashid,2023-04-20,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-03-20,['amendment-failure'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Martin J. Moylan,2024-05-01,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2024-04-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-04-18,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michael J. Kelly,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-13,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-07,['amendment-passage'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 3 To Subcommittee on Procurement,2024-04-10,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2024-04-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-1050,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-01,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-04-20,[],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Kam Buckner,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-04-27,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Adriane Johnson,2023-04-26,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-11-06,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 067-039-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +"House Floor Amendment No. 5 Filed with Clerk by Rep. Robert ""Bob"" Rita",2024-04-18,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Third Reading - Passed; 057-001-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Third Reading - Passed; 044-006-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-04-12,[],IL,103rd +Do Pass / Short Debate Executive Committee; 011-000-000,2024-05-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Christopher Belt,2024-04-05,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Do Pass Executive; 008-003-000,2024-05-22,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2024-05-20,[],IL,103rd +Referred to Rules Committee,2024-05-13,[],IL,103rd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-03-24,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sharon Chung,2024-04-29,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-12,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-19,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-19,['amendment-failure'],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-05-03,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-03,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-06,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Hoan Huynh,2023-04-11,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Do Pass as Amended Executive; 011-001-000,2024-05-02,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Barbara Hernandez,2023-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-09,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2024-04-18,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Senate Committee Amendment No. 3 Adopted; Agriculture,2023-03-23,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 31, 2023",2023-03-30,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sally J. Turner,2024-05-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 22, 2024",2024-05-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-21,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-22,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Gregg Johnson,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-09,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-18,[],IL,103rd +Passed Both Houses,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-05-17,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-05-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-09,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Harmon,2024-05-23,['amendment-passage'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-17,[],IL,103rd +First Reading,2024-05-02,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-05-17,[],IL,103rd +Placed on Calendar - Consideration Postponed,2023-04-25,[],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-10-23,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-05-16,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-04-17,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Anne Stava-Murray,2023-03-15,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Christopher ""C.D."" Davidsmeyer",2023-03-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-15,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2024-01-10,[],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-17,[],IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-12,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-05-03,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-22,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-11-07,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-23,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2023-05-16,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-05-03,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-29,[],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-12-07,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-29,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-19,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Assigned to Appropriations,2023-05-09,['referral-committee'],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Nicholas K. Smith,2024-04-30,['amendment-introduction'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-29,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Celina Villanueva,2024-04-24,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Mary E. Flowers,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-03-06,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-16,[],IL,103rd +Chief Senate Sponsor Sen. Terri Bryant,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2024-05-14,[],IL,103rd +State Mandates Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Third Reading - Passed; 054-001-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +To Revenue - Property Tax Subcommittee,2024-03-08,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-04-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anne Stava-Murray,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-23,[],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Dan McConchie,2023-04-27,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-04-19,[],IL,103rd +Do Pass Public Health; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Local Government,2023-04-26,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 006-002-000,2024-05-01,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Sheehan,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-02-08,[],IL,103rd +Third Reading - Short Debate - Passed 070-039-000,2024-05-14,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-11,[],IL,103rd +Assigned to Licensed Activities,2024-04-30,['referral-committee'],IL,103rd +Assigned to Local Government,2023-04-12,['referral-committee'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-05-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 5, 2023",2023-05-04,['reading-2'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 108-000-001,2023-03-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-05-14,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-10-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-11-07,[],IL,103rd +Do Pass as Amended Executive; 009-004-000,2023-05-10,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +Chief Senate Sponsor Sen. Steve Stadelman,2023-03-24,[],IL,103rd +Chief House Sponsor Rep. Jehan Gordon-Booth,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +House Floor Amendment No. 1 Tabled,2024-05-22,['amendment-failure'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Randy E. Frese,2024-05-01,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-04-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve McClure,2023-03-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2024-05-02,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 027-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +"Placed on Calendar Order of First Reading April 17, 2024",2024-04-16,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 3 Motion Filed to Table Rep. Will Guzzardi,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-01,['amendment-failure'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-04-19,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-05-05,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-12,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-04-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Chief House Sponsor Rep. Anna Moeller,2024-04-12,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-03-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2024-05-16,[],IL,103rd +Do Pass Education; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-12,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-03-22,[],IL,103rd +Third Reading - Passed; 050-004-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-08,['reading-3'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Assigned to Consumer Protection Committee,2023-04-11,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Mark L. Walker,2024-05-08,[],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-05-14,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Laura Ellman,2023-03-29,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-04-19,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2024-05-07,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Johnson,2023-05-17,['amendment-passage'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +To Special Issues Subcommittee,2024-04-03,[],IL,103rd +Third Reading - Passed; 055-001-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of First Reading May 15, 2024",2024-05-14,['reading-1'],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-04-16,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-04-11,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt State Government; 009-000-000,2023-10-26,[],IL,103rd +House Floor Amendment No. 5 Rules Refers to Insurance Committee,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-04-18,['referral-committee'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-05-03,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-03-05,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lilian Jiménez,2023-04-20,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-21,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-04-11,['referral-committee'],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Kevin John Olickal,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-07,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jehan Gordon-Booth,2023-05-09,['amendment-introduction'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-16,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-02,['referral-committee'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Maura Hirschauer,2024-04-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; McConchie,2024-05-02,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-02-29,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Resolution Adopted; 059-000-000,2024-05-24,['passage'],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-30,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Chief House Sponsor Rep. Tony M. McCombie,2023-10-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-04-10,[],IL,103rd +Referred to Assignments,2024-05-15,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-05-05,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2024-04-10,['amendment-introduction'],IL,103rd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2024-03-06,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-03-24,['amendment-introduction'],IL,103rd +Assigned to State Government Administration Committee,2024-05-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Referred to Rules Committee,2024-05-26,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Tony M. McCombie,2023-05-03,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-05,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Camille Y. Lilly,2024-04-17,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Executive Committee; 009-002-000,2023-04-26,['committee-passage'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-04-11,[],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-04-20,['reading-1'],IL,103rd +Senate Floor Amendment No. 4 Recommend Do Adopt Local Government; 010-000-000,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2023-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 101-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Assigned to Executive Committee,2023-11-01,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-10-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-04-16,[],IL,103rd +Resolution Adopted 114-000-000,2024-04-30,['passage'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-25,[],IL,103rd +Chief Senate Sponsor Sen. Steve McClure,2024-04-17,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-09,[],IL,103rd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-31,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Mark L. Walker,2024-05-08,[],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2024-02-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-04-20,['amendment-introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Fiscal Note Requested by Rep. Bradley Fritts,2023-04-25,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2024-04-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nabeela Syed,2023-04-14,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 015-000-000,2023-04-25,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-03-14,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-04-26,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-05-20,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 5 Assignments Refers to Labor,2024-05-07,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-16,[],IL,103rd +Chief House Sponsor Rep. Dagmara Avelar,2023-04-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2024-04-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Assigned to Executive Committee,2023-05-16,['referral-committee'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-18,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-10,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Swanson,2024-05-02,[],IL,103rd +Third Reading - Short Debate - Passed 088-022-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 012-000-000,2023-04-26,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lance Yednock,2024-05-02,[],IL,103rd +Chief House Sponsor Rep. Dave Vella,2023-04-27,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-05-12,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-05-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-02,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Postponed - Education,2024-04-10,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Third Reading - Passed; 057-001-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-20,[],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-05-16,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Assigned to Energy & Environment Committee,2024-04-30,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-04-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Ellman,2024-05-02,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2024-05-08,[],IL,103rd +First Reading,2024-05-03,['reading-1'],IL,103rd +Home Rule Note Requested by Rep. Kam Buckner,2023-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 28, 2023",2023-03-24,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-15,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 013-000-000,2024-05-16,['committee-passage-favorable'],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-04-20,[],IL,103rd +Arrived in House,2024-04-18,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 102-007-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 22, 2024",2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-04-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading,2024-04-18,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2024-04-24,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Third Reading - Passed; 052-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-09,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Assigned to Gaming Committee,2023-05-24,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 100-010-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-20,[],IL,103rd +Assigned to Energy & Environment Committee,2023-04-18,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-11,['referral-committee'],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2023-04-27,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Energy and Public Utilities,2024-05-15,[],IL,103rd +Waive Posting Notice,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-19,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-03-29,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2023-04-19,['amendment-introduction'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Chief Senate Sponsor Sen. Sue Rezin,2024-04-24,[],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Kam Buckner,2023-05-16,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Assigned to Insurance Committee,2023-04-18,['referral-committee'],IL,103rd +Assigned to Insurance Committee,2023-04-18,['referral-committee'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Labor,2023-03-28,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-01,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Joyce Mason,2024-05-23,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2023-05-12,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-23,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +First Reading,2024-05-13,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Seth Lewis,2024-04-18,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2023-03-10,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-05-04,[],IL,103rd +Added as Co-Sponsor Sen. Mark L. Walker,2024-05-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-26,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2024-03-07,[],IL,103rd +Referred to Rules Committee,2024-05-03,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-05-03,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-002-000,2023-04-26,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-16,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-03-29,[],IL,103rd +Third Reading - Passed; 054-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-03-24,[],IL,103rd +Public Act . . . . . . . . . 103-0678,2024-07-19,['became-law'],IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-06,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Neil Anderson,2024-04-23,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 015-000-000,2024-04-30,['committee-passage'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-22,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Nicole La Ha,2024-05-23,[],IL,103rd +"Third Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-03-07,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-19,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-23,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin Schmidt,2024-05-09,[],IL,103rd +Senate Floor Amendment No. 4 Recommend Do Adopt Licensed Activities; 005-000-000,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-02-22,[],IL,103rd +Public Act . . . . . . . . . 103-0662,2024-07-19,['became-law'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-14,[],IL,103rd +Do Pass Insurance; 010-000-000,2024-05-08,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-07-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 008-001-001,2024-04-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-02-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-05-11,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +"Chief House Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-16,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-02,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 074-039-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-04-12,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-24,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-04-26,['committee-passage'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Adriane Johnson,2023-05-09,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-02,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-17,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2024-04-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +House Floor Amendment No. 2 Home Rule Note Filed as Amended,2023-03-09,[],IL,103rd +Chief Senate Sponsor Sen. Jason Plummer,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-17,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Natalie Toro,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Charles Meier,2024-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-0765,2024-08-02,['became-law'],IL,103rd +Added Chief Co-Sponsor Rep. Jed Davis,2024-04-19,[],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 18, 2023",2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 008-004-000,2024-05-22,['committee-passage-favorable'],IL,103rd +Do Pass Judiciary; 007-002-000,2024-05-08,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2024-05-15,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Assigned to Financial Institutions,2024-04-30,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-17,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-08,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Assigned to Appropriations- Education,2024-04-24,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-23,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Second Reading,2023-05-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-04-25,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 11, 2023",2023-05-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 018-010-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-23,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-02-07,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 27, 2023",2023-04-26,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-20,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-05-24,[],IL,103rd +"Motion Filed to Reconsider Vote Rep. Maurice A. West, II",2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 5, 2023",2023-05-04,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-14,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-02-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Ann M. Williams,2023-05-10,['amendment-introduction'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Do Pass Education; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-14,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Chief Senate Sponsor Sen. Sara Feigenholtz,2023-03-21,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-14,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-04-18,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-01,[],IL,103rd +House Floor Amendment No. 2 Balanced Budget Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2023-03-22,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Financial Institutions and Licensing Committee; 010-002-000,2023-04-25,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Do Pass as Amended Licensed Activities; 006-000-000,2023-04-27,['committee-passage'],IL,103rd +Do Pass Education; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-02-28,[],IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2023-04-27,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Do Pass Labor; 011-004-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 3, 2023",2023-05-02,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Postponed - Executive,2023-05-04,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-05,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-24,[],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Assigned to Appropriations,2023-04-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-21,[],IL,103rd +Do Pass Education; 012-000-000,2023-04-26,['committee-passage'],IL,103rd +Referred to Assignments,2023-03-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-21,[],IL,103rd +Referred to Assignments,2023-03-28,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Christopher Belt,2023-04-06,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-08,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin Schmidt,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sally J. Turner,2023-04-18,[],IL,103rd +Do Pass as Amended Education; 013-000-000,2023-05-10,['committee-passage'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Justin Slaughter,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-03-16,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Civil Committee; by Voice Vote,2023-03-08,['amendment-passage'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Public Act . . . . . . . . . 103-0183,2023-06-30,['became-law'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 5 Adopted,2023-03-24,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0440,2023-08-04,['became-law'],IL,103rd +Second Reading,2023-04-26,['reading-2'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-04-26,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-18,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-04-18,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Recalled to Second Reading,2023-05-19,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-03-22,[],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-04-03,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-05-21,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Laura Ellman,2024-05-22,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-01-16,[],IL,103rd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-14,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2024-05-09,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-05-02,[],IL,103rd +Second Reading,2023-03-24,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-30,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Norine K. Hammond,2023-03-23,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Re-assigned to Executive,2023-05-09,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-09,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Lakesia Collins,2023-03-07,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Ann Gillespie,2023-04-10,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-04-20,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-04-14,['amendment-introduction'],IL,103rd +Postponed - Education,2023-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-02-15,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Labor,2023-04-26,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-0190,2023-06-30,['became-law'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-11,[],IL,103rd +Do Pass Public Health; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Arrived in House,2023-10-25,['introduction'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-15,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-10-25,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-05-15,['amendment-introduction'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Do Pass Higher Education; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Neil Anderson,2023-04-26,['amendment-introduction'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-04-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-24,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 012-000-000,2023-04-26,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-11-01,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Halpin,2023-05-10,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-27,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Matt Hanson,2023-03-23,[],IL,103rd +Assigned to Appropriations,2023-04-12,['referral-committee'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 009-000-000,2023-05-24,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-26,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +Second Reading,2023-04-26,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-11,['reading-3'],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-05-19,['amendment-introduction'],IL,103rd +Re-assigned to Executive,2023-05-24,['referral-committee'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Energy and Public Utilities; 009-000-000,2023-04-27,[],IL,103rd +Home Rule Note Requested by Rep. Dan Caulkins,2023-05-02,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-09,[],IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 007-003-000,2023-04-27,['committee-passage'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-01,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Chief Senate Sponsor Sen. Win Stoller,2024-04-18,[],IL,103rd +Third Reading - Short Debate - Passed 078-032-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Remove Chief Co-Sponsor Rep. Lance Yednock,2023-03-22,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Emanuel ""Chris"" Welch",2023-02-16,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Emanuel ""Chris"" Welch",2023-10-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-05-07,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Celina Villanueva,2023-03-23,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-04-17,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Criminal Committee; 013-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-18,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-24,[],IL,103rd +Referred to Assignments,2023-05-04,[],IL,103rd +Third Reading - Passed; 042-017-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Assigned to Public Health,2023-04-12,['referral-committee'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2023-05-03,[],IL,103rd +Do Pass / Short Debate Adoption & Child Welfare Committee; 014-000-000,2023-04-25,['committee-passage'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-05-15,[],IL,103rd +Do Pass Public Health; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-03-30,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-05-09,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-23,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2023-05-17,[],IL,103rd +Second Reading,2023-05-08,['reading-2'],IL,103rd +House Committee Amendment No. 2 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Margaret Croke,2023-04-27,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 104-008-001,2023-05-11,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0057,2023-06-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-02-22,[],IL,103rd +Judicial Note Requested - Withdrawn by Rep. Lance Yednock,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-24,[],IL,103rd +Assigned to Transportation,2023-04-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-09,[],IL,103rd +Do Pass Health and Human Services; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-23,[],IL,103rd +Assigned to Executive,2023-05-04,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-06,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert F. Martwick,2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-16,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-02-22,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 054-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 008-000-000,2023-04-18,['committee-passage'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 023-000-000,2023-04-25,['committee-passage'],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Kam Buckner,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2023-05-02,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2024-04-24,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 008-004-000,2023-10-24,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Fiscal Note Requested by Rep. Dan Ugaste,2023-05-02,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Curtis J. Tarver, II",2023-05-19,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-10,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Pension Note Filed,2023-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 073-037-001,2023-05-12,"['passage', 'reading-3']",IL,103rd +Alternate Chief Sponsor Changed to Rep. Sharon Chung,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Adoption & Child Welfare Committee; 013-000-000,2023-05-09,['committee-passage-favorable'],IL,103rd +Do Pass as Amended Judiciary; 007-000-000,2024-05-21,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-05-06,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Chief House Sponsor Rep. Lindsey LaPointe,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-03-08,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-04-25,[],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 072-038-001,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2023-04-13,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-03,[],IL,103rd +Judicial Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-20,[],IL,103rd +Assigned to Executive Committee,2024-04-30,['referral-committee'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Lance Yednock,2024-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Jed Davis,2024-05-23,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Do Pass / Short Debate Housing; 011-003-000,2023-04-26,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2023-05-16,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-04-30,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-05-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-01,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-04-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 011-000-000,2023-04-26,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2024-05-21,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-01,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Public Health,2023-03-28,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-04-11,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michelle Mussman,2023-04-25,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-19,[],IL,103rd +"House Floor Amendment No. 3 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Recommends Be Adopted Immigration & Human Rights Committee; 007-004-000,2024-02-07,['committee-passage-favorable'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +Senate Floor Amendment No. 5 Assignments Refers to Environment and Conservation,2023-03-30,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-16,[],IL,103rd +Assigned to State Government Administration Committee,2023-04-18,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Chief House Sponsor Rep. Jay Hoffman,2023-03-30,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-02-20,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-28,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-21,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-15,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-16,[],IL,103rd +Public Act . . . . . . . . . 103-0983,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Peters,2023-03-30,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-02,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-000-000,2024-04-30,['committee-passage'],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Chief House Sponsor Rep. Mary Beth Canty,2024-04-12,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-04-24,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-23,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-04-18,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2023-04-25,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-05-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +Chief House Sponsor Rep. Dagmara Avelar,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-04,[],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-05-09,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Financial Institutions and Licensing Committee; 007-004-000,2024-05-20,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-03-21,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-11-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-04-03,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-03-24,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2024-04-26,['amendment-introduction'],IL,103rd +Recalled to Second Reading,2024-05-09,['reading-2'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Abdelnasser Rashid,2023-05-11,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-04-12,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Second Reading,2023-03-22,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 082-030-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Correctional Note Requested by Rep. Patrick Windhorst,2023-05-02,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-09,[],IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +Chief House Sponsor Rep. Charles Meier,2023-03-31,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-05-17,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-04-11,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Housing Affordability Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 007-004-000,2023-05-17,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-04-21,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-23,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Public Health Committee,2024-05-13,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-05-03,[],IL,103rd +Public Act . . . . . . . . . 103-0716,2024-07-19,['became-law'],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-24,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2024-03-07,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-05-08,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-04-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-02,[],IL,103rd +Assigned to Health and Human Services,2024-04-30,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2024-03-07,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-07,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-24,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Maura Hirschauer,2024-04-12,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Kevin Schmidt,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 008-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2023-04-04,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2024-05-13,['committee-passage-favorable'],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-22,['amendment-passage'],IL,103rd +Remove Chief Co-Sponsor Rep. Jennifer Sanalitro,2023-04-26,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2024-04-10,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Third Reading - Short Debate - Passed 096-014-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0637,2024-07-01,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Public Act . . . . . . . . . 103-0625,2024-07-01,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-29,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lakesia Collins,2023-04-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Judicial Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-04-25,[],IL,103rd +Chief House Sponsor Rep. Barbara Hernandez,2024-04-12,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2024-05-02,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Third Reading - Short Debate - Passed 083-029-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0775,2024-08-02,['became-law'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Labor,2024-04-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-04-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-04-10,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Assigned to Transportation,2024-04-24,['referral-committee'],IL,103rd +"Third Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-04-24,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-05-03,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Assigned to Transportation,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-25,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lindsey LaPointe,2023-04-27,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-25,[],IL,103rd +First Reading,2024-05-02,['reading-1'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-07-30,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-25,[],IL,103rd +Do Pass Education; 011-000-000,2024-05-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2024-04-16,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 082-029-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2024-03-07,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-10,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Mattie Hunter,2024-04-19,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-05-11,[],IL,103rd +Assigned to Energy & Environment Committee,2024-04-24,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. William E Hauter,2024-04-17,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Arrived in House,2024-04-17,['introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-16,[],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-22,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Robyn Gabel,2023-05-04,['amendment-introduction'],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Public Act . . . . . . . . . 103-0681,2024-07-19,['became-law'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-04-17,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Higher Education Committee,2024-05-13,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 27, 2023",2023-04-26,['reading-3'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-16,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-07,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-04-10,[],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-10-24,[],IL,103rd +"Placed on Calendar Order of First Reading April 17, 2024",2024-04-16,['reading-1'],IL,103rd +Postponed - Public Health,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-24,[],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2023-02-21,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-21,[],IL,103rd +"Removed Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-22,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0432,2023-08-04,['became-law'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2024-03-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +"Effective Date July 1, 2023",2023-06-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-12,['referral-committee'],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Dan Caulkins,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-03-23,[],IL,103rd +Assigned to Executive,2023-05-09,['referral-committee'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2023-05-24,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Licensed Activities,2023-04-25,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 018-009-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-04,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0306,2023-07-28,['became-law'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-25,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-04-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-04-26,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Neil Anderson,2023-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-05-17,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Willie Preston,2023-05-02,['amendment-introduction'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 010-000-000,2023-11-07,['committee-passage'],IL,103rd +Arrive in Senate,2023-05-10,['introduction'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-03,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 9, 2023",2023-05-08,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 010-005-000,2024-04-04,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** March 24, 2023",2023-03-23,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Linda Holmes,2023-05-11,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-04-27,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-04-27,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0174,2023-06-30,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-04-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-05-15,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Daniel Didech,2023-10-31,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2023-03-23,[],IL,103rd +Public Act . . . . . . . . . 103-0059,2023-06-09,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0322,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-15,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Laura M. Murphy,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Removed Co-Sponsor Rep. Katie Stuart,2023-04-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2024-04-25,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-10-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-02-22,[],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. Lance Yednock,2024-04-19,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-23,[],IL,103rd +Removed Co-Sponsor Rep. Joyce Mason,2024-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-11,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-04-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Do Pass as Amended Labor; 015-000-000,2023-04-27,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Caulkins,2023-03-13,[],IL,103rd +Third Reading - Short Debate - Passed 096-007-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-15,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-04-20,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Energy and Public Utilities,2023-05-09,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Judicial Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +State Mandates Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2023-10-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-30,[],IL,103rd +Chief House Sponsor Rep. Hoan Huynh,2023-04-21,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-06,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-04,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-04-06,[],IL,103rd +Chief Senate Sponsor Sen. Javier L. Cervantes,2023-03-27,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2023-04-18,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2024-03-13,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-05-09,[],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-03-14,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2023-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Education,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-30,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Health and Human Services,2024-05-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 28, 2023",2023-03-24,['reading-3'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-01-17,[],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2024-05-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-05-21,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-05-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-17,[],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-31,['amendment-failure'],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Education; 012-000-000,2023-03-29,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 4 Postponed - Environment and Conservation,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-04-30,['referral-committee'],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-15,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Cities & Villages Committee,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +Recalled to Second Reading - Short Debate,2024-05-23,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2024-04-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-04-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Brad Halbrook,2024-05-09,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-06,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-05-02,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2023-05-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-12-08,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-11,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-03-29,[],IL,103rd +Assigned to Executive Committee,2024-05-13,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 21, 2024",2024-05-21,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Justin Slaughter,2023-05-09,['amendment-introduction'],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-03-22,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-02-22,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Rules Refers to Labor & Commerce Committee,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 4 Adopted; Fine,2024-05-09,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-0998,2024-08-09,['became-law'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +"House Floor Amendment No. 3 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-000",2023-03-23,['committee-passage-favorable'],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-18,['referral-committee'],IL,103rd +Do Pass as Amended Judiciary; 009-000-000,2023-03-22,['committee-passage'],IL,103rd +"House Floor Amendment No. 3 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-04-17,['committee-passage-favorable'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-04-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2023-04-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Margaret Croke,2023-04-13,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-03-23,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-02-08,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Brad Stephens,2023-05-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0226,2023-06-30,['became-law'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Health and Human Services,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-05-02,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2024-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-22,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-15,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 30, 2024",2024-04-18,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-23,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pension Note Requested by Rep. Dan Ugaste,2023-05-02,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Assigned to Counties & Townships Committee,2024-05-21,['referral-committee'],IL,103rd +Assigned to Higher Education Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-11,[],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-04-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-05-02,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 096-014-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-04-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2023-05-08,[],IL,103rd +Third Reading - Passed; 050-005-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 028-000-000,2024-04-03,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Tom Weber,2024-04-16,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-23,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-04-21,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Tom Weber,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-03-13,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Chief House Sponsor Rep. Barbara Hernandez,2024-04-12,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Eva-Dina Delgado,2024-05-14,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Local Government,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2023-04-20,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 012-000-000,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-02-20,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicole La Ha,2024-05-01,[],IL,103rd +Senate Floor Amendment No. 4 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Assigned to Executive,2024-05-07,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin John Olickal,2023-04-25,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4a,2024-04-10,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Financial Institutions,2024-03-12,[],IL,103rd +Third Reading - Passed; 049-004-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-22,[],IL,103rd +Assigned to Executive,2024-04-30,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-1001,2024-08-09,['became-law'],IL,103rd +Assigned to Energy and Public Utilities,2023-04-18,['referral-committee'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2024-04-25,[],IL,103rd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2023-04-26,['amendment-passage'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2023-05-17,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Debbie Meyers-Martin,2023-04-20,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-24,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-04-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-04-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2023-05-08,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2024-05-20,['committee-passage'],IL,103rd +Judicial Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Villa,2023-03-22,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Assigned to Housing,2024-04-24,['referral-committee'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Fiscal Note Requested by Rep. Patrick Windhorst,2023-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-28,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Third Reading - Short Debate - Passed 072-038-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Brad Stephens,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-23,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 014-000-000,2023-04-26,['committee-passage'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Nabeela Syed,2023-04-13,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-10-25,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-05-16,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-02-22,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-01-16,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2024-03-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Laura M. Murphy,2024-03-08,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-05-10,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-13,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-17,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-22,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-09,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-05-04,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2024-05-16,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-01-26,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-23,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-14,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Agriculture,2023-04-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-23,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Consumer Protection Committee; 005-001-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-05-09,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-05-15,[],IL,103rd +Assigned to State Government Administration Committee,2023-04-11,['referral-committee'],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +House Floor Amendment No. 6 Filed with Clerk by Rep. Mary E. Flowers,2023-03-20,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-03-29,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-11-07,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-General Services Committee,2024-05-06,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-05-18,[],IL,103rd +Assigned to Behavioral and Mental Health,2024-04-30,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-29,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Do Pass Executive; 010-000-000,2023-05-17,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-29,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-05-17,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-22,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-10-23,[],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2024-05-08,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Appropriations-Health & Human Services Committee,2023-03-07,[],IL,103rd +Referred to Assignments,2024-05-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Third Reading - Passed; 056-001-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-05,[],IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +Assigned to Licensed Activities,2024-04-24,['referral-committee'],IL,103rd +Referred to Assignments,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-0613,2024-07-01,['became-law'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Paul Jacobs,2024-04-16,[],IL,103rd +Arrive in Senate,2023-05-15,['introduction'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-03-07,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2024-04-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Energy and Public Utilities,2023-03-09,['amendment-passage'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tony M. McCombie,2023-03-30,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-16,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-18,[],IL,103rd +Fiscal Note Requested by Rep. Norma Hernandez,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-10-25,[],IL,103rd +Assigned to Public Health,2023-04-12,['referral-committee'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading,2023-10-26,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-000-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-03-13,[],IL,103rd +Second Reading,2023-04-26,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-04-26,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 066-036-001,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-05-17,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 068-040-000,2023-05-02,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-05-20,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-03-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Housing Affordability Impact Note Requested by Rep. Kevin John Olickal,2024-04-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-16,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-04-19,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-11,['reading-3'],IL,103rd +House Floor Amendment No. 2 Motion Filed to Table Rep. Margaret Croke,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-03-30,[],IL,103rd +Do Pass Education; 013-000-000,2023-04-26,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2024-04-18,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-01,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-10-25,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Judiciary,2024-05-14,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Villa,2023-05-03,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-17,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-23,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-16,[],IL,103rd +Third Reading - Short Debate - Passed 071-034-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Paul Jacobs,2023-05-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-03-22,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Joyce Mason,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-16,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Kimberly A. Lightford,2023-05-18,['amendment-introduction'],IL,103rd +Arrived in House,2023-05-18,['introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2024-05-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-16,[],IL,103rd +Do Pass as Amended Judiciary; 008-000-000,2023-04-26,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-01-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-04-26,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2024-03-27,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Do Pass Education; 013-000-000,2023-04-26,['committee-passage'],IL,103rd +Assigned to Agriculture,2023-04-12,['referral-committee'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2023-03-22,['amendment-introduction'],IL,103rd +Public Act . . . . . . . . . 103-0003,2023-05-31,['became-law'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-21,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-24,[],IL,103rd +First Reading,2024-05-26,['reading-1'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-04-24,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Third Reading - Passed; 049-007-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Financial Institutions,2023-04-25,['amendment-passage'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-30,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-05-08,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-21,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-02-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-05-03,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Counties & Townships Committee,2024-04-11,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2024-04-24,['referral-committee'],IL,103rd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-19,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 027-000-000,2023-04-25,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-20,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dale Fowler,2024-05-08,['amendment-introduction'],IL,103rd +Do Pass as Amended Agriculture; 013-000-000,2023-03-23,['committee-passage'],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2024-05-01,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 24, 2024",2024-05-20,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2023-04-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Charles Meier,2023-05-11,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-04-17,[],IL,103rd +Removed Co-Sponsor Rep. La Shawn K. Ford,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-08,[],IL,103rd +First Reading,2024-05-01,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anna Moeller,2024-05-14,[],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-04-24,['referral-committee'],IL,103rd +Do Pass / Short Debate Economic Opportunity & Equity Committee; 005-002-000,2024-05-01,['committee-passage'],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +Do Pass as Amended Insurance; 010-000-000,2024-05-21,['committee-passage'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-04-25,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2024-05-09,[],IL,103rd +Arrived in House,2024-04-18,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-06,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-04-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-05-24,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Third Reading - Passed; 041-013-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Effective Date August 9, 2024; Some Provisions;",2024-08-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2024-05-22,[],IL,103rd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-31,[],IL,103rd +Public Act . . . . . . . . . 103-1043,2024-08-09,['became-law'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-18,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Assigned to Housing,2024-04-24,['referral-committee'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2024-04-29,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-09,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2024-04-25,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-04-26,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Yolonda Morris,2024-05-23,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Steven Reick,2023-05-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Chief House Sponsor Rep. Sharon Chung,2024-04-15,[],IL,103rd +Third Reading - Passed; 036-019-000,2023-03-31,"['passage', 'reading-3']",IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2024-05-08,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Norma Hernandez,2024-03-27,['amendment-introduction'],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-18,['amendment-failure'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Andrew S. Chesney,2024-04-26,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-11-07,['amendment-introduction'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Natalie A. Manley,2024-04-30,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Judiciary - Civil Committee,2024-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Chief Senate Sponsor Sen. Javier L. Cervantes,2023-03-23,[],IL,103rd +Approved for Consideration Assignments,2023-11-06,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-02-06,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Pension Note Filed,2023-05-02,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Fiscal Note Filed as Amended,2024-04-18,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-05-09,[],IL,103rd +Do Pass as Amended Judiciary; 007-000-001,2024-05-08,['committee-passage'],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jehan Gordon-Booth,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2024-05-20,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-08,[],IL,103rd +House Floor Amendment No. 5 Recommends Be Adopted Judiciary - Civil Committee; 015-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Motion to Suspend Rule 21 - Prevailed 075-040-000,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-01,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-05-09,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 22, 2024",2024-05-22,['reading-2'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-18,[],IL,103rd +House Floor Amendment No. 5 Referred to Rules Committee,2024-04-18,[],IL,103rd +Assigned to Insurance Committee,2024-05-13,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 22, 2024",2024-05-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-11,[],IL,103rd +Second Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-02-21,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-13,[],IL,103rd +To Executive Subcommittee on Special Issues,2024-05-01,[],IL,103rd +Assigned to Health and Human Services,2024-04-30,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-04-26,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-15,['reading-2'],IL,103rd +Assigned to State Government Administration Committee,2023-04-11,['referral-committee'],IL,103rd +Senate Floor Amendment No. 4 Adopted; Koehler,2023-03-30,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-05-06,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Amy Elik,2023-04-27,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2024-05-06,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Steve McClure,2023-04-18,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-23,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-23,[],IL,103rd +Assigned to Education,2024-04-30,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2023-03-27,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-14,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Sara Feigenholtz,2024-04-24,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Yolonda Morris,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-04-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jed Davis,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-10-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-04-12,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Passed Both Houses,2024-05-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Omar Aquino,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-28,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve McClure,2024-04-30,[],IL,103rd +Recalled to Second Reading - Short Debate,2024-04-19,['reading-2'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-08,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Sonya M. Harper,2023-03-20,['amendment-introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-05-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-05-09,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-05,[],IL,103rd +"Third Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jenn Ladisch Douglass,2024-03-20,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-05-13,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-21,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-03-22,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Christopher Belt,2023-05-09,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-03-12,[],IL,103rd +Passed Both Houses,2024-05-14,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-03-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-04-17,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-05-14,"['passage', 'reading-3']",IL,103rd +Assigned to Insurance Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-05,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Adriane Johnson,2023-04-19,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Fred Crespo,2024-05-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2023-04-18,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-06,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-23,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-12,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-05-09,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Third Reading - Passed; 040-015-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-24,['reading-1'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-05-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Do Pass as Amended Local Government; 010-000-000,2023-04-27,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-03-18,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-01,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-04-11,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Carol Ammons,2024-04-12,[],IL,103rd +Pension Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-17,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Adopted by Voice Vote,2023-03-23,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. John M. Cabello,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-03-14,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +House Floor Amendment No. 2 State Debt Impact Note Filed as Amended,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-02-22,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-18,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2024-02-22,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Removed Co-Sponsor Rep. Harry Benton,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-16,[],IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-03-21,[],IL,103rd +Chief House Sponsor Rep. Stephanie A. Kifowit,2024-04-12,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Assigned to Higher Education Committee,2023-03-07,['referral-committee'],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-16,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-05-24,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-12,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +To Revenue - Property Tax Subcommittee,2023-03-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-04-18,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Brandun Schweizer,2024-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 4 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Assigned to Agriculture,2024-04-30,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0762,2024-08-02,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Resolution Adopted; 053-000-000,2023-05-19,['passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Glowiak-Hilton,2023-03-29,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2024-05-23,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-10,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Do Pass Executive; 010-002-000,2024-05-09,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-17,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-17,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Matt Hanson,2023-04-19,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-03-20,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-04-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-01-25,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-05-05,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-24,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-18,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2023-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-03-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-18,[],IL,103rd +Third Reading - Short Debate - Passed 103-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-05-08,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dagmara Avelar,2024-05-15,['amendment-introduction'],IL,103rd +Re-assigned to Executive,2023-05-03,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Special Committee on Criminal Law and Public Safety,2023-04-27,[],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Robert ""Bob"" Rita",2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-10-26,[],IL,103rd +Third Reading - Passed; 039-016-001,2023-03-29,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Nabeela Syed,2024-02-28,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Third Reading - Short Debate - Passed 103-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-24,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 007-000-000,2023-04-19,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-24,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 009-000-000,2023-04-18,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-03-11,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-04-16,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-15,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-09,[],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-05-08,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-22,[],IL,103rd +Recalled to Second Reading,2023-05-04,['reading-2'],IL,103rd +Third Reading - Passed; 034-022-000,2023-05-25,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-24,[],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2023-11-07,[],IL,103rd +Resolution Adopted,2024-05-17,['passage'],IL,103rd +Second Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Personnel & Pensions Committee,2023-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-05-08,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Assigned to State Government,2024-05-20,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-06-03,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-09,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. David Friess,2023-10-26,[],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2023-11-06,[],IL,103rd +"Motion Filed to Suspend Rule 21 State Government Administration Committee; Rep. Elizabeth ""Lisa"" Hernandez",2024-05-24,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-02-08,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-03,[],IL,103rd +Remove Chief Co-Sponsor Rep. La Shawn K. Ford,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +3/5 Vote Required,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-09,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-05-24,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-16,[],IL,103rd +First Reading,2023-05-12,['reading-1'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-22,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-05-28,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-02,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-16,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-24,[],IL,103rd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-18,[],IL,103rd +Postponed - Judiciary,2024-04-30,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Public Act . . . . . . . . . 103-0992,2024-08-09,['became-law'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-18,[],IL,103rd +Do Pass / Short Debate Appropriations-Health & Human Services Committee; 023-000-000,2023-05-04,['committee-passage'],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-04-26,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2024-05-10,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 009-004-000,2024-05-15,['committee-passage-favorable'],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-04-30,[],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-04-24,['referral-committee'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Energy and Public Utilities; 012-000-000,2024-05-16,[],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2024-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-04-09,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Energy & Environment Committee,2024-04-17,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-04-18,['referral-committee'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. Kam Buckner,2023-05-03,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Swanson,2023-05-04,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-22,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Labor; 015-000-000,2023-03-29,[],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura Ellman,2024-05-23,['filing'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Do Pass State Government; 006-000-000,2024-05-22,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sharon Chung,2024-05-02,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Hoan Huynh,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-05-21,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2024-04-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Chief House Sponsor Rep. Janet Yang Rohr,2024-04-12,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Cervantes,2023-03-29,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-04-24,['referral-committee'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-11,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Hoan Huynh,2023-04-25,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-04-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-12,[],IL,103rd +Chief House Sponsor Rep. Kam Buckner,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-15,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Labor & Commerce Committee; 029-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Martwick,2023-03-30,['amendment-passage'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-03-24,['amendment-failure'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-000-000",2023-04-26,['committee-passage'],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Adam M. Niemerg,2024-05-08,[],IL,103rd +Referred to Rules Committee,2024-05-13,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-05-03,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-28,[],IL,103rd +Referred to Rules Committee,2024-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 016-000-000",2023-04-25,['committee-passage'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-29,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Assigned to Gaming Committee,2024-04-24,['referral-committee'],IL,103rd +Second Reading,2023-05-19,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Alternate Co-Sponsor Removed Rep. Terra Costa Howard,2024-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-07,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-22,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Second Reading,2024-05-07,['reading-2'],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Executive,2023-03-30,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-11,['reading-3'],IL,103rd +Chief House Sponsor Rep. Anna Moeller,2024-04-12,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Adoption & Child Welfare Committee,2024-04-17,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-04-11,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2023-04-04,[],IL,103rd +Public Act . . . . . . . . . 103-0242,2023-06-30,['became-law'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anne Stava-Murray,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-04-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 098-013-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-02,[],IL,103rd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2024-05-23,['amendment-introduction'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Mary Gill,2023-04-25,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-12,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 075-040-000,2023-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-04-30,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-05-02,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2023-04-26,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2024-02-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Yolonda Morris,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-04-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-16,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-24,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2023-04-27,[],IL,103rd +Third Reading - Passed; 057-002-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-05-18,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-15,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 071-037-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 010-004-000,2023-03-08,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-05-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Craig Wilcox,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Judicial Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-02-22,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-15,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Sue Scherer,2023-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-23,[],IL,103rd +Public Act . . . . . . . . . 103-0140,2023-06-30,['became-law'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2023-04-21,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2023-05-04,[],IL,103rd +Passed Both Houses,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Tabled,2024-05-22,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-03-21,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Seth Lewis,2023-05-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 27, 2023",2023-04-26,['reading-3'],IL,103rd +Chief Co-Sponsor Changed to Rep. Harry Benton,2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-16,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Police & Fire Committee,2023-03-20,[],IL,103rd +"Removed Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Placed on Calendar - Consideration Postponed,2023-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-04-25,['amendment-passage'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-26,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-16,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Kam Buckner,2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-05-09,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 100-012-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Linda Holmes,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Belt,2023-05-19,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2023-04-21,['amendment-introduction'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-04-26,[],IL,103rd +Assigned to State Government,2023-04-12,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-03-22,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-07,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-21,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-24,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2023-05-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-14,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +First Reading,2023-04-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-02-28,[],IL,103rd +Do Pass Education; 012-000-000,2024-05-07,['committee-passage'],IL,103rd +Third Reading - Consideration Postponed,2023-04-27,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-24,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-03-09,['committee-passage'],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-14,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-20,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-18,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-02-07,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-04-26,[],IL,103rd +Waive Posting Notice,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2023",2023-05-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-03-24,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-08,[],IL,103rd +House Floor Amendment No. 2 Correctional Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Erica Harriss,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 008-005-000,2023-03-22,['committee-passage-favorable'],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Referred to Assignments,2023-04-27,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Higher Education,2023-04-18,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Natalie A. Manley,2023-03-21,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-08,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-01,[],IL,103rd +Public Act . . . . . . . . . 103-0327,2023-07-28,['became-law'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-04-26,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-10,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-05,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Arrive in Senate,2024-05-23,['introduction'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2023-05-19,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Assigned to Executive,2023-04-18,['referral-committee'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +Do Pass as Amended Judiciary; 008-000-000,2023-04-26,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Behavioral and Mental Health,2023-04-26,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-24,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-15,[],IL,103rd +Assigned to Veterans Affairs,2023-04-12,['referral-committee'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-04-20,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Hoan Huynh,2023-03-21,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 004-000-000,2023-03-20,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-23,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-23,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2023-05-09,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Jil Tracy,2023-05-17,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 19, 2023",2023-05-18,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-04-26,[],IL,103rd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-03-15,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-15,[],IL,103rd +Third Reading - Passed; 036-016-000,2023-05-05,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Assigned to Appropriations,2023-04-12,['referral-committee'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-07,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2023-03-23,[],IL,103rd +Arrived in House,2023-05-10,['introduction'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-21,[],IL,103rd +Postponed - State Government,2023-04-20,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-05-02,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Hoan Huynh,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-08,[],IL,103rd +Third Reading - Short Debate - Passed 103-000-001,2023-03-24,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-24,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-03-27,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 007-003-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2023-03-21,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2023-04-21,['amendment-introduction'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2023-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0118,2023-07-04,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Public Utilities Committee; 013-007-000,2023-03-15,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-09,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-09,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael W. Halpin,2023-03-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2023-05-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-16,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2024-04-16,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-23,[],IL,103rd +Third Reading - Passed; 036-020-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-04-26,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Public Utilities Committee,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-02-22,[],IL,103rd +Third Reading - Short Debate - Passed 062-041-002,2023-03-22,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-16,[],IL,103rd +House Floor Amendment No. 2 Tabled,2023-03-23,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Third Reading - Passed; 054-001-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-22,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Third Reading - Passed; 037-018-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Recalled to Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-06,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Brad Stephens,2024-03-06,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-05-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-05-03,[],IL,103rd +Motion Filed to Reconsider Vote Rep. Patrick Windhorst,2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-03-30,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading March 23, 2023",2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-03-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +House Floor Amendment No. 1 Balanced Budget Note Requested as Amended by Rep. Rita Mayfield,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-03-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-03,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2023-05-05,['amendment-introduction'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-04-24,['referral-committee'],IL,103rd +Third Reading - Passed; 057-000-000,2023-10-25,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2024-04-18,[],IL,103rd +Chief House Sponsor Rep. Lakesia Collins,2023-03-31,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2023-05-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +First Reading,2024-05-14,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-24,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-02-13,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-02,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 006-003-000,2023-04-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +First Reading,2024-05-24,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2023-05-18,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-05-19,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2024-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-05-05,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-04-25,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-11-15,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Chief House Sponsor Rep. Tony M. McCombie,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-03-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-24,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-11-06,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-04-20,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-05-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-02-28,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-25,['amendment-failure'],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Assigned to Executive,2024-05-16,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. John Egofske,2023-04-26,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Cunningham,2023-05-04,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-01,[],IL,103rd +Waive Posting Notice,2024-05-21,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-01-31,['referral-committee'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Harmon,2024-05-26,['amendment-passage'],IL,103rd +Third Reading - Passed; 055-000-000,2024-05-02,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-04-11,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Referred to Rules Committee,2023-05-12,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2024-04-15,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-05-08,[],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-16,['amendment-failure'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-13,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-05-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-05-08,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-19,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jackie Haas,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-03-05,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Suzanne M. Ness,2023-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-03-23,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2024-05-24,[],IL,103rd +First Reading,2023-04-20,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Withdrawn by Sen. Michael W. Halpin,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 006-003-000,2023-04-27,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-03-30,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-22,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-17,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Assigned to Consumer Protection Committee,2023-05-09,['referral-committee'],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0055,2023-06-09,['became-law'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 012-000-000,2023-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-001,2024-04-15,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-29,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-04-18,[],IL,103rd +Chief House Sponsor Rep. Dagmara Avelar,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-04-10,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2024-05-09,[],IL,103rd +Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 111-001-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2024-04-18,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Abdelnasser Rashid,2024-05-15,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-05-24,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-04-18,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-23,[],IL,103rd +Second Reading,2024-04-11,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Chief Senate Sponsor Sen. Steve Stadelman,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-02,[],IL,103rd +Assigned to Executive Committee,2023-05-16,['referral-committee'],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-02,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Jeff Keicher,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0627,2024-07-01,['became-law'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-04-21,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-22,[],IL,103rd +Do Pass Transportation; 013-000-000,2024-05-01,['committee-passage'],IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +Chief House Sponsor Rep. Robyn Gabel,2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +"Chief Co-Sponsor Changed to Rep. Edgar Gonzalez, Jr.",2023-04-27,[],IL,103rd +Adopted Both Houses,2023-05-19,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Assigned to Executive,2023-05-24,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +Recommends Be Adopted Higher Education Committee; 008-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 2 Pension Note Filed as Amended,2023-03-10,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Patrick Sheehan,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-04-17,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Tracy Katz Muhl,2024-04-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-05-16,[],IL,103rd +Assigned to Counties & Townships Committee,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-02-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-02-22,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Randy E. Frese,2024-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2024-04-04,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-02-22,[],IL,103rd +Chief House Sponsor Rep. Mary Gill,2024-04-12,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-18,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mary Beth Canty,2023-05-01,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4a,2024-04-11,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2024-04-29,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +First Reading,2023-05-02,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-09,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-05-16,['amendment-introduction'],IL,103rd +Third Reading - Passed; 048-005-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Arrived in House,2024-04-17,['introduction'],IL,103rd +"Motion Filed to Suspend Rule 21 Executive Committee; Rep. Elizabeth ""Lisa"" Hernandez",2024-05-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Charles Meier,2024-05-02,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-05-07,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2024-05-25,[],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Postponed - Education,2024-04-16,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Linda Holmes,2024-05-23,['filing'],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Third Reading - Passed; 034-021-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-04-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-12,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Do Pass / Short Debate Insurance Committee; 012-000-000,2023-04-25,['committee-passage'],IL,103rd +Assigned to Human Services Committee,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 3 Withdrawn by Sen. Karina Villa,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2023-04-25,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-03-07,[],IL,103rd +Public Act . . . . . . . . . 103-0950,2024-08-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Counties & Townships Committee; 007-000-000,2024-05-20,['committee-passage-favorable'],IL,103rd +Judicial Note Requested by Rep. Kam Buckner,2023-05-03,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-11,[],IL,103rd +Assigned to Health and Human Services,2024-04-30,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-04-26,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-04-11,['referral-committee'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 012-000-000,2024-04-30,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0866,2024-08-09,['became-law'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-03-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-13,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-04-18,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Passed; 041-002-000,2023-03-28,"['passage', 'reading-3']",IL,103rd +"Alternate Chief Sponsor Changed to Rep. Maurice A. West, II",2024-05-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 3 Postponed - Local Government,2024-05-15,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0931,2024-08-09,['became-law'],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-02,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-04-27,[],IL,103rd +"House Committee Amendment No. 3 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2024-04-17,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2023-04-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-03-07,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-05-29,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Economic Opportunity & Equity Committee; 005-001-000,2024-05-20,['committee-passage'],IL,103rd +Do Pass as Amended Insurance; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 23, 2023",2023-03-22,['reading-3'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-13,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-18,[],IL,103rd +Motion Filed to Suspend Rule 21 Gaming Committee; Rep. Barbara Hernandez,2023-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sharon Chung,2024-05-20,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Steven Reick,2023-05-04,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 026-000-000,2024-05-07,['committee-passage'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Second Reading,2024-05-17,['reading-2'],IL,103rd +House Floor Amendment No. 4 Rules Refers to Energy & Environment Committee,2024-04-17,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2023-04-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 22, 2024",2024-05-22,['reading-2'],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Kam Buckner,2023-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-04-10,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 106-000-001,2024-05-20,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lance Yednock,2024-05-25,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Martwick,2023-03-30,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Health and Human Services; 008-000-000,2023-03-29,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-04-10,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Anna Moeller,2023-04-25,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-05-11,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-30,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-04-15,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-25,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-04-25,[],IL,103rd +Senate Floor Amendment No. 5 Recommend Do Adopt Environment and Conservation; 006-003-000,2023-03-31,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-04-20,[],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2024-05-02,[],IL,103rd +Assigned to Executive Committee,2024-05-13,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2024-05-09,[],IL,103rd +Chief House Sponsor Rep. Justin Slaughter,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2024-05-07,[],IL,103rd +First Reading,2024-05-17,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-27,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 22, 2024",2024-05-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2024-05-23,[],IL,103rd +"Chief House Sponsor Rep. William ""Will"" Davis",2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-23,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 4 Postponed - Executive,2023-03-31,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 4 Adopted,2024-04-11,['amendment-passage'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-03-30,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-04-30,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-18,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Police & Fire Committee,2023-04-25,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Margaret Croke,2023-04-13,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anthony DeLuca,2023-05-08,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-04-26,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-30,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2024-03-14,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-21,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Do Pass as Amended / Short Debate Human Services Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 019-010-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-08,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-05-04,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Tom Bennett,2023-03-23,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Rita Mayfield,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2023-05-11,[],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-05-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2024-02-29,[],IL,103rd +Do Pass / Short Debate Housing; 016-000-000,2024-05-01,['committee-passage'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-13,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-04-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-30,['amendment-failure'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Financial Institutions,2024-03-12,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-05-02,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Anna Moeller,2024-05-24,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2023-03-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jennifer Sanalitro,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-18,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mike Simmons,2024-05-23,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-05-17,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Kelly M. Cassidy,2023-05-16,[],IL,103rd +House Floor Amendment No. 1 Withdrawn by Rep. Jay Hoffman,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2023-05-19,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2024-05-07,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-02-08,['amendment-failure'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-21,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-22,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-04-25,['amendment-introduction'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-05-14,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Arrived in House,2024-05-17,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-04-26,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Do Pass as Amended Licensed Activities; 005-000-000,2024-05-22,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 088-024-002,2023-05-16,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-17,[],IL,103rd +Pension Note Filed,2023-05-02,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Counties & Townships Committee; 008-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-04-19,[],IL,103rd +Pension Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-16,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2023-04-20,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Cities & Villages Committee; 016-000-000,2023-04-25,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 009-000-000,2024-05-09,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Matt Hanson,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-03-22,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Chief Senate Sponsor Sen. Mattie Hunter,2024-04-30,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-03-02,['amendment-introduction'],IL,103rd +Public Act . . . . . . . . . 103-1038,2024-08-09,['became-law'],IL,103rd +Do Pass Judiciary; 007-000-000,2024-05-21,['committee-passage'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Omar Aquino,2023-10-26,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-04-18,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2024-04-16,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-14,[],IL,103rd +Chief House Sponsor Rep. Jay Hoffman,2023-03-31,[],IL,103rd +Judicial Note Requested by Rep. Patrick Windhorst,2023-05-02,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 007-001-000,2023-04-25,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2024-05-25,['amendment-introduction'],IL,103rd +Do Pass Energy and Public Utilities; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-02-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-04-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Alternate Co-Sponsor Removed Rep. Michelle Mussman,2023-04-21,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 22, 2024",2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-04-12,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 010-000-000,2024-05-01,['committee-passage'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lance Yednock,2023-04-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-11,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-04-12,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-16,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 16, 2023",2023-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-10,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-11,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-15,['reading-3'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 015-000-000,2024-05-01,['committee-passage'],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-19,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2023-05-08,['amendment-introduction'],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-05-02,['introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-05-10,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-05-02,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-02-21,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-15,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-000-000,2023-05-24,[],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Emanuel ""Chris"" Welch",2024-05-20,[],IL,103rd +Chief Sponsor Changed to Sen. Mark L. Walker,2024-05-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-03,[],IL,103rd +Third Reading - Passed; 048-008-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Licensed Activities,2023-04-26,['amendment-passage'],IL,103rd +Alternate Chief Sponsor Removed Rep. Hoan Huynh,2023-04-21,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Elizabeth ""Lisa"" Hernandez",2023-10-31,[],IL,103rd +Public Act . . . . . . . . . 103-0431,2023-08-04,['became-law'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 068-035-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-04-26,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-10-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-23,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Robert Peters,2023-05-09,[],IL,103rd +3/5 Vote Required,2023-10-26,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-02-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety; 008-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 072-035-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Pension Note Requested - Withdrawn by Rep. Lance Yednock,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-14,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-04-26,['amendment-passage'],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-23,[],IL,103rd +First Reading,2023-03-28,['reading-1'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Karina Villa,2023-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 007-003-000,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-02-28,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-04-11,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Human Rights,2023-04-25,[],IL,103rd +Public Act . . . . . . . . . 103-0028,2023-06-09,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 071-032-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Do Pass Transportation; 017-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2023-03-27,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2023-04-20,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-05-04,['amendment-introduction'],IL,103rd +Third Reading - Passed; 057-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-27,[],IL,103rd +Placed on Calendar Order of First Reading,2023-05-10,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Dan Caulkins,2023-03-13,[],IL,103rd +Do Pass as Amended Financial Institutions; 007-000-000,2023-04-26,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-05,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2023-05-02,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Counties & Townships Committee; 006-001-000,2023-03-23,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2024-04-16,['amendment-introduction'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-05-09,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Meg Loughran Cappel,2023-04-06,[],IL,103rd +Sent to the Governor,2024-05-28,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Housing,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-24,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-04-03,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-04-26,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-21,[],IL,103rd +Third Reading - Passed; 033-020-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0029,2023-06-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-12,[],IL,103rd +Public Act . . . . . . . . . 103-0187,2023-06-30,['became-law'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Environment and Conservation,2023-05-09,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Laura M. Murphy,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-22,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-09,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-04-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-29,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Margaret Croke,2024-03-05,['amendment-introduction'],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-15,[],IL,103rd +Assigned to Licensed Activities,2023-04-12,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-09,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-05-01,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-04-20,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Erica Harriss,2023-04-25,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Labor,2023-04-26,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-04-25,[],IL,103rd +Recalled to Second Reading,2023-05-24,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Transportation,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Energy and Public Utilities; 010-000-000,2023-05-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0131,2023-06-30,['became-law'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Personnel & Pensions Committee,2024-05-16,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-05-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mark L. Walker,2023-10-31,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-02-16,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-22,[],IL,103rd +Assigned to State Government,2024-04-30,['referral-committee'],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-23,[],IL,103rd +Assigned to Insurance,2024-04-30,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-03-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +Do Pass Transportation; 013-000-000,2024-05-01,['committee-passage'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-05-19,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Tom Bennett,2024-05-07,[],IL,103rd +Do Pass Health and Human Services; 014-000-000,2024-05-08,['committee-passage'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Labor; 010-005-000,2024-05-01,[],IL,103rd +Chief House Sponsor Rep. Michelle Mussman,2024-04-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2024-05-14,[],IL,103rd +Public Act . . . . . . . . . 103-0688,2024-07-19,['became-law'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2024-05-09,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-04-11,['referral-committee'],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-05-10,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-03-07,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Porfirio,2024-04-18,[],IL,103rd +Chief Senate Sponsor Sen. Terri Bryant,2024-04-30,[],IL,103rd +Referred to Rules Committee,2024-05-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Pension Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-15,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-03-06,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-03-07,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-05,[],IL,103rd +Third Reading - Short Debate - Passed 098-014-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2023-05-04,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-12,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 020-000-000,2024-04-30,['committee-passage'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0619,2024-07-01,['became-law'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-04-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-03-07,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-13,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-12,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-09-11,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Mark L. Walker,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2024-04-25,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Senate Committee Amendment No. 3 Assignments Refers to Executive,2024-05-23,[],IL,103rd +Re-assigned to Revenue,2024-01-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Health and Human Services,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-15,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-05-13,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-02-08,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-14,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael W. Halpin,2023-04-20,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-15,[],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2023-03-27,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Assigned to State Government,2023-04-18,['referral-committee'],IL,103rd +Passed Both Houses,2024-05-14,[],IL,103rd +Do Pass Local Government; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-20,[],IL,103rd +Assigned to Veterans Affairs,2023-04-12,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-15,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-04-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-04-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2023-04-27,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-05-02,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. William ""Will"" Davis",2024-05-06,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 21, 2023",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-11,[],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2023-03-20,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Do Pass Education; 012-000-000,2024-05-07,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-23,[],IL,103rd +Second Reading - Standard Debate,2023-03-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2024-05-14,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-05-12,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2023-04-18,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 015-000-000,2024-04-30,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-03-12,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-05-15,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Second Reading,2023-05-08,['reading-2'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-16,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2023-10-25,[],IL,103rd +House Floor Amendment No. 2 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0734,2024-08-02,['became-law'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-05-16,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-23,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Sue Scherer,2023-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-05-04,[],IL,103rd +Added as Chief Co-Sponsor Sen. Sara Feigenholtz,2023-10-25,[],IL,103rd +Judicial Note Requested by Rep. Kevin John Olickal,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-03-24,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Do Pass as Amended Energy and Public Utilities; 015-001-000,2023-03-09,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anthony DeLuca,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-22,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Do Pass Public Health; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-05,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Transportation: Vehicles & Safety,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-04-26,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Nabeela Syed,2023-03-06,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-11-01,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Assigned to Energy & Environment Committee,2023-11-01,['referral-committee'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Recalled to Second Reading,2023-05-04,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-05-26,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Janet Yang Rohr,2024-04-12,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Committee Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2023-04-17,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-03-11,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-23,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2023-04-18,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-20,[],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0176,2023-07-04,['became-law'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 107-005-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments:",2024-05-14,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Eva-Dina Delgado,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-13,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2023-03-21,[],IL,103rd +Assigned to Education,2023-04-25,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-05-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-17,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 27, 2023",2023-04-26,['reading-3'],IL,103rd +Do Pass Agriculture; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-05-02,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-05-25,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2023-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-24,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-24,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-22,[],IL,103rd +Re-assigned to State Government,2023-05-16,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-24,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-20,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-16,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-19,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-19,[],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-02-08,[],IL,103rd +Third Reading - Passed; 043-013-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2024-05-26,[],IL,103rd +Assigned to Executive Committee,2024-02-14,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-05-22,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-04-06,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2023-03-30,[],IL,103rd +Arrive in Senate,2023-05-03,['introduction'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 3 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Assigned to Insurance,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-001-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-29,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2024-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-05-09,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-05-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-18,[],IL,103rd +Placed on Calendar Order of First Reading,2023-05-15,['reading-1'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Appropriations-General Services Committee,2024-05-06,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-22,[],IL,103rd +Removed Co-Sponsor Rep. Bob Morgan,2024-02-22,[],IL,103rd +Resolution Adopted,2023-03-29,['passage'],IL,103rd +House Floor Amendment No. 6 Referred to Rules Committee,2023-03-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 008-001-000,2023-04-19,['committee-passage'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Janet Yang Rohr,2024-05-16,['amendment-introduction'],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Public Act . . . . . . . . . 103-0631,2024-07-01,['became-law'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Agriculture,2023-04-27,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-14,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 058-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Michael E. Hastings,2024-05-25,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Assigned to Transportation,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Assigned to Local Government,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2024-03-08,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-05-10,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2024-04-17,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2024-05-16,[],IL,103rd +Assigned to Insurance,2024-04-30,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-05-17,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-03-14,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-01-16,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Tom Bennett,2023-04-14,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-10-23,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-18,[],IL,103rd +Pension Note Filed,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-02,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-29,[],IL,103rd +Assigned to Transportation,2024-05-07,['referral-committee'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-04-16,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-08,['amendment-passage'],IL,103rd +Be Adopted Executive; 009-002-000,2023-05-17,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-17,['reading-2'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2024-05-01,['committee-passage'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jennifer Sanalitro,2024-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-15,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-05-02,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading November 7, 2023",2023-11-06,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Assigned to Labor & Commerce Committee,2024-04-24,['referral-committee'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-05-13,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2024-02-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Maura Hirschauer,2024-05-14,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-16,[],IL,103rd +Recalled to Second Reading - Short Debate,2024-04-19,['reading-2'],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Revenue,2023-03-29,[],IL,103rd +Referred to Assignments,2024-05-01,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 012-000-000,2024-04-30,['committee-passage'],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading March 24, 2023",2023-03-23,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 115-000-000,2023-05-16,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-15,[],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-12,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-03,['amendment-failure'],IL,103rd +Do Pass / Short Debate Appropriations-General Services Committee; 013-000-000,2024-05-15,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-26,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Yolonda Morris,2024-05-22,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Third Reading - Passed; 048-005-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Local Government,2023-04-26,[],IL,103rd +Chief House Sponsor Rep. Eva-Dina Delgado,2024-04-09,[],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 006-002-000,2024-04-30,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-1049,2024-08-09,['became-law'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-27,[],IL,103rd +State Debt Impact Note Filed,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-11-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-10,[],IL,103rd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-08,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Immigration & Human Rights Committee; 008-004-000,2024-05-01,['committee-passage'],IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-05-16,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2024-04-30,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Assigned to Agriculture,2024-05-14,['referral-committee'],IL,103rd +Waive Posting Notice,2024-05-21,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-05-24,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2023-04-20,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 012-003-000,2024-04-30,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-18,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-04-24,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2024-04-19,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Sims,2024-05-26,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-0228,2023-06-30,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2024-05-09,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Christopher Belt,2024-04-05,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +"Effective Date January 1, 2025; Some Provisions",2024-08-09,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-12,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. David Friess,2024-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-28,[],IL,103rd +Public Act . . . . . . . . . 103-0826,2024-08-09,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2023-05-03,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Cassidy,2023-03-13,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-04-10,[],IL,103rd +Assigned to Education,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-04-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Chief House Sponsor Rep. Tony M. McCombie,2024-05-16,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-20,[],IL,103rd +Third Reading - Short Debate - Passed 077-032-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-29,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Brandun Schweizer,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Third Reading - Short Debate - Passed 070-037-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-05-16,[],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-05-16,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Wayne A Rosenthal,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Assigned to Energy & Environment Committee,2024-04-24,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2024-05-06,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-05-22,[],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-04-20,[],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Matt Hanson,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-02-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-10,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2024-05-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-11,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 015-010-000,2024-05-07,['committee-passage-favorable'],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Recalled to Second Reading,2024-04-18,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2024-04-12,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-21,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Porfirio,2024-05-15,['amendment-introduction'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-18,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-23,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-30,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Dave Vella,2024-04-29,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-24,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-02,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-04-11,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-29,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Lance Yednock,2024-05-16,[],IL,103rd +Second Reading - Short Debate,2024-05-14,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-1039,2024-08-09,['became-law'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-13,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-008-000,2024-04-30,['committee-passage'],IL,103rd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-12,[],IL,103rd +Do Pass Education; 010-002-000,2024-05-01,['committee-passage'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-04-05,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-03-14,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-11,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-03-28,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-05-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Assigned to State Government Administration Committee,2024-02-28,['referral-committee'],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-08,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Senate Committee Amendment No. 3 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Public Utilities Committee; 015-000-000,2024-05-07,['committee-passage-favorable'],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-04-10,[],IL,103rd +Approved for Consideration Rules Committee; 003-002-000,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-23,[],IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-03-21,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2024-05-24,[],IL,103rd +Do Pass Health and Human Services; 014-000-000,2024-05-08,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-05-02,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-15,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-09,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-10,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 008-000-000,2023-05-03,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-03-27,[],IL,103rd +Public Act . . . . . . . . . 103-0235,2023-06-30,['became-law'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2023-11-06,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2024-05-10,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Third Reading - Passed; 034-018-001,2023-03-30,"['passage', 'reading-3']",IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-16,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 026-000-000,2024-05-01,['committee-passage'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Approved for Consideration Assignments,2024-04-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2024-05-08,[],IL,103rd +Recalled to Second Reading,2024-04-12,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2024-04-25,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-02-29,['referral-committee'],IL,103rd +House Floor Amendment No. 4 Adopted,2024-04-19,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Matt Hanson,2024-05-22,['amendment-introduction'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-20,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-01,['amendment-failure'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-09,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Norine K. Hammond,2024-05-16,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2023-04-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety; 011-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Bob Morgan,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Wayne A Rosenthal,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Tom Weber,2024-04-19,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +House Committee Amendment No. 2 Tabled,2024-04-03,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-04-01,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-12,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-26,[],IL,103rd +Third Reading - Short Debate - Passed 071-038-001,2024-05-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-18,['amendment-failure'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Local Government,2023-04-27,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Wayne A Rosenthal,2024-05-01,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-05-16,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Assigned to Executive Committee,2023-04-18,['referral-committee'],IL,103rd +Second Reading - Short Debate,2024-05-14,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-04-02,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Steven Reick,2023-05-11,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2023-11-07,[],IL,103rd +Home Rule Note Request is Inapplicable,2024-04-19,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-05-14,[],IL,103rd +Waive Posting Notice,2024-05-15,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Do Pass State Government; 006-000-000,2024-05-22,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Katie Stuart,2024-05-13,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-24,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mike Porfirio,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2023-04-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-05-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Lindsey LaPointe,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-02-08,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-05-12,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mike Porfirio,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-05-08,[],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-03-13,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2023-04-20,['amendment-introduction'],IL,103rd +Sent to the Governor,2024-06-12,['executive-receipt'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-05-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Public Act . . . . . . . . . 103-0013,2023-06-09,['became-law'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Assigned to Local Government,2023-04-12,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2024-05-13,[],IL,103rd +Third Reading - Passed; 057-000-001,2024-05-21,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-11,[],IL,103rd +Third Reading - Short Debate - Passed 073-040-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-15,[],IL,103rd +Do Pass Licensed Activities; 007-000-000,2024-05-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 21, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-10-25,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-02,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2023-05-24,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Steve McClure,2023-04-18,['amendment-introduction'],IL,103rd +Approved for Consideration Assignments,2023-04-25,[],IL,103rd +House Floor Amendment No. 4 Adopted,2024-04-19,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-06,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-04-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-03-14,[],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Third Reading - Passed; 055-001-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 9, 2023",2023-05-08,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Do Pass Executive; 010-000-000,2023-05-04,['committee-passage'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Assigned to Labor,2024-04-30,['referral-committee'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Standard Debate,2023-03-14,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Insurance Committee,2024-03-21,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Steve Stadelman,2023-04-27,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-15,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Eva-Dina Delgado,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-03-24,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Carol Ammons,2023-05-18,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-04-26,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Arrived in House,2023-05-25,['introduction'],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-10-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Third Reading - Passed; 043-012-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-04-25,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 009-000-000,2023-05-16,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Availability & Accessibility Committee; 007-004-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-05-08,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-12,[],IL,103rd +Do Pass as Amended Executive; 007-002-000,2023-04-27,['committee-passage'],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2023-03-27,[],IL,103rd +Arrive in Senate,2024-05-14,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-05-26,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Fowler,2023-05-04,['amendment-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-05-03,['reading-1'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Anna Moeller,2023-11-02,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-05,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2023-03-23,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-24,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-04-12,[],IL,103rd +Assigned to Public Utilities Committee,2023-04-18,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Steve Stadelman,2023-05-19,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-28,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-02-20,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2023-05-11,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Hoan Huynh,2023-11-01,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2023-05-19,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Christopher ""C.D."" Davidsmeyer",2023-04-27,['amendment-introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-05-02,[],IL,103rd +Third Reading - Short Debate - Passed 098-006-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-04-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-05,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-23,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Stephanie A. Kifowit,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-05-22,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dagmara Avelar,2023-03-22,[],IL,103rd +Postponed - Judiciary,2024-05-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-15,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-03-30,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Adoption & Child Welfare Committee; 012-000-000,2023-03-21,['committee-passage-favorable'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-03-22,[],IL,103rd +Third Reading - Passed; 044-010-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Caulkins,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 2 Tabled,2024-04-17,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-03-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-05-18,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-19,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Daniel Didech,2023-04-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-26,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Kevin John Olickal,2023-10-31,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Assigned to Executive Committee,2023-04-11,['referral-committee'],IL,103rd +Third Reading - Passed; 053-001-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-04-06,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Transportation,2023-04-18,['amendment-passage'],IL,103rd +Judicial Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 10, 2023",2023-03-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-20,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Kevin John Olickal,2024-04-16,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-11,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-16,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-06-07,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-05-23,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 4 Filed with Secretary by Sen. Laura M. Murphy,2024-03-08,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-14,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-10-23,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-03-29,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-28,[],IL,103rd +Do Pass Transportation; 013-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-11-07,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2024-02-26,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-17,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0603,2024-07-01,['became-law'],IL,103rd +"Effective Date January 1, 2025",2024-07-22,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Do Pass as Amended Revenue; 006-003-000,2024-05-09,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-22,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-05-12,[],IL,103rd +Do Pass Licensed Activities; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +State Debt Impact Note Filed,2023-03-07,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0706,2024-07-19,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-16,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +House Committee Amendment No. 1 Adopted in Appropriations-General Services Committee; by Voice Vote,2024-05-15,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-29,[],IL,103rd +House Floor Amendment No. 6 Rules Refers to Public Health Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-05-16,[],IL,103rd +Do Pass as Amended Agriculture; 008-004-000,2023-04-27,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2024-05-23,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0719,2024-07-19,['became-law'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jason Bunting,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-02-23,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-22,[],IL,103rd +Public Act . . . . . . . . . 103-0616,2024-07-01,['became-law'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-03-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-04-16,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +Do Pass Behavioral and Mental Health; 006-000-000,2024-05-08,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-03-29,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-01,['amendment-failure'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-04-30,['referral-committee'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 18, 2023",2023-05-17,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-05-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 006-003-000,2024-04-10,[],IL,103rd +Public Act . . . . . . . . . 103-0252,2023-06-30,['became-law'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Referred to Rules Committee,2024-04-18,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-23,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Motion to Suspend Rule 21 - Prevailed 004-000-000,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-16,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2023-04-25,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 025-000-000,2023-04-25,['committee-passage'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Assigned to Counties & Townships Committee,2024-05-13,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-04-26,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2024-05-02,['amendment-failure'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-04-27,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jed Davis,2023-04-27,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Villivalam,2024-05-17,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-27,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2023-04-26,['amendment-passage'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-04-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-02,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Natalie A. Manley,2024-04-18,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-07,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 013-000-000,2023-04-25,['committee-passage'],IL,103rd +Referred to Rules Committee,2024-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2023-05-11,[],IL,103rd +"Rule 2-10(a) Third Reading Deadline Established As April 28, 2023",2023-03-31,[],IL,103rd +Assigned to Health and Human Services,2024-04-30,['referral-committee'],IL,103rd +Passed Both Houses,2024-05-29,[],IL,103rd +Third Reading - Passed; 044-009-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Terra Costa Howard,2024-04-30,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-16,[],IL,103rd +Chief House Sponsor Rep. Tony M. McCombie,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-25,[],IL,103rd +Assigned to Higher Education Committee,2023-04-11,['referral-committee'],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 2 Postponed - Education,2024-04-16,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Celina Villanueva,2023-05-09,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2023-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2023-04-25,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2024-05-07,['amendment-introduction'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-15,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-05-16,[],IL,103rd +Passed Both Houses,2023-05-16,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Suzanne M. Ness,2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 073-040-000,2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Koehler,2023-03-29,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4a,2024-04-11,['amendment-failure'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Referred to Rules Committee,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 010-001-000,2024-05-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-24,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Christopher Belt,2024-05-23,['filing'],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Emanuel ""Chris"" Welch",2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-04-27,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-04-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2024-05-02,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-04-02,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-10,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 075-040-000,2023-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-10,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Recalled to Second Reading,2023-03-29,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2024-05-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-07,['reading-3'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-05-04,[],IL,103rd +Chief House Sponsor Rep. Dan Caulkins,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2024-03-07,[],IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2024-04-17,[],IL,103rd +Do Pass Judiciary; 005-003-001,2023-04-19,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 011-005-000",2023-04-25,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-04-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-04-15,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Napoleon Harris, III",2024-05-23,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-04-30,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0245,2023-06-30,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-11,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2024-05-25,['amendment-introduction'],IL,103rd +To Violence Reduction & Prevention Subcommittee,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 25, 2023",2023-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0148,2023-06-30,['became-law'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Committee Amendment No. 1 Judicial Note Filed as Amended,2023-03-09,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-05-10,['introduction'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2023-04-25,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Passed Both Houses,2023-05-05,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-04-21,['amendment-introduction'],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-05,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-17,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-11,[],IL,103rd +Third Reading - Short Debate - Passed 067-040-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-26,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Assigned to Judiciary - Civil Committee,2024-04-24,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2023-03-09,['amendment-passage'],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Assigned to Behavioral and Mental Health,2023-04-12,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Mike Simmons,2023-03-27,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-03-21,['amendment-introduction'],IL,103rd +Do Pass Veterans Affairs; 008-000-000,2023-04-27,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2023-04-25,[],IL,103rd +Do Pass as Amended Behavioral and Mental Health; 007-000-000,2023-04-26,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. John F. Curran,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-15,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-25,['reading-2'],IL,103rd +House Floor Amendment No. 4 Rules Refers to Human Services Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-04-03,[],IL,103rd +Passed Both Houses,2024-05-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Assigned to Executive,2023-05-18,['referral-committee'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-04-18,[],IL,103rd +Assigned to Agriculture,2023-05-02,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Public Health Committee; 008-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Christopher Belt,2023-05-10,['amendment-introduction'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Cristina H. Pacione-Zayas,2023-03-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-22,[],IL,103rd +Public Act . . . . . . . . . 103-0044,2023-06-09,['became-law'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Pension Note Filed,2023-03-07,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-16,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-02-22,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Public Utilities Committee; 014-004-000,2023-05-12,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-24,[],IL,103rd +Pension Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-05-03,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-03-30,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2024-05-23,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-29,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-15,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +House Floor Amendment No. 2 Home Rule Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2023-04-19,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-08,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-02-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2023-04-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Michelle Mussman,2023-03-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Do Pass State Government; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-04-18,['committee-passage-favorable'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Sonya M. Harper,2023-05-02,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-01,[],IL,103rd +Remove Chief Co-Sponsor Rep. Lakesia Collins,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-03-16,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Alternate Chief Sponsor Changed to Sen. David Koehler,2023-05-24,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Dan McConchie,2023-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-09,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2023-05-10,['amendment-introduction'],IL,103rd +Assigned to Public Health,2023-04-12,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-05-05,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2024-01-31,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Be Adopted State Government; 006-000-000,2024-05-22,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Arrived in House,2023-10-25,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-17,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 1 Correctional Note Requested as Amended by Rep. Rita Mayfield,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2023-05-11,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Arrive in Senate,2024-05-14,['introduction'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Recalled to Second Reading,2023-05-24,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-05,[],IL,103rd +Motion to Reconsider Vote - Lost 039-068-000,2024-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0067,2023-06-09,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-25,['amendment-failure'],IL,103rd +Adopted Both Houses,2024-05-24,[],IL,103rd +Assigned to State Government Administration Committee,2023-05-12,['referral-committee'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Cunningham,2023-05-04,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Higher Education Committee,2024-03-20,[],IL,103rd +Arrived in House,2024-05-03,['introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Burke,2023-05-08,['amendment-introduction'],IL,103rd +Assigned to Labor & Commerce Committee,2023-04-11,['referral-committee'],IL,103rd +Arrive in Senate,2024-05-14,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Withdrawn by Sen. Michael W. Halpin,2023-05-11,[],IL,103rd +Arrive in Senate,2024-05-14,['introduction'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-23,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-15,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-15,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2024-05-28,['amendment-introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-02-13,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-11,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2024-04-30,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2024-04-18,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-08,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Referred to Rules Committee,2024-05-24,[],IL,103rd +Arrived in House,2023-05-18,['introduction'],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2024-03-05,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-20,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-01-24,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-02,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-05-19,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-04-20,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-28,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Referred to Assignments,2024-05-14,[],IL,103rd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2023-04-26,['amendment-passage'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-03-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 010-000-000,2023-04-26,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-05-09,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Insurance Committee; 012-000-000,2023-04-25,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-17,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2024-04-24,[],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-05-16,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 067-038-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Assigned to Appropriations- Education,2024-04-24,['referral-committee'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-02-13,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-03-05,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-05-02,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-04-14,[],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-05-24,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-11-06,[],IL,103rd +First Reading,2024-05-26,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Judiciary - Civil Committee,2024-04-15,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +State Mandates Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-02,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-03-04,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-05-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Justin Slaughter,2024-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0712,2024-07-19,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2024-05-09,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-10,[],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-03-14,[],IL,103rd +Second Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-02-21,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0674,2024-07-19,['became-law'],IL,103rd +Arrive in Senate,2024-05-22,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0642,2024-07-01,['became-law'],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Assigned to Transportation,2024-04-30,['referral-committee'],IL,103rd +Do Pass Agriculture; 012-000-000,2024-05-09,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-08,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-04-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Andrew S. Chesney,2023-05-24,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-04-27,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-03,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2024-05-25,['amendment-introduction'],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-04-24,['referral-committee'],IL,103rd +Do Pass Insurance; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-04-24,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-08,[],IL,103rd +House Floor Amendment No. 2 Balanced Budget Note Filed as Amended,2023-03-14,[],IL,103rd +Assigned to Human Services Committee,2024-04-24,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-17,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-22,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Sara Feigenholtz,2024-02-22,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Doris Turner,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Health and Human Services; 010-000-000,2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 2 Postponed - Executive,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-17,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Do Pass Judiciary; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2023-02-21,[],IL,103rd +Second Reading,2023-04-26,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-05-09,['amendment-introduction'],IL,103rd +Removed Co-Sponsor Rep. Dagmara Avelar,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Appropriations-Health & Human Services Committee,2023-05-09,[],IL,103rd +Chief Senate Sponsor Sen. Omar Aquino,2023-05-10,[],IL,103rd +Recalled to Second Reading,2023-05-24,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2023-10-19,[],IL,103rd +Assigned to Executive Committee,2024-05-20,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-04-20,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-24,[],IL,103rd +Assigned to Labor,2023-04-12,['referral-committee'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Remove Chief Co-Sponsor Rep. Dan Caulkins,2023-03-13,[],IL,103rd +Chief House Sponsor Rep. Kevin John Olickal,2023-04-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-02,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-03-30,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-04-27,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 009-000-000,2024-05-21,[],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Third Reading - Passed; 056-001-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2024-04-19,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-03-06,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-05-09,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-03,[],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Do Pass as Amended Labor; 013-003-000,2023-04-27,['committee-passage'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-16,[],IL,103rd +"Senate Floor Amendment No. 1 Adopted; Napolen Hariss, III",2023-05-24,['amendment-passage'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-16,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-05,[],IL,103rd +Governor Approved,2024-05-28,['executive-signature'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 006-003-000,2023-04-27,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 070-039-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Assigned to Higher Education,2023-04-12,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-10-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Neil Anderson,2023-05-02,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-28,[],IL,103rd +Third Reading - Short Debate - Passed 081-026-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 056-000-000,2023-10-26,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Abdelnasser Rashid,2023-03-22,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Racial Impact Note Requested - Withdrawn by Rep. Lance Yednock,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-22,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Do Pass as Amended Executive; 013-000-000,2023-04-27,['committee-passage'],IL,103rd +Assigned to Public Health,2023-04-18,['referral-committee'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Paul Faraci,2023-04-12,[],IL,103rd +Third Reading - Short Debate - Passed 073-031-000,2023-04-20,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-06,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary Beth Canty,2023-10-31,[],IL,103rd +Senate Floor Amendment No. 1 Chief Co- Sen. Mattie Hunter,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Anna Moeller,2023-04-25,['amendment-introduction'],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments.",2023-05-10,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Ann Gillespie,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-02-28,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-09,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Human Rights,2023-04-27,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2024-05-14,[],IL,103rd +Recalled to Second Reading,2023-05-18,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-04,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +House Floor Amendment No. 3 Pension Note Filed as Amended,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 2 Adopted; Licensed Activities,2023-04-26,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2023-03-24,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2023-03-24,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-03-21,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-04-25,[],IL,103rd +Assigned to Early Childhood Education,2023-04-25,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-05-02,[],IL,103rd +Pension Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-09,[],IL,103rd +Assigned to Transportation,2023-04-12,['referral-committee'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 090-017-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-15,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-28,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin Schmidt,2024-05-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 21, 2024",2024-05-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-04-16,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2023-04-26,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Patrick Windhorst,2023-05-02,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Kam Buckner,2023-05-03,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Charles Meier,2023-04-26,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-16,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Brandun Schweizer,2024-05-23,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-17,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-04-18,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2024-05-02,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-21,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-03-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-11,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2024-05-02,[],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-04-11,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-03-12,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-04-30,[],IL,103rd +Pension Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Do Pass / Short Debate Executive Committee; 012-000-000,2024-05-15,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-27,[],IL,103rd +Assigned to Environment and Conservation,2024-04-30,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4a,2024-04-11,['amendment-failure'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary Beth Canty,2023-04-13,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-02-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-08,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-05-15,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Motion Do Pass - Lost Health Care Licenses Committee; 006-006-000,2023-04-26,['committee-failure'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Arrived in House,2024-04-17,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2023-05-03,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-05-09,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2023-04-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2024-05-15,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Postponed - Executive,2024-03-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-03-23,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 078-035-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Lindsey LaPointe,2023-03-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Laura Fine,2023-03-30,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2023-05-16,['filing'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-05-16,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 019-003-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Assigned to Energy & Environment Committee,2023-05-09,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-04-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michael J. Kelly,2023-05-16,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-04-13,[],IL,103rd +Fiscal Note Filed,2023-05-04,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 22, 2024",2024-05-22,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Bob Morgan,2023-04-26,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2024-05-07,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2024-05-23,[],IL,103rd +Assigned to Human Services Committee,2023-04-18,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2023-05-03,[],IL,103rd +Public Act . . . . . . . . . 103-0218,2023-06-30,['became-law'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-16,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Kam Buckner,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 087-022-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Wayne A Rosenthal,2023-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-04-19,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-05-13,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-16,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-25,[],IL,103rd +Second Reading,2023-03-28,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2024-05-23,[],IL,103rd +State Debt Impact Note Requested by Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. John M. Cabello,2023-05-08,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Assigned to State Government Administration Committee,2024-03-12,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Housing,2023-04-25,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-05-22,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +"Motion Filed to Suspend Rule 21 Counties & Townships Committee; Rep. Elizabeth ""Lisa"" Hernandez",2024-05-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-04-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Martin McLaughlin,2023-04-26,[],IL,103rd +Public Act . . . . . . . . . 103-0239,2023-06-30,['became-law'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2023-05-25,['amendment-introduction'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-04-02,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 014-000-000,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2024-05-06,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Energy and Public Utilities,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-16,[],IL,103rd +Third Reading - Short Debate - Passed 104-002-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 011-005-000",2023-04-25,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-23,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-02-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-05-04,[],IL,103rd +Assigned to Public Health,2024-04-30,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-23,[],IL,103rd +Third Reading - Short Debate - Passed 092-018-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Bennett,2023-03-30,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-02-26,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Personnel & Pensions Committee,2023-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-04-20,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-19,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Celina Villanueva,2023-10-26,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-30,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Chief House Sponsor Rep. Natalie A. Manley,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-05-22,['amendment-failure'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-04-04,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-12,[],IL,103rd +Assigned to Licensed Activities,2024-05-01,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2024-03-07,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Higher Education Committee; 011-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-16,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2024-04-17,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2024-04-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-14,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-03-07,[],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-16,[],IL,103rd +Racial Impact Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Assigned to Licensed Activities,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-05-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-05-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-05-13,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-05-25,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Chief House Sponsor Rep. Barbara Hernandez,2024-04-11,[],IL,103rd +Assigned to Licensed Activities,2024-04-30,['referral-committee'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-11,[],IL,103rd +Assigned to Education,2023-05-16,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Chief House Sponsor Rep. Jenn Ladisch Douglass,2024-04-11,[],IL,103rd +Sent to the Governor,2024-06-06,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-06,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Justin Slaughter,2023-04-17,[],IL,103rd +Recalled to Second Reading,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-23,[],IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +Third Reading - Passed; 056-002-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2024-04-05,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-04-11,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-16,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-03-07,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 106-001-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-04-27,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Maura Hirschauer,2023-04-17,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Peters,2024-05-02,['amendment-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2024-04-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-05-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-04-24,[],IL,103rd +Public Act . . . . . . . . . 103-0770,2024-08-02,['became-law'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Do Pass Financial Institutions; 007-001-000,2024-05-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2024-04-30,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Sent to the Governor,2024-06-12,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-11,[],IL,103rd +"Effective Date August 2, 2024; ;Some Provisions.",2024-08-02,[],IL,103rd +Do Pass Judiciary; 009-000-000,2023-04-19,['committee-passage'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 008-000-000,2024-04-30,['committee-passage'],IL,103rd +Waive Posting Notice,2023-05-16,[],IL,103rd +Assigned to Health and Human Services,2024-04-30,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0707,2024-07-19,['became-law'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Assigned to Appropriations,2024-04-30,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0657,2024-07-19,['became-law'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-04-25,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-18,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 039-019-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-23,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Do Pass Insurance; 010-000-000,2024-05-08,['committee-passage'],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 103-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-22,[],IL,103rd +State Debt Impact Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-03-07,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-05-09,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-11,[],IL,103rd +Referred to Rules Committee,2024-04-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Assigned to State Government Administration Committee,2023-05-19,['referral-committee'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Third Reading - Short Debate - Passed 095-014-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Third Reading - Short Debate - Passed 065-040-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-14,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-10-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Do Pass Licensed Activities; 006-000-000,2023-04-27,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2024-05-01,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2023-04-27,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +Do Pass Licensed Activities; 008-000-000,2023-04-20,['committee-passage'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-04-20,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-11,[],IL,103rd +Racial Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Recalled to Second Reading,2024-05-23,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Preston,2023-05-11,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-0436,2023-08-04,['became-law'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-20,[],IL,103rd +Assigned to Prescription Drug Affordability & Accessibility Committee,2023-04-25,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-30,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Assigned to Counties & Townships Committee,2023-04-11,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-04-18,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-16,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-04-25,[],IL,103rd +Waive Posting Notice,2023-05-04,[],IL,103rd +Approved for Consideration Assignments,2023-11-07,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-03,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-23,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-17,[],IL,103rd +"Effective Date May 28, 2024",2024-05-28,[],IL,103rd +3/5 Vote Required,2023-11-08,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2023-04-13,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Chief Co- Sen. Omar Aquino,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-22,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert F. Martwick,2023-05-16,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2023-04-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-21,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Insurance Committee; by Voice Vote,2024-03-05,['amendment-passage'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 055-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Arrive in Senate,2023-04-25,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2023-04-26,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Revenue & Finance Committee; 017-000-000,2023-05-04,['committee-passage-favorable'],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Porfirio,2023-03-28,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-02,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Personnel & Pensions Committee; 009-002-000,2024-05-17,['committee-passage-favorable'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-22,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2023-10-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-03-06,[],IL,103rd +Assigned to Transportation,2023-04-12,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Murphy,2023-05-24,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +Assigned to State Government,2023-04-12,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-02-21,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-09,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2024-04-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-16,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2023-05-09,['amendment-introduction'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-02-22,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-04-26,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. Lance Yednock,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-02,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Public Act . . . . . . . . . 103-0303,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-23,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-04-25,['amendment-introduction'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-04-25,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-02-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Seth Lewis,2023-03-24,[],IL,103rd +Do Pass as Amended Human Rights; 007-000-000,2023-04-27,['committee-passage'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Peters,2023-05-18,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2023-03-27,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-03-28,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Senate Floor Amendment No. 4 Recommend Do Adopt Health and Human Services; 010-000-000;,2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-17,[],IL,103rd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2023-03-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-02-22,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 011-000-000,2024-04-10,[],IL,103rd +Public Act . . . . . . . . . 103-0956,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-05-25,[],IL,103rd +House Committee Amendment No. 2 Adopted in Personnel & Pensions Committee; by Voice Vote,2023-05-18,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Michael W. Halpin,2024-05-23,['filing'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 078-034-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Second Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-16,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. David Friess,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Hoan Huynh,2023-05-10,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-05-02,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-05-17,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 013-000-000,2024-03-14,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Bob Morgan,2024-05-16,[],IL,103rd +Remains in Health Care Licenses Committee,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-02-29,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Housing,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-04-26,[],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2023-03-28,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michael J. Kelly,2024-05-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-06,[],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-22,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-08,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-22,[],IL,103rd +Second Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Cunningham,2023-03-29,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 29, 2023",2023-03-28,['reading-3'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-07,[],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 017-000-000,2023-04-25,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 009-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2023-03-30,['amendment-failure'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-16,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-04-18,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Energy and Public Utilities; 015-000-000,2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Chief House Sponsor Rep. Katie Stuart,2023-03-31,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-11-02,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-04-03,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 010-000-000,2024-05-09,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Wayne A Rosenthal,2023-04-26,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Patrick Sheehan,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Rita Mayfield,2023-04-18,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-02-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-03,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2023-04-20,[],IL,103rd +Second Reading - Short Debate,2024-05-14,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Motion to Suspend Rule 21 - Prevailed 072-039-001,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2024-04-16,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Fiscal Note Filed,2023-05-08,[],IL,103rd +Third Reading - Short Debate - Passed 076-036-001,2024-05-15,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 2 Postponed - Local Government,2023-04-27,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 017-000-000,2023-05-17,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2024-05-02,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Racial Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 011-000-000,2023-05-03,['committee-passage-favorable'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Martin J. Moylan,2023-04-26,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Anna Moeller,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-25,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-04-21,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2024-04-16,[],IL,103rd +Third Reading - Short Debate - Passed 072-036-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-03,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-16,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-0970,2024-08-09,['became-law'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-21,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-09,['amendment-failure'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2023-04-20,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2023-04-26,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-05-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-04-19,[],IL,103rd +First Reading,2023-05-12,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-10,[],IL,103rd +Pension Note Requested by Rep. Kam Buckner,2023-05-03,[],IL,103rd +Chief Senate Sponsor Sen. Laura M. Murphy,2024-04-24,[],IL,103rd +Fiscal Note Requested by Rep. Steven Reick,2023-04-27,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Assigned to Energy & Environment Committee,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kimberly Du Buclet,2024-04-18,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-15,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4a,2024-04-11,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Judicial Note Filed,2023-05-02,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Public Health Committee; 009-000-000,2024-05-16,['committee-passage-favorable'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jed Davis,2023-04-26,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2024-03-08,['amendment-introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2023-04-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2023-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2024-04-16,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Randy E. Frese,2023-04-19,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura M. Murphy,2024-05-23,['filing'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2024-04-30,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-04-25,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mike Simmons,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Assigned to Human Services Committee,2024-04-24,['referral-committee'],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Do Pass as Amended Financial Institutions; 005-002-000,2024-03-13,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-04-13,[],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Norma Hernandez,2024-03-14,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2023-04-13,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +"House Floor Amendment No. 1 Withdrawn by Rep. Curtis J. Tarver, II",2023-05-19,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2023-04-20,[],IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. Norine K. Hammond,2024-04-19,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2024-05-23,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Chief House Sponsor Rep. Michelle Mussman,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-05-21,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Senate Committee Amendment No. 4 Referred to Assignments,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-04-18,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0683,2024-07-22,['became-law'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-11-07,[],IL,103rd +Do Pass Local Government; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-29,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-000-000,2024-05-16,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Home Rule Note Filed,2023-03-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Tom Bennett,2023-04-17,[],IL,103rd +First Reading,2023-05-15,['reading-1'],IL,103rd +House Floor Amendment No. 5 Recommends Be Adopted Public Health Committee; 005-002-000,2023-03-22,['committee-passage-favorable'],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-23,[],IL,103rd +Assigned to Higher Education Committee,2024-04-24,['referral-committee'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Third Reading - Consideration Postponed,2023-05-12,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-05-09,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2024-05-01,['amendment-introduction'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0612,2024-07-01,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-09,[],IL,103rd +"Effective Date July 1, 2025",2024-07-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-15,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +House Committee Amendment No. 2 Adopted in Appropriations-General Services Committee; by Voice Vote,2024-05-15,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-04-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-03-29,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-10-23,[],IL,103rd +Do Pass Insurance; 010-000-000,2024-05-08,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-14,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Camille Y. Lilly,2024-02-23,[],IL,103rd +Chief Senate Sponsor Sen. Erica Harriss,2024-04-24,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-05-24,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 26, 2023",2023-04-25,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-04-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-22,[],IL,103rd +Passed Both Houses,2024-05-21,[],IL,103rd +Waive Posting Notice,2023-05-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2024-04-16,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Do Pass Judiciary; 006-003-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-03-14,[],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-10-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jeff Keicher,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-05-09,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-05-14,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-05-10,[],IL,103rd +Postponed - Local Government,2023-04-20,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-24,[],IL,103rd +Chief Senate Sponsor Sen. John F. Curran,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0773,2024-08-02,['became-law'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 5, 2023",2023-05-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Senate Special Committee on Pensions,2023-05-09,[],IL,103rd +"House Floor Amendment No. 3 Filed with Clerk by Rep. William ""Will"" Davis",2024-05-08,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-24,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-11,[],IL,103rd +Sent to the Governor,2024-06-12,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-23,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-04-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-05-28,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-03-22,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-15,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2024-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-13,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-23,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Porfirio,2023-04-21,['amendment-introduction'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-05-16,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Do Pass / Short Debate Housing; 016-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2024-05-14,[],IL,103rd +Postponed - Agriculture,2024-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Amy Elik,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 22, 2024",2024-05-22,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Tracy Katz Muhl,2024-03-26,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-13,[],IL,103rd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2024-05-14,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Fiscal Note Filed,2023-05-04,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2024-05-08,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Revenue & Finance Committee,2024-04-02,[],IL,103rd +Third Reading - Short Debate - Passed 073-039-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-23,[],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Do Pass / Short Debate Veterans' Affairs Committee; 014-000-000,2023-04-25,['committee-passage'],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 017-008-000,2024-04-02,['committee-passage-favorable'],IL,103rd +Assigned to Executive,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2024-04-29,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-04-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2023-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-18,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-02-29,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-11-06,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2023-04-18,['referral-committee'],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Arrive in Senate,2024-05-17,['introduction'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-16,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Tony M. McCombie,2023-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Referred to Rules Committee,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-04-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 007-000-000,2024-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-05-10,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-05-16,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-04-24,['referral-committee'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-16,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Judiciary - Civil Committee; 010-005-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-03-14,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-11,[],IL,103rd +Public Act . . . . . . . . . 103-1022,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 5 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Adam M. Niemerg,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-05-01,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-01,['amendment-failure'],IL,103rd +Third Reading - Short Debate - Passed 100-006-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-12,['amendment-passage'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-02-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-04-19,[],IL,103rd +House Committee Amendment No. 3 Tabled,2024-04-03,['amendment-failure'],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 30, 2024",2024-04-24,['reading-3'],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2023-11-07,[],IL,103rd +Chief Senate Sponsor Sen. Neil Anderson,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Mike Porfirio,2024-05-17,['amendment-introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-16,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-20,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-02-26,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-22,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Tom Bennett,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-04-20,[],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2023-03-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Revenue; 007-000-000,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-30,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-08,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2024-04-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-11-09,['reading-2'],IL,103rd +Do Pass / Short Debate Executive Committee; 012-000-000,2023-04-26,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +First Reading,2024-05-17,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Assigned to Executive,2024-04-24,['referral-committee'],IL,103rd +Alternate Co-Sponsor Removed Rep. John M. Cabello,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-04-12,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2024-04-30,[],IL,103rd +Public Act . . . . . . . . . 103-1040,2024-08-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-03-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin Schmidt,2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-05-02,[],IL,103rd +Pension Note Request is Inapplicable,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2024-05-17,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-04-24,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Anna Moeller,2024-05-20,[],IL,103rd +Do Pass Judiciary; 008-000-000,2024-05-08,['committee-passage'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-05-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +Third Reading - Passed; 030-020-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-05-26,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0051,2023-06-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-18,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Arrived in House,2023-03-28,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Third Reading - Passed; 057-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura Fine,2023-04-06,[],IL,103rd +Public Act . . . . . . . . . 103-0202,2023-06-30,['became-law'],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2023-05-18,['amendment-introduction'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-10-25,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 074-037-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-15,[],IL,103rd +Do Pass Education; 009-003-001,2023-05-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-24,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-21,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dave Vella,2023-03-24,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Kevin John Olickal,2023-05-25,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Jil Tracy,2023-05-17,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Referred to Rules Committee,2024-05-26,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-04-20,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-10,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-04-20,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-03-05,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-19,[],IL,103rd +Assigned to Executive Committee,2024-05-28,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-02-21,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-04-26,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-30,[],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2023-03-27,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-03-14,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2023-03-29,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Debbie Meyers-Martin,2023-04-18,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 075-036-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Health Care Availability & Accessibility Committee,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-04-27,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-24,[],IL,103rd +Pension Note Requested by Rep. Kevin John Olickal,2024-04-16,[],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2023-05-03,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-05-22,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Assigned to Education,2023-04-25,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kam Buckner,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Prescription Drug Affordability & Accessibility Committee,2023-03-22,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0354,2023-07-28,['became-law'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-05-16,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Chief Sponsor Changed to Sen. Mary Edly-Allen,2024-02-20,[],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-05-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Labor,2023-04-26,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-23,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-12,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Assigned to Appropriations- Education,2024-04-30,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Ryan Spain,2023-11-01,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-22,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 015-009-000,2023-11-07,['committee-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2023-05-04,[],IL,103rd +Do Pass as Amended Transportation; 017-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-05-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Margaret Croke,2023-04-03,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-05-09,[],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Kam Buckner,2023-05-16,[],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-04-10,[],IL,103rd +Chief Senate Sponsor Sen. Tom Bennett,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4a,2024-04-12,['amendment-failure'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2024-04-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-20,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2024-04-18,[],IL,103rd +Public Act . . . . . . . . . 103-0676,2024-07-19,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-05-14,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 056-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-03-05,[],IL,103rd +Public Act . . . . . . . . . 103-0779,2024-08-02,['became-law'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Ethics & Elections,2023-03-14,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-03-14,[],IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-02,[],IL,103rd +Waive Posting Notice,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-02-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-17,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-25,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0741,2024-08-02,['became-law'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-12,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-05-22,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-05-09,[],IL,103rd +Third Reading - Passed; 042-011-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-05-24,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Public Act . . . . . . . . . 103-0663,2024-07-19,['became-law'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0669,2024-07-19,['became-law'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-09,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-04-24,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-04-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2024-04-25,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-22,[],IL,103rd +Assigned to Veterans' Affairs Committee,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0175,2023-06-30,['became-law'],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-05-10,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Do Pass Public Health; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-20,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-23,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +Postponed - Executive,2023-04-27,[],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Assigned to Financial Institutions,2023-04-12,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-05-23,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-05-25,[],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-17,[],IL,103rd +"Placed on Calendar Order of First Reading March 23, 2023",2023-03-22,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Housing Affordability Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-03,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-21,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-05-10,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-02,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-04-26,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Public Act . . . . . . . . . 103-0033,2023-06-09,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2024-05-21,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-12,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 21, 2023",2023-05-11,[],IL,103rd +Chief Senate Sponsor Sen. Sara Feigenholtz,2023-03-27,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mark L. Walker,2024-04-30,[],IL,103rd +Assigned to Public Health,2023-04-12,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2023-04-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +Third Reading - Passed; 052-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 27, 2023",2023-04-26,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Jason Plummer,2023-05-17,['amendment-introduction'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-25,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-08,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Environment and Conservation; 007-000-000,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-04-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-26,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-23,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-15,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-21,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Celina Villanueva,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-24,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Natalie A. Manley,2023-03-21,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Assigned to Appropriations- Education,2023-04-12,['referral-committee'],IL,103rd +Third Reading - Passed; 052-003-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-05-10,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Javier L. Cervantes,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-18,[],IL,103rd +Arrive in Senate,2023-04-20,['introduction'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 009-000-000,2023-03-09,['committee-passage'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Higher Education,2023-04-18,['amendment-passage'],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +House Floor Amendment No. 3 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-03,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-02,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-05-23,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Mental Health & Addiction Committee,2024-04-17,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-23,[],IL,103rd +State Debt Impact Note Filed,2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-02-22,[],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2023-05-10,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-22,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Omar Aquino,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Do Pass Behavioral and Mental Health; 006-000-000,2023-04-19,['committee-passage'],IL,103rd +Third Reading - Passed; 047-007-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-05,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-05-10,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-02-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Fiscal Note Filed,2023-03-09,[],IL,103rd +Third Reading - Short Debate - Passed 077-035-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 056-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-01,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Sent to the Governor,2024-06-27,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-03-24,[],IL,103rd +Do Pass / Short Debate Gaming Committee; 013-003-000,2023-05-24,['committee-passage'],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-26,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Cristina Castro,2024-05-23,['amendment-introduction'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-24,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Environment and Conservation,2024-05-23,[],IL,103rd +Assigned to Energy & Environment Committee,2024-04-24,['referral-committee'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2024-05-19,[],IL,103rd +Assigned to Executive Committee,2024-05-20,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2024-05-07,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-02,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Barbara Hernandez,2023-04-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2024-05-09,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jed Davis,2024-05-02,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-23,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0219,2023-06-30,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 106-000-001,2024-04-19,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-05-01,[],IL,103rd +Senate Floor Amendment No. 6 Filed with Secretary by Sen. Rachel Ventura,2023-04-25,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 020-007-000,2024-04-11,['committee-passage'],IL,103rd +Assigned to Human Services Committee,2024-04-30,['referral-committee'],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-10,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-05-16,['amendment-introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Janet Yang Rohr,2023-05-02,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-10,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-03-23,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-04-18,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 6 Filed with Secretary by Sen. Karina Villa,2024-05-07,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-20,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-10,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2023-05-02,[],IL,103rd +"Assigned to Small Business, Tech Innovation, and Entrepreneurship Committee",2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-04-11,[],IL,103rd +Recalled to Second Reading,2024-05-02,['reading-2'],IL,103rd +Third Reading - Passed; 055-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 20, 2024",2024-05-17,['reading-3'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Assigned to Education,2024-04-30,['referral-committee'],IL,103rd +"Do Pass as Amended / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-04-26,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-03-29,['amendment-failure'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Second Reading,2024-05-21,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. William E Hauter,2023-04-27,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Chief House Sponsor Rep. Hoan Huynh,2024-04-12,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Jenn Ladisch Douglass,2023-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-30,[],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Assigned to Mental Health & Addiction Committee,2024-05-13,['referral-committee'],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-24,['referral-committee'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Terra Costa Howard,2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Fred Crespo,2023-05-04,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-04-02,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-03-07,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-04-27,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-05-17,[],IL,103rd +Arrived in House,2024-05-03,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-04-26,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-03-14,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2024-05-21,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Amy L. Grant,2023-05-11,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2023-05-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2023-04-27,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Laura Faver Dias,2023-04-25,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-04-26,[],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2024-04-16,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-05-14,['referral-committee'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-15,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-05-16,[],IL,103rd +Postponed - Education,2024-04-17,[],IL,103rd +Chief House Sponsor Rep. Lilian Jiménez,2023-03-31,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Postponed - Health and Human Services,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-23,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-05-16,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2023-05-16,[],IL,103rd +Assigned to Executive Committee,2024-05-21,['referral-committee'],IL,103rd +Chief House Sponsor Rep. Nabeela Syed,2023-03-31,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-30,[],IL,103rd +Chief House Sponsor Rep. Mary Gill,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-16,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-13,[],IL,103rd +Third Reading - Passed; 054-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Will Guzzardi,2023-05-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-11,[],IL,103rd +Public Act . . . . . . . . . 103-0392,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-04-11,[],IL,103rd +Approved for Consideration Assignments,2024-05-22,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-09,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-15,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-26,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-04-27,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-10-25,[],IL,103rd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-05-05,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-04-18,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2024-05-14,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Holmes,2023-05-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-17,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2023-11-07,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Chief House Sponsor Rep. Tony M. McCombie,2023-03-31,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-04-11,['referral-committee'],IL,103rd +Chief House Sponsor Rep. Jay Hoffman,2023-05-11,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2024-05-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Personnel & Pensions Committee; 009-000-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +3/5 Vote Required,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-23,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 014-000-000,2023-05-11,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norma Hernandez,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-09,[],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-24,[],IL,103rd +To Family Preservation Subcommittee,2024-02-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2024-05-14,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2024-05-16,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Daniel Didech,2023-04-13,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2024-05-01,[],IL,103rd +Senate Floor Amendment No. 3 Withdrawn by Sen. Michael W. Halpin,2023-05-11,[],IL,103rd +Chief House Sponsor Rep. Katie Stuart,2024-05-03,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-03-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Tom Bennett,2024-04-25,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-03-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-04,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dan McConchie,2024-02-05,[],IL,103rd +Senate Floor Amendment No. 4 Tabled Pursuant to Rule 5-4(a),2023-05-25,['amendment-failure'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-05-11,[],IL,103rd +Chief House Sponsor Rep. Robyn Gabel,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-03-05,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Judiciary - Civil Committee; 009-005-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-02,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-02-14,[],IL,103rd +Public Act . . . . . . . . . 103-0069,2023-06-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-04,[],IL,103rd +Assigned to Executive Committee,2023-11-01,['referral-committee'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Appropriations-Health & Human Services Committee,2024-03-20,[],IL,103rd +To Higher Ed-Special Topics Subcommittee,2024-03-20,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2023-05-19,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Fiscal Note Requested as Amended by Rep. Rita Mayfield,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-19,[],IL,103rd +Second Reading,2023-03-23,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Kam Buckner,2024-05-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Public Act . . . . . . . . . 103-0068,2023-06-09,['became-law'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Daniel Didech,2024-05-25,[],IL,103rd +Third Reading - Passed; 034-020-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 008-000-000,2023-05-18,['committee-passage'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-05-22,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-05-02,[],IL,103rd +"Alternate Co-Sponsor Removed Rep. Elizabeth ""Lisa"" Hernandez",2023-04-25,[],IL,103rd +Chief Senate Sponsor Sen. Linda Holmes,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-03-12,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-02-13,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Placed on Calendar Order of Secretary's Desk Resolutions May 22, 2024",2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 24, 2023",2023-03-23,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Lindsey LaPointe,2023-03-27,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +"Motion Filed to Suspend Rule 21 Transportation: Vehicles & Safety; Rep. Elizabeth ""Lisa"" Hernandez",2024-05-28,[],IL,103rd +Third Reading - Short Debate - Passed 076-027-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-11,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-05-05,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-02-15,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Jay Hoffman,2023-11-07,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 115-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-05-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michael J. Kelly,2023-04-13,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-02-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-02,[],IL,103rd +Third Reading - Short Debate - Passed 077-036-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Sponsor Removed Sen. Doris Turner,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Gaming Committee,2024-05-25,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 012-000-000,2023-05-16,['committee-passage'],IL,103rd +Assigned to Health Care Licenses Committee,2023-04-11,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0061,2023-06-09,['became-law'],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2023-05-05,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-05-19,['amendment-introduction'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michael J. Kelly,2024-05-08,['amendment-introduction'],IL,103rd +Referred to Assignments,2024-05-14,[],IL,103rd +Referred to Assignments,2024-05-14,[],IL,103rd +First Reading,2024-05-03,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2024-05-22,[],IL,103rd +Referred to Assignments,2024-05-14,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-03-05,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Mike Simmons,2024-04-24,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-03-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-02,[],IL,103rd +Senate Floor Amendment No. 4 Adopted; Halpin,2023-05-11,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2024-04-18,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-05-12,['amendment-introduction'],IL,103rd +"Chief Co-Sponsor Changed to Rep. Edgar Gonzalez, Jr.",2024-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Home Rule Note Requested as Amended by Rep. Rita Mayfield,2024-04-18,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Do Pass / Short Debate Executive Committee; 012-000-000,2023-11-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-03-13,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Nabeela Syed,2024-03-07,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2024-04-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-01,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-03-25,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-30,[],IL,103rd +Third Reading - Passed; 040-018-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0081,2023-06-09,['became-law'],IL,103rd +First Reading,2023-05-12,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-04-17,[],IL,103rd +House Committee Amendment No. 1 To Family Preservation Subcommittee,2024-02-21,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Katie Stuart,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-05-10,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Laura Fine,2024-05-20,[],IL,103rd +Public Act . . . . . . . . . 103-0213,2023-06-30,['became-law'],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Laura Ellman,2023-03-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-02,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to State Government Administration Committee,2023-05-18,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2023-05-12,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-03-13,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 17, 2023",2023-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-05,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-04-09,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-23,[],IL,103rd +Public Act . . . . . . . . . 103-0851,2024-08-09,['became-law'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2023-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-05-07,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-24,['reading-2'],IL,103rd +Sent to the Governor,2023-06-14,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-05-20,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sharon Chung,2024-04-29,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-05-23,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Assigned to Executive Committee,2024-05-03,['referral-committee'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2024-05-23,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2023-04-27,[],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 006-003-000,2023-04-25,['committee-passage'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-05-02,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Environment and Conservation; 008-000-000,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-05-07,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-08,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Police & Fire Committee,2023-05-12,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Camille Y. Lilly,2024-04-11,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-04-27,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tom Weber,2023-04-27,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2023-04-12,[],IL,103rd +Public Act . . . . . . . . . 103-0257,2023-06-30,['became-law'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2024-05-08,['amendment-introduction'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0964,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brandun Schweizer,2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Mental Health & Addiction Committee; 020-000-000,2023-05-11,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-04-27,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Third Reading - Passed; 054-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 6 Referred to Assignments,2023-04-25,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Maura Hirschauer,2023-05-01,['amendment-introduction'],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-04-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 6 Referred to Assignments,2024-05-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2024-05-14,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Carol Ammons,2023-05-03,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Murphy,2024-05-02,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-10,[],IL,103rd +Referred to Rules Committee,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-15,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 007-000-000,2024-05-20,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-03-14,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2023-04-03,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2024-04-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-13,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0849,2024-08-09,['became-law'],IL,103rd +Alternate Co-Sponsor Removed Rep. Debbie Meyers-Martin,2024-05-20,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Ann M. Williams,2023-04-19,[],IL,103rd +Public Act . . . . . . . . . 103-1010,2024-08-09,['became-law'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Do Pass / Short Debate Small Business, Tech Innovation, and Entrepreneurship Committee; 010-000-000",2024-05-02,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kam Buckner,2024-05-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0958,2024-08-09,['became-law'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 4 Tabled Pursuant to Rule 5-4(a),2023-03-30,['amendment-failure'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-05-16,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 062-045-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 019-009-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-04-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 010-000-000,2023-04-26,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 012-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Justin Slaughter,2023-03-24,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Harry Benton,2023-04-20,[],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-1013,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-05-09,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-19,['amendment-passage'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Johnson,2024-05-21,['amendment-passage'],IL,103rd +Motion to Suspend Rule 21 - Prevailed 075-040-000,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2023-03-07,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-04-24,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-05-09,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2023-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2024-05-23,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-23,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2024-05-09,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-09,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Restorative Justice,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-11-07,[],IL,103rd +House Floor Amendment No. 6 Recommends Be Adopted Public Health Committee; 005-002-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-02-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-01,[],IL,103rd +Do Pass Licensed Activities; 007-000-000,2024-05-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-08,[],IL,103rd +"Effective Date January 1, 2025",2024-07-22,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Do Pass / Short Debate Veterans' Affairs Committee; 012-000-000,2024-04-30,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-04-30,[],IL,103rd +Assigned to Energy and Public Utilities,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-10,[],IL,103rd +Assigned to Health and Human Services,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Barbara Hernandez,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-04-27,[],IL,103rd +Third Reading - Short Debate - Passed 105-006-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-20,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Do Pass Transportation; 014-000-000,2024-05-08,['committee-passage'],IL,103rd +Third Reading - Passed; 057-000-001,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Tracy Katz Muhl,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-22,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +House Floor Amendment No. 4 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4a,2024-04-12,['amendment-failure'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2024-04-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-04-17,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-06-22,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Passed Both Houses,2024-05-14,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 3 Rule 3-9(a) / Re-referred to Assignments,2024-05-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-23,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Fiscal Note Filed,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-04-17,['amendment-introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Swanson,2024-04-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-05-05,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-05-24,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Public Act . . . . . . . . . 103-0114,2023-06-30,['became-law'],IL,103rd +Do Pass Public Health; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-12,['reading-3'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Ram Villivalam,2023-05-16,[],IL,103rd +Third Reading - Passed; 050-003-000,2023-05-25,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-17,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-19,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Katie Stuart,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-24,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-22,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Lakesia Collins,2024-02-20,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +Public Act . . . . . . . . . 103-0320,2023-07-28,['became-law'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-04-27,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-08,[],IL,103rd +First Reading,2024-05-23,['reading-1'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-14,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Kevin John Olickal,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-04-25,['amendment-passage'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Education,2023-05-09,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-04,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2023-04-19,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-08,[],IL,103rd +Public Act . . . . . . . . . 103-0159,2023-06-30,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2024-05-02,[],IL,103rd +House Floor Amendment No. 4 Tabled,2023-03-24,['amendment-failure'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-04-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-02-08,[],IL,103rd +Assigned to Environment and Conservation,2023-05-02,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-21,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations,2023-04-25,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Do Pass Financial Institutions; 005-003-000,2023-04-26,['committee-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-30,[],IL,103rd +Public Act . . . . . . . . . 103-0444,2023-08-04,['became-law'],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Third Reading - Short Debate - Passed 071-037-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-23,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2023-04-27,[],IL,103rd +House Floor Amendment No. 2 Judicial Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Waive Posting Notice,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-24,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2023-04-25,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2023-05-11,['amendment-introduction'],IL,103rd +Public Act . . . . . . . . . 103-0026,2023-06-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-29,[],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2023-03-23,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0177,2023-06-30,['became-law'],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2023-03-16,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-04-26,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-10-11,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Terri Bryant,2023-05-05,['amendment-introduction'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Governor Approved,2023-06-27,['executive-signature'],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Chief Senate Sponsor Sen. Linda Holmes,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-02,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Public Act . . . . . . . . . 103-0125,2023-06-30,['became-law'],IL,103rd +Do Pass as Amended Higher Education; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-10,[],IL,103rd +Do Pass Agriculture; 011-000-000,2023-05-11,['committee-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-04-20,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-23,[],IL,103rd +Third Reading - Short Debate - Passed 071-040-000,2023-04-26,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Will Guzzardi,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 4 Filed with Secretary by Sen. Christopher Belt,2023-05-10,['amendment-introduction'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-04-06,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2024-05-25,[],IL,103rd +Approved for Consideration Assignments,2024-05-20,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-23,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Assigned to Appropriations-Public Safety Committee,2024-02-29,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Housing; by Voice Vote,2023-04-26,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2023-04-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-04-25,[],IL,103rd +Public Act . . . . . . . . . 103-0238,2023-06-30,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary Beth Canty,2024-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Julie A. Morrison,2024-05-07,['amendment-introduction'],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0096,2023-06-09,['became-law'],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 008-000-000,2024-05-22,['committee-passage'],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-24,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-1014,2024-08-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2023-03-22,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jed Davis,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Fred Crespo,2024-05-21,[],IL,103rd +Third Reading - Short Debate - Passed 089-024-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2023-05-25,[],IL,103rd +Correctional Note Filed,2023-05-03,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-008-000,2024-04-30,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2024-05-07,[],IL,103rd +Do Pass as Amended / Short Debate Personnel & Pensions Committee; 007-002-000,2023-05-18,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2024-05-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Thaddeus Jones,2024-04-16,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2023-05-17,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2024-05-06,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-08,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-09,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-27,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-16,['reading-3'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Brad Stephens,2024-04-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-04-17,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Assigned to Energy and Public Utilities,2023-04-18,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Martin McLaughlin,2024-05-09,[],IL,103rd +Do Pass / Short Debate Executive Committee; 007-004-000,2024-05-08,['committee-passage'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2023-04-20,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-04-04,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 006-003-000,2024-05-01,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Housing; 011-004-000,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-16,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Javier L. Cervantes,2023-11-06,['amendment-introduction'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4a,2024-04-11,['amendment-failure'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-29,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Carol Ammons,2024-03-05,['amendment-introduction'],IL,103rd +Assigned to Higher Education Committee,2024-04-24,['referral-committee'],IL,103rd +Racial Impact Note Requested by Rep. Kam Buckner,2023-05-03,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-04-13,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 019-000-000,2024-05-25,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-04-26,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-14,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Margaret Croke,2023-05-19,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 15, 2023",2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-05-10,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-04-26,[],IL,103rd +Do Pass / Short Debate Appropriations-Elementary & Secondary Education Committee; 013-000-000,2024-04-30,['committee-passage'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-16,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-19,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2024-05-03,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-13,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-11,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 21, 2024",2024-05-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-10,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Senate Committee Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2024-05-09,['amendment-failure'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2023-05-09,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-31,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Stephanie A. Kifowit,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +House Committee Amendment No. 3 Filed with Clerk by Rep. Hoan Huynh,2023-04-26,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2023-05-04,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. Norine K. Hammond,2024-04-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2023-04-20,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2023-04-26,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Pension Note Requested by Rep. Steven Reick,2023-04-27,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Paul Jacobs,2024-04-17,[],IL,103rd +Public Act . . . . . . . . . 103-0486,2023-08-04,['became-law'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-04-30,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-08,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-04-25,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-10,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-05-16,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Chief House Sponsor Rep. Stephanie A. Kifowit,2023-03-31,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-04-20,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-15,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Alternate Chief Sponsor Changed to Rep. Bob Morgan,2023-03-31,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-04-20,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2023-04-25,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-04-19,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Senate Special Committee on Pensions,2023-05-16,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +State Debt Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-04-20,[],IL,103rd +First Reading,2024-05-02,['reading-1'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Transportation: Vehicles & Safety; 011-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Appropriations-Health & Human Services Committee,2024-05-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-29,[],IL,103rd +Assigned to Public Utilities Committee,2023-04-18,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0943,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Ram Villivalam,2023-03-29,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Joe C. Sosnowski,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2023-03-07,[],IL,103rd +Public Act . . . . . . . . . 103-0310,2023-07-28,['became-law'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Nicholas K. Smith,2023-04-12,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 060-037-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 2nd Reading,2023-11-07,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2023-03-28,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-04-03,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-18,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-12,[],IL,103rd +Third Reading - Passed; 048-006-000,2023-05-24,"['passage', 'reading-3']",IL,103rd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-02-22,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-20,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-03-24,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +First Reading,2023-05-10,['reading-1'],IL,103rd +Recalled to Second Reading,2023-05-04,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-04-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-08,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Chief House Sponsor Rep. Anna Moeller,2023-03-30,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2023-05-04,[],IL,103rd +"Effective Date January 1, 2024",2023-08-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-20,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2023-05-02,[],IL,103rd +Third Reading - Short Debate - Passed 099-000-001,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Fred Crespo,2023-10-31,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-04,[],IL,103rd +Do Pass State Government; 007-000-001,2023-04-20,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-03-22,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Assigned to Gaming Committee,2023-11-01,['referral-committee'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2023-04-05,[],IL,103rd +Do Pass as Amended Executive; 007-002-000,2023-04-27,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2023-02-22,[],IL,103rd +State Mandates Fiscal Note Requested - Withdrawn by Rep. Lance Yednock,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-02,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-25,[],IL,103rd +Assigned to Labor,2023-04-12,['referral-committee'],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-23,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Human Services Committee,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-02-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Assigned to Appropriations- Education,2023-04-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina Castro,2023-05-19,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2023-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-01,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-12,[],IL,103rd +Third Reading - Short Debate - Passed 090-021-000,2023-04-27,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-10-26,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Re-assigned to Transportation,2023-05-16,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-11,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-04-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-23,[],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Emanuel ""Chris"" Welch",2024-05-20,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-03-30,[],IL,103rd +State Mandates Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2023-04-25,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Walker,2024-05-23,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-11,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Motion Filed to Reconsider Vote Rep. Kelly M. Cassidy,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-24,[],IL,103rd +Chief Senate Sponsor Sen. Rachel Ventura,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-21,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Passed; 054-001-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-03-07,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Do Pass as Amended / Short Debate Insurance Committee; 011-002-000,2024-03-05,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-04-17,[],IL,103rd +Public Act . . . . . . . . . 103-0587,2024-05-28,['became-law'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-0151,2023-06-30,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-05-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-23,[],IL,103rd +Motion Filed to Suspend Rule 21 State Government Administration Committee; Rep. Barbara Hernandez,2023-05-24,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2024-05-02,[],IL,103rd +Do Pass Transportation; 012-000-000,2024-05-15,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-05-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-15,[],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-04-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-04-25,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-16,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2025; ;Some Provisions.",2024-08-02,[],IL,103rd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-05-17,['amendment-introduction'],IL,103rd +Public Act . . . . . . . . . 103-0687,2024-07-19,['became-law'],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0766,2024-08-02,['became-law'],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-05-03,['amendment-introduction'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-07,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-05-08,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-15,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-07,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2024-04-18,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-05-17,[],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 017-000-000,2023-04-20,['committee-passage'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Passed Both Houses,2023-05-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-02-27,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-04-10,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Committee Amendment No. 4 Filed with Secretary by Sen. Laura Ellman,2024-05-24,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 008-001-000,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-03-20,[],IL,103rd +Public Act . . . . . . . . . 103-0173,2023-06-30,['became-law'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-21,[],IL,103rd +Public Act . . . . . . . . . 103-0471,2023-08-04,['became-law'],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-22,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2024-02-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2023-05-05,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2024-04-24,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0206,2023-06-30,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-04,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-28,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-18,[],IL,103rd +Assigned to Local Government,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Adoption & Child Welfare Committee,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-04-10,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2024-03-05,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-05-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2023-05-04,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of First Reading,2023-04-25,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-20,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 4, 2023",2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-17,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Jennifer Gong-Gershowitz,2023-10-31,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Health Care Availability & Accessibility Committee; 006-002-000,2024-05-16,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +First Reading,2023-05-03,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +Do Pass as Amended Labor; 012-004-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-03-22,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-22,[],IL,103rd +First Reading,2024-05-15,['reading-1'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-05-23,[],IL,103rd +Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joe C. Sosnowski,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Alternate Co-Sponsor Removed Rep. Ryan Spain,2023-11-01,[],IL,103rd +Chief House Sponsor Rep. Kelly M. Cassidy,2023-03-28,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-18,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 101-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-18,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Racial Impact Note Requested by Rep. Kevin John Olickal,2024-04-16,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Nabeela Syed,2024-05-28,[],IL,103rd +Waive Posting Notice,2023-05-17,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-04-18,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-05-26,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-17,[],IL,103rd +Referred to Assignments,2024-05-14,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 009-005-000,2024-04-16,['committee-passage-favorable'],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-24,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-04-06,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-05-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Fred Crespo,2024-05-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Jay Hoffman,2023-03-07,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michelle Mussman,2023-05-08,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2024-05-23,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-26,[],IL,103rd +First Reading,2023-05-25,['reading-1'],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-18,[],IL,103rd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2023-03-28,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-13,[],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2024-05-13,['amendment-introduction'],IL,103rd +Do Pass Local Government; 010-000-000,2023-04-27,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Licensed Activities; 009-000-000,2023-11-07,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-19,[],IL,103rd +"Chief House Sponsor Rep. Maurice A. West, II",2023-03-24,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-04-29,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-1032,2024-08-09,['became-law'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Patrick J. Joyce,2023-11-07,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2024-04-30,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 22, 2024",2024-05-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-02-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-05-17,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Recalled to Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +State Mandates Fiscal Note Request is Inapplicable,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-01,['amendment-failure'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2024-05-14,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-008-000,2024-05-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2023-05-09,[],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-04-18,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Balanced Budget Note Filed,2023-05-08,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2023-03-14,[],IL,103rd +Chief House Sponsor Rep. Mary Gill,2024-04-12,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-24,['reading-3'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2024-03-21,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-1028,2024-08-09,['became-law'],IL,103rd +Do Pass / Short Debate Financial Institutions and Licensing Committee; 008-004-000,2024-04-30,['committee-passage'],IL,103rd +Arrived in House,2023-03-23,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2024-05-13,[],IL,103rd +Third Reading - Short Debate - Passed 087-002-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 103-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 110-000-001,2024-05-22,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 2 Adopted in Executive Committee; by Voice Vote,2023-05-17,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-05-17,['reading-1'],IL,103rd +Assigned to Health Care Licenses Committee,2024-04-24,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Higher Education Committee,2024-05-14,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-03,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Curtis J. Tarver, II",2024-05-08,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Fine,2023-03-30,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-0971,2024-08-09,['became-law'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-05-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Referred to Rules Committee,2024-05-17,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-05-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Swanson,2024-05-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Diane Blair-Sherlock,2024-04-15,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 097-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-05-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2024-05-21,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Robyn Gabel,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Eva-Dina Delgado,2024-05-06,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2024-05-20,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Tabled,2024-05-23,['amendment-failure'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Counties & Townships Committee,2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-12,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Passed; 037-019-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2024-05-02,['amendment-introduction'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-15,[],IL,103rd +Third Reading - Passed; 037-015-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-03-26,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +"Chief Senate Sponsor Sen. Napoleon Harris, III",2024-04-19,[],IL,103rd +Public Act . . . . . . . . . 103-0999,2024-08-09,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2024-04-30,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Patrick J. Joyce,2024-05-20,['amendment-introduction'],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-29,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Ann M. Williams,2023-11-09,[],IL,103rd +Chief House Sponsor Rep. Mary Beth Canty,2024-04-12,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2024-04-09,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-14,[],IL,103rd +Recalled to Second Reading,2024-05-16,['reading-2'],IL,103rd +Assigned to Executive,2024-04-30,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-04,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-05-01,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +Recommends Do Pass Subcommittee/ Revenue & Finance Committee; 005-000-000,2024-04-04,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-02-20,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Judiciary - Criminal Committee,2024-02-29,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-16,['reading-3'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0645,2024-07-01,['became-law'],IL,103rd +Do Pass as Amended / Short Debate Appropriations-General Services Committee; 008-003-000,2024-05-15,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-05-23,[],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-05-09,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-09,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2024-05-01,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 061-045-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-29,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Michael E. Hastings,2024-05-26,[],IL,103rd +"Senate Committee Amendment No. 3 Pursuant to Senate Rule 3-8 (b-1), this committee amendment will remain in the Committee on Assignments.",2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-18,[],IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Nicholas K. Smith,2024-05-01,['amendment-introduction'],IL,103rd +Assigned to Education,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 21, 2023",2023-05-11,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-10-23,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-05-22,[],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Third Reading - Short Debate - Passed 115-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-29,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0682,2024-07-19,['became-law'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-28,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2024-02-23,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +"Chief Sponsor Changed to Rep. Curtis J. Tarver, II",2024-05-24,[],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-01,[],IL,103rd +State Mandates Fiscal Note Filed,2023-03-09,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-30,[],IL,103rd +Public Act . . . . . . . . . 103-0638,2024-07-01,['became-law'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2024-05-16,[],IL,103rd +Referred to Assignments,2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-19,[],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Paul Faraci,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-29,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael W. Halpin,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2024-04-16,[],IL,103rd +"Alternate Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2023-04-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2024-05-16,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-05-08,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-04-12,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +"Placed on Calendar Order of First Reading March 22, 2023",2023-03-21,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-02,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Do Pass Local Government; 007-003-000,2023-04-27,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 071-035-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-02-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-10,[],IL,103rd +Passed Both Houses,2024-05-14,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-05-24,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Licensed Activities,2023-04-25,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Jenn Ladisch Douglass,2024-04-02,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-05-09,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-05-14,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Do Pass Local Government; 010-000-000,2023-05-17,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-14,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-10-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2024-05-21,[],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Third Reading - Passed; 057-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-24,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Removed Co-Sponsor Rep. John M. Cabello,2024-05-28,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-03-22,[],IL,103rd +Do Pass Transportation; 011-000-000,2023-05-16,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-15,[],IL,103rd +Do Pass Labor; 012-001-000,2023-04-27,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Martin J. Moylan,2023-05-16,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-05-17,[],IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Assigned to Insurance,2024-04-30,['referral-committee'],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Adopted Both Houses,2023-05-19,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Julie A. Morrison,2024-05-23,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-05-23,[],IL,103rd +Public Act . . . . . . . . . 103-0679,2024-07-19,['became-law'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Bob Morgan,2024-02-23,[],IL,103rd +Public Act . . . . . . . . . 103-0606,2024-07-01,['became-law'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-05-01,['committee-passage'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Education,2023-04-19,[],IL,103rd +Public Act . . . . . . . . . 103-0710,2024-07-19,['became-law'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-05-04,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 4 Assignments Refers to Executive,2024-03-12,[],IL,103rd +Resolution Adopted,2023-03-28,['passage'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-04-17,[],IL,103rd +Assigned to Executive,2023-05-16,['referral-committee'],IL,103rd +Second Reading,2023-05-10,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-16,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-04-18,[],IL,103rd +Arrive in Senate,2023-05-15,['introduction'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-22,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-10-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-29,[],IL,103rd +Approved for Consideration Assignments,2023-11-07,[],IL,103rd +Do Pass Education; 008-003-000,2024-05-01,['committee-passage'],IL,103rd +Fiscal Note Filed,2024-03-26,[],IL,103rd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. Curtis J. Tarver, II",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2024-04-29,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 19, 2023",2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +State Debt Impact Note Requested by Rep. Kevin John Olickal,2024-04-16,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-18,['reading-1'],IL,103rd +Referred to Assignments,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2023-03-30,[],IL,103rd +Public Act . . . . . . . . . 103-0079,2023-06-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-04-18,[],IL,103rd +Assigned to Higher Education Committee,2023-04-11,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-05-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 073-036-000,2023-05-19,[],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Kam Buckner,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-03-06,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-04-29,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mattie Hunter,2024-03-14,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-11-08,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-04-20,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-04-20,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +"Placed on Calendar Order of First Reading March 24, 2023",2023-03-23,['reading-1'],IL,103rd +Assigned to Executive Committee,2024-05-28,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-27,[],IL,103rd +Do Pass State Government; 008-000-000,2023-05-17,['committee-passage'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Lindsey LaPointe,2023-04-03,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-24,"['passage', 'reading-3']",IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Referred to Rules Committee,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-02,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-21,[],IL,103rd +Referred to Rules Committee,2023-05-12,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-05-20,[],IL,103rd +Assigned to Local Government,2023-04-12,['referral-committee'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2023-04-25,[],IL,103rd +Second Reading,2023-05-05,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-05,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-03-23,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +House Committee Amendment No. 3 Rules Refers to Judiciary - Criminal Committee,2024-03-05,[],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-17,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Postponed - Local Government,2023-04-27,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-22,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Fiscal Note Requested by Rep. Ryan Spain,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2023-03-30,[],IL,103rd +First Reading,2023-03-28,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-05-23,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-04-09,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-05-08,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-12,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-04-06,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-05-26,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Arrived in House,2024-04-18,['introduction'],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-05-24,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-10,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-22,[],IL,103rd +Public Act . . . . . . . . . 103-0214,2023-06-30,['became-law'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2023-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-07,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anna Moeller,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +House Floor Amendment No. 2 Tabled,2023-03-23,['amendment-failure'],IL,103rd +Referred to Assignments,2024-05-15,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Adoption & Child Welfare Committee; 013-000-000,2023-05-09,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-04,[],IL,103rd +Chief Senate Sponsor Sen. Tom Bennett,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-15,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Passed; 043-012-001,2024-05-15,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2024-04-02,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Counties & Townships Committee,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Faraci,2024-05-16,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-05-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-04-18,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Andrew S. Chesney,2024-05-20,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-08,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Do Pass / Short Debate Immigration & Human Rights Committee; 008-000-000,2023-04-26,['committee-passage'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-18,[],IL,103rd +Chief House Sponsor Rep. Katie Stuart,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-03,['reading-3'],IL,103rd +Alternate Co-Sponsor Removed Rep. Dan Swanson,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-04-18,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2024-04-16,[],IL,103rd +To Subcommittee on Paid Leave,2024-05-01,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2023-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2024-05-20,[],IL,103rd +Public Act . . . . . . . . . 103-1029,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 097-015-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Insurance Committee; 015-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-05-10,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Omar Aquino,2024-05-17,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 007-004-000,2023-05-17,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Motion Prevailed 068-034-001,2024-04-19,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Arrived in House,2024-04-18,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-22,[],IL,103rd +Remove Chief Co-Sponsor Rep. Laura Faver Dias,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-04-19,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Tabled,2024-05-20,['amendment-failure'],IL,103rd +Added Alternate Co-Sponsor Rep. Brandun Schweizer,2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-13,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Eva-Dina Delgado,2024-04-26,['amendment-introduction'],IL,103rd +Chief House Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-22,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-05-02,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Senate Floor Amendment No. 6 Assignments Refers to Environment and Conservation,2023-04-26,[],IL,103rd +Reported Back To Revenue & Finance Committee;,2024-04-04,[],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-03-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-11,[],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-02-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2024-05-23,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-30,['committee-passage'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-11-07,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sharon Chung,2024-05-06,['amendment-introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-06,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-04-29,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. William E Hauter,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 107-000-000,2024-05-25,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-08,['reading-3'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 16, 2023",2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-30,[],IL,103rd +"Motion Filed to Suspend Rule 21 Counties & Townships Committee; Rep. Elizabeth ""Lisa"" Hernandez",2024-05-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Second Reading - Standard Debate,2023-05-09,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Brandun Schweizer,2024-05-09,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2024-05-24,['amendment-introduction'],IL,103rd +Third Reading - Passed; 038-017-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Third Reading - Passed; 054-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +"Alternate Chief Sponsor Changed to Rep. Emanuel ""Chris"" Welch",2024-05-20,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mattie Hunter,2024-05-24,['amendment-introduction'],IL,103rd +Assigned to Human Services Committee,2024-05-20,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-16,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-05-20,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 009-000-000,2023-11-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2024-05-09,[],IL,103rd +Third Reading - Short Debate - Passed 077-035-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-04-10,['reading-2'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-03-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 017-007-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 3 Tabled,2024-04-19,['amendment-failure'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-05-24,[],IL,103rd +Assigned to State Government,2023-05-18,['referral-committee'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Veterans Affairs,2023-04-25,[],IL,103rd +Waive Posting Notice,2023-05-10,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-11,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-05-15,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-17,['reading-2'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Julie A. Morrison,2023-04-26,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-23,[],IL,103rd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments.",2023-04-25,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-16,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-000-000,2023-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-05-09,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-05-25,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-09,[],IL,103rd +Passed Both Houses,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-23,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-04-02,[],IL,103rd +Third Reading - Passed; 034-020-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-16,[],IL,103rd +Re-assigned to State Government,2023-05-09,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. David Koehler,2023-05-05,['amendment-introduction'],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-05-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-02-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2024-05-03,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +"Senate Committee Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-04-24,['amendment-introduction'],IL,103rd +Re-referred to Assignments,2024-05-07,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2024-05-21,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-10-25,[],IL,103rd +Public Act . . . . . . . . . 103-0427,2023-08-04,['became-law'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-21,[],IL,103rd +Public Act . . . . . . . . . 103-0754,2024-08-02,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-03-29,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lilian Jiménez,2024-04-04,['amendment-introduction'],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-05-13,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-09,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-05-10,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-05-02,[],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-15,[],IL,103rd +Public Act . . . . . . . . . 103-0424,2023-08-04,['became-law'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2024-05-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 21, 2024",2024-05-20,['reading-3'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-24,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-11,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Doris Turner,2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-05-09,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-07,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-08-08,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-04-30,[],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0769,2024-08-02,['became-law'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2024-05-25,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Be Adopted Executive; 010-001-001,2023-05-25,['committee-passage-favorable'],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-05-16,['amendment-introduction'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Do Pass Health and Human Services; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-17,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +First Reading,2024-05-22,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-14,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Restorative Justice; 005-002-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-20,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-01,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-02-21,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Third Reading - Passed; 056-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0673,2024-07-22,['became-law'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-04-15,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Assigned to Education,2024-04-30,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-04-30,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-05,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-04-16,[],IL,103rd +Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2024-05-22,[],IL,103rd +Adopted Both Houses,2024-05-25,[],IL,103rd +Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-04-11,['referral-committee'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-18,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-09,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-04-17,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-05-05,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-05-24,['amendment-introduction'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-01,[],IL,103rd +Assigned to Consumer Protection Committee,2023-05-12,['referral-committee'],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. William ""Will"" Davis",2023-05-18,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0060,2023-06-09,['became-law'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-30,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 071-038-000,2024-05-28,[],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Chief House Sponsor Rep. Gregg Johnson,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-23,[],IL,103rd +First Reading,2023-10-25,['reading-1'],IL,103rd +Do Pass Executive; 009-004-000,2024-05-22,['committee-passage'],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dagmara Avelar,2024-04-01,['amendment-introduction'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +"Effective Date June 9, 2023; Some Provisions",2023-06-09,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Matt Hanson,2023-04-26,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-02-15,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-29,[],IL,103rd +Third Reading - Passed; 056-001-000,2023-05-24,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-04-17,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Arrived in House,2023-05-25,['introduction'],IL,103rd +Assigned to Appropriations- Education,2023-04-12,['referral-committee'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-16,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Housing Affordability Impact Note Requested as Amended by Rep. Rita Mayfield,2024-04-18,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Public Act . . . . . . . . . 103-0078,2023-06-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-03-05,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-03-07,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-05-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-03-13,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-12,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Second Reading - Short Debate,2023-05-11,['reading-2'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +"Remove Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-03-27,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2023-05-04,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-05-23,[],IL,103rd +Referred to Rules Committee,2024-05-03,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary Beth Canty,2023-04-14,[],IL,103rd +Chief House Sponsor Rep. Travis Weaver,2024-04-12,[],IL,103rd +"Motion Filed to Suspend Rule 21 Executive Committee; Rep. Elizabeth ""Lisa"" Hernandez",2024-05-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-21,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Third Reading - Short Debate - Passed 105-000-001,2024-05-22,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-19,['reading-3'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-05-15,[],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Energy & Environment Committee; 019-009-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. John F. Curran,2024-04-10,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-05-09,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 012-001-000,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2024-05-23,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Public Act . . . . . . . . . 103-0967,2024-08-09,['became-law'],IL,103rd +Assigned to Public Health Committee,2024-04-24,['referral-committee'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-20,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-21,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2024-05-06,['amendment-introduction'],IL,103rd +Public Act . . . . . . . . . 103-0977,2024-08-09,['became-law'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2024-03-20,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-05-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0996,2024-08-09,['became-law'],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 012-006-000,2024-05-20,['committee-passage'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2024-05-09,['committee-passage'],IL,103rd +First Reading,2024-05-03,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Assigned to Human Services Committee,2024-04-15,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2024-05-20,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 058-000-000,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2024-04-18,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-18,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2024-05-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-02,[],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +Third Reading - Passed; 053-000-000,2024-04-09,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-14,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-23,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Transportation,2024-05-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2023-05-24,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-05-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2023-04-27,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-18,[],IL,103rd +Third Reading - Passed; 057-001-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 058-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anna Moeller,2023-05-12,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-29,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-14,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2023-04-27,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-05-02,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-11,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Cristina Castro,2024-05-23,['amendment-introduction'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Emanuel ""Chris"" Welch",2024-05-20,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Chief House Sponsor Rep. Rita Mayfield,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-03-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0240,2023-06-30,['became-law'],IL,103rd +Chief House Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-01,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-29,[],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-07,['amendment-passage'],IL,103rd +Referred to Rules Committee,2024-04-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Meg Loughran Cappel,2024-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2023-05-17,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-04-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2023-04-25,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-04-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Arrived in House,2023-05-17,['introduction'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-04-11,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Faraci,2023-03-30,['amendment-passage'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 016-000-000",2023-04-25,['committee-passage'],IL,103rd +Assigned to State Government Administration Committee,2023-04-11,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-26,['amendment-failure'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-26,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-04-26,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2023-05-09,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-03,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-05-16,[],IL,103rd +Do Pass Education; 012-000-000,2024-05-07,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Ram Villivalam,2023-05-16,['amendment-introduction'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Approved for Consideration Assignments,2023-11-06,[],IL,103rd +Do Pass Executive; 012-000-000,2023-05-17,['committee-passage'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-04-18,['referral-committee'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-03-21,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-11,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +"Effective Date January 1, 2024",2023-06-27,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 017-009-000,2023-05-09,['committee-passage-favorable'],IL,103rd +Third Reading - Passed; 047-006-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-15,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-11,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Chief Co-Sponsor Changed to Rep. Joe C. Sosnowski,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-17,[],IL,103rd +Third Reading - Passed; 042-012-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 057-000-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-10,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0137,2023-06-30,['became-law'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 012-000-000,2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-21,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Alternate Chief Sponsor Changed to Sen. Willie Preston,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-17,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-14,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-02-09,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2023-04-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-09,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lakesia Collins,2023-03-08,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-10,[],IL,103rd +Do Pass as Amended Education; 013-000-000,2023-05-10,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-04-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2023-03-17,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Public Act . . . . . . . . . 103-0170,2023-06-30,['became-law'],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-16,[],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +Waive Posting Notice,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-05-18,[],IL,103rd +Approved for Consideration Assignments,2023-11-06,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-02,[],IL,103rd +Third Reading - Passed; 039-017-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-15,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0126,2023-06-30,['became-law'],IL,103rd +Judicial Note Filed,2023-03-08,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-05,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-04-25,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-18,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-22,[],IL,103rd +Do Pass as Amended Judiciary; 007-000-000,2023-04-26,['committee-passage'],IL,103rd +Governor Approved,2024-08-06,['executive-signature'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted; State Government,2023-04-26,['amendment-passage'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Public Act . . . . . . . . . 103-0142,2023-06-30,['became-law'],IL,103rd +Second Reading,2023-05-16,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Thaddeus Jones,2023-05-19,[],IL,103rd +Chief Senate Sponsor Sen. Willie Preston,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-03-28,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-11-07,[],IL,103rd +Referred to Assignments,2024-05-23,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2023-04-27,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Theresa Mah,2023-03-21,['amendment-introduction'],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-29,[],IL,103rd +Chief Senate Sponsor Sen. Laura M. Murphy,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-22,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-11-06,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-23,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Chief Senate Sponsor Sen. Dave Syverson,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-04-11,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-05-01,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Senate Committee Amendment No. 4 Referred to Assignments,2023-05-10,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-02-22,[],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2023-03-21,[],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Land Conveyance Appraisal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Arrive in Senate,2023-04-27,['introduction'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Revenue,2024-02-28,[],IL,103rd +Removed Co-Sponsor Rep. Abdelnasser Rashid,2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Committee Amendment No. 4 Referred to Assignments,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Javier L. Cervantes,2024-04-16,[],IL,103rd +Public Act . . . . . . . . . 103-0074,2023-06-09,['became-law'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Hoan Huynh,2023-11-07,['amendment-introduction'],IL,103rd +Third Reading - Passed; 044-010-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-15,[],IL,103rd +Motion to Reconsider Vote - Withdrawn Rep. Kelly M. Cassidy,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Win Stoller,2023-04-03,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-04-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-02-28,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Human Services Committee; 005-003-000,2023-05-03,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-23,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-15,[],IL,103rd +Do Pass Labor; 016-000-000,2023-04-27,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-10-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-24,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Waive Posting Notice,2023-05-10,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-02-21,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jay Hoffman,2023-05-10,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Gaming Committee; 016-000-000,2023-11-07,['committee-passage'],IL,103rd +Verified,2023-03-24,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Camille Y. Lilly,2023-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-21,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2023-04-10,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2023-04-03,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Seth Lewis,2023-03-23,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2024-05-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-03-07,[],IL,103rd +Assigned to Labor,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve McClure,2023-03-30,[],IL,103rd +Third Reading - Passed; 036-019-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-03-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-10-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2023-05-02,[],IL,103rd +Second Reading,2023-05-08,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Public Act . . . . . . . . . 103-0537,2023-08-11,['became-law'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-05,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-28,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 098-007-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Robert F. Martwick,2023-05-16,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 013-000-000,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0134,2023-06-30,['became-law'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Chief Senate Sponsor Sen. Linda Holmes,2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-04-18,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-11,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2023-11-08,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Doris Turner,2023-05-04,['amendment-passage'],IL,103rd +Referred to Assignments,2023-05-10,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-24,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-05-20,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-05-24,[],IL,103rd +Approved for Consideration Assignments,2023-11-06,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2023-04-19,['amendment-introduction'],IL,103rd +Third Reading - Passed; 052-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-23,[],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Human Services Committee; 006-003-000,2023-03-23,['committee-passage-favorable'],IL,103rd +State Mandates Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-14,[],IL,103rd +Public Act . . . . . . . . . 103-0049,2023-06-09,['became-law'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-04-20,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Early Childhood Education,2023-04-26,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Waive Posting Notice,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Assigned to Insurance,2023-04-12,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-10-26,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Arrive in Senate,2023-05-02,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 075-030-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-12,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2023-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 072-037-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Recalled to Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2023-04-26,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Senate Special Committee on Pensions; 011-000-000,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2023-05-09,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-19,['reading-2'],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Higher Education Committee; 011-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-06,[],IL,103rd +Added Alternate Co-Sponsor Rep. Fred Crespo,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-16,[],IL,103rd +State Debt Impact Note Requested by Rep. Kam Buckner,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-16,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2023-04-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Ram Villivalam,2024-05-23,['filing'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +House Floor Amendment No. 3 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-07,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Suzanne M. Ness,2023-04-20,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-03,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2024-05-01,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-05-07,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-04-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 15, 2023",2023-05-11,[],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 018-000-000,2023-04-25,['committee-passage'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-04-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2024-04-30,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mattie Hunter,2024-04-04,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Robyn Gabel,2023-05-25,[],IL,103rd +State Mandates Fiscal Note Filed,2023-05-09,[],IL,103rd +Third Reading - Short Debate - Passed 093-018-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2024-05-01,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-11,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 007-004-000,2023-05-17,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Aaron M. Ortiz,2024-04-16,[],IL,103rd +Assigned to Mental Health & Addiction Committee,2024-04-24,['referral-committee'],IL,103rd +Second Reading,2024-05-17,['reading-2'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Laura Faver Dias,2024-05-16,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-11-06,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2024-04-25,[],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. Norine K. Hammond,2024-04-19,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Gregg Johnson,2023-03-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2024-05-02,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2024-05-20,['amendment-passage'],IL,103rd +Chief Co-Sponsor Changed to Rep. Matt Hanson,2023-03-23,[],IL,103rd +Chief House Sponsor Rep. Gregg Johnson,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Assigned to Executive Committee,2023-04-18,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2024-03-12,[],IL,103rd +Recalled to Second Reading - Short Debate,2024-05-20,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-05-21,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-16,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2024-05-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in Appropriations-Health & Human Services Committee; by Voice Vote,2024-05-16,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-03-05,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-03-29,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-03-29,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-17,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-22,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2023-05-09,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-20,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 009-005-000,2024-05-08,[],IL,103rd +Arrive in Senate,2024-05-15,['introduction'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-16,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-05-16,['referral-committee'],IL,103rd +Assigned to Local Government,2024-05-07,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-08,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Higher Education,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-02-27,[],IL,103rd +Third Reading - Short Debate - Passed 115-000-000,2023-05-16,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-04-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-05-18,['amendment-failure'],IL,103rd +Added Alternate Co-Sponsor Rep. Brandun Schweizer,2024-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-30,['amendment-failure'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0085,2023-06-09,['became-law'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 070-038-000,2024-05-28,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-03-14,[],IL,103rd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2024-04-11,['amendment-failure'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2023-05-08,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-04-13,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Linda Holmes,2023-05-16,['filing'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-25,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-30,['amendment-failure'],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Do Pass as Amended / Short Debate Housing; 017-000-000,2023-04-26,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2023-04-18,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Bill Cunningham,2024-05-23,['filing'],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-09,[],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-04-25,[],IL,103rd +Recalled to Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-16,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-04,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-30,[],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2023-04-26,['amendment-passage'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Hoan Huynh,2023-04-27,['amendment-introduction'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Paul Jacobs,2024-04-17,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-06-04,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Insurance,2023-03-07,['amendment-passage'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2023-05-03,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2023-03-31,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Ann M. Williams,2023-11-09,['amendment-introduction'],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-04-19,[],IL,103rd +Referred to Assignments,2024-05-02,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-04-16,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-03,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Christopher Belt,2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-16,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Do Pass Health and Human Services; 014-000-000,2024-05-08,['committee-passage'],IL,103rd +Assigned to Insurance Committee,2024-04-24,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0632,2024-07-01,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0768,2024-08-02,['became-law'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-04-17,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-22,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-05-15,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 004-000-000,2023-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0646,2024-07-01,['became-law'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0714,2024-07-19,['became-law'],IL,103rd +Removed Co-Sponsor Rep. Ann M. Williams,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-04-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-04-25,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-03-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-13,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sharon Chung,2024-05-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-15,['reading-2'],IL,103rd +Chief House Sponsor Rep. Sharon Chung,2024-04-12,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2024-05-20,['committee-passage-favorable'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-18,[],IL,103rd +Third Reading - Passed; 038-018-000,2024-05-02,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-05-02,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +"Chief Senate Sponsor Sen. Elgie R. Sims, Jr.",2024-04-17,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-04-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2024-05-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2024-03-07,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-16,[],IL,103rd +Passed Both Houses,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-15,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-03,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nicole La Ha,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-16,[],IL,103rd +"Effective Date August 2, 2024; ; Some Provisions.",2024-08-02,[],IL,103rd +Do Pass Education; 014-000-000,2023-05-16,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-05-10,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-08,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-04-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Ann M. Williams,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-05-08,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-05-14,[],IL,103rd +Recommends Be Adopted State Government Administration Committee; 005-002-000,2023-05-24,['committee-passage-favorable'],IL,103rd +Remove Chief Co-Sponsor Rep. Lakesia Collins,2023-04-27,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-05-09,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2024-05-01,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 010-000-000,2024-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-03-07,[],IL,103rd +Sent to the Governor,2024-06-12,['executive-receipt'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2024-05-15,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-04-24,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2024-03-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-04-20,[],IL,103rd +Assigned to Revenue,2024-04-30,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-05-22,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jenn Ladisch Douglass,2024-04-29,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-07,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Janet Yang Rohr,2024-05-21,['amendment-introduction'],IL,103rd +Public Act . . . . . . . . . 103-0763,2024-08-02,['became-law'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-02,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Placed on Calendar - Consideration Postponed,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-04-21,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-03-22,[],IL,103rd +Do Pass Higher Education; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-24,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-04-20,[],IL,103rd +Note / Motion Filed - Note Act Does Not Apply Rep. Camille Y. Lilly,2023-05-12,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Third Reading - Passed; 039-017-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-24,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Transportation,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-20,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-04-27,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-18,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-15,[],IL,103rd +Third Reading - Passed; 043-010-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2023-04-18,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-15,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Elizabeth ""Lisa"" Hernandez",2023-05-10,[],IL,103rd +Third Reading - Short Debate - Passed 092-012-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-10-25,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Chief Co-Sponsor Changed to Rep. Stephanie A. Kifowit,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-18,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Chief Senate Sponsor Sen. Sally J. Turner,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-05,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-02-22,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-02-28,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-05-12,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-05-10,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-04-18,[],IL,103rd +Arrived in House,2023-05-18,['introduction'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2023-03-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2023-04-11,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-03-07,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-04-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Recalled to Second Reading,2023-05-19,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-10,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Sponsor Removed Sen. Willie Preston,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Energy & Environment Committee,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-04-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 9, 2023",2023-05-08,['reading-3'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-23,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-24,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-21,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2023-05-24,['amendment-introduction'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading November 7, 2023",2023-11-06,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Public Act . . . . . . . . . 103-0136,2023-06-30,['became-law'],IL,103rd +Passed Both Houses,2023-11-08,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 012-000-000,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-10-31,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dagmara Avelar,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-05,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-11-07,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-10-26,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2023-04-14,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2024-05-20,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-04-25,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-24,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-05-10,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-03-07,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-17,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-17,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Ventura,2023-03-30,['amendment-passage'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Approved for Consideration Rules Committee; 003-001-000,2024-05-01,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 008-004-000,2024-05-20,['committee-passage'],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-04-25,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Alternate Chief Co-Sponsor Changed to Rep. Michael J. Coffey, Jr.",2023-04-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Balanced Budget Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0250,2023-06-30,['became-law'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 010-000-000,2023-03-29,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 026-000-000,2023-04-26,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2023-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2024-05-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-19,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-16,[],IL,103rd +House Concurs,2024-05-28,[],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. Norine K. Hammond,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-16,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-24,[],IL,103rd +Third Reading - Passed; 057-002-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2024-05-07,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Public Health,2024-05-07,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 012-000-000,2024-05-25,[],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2024-04-11,['amendment-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Brandun Schweizer,2024-04-17,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2023-11-07,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michael J. Kelly,2023-05-18,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Christopher Belt,2024-04-08,['amendment-introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Randy E. Frese,2024-04-30,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2024-05-08,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-16,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Do Pass as Amended / Short Debate Appropriations-Health & Human Services Committee; 022-000-000,2024-05-16,['committee-passage'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Lindsey LaPointe,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brandun Schweizer,2024-05-23,[],IL,103rd +Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-19,['amendment-passage'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0929,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2024-05-16,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 014-000-000,2024-05-02,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-02,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Higher Education; 008-000-000,2024-05-23,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Agriculture,2023-03-29,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-22,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-04,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Police & Fire Committee; 014-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-04-25,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-05-07,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Kam Buckner,2023-05-03,[],IL,103rd +Chief House Sponsor Rep. Tony M. McCombie,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2023-04-26,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Judiciary,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0969,2024-08-09,['became-law'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Third Reading - Short Debate - Passed 102-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2023-04-20,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 008-000-000,2023-05-03,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Public Act . . . . . . . . . 103-1009,2024-08-09,['became-law'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-20,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-23,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-21,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-1034,2024-08-09,['became-law'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-25,['reading-3'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 009-004-000,2023-04-19,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-04-30,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2024-05-08,['amendment-introduction'],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-04-17,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of First Reading,2024-05-15,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +Balanced Budget Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-29,[],IL,103rd +Motion Prevailed 067-039-001,2023-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2024-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Suzanne M. Ness,2023-05-12,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-04-27,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert F. Martwick,2023-03-29,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Sara Feigenholtz,2023-05-16,['filing'],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0086,2023-06-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-04-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Do Pass as Amended Insurance; 010-000-000,2023-03-08,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 067-038-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 056-000-000,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-04-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-04-25,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 008-004-000,2023-05-25,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-03-20,[],IL,103rd +Do Pass Energy and Public Utilities; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-03-05,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-05-16,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 017-007-000,2023-03-15,['committee-passage-favorable'],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2023-04-14,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 20, 2024",2024-05-17,['reading-3'],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-04-25,[],IL,103rd +House Floor Amendment No. 5 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-04-16,[],IL,103rd +Arrive in Senate,2024-05-15,['introduction'],IL,103rd +House Committee Amendment No. 2 Adopted in Police & Fire Committee; by Voice Vote,2023-04-27,['amendment-passage'],IL,103rd +Assigned to Financial Institutions,2024-05-07,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Assigned to Executive,2024-04-30,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0077,2023-06-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Hoan Huynh,2023-05-17,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-11-09,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +Passed Both Houses,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-19,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0735,2024-08-02,['became-law'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Veterans Affairs,2023-04-27,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-22,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Waive Posting Notice,2023-05-18,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Insurance Committee,2024-04-03,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-05-24,[],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Marcus C. Evans, Jr.",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-16,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-22,[],IL,103rd +Re-referred to Education,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-16,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +"House Floor Amendment No. 3 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-05-13,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-03,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Passed Both Houses,2023-06-09,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2023-04-27,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2024-05-02,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Steve McClure,2023-05-02,['amendment-introduction'],IL,103rd +Recalled to Second Reading,2023-05-25,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Pension Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0742,2024-08-02,['became-law'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-23,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Kevin John Olickal,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-09,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Do Pass Labor; 012-000-000,2024-05-08,['committee-passage'],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +Sent to the Governor,2024-06-12,['executive-receipt'],IL,103rd +Land Conveyance Appraisal Note Filed,2023-03-08,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-05,[],IL,103rd +Chief Senate Sponsor Sen. Erica Harriss,2023-03-29,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-02-08,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-05-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-04,[],IL,103rd +Public Act . . . . . . . . . 103-0759,2024-08-02,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2023-05-09,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2023-05-25,['amendment-introduction'],IL,103rd +Passed Both Houses,2024-05-21,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Seth Lewis,2023-03-29,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Alternate Co-Sponsor Removed Rep. Yolonda Morris,2024-05-02,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-05-25,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nabeela Syed,2023-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-22,[],IL,103rd +Arrived in House,2023-05-24,['introduction'],IL,103rd +Chief House Sponsor Rep. Tony M. McCombie,2023-05-08,[],IL,103rd +Assigned to Financial Institutions,2023-05-09,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-04-18,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-12,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Kevin John Olickal,2024-04-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Charles Meier,2023-04-03,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-26,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-04-18,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-05-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-17,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Willie Preston,2023-03-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Chief Co-Sponsor Changed to Rep. Kam Buckner,2024-04-02,[],IL,103rd +Referred to Rules Committee,2023-03-29,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Alternate Chief Sponsor Removed Rep. Tom Weber,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-08,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-05-10,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2024-05-13,['amendment-introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-05-02,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-28,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Do Pass / Short Debate Higher Education Committee; 007-004-000,2023-04-19,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0082,2023-06-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Third Reading - Passed; 042-010-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Prescription Drug Affordability & Accessibility Committee; 011-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2024-04-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2023-04-20,[],IL,103rd +Sponsor Removed Sen. Karina Villa,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-08,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-22,[],IL,103rd +Public Act . . . . . . . . . 103-0205,2023-06-30,['became-law'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-0319,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-17,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Postponed - Executive,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-04-27,[],IL,103rd +Third Reading - Short Debate - Passed 099-000-002,2023-03-24,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-22,[],IL,103rd +First Reading,2023-04-25,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Postponed - Local Government,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-05-20,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-03-06,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-09,[],IL,103rd +Assigned to Energy & Environment Committee,2023-05-12,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-24,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Celina Villanueva,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-16,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0045,2023-06-09,['became-law'],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-21,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Motion to Suspend Rule 21 - Prevailed 070-038-000,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. William E Hauter,2023-03-08,[],IL,103rd +Do Pass / Short Debate Executive Committee; 009-003-000,2024-03-06,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2024-04-10,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-23,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-17,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2023-05-17,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-05-16,['amendment-passage'],IL,103rd +Chief Co-Sponsor Changed to Rep. Camille Y. Lilly,2024-02-23,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-19,[],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0668,2024-07-19,['became-law'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Placed on Calendar Order of First Reading,2023-05-15,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As April 5, 2024",2024-03-15,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Assigned to Education,2024-04-30,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-14,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Do Pass Judiciary; 006-003-000,2024-05-01,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0010,2023-06-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-11-07,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Postponed - Education,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-23,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 11, 2023",2023-05-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-10-23,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Do Pass Judiciary; 007-001-000,2024-05-08,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-18,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-01,['amendment-failure'],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-03-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-05-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Chief House Sponsor Rep. Anne Stava-Murray,2024-04-22,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-17,[],IL,103rd +Assigned to Executive Committee,2024-05-20,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. William E Hauter,2024-05-14,[],IL,103rd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-23,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-04-02,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-06,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michael J. Kelly,2024-04-12,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2024-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2024-05-09,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Mike Porfirio,2024-05-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-05-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2024-04-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2024-05-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Arrived in House,2024-05-15,['introduction'],IL,103rd +Public Act . . . . . . . . . 103-0469,2023-08-04,['became-law'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-24,[],IL,103rd +"House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-05-03,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Patrick J. Joyce,2024-05-20,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Ann Gillespie,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Counties & Townships Committee; 008-000-000,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-13,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-05-06,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Paul Jacobs,2024-05-01,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-19,[],IL,103rd +First Reading,2024-05-17,['reading-1'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 22, 2024",2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. La Shawn K. Ford,2024-05-17,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Tabled,2023-05-17,['amendment-failure'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2024-05-03,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Standard Debate,2023-05-09,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2023-11-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. John Egofske,2023-05-11,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-04-12,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Arrived in House,2024-05-15,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 11, 2024",2024-04-10,['reading-3'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Hoan Huynh,2024-05-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-1051,2024-08-09,['became-law'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-16,[],IL,103rd +Assigned to State Government Administration Committee,2023-04-11,['referral-committee'],IL,103rd +Recalled to Second Reading,2024-05-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Bob Morgan,2024-05-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Do Pass Executive; 010-001-000,2024-05-09,['committee-passage'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2024-05-07,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-20,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Wayne A Rosenthal,2023-04-26,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-19,['amendment-passage'],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Cassidy,2024-05-03,['amendment-introduction'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-16,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-05-04,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 6 Recommend Do Adopt Environment and Conservation; 006-003-000,2023-04-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Bill Cunningham,2023-05-16,['filing'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-26,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Public Act . . . . . . . . . 103-0233,2023-06-30,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2023-04-18,['referral-committee'],IL,103rd +House Committee Amendment No. 2 Adopted in Revenue & Finance Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-03-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-02-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-11-07,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2024-05-13,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2023-04-27,['amendment-introduction'],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-15,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Diane Blair-Sherlock,2024-04-16,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 020-004-004,2024-04-16,['committee-passage-favorable'],IL,103rd +Motion to Suspend Rule 21 - Prevailed 072-040-000,2024-05-23,[],IL,103rd +Assigned to Revenue,2024-04-30,['referral-committee'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-20,[],IL,103rd +Passed Both Houses,2024-05-21,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-17,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2024-05-06,[],IL,103rd +Assigned to Environment and Conservation,2024-04-30,['referral-committee'],IL,103rd +House Committee Amendment No. 2 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-04,['amendment-passage'],IL,103rd +Assigned to Health Care Licenses Committee,2024-04-30,['referral-committee'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-22,[],IL,103rd +"Effective Date August 6, 2024",2024-08-06,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-16,[],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Curtis J. Tarver, II",2023-05-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2023-05-18,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-17,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0278,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading November 6, 2023",2023-11-06,['reading-3'],IL,103rd +Referred to Assignments,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-15,[],IL,103rd +Assigned to Labor,2023-04-12,['referral-committee'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-04-26,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-02-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-04-27,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-15,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-20,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 105-000-001,2024-04-19,"['passage', 'reading-3']",IL,103rd +Do Pass Executive; 009-003-000,2023-05-18,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0043,2023-06-09,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0139,2023-06-30,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Holmes,2023-05-16,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Executive,2023-05-10,[],IL,103rd +First Reading,2023-04-20,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Martin McLaughlin,2023-05-04,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading November 7, 2023",2023-11-06,['reading-3'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-02,[],IL,103rd +Third Reading - Passed; 041-014-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-12,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-05-03,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-05-10,[],IL,103rd +Arrived in House,2023-05-17,['introduction'],IL,103rd +Public Act . . . . . . . . . 103-0104,2023-06-27,['became-law'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Re-assigned to Executive,2023-05-09,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2023-04-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-10,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Higher Education Committee,2023-05-16,[],IL,103rd +Do Pass as Amended State Government; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-23,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Re-referred to Assignments,2023-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 080-023-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Judiciary - Civil Committee,2023-05-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-11,['reading-3'],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 014-000-000,2024-05-01,['committee-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2023-04-20,['amendment-introduction'],IL,103rd +Second Reading,2023-11-07,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-21,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-05-18,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-03,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-21,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; 006-003-000,2023-03-08,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-05,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-17,[],IL,103rd +Public Act . . . . . . . . . 103-0185,2023-06-30,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-03,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Ram Villivalam,2023-05-11,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading November 7, 2023",2023-11-06,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-05-09,[],IL,103rd +Removed Co-Sponsor Rep. Jonathan Carroll,2023-03-14,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-04-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sharon Chung,2023-05-04,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 007-004-000,2024-05-28,['committee-passage'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-04-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-05-25,[],IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-11-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-04-18,[],IL,103rd +Re-assigned to Education,2023-05-02,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Koehler,2023-05-11,['amendment-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2024-05-07,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2024-05-13,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-05-02,[],IL,103rd +Public Act . . . . . . . . . 103-0209,2023-06-30,['became-law'],IL,103rd +Referred to Assignments,2024-05-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 22, 2024",2024-05-22,['reading-2'],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Do Pass Education; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jackie Haas,2023-05-02,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-05-12,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-21,[],IL,103rd +Arrived in House,2023-05-25,['introduction'],IL,103rd +Third Reading - Passed; 048-008-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-05-25,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2023-04-27,['amendment-introduction'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Executive Committee,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to State Government Administration Committee,2023-05-16,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-18,[],IL,103rd +Third Reading - Passed; 052-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-04-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-11,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-17,[],IL,103rd +"Effective Date January 1, 2025; Some Provisions",2023-06-09,[],IL,103rd +House Floor Amendment No. 1 Judicial Note Requested as Amended by Rep. Rita Mayfield,2024-04-18,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-04-29,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-05-05,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Referred to Rules Committee,2023-10-25,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-24,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-04-30,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-16,['amendment-passage'],IL,103rd +Alternate Co-Sponsor Removed Rep. Kevin John Olickal,2023-05-02,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-17,[],IL,103rd +Assigned to Energy & Environment Committee,2023-04-11,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-05-01,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-30,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-04-26,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +First Reading,2024-05-17,['reading-1'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-01,[],IL,103rd +Do Pass / Short Debate Counties & Townships Committee; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Natalie A. Manley,2023-04-04,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-26,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-08,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-06,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-05-16,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-000-000",2023-05-11,['committee-passage-favorable'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-11,['reading-2'],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-04-11,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sally J. Turner,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-15,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-23,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-04-19,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendments will remain in the Committee on Assignments",2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lance Yednock,2024-05-15,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Sponsor Removed Sen. Robert Peters,2024-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kelly M. Cassidy,2024-04-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-02,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Assigned to Veterans Affairs,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-05-09,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-09,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 058-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-11-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Do Pass Energy and Public Utilities; 015-000-000,2024-05-02,['committee-passage'],IL,103rd +Resolution Adopted 109-000-000,2023-04-25,['passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Suzanne M. Ness,2024-04-30,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 067-043-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0623,2024-07-01,['became-law'],IL,103rd +Assigned to Revenue,2024-04-24,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2024-05-16,[],IL,103rd +Chief Senate Sponsor Sen. Celina Villanueva,2024-04-18,[],IL,103rd +"Added Alternate Co-Sponsor Rep. William ""Will"" Davis",2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2024-05-15,[],IL,103rd +Referred to Assignments,2024-05-22,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Mental Health & Addiction Committee,2024-04-17,[],IL,103rd +Public Act . . . . . . . . . 103-0658,2024-07-19,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 099-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-05-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-08,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-05-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2024-05-25,[],IL,103rd +Chief House Sponsor Rep. Matt Hanson,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-11-15,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-05-16,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-05-06,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-02-21,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-04-30,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Adopted in State Government Administration Committee; by Voice Vote,2024-04-11,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 074-038-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2023-04-14,[],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Chief House Sponsor Rep. Stephanie A. Kifowit,2023-03-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-01,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-05-02,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 083-030-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Public Act . . . . . . . . . 103-0237,2023-06-30,['became-law'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-04-20,[],IL,103rd +Public Act . . . . . . . . . 103-0925,2024-08-09,['became-law'],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nabeela Syed,2024-05-09,[],IL,103rd +Referred to Rules Committee,2024-05-03,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-20,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 21, 2024",2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-04-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Camille Y. Lilly,2024-04-30,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 6 Assignments Refers to Labor,2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Javier L. Cervantes,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-05-16,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anna Moeller,2023-04-27,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-02,['amendment-passage'],IL,103rd +"Added Alternate Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-06,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2023-05-04,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-03-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Gregg Johnson,2024-05-22,[],IL,103rd +Sponsor Removed Sen. Erica Harriss,2023-05-16,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-08,[],IL,103rd +Arrived in House,2024-05-09,['introduction'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-008-000,2024-04-30,['committee-passage'],IL,103rd +House Floor Amendment No. 4 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Chief House Sponsor Rep. Travis Weaver,2024-04-09,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Do Pass as Amended Judiciary; 006-002-001,2024-05-08,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-09,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2024-05-24,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Amy Elik,2023-04-28,['amendment-introduction'],IL,103rd +Assigned to Human Services Committee,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jeff Keicher,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-04-27,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 074-039-000,2024-05-21,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 046-011-000,2024-05-26,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-03-14,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-24,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Christopher Belt,2024-04-11,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Transportation; 012-000-000,2024-05-15,[],IL,103rd +Chief House Sponsor Rep. Kelly M. Burke,2024-04-11,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-17,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-05-03,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-08,['amendment-introduction'],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Edgar Gonzalez, Jr.",2023-04-14,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-04-18,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2024-05-16,[],IL,103rd +Balanced Budget Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-19,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Michelle Mussman,2023-04-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 075-026-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-14,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-13,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2023-05-19,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +Motion Filed to Suspend Rule 21 Transportation: Vehicles & Safety; Rep. Robyn Gabel,2024-05-20,[],IL,103rd +Arrived in House,2024-04-09,['introduction'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 21, 2024",2024-05-21,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-06,[],IL,103rd +Third Reading - Short Debate - Passed 079-025-002,2023-05-19,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Immigration & Human Rights Committee,2024-03-05,[],IL,103rd +Third Reading - Passed; 041-015-000,2024-05-02,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Abdelnasser Rashid,2024-05-21,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4a,2024-04-18,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Chief House Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-04-12,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-04,[],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 009-000-000,2024-04-11,['committee-passage'],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2024-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-15,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Immigration & Human Rights Committee; 007-004-000,2024-03-13,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-05-09,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-17,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-08-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-01,[],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 011-001-000,2023-05-09,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-11,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Barbara Hernandez,2024-04-30,[],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Assigned to Energy & Environment Committee,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-04-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Travis Weaver,2023-05-03,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2023-05-04,[],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-10,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-09,[],IL,103rd +Chief House Sponsor Rep. Ryan Spain,2024-04-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2024-04-17,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Chapin Rose,2024-05-21,['filing'],IL,103rd +Correctional Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-05-13,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-04-25,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-20,[],IL,103rd +Public Act . . . . . . . . . 103-0945,2024-08-09,['became-law'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-04-27,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2023-04-17,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-04-19,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-30,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-03-20,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-02,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2023-05-24,[],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-05-23,[],IL,103rd +House Floor Amendment No. 4 Adopted,2024-04-19,['amendment-passage'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-04-12,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +Do Pass / Short Debate Insurance Committee; 012-000-000,2023-04-25,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0249,2023-06-30,['became-law'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Sara Feigenholtz,2024-05-22,['filing'],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-04-28,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-05-17,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-001,2024-05-23,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Senate Special Committee on Pensions,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Do Pass / Short Debate Executive Committee; 012-000-000,2024-05-22,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-04-27,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 068-038-000,2024-05-20,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 008-000-000,2024-05-08,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-04,['reading-3'],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-04-24,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Celina Villanueva,2024-05-15,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2023-05-04,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-10,[],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-04-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lance Yednock,2023-05-19,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Recalled to Second Reading,2024-05-16,['reading-2'],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Sponsor Removed Sen. Sally J. Turner,2023-05-16,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-03-12,['amendment-passage'],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-000-000",2023-05-11,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-04-15,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-09,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-30,['amendment-failure'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Chief House Sponsor Rep. Eva-Dina Delgado,2023-03-30,[],IL,103rd +Public Act . . . . . . . . . 103-0267,2023-06-30,['became-law'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2023-04-14,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2024-05-23,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 008-000-000,2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-22,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-04-11,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2023-05-10,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2023-04-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-05-01,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-21,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-21,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Patrick J. Joyce,2023-11-08,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 006-000-000,2023-05-10,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-18,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Do Pass Education; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2023-04-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2023-03-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-05,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-12,['referral-committee'],IL,103rd +Re-assigned to Education,2023-04-19,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 014-000-000,2023-05-16,[],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 006-003-000,2023-03-08,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 073-039-000,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-04-11,['committee-passage-favorable'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Theresa Mah,2023-03-21,['amendment-introduction'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2023-03-29,[],IL,103rd +Public Act . . . . . . . . . 103-0782,2024-08-06,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 011-000-000,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2023-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2023-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Higher Education Committee; 012-000-000,2023-05-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2023-04-17,[],IL,103rd +Referred to Assignments,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-02-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-11,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-04-26,[],IL,103rd +Third Reading - Short Debate - Passed 070-037-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0153,2023-06-30,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2023",2023-05-16,['reading-3'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-03,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-24,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 2 Postponed - Executive,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Ann M. Williams,2023-03-21,['amendment-introduction'],IL,103rd +Public Act . . . . . . . . . 103-0135,2023-06-30,['became-law'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2023-02-22,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Assigned to Insurance,2023-04-12,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-11-06,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-15,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-19,[],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-16,[],IL,103rd +Chief Senate Sponsor Sen. Seth Lewis,2023-03-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Steve Stadelman,2023-04-20,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2023-04-13,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-11,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-08,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Win Stoller,2023-03-27,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-17,[],IL,103rd +Removed Co-Sponsor Rep. Theresa Mah,2023-06-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-05,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-09,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Placed on Calendar - Consideration Postponed,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-04-20,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-25,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading November 8, 2023",2023-11-07,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-03,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-25,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-05-01,[],IL,103rd +Referred to Rules Committee,2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2023-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Tony M. McCombie,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-05-18,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-28,['amendment-failure'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-25,[],IL,103rd +Public Act . . . . . . . . . 103-0075,2023-06-09,['became-law'],IL,103rd +Arrived in House,2023-03-24,['introduction'],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2023-04-20,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +House Floor Amendment No. 1 Land Conveyance Appraisal Note Requested as Amended by Rep. Rita Mayfield,2024-04-18,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-03-06,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-05-09,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-05-20,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-02,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-05-13,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-03-06,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2023-11-07,['amendment-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anna Moeller,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-04-16,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Charles Meier,2023-04-04,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-03,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Yolonda Morris,2024-03-12,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 016-008-000,2023-04-18,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-16,['reading-3'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 012-000-000,2023-05-19,['committee-passage-favorable'],IL,103rd +First Reading,2023-05-25,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Ugaste,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-05-01,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-21,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-16,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Koehler,2023-05-11,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-02-22,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Adam M. Niemerg,2023-05-16,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-05-14,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-04-18,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-04-02,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-05-05,[],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-11,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-18,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Porfirio,2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-02,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Barbara Hernandez,2024-04-30,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Transportation: Vehicles & Safety,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-12,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Julie A. Morrison,2024-04-30,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-02,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-04-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2024-05-15,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 008-004-000,2024-05-08,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-21,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Removed Co-Sponsor Rep. Kelly M. Cassidy,2023-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-15,[],IL,103rd +Resolution Adopted; 039-011-001,2023-05-25,['passage'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Ryan Spain,2024-05-25,[],IL,103rd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2024-04-15,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-21,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Chief House Sponsor Rep. Theresa Mah,2024-04-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Charles Meier,2024-05-01,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Ram Villivalam,2024-05-01,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-11-07,[],IL,103rd +Passed Both Houses,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-23,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-05-01,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +Chief Senate Sponsor Sen. Willie Preston,2024-03-22,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Second Reading,2024-03-22,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-07,[],IL,103rd +Third Reading - Short Debate - Passed 085-016-002,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Education,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2023-04-24,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2023-04-25,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Assigned to Police & Fire Committee,2023-04-11,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-19,['amendment-failure'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 17, 2023",2023-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-07,['amendment-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nabeela Syed,2023-05-12,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-03-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-23,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Dan Swanson,2023-04-19,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-02,[],IL,103rd +Third Reading - Standard Debate - Passed 077-033-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2023-04-06,[],IL,103rd +House Committee Amendment No. 1 Adopted in Energy & Environment Committee; by Voice Vote,2023-05-16,['amendment-passage'],IL,103rd +Postponed - Judiciary,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-19,[],IL,103rd +Chief House Sponsor Rep. Terra Costa Howard,2024-04-12,[],IL,103rd +Second Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +Assigned to Human Services Committee,2023-04-18,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-05,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-04-30,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-04-08,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +Do Pass as Amended / Short Debate State Government Administration Committee; 008-000-000,2024-04-11,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-13,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2024-04-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-16,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading March 9, 2023",2023-03-08,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 107-000-001,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-04-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-04-16,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-23,[],IL,103rd +Passed Both Houses,2024-05-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-20,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2024-04-16,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-15,[],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Javier L. Cervantes,2024-05-01,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Javier L. Cervantes,2024-04-30,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0939,2024-08-09,['became-law'],IL,103rd +Motion Filed to Suspend Rule 21 Judiciary - Civil Committee; Rep. Kam Buckner,2023-05-16,[],IL,103rd +Recalled to Second Reading,2024-05-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-08-27,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-09,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Senate Floor Amendment No. 4 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-04-27,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-05-09,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-05-01,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Correctional Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 4 Recommend Do Adopt Agriculture; 012-000-000,2023-03-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2024-04-24,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-04-09,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +House Committee Amendment No. 1 Adopted in Counties & Townships Committee; by Voice Vote,2024-05-23,['amendment-passage'],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 016-000-000",2024-03-05,['committee-passage'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2024-05-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Wayne A Rosenthal,2024-04-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Ann M. Williams,2024-05-24,[],IL,103rd +Second Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-03-29,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Hoan Huynh,2023-04-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-07,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Burke,2023-05-09,[],IL,103rd +Do Pass as Amended / Short Debate Police & Fire Committee; 013-000-000,2023-04-27,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. John M. Cabello,2023-05-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Robyn Gabel,2023-05-25,['amendment-introduction'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Maura Hirschauer,2023-04-17,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-16,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-19,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-05-16,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-11-09,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Third Reading - Short Debate - Passed 092-011-000,2024-05-25,"['passage', 'reading-3']",IL,103rd +"Chief House Sponsor Rep. Maurice A. West, II",2023-03-31,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0918,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2023-04-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-1044,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 3 Adopted,2024-05-22,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-0511,2023-08-04,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-04-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2023-05-11,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-04-25,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Chief House Sponsor Rep. Sharon Chung,2023-03-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Executive,2023-11-07,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin John Olickal,2023-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Sara Feigenholtz,2024-05-15,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-04-30,[],IL,103rd +Public Act . . . . . . . . . 103-0913,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-04-25,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-04-18,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2024-05-15,['reading-1'],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-02,[],IL,103rd +Arrived in House,2024-05-23,['introduction'],IL,103rd +Chief House Sponsor Rep. Gregg Johnson,2024-04-12,[],IL,103rd +Home Rule Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2024-05-17,[],IL,103rd +Judicial Note Requested - Withdrawn by Rep. Norine K. Hammond,2024-04-19,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-05-05,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Robyn Gabel,2024-05-20,[],IL,103rd +Assigned to Appropriations- Education,2023-04-12,['referral-committee'],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-12,[],IL,103rd +Assigned to Executive,2023-05-16,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-03-29,[],IL,103rd +Motion Prevailed 066-038-000,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-23,['amendment-failure'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-19,[],IL,103rd +Do Pass Transportation; 011-000-000,2023-05-16,['committee-passage'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Karina Villa,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-04-25,[],IL,103rd +Public Act . . . . . . . . . 103-0158,2023-06-30,['became-law'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Cristina Castro,2023-05-19,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-04,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-23,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +"Alternate Chief Sponsor Removed Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-04-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-05-10,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-10-25,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Chapin Rose,2023-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Early Childhood Education,2023-05-03,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-11-06,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-04-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2023-05-08,[],IL,103rd +Public Act . . . . . . . . . 103-0166,2023-06-30,['became-law'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-04-18,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Angelica Guerrero-Cuellar,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-04-25,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Executive; 009-004-000,2023-05-10,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2023-05-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 008-004-000,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0189,2023-06-30,['became-law'],IL,103rd +Do Pass as Amended Executive; 009-004-000,2023-05-10,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-04-20,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Police & Fire Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-10-26,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-03-07,[],IL,103rd +"Senate Floor Amendment No. 2 Motion Filed Concur Rep. Elizabeth ""Lisa"" Hernandez",2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-14,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Senate Special Committee on Pensions,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-10-31,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-03-24,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-03-29,[],IL,103rd +Recalled to Second Reading,2023-05-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Neil Anderson,2023-05-03,['amendment-introduction'],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Recalled to Second Reading,2023-05-10,['reading-2'],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2023-04-18,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-02-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Recalled to Second Reading,2023-05-25,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Senate Committee Amendment No. 2 Adopted; Executive,2023-05-10,['amendment-passage'],IL,103rd +Do Pass Education; 012-000-000,2023-05-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Energy & Environment Committee; 017-000-000,2023-05-25,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-24,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-23,[],IL,103rd +Public Act . . . . . . . . . 103-0286,2023-07-28,['became-law'],IL,103rd +Assigned to Insurance,2023-04-12,['referral-committee'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-05-01,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Villanueva,2023-05-19,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-04,[],IL,103rd +Sent to the Governor,2023-12-01,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-04-11,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Omar Aquino,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2024-05-17,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-05-10,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Do Pass Licensed Activities; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-04-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-03-07,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-16,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2023-05-10,['amendment-introduction'],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-24,[],IL,103rd +Do Pass Licensed Activities; 007-000-000,2024-05-08,['committee-passage'],IL,103rd +Third Reading - Passed; 051-006-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-05-06,[],IL,103rd +"Effective Date January 1, 2025; ; Some Provisions.",2024-08-02,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-06,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-03-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2024-05-24,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-26,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Robyn Gabel,2024-04-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-03-07,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +First Reading,2024-03-07,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-11,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-03-07,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-29,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Lakesia Collins,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-05-18,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-15,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-10,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-05-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-03-11,[],IL,103rd +Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-05-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-17,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Postponed - Education,2023-04-19,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-11,[],IL,103rd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Third Reading - Short Debate - Passed 086-023-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 015-007-000,2024-05-08,['committee-passage-favorable'],IL,103rd +Motion Filed to Suspend Rule 21 Human Services Committee; Rep. Robyn Gabel,2024-05-20,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2024-05-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2024-05-01,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2024-05-14,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Sharon Chung,2024-05-10,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-04-12,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Bill Cunningham,2024-05-23,['filing'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-05-13,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 014-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2024-05-14,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Insurance Committee; 012-000-000,2024-04-10,['committee-passage-favorable'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 3 Postponed - Executive,2024-04-10,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2024-05-23,['filing'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Judiciary; 005-003-000,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Fowler,2024-05-15,['amendment-passage'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +Public Act . . . . . . . . . 103-0994,2024-08-09,['became-law'],IL,103rd +Assigned to Insurance,2024-04-30,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-04-12,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 21, 2024",2024-05-21,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Arrived in House,2024-05-23,['introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 009-005-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 110-000-000,2024-05-28,[],IL,103rd +Referred to Assignments,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-03,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-07,[],IL,103rd +Public Act . . . . . . . . . 103-1035,2024-08-09,['became-law'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-02-20,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-08,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Alternate Chief Sponsor Changed to Sen. Suzy Glowiak Hilton,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-11-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-20,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2024-05-14,[],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2024-05-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-27,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-05-25,[],IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-15,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-16,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 5 Referred to Assignments,2024-05-20,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2024-05-16,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-15,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-15,[],IL,103rd +House Floor Amendment No. 4 Adopted,2024-04-19,['amendment-passage'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Kimberly Du Buclet,2024-03-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Agriculture,2024-05-21,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 015-001-001,2024-04-04,['committee-passage'],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-04,['committee-passage'],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2024-05-17,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 008-004-000,2024-05-24,['committee-passage-favorable'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-20,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2023-04-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-05-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Swanson,2023-04-26,[],IL,103rd +Senate Committee Amendment No. 3 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-03-31,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Recalled to Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-03-24,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 17, 2023",2023-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-04-28,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-23,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Housing Affordability Impact Note Filed,2023-03-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-16,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Be Adopted State Government; 009-000-000,2023-05-18,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-04-26,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Bob Morgan,2023-05-09,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Arrive in Senate,2023-04-26,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-25,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-10-25,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-04-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sue Rezin,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Local Government,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-15,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-21,[],IL,103rd +Resolution Adopted,2024-05-29,['passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2024-04-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-16,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Gillespie,2023-05-25,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-04-25,[],IL,103rd +Assigned to Executive,2023-03-28,['referral-committee'],IL,103rd +Sent to the Governor,2024-06-07,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Third Reading - Short Debate - Passed 060-040-001,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-04-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-16,['reading-3'],IL,103rd +Third Reading - Passed; 053-003-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Erica Harriss,2024-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-02-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Racial Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2023-04-28,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Do Pass as Amended Veterans Affairs; 008-000-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-15,[],IL,103rd +Public Act . . . . . . . . . 103-0012,2023-06-09,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0017,2023-06-09,['became-law'],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-02,[],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-13,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-07,[],IL,103rd +Do Pass as Amended State Government; 008-000-000,2024-05-09,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Do Pass as Amended Executive; 009-004-000,2023-05-10,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2023-03-24,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2023-03-30,[],IL,103rd +Do Pass / Short Debate Executive Committee; 008-004-000,2024-05-28,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-04-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Referred to Assignments,2023-04-25,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Third Reading - Passed; 038-017-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Assigned to Judiciary - Civil Committee,2023-11-01,['referral-committee'],IL,103rd +Arrived in House,2023-05-25,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-03-30,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-05-22,['amendment-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Public Act . . . . . . . . . 103-0200,2023-06-30,['became-law'],IL,103rd +3/5 Vote Required,2023-11-08,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-11-08,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2023-04-18,[],IL,103rd +Chief Senate Sponsor Sen. Mattie Hunter,2023-03-27,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-05,[],IL,103rd +Public Act . . . . . . . . . 103-0071,2023-06-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-04-02,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2023-05-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-03-23,[],IL,103rd +Assigned to Energy and Public Utilities,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-03-23,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-28,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-08,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-11,[],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2023-05-02,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 013-000-000,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-24,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-05-22,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-24,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-18,[],IL,103rd +Removed Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-09,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-04-26,[],IL,103rd +Do Pass Local Government; 009-000-000,2023-05-04,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-03-28,[],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Curtis J. Tarver, II",2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-23,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-05-26,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Alternate Chief Sponsor Removed Rep. Tony M. McCombie,2023-05-08,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-12,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-05-18,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-29,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-21,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Paul Jacobs,2023-04-03,[],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Kam Buckner,2024-05-28,[],IL,103rd +3/5 Vote Required,2023-11-08,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2023-04-27,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-21,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-08,['amendment-passage'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Public Act . . . . . . . . . 103-0314,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-19,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2023-05-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2023-03-22,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As April 19, 2024",2024-04-05,[],IL,103rd +Balanced Budget Note Filed,2023-03-14,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2024-04-30,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Hastings,2024-05-26,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Third Reading - Passed; 038-018-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-10-23,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-29,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-05-14,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-16,['reading-3'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-18,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. William ""Will"" Davis",2024-04-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2024-02-23,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-17,[],IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2024-05-21,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mattie Hunter,2023-05-10,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 012-000-001,2024-05-23,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-05-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Margaret Croke,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Do Pass Insurance; 010-000-000,2024-05-08,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2023-05-15,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Waive Posting Notice,2023-05-17,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0671,2024-07-19,['became-law'],IL,103rd +First Reading,2023-05-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 075-040-000,2023-05-16,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-29,[],IL,103rd +Removed Co-Sponsor Rep. Abdelnasser Rashid,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-02-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-06-03,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-05-08,['amendment-introduction'],IL,103rd +House Committee Amendment No. 2 Adopted in Executive Committee; by Voice Vote,2023-05-17,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-05-23,[],IL,103rd +Arrived in House,2024-05-22,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0698,2024-07-19,['became-law'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 099-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2024-05-20,[],IL,103rd +Public Act . . . . . . . . . 103-0693,2024-07-19,['became-law'],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Diane Blair-Sherlock,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 012-000-000,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-10,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Julie A. Morrison,2024-05-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-12,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-10-23,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-14,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Maura Hirschauer,2024-05-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-18,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-15,[],IL,103rd +Third Reading - Passed; 051-004-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Do Pass Education; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-05-17,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-21,[],IL,103rd +Third Reading - Passed; 034-019-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Sent to the Governor,2024-06-12,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 State Debt Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-15,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-23,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Postponed - State Government,2023-04-27,[],IL,103rd +Chief Co-Sponsor Changed to Rep. La Shawn K. Ford,2023-05-09,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Licensed Activities,2023-05-03,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2023-05-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-25,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-22,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-16,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-25,[],IL,103rd +Waive Posting Notice,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-05-18,['amendment-introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-05-17,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-16,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Executive,2023-04-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2024-05-02,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-10-25,[],IL,103rd +Public Act . . . . . . . . . 103-0273,2023-07-28,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Public Utilities Committee,2023-05-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2024-04-15,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-16,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-05-25,[],IL,103rd +Third Reading - Passed; 038-018-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-05-09,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-04,[],IL,103rd +Correctional Note Filed,2023-03-09,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Appropriations-Health & Human Services Committee,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. David Koehler,2023-05-10,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Paul Faraci,2023-04-26,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-23,[],IL,103rd +Public Act . . . . . . . . . 103-0263,2023-06-30,['became-law'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2024-04-15,[],IL,103rd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-11-08,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-15,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-04-12,[],IL,103rd +"Senate Floor Amendment No. 4 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments:",2024-05-20,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-05-13,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-17,[],IL,103rd +Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Assigned to Labor,2024-05-20,['referral-committee'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Referred to Rules Committee,2024-04-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary Gill,2024-05-03,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Sara Feigenholtz,2024-05-22,['filing'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-04-26,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sharon Chung,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Judiciary - Civil Committee,2024-05-28,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 009-000-000,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-23,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Hoan Huynh,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-05-20,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-14,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Housing,2024-05-13,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Removed Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0944,2024-08-09,['became-law'],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-04-25,[],IL,103rd +Assigned to Appropriations-Health & Human Services Committee,2023-04-18,['referral-committee'],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mattie Hunter,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-14,[],IL,103rd +Public Act . . . . . . . . . 103-0932,2024-08-09,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Neil Anderson,2024-05-07,['amendment-introduction'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-22,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2024-05-15,[],IL,103rd +House Concurs,2024-05-28,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-05-20,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2024-05-24,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-15,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Daniel Didech,2024-05-16,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2024-05-10,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Higher Education Committee,2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Financial Institutions and Licensing Committee,2024-05-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 103-009-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-10,['amendment-passage'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-05-20,[],IL,103rd +Added as Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-24,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-04,['amendment-failure'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2023-05-16,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 041-018-000,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-04-17,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-19,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Bob Morgan,2024-04-15,[],IL,103rd +Alternate Chief Sponsor Removed Rep. Katie Stuart,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-16,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-23,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Ugaste,2024-05-23,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Emanuel ""Chris"" Welch",2024-05-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-02-20,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Curtis J. Tarver, II",2024-05-14,['amendment-introduction'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-15,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 068-038-000,2024-05-20,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2023-05-10,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-02,['amendment-failure'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2024-03-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-05-02,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Ugaste,2024-05-20,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-05-02,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 7 Filed with Secretary by Sen. Rachel Ventura,2023-05-03,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 012-000-000,2024-05-14,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-05-17,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-03-24,[],IL,103rd +Assigned to Veterans Affairs,2024-04-30,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-21,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Steve Stadelman,2023-05-24,['amendment-introduction'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-05-22,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Transportation: Vehicles & Safety,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-11,['amendment-passage'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2023-11-08,[],IL,103rd +Arrived in House,2023-05-10,['introduction'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Paul Jacobs,2023-05-09,[],IL,103rd +Chief Co-Sponsor Changed to Rep. William E Hauter,2023-03-08,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2023-05-19,['amendment-introduction'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-04-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-11,[],IL,103rd +First Reading,2023-05-02,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-03-07,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Sue Scherer,2023-05-25,[],IL,103rd +Referred to Assignments,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 073-040-000,2023-11-08,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-28,['reading-2'],IL,103rd +Motion Filed to Suspend Rule 21 Judiciary - Criminal Committee; Rep. Natalie A. Manley,2023-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Third Reading - Passed; 039-013-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Assigned to Higher Education Committee,2023-04-11,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-04-05,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2023-03-21,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-05-03,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-08,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Assigned to State Government,2023-04-25,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-04-12,[],IL,103rd +Public Act . . . . . . . . . 103-0330,2023-07-28,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-08,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 5, 2023",2023-05-04,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-11,['reading-2'],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2023-04-20,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Camille Y. Lilly,2024-04-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-04-18,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 070-038-000,2024-05-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-04-04,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-22,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 014-000-000,2023-11-07,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2024-05-08,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-05-18,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Education,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-22,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-25,[],IL,103rd +Do Pass Local Government; 007-003-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-10-25,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 023-000-000,2023-05-18,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-04-27,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-01,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-14,['amendment-passage'],IL,103rd +Assigned to Transportation,2024-04-24,['referral-committee'],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-25,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-15,[],IL,103rd +Do Pass Education; 012-000-000,2024-05-07,['committee-passage'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +House Floor Amendment No. 3 Tabled,2024-04-19,['amendment-failure'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-02-08,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2024-04-15,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-04,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-14,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-23,[],IL,103rd +Adopted Both Houses,2023-05-25,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-11-07,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2024-04-18,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-05-01,['committee-passage'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 010-000-000,2024-05-09,['committee-passage'],IL,103rd +Sent to the Governor,2024-06-07,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 101-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-08,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2024-05-16,[],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-04-12,[],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-22,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-05-09,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-16,[],IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0643,2024-07-01,['became-law'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-02-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Wayne A Rosenthal,2024-05-08,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-19,['reading-1'],IL,103rd +"Effective Date June 1, 2025",2024-08-02,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-05-02,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-20,['reading-3'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-12,['referral-committee'],IL,103rd +"Effective Date January 1, 2024",2023-08-11,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0160,2023-06-30,['became-law'],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-05,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Education,2023-04-18,['amendment-passage'],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Marcus C. Evans, Jr.",2023-05-09,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-04-19,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-13,[],IL,103rd +Removed Co-Sponsor Rep. Fred Crespo,2024-04-03,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +Second Reading,2023-05-18,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-09,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Ram Villivalam,2023-05-11,['amendment-introduction'],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-10,[],IL,103rd +Public Act . . . . . . . . . 103-0428,2023-08-04,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-04-25,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2023-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-21,[],IL,103rd +Adopted Both Houses,2023-05-31,[],IL,103rd +Do Pass Education; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-11-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2024-05-02,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2023-05-03,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 112-000-000,2023-05-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-04-25,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2023-05-10,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Sue Scherer,2023-05-17,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Assigned to Executive,2023-05-04,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Higher Education Committee,2023-05-03,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 009-000-000,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2023-05-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-06-07,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 068-034-000,2023-05-24,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Public Act . . . . . . . . . 103-0023,2023-06-09,['became-law'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-11,[],IL,103rd +Third Reading - Passed; 036-018-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Postponed - Executive,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Theresa Mah,2023-04-24,['amendment-introduction'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0141,2023-06-30,['became-law'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-23,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-11-07,[],IL,103rd +Public Act . . . . . . . . . 103-0301,2023-07-28,['became-law'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-04-06,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-22,[],IL,103rd +"Effective Date July 1, 2023",2023-06-09,[],IL,103rd +Remove Chief Co-Sponsor Rep. Jehan Gordon-Booth,2023-02-22,[],IL,103rd +Do Pass Insurance; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-02-08,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2023-04-18,[],IL,103rd +Sponsor Removed Sen. Doris Turner,2023-05-17,[],IL,103rd +First Reading,2023-04-27,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-11-06,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Assigned to Public Health,2023-04-25,['referral-committee'],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-16,['reading-2'],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-11,[],IL,103rd +Recalled to Second Reading,2023-05-10,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-04-20,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 011-000-000,2023-05-18,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 114-000-000,2023-05-17,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2023-05-10,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Referred to Rules Committee,2023-03-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 012-000-000,2023-05-17,[],IL,103rd +Do Pass as Amended Judiciary; 007-000-000,2024-03-13,['committee-passage'],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-04-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-03-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-05-22,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jackie Haas,2023-04-26,[],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Robyn Gabel,2024-05-20,[],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-04-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2023-05-08,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2023-05-04,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-04-19,[],IL,103rd +Third Reading - Passed; 051-008-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Brandun Schweizer,2024-04-19,[],IL,103rd +Sponsor Removed Sen. Paul Faraci,2024-02-06,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-15,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-24,[],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2023-04-27,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-05-24,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Simmons,2024-05-26,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Villivalam,2024-05-16,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Bradley Fritts,2023-05-03,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-17,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-26,['amendment-failure'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-14,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michael J. Kelly,2023-05-19,[],IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-21,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dale Fowler,2024-05-02,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kam Buckner,2024-05-01,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-05-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-03-30,['amendment-failure'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Senate Floor Amendment No. 3 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-04-20,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-03-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-01,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-08,['amendment-failure'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-22,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-05-20,['amendment-introduction'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-04-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-04-20,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-08-28,[],IL,103rd +Senate Committee Amendment No. 3 Assignments Refers to Education,2024-05-14,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jeff Keicher,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2024-05-08,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +First Reading,2024-05-13,['reading-1'],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-12,['reading-2'],IL,103rd +Sponsor Removed Sen. Jil Tracy,2023-05-16,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-04-16,[],IL,103rd +Fiscal Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 24, 2023",2023-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Suzanne M. Ness,2023-04-19,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 026-000-000,2024-04-30,['committee-passage'],IL,103rd +"Added Alternate Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-19,[],IL,103rd +Arrived in House,2024-05-17,['introduction'],IL,103rd +Senate Floor Amendment No. 6 Recommend Do Adopt Labor; 011-003-000,2024-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0262,2023-06-30,['became-law'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-09,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Senate Special Committee on Pensions; 011-000-000,2023-05-18,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-22,[],IL,103rd +Assigned to Licensed Activities,2024-04-30,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-10-27,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Removed Co-Sponsor Rep. Dan Ugaste,2024-04-15,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Chief House Sponsor Rep. Gregg Johnson,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-16,[],IL,103rd +"Effective Date August 4, 2023; Some Provisions",2023-08-04,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Dan Ugaste,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-05-23,[],IL,103rd +Chief House Sponsor Rep. Lakesia Collins,2023-03-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-05-06,[],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 019-000-000,2023-04-27,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-16,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2023-05-02,['amendment-introduction'],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Fiscal Note Filed,2024-03-26,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Assigned to Human Services Committee,2023-04-18,['referral-committee'],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Chief Senate Sponsor Sen. Paul Faraci,2023-03-29,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michelle Mussman,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-05-02,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-04-16,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Carol Ammons,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-04-17,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Transportation: Vehicles & Safety; 008-000-000,2023-05-03,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-12,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-11-07,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-04,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-05-05,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Personnel & Pensions Committee,2023-05-24,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Second Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-12,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-03-06,[],IL,103rd +"Remove Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-28,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 009-000-000,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-30,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-05-20,[],IL,103rd +First Reading,2024-05-14,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-03-22,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-29,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-001,2023-05-16,"['passage', 'reading-3']",IL,103rd +"Added Alternate Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-05-25,[],IL,103rd +House Floor Amendment No. 1 Pension Note Requested as Amended by Rep. Rita Mayfield,2024-04-18,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 012-000-000,2023-11-07,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-28,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Executive Committee; 012-000-000,2023-05-19,['committee-passage-favorable'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-05-01,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-02-22,[],IL,103rd +Removed Co-Sponsor Rep. Lilian Jiménez,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0211,2023-06-30,['became-law'],IL,103rd +Referred to Rules Committee,2023-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-04-12,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-05-17,[],IL,103rd +Third Reading - Passed; 033-020-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2024-04-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-25,[],IL,103rd +Passed Both Houses,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Assigned to Energy & Environment Committee,2024-05-20,['referral-committee'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-04-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-10-26,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2023-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Holmes,2023-05-17,['amendment-passage'],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-04-12,['referral-committee'],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +Assigned to Judiciary - Civil Committee,2023-04-11,['referral-committee'],IL,103rd +Fiscal Note Request is Inapplicable,2023-05-12,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Angelica Guerrero-Cuellar,2023-05-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-05-17,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-18,[],IL,103rd +House Floor Amendment No. 2 Balanced Budget Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Ann Gillespie,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-04-25,[],IL,103rd +Second Reading - Short Debate,2023-03-24,['reading-2'],IL,103rd +Assigned to Public Health,2023-04-12,['referral-committee'],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 006-003-000,2023-04-27,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Glowiak Hilton,2023-05-25,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 4, 2023",2023-05-03,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-23,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Recalled to Second Reading,2023-05-19,['reading-2'],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Kimberly A. Lightford,2023-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Arrive in Senate,2023-05-15,['introduction'],IL,103rd +House Committee Amendment No. 2 Tabled,2024-03-06,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2023-05-19,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-15,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Sara Feigenholtz,2023-03-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-11-06,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-02-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Early Childhood Education; 006-000-000,2023-05-03,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0157,2023-06-30,['became-law'],IL,103rd +Chief Senate Sponsor Sen. Celina Villanueva,2023-03-29,[],IL,103rd +Assigned to Labor,2023-04-12,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-04-21,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-04-20,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Education,2023-04-25,[],IL,103rd +Governor Approved,2023-12-08,['executive-signature'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-12,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0461,2023-08-04,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-02,[],IL,103rd +Public Act . . . . . . . . . 103-0052,2023-06-09,['became-law'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Harriss,2023-05-10,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2023-03-23,[],IL,103rd +Do Pass as Amended Executive; 011-001-000,2023-05-10,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-10-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-23,[],IL,103rd +Third Reading - Short Debate - Passed 072-037-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 072-039-000,2023-05-18,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-11-07,['amendment-introduction'],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Ryan Spain,2023-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-04-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Do Pass Insurance; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Added Alternate Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-20,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 068-038-000,2024-05-20,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Second Reading,2023-05-16,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 House Concurs 101-000-000,2023-05-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Postponed - Executive,2023-05-18,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-05-03,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jonathan Carroll,2023-05-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Simmons,2024-05-17,['amendment-passage'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-04-11,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 16, 2023",2023-05-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2024-05-23,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-04-16,[],IL,103rd +Public Act . . . . . . . . . 103-0981,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 007-002-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Suzy Glowiak Hilton,2023-05-17,['filing'],IL,103rd +Do Pass as Amended Environment and Conservation; 008-000-000,2024-05-09,['committee-passage'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-02,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-11-09,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2023-05-16,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-02,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-16,[],IL,103rd +Third Reading - Short Debate - Passed 069-040-001,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2024-04-17,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0230,2023-06-30,['became-law'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-07,[],IL,103rd +Third Reading - Short Debate - Passed 078-035-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Home Rule Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Do Pass Local Government; 009-000-000,2024-05-15,['committee-passage'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-05-13,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. John M. Cabello,2023-05-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary Beth Canty,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-04-26,[],IL,103rd +First Reading,2024-05-15,['reading-1'],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2023-04-25,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-19,['amendment-failure'],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2024-05-13,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 008-000-000,2023-04-27,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-24,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-17,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Robyn Gabel,2024-05-01,['amendment-introduction'],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-04,['reading-3'],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-05-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Assigned to Executive Committee,2023-04-18,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2024-05-16,['amendment-introduction'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Financial Institutions,2024-04-09,[],IL,103rd +Third Reading - Short Debate - Passed 075-037-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sharon Chung,2023-04-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-04-13,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Nabeela Syed,2023-04-21,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-30,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-16,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-29,[],IL,103rd +Do Pass as Amended / Short Debate Energy & Environment Committee; 021-000-000,2023-05-16,['committee-passage'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Caulkins,2023-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 9, 2024",2024-03-22,['reading-3'],IL,103rd +Do Pass as Amended Health and Human Services; 014-000-000,2024-05-08,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2023-05-12,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0989,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 010-003-000,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-08,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0926,2024-08-09,['became-law'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-15,[],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. Norine K. Hammond,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-05-17,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Javier L. Cervantes,2023-11-07,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2023-05-17,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Charles Meier,2024-05-02,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-27,['amendment-failure'],IL,103rd +Chief Sponsor Changed to Sen. John F. Curran,2024-05-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Brandun Schweizer,2024-05-23,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0993,2024-08-09,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 105-001-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2024-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-05-09,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Kelly M. Cassidy,2023-03-21,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tracy Katz Muhl,2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2024-05-07,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-04,['amendment-passage'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Labor & Commerce Committee; 018-009-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Public Act . . . . . . . . . 103-0224,2023-06-30,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-24,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2024-05-23,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-09,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-18,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-04-18,['referral-committee'],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Do Pass as Amended / Short Debate Counties & Townships Committee; 006-002-000,2024-05-23,['committee-passage'],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Transportation: Regulations, Roads & Bridges",2023-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-04-27,[],IL,103rd +Public Act . . . . . . . . . 103-1017,2024-08-09,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-01,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-04-26,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2024-05-01,['amendment-introduction'],IL,103rd +Motion to Suspend Rule 21 - Prevailed 075-040-000,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jackie Haas,2024-04-16,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert Peters,2024-05-23,['filing'],IL,103rd +Public Act . . . . . . . . . 103-0216,2023-06-30,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2023-04-26,[],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2023-04-20,['committee-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2024-04-30,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-11,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-04-06,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2024-04-18,[],IL,103rd +Passed Both Houses,2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Housing Affordability Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Diane Blair-Sherlock,2023-04-03,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2024-05-01,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-16,['amendment-passage'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Recalled to Second Reading,2023-03-30,['reading-2'],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Assigned to Judiciary,2024-05-07,['referral-committee'],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Justin Slaughter,2023-05-18,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Assigned to Personnel & Pensions Committee,2023-04-18,['referral-committee'],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-10,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-05-09,[],IL,103rd +Referred to Rules Committee,2024-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-24,['reading-3'],IL,103rd +Removed Co-Sponsor Rep. Dagmara Avelar,2024-03-07,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nabeela Syed,2024-04-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-04-16,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Resolution Adopted,2023-05-24,['passage'],IL,103rd +Assigned to State Government,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-05-15,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-03-07,[],IL,103rd +Second Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-05-02,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-05-21,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Do Pass Veterans Affairs; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Held in Licensed Activities,2024-05-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-05-02,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-08-05,[],IL,103rd +Public Act . . . . . . . . . 103-0618,2024-07-01,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2024-05-15,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-02,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0777,2024-08-02,['became-law'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-05-22,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-05-15,[],IL,103rd +House Floor Amendment No. 4 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-05-22,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-04,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2024-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2024-03-07,[],IL,103rd +Public Act . . . . . . . . . 103-0705,2024-07-19,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0398,2023-07-28,['became-law'],IL,103rd +Arrive in Senate,2024-05-22,['introduction'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-05-09,[],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Robyn Gabel,2024-04-10,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Remove Chief Co-Sponsor Rep. Harry Benton,2024-03-07,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0767,2024-08-02,['became-law'],IL,103rd +Second Reading,2024-04-11,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-14,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 015-000-000,2024-04-30,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Linda Holmes,2024-04-18,[],IL,103rd +Public Act . . . . . . . . . 103-0726,2024-08-05,['became-law'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2024-05-16,[],IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-05-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-23,[],IL,103rd +Second Reading,2023-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-04-25,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +"Chief Co-Sponsor Changed to Rep. Elizabeth ""Lisa"" Hernandez",2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 072-039-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0761,2024-08-02,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0626,2024-07-01,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-09,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-03-07,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-04-18,[],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Insurance,2023-04-18,['amendment-passage'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-25,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Don Harmon,2023-05-18,['amendment-introduction'],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2023-10-31,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-02-23,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 009-000-000,2023-04-27,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2023-05-08,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2023-05-11,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-22,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-10-26,[],IL,103rd +House Floor Amendment No. 3 Balanced Budget Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Placed on Calendar - Consideration Postponed,2023-04-18,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-11-07,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-04-18,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 009-000-000,2023-05-25,['committee-passage-favorable'],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2023-05-12,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Prescription Drug Affordability & Accessibility Committee,2023-05-02,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Senate Special Committee on Pensions,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-05-16,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-15,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-31,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-11-06,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-03-29,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; 018-010-000,2023-03-08,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Celina Villanueva,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-02-28,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Margaret Croke,2024-03-07,['amendment-introduction'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-11,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-04-20,[],IL,103rd +Public Act . . . . . . . . . 103-0036,2023-06-09,['became-law'],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2023-03-27,[],IL,103rd +Pension Note Request is Inapplicable,2023-05-12,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mattie Hunter,2024-03-14,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2023-04-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-04-17,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Rachel Ventura,2023-03-27,[],IL,103rd +House Committee Amendment No. 2 Adopted in Executive Committee; by Voice Vote,2024-05-21,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-20,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 013-000-000,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-24,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-19,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2023",2023-05-16,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-05-15,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-23,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2023-04-28,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Mental Health & Addiction Committee,2023-05-02,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-05-03,[],IL,103rd +"Effective Date December 8, 2023",2023-12-08,[],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 013-000-000,2023-04-19,['committee-passage'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Murphy,2023-05-19,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-04-20,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-03-15,[],IL,103rd +Postponed - Education,2023-04-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Kimberly A. Lightford,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-23,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-04-27,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-04-29,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Ann M. Williams,2024-04-16,['amendment-introduction'],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 012-001-000,2023-04-26,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-03-22,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-23,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-15,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michelle Mussman,2023-05-08,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Christopher Belt,2023-05-16,['filing'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicole La Ha,2024-05-23,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-03,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-04-18,[],IL,103rd +Senate Floor Amendment No. 4 Adopted; Villivalam,2023-03-30,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2023-05-16,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-26,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-17,[],IL,103rd +Chief House Sponsor Rep. Katie Stuart,2023-03-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-05-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2023-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2024-05-02,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-03-21,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-05-17,[],IL,103rd +Do Pass as Amended Public Health; 008-000-000,2024-05-08,['committee-passage'],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Christopher Belt,2024-04-09,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2024-05-02,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-11,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-16,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Assigned to Prescription Drug Affordability & Accessibility Committee,2023-04-18,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nabeela Syed,2023-04-26,[],IL,103rd +Pension Note Requested - Withdrawn by Rep. Norine K. Hammond,2024-04-19,[],IL,103rd +Referred to Assignments,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-16,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-03-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-09,['reading-3'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Adriane Johnson,2023-05-05,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +First Reading,2024-05-15,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 5 Referred to Assignments,2023-11-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +House Committee Amendment No. 3 Tabled,2023-04-27,['amendment-failure'],IL,103rd +Third Reading - Short Debate - Passed 068-035-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-04-25,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-16,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-11,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2024-04-30,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0255,2023-06-30,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 108-000-001,2023-05-11,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 012-000-000,2023-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jawaharial Williams,2023-05-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin Schmidt,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura Ellman,2024-05-23,['filing'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-04,['reading-3'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-04-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2024-05-23,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Arrived in House,2023-03-30,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 111-001-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 115-000-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Adopted; Edly-Allen,2023-03-30,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-04-25,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-04-06,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 003-002-000,2023-05-25,['committee-passage-favorable'],IL,103rd +Housing Affordability Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0094,2023-06-09,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-04-30,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-12,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-03-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-09,['amendment-passage'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Margaret Croke,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-05-17,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2023-05-17,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-01,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-18,['reading-3'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Judicial Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-05-03,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Senate Concurs 045-011-000,2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-05-08,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-25,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-04-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2024-05-21,[],IL,103rd +Public Act . . . . . . . . . 103-0227,2023-06-30,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2024-05-13,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Hoan Huynh,2023-05-08,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Insurance Committee,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-27,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 21, 2023",2023-05-11,[],IL,103rd +Assigned to Appropriations,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Transportation,2023-05-04,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Human Services Committee; 009-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-22,[],IL,103rd +Do Pass Public Health; 005-001-002,2023-04-19,['committee-passage'],IL,103rd +Do Pass / Short Debate Executive Committee; 008-004-000,2024-05-28,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-17,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2023-04-20,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 103-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Assigned to Labor,2023-04-12,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0475,2023-08-04,['became-law'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2024-03-07,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Loughran Cappel,2023-05-11,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-11,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Referred to Assignments,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-25,[],IL,103rd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2023-04-26,['amendment-passage'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-22,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-31,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-04-18,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-19,[],IL,103rd +Referred to Rules Committee,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-03-30,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 4, 2023",2023-05-03,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-28,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-03-30,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-05-26,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sharon Chung,2023-04-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2023-03-27,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-04-03,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Third Reading - Passed; 040-013-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0196,2023-06-30,['became-law'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2023-11-08,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-23,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-11,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-05,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-25,[],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +House Committee Amendment No. 2 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2023-04-11,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-12,[],IL,103rd +Chief Senate Sponsor Sen. Michael E. Hastings,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-15,[],IL,103rd +Third Reading - Short Debate - Passed 102-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Third Reading - Short Debate - Passed 113-001-000,2023-11-08,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2024-05-22,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Bradley Fritts,2024-04-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-22,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2024-05-16,[],IL,103rd +Assigned to Environment and Conservation,2023-04-18,['referral-committee'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-03-18,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-04-26,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-04-20,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Jay Hoffman,2024-05-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Do Pass as Amended Health and Human Services; 012-000-000,2024-05-15,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Nabeela Syed,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Energy & Environment Committee,2024-05-15,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 108-000-001,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-22,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-1027,2024-08-09,['became-law'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-20,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0995,2024-08-09,['became-law'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2024-05-14,['amendment-introduction'],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 019-010-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Hoan Huynh,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-03,[],IL,103rd +Assigned to Executive Committee,2024-04-30,['referral-committee'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +"Senate Floor Amendment No. 5 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments:",2024-05-21,[],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-15,[],IL,103rd +Do Pass Insurance; 010-000-000,2024-05-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Public Act . . . . . . . . . 103-0799,2024-08-09,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 067-031-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Senate Floor Amendment No. 7 Referred to Assignments,2023-05-03,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-05-21,['committee-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 006-000-000,2023-05-03,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Assigned to Human Services Committee,2023-04-11,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2024-05-13,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Tom Bennett,2024-05-14,['amendment-introduction'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-03-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-23,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2024-05-23,[],IL,103rd +Public Act . . . . . . . . . 103-0266,2023-06-30,['became-law'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-05-20,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Sara Feigenholtz,2023-05-17,['filing'],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-04,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Assigned to Executive,2024-04-30,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-10,['reading-3'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Education,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Higher Education Committee; 009-000-000,2024-05-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2024-05-09,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 019-009-000,2024-04-17,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-16,[],IL,103rd +Senate Committee Amendment No. 3 Assignments Refers to Judiciary,2024-05-20,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-05-23,[],IL,103rd +Passed Both Houses,2024-05-28,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-07,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 22, 2024",2024-05-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-05-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-04-20,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Housing; 012-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-20,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Do Pass as Amended Agriculture; 011-000-000,2024-05-23,['committee-passage'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-15,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Recalled to Second Reading,2023-11-08,['reading-2'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2024-04-17,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Cyril Nichols,2024-04-15,['amendment-introduction'],IL,103rd +Chief House Sponsor Rep. Joyce Mason,2023-03-31,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2023-11-07,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 013-000-000,2024-05-28,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-22,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-05-09,[],IL,103rd +Third Reading - Passed; 040-019-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-17,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 071-035-001,2024-04-18,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +House Floor Amendment No. 2 Tabled,2023-05-16,['amendment-failure'],IL,103rd +Added Chief Co-Sponsor Rep. Barbara Hernandez,2023-05-09,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-04-04,[],IL,103rd +Referred to Assignments,2023-05-15,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Erica Harriss,2024-05-06,['amendment-introduction'],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 007-004-000,2023-05-17,['committee-passage'],IL,103rd +Assigned to Appropriations-Elementary & Secondary Education Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-02-23,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Julie A. Morrison,2024-05-23,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Approved for Consideration Assignments,2024-05-20,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-10-23,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 103-000-000,2024-05-25,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tracy Katz Muhl,2024-05-02,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-04-05,[],IL,103rd +Third Reading - Passed; 051-002-000,2023-05-05,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-05-17,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2024-05-16,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0119,2023-06-30,['became-law'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2023-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-15,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Suzy Glowiak Hilton,2023-03-29,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Public Utilities Committee; 014-000-000,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Adriane Johnson,2023-05-09,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0760,2024-08-02,['became-law'],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Referred to Assignments,2023-04-26,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-04,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Julie A. Morrison,2023-05-02,['amendment-introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Barbara Hernandez,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Licensed Activities; 005-000-000,2023-05-04,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Third Reading - Passed; 055-001-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Resolution Adopted,2023-05-19,['passage'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mike Porfirio,2023-05-04,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-23,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Neil Anderson,2023-05-17,[],IL,103rd +Do Pass Education; 010-003-001,2024-05-15,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Effective Date January 1, 2026",2024-08-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-25,"['passage', 'reading-3']",IL,103rd +Do Pass Labor; 012-001-000,2023-04-27,['committee-passage'],IL,103rd +Postponed - Executive,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-09,[],IL,103rd +Third Reading - Short Debate - Passed 071-037-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2024-04-16,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-05-17,[],IL,103rd +Second Reading,2023-03-29,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-03-06,['reading-2'],IL,103rd +"Effective Date July 1, 2024; Some Provisions",2023-08-04,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-16,['reading-3'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-27,['amendment-failure'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Health Care Availability & Accessibility Committee,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-06,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2023-05-16,[],IL,103rd +Chief Sponsor Changed to Rep. Barbara Hernandez,2023-05-25,[],IL,103rd +House Floor Amendment No. 1 Racial Impact Note Requested as Amended by Rep. Rita Mayfield,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-19,['amendment-passage'],IL,103rd +Assigned to Executive Committee,2023-05-26,['referral-committee'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 022-004-000,2023-04-19,['committee-passage'],IL,103rd +"Chief Sponsor Changed to Rep. Emanuel ""Chris"" Welch",2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2023-04-21,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-05-06,[],IL,103rd +Third Reading - Short Debate - Passed 080-024-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0476,2023-08-04,['became-law'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Third Reading - Passed; 031-022-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2024-05-25,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-02-22,[],IL,103rd +Removed Co-Sponsor Rep. Will Guzzardi,2024-05-13,[],IL,103rd +Public Act . . . . . . . . . 103-0072,2023-06-09,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0208,2023-06-30,['became-law'],IL,103rd +Second Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-28,['reading-2'],IL,103rd +Referred to Assignments,2024-05-14,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 109-000-000,2023-05-19,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Higher Education Committee,2024-05-06,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-05-05,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 013-000-000,2023-11-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-05-22,[],IL,103rd +House Committee Amendment No. 1 Adopted in Appropriations-Health & Human Services Committee; by Voice Vote,2024-04-18,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-17,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-05-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lilian Jiménez,2023-05-02,[],IL,103rd +First Reading,2023-05-12,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-12-07,[],IL,103rd +"Motion Filed to Suspend Rule 21 Elementary & Secondary Education: Administration, Licensing & Charter Schools; Rep. Kam Buckner",2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-05-20,[],IL,103rd +Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 067-039-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-24,[],IL,103rd +Public Act . . . . . . . . . 103-0506,2023-08-04,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-04-26,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Revenue,2024-05-23,[],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-20,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-05-14,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-19,[],IL,103rd +"Senate Floor Amendment No. 2 Withdrawn by Sen. Napoleon Harris, III",2024-05-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Alternate Co-Sponsor Removed Rep. Lindsey LaPointe,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Bob Morgan,2024-05-17,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-05-15,[],IL,103rd +Remove Chief Co-Sponsor Rep. Barbara Hernandez,2023-03-14,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Sheehan,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-04-24,[],IL,103rd +Senate Committee Amendment No. 3 Adopted,2024-05-14,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Chief House Sponsor Rep. Michael J. Kelly,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2024-05-09,[],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-10,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Villivalam,2024-05-16,['amendment-passage'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Meg Loughran Cappel,2023-04-25,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 009-000-000,2023-04-25,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2024-05-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2024-05-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 24, 2024",2024-05-20,[],IL,103rd +Arrived in House,2023-04-27,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-05-04,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Referred to Rules Committee,2024-05-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2023-04-20,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sharon Chung,2024-05-03,['amendment-introduction'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 103-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Chief House Sponsor Rep. Camille Y. Lilly,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-05-15,[],IL,103rd +Third Reading - Short Debate - Passed 063-038-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2024-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2024-05-09,[],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. William E Hauter,2024-04-16,[],IL,103rd +Home Rule Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Chief House Sponsor Rep. Bob Morgan,2024-04-29,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-12,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-17,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 068-038-000,2024-05-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2024-05-22,[],IL,103rd +Chief Sponsor Changed to Sen. Celina Villanueva,2023-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading March 14, 2024",2024-03-13,['reading-2'],IL,103rd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 056-000-000,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2023-04-19,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Margaret Croke,2024-05-16,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-01,['amendment-failure'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-20,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Local Government,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-04-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Arrived in House,2024-04-18,['introduction'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0984,2024-08-09,['became-law'],IL,103rd +Assigned to Personnel & Pensions Committee,2023-04-18,['referral-committee'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2023-05-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +Do Pass / Short Debate Executive Committee; 012-000-000,2024-05-15,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Ann M. Williams,2023-04-20,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-05-21,[],IL,103rd +Third Reading - Short Debate - Passed 080-024-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Laura Faver Dias,2023-04-06,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Willie Preston,2024-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-05-04,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2024-04-16,[],IL,103rd +Assigned to Human Services Committee,2024-04-15,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-1003,2024-08-09,['became-law'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-17,[],IL,103rd +Assigned to Transportation,2024-04-24,['referral-committee'],IL,103rd +"Senate Floor Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendments will remain in the Committee on Assignments",2024-05-23,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Chief Senate Sponsor Sen. Erica Harriss,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-17,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Mental Health & Addiction Committee; 017-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2024-05-08,[],IL,103rd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-16,[],IL,103rd +Public Act . . . . . . . . . 103-0653,2024-07-19,['became-law'],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Kelly M. Cassidy,2024-04-17,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2024-05-15,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2024-05-25,[],IL,103rd +Do Pass Revenue; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-01,[],IL,103rd +Do Pass Transportation; 013-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Wayne A Rosenthal,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0634,2024-07-01,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0771,2024-08-02,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2024-05-16,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +"Chief House Sponsor Rep. Maurice A. West, II",2024-04-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-04-18,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Assigned to Consumer Protection Committee,2023-04-11,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-11-07,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-04-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2023-05-25,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-05-02,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Kelly M. Cassidy,2023-03-22,[],IL,103rd +Third Reading - Passed; 054-001-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-04-24,[],IL,103rd +Public Act . . . . . . . . . 103-0523,2023-08-11,['became-law'],IL,103rd +House Concurs,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Public Health,2023-04-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-04-06,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-21,[],IL,103rd +Public Act . . . . . . . . . 103-0031,2023-06-09,['became-law'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 105-000-000,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-04-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-03-09,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Recalled to Second Reading,2023-05-19,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 013-000-000,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-02-22,[],IL,103rd +Second Reading,2023-05-05,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Environment and Conservation,2023-05-11,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-21,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-02-23,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Licensed Activities,2023-11-07,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-05-11,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2023-04-25,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Third Reading - Short Debate - Passed 102-003-000,2023-04-20,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Education; 012-000-000,2023-04-19,['committee-passage'],IL,103rd +Recalled to Second Reading,2023-05-25,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-10,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +Assigned to Education,2023-04-18,['referral-committee'],IL,103rd +"Removed Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-03,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-05-05,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-21,[],IL,103rd +Public Act . . . . . . . . . 103-0195,2023-06-30,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Bryant,2023-05-10,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-08,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Higher Education Committee; 011-000-000,2023-05-03,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Willie Preston,2023-04-28,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 19, 2023",2023-05-18,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0419,2023-08-04,['became-law'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-23,[],IL,103rd +Public Act . . . . . . . . . 103-0156,2023-06-30,['became-law'],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Referred to Assignments,2023-04-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-10,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-02,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-04-10,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Norma Hernandez,2023-05-12,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-21,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Special Committee on Criminal Law and Public Safety,2023-05-09,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-21,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-03,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-21,[],IL,103rd +Sponsor Removed Sen. Rachel Ventura,2023-11-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-04,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Michael E. Hastings,2023-03-29,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-16,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Kimberly A. Lightford,2024-05-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2024-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-10-30,[],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2024-05-07,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brandun Schweizer,2024-05-08,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-17,[],IL,103rd +Do Pass Transportation; 013-000-000,2024-05-01,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-11-08,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-04-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-29,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-05-25,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-03-22,[],IL,103rd +Public Act . . . . . . . . . 103-0664,2024-07-19,['became-law'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-11-07,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-04-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-08,[],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 008-000-000,2023-04-18,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2024-05-09,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2024-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0692,2024-07-19,['became-law'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Dan McConchie,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Re-referred to Assignments,2024-04-30,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Tom Bennett,2024-04-23,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-24,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-14,[],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2024-05-16,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 17, 2023",2023-05-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-04-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-28,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Joe C. Sosnowski,2024-05-22,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0477,2023-08-04,['became-law'],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-0368,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-05-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2023-05-02,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Higher Education Committee; 008-004-000,2024-05-09,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-05-02,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Suzanne M. Ness,2023-04-26,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Steven Reick,2023-05-12,[],IL,103rd +Referred to Rules Committee,2023-05-12,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +House Floor Amendment No. 1 State Debt Impact Note Requested as Amended by Rep. Rita Mayfield,2024-04-18,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-28,['reading-2'],IL,103rd +Motion to Suspend Rule 21 - Prevailed 071-039-000,2024-05-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-27,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-05-08,[],IL,103rd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. Emanuel ""Chris"" Welch",2024-05-28,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-05-05,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 115-000-000,2023-05-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-05-16,[],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-06,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-03-07,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Bradley Fritts,2023-05-03,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-05-19,['amendment-passage'],IL,103rd +Chief Sponsor Changed to Rep. Will Guzzardi,2024-05-13,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Margaret Croke,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-12-13,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 30, 2023",2023-03-29,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-02-22,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2023-05-19,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-26,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-04-27,[],IL,103rd +Assigned to Energy & Environment Committee,2023-04-18,['referral-committee'],IL,103rd +Remove Chief Co-Sponsor Rep. Barbara Hernandez,2023-05-25,[],IL,103rd +House Committee Amendment No. 2 Adopted in Appropriations-Health & Human Services Committee; by Voice Vote,2024-04-18,['amendment-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 087-025-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2023-04-26,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Natalie A. Manley,2024-05-08,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Revenue; 008-000-000,2024-05-23,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-10,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-03,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Lakesia Collins,2024-05-22,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Stephanie A. Kifowit,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-14,[],IL,103rd +Chief House Sponsor Rep. Ann M. Williams,2024-04-18,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-19,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 009-000-000,2023-04-25,['committee-passage'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-04-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2023-04-17,[],IL,103rd +Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-04-15,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-11,['amendment-passage'],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 006-003-000,2023-04-27,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-05-02,[],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0248,2023-06-30,['became-law'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-11,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-10,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2023-04-25,['amendment-passage'],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-03,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-05-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicole La Ha,2024-05-23,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Do Pass as Amended Education; 012-000-000,2024-05-15,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-08,[],IL,103rd +First Reading,2024-05-17,['reading-1'],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Local Government; 008-000-000,2024-05-23,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2024-05-06,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-04-29,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2023-04-19,[],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Laura Faver Dias,2024-04-16,['amendment-introduction'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-21,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Anne Stava-Murray,2024-05-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary Beth Canty,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-04-11,[],IL,103rd +Third Reading - Passed; 038-019-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kimberly Du Buclet,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Kimberly A. Lightford,2024-04-09,['amendment-introduction'],IL,103rd +Fiscal Note Requested - Withdrawn by Rep. Anthony DeLuca,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2023-04-26,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2023-04-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-23,[],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2024-05-21,['amendment-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sharon Chung,2024-05-23,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Laura Faver Dias,2023-04-26,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-12,['reading-3'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Waive Posting Notice,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2024-05-17,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-20,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2023-05-04,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-04-27,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Celina Villanueva,2023-05-24,['filing'],IL,103rd +Public Act . . . . . . . . . 103-0834,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2024-05-01,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-04-16,[],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-02,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Cristina Castro,2024-05-14,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2024-04-16,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Cristina Castro,2024-05-24,['amendment-introduction'],IL,103rd +Assigned to Insurance Committee,2024-05-13,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin John Olickal,2024-05-07,[],IL,103rd +Chief Senate Sponsor Sen. Mike Simmons,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Harmon,2023-05-25,['amendment-passage'],IL,103rd +House Floor Amendment No. 3 Adopted,2023-03-23,['amendment-passage'],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0318,2023-07-28,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Ann M. Williams,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-21,[],IL,103rd +Second Reading,2023-05-16,['reading-2'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Assigned to Licensed Activities,2023-04-12,['referral-committee'],IL,103rd +Do Pass Labor; 016-000-000,2023-04-27,['committee-passage'],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2023-04-28,[],IL,103rd +"Senate Committee Amendment No. 1 Motion to Concur Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-18,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-21,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Judiciary,2023-04-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-02,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Licensed Activities; 009-000-000,2023-11-07,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Assigned to Education,2023-04-18,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0027,2023-06-09,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 21, 2023",2023-05-11,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-03-29,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Mike Simmons,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Joyce,2023-05-03,['amendment-passage'],IL,103rd +Assigned to Insurance,2023-04-12,['referral-committee'],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-17,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-04-25,[],IL,103rd +Do Pass as Amended Environment and Conservation; 007-000-000,2023-05-11,['committee-passage'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-21,[],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 018-003-000,2023-02-28,['committee-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 009-000-000,2023-05-10,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Ram Villivalam,2023-05-18,['amendment-introduction'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Senate Floor Amendment No. 2 Withdrawn by Sen. Jil Tracy,2023-05-19,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2023-05-05,['amendment-introduction'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0116,2023-06-30,['became-law'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Education,2023-04-25,['amendment-passage'],IL,103rd +Passed Both Houses,2023-05-24,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-03-27,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2023-05-02,[],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-08,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-05-10,[],IL,103rd +Pension Note Filed,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-02-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-28,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-21,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Patrick J. Joyce,2023-11-08,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-05-19,['amendment-introduction'],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Removed Co-Sponsor Rep. Terra Costa Howard,2024-04-03,[],IL,103rd +Do Pass Education; 013-000-000,2023-04-26,['committee-passage'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-04-06,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-04-27,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2023-04-21,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Licensed Activities,2023-05-17,[],IL,103rd +Second Reading - Short Debate,2024-05-14,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. Norine K. Hammond,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-05-01,[],IL,103rd +Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Martin McLaughlin,2024-05-23,[],IL,103rd +Referred to Assignments,2024-05-15,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-04-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2023-05-08,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Judicial Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-17,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Housing Affordability Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Senate Floor Amendment No. 4 Recommend Do Adopt Executive; 009-004-000,2023-11-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Motion Filed to Suspend House Rule(s) for Immediate Consideration Rep. Natalie A. Manley,2023-05-26,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Matt Hanson,2023-04-10,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-23,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Michael E. Hastings,2024-05-25,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 25, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-02,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-05-03,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Energy & Environment Committee,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michael J. Kelly,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-05-05,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-18,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-05,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 099-001-000,2023-11-09,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-20,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-05-16,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2023-04-25,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2024-04-15,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Referred to Executive Committee,2024-05-01,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2023-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-09,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-05-09,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-05-01,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-05-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2023-05-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2024-04-08,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-05-23,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2023-04-20,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Third Reading - Passed; 049-009-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 025-000-000,2024-05-01,['committee-passage'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary Beth Canty,2023-04-28,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2023-03-09,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-04-09,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-05-01,[],IL,103rd +Do Pass / Short Debate Prescription Drug Affordability & Accessibility Committee; 009-005-000,2023-04-26,['committee-passage'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-08,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 20, 2024",2024-05-16,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kam Buckner,2023-05-09,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-24,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2024-04-30,[],IL,103rd +Referred to Rules Committee,2024-04-10,[],IL,103rd +Chief House Sponsor Rep. Daniel Didech,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2024-05-22,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-12,['amendment-passage'],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 007-004-000,2023-05-17,['committee-passage'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Laura Faver Dias,2023-04-06,[],IL,103rd +Second Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +Governor Approved,2023-06-29,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2024-05-16,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2023-04-26,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Sue Rezin,2024-05-08,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-03-31,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-11,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-05-06,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-1008,2024-08-09,['became-law'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-08,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Insurance Committee; 015-000-000,2024-05-24,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-03-07,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-02-23,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-16,[],IL,103rd +Public Act . . . . . . . . . 103-0168,2023-06-30,['became-law'],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-05-08,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Rachel Ventura,2023-05-15,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Cristina Castro,2023-05-19,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2023-03-27,[],IL,103rd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-03-24,[],IL,103rd +Approved for Consideration Rules Committee; 004-000-000,2023-11-07,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2023-04-25,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-19,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Ram Villivalam,2023-05-11,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-03-24,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2023-05-16,[],IL,103rd +Chief House Sponsor Rep. Lakesia Collins,2023-04-21,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 008-004-000,2024-05-21,['committee-passage'],IL,103rd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 019-000-000,2023-04-26,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Third Reading - Short Debate - Passed 071-038-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. Curtis J. Tarver, II",2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. La Shawn K. Ford,2023-05-12,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Kimberly Du Buclet,2024-05-24,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-04-20,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-10-26,[],IL,103rd +Do Pass as Amended Insurance; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +Racial Impact Note Request is Inapplicable,2023-05-12,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Lindsey LaPointe,2023-05-03,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-05-01,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Personnel & Pensions Committee; 009-000-000,2023-05-25,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-03,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-18,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Steve Stadelman,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-04-20,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Michael E. Hastings,2023-05-18,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-08,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-11-08,['amendment-introduction'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +"Placed on Calendar Order of First Reading March 23, 2023",2023-03-22,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0133,2023-06-30,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-10-31,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 053-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0576,2023-12-08,['became-law'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-04-28,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-11,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-11-07,[],IL,103rd +Assigned to Licensed Activities,2023-04-12,['referral-committee'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-26,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-03-29,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-08,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Governor Approved,2023-07-31,['executive-signature'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-05-24,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-25,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-04-21,[],IL,103rd +Third Reading - Short Debate - Passed 070-037-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-24,[],IL,103rd +House Floor Amendment No. 2 Correctional Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lindsey LaPointe,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Consumer Protection Committee,2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-18,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Financial Institutions and Licensing Committee,2023-05-15,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 2 Postponed - Senate Special Committee on Pensions,2023-05-18,[],IL,103rd +Second Reading,2024-03-14,['reading-2'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-03-07,[],IL,103rd +Public Act . . . . . . . . . 103-0713,2024-07-19,['became-law'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-05-23,[],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-15,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Brad Stephens,2024-03-07,[],IL,103rd +"Effective Date January 1, 2025",2024-07-22,[],IL,103rd +Do Pass State Government; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Barbara Hernandez,2024-04-30,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Arrived in House,2024-05-03,['introduction'],IL,103rd +Arrive in Senate,2024-05-21,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-13,[],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2024-04-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-30,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-03-13,[],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2024-05-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2024-05-24,[],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2024-05-22,['committee-passage-favorable'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2023",2023-05-16,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 107-006-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-17,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Passed Both Houses,2024-05-09,[],IL,103rd +Placed on Calendar Order of First Reading,2024-05-22,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0630,2024-07-01,['became-law'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Paul Faraci,2024-05-16,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Justin Slaughter,2023-05-04,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-04-28,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2024-05-23,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 3 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Tabled,2023-05-17,['amendment-failure'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 21, 2024",2024-05-20,['reading-3'],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-19,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-14,[],IL,103rd +Public Act . . . . . . . . . 103-0622,2024-07-01,['became-law'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Kimberly A. Lightford,2023-04-10,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-04-04,[],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-10-23,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Chief Senate Sponsor Sen. Erica Harriss,2024-04-18,[],IL,103rd +Fiscal Note Requested by Rep. Blaine Wilhour,2024-04-25,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-16,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2024-05-14,[],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-05-13,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Do Pass Executive; 012-000-000,2023-05-17,['committee-passage'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 17, 2024",2024-05-03,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-12-12,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Maura Hirschauer,2024-05-22,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-02-23,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-18,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-06,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-11,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Mary Beth Canty,2023-03-31,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2023-04-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2023-04-27,[],IL,103rd +Public Act . . . . . . . . . 103-0317,2023-07-28,['became-law'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2024-05-22,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Andrew S. Chesney,2023-04-27,[],IL,103rd +Postponed - Energy and Public Utilities,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-15,[],IL,103rd +Passed Both Houses,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-25,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Robert Peters,2023-05-10,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-22,[],IL,103rd +Do Pass Labor; 012-004-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-10-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2023",2023-05-05,['reading-3'],IL,103rd +House Floor Amendment No. 1 Withdrawn by Rep. Laura Faver Dias,2023-04-19,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0037,2023-06-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Ryan Spain,2023-03-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-12,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-28,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-03-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-30,[],IL,103rd +Postponed - State Government,2023-05-04,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-16,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Executive Committee,2023-05-26,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +House Committee Amendment No. 3 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2023-05-25,['committee-passage'],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-19,[],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Natalie A. Manley,2023-03-21,[],IL,103rd +Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-04-03,[],IL,103rd +First Reading,2024-05-24,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-08,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-03-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-04,[],IL,103rd +Second Reading,2023-05-08,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-11,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Kam Buckner,2024-04-18,[],IL,103rd +Referred to Rules Committee,2023-05-09,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Debbie Meyers-Martin,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-17,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2023-05-19,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-04-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2023-05-11,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Steve Stadelman,2023-05-25,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-04-10,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-001,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments:",2024-05-20,[],IL,103rd +Public Act . . . . . . . . . 103-0253,2023-06-30,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Judiciary - Criminal Committee,2024-05-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Tracy Katz Muhl,2024-05-13,[],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2024-04-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-15,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 115-000-000,2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Balanced Budget Note Requested as Amended by Rep. Jay Hoffman,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Christopher Belt,2024-04-15,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 014-000-000,2024-05-21,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 012-000-000,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-15,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-03-24,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Arrived in House,2024-05-15,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2023-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 072-039-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Rules Refers to Energy & Environment Committee,2024-04-17,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-15,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-21,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-05-21,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Energy and Public Utilities,2024-05-23,[],IL,103rd +Public Act . . . . . . . . . 103-0903,2024-08-09,['became-law'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 109-000-000,2024-05-28,[],IL,103rd +Recalled to Second Reading,2023-05-04,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 015-000-008,2024-05-15,['committee-passage-favorable'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Senate Floor Amendment No. 7 Assignments Refers to Environment and Conservation,2023-05-03,[],IL,103rd +Public Act . . . . . . . . . 103-0599,2024-07-01,['became-law'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Arrive in Senate,2024-05-15,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0796,2024-08-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-18,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 092-020-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 050-005-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anthony DeLuca,2023-05-11,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-23,['reading-2'],IL,103rd +House Floor Amendment No. 3 Rules Refers to State Government Administration Committee,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-20,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Housing,2024-05-20,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-06,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 15, 2023",2023-05-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Glowiak Hilton,2023-11-08,['amendment-passage'],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-04-15,['referral-committee'],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-14,[],IL,103rd +Public Act . . . . . . . . . 103-1041,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Bill Cunningham,2023-11-08,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-15,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-17,[],IL,103rd +Public Act . . . . . . . . . 103-1048,2024-08-09,['became-law'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Laura Faver Dias,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2023-04-20,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-05-19,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 24, 2023",2023-05-23,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Tracy Katz Muhl,2024-04-16,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Mattie Hunter,2024-05-25,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-05-10,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 012-000-000,2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 018-008-000,2024-05-16,['committee-passage-favorable'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Randy E. Frese,2023-04-26,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Sally J. Turner,2024-05-23,['filing'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-23,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-03-12,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-05-20,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-05-13,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-23,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-15,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-04,[],IL,103rd +Chief Senate Sponsor Sen. Willie Preston,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 112-000-000,2023-05-18,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-15,[],IL,103rd +Do Pass Executive; 011-000-000,2023-03-30,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2023-05-04,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-09,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0747,2024-08-02,['became-law'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-22,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Local Government,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-16,[],IL,103rd +Public Act . . . . . . . . . 103-0128,2023-06-30,['became-law'],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-15,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-15,[],IL,103rd +"House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-002-000",2024-05-22,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Arrive in Senate,2024-05-17,['introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2023-05-17,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Assigned to Judiciary,2023-04-25,['referral-committee'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Arrived in House,2023-05-25,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Land Conveyance Appraisal Note Filed as Amended,2023-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0737,2024-08-05,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-03,[],IL,103rd +Arrive in Senate,2023-04-25,['introduction'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 112-001-000,2023-05-18,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-23,[],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Executive,2023-05-04,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Brad Stephens,2024-04-16,[],IL,103rd +Placed on Calendar Order of First Reading,2023-04-25,['reading-1'],IL,103rd +Recalled to Second Reading,2023-05-25,['reading-2'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2023-05-03,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-03-30,['reading-2'],IL,103rd +State Mandates Fiscal Note Filed,2023-03-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2024-05-02,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2023-04-27,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to State Government,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve McClure,2023-05-17,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-04-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-04,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2023-05-04,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-05-10,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Yolonda Morris,2024-05-16,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Second Reading,2023-05-05,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0149,2023-06-30,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-04-16,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; McClure,2023-05-04,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Postponed - Executive,2023-05-19,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of First Reading,2024-05-17,['reading-1'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-03,[],IL,103rd +House Floor Amendment No. 2 Pension Note Filed as Amended,2023-05-16,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Sent to the Governor,2023-12-01,['executive-receipt'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-05-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Second Reading,2023-05-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-12,[],IL,103rd +Approved for Consideration Assignments,2023-11-06,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-04-17,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 9, 2023",2023-05-08,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-10,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2024-04-18,[],IL,103rd +Do Pass Environment and Conservation; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2024-05-17,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Counties & Townships Committee,2024-04-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-18,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Referred to Rules Committee,2024-05-24,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-25,['reading-2'],IL,103rd +Assigned to Health and Human Services,2023-04-12,['referral-committee'],IL,103rd +Arrive in Senate,2023-05-09,['introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Natalie A. Manley,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-12-20,[],IL,103rd +Third Reading - Passed; 043-013-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 070-038-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-19,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-16,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Immigration & Human Rights Committee,2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Housing,2023-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-11-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Passed Both Houses,2023-11-08,[],IL,103rd +Third Reading - Short Debate - Passed 069-035-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-04-03,[],IL,103rd +Chief Senate Sponsor Sen. Seth Lewis,2023-03-27,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-21,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-03-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-19,[],IL,103rd +Assigned to Executive Committee,2023-05-09,['referral-committee'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Bill Cunningham,2023-05-19,['amendment-introduction'],IL,103rd +Chief House Sponsor Rep. Lance Yednock,2023-03-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-03-31,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2023-11-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-03-07,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-05,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-05-26,[],IL,103rd +Third Reading - Passed; 035-019-000,2023-05-25,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-04-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-18,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-05-28,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-10-25,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-04-18,[],IL,103rd +"Effective Date July 19, 2024; some provisions effective 01/01/2025",2024-07-19,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-23,[],IL,103rd +Resolution Adopted,2023-05-15,['passage'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-18,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-23,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2024-05-20,['amendment-introduction'],IL,103rd +Public Act . . . . . . . . . 103-0654,2024-07-19,['became-law'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2024-05-07,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Agriculture,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2024-05-23,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-09,[],IL,103rd +Assigned to Health and Human Services,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-05-17,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2023-05-10,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-03-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2024-05-03,[],IL,103rd +Do Pass / Short Debate Appropriations-Elementary & Secondary Education Committee; 014-000-000,2024-04-30,['committee-passage'],IL,103rd +"House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-000-000",2024-05-15,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Ethics & Elections,2024-03-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-02-20,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-19,[],IL,103rd +Referred to Rules Committee,2023-10-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-17,['reading-2'],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-14,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-05-16,[],IL,103rd +Third Reading - Passed; 042-017-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of First Reading May 15, 2024",2024-05-15,['reading-1'],IL,103rd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2024-05-26,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2024-05-08,[],IL,103rd +Public Act . . . . . . . . . 103-0853,2024-08-09,['became-law'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Glowiak Hilton,2023-11-08,['amendment-passage'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-03-18,[],IL,103rd +Senate Floor Amendment No. 7 Recommend Do Adopt Environment and Conservation; 006-003-000,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2024-05-15,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-15,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Eva-Dina Delgado,2024-05-08,['amendment-introduction'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-16,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-12,[],IL,103rd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2023-05-16,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. William E Hauter,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Revenue,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Robyn Gabel,2024-05-20,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Recalled to Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-20,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-15,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Ryan Spain,2024-05-21,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-17,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Assigned to Executive Committee,2024-04-24,['referral-committee'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 012-000-000,2023-05-17,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-14,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Sent to the Governor,2024-06-26,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Correctional Note Requested as Amended by Rep. Jay Hoffman,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-10,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-01,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 058-000-000,2024-05-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2024-05-09,[],IL,103rd +House Concurs,2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Criminal Committee; 013-000-000,2024-05-21,[],IL,103rd +Do Pass Judiciary; 007-000-000,2024-05-21,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Suzanne M. Ness,2024-05-13,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Rules Referred to Insurance Committee,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2024-05-09,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Nicholas K. Smith,2023-05-04,['amendment-introduction'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-16,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-16,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-20,[],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Energy & Environment Committee,2024-05-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 017-007-000,2024-05-08,['committee-passage-favorable'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Meg Loughran Cappel,2023-05-16,['filing'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-11-08,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Housing; 011-002-000,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2024-04-17,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-16,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +House Concurs,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-17,[],IL,103rd +Public Act . . . . . . . . . 103-1015,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Energy & Environment Committee; 019-009-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Referred to Rules Committee,2024-04-30,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Energy and Public Utilities; 011-004-000,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-04-15,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-02,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-04-26,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2024-05-21,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-05-14,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-24,[],IL,103rd +Assigned to State Government Administration Committee,2024-04-15,['referral-committee'],IL,103rd +Third Reading - Passed; 039-015-000,2024-05-25,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura M. Murphy,2024-05-16,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2024-05-14,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-21,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-05-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2023",2023-05-16,['reading-3'],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2023-04-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2023-05-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-01,['reading-2'],IL,103rd +Do Pass Licensed Activities; 008-000-000,2023-04-20,['committee-passage'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 054-001-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Postponed - Judiciary,2023-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Balanced Budget Note Filed,2023-03-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Removed Co-Sponsor Rep. Norma Hernandez,2024-04-03,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-04-25,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Consumer Protection Committee,2023-03-22,[],IL,103rd +"Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-05-18,[],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Tracy,2023-05-19,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Paul Faraci,2023-03-21,[],IL,103rd +Public Act . . . . . . . . . 103-0321,2023-07-28,['became-law'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 078-035-000,2023-05-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Assigned to Financial Institutions,2023-04-12,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-21,[],IL,103rd +Public Act . . . . . . . . . 103-0121,2023-06-30,['became-law'],IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-26,['amendment-failure'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Second Reading,2023-05-08,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2023-05-22,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-02-08,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-08,['reading-3'],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Do Pass Financial Institutions; 005-000-000,2023-05-16,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-03-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Michelle Mussman,2023-03-06,['amendment-introduction'],IL,103rd +Assigned to Labor,2023-04-12,['referral-committee'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Recalled to Second Reading,2023-11-07,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Second Reading,2023-05-08,['reading-2'],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Waive Posting Notice,2023-05-10,[],IL,103rd +Do Pass Education; 013-000-000,2023-04-26,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Public Utilities Committee,2023-05-15,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2023-04-18,[],IL,103rd +Recalled to Second Reading,2023-11-08,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Sharon Chung,2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Do Pass as Amended Education; 012-000-000,2023-04-26,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Hoan Huynh,2023-03-21,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-04-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Remove Chief Co-Sponsor Rep. Kevin John Olickal,2023-03-28,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Anthony DeLuca,2023-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2023-11-07,['amendment-introduction'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-000-000",2024-05-22,['committee-passage'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Jehan Gordon-Booth,2023-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2023-04-27,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2023-05-17,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-10-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-29,['reading-3'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-18,[],IL,103rd +"Assigned to Transportation: Regulations, Roads & Bridges",2023-05-12,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2023-05-01,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-05-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-25,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Michael W. Halpin,2023-05-17,['filing'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-05-03,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-25,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-14,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-05-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-03-06,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Ugaste,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-16,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-04-25,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-03-31,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2023-03-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Education,2023-05-02,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norma Hernandez,2023-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-08,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-05-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2023-05-12,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-03,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Do Pass as Amended / Short Debate Appropriations-Health & Human Services Committee; 022-000-000,2024-04-18,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 075-031-003,2024-03-07,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-19,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Gaming Committee; 015-000-000,2024-05-25,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Rita Mayfield,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-22,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-03-12,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-07,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Cunningham,2024-05-26,['amendment-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Lightford,2024-05-26,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +Assigned to Immigration & Human Rights Committee,2024-04-24,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Restorative Justice,2024-04-17,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2024-05-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-03-15,"['passage', 'reading-3']",IL,103rd +Assigned to Health Care Licenses Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-16,[],IL,103rd +Re-assigned to Licensed Activities,2024-05-01,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-04-15,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2024-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0624,2024-07-01,['became-law'],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2024-05-15,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 20, 2024",2024-03-14,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-08,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0750,2024-08-02,['became-law'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-02,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-05-08,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Assigned to Higher Education Committee,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-11-07,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0757,2024-08-02,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2024-05-09,[],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2024-05-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-04-26,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 009-004-000,2023-04-25,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2023-05-04,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Suzanne M. Ness,2023-05-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2023-04-20,[],IL,103rd +Chief House Sponsor Rep. Daniel Didech,2023-03-31,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 013-000-000,2023-04-25,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-04,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-04-19,[],IL,103rd +Do Pass / Short Debate Human Services Committee; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-04-26,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 008-004-000,2024-05-21,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Tom Bennett,2024-04-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-24,[],IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Assigned to Education,2024-04-30,['referral-committee'],IL,103rd +Do Pass Labor; 011-000-000,2024-05-22,['committee-passage'],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Insurance Committee,2024-05-21,[],IL,103rd +Third Reading - Passed; 049-002-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Chief Co-Sponsor Changed to Rep. Camille Y. Lilly,2024-05-14,[],IL,103rd +Arrived in House,2024-05-03,['introduction'],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-21,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Camille Y. Lilly,2024-05-03,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-23,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-09,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-08,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Public Act . . . . . . . . . 103-0895,2024-08-09,['became-law'],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-15,['reading-2'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2024-05-09,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Maura Hirschauer,2023-04-26,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Janet Yang Rohr,2024-05-14,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2024-04-16,[],IL,103rd +Public Act . . . . . . . . . 103-0935,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2024-04-17,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-06,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-05-16,[],IL,103rd +Referred to Rules Committee,2024-05-17,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Third Reading - Passed; 053-002-000,2024-04-11,"['passage', 'reading-3']",IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-17,[],IL,103rd +"Effective Date August 9, 2024; Some Provisions;",2024-08-09,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Karina Villa,2024-05-23,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Brandun Schweizer,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-21,[],IL,103rd +Assigned to Insurance Committee,2024-04-24,['referral-committee'],IL,103rd +Assigned to Restorative Justice,2024-04-24,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2024-04-30,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Margaret Croke,2024-05-16,['amendment-introduction'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 012-001-000,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tom Weber,2024-05-21,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 068-040-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Waive Posting Notice,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 5 Referred to Assignments,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-11,['reading-3'],IL,103rd +Assigned to Labor & Commerce Committee,2023-04-18,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-09,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2023-04-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Javier L. Cervantes,2024-05-07,['amendment-introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Dan McConchie,2024-05-21,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2023-03-15,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. Anthony DeLuca,2024-04-18,[],IL,103rd +House Floor Amendment No. 3 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2024-04-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Resolution Adopted,2024-04-10,['passage'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-05-01,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Nabeela Syed,2023-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-05-08,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-03-31,[],IL,103rd +Third Reading - Short Debate - Passed 097-013-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2024-05-23,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-04-17,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Waive Posting Notice,2023-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-05-03,[],IL,103rd +Assigned to Health Care Licenses Committee,2023-04-25,['referral-committee'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-23,[],IL,103rd +Arrived in House,2023-05-10,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-04-20,[],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-18,[],IL,103rd +"Effective Date July 31, 2023",2023-07-31,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Local Government; 010-000-000,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +State Mandates Fiscal Note Request is Inapplicable,2023-05-12,[],IL,103rd +Do Pass Licensed Activities; 008-000-000,2023-04-20,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-05-16,[],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2023-03-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2023-05-24,[],IL,103rd +Assigned to Licensed Activities,2023-04-12,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-08,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2023-04-20,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Tabled,2024-05-22,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +House Floor Amendment No. 3 Correctional Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-08,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-11,[],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2023-03-29,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-02-28,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +Chief Senate Sponsor Sen. Mike Simmons,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-11,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-18,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-11-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Executive Committee,2023-05-17,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Assigned to Appropriations,2023-04-12,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Senate Special Committee on Pensions; 011-000-000,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Financial Institutions and Licensing Committee,2023-05-15,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +First Reading,2023-05-15,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-05-24,['amendment-passage'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-02,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0332,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-24,[],IL,103rd +Arrived in House,2023-05-25,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-17,['amendment-failure'],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0038,2023-06-09,['became-law'],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-07,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 009-004-000,2023-11-07,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-10-26,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Kelly M. Cassidy,2023-04-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 012-000-000,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2023-04-26,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Consumer Protection Committee; 008-000-000,2023-05-16,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-21,['amendment-failure'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-11,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2024-05-28,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-23,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-03-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-04-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Peters,2023-05-03,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +First Reading,2023-03-30,['reading-1'],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 008-004-000,2023-04-26,['committee-passage'],IL,103rd +Senate Floor Amendment No. 5 Be Approved for Consideration Assignments,2023-11-07,[],IL,103rd +Assigned to State Government,2024-05-14,['referral-committee'],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2024-05-06,['committee-passage-favorable'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2023-05-11,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2024-05-08,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0960,2024-08-09,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-04,['amendment-passage'],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-15,[],IL,103rd +Note / Motion Filed - Note Act Does Not Apply Rep. Kam Buckner,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-03-09,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Tom Bennett,2024-05-17,['filing'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2024-05-22,[],IL,103rd +"Effective Date June 29, 2023",2023-06-29,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Cunningham,2023-05-04,['amendment-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-12,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 107-000-000,2024-05-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-08,[],IL,103rd +Public Act . . . . . . . . . 103-0264,2023-06-30,['became-law'],IL,103rd +State Mandates Fiscal Note Requested - Withdrawn by Rep. Norine K. Hammond,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2023-05-17,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Education,2024-05-23,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Suzanne M. Ness,2024-05-20,[],IL,103rd +Motion Prevailed 072-031-000,2023-05-26,[],IL,103rd +House Floor Amendment No. 3 Withdrawn by Rep. Tracy Katz Muhl,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-26,[],IL,103rd +Third Reading - Short Debate - Passed 062-039-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Cities & Villages Committee; 016-000-000,2023-04-25,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2024-05-24,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-1000,2024-08-09,['became-law'],IL,103rd +Placed on Calendar - Consideration Postponed,2024-05-22,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-20,[],IL,103rd +Assigned to Mental Health & Addiction Committee,2023-04-11,['referral-committee'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Pension Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-17,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-15,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0848,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Ram Villivalam,2024-05-23,['filing'],IL,103rd +"Added Alternate Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-25,[],IL,103rd +Do Pass / Short Debate Personnel & Pensions Committee; 005-003-000,2023-04-27,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-25,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Removed Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-16,[],IL,103rd +Judicial Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-16,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 2 Balanced Budget Note Requested as Amended by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Licensed Activities,2023-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-04-10,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-26,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-1026,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-11,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Assigned to Energy & Environment Committee,2024-04-24,['referral-committee'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Licensed Activities; 006-000-000,2023-05-17,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Judiciary - Civil Committee,2023-05-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-23,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-04-12,[],IL,103rd +Fiscal Note Filed,2023-05-08,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-04-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Local Government,2023-05-09,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2023-11-09,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. John F. Curran,2024-05-26,['filing'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Health Care Licenses Committee,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-02,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Hoan Huynh,2023-05-03,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-08,[],IL,103rd +Assigned to Higher Education,2024-05-20,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-08,[],IL,103rd +Public Act . . . . . . . . . 103-1047,2024-08-09,['became-law'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-12,['reading-3'],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 3 Postponed - Financial Institutions,2024-04-10,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-05-20,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-05-14,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Robyn Gabel,2024-05-07,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-04-30,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2024-08-15,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 008-000-000,2023-04-27,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 087-021-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-04-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-05-03,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Caulkins,2023-04-25,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-04-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Karina Villa,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2024-05-02,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-05-22,[],IL,103rd +"House Floor Amendment No. 3 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 005-000-000",2024-05-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-03-12,[],IL,103rd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-11-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-05-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-30,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-05-15,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-22,['amendment-passage'],IL,103rd +Third Reading - Passed; 053-001-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-07,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Assigned to Transportation,2024-04-30,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-22,['amendment-passage'],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Removed Co-Sponsor Rep. Brad Stephens,2024-03-07,[],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2024-05-09,[],IL,103rd +"Chief House Sponsor Rep. Marcus C. Evans, Jr.",2024-05-03,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Third Reading - Passed; 054-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-14,[],IL,103rd +"Placed on Calendar Order of First Reading May 21, 2024",2024-05-21,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2024-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0736,2024-08-02,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0691,2024-07-22,['became-law'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-14,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2024-05-21,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-05-22,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-13,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-05-14,"['passage', 'reading-3']",IL,103rd +Removed Co-Sponsor Rep. Aaron M. Ortiz,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-05-15,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-15,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-11-08,[],IL,103rd +"Third Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 007-000-000,2023-05-16,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-06-03,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-04-12,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-15,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-24,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2023-05-08,[],IL,103rd +Public Act . . . . . . . . . 103-0672,2024-07-19,['became-law'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +First Reading,2024-05-03,['reading-1'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-06,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-14,[],IL,103rd +Public Act . . . . . . . . . 103-0407,2023-07-31,['became-law'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-17,[],IL,103rd +Do Pass Education; 010-003-000,2023-04-19,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Second Reading,2023-05-08,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Do Pass Licensed Activities; 008-000-000,2023-04-20,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Labor & Commerce Committee,2023-05-15,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Financial Institutions and Licensing Committee; 010-000-000,2023-05-17,[],IL,103rd +Arrived in House,2023-05-17,['introduction'],IL,103rd +Recalled to Second Reading,2023-05-19,['reading-2'],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Recalled to Second Reading,2023-05-19,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 012-000-000,2023-05-03,[],IL,103rd +Referred to Assignments,2023-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-10-26,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-03-08,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2023-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Do Pass Health and Human Services; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 100-011-000,2023-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-04-19,[],IL,103rd +Removed Co-Sponsor Rep. Lilian Jiménez,2023-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-05-12,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-03-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lance Yednock,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-03-22,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2023-05-19,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-04-25,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-05-18,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-05-16,[],IL,103rd +Do Pass Judiciary; 006-003-000,2023-04-19,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-25,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-23,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Daniel Didech,2023-11-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0457,2023-08-04,['became-law'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Waive Posting Notice,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-05-22,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Arrived in House,2023-05-17,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2023-04-20,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-05-03,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-28,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-19,[],IL,103rd +Recalled to Second Reading,2023-05-19,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2023-04-20,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-04-27,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Second Reading,2023-05-10,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-17,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-23,[],IL,103rd +Assigned to Labor,2023-04-18,['referral-committee'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2023-11-07,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-03,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Cristina H. Pacione-Zayas,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 080-033-001,2023-05-18,[],IL,103rd +Do Pass as Amended Executive; 013-000-000,2023-05-24,['committee-passage'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Martin J. Moylan,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-02-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-05-19,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-09,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Mental Health & Addiction Committee; 018-000-000,2023-05-04,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Mary E. Flowers,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2023-11-07,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Omar Aquino,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-02-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 013-000-000,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2024-04-09,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-15,['reading-2'],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. John M. Cabello,2024-04-12,[],IL,103rd +Second Reading,2024-04-11,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0110,2023-06-29,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Alternate Co-Sponsor Removed Rep. Will Guzzardi,2024-04-25,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Fiscal Note Requested by Rep. Amy Elik,2023-05-02,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-30,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-03-30,['amendment-failure'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Theresa Mah,2023-05-17,['amendment-introduction'],IL,103rd +Removed Co-Sponsor Rep. Laura Faver Dias,2024-04-16,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Terra Costa Howard,2024-05-14,['amendment-introduction'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Licensed Activities; 006-000-000,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-04-14,[],IL,103rd +Governor Approved,2024-08-12,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-04-15,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-20,['reading-2'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-02,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0084,2023-06-09,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Angelica Guerrero-Cuellar,2024-05-15,['amendment-introduction'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2024-05-15,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Stephanie A. Kifowit,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2023-05-25,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-05-07,[],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-04-25,['amendment-introduction'],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-09,[],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2023-04-14,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. David Friess,2024-05-24,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-15,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michelle Mussman,2023-05-08,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Michael E. Hastings,2024-05-25,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-05-11,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-04,['reading-3'],IL,103rd +Do Pass Executive; 008-000-000,2023-04-27,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 019-008-000,2024-04-30,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0553,2023-08-11,['became-law'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-26,[],IL,103rd +House Floor Amendment No. 2 Correctional Note Requested as Amended by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 008-004-000,2024-05-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-05-20,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Third Reading - Passed; 054-002-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Sharon Chung,2023-04-25,['amendment-introduction'],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-26,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0840,2024-08-09,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 094-014-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Public Act . . . . . . . . . 103-0225,2023-06-30,['became-law'],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2023-05-03,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Immigration & Human Rights Committee,2024-04-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2024-05-01,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Insurance Committee; 015-000-000,2024-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 24, 2024",2024-05-20,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 011-001-000,2024-05-23,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2023-05-17,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - November 9, 2023",2023-11-09,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Local Government; 010-000-000,2023-05-10,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-04-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +House Committee Amendment No. 2 Adopted in Judiciary - Civil Committee; by Voice Vote,2023-05-17,['amendment-passage'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-05-07,[],IL,103rd +Motion Prevailed 072-040-000,2023-05-17,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-05-26,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Recalled to Second Reading,2023-11-07,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-04-27,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-05-14,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-09,[],IL,103rd +Third Reading - Short Debate - Passed 069-029-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 House Concurs,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 21, 2024",2024-05-21,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Tracy Katz Muhl,2024-05-13,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +"Do Pass as Amended / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-000",2023-05-16,['committee-passage'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - November 8, 2023",2023-11-07,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2024-05-09,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2024-03-18,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Transportation,2024-05-23,[],IL,103rd +Second Reading - Short Debate,2024-04-12,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-17,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Porfirio,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-04-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Health Care Licenses Committee,2024-05-21,[],IL,103rd +Public Act . . . . . . . . . 103-0887,2024-08-09,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Seth Lewis,2024-05-16,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2024-05-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-05-20,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-14,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2024-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Insurance Committee; 014-000-000,2024-05-22,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-08,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2024-04-24,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Energy & Environment Committee; 029-000-000,2024-05-25,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Second Reading,2024-05-23,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-18,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-24,[],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2024-05-15,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 16, 2023",2023-05-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 010-000-000,2024-05-16,['committee-passage-favorable'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-05-04,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2024-04-18,[],IL,103rd +Public Act . . . . . . . . . 103-0260,2023-06-30,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-25,['amendment-failure'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Executive,2024-04-16,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-04-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Fred Crespo,2023-04-26,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-04-16,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-04-30,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Senate Concurs 044-015-000,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-11-08,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Passed Both Houses,2024-05-28,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Insurance Committee; 015-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 012-000-000,2023-05-17,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 009-000-000,2024-05-21,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2024-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0986,2024-08-09,['became-law'],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-05-19,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-05-03,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-15,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Jay Hoffman,2024-05-25,[],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +"Effective Date July 1, 2025",2024-08-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-04-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-02,[],IL,103rd +To Subcommittee on Government Operations,2024-05-01,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-04-17,[],IL,103rd +Public Act . . . . . . . . . 103-1036,2024-08-09,['became-law'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 068-038-000,2024-05-20,[],IL,103rd +Removed Co-Sponsor Rep. Brandun Schweizer,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-05-01,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-20,['amendment-passage'],IL,103rd +Home Rule Note Filed,2023-03-10,[],IL,103rd +Second Reading,2023-03-30,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-18,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Koehler,2023-05-25,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-02,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2023",2023-05-05,['reading-3'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-25,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-05-17,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0146,2023-06-30,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-04-28,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2023-05-04,[],IL,103rd +Postponed - Executive,2023-05-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-03-16,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2023-04-26,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2023-05-19,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2023-05-04,[],IL,103rd +Chief Senate Sponsor Sen. Mattie Hunter,2023-04-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jehan Gordon-Booth,2024-04-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to State Government,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-16,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lakesia Collins,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-22,[],IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +House Floor Amendment No. 2 State Debt Impact Note Filed as Amended,2023-05-16,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2023-03-23,[],IL,103rd +Chief Senate Sponsor Sen. Linda Holmes,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading November 7, 2023",2023-11-06,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-05-09,['reading-1'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-03-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-10-25,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Public Act . . . . . . . . . 103-0212,2023-06-30,['became-law'],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-11-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2023-05-25,[],IL,103rd +Do Pass State Government; 006-003-000,2023-05-10,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Transportation; 016-000-000,2023-05-09,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Michelle Mussman,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 079-027-001,2023-05-19,[],IL,103rd +First Reading,2024-05-26,['reading-1'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Housing,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-10,[],IL,103rd +Governor Approved,2023-12-08,['executive-signature'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-28,['reading-2'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Referred to Rules Committee,2023-03-30,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-21,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Labor & Commerce Committee,2023-05-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2024-05-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 11, 2023",2023-05-10,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 21, 2023",2023-05-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-04,[],IL,103rd +Third Reading - Short Debate - Passed 088-024-000,2023-04-19,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-03-30,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-15,[],IL,103rd +Sent to the Governor,2023-12-01,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0371,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2023-04-19,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Third Reading - Passed; 040-018-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2023-04-18,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-25,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-04-30,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0358,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-04-19,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-09,[],IL,103rd +Assigned to State Government,2023-04-18,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2023-04-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mark L. Walker,2023-04-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-19,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Executive Committee,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-04-03,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Hoan Huynh,2023-11-07,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2023-05-25,[],IL,103rd +Chief Senate Sponsor Sen. John F. Curran,2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-12,[],IL,103rd +Public Act . . . . . . . . . 103-0359,2023-07-28,['became-law'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-11-08,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 012-000-000,2023-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-01-23,[],IL,103rd +First Reading,2023-03-28,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Michelle Mussman,2024-05-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Housing; 010-005-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-16,[],IL,103rd +House Floor Amendment No. 3 Motion Filed to Table Rep. La Shawn K. Ford,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0656,2024-07-19,['became-law'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-09,[],IL,103rd +Sent to the Governor,2024-06-12,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-05-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Do Pass Health and Human Services; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-03-04,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-01-25,[],IL,103rd +Public Act . . . . . . . . . 103-0718,2024-07-19,['became-law'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-02-22,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Agriculture; 008-002-000,2023-05-18,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to State Government Administration Committee,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-14,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 006-003-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-20,[],IL,103rd +"Chief Sponsor Changed to Rep. Lawrence ""Larry"" Walsh, Jr.",2024-05-27,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-18,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-07,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-05-23,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-04-28,[],IL,103rd +Third Reading - Short Debate - Passed 099-012-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-24,['reading-3'],IL,103rd +Assigned to Public Health Committee,2023-04-11,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Financial Institutions and Licensing Committee; 007-004-000,2024-05-20,['committee-passage-favorable'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Do Pass / Short Debate Restorative Justice; 007-000-000,2024-05-02,['committee-passage'],IL,103rd +"Effective Date January 1, 2025; Some Provisions",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-05-03,[],IL,103rd +First Reading,2023-05-02,['reading-1'],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-20,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Do Pass / Short Debate Human Services Committee; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2023-05-04,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2023-04-26,['amendment-passage'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Steve McClure,2024-05-22,['filing'],IL,103rd +Public Act . . . . . . . . . 103-0900,2024-08-09,['became-law'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-11,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anna Moeller,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-04-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2023-05-04,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2023-05-12,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Referred to Rules Committee,2024-04-18,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 017-009-000,2023-04-26,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Thaddeus Jones,2024-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-0892,2024-08-09,['became-law'],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-15,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-03,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 5 Be Approved for Consideration Assignments,2024-05-24,[],IL,103rd +State Mandates Fiscal Note Requested - Withdrawn by Rep. Anthony DeLuca,2024-04-18,[],IL,103rd +Chief House Sponsor Rep. Hoan Huynh,2023-03-31,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Tony M. McCombie,2024-05-09,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 23, 2024",2024-05-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Judiciary - Civil Committee; 009-004-000,2023-04-27,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-16,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2024-05-14,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2024-04-10,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 10, 2024",2024-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Racial Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-03-31,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-11-01,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 047-010-000,2024-05-24,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-03,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0241,2023-06-30,['became-law'],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2024-05-13,[],IL,103rd +Re-assigned to Financial Institutions,2024-05-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2024-04-16,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 014-000-000,2024-05-20,['committee-passage'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-04,[],IL,103rd +Racial Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Ryan Spain,2024-05-23,[],IL,103rd +House Floor Amendment No. 4 Rules Refers to Labor & Commerce Committee,2024-04-17,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2024-05-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-19,[],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2024-04-24,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-11,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2024-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +"Removed Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Javier L. Cervantes,2023-04-26,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 9, 2023",2023-05-08,['reading-3'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Local Government; 010-000-000,2023-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-03-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-17,[],IL,103rd +"Effective Date July 1, 2025",2023-07-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Energy & Environment Committee; 023-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-09,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-06,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-03-21,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-04-25,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-25,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Sharon Chung,2023-05-09,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-04-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Third Reading - Short Debate - Passed 103-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-16,[],IL,103rd +Chief Senate Sponsor Sen. Ann Gillespie,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-14,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0138,2023-06-30,['became-law'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 9, 2023",2023-05-08,['reading-3'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-03,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-23,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Do Pass Insurance; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael E. Hastings,2023-04-14,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-24,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 Tabled,2024-04-26,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Public Utilities Committee; 015-000-000,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-05-10,['amendment-passage'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Adopted; Public Health,2023-04-25,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-02-08,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Joyce,2023-11-08,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-03-21,[],IL,103rd +Removed Co-Sponsor Rep. Lilian Jiménez,2024-04-03,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +First Reading,2024-05-14,['reading-1'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Karina Villa,2023-04-26,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Celina Villanueva,2023-03-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-04-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Jonathan Carroll,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Senate Special Committee on Pensions,2023-05-16,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Glowiak Hilton,2023-11-07,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-22,[],IL,103rd +"Senate Committee Amendment No. 3 Pursuant to Senate Rule 3-8 (b-1), the following amendment will reamin in the Committee on Assignments.",2023-05-16,[],IL,103rd +Third Reading - Short Debate - Passed 078-025-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 056-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Executive,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-02,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Cyril Nichols,2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Sara Feigenholtz,2023-04-21,['amendment-introduction'],IL,103rd +Land Conveyance Appraisal Note Filed,2023-03-23,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Do Pass Public Health; 005-000-000,2023-05-03,['committee-passage'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Terra Costa Howard,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-03,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2024-03-06,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 17, 2023",2023-05-16,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-05-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +"Effective Date July 1, 2024",2023-06-09,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Motion Filed to Reconsider Vote Rep. Ann M. Williams,2024-03-07,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-02-27,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-04-26,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-14,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-18,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jennifer Sanalitro,2023-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2024-05-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-19,['reading-3'],IL,103rd +Removed Co-Sponsor Rep. Carol Ammons,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-05-05,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Third Reading - Short Debate - Passed 065-045-000,2024-05-29,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-17,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2024-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +"Motion Filed to Suspend Rule 21 Executive Committee; Rep. Robert ""Bob"" Rita",2023-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-04-20,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-11-07,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2023-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-25,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-19,[],IL,103rd +Assigned to Behavioral and Mental Health,2023-04-12,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-10-31,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0458,2023-08-04,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-04-27,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 012-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-04-15,[],IL,103rd +"Alternate Co-Sponsor Removed Rep. Elizabeth ""Lisa"" Hernandez",2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-04-16,[],IL,103rd +Assigned to Insurance,2024-04-24,['referral-committee'],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-05-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-03-18,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-11-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-26,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-09,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Terri Bryant,2024-04-26,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-08,[],IL,103rd +Motion Filed to Suspend Rule 21 Human Services Committee; Rep. Robyn Gabel,2023-05-03,[],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-09,[],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +First Reading,2024-05-22,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-04-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0700,2024-07-19,['became-law'],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Third Reading - Passed; 045-012-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +"Added Alternate Co-Sponsor Rep. William ""Will"" Davis",2024-05-16,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Sponsor Removed Sen. Laura M. Murphy,2024-06-03,[],IL,103rd +House Floor Amendment No. 5 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicole La Ha,2024-05-13,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Erica Harriss,2024-04-26,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-11-07,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0694,2024-07-19,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Seth Lewis,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0675,2024-07-19,['became-law'],IL,103rd +Referred to Assignments,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-05-08,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 071-040-000,2023-05-03,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-19,[],IL,103rd +Do Pass Insurance; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0636,2024-07-01,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2024-05-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-03-24,[],IL,103rd +Passed Both Houses,2024-05-09,[],IL,103rd +Chief House Sponsor Rep. Kam Buckner,2024-04-12,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-04-29,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-04-20,[],IL,103rd +Public Act . . . . . . . . . 103-0690,2024-07-19,['became-law'],IL,103rd +Third Reading - Passed; 039-019-000,2024-04-10,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-25,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +House Floor Amendment No. 3 Tabled,2024-04-26,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-22,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Assigned to Environment and Conservation,2023-04-12,['referral-committee'],IL,103rd +State Debt Impact Note Filed,2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0304,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Third Reading - Passed; 035-020-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-21,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 4, 2023",2023-05-03,['reading-2'],IL,103rd +Senate Floor Amendment No. 4 Recommend Do Adopt Executive; 011-000-000,2023-05-18,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +Third Reading - Passed; 044-013-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +"Senate Committee Amendment No. 4 Pursuant to Senate Rule 3-8 (b-1), the following amendment will reamin in the Committee on Assignments.",2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-24,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Ann M. Williams,2023-05-01,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-04-21,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Recalled to Second Reading,2023-05-19,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-11-07,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-07,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Immigration & Human Rights Committee; 007-000-000,2023-04-26,['committee-passage-favorable'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Senate Special Committee on Pensions,2023-05-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-05-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-04-26,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Do Pass Financial Institutions; 008-000-000,2023-04-26,['committee-passage'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-04-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-11,[],IL,103rd +Arrived in House,2023-05-25,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-11-08,[],IL,103rd +Referred to Assignments,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-21,[],IL,103rd +Arrived in House,2023-05-10,['introduction'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-05-08,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-02-08,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Do Pass as Amended Executive; 009-004-000,2023-05-10,['committee-passage'],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-05-16,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 114-000-000,2023-05-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 21, 2023",2023-05-11,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2023-05-04,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2023-04-27,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 113-001-000,2023-05-18,[],IL,103rd +Second Reading,2023-05-16,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-03-30,[],IL,103rd +Public Act . . . . . . . . . 103-0150,2023-06-30,['became-law'],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-11,[],IL,103rd +Referred to Rules Committee,2023-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-09,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Do Pass as Amended / Short Debate Human Services Committee; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Adriane Johnson,2024-05-01,[],IL,103rd +Public Act . . . . . . . . . 103-0961,2024-08-09,['became-law'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-09,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Labor,2024-05-23,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2024-05-23,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 011-000-000,2023-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-22,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2024-05-20,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-05-09,[],IL,103rd +Chief Senate Sponsor Sen. Laura M. Murphy,2024-04-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-04-24,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2023-05-10,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-25,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-23,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +"House Floor Amendment No. 3 Rules Refers to Transportation: Regulations, Roads & Bridges",2023-05-09,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2024-04-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-15,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 10, 2023",2023-05-09,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-10,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 018-008-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2024-05-13,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Sheehan,2024-05-21,[],IL,103rd +Public Act . . . . . . . . . 103-0120,2023-06-30,['became-law'],IL,103rd +"Effective Date January 1, 2024; Some Provisions",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-11,[],IL,103rd +Do Pass / Short Debate Public Health Committee; 007-000-000,2023-04-20,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 113-000-001,2024-05-24,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-03,[],IL,103rd +Third Reading - Short Debate - Passed 099-004-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-05-01,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-26,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-15,[],IL,103rd +Assigned to Police & Fire Committee,2024-05-21,['referral-committee'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +State Debt Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0940,2024-08-09,['became-law'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-16,[],IL,103rd +Assigned to Judiciary - Civil Committee,2024-04-30,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-04-11,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-05-04,[],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-21,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-04-11,[],IL,103rd +First Reading,2024-05-03,['reading-1'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 007-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-18,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Dan Swanson,2023-04-27,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-03-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 16, 2023",2023-05-15,[],IL,103rd +Third Reading - Short Debate - Passed 071-038-000,2024-05-14,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-03-31,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-09,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-11-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicole La Ha,2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joe C. Sosnowski,2024-04-16,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-09,[],IL,103rd +Chief House Sponsor Rep. Diane Blair-Sherlock,2023-05-08,[],IL,103rd +Remove Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-05-27,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-08,['amendment-passage'],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-11,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-18,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Natalie A. Manley,2023-04-24,['amendment-introduction'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-04-03,[],IL,103rd +"Motion Filed to Reconsider Vote Rep. Emanuel ""Chris"" Welch",2024-05-29,[],IL,103rd +Passed Both Houses,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-05-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-04-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-03,[],IL,103rd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Motion to Reconsider Vote - Withdrawn Rep. Ann M. Williams,2024-03-07,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Michael W. Halpin,2023-05-17,['filing'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-04-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +"Chief Sponsor Changed to Rep. Robert ""Bob"" Rita",2024-05-28,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-04-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-19,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Lilian Jiménez,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-05-14,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Barbara Hernandez,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0056,2023-06-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-10-31,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Balanced Budget Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-05-05,[],IL,103rd +"Do Pass / Short Debate Transportation: Regulations, Roads & Bridges; 012-002-000",2023-05-18,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-04-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-05-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2023-04-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2023-05-09,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-03-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-11-08,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura M. Murphy,2023-05-17,['filing'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-20,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 046-012-000,2024-05-24,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2024-05-14,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Hoan Huynh,2023-05-08,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-27,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-17,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Do Pass as Amended Judiciary; 007-000-000,2024-05-21,['committee-passage'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +State Mandates Fiscal Note Requested by Rep. Amy Elik,2023-05-02,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to State Government,2024-05-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 21, 2024",2024-05-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-03-24,[],IL,103rd +Third Reading - Passed; 054-000-001,2023-05-11,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Second Reading,2023-03-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-08,['amendment-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. William E Hauter,2024-04-12,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-25,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-02,[],IL,103rd +Public Act . . . . . . . . . 103-0990,2024-08-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2024-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 16, 2023",2023-05-15,[],IL,103rd +Senate Committee Amendment No. 2 House Concurs 104-000-000,2024-05-25,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 058-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-26,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 3 Withdrawn by Sen. Javier L. Cervantes,2023-11-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-11,[],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-12,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-04-27,[],IL,103rd +House Committee Amendment No. 3 Filed with Clerk by Rep. Robyn Gabel,2024-05-07,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 085-020-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Balanced Budget Note Request is Inapplicable,2023-05-17,[],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Assigned to Gaming Committee,2023-04-18,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0955,2024-08-09,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 111-001-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Ann M. Williams,2023-05-11,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 10, 2023",2023-05-09,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2024-05-25,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-14,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Correctional Note Requested by Rep. Patrick Windhorst,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-17,[],IL,103rd +Public Act . . . . . . . . . 103-1019,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 4 Rules Refers to Police & Fire Committee,2023-05-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Alternate Co-Sponsor Removed Rep. Matt Hanson,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 055-000-000,2023-05-19,[],IL,103rd +"Assigned to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-04-18,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Brad Stephens,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-04-14,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +"Effective Date August 12, 2024",2024-08-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-12,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-05-26,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 2, 3",2024-05-22,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Licensed Activities,2024-05-23,[],IL,103rd +Second Reading - Short Debate,2024-05-14,['reading-2'],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-20,[],IL,103rd +Third Reading - Short Debate - Passed 104-003-001,2024-04-18,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Assigned to Agriculture,2024-05-07,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Rules Committee; 005-000-000,2024-05-20,['committee-passage-favorable'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2024-03-20,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-02,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-17,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jackie Haas,2023-05-04,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2023-05-18,['amendment-introduction'],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Civil Committee; 014-000-000,2023-05-17,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-08,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +Assigned to Executive,2024-04-30,['referral-committee'],IL,103rd +Recalled to Second Reading,2024-05-24,['reading-2'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Do Pass Judiciary; 006-003-000,2024-05-08,['committee-passage'],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-04-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 078-027-000,2023-05-25,"['passage', 'reading-3']",IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-04-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-04-27,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 008-000-000,2024-04-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2, 3",2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-02,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2023-05-04,[],IL,103rd +Assigned to Health and Human Services,2023-04-12,['referral-committee'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-18,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0418,2023-08-04,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-26,[],IL,103rd +Public Act . . . . . . . . . 103-0362,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Financial Institutions and Licensing Committee; 010-000-000,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-11-07,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Nabeela Syed,2023-03-10,['amendment-introduction'],IL,103rd +Do Pass Labor; 015-000-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-23,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-11-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-21,[],IL,103rd +Public Act . . . . . . . . . 103-0117,2023-06-30,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 020-004-000,2023-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-10-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 9, 2023",2023-05-08,['reading-3'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Mental Health & Addiction Committee,2023-05-08,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 House Concurs 110-000-000,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-02-23,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-23,[],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Marcus C. Evans, Jr.",2023-05-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Harmon,2023-05-19,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-04-24,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Ann Gillespie,2023-04-10,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2023-05-17,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-24,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-04-20,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2023-11-08,[],IL,103rd +Removed Co-Sponsor Rep. Will Guzzardi,2023-03-22,[],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Education,2023-05-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0180,2023-06-30,['became-law'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-19,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +House Floor Amendment No. 3 Fiscal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-05-22,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Do Pass Executive; 011-000-001,2023-05-17,['committee-passage'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Castro,2023-05-19,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-25,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 009-000-000,2023-05-18,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Lakesia Collins,2023-05-08,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Norine K. Hammond,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Sonya M. Harper,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-04-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-23,[],IL,103rd +Third Reading - Consideration Postponed,2023-05-17,['reading-3'],IL,103rd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Jaime M. Andrade, Jr.",2024-05-29,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-12,['reading-3'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Martwick,2023-05-19,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2023-03-27,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lakesia Collins,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-22,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-10,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Referred to Rules Committee,2024-05-03,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-09,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Public Act . . . . . . . . . 103-0732,2024-08-02,['became-law'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Recalled to Second Reading,2023-05-17,['reading-2'],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2023-11-08,[],IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-16,['amendment-failure'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-05-04,[],IL,103rd +House Floor Amendment No. 4 Adopted,2024-05-22,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-03-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-04-25,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-14,[],IL,103rd +Do Pass Transportation; 013-001-000,2024-05-08,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Assigned to Licensed Activities,2024-04-30,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Mental Health & Addiction Committee; 017-000-000,2023-05-11,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 3 Adopted,2024-05-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-24,['amendment-introduction'],IL,103rd +Postponed - Education,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-17,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +First Reading,2024-05-21,['reading-1'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-04-24,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted State Government Administration Committee; 005-003-000,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-03,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 24, 2024",2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Julie A. Morrison,2024-05-24,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Fiscal Note Requested as Amended by Rep. Dan Caulkins,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-05-19,[],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lawrence ""Larry"" Walsh, Jr.",2024-05-28,[],IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. La Shawn K. Ford,2024-04-11,[],IL,103rd +Chief Senate Sponsor Sen. Sara Feigenholtz,2024-04-30,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Health Care Availability & Accessibility Committee,2024-04-15,[],IL,103rd +Do Pass as Amended Education; 012-000-000,2024-05-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-02-05,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0598,2024-07-01,['became-law'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-04,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-17,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Recalled to Second Reading,2023-05-18,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-07-31,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-05-02,[],IL,103rd +Public Act . . . . . . . . . 103-0633,2024-07-01,['became-law'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-15,[],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. William ""Will"" Davis",2024-05-07,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-23,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2024-05-01,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2023-05-17,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +"Placed on Calendar Order of 3rd Reading March 31, 2023",2023-03-30,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0743,2024-08-02,['became-law'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Terra Costa Howard,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +First Reading,2023-04-25,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-05-02,[],IL,103rd +House Floor Amendment No. 2 Tabled,2023-03-23,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-13,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Mike Porfirio,2023-05-09,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. John F. Curran,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Steve McClure,2023-05-05,['amendment-introduction'],IL,103rd +Public Act . . . . . . . . . 103-0014,2023-06-09,['became-law'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 008-000-000,2023-05-04,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-16,[],IL,103rd +Waive Posting Notice,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-04,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-03-16,[],IL,103rd +First Reading,2024-05-17,['reading-1'],IL,103rd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-05-05,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Public Act . . . . . . . . . 103-1018,2024-08-09,['became-law'],IL,103rd +House Concurs,2024-05-24,[],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 056-000-000,2023-05-19,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-02,[],IL,103rd +"Alternate Co-Sponsor Removed Rep. Michael J. Coffey, Jr.",2024-05-14,[],IL,103rd +Sent to the Governor,2024-06-26,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Cristina Castro,2023-11-07,['filing'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-21,[],IL,103rd +Chief Senate Sponsor Sen. Sue Rezin,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2024-05-25,['amendment-failure'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2024-05-22,[],IL,103rd +Assigned to Consumer Protection Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2024-05-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Human Services Committee,2024-05-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-12,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0246,2023-06-30,['became-law'],IL,103rd +Do Pass as Amended Revenue; 007-000-000,2024-05-15,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0829,2024-08-09,['became-law'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Financial Institutions and Licensing Committee,2024-05-20,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-18,[],IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +Do Pass / Short Debate Transportation: Vehicles & Safety; 011-000-000,2024-05-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-04-16,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 010-001-000,2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Public Health Committee,2024-05-13,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-09,['amendment-passage'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 105-000-001,2024-05-25,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-18,[],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 106-001-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Transportation; 012-000-000,2024-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-17,[],IL,103rd +3/5 Vote Required,2023-11-08,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-21,['amendment-failure'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2024-05-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Bob Morgan,2024-05-07,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 089-026-000,2023-05-16,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 075-038-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-05-15,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Insurance Committee,2024-04-17,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-04-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-17,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2023-04-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-03-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 010-000-000,2024-05-22,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Rachel Ventura,2023-05-16,['filing'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0845,2024-08-09,['became-law'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Home Rule Note Requested as Amended by Rep. Jay Hoffman,2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0889,2024-08-09,['became-law'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Education,2023-05-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-0222,2023-06-30,['became-law'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Senate Concurs 056-000-000,2023-05-19,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-20,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-23,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +State Debt Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2024-05-21,['amendment-passage'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Thaddeus Jones,2024-04-16,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Bill Cunningham,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-15,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-04-15,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0873,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-09,[],IL,103rd +First Reading,2024-05-15,['reading-1'],IL,103rd +Pension Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-05-09,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-20,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-05-07,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-07,[],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Kam Buckner,2023-05-16,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-23,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 114-000-000,2023-05-17,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-03-31,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2023-03-30,[],IL,103rd +Arrive in Senate,2023-04-20,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-04-19,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-28,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-05,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-05-28,['referral-committee'],IL,103rd +Motion to Suspend Rule 21 - Prevailed 070-037-000,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-11,[],IL,103rd +3/5 Vote Required,2023-10-25,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 012-000-000,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-03-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0479,2023-08-04,['became-law'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-05-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2023-11-07,['amendment-introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Matt Hanson,2023-05-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Win Stoller,2024-05-20,[],IL,103rd +Governor Approved,2023-12-08,['executive-signature'],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Neil Anderson,2023-05-09,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-04-18,[],IL,103rd +"Effective Date December 8, 2023",2023-12-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-04-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-22,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0194,2023-06-30,['became-law'],IL,103rd +Referred to Rules Committee,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-05-04,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-11,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-24,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-04-30,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 107-000-000,2023-05-26,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2023-05-05,['amendment-introduction'],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Pacione-Zayas,2023-05-10,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-05-09,[],IL,103rd +Assigned to Revenue & Finance Committee,2024-01-31,['referral-committee'],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 018-010-000,2023-05-19,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-04-10,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Sue Rezin,2023-11-07,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-23,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-11-07,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +"Effective Date January 1, 2024",2023-12-08,[],IL,103rd +Chief Sponsor Changed to Rep. Will Guzzardi,2023-05-08,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Counties & Townships Committee; 009-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0577,2023-12-08,['became-law'],IL,103rd +Senate Floor Amendment No. 5 Referred to Assignments,2023-05-09,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 072-036-000,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 11, 2023",2023-05-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-19,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-23,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-11,[],IL,103rd +Assigned to State Government Administration Committee,2023-04-11,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 012-000-000,2023-05-19,[],IL,103rd +Correctional Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +"Alternate Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-23,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +House Concurs,2023-05-26,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 008-004-000,2023-05-26,['committee-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2023-03-29,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Harry Benton,2023-05-25,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-11,[],IL,103rd +Third Reading - Short Debate - Passed 067-035-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 074-035-004,2023-10-25,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-03-23,[],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-16,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-11-07,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-01-31,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary Beth Canty,2024-03-11,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-08,['reading-3'],IL,103rd +Recalled to Second Reading,2023-05-25,['reading-2'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2023-05-11,[],IL,103rd +Arrive in Senate,2023-03-22,['introduction'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2023-04-10,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2023-05-19,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 075-040-000,2023-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-05-06,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-05,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-03-30,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2023-05-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-05-08,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-04-17,[],IL,103rd +Land Conveyance Appraisal Note Filed,2024-05-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2023-04-19,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Assigned to Insurance,2023-04-18,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-04-03,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-16,[],IL,103rd +Public Act . . . . . . . . . 103-0842,2024-08-09,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Assigned to Education,2024-04-30,['referral-committee'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Public Act . . . . . . . . . 103-0884,2024-08-09,['became-law'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2024-05-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jackie Haas,2024-05-22,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 4 Tabled Pursuant to Rule 5-4(a),2024-05-25,['amendment-failure'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 013-000-000,2024-05-16,['committee-passage-favorable'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Third Reading - Passed; 047-012-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 5 Withdrawn by Sen. Rachel Ventura,2023-05-11,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2023-05-16,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Public Health Committee; 009-000-000,2024-05-16,['committee-passage-favorable'],IL,103rd +Third Reading - Short Debate - Passed 089-020-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Lindsey LaPointe,2023-03-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 15, 2023",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2024-05-10,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-05-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 012-000-000,2023-05-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Racial Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nicholas K. Smith,2024-04-25,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-18,[],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +Recalled to Second Reading - Short Debate,2024-04-19,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Laura Faver Dias,2023-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-15,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 008-000-000,2024-05-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2024-04-30,['amendment-introduction'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-17,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-04-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Recalled to Second Reading,2023-11-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Diane Blair-Sherlock,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-17,[],IL,103rd +Third Reading - Passed; 054-002-000,2023-11-08,"['passage', 'reading-3']",IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-04-16,[],IL,103rd +Referred to Assignments,2024-05-15,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +State Mandates Fiscal Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 115-000-000,2024-05-24,[],IL,103rd +Do Pass as Amended Environment and Conservation; 008-000-000,2024-05-09,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2024-05-14,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Public Act . . . . . . . . . 103-0974,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Transportation: Vehicles & Safety,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-23,[],IL,103rd +Do Pass / Short Debate Executive Committee; 012-000-000,2023-04-26,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-15,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +House Committee Amendment No. 1 Adopted in Financial Institutions and Licensing Committee; by Voice Vote,2024-05-20,['amendment-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-01,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 008-004-000,2024-05-21,['committee-passage'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 2 Housing Affordability Impact Note Requested as Amended by Rep. Jay Hoffman,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 103-000-000,2024-05-25,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Sheehan,2024-04-29,[],IL,103rd +Third Reading - Short Debate - Passed 079-024-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Dan Caulkins,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 5 Referred to Assignments,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-07-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-19,[],IL,103rd +"Senate Floor Amendment No. 2 Motion Filed Concur Rep. Lawrence ""Larry"" Walsh, Jr.",2024-05-28,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Assigned to Human Services Committee,2024-03-05,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 065-036-006,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2024-05-09,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Hunter,2023-05-18,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +House Floor Amendment No. 4 Rules Refers to Health Care Availability & Accessibility Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Insurance,2024-05-21,[],IL,103rd +Public Act . . . . . . . . . 103-0597,2024-07-01,['became-law'],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-03-14,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Referred to Assignments,2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-06-14,[],IL,103rd +Assigned to State Government,2024-05-01,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-05-16,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-10,[],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. La Shawn K. Ford,2024-04-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-07-16,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-05-18,[],IL,103rd +Fiscal Note Filed,2024-05-02,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Behavioral and Mental Health; 006-000-000,2023-05-10,[],IL,103rd +Referred to Assignments,2024-05-17,[],IL,103rd +Referred to Assignments,2023-04-25,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; State Government,2023-05-10,['amendment-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-05,[],IL,103rd +Do Pass Judiciary; 006-002-000,2024-05-08,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Brandun Schweizer,2024-05-02,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Judiciary - Civil Committee,2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-23,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-12,['referral-committee'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-05,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Omar Aquino,2024-05-01,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-05-25,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-05-18,[],IL,103rd +"Effective Date July 1, 2023",2023-06-09,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Harry Benton,2024-04-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-13,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-03,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-04-18,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-05-05,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-21,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-22,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Correctional Note Filed as Amended,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2023-05-24,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt State Government; 008-000-000,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2023-05-02,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-23,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-16,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. John M. Cabello,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2024-05-28,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Norma Hernandez,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-03-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Chief House Sponsor Rep. Sharon Chung,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-18,[],IL,103rd +Assigned to Executive Committee,2024-05-16,['referral-committee'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jay Hoffman,2023-11-09,['amendment-introduction'],IL,103rd +"Motion Withdrawn Rep. Emanuel ""Chris"" Welch",2024-06-03,[],IL,103rd +House Floor Amendment No. 1 Withdrawn by Rep. Dagmara Avelar,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2023-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-05-14,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-24,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2024-03-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2023-05-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2023-04-27,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-05,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-25,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-08,[],IL,103rd +3/5 Vote Required,2024-05-29,[],IL,103rd +Assigned to Insurance,2024-04-24,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-17,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2023-10-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Postponed - Behavioral and Mental Health,2023-04-19,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2024-04-18,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0089,2023-06-09,['became-law'],IL,103rd +House Committee Amendment No. 3 Rules Refers to Adoption & Child Welfare Committee,2024-04-24,[],IL,103rd +Third Reading - Short Debate - Passed 106-003-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-04-30,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-04-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-05-22,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-03,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Eva-Dina Delgado,2023-05-01,[],IL,103rd +Public Act . . . . . . . . . 103-0921,2024-08-09,['became-law'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2024-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-02,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-03-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tracy Katz Muhl,2024-04-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2024-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-04-28,[],IL,103rd +Public Act . . . . . . . . . 103-0904,2024-08-09,['became-law'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2024-04-17,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 008-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Lawrence ""Larry"" Walsh, Jr.",2023-11-02,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0251,2023-06-30,['became-law'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 15, 2023",2023-05-11,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-21,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-21,[],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2024-04-24,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Revenue & Finance Committee; 011-006-000,2023-05-04,['committee-passage-favorable'],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-21,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2023-04-12,[],IL,103rd +Referred to Rules Committee,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-18,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-05-14,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2024-05-16,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-09,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Chief Sponsor Changed to Rep. Kelly M. Cassidy,2024-05-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-05-09,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Assigned to State Government Administration Committee,2023-05-02,['referral-committee'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2024-05-02,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 053-001-000,2023-05-24,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Small Business, Tech Innovation, and Entrepreneurship Committee",2024-05-15,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Labor; 013-003-000,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2024-05-23,[],IL,103rd +Do Pass / Short Debate Gaming Committee; 010-001-000,2023-04-27,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Donald P. DeWitte,2024-05-21,['filing'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-16,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-20,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Environment and Conservation,2024-05-23,[],IL,103rd +Assigned to Judiciary,2024-05-07,['referral-committee'],IL,103rd +Chief House Sponsor Rep. Michael J. Kelly,2023-03-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-04-24,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-05-01,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-06-03,[],IL,103rd +"House Floor Amendment No. 3 Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 011-006-000",2023-05-09,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-05-15,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Kimberly A. Lightford,2023-05-16,['filing'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 011-000-000,2024-04-10,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-26,['amendment-failure'],IL,103rd +House Floor Amendment No. 6 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-05-09,[],IL,103rd +Assigned to Insurance,2024-04-30,['referral-committee'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2024-05-22,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-11-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2024-05-02,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tracy Katz Muhl,2024-05-25,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2024-04-30,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2024-05-15,[],IL,103rd +Third Reading - Short Debate - Passed 086-020-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4a,2024-04-10,['amendment-failure'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Restorative Justice,2024-04-18,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-15,[],IL,103rd +Public Act . . . . . . . . . 103-0611,2024-07-01,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-12-13,[],IL,103rd +Public Act . . . . . . . . . 103-0709,2024-07-19,['became-law'],IL,103rd +House Committee Amendment No. 1 Adopted in Appropriations-Health & Human Services Committee; by Voice Vote,2023-05-04,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-05-08,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Erica Harriss,2024-04-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-09,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Koehler,2023-05-11,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-0122,2023-06-30,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-21,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Judiciary,2023-04-25,[],IL,103rd +Third Reading - Passed; 040-016-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-24,[],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-22,[],IL,103rd +Third Reading - Short Debate - Passed 074-039-000,2023-05-03,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0435,2023-08-04,['became-law'],IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-05-18,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-12,['referral-committee'],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Public Act . . . . . . . . . 103-0316,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2024-05-16,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-17,[],IL,103rd +Remove Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-02-08,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-08,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-10,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-21,[],IL,103rd +Do Pass Labor; 015-000-000,2023-04-27,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Pacione-Zayas,2023-05-19,['amendment-passage'],IL,103rd +3/5 Vote Required,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Higher Education Committee,2023-05-15,[],IL,103rd +Do Pass as Amended Public Health; 005-001-000,2023-04-26,['committee-passage'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-25,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-04-18,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Adopted; Labor,2023-04-26,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-04-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Senate Special Committee on Pensions,2023-05-16,[],IL,103rd +Governor Approved,2023-08-03,['executive-signature'],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-03-07,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0344,2023-07-28,['became-law'],IL,103rd +Assigned to Veterans Affairs,2023-04-12,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Higher Education,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2023-11-07,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mattie Hunter,2024-03-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 5 Filed with Secretary by Sen. Christopher Belt,2023-05-16,['amendment-introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2023-05-04,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Recalled to Second Reading,2023-05-19,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-02,[],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mary Edly-Allen,2023-04-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2023",2023-05-16,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-28,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-05-01,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2024-05-26,[],IL,103rd +Postponed - Licensed Activities,2024-05-08,[],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-06-28,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Kimberly Du Buclet,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Availability & Accessibility Committee; 007-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-25,['reading-3'],IL,103rd +Third Reading - Passed; 039-014-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 2 Adopted; Education,2023-05-02,['amendment-passage'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-28,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Mary E. Flowers,2023-05-03,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Third Reading - Short Debate - Lost 057-048-000,2023-05-17,"['failure', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-03-23,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-18,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Harmon,2023-05-19,['amendment-passage'],IL,103rd +Second Reading,2023-05-15,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-04-20,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-19,[],IL,103rd +Second Reading,2023-04-26,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-08,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-05-22,[],IL,103rd +Placed on Calendar Order of First Reading,2023-04-20,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-10,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-05-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2, 3 - May 19, 2023",2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-02-23,[],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2023-04-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-02-28,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-11-07,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-04-27,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Mental Health & Addiction Committee; 019-000-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Do Pass Executive; 009-001-000,2023-04-20,['committee-passage'],IL,103rd +Do Pass Executive; 008-003-000,2024-05-09,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 House Concurs 098-016-000,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-04-20,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 086-027-000,2023-05-17,[],IL,103rd +Postponed - Health and Human Services,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 3 Approved For Consideration- Pursuant to Senate Rule 3-8 (d-10),2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Preston,2023-05-04,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-24,[],IL,103rd +Assigned to Executive,2023-05-18,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Adriane Johnson,2023-05-18,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Celina Villanueva,2024-05-25,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-05-24,[],IL,103rd +"Senate Floor Amendment No. 2 Motion Filed Concur Rep. Marcus C. Evans, Jr.",2023-05-26,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0326,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-02,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Michelle Mussman,2023-05-17,[],IL,103rd +House Floor Amendment No. 2 Home Rule Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2023-05-24,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2023-05-17,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2024-03-12,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Third Reading - Short Debate - Passed 070-036-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kevin John Olickal,2024-05-21,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Barbara Hernandez,2023-05-17,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Hoan Huynh,2023-11-08,['amendment-introduction'],IL,103rd +Arrived in House,2023-10-26,['introduction'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2023-08-28,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-28,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-1052,2024-08-12,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Licensed Activities; 006-000-000,2024-05-23,[],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-05-17,['amendment-failure'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +"Added Alternate Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-04-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-03-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-04-14,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2023-05-11,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-05-08,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Chapin Rose,2024-05-21,['filing'],IL,103rd +House Floor Amendment No. 2 Home Rule Note Requested as Amended by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Adriane Johnson,2023-05-16,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2024-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-27,[],IL,103rd +Fiscal Note Requested by Rep. Patrick Windhorst,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Meg Loughran Cappel,2023-04-27,['amendment-introduction'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 3 Tabled,2024-04-18,['amendment-failure'],IL,103rd +House Floor Amendment No. 1 Senate Concurs 051-003-001,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-11,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-04-26,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-05-26,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-18,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2023-10-31,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Johnson,2023-05-11,['amendment-passage'],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Transportation: Regulations, Roads & Bridges",2023-05-18,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 083-028-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Karina Villa,2023-05-16,['filing'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-02,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-04-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy L. Grant,2024-04-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Health and Human Services,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Laura Faver Dias,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 4 Adopted; Cervantes,2023-11-07,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-05-19,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading March 21, 2023",2023-03-10,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 21, 2024",2024-05-21,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Adriane Johnson,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joe C. Sosnowski,2024-05-14,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0380,2023-07-28,['became-law'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Barbara Hernandez,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Michael E. Hastings,2024-04-10,['amendment-introduction'],IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2024-05-07,[],IL,103rd +Correctional Note Request is Inapplicable,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-18,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Third Reading - Short Debate - Passed 071-030-001,2024-05-22,"['passage', 'reading-3']",IL,103rd +Recalled to Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-05-02,[],IL,103rd +Public Act . . . . . . . . . 103-0099,2023-06-09,['became-law'],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-05-04,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Castro,2024-05-24,['amendment-passage'],IL,103rd +Do Pass State Government; 006-000-000,2024-05-22,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As April 19, 2024",2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Kimberly A. Lightford,2023-05-16,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-08,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Third Reading - Passed; 057-001-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2023-04-25,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 3 - May 23, 2024",2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-18,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2023-04-20,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Judicial Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Michael E. Hastings,2024-05-25,['amendment-introduction'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-24,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Sent to the Governor,2024-06-12,['executive-receipt'],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-12,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-16,[],IL,103rd +Public Act . . . . . . . . . 103-0275,2023-07-28,['became-law'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Villa,2023-05-17,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-04-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Public Act . . . . . . . . . 103-0670,2024-07-19,['became-law'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-06,[],IL,103rd +Public Act . . . . . . . . . 103-0665,2024-07-19,['became-law'],IL,103rd +Passed Both Houses,2024-05-21,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0733,2024-08-02,['became-law'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Public Act . . . . . . . . . 103-0748,2024-08-02,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-14,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0695,2024-07-19,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-04-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-24,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2024-05-02,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-10,[],IL,103rd +Do Pass Licensed Activities; 007-000-000,2024-05-08,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Matt Hanson,2024-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2024-05-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-03-28,[],IL,103rd +Third Reading - Short Debate - Passed 077-037-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-04-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2024-05-21,[],IL,103rd +Recalled to Second Reading,2023-11-08,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2024-05-16,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-03-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2024-05-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 22, 2024",2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-07,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Katie Stuart,2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-04-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2023-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 27, 2023",2023-04-26,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-26,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-04,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-02-28,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-19,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-03,[],IL,103rd +Chief Sponsor Changed to Sen. Suzy Glowiak Hilton,2023-05-24,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-10-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Higher Education Committee,2023-05-15,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-11-08,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-24,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +House Floor Amendment No. 3 Home Rule Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Arrive in Senate,2024-05-22,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Martin J. Moylan,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 109-000-000,2023-05-19,[],IL,103rd +Motion Filed to Suspend Rule 21 Elementary & Secondary Education: School Curriculum & Policies Committee; Rep. Kam Buckner,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-08,[],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Margaret Croke,2024-03-13,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-05-04,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Health Care Licenses Committee,2023-05-09,[],IL,103rd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Energy & Environment Committee,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-04-20,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Do Pass as Amended Education; 011-003-000,2023-05-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-03-23,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-05-25,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Arrive in Senate,2023-05-15,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-08-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 16, 2023",2023-05-15,['reading-3'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Rachel Ventura,2023-05-18,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Castro,2023-05-19,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-04-25,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-12,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-04-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 House Concurs 098-016-000,2023-05-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Janet Yang Rohr,2023-05-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-11-08,[],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2023-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 085-022-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-25,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-19,[],IL,103rd +Assigned to Executive,2023-04-18,['referral-committee'],IL,103rd +Assigned to Insurance,2023-04-12,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 21, 2023",2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2024-05-24,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-17,[],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2024-04-17,[],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-22,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Maura Hirschauer,2024-05-20,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-05-09,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Correctional Note Requested by Rep. Kelly M. Cassidy,2023-05-03,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2024-05-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2023-04-24,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Karina Villa,2023-05-16,['filing'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 22, 2024",2024-05-22,['reading-2'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Ellman,2024-05-21,['amendment-introduction'],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Dan Caulkins,2023-04-25,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0259,2023-06-30,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-28,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-26,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2023-04-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-25,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 026-000-000,2023-04-26,['committee-passage'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Fiscal Note Request is Inapplicable,2023-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2023-03-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Bill Cunningham,2024-05-23,['filing'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-05-04,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Immigration & Human Rights Committee; 010-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +"Added Alternate Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-05-08,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-05-18,[],IL,103rd +"Effective Date January 1, 2024",2023-08-11,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Castro,2024-05-24,['amendment-passage'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2024-04-17,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-05-02,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Appropriations-Elementary & Secondary Education Committee,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-08,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Margaret Croke,2023-05-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2023-05-12,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-11,[],IL,103rd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Christopher Belt,2024-04-16,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-05-19,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +"Motion Filed to Suspend Rule 21 Transportation: Regulations, Roads & Bridges; Rep. Kam Buckner",2023-05-18,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2023-04-14,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 018-000-000,2024-05-09,['committee-passage'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Health and Human Services; 012-000-000,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-08,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-03-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-04-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2024-04-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0378,2023-07-28,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-04-27,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2024-04-24,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-15,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +House Floor Amendment No. 2 Housing Affordability Impact Note Requested as Amended by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Alternate Co-Sponsor Removed Rep. Marcus C. Evans, Jr.",2023-03-24,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-17,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Judicial Note Requested by Rep. Patrick Windhorst,2023-05-02,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lance Yednock,2023-04-19,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-14,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +House Committee Amendment No. 4 Filed with Clerk by Rep. Robyn Gabel,2024-05-07,['amendment-introduction'],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-04-18,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0093,2023-06-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-05-17,[],IL,103rd +"Effective Date January 1, 2026",2024-07-19,[],IL,103rd +Senate Floor Amendment No. 5 Be Approved for Consideration Assignments,2024-05-24,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2024-05-01,[],IL,103rd +Sponsor Removed Sen. David Koehler,2024-07-10,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-09,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Laura Fine,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-14,[],IL,103rd +Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2024-04-11,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted State Government Administration Committee; 006-003-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2024-05-01,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-0620,2024-07-01,['became-law'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-05-16,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anna Moeller,2024-03-06,['amendment-introduction'],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-04-21,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-11,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-10-25,[],IL,103rd +Third Reading - Passed; 053-003-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-25,[],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2023-05-10,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-11,[],IL,103rd +"Added Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2024-05-23,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +Senate Floor Amendment No. 2 Postponed - Executive,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-20,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. David Friess,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-08,[],IL,103rd +Motion Filed to Suspend Rule Rep. Jay Hoffman,2023-05-17,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-03-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-19,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-12,['referral-committee'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 5 Assignments Refers to Transportation,2023-05-10,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Sue Rezin,2023-11-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2023-04-25,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Stadelman,2023-05-25,['amendment-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Natalie Toro,2024-05-26,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2023-04-27,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-06,[],IL,103rd +Referred to Assignments,2023-05-09,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-04-03,[],IL,103rd +Passed Both Houses,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-05-23,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 16, 2023",2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Wayne A Rosenthal,2023-04-19,[],IL,103rd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2024-05-26,['amendment-introduction'],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Margaret Croke,2024-02-20,['amendment-introduction'],IL,103rd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2023-05-11,[],IL,103rd +Removed Co-Sponsor Rep. Will Guzzardi,2023-05-08,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Removed Co-Sponsor Rep. Jeff Keicher,2023-03-23,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-03-07,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-26,['reading-2'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Fiscal Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura Fine,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-04-25,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-17,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Balanced Budget Note Requested by Rep. Will Guzzardi,2024-05-27,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Chief Senate Sponsor Sen. Doris Turner,2023-03-22,[],IL,103rd +3/5 Vote Required,2023-11-08,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-22,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0572,2023-12-08,['became-law'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Assigned to Veterans Affairs,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-11-07,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-21,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Third Reading - Short Debate - Passed 073-039-001,2024-05-21,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2024-04-17,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-04-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tracy Katz Muhl,2024-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Assigned to Executive,2024-04-30,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anthony DeLuca,2024-04-30,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-16,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +State Debt Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-21,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Assigned to Health and Human Services,2024-05-20,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Charles Meier,2024-05-14,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Do Pass as Amended / Short Debate Financial Institutions and Licensing Committee; 011-000-000,2024-05-20,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-05-02,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-04-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Patrick Windhorst,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Education,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-18,[],IL,103rd +Public Act . . . . . . . . . 103-0877,2024-08-09,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +"Effective Date June 1, 2024",2023-07-05,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Meg Loughran Cappel,2023-05-16,['filing'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Senate Floor Amendment No. 6 Adopted; Ventura,2023-05-11,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-05-15,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2024-05-23,['filing'],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2024-05-13,['amendment-introduction'],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-25,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0973,2024-08-09,['became-law'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-09,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 17, 2023",2023-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-1005,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Environment and Conservation; 008-000-000,2024-05-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-20,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Tom Bennett,2024-05-16,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-15,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-04-26,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Transportation: Vehicles & Safety; 009-000-000,2024-05-21,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 5 Tabled Pursuant to Rule 5-4(a),2024-05-25,['amendment-failure'],IL,103rd +House Committee Amendment No. 1 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Charles Meier,2024-05-22,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Concurs,2024-05-24,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Arrive in Senate,2024-05-21,['introduction'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2024-05-07,[],IL,103rd +Arrived in House,2023-11-08,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-24,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Karina Villa,2024-05-25,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-04-30,[],IL,103rd +Public Act . . . . . . . . . 103-0236,2023-06-30,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2024-05-16,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2024-05-21,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-05-22,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-21,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 1 Withdrawn by Sen. Patrick J. Joyce,2023-11-08,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Licensed Activities,2023-05-09,[],IL,103rd +To Subcommittee on CLEAR Compliance,2023-04-20,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Public Act . . . . . . . . . 103-0776,2024-08-02,['became-law'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Brad Stephens,2024-04-16,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Assigned to Public Health,2023-04-25,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Veterans Affairs,2023-05-10,[],IL,103rd +Sponsor Removed Sen. Mary Edly-Allen,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Housing Affordability Impact Note Filed as Amended,2023-05-17,[],IL,103rd +Sent to the Governor,2024-06-07,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 2 Adopted; State Government,2023-05-10,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0015,2023-06-09,['became-law'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 009-000-000,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-11,[],IL,103rd +"House Committee Amendment No. 3 Filed with Clerk by Rep. William ""Will"" Davis",2024-05-09,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2023-03-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-23,[],IL,103rd +Public Act . . . . . . . . . 103-0739,2024-08-02,['became-law'],IL,103rd +Do Pass Licensed Activities; 007-000-000,2024-05-08,['committee-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2024-05-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Third Reading - Passed; 036-019-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 014-000-000,2023-05-16,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Public Act . . . . . . . . . 103-0426,2023-08-04,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2023-05-02,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2024-05-16,[],IL,103rd +"Alternate Chief Sponsor Changed to Sen. Napoleon Harris, III",2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2024-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2024-05-26,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2024-05-26,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Meg Loughran Cappel,2024-05-09,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-04-30,[],IL,103rd +"Effective Date January 1, 2025",2024-07-08,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-12,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-04-19,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Restorative Justice; 005-003-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-04-06,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-05-15,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-15,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Julie A. Morrison,2024-04-30,[],IL,103rd +House Committee Amendment No. 2 Adopted in Appropriations-Health & Human Services Committee; by Voice Vote,2023-05-04,['amendment-passage'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-11-07,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-09,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2023-04-20,[],IL,103rd +Do Pass Revenue; 007-000-000,2024-05-22,['committee-passage'],IL,103rd +Arrived in House,2024-04-10,['introduction'],IL,103rd +House Floor Amendment No. 4 Rules Refers to Insurance Committee,2023-05-08,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 4 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-25,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-09,[],IL,103rd +Sent to the Governor,2024-06-06,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2024-05-15,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-11-09,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-21,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Assigned to Executive Committee,2024-03-05,['referral-committee'],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2023-04-26,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 072-038-000,2024-05-29,[],IL,103rd +Second Reading - Short Debate,2024-04-18,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-05-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2023-05-19,[],IL,103rd +Postponed - Insurance,2024-04-30,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-05-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-05-09,[],IL,103rd +Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 115-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. La Shawn K. Ford,2023-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-05-05,[],IL,103rd +First Reading,2023-05-12,['reading-1'],IL,103rd +Removed Co-Sponsor Rep. Robyn Gabel,2024-03-07,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Senate Special Committee on Pensions,2023-05-17,[],IL,103rd +Fiscal Note Requested by Rep. Ryan Spain,2024-04-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-04-27,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Paul Faraci,2023-04-20,['amendment-introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2023-05-03,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-17,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-08,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-20,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 24, 2024",2024-05-16,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Judiciary - Criminal Committee,2023-05-25,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-02,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2023-10-31,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Severin,2023-04-24,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 085-023-000,2024-05-14,"['passage', 'reading-3']",IL,103rd +Removed Co-Sponsor Rep. Lilian Jiménez,2024-04-03,[],IL,103rd +Passed Both Houses,2024-06-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-04-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 24, 2024",2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2023-05-16,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-15,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Will Guzzardi,2023-04-28,[],IL,103rd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Lawrence ""Larry"" Walsh, Jr.",2023-11-02,['amendment-introduction'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-05-04,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0498,2023-08-04,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-10,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-05-10,[],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Robert ""Bob"" Rita",2023-10-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0400,2023-07-28,['became-law'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-10,[],IL,103rd +House Floor Amendment No. 3 Balanced Budget Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 008-000-000,2024-05-15,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +Third Reading - Short Debate - Passed 086-027-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2023-05-09,[],IL,103rd +Third Reading - Short Debate - Passed 093-017-001,2023-05-11,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2023-05-02,[],IL,103rd +House Floor Amendment No. 2 Judicial Note Requested as Amended by Rep. Jay Hoffman,2024-05-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-10,[],IL,103rd +Sponsor Removed Sen. Andrew S. Chesney,2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-04-10,[],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-04-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 039-018-000,2024-05-24,[],IL,103rd +Sponsor Removed Sen. Sue Rezin,2024-05-21,[],IL,103rd +Senate Concurs,2023-05-24,[],IL,103rd +Do Pass Education; 009-004-000,2024-05-07,['committee-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Lakesia Collins,2024-05-17,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-02,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-27,[],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2024-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-05-14,[],IL,103rd +Assigned to Executive Committee,2023-04-11,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Will Guzzardi,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 5 Adopted; Cervantes,2023-11-07,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2024-04-11,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Motion Filed to Suspend Rule 21 Police & Fire Committee; Rep. Kam Buckner,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-05-24,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-23,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-04-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2024-05-23,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 21, 2024",2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2024-05-09,[],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Labor & Commerce Committee; 029-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Gregg Johnson,2024-04-16,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-17,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Third Reading - Short Debate - Passed 086-022-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 2 Adopted in Adoption & Child Welfare Committee; by Voice Vote,2024-04-30,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-0897,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-09,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-21,[],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Small Business, Tech Innovation, and Entrepreneurship Committee; 010-000-000",2024-05-16,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Postponed - Senate Special Committee on Pensions,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-05-17,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0311,2023-07-28,['became-law'],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +"Effective Date January 1, 2025",2023-08-11,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-04-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Do Pass Judiciary; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 5 Referred to Assignments,2023-05-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-04-25,['amendment-passage'],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Transportation: Vehicles & Safety,2023-05-02,[],IL,103rd +Balanced Budget Note Requested by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2023-04-21,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Correctional Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-09,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-08,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-22,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2023-04-18,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Special Committee on Criminal Law and Public Safety,2023-04-19,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-21,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-03,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-03-21,[],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-09,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-05-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura Fine,2023-04-05,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-04-26,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-03-23,[],IL,103rd +3/5 Vote Required,2023-11-07,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Porfirio,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-03-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-24,[],IL,103rd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-03-08,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-04-25,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 042-012-000,2023-11-08,"['passage', 'reading-3']",IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-23,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0288,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-04,[],IL,103rd +Third Reading - Passed; 040-017-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Third Reading - Passed; 054-000-001,2023-05-19,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Tabled,2023-05-03,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Villivalam,2023-05-19,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Higher Education Committee; 009-000-000,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Koehler,2023-05-11,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kevin Schmidt,2023-03-15,['amendment-introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2023-05-04,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-05-17,[],IL,103rd +"Effective Date August 3, 2023",2023-08-03,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Paul Faraci,2023-04-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2023-03-29,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2023-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-04-08,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Police & Fire Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-11,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-11-08,[],IL,103rd +Arrive in Senate,2023-05-04,['introduction'],IL,103rd +Third Reading - Passed; 054-000-000,2023-11-07,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-03-24,[],IL,103rd +Senate Floor Amendment No. 4 Adopted; Villivalam,2023-05-19,['amendment-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2023-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Balanced Budget Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Public Act . . . . . . . . . 103-0522,2023-08-11,['became-law'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-22,['amendment-passage'],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 006-003-000,2023-04-27,['committee-passage'],IL,103rd +Senate Committee Amendment No. 2 Adopted; Judiciary,2023-04-26,['amendment-passage'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-17,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-18,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-17,['amendment-failure'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-23,[],IL,103rd +"Do Pass as Amended / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-03-08,['committee-passage'],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Public Act . . . . . . . . . 103-0412,2023-08-03,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Senate Special Committee on Pensions; 011-000-000,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Higher Education; 012-000-000,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-05-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Sara Feigenholtz,2023-03-27,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-05-24,[],IL,103rd +Do Pass as Amended Labor; 015-000-000,2023-04-27,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-02-10,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Don Harmon,2023-11-09,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-09,[],IL,103rd +Do Pass as Amended Special Committee on Criminal Law and Public Safety; 010-000-000,2023-04-20,['committee-passage'],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Karina Villa,2023-05-17,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 114-000-000,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-04-27,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-19,['amendment-failure'],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-08,[],IL,103rd +Arrive in Senate,2024-05-14,['introduction'],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-05-04,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Rita Mayfield,2023-05-02,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Revenue & Finance Committee; 018-000-000,2023-11-08,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Removed Co-Sponsor Rep. Robyn Gabel,2024-03-07,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-10,[],IL,103rd +Balanced Budget Note Requested by Rep. Bradley Fritts,2024-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-05-09,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lindsey LaPointe,2023-04-28,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-15,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2024-05-22,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Executive Committee,2023-11-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-18,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Energy & Environment Committee,2023-04-25,[],IL,103rd +Public Act . . . . . . . . . 103-0363,2023-07-28,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-10-31,[],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Porfirio,2023-05-05,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Debbie Meyers-Martin,2023-05-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-05-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-05-25,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2023-05-04,[],IL,103rd +House Concurs,2024-05-29,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Justin Slaughter,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 013-000-000,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Referred to Rules Committee,2023-05-12,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Senate Special Committee on Pensions,2023-05-17,[],IL,103rd +Approved for Consideration Assignments,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-08,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2023-05-03,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Anne Stava-Murray,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2024-05-26,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-04-30,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-0715,2024-07-19,['became-law'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Robyn Gabel,2024-05-25,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2024-05-16,[],IL,103rd +Do Pass as Amended / Short Debate Appropriations-Health & Human Services Committee; 015-008-000,2023-05-04,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Third Reading - Passed; 057-001-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tony M. McCombie,2024-05-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 22, 2024",2024-05-22,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2024-04-16,[],IL,103rd +"Effective Date July 19, 2024",2024-07-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-16,[],IL,103rd +Assigned to Transportation,2024-05-07,['referral-committee'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-11-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Chief House Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-05-09,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-12,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2023-05-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Paul Jacobs,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-01,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-17,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0917,2024-08-09,['became-law'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Michael J. Kelly,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2024-05-21,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-11-02,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Nicole La Ha,2024-05-23,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-03-31,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Energy & Environment Committee; 017-003-000,2023-03-23,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Land Conveyance Appraisal Note Requested as Amended by Rep. Jay Hoffman,2024-05-25,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Assigned to Restorative Justice,2024-05-13,['referral-committee'],IL,103rd +Motion to Suspend Rule 21 - Prevailed 071-039-000,2024-05-22,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2024-05-23,['filing'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2024-05-23,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Financial Institutions,2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2023-05-09,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lilian Jiménez,2023-05-08,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Abdelnasser Rashid,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-05-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-04-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Laura Faver Dias,2024-04-17,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-05-09,[],IL,103rd +Sponsor Removed Sen. Jason Plummer,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2024-05-07,['amendment-introduction'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-05-09,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Arrived in House,2024-04-11,['introduction'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Energy and Public Utilities,2024-05-23,[],IL,103rd +House Floor Amendment No. 4 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 106-001-000,2024-05-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +House Floor Amendment No. 3 Correctional Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Cyril Nichols,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. John M. Cabello,2024-05-23,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Suzanne M. Ness,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-05-14,[],IL,103rd +House Committee Amendment No. 3 Adopted in Adoption & Child Welfare Committee; by Voice Vote,2024-04-30,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-11-07,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Passed Both Houses,2023-05-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Arrived in House,2024-05-17,['introduction'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 15, 2024",2024-05-14,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-1046,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-21,[],IL,103rd +Racial Impact Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-16,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 075-039-000,2023-05-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Matt Hanson,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-08,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +House Committee Amendment No. 4 Referred to Rules Committee,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-20,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +Land Conveyance Appraisal Note Filed,2023-05-11,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Home Rule Note Request is Inapplicable,2023-05-17,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-22,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2023-04-19,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-04-18,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Home Rule Note Requested by Rep. Kelly M. Cassidy,2023-05-03,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-22,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Theresa Mah,2023-05-17,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Chief Sponsor Changed to Sen. Ann Gillespie,2023-05-26,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2024-04-18,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-26,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Castro,2024-05-24,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 112-001-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-16,[],IL,103rd +Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-15,[],IL,103rd +Public Act . . . . . . . . . 103-0864,2024-08-09,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0883,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-05-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anna Moeller,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nabeela Syed,2024-05-08,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-05-04,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Patrick Windhorst,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 011-002-000,2024-05-25,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-08,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0554,2023-08-11,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0217,2023-06-30,['became-law'],IL,103rd +Do Pass Executive; 012-001-000,2024-05-09,['committee-passage'],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-09,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-03,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-05-15,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-04-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-11,[],IL,103rd +Sent to the Governor,2023-06-23,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-04-25,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Higher Education,2023-05-16,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Ann M. Williams,2024-04-18,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Postponed - Executive,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Withdrawn by Rep. Sharon Chung,2024-05-21,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2023-03-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-11,[],IL,103rd +Recalled to Second Reading,2024-04-11,['reading-2'],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Appropriations-Elementary & Secondary Education Committee; 014-000-000,2024-05-16,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Judicial Note Requested as Amended by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +"Placed on Calendar Order of First Reading April 30, 2024",2024-04-24,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2023-05-12,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-12,[],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Police & Fire Committee; 014-000-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-03-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Health and Human Services,2023-05-16,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-04-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Randy E. Frese,2024-04-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Daniel Didech,2023-05-11,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-04-20,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Local Government,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2023-05-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Senate Committee Amendment No. 5 Assignments Refers to Executive,2023-05-17,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Do Pass Insurance; 008-000-000,2023-04-26,['committee-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-05-18,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Celina Villanueva,2024-05-25,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2023-05-04,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-17,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2023-11-08,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-05-12,['amendment-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2023-04-18,[],IL,103rd +Added as Chief Co-Sponsor Sen. Neil Anderson,2023-10-30,[],IL,103rd +Placed on Calendar Order of First Reading,2023-05-15,['reading-1'],IL,103rd +Do Pass Insurance; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Energy & Environment Committee,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-08,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2023-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-26,[],IL,103rd +Third Reading - Passed; 035-019-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 055-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-04,[],IL,103rd +Public Act . . . . . . . . . 103-0024,2023-06-09,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-23,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Second Reading,2023-05-24,['reading-2'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2023-11-08,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-02-28,[],IL,103rd +Chief Sponsor Changed to Rep. Stephanie A. Kifowit,2023-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-04-26,['amendment-passage'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-04,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 4, 2023",2023-05-03,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. William ""Will"" Davis",2023-05-10,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-04,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Suzy Glowiak Hilton,2023-05-24,['filing'],IL,103rd +Third Reading - Passed; 037-016-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2023-03-23,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +First Reading,2023-04-20,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Higher Education Committee; 009-000-000,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-20,[],IL,103rd +Removed Co-Sponsor Rep. Stephanie A. Kifowit,2023-02-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-03-27,[],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2024-03-13,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Rita Mayfield,2023-05-18,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-11-08,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Energy & Environment Committee; 016-006-000,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-04-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-18,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Housing Affordability Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Effective Date June 1, 2024",2023-06-09,[],IL,103rd +Placed on Calendar Order of First Reading,2024-05-22,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2023-05-09,['amendment-introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-08-30,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Willie Preston,2023-05-05,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-23,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 070-038-000,2024-05-28,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Third Reading - Short Debate - Passed 101-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-10,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2024-05-02,[],IL,103rd +Third Reading - Passed; 050-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2024-04-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-06-03,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Sims,2023-11-08,['amendment-passage'],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-05-10,[],IL,103rd +"House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Elgie R. Sims, Jr.",2024-05-23,['filing'],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sally J. Turner,2024-05-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-05-13,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-03-28,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-05-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michael J. Kelly,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-04-26,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary Beth Canty,2024-04-17,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2024-05-07,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-03-12,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-05-09,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Balanced Budget Note Filed as Amended,2023-05-17,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-05-10,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Steve McClure,2023-05-09,['amendment-introduction'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Ram Villivalam,2023-05-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-23,[],IL,103rd +"Motion to Reconsider Vote - Withdrawn Rep. Maurice A. West, II",2023-03-23,[],IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2024-05-09,[],IL,103rd +Recalled to Second Reading,2023-05-19,['reading-2'],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Balanced Budget Note Filed,2023-03-14,[],IL,103rd +Third Reading - Passed; 035-018-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-21,['reading-3'],IL,103rd +Do Pass as Amended State Government; 009-000-000,2023-05-10,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 108-003-000,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Be Approved for Consideration Assignments,2023-04-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Jehan Gordon-Booth,2024-04-16,[],IL,103rd +Public Act . . . . . . . . . 103-0299,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-05-02,[],IL,103rd +Assigned to Executive,2024-05-20,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-22,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0289,2023-07-28,['became-law'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Veterans Affairs,2023-05-10,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-25,[],IL,103rd +Correctional Note Requested by Rep. Will Guzzardi,2024-05-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; State Government,2023-04-26,['amendment-passage'],IL,103rd +Do Pass Veterans Affairs; 008-000-000,2023-04-27,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 073-034-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Steve McClure,2023-05-16,['filing'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-05-26,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-02-20,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2023-11-08,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. David Friess,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-08,[],IL,103rd +Public Act . . . . . . . . . 103-0324,2023-07-28,['became-law'],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Senate Floor Amendment No. 4 Adopted; Stadelman,2023-05-25,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-04-18,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 009-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Win Stoller,2023-05-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0186,2023-06-30,['became-law'],IL,103rd +Home Rule Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2023-05-08,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Chief Senate Sponsor Sen. Chapin Rose,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-19,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-03-07,[],IL,103rd +Senate Floor Amendment No. 3 Postponed - Executive,2023-05-19,[],IL,103rd +Correctional Note Requested by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-19,[],IL,103rd +Motion Prevailed to Suspend Rule by Voice Vote,2023-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-10-25,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-04-19,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-17,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Joyce Mason,2024-05-06,[],IL,103rd +Public Act . . . . . . . . . 103-0065,2023-06-09,['became-law'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2024-03-12,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-05-16,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Barbara Hernandez,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt State Government; 008-000-000,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-10,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3",2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-04-03,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-05-16,['amendment-introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Neil Anderson,2023-03-22,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2023-03-27,[],IL,103rd +Second Reading - Short Debate,2023-05-26,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-05-26,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +"Removed Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2023-03-24,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 009-000-000,2023-04-20,['committee-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2023-11-07,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-04-20,"['passage', 'reading-3']",IL,103rd +Assigned to Executive,2023-05-16,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-05-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-19,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Steven Reick,2024-05-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-10,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Fiscal Note Filed as Amended,2023-05-12,[],IL,103rd +Approved for Consideration Rules Committee; 004-000-000,2023-11-07,[],IL,103rd +Arrive in Senate,2023-05-17,['introduction'],IL,103rd +Public Act . . . . . . . . . 103-0659,2024-07-19,['became-law'],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Recalled to Second Reading,2024-05-24,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 098-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-05-09,[],IL,103rd +Arrive in Senate,2023-05-16,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-03-06,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Donald P. DeWitte,2024-05-01,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2024-05-23,[],IL,103rd +Third Reading - Passed; 038-017-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +House Floor Amendment No. 1 Tabled,2024-05-22,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2024-05-09,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. John M. Cabello,2023-04-27,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Hunter,2024-05-26,['amendment-passage'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-05-22,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Education,2023-05-16,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Human Services Committee; 008-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Third Reading - Passed; 057-001-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Karina Villa,2024-05-08,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 115-000-000,2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2024-05-15,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-04-16,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Matt Hanson,2023-04-10,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-11-01,[],IL,103rd +Senate Floor Amendment No. 5 Referred to Assignments,2024-04-16,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-13,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2023-05-04,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Justin Slaughter,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 054-004-000,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-04-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tom Weber,2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 010-000-000,2023-11-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2024-04-09,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2024-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-05-17,[],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-19,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-05-15,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Do Pass / Short Debate Revenue & Finance Committee; 015-000-000,2024-05-14,['committee-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Arrived in House,2024-05-25,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-11-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Travis Weaver,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-22,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Christopher Belt,2024-04-17,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2024-04-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Do Pass Education; 012-000-000,2024-05-07,['committee-passage'],IL,103rd +State Mandates Fiscal Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0827,2024-08-09,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2024-05-20,['amendment-introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Recalled to Second Reading,2024-05-15,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 008-005-000,2023-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0265,2023-07-05,['became-law'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sue Scherer,2024-05-21,[],IL,103rd +Third Reading - Short Debate - Passed 066-039-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 7 Adopted; Ventura,2023-05-11,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Bob Morgan,2024-05-13,['amendment-introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Chapin Rose,2024-05-25,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Nicole La Ha,2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Linda Holmes,2023-05-17,['filing'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-20,[],IL,103rd +Placed on Calendar Order of First Reading,2024-05-21,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-21,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-16,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Assigned to Judiciary,2024-04-24,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0861,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Withdrawn by Sen. Patrick J. Joyce,2023-11-08,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0862,2024-08-09,['became-law'],IL,103rd +Arrive in Senate,2024-05-22,['introduction'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 21, 2024",2024-05-21,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2024-05-16,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Cunningham,2023-11-08,['amendment-passage'],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 070-036-000,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-18,[],IL,103rd +Chief Senate Sponsor Sen. Mike Porfirio,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-19,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Ann M. Williams,2024-05-15,[],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-19,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Rezin,2024-05-15,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Kelly M. Burke,2023-11-08,[],IL,103rd +Public Act . . . . . . . . . 103-0924,2024-08-09,['became-law'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Financial Institutions,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 5 Referred to Assignments,2024-04-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Yolonda Morris,2024-04-30,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 012-000-000,2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-09,[],IL,103rd +Arrived in House,2024-05-25,['introduction'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Chief Senate Sponsor Sen. Michael E. Hastings,2024-05-21,[],IL,103rd +Land Conveyance Appraisal Note Filed,2023-05-11,[],IL,103rd +Third Reading - Short Debate - Passed 074-036-001,2024-05-21,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Do Pass Judiciary; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-23,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Do Pass Executive; 010-002-000,2024-05-15,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0978,2024-08-09,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-14,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Education,2023-05-16,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-04-11,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-11-01,['reading-2'],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Public Health,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 012-000-000,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-04-18,[],IL,103rd +House Concurs,2024-05-24,[],IL,103rd +"Effective Date August 9, 2024; Some Provisions;",2024-08-09,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2024-04-18,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar Order of First Reading,2024-05-22,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2024-05-16,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-03-20,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Doris Turner,2024-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Napoleon Harris, III",2024-05-13,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0820,2024-08-09,['became-law'],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2024-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-04-16,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 3,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Senate Concurs 048-006-000,2023-11-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Abdelnasser Rashid,2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-05-04,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-05-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-05-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-05-21,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicole La Ha,2024-04-17,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-21,[],IL,103rd +Chief House Sponsor Rep. Laura Faver Dias,2023-03-31,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-05-07,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 109-001-000,2024-04-16,"['passage', 'reading-3']",IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-05-20,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Andrew S. Chesney,2023-05-11,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Plummer,2023-05-19,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Celina Villanueva,2023-03-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Judicial Note Filed as Amended,2023-05-17,[],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-11,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2023-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Veterans Affairs; 007-000-000,2023-05-11,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Do Pass Public Health; 005-000-000,2023-05-03,['committee-passage'],IL,103rd +Third Reading - Passed; 046-009-001,2024-05-21,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-03-28,[],IL,103rd +House Floor Amendment No. 4 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 011-000-000,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2023-05-02,[],IL,103rd +Second Reading - Short Debate,2023-03-14,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-16,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-05-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2023-05-02,[],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-04-16,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2024-05-02,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Revenue & Finance Committee,2024-05-13,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2023-11-07,[],IL,103rd +Passed Both Houses,2024-03-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-02-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-09,[],IL,103rd +Assigned to Public Utilities Committee,2023-04-11,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Arrive in Senate,2023-04-25,['introduction'],IL,103rd +First Reading,2023-03-22,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Fiscal Note Requested by Rep. Will Guzzardi,2024-05-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-25,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Will Guzzardi,2023-05-09,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Do Pass as Amended State Government; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-04-25,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve McClure,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-04-03,[],IL,103rd +Arrive in Senate,2023-05-09,['introduction'],IL,103rd +House Floor Amendment No. 2 Balanced Budget Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-26,['reading-3'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-11-08,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kam Buckner,2024-05-09,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-26,['reading-3'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +"Senate Committee Amendment No. 1 Motion to Concur Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-18,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +Governor Approved,2024-08-07,['executive-signature'],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-10-25,[],IL,103rd +"Senate Floor Amendment No. 1 Motion to Concur Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-05-18,[],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2023-03-27,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Executive Committee; 012-000-000,2023-11-09,['committee-passage-favorable'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-11,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-03-24,[],IL,103rd +Public Act . . . . . . . . . 103-0054,2023-06-09,['became-law'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 House Concurs 109-000-000,2023-05-19,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2023-03-30,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2023-05-16,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0201,2023-06-30,['became-law'],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Fiscal Note Requested by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Katie Stuart,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-10-23,[],IL,103rd +Placed on Calendar Order of First Reading,2023-05-17,['reading-1'],IL,103rd +Third Reading - Passed; 042-014-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0704,2024-07-19,['became-law'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-03-21,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2023-05-12,['amendment-introduction'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-04-25,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 008-004-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Insurance; 007-004-000,2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2024-05-13,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-05-18,['introduction'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-22,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2024-05-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-05-09,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Harmon,2024-05-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-14,[],IL,103rd +Third Reading - Short Debate - Passed 110-001-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2023-05-16,['reading-1'],IL,103rd +"Effective Date July 28, 2023; Some Provisions",2023-07-28,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-04-19,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-09,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Cyril Nichols,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-02,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2023-05-19,[],IL,103rd +Third Reading - Short Debate - Passed 073-040-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-07,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-04-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Recalled to Second Reading,2024-04-12,['reading-2'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-05-25,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-05-14,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2023-04-17,[],IL,103rd +Third Reading - Short Debate - Passed 080-031-001,2024-05-23,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Energy & Environment Committee,2023-11-07,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Michael J. Kelly,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2024-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2024-05-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kimberly Du Buclet,2024-05-22,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-05-09,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Emanuel ""Chris"" Welch",2024-05-28,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-26,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-17,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Norine K. Hammond,2024-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Energy and Public Utilities; 015-000-000,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Pension Note Requested as Amended by Rep. Jay Hoffman,2024-05-25,[],IL,103rd +House Floor Amendment No. 3 Fiscal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-03-31,[],IL,103rd +Public Act . . . . . . . . . 103-0385,2023-07-28,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2024-05-21,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Do Pass / Short Debate Police & Fire Committee; 013-000-000,2024-05-22,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Barbara Hernandez,2024-04-16,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Third Reading - Passed; 041-013-000,2023-11-07,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Alternate Co-Sponsor Removed Rep. Abdelnasser Rashid,2023-05-04,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-05-10,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary E. Flowers,2023-05-09,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Assigned to Revenue & Finance Committee,2024-05-24,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-08,[],IL,103rd +"Added Alternate Co-Sponsor Rep. William ""Will"" Davis",2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Sheehan,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-18,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-05-13,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Agriculture & Conservation Committee,2024-05-21,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Laura Faver Dias,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-04-12,[],IL,103rd +Do Pass as Amended / Short Debate Adoption & Child Welfare Committee; 012-000-000,2024-04-30,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-04-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Anne Stava-Murray,2024-05-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Senate Floor Amendment No. 5 Referred to Assignments,2023-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-17,[],IL,103rd +Assigned to Executive,2023-04-25,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-23,[],IL,103rd +Arrived in House,2023-05-17,['introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-02-10,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-11-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-03-30,[],IL,103rd +Public Act . . . . . . . . . 103-0350,2023-07-28,['became-law'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-04-25,[],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-04-27,[],IL,103rd +Arrived in House,2023-11-08,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-05-04,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-10,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Police & Fire Committee,2023-03-22,[],IL,103rd +Sponsor Removed Sen. Omar Aquino,2023-05-17,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-05-02,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2023-04-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Recalled to Second Reading,2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Police & Fire Committee,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Veterans Affairs,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Senate Special Committee on Pensions; 011-000-000,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-04-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-10,['reading-2'],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2023-03-22,[],IL,103rd +Do Pass as Amended Judiciary; 008-000-000,2023-04-26,['committee-passage'],IL,103rd +Third Reading - Short Debate - Passed 073-034-001,2023-05-03,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Re-assigned to Appropriations,2024-05-14,['referral-committee'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Placed on Calendar Order of First Reading,2023-05-04,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-05-16,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-05-12,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Correctional Note Requested by Rep. Bradley Fritts,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-03-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. William E Hauter,2023-05-03,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Placed on Calendar Order of First Reading,2024-05-14,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 069-038-001,2023-05-04,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-04-28,[],IL,103rd +House Committee Amendment No. 1 Adopted in Energy & Environment Committee; by Voice Vote,2023-04-25,['amendment-passage'],IL,103rd +"Motion Filed to Reconsider Vote Rep. Emanuel ""Chris"" Welch",2024-05-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-10-31,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-04,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Severin,2023-05-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Behavioral and Mental Health,2023-04-25,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-01,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2023-05-19,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-04-18,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-19,['reading-3'],IL,103rd +House Floor Amendment No. 1 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-05-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Michael E. Hastings,2023-05-05,[],IL,103rd +Removed Co-Sponsor Rep. Carol Ammons,2023-03-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Robyn Gabel,2024-03-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2024-04-29,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 010-004-000,2024-05-22,['committee-passage-favorable'],IL,103rd +Public Act . . . . . . . . . 103-0460,2023-08-04,['became-law'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 21, 2024",2024-05-20,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Fred Crespo,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-05-20,[],IL,103rd +Do Pass / Short Debate Executive Committee; 012-000-000,2023-05-18,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 073-036-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jonathan Carroll,2023-05-02,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-07-15,[],IL,103rd +Added as Co-Sponsor Sen. Craig Wilcox,2024-06-04,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2024-05-07,[],IL,103rd +Public Act . . . . . . . . . 103-0602,2024-07-01,['became-law'],IL,103rd +First Reading,2024-04-11,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-05-09,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Do Pass Insurance; 010-000-000,2024-05-08,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-11-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-05-24,[],IL,103rd +"Effective Date January 1, 2026",2024-07-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2024-04-16,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-30,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0652,2024-07-22,['became-law'],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2023-05-04,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sue Rezin,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-16,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-04-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2023-04-18,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-12,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-25,[],IL,103rd +Third Reading - Passed; 053-000-002,2023-05-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-02-28,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Stephanie A. Kifowit,2023-05-23,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-21,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-05,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 070-035-000,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Energy & Environment Committee; 025-000-000,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-08-30,[],IL,103rd +Governor Approved,2024-06-05,['executive-signature'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-19,['amendment-failure'],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-11-08,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-10,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-04-20,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Executive Committee,2023-05-26,[],IL,103rd +Assigned to Transportation,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-03-22,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 013-000-000,2024-05-28,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-05-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-01,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-03-18,[],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +House Floor Amendment No. 3 Housing Affordability Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-05-03,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 25, 2023",2023-05-24,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-10-17,[],IL,103rd +Do Pass as Amended Executive; 007-002-000,2023-04-27,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 House Concurs 114-000-000,2023-05-17,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2024-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-03-31,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Gaming Committee,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0020,2023-06-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-05-04,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 25, 2023",2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-24,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2023-11-08,[],IL,103rd +Chief Senate Sponsor Sen. Mattie Hunter,2023-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Katie Stuart,2023-05-09,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Thaddeus Jones,2023-10-31,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-04-26,[],IL,103rd +Arrived in House,2023-05-17,['introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Randy E. Frese,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 5 Adopted; Executive,2023-05-17,['amendment-passage'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Referred to Assignments,2023-04-20,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-11-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Meg Loughran Cappel,2024-04-24,[],IL,103rd +Public Act . . . . . . . . . 103-0823,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Javier L. Cervantes,2024-05-10,['amendment-introduction'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-22,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Bill Cunningham,2024-05-23,['filing'],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2024-04-24,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-22,[],IL,103rd +Housing Affordability Impact Note Request is Inapplicable,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0966,2024-08-09,['became-law'],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-11,['reading-2'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Health and Human Services; 009-000-000,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2024-04-12,[],IL,103rd +"House Committee Amendment No. 1 Adopted in Transportation: Regulations, Roads & Bridges; by Voice Vote",2023-05-18,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-20,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-05-09,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0258,2023-06-30,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-09,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-03-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anne Stava-Murray,2024-05-16,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +House Floor Amendment No. 3 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-04-20,[],IL,103rd +Public Act . . . . . . . . . 103-0901,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Special Committee on Criminal Law and Public Safety,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-05-15,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Higher Education; 011-000-000,2023-05-16,[],IL,103rd +Third Reading - Passed; 054-002-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2023-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert Peters,2024-05-23,['filing'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Terra Costa Howard,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Hastings,2024-04-11,['amendment-passage'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 4 Withdrawn by Sen. Cristina Castro,2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michelle Mussman,2023-05-08,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-04-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2023-05-11,[],IL,103rd +Do Pass as Amended Executive; 012-000-000,2024-05-15,['committee-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Correctional Note Filed as amended,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. William E Hauter,2023-05-19,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Land Conveyance Appraisal Note Requested as Amended by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-08,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Rachel Ventura,2024-05-23,['filing'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-04-05,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2023-05-12,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Local Government; 010-000-000,2023-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 069-037-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Third Reading - Passed; 057-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-18,[],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-04-17,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Sue Scherer,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-04-20,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2023-05-08,[],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 072-031-000,2023-05-26,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Licenses Committee; 008-004-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Third Reading - Short Debate - Passed 103-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-30,['reading-1'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-20,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. Kelly M. Cassidy,2023-05-03,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-04-26,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-05-10,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Judicial Note Requested - Withdrawn by Rep. La Shawn K. Ford,2024-04-11,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-11,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jeff Keicher,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-04-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2024-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0758,2024-08-02,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Sims,2023-11-08,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-17,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-04-23,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-05-15,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 2, 3",2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-04-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-03-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0728,2024-08-02,['became-law'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0660,2024-07-19,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2024-06-05,[],IL,103rd +Passed Both Houses,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-03-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 24, 2024",2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Education,2024-05-23,[],IL,103rd +Assigned to Consumer Protection Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-04-26,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-05-06,[],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2024-04-11,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2024-05-16,['amendment-introduction'],IL,103rd +"Effective Date July 19, 2024",2024-07-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-11-08,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-11,[],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lance Yednock,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Arrived in House,2023-05-17,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2024-04-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2024-05-16,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 3 - May 24, 2024",2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-02-28,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2023-04-20,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-28,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0339,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Janet Yang Rohr,2023-05-12,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Judicial Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-04-21,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-11-09,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Executive Committee,2023-05-26,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-22,[],IL,103rd +First Reading,2023-05-15,['reading-1'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-09-06,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2023-10-19,[],IL,103rd +Do Pass Transportation; 017-001-000,2023-04-19,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-05-25,[],IL,103rd +Assigned to Human Rights,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-05-26,[],IL,103rd +Postponed - Executive,2023-04-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-03-24,[],IL,103rd +First Reading,2024-05-22,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-24,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Rules Committee; 005-000-000,2024-03-20,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Education,2023-05-09,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Gaming Committee; 017-000-000,2023-11-09,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-09,[],IL,103rd +Third Reading - Short Debate - Passed 069-039-000,2023-03-22,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Balanced Budget Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-03-08,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-12,[],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Paul Jacobs,2023-05-10,[],IL,103rd +"Effective Date June 5, 2024; ; Some Provisions",2024-06-05,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3",2023-05-19,[],IL,103rd +Do Pass as Amended Executive; 012-000-000,2023-05-17,['committee-passage'],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Suzy Glowiak Hilton,2023-05-24,['filing'],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-19,[],IL,103rd +Third Reading - Passed; 040-015-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-05,[],IL,103rd +Assigned to Education,2023-04-25,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-23,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin John Olickal,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2023-11-08,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 109-000-000,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-01,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2023-11-07,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-26,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-17,[],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-04-17,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-22,[],IL,103rd +Assigned to Transportation: Vehicles & Safety,2024-04-02,['referral-committee'],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Do Pass / Short Debate Health Care Licenses Committee; 012-000-000,2024-05-08,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Robyn Gabel,2023-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 2, 3",2023-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +House Floor Amendment No. 1 Senate Concurs 054-000-000,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-22,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-05-22,[],IL,103rd +Judicial Note Request is Inapplicable,2023-05-17,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-05-19,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-08,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-09,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 055-000-000,2023-05-19,[],IL,103rd +"Effective Date January 1, 2024",2023-08-11,[],IL,103rd +Assigned to Appropriations- Education,2023-04-18,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0987,2024-08-09,['became-law'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Neil Anderson,2023-03-28,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Cyril Nichols,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lance Yednock,2023-04-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-04,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Theresa Mah,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Do Pass / Short Debate Mental Health & Addiction Committee; 017-000-000,2023-04-20,['committee-passage'],IL,103rd +Senate Floor Amendment No. 5 Adopted; Castro,2024-05-24,['amendment-passage'],IL,103rd +State Debt Impact Note Filed,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Judicial Note Requested by Rep. Kelly M. Cassidy,2023-05-03,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Assigned to Executive,2024-04-24,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-11,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Sharon Chung,2023-05-01,['amendment-introduction'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Senate Floor Amendment No. 5 Assignments Refers to Financial Institutions,2024-04-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2023-05-12,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-04-24,[],IL,103rd +Referred to Assignments,2024-04-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-17,[],IL,103rd +Fiscal Note Filed as amended,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-17,['amendment-failure'],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Assigned to Labor & Commerce Committee,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-05-19,[],IL,103rd +Pension Note Filed,2023-05-16,[],IL,103rd +Removed Co-Sponsor Rep. La Shawn K. Ford,2024-05-20,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-19,['amendment-failure'],IL,103rd +House Committee Amendment No. 1 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-04-20,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Special Committee on Criminal Law and Public Safety; 009-000-000,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2024-04-12,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-15,[],IL,103rd +House Floor Amendment No. 2 Pension Note Requested as Amended by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-12,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-15,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-15,[],IL,103rd +House Floor Amendment No. 3 Home Rule Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +"Do Pass as Amended / Short Debate Transportation: Regulations, Roads & Bridges; 015-001-000",2023-05-18,['committee-passage'],IL,103rd +House Floor Amendment No. 4 Adopted,2023-05-16,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-18,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 12, 2024",2024-04-11,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2024-05-20,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2024-04-18,[],IL,103rd +Assigned to Labor,2024-05-14,['referral-committee'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-18,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2024-04-30,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-11,[],IL,103rd +Chief Senate Sponsor Sen. Omar Aquino,2024-04-19,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-14,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Win Stoller,2024-05-01,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-05-16,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-05-12,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Arrive in Senate,2024-05-22,['introduction'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Morrison,2024-05-24,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Executive Committee,2024-05-28,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-12-08,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-05-10,[],IL,103rd +Second Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Tony M. McCombie,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-05-23,[],IL,103rd +Public Act . . . . . . . . . 103-0515,2023-08-11,['became-law'],IL,103rd +Approved for Consideration Assignments,2023-10-24,[],IL,103rd +Recalled to Second Reading,2024-05-23,['reading-2'],IL,103rd +House Floor Amendment No. 5 Filed with Clerk by Rep. Robyn Gabel,2024-04-15,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-03-07,[],IL,103rd +Recalled to Second Reading,2023-05-24,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Lakesia Collins,2023-03-22,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Executive,2023-05-16,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0752,2024-08-02,['became-law'],IL,103rd +Recalled to Second Reading,2023-04-19,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-05-20,[],IL,103rd +House Committee Amendment No. 3 Rules Refers to Revenue & Finance Committee,2024-05-13,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0277,2023-07-28,['became-law'],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-05-10,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 4, 2023",2023-05-03,['reading-2'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-11,[],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-19,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-14,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-18,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2024-05-14,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2023-05-04,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-16,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +"Effective Date August 4, 2023; Some Provisions",2023-08-04,[],IL,103rd +Senate Floor Amendment No. 4 Recommend Do Adopt Executive; 009-002-000,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-05-21,['amendment-failure'],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-16,[],IL,103rd +"Effective Date January 1, 2025; Some Provisions",2024-08-09,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Kelly M. Burke,2023-11-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-19,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Insurance Committee; 015-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +House Floor Amendment No. 1 Senate Concurs,2023-11-08,[],IL,103rd +Third Reading - Passed; 051-005-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2024-04-18,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-04-26,[],IL,103rd +Senate Committee Amendment No. 3 Motion Filed Concur Rep. Ann M. Williams,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2024-05-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2024-05-23,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-12,['amendment-passage'],IL,103rd +"House Floor Amendment No. 2 Motion Filed to Table Rep. Curtis J. Tarver, II",2024-05-16,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Anne Stava-Murray,2024-05-07,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2023-05-17,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-05-22,['referral-committee'],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Senate Floor Amendment No. 4 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +State Debt Impact Note Filed,2023-05-11,[],IL,103rd +First Reading,2024-05-21,['reading-1'],IL,103rd +Assigned to Insurance Committee,2024-04-24,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Public Health; 007-000-000,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Laura M. Murphy,2024-05-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-09,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-03-20,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Third Reading - Passed; 033-020-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Revenue,2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2023-11-01,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-05-13,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Harry Benton,2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Education; 012-000-000,2023-05-16,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2024-04-19,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Dan McConchie,2024-05-22,['filing'],IL,103rd +Third Reading - Passed; 056-000-001,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-21,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-07,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2024-04-19,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 24, 2024",2024-05-20,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-11-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Karina Villa,2024-05-26,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Chris Miller,2024-05-16,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-13,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 006-002-000,2024-04-30,['committee-passage'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-07,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 056-001-000,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-05-20,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 013-000-000,2023-05-10,[],IL,103rd +Judicial Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +House Floor Amendment No. 3 Balanced Budget Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Justin Slaughter,2023-05-26,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2023-11-07,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Revenue & Finance Committee,2024-03-05,[],IL,103rd +Placed on Calendar Order of First Reading,2023-04-25,['reading-1'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Sent to the Governor,2024-03-18,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-05-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Health and Human Services,2023-05-16,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0163,2023-06-30,['became-law'],IL,103rd +Home Rule Note Requested by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Housing; 010-005-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Recalled to Second Reading,2023-05-17,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2023-04-27,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2023-04-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Peters,2023-05-11,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to State Government,2023-05-17,[],IL,103rd +Home Rule Note Requested by Rep. Will Guzzardi,2024-05-27,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Will Guzzardi,2023-03-30,[],IL,103rd +Public Act . . . . . . . . . 103-0178,2023-06-30,['became-law'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-09,[],IL,103rd +Recalled to Second Reading,2023-05-25,['reading-2'],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Bill Cunningham,2023-05-25,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-04-14,[],IL,103rd +Referred to Assignments,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-05-11,[],IL,103rd +Third Reading - Passed; 041-009-001,2023-05-25,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Withdrawn by Rep. Jay Hoffman,2023-11-09,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 11, 2023",2023-05-03,[],IL,103rd +Third Reading - Short Debate - Passed 073-038-000,2023-05-27,"['passage', 'reading-3']",IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +"Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-05-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 017-006-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of First Reading,2023-05-09,['reading-1'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 109-000-000,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-11,[],IL,103rd +"Effective Date January 1, 2025",2024-08-07,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-10-25,[],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments.",2023-05-19,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Katie Stuart,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 5 Recommend Do Adopt Transportation; 011-000-000,2023-05-16,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-04-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0680,2024-07-19,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-09,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2024-04-11,[],IL,103rd +Removed Co-Sponsor Rep. Janet Yang Rohr,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-05-16,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-09,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 011-001-000,2024-05-25,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-0701,2024-07-19,['became-law'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-11-07,[],IL,103rd +House Floor Amendment No. 2 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-15,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-15,[],IL,103rd +Passed Both Houses,2024-05-21,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Third Reading - Passed; 055-000-001,2023-05-19,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Cervantes,2023-05-10,['amendment-passage'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0115,2023-06-30,['became-law'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2023-03-30,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-03-24,[],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2023-05-11,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 037-017-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Postponed - Veterans Affairs,2023-04-27,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Angelica Guerrero-Cuellar,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 4 Recommend Do Adopt Senate Special Committee on Pensions; 011-000-000,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Michael E. Hastings,2023-04-24,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-10,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Re-assigned to Appropriations,2024-05-14,['referral-committee'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Adriane Johnson,2023-05-02,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-01,[],IL,103rd +Third Reading - Passed; 052-004-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-21,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Police & Fire Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Third Reading - Passed; 052-001-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-02-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Labor,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-24,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Arrived in House,2023-05-25,['introduction'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-24,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Governor Approved,2023-06-27,['executive-signature'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-04-25,[],IL,103rd +Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-05-03,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 5 Assignments Refers to Licensed Activities,2023-05-10,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-10,[],IL,103rd +Third Reading - Passed; 050-002-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Adopted; Environment and Conservation,2023-04-19,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Approved for Consideration Assignments,2023-11-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 11, 2023",2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Racial Impact Note Requested as Amended by Rep. Jay Hoffman,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-24,[],IL,103rd +"Effective Date January 1, 2024; Some Provisions",2023-07-28,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-11-07,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-009-000,2023-04-26,['committee-passage'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Rachel Ventura,2024-05-23,['filing'],IL,103rd +Third Reading - Short Debate - Passed 085-023-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0854,2024-08-09,['became-law'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-05-13,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Assigned to Agriculture & Conservation Committee,2023-04-18,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-04-30,['amendment-failure'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 11, 2023",2023-05-10,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Public Act . . . . . . . . . 103-1024,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-05-23,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-08,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-04-15,[],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0868,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2024-05-09,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-08,[],IL,103rd +Public Act . . . . . . . . . 103-0261,2023-06-30,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-05-17,[],IL,103rd +House Floor Amendment No. 2 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-16,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-03-31,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2024-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Kelly M. Cassidy,2024-05-28,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Katie Stuart,2023-04-24,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 023-001-000,2024-05-20,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2024-05-22,[],IL,103rd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Sue Scherer,2023-05-16,[],IL,103rd +Third Reading - Short Debate - Passed 098-013-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Burke,2024-05-21,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lilian Jiménez,2023-04-26,[],IL,103rd +Third Reading - Short Debate - Passed 092-009-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-15,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 14, 2024",2024-05-09,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-05-11,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 25, 2024",2024-05-24,[],IL,103rd +"Motion Filed to Suspend Rule 21 Restorative Justice; Rep. Elizabeth ""Lisa"" Hernandez",2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Judiciary,2024-05-23,[],IL,103rd +Public Act . . . . . . . . . 103-0787,2024-08-09,['became-law'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Chief House Sponsor Rep. Laura Faver Dias,2024-04-12,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-11-07,['amendment-failure'],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Tom Bennett,2024-05-09,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-04-26,[],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Licensed Activities,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2023-05-02,[],IL,103rd +Chief Sponsor Changed to Sen. Michael W. Halpin,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-02,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-04-18,[],IL,103rd +"Motion Withdrawn Rep. Emanuel ""Chris"" Welch",2024-06-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-05-21,['amendment-failure'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-17,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Fiscal Note Requested by Rep. Bradley Fritts,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-05-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2024-05-16,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tom Weber,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-05-14,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2023-05-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-10-31,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Patrick Windhorst,2023-05-19,[],IL,103rd +Third Reading - Short Debate - Passed 097-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Adopted; Behavioral and Mental Health,2023-04-25,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 24, 2024",2024-05-20,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-06-26,[],IL,103rd +Arrive in Senate,2024-04-18,['introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kevin John Olickal,2024-05-23,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-03-13,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 080-028-001,2023-05-19,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Rules Refers to Mental Health & Addiction Committee,2023-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-09,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Do Pass as Amended / Short Debate Energy & Environment Committee; 028-000-000,2023-04-25,['committee-passage'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added as Chief Co-Sponsor Sen. Craig Wilcox,2023-05-05,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-18,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-03-26,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-18,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2023-05-08,[],IL,103rd +First Reading,2023-11-01,['reading-1'],IL,103rd +Do Pass as Amended Behavioral and Mental Health; 007-000-000,2023-04-26,['committee-passage'],IL,103rd +Alternate Co-Sponsor Removed Rep. Jay Hoffman,2023-04-18,[],IL,103rd +"House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-03,[],IL,103rd +Passed Both Houses,2024-06-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-05-08,[],IL,103rd +Added as Chief Co-Sponsor Sen. Jason Plummer,2023-05-05,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Health and Human Services; 009-000-000,2023-05-16,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-09,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Lindsey LaPointe,2023-05-03,['amendment-introduction'],IL,103rd +Governor Approved,2024-03-18,['executive-signature'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-03-13,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-09,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-23,[],IL,103rd +First Reading,2024-05-15,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-19,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-06-26,[],IL,103rd +Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-03-18,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2023-05-03,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-19,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +Home Rule Note Requested by Rep. Bradley Fritts,2024-05-16,[],IL,103rd +Do Pass / Short Debate Public Utilities Committee; 020-001-000,2023-04-18,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-05-21,[],IL,103rd +Third Reading - Short Debate - Passed 091-011-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Removed Co-Sponsor Rep. Mary Beth Canty,2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-05-14,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 056-000-000,2023-05-19,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-23,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +Approved for Consideration Rules Committee; 004-000-000,2023-11-07,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norma Hernandez,2023-04-26,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-09,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Cristina H. Pacione-Zayas,2023-05-18,['filing'],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-04-21,[],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-19,[],IL,103rd +Judicial Note Filed as amended,2023-05-04,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2024-05-15,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2024-05-24,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-22,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-05-11,[],IL,103rd +Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 State Debt Impact Note Requested as Amended by Rep. Jay Hoffman,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-11,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-17,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0806,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-03,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 074-039-000,2024-05-21,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura Fine,2023-05-16,['filing'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-09,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-04-19,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lance Yednock,2023-11-07,[],IL,103rd +Public Act . . . . . . . . . 103-0387,2023-07-28,['became-law'],IL,103rd +House Floor Amendment No. 3 Adopted,2023-03-24,['amendment-passage'],IL,103rd +"Added Alternate Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-21,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Doris Turner,2024-05-23,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Kelly M. Cassidy,2024-05-28,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-04-29,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-16,['reading-3'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-04,[],IL,103rd +Second Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-24,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Kam Buckner,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0087,2023-06-09,['became-law'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-17,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-15,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 010-003-000,2023-05-09,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 095-016-000,2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-11-07,['amendment-failure'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Steve McClure,2023-05-11,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-15,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2023-05-10,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Insurance Committee; 010-004-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Do Pass Transportation; 012-000-000,2024-05-15,['committee-passage'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 16, 2023",2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-04-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-28,[],IL,103rd +Some provisions effective 7/01/2024; some provisions effective 07/01/2025,2024-07-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2024-05-15,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-15,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2024-04-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-19,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-07,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-24,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-05-05,[],IL,103rd +Judicial Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Motion Filed to Suspend Rule 21 Revenue & Finance Committee; Rep. Kam Buckner; Property Tax Subcommittee,2024-05-15,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. John F. Curran,2023-03-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-10,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-25,[],IL,103rd +Recalled to Second Reading,2023-11-09,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0335,2023-07-28,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-11-07,[],IL,103rd +Public Act . . . . . . . . . 103-0107,2023-06-27,['became-law'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-25,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lance Yednock,2023-05-17,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-25,[],IL,103rd +Do Pass Veterans Affairs; 008-000-000,2023-04-27,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jackie Haas,2023-03-15,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-02-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-09,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-04-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-03-29,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-05-01,[],IL,103rd +Recalled to Second Reading,2023-05-18,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-15,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-04-25,[],IL,103rd +Arrived in House,2023-05-17,['introduction'],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-03-22,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-03-22,[],IL,103rd +Third Reading - Passed; 049-006-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Do Pass as Amended Environment and Conservation; 006-000-000,2023-04-20,['committee-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-04,[],IL,103rd +Assigned to Education,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-23,[],IL,103rd +First Reading,2023-05-04,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-03-22,[],IL,103rd +Assigned to Insurance,2023-04-12,['referral-committee'],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-08,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +"Effective Date July 1, 2024",2023-08-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-17,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 012-000-000,2023-05-26,[],IL,103rd +Assigned to Executive,2023-04-25,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-10,[],IL,103rd +Senate Floor Amendment No. 4 Recommend Do Adopt Licensed Activities; 008-000-000,2023-05-10,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-03-23,['reading-2'],IL,103rd +"Effective Date July 1, 2023",2023-06-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Executive,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-05-15,['amendment-passage'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2024-05-26,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Transportation: Vehicles & Safety,2024-04-02,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Michael W. Halpin,2024-05-15,['amendment-introduction'],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 013-000-000,2023-05-17,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2024-05-17,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Javier L. Cervantes,2024-05-14,['amendment-introduction'],IL,103rd +House Floor Amendment No. 3 Housing Affordability Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-01,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-04-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Labor,2024-05-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2023-05-08,[],IL,103rd +Public Act . . . . . . . . . 103-0550,2023-08-11,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-24,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2024-04-25,[],IL,103rd +First Reading,2024-04-12,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-04-25,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Marcus C. Evans, Jr.",2024-05-20,[],IL,103rd +Land Conveyance Appraisal Note Request is Inapplicable,2023-05-17,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-22,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Health and Human Services,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Judiciary; 008-000-000,2024-05-23,[],IL,103rd +Third Reading - Passed; 034-019-002,2024-05-22,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2024-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-03-28,[],IL,103rd +House Floor Amendment No. 3 Referred to Labor & Commerce Committee,2023-05-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Balanced Budget Note Filed,2023-05-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-11,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0952,2024-08-09,['became-law'],IL,103rd +Chief Senate Sponsor Sen. Dave Syverson,2024-04-30,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 026-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anna Moeller,2024-05-15,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Energy & Environment Committee,2023-05-15,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0815,2024-08-09,['became-law'],IL,103rd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2024-05-14,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Celina Villanueva,2024-05-17,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-08,['amendment-failure'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 3 - May 26, 2023",2023-05-26,[],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Elizabeth ""Lisa"" Hernandez",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 012-000-000,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-06-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-08,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-05-03,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 10, 2023",2023-05-09,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Racial Impact Note Requested as Amended by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2023-04-21,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-08,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Angelica Guerrero-Cuellar,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-16,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 5 Recommend Do Adopt Financial Institutions; 005-002-000,2024-04-17,[],IL,103rd +Referred to Rules Committee,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Michael E. Hastings,2024-05-26,['amendment-introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mike Simmons,2024-04-18,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Kelly M. Cassidy,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-05-19,[],IL,103rd +Housing Affordability Impact Note Filed,2023-05-16,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Chris Miller,2023-04-20,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 16, 2023",2023-05-15,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 16, 2023",2023-05-15,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-16,['reading-3'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Sims,2024-05-26,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-11-09,['amendment-passage'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0048,2023-06-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2023-04-20,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2023-11-08,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Michael W. Halpin,2023-05-25,['filing'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-24,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Celina Villanueva,2024-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2023-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +House Floor Amendment No. 3 Judicial Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 3",2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Norma Hernandez,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Revenue & Finance Committee,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-08,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 013-000-000,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-09,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anthony DeLuca,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-04-03,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-24,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-19,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Referred to Assignments,2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. William E Hauter,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0192,2023-06-30,['became-law'],IL,103rd +Do Pass / Short Debate Child Care Accessibility & Early Childhood Education Committee; 014-001-000,2023-03-02,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Balanced Budget Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-03-22,[],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2023-10-24,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-17,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-09-20,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-18,[],IL,103rd +"Chief Sponsor Changed to Rep. Marcus C. Evans, Jr.",2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Insurance Committee,2023-05-15,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2023-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +"Effective Date July 1, 2024; ; Some Provisions",2024-06-05,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-04,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2023-03-27,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-24,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-11-07,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Referred to Assignments,2024-05-22,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Adriane Johnson,2023-04-25,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-02-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2023-05-19,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-05-12,[],IL,103rd +3/5 Vote Required,2023-11-08,[],IL,103rd +Public Act . . . . . . . . . 103-0655,2024-07-19,['became-law'],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-17,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2024-05-22,[],IL,103rd +Sent to the Governor,2024-06-12,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-03-21,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-008-000,2024-05-01,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-04-29,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2024-05-06,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Adriane Johnson,2024-05-25,['filing'],IL,103rd +Public Act . . . . . . . . . 103-0729,2024-08-02,['became-law'],IL,103rd +Pension Note Requested - Withdrawn by Rep. La Shawn K. Ford,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-04-26,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Education; 013-000-000,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2024-04-15,[],IL,103rd +Re-assigned to Education,2024-04-24,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-04-26,[],IL,103rd +Senate Committee Amendment No. 1 Rule 19(b) / Motion Referred to Rules Committee,2023-06-26,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. Will Guzzardi,2024-05-27,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-18,[],IL,103rd +Passed Both Houses,2023-11-08,[],IL,103rd +Public Act . . . . . . . . . 103-0199,2023-06-30,['became-law'],IL,103rd +Second Reading - Short Debate,2024-05-28,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-11-09,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-04-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2023-05-25,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Laura M. Murphy,2023-05-09,['amendment-introduction'],IL,103rd +Public Act . . . . . . . . . 103-0785,2024-08-07,['became-law'],IL,103rd +House Floor Amendment No. 1 Correctional Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2023-03-23,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Housing Affordability Impact Note Requested by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 098-006-000,2023-05-27,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to State Government Administration Committee,2023-05-15,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-03-22,[],IL,103rd +Chief Senate Sponsor Sen. Mattie Hunter,2023-04-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Karina Villa,2023-05-04,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-05-23,[],IL,103rd +Passed Both Houses,2023-05-27,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Labor & Commerce Committee,2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-05-09,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Recalled to Second Reading,2023-05-17,['reading-2'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0328,2023-07-28,['became-law'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2023-11-07,[],IL,103rd +Approved for Consideration Assignments,2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Revenue & Finance Committee; 017-000-000,2023-05-04,['committee-passage-favorable'],IL,103rd +To Revenue - Tax Credit and Incentives Subcommittee,2024-03-08,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-03-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-03-30,[],IL,103rd +Do Pass Judiciary; 009-000-000,2023-04-26,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Education,2023-05-10,[],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-05-18,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Peters,2023-05-17,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Celina Villanueva,2023-05-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2023-05-04,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Harmon,2023-05-25,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-10-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Waive Posting Notice,2023-05-17,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sally J. Turner,2024-05-20,[],IL,103rd +Arrived in House,2024-05-15,['introduction'],IL,103rd +Public Act . . . . . . . . . 103-0979,2024-08-09,['became-law'],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +First Reading,2024-05-22,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2024-05-26,['amendment-failure'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-04-20,[],IL,103rd +"Effective Date January 1, 2024; Some Provisions",2023-08-04,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-1002,2024-08-09,['became-law'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy L. Grant,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Pension Note Filed,2023-05-11,[],IL,103rd +Referred to Assignments,2024-05-21,[],IL,103rd +Do Pass as Amended Judiciary; 009-000-000,2024-05-08,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-03-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Tony M. McCombie,2024-05-25,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-05-24,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2024-05-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2024-05-14,[],IL,103rd +Land Conveyance Appraisal Note Filed,2023-05-11,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-04-26,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-16,[],IL,103rd +Senate Floor Amendment No. 5 Be Approved for Consideration Assignments,2024-04-18,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-18,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-11-08,[],IL,103rd +Public Act . . . . . . . . . 103-0832,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 5 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 3 Motion to Concur Referred to Rules Committee,2024-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 095-000-001,2024-04-19,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-07,[],IL,103rd +"Senate Committee Amendment No. 1 Motion to Concur Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-05-09,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-22,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Adopted,2024-04-12,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-1006,2024-08-09,['became-law'],IL,103rd +Passed Both Houses,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-16,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 113-001-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-04-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-14,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Swanson,2024-05-07,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Transportation: Vehicles & Safety,2024-05-22,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jehan Gordon-Booth,2024-05-25,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-05-23,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +3/5 Vote Required,2023-11-08,[],IL,103rd +Reported Back To Executive; 003-000-000,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-11-01,[],IL,103rd +Assigned to Revenue,2024-04-24,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2024-04-18,[],IL,103rd +Recalled to Second Reading - Short Debate,2024-04-19,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0390,2023-07-28,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0404,2023-07-28,['became-law'],IL,103rd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Sue Rezin,2024-05-01,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2024-05-23,['amendment-failure'],IL,103rd +Do Pass / Short Debate Insurance Committee; 015-000-000,2024-04-30,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-1037,2024-08-09,['became-law'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael W. Halpin,2023-05-17,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-05-23,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mark L. Walker,2024-05-14,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lakesia Collins,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-03-07,[],IL,103rd +Chief Senate Sponsor Sen. Michael E. Hastings,2024-04-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +First Reading,2023-05-16,['reading-1'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2024-05-25,['committee-passage-favorable'],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-20,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 012-000-000,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-18,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-16,[],IL,103rd +House Floor Amendment No. 5 Referred to Rules Committee,2024-04-15,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 21, 2024",2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-04-30,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Placed on Calendar Order of First Reading,2024-05-22,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Fine,2024-05-23,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2024-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading October 25, 2023",2023-10-24,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0604,2024-07-01,['became-law'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-05-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +Senate Floor Amendment No. 4 Adopted; Morrison,2024-05-24,['amendment-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2024-05-01,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2023-05-11,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Porfirio,2023-05-11,['amendment-passage'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-05-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Will Guzzardi,2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-22,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Joyce Mason,2024-05-02,[],IL,103rd +Chief Senate Sponsor Sen. Suzy Glowiak Hilton,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-03-16,[],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Executive,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-16,[],IL,103rd +Third Reading - Short Debate - Passed 071-036-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Adopted; Glowiak-Hilton,2023-04-19,['amendment-passage'],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 1 Withdrawn by Sen. Don Harmon,2023-05-24,[],IL,103rd +Third Reading - Passed; 036-019-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 054-000-001,2023-05-19,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 State Mandates Fiscal Note Filed as Amended,2023-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-05-20,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-20,[],IL,103rd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-03-14,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 012-000-000,2024-05-28,[],IL,103rd +Referred to Assignments,2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-16,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Governor Approved,2023-08-03,['executive-signature'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +House Floor Amendment No. 1 State Mandates Fiscal Note Filed as Amended,2023-05-15,[],IL,103rd +Re-assigned to Executive,2023-05-16,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-05-05,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 5 Adopted; Morrison,2024-05-24,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Lakesia Collins,2023-05-18,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-23,[],IL,103rd +First Reading,2023-05-17,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2023-10-24,['amendment-introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-20,['reading-2'],IL,103rd +Assigned to Transportation,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-03-07,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Meg Loughran Cappel,2024-05-23,['filing'],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2024-05-01,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-16,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-30,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Carol Ammons,2023-05-12,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Terri Bryant,2023-11-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-25,[],IL,103rd +Sent to the Governor,2023-11-30,['executive-receipt'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-05-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-28,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 100-006-000,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-05-09,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +House Floor Amendment No. 1 Correctional Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Pension Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +First Reading,2023-05-09,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2024-04-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-17,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Correctional Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-04,[],IL,103rd +First Reading,2023-04-25,['reading-1'],IL,103rd +Senate Floor Amendment No. 3 Withdrawn by Sen. Neil Anderson,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to State Government Administration Committee,2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-05-25,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-03-15,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0341,2023-07-28,['became-law'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Debbie Meyers-Martin,2023-05-08,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Do Pass Executive; 012-000-000,2023-05-17,['committee-passage'],IL,103rd +Judicial Note Requested by Rep. Will Guzzardi,2024-05-27,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-09,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-05-12,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0188,2023-06-30,['became-law'],IL,103rd +House Committee Amendment No. 1 To Revenue - Tax Credit and Incentives Subcommittee,2024-03-08,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Passed Both Houses,2023-05-27,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 027-000-000,2023-05-16,[],IL,103rd +Sent to the Governor,2023-06-05,['executive-receipt'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Placed on Calendar Order of Secretary's Desk Resolutions,2024-05-25,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-04-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +Judicial Note Requested by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-26,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0482,2023-08-04,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-17,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-04,[],IL,103rd +Assigned to Executive,2024-05-23,['referral-committee'],IL,103rd +Added as Chief Co-Sponsor Sen. Kimberly A. Lightford,2024-04-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Agriculture,2024-05-15,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Arrived in House,2024-05-15,['introduction'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Transportation: Vehicles & Safety; 011-000-000,2024-05-22,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-18,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-22,['amendment-passage'],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-21,[],IL,103rd +Fiscal Note Filed,2023-05-11,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-25,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 007-000-000,2024-05-15,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Waive Posting Notice,2024-05-21,[],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +Passed Both Houses,2023-05-12,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-11-08,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-01,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lilian Jiménez,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Judiciary,2024-05-23,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-05-20,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-04-18,[],IL,103rd +Referred to Assignments,2024-05-22,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Energy & Environment Committee; 020-000-000,2023-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0857,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-11-02,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2024-04-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Tom Bennett,2024-05-20,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-05-09,[],IL,103rd +Motion Filed to Suspend Rule 21 Judiciary - Criminal Committee; Rep. Kam Buckner,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-22,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Anne Stava-Murray,2024-05-09,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-10,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Child Care Accessibility & Early Childhood Education Committee,2024-05-21,[],IL,103rd +"Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-04-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-12,[],IL,103rd +Public Act . . . . . . . . . 103-0833,2024-08-09,['became-law'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 3 Motion to Concur Rules Referred to Energy & Environment Committee,2024-05-28,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Co-Sponsor Sen. Bill Cunningham,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-19,[],IL,103rd +Sent to the Governor,2023-12-01,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-21,[],IL,103rd +House Floor Amendment No. 2 Tabled,2024-04-19,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-11-08,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-03-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Thaddeus Jones,2024-04-30,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Assigned to Education,2024-04-30,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-21,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sally J. Turner,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-04-18,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Public Act . . . . . . . . . 103-0505,2023-08-04,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-05-01,[],IL,103rd +Assigned to Veterans Affairs,2024-04-24,['referral-committee'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Ryan Spain,2023-05-04,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-05-17,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-15,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-16,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +House Floor Amendment No. 3 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2023-03-24,[],IL,103rd +Passed Both Houses,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-11,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Consumer Protection Committee; 006-003-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-11-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-04-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Seth Lewis,2023-05-02,[],IL,103rd +House Floor Amendment No. 2 Home Rule Note Filed as Amended,2023-05-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Ram Villivalam,2023-05-17,['amendment-introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2024-05-09,[],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-04-27,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Harmon,2023-05-24,['amendment-passage'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Waive Posting Notice,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2024-04-16,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Do Pass as Amended Licensed Activities; 007-000-000,2024-05-15,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Matt Hanson,2024-05-29,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Criminal Committee; 009-004-000,2023-05-09,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-05-11,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-15,['reading-2'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Cristina H. Pacione-Zayas,2023-05-25,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-07,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-05-10,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-11-07,[],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Carol Ammons,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2024-05-23,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-04-19,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2024-04-04,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Dan McConchie,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-04-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-23,[],IL,103rd +"Effective Date March 18, 2024",2024-03-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2023-05-03,[],IL,103rd +Second Reading - Short Debate,2024-04-10,['reading-2'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Sent to the Governor,2024-06-06,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-04,[],IL,103rd +"Alternate Co-Sponsor Removed Rep. Maurice A. West, II",2023-04-18,[],IL,103rd +Referred to Rules Committee,2024-05-21,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Referred to Rules Committee,2023-11-01,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-05-03,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. Bradley Fritts,2024-05-16,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Adopted in Child Care Accessibility & Early Childhood Education Committee; by Voice Vote,2024-03-22,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2024-05-25,['amendment-introduction'],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Chief Senate Sponsor Sen. Dan McConchie,2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Referred to Assignments,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-1016,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Linda Holmes,2024-05-23,['filing'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-000-000",2023-04-26,['committee-passage'],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-15,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2024-05-07,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-04-21,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-07,['reading-3'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2024-05-23,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Public Act . . . . . . . . . 103-0091,2023-06-09,['became-law'],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-24,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-05-16,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0856,2024-08-09,['became-law'],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Transportation: Vehicles & Safety,2024-05-21,[],IL,103rd +House Concurs,2024-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 16, 2023",2023-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0232,2023-06-30,['became-law'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-05-14,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Norma Hernandez,2023-04-26,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 008-000-000,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2024-05-24,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 082-017-006,2024-04-19,"['passage', 'reading-3']",IL,103rd +Do Pass / Short Debate Restorative Justice; 007-000-000,2024-05-22,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Ryan Spain,2023-05-18,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2024-05-09,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0911,2024-08-09,['became-law'],IL,103rd +Assigned to Executive,2024-04-30,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-05-25,[],IL,103rd +Arrived in House,2023-11-08,['introduction'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2024-05-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-22,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2024-05-15,['amendment-passage'],IL,103rd +State Mandates Fiscal Note Filed,2023-05-09,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-05-03,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Sonya M. Harper,2024-05-23,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-05-21,[],IL,103rd +Public Act . . . . . . . . . 103-0384,2023-07-28,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2024-05-21,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2023-04-28,['amendment-introduction'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 18, 2023",2023-05-17,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-16,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Local Government,2024-05-23,[],IL,103rd +"House Floor Amendment No. 4 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2024-05-01,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Jay Hoffman,2024-05-25,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 18, 2023",2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-05-11,[],IL,103rd +"Effective Date June 9, 2023; ; Some Provisions",2023-06-09,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2023-04-25,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-03-30,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-04-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Terri Bryant,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0143,2023-06-30,['became-law'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Senate Floor Amendment No. 1 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-11-13,['amendment-introduction'],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-04-10,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-17,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2024-05-15,[],IL,103rd +Do Pass Insurance; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Judiciary,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 012-000-000,2023-05-26,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3, 4",2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 1 Withdrawn by Sen. Don Harmon,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-22,[],IL,103rd +Third Reading - Passed; 033-020-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Villivalam,2023-05-18,['amendment-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Steve Stadelman,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-24,[],IL,103rd +Third Reading - Short Debate - Passed 109-001-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-30,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-03-15,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-04,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0417,2023-08-04,['became-law'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-02-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Police & Fire Committee,2023-05-15,[],IL,103rd +Chief Sponsor Changed to Rep. Terra Costa Howard,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0325,2023-07-28,['became-law'],IL,103rd +"Effective Date June 27, 2023",2023-06-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 5 Recommend Do Adopt Licensed Activities; 008-000-000,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 2 Postponed - Executive,2023-05-17,[],IL,103rd +Arrived in House,2023-05-25,['introduction'],IL,103rd +3/5 Vote Required,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-03-22,[],IL,103rd +Waive Posting Notice,2023-05-08,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-05-03,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-21,[],IL,103rd +Postponed - Education,2024-04-30,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0334,2023-07-28,['became-law'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Assigned to Health and Human Services,2023-05-16,['referral-committee'],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-04,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +House Floor Amendment No. 3 Adopted by Voice Vote,2023-03-23,['amendment-passage'],IL,103rd +Governor Approved,2023-07-31,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-09,['reading-3'],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 018-010-000,2023-03-08,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +"Remove Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-05-18,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-11,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Recalled to Second Reading,2023-05-10,['reading-2'],IL,103rd +Assigned to Agriculture,2023-04-12,['referral-committee'],IL,103rd +Arrived in House,2023-11-08,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-04-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-19,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Sen. Linda Holmes,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0331,2023-08-01,['became-law'],IL,103rd +3/5 Vote Required,2023-11-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-04,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Land Conveyance Appraisal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2023-11-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-04-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 016-000-000,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Suzy Glowiak Hilton,2023-05-24,['filing'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-21,[],IL,103rd +Public Act . . . . . . . . . 103-0416,2023-08-04,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0589,2024-06-05,['became-law'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Anna Moeller,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2023-05-17,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-08,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-02,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-05-03,['amendment-introduction'],IL,103rd +Third Reading - Passed; 049-005-000,2023-05-25,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Dave Severin,2023-03-22,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-08,[],IL,103rd +Assigned to Insurance Committee,2023-11-01,['referral-committee'],IL,103rd +Chief Senate Sponsor Sen. Sue Rezin,2023-03-27,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Ryan Spain,2023-11-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-10-25,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Insurance Committee; 012-000-000,2023-05-16,[],IL,103rd +Do Pass Human Rights; 005-002-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-02,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Housing Affordability Impact Note Filed,2023-05-12,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Transportation: Vehicles & Safety,2024-04-02,[],IL,103rd +Third Reading - Passed; 048-007-001,2024-05-24,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to Health and Human Services,2024-05-23,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-22,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-17,[],IL,103rd +House Committee Amendment No. 2 Tabled,2024-05-08,['amendment-failure'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-04-17,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura Fine,2023-05-16,['filing'],IL,103rd +Third Reading - Short Debate - Passed 075-040-000,2023-05-16,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Third Reading - Short Debate - Passed 075-037-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Labor; 015-001-000,2024-05-23,[],IL,103rd +Assigned to Education,2024-05-14,['referral-committee'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-04-11,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2024-05-14,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-14,[],IL,103rd +House Floor Amendment No. 3 Judicial Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-05-17,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 053-004-000,2023-05-19,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-18,[],IL,103rd +Third Reading - Short Debate - Passed 071-039-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Linda Holmes,2023-05-16,['filing'],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2023-04-20,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Tabled,2024-05-21,['amendment-failure'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-17,['amendment-passage'],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-17,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-05-26,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Sue Scherer,2023-03-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Third Reading - Short Debate - Passed 073-038-001,2023-05-11,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Housing Affordability Impact Note Filed,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-04-21,[],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +"Do Pass / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2023-05-16,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-07-02,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Ann Gillespie,2023-05-16,['filing'],IL,103rd +Pension Note Requested by Rep. Kelly M. Cassidy,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-08,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Recalled to Second Reading - Short Debate,2024-04-19,['reading-2'],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-11-07,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Ann Gillespie,2023-05-26,['filing'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Labor & Commerce Committee; 018-008-000,2023-05-18,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2024-04-12,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Assigned to Health and Human Services,2024-05-01,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Do Pass Executive; 009-000-000,2024-05-01,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2024-05-13,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 057-000-000,2024-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 22, 2024",2024-05-22,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-20,[],IL,103rd +Pension Note Request is Inapplicable,2023-05-17,[],IL,103rd +Referred to Rules Committee,2024-04-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2024-04-29,[],IL,103rd +"House Committee Amendment No. 1 Adopted in Elementary & Secondary Education: Administration, Licensing & Charter Schools; by Voice Vote",2023-05-16,['amendment-passage'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Elizabeth ""Lisa"" Hernandez",2023-05-19,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 State Debt Impact Note Requested as Amended by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0677,2024-07-19,['became-law'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Will Guzzardi,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Do Pass / Short Debate Higher Education Committee; 007-003-000,2023-04-26,['committee-passage'],IL,103rd +Assigned to Executive,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2024-05-26,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-01,['amendment-failure'],IL,103rd +Third Reading - Passed; 052-000-000,2023-11-08,"['passage', 'reading-3']",IL,103rd +State Mandates Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2024-04-11,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-19,[],IL,103rd +Waive Posting Notice,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2024-04-15,[],IL,103rd +Do Pass / Short Debate Consumer Protection Committee; 008-000-000,2024-04-30,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0661,2024-07-19,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-16,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-03-21,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0746,2024-08-02,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2024-04-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-05-12,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2024-09-05,[],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Adriane Johnson,2024-05-25,['filing'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-05-16,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Do Pass Executive; 011-000-000,2024-05-22,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lance Yednock,2023-05-02,['amendment-introduction'],IL,103rd +House Floor Amendment No. 3 Land Conveyance Appraisal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Chief Sponsor Changed to Rep. Jay Hoffman,2023-05-22,[],IL,103rd +Third Reading - Passed; 041-018-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0198,2023-06-30,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Preston,2023-05-10,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2023-04-19,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-04-25,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Adriane Johnson,2023-05-01,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Bob Morgan,2023-11-03,[],IL,103rd +3/5 Vote Required,2023-11-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-04-28,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Michael W. Halpin,2023-05-25,['filing'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-05-18,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-23,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-02,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 106-000-001,2023-11-09,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-11-08,[],IL,103rd +"Effective Date January 1, 2024",2023-08-15,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-15,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0039,2023-06-09,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 103-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-05-02,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-04-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2023-05-24,[],IL,103rd +Waive Posting Notice,2023-05-16,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-11-08,[],IL,103rd +Public Act . . . . . . . . . 103-0338,2023-07-28,['became-law'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-04,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Meg Loughran Cappel,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-21,[],IL,103rd +Pension Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-09,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 114-000-000,2023-05-18,[],IL,103rd +"Effective Date January 1, 2025",2023-07-31,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Ryan Spain,2023-11-09,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Marcus C. Evans, Jr.",2023-05-19,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-14,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Lightford,2024-05-26,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-22,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-04-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Meg Loughran Cappel,2024-05-14,['amendment-introduction'],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Balanced Budget Note Filed,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 008-000-000,2024-05-23,[],IL,103rd +Note / Motion Filed - Note Act Does Not Apply Rep. Stephanie A. Kifowit,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Judiciary,2024-05-14,[],IL,103rd +Racial Impact Note Request is Inapplicable,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Judiciary; 008-000-000,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 4, 2",2023-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +House Committee Amendment No. 3 Tabled,2024-05-08,['amendment-failure'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-03-23,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Recalled to Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Health and Human Services; 010-000-000,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-20,[],IL,103rd +House Floor Amendment No. 3 Land Conveyance Appraisal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0215,2023-06-30,['became-law'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kelly M. Cassidy,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Travis Weaver,2024-05-13,['amendment-introduction'],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 19, 2023",2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-1004,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-05-18,[],IL,103rd +"Alternate Co-Sponsor Removed Rep. Edgar Gonzalez, Jr.",2023-03-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Public Health Committee,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-04-17,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Loughran Cappel,2023-05-11,['amendment-passage'],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-07-03,[],IL,103rd +Do Pass as Amended Executive; 012-000-000,2024-05-15,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Assigned to Executive,2024-05-09,['referral-committee'],IL,103rd +Racial Impact Note Requested by Rep. Kelly M. Cassidy,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-04-29,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-20,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Energy & Environment Committee; 027-000-000,2023-11-07,['committee-passage-favorable'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Adriane Johnson,2023-04-21,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Arrived in House,2024-05-17,['introduction'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-03-28,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Balanced Budget Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-25,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-04-12,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Senate Floor Amendment No. 4 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-21,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2023-05-08,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-26,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 019-006-000,2023-05-03,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy L. Grant,2024-05-13,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Arrived in House,2024-05-22,['introduction'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-10,[],IL,103rd +House Committee Amendment No. 2 Adopted in Transportation: Vehicles & Safety; by Voice Vote,2024-05-01,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-04-25,[],IL,103rd +Removed Co-Sponsor Rep. Kam Buckner,2023-11-09,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-16,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2023-05-12,['amendment-introduction'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Third Reading - Passed; 058-000-000,2023-04-19,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Steve Stadelman,2023-03-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Chapin Rose,2023-05-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-16,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-04-19,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Maura Hirschauer,2023-05-10,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 5 Referred to Assignments,2023-05-17,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mark L. Walker,2024-05-14,[],IL,103rd +Governor Approved,2023-12-08,['executive-signature'],IL,103rd +Referred to Assignments,2023-04-25,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-23,[],IL,103rd +Third Reading - Short Debate - Passed 099-001-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Sonya M. Harper,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 091-022-000,2023-05-17,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Third Reading - Passed; 049-003-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +Third Reading - Short Debate - Passed 070-037-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Labor,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0342,2023-07-28,['became-law'],IL,103rd +Senate Floor Amendment No. 5 Adopted; Anderson,2023-05-17,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-03-20,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Pension Note Requested by Rep. Will Guzzardi,2024-05-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-10-25,[],IL,103rd +"Effective Date January 1, 2024",2023-08-11,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-24,['amendment-passage'],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Tom Bennett,2023-03-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2023-05-19,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Resolution Adopted; 039-018-000,2024-05-26,['passage'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-04-27,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-05-04,[],IL,103rd +3/5 Vote Required,2023-05-25,[],IL,103rd +House Floor Amendment No. 3 Correctional Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-05-09,[],IL,103rd +Racial Impact Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +Referred to Assignments,2023-05-09,[],IL,103rd +House Floor Amendment No. 3 Correctional Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-10-25,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Education,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-04-26,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Effective Date June 7, 2023; Some Provisions",2023-06-07,[],IL,103rd +Sent to the Governor,2023-06-23,['executive-receipt'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2023-05-10,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-17,['reading-2'],IL,103rd +3/5 Vote Required,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-05-18,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-17,[],IL,103rd +House Committee Amendment No. 2 To Revenue - Tax Credit and Incentives Subcommittee,2024-03-08,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-05-20,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-04-16,[],IL,103rd +Third Reading - Passed; 040-019-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Referred to Assignments,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-04-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-08,['reading-3'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 108-000-000,2024-05-28,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Willie Preston,2023-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jackie Haas,2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2024-05-03,[],IL,103rd +"Effective Date January 1, 2024",2023-08-03,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-03-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-05-15,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-20,[],IL,103rd +Assigned to Executive,2023-05-17,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-16,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Education,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-10-24,[],IL,103rd +First Reading,2024-05-22,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-10,[],IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-20,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Villa,2024-05-26,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4a,2024-04-12,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 3 Motion to Concur Recommends Be Adopted Energy & Environment Committee; 015-009-000,2024-05-28,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Public Act . . . . . . . . . 103-0819,2024-08-09,['became-law'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Senate Floor Amendment No. 1 House Concurs 100-014-000,2023-05-17,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2024-06-13,[],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0798,2024-08-09,['became-law'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3",2024-05-26,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-16,['amendment-passage'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anna Moeller,2024-05-23,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Arrived in House,2023-11-08,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Laura Ellman,2024-04-24,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Agriculture & Conservation Committee,2024-05-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Norine K. Hammond,2024-05-15,[],IL,103rd +Do Pass Revenue; 007-000-000,2024-05-01,['committee-passage'],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Tracy Katz Muhl,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-03-21,[],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Motion to Suspend Rule 21 - Prevailed 071-039-000,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-21,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-04-18,[],IL,103rd +Assigned to Judiciary,2024-04-30,['referral-committee'],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Emanuel ""Chris"" Welch",2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2024-04-16,[],IL,103rd +Recalled to Second Reading,2024-04-12,['reading-2'],IL,103rd +Recalled to Second Reading,2024-05-16,['reading-2'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-10,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Robert ""Bob"" Rita",2023-11-02,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-05-22,[],IL,103rd +Recalled to Second Reading,2024-04-18,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 109-000-000,2023-05-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2023-04-11,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Celina Villanueva,2024-05-23,['filing'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 012-000-000,2024-05-22,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-01,[],IL,103rd +State Debt Impact Note Filed,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0394,2023-07-28,['became-law'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-04-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. John M. Cabello,2023-05-09,[],IL,103rd +Governor Approved,2023-12-08,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-05-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-21,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-22,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2024-05-15,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Third Reading - Short Debate - Passed 102-001-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Meg Loughran Cappel,2023-05-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-23,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-03-30,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-15,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3, 4",2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to State Government Administration Committee,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 Withdrawn by Sen. Don Harmon,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-03-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Effective Date December 9, 2023; ; Some Provisions",2023-06-09,[],IL,103rd +Postponed - Executive,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-25,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-10,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Health and Human Services,2023-05-09,['amendment-passage'],IL,103rd +House Committee Amendment No. 3 Adopted in Revenue & Finance Committee; by Voice Vote,2024-05-16,['amendment-passage'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-21,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-03-15,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Third Reading - Passed; 051-002-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 3 Adopted; Villivalam,2023-05-18,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-05-03,[],IL,103rd +Do Pass Education; 013-000-000,2023-04-26,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0343,2023-07-28,['became-law'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 112-000-000,2023-05-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-05-22,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Karina Villa,2023-05-04,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Police & Fire Committee; 014-000-000,2023-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Dagmara Avelar,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-05-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0046,2023-06-09,['became-law'],IL,103rd +Assigned to Transportation,2023-05-08,['referral-committee'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-11-13,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-03-24,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2023-03-16,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-11-08,"['passage', 'reading-3']",IL,103rd +"Effective Date August 29, 2023",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-05-05,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-05-09,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-11-01,['referral-committee'],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Lindsey LaPointe,2023-05-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-04-19,[],IL,103rd +House Floor Amendment No. 5 Recommends Be Adopted Insurance Committee; 009-003-000,2024-04-18,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-15,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Public Act . . . . . . . . . 103-0080,2023-06-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-16,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-04-19,[],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Emanuel ""Chris"" Welch",2024-05-20,[],IL,103rd +Do Pass as Amended / Short Debate Child Care Accessibility & Early Childhood Education Committee; 014-000-000,2024-03-22,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-19,['reading-3'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Assigned to State Government Administration Committee,2024-05-24,['referral-committee'],IL,103rd +Public Act . . . . . . . . . 103-0483,2023-08-04,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Jed Davis,2023-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-19,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-08,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2024-05-23,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-17,[],IL,103rd +Public Act . . . . . . . . . 103-0584,2024-03-18,['became-law'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-19,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Judicial Note Requested by Rep. Bradley Fritts,2024-05-16,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +"Do Pass as Amended / Short Debate Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-000",2023-05-16,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-10,['amendment-passage'],IL,103rd +Governor Approved,2024-06-07,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Matt Hanson,2024-05-29,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-11-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-05-09,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-05-10,['amendment-passage'],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2024-05-21,[],IL,103rd +Public Act . . . . . . . . . 103-0772,2024-08-02,['became-law'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Travis Weaver,2024-04-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-16,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-19,[],IL,103rd +Public Act . . . . . . . . . 103-0629,2024-07-01,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-06-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2024-05-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-06-03,[],IL,103rd +Public Act . . . . . . . . . 103-0621,2024-07-01,['became-law'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-05-15,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-19,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 16, 2023",2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2024-05-09,[],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Local Government; 008-000-000,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-04-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-21,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-05-18,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-05-21,[],IL,103rd +"Added Alternate Co-Sponsor Rep. William ""Will"" Davis",2024-05-21,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-04-19,[],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2024-05-01,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-14,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Karina Villa,2023-05-16,['filing'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Transportation: Vehicles & Safety,2024-05-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 3,2023-05-11,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to State Government,2024-05-23,[],IL,103rd +Judicial Note Filed,2023-05-12,[],IL,103rd +Third Reading - Short Debate - Passed 063-038-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-21,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-16,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-04-26,['amendment-failure'],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2024-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lilian Jiménez,2023-05-12,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. David Koehler,2023-05-18,['filing'],IL,103rd +Public Act . . . . . . . . . 103-0923,2024-08-09,['became-law'],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-05-09,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-15,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0953,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-11-08,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-04-25,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-14,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-05-16,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-11,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Senate Concurs 043-016-000,2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Health and Human Services,2023-05-16,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Public Act . . . . . . . . . 103-0880,2024-08-09,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0501,2023-08-04,['became-law'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 22, 2024",2024-05-22,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Effective Date July 1, 2025",2024-08-09,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-24,[],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2023-11-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-24,['reading-3'],IL,103rd +House Committee Amendment No. 2 Adopted in Executive Committee; by Voice Vote,2024-05-15,['amendment-passage'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Assigned to Adoption & Child Welfare Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Christopher Belt,2023-05-18,['filing'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Porfirio,2024-04-29,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-04-18,['referral-committee'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Personnel & Pensions Committee; 006-003-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 012-000-000,2024-05-15,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2024-05-14,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-05-24,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Lilian Jiménez,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-21,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Dan McConchie,2023-05-19,[],IL,103rd +Third Reading - Short Debate - Passed 115-000-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-11,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Public Act . . . . . . . . . 103-0876,2024-08-09,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 073-040-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-03,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 042-016-000,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-15,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2023-05-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-12,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-19,[],IL,103rd +Public Act . . . . . . . . . 103-0496,2023-08-04,['became-law'],IL,103rd +Assigned to Housing,2024-04-15,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-21,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-18,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Cristina H. Pacione-Zayas,2023-05-18,['filing'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-05-02,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-05-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-05-14,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-25,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Transportation: Vehicles & Safety; 011-000-000,2024-05-22,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-23,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Eva-Dina Delgado,2023-11-09,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura Fine,2024-05-23,['filing'],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2024-05-28,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Insurance,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 008-000-000,2024-05-23,[],IL,103rd +Third Reading - Short Debate - Passed 085-028-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Motion Filed to Reconsider Vote Rep. Anna Moeller,2023-03-24,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 008-003-000,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-04-20,[],IL,103rd +Do Pass / Short Debate Agriculture & Conservation Committee; 009-000-000,2023-04-25,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary Beth Canty,2024-04-24,['amendment-introduction'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Health and Human Services; 009-000-000,2023-05-16,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3, 5",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Do Pass as Amended Judiciary; 009-000-000,2024-05-15,['committee-passage'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Charles Meier,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-09,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Sen. Kimberly A. Lightford,2024-05-17,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-29,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0011,2023-06-09,['became-law'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Aaron M. Ortiz,2023-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-23,[],IL,103rd +Motion Do Pass as Amended - Lost Revenue & Finance Committee; 009-009-000,2024-05-16,['committee-failure'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Special Committee on Criminal Law and Public Safety,2023-04-25,[],IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2023-03-15,[],IL,103rd +Do Pass as Amended Health and Human Services; 008-000-000,2023-05-09,['committee-passage'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Passed Both Houses,2023-11-08,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-05-18,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-04-10,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-04-26,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to State Government,2023-05-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-08,[],IL,103rd +Public Act . . . . . . . . . 103-0147,2023-06-30,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-01,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-05-01,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Harmon,2023-11-09,['amendment-passage'],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-26,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-04-04,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Insurance Committee; 014-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Assigned to Prescription Drug Affordability & Accessibility Committee,2023-02-21,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-04-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Michael J. Kelly,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Dagmara Avelar,2023-05-19,[],IL,103rd +Pension Note Requested by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 108-000-000,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0293,2023-07-28,['became-law'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3",2023-05-11,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Senate Floor Amendment No. 2 House Concurs 112-000-000,2023-05-27,[],IL,103rd +"Motion Filed to Suspend Rule 21 State Government Administration Committee; Rep. Elizabeth ""Lisa"" Hernandez",2024-05-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2023-03-29,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-15,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to State Government,2023-05-24,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. John M. Cabello,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-05-04,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2023-05-05,[],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2023-05-08,[],IL,103rd +Referred to Assignments,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-15,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2023-11-03,['amendment-introduction'],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +"Added Alternate Co-Sponsor Rep. William ""Will"" Davis",2023-05-19,[],IL,103rd +"Effective Date July 1, 2024",2024-06-07,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy L. Grant,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-19,[],IL,103rd +Assigned to Executive Committee,2024-05-20,['referral-committee'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-19,[],IL,103rd +House Floor Amendment No. 4 Adopted,2024-04-10,['amendment-passage'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +"Removed Co-Sponsor Rep. Maurice A. West, II",2024-04-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Patrick Windhorst,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-04-19,[],IL,103rd +Public Act . . . . . . . . . 103-0376,2023-07-28,['became-law'],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Bradley Fritts,2024-05-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kevin John Olickal,2023-05-08,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +House Floor Amendment No. 4 Adopted,2023-05-10,['amendment-passage'],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-25,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-23,[],IL,103rd +Public Act . . . . . . . . . 103-0764,2024-08-02,['became-law'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-04-15,['referral-committee'],IL,103rd +Assigned to State Government,2023-05-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-16,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Alternate Co-Sponsor Removed Rep. Barbara Hernandez,2024-04-17,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2024-05-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0083,2023-06-09,['became-law'],IL,103rd +House Floor Amendment No. 3 Adopted,2023-11-09,['amendment-passage'],IL,103rd +Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Ann Gillespie,2023-05-26,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Special Committee on Criminal Law and Public Safety,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2024-05-02,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 008-000-003,2024-05-01,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-20,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kimberly Du Buclet,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-04-20,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Christopher Belt,2023-05-18,['filing'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-05-25,"['passage', 'reading-3']",IL,103rd +"Senate Floor Amendment No. 2 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments:",2024-05-14,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 3,2024-05-21,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Sharon Chung,2023-05-05,['amendment-introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-14,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 11, 2023",2023-05-10,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +State Debt Impact Note Request is Inapplicable,2023-05-17,[],IL,103rd +Motion Prevailed 069-039-000,2023-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kam Buckner,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-05-08,[],IL,103rd +Balanced Budget Note Requested by Rep. Kelly M. Cassidy,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-22,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Dan Caulkins,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Public Health Committee; 008-000-000,2024-05-22,[],IL,103rd +Second Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Motion Filed to Reconsider Vote Rep. Anna Moeller,2024-05-23,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Chief House Sponsor Rep. Maurice A. West, II",2024-05-17,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-09,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 4 - May 17, 2023",2023-05-16,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-28,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-22,['amendment-passage'],IL,103rd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt Health and Human Services; 010-000-000,2024-05-24,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicole La Ha,2024-05-15,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2023-05-16,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-22,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2024-05-20,[],IL,103rd +Added as Co-Sponsor Sen. Dale Fowler,2023-03-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-0088,2023-06-09,['became-law'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-04-21,[],IL,103rd +Second Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +Chief Sponsor Changed to Sen. Mattie Hunter,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2024-07-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-09,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2023-05-16,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Health and Human Services,2023-05-16,[],IL,103rd +Home Rule Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Do Pass Health and Human Services; 014-000-000,2024-05-08,['committee-passage'],IL,103rd +Do Pass / Short Debate Insurance Committee; 015-000-000,2024-04-30,['committee-passage'],IL,103rd +Recalled to Second Reading,2024-05-24,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-16,[],IL,103rd +House Committee Amendment No. 4 Tabled,2024-05-08,['amendment-failure'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-13,[],IL,103rd +House Floor Amendment No. 3 Pension Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Celina Villanueva,2024-05-26,['amendment-introduction'],IL,103rd +Chief Sponsor Changed to Rep. Bob Morgan,2023-11-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Gregg Johnson,2023-05-25,[],IL,103rd +Third Reading - Passed; 046-010-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-02-28,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jay Hoffman,2023-05-22,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-01,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0528,2023-08-15,['became-law'],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0302,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2023-03-30,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-08,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-02,[],IL,103rd +"Senate Floor Amendment No. 3 Motion Filed Concur Rep. Marcus C. Evans, Jr.",2023-05-19,[],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-13,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jeff Keicher,2023-11-03,[],IL,103rd +Third Reading - Short Debate - Passed 090-014-000,2023-11-09,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Removed Co-Sponsor Rep. Jason Bunting,2023-03-02,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-17,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-11-09,['amendment-passage'],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Public Act . . . . . . . . . 103-0406,2023-07-31,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-25,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Added Chief Co-Sponsor Rep. Amy Elik,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 2 Adopted; Judiciary,2023-05-02,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-04-15,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-11-08,[],IL,103rd +Chief Sponsor Changed to Sen. Celina Villanueva,2023-11-09,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +House Floor Amendment No. 2 Pension Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-04-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-04-25,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2023-04-21,['amendment-introduction'],IL,103rd +Arrived in House,2023-11-09,['introduction'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Restorative Justice,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-05-13,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Judiciary - Civil Committee,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Barbara Hernandez,2024-05-03,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 22, 2024",2024-05-22,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0756,2024-08-02,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-01,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-07,[],IL,103rd +"Effective Date July 19, 2024",2024-07-22,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Sen. Mary Edly-Allen,2024-09-05,[],IL,103rd +Public Act . . . . . . . . . 103-0628,2024-07-01,['became-law'],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-07,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-22,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Lightford,2024-05-26,['amendment-passage'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 3,2023-11-08,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-05-10,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-03-21,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Jehan Gordon-Booth,2024-05-25,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-11,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2023-05-08,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jackie Haas,2024-05-15,[],IL,103rd +"Effective Date June 1, 2024",2023-12-08,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. William E Hauter,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 3 House Concurs 072-037-000,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Ellman,2024-05-07,['amendment-introduction'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Alternate Co-Sponsor Removed Rep. Patrick Sheehan,2024-05-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-15,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Revenue,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-04-30,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-05-22,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Third Reading - Passed; 056-001-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Chief Sponsor Changed to Rep. Katie Stuart,2024-05-28,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-23,[],IL,103rd +Pension Note Filed,2023-05-12,[],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Porfirio,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2024-04-16,[],IL,103rd +Added Chief Co-Sponsor Rep. Rita Mayfield,2024-05-22,[],IL,103rd +Do Pass as Amended Agriculture; 008-000-000,2024-05-16,['committee-passage'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Assigned to Labor & Commerce Committee,2023-04-18,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Adopted,2024-04-12,['amendment-passage'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +Do Pass as Amended / Short Debate Transportation: Vehicles & Safety; 007-004-000,2024-05-01,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2024-04-16,[],IL,103rd +Public Act . . . . . . . . . 103-0948,2024-08-09,['became-law'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 1 Adopted; N. Harris,2024-05-16,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-0976,2024-08-09,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Do Pass Veterans Affairs; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Executive Committee,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4a,2024-04-18,['amendment-failure'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 22, 2024",2024-05-22,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2024-05-28,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 21, 2024",2024-05-21,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-23,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Randy E. Frese,2024-05-22,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-15,[],IL,103rd +Do Pass as Amended Health and Human Services; 010-000-000,2024-05-21,['committee-passage'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Alternate Chief Co-Sponsor Removed Rep. Robert ""Bob"" Rita",2023-11-02,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0839,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-11-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-20,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-03-24,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-04-19,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +Third Reading - Passed; 051-000-000,2023-05-24,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 1 House Concurs 069-034-000,2023-05-24,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-10,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-03-24,[],IL,103rd +Senate Floor Amendment No. 6 Filed with Secretary by Sen. Christopher Belt,2023-05-18,['amendment-introduction'],IL,103rd +Do Pass Executive; 008-002-000,2023-04-20,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 5 Assignments Refers to Executive,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-16,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-16,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Lance Yednock,2023-05-19,[],IL,103rd +Third Reading - Passed; 046-009-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-12-08,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-03-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2023-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +House Floor Amendment No. 1 Fiscal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-03-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-16,[],IL,103rd +Adopted Both Houses,2024-05-26,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-05-18,[],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2023-04-18,['referral-committee'],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-04-28,[],IL,103rd +Second Reading - Short Debate,2023-05-08,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Assigned to Labor & Commerce Committee,2024-03-20,['referral-committee'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura M. Murphy,2023-03-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-04-26,[],IL,103rd +Assigned to Health and Human Services,2023-04-25,['referral-committee'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0442,2023-08-04,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Human Services Committee,2023-05-24,[],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +"Effective Date July 1, 2023; Some Provisions",2023-06-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0448,2023-08-04,['became-law'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2024-05-16,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-24,['amendment-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2023-03-30,[],IL,103rd +Public Act . . . . . . . . . 103-0534,2023-08-11,['became-law'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +"Effective Date December 8, 2023",2023-12-08,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-12,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-05-23,[],IL,103rd +Racial Impact Note Requested by Rep. Will Guzzardi,2024-05-27,[],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Severin,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-17,[],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 071-034-000,2023-11-09,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Arrived in House,2023-05-17,['introduction'],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Education; 013-000-000,2023-05-10,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-03-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-10-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-05,[],IL,103rd +House Floor Amendment No. 1 Fiscal Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-10-25,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-10,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Caulkins,2024-05-09,[],IL,103rd +State Debt Impact Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Third Reading - Passed; 037-019-000,2023-05-25,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-11-08,[],IL,103rd +Public Act . . . . . . . . . 103-0184,2023-06-30,['became-law'],IL,103rd +House Floor Amendment No. 1 Withdrawn by Rep. Robyn Gabel,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-03-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2024-05-08,[],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Education; 012-000-000,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Laura Faver Dias,2024-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0413,2023-08-03,['became-law'],IL,103rd +Assigned to Energy and Public Utilities,2024-04-30,['referral-committee'],IL,103rd +Assigned to Labor & Commerce Committee,2023-03-20,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-17,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2024-05-16,[],IL,103rd +Referred to Assignments,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 108-000-000,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-10-24,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-05-23,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2023-05-16,['committee-passage-favorable'],IL,103rd +Third Reading - Passed; 051-003-003,2024-05-24,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-18,[],IL,103rd +Do Pass Transportation; 017-000-000,2023-04-19,['committee-passage'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-16,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-10,[],IL,103rd +House Concurs,2024-05-28,[],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Ann M. Williams,2024-05-24,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 012-000-000,2023-10-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-17,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-17,[],IL,103rd +Do Pass State Government; 007-000-000,2024-05-09,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-03-07,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Public Health Committee,2023-05-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2024-05-17,[],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-25,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Ram Villivalam,2023-05-16,['amendment-introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2024-09-06,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-04-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-05-08,[],IL,103rd +Recommends Be Adopted Labor & Commerce Committee; 015-008-000,2023-03-29,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-04,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +House Concurs,2023-05-24,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-03,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-03-24,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-04-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-24,['amendment-failure'],IL,103rd +Do Pass as Amended Judiciary; 006-000-000,2023-05-03,['committee-passage'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Senate Floor Amendment No. 6 Referred to Assignments,2023-05-18,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 009-000-000,2023-04-27,[],IL,103rd +Governor Approved,2024-08-06,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-03-16,[],IL,103rd +"Effective Date October 1, 2023",2023-06-30,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Arrived in House,2023-04-19,['introduction'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 5 Recommend Do Adopt Executive; 011-000-000,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0583,2023-12-08,['became-law'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 071-027-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-11-08,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Katie Stuart,2024-05-28,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Waive Posting Notice,2024-05-23,[],IL,103rd +Housing Affordability Impact Note Filed,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 2 Withdrawn by Sen. Michael E. Hastings,2024-05-26,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 012-000-000,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2024-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4a,2024-04-18,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-19,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-05-22,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura Ellman,2024-05-23,['filing'],IL,103rd +Public Act . . . . . . . . . 103-0933,2024-08-09,['became-law'],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-23,[],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 109-000-000,2024-05-28,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-04-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2024-05-09,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Education,2024-05-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Robert Peters,2024-05-24,['filing'],IL,103rd +"Added Alternate Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Laura Faver Dias,2023-04-21,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-03-21,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2024-05-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2024-05-22,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Emanuel ""Chris"" Welch",2024-05-20,['amendment-introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 21, 2024",2024-05-21,[],IL,103rd +Chief Senate Sponsor Sen. Mike Porfirio,2024-04-17,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-01,['amendment-failure'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-05-22,[],IL,103rd +Chief Sponsor Changed to Sen. Celina Villanueva,2023-05-09,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-11-07,['amendment-introduction'],IL,103rd +Arrive in Senate,2024-04-17,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2023-04-18,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +House Concurs,2024-05-28,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-07,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Energy & Environment Committee,2024-05-20,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2024-04-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Paul Faraci,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2024-05-14,[],IL,103rd +Chief Senate Sponsor Sen. Celina Villanueva,2024-04-16,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +Assigned to Executive,2024-04-30,['referral-committee'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-04-30,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 21, 2024",2024-05-21,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Thaddeus Jones,2023-05-10,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0473,2023-08-04,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2023-03-30,[],IL,103rd +Racial Impact Note Requested by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-05,[],IL,103rd +State Debt Impact Note Requested by Rep. Will Guzzardi,2024-05-27,[],IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. Kevin John Olickal,2024-05-24,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-03,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-17,[],IL,103rd +Arrived in House,2023-05-25,['introduction'],IL,103rd +House Floor Amendment No. 3 Fiscal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Abdelnasser Rashid,2024-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-10-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-03-30,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dave Severin,2023-03-23,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-08,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0571,2023-12-08,['became-law'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2023-03-30,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-25,[],IL,103rd +Chief Sponsor Changed to Sen. Christopher Belt,2023-11-09,[],IL,103rd +Assigned to Executive,2023-04-18,['referral-committee'],IL,103rd +Governor Item/Reduction Veto PA 103-0006; With Appropriation Items Reduced,2023-06-07,['executive-veto-line-item'],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Re-referred to Assignments,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-17,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +Second Reading,2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +"Effective Date July 28, 2023; ; some provisions",2023-07-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-04-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-11,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Lance Yednock,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-07,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Higher Education Committee,2023-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Human Services Committee,2023-05-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2024-05-17,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-20,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-12,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-05-23,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-17,['amendment-failure'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-24,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-26,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2024-05-07,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 007-004-000,2023-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-05-11,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-11-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0730,2024-08-02,['became-law'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-04-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Barbara Hernandez,2024-04-19,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-19,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Michael W. Halpin,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2024-05-15,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicole La Ha,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Fred Crespo,2024-05-15,[],IL,103rd +Remains in Revenue & Finance Committee,2024-05-16,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-05-26,[],IL,103rd +"Effective Date January 1, 2024",2023-08-11,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt State Government; 009-000-000,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 108-000-000,2023-05-19,[],IL,103rd +Recalled to Second Reading,2023-05-19,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2024-01-12,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-05-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-05-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-04-06,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-04-28,[],IL,103rd +Assigned to Prescription Drug Affordability & Accessibility Committee,2023-02-21,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-11-09,[],IL,103rd +Arrive in Senate,2023-03-23,['introduction'],IL,103rd +"Senate Floor Amendment No. 3 Motion Filed Concur Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0016,2023-06-09,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Police & Fire Committee; 012-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-04-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0287,2023-07-28,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0193,2023-06-30,['became-law'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Rita Mayfield,2023-03-15,[],IL,103rd +Public Act . . . . . . . . . 103-0182,2023-06-30,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0169,2023-06-30,['became-law'],IL,103rd +Third Reading - Passed; 057-000-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Chief Co-Sponsor Changed to Rep. Lakesia Collins,2023-05-03,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 10, 2023",2023-05-09,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2023-05-04,[],IL,103rd +House Concurs,2023-05-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Dagmara Avelar,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Jenn Ladisch Douglass,2023-03-23,[],IL,103rd +Sent to the Governor,2023-12-07,['executive-receipt'],IL,103rd +Third Reading - Passed; 041-011-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Maurice A. West, II",2023-05-09,[],IL,103rd +Arrived in House,2023-05-10,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +"Added Chief Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-03-23,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Veterans Affairs,2023-05-02,[],IL,103rd +Motion to Reconsider Vote - Withdrawn Rep. Anna Moeller,2023-04-03,[],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-12,[],IL,103rd +Public Act . . . . . . . . . 103-0092,2023-06-09,['became-law'],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-12,['reading-2'],IL,103rd +Alternate Co-Sponsor Removed Rep. Lilian Jiménez,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-20,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 038-018-000,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0223,2023-06-30,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0095,2023-06-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-04-20,[],IL,103rd +Public Act . . . . . . . . . 103-0968,2024-08-09,['became-law'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-23,[],IL,103rd +Public Act . . . . . . . . . 103-0972,2024-08-09,['became-law'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-15,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-19,[],IL,103rd +Assigned to Insurance Committee,2024-04-24,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-05-01,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-04-24,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2024-05-21,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to State Government,2023-05-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Insurance; 007-000-000,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2024-05-21,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-09,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-11-09,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mike Porfirio,2024-05-01,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-03,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-10,[],IL,103rd +"Removed Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-14,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Transportation: Vehicles & Safety; 011-000-000,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Executive Committee,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-17,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0814,2024-08-09,['became-law'],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-15,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0809,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jackie Haas,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 012-000-000,2024-05-15,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Katie Stuart,2023-05-01,['amendment-introduction'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to State Government,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-04-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-10,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2023-05-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2023-05-12,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Special Committee on Criminal Law and Public Safety,2023-05-16,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Chief House Sponsor Rep. Jay Hoffman,2023-05-11,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0591,2024-06-07,['became-law'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-01,[],IL,103rd +Second Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-05-05,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-03-29,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Linda Holmes,2024-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0373,2023-07-28,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-10,['reading-3'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to State Government,2023-05-24,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Mental Health & Addiction Committee,2023-05-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Pension Note Requested by Rep. Bradley Fritts,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-04-19,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Lakesia Collins,2023-05-08,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-19,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed by Voice Vote,2024-05-24,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Lakesia Collins,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Randy E. Frese,2023-05-03,[],IL,103rd +Public Act . . . . . . . . . 103-0073,2023-06-09,['became-law'],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-11-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-29,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Kimberly A. Lightford,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 4 Senate Floor Amendment No. 4 Approved For Consideration Pursuant to Senate Rule 3-8(d-10),2024-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-07,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Arrived in House,2023-05-25,['introduction'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-02-28,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-15,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-05-04,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-04-25,[],IL,103rd +Do Pass Health and Human Services; 009-000-000,2023-05-16,['committee-passage'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-03-30,[],IL,103rd +Public Act . . . . . . . . . 103-0438,2023-08-04,['became-law'],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-14,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Agriculture,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0337,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Sue Scherer,2023-05-25,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3",2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Bob Morgan,2023-11-08,[],IL,103rd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-16,[],IL,103rd +House Floor Amendment No. 3 Pension Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2023-11-09,[],IL,103rd +Assigned to Health and Human Services,2023-04-12,['referral-committee'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Ugaste,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-09,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-04-03,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Arrived in House,2023-05-17,['introduction'],IL,103rd +State Mandates Fiscal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-03-23,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2023-05-25,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-23,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Jay Hoffman,2023-05-22,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0441,2023-08-04,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-11,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-14,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2024-05-27,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Public Utilities Committee,2023-05-03,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2023-11-03,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-05-19,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-21,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 3 - May 21, 2024",2024-05-21,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2023-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0484,2023-08-04,['became-law'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-05-05,[],IL,103rd +Third Reading - Short Debate - Passed 101-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Michael W. Halpin,2023-05-16,['filing'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Judiciary; 009-000-000,2024-05-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2024-05-15,[],IL,103rd +First Reading,2024-05-17,['reading-1'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kimberly Du Buclet,2023-05-16,[],IL,103rd +State Debt Impact Note Requested by Rep. Kelly M. Cassidy,2023-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Will Guzzardi,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0360,2023-07-28,['became-law'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Paul Jacobs,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-03-28,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2023-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-09,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Health and Human Services; 009-000-000,2023-05-16,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Mary Beth Canty,2023-04-20,[],IL,103rd +Third Reading - Short Debate - Passed 101-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Lakesia Collins,2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Gaming Committee,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-23,[],IL,103rd +House Floor Amendment No. 3 Racial Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-09,['amendment-introduction'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-15,['reading-2'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-05-14,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +Motion to Reconsider Vote - Withdrawn Rep. Anna Moeller,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Fred Crespo,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-05-18,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Kelly M. Cassidy,2023-03-24,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 006-003-003,2023-05-16,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Public Act . . . . . . . . . 103-0922,2024-08-09,['became-law'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Ellman,2024-05-24,['amendment-passage'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-05-19,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Appropriations- Education,2023-04-25,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Home Rule Note Request is Inapplicable,2023-05-17,[],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +State Mandates Fiscal Note Request is Inapplicable,2023-05-17,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Doris Turner,2023-05-17,['filing'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Lindsey LaPointe,2023-05-02,['amendment-introduction'],IL,103rd +Housing Affordability Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-21,[],IL,103rd +House Floor Amendment No. 2 State Debt Impact Note Filed as Amended,2024-05-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 012-000-000,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2024-05-01,['amendment-introduction'],IL,103rd +Home Rule Note Filed,2023-05-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-16,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Restorative Justice; 007-000-000,2024-04-16,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-05-07,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2024-05-25,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-11-09,[],IL,103rd +Public Act . . . . . . . . . 103-0699,2024-07-22,['became-law'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-05-13,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 010-004-000,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2024-05-16,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2024-05-13,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 073-035-000,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-14,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-04-16,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to Executive,2024-05-25,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-19,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-12-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 090-019-000,2024-05-14,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2023-04-24,['amendment-introduction'],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-17,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-11-08,[],IL,103rd +Arrived in House,2023-05-10,['introduction'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +"Effective Date January 1, 2025",2023-06-09,[],IL,103rd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Tabled,2023-03-23,['amendment-failure'],IL,103rd +Chief Co-Sponsor Changed to Rep. Stephanie A. Kifowit,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 088-019-000,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Bob Morgan,2023-11-08,[],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-03-16,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Agriculture,2023-04-27,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2023-05-22,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 1 - November 9, 2023",2023-11-09,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Racial Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Chief Senate Sponsor Sen. Paul Faraci,2023-03-29,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary Gill,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Education,2023-05-02,['amendment-passage'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-09,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Lance Yednock,2023-05-08,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-05-21,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 109-000-000,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-25,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-03-31,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-11-03,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Ellman,2023-05-15,['amendment-introduction'],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Postponed - Health and Human Services,2023-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-09,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-16,['reading-2'],IL,103rd +3/5 Vote Required,2023-11-09,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Do Pass as Amended Executive; 008-004-000,2023-05-04,['committee-passage'],IL,103rd +Chief Senate Sponsor Sen. Julie A. Morrison,2023-03-27,[],IL,103rd +Racial Impact Note Requested by Rep. Bradley Fritts,2024-05-16,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-04,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Morrison,2023-05-11,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-0132,2023-06-30,['became-law'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-03-14,[],IL,103rd +"Chief Sponsor Changed to Rep. Emanuel ""Chris"" Welch",2024-05-28,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - November 9, 2023",2023-11-09,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0207,2023-06-30,['became-law'],IL,103rd +Third Reading - Passed; 036-019-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2024-05-29,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2024-05-07,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Executive Committee; 012-000-000,2024-04-17,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Bill Cunningham,2024-05-14,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-23,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-01,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 056-000-000,2023-05-19,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Brad Stephens,2023-04-20,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to State Government,2023-05-19,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 013-000-000,2023-04-26,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. David Koehler,2024-05-23,['filing'],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-05-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +"Chief House Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-12,[],IL,103rd +State Mandates Fiscal Note Request is Inapplicable,2023-05-17,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Alternate Chief Sponsor Removed Rep. Dan Caulkins,2023-03-24,[],IL,103rd +House Floor Amendment No. 4 Rules Refers to Adoption & Child Welfare Committee,2024-05-06,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-19,[],IL,103rd +Recalled to Second Reading,2024-05-15,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0835,2024-08-09,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +"Effective Date August 4, 2023",2023-08-07,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-02,[],IL,103rd +Note / Motion Filed - Note Act Does Not Apply Rep. Justin Slaughter,2023-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Fiscal Note Filed as Amended,2024-05-01,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-16,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-18,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 039-017-000,2023-05-19,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Appropriations- Education,2023-04-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-19,[],IL,103rd +House Floor Amendment No. 3 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-01,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +3/5 Vote Required,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2024-05-01,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2023-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0997,2024-08-09,['became-law'],IL,103rd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2023-05-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-24,['reading-3'],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 029-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-22,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2023-03-28,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2023-05-19,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-05-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Kimberly Du Buclet,2024-05-24,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-10,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 21, 2024",2024-05-21,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Labor & Commerce Committee,2023-05-09,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-16,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-17,[],IL,103rd +House Floor Amendment No. 3 State Debt Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Third Reading - Passed; 036-016-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Referred to Rules Committee,2024-05-17,[],IL,103rd +"Effective Date January 1, 2024; ; some provisions",2023-07-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-19,[],IL,103rd +Recommends Be Adopted Labor & Commerce Committee; 019-010-000,2024-04-03,['committee-passage-favorable'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-05-07,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-10-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-04-15,[],IL,103rd +Public Act . . . . . . . . . 103-0370,2023-07-28,['became-law'],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Edgar Gonzalez, Jr.",2023-05-17,[],IL,103rd +"Senate Floor Amendment No. 1 Motion to Concur Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Home Rule Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-10,[],IL,103rd +"Placed on Calendar Reduction Veto October 25, 2023",2023-10-24,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-05,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-05-17,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Will Guzzardi,2024-05-27,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2023-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-08,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2023-05-17,['amendment-failure'],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-05-25,[],IL,103rd +Do Pass Health and Human Services; 012-000-000,2023-05-03,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-24,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 111-001-000,2023-05-18,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +House Floor Amendment No. 4 Rules Refers to Mental Health & Addiction Committee,2023-05-09,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +House Floor Amendment No. 3 Fiscal Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-03-30,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-03-31,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-10-25,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Murphy,2023-05-10,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-05-09,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Emanuel ""Chris"" Welch",2024-05-20,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Laura M. Murphy,2023-03-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Higher Education Committee; 011-000-000,2023-05-18,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 1, 3",2023-11-09,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. Kevin John Olickal,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2023-05-08,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2023-05-19,['amendment-introduction'],IL,103rd +Public Act . . . . . . . . . 103-0064,2023-06-09,['became-law'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 4, 2023",2023-05-03,['reading-2'],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-04-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 6 Be Approved for Consideration Assignments,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0727,2024-08-02,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-04,[],IL,103rd +"Effective Date January 1, 2025",2024-08-06,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-02,[],IL,103rd +Reported Back To Special Committee on Criminal Law and Public Safety; 003-000-000,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Kelly M. Cassidy,2023-05-09,[],IL,103rd +Passed Both Houses,2023-05-24,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 3 Postponed - Executive,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0145,2023-06-30,['became-law'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-04-05,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-16,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-03-24,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Bob Morgan,2024-05-24,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-03-07,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3, 4, 5",2024-05-24,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +Waive Posting Notice,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-05-10,[],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-05-08,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-05-25,['amendment-passage'],IL,103rd +Recalled to Second Reading,2023-10-25,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Do Pass Judiciary; 009-000-000,2024-05-15,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2024-05-07,[],IL,103rd +Passed Both Houses,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Public Health Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-04-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2024-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-09-10,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-30,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-10-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-18,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-04-19,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0503,2023-08-04,['became-law'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-11-07,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Bill Cunningham,2024-05-23,['filing'],IL,103rd +Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-04-18,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-03-25,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Natalie Toro,2024-05-01,[],IL,103rd +Third Reading - Passed; 050-000-000,2024-04-12,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2024-05-01,[],IL,103rd +"Effective Date July 1, 2024",2023-07-28,[],IL,103rd +Public Act . . . . . . . . . 103-1020,2024-08-09,['became-law'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Public Act . . . . . . . . . 103-0816,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-20,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Judiciary; 009-000-000,2024-05-08,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Katie Stuart,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Energy & Environment Committee; 021-000-000,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Kelly M. Burke,2023-11-08,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 3 Withdrawn by Sen. Michael E. Hastings,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-25,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +Judicial Note Filed,2023-05-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 012-000-000,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-05-22,[],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Passed Both Houses,2024-05-28,[],IL,103rd +Public Act . . . . . . . . . 103-0982,2024-08-09,['became-law'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 3, 2024",2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-04-18,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-19,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Senate Floor Amendment No. 4 Adopted,2024-04-18,['amendment-passage'],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-05-21,[],IL,103rd +House Concurs,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-05-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Adriane Johnson,2024-05-23,['filing'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Second Reading,2024-05-08,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 16, 2023",2023-05-15,[],IL,103rd +Third Reading - Passed; 058-000-001,2024-05-16,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2023-11-09,[],IL,103rd +Chief Senate Sponsor Sen. Mike Porfirio,2024-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2024-04-30,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2024-05-09,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Meg Loughran Cappel,2024-05-16,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 013-000-000,2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-17,['reading-1'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Steve Stadelman,2024-05-23,['filing'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-03-16,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Linda Holmes,2024-05-26,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-17,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-05-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-16,['reading-2'],IL,103rd +Recommends Be Adopted State Government Administration Committee; 008-000-000,2024-05-24,['committee-passage-favorable'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Adam M. Niemerg,2023-05-03,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2023-05-19,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2023-05-25,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2023-03-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2023-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-10,[],IL,103rd +Chief Senate Sponsor Sen. Celina Villanueva,2024-04-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-02,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2024-05-16,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to State Government,2023-05-24,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Aaron M. Ortiz,2023-05-08,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0885,2024-08-09,['became-law'],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +First Reading,2023-05-12,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-05-24,[],IL,103rd +Governor Approved,2023-08-07,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-28,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2024-05-21,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-01,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2024-04-15,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jay Hoffman,2024-05-24,[],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-05-22,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2024-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2023-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Suzanne M. Ness,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-09,[],IL,103rd +Removed Co-Sponsor Rep. Kevin John Olickal,2024-05-14,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Third Reading - Short Debate - Passed 072-034-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Charles Meier,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2024-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0878,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-04-24,[],IL,103rd +Re-assigned to Executive Committee,2023-05-16,['referral-committee'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to State Government,2023-05-18,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2024-05-28,[],IL,103rd +Racial Impact Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jackie Haas,2024-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-20,[],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-05-07,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-11-09,[],IL,103rd +"House Floor Amendment No. 1 Rules Refers to Transportation: Regulations, Roads & Bridges",2024-04-16,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-15,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-12,['amendment-passage'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Health and Human Services,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Special Committee on Criminal Law and Public Safety; 009-000-000,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0401,2023-07-28,['became-law'],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Kimberly Du Buclet,2024-05-20,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2023-05-03,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Arrive in Senate,2023-04-18,['introduction'],IL,103rd +Recalled to Second Reading,2024-05-15,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-04-29,[],IL,103rd +Public Act . . . . . . . . . 103-0489,2023-08-04,['became-law'],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-05-16,[],IL,103rd +Third Reading - Short Debate - Passed 072-039-001,2023-05-10,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2024-04-29,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-17,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-11,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-26,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2024-04-24,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2024-04-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mark L. Walker,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 046-001-000,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Sheehan,2024-04-16,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-11-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2024-05-15,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0333,2023-07-28,['became-law'],IL,103rd +Governor Approved,2023-12-08,['executive-signature'],IL,103rd +Chief Co-Sponsor Changed to Rep. Jenn Ladisch Douglass,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Dagmara Avelar,2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +State Debt Impact Note Requested by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2023-04-20,[],IL,103rd +Passed Both Houses,2023-05-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Public Health,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-18,['amendment-failure'],IL,103rd +Second Reading,2023-05-10,['reading-2'],IL,103rd +Chief Co-Sponsor Changed to Rep. Jehan Gordon-Booth,2023-03-15,[],IL,103rd +Public Act . . . . . . . . . 103-0292,2023-07-28,['became-law'],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-03-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-04-26,[],IL,103rd +Public Act . . . . . . . . . 103-0533,2023-08-11,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0021,2023-06-09,['became-law'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-11,[],IL,103rd +Chief Senate Sponsor Sen. Michael W. Halpin,2023-03-27,[],IL,103rd +"Senate Floor Amendment No. 4 Motion Filed Concur Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-26,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-23,['reading-1'],IL,103rd +3/5 Vote Required,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-02-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jay Hoffman,2023-05-12,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Cyril Nichols,2023-05-17,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-02,[],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2023-05-26,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2024-01-16,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-05-25,[],IL,103rd +Senate Floor Amendment No. 4 Adopted; McClure,2023-05-19,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Mike Simmons,2023-03-24,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-10,[],IL,103rd +Recalled to Second Reading,2023-05-19,['reading-2'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 4 Adopted; Lightford,2024-05-26,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-17,[],IL,103rd +Removed Co-Sponsor Rep. Lakesia Collins,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-05-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-11,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0708,2024-07-19,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2024-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0615,2024-07-01,['became-law'],IL,103rd +Referred to Rules Committee,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2024-05-07,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Tabled,2023-05-10,['amendment-failure'],IL,103rd +Senate Concurs,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-04-24,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-23,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-04,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-05-11,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-04-17,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Third Reading - Passed; 054-002-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2023-11-07,['amendment-passage'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-03-16,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. David Friess,2023-05-03,[],IL,103rd +"Alternate Chief Co-Sponsor Changed to Rep. Elizabeth ""Lisa"" Hernandez",2023-05-08,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 006-003-000,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-02,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2024-05-16,[],IL,103rd +Third Reading - Passed; 042-011-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 055-000-000,2023-05-25,[],IL,103rd +Arrive in Senate,2024-05-21,['introduction'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2023-04-19,[],IL,103rd +Third Reading - Passed; 058-000-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert F. Martwick,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-05-10,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-19,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Governor Approved,2023-06-07,['executive-signature'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-03-24,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2024-05-21,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2024-05-28,[],IL,103rd +Placed on Calendar Order of First Reading,2023-04-18,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-05-09,[],IL,103rd +State Mandates Fiscal Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2024-04-16,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Referred to Rules Committee,2023-05-12,[],IL,103rd +Public Act . . . . . . . . . 103-0838,2024-08-09,['became-law'],IL,103rd +Do Pass / Short Debate Housing; 017-000-000,2024-05-01,['committee-passage'],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-04-26,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Daniel Didech,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-04-23,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Removed Co-Sponsor Rep. Anne Stava-Murray,2024-05-14,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Jay Hoffman,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 115-000-000,2024-05-24,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-04-29,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Bennett,2024-05-15,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lilian Jiménez,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-20,[],IL,103rd +Third Reading - Short Debate - Passed 072-040-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Health and Human Services; 010-000-000,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0863,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-11-09,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 055-000-000,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2024-05-22,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-24,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-05-21,[],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Kam Buckner,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-21,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-05-19,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Michael J. Kelly,2023-05-03,['amendment-introduction'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-09,[],IL,103rd +"Effective Date January 1, 2025",2023-08-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 11, 2023",2023-05-10,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0035,2023-06-09,['became-law'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-04-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-04-26,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Personnel & Pensions Committee,2023-05-24,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Jackie Haas,2023-03-15,[],IL,103rd +Third Reading - Short Debate - Passed 072-032-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Jay Hoffman,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Janet Yang Rohr,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-15,[],IL,103rd +Third Reading - Passed; 038-012-000,2023-11-09,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2023-05-02,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Health and Human Services,2023-05-16,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2024-01-16,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-02-27,[],IL,103rd +Chief Senate Sponsor Sen. Sally J. Turner,2023-03-23,[],IL,103rd +Arrived in House,2023-05-18,['introduction'],IL,103rd +Arrive in Senate,2023-05-04,['introduction'],IL,103rd +State Mandates Fiscal Note Requested by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-05-03,[],IL,103rd +Chief Senate Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 5 Adopted; McClure,2023-05-19,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-26,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 075-033-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Effective Date December 8, 2023",2023-12-08,[],IL,103rd +Third Reading - Short Debate - Passed 071-028-002,2023-03-24,"['passage', 'reading-3']",IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2023-05-08,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Pacione-Zayas,2023-05-19,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Public Health; 005-002-000,2023-05-10,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Steve Stadelman,2023-04-20,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-05-08,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-05-19,[],IL,103rd +House Floor Amendment No. 5 Filed with Clerk by Rep. Robyn Gabel,2024-05-08,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 11, 2023",2023-05-10,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-03-27,[],IL,103rd +"House Floor Amendment No. 5 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2024-05-07,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-24,[],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +Fiscal Note Request is Inapplicable,2023-05-17,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Don Harmon,2024-05-23,['filing'],IL,103rd +Pension Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-03-28,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Robert F. Martwick,2024-04-12,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-10,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Chris Miller,2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2024-05-01,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-16,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jennifer Sanalitro,2023-04-26,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Judiciary,2023-05-16,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Gaming Committee; 010-003-000,2023-05-19,['committee-passage-favorable'],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Mary Edly-Allen,2024-05-03,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-19,[],IL,103rd +House Floor Amendment No. 4 Motion to Concur Filed with Secretary Sen. Doris Turner,2023-05-17,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-05-18,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Motion Prevailed 074-039-000,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-11,[],IL,103rd +Third Reading - Short Debate - Passed 075-040-000,2023-05-16,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Cervantes,2024-05-15,['amendment-passage'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Mental Health & Addiction Committee,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Robert Peters,2023-05-09,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-05-21,['referral-committee'],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-19,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-12,['reading-3'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Third Reading - Short Debate - Passed 076-036-001,2024-05-21,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Housing,2024-05-23,[],IL,103rd +Public Act . . . . . . . . . 103-0468,2023-08-07,['became-law'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0490,2023-08-04,['became-law'],IL,103rd +House Floor Amendment No. 2 Balanced Budget Note Requested as Amended - Withdrawn by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Donald P. DeWitte,2024-05-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Matt Hanson,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-22,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 17, 2023",2023-05-16,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2023-05-26,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 State Mandates Fiscal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-05-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-05-16,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary Gill,2024-05-06,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 105-000-000,2024-05-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2024-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-11-09,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Do Pass as Amended Agriculture; 010-000-000,2023-04-27,['committee-passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-08,[],IL,103rd +Recalled to Second Reading,2023-11-08,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jay Hoffman,2023-05-22,[],IL,103rd +Assigned to Education,2023-04-12,['referral-committee'],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Postponed - Health and Human Services,2023-04-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-24,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Do Pass as Amended Education; 014-000-000,2023-05-03,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0030,2023-06-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-05-25,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2023-05-26,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-02-28,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +House Floor Amendment No. 3 Racial Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-02,[],IL,103rd +First Reading,2023-03-29,['reading-1'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Emanuel ""Chris"" Welch",2024-05-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 5, 2023",2023-05-04,['reading-2'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Kam Buckner,2023-05-26,[],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-03-23,[],IL,103rd +Arrived in House,2023-05-24,['introduction'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Bill Cunningham,2023-11-09,['filing'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2023-05-10,[],IL,103rd +Assigned to Senate Special Committee on Pensions,2023-04-18,['referral-committee'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2023-05-11,[],IL,103rd +Third Reading - Short Debate - Passed 094-011-000,2023-11-09,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Laura Fine,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 008-000-000,2023-05-25,[],IL,103rd +Assigned to Transportation,2023-04-12,['referral-committee'],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-10,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Morrison,2023-05-11,['amendment-passage'],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary Beth Canty,2023-03-20,['amendment-introduction'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-11-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sharon Chung,2023-04-06,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joe C. Sosnowski,2023-11-03,[],IL,103rd +State Debt Impact Note Requested by Rep. Bradley Fritts,2024-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-19,['amendment-passage'],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Passed Both Houses,2024-05-14,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-06-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 019-010-000,2024-05-15,['committee-passage-favorable'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-16,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-04-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-05-01,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-01-31,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2024-05-16,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 011-002-000,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-07,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-04-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2024-05-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-05-29,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2024-05-20,[],IL,103rd +Recalled to Second Reading,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-16,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-14,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Arrived in House,2024-04-12,['introduction'],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-23,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 012-000-000,2023-11-09,['committee-passage-favorable'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-12-08,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 115-000-000,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-22,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Passed Both Houses,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 5 Adopted,2024-04-18,['amendment-passage'],IL,103rd +3/5 Vote Required,2023-11-09,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2024-05-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2024",2024-05-08,['reading-3'],IL,103rd +House Committee Amendment No. 1 Senate Concurs 055-000-000,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-05-10,[],IL,103rd +Chief Senate Sponsor Sen. Seth Lewis,2024-04-17,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-04-25,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 058-000-000,2024-05-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Third Reading - Passed; 055-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-04-18,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2023-05-18,[],IL,103rd +Balanced Budget Note Filed,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 4 Adopted; Hastings,2024-05-26,['amendment-passage'],IL,103rd +Do Pass Executive; 013-000-000,2024-05-23,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Public Act . . . . . . . . . 103-0393,2023-07-28,['became-law'],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-19,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-04-30,[],IL,103rd +Senate Floor Amendment No. 2 Postponed - Revenue,2024-05-22,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Sponsor Removed Sen. Sally J. Turner,2024-05-15,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-07,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-28,[],IL,103rd +To Subcommittee on Procurement,2024-05-01,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Mike Simmons,2023-05-16,['filing'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2024-05-26,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Barbara Hernandez,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-02,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 4 Postponed - Executive,2023-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 104-000-000,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0130,2023-06-30,['became-law'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-10,[],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +Third Reading - Passed; 058-001-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-05-04,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Recalled to Second Reading,2023-05-19,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3",2023-05-11,[],IL,103rd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Kelly M. Cassidy,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-04,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 009-000-000,2023-05-10,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-03-16,[],IL,103rd +Public Act . . . . . . . . . 103-0783,2024-08-06,['became-law'],IL,103rd +Chief Senate Sponsor Sen. Mattie Hunter,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-04-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-02,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 109-000-000,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Home Rule Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +House Floor Amendment No. 5 Filed with Clerk by Rep. Lindsey LaPointe,2023-05-10,['amendment-introduction'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Arrive in Senate,2023-10-26,['introduction'],IL,103rd +Chief Co-Sponsor Changed to Rep. Eva-Dina Delgado,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-05-07,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-05-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 House Concurs 111-001-000,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-08,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-19,['reading-3'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 3 - November 9, 2023",2023-11-09,[],IL,103rd +"Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-05-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 4, 2023",2023-05-03,['reading-2'],IL,103rd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Celina Villanueva,2024-05-26,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2023-05-08,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 4 Tabled Pursuant to Rule 5-4(a),2023-05-17,['amendment-failure'],IL,103rd +Postponed - Executive,2023-04-27,[],IL,103rd +Pension Note Filed,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Item/Reduction Veto Stands 103-0006,2023-11-08,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-15,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-11,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Placed on Calendar Order of Resolutions,2024-04-04,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-04,[],IL,103rd +Fiscal Note Requested - Withdrawn by Rep. Kevin John Olickal,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2023-05-10,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-10-25,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 11, 2023",2023-05-10,['reading-3'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 1 Home Rule Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Assigned to Labor,2023-04-12,['referral-committee'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-04-27,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +"Senate Floor Amendment No. 2 Motion Filed Concur Rep. Edgar Gonzalez, Jr.",2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-03-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0366,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-23,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Bob Morgan,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Public Health Committee; 005-003-000,2023-05-19,[],IL,103rd +Third Reading - Passed; 036-020-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0702,2024-07-19,['became-law'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Remove Chief Co-Sponsor Rep. Patrick Sheehan,2024-05-24,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Waive Posting Notice,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Ram Villivalam,2023-05-17,['amendment-introduction'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Ann M. Williams,2024-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-09-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-04-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-17,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-06,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-03-07,[],IL,103rd +Judicial Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-25,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 107-000-000,2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-17,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-06-03,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-07,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-15,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Harmon,2023-10-25,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-10-25,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Energy & Environment Committee,2024-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2024-05-07,[],IL,103rd +House Floor Amendment No. 1 Balanced Budget Note Requested as Amended by Rep. Dan Ugaste,2023-05-10,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2024-05-08,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Public Health Committee; 005-003-000,2023-05-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-18,[],IL,103rd +Third Reading - Short Debate - Passed 098-006-000,2024-05-25,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-05-23,[],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. La Shawn K. Ford,2023-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-05-24,[],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-17,[],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Public Act . . . . . . . . . 103-0641,2024-07-01,['became-law'],IL,103rd +"Chief Sponsor Changed to Rep. Maurice A. West, II",2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-17,['amendment-passage'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-03-07,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-04-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-24,[],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-11,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Bob Morgan,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-04,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Recalled to Second Reading,2023-05-17,['reading-2'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-16,[],IL,103rd +"House Floor Amendment No. 1 Balanced Budget Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2024-01-29,[],IL,103rd +Senate Floor Amendment No. 6 Adopted; Belt,2023-05-19,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Stephanie A. Kifowit,2023-05-11,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Chief Sponsor Changed to Rep. Kelly M. Cassidy,2024-05-28,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 House Concurs 102-000-001,2023-11-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 073-036-000,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-05-22,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0930,2024-08-09,['became-law'],IL,103rd +House Concurs,2024-05-24,[],IL,103rd +Assigned to Insurance,2024-04-30,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +First Reading,2024-04-17,['reading-1'],IL,103rd +House Committee Amendment No. 1 To Business & Industry Innovation Subcommittee,2023-04-27,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Kimberly A. Lightford,2024-05-24,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-04-18,[],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2024-04-02,['amendment-passage'],IL,103rd +Recalled to Second Reading - Short Debate,2023-11-09,['reading-2'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2024-05-06,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Executive Committee,2023-11-08,[],IL,103rd +Chief House Sponsor Rep. Margaret Croke,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-04-18,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Harry Benton,2023-05-10,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2024-05-02,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Licensed Activities,2024-05-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Rezin,2024-05-16,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2024-05-23,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-23,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Revenue; 006-000-000,2024-05-22,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tracy Katz Muhl,2024-04-30,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-03-20,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-0909,2024-08-09,['became-law'],IL,103rd +Sent to the Governor,2024-06-26,['executive-receipt'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kam Buckner,2024-05-24,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Chief Sponsor Changed to Sen. Bill Cunningham,2023-11-09,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 012-000-000,2024-05-25,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 056-000-000,2023-05-19,[],IL,103rd +Assigned to Veterans Affairs,2024-04-24,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Bill Cunningham,2024-05-15,['amendment-introduction'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Meg Loughran Cappel,2024-05-17,['amendment-introduction'],IL,103rd +Arrived in House,2024-05-15,['introduction'],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +State Debt Impact Note Filed,2024-05-28,[],IL,103rd +Placed on Calendar Order of First Reading,2023-10-26,['reading-1'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-11,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Revenue & Finance Committee,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Housing Affordability Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. Kevin John Olickal,2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Christopher Belt,2023-11-09,['filing'],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-10,[],IL,103rd +House Floor Amendment No. 2 Home Rule Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-18,[],IL,103rd +Public Act . . . . . . . . . 103-0449,2023-08-04,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 012-000-000,2023-05-16,[],IL,103rd +House Floor Amendment No. 5 Referred to Rules Committee,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-04-13,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-04-27,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Arrived in House,2023-05-17,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 5 Referred to Assignments,2024-05-26,[],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-10-25,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-05-07,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-09,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0066,2023-06-09,['became-law'],IL,103rd +Third Reading - Passed; 052-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-19,[],IL,103rd +Arrived in House,2023-05-10,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-04-26,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 16, 2023",2023-05-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-05-20,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Second Reading,2023-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-02,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0567,2023-12-08,['became-law'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-05-04,['reading-1'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-04-26,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dan Swanson,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Laura Faver Dias,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-17,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Personnel & Pensions Committee,2023-05-24,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Waive Posting Notice,2023-05-08,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2024-01-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-03-30,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2023-05-03,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Arrived in House,2023-11-09,['introduction'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-08,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Judiciary,2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Recalled to Second Reading,2023-05-10,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Health and Human Services; 009-000-000,2023-05-16,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2023-03-01,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-03-23,[],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 3",2023-05-18,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-03,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2024-05-16,[],IL,103rd +Second Reading - Short Debate,2024-04-11,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0474,2023-08-04,['became-law'],IL,103rd +House Floor Amendment No. 2 Senate Concurs 055-000-000,2023-05-25,[],IL,103rd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 011-004-000,2023-11-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-04-17,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-05-24,[],IL,103rd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-19,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Third Reading - Passed; 038-019-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Resolution Adopted,2024-05-25,['passage'],IL,103rd +"Placed on Calendar Order of First Reading May 21, 2024",2024-05-21,['reading-1'],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-19,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +Third Reading - Short Debate - Passed 099-013-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-03-16,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Kevin John Olickal,2023-05-08,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-04-30,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-03-27,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 006-003-000,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-05-19,[],IL,103rd +Arrived in House,2024-05-22,['introduction'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 018-010-000,2023-05-19,['committee-passage-favorable'],IL,103rd +Third Reading - Passed; 051-005-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-05-04,[],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-05-23,[],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-04-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-09,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +House Floor Amendment No. 2 Tabled,2023-05-10,['amendment-failure'],IL,103rd +Alternate Co-Sponsor Removed Rep. Tony M. McCombie,2024-05-07,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-11-08,[],IL,103rd +Do Pass / Short Debate Economic Opportunity & Equity Committee; 005-002-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-11,[],IL,103rd +"Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 017-000-000",2023-05-16,['committee-passage-favorable'],IL,103rd +Assigned to Energy & Environment Committee,2023-05-12,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2024-05-09,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-22,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-04-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2024-04-24,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-19,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Behavioral and Mental Health,2024-05-23,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2024-05-21,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-03,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 075-040-000,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-04-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-16,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Lilian Jiménez,2023-05-03,[],IL,103rd +Public Act . . . . . . . . . 103-0395,2023-07-28,['became-law'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Labor & Commerce Committee; 023-000-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Child Care Accessibility & Early Childhood Education Committee,2024-05-20,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Correctional Note Requested as Amended - Withdrawn by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +"Effective Date June 7, 2023; Some Provisions",2023-06-07,[],IL,103rd +Removed Co-Sponsor Rep. Norma Hernandez,2024-05-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Adoption & Child Welfare Committee,2024-05-21,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +"House Floor Amendment No. 2 Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-003-000",2023-05-03,['committee-passage-favorable'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Gregg Johnson,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0512,2023-08-07,['became-law'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 5 Motion Filed Concur Rep. Jay Hoffman,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 House Concurs 115-000-000,2024-05-24,[],IL,103rd +Chief Senate Sponsor Sen. Mike Simmons,2023-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2024-05-07,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +Do Pass as Amended Education; 012-000-000,2024-05-07,['committee-passage'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Celina Villanueva,2023-03-28,[],IL,103rd +Public Act . . . . . . . . . 103-0947,2024-08-09,['became-law'],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2024-05-23,[],IL,103rd +Do Pass as Amended Education; 012-000-000,2024-05-07,['committee-passage'],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 013-000-000,2024-05-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-29,[],IL,103rd +Chief Senate Sponsor Sen. Mike Simmons,2023-03-27,[],IL,103rd +"Effective Date August 20, 2024",2023-06-09,[],IL,103rd +"Senate Floor Amendment No. 2 Motion Filed Concur Rep. Emanuel ""Chris"" Welch",2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ryan Spain,2023-11-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-05-05,['amendment-introduction'],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-11-08,[],IL,103rd +Chief Sponsor Changed to Rep. La Shawn K. Ford,2023-05-26,[],IL,103rd +Assigned to Higher Education,2023-05-16,['referral-committee'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2023-05-24,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Public Utilities Committee,2023-05-09,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Bradley Fritts,2024-05-16,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +"Placed on Calendar Order of First Reading March 28, 2023",2023-03-27,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0203,2023-06-30,['became-law'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 4, 2023",2023-05-03,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Rezin,2023-11-08,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-02-28,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Judiciary - Civil Committee,2023-05-24,[],IL,103rd +Referred to Assignments,2023-03-29,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +House Floor Amendment No. 2 State Debt Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Jay Hoffman,2023-05-22,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-04,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-11-08,[],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Dave Vella,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Morrison,2023-05-11,['amendment-passage'],IL,103rd +Do Pass Education; 010-003-000,2023-04-19,['committee-passage'],IL,103rd +Do Pass Transportation; 017-000-000,2023-04-19,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Human Services Committee; 008-000-000,2023-05-25,[],IL,103rd +"House Floor Amendment No. 1 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2023-03-17,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-11-09,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-03-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jay Hoffman,2023-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-11,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2023-05-03,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-05-12,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 088-024-000,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-03-30,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 3,2023-11-09,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-03,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Dave Syverson,2024-05-17,['amendment-introduction'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-18,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Housing; 011-002-000,2024-05-23,[],IL,103rd +Fiscal Note Filed,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Ram Villivalam,2023-05-17,['filing'],IL,103rd +Racial Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 008-004-000,2024-05-22,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2023-03-28,[],IL,103rd +Third Reading - Short Debate - Passed 078-032-001,2023-05-12,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 5 Referred to Rules Committee,2024-05-08,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-22,[],IL,103rd +Fiscal Note Request is Inapplicable,2023-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kam Buckner,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Mental Health & Addiction Committee; 017-000-000,2023-05-04,['committee-passage-favorable'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-02,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. David Koehler,2023-05-16,['filing'],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-19,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +House Floor Amendment No. 5 Referred to Rules Committee,2024-05-07,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 016-010-000,2023-05-03,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Laura Fine,2024-04-12,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Kevin Schmidt,2023-04-20,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to State Government,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-04-26,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Judiciary; 006-003-000,2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2024-05-23,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 4 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norma Hernandez,2023-05-16,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 18, 2023",2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2023-05-09,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Kam Buckner,2023-05-10,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Tabled,2024-05-21,['amendment-failure'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-06,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 044-000-002,2023-05-26,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Randy E. Frese,2023-05-16,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-21,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary Beth Canty,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-01,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2024-01-31,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-16,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-19,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0725,2024-08-02,['became-law'],IL,103rd +Sent to the Governor,2024-06-12,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-10-03,[],IL,103rd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt Executive; 011-002-000,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-19,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Nicholas K. Smith,2024-01-31,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-04-16,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2023-04-25,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 041-017-000,2024-05-26,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2024-04-19,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-04-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Katie Stuart,2023-05-01,[],IL,103rd +Third Reading - Short Debate - Passed 109-002-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Remove Chief Co-Sponsor Rep. La Shawn K. Ford,2023-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-03-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2023-11-03,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-03-31,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-03-20,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 104-000-000,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-05,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Recalled to Second Reading,2023-05-24,['reading-2'],IL,103rd +Assigned to Education,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Judiciary - Civil Committee,2023-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0123,2023-06-30,['became-law'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2023-05-04,[],IL,103rd +Waive Posting Notice,2023-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-11-08,[],IL,103rd +House Floor Amendment No. 3 State Debt Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-11-08,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-17,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-02-28,[],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-05-25,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Dave Vella,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0191,2023-06-30,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Patrick J. Joyce,2023-04-28,['amendment-introduction'],IL,103rd +Public Act . . . . . . . . . 103-0445,2023-08-04,['became-law'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Health Care Licenses Committee,2023-11-08,[],IL,103rd +Public Act . . . . . . . . . 103-0041,2023-06-09,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-10,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Will Guzzardi,2024-05-16,['amendment-introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Erica Harriss,2023-05-24,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina Castro,2023-04-17,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 3 - November 9, 2023",2023-11-09,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Charles Meier,2024-05-29,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-24,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2024-05-22,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-18,['amendment-passage'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-04-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-05-01,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2024-05-17,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-05-17,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-05-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Ann M. Williams,2024-05-21,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-10,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2024-05-22,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 21, 2024",2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-04-25,[],IL,103rd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt State Government; 008-000-000,2024-05-23,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Aaron M. Ortiz,2023-05-03,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Daniel Didech,2024-05-21,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Kimberly A. Lightford,2023-05-18,['filing'],IL,103rd +Public Act . . . . . . . . . 103-0893,2024-08-09,['became-law'],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2024-05-23,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 036-019-001,2023-05-19,[],IL,103rd +Third Reading - Short Debate - Passed 077-035-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2024-05-22,[],IL,103rd +House Floor Amendment No. 5 Rules Refers to Health Care Licenses Committee,2024-05-13,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-14,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-05-02,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-05-19,[],IL,103rd +State Debt Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 House Concurs 063-038-001,2024-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0491,2023-08-04,['became-law'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-08,['amendment-passage'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 098-015-002,2023-05-17,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-09,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2024-04-24,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Donald P. DeWitte,2023-03-28,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +"Effective Date July 1, 2023; Some Provisions",2023-06-07,[],IL,103rd +Public Act . . . . . . . . . 103-0791,2024-08-09,['became-law'],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. Kelly M. Cassidy,2023-05-10,[],IL,103rd +House Floor Amendment No. 3 Senate Concurs 044-000-002,2023-05-26,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Natalie A. Manley,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Judiciary,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-05-18,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Mary Beth Canty,2024-04-12,[],IL,103rd +House Committee Amendment No. 2 Senate Concurs 054-001-000,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-05-09,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to Licensed Activities,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2023-04-26,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-16,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Racial Impact Note Request is Inapplicable,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2023-05-16,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Public Act . . . . . . . . . 103-0352,2023-07-28,['became-law'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Judicial Note Filed,2024-05-28,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-05,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 5 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2023",2023-05-16,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Housing Affordability Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-10-26,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-11-09,[],IL,103rd +Chief Senate Sponsor Sen. Mike Simmons,2023-03-27,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Labor; 010-000-000,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0076,2023-06-09,['became-law'],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Robyn Gabel,2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Fred Crespo,2024-04-19,['amendment-introduction'],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-10-26,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. Kevin John Olickal,2024-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Recalled to Second Reading,2023-05-17,['reading-2'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Revenue & Finance Committee; 018-000-000,2023-05-11,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Mary Gill,2024-05-20,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-25,[],IL,103rd +House Floor Amendment No. 3 Home Rule Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 5",2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Doris Turner,2023-05-19,['amendment-introduction'],IL,103rd +Do Pass Executive; 009-003-000,2023-05-04,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-03-22,[],IL,103rd +House Floor Amendment No. 5 Rules Refers to Mental Health & Addiction Committee,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Abdelnasser Rashid,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +"Alternate Co-Sponsor Removed Rep. Jaime M. Andrade, Jr.",2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Tracy Katz Muhl,2024-05-07,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Restorative Justice,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2023-04-27,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Linda Holmes,2023-05-16,['filing'],IL,103rd +Public Act . . . . . . . . . 103-0053,2023-06-09,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-04-28,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-16,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-04-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-24,[],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-04-19,[],IL,103rd +"House Floor Amendment No. 2 Balanced Budget Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-05-20,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 5 Adopted; Villivalam,2023-05-17,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2023-04-11,['committee-passage-favorable'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Adriane Johnson,2023-05-05,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-22,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Stephanie A. Kifowit,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-03-24,[],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Maurice A. West, II",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-18,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-05-17,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-0601,2024-07-01,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-05-16,[],IL,103rd +Arrive in Senate,2024-05-23,['introduction'],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Correctional Note Requested as Amended by Rep. Dan Ugaste,2023-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Lance Yednock,2023-11-08,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 073-035-000,2023-05-19,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2024-05-08,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2024-05-07,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +3/5 Vote Required,2023-10-25,[],IL,103rd +Sent to the Governor,2024-06-12,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Tabled,2024-05-25,['amendment-failure'],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2024-04-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-08,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Paul Faraci,2023-05-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-03-12,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2024-05-23,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 2, 3",2023-11-09,[],IL,103rd +Sent to the Governor,2024-06-26,['executive-receipt'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mary Edly-Allen,2024-04-30,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +To Business & Industry Innovation Subcommittee,2023-04-27,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Licensed Activities; 006-000-000,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2024-05-23,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 23, 2024",2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-03,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Executive Committee; 012-000-000,2023-11-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. David Friess,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-04-25,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Referred to Assignments,2024-04-17,[],IL,103rd +Assigned to Judiciary,2024-05-07,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-11-09,['amendment-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura Ellman,2024-04-30,[],IL,103rd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. Elizabeth ""Lisa"" Hernandez",2024-05-17,[],IL,103rd +Assigned to Higher Education,2024-04-30,['referral-committee'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Transportation,2023-05-16,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-20,['reading-2'],IL,103rd +Third Reading - Passed; 043-016-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 102-000-001,2023-11-09,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-15,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-04-19,[],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 005-002-000,2024-05-01,['committee-passage'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 013-000-000,2024-04-02,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Kelly M. Cassidy,2024-05-28,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 085-019-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0296,2023-07-28,['became-law'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 058-000-000,2024-05-26,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2024-05-28,[],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 073-036-000,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-04-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2024-05-17,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-05-09,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Concurs,2024-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 010-003-000,2024-05-23,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-05-19,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Behavioral and Mental Health; 007-000-000,2024-05-23,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicole La Ha,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Adoption & Child Welfare Committee; 012-000-000,2024-05-22,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-21,[],IL,103rd +"House Floor Amendment No. 3 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2024-05-08,['amendment-introduction'],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-10,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Special Committee on Criminal Law and Public Safety; 006-000-000,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-04-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-11-09,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0937,2024-08-09,['became-law'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2023-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-04-29,[],IL,103rd +Assigned to Executive,2024-05-20,['referral-committee'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Child Care Accessibility & Early Childhood Education Committee,2024-05-20,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Third Reading - Passed; 039-019-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-18,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-05-16,['amendment-introduction'],IL,103rd +"House Floor Amendment No. 1 Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 014-000-000",2024-04-17,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Assigned to Executive,2024-04-30,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-19,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2024-05-16,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Counties & Townships Committee,2023-05-15,[],IL,103rd +Removed Co-Sponsor Rep. Natalie A. Manley,2024-05-14,[],IL,103rd +House Floor Amendment No. 2 Fiscal Note Requested as Amended - Withdrawn by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-04,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2023-03-28,[],IL,103rd +First Reading,2023-04-18,['reading-1'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Doris Turner,2024-05-23,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura Fine,2024-05-23,['filing'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-19,['amendment-passage'],IL,103rd +Arrive in Senate,2024-05-21,['introduction'],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-04-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-18,[],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-05-04,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-08-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Assigned to Insurance,2023-04-18,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Paul Faraci,2023-03-31,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-11,[],IL,103rd +Third Reading - Short Debate - Passed 103-000-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2023-05-26,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 3,2023-11-09,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-05-03,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-04-04,[],IL,103rd +Recalled to Second Reading,2023-05-17,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-04-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Laura Faver Dias,2023-05-11,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Transportation,2023-05-09,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-0420,2023-08-04,['became-law'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-05-25,[],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-02,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +"Effective Date July 28, 2023; ; some provisions",2023-07-28,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Villa,2023-05-10,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-11,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-03-01,[],IL,103rd +First Reading,2023-03-23,['reading-1'],IL,103rd +Third Reading - Passed; 057-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Third Reading - Short Debate - Passed 100-001-002,2023-03-24,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Donald P. DeWitte,2023-04-12,[],IL,103rd +House Floor Amendment No. 4 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-11,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-05-09,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2023-05-10,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-11,['reading-3'],IL,103rd +Senate Concurs,2023-05-25,[],IL,103rd +Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2023-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt State Government; 006-003-000,2023-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0063,2023-06-09,['became-law'],IL,103rd +Assigned to Appropriations - Health and Human Services,2024-04-30,['referral-committee'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-19,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Public Utilities Committee; 017-000-000,2023-05-09,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-04-30,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-04-19,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-16,[],IL,103rd +"Added Alternate Co-Sponsor Rep. William ""Will"" Davis",2023-03-27,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Cristina Castro,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-01,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-04-16,[],IL,103rd +Arrive in Senate,2023-05-11,['introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-04-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Tony M. McCombie,2024-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-04-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-04,[],IL,103rd +Placed on Calendar Order of Resolutions,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-30,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-04,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-09,[],IL,103rd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2024-05-01,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-04-22,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2023-05-16,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2024-05-14,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-16,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Assigned to Transportation,2023-04-12,['referral-committee'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0312,2023-07-28,['became-law'],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-02,[],IL,103rd +"Effective Date January 1, 2024; ; some provisions",2023-07-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-10,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-04-18,[],IL,103rd +First Reading,2023-05-04,['reading-1'],IL,103rd +First Reading,2023-04-12,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-19,['amendment-failure'],IL,103rd +Referred to Assignments,2023-03-23,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Prescription Drug Affordability & Accessibility Committee,2023-03-07,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-19,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-03-30,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Terra Costa Howard,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Personnel & Pensions Committee; 007-001-000,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-04-27,[],IL,103rd +"Effective Date January 1, 2024",2023-08-11,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Fine,2023-05-17,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-05-03,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-26,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-12-08,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +House Floor Amendment No. 1 Tabled,2023-03-24,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-03-15,[],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2023-03-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Judiciary,2023-05-16,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 104-000-000,2023-05-25,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-12,[],IL,103rd +Chief Senate Sponsor Sen. Ram Villivalam,2023-03-27,[],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +Referred to Assignments,2023-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2024-05-21,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Paul Faraci,2024-05-22,['filing'],IL,103rd +Public Act . . . . . . . . . 103-1030,2024-08-09,['became-law'],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-04-12,[],IL,103rd +Recalled to Second Reading,2024-05-23,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. William ""Will"" Davis",2024-04-16,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Second Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +House Floor Amendment No. 2 Home Rule Note Requested as Amended - Withdrawn by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 043-016-000,2024-05-24,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Counties & Townships Committee; 007-000-000,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2023-05-16,[],IL,103rd +Arrived in House,2024-05-15,['introduction'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 24, 2024",2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 009-000-000,2024-05-20,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 010-005-000,2024-04-30,['committee-passage'],IL,103rd +"Added Alternate Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Agriculture & Conservation Committee,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +Chief Senate Sponsor Sen. Karina Villa,2023-03-27,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-05-08,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0957,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2023-05-10,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-1007,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 110-000-000,2024-05-24,[],IL,103rd +Governor Approved,2023-06-27,['executive-signature'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-05-03,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Arrive in Senate,2024-05-14,['introduction'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Jay Hoffman,2023-05-17,['amendment-introduction'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 17, 2023",2023-05-16,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-04-30,[],IL,103rd +House Floor Amendment No. 1 Balanced Budget Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-19,['reading-3'],IL,103rd +Placed on Calendar Order of First Reading,2024-05-21,['reading-1'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3, 4",2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Matt Hanson,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-03-16,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 18, 2023",2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2024-05-26,[],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0375,2023-07-28,['became-law'],IL,103rd +"Senate Floor Amendment No. 2 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-05-25,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-05-25,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 054-000-000,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-04-30,[],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2023-03-27,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-05-03,[],IL,103rd +Do Pass Executive; 007-002-000,2023-04-20,['committee-passage'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-19,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +House Floor Amendment No. 5 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Effective Date January 1, 2024; Some Provisions",2023-06-07,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Second Reading - Short Debate,2023-05-09,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-05-18,[],IL,103rd +"Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments:",2024-05-07,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 16, 2023",2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Steve McClure,2023-03-28,[],IL,103rd +House Floor Amendment No. 5 Recommends Be Adopted Health Care Licenses Committee; 010-000-000,2024-05-15,['committee-passage-favorable'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +House Floor Amendment No. 5 Rules Refers to Adoption & Child Welfare Committee,2024-05-13,[],IL,103rd +House Floor Amendment No. 4 Motion to Concur Assignments Referred to Licensed Activities,2023-05-17,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Dan Swanson,2023-04-26,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Terra Costa Howard,2024-04-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2024-05-01,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Arrived in House,2024-05-21,['introduction'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2024-05-22,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Education,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-05-02,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Transportation; 011-000-000,2023-05-16,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-11,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-16,['amendment-passage'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-19,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 012-000-000,2024-05-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Yolonda Morris,2024-05-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +"Alternate Chief Sponsor Changed to Sen. Napoleon Harris, III",2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Pension Note Filed as Amended,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-18,[],IL,103rd +Second Reading - Short Debate,2023-05-08,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-1023,2024-08-09,['became-law'],IL,103rd +Correctional Note Requested - Withdrawn by Rep. Kelly M. Cassidy,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-05-26,['amendment-failure'],IL,103rd +Public Act . . . . . . . . . 103-0916,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-21,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-1012,2024-08-09,['became-law'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Will Guzzardi,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-24,[],IL,103rd +Senate Concurs,2023-05-24,[],IL,103rd +House Floor Amendment No. 3 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +Second Reading - Short Debate,2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2024-05-23,['filing'],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-15,['amendment-failure'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-17,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-04-28,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-16,[],IL,103rd +First Reading,2024-05-21,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-19,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Assigned to Executive,2023-04-19,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-05,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2023-04-19,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Fine,2023-05-24,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-11-03,[],IL,103rd +House Committee Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-19,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Anthony DeLuca,2023-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Omar Aquino,2023-11-09,['filing'],IL,103rd +Senate Floor Amendment No. 1 House Concurs 109-000-000,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Labor & Commerce Committee,2023-03-21,[],IL,103rd +House Floor Amendment No. 2 3/5 Vote Required,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-17,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2023-05-26,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-24,[],IL,103rd +Third Reading - Passed; 050-005-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Do Pass Education; 013-000-000,2023-04-26,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-22,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-04-11,['referral-committee'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Health Care Licenses Committee,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Win Stoller,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-03-21,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Balanced Budget Note Requested by Rep. Amy Elik,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-16,[],IL,103rd +House Floor Amendment No. 3 Senate Concurs 041-017-000,2024-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Executive,2023-04-27,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Nicholas K. Smith,2024-01-31,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Senate Floor Amendment No. 3 Referred to Executive,2024-05-24,[],IL,103rd +Racial Impact Note Requested by Rep. Sonya M. Harper,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2024-05-08,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-05-29,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Dave Vella,2024-05-22,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2024-04-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sally J. Turner,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Executive Committee,2024-05-28,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Added Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-11-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-09,['reading-3'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Revenue & Finance Committee,2024-03-20,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Ram Villivalam,2024-05-23,['filing'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jennifer Gong-Gershowitz,2024-05-20,[],IL,103rd +Arrived in House,2024-05-22,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2024-05-17,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Janet Yang Rohr,2024-05-24,[],IL,103rd +Arrived in House,2024-05-23,['introduction'],IL,103rd +House Concurs,2024-05-28,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 008-000-000,2024-05-01,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2024-04-30,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-04-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-05-09,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-17,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Kelly M. Cassidy,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2024-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2024-05-03,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Recalled to Second Reading,2024-05-25,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 3 - November 9, 2023",2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-23,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Arrived in House,2024-04-18,['introduction'],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +Passed Both Houses,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-23,[],IL,103rd +Public Act . . . . . . . . . 103-0954,2024-08-09,['became-law'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Passed Both Houses,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-23,[],IL,103rd +Public Act . . . . . . . . . 103-0348,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-04-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-03,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Paul Faraci,2024-05-15,[],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-03-22,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Do Pass as Amended Transportation; 015-001-000,2023-05-09,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-04,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-03-31,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +"House Floor Amendment No. 1 Correctional Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura Fine,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-04-28,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-04-20,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2023-05-05,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-05-17,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-12,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0050,2023-06-09,['became-law'],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Christopher Belt,2023-11-09,['filing'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-04-25,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-03-22,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 5, 2023",2023-05-04,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +First Reading,2023-10-26,['reading-1'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-10-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2023-05-18,[],IL,103rd +Third Reading - Passed; 048-001-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Housing Affordability Impact Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Amy L. Grant,2024-05-10,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-19,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-05-07,[],IL,103rd +House Floor Amendment No. 1 Judicial Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-15,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Abdelnasser Rashid,2023-05-12,[],IL,103rd +Recalled to Second Reading,2023-05-19,['reading-2'],IL,103rd +Judicial Note Requested - Withdrawn by Rep. Kevin John Olickal,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-20,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Villivalam,2023-05-17,['amendment-passage'],IL,103rd +Motion to Suspend Rule 21 - Prevailed 068-038-000,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Housing Affordability Impact Note Filed,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Restorative Justice; 008-000-000,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Tony M. McCombie,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Abdelnasser Rashid,2023-05-11,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-19,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Resolution Adopted 078-027-000,2024-04-30,['passage'],IL,103rd +House Floor Amendment No. 1 Fiscal Note Requested as Amended by Rep. Dan Ugaste,2023-05-10,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-10-25,"['passage', 'reading-3']",IL,103rd +Do Pass State Government; 009-000-000,2023-05-18,['committee-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Matt Hanson,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Insurance Committee,2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Public Act . . . . . . . . . 103-0667,2024-07-19,['became-law'],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-03-12,[],IL,103rd +"Effective Date January 1, 2025",2024-07-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Anna Moeller,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 073-035-000,2023-05-19,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2024-04-30,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +"Senate Floor Amendment No. 2 Motion Filed Concur Rep. Maurice A. West, II",2024-05-24,[],IL,103rd +Senate Committee Amendment No. 3 Assignments Refers to Executive,2023-05-17,[],IL,103rd +Placed on Calendar Order of First Reading,2023-05-11,['reading-1'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-05-20,[],IL,103rd +Do Pass Energy and Public Utilities; 010-000-000,2024-05-09,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0717,2024-07-19,['became-law'],IL,103rd +Placed on Calendar Order of First Reading,2024-05-23,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 071-043-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dagmara Avelar,2024-05-16,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-07,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Waive Posting Notice,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0610,2024-07-01,['became-law'],IL,103rd +"Senate Floor Amendment No. 3 Motion Filed Concur Rep. Maurice A. West, II",2024-05-24,[],IL,103rd +Arrived in House,2023-10-25,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-04-30,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2023-11-09,[],IL,103rd +House Floor Amendment No. 3 Rule 19(c) / Motion Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Public Act . . . . . . . . . 103-0686,2024-07-19,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2024-03-12,[],IL,103rd +Public Act . . . . . . . . . 103-0689,2024-07-19,['became-law'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Insurance Committee,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Home Rule Note Requested as Amended by Rep. Dan Ugaste,2023-05-10,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-05-23,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 2, 3",2024-05-25,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-18,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2023-03-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 10, 2023",2023-05-09,['reading-2'],IL,103rd +"House Floor Amendment No. 2 Correctional Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Assigned to Appropriations - Health and Human Services,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-05-08,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-04-25,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-19,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-05-11,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Terri Bryant,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-24,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to State Government Administration Committee,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2024-04-10,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Third Reading - Passed; 050-005-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-05-04,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2023-04-25,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +3/5 Vote Required,2023-11-09,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2024-05-15,['amendment-failure'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-19,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-05-20,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Environment and Conservation,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Insurance Committee,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2024-04-04,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2024-05-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Doris Turner,2024-05-07,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 013-000-000,2023-05-17,[],IL,103rd +Chief House Sponsor Rep. Mark L. Walker,2024-04-18,[],IL,103rd +Public Act . . . . . . . . . 103-0795,2024-08-09,['became-law'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Alternate Co-Sponsor Removed Rep. Thaddeus Jones,2024-04-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Janet Yang Rohr,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-20,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2023-11-09,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Bennett,2024-05-25,['amendment-passage'],IL,103rd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Bill Cunningham,2023-11-09,['filing'],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-06,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-11-09,[],IL,103rd +Do Pass Higher Education; 009-000-000,2024-05-08,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Second Reading,2024-05-23,['reading-2'],IL,103rd +Passed Both Houses,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2024-04-23,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-05-22,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-23,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 4",2024-05-26,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2024-05-09,[],IL,103rd +Senate Committee Amendment No. 3 Assignments Refers to Education,2024-05-20,[],IL,103rd +Do Pass Veterans Affairs; 008-000-000,2024-05-02,['committee-passage'],IL,103rd +Sent to the Governor,2023-11-14,['executive-receipt'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2024-05-23,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2024-05-01,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-03-06,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Executive,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-05-22,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2024-05-21,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +House Floor Amendment No. 3 Judicial Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-18,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to State Government,2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2024-02-07,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2023-11-09,[],IL,103rd +Balanced Budget Note Filed,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-04-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-11,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Hastings,2023-05-19,['amendment-passage'],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0058,2023-06-09,['became-law'],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. Kevin John Olickal,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Housing Affordability Impact Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-04-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2024-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-10,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-05-25,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-05,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Police & Fire Committee,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 5 Motion Filed Concur Rep. Tony M. McCombie,2023-05-17,[],IL,103rd +Second Reading,2023-05-05,['reading-2'],IL,103rd +Referred to Assignments,2023-10-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-04-25,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Governor Approved,2024-08-07,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Kimberly A. Lightford,2023-05-18,['filing'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Villanueva,2024-05-26,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2024-04-30,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Nabeela Syed,2023-03-20,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2024-05-01,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Rezin,2023-05-11,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-03-27,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 054-000-000,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-04-19,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-18,[],IL,103rd +Sent to the Governor,2023-06-23,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2024-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2023-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-19,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2023-05-16,[],IL,103rd +"Effective Date June 27, 2023",2023-06-27,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Placed on Calendar Order of First Reading,2024-05-14,['reading-1'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-05-22,[],IL,103rd +Recalled to Second Reading,2024-05-02,['reading-2'],IL,103rd +"Added Chief Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-05-18,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Villanueva,2024-05-23,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-05-16,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-01,[],IL,103rd +Arrived in House,2024-05-21,['introduction'],IL,103rd +To Subcommittee on Paid Leave,2024-05-01,[],IL,103rd +House Floor Amendment No. 2 Housing Affordability Impact Note Requested as Amended - Withdrawn by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-04-25,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-04,['reading-3'],IL,103rd +House Concurs,2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Fred Crespo,2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-17,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 009-000-000,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-04-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-04-12,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Transportation: Vehicles & Safety,2024-05-13,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-18,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-05-21,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 109-005-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-05-19,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-16,[],IL,103rd +House Floor Amendment No. 1 Correctional Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-11-06,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-05-10,[],IL,103rd +Assigned to Judiciary - Criminal Committee,2024-04-24,['referral-committee'],IL,103rd +Resolution Adopted,2023-05-18,['passage'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-04-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2024-04-16,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-05-06,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-23,[],IL,103rd +Sent to the Governor,2023-06-23,['executive-receipt'],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2024-04-15,[],IL,103rd +Governor Approved,2024-07-19,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-05-04,[],IL,103rd +Passed Both Houses,2024-05-20,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-20,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Executive Committee,2023-05-26,[],IL,103rd +House Committee Amendment No. 1 Adopted in Prescription Drug Affordability & Accessibility Committee; 013-000-000,2023-03-08,['amendment-passage'],IL,103rd +Third Reading - Passed; 037-018-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2023-04-21,['amendment-introduction'],IL,103rd +Do Pass as Amended Executive; 011-002-000,2023-05-04,['committee-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-05-30,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Fine,2023-05-17,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-12,[],IL,103rd +Referred to Assignments,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Health Care Licenses Committee,2023-05-24,[],IL,103rd +"Effective Date August 8, 2023",2023-06-09,[],IL,103rd +Public Act . . . . . . . . . 103-0538,2023-08-11,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Janet Yang Rohr,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2023-03-15,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Personnel & Pensions Committee; 007-001-000,2023-05-25,[],IL,103rd +Referred to Assignments,2023-04-12,[],IL,103rd +Public Act . . . . . . . . . 103-0276,2023-07-28,['became-law'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-05-18,[],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 1 Postponed - Judiciary,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-26,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-05,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Higher Education Committee,2023-05-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2023-04-05,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-05-03,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-19,['amendment-failure'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-05-19,[],IL,103rd +Chief Sponsor Changed to Rep. La Shawn K. Ford,2024-05-27,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-05-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2024-05-29,[],IL,103rd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Dave Vella,2024-05-22,[],IL,103rd +Fiscal Note Requested by Rep. Lilian Jiménez,2024-04-18,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Child Care Accessibility & Early Childhood Education Committee,2023-03-21,[],IL,103rd +Public Act . . . . . . . . . 103-0181,2023-06-30,['became-law'],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-03-24,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-11-08,[],IL,103rd +House Floor Amendment No. 3 State Mandates Fiscal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-24,[],IL,103rd +"Remove Chief Co-Sponsor Rep. Maurice A. West, II",2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. La Shawn K. Ford,2023-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2023-04-20,[],IL,103rd +Public Act . . . . . . . . . 103-0309,2023-07-28,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-04-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-03-16,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-17,[],IL,103rd +Second Reading,2023-05-10,['reading-2'],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-11-08,[],IL,103rd +3/5 Vote Required,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-04-19,[],IL,103rd +Third Reading - Passed; 044-007-000,2023-11-08,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 041-009-000,2023-11-09,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Labor & Commerce Committee; 018-008-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Do Pass / Short Debate Judiciary - Civil Committee; 013-000-000,2023-04-19,['committee-passage'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 009-003-000,2023-05-25,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Executive Committee,2024-05-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-04-20,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2023-11-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-05,[],IL,103rd +Do Pass Higher Education; 011-000-000,2023-05-16,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Adopted,2023-05-12,['amendment-passage'],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Referred to Assignments,2024-05-21,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-04-20,['amendment-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Adriane Johnson,2023-05-05,['amendment-introduction'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-05-25,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-22,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Agriculture,2023-05-02,[],IL,103rd +Assigned to Judiciary,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Villivalam,2023-05-17,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Executive Committee,2023-05-26,[],IL,103rd +Passed Both Houses,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 012-000-000,2023-05-16,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +"Alternate Chief Co-Sponsor Changed to Rep. Edgar Gonzalez, Jr.",2023-05-03,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 054-000-000,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-02,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0874,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 010-002-000,2023-05-12,['committee-passage-favorable'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-16,['reading-3'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 22, 2024",2024-05-21,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0009,2023-06-07,['became-law'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2024-05-26,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-27,['reading-3'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Mary Gill,2024-05-07,['amendment-introduction'],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. Kelly M. Cassidy,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Thaddeus Jones,2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2024-05-16,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert Peters,2023-05-17,['filing'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Human Services Committee,2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-19,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +House Floor Amendment No. 3 State Debt Impact Note Filed as Amended,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2024-05-07,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-07-12,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2023-05-16,['filing'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2023-03-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-08,['reading-3'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0888,2024-08-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-05-14,[],IL,103rd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt Licensed Activities; 006-000-000,2023-05-17,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Swanson,2023-04-26,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 22, 2024",2024-05-22,[],IL,103rd +Senate Concurs,2023-05-26,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-04-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tracy Katz Muhl,2024-05-01,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-09,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-21,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-21,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-01-31,[],IL,103rd +Senate Committee Amendment No. 2 Postponed - Executive,2023-04-27,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Public Act . . . . . . . . . 103-0711,2024-07-19,['became-law'],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-05-08,[],IL,103rd +Public Act . . . . . . . . . 103-0749,2024-08-02,['became-law'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-16,[],IL,103rd +Fiscal Note Requested by Rep. Amy Elik,2023-05-02,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-05-20,[],IL,103rd +Public Act . . . . . . . . . 103-0617,2024-07-01,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-01-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-05-20,[],IL,103rd +Postponed - Executive,2023-04-27,[],IL,103rd +Public Act . . . . . . . . . 103-0282,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-16,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-04-24,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +State Debt Impact Note Requested by Rep. Amy Elik,2023-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2023-11-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 11, 2023",2023-05-10,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-17,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-16,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Assigned to Judiciary - Criminal Committee,2023-04-11,['referral-committee'],IL,103rd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2023-11-08,[],IL,103rd +"House Floor Amendment No. 2 Filed with Clerk by Rep. Edgar Gonzalez, Jr.",2023-03-22,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-19,[],IL,103rd +Assigned to Executive,2024-05-23,['referral-committee'],IL,103rd +"Effective Date August 7, 2024",2024-08-07,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-04,[],IL,103rd +"Added Chief Co-Sponsor Rep. Curtis J. Tarver, II",2023-05-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-12,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-25,[],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Senate Concurs,2023-11-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-19,['reading-2'],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0351,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-04-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-04-20,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Restorative Justice,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-12,[],IL,103rd +Do Pass Judiciary; 007-000-000,2023-04-26,['committee-passage'],IL,103rd +Remove Chief Co-Sponsor Rep. Sharon Chung,2024-05-28,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Patrick J. Joyce,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Fred Crespo,2023-11-08,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-05,[],IL,103rd +Third Reading - Passed; 038-019-000,2023-05-24,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 055-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Arrived in House,2023-11-08,['introduction'],IL,103rd +House Committee Amendment No. 1 Balanced Budget Note Requested as Amended by Rep. Bradley Fritts,2024-05-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Executive Committee,2023-05-26,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 009-003-000,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-05-29,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-22,[],IL,103rd +Balanced Budget Note Requested by Rep. Terra Costa Howard,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-25,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-21,[],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. Kelly M. Cassidy,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Human Services Committee; 008-000-000,2023-05-16,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Land Conveyance Appraisal Note Filed,2023-05-11,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-22,[],IL,103rd +House Floor Amendment No. 3 Judicial Note Filed as Amended,2023-05-12,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0495,2023-08-04,['became-law'],IL,103rd +Assigned to Insurance,2024-04-30,['referral-committee'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Michelle Mussman,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-05-18,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-05-25,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 011-000-000,2023-05-18,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-16,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. David Koehler,2024-05-23,['filing'],IL,103rd +Added Co-Sponsor Rep. Jehan Gordon-Booth,2024-05-14,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Judiciary,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2023-05-19,[],IL,103rd +House Floor Amendment No. 4 Motion To Concur Recommended Do Adopt Licensed Activities; 006-000-000,2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-04-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2024-05-24,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 18, 2023",2023-05-17,[],IL,103rd +Passed Both Houses,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-05-02,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2023-05-12,[],IL,103rd +Do Pass as Amended Executive; 012-000-000,2024-05-15,['committee-passage'],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2024-05-21,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-16,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-26,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-07,[],IL,103rd +Assigned to Transportation,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-01,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Thaddeus Jones,2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-03-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sally J. Turner,2024-05-16,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2024-05-23,['filing'],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2023-05-04,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Alternate Co-Sponsor Removed Rep. Amy L. Grant,2024-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Theresa Mah,2023-05-17,[],IL,103rd +House Floor Amendment No. 3 Housing Affordability Impact Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +"Chief House Sponsor Rep. Maurice A. West, II",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Health and Human Services,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-05-21,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 008-004-000,2024-05-21,['committee-passage'],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Mental Health & Addiction Committee; 020-000-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-05-18,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Assigned to Executive Committee,2024-05-28,['referral-committee'],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 008-000-000,2023-05-17,[],IL,103rd +"Senate Floor Amendment No. 2 Motion to Concur Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Doris Turner,2023-05-19,['amendment-introduction'],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-16,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Mental Health & Addiction Committee,2023-05-15,[],IL,103rd +"Added Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2023",2023-05-05,['reading-3'],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-17,[],IL,103rd +Pension Note Requested - Withdrawn by Rep. Kevin John Olickal,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-05-25,[],IL,103rd +Assigned to Environment and Conservation,2023-04-12,['referral-committee'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 19, 2023",2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Do Pass Insurance; 008-000-000,2023-04-26,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-05-22,[],IL,103rd +House Floor Amendment No. 1 Land Conveyance Appraisal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-10,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-17,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to State Government Administration Committee,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Adriane Johnson,2023-05-08,['amendment-introduction'],IL,103rd +Second Reading,2023-05-10,['reading-2'],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Do Pass as Amended / Short Debate Prescription Drug Affordability & Accessibility Committee; 013-000-000,2023-03-08,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 Motion Prevailed 112-000-000,2023-04-26,[],IL,103rd +"House Floor Amendment No. 1 Fiscal Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-19,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 109-000-000,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Veterans' Affairs Committee,2023-05-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-17,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 3 - May 25, 2024",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-16,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +"Senate Floor Amendment No. 4 Motion Filed Concur Rep. Maurice A. West, II",2024-05-24,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +First Reading,2023-05-11,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Insurance Committee; 010-005-000,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Housing Affordability Impact Note Requested as Amended by Rep. Dan Ugaste,2023-05-10,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-10-25,[],IL,103rd +First Reading,2024-05-23,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-05-07,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2024-03-21,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-10,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sue Rezin,2024-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 3 Adopted; Executive,2023-05-17,['amendment-passage'],IL,103rd +"Effective Date July 1, 2024",2024-07-08,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 22, 2024",2024-05-22,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 056-000-000,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-22,[],IL,103rd +3/5 Vote Required,2023-11-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +First Reading,2024-04-18,['reading-1'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0247,2023-06-30,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-23,[],IL,103rd +"Effective Date January 1, 2025",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-28,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Harry Benton,2023-05-12,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 3 House Concurs 097-009-000,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Judiciary - Civil Committee,2024-05-20,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Laura Faver Dias,2024-05-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Rita Mayfield,2024-05-07,['amendment-introduction'],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 7, 2024",2024-05-02,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-23,[],IL,103rd +"Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments:",2024-05-20,[],IL,103rd +Governor Approved,2023-11-17,['executive-signature'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-04-26,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-01,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Remove Chief Co-Sponsor Rep. Dan Ugaste,2024-05-27,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Kam Buckner,2024-05-22,[],IL,103rd +Arrived in House,2024-05-15,['introduction'],IL,103rd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2023-11-09,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Insurance Committee; 014-000-000,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-22,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lilian Jiménez,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-07,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Transportation,2024-05-23,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Natalie Toro,2024-05-14,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 012-000-000,2024-05-15,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0801,2024-08-09,['became-law'],IL,103rd +Removed Co-Sponsor Rep. Dave Severin,2024-05-28,[],IL,103rd +First Reading,2024-05-21,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-11,[],IL,103rd +Third Reading - Consideration Postponed,2023-05-19,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-14,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2024-05-07,[],IL,103rd +"Effective Date January 1, 2026",2024-07-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2024-04-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-05-09,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-12,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Tony M. McCombie,2024-04-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-20,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2024-05-08,[],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-09-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2024-05-23,[],IL,103rd +Second Reading,2023-05-18,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2023-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-17,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tony M. McCombie,2023-05-03,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-03-20,[],IL,103rd +Public Act . . . . . . . . . 103-0062,2023-06-09,['became-law'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Villanueva,2024-05-26,['amendment-passage'],IL,103rd +Chief Senate Sponsor Sen. Erica Harriss,2024-04-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kam Buckner,2023-03-30,[],IL,103rd +Second Reading,2023-04-26,['reading-2'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-08,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2024-05-01,[],IL,103rd +"Senate Floor Amendment No. 3 Filed with Secretary by Sen. Elgie R. Sims, Jr.",2023-05-25,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-05-09,[],IL,103rd +House Floor Amendment No. 3 Senate Concurs 054-000-000,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-08-28,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2024-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 107-000-000,2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-04-18,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2023-05-17,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 010-000-000,2024-05-21,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0938,2024-08-09,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0097,2023-06-09,['became-law'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0256,2023-06-30,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0108,2023-06-27,['became-law'],IL,103rd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. William ""Will"" Davis",2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 013-000-000,2024-05-23,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-18,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Environment and Conservation; 007-002-000,2024-05-24,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0493,2023-08-04,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-05-19,[],IL,103rd +Assigned to Executive,2024-05-14,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-05-22,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 114-000-000,2023-05-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Judicial Note Requested as Amended - Withdrawn by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0492,2023-08-04,['became-law'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-21,[],IL,103rd +Do Pass / Short Debate Energy & Environment Committee; 016-007-000,2023-05-18,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Fiscal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 5 Adopted; Belt,2024-05-02,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-04-16,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Transportation: Vehicles & Safety; 007-004-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2024-04-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-04-25,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. John M. Cabello,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-19,[],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Chief Senate Sponsor Sen. Mattie Hunter,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Higher Education Committee; 009-000-000,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-10,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 5, 2023",2023-05-04,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-03-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-05-05,[],IL,103rd +Do Pass Executive; 007-002-000,2023-04-20,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve McClure,2023-05-08,[],IL,103rd +Public Act . . . . . . . . . 103-0022,2023-06-09,['became-law'],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to Health Care Licenses Committee,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Judiciary; 005-001-001,2023-05-16,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Janet Yang Rohr,2023-05-18,[],IL,103rd +"Remove Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-01,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2023-04-05,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 078-025-000,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-03-15,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Neil Anderson,2023-04-21,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Executive Committee,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-12,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0744,2024-08-02,['became-law'],IL,103rd +Senate Committee Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2023-05-19,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-03-15,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Donald P. DeWitte,2023-04-21,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-15,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 3, 4, 5",2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Win Stoller,2023-03-29,[],IL,103rd +Arrived in House,2023-05-10,['introduction'],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-04-06,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-03-22,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 010-000-000,2023-03-22,['committee-passage-favorable'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-04-26,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Recalled to Second Reading,2023-05-17,['reading-2'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-05-18,[],IL,103rd +Assigned to Labor,2023-04-18,['referral-committee'],IL,103rd +Senate Floor Amendment No. 3 House Concurs 078-025-000,2023-05-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Health Care Licenses Committee,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-05-08,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Transportation,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Referred to Executive Committee,2023-05-26,[],IL,103rd +Chief Senate Sponsor Sen. Mike Simmons,2023-03-27,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-18,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Harmon,2024-05-26,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-03-30,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-01,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-05-19,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-21,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-02,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Bill Cunningham,2023-05-24,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2023-04-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Blaine Wilhour,2023-05-03,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Added Chief Co-Sponsor Rep. Lilian Jiménez,2024-05-02,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 27, 2023",2023-04-26,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 075-036-001,2023-11-08,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 4 Adopted; Villanueva,2024-05-26,['amendment-passage'],IL,103rd +Senate Concurs,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-11,[],IL,103rd +Referred to Assignments,2024-05-21,[],IL,103rd +Placed on Calendar - Consideration Postponed,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. La Shawn K. Ford,2024-05-28,[],IL,103rd +Third Reading - Short Debate - Passed 072-039-001,2024-05-16,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Do Pass / Short Debate Judiciary - Criminal Committee; 015-000-000,2024-04-30,['committee-passage'],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-30,[],IL,103rd +"Effective Date January 1, 2024",2023-08-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Wayne A Rosenthal,2024-05-08,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 19, 2023",2023-05-18,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0703,2024-07-19,['became-law'],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2024-09-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-0778,2024-08-02,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2024-04-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-23,[],IL,103rd +Third Reading - Short Debate - Passed 108-000-000,2024-05-20,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-05-19,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Labor,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-18,[],IL,103rd +Public Act . . . . . . . . . 103-0383,2023-07-28,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0906,2024-08-09,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 070-005-001,2024-05-21,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 042-017-000,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0936,2024-08-09,['became-law'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 115-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2024-05-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2024-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-10-02,[],IL,103rd +First Reading,2024-05-15,['reading-1'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Christopher ""C.D."" Davidsmeyer",2024-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-04-25,[],IL,103rd +House Floor Amendment No. 1 Home Rule Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Recalled to Second Reading,2024-05-23,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-02,[],IL,103rd +House Committee Amendment No. 1 Tabled,2023-05-18,['amendment-failure'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-05-24,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 007-004-000,2023-05-17,['committee-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-17,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2023-05-09,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2024-05-08,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 107-000-000,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2024-05-24,[],IL,103rd +Third Reading - Passed; 041-015-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +House Concurs,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Land Conveyance Appraisal Note Requested as Amended - Withdrawn by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +Third Reading - Short Debate - Passed 084-019-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-04-16,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +Added as Co-Sponsor Sen. Andrew S. Chesney,2023-03-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-04-30,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-06,[],IL,103rd +Governor Approved,2023-08-07,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0389,2023-07-28,['became-law'],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Karina Villa,2024-05-23,['filing'],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-12,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 103-000-001,2023-11-09,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Motion Filed to Table Rep. Mary Gill,2024-05-08,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Bill Cunningham,2023-11-09,['filing'],IL,103rd +Added as Chief Co-Sponsor Sen. Mattie Hunter,2023-05-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2024-05-21,[],IL,103rd +Do Pass Transportation; 013-000-000,2024-05-01,['committee-passage'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-17,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0487,2023-08-04,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-05-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2024-05-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2023-05-17,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2024-04-19,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Judiciary; 008-000-000,2024-05-23,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-24,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-17,[],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +House Floor Amendment No. 3 Adopted,2023-05-16,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Senate Concurs 046-009-000,2023-05-19,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 005-003-000,2023-04-25,['committee-passage'],IL,103rd +Judicial Note Requested - Withdrawn by Rep. Kelly M. Cassidy,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-21,[],IL,103rd +State Debt Impact Note Filed,2023-05-11,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +House Committee Amendment No. 2 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +House Floor Amendment No. 5 Recommends Be Adopted Adoption & Child Welfare Committee; 012-000-000,2024-05-14,['committee-passage-favorable'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Senate Special Committee on Pensions,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 074-036-000,2024-05-28,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-04-15,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to Restorative Justice,2023-05-18,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Placed on Calendar - Consideration Postponed,2023-04-20,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Labor & Commerce Committee,2023-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2023-05-26,[],IL,103rd +House Floor Amendment No. 5 Recommends Be Adopted Mental Health & Addiction Committee; 020-000-000,2023-05-11,['committee-passage-favorable'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-04-25,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Education,2023-05-09,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3",2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-11-03,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Daniel Didech,2023-04-21,['amendment-introduction'],IL,103rd +Remove Chief Co-Sponsor Rep. Anthony DeLuca,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-04-19,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 073-036-000,2023-03-16,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 3/5 Vote Required,2023-11-09,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-05,[],IL,103rd +Third Reading - Short Debate - Passed 094-011-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-02,[],IL,103rd +Added Chief Co-Sponsor Rep. William E Hauter,2023-11-08,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Second Reading,2023-05-05,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve McClure,2023-04-20,[],IL,103rd +Passed Both Houses,2023-11-09,[],IL,103rd +House Committee Amendment No. 1 Correctional Note Requested as Amended by Rep. Bradley Fritts,2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 069-035-000,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 106-000-000,2023-05-25,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 087-026-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Rules Refers to Labor & Commerce Committee,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Labor & Commerce Committee,2024-01-31,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Amy Elik,2023-05-02,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2024-05-09,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-22,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-05-29,[],IL,103rd +Correctional Note Requested by Rep. Terra Costa Howard,2024-04-18,[],IL,103rd +"Effective Date November 17, 2023",2023-11-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Suzy Glowiak Hilton,2024-05-23,['filing'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 012-000-000,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-29,[],IL,103rd +Governor Approved,2023-06-29,['executive-signature'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Committee Amendment No. 3 Adopted,2024-05-21,['amendment-passage'],IL,103rd +"Added Alternate Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-06,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0794,2024-08-14,['became-law'],IL,103rd +"Added as Alternate Chief Co-Sponsor Sen. Napoleon Harris, III",2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2024-05-22,[],IL,103rd +Third Reading - Passed; 053-000-000,2024-05-25,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Referred to Rules Committee,2024-04-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sara Feigenholtz,2024-04-25,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 3,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 115-000-000,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-14,[],IL,103rd +Public Act . . . . . . . . . 103-0397,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-05-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-04-26,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Transportation; 012-000-000,2024-05-24,[],IL,103rd +Passed Both Houses,2023-11-09,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 013-000-000,2024-05-21,[],IL,103rd +"Chief Sponsor Changed to Rep. Robert ""Bob"" Rita",2024-05-28,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tracy Katz Muhl,2024-05-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-05-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norma Hernandez,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-05-09,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Human Services Committee,2024-05-28,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-07,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Porfirio,2024-05-08,['amendment-introduction'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-03-09,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-24,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-10,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-26,[],IL,103rd +Senate Committee Amendment No. 2 House Concurs 109-000-000,2023-05-17,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to State Government Administration Committee,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2023-05-17,['amendment-failure'],IL,103rd +Re-assigned to Health and Human Services,2023-05-02,['referral-committee'],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-05-08,[],IL,103rd +Public Act . . . . . . . . . 103-0415,2023-08-04,['became-law'],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Veterans' Affairs Committee,2023-05-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 11, 2023",2023-05-10,['reading-3'],IL,103rd +Passed Both Houses,2023-04-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-04,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2023-11-09,[],IL,103rd +"Effective Date January 1, 2024",2023-08-11,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Police & Fire Committee; 013-000-000,2024-05-22,['committee-passage-favorable'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 092-016-000,2023-05-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Dagmara Avelar,2023-05-17,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0786,2024-08-07,['became-law'],IL,103rd +Chief Senate Sponsor Sen. Javier L. Cervantes,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-05-25,[],IL,103rd +House Floor Amendment No. 3 Land Conveyance Appraisal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2023-04-20,['amendment-introduction'],IL,103rd +Third Reading - Passed; 043-010-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-02-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-12,[],IL,103rd +Racial Impact Note Requested - Withdrawn by Rep. Kevin John Olickal,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-19,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +"Senate Floor Amendment No. 1 Motion to Concur Referred to Cybersecurity, Data Analytics, & IT Committee",2023-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 056-000-000,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Judicial Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +"Senate Floor Amendment No. 1 Motion to Concur Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-15,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Motion Filed to Suspend Rule 21 Rules Committee; Rep. Natalie A. Manley,2024-05-13,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Mental Health & Addiction Committee; 018-000-000,2023-05-17,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2023-05-05,['amendment-introduction'],IL,103rd +Public Act . . . . . . . . . 103-0447,2023-08-04,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Steve Stadelman,2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-05-07,[],IL,103rd +Referred to Assignments,2024-05-23,[],IL,103rd +Chief Sponsor Changed to Sen. Omar Aquino,2024-05-25,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-16,[],IL,103rd +Referred to Assignments,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Insurance Committee; 010-005-000,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-10-25,[],IL,103rd +Do Pass as Amended Executive; 009-003-000,2023-05-17,['committee-passage'],IL,103rd +House Floor Amendment No. 1 Judicial Note Requested as Amended by Rep. Dan Ugaste,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0609,2024-07-01,['became-law'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-05-17,[],IL,103rd +"Senate Floor Amendment No. 5 Motion Filed Concur Rep. Maurice A. West, II",2024-05-24,[],IL,103rd +Do Pass as Amended / Short Debate Human Services Committee; 006-003-000,2024-03-21,['committee-passage'],IL,103rd +Do Pass Executive; 009-004-000,2023-05-17,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-24,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-12,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Omar Aquino,2024-05-25,['filing'],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-10-25,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2024-05-07,[],IL,103rd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2024-05-24,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Fiscal Note Requested by Rep. Ryan Spain,2024-03-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Land Conveyance Appraisal Note Requested as Amended by Rep. Dan Ugaste,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-16,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 072-035-000,2024-05-25,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-17,['reading-2'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-03-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-05-04,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-05-08,[],IL,103rd +Sent to the Governor,2023-04-26,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Veterans' Affairs Committee; 013-000-000,2023-05-16,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Third Reading - Passed; 049-005-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-05-18,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 17, 2023",2023-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Judiciary - Criminal Committee,2024-05-23,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Recalled to Second Reading,2024-05-16,['reading-2'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-11-09,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-08,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-18,[],IL,103rd +Sent to the Governor,2023-11-14,['executive-receipt'],IL,103rd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-06-11,[],IL,103rd +"Effective Date June 29, 2023",2023-06-29,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +"Senate Floor Amendment No. 3 Motion Filed Concur Rep. Jaime M. Andrade, Jr.",2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Health Care Licenses Committee,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0563,2023-11-17,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2024-05-22,[],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Robert ""Bob"" Rita",2024-05-28,[],IL,103rd +Do Pass as Amended Education; 009-000-000,2024-05-21,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-09,[],IL,103rd +"Effective Date August 9, 2024; Some Provisions;",2024-08-09,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Robyn Gabel,2023-05-18,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +"Effective Date January 1, 2026",2024-08-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Human Services Committee,2024-05-28,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2024-04-25,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Jennifer Gong-Gershowitz,2024-04-10,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-07,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Child Care Accessibility & Early Childhood Education Committee,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Omar Aquino,2024-05-08,[],IL,103rd +Alternate Chief Sponsor Removed Rep. Mark L. Walker,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2023-04-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2024-05-20,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Chief Senate Sponsor Sen. Willie Preston,2024-04-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Do Pass Judiciary; 005-002-000,2024-05-15,['committee-passage'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Concurs 115-000-000,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 115-000-000,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2024-05-25,['amendment-failure'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-05-17,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-04-26,[],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. Kevin John Olickal,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Pension Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0347,2023-07-28,['became-law'],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Kam Buckner,2024-05-28,[],IL,103rd +"Committee/3rd Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Veterans Affairs; 007-000-000,2023-05-11,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2023-05-17,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 005-000-000,2024-05-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-04-19,[],IL,103rd +"Third Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-05,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Doris Turner,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0541,2023-08-11,['became-law'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2023-05-18,[],IL,103rd +House Committee Amendment No. 1 3/5 Vote Required,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-02-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-09,[],IL,103rd +Governor Approved,2023-07-26,['executive-signature'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Ann Gillespie,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +House Floor Amendment No. 2 Judicial Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +"Senate Floor Amendment No. 2 Motion to Concur Referred to Cybersecurity, Data Analytics, & IT Committee",2023-05-16,[],IL,103rd +Arrived in House,2023-05-17,['introduction'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 106-006-000,2023-05-18,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Diane Blair-Sherlock,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-05-25,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Syverson,2024-05-23,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Appropriations-Elementary & Secondary Education Committee,2024-05-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-20,[],IL,103rd +House Floor Amendment No. 2 Racial Impact Note Requested as Amended - Withdrawn by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2024-05-22,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Labor; 015-000-000,2024-05-23,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2024-05-21,[],IL,103rd +Third Reading - Passed; 036-019-000,2024-05-02,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. John M. Cabello,2023-05-17,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-24,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-04-16,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2023-05-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-05-19,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-22,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-23,['amendment-failure'],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-10,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-08,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2024-05-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Referred to Assignments,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-03-29,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Recalled to Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Added as Chief Co-Sponsor Sen. Mike Simmons,2023-04-27,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2023-10-02,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Housing Affordability Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2024-05-21,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-08,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2024-05-08,[],IL,103rd +Sponsor Removed Sen. Christopher Belt,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. La Shawn K. Ford,2024-05-28,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2024-05-22,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Dave Vella,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-15,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-02,[],IL,103rd +Assigned to State Government,2023-04-25,['referral-committee'],IL,103rd +"Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-000",2023-05-16,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Ellman,2023-05-17,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Robyn Gabel,2023-03-15,[],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +Arrive in Senate,2023-05-15,['introduction'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-05,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2023-04-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-04-20,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Referred to Health Care Licenses Committee,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 012-000-000,2023-05-26,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Postponed - Executive,2023-04-27,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-04-10,[],IL,103rd +Arrived in House,2023-05-17,['introduction'],IL,103rd +Third Reading - Passed; 039-018-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Ram Villivalam,2023-04-21,['amendment-introduction'],IL,103rd +Third Reading - Passed; 057-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-18,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-09,[],IL,103rd +"Added Chief Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-26,[],IL,103rd +Senate Committee Amendment No. 4 Tabled Pursuant to Rule 5-4(a),2023-05-19,['amendment-failure'],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Transportation,2023-04-25,['amendment-passage'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Public Act . . . . . . . . . 103-0459,2023-08-04,['became-law'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Chris Miller,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Holmes,2024-05-26,['amendment-passage'],IL,103rd +Passed Both Houses,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2023-05-25,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Prescription Drug Affordability & Accessibility Committee,2023-03-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-11-08,[],IL,103rd +Sent to the Governor,2023-12-01,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0481,2023-08-04,['became-law'],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-03-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-05-19,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-15,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0545,2023-08-11,['became-law'],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2024-04-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-04-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2024-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Fred Crespo,2024-05-08,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2024-05-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-05-29,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2024-05-09,[],IL,103rd +Home Rule Note Requested by Rep. Terra Costa Howard,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Executive,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Steve Stadelman,2024-05-25,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tony M. McCombie,2023-11-06,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2023-04-21,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2023-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-11-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Randy E. Frese,2023-11-08,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-04-26,[],IL,103rd +Remove Chief Co-Sponsor Rep. Mary Beth Canty,2024-05-28,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 4 Tabled Pursuant to Rule 5-4(a),2023-05-17,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Restorative Justice; 008-000-000,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 069-035-000,2023-05-25,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-04-21,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2023-11-08,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3",2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Suzy Glowiak Hilton,2023-04-21,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 5 Adopted; Villanueva,2024-05-26,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Fiscal Note Requested as Amended by Rep. Bradley Fritts,2024-05-20,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-04-20,[],IL,103rd +Arrive in Senate,2023-03-21,['introduction'],IL,103rd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-04-20,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Education; 013-000-000,2023-05-10,[],IL,103rd +House Floor Amendment No. 3 Senate Concurs 046-001-000,2023-11-09,[],IL,103rd +Chief Sponsor Changed to Rep. Cyril Nichols,2023-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Executive Committee,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-02,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-22,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-05-05,[],IL,103rd +Second Reading,2023-05-16,['reading-2'],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 009-004-000,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-11,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to State Government Administration Committee,2023-05-11,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-11,[],IL,103rd +Chief Sponsor Changed to Sen. Celina Villanueva,2023-05-17,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-03-30,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Agriculture & Conservation Committee,2024-05-22,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-05-30,[],IL,103rd +House Floor Amendment No. 5 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Assigned to Executive Committee,2023-05-17,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2024-05-21,[],IL,103rd +Public Act . . . . . . . . . 103-0875,2024-08-09,['became-law'],IL,103rd +"Effective Date August 7, 2023",2023-08-07,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Energy and Public Utilities,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 074-036-000,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 5 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-12,['amendment-passage'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Theresa Mah,2023-05-25,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 011-000-000,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-05-22,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Mary Gill,2024-05-08,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-11,[],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. Kelly M. Cassidy,2023-05-10,[],IL,103rd +House Floor Amendment No. 4 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +"Added Alternate Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-21,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2023-11-09,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 114-000-000,2023-05-17,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2024-05-23,['filing'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +House Floor Amendment No. 3 Housing Affordability Impact Note Filed as Amended,2023-05-15,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Adoption & Child Welfare Committee,2024-04-30,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-16,['reading-3'],IL,103rd +Pension Note Filed,2023-05-11,[],IL,103rd +Third Reading - Short Debate - Passed 067-038-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-05-07,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 009-002-000,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-19,[],IL,103rd +Do Pass Insurance; 010-000-000,2024-05-08,['committee-passage'],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2023-11-09,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Senate Special Committee on Pensions; 011-000-000,2023-05-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2024",2024-05-01,['reading-2'],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-05-05,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brandun Schweizer,2024-05-21,[],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +House Committee Amendment No. 1 Adopted in Labor & Commerce Committee; by Voice Vote,2024-05-20,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Labor & Commerce Committee,2024-01-31,[],IL,103rd +"House Floor Amendment No. 1 Home Rule Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Senate Committee Amendment No. 2 Rule 3-9(a) / Re-referred to Assignments,2023-05-05,[],IL,103rd +Do Pass as Amended / Short Debate Labor & Commerce Committee; 019-009-000,2024-05-20,['committee-passage'],IL,103rd +Assigned to Special Committee on Criminal Law and Public Safety,2024-04-30,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-21,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +"House Floor Amendment No. 2 Home Rule Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2023-11-08,[],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-24,[],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 074-037-000,2023-05-27,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Labor & Commerce Committee,2023-03-22,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Restorative Justice; 008-000-000,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-03-28,[],IL,103rd +Approved for Consideration Assignments,2023-04-12,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-05-25,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Home Rule Note Requested as Amended by Rep. Bradley Fritts,2024-05-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-25,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +Third Reading - Passed; 036-019-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Jehan Gordon-Booth,2024-05-28,[],IL,103rd +Public Act . . . . . . . . . 103-0308,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-11-08,[],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +Senate Concurs,2023-11-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-04-20,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-21,['reading-1'],IL,103rd +Recalled to Second Reading,2023-05-10,['reading-2'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +House Floor Amendment No. 2 Pension Note Filed as Amended,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-11-06,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Win Stoller,2023-04-27,[],IL,103rd +House Floor Amendment No. 4 Adopted,2023-05-16,['amendment-passage'],IL,103rd +Assigned to State Government,2023-05-09,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-17,[],IL,103rd +Remove Chief Co-Sponsor Rep. Kam Buckner,2023-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2023",2023-05-16,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-04-25,[],IL,103rd +Third Reading - Passed; 057-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Executive; 012-000-000,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-05-29,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0513,2023-08-07,['became-law'],IL,103rd +Housing Affordability Impact Note Filed,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0831,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-05-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Jed Davis,2024-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2023-05-11,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 056-001-000,2023-05-19,[],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Robert ""Bob"" Rita",2023-05-17,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Agriculture & Conservation Committee; 009-000-000,2024-05-22,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-04-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-05-18,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Second Reading,2024-05-02,['reading-2'],IL,103rd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to State Government,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 031-018-000,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Patrick J. Joyce,2023-03-30,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +House Committee Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Pension Note Requested - Withdrawn by Rep. Kelly M. Cassidy,2023-05-10,[],IL,103rd +House Concurs,2024-05-28,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Energy and Public Utilities; 012-004-000,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-15,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 098-017-000,2023-05-16,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-28,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 3 Home Rule Note Filed as Amended,2023-05-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-12,['reading-3'],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +House Committee Amendment No. 1 Adopted in Adoption & Child Welfare Committee; by Voice Vote,2024-04-30,['amendment-passage'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Environment and Conservation,2024-05-23,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-07,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2023-02-28,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-21,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-04-27,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-17,[],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Floor Amendment No. 3 Judicial Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Mary Edly-Allen,2023-05-05,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Health and Human Services; 008-000-000,2023-05-09,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0355,2023-07-28,['became-law'],IL,103rd +House Floor Amendment No. 3 Pension Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-05-19,[],IL,103rd +Recalled to Second Reading,2023-05-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Rules Refers to Judiciary - Civil Committee,2023-04-25,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 070-038-000,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-04-19,[],IL,103rd +"Alternate Chief Sponsor Changed to Sen. Elgie R. Sims, Jr.",2023-05-25,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 036-014-000,2023-11-09,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-05-25,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +"Effective Date July 26, 2023",2023-07-26,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Barbara Hernandez,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +Waive Posting Notice,2024-05-23,[],IL,103rd +State Mandates Fiscal Note Requested - Withdrawn by Rep. Kevin John Olickal,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-25,[],IL,103rd +Recalled to Second Reading,2023-05-19,['reading-2'],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +"Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Cybersecurity, Data Analytics, & IT Committee; 011-000-000",2023-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-05-11,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3",2023-05-12,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Veterans' Affairs Committee; 013-000-000,2023-05-16,[],IL,103rd +Second Reading - Short Debate,2023-03-16,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Anne Stava-Murray,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-04-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Daniel Didech,2024-02-02,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-16,[],IL,103rd +Assigned to Judiciary,2023-04-12,['referral-committee'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-05-04,[],IL,103rd +Governor Approved,2023-04-27,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-08,['reading-2'],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0608,2024-07-01,['became-law'],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2024-05-09,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Ryan Spain,2024-03-21,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 072-035-000,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-05-07,[],IL,103rd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. Curtis J. Tarver, II",2023-11-01,[],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-05-17,[],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +House Floor Amendment No. 1 Pension Note Requested as Amended by Rep. Dan Ugaste,2023-05-10,[],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Ann M. Williams,2024-05-24,['amendment-introduction'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-16,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. Terra Costa Howard,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2024-05-24,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-15,['reading-2'],IL,103rd +House Concurs,2024-05-24,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-1031,2024-08-09,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2024-05-20,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 008-000-000,2024-05-28,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +"Effective Date January 1, 2025; Some Provisions",2024-08-09,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2024-05-15,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-04-26,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Criminal Committee; 015-000-000,2024-05-23,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura M. Murphy,2023-05-17,['filing'],IL,103rd +Do Pass Insurance; 010-000-000,2024-05-08,['committee-passage'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Arrived in House,2024-05-25,['introduction'],IL,103rd +First Reading,2023-11-09,['reading-1'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lilian Jiménez,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2024-05-22,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-14,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 21, 2024",2024-05-21,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Health Care Licenses Committee,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0793,2024-08-09,['became-law'],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0111,2023-06-29,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0980,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Cunningham,2024-05-16,['amendment-passage'],IL,103rd +Sent to the Governor,2024-06-26,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Education,2024-05-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 014-000-000,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-09,[],IL,103rd +Governor Approved,2023-11-17,['executive-signature'],IL,103rd +"Senate Floor Amendment No. 4 Motion Filed Concur Rep. Robert ""Bob"" Rita",2024-05-28,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-10,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Arrive in Senate,2024-05-21,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. John M. Cabello,2024-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2024-05-23,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nabeela Syed,2024-04-30,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2023-05-04,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-04-12,[],IL,103rd +Public Act . . . . . . . . . 103-0640,2024-07-01,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-14,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-05-02,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Arrive in Senate,2024-04-16,['introduction'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-03-22,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Executive Committee,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Executive Committee; 012-000-000,2023-05-26,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-04-28,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Insurance; 008-000-000,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Executive Committee,2023-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0032,2023-06-09,['became-law'],IL,103rd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Dave Vella,2023-05-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2023-04-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2023-04-11,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-03-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-05-09,[],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Placed on Calendar Order of First Reading,2023-05-15,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Anna Moeller,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mattie Hunter,2023-05-04,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-10,[],IL,103rd +Do Pass as Amended Transportation; 013-000-000,2023-04-26,['committee-passage'],IL,103rd +Senate Floor Amendment No. 1 House Concurs 114-000-000,2023-05-17,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Postponed - Environment and Conservation,2023-04-20,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Assigned to Health and Human Services,2023-04-18,['referral-committee'],IL,103rd +"Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 006-002-000",2023-05-16,[],IL,103rd +Arrived in House,2023-05-25,['introduction'],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Assigned to Higher Education,2023-05-16,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-04-25,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Carol Ammons,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Personnel & Pensions Committee,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brandun Schweizer,2024-05-21,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Kelly M. Cassidy,2023-05-18,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-04-16,[],IL,103rd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended - Withdrawn by Rep. Jay Hoffman,2024-05-01,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Appropriations-Elementary & Secondary Education Committee; 012-000-000,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brandun Schweizer,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-19,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2024-05-24,[],IL,103rd +Postponed - Executive,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0504,2023-08-04,['became-law'],IL,103rd +House Floor Amendment No. 3 Adopted,2024-05-22,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2024-05-21,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-03-29,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Transportation: Vehicles & Safety,2024-05-22,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Effective Date August 9, 2024; Some Provisions;",2024-08-09,[],IL,103rd +Public Act . . . . . . . . . 103-0942,2024-08-09,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-23,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-23,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Judicial Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-02,['amendment-failure'],IL,103rd +House Floor Amendment No. 1 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0388,2023-07-28,['became-law'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-10-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-04-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Halbrook,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2024-05-08,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Charles Meier,2023-05-24,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. La Shawn K. Ford,2024-05-28,[],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2024-05-17,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-10,[],IL,103rd +Governor Approved,2023-12-08,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - November 8, 2023",2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-04-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-05-09,[],IL,103rd +Chief House Sponsor Rep. Tony M. McCombie,2023-05-11,[],IL,103rd +"Removed Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-21,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-03-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Halbrook,2023-05-03,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Wayne A Rosenthal,2023-05-03,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2024-05-21,[],IL,103rd +Alternate Chief Sponsor Removed Rep. Tony M. McCombie,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-03-30,[],IL,103rd +Third Reading - Passed; 048-011-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-05-17,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Terri Bryant,2024-04-29,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-22,[],IL,103rd +Sent to the Governor,2023-05-31,['executive-receipt'],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-05-09,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 011-000-000,2023-05-24,[],IL,103rd +Chief Sponsor Changed to Sen. Cristina Castro,2023-11-08,[],IL,103rd +"Effective Date December 8, 2023",2023-12-08,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2024-05-03,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2024-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Land Conveyance Appraisal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Transportation: Vehicles & Safety; 011-000-000,2024-05-22,[],IL,103rd +Motion Filed to Suspend Rule 21 Human Services Committee; Rep. Robyn Gabel,2023-05-03,[],IL,103rd +Public Act . . . . . . . . . 103-0905,2024-08-09,['became-law'],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-05-23,[],IL,103rd +Assigned to Insurance Committee,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2024-05-02,['amendment-failure'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Chris Miller,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy L. Grant,2024-05-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-01,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Tom Weber,2024-05-22,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-05-10,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2023-11-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-04-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-19,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 3",2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0510,2023-08-04,['became-law'],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Effective Date January 1, 2025; Some Provisions",2024-08-09,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-03-29,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 115-000-000,2024-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-05-25,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 115-000-000,2024-05-24,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2023-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2023-05-18,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-05-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-14,[],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Placed on Calendar Order of First Reading,2024-05-21,['reading-1'],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2024-05-08,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-10,['executive-receipt'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Justin Slaughter,2024-04-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-08,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-02,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-04,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 5, 6",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Executive Committee; 012-000-000,2023-05-26,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-16,['reading-1'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-25,[],IL,103rd +"Senate Floor Amendment No. 3 Pursuant to Senate Rule 3-8 (b-1), the following amendment will remain in the Committee on Assignments.",2023-05-10,[],IL,103rd +Assigned to Insurance,2023-04-18,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-03-15,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Environment and Conservation,2023-04-25,[],IL,103rd +Assigned to Energy and Public Utilities,2023-04-12,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Personnel & Pensions Committee,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Executive Committee,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2023-04-21,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Pacione-Zayas,2023-05-11,['amendment-passage'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Approved For Consideration- Pursuant to Senate Rule 3-8 (d-10),2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Anna Moeller,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-10,[],IL,103rd +Chief Senate Sponsor Sen. Laura Fine,2023-05-15,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-03-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-05-25,[],IL,103rd +Third Reading - Passed; 048-007-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Senate Floor Amendment No. 5 Motion Filed Concur Rep. Dave Vella,2023-05-19,[],IL,103rd +Waive Posting Notice,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-05-26,[],IL,103rd +Assigned to Public Health,2023-04-12,['referral-committee'],IL,103rd +Arrived in House,2024-05-15,['introduction'],IL,103rd +Assigned to Executive,2024-05-23,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. La Shawn K. Ford,2024-05-28,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-24,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 2, 3",2023-05-16,[],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Mary Gill,2024-05-09,['amendment-introduction'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Environment and Conservation; 007-002-000,2024-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-04-19,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-18,['reading-3'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 7, 2024",2024-05-02,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-05-12,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-03-30,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jay Hoffman,2023-05-18,['amendment-introduction'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0485,2023-08-04,['became-law'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to State Government,2024-05-23,[],IL,103rd +Do Pass as Amended / Short Debate Adoption & Child Welfare Committee; 010-004-000,2024-04-30,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-05-08,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2024-05-07,[],IL,103rd +Chief Senate Sponsor Sen. Cristina Castro,2024-04-19,[],IL,103rd +Balanced Budget Note Filed,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-11,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Governor Approved,2023-06-16,['executive-signature'],IL,103rd +Racial Impact Note Requested - Withdrawn by Rep. Kelly M. Cassidy,2023-05-10,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-06-03,[],IL,103rd +Passed Both Houses,2024-05-28,[],IL,103rd +House Floor Amendment No. 3 Correctional Note Filed as Amended,2023-05-17,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 045-014-000,2024-05-24,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-16,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Johnson,2023-05-10,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-03-28,[],IL,103rd +Do Pass Executive; 008-001-000,2023-04-27,['committee-passage'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +House Committee Amendment No. 1 Housing Affordability Impact Note Requested as Amended by Rep. Bradley Fritts,2024-05-20,[],IL,103rd +Third Reading - Passed; 037-022-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +House Floor Amendment No. 3 Pension Note Filed as Amended,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-17,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Jay Hoffman,2023-11-06,[],IL,103rd +Public Act . . . . . . . . . 103-0285,2023-07-28,['became-law'],IL,103rd +Chief Senate Sponsor Sen. Robert F. Martwick,2023-03-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 18, 2023",2023-04-12,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-04-24,[],IL,103rd +Passed Both Houses,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-11-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Education,2023-04-25,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0532,2023-08-11,['became-law'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 111-000-000,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-04-25,[],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +Chief Sponsor Changed to Rep. Lance Yednock,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Loughran Cappel,2023-05-11,['amendment-passage'],IL,103rd +Alternate Chief Sponsor Changed to Sen. Celina Villanueva,2024-05-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Robyn Gabel,2024-05-28,[],IL,103rd +House Floor Amendment No. 5 Adopted,2023-05-16,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-12,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2023-04-27,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-02-07,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-05,[],IL,103rd +"House Floor Amendment No. 1 Housing Affordability Impact Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +State Debt Impact Note Filed,2023-05-02,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-21,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-21,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mary Edly-Allen,2024-04-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Kimberly A. Lightford,2024-05-25,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-05-29,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-07-05,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-21,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lindsey LaPointe,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-12,[],IL,103rd +"Effective Date August 9, 2024",2024-07-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-05-09,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-21,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Education; 013-000-000,2024-05-24,[],IL,103rd +"Effective Date November 17, 2023",2023-11-17,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3",2024-05-25,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0902,2024-08-09,['became-law'],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Sonya M. Harper,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-04-29,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2024-05-13,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Human Services Committee; 008-000-000,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-05-24,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2024-05-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Abdelnasser Rashid,2024-05-16,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0991,2024-08-09,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Cunningham,2024-05-16,['amendment-passage'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-09,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Referred to Rules Committee,2023-11-09,[],IL,103rd +House Floor Amendment No. 1 Racial Impact Note Requested as Amended by Rep. Dan Ugaste,2023-05-10,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2024-05-07,[],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2024-05-09,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-11-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-16,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0543,2023-08-11,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Omar Aquino,2024-05-25,['filing'],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2024-05-24,[],IL,103rd +Balanced Budget Note Requested by Rep. Ryan Spain,2024-03-21,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Joyce Mason,2023-05-19,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-02-28,[],IL,103rd +Recalled to Second Reading,2023-05-25,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2023-05-19,[],IL,103rd +Assigned to Appropriations- Public Safety and Infrastructure,2023-04-18,['referral-committee'],IL,103rd +Alternate Chief Sponsor Changed to Rep. Will Guzzardi,2024-05-28,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +House Floor Amendment No. 3 3/5 Vote Required,2023-11-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Sponsor Removed Sen. Ann Gillespie,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Villa,2023-05-17,['amendment-passage'],IL,103rd +"Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Cybersecurity, Data Analytics, & IT Committee; 011-000-000",2023-05-17,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-05-25,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Judiciary - Criminal Committee,2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Judiciary - Civil Committee; 012-000-000,2023-04-27,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Land Conveyance Appraisal Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Mary Beth Canty,2023-04-21,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Labor & Commerce Committee,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Racial Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0269,2023-07-26,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Amy L. Grant,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 090-023-000,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-05,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Michelle Mussman,2023-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-04-28,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 074-037-000,2023-05-27,[],IL,103rd +Public Act . . . . . . . . . 103-0001,2023-04-27,['became-law'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Sent to the Governor,2024-06-17,['executive-receipt'],IL,103rd +To Subcommittee on Privacy,2023-04-19,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 114-000-000,2023-05-17,[],IL,103rd +Recalled to Second Reading,2023-05-04,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-16,['reading-3'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Ann M. Williams,2023-05-09,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2024-04-18,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Jay Hoffman,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jed Davis,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Consumer Protection Committee,2023-05-15,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Judicial Note Requested by Rep. Terra Costa Howard,2024-04-18,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Terra Costa Howard,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-03,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Adopted in Judiciary - Criminal Committee; by Voice Vote,2023-04-25,['amendment-passage'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2023-11-06,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 090-023-000,2023-05-17,[],IL,103rd +House Concurs,2023-05-27,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Joyce Mason,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-05-25,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Do Pass / Short Debate Executive Committee; 008-004-000,2024-05-28,['committee-passage'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Public Act . . . . . . . . . 103-0365,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2023-05-19,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 073-040-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Michelle Mussman,2023-05-17,[],IL,103rd +House Floor Amendment No. 3 Racial Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Labor & Commerce Committee,2023-05-18,[],IL,103rd +Recalled to Second Reading,2023-05-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-05-25,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-04-21,[],IL,103rd +House Floor Amendment No. 3 Senate Concurs 036-014-000,2023-11-09,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Sims,2023-05-25,['amendment-passage'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-05-09,[],IL,103rd +House Floor Amendment No. 2 Land Conveyance Appraisal Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Charles Meier,2024-05-25,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 107-000-000,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Fred Crespo,2023-11-09,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-07-05,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-05-22,['amendment-failure'],IL,103rd +Assigned to Economic Opportunity & Equity Committee,2024-04-30,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Hoan Huynh,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0860,2024-08-09,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0564,2023-11-17,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-12,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-05-28,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Veterans Affairs,2024-05-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-24,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to State Government,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-05-09,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Assigned to Labor & Commerce Committee,2024-01-31,['referral-committee'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2024-05-24,[],IL,103rd +Assigned to Insurance,2024-04-30,['referral-committee'],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Labor & Commerce Committee,2024-05-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2024-04-29,[],IL,103rd +House Floor Amendment No. 4 Tabled,2024-05-15,['amendment-failure'],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0244,2023-06-30,['became-law'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Doris Turner,2024-05-21,['amendment-introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-05-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-05-17,[],IL,103rd +Third Reading - Passed; 039-019-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Energy & Environment Committee; 021-007-001,2024-05-24,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2024-05-25,[],IL,103rd +House Floor Amendment No. 1 State Debt Impact Note Requested as Amended by Rep. Dan Ugaste,2023-05-10,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-03-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Ethics & Elections,2023-11-01,[],IL,103rd +"Effective Date April 27, 2023",2023-04-27,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Consumer Protection Committee; 005-003-000,2023-05-16,[],IL,103rd +Assigned to Insurance Committee,2024-04-24,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-04-15,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-11,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-03-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-05-09,[],IL,103rd +Re-referred to Assignments,2023-04-19,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Hastings,2023-05-04,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Jay Hoffman,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 114-000-000,2023-05-17,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 5 Referred to Assignments,2024-05-25,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2024-04-11,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Passed Both Houses,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-05-08,[],IL,103rd +Public Act . . . . . . . . . 103-0780,2024-08-02,['became-law'],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-08,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-24,[],IL,103rd +Governor Approved,2024-07-02,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-11,[],IL,103rd +Do Pass Executive; 009-004-000,2024-05-23,['committee-passage'],IL,103rd +House Committee Amendment No. 1 Senate Concurs 054-000-000,2023-05-24,[],IL,103rd +First Reading,2023-05-12,['reading-1'],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Cristina Castro,2023-11-08,['filing'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-0574,2023-12-08,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-03-30,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-05-10,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Erica Harriss,2024-04-29,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Charles Meier,2023-05-03,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2024-05-03,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2024-05-21,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 071-040-000,2023-05-03,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. La Shawn K. Ford,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Nicholas K. Smith,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0254,2023-06-30,['became-law'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 107-000-000,2024-05-25,[],IL,103rd +House Concurs,2024-05-24,[],IL,103rd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-29,[],IL,103rd +House Floor Amendment No. 1 Pension Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicole La Ha,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-24,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 107-000-000,2024-05-25,[],IL,103rd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-19,[],IL,103rd +"Effective Date January 1, 2024",2023-08-11,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 10, 2023",2023-05-09,[],IL,103rd +Senate Floor Amendment No. 4 Tabled Pursuant to Rule 5-4(a),2024-05-02,['amendment-failure'],IL,103rd +Added Alternate Co-Sponsor Rep. Blaine Wilhour,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-04-16,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-06,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-1021,2024-08-09,['became-law'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2023-05-19,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-12-12,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tom Weber,2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Steven Reick,2024-05-22,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-09,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-02,['reading-3'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Arrived in House,2024-05-23,['introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2024-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0881,2024-08-09,['became-law'],IL,103rd +House Concurs,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-01,['reading-3'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2024-05-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-04-26,[],IL,103rd +"Added as Alternate Chief Co-Sponsor Sen. Napoleon Harris, III",2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Postponed - Executive,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-05-26,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-17,['amendment-failure'],IL,103rd +Do Pass Public Health; 008-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. John M. Cabello,2023-05-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +First Reading,2023-05-15,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 3 Approved For Consideration- Pursuant to Senate Rule 3-8 (d-10),2023-05-19,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Environment and Conservation,2023-04-27,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-10,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Personnel & Pensions Committee; 009-000-000,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Labor,2023-04-26,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-03,[],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-05-25,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-17,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Removed Co-Sponsor Rep. Katie Stuart,2023-03-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-03-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-04-18,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-05-29,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Steve Stadelman,2024-05-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 113-000-000,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Land Conveyance Appraisal Note Filed as Amended,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lance Yednock,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 2 House Concurs 111-000-000,2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-28,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Patrick J. Joyce,2023-04-20,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +House Committee Amendment No. 1 Judicial Note Requested as Amended by Rep. Bradley Fritts,2024-05-20,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 112-001-000,2023-05-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Kimberly Du Buclet,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0329,2023-07-28,['became-law'],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-04-25,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2024-05-26,[],IL,103rd +Do Pass Senate Special Committee on Pensions; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Education; 013-000-000,2023-04-26,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2023-04-21,['amendment-introduction'],IL,103rd +Added Chief Co-Sponsor Rep. La Shawn K. Ford,2023-05-26,[],IL,103rd +Third Reading - Passed; 055-001-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +"Effective Date June 9, 2023",2023-06-09,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Labor,2023-04-25,[],IL,103rd +Sent to the Governor,2023-12-01,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-04-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +First Reading,2023-03-21,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-17,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-05-17,[],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-09,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-11-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-16,['reading-3'],IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Executive Committee,2023-05-17,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2024-05-23,['filing'],IL,103rd +House Floor Amendment No. 3 Adopted,2023-05-17,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0890,2024-08-09,['became-law'],IL,103rd +Added as Co-Sponsor Sen. Kimberly A. Lightford,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. Kelly M. Cassidy,2023-05-10,[],IL,103rd +Added as Chief Co-Sponsor Sen. Omar Aquino,2023-03-30,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0502,2023-08-04,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-21,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 044-015-000,2024-05-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-01,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Seth Lewis,2024-05-07,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 104-007-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Fiscal Note Requested by Rep. Amy Elik,2023-05-02,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2024-04-19,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-06-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Adoption & Child Welfare Committee,2024-05-21,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 3 - May 17, 2023",2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2024-05-22,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to State Government,2024-05-23,[],IL,103rd +"Effective Date June 16, 2023; Some Provisions",2023-06-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-05-14,[],IL,103rd +House Committee Amendment No. 2 3/5 Vote Required,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-07,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2024-04-30,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Fiscal Note Filed,2023-05-03,[],IL,103rd +"House Floor Amendment No. 2 Housing Affordability Impact Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 21, 2024",2024-05-21,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 022-006-000,2024-02-07,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2023-11-27,[],IL,103rd +"Effective Date January 1, 2025",2024-07-02,[],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-01,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Robert Peters,2024-05-23,['filing'],IL,103rd +"House Floor Amendment No. 1 Judicial Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-04-15,[],IL,103rd +Correctional Note Requested by Rep. Barbara Hernandez,2023-05-03,[],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 022-006-000,2024-02-07,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-21,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +Governor Approved,2023-06-06,['executive-signature'],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +First Reading,2024-04-16,['reading-1'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Labor & Commerce Committee; 018-009-000,2023-03-23,['committee-passage-favorable'],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Recalled to Second Reading,2023-05-04,['reading-2'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-04-25,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2023-11-08,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-05-25,[],IL,103rd +House Floor Amendment No. 3 Land Conveyance Appraisal Note Filed as Amended,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-03-28,[],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-05-16,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Lance Yednock,2023-11-08,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2, 3",2023-05-15,[],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-05-10,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 112-001-000,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Senate Floor Amendment No. 2 House Concurs 113-000-000,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jennifer Gong-Gershowitz,2023-05-12,[],IL,103rd +House Committee Amendment No. 1 Land Conveyance Appraisal Note Requested as Amended by Rep. Bradley Fritts,2024-05-20,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-05-29,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 107-000-000,2024-05-25,[],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Marcus C. Evans, Jr.",2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2024-04-19,[],IL,103rd +Note / Motion Filed - Note Act Does Not Apply Rep. Kelly M. Cassidy,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Kelly M. Cassidy,2023-05-19,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - November 7, 2023",2023-11-07,[],IL,103rd +Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Governor Vetoed,2023-08-04,['executive-veto'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-07,[],IL,103rd +Third Reading - Short Debate - Passed 081-024-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Effective Date July 1, 2023; Some Provisions",2023-06-16,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Arrived in House,2024-05-21,['introduction'],IL,103rd +Note / Motion Filed - Note Act Does Not Apply Rep. Hoan Huynh,2023-05-17,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Committee Amendment No. 2 Senate Concurs 051-000-000,2023-11-09,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Adoption & Child Welfare Committee; 012-000-000,2024-05-22,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. David Koehler,2023-05-17,['filing'],IL,103rd +Third Reading - Short Debate - Passed 106-001-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-19,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Amy Elik,2023-05-02,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy L. Grant,2024-05-14,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Third Reading - Passed; 057-000-000,2023-03-30,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-01,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Nicholas K. Smith,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-07,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-28,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-22,[],IL,103rd +First Reading,2024-05-21,['reading-1'],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-09,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Theresa Mah,2023-05-11,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-04-27,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Ann M. Williams,2023-05-10,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-16,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Jay Hoffman,2023-05-12,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 075-038-000,2023-05-17,[],IL,103rd +Re-assigned to Judiciary,2023-04-19,['referral-committee'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2024-05-03,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Natalie Toro,2024-05-15,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-11-09,[],IL,103rd +"Committee Deadline Extended-Rule 9(b) May 10, 2024",2024-04-30,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 106-000-000,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0647,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Charles Meier,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Do Pass / Short Debate Labor & Commerce Committee; 019-010-000,2024-02-07,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-05-28,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +House Concurs,2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Postponed State Government,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2024-05-20,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-04-12,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 028-000-000,2024-05-20,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 105-000-000,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-07-05,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-18,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2024-05-21,[],IL,103rd +Pension Note Requested by Rep. Terra Costa Howard,2024-04-18,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +House Floor Amendment No. 1 State Debt Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 011-000-000,2023-05-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-28,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Hunter,2023-05-10,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Transportation: Vehicles & Safety,2023-05-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2023-05-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jonathan Carroll,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Agriculture; 011-000-000,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-05-25,[],IL,103rd +House Floor Amendment No. 3 Land Conveyance Appraisal Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Executive,2023-05-09,[],IL,103rd +Do Pass as Amended / Short Debate Judiciary - Criminal Committee; 013-000-000,2023-04-25,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0047,2023-06-09,['became-law'],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Arrive in Senate,2024-05-24,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Senate Concurs,2023-11-09,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-02-28,[],IL,103rd +Third Reading - Passed; 051-000-002,2023-05-17,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-04-25,[],IL,103rd +Passed Both Houses,2023-05-27,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Executive Committee,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-05-17,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Assigned to Executive,2023-05-16,['referral-committee'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Ethics & Elections; 011-000-000,2023-11-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-05-07,[],IL,103rd +House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Dan Ugaste,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-18,['amendment-failure'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-16,[],IL,103rd +Balanced Budget Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +House Floor Amendment No. 5 Filed with Clerk by Rep. Ann M. Williams,2024-05-24,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 4 Adopted; Johnson,2023-05-11,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Personnel & Pensions Committee; 009-000-000,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2023-04-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2023-04-25,[],IL,103rd +Public Act . . . . . . . . . 103-0313,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-04-18,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Do Pass as Amended Environment and Conservation; 009-000-000,2023-04-27,['committee-passage'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 085-021-000,2023-03-24,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Adopted; Doris Turner,2023-05-19,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-26,[],IL,103rd +Third Reading - Passed; 035-019-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-05,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-17,[],IL,103rd +Do Pass Higher Education; 011-000-000,2023-05-16,['committee-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 012-000-000,2023-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. La Shawn K. Ford,2023-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Will Guzzardi,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 5 Motion Filed Concur Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Andrew S. Chesney,2023-04-26,[],IL,103rd +Referred to Assignments,2023-03-21,[],IL,103rd +Referred to Assignments,2023-05-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Karina Villa,2024-05-07,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Governor Approved,2023-05-31,['executive-signature'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +"Chief Sponsor Changed to Rep. Robert ""Bob"" Rita",2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-03-22,[],IL,103rd +Referred to Rules Committee,2023-05-12,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-11-08,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-23,['reading-2'],IL,103rd +Senate Concurs,2023-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3",2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-03-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2023-05-10,[],IL,103rd +Governor Approved,2023-12-08,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-09,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2024-04-30,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-02-28,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2024-05-15,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Second Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-04-29,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Nabeela Syed,2024-04-30,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2024-05-21,[],IL,103rd +Third Reading - Short Debate - Passed 102-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-05-09,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Chapin Rose,2023-05-24,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-21,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Assigned to Executive,2024-05-20,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-18,[],IL,103rd +Do Pass / Short Debate Appropriations-Health & Human Services Committee; 023-000-000,2023-05-04,['committee-passage'],IL,103rd +Assigned to Licensed Activities,2023-04-12,['referral-committee'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-03,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Tom Bennett,2023-05-10,['filing'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-10,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Third Reading - Short Debate - Passed 067-004-040,2024-05-01,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Consumer Protection Committee,2024-05-13,[],IL,103rd +Arrived in House,2024-05-03,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2024-04-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-08,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 080-027-000,2024-05-28,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-10,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Abdelnasser Rashid,2023-05-18,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-23,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Racial Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-24,[],IL,103rd +House Committee Amendment No. 1 Home Rule Note Filed as Amended,2023-05-15,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0558,2023-08-11,['became-law'],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-08,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tony M. McCombie,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Wayne A Rosenthal,2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-09,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tony M. McCombie,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-16,['amendment-passage'],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2024-05-28,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Sent to the Governor,2024-08-09,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-10,[],IL,103rd +Note / Motion Filed - Note Act Does Not Apply Rep. Justin Slaughter,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Norine K. Hammond,2024-05-23,[],IL,103rd +Chief House Sponsor Rep. Hoan Huynh,2024-05-03,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 24, 2024",2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Mike Porfirio,2024-05-23,['amendment-introduction'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 2, 3",2024-05-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2023-05-19,[],IL,103rd +Chief Senate Sponsor Sen. Mike Porfirio,2024-04-19,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Dave Vella,2024-05-20,[],IL,103rd +Re-referred to Executive,2024-05-23,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 075-039-000,2023-05-18,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Abdelnasser Rashid,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicole La Ha,2024-05-22,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Second Reading - Short Debate,2024-05-08,['reading-2'],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-04-25,[],IL,103rd +Arrive in Senate,2024-04-24,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2023-05-16,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-19,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0934,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 2 House Concurs 080-027-000,2024-05-28,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norine K. Hammond,2024-05-21,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-19,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 21, 2024",2024-05-21,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-09,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Consumer Protection Committee,2024-05-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-04-16,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-23,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +House Floor Amendment No. 1 State Debt Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Non-Concur Rep. Curtis J. Tarver, II",2024-05-16,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2024-03-04,[],IL,103rd +Senate Floor Amendment No. 5 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-23,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Health and Human Services,2023-05-09,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 House Concurs 108-000-000,2023-05-19,[],IL,103rd +Second Reading,2023-04-20,['reading-2'],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-03-22,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-03-24,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-04-27,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 1 House Concurs 103-002-000,2023-05-26,[],IL,103rd +Postponed - Executive,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Doris Turner,2023-05-19,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-03-28,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-05-04,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Will Guzzardi,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0439,2023-08-04,['became-law'],IL,103rd +Do Pass as Amended Labor; 016-000-000,2023-04-27,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0162,2023-06-30,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-03-22,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Health and Human Services,2023-04-25,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Arrived in House,2023-05-18,['introduction'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-04-25,[],IL,103rd +Assigned to Executive,2023-05-16,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Public Health Committee,2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-04-10,[],IL,103rd +Public Act . . . . . . . . . 103-0018,2023-06-09,['became-law'],IL,103rd +Senate Floor Amendment No. 6 Motion Filed Concur Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +Assigned to Executive Committee,2023-05-12,['referral-committee'],IL,103rd +"Effective Date May 31, 2023",2023-05-31,[],IL,103rd +Passed Both Houses,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2024-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2023-05-09,[],IL,103rd +Chief Sponsor Changed to Rep. Kelly M. Burke,2024-05-27,[],IL,103rd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. Robert ""Bob"" Rita",2023-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0372,2023-07-28,['became-law'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +House Committee Amendment No. 1 Adopted in Health Care Licenses Committee; by Voice Vote,2023-05-10,['amendment-passage'],IL,103rd +Third Reading - Passed; 036-020-000,2023-05-25,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 033-018-000,2023-05-24,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Tom Bennett,2024-04-30,[],IL,103rd +"Effective Date December 8, 2023",2023-12-08,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-03-30,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-03-22,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-11-08,[],IL,103rd +Second Reading,2024-05-23,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-09,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Terri Bryant,2023-05-24,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-08,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-09,['reading-3'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2024-08-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-04-30,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Do Pass / Short Debate Insurance Committee; 010-005-000,2024-04-30,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2024-05-22,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-19,[],IL,103rd +Sent to the Governor,2024-06-26,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Steven Reick,2024-05-01,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Transportation,2024-05-14,[],IL,103rd +House Floor Amendment No. 3 3/5 Vote Required,2023-11-09,[],IL,103rd +"Effective Date July 1, 2025",2024-08-09,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +"Effective Date January 1, 2024; Some Provisions",2023-06-16,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-14,[],IL,103rd +Motion Prevailed 073-039-000,2023-05-10,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2023-05-11,[],IL,103rd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2024-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0500,2023-08-04,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2024-05-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-05-21,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-21,[],IL,103rd +"Placed Calendar Total Veto October 25, 2023",2023-10-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 115-000-000,2024-05-24,[],IL,103rd +Governor Approved,2023-08-02,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-03-30,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Motion Prevailed 069-040-000,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 3/5 Vote Required,2023-11-09,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 012-000-000,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 011-000-000,2023-05-25,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-04-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Glowiak Hilton,2023-05-04,['amendment-passage'],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-16,['reading-2'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Tabled,2023-05-16,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2023-04-25,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-04-19,[],IL,103rd +Governor Approved,2023-07-31,['executive-signature'],IL,103rd +Referred to Assignments,2024-04-16,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-04-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3, 4, 5",2024-05-26,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Chief Sponsor Changed to Rep. Kam Buckner,2023-05-17,[],IL,103rd +House Floor Amendment No. 2 Housing Affordability Impact Note Filed as Amended,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Lance Yednock,2023-11-08,[],IL,103rd +"Effective Date June 6, 2023",2023-06-06,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-05-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-11,[],IL,103rd +House Committee Amendment No. 1 Pension Note Requested as Amended by Rep. Bradley Fritts,2024-05-20,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2, 3 - May 16, 2023",2023-05-15,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 112-001-000,2023-05-18,[],IL,103rd +Arrived in House,2023-05-10,['introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-05-17,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to State Government,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-04-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2024-05-01,[],IL,103rd +Home Rule Note Requested by Rep. Barbara Hernandez,2023-05-03,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 080-027-002,2024-03-07,[],IL,103rd +Public Act . . . . . . . . . 103-0635,2024-07-01,['became-law'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2024-05-15,[],IL,103rd +"House Floor Amendment No. 2 Judicial Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0648,2024-07-02,['became-law'],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-29,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Adoption & Child Welfare Committee,2024-05-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2024-05-26,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-16,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-10,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-07,[],IL,103rd +Second Reading,2024-05-15,['reading-2'],IL,103rd +Correctional Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-26,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-18,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2024-05-24,[],IL,103rd +House Floor Amendment No. 5 Referred to Rules Committee,2024-05-24,[],IL,103rd +3/5 Vote Required,2023-11-09,[],IL,103rd +Racial Impact Note Filed,2024-04-18,[],IL,103rd +Public Act . . . . . . . . . 103-0724,2024-08-02,['became-law'],IL,103rd +Referred to Assignments,2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve McClure,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Arrive in Senate,2023-03-24,['introduction'],IL,103rd +Third Reading - Passed; 052-000-000,2023-05-05,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-03-16,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Passed Both Houses,2024-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mary Edly-Allen,2023-04-20,['amendment-introduction'],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0421,2023-08-04,['became-law'],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-05-10,[],IL,103rd +Third Reading - Passed; 055-002-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Rules Referred to Executive Committee,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Willie Preston,2024-05-06,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-24,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-11-09,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 105-000-000,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Veterans Affairs; 009-000-000,2024-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 22, 2024",2024-05-22,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-05-09,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-02-08,['reading-2'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-05-15,[],IL,103rd +Chief House Sponsor Rep. Sonya M. Harper,2024-04-30,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Hoan Huynh,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-09,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-21,[],IL,103rd +Assigned to Executive,2024-05-07,['referral-committee'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2024-06-05,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 015-008-000,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-25,[],IL,103rd +House Floor Amendment No. 3 State Debt Impact Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Referred to Transportation: Vehicles & Safety,2023-05-18,[],IL,103rd +Second Reading - Short Debate,2024-05-28,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-02-28,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 009-004-000,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-09,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2023-11-07,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Neil Anderson,2023-05-11,[],IL,103rd +Placed on Calendar Order of First Reading,2024-05-24,['reading-1'],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-10,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-05-12,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Labor,2023-04-26,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-17,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-25,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +House Floor Amendment No. 1 Pension Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Passed Both Houses,2023-11-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-02,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-04-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-28,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-05-12,[],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2024-05-24,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0414,2023-08-04,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0575,2023-12-08,['became-law'],IL,103rd +House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-05-11,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 015-008-000,2023-05-18,[],IL,103rd +Do Pass as Amended Health and Human Services; 009-005-000,2023-04-26,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-11-07,[],IL,103rd +Do Pass as Amended Labor; 012-004-000,2023-04-27,['committee-passage'],IL,103rd +Arrived in House,2023-05-18,['introduction'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-05-25,[],IL,103rd +Sent to the Governor,2023-12-01,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Transportation: Vehicles & Safety; 007-000-000,2023-05-18,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert Peters,2023-05-16,['filing'],IL,103rd +House Floor Amendment No. 2 Pension Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Katie Stuart,2023-05-25,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2023-02-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Insurance,2023-04-25,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-03-17,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-20,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-24,['reading-1'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Labor & Commerce Committee,2023-05-15,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-09,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Police & Fire Committee,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2023-05-04,[],IL,103rd +Third Reading - Passed; 042-011-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 1, 3, 2",2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +Note / Motion Filed - Note Act Does Not Apply Rep. Jennifer Gong-Gershowitz,2023-05-10,[],IL,103rd +House Floor Amendment No. 5 Rules Refers to Health Care Availability & Accessibility Committee,2024-04-17,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2024-05-26,[],IL,103rd +Added as Chief Co-Sponsor Sen. David Koehler,2024-05-24,[],IL,103rd +Fiscal Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2024-05-24,[],IL,103rd +Do Pass / Short Debate Immigration & Human Rights Committee; 008-004-000,2024-05-01,['committee-passage'],IL,103rd +Arrived in House,2023-05-18,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 086-018-002,2023-11-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-18,[],IL,103rd +Fiscal Note Filed,2024-04-18,[],IL,103rd +Arrived in House,2024-05-15,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-07,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +"Effective Date January 1, 2024",2023-08-02,[],IL,103rd +Recalled to Second Reading,2024-05-24,['reading-2'],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0891,2024-08-09,['became-law'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 100-015-000,2024-05-24,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Assigned to Executive,2024-05-16,['referral-committee'],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Natalie Toro,2024-02-09,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mark L. Walker,2024-04-30,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Laura Fine,2024-05-23,['filing'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-06,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-23,['amendment-failure'],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-22,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - November 9, 2023",2023-11-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-24,[],IL,103rd +Passed Both Houses,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2024-08-08,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 108-000-000,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-03-22,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-25,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-03-29,[],IL,103rd +Third Reading - Passed; 043-008-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-03-24,[],IL,103rd +Senate Committee Amendment No. 5 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-04-10,[],IL,103rd +Postponed - Executive,2023-05-04,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Cristina H. Pacione-Zayas,2023-04-28,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-11,[],IL,103rd +Passed Both Houses,2023-05-26,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2023-05-18,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-17,[],IL,103rd +Do Pass as Amended Health and Human Services; 008-000-000,2023-05-09,['committee-passage'],IL,103rd +"Placed on Calendar Order of 3rd Reading April 25, 2023",2023-04-20,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 025-000-000,2023-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-11,[],IL,103rd +Removed Co-Sponsor Rep. Matt Hanson,2023-05-26,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Public Health Committee,2023-05-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0907,2024-08-09,['became-law'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-08,['reading-3'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Education,2023-05-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 2, 2024",2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2024-05-09,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-18,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 3 Rules Refers to Consumer Protection Committee,2024-05-13,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-04-16,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-16,['reading-3'],IL,103rd +First Reading,2024-05-03,['reading-1'],IL,103rd +Senate Floor Amendment No. 3 House Concurs 080-027-000,2024-05-28,[],IL,103rd +Third Reading - Short Debate - Passed 109-000-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +"House Committee Amendment No. 3 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-05-18,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 5,2024-05-21,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-04-27,[],IL,103rd +House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Adam M. Niemerg,2023-05-19,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Effective Date January 1, 2025",2024-08-14,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2024-05-28,[],IL,103rd +Public Act . . . . . . . . . 103-0274,2023-07-28,['became-law'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-23,[],IL,103rd +Assigned to Executive Committee,2024-05-22,['referral-committee'],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Motion Prevailed 067-039-001,2023-05-18,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 3 - May 23, 2024",2024-05-22,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-02,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-05-23,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-24,['reading-1'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Dave Syverson,2024-05-22,['filing'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2024-05-23,[],IL,103rd +Added Chief Co-Sponsor Rep. Brandun Schweizer,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2024-05-22,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-23,[],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-05-01,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-25,['amendment-failure'],IL,103rd +Public Act . . . . . . . . . 103-0004,2023-05-31,['became-law'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-03-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2023-05-03,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 008-002-000,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2024-05-28,[],IL,103rd +Do Pass as Amended / Short Debate Health Care Licenses Committee; 012-000-000,2023-05-10,['committee-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-23,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-03-22,[],IL,103rd +Public Act . . . . . . . . . 103-0361,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2024-05-01,[],IL,103rd +Passed Both Houses,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Kelly M. Burke,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-05-29,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Rules Referred to Adoption & Child Welfare Committee,2024-05-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mark L. Walker,2024-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-03,[],IL,103rd +Public Act . . . . . . . . . 103-0005,2023-06-06,['became-law'],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-04-19,[],IL,103rd +House Committee Amendment No. 1 Racial Impact Note Requested as Amended by Rep. Bradley Fritts,2024-05-20,[],IL,103rd +Public Act . . . . . . . . . 103-0284,2023-07-28,['became-law'],IL,103rd +Remove Chief Co-Sponsor Rep. Eva-Dina Delgado,2024-05-27,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-25,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Harry Benton,2023-05-17,[],IL,103rd +"Effective Date July 31, 2023",2023-07-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. John F. Curran,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Executive Committee; 011-000-000,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt State Government; 008-000-000,2023-04-27,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Executive; 009-004-000,2023-05-10,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-10,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Governor Approved,2023-06-07,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-05-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Arrived in House,2023-05-18,['introduction'],IL,103rd +"Senate Floor Amendment No. 1 Motion to Concur Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-18,[],IL,103rd +House Floor Amendment No. 3 Tabled,2023-05-16,['amendment-failure'],IL,103rd +House Floor Amendment No. 3 Housing Affordability Impact Note Filed as Amended,2023-05-12,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-02,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Child Care Accessibility & Early Childhood Education Committee,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-26,[],IL,103rd +House Concurs,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 046-000-000,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2023-05-15,[],IL,103rd +Arrived in House,2023-03-31,['introduction'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 013-000-000,2024-05-23,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-05-07,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Transportation; 012-000-000,2024-05-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dave Vella,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. David Koehler,2023-05-17,['filing'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +State Mandates Fiscal Note Request is Inapplicable,2023-05-10,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Public Act . . . . . . . . . 103-0102,2023-06-16,['became-law'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Energy & Environment Committee,2023-05-19,[],IL,103rd +Balanced Budget Note Request is Inapplicable,2023-05-17,[],IL,103rd +Total Veto Stands,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-14,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 057-000-000,2024-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0837,2024-08-09,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Tracy Katz Muhl,2024-05-21,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-22,[],IL,103rd +House Floor Amendment No. 3 Senate Concurs 051-000-000,2023-11-09,[],IL,103rd +Public Act . . . . . . . . . 103-0377,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2024-05-01,[],IL,103rd +"House Floor Amendment No. 1 Land Conveyance Appraisal Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 080-027-002,2024-03-07,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2024-04-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-16,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. Barbara Hernandez,2023-05-03,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Labor,2024-05-23,[],IL,103rd +Judicial Note Requested by Rep. Barbara Hernandez,2023-05-03,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2024-05-01,[],IL,103rd +Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Passed Both Houses,2024-03-07,[],IL,103rd +"House Floor Amendment No. 2 Land Conveyance Appraisal Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-17,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Labor; 015-000-000,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2024-04-15,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 5",2023-05-18,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Public Health Committee; 006-002-000,2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Child Care Accessibility & Early Childhood Education Committee,2023-05-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-04-19,[],IL,103rd +Public Act . . . . . . . . . 103-0279,2023-07-28,['became-law'],IL,103rd +"Effective Date July 1, 2023",2023-06-07,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Added Chief Co-Sponsor Rep. Mary E. Flowers,2023-05-25,[],IL,103rd +House Committee Amendment No. 1 State Debt Impact Note Requested as Amended by Rep. Bradley Fritts,2024-05-20,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Chief Sponsor Changed to Rep. Kelly M. Burke,2024-05-28,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Public Act . . . . . . . . . 103-0408,2023-07-31,['became-law'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-11-08,[],IL,103rd +Recalled to Second Reading,2023-05-10,['reading-2'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted State Government Administration Committee; 006-003-000,2023-05-12,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-04-25,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-05-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Recommends Be Adopted Transportation: Vehicles & Safety; 007-000-000,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-11,[],IL,103rd +Third Reading - Passed; 044-008-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-05-19,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-18,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-05-29,[],IL,103rd +Added Co-Sponsor Rep. Nicole La Ha,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Adoption & Child Welfare Committee; 011-000-000,2024-05-28,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Public Act . . . . . . . . . 103-0805,2024-08-14,['became-law'],IL,103rd +Correctional Note Request is Inapplicable,2023-05-17,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Senate Concurs,2023-11-09,[],IL,103rd +Public Act . . . . . . . . . 103-0391,2023-07-28,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-10,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 107-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +Do Pass as Amended Judiciary; 006-003-000,2024-05-08,['committee-passage'],IL,103rd +Alternate Co-Sponsor Removed Rep. Dave Vella,2024-05-21,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Public Act . . . . . . . . . 103-0949,2024-08-09,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-21,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Energy & Environment Committee; 016-010-000,2023-05-19,['committee-passage-favorable'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Chief House Sponsor Rep. Will Guzzardi,2023-03-31,[],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +Passed Both Houses,2023-11-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-26,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Judiciary - Criminal Committee,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-02,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2024-04-19,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 057-000-000,2024-05-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Committee Amendment No. 2 Senate Concurs 057-000-000,2024-05-26,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Porfirio,2024-05-24,['amendment-passage'],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2024-05-14,['reading-2'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. David Koehler,2024-05-23,['filing'],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2024-05-09,[],IL,103rd +Recalled to Second Reading,2024-05-16,['reading-2'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 005-000-000,2024-04-15,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Laura Fine,2024-05-16,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-05-07,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-24,[],IL,103rd +House Concurs,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Revenue & Finance Committee,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2024-05-23,['amendment-failure'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-02,[],IL,103rd +To Subcommittee on End of Life Issues,2024-05-08,[],IL,103rd +Arrive in Senate,2024-05-15,['introduction'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-22,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-15,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-11-13,[],IL,103rd +Public Act . . . . . . . . . 103-0411,2023-08-02,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-06-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2023-05-18,[],IL,103rd +Motion Prevailed 069-039-000,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-30,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2, 3 - May 18, 2023",2023-05-17,[],IL,103rd +House Floor Amendment No. 3 Senate Concurs 058-000-000,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2023-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Third Reading - Short Debate - Passed 079-030-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-06-03,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2024-05-24,[],IL,103rd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-16,[],IL,103rd +Passed Both Houses,2023-11-09,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2024-05-08,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 3,2023-05-18,[],IL,103rd +Home Rule Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-08-16,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Fred Crespo,2023-11-07,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Seth Lewis,2023-05-10,[],IL,103rd +Do Pass as Amended Insurance; 008-000-000,2023-04-26,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Executive Committee,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2023-05-25,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Governor Approved,2023-12-08,['executive-signature'],IL,103rd +"Senate Floor Amendment No. 2 Motion to Concur Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-05-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-05-11,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +House Floor Amendment No. 3 Pension Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-04-25,[],IL,103rd +Arrived in House,2023-05-10,['introduction'],IL,103rd +First Reading,2024-05-24,['reading-1'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2024-05-29,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-03,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3",2023-05-18,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +House Floor Amendment No. 3 State Mandates Fiscal Note Requested as Amended by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Removed Co-Sponsor Rep. Jonathan Carroll,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Ann M. Williams,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2023-05-04,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Chief Senate Sponsor Sen. Laura M. Murphy,2023-03-24,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 016-008-000,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-09,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Police & Fire Committee,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Governor Approved,2023-07-31,['executive-signature'],IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. Terra Costa Howard,2024-04-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2024-05-26,[],IL,103rd +Arrived in House,2023-05-25,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Kelly M. Burke,2024-05-28,[],IL,103rd +Assigned to Judiciary - Civil Committee,2023-04-11,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Joe C. Sosnowski,2023-05-03,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Nabeela Syed,2023-03-22,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2024-05-01,[],IL,103rd +Remove Chief Co-Sponsor Rep. Robyn Gabel,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +House Committee Amendment No. 1 3/5 Vote Required,2023-11-08,[],IL,103rd +Chief House Sponsor Rep. Stephanie A. Kifowit,2023-05-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 16, 2023",2023-05-15,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Don Harmon,2024-05-02,['filing'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Fiscal Note Filed,2023-05-03,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Education; 012-000-000,2023-05-16,[],IL,103rd +Passed Both Houses,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Human Services Committee,2024-05-24,[],IL,103rd +Home Rule Note Request is Inapplicable,2023-05-18,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-23,[],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2023-05-18,[],IL,103rd +House Floor Amendment No. 4 Rules Refers to Consumer Protection Committee,2024-05-13,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2024-04-16,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-09,[],IL,103rd +Referred to Rules Committee,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 5 House Concurs 080-027-000,2024-05-28,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2024-05-22,[],IL,103rd +Third Reading - Short Debate - Passed 109-006-000,2023-05-16,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 3 Referred to Rules Committee,2023-05-18,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-04-28,[],IL,103rd +Chief Senate Sponsor Sen. Christopher Belt,2024-04-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-05-19,[],IL,103rd +"Effective Date January 1, 2025",2024-08-14,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-22,[],IL,103rd +Added Chief Co-Sponsor Rep. Jed Davis,2024-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 5 - May 21, 2024",2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-22,[],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Second Reading - Short Debate,2023-05-08,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-09,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Steve McClure,2024-05-23,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2024-05-10,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-04-28,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Health Care Licenses Committee,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 109-000-000,2023-05-26,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 072-036-000,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-22,['reading-3'],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Judiciary,2023-04-25,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-05,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 10, 2023",2023-05-09,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 074-039-000,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 21, 2023",2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-24,[],IL,103rd +Third Reading - Passed; 051-001-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-03-29,[],IL,103rd +Public Act . . . . . . . . . 103-0164,2023-06-30,['became-law'],IL,103rd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 063-032-002,2023-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-04-20,[],IL,103rd +Senate Floor Amendment No. 6 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-04-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2023-05-25,[],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-09,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Lightford,2024-05-26,['amendment-passage'],IL,103rd +Waive Posting Notice,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-09,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. John F. Curran,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Lightford,2024-05-26,['amendment-passage'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0112,2023-06-30,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-08,[],IL,103rd +Sent to the Governor,2024-06-11,['executive-receipt'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2024-05-24,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Do Pass / Short Debate Executive Committee; 012-000-000,2023-05-18,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-22,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-06-21,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 038-015-000,2023-11-08,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Win Stoller,2024-05-01,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Kelly M. Burke,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-09,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-05-03,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 3",2023-05-25,[],IL,103rd +Chief Sponsor Changed to Rep. Robyn Gabel,2024-05-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-04-12,[],IL,103rd +Public Act . . . . . . . . . 103-0552,2023-08-11,['became-law'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-16,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0497,2023-08-04,['became-law'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-08,['reading-3'],IL,103rd +House Concurs,2024-05-28,[],IL,103rd +House Committee Amendment No. 2 Adopted in Executive Committee; by Voice Vote,2023-05-19,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-05-18,[],IL,103rd +House Floor Amendment No. 5 Motion to Concur Filed with Secretary Sen. Sara Feigenholtz,2024-05-22,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Karina Villa,2023-05-16,['filing'],IL,103rd +Balanced Budget Note Requested by Rep. Terra Costa Howard,2023-05-03,[],IL,103rd +Senate Committee Amendment No. 3 Filed with Secretary by Sen. Adriane Johnson,2024-05-23,['amendment-introduction'],IL,103rd +Assigned to Executive,2024-05-01,['referral-committee'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-15,[],IL,103rd +"Added Chief Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to State Government,2024-05-23,[],IL,103rd +Removed Co-Sponsor Rep. Jed Davis,2024-05-24,[],IL,103rd +Waive Posting Notice,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 055-002-000,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2024-05-14,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Alternate Chief Sponsor Changed to Rep. Curtis J. Tarver, II",2024-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2024-04-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-02,[],IL,103rd +Racial Impact Note Request is Inapplicable,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to State Government Administration Committee,2024-05-13,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 009-000-000,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Lewis,2024-05-16,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-05-19,[],IL,103rd +First Reading,2024-04-24,['reading-1'],IL,103rd +Public Act . . . . . . . . . 103-0788,2024-08-14,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2024-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Kam Buckner,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-17,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Anna Moeller,2023-05-25,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-03-22,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 House Concurs 072-036-000,2023-05-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2024-04-11,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-05-11,[],IL,103rd +Governor Approved,2023-07-25,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-04-20,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 063-032-002,2023-05-26,[],IL,103rd +Senate Committee Amendment No. 5 Motion to Concur Referred to Judiciary - Civil Committee,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Judiciary,2023-04-25,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-04,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2023-03-22,[],IL,103rd +House Concurs,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-19,['amendment-failure'],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +Sponsor Removed Sen. Mike Simmons,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Referred to Health Care Licenses Committee,2023-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0908,2024-08-09,['became-law'],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2024-05-21,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-11-09,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-14,[],IL,103rd +Public Act . . . . . . . . . 103-0811,2024-08-09,['became-law'],IL,103rd +First Reading,2023-04-11,['reading-1'],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Rules Referred to Judiciary - Criminal Committee,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-06,[],IL,103rd +Third Reading - Short Debate - Passed 073-039-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-1033,2024-08-09,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0915,2024-08-09,['became-law'],IL,103rd +"Motion Filed to Suspend Rule 21 Elementary & Secondary Education: School Curriculum & Policies Committee; Rep. Elizabeth ""Lisa"" Hernandez",2024-05-21,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Public Act . . . . . . . . . 103-0549,2023-08-11,['became-law'],IL,103rd +Fiscal Note Request is Inapplicable,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-05-19,[],IL,103rd +Passed Both Houses,2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-26,[],IL,103rd +Passed Both Houses,2023-11-09,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2024-04-19,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0463,2023-08-04,['became-law'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Public Health Committee; 006-002-000,2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2023-05-03,[],IL,103rd +Public Act . . . . . . . . . 103-0007,2023-06-07,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-05-10,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Bradley Fritts,2024-05-20,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Dave Severin,2023-11-08,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2023-04-19,[],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-18,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Koehler,2023-05-10,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-04-26,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-11-08,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Michael E. Hastings,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-11,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Laura Faver Dias,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-05-19,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-28,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-11-08,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Joyce,2023-05-03,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2024-03-07,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-17,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-01,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Barbara Hernandez,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-08,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 055-003-000,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-04-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2024-06-12,[],IL,103rd +"House Floor Amendment No. 1 Pension Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Adoption & Child Welfare Committee; 011-000-000,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-29,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-11,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. Terra Costa Howard,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Steve Stadelman,2024-05-26,['amendment-introduction'],IL,103rd +"Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-05-18,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2023-11-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-16,[],IL,103rd +Referred to Assignments,2024-05-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Andrew S. Chesney,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Racial Impact Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-04-27,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-04-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2023-04-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-12,[],IL,103rd +Third Reading - Short Debate - Passed 105-001-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Effective Date December 8, 2023",2023-12-08,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Robert Peters,2023-05-16,['filing'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Mary Beth Canty,2023-05-18,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-05-19,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Theresa Mah,2024-05-29,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-02,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Health and Human Services,2024-05-23,[],IL,103rd +Assigned to Human Services Committee,2024-05-13,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 089-017-000,2024-05-28,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2024-05-02,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Natalie Toro,2024-05-07,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Mary Gill,2024-05-17,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-12-10,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Revenue & Finance Committee,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-22,[],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Nabeela Syed,2024-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mary Edly-Allen,2024-05-23,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Placed on Calendar Order of First Reading,2024-05-15,['reading-1'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Dave Vella,2024-05-22,['amendment-introduction'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-14,['reading-3'],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2024-04-15,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-06-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-05-20,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-05-28,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-09-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Mike Simmons,2024-05-09,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2024-08-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2023-05-24,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Chief Sponsor Changed to Rep. Abdelnasser Rashid,2023-05-18,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Balanced Budget Note Request is Inapplicable,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-02,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-05-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura Fine,2023-05-18,['filing'],IL,103rd +House Floor Amendment No. 5 Recommends Be Adopted Rules Committee; 005-000-000,2024-05-24,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-05-22,[],IL,103rd +Third Reading - Passed; 037-019-001,2023-05-18,"['passage', 'reading-3']",IL,103rd +Housing Affordability Impact Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Sent to the Governor,2023-11-14,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Hoan Huynh,2023-05-09,[],IL,103rd +First Reading,2023-03-24,['reading-1'],IL,103rd +Removed Co-Sponsor Rep. Norma Hernandez,2023-03-21,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-05-15,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-09,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 077-036-000,2023-05-17,[],IL,103rd +"Effective Date January 1, 2024",2023-07-31,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Police & Fire Committee; 013-000-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Neil Anderson,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2023-05-04,[],IL,103rd +Third Reading - Short Debate - Passed 090-017-000,2024-05-14,"['passage', 'reading-3']",IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Housing,2023-05-18,[],IL,103rd +Referred to Assignments,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-03-21,[],IL,103rd +Public Act . . . . . . . . . 103-0405,2023-07-31,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-10,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Police & Fire Committee; 014-000-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-09,[],IL,103rd +"Effective Date August 11, 2023",2023-08-15,[],IL,103rd +Approved for Consideration Rules Committee; 004-000-000,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mark L. Walker,2024-05-24,[],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-07,['amendment-passage'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-16,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0852,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 4 House Concurs 089-017-000,2024-05-28,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Mary Gill,2024-05-17,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-22,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-04-15,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. David Koehler,2024-05-23,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2024-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2024-05-21,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 019-000-000,2024-05-28,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Abdelnasser Rashid,2024-05-02,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Health and Human Services; 010-000-000,2024-05-24,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Terri Bryant,2023-05-19,[],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. Terra Costa Howard,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-02-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2023-04-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-05-08,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-29,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-02,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Kelly M. Burke,2024-05-28,[],IL,103rd +"Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 009-000-000",2023-05-18,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-11-07,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Mary Beth Canty,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0573,2023-12-08,['became-law'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0161,2023-06-30,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 011-000-000,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Racial Impact Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Waive Posting Notice,2023-05-18,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-18,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-02,[],IL,103rd +Judicial Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-24,[],IL,103rd +Passed Both Houses,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2024-09-16,[],IL,103rd +Governor Approved,2023-11-17,['executive-signature'],IL,103rd +Governor Approved,2024-07-10,['executive-signature'],IL,103rd +Correctional Note Request is Inapplicable,2023-05-10,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-08-26,[],IL,103rd +Senate Committee Amendment No. 3 Motion Filed Concur Rep. Abdelnasser Rashid,2023-05-18,[],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 4 House Concurs 063-032-002,2023-05-26,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-03-23,[],IL,103rd +Senate Floor Amendment No. 6 Motion to Concur Referred to Judiciary - Civil Committee,2023-05-24,[],IL,103rd +Sponsor Removed Sen. Doris Turner,2023-05-15,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 5 Motion Filed Concur Rep. Kam Buckner,2023-05-18,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-11,[],IL,103rd +"Effective Date July 25, 2023",2023-07-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to State Government,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Referred to Health Care Licenses Committee,2023-05-24,[],IL,103rd +Passed Both Houses,2023-05-26,[],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2023-03-27,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-05-25,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Stephanie A. Kifowit,2023-03-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Third Reading - Passed; 058-000-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Second Reading,2023-05-10,['reading-2'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 062-046-000,2024-05-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-05-09,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. John F. Curran,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-05-12,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-05-25,[],IL,103rd +Third Reading - Passed; 040-019-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Senate Concurs,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. John Egofske,2023-05-03,[],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Remove Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-05-25,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2024-05-17,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 5 Adopted; Lightford,2024-05-26,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-09,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2024-05-08,[],IL,103rd +Third Reading - Short Debate - Passed 104-006-001,2024-05-23,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-06,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-18,['reading-3'],IL,103rd +Referred to Assignments,2024-04-24,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-09,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-05-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 008-000-000,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-05-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-23,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 106-000-000,2024-05-25,[],IL,103rd +"Pursuant to Senate Rule 3-8(b-1), the following amendment will remain in the Committee on Assignments:",2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-05-01,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-16,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 17, 2023",2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-12,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 3 Referred to Assignments,2024-05-23,[],IL,103rd +House Floor Amendment No. 5 Motion to Concur Referred to Assignments,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. John M. Cabello,2023-05-19,[],IL,103rd +Correctional Note Requested by Rep. Terra Costa Howard,2023-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2023-05-03,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 24, 2024",2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2023-05-18,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0828,2024-08-09,['became-law'],IL,103rd +Assigned to Financial Institutions and Licensing Committee,2024-05-13,['referral-committee'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Passed Both Houses,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-04-16,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 008-004-000,2023-05-19,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-05-14,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary Beth Canty,2024-05-15,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Don Harmon,2024-05-02,['filing'],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-05-29,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Public Utilities Committee,2023-11-08,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +"Effective Date August 11, 2023",2023-08-15,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Robyn Gabel,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-05-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 109-000-000,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-04-26,[],IL,103rd +Public Act . . . . . . . . . 103-0290,2023-07-28,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Laura Faver Dias,2023-05-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Jawaharial Williams,2023-05-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-05-10,[],IL,103rd +Do Pass Energy and Public Utilities; 015-000-000,2023-04-20,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Second Reading,2023-04-27,['reading-2'],IL,103rd +House Floor Amendment No. 2 Judicial Note Filed as Amended,2023-05-15,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 088-025-000,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-05-10,[],IL,103rd +Referred to Rules Committee,2023-04-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-08,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-06-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-04-19,[],IL,103rd +Sent to the Governor,2023-12-01,['executive-receipt'],IL,103rd +Do Pass Executive; 011-002-000,2024-05-22,['committee-passage'],IL,103rd +Land Conveyance Appraisal Note Request is Inapplicable,2023-05-17,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0817,2024-08-09,['became-law'],IL,103rd +"Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-05-22,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Judiciary - Criminal Committee; 010-005-000,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to Executive,2023-05-17,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 074-039-000,2024-05-21,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2024-05-22,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-25,['amendment-passage'],IL,103rd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2023-11-09,[],IL,103rd +Added as Co-Sponsor Sen. Jil Tracy,2024-03-14,[],IL,103rd +Public Act . . . . . . . . . 103-0927,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-17,[],IL,103rd +Second Reading - Short Debate,2024-05-07,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-01,[],IL,103rd +Sent to the Governor,2024-03-22,['executive-receipt'],IL,103rd +Pension Note Requested by Rep. Barbara Hernandez,2023-05-03,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-09-06,[],IL,103rd +House Floor Amendment No. 5 Recommends Be Adopted Health Care Availability & Accessibility Committee; 007-004-000,2024-04-17,['committee-passage-favorable'],IL,103rd +"House Floor Amendment No. 2 Pension Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-04-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-01,[],IL,103rd +Racial Impact Note Requested by Rep. Barbara Hernandez,2023-05-03,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +"House Floor Amendment No. 1 Racial Impact Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2024-04-18,[],IL,103rd +Governor Approved,2024-03-22,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-05-16,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Rules Referred to Public Utilities Committee,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 5 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 013-000-000,2023-05-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Celina Villanueva,2023-05-10,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 3",2023-05-19,[],IL,103rd +Third Reading - Passed; 054-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 5 House Concurs 109-000-000,2023-05-19,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 2, 2023",2023-04-27,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0452,2023-08-04,['became-law'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-11,[],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0451,2023-08-04,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Steven Reick,2023-05-18,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 068-038-000,2024-05-20,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 077-009-001,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0529,2023-08-15,['became-law'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 088-025-000,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 25, 2023",2023-04-20,['reading-2'],IL,103rd +"Chief Sponsor Changed to Rep. Robert ""Bob"" Rita",2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Rule 19(b) / Motion Referred to Rules Committee,2023-06-26,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-04-26,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-11-08,[],IL,103rd +House Floor Amendment No. 3 Judicial Note Filed as Amended,2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-05-29,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-07,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 013-000-000,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-25,['reading-3'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 22, 2024",2024-05-22,['reading-2'],IL,103rd +Racial Impact Note Request is Inapplicable,2023-05-17,[],IL,103rd +Governor Approved,2023-12-08,['executive-signature'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Patrick Sheehan,2024-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary Beth Canty,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Judiciary - Criminal Committee; 010-005-000,2024-05-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Joyce Mason,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2024-05-22,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-05-19,[],IL,103rd +Third Reading - Short Debate - Passed 073-038-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Assigned to Health Care Availability & Accessibility Committee,2023-04-18,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-05-10,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2024-05-02,[],IL,103rd +"Effective Date November 17, 2023",2023-11-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-08-26,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Ann Gillespie,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-05-09,[],IL,103rd +Sent to the Governor,2024-06-06,['executive-receipt'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Laura Fine,2023-05-18,['filing'],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 068-038-000,2024-05-25,[],IL,103rd +Fiscal Note Request is Inapplicable,2023-05-10,[],IL,103rd +"Effective Date January 1, 2025",2024-07-10,[],IL,103rd +Senate Committee Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Sue Rezin,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-22,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Steve Stadelman,2024-05-26,['amendment-introduction'],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. Terra Costa Howard,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Housing; 012-003-000,2023-05-18,[],IL,103rd +Passed Both Houses,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-0524,2023-08-15,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-12,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Michelle Mussman,2023-03-21,['amendment-introduction'],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2024-05-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 059-000-000,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 019-000-000,2024-05-28,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-02,[],IL,103rd +Public Act . . . . . . . . . 103-0821,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-22,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Concurs,2024-05-28,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 3,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-1045,2024-08-09,['became-law'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Carol Ammons,2024-05-02,[],IL,103rd +"Effective Date January 1, 2025",2024-08-14,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2024-05-20,[],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Erica Harriss,2023-05-19,[],IL,103rd +Do Pass as Amended Insurance; 010-000-000,2024-05-08,['committee-passage'],IL,103rd +Motion Filed to Suspend Rule 21 Executive Committee; Rep. Kam Buckner,2024-05-22,[],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +First Reading,2024-05-15,['reading-1'],IL,103rd +Recalled to Second Reading,2024-05-23,['reading-2'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-07,['reading-3'],IL,103rd +House Committee Amendment No. 1 Filed with Clerk by Rep. Yolonda Morris,2024-05-14,['amendment-introduction'],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2023-04-25,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-02-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Kelly M. Burke,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 109-000-000,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-18,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Robert Peters,2023-05-16,['filing'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-05-03,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Camille Y. Lilly,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-11-07,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lilian Jiménez,2024-05-29,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +House Floor Amendment No. 3 Racial Impact Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Joyce,2023-05-11,['amendment-passage'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2024-05-14,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 058-000-000,2024-05-24,[],IL,103rd +House Floor Amendment No. 5 Motion to Concur Assignments Referred to Licensed Activities,2024-05-23,[],IL,103rd +Assigned to Executive,2024-04-30,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0872,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Tim Ozinga,2023-05-19,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Passed Both Houses,2023-05-09,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-16,[],IL,103rd +Third Reading - Passed; 059-000-000,2024-05-16,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2024-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Arrived in House,2024-05-15,['introduction'],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2024-04-16,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-15,[],IL,103rd +"Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 007-000-000",2024-05-22,[],IL,103rd +Sent to the Governor,2024-06-26,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-03,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Ram Villivalam,2023-05-17,['filing'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-05-19,['amendment-failure'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-13,[],IL,103rd +Sent to the Governor,2023-12-01,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lakesia Collins,2023-05-18,[],IL,103rd +Pension Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-16,[],IL,103rd +Home Rule Note Requested by Rep. Terra Costa Howard,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-05-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Jason Plummer,2024-05-23,[],IL,103rd +Removed Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-13,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-24,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2024-04-11,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Mary Beth Canty,2023-05-12,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-18,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 4",2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Celina Villanueva,2023-05-16,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-08,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-18,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-03-23,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 11, 2023",2023-05-10,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-05-16,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 010-000-000,2023-05-25,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Concurs,2023-05-26,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Do Pass as Amended Judiciary; 007-000-000,2023-04-26,['committee-passage'],IL,103rd +Waive Posting Notice,2023-05-17,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0283,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Win Stoller,2023-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0268,2023-07-25,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-11,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jackie Haas,2023-05-03,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mark L. Walker,2023-05-18,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-04-20,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0271,2023-07-28,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-05-09,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2024-05-26,[],IL,103rd +Passed Both Houses,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 062-046-000,2024-05-29,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2023-04-26,[],IL,103rd +Remove Chief Co-Sponsor Rep. Dan Swanson,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0596,2024-07-01,['became-law'],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-23,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2024-04-11,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 27, 2023",2023-04-26,['reading-2'],IL,103rd +Third Reading - Passed; 039-017-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-05-16,[],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 010-000-000,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; State Government,2023-05-03,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Mary Beth Canty,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Mental Health & Addiction Committee,2023-05-18,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Passed Both Houses,2023-05-26,[],IL,103rd +Third Reading - Passed; 053-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-03-23,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-17,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lakesia Collins,2023-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-16,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-03-23,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-24,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Committee Amendment No. 3 Tabled,2023-05-19,['amendment-failure'],IL,103rd +Arrived in House,2024-05-16,['introduction'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. Terra Costa Howard,2023-05-03,[],IL,103rd +Public Act . . . . . . . . . 103-0812,2024-08-09,['became-law'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-15,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Don Harmon,2024-05-15,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Seth Lewis,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-05-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 009-003-000,2023-05-17,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 16, 2023",2023-05-15,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted State Government Administration Committee; 005-003-000,2024-05-15,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-05-23,[],IL,103rd +House Floor Amendment No. 1 Motion Filed to Table Rep. Mary Gill,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Licensed Activities,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2024-04-16,[],IL,103rd +House Floor Amendment No. 5 Motion To Concur Recommended Do Adopt Licensed Activities; 006-000-000,2024-05-23,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 115-000-000,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0858,2024-08-09,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0813,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-24,['amendment-failure'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy L. Grant,2023-05-19,[],IL,103rd +Governor Approved,2023-12-08,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-20,[],IL,103rd +Third Reading - Short Debate - Passed 073-035-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-05-14,[],IL,103rd +Third Reading - Passed; 054-001-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Do Pass Executive; 013-000-000,2024-05-23,['committee-passage'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Prescription Drug Affordability & Accessibility Committee; 010-003-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Amy L. Grant,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2023-05-12,[],IL,103rd +"Effective Date July 1, 2024",2023-06-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2024-05-01,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-11-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jehan Gordon-Booth,2023-04-26,[],IL,103rd +Remove Chief Co-Sponsor Rep. Charles Meier,2023-05-25,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 16, 2023",2023-05-15,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-05-09,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-05-25,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-05-19,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Third Reading - Short Debate - Passed 069-035-000,2023-05-25,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2023-04-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2024-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-05-19,[],IL,103rd +State Mandates Fiscal Note Request is Inapplicable,2023-05-17,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt Executive; 013-000-000,2023-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2024-05-24,[],IL,103rd +Do Pass / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 015-000-000,2024-05-22,['committee-passage'],IL,103rd +"Effective Date December 8, 2023",2023-12-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicholas K. Smith,2023-05-16,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Public Utilities Committee,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Charles Meier,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 State Debt Impact Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-04-20,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-10,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2023-11-08,[],IL,103rd +Arrived in House,2023-05-10,['introduction'],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2023",2023-05-19,[],IL,103rd +House Floor Amendment No. 2 State Mandates Fiscal Note Filed as Amended,2023-05-15,[],IL,103rd +Senate Floor Amendment No. 6 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 013-000-000,2023-05-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2023-05-04,[],IL,103rd +House Concurs,2024-05-29,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 077-009-001,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-10,[],IL,103rd +House Committee Amendment No. 1 Adopted in Executive Committee; by Voice Vote,2024-05-21,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Margaret Croke,2023-05-23,[],IL,103rd +Public Act . . . . . . . . . 103-0517,2023-08-11,['became-law'],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-02-02,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 21, 2023",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-22,[],IL,103rd +"Effective Date March 22, 2024",2024-03-22,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Balanced Budget Note Filed as amended,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2024-04-11,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-05-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 109-000-000,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-05-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Placed on Calendar Order of 3rd Reading ** May 8, 2023",2023-05-05,['reading-3'],IL,103rd +Second Reading,2023-05-03,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Rule 19(b) / Motion Referred to Rules Committee,2023-06-26,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Kelly M. Burke,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2023-04-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 10, 2023",2023-05-09,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-02-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-05-12,['amendment-passage'],IL,103rd +"House Floor Amendment No. 2 Racial Impact Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2024-05-09,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-03-21,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 077-035-000,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-04,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Referred to Rules Committee,2023-05-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Steve Stadelman,2023-03-29,[],IL,103rd +Home Rule Note Request is Inapplicable,2023-05-10,[],IL,103rd +Do Pass Executive; 009-004-000,2023-05-18,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 068-038-000,2024-05-25,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Remove Chief Co-Sponsor Rep. Laura Faver Dias,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0562,2023-11-17,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-09-05,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-05-25,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sue Rezin,2023-05-24,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-05-02,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Governor Approved,2024-06-07,['executive-signature'],IL,103rd +Pension Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Public Act . . . . . . . . . 103-0649,2024-07-10,['became-law'],IL,103rd +Judicial Note Requested - Withdrawn by Rep. Terra Costa Howard,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-05-26,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 071-039-000,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Toro,2024-05-23,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-17,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Public Act . . . . . . . . . 103-0792,2024-08-14,['became-law'],IL,103rd +"Effective Date January 1, 2026",2024-08-09,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 104-000-000,2024-05-28,[],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2024-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 3 Motion Filed Concur Rep. Sue Scherer,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-19,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Referred to Assignments,2024-05-15,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Ann M. Williams,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 107-000-000,2024-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 106-000-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0822,2024-08-09,['became-law'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Justin Slaughter,2024-05-02,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-04-16,['amendment-passage'],IL,103rd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to State Government,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-14,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0802,2024-08-09,['became-law'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 9, 2024",2024-05-08,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-08,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-05-14,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-28,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 104-000-000,2024-05-28,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2024-05-02,[],IL,103rd +To Subcommittee on Paid Leave,2024-05-01,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to State Government,2024-05-24,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-04-16,['amendment-passage'],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-24,[],IL,103rd +Sponsor Removed Sen. Christopher Belt,2024-05-16,[],IL,103rd +"Added Chief Co-Sponsor Rep. William ""Will"" Davis",2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-20,[],IL,103rd +Do Pass / Short Debate Executive Committee; 008-004-000,2024-05-22,['committee-passage'],IL,103rd +Senate Committee Amendment No. 3 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0804,2024-08-09,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0830,2024-08-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Ann M. Williams,2023-11-08,['amendment-introduction'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2024-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2024-05-02,[],IL,103rd +Remove Chief Co-Sponsor Rep. Katie Stuart,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Yolonda Morris,2024-05-02,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-09,[],IL,103rd +"Effective Date June 7, 2024",2024-06-07,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 068-038-000,2024-05-25,[],IL,103rd +Housing Affordability Impact Note Request is Inapplicable,2023-05-10,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-18,['reading-2'],IL,103rd +Racial Impact Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Public Act . . . . . . . . . 103-0614,2024-07-01,['became-law'],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Laura Fine,2023-05-18,['filing'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-24,[],IL,103rd +House Floor Amendment No. 5 Adopted,2024-05-25,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 1 House Concurs 106-000-000,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-11-07,[],IL,103rd +Added Chief Co-Sponsor Rep. Ryan Spain,2023-07-19,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0197,2023-06-30,['became-law'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Revenue & Finance Committee,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Kelly M. Burke,2024-05-28,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 095-000-002,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-02-28,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 4, 2023",2023-05-03,['reading-3'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. David Koehler,2023-05-16,['filing'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2024-05-15,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +"House Floor Amendment No. 1 State Debt Impact Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2023-05-04,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-05-18,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +"House Floor Amendment No. 2 Rules Refers to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2023-03-22,[],IL,103rd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-03-31,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-12,['reading-3'],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. Terra Costa Howard,2024-04-18,[],IL,103rd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-05-26,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-05-03,[],IL,103rd +Public Act . . . . . . . . . 103-0210,2023-06-30,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-12,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to State Government,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Maura Hirschauer,2023-04-26,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sue Rezin,2023-05-25,[],IL,103rd +Added as Chief Co-Sponsor Sen. Ann Gillespie,2023-11-14,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Dan Swanson,2023-05-18,[],IL,103rd +Sent to the Governor,2024-06-13,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2023-03-23,['committee-passage-favorable'],IL,103rd +Chief House Sponsor Rep. Kelly M. Cassidy,2023-10-02,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Dale Fowler,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-09,[],IL,103rd +Remove Chief Co-Sponsor Rep. Michael T. Marron,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-04,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-22,['amendment-passage'],IL,103rd +"Effective Date August 9, 2024; some provisions effective January 1, 2025.",2024-08-09,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Kimberly A. Lightford,2023-05-16,['filing'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Janet Yang Rohr,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Health Care Availability & Accessibility Committee,2023-05-19,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jackie Haas,2023-05-19,[],IL,103rd +"Effective Date December 8, 2023",2023-12-08,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 042-010-000,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-16,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2024-05-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-19,['reading-2'],IL,103rd +House Floor Amendment No. 3 Motion Filed to Table Rep. Mary Gill,2024-05-14,[],IL,103rd +House Concurs,2024-05-24,[],IL,103rd +House Floor Amendment No. 5 Senate Concurs 058-000-000,2024-05-24,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-16,[],IL,103rd +Judicial Note Requested by Rep. Terra Costa Howard,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2024-05-08,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-15,[],IL,103rd +Public Act . . . . . . . . . 103-0070,2023-06-09,['became-law'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Robert Peters,2023-03-23,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 109-000-000,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0525,2023-08-11,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-04-28,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Public Utilities Committee; 019-001-001,2023-11-09,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Lakesia Collins,2023-05-15,[],IL,103rd +Senate Committee Amendment No. 2 Adopted; State Government,2023-05-03,['amendment-passage'],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-04-11,[],IL,103rd +"Effective Date January 1, 2024",2023-08-15,[],IL,103rd +Third Reading - Short Debate - Passed 087-023-000,2023-03-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 055-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-11,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Mental Health & Addiction Committee,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-05-19,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 010-000-000,2023-05-25,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Chief Co-Sponsor Rep. Dave Vella,2023-05-16,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-05-03,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2023-05-12,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 4 Tabled Pursuant to Rule 5-4(a),2024-05-26,['amendment-failure'],IL,103rd +Placed on Calendar Order of 2nd Reading,2024-05-23,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Jay Hoffman,2024-05-29,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2024-04-11,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-11-08,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-19,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Do Pass as Amended / Short Debate Executive Committee; 008-004-000,2024-05-21,['committee-passage'],IL,103rd +House Floor Amendment No. 2 State Debt Impact Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Margaret Croke,2023-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 077-009-001,2023-05-25,[],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Adam M. Niemerg,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 5 House Concurs 105-000-000,2023-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +House Floor Amendment No. 3 State Mandates Fiscal Note Filed as Amended,2023-05-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-06-26,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-05-10,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +"Motion Filed to Reconsider Vote Rep. Emanuel ""Chris"" Welch",2024-05-29,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0870,2024-08-09,['became-law'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 2 House Concurs 070-036-001,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2023-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-25,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Agriculture,2023-05-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0579,2023-12-08,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-22,[],IL,103rd +Sent to the Governor,2024-06-14,['executive-receipt'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lance Yednock,2024-04-16,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert Peters,2023-05-16,['filing'],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-05-10,[],IL,103rd +Second Reading,2024-05-09,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +State Mandates Fiscal Note Filed,2023-05-09,[],IL,103rd +Added as Chief Co-Sponsor Sen. Lakesia Collins,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0585,2024-03-22,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2024-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-05-01,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2024-05-10,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-23,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-03-24,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Balanced Budget Note Filed as Amended,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-11-08,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 6 House Concurs 105-000-000,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-18,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-05-10,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-05-10,[],IL,103rd +Postponed - State Government,2023-05-17,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-16,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Sent to the Governor,2023-11-14,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Sharon Chung,2023-05-11,[],IL,103rd +House Floor Amendment No. 3 State Debt Impact Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-11,[],IL,103rd +"Motion Withdrawn Rep. Emanuel ""Chris"" Welch",2024-06-03,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-05-29,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-04-11,[],IL,103rd +Third Reading - Short Debate - Passed 073-042-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-05-10,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 070-036-001,2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-05-24,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-22,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0882,2024-08-09,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0869,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-19,['amendment-passage'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. William ""Will"" Davis",2024-04-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-04-16,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Agriculture; 010-000-000,2023-05-18,[],IL,103rd +Do Pass / Short Debate Health Care Availability & Accessibility Committee; 008-000-000,2023-04-25,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2023-05-19,[],IL,103rd +Pension Note Requested - Withdrawn by Rep. Terra Costa Howard,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2024-05-26,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Revenue & Finance Committee,2024-05-28,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 5 Motion Filed Concur Rep. Kelly M. Burke,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-19,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +Do Pass as Amended State Government; 009-000-000,2023-05-04,['committee-passage'],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-02-28,[],IL,103rd +Passed Both Houses,2023-05-10,[],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lance Yednock,2023-11-07,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-17,[],IL,103rd +"Senate Committee Amendment No. 1 Motion Filed Concur Rep. Robert ""Bob"" Rita",2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2023-05-24,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 035-003-018,2024-05-02,[],IL,103rd +House Committee Amendment No. 1 Tabled,2024-05-22,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Insurance Committee,2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Stephanie A. Kifowit,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-16,[],IL,103rd +"Senate Committee Amendment No. 3 Motion to Concur Rules Referred to Elementary & Secondary Education: Administration, Licensing & Charter Schools",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Revenue & Finance Committee,2023-05-16,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-16,['reading-3'],IL,103rd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-05-28,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-22,[],IL,103rd +House Concurs,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Christopher Belt,2024-05-10,['amendment-introduction'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2024-05-02,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-11-08,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +Third Reading - Passed; 037-019-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Chief Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Mike Simmons,2024-05-16,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-0593,2024-06-07,['became-law'],IL,103rd +Removed Co-Sponsor Rep. Kevin John Olickal,2023-05-19,[],IL,103rd +"Effective Date January 1, 2025",2024-07-01,[],IL,103rd +Senate Floor Amendment No. 4 House Concurs 068-038-000,2024-05-25,[],IL,103rd +Second Reading,2023-05-18,['reading-2'],IL,103rd +State Debt Impact Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-02,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-25,['reading-3'],IL,103rd +Judicial Note Request is Inapplicable,2023-05-10,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0514,2023-08-11,['became-law'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-18,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2024-05-15,[],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-05-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Paul Faraci,2023-03-31,[],IL,103rd +"House Floor Amendment No. 2 State Debt Impact Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Public Act . . . . . . . . . 103-0526,2023-08-15,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-03-22,[],IL,103rd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Lakesia Collins,2023-05-15,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Mental Health & Addiction Committee; 020-000-000,2023-05-18,[],IL,103rd +Placed on Calendar - Consideration Postponed,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Don Harmon,2024-05-23,['amendment-introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2024-05-26,[],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2024-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicole La Ha,2024-04-15,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Jay Hoffman,2023-04-26,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to State Government,2023-05-18,[],IL,103rd +Removed Co-Sponsor Rep. Bradley Fritts,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-05-12,[],IL,103rd +"Added Chief Co-Sponsor Rep. Maurice A. West, II",2023-05-25,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Steven Reick,2023-05-03,[],IL,103rd +Governor Approved,2024-08-07,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. John M. Cabello,2023-05-18,[],IL,103rd +"House Floor Amendment No. 4 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-05-19,['amendment-introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-16,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2024-05-15,[],IL,103rd +House Floor Amendment No. 3 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Rita Mayfield,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-24,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-16,[],IL,103rd +Do Pass as Amended Executive; 009-003-000,2024-05-22,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-05-23,[],IL,103rd +House Floor Amendment No. 4 Motion Filed to Table Rep. Mary Gill,2024-05-14,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Lilian Jiménez,2023-05-19,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Terra Costa Howard,2023-05-03,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0580,2023-12-08,['became-law'],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-05-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0865,2024-08-09,['became-law'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-06-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-11-09,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-11,[],IL,103rd +Arrived in House,2023-05-10,['introduction'],IL,103rd +Public Act . . . . . . . . . 103-0305,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-03-23,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-05-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-03-31,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Harry Benton,2023-05-12,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-05-16,[],IL,103rd +"Effective Date January 1, 2024",2023-08-11,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-05-17,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 3 House Concurs 104-000-000,2023-05-25,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Hoan Huynh,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0345,2023-07-28,['became-law'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-04-11,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Public Utilities Committee; 019-001-001,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-07-20,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Ram Villivalam,2023-03-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-08,[],IL,103rd +Governor Amendatory Veto,2023-08-16,['executive-veto'],IL,103rd +Placed on Calendar Amendatory Veto,2023-10-24,[],IL,103rd +Do Pass as Amended Executive; 008-002-000,2023-05-17,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-05-24,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-04-11,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Natalie A. Manley,2023-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Sonya M. Harper,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 4 House Concurs 104-000-000,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Public Utilities Committee; 019-001-001,2023-11-09,[],IL,103rd +Public Act . . . . . . . . . 103-0519,2023-08-11,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Dave Vella,2023-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-05-19,[],IL,103rd +Assigned to Energy and Public Utilities,2023-04-12,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-03,[],IL,103rd +Third Reading - Passed; 039-019-000,2023-05-03,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-11-09,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-11,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0353,2023-07-28,['became-law'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-09-05,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-03-23,[],IL,103rd +"Chief Co-Sponsor Changed to Rep. Maurice A. West, II",2023-05-25,[],IL,103rd +"Effective Date August 7, 2024",2024-08-07,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2023-04-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2024-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2023-05-09,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to State Government,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2023-05-18,[],IL,103rd +Removed Co-Sponsor Rep. Chris Miller,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-26,[],IL,103rd +"Third Reading Deadline Extended-Rule May 24, 2024",2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Jenn Ladisch Douglass,2024-05-10,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. John M. Cabello,2024-04-15,[],IL,103rd +Public Act . . . . . . . . . 103-0243,2023-06-30,['became-law'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-05-17,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Senate Concurs 035-003-018,2024-05-02,[],IL,103rd +Added Chief Co-Sponsor Rep. Justin Slaughter,2024-05-28,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Mary Beth Canty,2023-05-19,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-05-05,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-23,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Education,2023-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-15,[],IL,103rd +Pension Note Requested by Rep. Terra Costa Howard,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-19,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2024-05-20,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Jennifer Sanalitro,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-17,[],IL,103rd +"Effective Date July 1, 2025",2024-08-09,[],IL,103rd +Public Act . . . . . . . . . 103-0488,2023-08-04,['became-law'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2023-05-18,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Added Alternate Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-05-16,[],IL,103rd +House Floor Amendment No. 2 Tabled,2023-05-17,['amendment-failure'],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-04-26,['reading-2'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Special Committee on Criminal Law and Public Safety,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ann M. Williams,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-04-16,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Seth Lewis,2024-05-09,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-19,['reading-3'],IL,103rd +House Floor Amendment No. 1 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0910,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-24,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-19,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 22, 2024",2024-05-22,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 22, 2024",2024-05-22,[],IL,103rd +Third Reading - Passed; 044-015-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Third Reading - Passed; 054-000-000,2023-05-05,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-03-23,[],IL,103rd +Governor Approved,2023-11-17,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-05,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-03-24,['amendment-passage'],IL,103rd +Arrived in House,2023-05-10,['introduction'],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-23,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Passed Both Houses,2024-06-03,[],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0291,2023-07-28,['became-law'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-11,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +House Floor Amendment No. 3 Adopted,2023-05-17,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 109-000-000,2023-05-19,[],IL,103rd +Third Reading - Passed; 052-001-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-08,[],IL,103rd +Governor Approved,2024-07-30,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2024-04-18,[],IL,103rd +Sent to the Governor,2024-06-07,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2024-05-22,[],IL,103rd +Judicial Note Requested - Withdrawn by Rep. Barbara Hernandez,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-29,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Mental Health & Addiction Committee; 020-000-000,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0272,2023-07-28,['became-law'],IL,103rd +Assigned to Insurance,2023-04-12,['referral-committee'],IL,103rd +Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-15,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-05-12,['amendment-failure'],IL,103rd +"House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Bob Morgan,2024-05-15,[],IL,103rd +House Concurs 105-000-000,2023-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Karina Villa,2023-05-16,[],IL,103rd +Third Reading - Passed; 056-000-000,2024-05-15,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-05-22,[],IL,103rd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Executive Committee,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-10,[],IL,103rd +Do Pass / Short Debate Economic Opportunity & Equity Committee; 005-003-000,2024-05-08,['committee-passage'],IL,103rd +Passed Both Houses,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-05-16,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Insurance Committee,2024-05-21,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-23,['amendment-failure'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2024-05-22,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-05-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2024-05-24,[],IL,103rd +"Senate Committee Amendment No. 3 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: Administration, Licensing & Charter Schools; 008-000-000",2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-26,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Human Services Committee,2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. David Friess,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-02-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-11-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-17,[],IL,103rd +"Senate Floor Amendment No. 2 Motion Filed Concur Rep. Robert ""Bob"" Rita",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Revenue & Finance Committee,2024-05-28,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 5, 2023",2023-05-04,['reading-2'],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Labor & Commerce Committee,2023-05-15,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-05-10,[],IL,103rd +Land Conveyance Appraisal Note Request is Inapplicable,2023-05-10,[],IL,103rd +Removed Co-Sponsor Rep. Janet Yang Rohr,2023-05-19,[],IL,103rd +"Added as Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-06-10,[],IL,103rd +Third Reading - Short Debate - Passed 078-029-009,2024-05-25,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-09,[],IL,103rd +State Mandates Fiscal Note Requested by Rep. Robyn Gabel,2024-03-22,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 19, 2023",2023-05-18,['reading-3'],IL,103rd +Senate Floor Amendment No. 5 House Concurs 068-038-000,2024-05-25,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +"Added as Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-06-10,[],IL,103rd +Pension Note Request is Inapplicable,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0644,2024-07-01,['became-law'],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-03-22,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-09,[],IL,103rd +House Floor Amendment No. 4 Tabled,2024-05-25,['amendment-failure'],IL,103rd +Remove Chief Co-Sponsor Rep. Jonathan Carroll,2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Third Reading - Short Debate - Passed 092-008-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-05-15,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-03-22,['reading-2'],IL,103rd +Arrive in Senate,2023-05-15,['introduction'],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-18,[],IL,103rd +"House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Christopher ""C.D."" Davidsmeyer",2023-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Executive Committee; 012-000-000,2023-11-08,['committee-passage-favorable'],IL,103rd +Arrived in House,2024-05-23,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Revenue & Finance Committee; 012-007-000,2023-05-17,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +Arrived in House,2024-05-15,['introduction'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Laura Ellman,2024-05-23,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Tracy Katz Muhl,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 3 House Concurs 102-000-000,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2024-05-14,[],IL,103rd +Sent to the Governor,2024-06-26,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-22,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-05-17,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Second Reading,2023-05-10,['reading-2'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-17,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Seth Lewis,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-02-28,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 008-000-000,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Wayne A Rosenthal,2023-05-18,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 013-000-000,2023-05-17,[],IL,103rd +Do Pass / Short Debate Insurance Committee; 012-000-000,2023-11-07,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 014-005-000,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Labor & Commerce Committee,2023-05-15,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-09,['reading-2'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Concurs,2024-05-02,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicole La Ha,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-05-30,[],IL,103rd +Racial Impact Note Requested by Rep. Terra Costa Howard,2023-05-03,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Terra Costa Howard,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0844,2024-08-09,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 014-000-000,2024-05-21,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 11, 2023",2023-05-05,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Education; 012-000-000,2023-05-16,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-18,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-17,[],IL,103rd +Sent to the Governor,2024-06-26,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-19,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Theresa Mah,2024-05-15,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Don Harmon,2024-05-23,['amendment-introduction'],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-11-09,[],IL,103rd +Senate Floor Amendment No. 5 House Concurs 104-000-000,2023-05-25,[],IL,103rd +Passed Both Houses,2023-05-03,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-03-23,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-05-24,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-17,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Hoan Huynh,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-15,[],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-05-12,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Nabeela Syed,2023-05-11,[],IL,103rd +Bill Dead - No Positive Action Taken - Amendatory Veto,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-08,[],IL,103rd +"Added Chief Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-03-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-03,[],IL,103rd +Do Pass Insurance; 011-000-000,2023-04-19,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-05-12,[],IL,103rd +Added Chief Co-Sponsor Rep. John M. Cabello,2023-05-16,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-04-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-04,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ryan Spain,2023-05-18,[],IL,103rd +Removed Co-Sponsor Rep. Jason Bunting,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-12,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Maura Hirschauer,2023-04-26,[],IL,103rd +Public Act . . . . . . . . . 103-0784,2024-08-07,['became-law'],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-05-11,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-05-29,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Note / Motion Filed - Note Act Does Not Apply Rep. Jay Hoffman,2023-05-17,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Passed Both Houses,2023-05-05,[],IL,103rd +"Effective Date November 17, 2023",2023-11-17,[],IL,103rd +Note / Motion Filed - Note Act Does Not Apply Rep. Will Guzzardi,2024-05-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-03-24,['reading-3'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Passed Both Houses,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-11-08,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 4, 5",2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 25, 2023",2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-09,[],IL,103rd +Removed Co-Sponsor Rep. Joe C. Sosnowski,2023-05-24,[],IL,103rd +Sent to the Governor,2024-06-04,['executive-receipt'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 109-000-000,2023-05-19,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 3,2023-05-17,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-05-25,[],IL,103rd +"House Floor Amendment No. 5 Filed with Clerk by Rep. Marcus C. Evans, Jr.",2023-05-19,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 078-030-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0879,2024-08-09,['became-law'],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Special Committee on Criminal Law and Public Safety; 009-000-000,2023-05-17,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0975,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-15,['amendment-passage'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Mary Edly-Allen,2024-05-14,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-04-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2024-05-16,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Racial Impact Note Requested - Withdrawn by Rep. Barbara Hernandez,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-05-22,[],IL,103rd +"Effective Date July 30, 2024; Some Provisions",2024-07-30,[],IL,103rd +House Floor Amendment No. 5 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-08,[],IL,103rd +Pension Note Requested - Withdrawn by Rep. Barbara Hernandez,2023-05-10,[],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2024-05-08,[],IL,103rd +"Effective Date January 1, 2025; Some Provisions",2024-07-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-05-22,[],IL,103rd +State Mandates Fiscal Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 051-000-003,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Revenue & Finance Committee,2023-05-24,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 4, 5 - May 17, 2023",2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-25,[],IL,103rd +Governor Approved,2024-06-05,['executive-signature'],IL,103rd +Motion Prevailed 061-041-000,2024-05-22,[],IL,103rd +Motion Prevailed 071-040-000,2023-05-17,[],IL,103rd +Recalled to Second Reading,2023-05-18,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Human Services Committee,2023-05-15,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Karina Villa,2023-05-24,['amendment-introduction'],IL,103rd +Governor Approved,2023-08-14,['executive-signature'],IL,103rd +House Floor Amendment No. 3 State Mandates Fiscal Note Requested as Amended by Rep. Ann M. Williams,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2023-05-15,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-05,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 114-000-000,2023-05-17,[],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0349,2023-07-28,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0565,2023-11-17,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0423,2023-08-04,['became-law'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-05-04,[],IL,103rd +Placed on Calendar - Consideration Postponed,2023-03-24,[],IL,103rd +Third Reading - Passed; 038-016-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-05-29,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-04-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 19, 2023",2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2023-05-19,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-14,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 3 - May 18, 2023",2023-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-24,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-05-25,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 5 Referred to Rules Committee,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 11, 2023",2023-05-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 014-005-000,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 016-008-000,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2023-05-11,[],IL,103rd +"Effective Date January 1, 2024",2023-08-11,[],IL,103rd +Governor Amendatory Veto,2023-08-11,['executive-veto'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-17,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +House Floor Amendment No. 1 State Debt Impact Note Filed as Amended,2023-05-10,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-19,[],IL,103rd +Placed on Calendar Order of First Reading,2023-05-15,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-03-24,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-18,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-25,[],IL,103rd +Remove Chief Co-Sponsor Rep. Mary Beth Canty,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to Executive,2023-05-18,[],IL,103rd +Racial Impact Note Request is Inapplicable,2023-05-10,[],IL,103rd +Balanced Budget Note Filed,2024-03-26,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-05-22,[],IL,103rd +House Floor Amendment No. 2 Tabled,2024-04-18,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-04-18,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-26,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-15,[],IL,103rd +House Concurs,2024-05-28,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-04-19,[],IL,103rd +Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-1042,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 1 House Concurs 103-000-000,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2023-05-17,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-11-08,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sally J. Turner,2024-05-17,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Executive,2024-05-20,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2023-05-19,[],IL,103rd +House Committee Amendment No. 2 Senate Concurs 051-006-000,2024-05-26,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jackie Haas,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2024-05-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-11-09,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Insurance Committee,2023-05-15,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Agriculture & Conservation Committee,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 2nd Reading April 20, 2023",2023-04-19,['reading-2'],IL,103rd +Arrive in Senate,2023-03-27,['introduction'],IL,103rd +Governor Amendatory Veto,2023-08-11,['executive-veto'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-03,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-03,[],IL,103rd +Added Chief Co-Sponsor Rep. Mark L. Walker,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0536,2023-08-11,['became-law'],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-04-11,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Bill Cunningham,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-09,[],IL,103rd +Passed Both Houses,2024-05-02,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-05-20,[],IL,103rd +Public Act . . . . . . . . . 103-0871,2024-08-09,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-20,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Nicole La Ha,2024-05-23,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Lilian Jiménez,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2024-05-13,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-17,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 056-000-000,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0928,2024-08-09,['became-law'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Removed Co-Sponsor Rep. Gregg Johnson,2024-06-11,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-16,[],IL,103rd +Do Pass as Amended Executive; 007-004-000,2024-05-15,['committee-passage'],IL,103rd +State Debt Impact Note Requested by Rep. Terra Costa Howard,2023-05-03,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 115-000-000,2024-05-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Rita Mayfield,2024-05-23,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-09,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-05-15,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3, 5",2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-26,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-23,[],IL,103rd +Removed Co-Sponsor Rep. Paul Jacobs,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-05-12,[],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-04,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Charles Meier,2023-05-11,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Aaron M. Ortiz,2023-04-26,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Fred Crespo,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-05-18,[],IL,103rd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2023-05-18,[],IL,103rd +Removed Co-Sponsor Rep. Norine K. Hammond,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2023-05-11,[],IL,103rd +House Committee Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-05-12,[],IL,103rd +Second Reading - Short Debate,2023-05-04,['reading-2'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-23,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Licensed Activities,2023-05-10,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-13,['reading-3'],IL,103rd +State Mandates Fiscal Note Requested by Rep. Terra Costa Howard,2023-05-03,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 16, 2024",2024-05-15,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-05-25,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0790,2024-08-09,['became-law'],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Rules Referred to Transportation: Vehicles & Safety,2024-05-21,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Sent to the Governor,2024-05-02,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Fred Crespo,2023-05-19,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Nicole La Ha,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0399,2023-07-28,['became-law'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +House Concurs,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy L. Grant,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Insurance Committee; 013-000-000,2024-05-14,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-24,[],IL,103rd +Second Reading,2023-04-25,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-19,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2023-05-03,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Insurance Committee; 008-004-000,2023-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 008-001-000,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Energy & Environment Committee,2023-05-15,[],IL,103rd +"Senate Floor Amendment No. 1 Motion Filed Concur Rep. Maurice A. West, II",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-03-24,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-11-09,[],IL,103rd +Placed on Calendar Amendatory Veto,2023-10-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Harry Benton,2023-11-09,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Police & Fire Committee,2023-05-17,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2023-05-18,[],IL,103rd +Placed on Calendar Order of First Reading,2023-03-27,['reading-1'],IL,103rd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-10,[],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Chief Sponsor Changed to Rep. Kam Buckner,2024-05-27,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Labor & Commerce Committee,2024-05-16,[],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +Second Reading,2024-05-23,['reading-2'],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. John Egofske,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Kam Buckner,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-05-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Judiciary,2024-05-14,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-17,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Mike Simmons,2023-05-18,['filing'],IL,103rd +Public Act . . . . . . . . . 103-0850,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Fiscal Note Filed,2023-05-22,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura Fine,2024-05-23,['amendment-introduction'],IL,103rd +"Effective Date June 05,2024 ; Some Provisions",2024-06-05,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Adopted; Edly-Allen,2023-05-18,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +House Floor Amendment No. 4 Motion to Concur Filed with Secretary Sen. Sara Feigenholtz,2023-05-17,['filing'],IL,103rd +"Effective Date January 1, 2024",2023-08-14,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-04,[],IL,103rd +Correctional Note Request is Inapplicable,2023-05-17,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Robyn Gabel,2023-05-25,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Revenue & Finance Committee,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-05-22,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Ann M. Williams,2023-05-04,['amendment-introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2023-05-17,[],IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +Public Act . . . . . . . . . 103-0755,2024-08-02,['became-law'],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. Barbara Hernandez,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0721,2024-07-30,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2024-05-29,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2024-05-15,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Will Guzzardi,2024-05-23,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2024-05-14,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-21,[],IL,103rd +Passed Both Houses,2024-05-28,[],IL,103rd +Recalled to Second Reading - Short Debate,2023-11-08,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0855,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-22,[],IL,103rd +Third Reading - Short Debate - Passed 081-031-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to State Government,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-05-28,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Dave Vella,2024-05-23,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2023-05-18,[],IL,103rd +House Floor Amendment No. 3 Senate Concurs 051-006-000,2024-05-26,[],IL,103rd +Fiscal Note Filed,2024-04-01,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 008-003-000,2023-05-18,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-05-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Bob Morgan,2023-05-19,[],IL,103rd +State Debt Impact Note Request is Inapplicable,2023-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Katie Stuart,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 014-005-000,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Labor & Commerce Committee; 016-008-000,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Halbrook,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-05,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Executive Committee,2023-05-24,[],IL,103rd +Placed on Calendar Amendatory Veto,2023-10-24,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 076-033-000,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0542,2023-08-11,['became-law'],IL,103rd +Third Reading - Passed; 055-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-25,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Do Pass Executive; 012-000-000,2023-05-17,['committee-passage'],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2024-05-08,[],IL,103rd +Public Act . . . . . . . . . 103-0298,2023-07-28,['became-law'],IL,103rd +House Floor Amendment No. 2 State Debt Impact Note Filed as Amended,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-03-27,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-19,[],IL,103rd +Chief Senate Sponsor Sen. Bill Cunningham,2023-05-15,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Human Services Committee; 008-000-000,2023-05-16,[],IL,103rd +Motion Filed to Reconsider Vote Rep. Margaret Croke,2024-04-18,[],IL,103rd +Motion to Reconsider Vote - Withdrawn Rep. Margaret Croke,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-05-11,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-05-25,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 086-020-000,2024-05-29,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Charles Meier,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tony M. McCombie,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-02-28,[],IL,103rd +Bill Dead - No Positive Action Taken - Amendatory Veto,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-11,[],IL,103rd +Sent to the Governor,2023-05-09,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Executive Committee,2023-05-24,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Abdelnasser Rashid,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-25,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-05-17,[],IL,103rd +House Floor Amendment No. 2 Adopted by Voice Vote,2023-11-08,['amendment-passage'],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Insurance Committee; 014-000-000,2024-05-22,[],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-05-22,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Cyril Nichols,2024-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0807,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 008-000-000,2024-05-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Javier L. Cervantes,2024-05-21,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-30,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2024-05-21,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Human Services Committee,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2024-06-06,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-24,['reading-3'],IL,103rd +"Effective Date January 1, 2025",2024-08-14,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Anna Moeller,2024-04-05,['amendment-introduction'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-22,[],IL,103rd +State Mandates Fiscal Note Request is Inapplicable,2023-05-10,[],IL,103rd +Sent to the Governor,2024-06-06,['executive-receipt'],IL,103rd +Added Chief Co-Sponsor Rep. Nabeela Syed,2023-05-19,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Ann Gillespie,2023-05-25,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 2, 3, 5",2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 008-003-000,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-05-09,[],IL,103rd +First Reading,2023-05-15,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 House Concurs 112-001-000,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2024-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2024-05-15,[],IL,103rd +"Effective Date August 11, 2023; Some Provisons",2023-08-11,[],IL,103rd +House Floor Amendment No. 1 Pension Note Filed as Amended,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 114-000-000,2023-05-17,[],IL,103rd +"Removed Co-Sponsor Rep. Maurice A. West, II",2024-05-27,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Stadelman,2024-05-26,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-23,[],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Theresa Mah,2024-05-17,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2024-04-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-05-16,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-05-12,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-04,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-05-09,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-11,[],IL,103rd +Removed Co-Sponsor Rep. Tony M. McCombie,2023-05-25,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-04-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2024-05-22,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Rita Mayfield,2024-05-23,['amendment-introduction'],IL,103rd +Public Act . . . . . . . . . 103-0557,2023-08-11,['became-law'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-19,[],IL,103rd +Governor Approved,2024-05-03,['executive-signature'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0886,2024-08-09,['became-law'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-18,[],IL,103rd +Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Do Pass as Amended Licensed Activities; 008-000-000,2023-05-10,['committee-passage'],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0847,2024-08-09,['became-law'],IL,103rd +Second Reading,2024-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-05-25,[],IL,103rd +"Effective Date July 1, 2024",2023-08-11,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Lilian Jiménez,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Transportation: Vehicles & Safety; 011-000-000,2024-05-22,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Laura Faver Dias,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 086-027-000,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Energy & Environment Committee; 022-000-000,2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-03-27,[],IL,103rd +"Placed on Calendar Order of 3rd Reading April 26, 2023",2023-04-25,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2023-05-04,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-05-10,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Police & Fire Committee,2023-05-17,[],IL,103rd +Amendatory Veto Motion - Motion Filed Accept Amendatory Veto Rep. Jay Hoffman,2023-10-24,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-11,[],IL,103rd +Public Act . . . . . . . . . 103-0295,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 008-001-000,2023-05-25,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-18,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-11-09,[],IL,103rd +Chief Senate Sponsor Sen. Kimberly A. Lightford,2023-03-27,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-11-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-03,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-05-29,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-04-11,[],IL,103rd +Removed Co-Sponsor Rep. Dan Ugaste,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to State Government,2023-05-24,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2023-05-18,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Floor Amendment No. 4 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Robyn Gabel,2023-05-25,[],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2023-05-04,[],IL,103rd +"Third Reading Deadline Extended-Rule May 19, 2023",2023-04-18,[],IL,103rd +Senate Floor Amendment No. 2 Withdrawn by Sen. Mary Edly-Allen,2023-05-18,[],IL,103rd +Balanced Budget Note Request is Inapplicable,2024-05-22,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-05-04,[],IL,103rd +Fiscal Note Request is Inapplicable,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0560,2023-08-14,['became-law'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-11,[],IL,103rd +"Effective Date July 1, 2024; ;Some Provisions",2024-06-05,[],IL,103rd +Third Reading - Passed; 035-020-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert Peters,2023-05-19,['filing'],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Judiciary; 009-000-000,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2024-04-17,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2024-05-23,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-05-25,[],IL,103rd +Motion Filed To Reconsider the Vote on Motion Rep. Terra Costa Howard,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2023-05-19,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Chief Sponsor Changed to Sen. Robert Peters,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. Barbara Hernandez,2023-05-10,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. Barbara Hernandez,2023-05-10,[],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +Home Rule Note Request is Inapplicable,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-05-12,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-25,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Waive Posting Notice,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-17,[],IL,103rd +Arrived in House,2023-05-18,['introduction'],IL,103rd +Removed Co-Sponsor Rep. Steven Reick,2023-05-24,[],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +"Effective Date January 1, 2025; ;Some Provisions",2024-06-05,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Dagmara Avelar,2023-05-12,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 114-000-000,2023-05-17,[],IL,103rd +Correctional Note Request is Inapplicable,2024-05-22,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Motion Filed to Table Rep. Ann M. Williams,2023-05-05,[],IL,103rd +House Floor Amendment No. 5 Motion to Concur Filed with Secretary Sen. Sara Feigenholtz,2023-05-17,['filing'],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-04-11,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Recalled to Second Reading,2024-05-17,['reading-2'],IL,103rd +Motion to Reconsider Vote - Withdrawn Rep. Terra Costa Howard,2023-05-11,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. La Shawn K. Ford,2023-05-19,['amendment-introduction'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-05-23,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Burke,2023-05-09,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to Executive,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2024-04-17,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tony M. McCombie,2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +"Effective Date January 1, 2024",2023-06-30,[],IL,103rd +House Floor Amendment No. 2 Pension Note Filed as Amended,2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2024-05-15,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +"Effective Date January 1, 2024; Some Provisions",2023-08-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-08,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 112-001-000,2023-05-19,[],IL,103rd +Referred to Assignments,2023-05-15,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Police & Fire Committee,2023-05-17,[],IL,103rd +"Senate Committee Amendment No. 2 Motion to Concur Referred to Transportation: Regulations, Roads & Bridges",2023-05-18,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-22,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 004-000-000,2024-05-23,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Insurance Committee; 014-000-000,2024-05-22,[],IL,103rd +House Floor Amendment No. 1 Adopted by Voice Vote,2023-05-18,['amendment-passage'],IL,103rd +Third Reading - Short Debate - Passed 106-005-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2024-05-28,[],IL,103rd +Third Reading - Short Debate - Passed 093-016-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2024-06-26,['executive-receipt'],IL,103rd +Second Reading - Short Debate,2023-11-08,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Immigration & Human Rights Committee,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 058-000-000,2024-05-26,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2024-06-05,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-19,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-02-28,[],IL,103rd +"Added Co-Sponsor Rep. William ""Will"" Davis",2023-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0336,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 086-020-000,2024-05-29,[],IL,103rd +Assigned to State Government Administration Committee,2024-05-22,['referral-committee'],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2023-05-18,[],IL,103rd +3/5 Vote Required,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-25,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-05-11,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-04-18,[],IL,103rd +Governor Approved,2023-05-10,['executive-signature'],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-10,['reading-3'],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Ann Gillespie,2023-05-25,['amendment-introduction'],IL,103rd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt Executive; 008-003-000,2023-05-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Janet Yang Rohr,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-05,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 3, 5 - May 25, 2024",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-20,[],IL,103rd +Remove Chief Co-Sponsor Rep. La Shawn K. Ford,2023-05-17,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-05-22,[],IL,103rd +Amendatory Veto Motion - Motion Referred to Rules Committee,2023-10-24,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2024-04-25,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2023-05-17,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Remove Chief Co-Sponsor Rep. Randy E. Frese,2023-11-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-04-25,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-05-15,[],IL,103rd +First Reading,2023-03-27,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-03-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-04,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 008-001-000,2023-05-25,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-11-09,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 15, 2023",2023-05-11,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-18,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-12,[],IL,103rd +Third Reading - Short Debate - Passed 104-000-000,2023-05-08,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Revenue & Finance Committee,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-05-04,[],IL,103rd +Removed Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-27,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Stadelman,2024-05-26,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-23,[],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2024-04-15,[],IL,103rd +Added as Chief Co-Sponsor Sen. Steve Stadelman,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 11, 2023",2023-05-10,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Thaddeus Jones,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-18,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-25,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Sonya M. Harper,2024-05-21,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2024",2024-05-16,['reading-3'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-03,['reading-2'],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Mary Beth Canty,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0556,2023-08-11,['became-law'],IL,103rd +Senate Floor Amendment No. 1 House Concurs 115-000-000,2024-05-24,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-05-23,[],IL,103rd +Third Reading - Short Debate - Passed 087-021-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Effective Date May 3, 2024",2024-05-03,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to State Government Administration Committee,2024-05-23,[],IL,103rd +Public Act . . . . . . . . . 103-0789,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-25,[],IL,103rd +"Added as Co-Sponsor Sen. Napoleon Harris, III",2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2024-05-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Second Reading,2023-05-11,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0586,2024-05-03,['became-law'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-22,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +State Mandates Fiscal Note Filed,2023-05-09,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Rep. Terra Costa Howard,2023-05-19,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 073-038-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-05-18,[],IL,103rd +House Concurs,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Be Approved for Consideration Assignments,2024-05-23,[],IL,103rd +Senate Floor Amendment No. 4 Adopted; Stadelman,2024-05-26,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Nicholas K. Smith,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-05-20,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-11-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-03-30,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 008-001-000,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 098-008-000,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0520,2023-08-11,['became-law'],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-16,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Referred to Assignments,2023-03-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-05-03,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Elementary & Secondary Education: School Curriculum & Policies Committee; 009-004-000,2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-25,[],IL,103rd +Amendatory Veto Motion - Accept Motion Recommends Be Adopted Rules Committee; 004-000-000,2023-11-07,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2023-05-04,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 054-001-000,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-25,[],IL,103rd +Chief Sponsor Changed to Rep. Jehan Gordon-Booth,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-12,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Natalie A. Manley,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Revenue & Finance Committee,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Chris Miller,2024-04-15,[],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0220,2023-06-30,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2023-05-19,[],IL,103rd +Alternate Chief Sponsor Removed Rep. Stephanie A. Kifowit,2023-10-25,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt Executive; 011-000-000,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-26,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-22,[],IL,103rd +Recalled to Second Reading,2024-05-24,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Edly-Allen,2024-05-17,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-04-17,[],IL,103rd +Public Act . . . . . . . . . 103-0466,2023-08-04,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-05-09,[],IL,103rd +Second Reading - Short Debate,2023-05-19,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +Third Reading - Passed; 037-020-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Fiscal Note Request is Inapplicable,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0588,2024-06-05,['became-law'],IL,103rd +House Floor Amendment No. 2 Motion Filed to Table Rep. Ann M. Williams,2023-05-05,[],IL,103rd +Removed Co-Sponsor Rep. Travis Weaver,2023-05-24,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-25,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Sent to the Governor,2023-06-02,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +House Floor Amendment No. 5 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +Racial Impact Note Request is Inapplicable,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-04-11,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. Barbara Hernandez,2023-05-10,[],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-04-11,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Human Services Committee,2024-04-15,[],IL,103rd +Public Act . . . . . . . . . 103-0600,2024-07-01,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 071-040-001,2023-05-10,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +House Floor Amendment No. 1 Senate Concurs 036-020-000,2023-05-19,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 22, 2024",2024-05-22,[],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-25,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Laura Fine,2024-05-25,['filing'],IL,103rd +Added Chief Co-Sponsor Rep. Kimberly Du Buclet,2023-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Kevin John Olickal,2023-05-19,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2024-05-15,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-05-17,[],IL,103rd +"Senate Floor Amendment No. 5 Motion to Concur Referred to Transportation: Regulations, Roads & Bridges",2023-05-18,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Housing Affordability Impact Note Filed as Amended,2023-05-11,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2024-05-08,[],IL,103rd +Assigned to Executive,2023-05-16,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-28,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Immigration & Human Rights Committee; 006-004-000,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-24,['amendment-passage'],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +House Floor Amendment No. 1 Tabled,2024-05-22,['amendment-failure'],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2024-05-20,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2024-05-15,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-19,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 22, 2024",2024-05-22,[],IL,103rd +House Floor Amendment No. 2 Adopted by Voice Vote,2023-05-18,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 2 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-21,[],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-08,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-21,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-19,['reading-3'],IL,103rd +"Added Alternate Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-05-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-08,['reading-3'],IL,103rd +Placed on Calendar - Consideration Postponed,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-02-28,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-22,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Public Act . . . . . . . . . 103-0002,2023-05-10,['became-law'],IL,103rd +Senate Floor Amendment No. 3 House Concurs 086-020-000,2024-05-29,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - State Government,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Thaddeus Jones,2023-05-24,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-05-17,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2023-02-28,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Terra Costa Howard,2023-04-18,[],IL,103rd +Third Reading - Short Debate - Passed 114-000-000,2023-11-08,"['passage', 'reading-3']",IL,103rd +House Concurs,2024-05-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joe C. Sosnowski,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-05-19,[],IL,103rd +"Effective Date May 10, 2023",2023-05-10,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-12,[],IL,103rd +Postponed - State Government,2023-05-24,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Housing Affordability Impact Note Filed as Amended,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Do Pass Special Committee on Criminal Law and Public Safety; 007-003-000,2024-05-09,['committee-passage'],IL,103rd +Removed Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-18,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Katie Stuart,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-05-15,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 036-020-000,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-30,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Robert Peters,2024-05-23,['filing'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Executive,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Motion Filed To Reconsider the Vote on Motion Rep. Kelly M. Cassidy,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-05-19,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 073-038-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-04-19,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Don Harmon,2024-05-24,['amendment-introduction'],IL,103rd +Third Reading - Short Debate - Passed 078-033-000,2023-11-08,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-05-21,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 074-029-000,2024-05-25,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Cristina Castro,2024-05-23,['filing'],IL,103rd +House Floor Amendment No. 2 Tabled,2024-05-22,['amendment-failure'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0494,2023-08-04,['became-law'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-04-19,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Note / Motion Filed - Note Act Does Not Apply Rep. Kam Buckner,2023-05-18,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-24,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 105-000-000,2024-05-25,[],IL,103rd +"Effective Date January 1, 2026",2024-08-09,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2024-04-15,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Assigned to Executive,2023-04-12,['referral-committee'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 103-001-000,2023-05-25,[],IL,103rd +Removed Co-Sponsor Rep. Paul Jacobs,2023-05-24,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Accept Amendatory Veto - House Passed 109-004-000,2023-11-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-04,[],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0340,2023-07-28,['became-law'],IL,103rd +Senate Committee Amendment No. 2 House Concurs 098-008-000,2023-11-09,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 113-000-000,2023-05-18,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. William E Hauter,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0425,2023-08-04,['became-law'],IL,103rd +Sent to the Governor,2023-05-22,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-04-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-03-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0894,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 3 Senate Concurs 050-007-000,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 107-000-000,2024-05-25,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 15, 2023",2023-05-11,['reading-3'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted State Government Administration Committee; 005-003-000,2024-05-23,['committee-passage-favorable'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-25,[],IL,103rd +Remove Chief Co-Sponsor Rep. Tom Weber,2024-05-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Labor & Commerce Committee; 019-009-000,2024-05-20,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jehan Gordon-Booth,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Criminal Committee; 015-000-000,2023-05-25,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Kimberly A. Lightford,2023-05-16,['filing'],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Revenue & Finance Committee,2024-05-28,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 054-001-000,2023-05-19,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2024-04-11,[],IL,103rd +State Debt Impact Note Request is Inapplicable,2023-05-17,[],IL,103rd +House Floor Amendment No. 4 Motion to Concur Assignments Referred to State Government,2023-05-17,[],IL,103rd +Home Rule Note Request is Inapplicable,2024-05-22,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Amy L. Grant,2024-04-16,['amendment-introduction'],IL,103rd +House Floor Amendment No. 3 Motion Filed to Table Rep. Ann M. Williams,2023-05-05,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-15,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Motion Filed to Suspend Rule 21 State Government Administration Committee; Rep. Kam Buckner,2024-05-22,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Tabled Pursuant to Rule 5-4(a),2023-05-18,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-24,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-19,['reading-2'],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 008-003-000,2023-05-19,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Alternate Chief Sponsor Changed to Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Personnel & Pensions Committee,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-04-17,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Justin Slaughter,2023-10-25,[],IL,103rd +"Effective Date January 1, 2024",2023-07-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jed Davis,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-17,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Floor Amendment No. 2 Adopted; Fine,2024-05-24,['amendment-passage'],IL,103rd +Judicial Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-10,[],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +House Floor Amendment No. 5 Motion to Concur Assignments Referred to State Government,2023-05-17,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-04-16,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 071-039-000,2024-05-22,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-05-25,[],IL,103rd +"Effective Date January 1, 2024",2023-06-09,[],IL,103rd +Housing Affordability Impact Note Request is Inapplicable,2024-05-22,[],IL,103rd +House Floor Amendment No. 4 Rules Refers to Transportation: Vehicles & Safety,2023-05-08,[],IL,103rd +State Mandates Fiscal Note Request is Inapplicable,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 108-000-003,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0478,2023-08-04,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Executive Committee,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-17,[],IL,103rd +Motion Prevailed 073-040-000,2023-05-18,[],IL,103rd +Sponsor Removed Sen. Dan McConchie,2023-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-24,[],IL,103rd +Pension Note Filed,2023-05-09,[],IL,103rd +Public Act . . . . . . . . . 103-0403,2023-07-31,['became-law'],IL,103rd +House Committee Amendment No. 1 Senate Concurs 034-018-000,2023-05-24,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2023-05-19,[],IL,103rd +Chief House Sponsor Rep. Justin Slaughter,2023-10-25,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-17,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0808,2024-08-09,['became-law'],IL,103rd +Motion Filed to Reconsider Vote Rep. Ann M. Williams,2023-11-08,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 3 Tabled,2024-05-22,['amendment-failure'],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0846,2024-08-09,['became-law'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Third Reading - Short Debate - Passed 075-039-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0402,2023-07-28,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-05-19,[],IL,103rd +House Committee Amendment No. 2 Filed with Clerk by Rep. Yolonda Morris,2024-05-20,['amendment-introduction'],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-28,[],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Laura Fine,2024-05-25,['filing'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2023-05-30,[],IL,103rd +Senate Floor Amendment No. 1 Recommend Do Adopt Executive; 011-000-000,2023-05-25,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +House Floor Amendment No. 3 Senate Concurs 036-020-000,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Mark L. Walker,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-02-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2023-11-08,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Rule 3-9(a) / Re-referred to Assignments,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Dan Swanson,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-05-16,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ryan Spain,2023-05-18,[],IL,103rd +"Motion Filed to Reconsider Vote Rep. Emanuel ""Chris"" Welch",2024-05-29,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +"Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 011-006-000",2023-05-18,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2024-05-16,[],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Third Reading - Passed; 051-005-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 084-007-003,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Rules Referred to Revenue & Finance Committee,2024-05-28,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 10, 2023",2023-05-09,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Jehan Gordon-Booth,2023-05-26,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-04,[],IL,103rd +House Floor Amendment No. 3 Senate Concurs 054-001-000,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2023-05-18,[],IL,103rd +Sponsor Removed Sen. John F. Curran,2024-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 24, 2023",2023-05-23,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2024-05-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-05-25,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-05-22,[],IL,103rd +Balanced Budget Note Requested - Withdrawn by Rep. Terra Costa Howard,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 107-000-000,2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-04-15,[],IL,103rd +Passed Both Houses,2024-05-23,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 081-031-000,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 1 Filed with Secretary by Sen. Laura M. Murphy,2023-05-02,['amendment-introduction'],IL,103rd +Assigned to Appropriations- Education,2023-04-12,['referral-committee'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 016-000-000,2023-05-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Jil Tracy,2023-05-04,[],IL,103rd +Postponed - Executive,2023-04-20,[],IL,103rd +Governor Approved,2023-06-12,['executive-signature'],IL,103rd +Placed on Calendar Amendatory Veto,2023-11-07,[],IL,103rd +Senate Committee Amendment No. 2 House Concurs 103-001-000,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0437,2023-08-04,['became-law'],IL,103rd +3/5 Vote Required,2023-11-09,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Sent to the Governor,2023-06-08,['executive-receipt'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-18,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 098-008-000,2023-11-09,[],IL,103rd +Remove Chief Co-Sponsor Rep. Paul Jacobs,2024-05-28,[],IL,103rd +House Floor Amendment No. 4 Rules Refers to Labor & Commerce Committee,2024-05-21,[],IL,103rd +Removed Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-28,[],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Labor & Commerce Committee; 019-010-000,2024-05-22,['committee-passage-favorable'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Doris Turner,2023-05-16,['filing'],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-26,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-16,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Rules Referred to Revenue & Finance Committee,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-18,[],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +Sponsor Removed Sen. Jil Tracy,2024-05-24,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2024-05-22,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. Terra Costa Howard,2023-05-10,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-25,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Mattie Hunter,2023-05-24,['filing'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 103-001-000,2023-05-25,[],IL,103rd +Amendatory Veto Motion - Motion Filed Accept Amendatory Veto Sen. Cristina Castro,2023-11-07,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert F. Martwick,2023-04-26,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 1 Referred to Assignments,2023-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-04-17,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 016-000-000,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2023-06-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-05-09,[],IL,103rd +"Effective Date January 1, 2024",2023-06-12,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2023-02-28,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 107-000-000,2023-11-09,[],IL,103rd +Chief Senate Sponsor Sen. Mary Edly-Allen,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-17,['amendment-failure'],IL,103rd +Third Reading - Passed; 037-020-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-04-17,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Stephanie A. Kifowit,2023-05-10,['amendment-introduction'],IL,103rd +Senate Concurs,2023-05-24,[],IL,103rd +Balanced Budget Note Request is Inapplicable,2023-05-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-10-25,[],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2023-05-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-19,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Brad Stephens,2023-05-19,[],IL,103rd +Sponsor Removed Sen. Erica Harriss,2023-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +Removed Co-Sponsor Rep. Jay Hoffman,2024-04-16,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Executive Committee,2023-05-26,[],IL,103rd +House Floor Amendment No. 1 Balanced Budget Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added Chief Co-Sponsor Rep. Eva-Dina Delgado,2023-05-25,[],IL,103rd +House Floor Amendment No. 4 Motion To Concur Recommended Do Adopt State Government; 008-000-000,2023-05-17,[],IL,103rd +Arrived in House,2023-05-18,['introduction'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Balanced Budget Note Requested by Rep. Kevin John Olickal,2024-05-22,[],IL,103rd +Governor Approved,2023-06-30,['executive-signature'],IL,103rd +Judicial Note Request is Inapplicable,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0019,2023-06-09,['became-law'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-06-01,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Third Reading - Passed; 057-000-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Maura Hirschauer,2023-05-11,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-04-11,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve McClure,2024-05-24,[],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-05-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2024-05-30,[],IL,103rd +Rule 3-9(a) / Re-referred to Assignments,2023-05-26,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 075-039-000,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0346,2023-07-28,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Blaine Wilhour,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2023-05-17,[],IL,103rd +Added Chief Co-Sponsor Rep. Wayne A Rosenthal,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Harry Benton,2023-05-12,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-12,[],IL,103rd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Mark L. Walker,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2023-11-08,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Kam Buckner,2023-11-08,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Judiciary,2024-05-23,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2024-05-20,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-0841,2024-08-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Steven Reick,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0899,2024-08-09,['became-law'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-21,[],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +House Floor Amendment No. 4 Tabled,2024-05-22,['amendment-failure'],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2024-04-19,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Anna Moeller,2024-04-16,['amendment-introduction'],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2023-05-30,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2024-05-23,[],IL,103rd +Pension Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +Recalled to Second Reading,2023-05-25,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2024-05-09,[],IL,103rd +"Added as Alternate Chief Co-Sponsor Sen. Emil Jones, III",2023-05-18,[],IL,103rd +Waive Posting Notice,2023-05-17,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +"Senate Floor Amendment No. 5 Motion to Concur Recommends Be Adopted Transportation: Regulations, Roads & Bridges; 011-006-000",2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-05-17,[],IL,103rd +Governor Approved,2023-06-27,['executive-signature'],IL,103rd +Senate Committee Amendment No. 2 House Concurs 074-039-000,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-05,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2024-05-09,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-05-20,[],IL,103rd +Passed Both Houses,2024-05-22,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Will Guzzardi,2023-11-08,[],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. Terra Costa Howard,2023-05-10,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-001,2023-05-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-05-28,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Judiciary; 005-001-000,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2024-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0896,2024-08-09,['became-law'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 24, 2024",2024-05-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +House Committee Amendment No. 1 Adopted in Human Services Committee; by Voice Vote,2024-05-20,['amendment-passage'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Assigned to Executive,2024-04-30,['referral-committee'],IL,103rd +Senate Floor Amendment No. 4 Be Approved for Consideration Assignments,2024-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2, 3, 4",2024-05-26,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 107-002-000,2023-05-19,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-10-11,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Harry Benton,2023-05-12,[],IL,103rd +"Motion Withdrawn Rep. Emanuel ""Chris"" Welch",2024-06-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-05-12,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 007-004-000,2023-05-25,[],IL,103rd +Third Reading - Short Debate - Passed 084-025-000,2023-05-03,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 2 House Concurs 075-039-000,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Swanson,2023-05-18,[],IL,103rd +Racial Impact Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-04-16,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 3 Motion to Concur Referred to State Government Administration Committee,2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Adopted; Gillespie,2023-05-25,['amendment-passage'],IL,103rd +Motion to Reconsider Vote - Withdrawn Rep. Kelly M. Cassidy,2023-05-11,[],IL,103rd +House Floor Amendment No. 5 Motion to Concur Filed with Secretary Sen. Laura Fine,2024-05-25,['filing'],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 008-004-000,2024-05-25,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-02-28,[],IL,103rd +Senate Floor Amendment No. 4 House Concurs 103-001-000,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-18,[],IL,103rd +Amendatory Veto Motion - Motion Referred to Assignments,2023-11-07,[],IL,103rd +Public Act . . . . . . . . . 103-0297,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-04-17,[],IL,103rd +Added Co-Sponsor Rep. Tony M. McCombie,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-04-26,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Executive Committee,2023-05-26,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 107-000-000,2023-11-09,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2023-05-10,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 089-010-000,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0100,2023-06-12,['became-law'],IL,103rd +Senate Floor Amendment No. 1 Assignments Refers to Insurance,2023-05-02,[],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 012-000-000,2023-05-17,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-16,[],IL,103rd +Land Conveyance Appraisal Note Request is Inapplicable,2024-05-22,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-05-04,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 012-007-000,2024-05-28,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-18,[],IL,103rd +Recalled to Second Reading - Short Debate,2024-05-23,['reading-2'],IL,103rd +Removed Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2024-04-15,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-25,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to State Government Administration Committee,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2024-05-22,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 25, 2023",2023-05-25,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Public Act . . . . . . . . . 103-0914,2024-08-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-04-11,[],IL,103rd +Correctional Note Requested by Rep. Kevin John Olickal,2024-05-22,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-18,[],IL,103rd +House Floor Amendment No. 5 Motion To Concur Recommended Do Adopt State Government; 008-000-000,2023-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 073-040-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Mary Gill,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0356,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-06-14,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Correctional Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Public Health Committee,2024-04-17,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +"Effective Date June 30, 2023",2023-06-30,[],IL,103rd +Correctional Note Request is Inapplicable,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-10,[],IL,103rd +Sponsor Removed Sen. Tom Bennett,2023-05-24,[],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +Alternate Co-Sponsor Removed Rep. Jennifer Sanalitro,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tracy Katz Muhl,2024-04-17,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2023-11-01,[],IL,103rd +Public Act . . . . . . . . . 103-0867,2024-08-09,['became-law'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +Passed Both Houses,2023-05-24,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-10,['reading-3'],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-05-11,[],IL,103rd +Third Reading - Short Debate - Passed 073-040-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Rules Committee; 005-000-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-05-18,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Floor Amendment No. 4 Senate Concurs 055-000-000,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Barbara Hernandez,2023-05-18,[],IL,103rd +Fiscal Note Requested by Rep. Kevin John Olickal,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0167,2023-06-30,['became-law'],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-05-25,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-05-17,['amendment-failure'],IL,103rd +Re-referred to Assignments,2023-04-18,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2024-04-11,[],IL,103rd +Sponsor Removed Sen. Craig Wilcox,2023-05-24,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Fiscal Note Request is Inapplicable,2023-05-18,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Janet Yang Rohr,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2024-04-17,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-11-01,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2023-07-10,[],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-05-19,[],IL,103rd +Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +House Floor Amendment No. 5 Motion to Concur Referred to Assignments,2024-05-25,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 039-018-000,2024-05-26,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-05-19,[],IL,103rd +Arrive in Senate,2023-05-11,['introduction'],IL,103rd +House Floor Amendment No. 3 Withdrawn by Rep. Theresa Mah,2024-05-23,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2024-05-24,[],IL,103rd +Chief Sponsor Changed to Rep. Dave Vella,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-05-17,[],IL,103rd +Second Reading,2024-05-14,['reading-2'],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2024-05-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2023-05-05,[],IL,103rd +Senate Floor Amendment No. 5 House Concurs 074-039-000,2023-05-19,[],IL,103rd +"Effective Date June 27, 2023",2023-06-27,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-18,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-26,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2024-04-19,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 043-016-000,2024-05-24,[],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. Terra Costa Howard,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0912,2024-08-09,['became-law'],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-28,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-05-22,[],IL,103rd +Assigned to Judiciary,2024-05-23,['referral-committee'],IL,103rd +Do Pass as Amended / Short Debate Human Services Committee; 007-000-000,2024-05-20,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-05-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Michael J. Kelly,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2023-05-18,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 077-036-000,2023-05-18,[],IL,103rd +Motion Filed to Reconsider Vote Rep. Will Guzzardi,2023-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-05-12,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 007-004-000,2023-05-25,[],IL,103rd +Passed Both Houses,2024-06-03,[],IL,103rd +Amendatory Veto Motion - Motion Referred to Executive,2023-11-07,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2023-10-19,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Harry Benton,2024-05-22,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Arrived in House,2024-05-17,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Barbara Hernandez,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0959,2024-08-09,['became-law'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2024-05-25,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Third Reading - Passed; 033-019-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-24,[],IL,103rd +Chief Sponsor Changed to Sen. Cristina Castro,2023-05-18,[],IL,103rd +House Floor Amendment No. 3 Motion Filed to Table Rep. Rita Mayfield,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Kam Buckner,2024-05-28,[],IL,103rd +Passed Both Houses,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2023-05-26,[],IL,103rd +"Effective Date January 1, 2025",2023-08-04,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-04-26,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-02-28,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 089-010-000,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Filed with Secretary by Sen. Laura M. Murphy,2023-05-05,['amendment-introduction'],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0453,2023-08-04,['became-law'],IL,103rd +Do Pass Executive; 012-000-000,2023-05-17,['committee-passage'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Fiscal Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2023-05-04,[],IL,103rd +House Committee Amendment No. 1 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 012-002-000,2024-05-28,[],IL,103rd +State Mandates Fiscal Note Request is Inapplicable,2024-05-22,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Executive Committee,2023-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Transportation,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-24,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2024-04-15,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Michael W. Halpin,2024-05-20,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Camille Y. Lilly,2024-04-15,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-24,['reading-3'],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 2 Referred to Assignments,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-02-28,[],IL,103rd +Public Act . . . . . . . . . 103-0454,2023-08-04,['became-law'],IL,103rd +House Floor Amendment No. 1 Home Rule Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2023-05-11,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-04-26,['amendment-passage'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-11-09,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2023-05-26,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-17,['reading-2'],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Lindsey LaPointe,2023-05-18,[],IL,103rd +Arrived in House,2023-05-17,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2024-05-24,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 3",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2023-05-19,[],IL,103rd +Sponsor Removed Sen. Jil Tracy,2023-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. David Friess,2024-05-25,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-10-24,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0843,2024-08-09,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Kam Buckner,2024-05-28,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Transportation; 011-000-000,2023-05-16,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Rules Refers to Personnel & Pensions Committee,2023-05-10,[],IL,103rd +Pension Note Request is Inapplicable,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Executive Committee,2023-05-26,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 012-007-000,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bob Morgan,2023-05-12,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Home Rule Note Request is Inapplicable,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Executive Committee; 008-004-000,2023-05-19,['committee-passage-favorable'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Justin Slaughter,2023-11-01,['amendment-introduction'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-04-23,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Ann M. Williams,2024-05-24,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Re-assigned to Education,2023-04-18,['referral-committee'],IL,103rd +House Floor Amendment No. 5 Senate Concurs 055-000-000,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-12,[],IL,103rd +House Floor Amendment No. 2 Tabled,2023-05-17,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +Home Rule Note Requested by Rep. Kevin John Olickal,2024-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-05-18,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Balanced Budget Note Filed as Amended,2023-05-12,[],IL,103rd +Motion Filed To Reconsider the Vote on Motion Rep. Kelly M. Cassidy,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-04-11,[],IL,103rd +Amendatory Veto Motion - Accept Motion Recommends Do Adopt Assignments; 010-000-000,2023-11-08,[],IL,103rd +Motion to Reconsider Vote - Withdrawn Rep. Will Guzzardi,2023-05-03,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-10-24,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 072-030-000,2023-05-25,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to State Government Administration Committee,2023-05-17,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-11-09,[],IL,103rd +Sent to the Governor,2024-06-06,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2023-05-18,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-05-17,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-14,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0105,2023-06-27,['became-law'],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Seth Lewis,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-05-25,[],IL,103rd +Third Reading - Passed; 037-019-000,2023-05-25,"['passage', 'reading-3']",IL,103rd +Placed on Calendar Order of First Reading,2023-05-11,['reading-1'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2024-05-26,[],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-04-16,['reading-2'],IL,103rd +House Floor Amendment No. 4 Adopted,2024-05-23,['amendment-passage'],IL,103rd +Do Pass Executive; 012-000-000,2024-05-09,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Dave Vella,2024-05-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura M. Murphy,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2023-05-19,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-23,[],IL,103rd +House Committee Amendment No. 2 Tabled,2024-05-20,['amendment-failure'],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-26,[],IL,103rd +Judicial Note Requested - Withdrawn by Rep. Terra Costa Howard,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-22,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2024-05-28,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-23,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +"Effective Date August 9, 2024",2024-08-09,[],IL,103rd +Senate Committee Amendment No. 1 Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Sent to the Governor,2024-06-20,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0797,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-11-08,[],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. Terra Costa Howard,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-26,[],IL,103rd +Added as Co-Sponsor Sen. Jason Plummer,2023-09-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jenn Ladisch Douglass,2024-04-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. David Koehler,2023-05-25,[],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Anna Moeller,2024-04-17,['amendment-introduction'],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-04-18,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-05-25,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-05-11,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2023-11-09,[],IL,103rd +3/5 Vote Required,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2023-10-24,[],IL,103rd +Arrive in Senate,2023-05-04,['introduction'],IL,103rd +Senate Floor Amendment No. 2 House Concurs 072-030-000,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-17,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to State Government Administration Committee,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. John M. Cabello,2023-11-08,[],IL,103rd +Governor Approved,2024-08-05,['executive-signature'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-05,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2024-05-14,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 063-041-000,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Dave Vella,2024-05-28,[],IL,103rd +Alternate Chief Co-Sponsor Changed to Sen. Laura M. Murphy,2024-05-24,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 14, 2024",2024-05-09,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-23,['reading-3'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 057-000-000,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2023-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Gong-Gershowitz,2023-05-18,[],IL,103rd +Racial Impact Note Request is Inapplicable,2024-05-22,[],IL,103rd +Balanced Budget Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +First Reading,2023-05-12,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-05-04,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 012-007-000,2024-05-28,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2023-10-24,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Jennifer Gong-Gershowitz,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2023-05-19,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0386,2023-08-02,['became-law'],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 007-004-000,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-25,['amendment-passage'],IL,103rd +Added Chief Co-Sponsor Rep. Mary Beth Canty,2024-05-25,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Kevin John Olickal,2023-05-18,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Seth Lewis,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-21,[],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Added Alternate Chief Co-Sponsor Rep. Carol Ammons,2024-04-15,[],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mary Beth Canty,2023-05-26,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +House Floor Amendment No. 1 Housing Affordability Impact Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2023-05-11,[],IL,103rd +Added Chief Co-Sponsor Rep. Lakesia Collins,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-02-28,[],IL,103rd +Passed Both Houses,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-05-08,[],IL,103rd +Do Pass as Amended Executive; 008-003-000,2023-04-27,['committee-passage'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 080-034-000,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0307,2023-07-28,['became-law'],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Kam Buckner,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-04-11,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2024-04-19,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 3,2023-05-17,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +"Effective Date January 1, 2025",2023-08-11,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-05-12,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. Kevin John Olickal,2024-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-04-18,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Ann M. Williams,2024-05-24,[],IL,103rd +Housing Affordability Impact Note Request is Inapplicable,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-04-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-19,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. La Shawn K. Ford,2023-05-19,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-04-17,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-11-01,[],IL,103rd +Motion to Reconsider Vote - Withdrawn Rep. Kelly M. Cassidy,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Balanced Budget Note Filed as Amended,2023-05-12,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-12,['amendment-passage'],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-15,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0530,2023-08-11,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-24,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0450,2023-08-04,['became-law'],IL,103rd +Judicial Note Requested by Rep. Kevin John Olickal,2024-05-22,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 3 - May 18, 2023",2023-05-17,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-11,[],IL,103rd +Judicial Note Request is Inapplicable,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0462,2023-08-04,['became-law'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. John M. Cabello,2024-04-17,[],IL,103rd +Added as Chief Co-Sponsor Sen. Bill Cunningham,2023-11-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-04-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-14,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 078-030-003,2024-05-23,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Dave Vella,2024-05-28,[],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +"Effective Date August 5, 2024",2024-08-05,[],IL,103rd +Accept Amendatory Veto - Senate Passed 053-000-000,2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-18,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-11-08,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-10-24,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-05-18,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-17,[],IL,103rd +Approved for Consideration Rules Committee; 005-000-000,2024-04-02,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Mattie Hunter,2024-05-23,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-11-08,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. Yolonda Morris,2024-05-21,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Charles Meier,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-05-28,[],IL,103rd +Pension Note Requested - Withdrawn by Rep. Terra Costa Howard,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0810,2024-08-09,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0516,2023-08-11,['became-law'],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-18,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 3 Motion to Concur Recommends Be Adopted State Government Administration Committee; 006-001-000,2023-05-25,[],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2024-04-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Win Stoller,2023-05-05,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-05-17,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +Senate Floor Amendment No. 5 Motion Filed Concur Rep. Kam Buckner,2024-05-28,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Norma Hernandez,2024-04-15,[],IL,103rd +Added as Co-Sponsor Sen. Mark L. Walker,2024-05-21,[],IL,103rd +Public Act . . . . . . . . . 103-0723,2024-08-02,['became-law'],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. William ""Will"" Davis",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2023-05-26,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2023-05-18,[],IL,103rd +Placed on Calendar Order of First Reading,2023-05-04,['reading-1'],IL,103rd +Correctional Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +State Debt Impact Note Request is Inapplicable,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Recommends Be Adopted Revenue & Finance Committee; 012-007-000,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-25,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Referred to Rules Committee,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0369,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2024-05-24,[],IL,103rd +Added Chief Co-Sponsor Rep. Laura Faver Dias,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 035-018-000,2023-05-24,[],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. Katie Stuart,2023-05-19,['amendment-introduction'],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-10-24,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Jennifer Gong-Gershowitz,2024-05-20,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0379,2023-07-28,['became-law'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-25,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2023-02-28,[],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0422,2023-08-04,['became-law'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Will Guzzardi,2023-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 2 House Concurs 080-034-000,2023-05-18,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 2, 2023",2023-04-27,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-11-09,[],IL,103rd +House Floor Amendment No. 1 Judicial Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve McClure,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-05-26,[],IL,103rd +Second Reading,2023-05-02,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. John F. Curran,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-02-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Seth Lewis,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Land Conveyance Appraisal Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Lakesia Collins,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 4 House Concurs 080-034-000,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-11-09,[],IL,103rd +House Committee Amendment No. 1 Balanced Budget Note Request as Amended is Inapplicable,2024-05-22,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Home Rule Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 073-038-000,2023-05-27,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-05-25,[],IL,103rd +Motion Filed to Reconsider Vote Rep. Jennifer Gong-Gershowitz,2024-05-29,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2024-04-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Paul Faraci,2024-05-22,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-20,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-25,['reading-3'],IL,103rd +Public Act . . . . . . . . . 103-0951,2024-08-09,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Lindsey LaPointe,2023-05-17,[],IL,103rd +Senate Concurs,2023-05-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Removed Co-Sponsor Rep. Kelly M. Burke,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2024-05-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2023-11-06,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-05-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-19,[],IL,103rd +Land Conveyance Appraisal Note Request is Inapplicable,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-04-24,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Rules Committee; 003-001-000,2023-05-19,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2024-04-17,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-24,[],IL,103rd +Both Houses Accepted Amendatory Veto,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Agriculture & Conservation Committee,2023-05-17,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-04-18,[],IL,103rd +Public Act . . . . . . . . . 103-0364,2023-07-28,['became-law'],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. David Koehler,2023-05-18,['filing'],IL,103rd +Senate Floor Amendment No. 1 House Concurs 100-007-000,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Adopted,2023-05-12,['amendment-passage'],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +Governor Approved,2024-07-31,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2024-04-11,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2023-05-05,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Police & Fire Committee; 014-000-000,2023-05-18,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-04-19,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-30,[],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2023-05-19,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - October 26, 2023",2023-10-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Randy E. Frese,2023-05-19,[],IL,103rd +Racial Impact Note Requested - Withdrawn by Rep. Terra Costa Howard,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2024-05-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-04-02,['reading-2'],IL,103rd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Dave Vella,2024-05-28,[],IL,103rd +Sponsor Removed Sen. Javier L. Cervantes,2024-05-16,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 2 Tabled,2024-05-23,['amendment-failure'],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-05-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-11-08,[],IL,103rd +Chief Senate Sponsor Sen. David Koehler,2023-05-04,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted State Government Administration Committee; 009-000-000,2023-05-18,[],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Kevin John Olickal,2024-05-22,[],IL,103rd +Public Act . . . . . . . . . 103-0781,2024-08-05,['became-law'],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jed Davis,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2023-10-25,[],IL,103rd +Motion Filed to Reconsider Vote Rep. Natalie A. Manley,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-05-25,[],IL,103rd +House Floor Amendment No. 5 Motion to Concur Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-05-25,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Human Services Committee,2024-04-17,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-11,[],IL,103rd +House Floor Amendment No. 4 Rules Refers to Human Services Committee,2024-04-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Tom Bennett,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Barbara Hernandez,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0470,2023-08-04,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2023-05-11,[],IL,103rd +House Floor Amendment No. 3 Tabled,2024-05-23,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Senate Floor Amendment No. 5 Filed with Secretary by Sen. Don Harmon,2024-05-26,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2024-04-15,[],IL,103rd +"Effective Date July 28, 2023; ; Some Provisions",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Police & Fire Committee; 014-000-000,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-05,[],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-05-28,[],IL,103rd +Chief Sponsor Changed to Sen. Don Harmon,2023-11-08,[],IL,103rd +"Rule 2-10 Committee/3rd Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 4 Rules Refers to Labor & Commerce Committee,2024-04-02,[],IL,103rd +House Floor Amendment No. 4 Rules Refers to Ethics & Elections,2023-05-19,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Rachel Ventura,2023-10-25,['filing'],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. Terra Costa Howard,2023-05-10,[],IL,103rd +Added Chief Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2023-11-08,[],IL,103rd +Pension Note Requested by Rep. Kevin John Olickal,2024-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-10-26,[],IL,103rd +First Reading,2023-05-04,['reading-1'],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-11-09,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Motion to Reconsider Vote - Withdrawn Rep. Natalie A. Manley,2023-05-27,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2024-05-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2024-05-24,[],IL,103rd +Passed Both Houses,2023-05-24,[],IL,103rd +"Effective Date August 9, 2024; Some Provisions;",2024-08-09,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Personnel & Pensions Committee,2023-11-07,[],IL,103rd +House Floor Amendment No. 2 Motion Filed to Table Rep. Rita Mayfield,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-11-09,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 3, 2023",2023-05-02,['reading-3'],IL,103rd +House Floor Amendment No. 1 Pension Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-05-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Donald P. DeWitte,2023-05-17,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-02-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2023-05-09,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-05-04,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-05-12,[],IL,103rd +House Committee Amendment No. 1 Correctional Note Request as Amended is Inapplicable,2024-05-22,[],IL,103rd +Motion to Reconsider Vote - Prevails 067-042-000,2024-05-29,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 073-038-000,2023-05-27,[],IL,103rd +Added as Co-Sponsor Sen. Dave Syverson,2023-05-19,[],IL,103rd +Housing Affordability Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tony M. McCombie,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-04-11,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-24,[],IL,103rd +Sent to the Governor,2023-12-07,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-04-18,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2023-05-18,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Agriculture & Conservation Committee,2023-05-17,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 069-038-001,2023-05-26,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Pension Note Request is Inapplicable,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Burke,2024-04-17,[],IL,103rd +House Floor Amendment No. 1 Balanced Budget Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Immigration & Human Rights Committee,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0919,2024-08-09,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-04-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Adopted,2023-05-12,['amendment-passage'],IL,103rd +"Effective Date January 1, 2025",2024-07-31,[],IL,103rd +Third Reading - Short Debate - Passed 072-037-000,2024-04-18,"['passage', 'reading-3']",IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Note / Motion Filed - Note Act Does Not Apply Rep. Maura Hirschauer,2023-05-12,[],IL,103rd +Public Act . . . . . . . . . 103-0722,2024-07-31,['became-law'],IL,103rd +House Floor Amendment No. 3 Tabled,2024-04-18,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-25,[],IL,103rd +Governor Certifies Changes,2023-12-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-04-18,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to State Government,2023-05-18,[],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 069-038-001,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-11-09,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2024-04-11,[],IL,103rd +House Floor Amendment No. 1 Correctional Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-21,['reading-2'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Immigration & Human Rights Committee,2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-19,[],IL,103rd +Racial Impact Note Request is Inapplicable,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2024-04-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-10,['reading-3'],IL,103rd +Referred to Assignments,2023-05-04,[],IL,103rd +Public Act . . . . . . . . . 103-0315,2023-07-28,['became-law'],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-05-17,[],IL,103rd +Passed Both Houses,2023-05-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2023-11-08,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 108-000-001,2023-05-19,[],IL,103rd +Racial Impact Note Requested by Rep. Kevin John Olickal,2024-05-22,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Police & Fire Committee; 014-000-000,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2024-05-17,[],IL,103rd +"Effective Date January 1, 2024; ; Some Provisions",2023-07-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-05,[],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-19,[],IL,103rd +First Reading,2024-04-15,['reading-1'],IL,103rd +First Reading,2023-05-11,['reading-1'],IL,103rd +House Committee Amendment No. 2 Senate Concurs 043-012-002,2024-05-26,[],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Human Services Committee; 009-000-000,2024-04-18,['committee-passage-favorable'],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-05-25,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 5 Referred to Assignments,2024-05-26,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Arrive in Senate,2024-05-23,['introduction'],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +Chief Sponsor Changed to Sen. Julie A. Morrison,2023-05-19,[],IL,103rd +Motion to Reconsider Vote - Withdrawn Rep. Ann M. Williams,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-04-19,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-10-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Adam M. Niemerg,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-04-15,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2024-05-24,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-11,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-02,[],IL,103rd +Senate Floor Amendment No. 2 Assignments Refers to Insurance,2023-05-09,[],IL,103rd +House Floor Amendment No. 1 Racial Impact Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-10-26,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-11-09,[],IL,103rd +"Added Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Tim Ozinga,2023-02-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura M. Murphy,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 Motion Filed to Table Rep. Rita Mayfield,2024-05-25,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2024-04-17,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Terri Bryant,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Rules Referred to Judiciary - Civil Committee,2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-26,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +"Effective Date January 1, 2025; Some Provisions",2024-08-09,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2023-11-07,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Assigned to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-05-12,['referral-committee'],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2023-05-18,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Motion to Suspend Rule,2024-05-29,[],IL,103rd +House Concurs,2023-05-27,[],IL,103rd +House Committee Amendment No. 1 Fiscal Note Request as Amended is Inapplicable,2024-05-22,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-04,[],IL,103rd +Judicial Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0547,2023-08-11,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-04,[],IL,103rd +House Committee Amendment No. 1 Home Rule Note Request as Amended is Inapplicable,2024-05-22,[],IL,103rd +"House Committee Amendment No. 1 Filed with Clerk by Rep. Maurice A. West, II",2023-05-12,['amendment-introduction'],IL,103rd +Land Conveyance Appraisal Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-05-18,[],IL,103rd +Motion to Suspend Rule Prevailed 065-040-000,2024-05-29,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-25,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Passed Both Houses,2023-05-27,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Health Care Licenses Committee,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Tom Bennett,2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0941,2024-08-09,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2024-04-18,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Judiciary - Civil Committee,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-05-28,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Personnel & Pensions Committee; 009-001-001,2023-11-07,['committee-passage-favorable'],IL,103rd +Added as Co-Sponsor Sen. Mike Simmons,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-11-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-02,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jennifer Gong-Gershowitz,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 Recommend Do Adopt Insurance; 008-000-000,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 State Debt Impact Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-02-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Third Reading - Short Debate - Passed 072-040-001,2023-05-10,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Immigration & Human Rights Committee; 007-004-000,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-04-26,[],IL,103rd +House Floor Amendment No. 3 Rules Refers to Human Services Committee,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Doris Turner,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Cyril Nichols,2023-05-19,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +House Floor Amendment No. 1 Fiscal Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +State Debt Impact Note Request is Inapplicable,2023-05-18,[],IL,103rd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt State Government; 006-003-000,2023-05-18,[],IL,103rd +House Concurs,2023-05-26,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-11-09,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0535,2023-08-11,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-04-19,[],IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2023-05-24,[],IL,103rd +"Effective Date January 1, 2024",2023-12-08,[],IL,103rd +Public Act . . . . . . . . . 103-0323,2023-07-28,['became-law'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Agriculture & Conservation Committee; 008-000-000,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0465,2023-08-04,['became-law'],IL,103rd +House Floor Amendment No. 4 Tabled,2024-04-18,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-25,[],IL,103rd +Motion Prevailed 066-039-000,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2024-04-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Caulkins,2023-05-19,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Ethics & Elections; 010-006-000,2023-05-19,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2024-04-15,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2023-10-25,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2024-01-10,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-25,[],IL,103rd +Referred to Assignments,2023-05-11,[],IL,103rd +House Floor Amendment No. 3 Senate Concurs 043-012-002,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2024-04-18,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. John M. Cabello,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 2 House Concurs 108-000-001,2023-05-19,[],IL,103rd +State Debt Impact Note Requested by Rep. Kevin John Olickal,2024-05-22,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-05-04,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0281,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-05,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Referred to Rules Committee,2024-04-15,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Placed on Calendar Order of First Reading,2024-05-23,['reading-1'],IL,103rd +Senate Floor Amendment No. 5 Be Approved for Consideration Assignments,2024-05-26,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2024-05-24,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +State Mandates Fiscal Note Requested by Rep. Kevin John Olickal,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-11-08,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 108-000-000,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. William E Hauter,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0434,2023-08-04,['became-law'],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2023-05-04,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 007-004-000,2023-10-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Cassidy,2024-04-19,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Katie Stuart,2023-05-19,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - January 10, 2024",2024-01-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0800,2024-08-09,['became-law'],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2024-04-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nicole La Ha,2024-05-24,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-25,[],IL,103rd +House Floor Amendment No. 5 Senate Concurs 043-012-002,2024-05-26,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2024-04-18,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-05-18,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-04-16,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Sent to the Governor,2024-06-12,['executive-receipt'],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 Housing Affordability Impact Note Request as Amended is Inapplicable,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-25,[],IL,103rd +Racial Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-04,[],IL,103rd +House Committee Amendment No. 1 Referred to Rules Committee,2023-05-12,[],IL,103rd +Removed Co-Sponsor Rep. Brad Halbrook,2023-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 060-047-000,2024-05-29,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2024-04-18,[],IL,103rd +Chief Sponsor Changed to Sen. Robert F. Martwick,2023-11-07,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Licenses Committee; 009-002-000,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 013-000-000,2024-05-21,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-05-28,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2023-02-28,[],IL,103rd +House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2023-05-02,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-05-05,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dale Fowler,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Brandun Schweizer,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2023-11-09,[],IL,103rd +Public Act . . . . . . . . . 103-0570,2023-12-08,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-04-19,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Passed Both Houses,2023-05-26,[],IL,103rd +House Floor Amendment No. 3 Senate Concurs 037-018-000,2023-05-19,[],IL,103rd +"Effective Date July 28, 2023",2023-07-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2024-04-26,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Immigration & Human Rights Committee; 007-004-000,2024-05-25,[],IL,103rd +State Mandates Fiscal Note Request is Inapplicable,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Home Rule Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Recommends Be Adopted Human Services Committee; 009-000-000,2024-05-22,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Health Care Availability & Accessibility Committee; 006-003-000,2023-05-19,['committee-passage-favorable'],IL,103rd +Correctional Note Request is Inapplicable,2023-05-12,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +Arrived in House,2023-05-25,['introduction'],IL,103rd +Fiscal Note Request is Inapplicable,2023-05-12,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-25,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2023-11-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2023-04-20,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-18,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2024-04-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-05-24,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 069-033-000,2024-05-25,[],IL,103rd +House Floor Amendment No. 3 Adopted,2024-05-24,['amendment-passage'],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-19,['reading-2'],IL,103rd +House Floor Amendment No. 1 Housing Affordability Impact Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0381,2023-07-28,['became-law'],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-05-18,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-04-16,[],IL,103rd +Third Reading - Passed; 046-009-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2024-04-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-05-19,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 037-018-000,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-04-19,[],IL,103rd +First Reading,2024-05-24,['reading-1'],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2024-04-11,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2024-05-26,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 060-047-000,2024-05-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 108-000-000,2023-05-19,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Do Pass / Short Debate State Government Administration Committee; 006-002-000,2024-05-22,['committee-passage'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2023-05-25,[],IL,103rd +House Floor Amendment No. 4 Adopted,2024-04-18,['amendment-passage'],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +House Floor Amendment No. 2 Balanced Budget Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Judiciary - Civil Committee,2023-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-05-18,[],IL,103rd +"Effective Date January 1, 2025",2023-08-11,[],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-11-09,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-05-05,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-11,[],IL,103rd +Third Reading - Passed; 038-018-000,2023-05-04,"['passage', 'reading-3']",IL,103rd +State Debt Impact Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0374,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-30,[],IL,103rd +House Committee Amendment No. 1 Judicial Note Request as Amended is Inapplicable,2024-05-22,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Robert ""Bob"" Rita",2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Suzanne M. Ness,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +Governor Approved,2023-06-07,['executive-signature'],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +House Floor Amendment No. 3 Adopted,2023-11-09,['amendment-passage'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Chief Co-Sponsor Rep. Camille Y. Lilly,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 074-037-000,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Rule 19(c) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 013-000-000,2024-05-21,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Aaron M. Ortiz,2024-04-18,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Chief Co-Sponsor Rep. Tony M. McCombie,2024-05-28,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2024-04-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-09,['reading-3'],IL,103rd +Senate Committee Amendment No. 2 House Concurs 112-000-000,2024-05-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Daniel Didech,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Randy E. Frese,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +"Effective Date June 7, 2023; ; Some Provisions",2023-06-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2023-05-04,[],IL,103rd +House Committee Amendment No. 1 Land Conveyance Appraisal Note Request as Amended is Inapplicable,2024-05-22,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +State Mandates Fiscal Note Requested by Rep. Ryan Spain,2023-05-10,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Floor Amendment No. 2 Correctional Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-05-05,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-05-16,[],IL,103rd +"Added Co-Sponsor Rep. Lamont J. Robinson, Jr.",2023-02-28,[],IL,103rd +Public Act . . . . . . . . . 103-0531,2023-08-11,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-05,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brandun Schweizer,2024-05-24,[],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +House Floor Amendment No. 1 Judicial Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Adopted,2023-05-19,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 House Concurs 069-033-000,2024-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Christopher Belt,2023-05-24,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-24,['reading-3'],IL,103rd +Third Reading - Short Debate - Passed 077-037-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Christopher Belt,2024-05-01,[],IL,103rd +Chief Senate Sponsor Sen. Lakesia Collins,2024-04-19,[],IL,103rd +Home Rule Note Request is Inapplicable,2023-05-12,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-25,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-04-20,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0544,2023-08-15,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0357,2023-07-28,['became-law'],IL,103rd +Sent to the Governor,2023-11-27,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-11-09,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Senate Committee Amendment No. 3 House Concurs 063-034-001,2023-05-25,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2024-04-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Executive Committee,2024-05-28,[],IL,103rd +Referred to Assignments,2024-05-24,[],IL,103rd +Recalled to Second Reading,2024-05-26,['reading-2'],IL,103rd +Senate Floor Amendment No. 1 House Concurs 112-000-000,2023-05-18,[],IL,103rd +Passed Both Houses,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Thaddeus Jones,2024-04-16,[],IL,103rd +Recalled to Second Reading,2023-05-11,['reading-2'],IL,103rd +Public Act . . . . . . . . . 103-0518,2023-08-11,['became-law'],IL,103rd +Senate Concurs,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-10,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Lilian Jiménez,2023-05-19,[],IL,103rd +House Floor Amendment No. 4 Re-assigned to Rules Committee,2024-04-30,['referral-committee'],IL,103rd +"Added Alternate Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-05-19,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Senate Floor Amendment No. 3 House Concurs 060-047-000,2024-05-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jackie Haas,2023-05-18,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Alternate Chief Sponsor Changed to Sen. Don Harmon,2023-06-12,[],IL,103rd +"Effective Date January 1, 2025",2023-08-11,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 4 House Concurs 060-047-000,2024-05-29,[],IL,103rd +Public Act . . . . . . . . . 103-0539,2023-08-11,['became-law'],IL,103rd +Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Lance Yednock,2024-04-16,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Murphy,2023-05-11,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 House Concurs 112-000-000,2023-05-18,[],IL,103rd +House Concurs,2023-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Adriane Johnson,2024-05-26,[],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Executive Committee,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Adopted; Harmon,2024-05-26,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-05-31,[],IL,103rd +"Added Alternate Chief Co-Sponsor Rep. Maurice A. West, II",2023-05-19,[],IL,103rd +Alternate Chief Sponsor Changed to Rep. Jay Hoffman,2024-05-14,[],IL,103rd +Passed Both Houses,2023-11-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2023-05-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-10,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0751,2024-08-02,['became-law'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0824,2024-08-09,['became-law'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 112-000-000,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0818,2024-08-09,['became-law'],IL,103rd +3/5 Vote Required,2023-11-09,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2024-04-19,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2023-05-18,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +"Effective Date July 1, 2023; ; Some Provisions",2023-06-07,[],IL,103rd +House Committee Amendment No. 1 Pension Note Request as Amended is Inapplicable,2024-05-22,[],IL,103rd +"House Committee Amendment No. 2 Filed with Clerk by Rep. Maurice A. West, II",2023-05-16,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Terra Costa Howard,2023-05-18,[],IL,103rd +Passed Both Houses,2023-11-08,[],IL,103rd +Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-04,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2023-05-05,[],IL,103rd +House Floor Amendment No. 2 Fiscal Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Public Act . . . . . . . . . 103-0280,2023-08-01,['became-law'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Wayne A Rosenthal,2023-02-28,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +Arrived in House,2023-05-08,['introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-04,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2023-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-12-07,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-04-20,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 Land Conveyance Appraisal Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jil Tracy,2024-05-01,[],IL,103rd +Third Reading - Short Debate - Passed 110-000-000,2024-05-24,"['passage', 'reading-3']",IL,103rd +Added as Co-Sponsor Sen. Steve Stadelman,2023-05-24,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-19,['reading-3'],IL,103rd +Judicial Note Request is Inapplicable,2023-05-12,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Senate Floor Amendment No. 1 Motion Filed Concur Rep. Robyn Gabel,2023-05-25,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-25,[],IL,103rd +Land Conveyance Appraisal Note Request is Inapplicable,2023-05-12,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-04-21,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Burke,2023-05-26,[],IL,103rd +Governor Approved,2023-12-08,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-05-04,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Pension Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-05-24,[],IL,103rd +Third Reading - Short Debate - Passed 070-034-001,2023-05-19,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Sue Rezin,2024-05-01,[],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Sheehan,2024-04-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Chris Miller,2023-05-19,[],IL,103rd +Sent to the Governor,2023-12-01,['executive-receipt'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-10,[],IL,103rd +Alternate Chief Co-Sponsor Removed Rep. Harry Benton,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Mary Edly-Allen,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2023-05-11,[],IL,103rd +Motion Filed to Reconsider Vote Rep. Abdelnasser Rashid,2023-05-26,[],IL,103rd +Housing Affordability Impact Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +Senate Floor Amendment No. 5 House Concurs 060-047-000,2024-05-29,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-22,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-25,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-04-16,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 112-000-000,2023-05-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2024-05-31,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 4 Withdrawn by Sen. Don Harmon,2024-05-26,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Executive Committee,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-02-28,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 010-004-000,2023-05-16,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Home Rule Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. John F. Curran,2023-05-05,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 19, 2023",2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2024-04-19,[],IL,103rd +Third Reading - Short Debate - Passed 094-008-001,2023-11-09,"['passage', 'reading-3']",IL,103rd +House Concurs,2024-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-25,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 24, 2024",2024-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-05-24,[],IL,103rd +House Committee Amendment No. 2 Referred to Rules Committee,2023-05-16,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-10,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Lindsey LaPointe,2023-05-18,[],IL,103rd +Governor Approved,2023-06-16,['executive-signature'],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +"Effective Date January 1, 2024; ; Some Provisions",2023-06-07,[],IL,103rd +House Committee Amendment No. 1 Racial Impact Note Request as Amended is Inapplicable,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-05-04,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-05-18,[],IL,103rd +Sent to the Governor,2023-11-15,['executive-receipt'],IL,103rd +Public Act . . . . . . . . . 103-0008,2023-06-07,['became-law'],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Personnel & Pensions Committee; 006-003-000,2023-05-11,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-05-18,[],IL,103rd +"Effective Date June 16, 2023",2023-06-16,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-04,[],IL,103rd +Added as Co-Sponsor Sen. Patrick J. Joyce,2023-11-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0546,2023-08-11,['became-law'],IL,103rd +House Committee Amendment No. 1 State Debt Impact Note Request as Amended is Inapplicable,2024-05-22,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2024-04-19,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 109-000-000,2024-05-28,[],IL,103rd +Added as Co-Sponsor Sen. Javier L. Cervantes,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-05,[],IL,103rd +"Added Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Kelly M. Cassidy,2023-05-26,[],IL,103rd +House Floor Amendment No. 2 Housing Affordability Impact Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-02-28,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2024-05-25,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Dagmara Avelar,2024-05-24,[],IL,103rd +House Floor Amendment No. 5 Filed with Clerk by Rep. Katie Stuart,2023-05-24,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2024-05-01,[],IL,103rd +House Floor Amendment No. 1 Racial Impact Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brandun Schweizer,2024-04-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Natalie Toro,2024-05-26,[],IL,103rd +Assigned to Insurance,2024-04-30,['referral-committee'],IL,103rd +Racial Impact Note Request is Inapplicable,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-05-25,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-11-09,[],IL,103rd +"Effective Date August 4, 2023",2023-08-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-05-04,[],IL,103rd +"Effective Date December 8, 2023",2023-12-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2023-04-25,[],IL,103rd +Senate Floor Amendment No. 5 Adopted; Harmon,2024-05-26,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2024-04-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2024-05-31,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Rules Referred to Executive Committee,2024-05-28,[],IL,103rd +House Concurs,2024-05-29,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Abdelnasser Rashid,2024-05-23,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-11-09,[],IL,103rd +Added as Co-Sponsor Sen. Cristina Castro,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Blaine Wilhour,2023-05-19,[],IL,103rd +Governor Approved,2023-12-08,['executive-signature'],IL,103rd +Alternate Co-Sponsor Removed Rep. Janet Yang Rohr,2024-05-14,[],IL,103rd +Motion to Reconsider Vote - Withdrawn Rep. Abdelnasser Rashid,2023-05-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2023-05-11,[],IL,103rd +Judicial Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +Added as Co-Sponsor Sen. Mike Porfirio,2024-06-05,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Jennifer Gong-Gershowitz,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2024-04-16,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-11,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2024-04-16,[],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-09,[],IL,103rd +Senate Floor Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-11,['amendment-failure'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-05-10,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 2, 3",2023-11-09,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Celina Villanueva,2023-05-18,['filing'],IL,103rd +"Effective Date June 1, 2024",2023-12-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Halbrook,2023-05-19,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Stephanie A. Kifowit,2024-05-14,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2024-04-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2024-06-03,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-26,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-29,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 27, 2024",2024-05-24,[],IL,103rd +Land Conveyance Appraisal Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2024-04-30,[],IL,103rd +Passed Both Houses,2023-05-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-25,[],IL,103rd +Sent to the Governor,2024-06-18,['executive-receipt'],IL,103rd +Sent to the Governor,2024-06-07,['executive-receipt'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tracy Katz Muhl,2024-04-19,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 109-000-000,2024-05-28,[],IL,103rd +House Committee Amendment No. 2 Rules Refers to Elementary & Secondary Education: School Curriculum & Policies Committee,2023-05-17,[],IL,103rd +Land Conveyance Appraisal Note Filed,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-05-04,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tim Ozinga,2023-05-18,[],IL,103rd +House Committee Amendment No. 1 State Mandates Fiscal Note Request as Amended is Inapplicable,2024-05-22,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0101,2023-06-16,['became-law'],IL,103rd +Added as Co-Sponsor Sen. David Koehler,2023-11-17,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2023-05-05,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Judicial Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Cyril Nichols,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-11-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-08,[],IL,103rd +Postponed - Education,2023-04-26,[],IL,103rd +Public Act . . . . . . . . . 103-0480,2023-08-04,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0446,2023-08-04,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0568,2023-12-08,['became-law'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 19, 2023",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Harry Benton,2024-05-24,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +House Floor Amendment No. 5 Referred to Rules Committee,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 State Debt Impact Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2024-04-18,[],IL,103rd +State Mandates Fiscal Note Request is Inapplicable,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Referred to Insurance Committee,2023-05-26,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Re-assigned to Rules Committee,2023-05-26,['referral-committee'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-12,['reading-3'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 6, 2023",2023-04-28,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Doris Turner,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-11-09,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Gregg Johnson,2024-05-24,[],IL,103rd +Sponsor Removed Sen. Sue Rezin,2023-05-23,[],IL,103rd +House Floor Amendment No. 5 Recommends Be Adopted Rules Committee; 005-000-000,2023-05-24,['committee-passage-favorable'],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-04-18,[],IL,103rd +House Floor Amendment No. 1 State Mandates Fiscal Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Pension Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-11,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2024-04-30,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2024-04-11,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2024-06-04,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Judiciary - Civil Committee,2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-04-16,[],IL,103rd +Sent to the Governor,2023-05-23,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2023-05-11,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0581,2023-12-08,['became-law'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 3 - November 9, 2023",2023-11-09,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Sue Scherer,2024-05-14,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michelle Mussman,2023-05-19,[],IL,103rd +Assigned to Revenue & Finance Committee,2023-05-16,['referral-committee'],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2024",2024-05-26,[],IL,103rd +"Effective Date January 1, 2024",2023-08-04,[],IL,103rd +Sent to the Governor,2024-06-07,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Land Conveyance Appraisal Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-26,[],IL,103rd +"Effective Date January 1, 2024",2023-08-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dave Syverson,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Dave Severin,2023-02-28,[],IL,103rd +House Concurs,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0433,2023-08-04,['became-law'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Assigned to Child Care Accessibility & Early Childhood Education Committee,2024-04-24,['referral-committee'],IL,103rd +Governor Approved,2024-07-18,['executive-signature'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2024-05-25,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Tom Weber,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-22,[],IL,103rd +State Debt Impact Note Filed,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-17,[],IL,103rd +Governor Approved,2023-11-17,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Margaret Croke,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Eva-Dina Delgado,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Fred Crespo,2023-05-17,[],IL,103rd +Housing Affordability Impact Note Filed,2023-05-12,[],IL,103rd +Land Conveyance Appraisal Note Filed,2024-05-22,[],IL,103rd +"Effective Date November 17, 2023",2023-11-17,[],IL,103rd +Do Pass / Short Debate Child Care Accessibility & Early Childhood Education Committee; 012-000-000,2024-05-02,['committee-passage'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2024-05-24,[],IL,103rd +Passed Both Houses,2024-05-28,[],IL,103rd +Public Act . . . . . . . . . 103-0521,2023-08-11,['became-law'],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-02-28,[],IL,103rd +House Floor Amendment No. 2 Pension Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Patricia Van Pelt,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-17,[],IL,103rd +"Effective Date July 18, 2024",2024-07-18,[],IL,103rd +"Effective Date January 1, 2025",2024-08-02,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 012-000-000,2024-05-25,[],IL,103rd +Sponsor Removed Sen. Steve McClure,2023-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-05-24,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2024-04-19,[],IL,103rd +"Effective Date August 9, 2024; some provisions effective 1/1/25",2024-08-09,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-19,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 31, 2023",2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Withdrawn by Rep. Theresa Mah,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 004-000-000,2023-05-26,[],IL,103rd +Third Reading - Short Debate - Passed 070-036-000,2023-05-12,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-08,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2023-05-01,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-11-09,[],IL,103rd +House Committee Amendment No. 1 Rules Refers to Revenue & Finance Committee,2023-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0456,2023-08-04,['became-law'],IL,103rd +Governor Approved,2024-06-07,['executive-signature'],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Civil Committee; 010-004-000,2023-05-16,[],IL,103rd +Governor Approved,2023-06-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Jawaharial Williams,2024-04-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mattie Hunter,2023-05-11,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Governor Vetoed,2023-08-11,['executive-veto'],IL,103rd +Racial Impact Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-06-10,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-26,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-04-11,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2023-11-09,['filing'],IL,103rd +Motion Filed To Reconsider the Vote on Motion Rep. Kelly M. Cassidy,2023-05-10,[],IL,103rd +"Alternate Co-Sponsor Removed Rep. Robert ""Bob"" Rita",2024-05-14,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Celina Villanueva,2023-05-18,['filing'],IL,103rd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2023-11-09,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-10,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Kevin John Olickal,2024-05-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert F. Martwick,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2024-05-07,[],IL,103rd +State Debt Impact Note Requested - Withdrawn by Rep. Robyn Gabel,2024-04-18,[],IL,103rd +Placed on Calendar Total Veto,2023-10-24,[],IL,103rd +"Committee/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-16,[],IL,103rd +Assigned to Insurance Committee,2024-04-24,['referral-committee'],IL,103rd +"Effective Date June 9, 2023; ; Some Provisions",2023-06-09,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 074-038-000,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2024-06-11,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Executive Committee; 008-004-000,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 3 Tabled Pursuant to Rule 5-4(a),2024-05-26,['amendment-failure'],IL,103rd +House Floor Amendment No. 2 Senate Concurs 058-000-000,2024-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0651,2024-07-18,['became-law'],IL,103rd +Public Act . . . . . . . . . 103-0745,2024-08-02,['became-law'],IL,103rd +Sent to the Governor,2024-06-26,['executive-receipt'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-02,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-05-24,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-18,[],IL,103rd +"Effective Date June 7, 2024; some provisions effective July 1, 2024; some provisions effective January 1, 2025; some provisions effective July 1, 2025",2024-06-07,[],IL,103rd +Public Act . . . . . . . . . 103-0566,2023-11-17,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2023-05-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2023-05-17,[],IL,103rd +Balanced Budget Note Filed,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Nicholas K. Smith,2023-02-28,[],IL,103rd +House Floor Amendment No. 2 Racial Impact Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-05-05,[],IL,103rd +Added Co-Sponsor Rep. Aaron M. Ortiz,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2023-05-01,[],IL,103rd +Assigned to Health and Human Services,2023-05-09,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0859,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Celina Villanueva,2023-05-24,['filing'],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2024-05-21,[],IL,103rd +House Floor Amendment No. 4 Adopted,2023-05-24,['amendment-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2024-05-24,[],IL,103rd +Assigned to Insurance Committee,2024-04-24,['referral-committee'],IL,103rd +Judicial Note Filed,2023-05-22,[],IL,103rd +Added Co-Sponsor Rep. Lindsey LaPointe,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 1 House Concurs 071-037-001,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-05-12,[],IL,103rd +House Concurs,2023-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Kimberly A. Lightford,2023-05-01,['amendment-introduction'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Jeff Keicher,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tony M. McCombie,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0382,2023-07-28,['became-law'],IL,103rd +Balanced Budget Note Filed,2023-05-22,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2024-05-21,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-24,[],IL,103rd +House Floor Amendment No. 5 Adopted,2023-05-24,['amendment-passage'],IL,103rd +Do Pass / Short Debate Insurance Committee; 015-000-000,2024-04-30,['committee-passage'],IL,103rd +Arrived in House,2024-05-26,['introduction'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 090-019-000,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2024-06-11,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2024-04-11,[],IL,103rd +Motion Filed to Suspend Rule 21 Revenue & Finance Committee; Rep. Kam Buckner,2023-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-05-10,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2023-11-09,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-18,[],IL,103rd +House Floor Amendment No. 6 Filed with Clerk by Rep. Jay Hoffman,2024-05-16,['amendment-introduction'],IL,103rd +State Mandates Fiscal Note Requested - Withdrawn by Rep. Ryan Spain,2024-04-18,[],IL,103rd +Total Veto Stands - No Positive Action Taken,2023-11-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-05-11,[],IL,103rd +Arrived in House,2023-05-11,['introduction'],IL,103rd +Do Pass / Short Debate Insurance Committee; 015-000-000,2024-04-30,['committee-passage'],IL,103rd +"Effective Date January 1, 2024; ; Some Provisions",2023-06-09,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +"Added Chief Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-05-17,[],IL,103rd +House Floor Amendment No. 2 State Debt Impact Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2023-02-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Donald P. DeWitte,2023-05-09,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-06,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +"Third Reading Deadline Extended-Rule May 27, 2024",2024-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Randy E. Frese,2023-05-18,[],IL,103rd +Judicial Note Filed,2023-05-12,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0592,2024-06-07,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 084-022-003,2023-05-18,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-18,[],IL,103rd +"Added as Alternate Chief Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-06-10,[],IL,103rd +"Third Reading Deadline Extended-Rule May 31, 2024",2024-05-26,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 19, 2023",2023-05-12,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Ryan Spain,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2023-05-26,[],IL,103rd +"Removed Co-Sponsor Rep. Emanuel ""Chris"" Welch",2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Chapin Rose,2023-05-09,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +House Floor Amendment No. 2 Balanced Budget Note Requested as Amended by Rep. La Shawn K. Ford,2023-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2024-05-21,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-24,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-19,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 1, 3",2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-24,[],IL,103rd +Passed Both Houses,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-12,[],IL,103rd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-01,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 2,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0034,2023-06-09,['became-law'],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2024-05-01,['reading-2'],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-05-10,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-05-18,[],IL,103rd +House Floor Amendment No. 6 Referred to Rules Committee,2024-05-16,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 5",2024-05-26,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 090-019-000,2024-05-28,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-04-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-06-14,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2023-05-09,[],IL,103rd +Motion to Suspend Rule 21 - Prevailed 075-040-000,2023-05-16,[],IL,103rd +House Committee Amendment No. 2 Adopted in Elementary & Secondary Education: School Curriculum & Policies Committee; by Voice Vote,2023-05-18,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-04-18,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2024-05-07,[],IL,103rd +Third Reading - Short Debate - Passed 081-025-002,2024-04-18,"['passage', 'reading-3']",IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2024-05-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-06-17,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 090-019-000,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Kelly M. Cassidy,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Will Guzzardi,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jehan Gordon-Booth,2024-05-03,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary E. Flowers,2023-05-10,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Be Approved for Consideration Assignments,2023-11-09,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Executive,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-05-18,['amendment-failure'],IL,103rd +House Committee Amendment No. 1 Adopted in Revenue & Finance Committee; by Voice Vote,2023-05-17,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. David Koehler,2023-05-09,['amendment-introduction'],IL,103rd +Do Pass as Amended / Short Debate Elementary & Secondary Education: School Curriculum & Policies Committee; 009-005-000,2023-05-18,['committee-passage'],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +House Floor Amendment No. 1 Filed with Clerk by Rep. Angelica Guerrero-Cuellar,2024-05-03,['amendment-introduction'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Public Act . . . . . . . . . 103-0803,2024-08-09,['became-law'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +House Floor Amendment No. 7 Filed with Clerk by Rep. Jay Hoffman,2024-05-16,['amendment-introduction'],IL,103rd +House Floor Amendment No. 1 State Mandates Fiscal Note Filed as Amended,2023-05-15,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2024-05-31,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2023-05-18,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Suzanne M. Ness,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Anne Stava-Murray,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-05-17,[],IL,103rd +House Floor Amendment No. 3 Balanced Budget Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Education,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-11-09,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-21,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sue Scherer,2023-05-19,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 3 - May 24, 2024",2024-05-24,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Kelly M. Cassidy,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 007-004-000,2023-05-24,[],IL,103rd +House Floor Amendment No. 2 Correctional Note Requested as Amended by Rep. La Shawn K. Ford,2023-05-23,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-12,[],IL,103rd +Motion Filed to Reconsider Vote Rep. Mary Beth Canty,2023-05-12,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Tabled,2023-05-18,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Kimberly A. Lightford,2023-05-02,['amendment-introduction'],IL,103rd +House Floor Amendment No. 3 Correctional Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Doris Turner,2024-05-25,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Diane Blair-Sherlock,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2024-05-21,[],IL,103rd +House Floor Amendment No. 2 Fiscal Note Requested as Amended by Rep. La Shawn K. Ford,2023-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Laura Ellman,2023-05-24,[],IL,103rd +Added Co-Sponsor Rep. Natalie A. Manley,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-05-18,[],IL,103rd +Do Pass as Amended / Short Debate Revenue & Finance Committee; 013-006-000,2023-05-17,['committee-passage'],IL,103rd +Added Alternate Co-Sponsor Rep. Michael J. Kelly,2024-05-06,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-07,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Tabled,2024-04-18,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 5 Motion Filed Concur Rep. Kelly M. Cassidy,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 4 House Concurs 090-019-000,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2024-04-11,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Be Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Motion to Reconsider Vote - Withdrawn Rep. Kelly M. Cassidy,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-09,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-02-28,[],IL,103rd +House Floor Amendment No. 7 Referred to Rules Committee,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2024-05-08,[],IL,103rd +House Floor Amendment No. 1 Referred to Rules Committee,2024-05-03,[],IL,103rd +Public Act . . . . . . . . . 103-0836,2024-08-09,['became-law'],IL,103rd +Governor Approved,2024-07-01,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2023-05-18,[],IL,103rd +House Floor Amendment No. 1 Home Rule Note Filed as Amended,2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anthony DeLuca,2023-05-18,[],IL,103rd +Correctional Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-16,[],IL,103rd +Sponsor Removed Sen. Sue Rezin,2024-05-16,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Emanuel ""Chris"" Welch",2024-05-06,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2024-05-08,[],IL,103rd +House Concurs,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Jason Plummer,2023-05-10,[],IL,103rd +"Effective Date July 1, 2024",2024-07-01,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 036-019-000,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Janet Yang Rohr,2023-05-19,[],IL,103rd +House Floor Amendment No. 6 Filed with Clerk by Rep. Katie Stuart,2023-05-25,['amendment-introduction'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Kimberly A. Lightford,2024-05-22,[],IL,103rd +House Floor Amendment No. 2 Home Rule Note Requested as Amended by Rep. La Shawn K. Ford,2023-05-23,[],IL,103rd +Motion to Reconsider Vote - Withdrawn Rep. Mary Beth Canty,2023-05-12,[],IL,103rd +Governor Approved,2023-06-27,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-02-28,[],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2023-05-18,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2023-05-02,[],IL,103rd +House Floor Amendment No. 3 Fiscal Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Executive; 011-000-000,2023-05-19,[],IL,103rd +Passed Both Houses,2023-05-11,[],IL,103rd +Added as Chief Co-Sponsor Sen. Willie Preston,2023-11-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2024-05-08,[],IL,103rd +House Floor Amendment No. 3 Tabled,2024-04-18,['amendment-failure'],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-05-18,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Health and Human Services,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-11,[],IL,103rd +Second Reading - Short Debate,2024-05-06,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2024-04-11,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +House Concurs,2024-05-28,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-04-11,[],IL,103rd +Passed Both Houses,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Referred to Rules Committee,2024-05-28,[],IL,103rd +Added as Co-Sponsor Sen. Chapin Rose,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Ryan Spain,2023-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Sue Rezin,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Randy E. Frese,2023-11-09,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 011-000-000,2023-05-19,[],IL,103rd +Added as Co-Sponsor Sen. Mattie Hunter,2023-11-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Gong-Gershowitz,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2024-05-08,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina H. Pacione-Zayas,2023-05-10,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-06,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Brad Stephens,2023-05-12,[],IL,103rd +Public Act . . . . . . . . . 103-0639,2024-07-01,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2024-05-08,[],IL,103rd +House Floor Amendment No. 1 Rules Refers to Insurance Committee,2024-05-13,[],IL,103rd +Sponsor Removed Sen. Sally J. Turner,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Vella,2023-05-18,[],IL,103rd +Home Rule Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2023-05-26,[],IL,103rd +Passed Both Houses,2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0527,2023-08-11,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-02-28,[],IL,103rd +House Floor Amendment No. 3 Home Rule Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +House Floor Amendment No. 6 Referred to Rules Committee,2023-05-25,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Filed with Secretary Sen. Doris Turner,2024-05-25,['filing'],IL,103rd +Senate Concurs,2023-05-24,[],IL,103rd +House Floor Amendment No. 2 Housing Affordability Impact Note Requested as Amended by Rep. La Shawn K. Ford,2023-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2024-05-22,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-19,[],IL,103rd +House Floor Amendment No. 1 Judicial Note Filed as Amended,2023-05-15,[],IL,103rd +"Effective Date June 27, 2023",2023-06-27,[],IL,103rd +House Floor Amendment No. 2 Judicial Note Filed as Amended,2023-05-15,[],IL,103rd +Public Act . . . . . . . . . 103-0103,2023-06-27,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Robyn Gabel,2024-05-06,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-02-28,[],IL,103rd +House Floor Amendment No. 3 Housing Affordability Impact Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Jaime M. Andrade, Jr.",2024-05-28,[],IL,103rd +Racial Impact Note Requested - Withdrawn by Rep. Ryan Spain,2023-05-16,[],IL,103rd +House Floor Amendment No. 2 Judicial Note Requested as Amended by Rep. La Shawn K. Ford,2023-05-23,[],IL,103rd +House Floor Amendment No. 7 Filed with Clerk by Rep. Katie Stuart,2023-05-25,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2024-05-22,[],IL,103rd +Passed Both Houses,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Theresa Mah,2023-05-19,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Referred to Assignments,2024-05-25,[],IL,103rd +Third Reading - Passed; 056-000-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-05-12,[],IL,103rd +Added as Co-Sponsor Sen. Ram Villivalam,2023-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-05-25,[],IL,103rd +House Committee Amendment No. 2 3/5 Vote Required,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2023-11-09,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Adriane Johnson,2023-05-10,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jonathan Carroll,2023-05-17,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Rachel Ventura,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-04-18,[],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Education,2023-05-02,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Sue Scherer,2023-05-26,[],IL,103rd +Sponsor Removed Sen. Terri Bryant,2024-05-16,[],IL,103rd +House Floor Amendment No. 1 Recommends Be Adopted Insurance Committee; 012-000-000,2024-05-14,['committee-passage-favorable'],IL,103rd +"Added Alternate Co-Sponsor Rep. Marcus C. Evans, Jr.",2024-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2023-05-18,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Postponed - Education,2023-05-02,[],IL,103rd +Sent to the Governor,2023-06-15,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Sonya M. Harper,2023-05-26,[],IL,103rd +Arrive in Senate,2023-05-15,['introduction'],IL,103rd +House Floor Amendment No. 2 Filed with Clerk by Rep. Angelica Guerrero-Cuellar,2024-05-15,['amendment-introduction'],IL,103rd +Sponsor Removed Sen. Jason Plummer,2024-05-16,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2024-05-08,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2024-05-22,[],IL,103rd +House Floor Amendment No. 7 Referred to Rules Committee,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Adopted by Voice Vote,2023-05-17,['amendment-passage'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to State Government,2024-05-25,[],IL,103rd +Added Alternate Co-Sponsor Rep. Katie Stuart,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Land Conveyance Appraisal Note Requested as Amended by Rep. La Shawn K. Ford,2023-05-23,[],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2023-02-28,[],IL,103rd +House Floor Amendment No. 3 Judicial Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Third Reading - Short Debate - Passed 111-000-000,2024-05-09,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2024-04-18,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Emil Jones, III",2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Dan Caulkins,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Martin J. Moylan,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Don Harmon,2023-05-10,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 051-003-000,2023-05-24,[],IL,103rd +Sent to the Governor,2023-06-09,['executive-receipt'],IL,103rd +House Committee Amendment No. 2 Senate Concurs 047-000-000,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2023-11-09,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mark L. Walker,2023-05-17,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 19, 2023",2023-05-18,[],IL,103rd +Alternate Co-Sponsor Removed Rep. Lakesia Collins,2023-05-18,[],IL,103rd +Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +"Added Co-Sponsor Rep. Robert ""Bob"" Rita",2023-11-09,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 21, 2023",2023-05-11,[],IL,103rd +Arrived in House,2023-05-10,['introduction'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Prescription Drug Affordability & Accessibility Committee,2023-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2024-05-28,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-05-28,[],IL,103rd +Governor Approved,2023-07-27,['executive-signature'],IL,103rd +House Floor Amendment No. 3 3/5 Vote Required,2023-11-09,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 051-003-000,2023-05-24,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +House Floor Amendment No. 2 Referred to Rules Committee,2024-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-05-26,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Senate Committee Amendment No. 2 Adopted; Education,2023-05-02,['amendment-passage'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-19,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Lakesia Collins,2023-05-18,[],IL,103rd +Placed on Calendar Order of First Reading,2023-05-15,['reading-1'],IL,103rd +Passed Both Houses,2024-05-09,[],IL,103rd +House Floor Amendment No. 3 Land Conveyance Appraisal Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-02-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Bill Cunningham,2024-05-22,[],IL,103rd +House Floor Amendment No. 2 Pension Note Requested as Amended by Rep. La Shawn K. Ford,2023-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. La Shawn K. Ford,2023-05-19,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Note / Motion Filed - Note Act Does Not Apply Rep. Stephanie A. Kifowit,2023-05-17,[],IL,103rd +House Floor Amendment No. 3 Motion to Concur Assignments Referred to State Government,2024-05-25,[],IL,103rd +House Floor Amendment No. 6 Recommends Be Adopted Rules Committee; 003-001-000,2023-05-25,['committee-passage-favorable'],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2024-05-22,[],IL,103rd +House Floor Amendment No. 7 Recommends Be Adopted Rules Committee; 003-001-000,2023-05-25,['committee-passage-favorable'],IL,103rd +"Added Alternate Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Racial Impact Note Requested as Amended by Rep. La Shawn K. Ford,2023-05-23,[],IL,103rd +Motion Prevailed 072-040-000,2023-05-17,[],IL,103rd +House Floor Amendment No. 3 Pension Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2023-02-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dan Ugaste,2024-05-09,[],IL,103rd +"Added Co-Sponsor Rep. Dennis Tipsword, Jr.",2024-05-28,[],IL,103rd +Senate Concurs,2023-05-24,[],IL,103rd +House Floor Amendment No. 3 Senate Concurs 047-000-000,2023-11-09,[],IL,103rd +"Effective Date July 27, 2023",2023-07-27,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-08,[],IL,103rd +Assigned to Executive,2023-05-16,['referral-committee'],IL,103rd +Added Co-Sponsor Rep. Lilian Jiménez,2024-04-18,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Sue Rezin,2023-05-19,['filing'],IL,103rd +Passed Both Houses,2023-11-09,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-17,['reading-2'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 1, 2",2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Rita Mayfield,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Matt Hanson,2024-05-28,[],IL,103rd +Chief Senate Sponsor Sen. Don Harmon,2023-05-15,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-02,[],IL,103rd +House Floor Amendment No. 2 Rules Refers to Insurance Committee,2024-05-15,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2024-05-25,[],IL,103rd +House Floor Amendment No. 6 Rules Refers to Labor & Commerce Committee,2024-05-20,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin J. Moylan,2024-05-08,[],IL,103rd +Third Reading - Short Debate - Passed 087-018-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norma Hernandez,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0294,2023-07-28,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Omar Aquino,2023-05-10,[],IL,103rd +Do Pass as Amended Education; 014-000-000,2023-05-03,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Carol Ammons,2023-05-26,[],IL,103rd +First Reading,2023-05-15,['reading-1'],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Gill,2024-05-08,[],IL,103rd +House Floor Amendment No. 2 Recommends Be Adopted Insurance Committee; 013-000-000,2024-05-16,['committee-passage-favorable'],IL,103rd +House Floor Amendment No. 3 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2024-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0551,2023-08-11,['became-law'],IL,103rd +Passed Both Houses,2023-05-24,[],IL,103rd +House Floor Amendment No. 7 Rules Refers to Labor & Commerce Committee,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-02-28,[],IL,103rd +House Floor Amendment No. 3 Racial Impact Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +House Floor Amendment No. 2 State Debt Impact Note Requested as Amended by Rep. La Shawn K. Ford,2023-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-05-19,[],IL,103rd +Public Act . . . . . . . . . 103-0270,2023-07-27,['became-law'],IL,103rd +Recalled to Second Reading - Short Debate,2023-05-25,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mark L. Walker,2024-05-22,[],IL,103rd +Fiscal Note Request is Inapplicable,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-04-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-12,[],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-11-09,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-18,['reading-3'],IL,103rd +Senate Concurs,2023-11-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-05-17,[],IL,103rd +Passed Both Houses,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-15,[],IL,103rd +Sent to the Governor,2023-12-08,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Executive,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2024-04-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-05-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2024-05-22,[],IL,103rd +House Floor Amendment No. 6 Recommends Be Adopted Labor & Commerce Committee; 018-006-000,2024-05-20,['committee-passage-favorable'],IL,103rd +Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 Senate Concurs 057-000-000,2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Carol Ammons,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Katie Stuart,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Justin Slaughter,2023-05-11,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 4, 2023",2023-05-03,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin John Olickal,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Lilian Jiménez,2023-05-19,[],IL,103rd +Referred to Assignments,2023-05-15,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tony M. McCombie,2024-05-09,[],IL,103rd +House Floor Amendment No. 3 State Debt Impact Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Chris Miller,2024-05-28,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-19,[],IL,103rd +State Mandates Fiscal Note Request is Inapplicable,2023-05-17,[],IL,103rd +House Floor Amendment No. 2 State Mandates Fiscal Note Requested as Amended by Rep. La Shawn K. Ford,2023-05-23,[],IL,103rd +House Floor Amendment No. 6 Adopted,2023-05-25,['amendment-passage'],IL,103rd +Sponsor Removed Sen. Andrew S. Chesney,2023-05-23,[],IL,103rd +House Floor Amendment No. 7 Adopted,2023-05-25,['amendment-passage'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 19, 2023",2023-05-19,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-17,['reading-3'],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-02-28,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-26,[],IL,103rd +House Floor Amendment No. 3 State Mandates Fiscal Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Norine K. Hammond,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Adam M. Niemerg,2024-05-28,[],IL,103rd +Arrive in Senate,2024-04-19,['introduction'],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2024-05-09,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-05-29,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-04-11,[],IL,103rd +Added Co-Sponsor Rep. Kimberly Du Buclet,2023-05-17,[],IL,103rd +Sent to the Governor,2023-12-01,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-05-16,[],IL,103rd +Governor Approved,2023-12-08,['executive-signature'],IL,103rd +Third Reading - Short Debate - Passed 096-017-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 011-001-000,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-17,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Terri Bryant,2023-05-03,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Martin J. Moylan,2023-05-11,[],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2024-05-16,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2024-05-08,[],IL,103rd +House Floor Amendment No. 7 Recommends Be Adopted Labor & Commerce Committee; 019-009-000,2024-05-20,['committee-passage-favorable'],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2024-05-22,[],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +House Floor Amendment No. 3 Senate Concurs 057-000-000,2024-05-26,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kimberly Du Buclet,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Will Guzzardi,2023-05-18,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 2 Motion Filed Concur Rep. Martin J. Moylan,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-17,[],IL,103rd +Senate Concurs,2024-05-26,[],IL,103rd +"Effective Date January 1, 2024",2023-08-11,[],IL,103rd +House Floor Amendment No. 6 Adopted,2024-05-22,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2024-05-22,[],IL,103rd +"Third Reading/Final Action Deadline Extended-9(b) May 24, 2024",2024-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kelly M. Burke,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Dan Swanson,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2023-02-28,[],IL,103rd +Second Reading,2023-05-04,['reading-2'],IL,103rd +House Floor Amendment No. 4 Balanced Budget Note Requested as Amended by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-05-26,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-25,['reading-3'],IL,103rd +Sponsor Removed Sen. Terri Bryant,2023-05-23,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Jaime M. Andrade, Jr.",2023-05-19,[],IL,103rd +Third Reading - Short Debate - Passed 085-028-002,2023-05-17,"['passage', 'reading-3']",IL,103rd +Added Alternate Co-Sponsor Rep. Amy Elik,2024-05-09,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 036-014-000,2023-05-19,[],IL,103rd +"Effective Date June 1, 2024",2023-12-08,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joyce Mason,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Adopted; Health and Human Services,2023-05-16,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-16,[],IL,103rd +Placed on Calendar Order of First Reading,2024-04-19,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2024-04-11,[],IL,103rd +Sent to the Governor,2024-06-06,['executive-receipt'],IL,103rd +Governor Approved,2023-12-08,['executive-signature'],IL,103rd +"Effective Date December 8, 2023",2023-12-08,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Chief Senate Sponsor Sen. Robert Peters,2024-04-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-18,[],IL,103rd +Do Pass as Amended Health and Human Services; 008-003-000,2023-05-16,['committee-passage'],IL,103rd +Public Act . . . . . . . . . 103-0569,2023-12-08,['became-law'],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2024-06-17,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2024-04-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2024-05-23,[],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0555,2023-08-11,['became-law'],IL,103rd +House Floor Amendment No. 7 Withdrawn by Rep. Jay Hoffman,2024-05-22,[],IL,103rd +Third Reading - Short Debate - Passed 093-018-000,2024-05-09,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-05-17,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 19, 2023",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Mary Beth Canty,2023-05-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Julie A. Morrison,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kevin Schmidt,2024-05-09,[],IL,103rd +House Floor Amendment No. 4 Correctional Note Requested as Amended by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2023-05-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 5, 2023",2023-05-04,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Tom Weber,2023-02-28,[],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2024-05-28,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2023-06-26,[],IL,103rd +Third Reading - Short Debate - Passed 069-036-001,2023-05-25,"['passage', 'reading-3']",IL,103rd +Sponsor Removed Sen. Jason Plummer,2023-05-23,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-05-17,['amendment-failure'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 2,2023-05-17,[],IL,103rd +Pension Note Filed,2023-05-23,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2024-01-24,[],IL,103rd +Added Co-Sponsor Rep. La Shawn K. Ford,2023-05-26,[],IL,103rd +House Floor Amendment No. 4 Fiscal Note Requested as Amended by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Kimberly A. Lightford,2023-05-05,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Angelica Guerrero-Cuellar,2024-05-09,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2024-06-17,[],IL,103rd +First Reading,2024-04-19,['reading-1'],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2024-05-14,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-16,[],IL,103rd +Public Act . . . . . . . . . 103-0582,2023-12-08,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-18,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-16,['reading-2'],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2023-02-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-05-18,[],IL,103rd +Chief Sponsor Changed to Rep. Jenn Ladisch Douglass,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-11,[],IL,103rd +Approved for Consideration Assignments,2024-05-23,[],IL,103rd +Added Alternate Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-21,[],IL,103rd +Passed Both Houses,2024-05-09,[],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Tabled,2023-05-25,['amendment-failure'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-22,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Laura Faver Dias,2023-05-18,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Laura M. Murphy,2023-05-19,['filing'],IL,103rd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Maura Hirschauer,2023-05-18,[],IL,103rd +Added Chief Co-Sponsor Rep. Will Guzzardi,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-26,[],IL,103rd +Chief Co-Sponsor Changed to Rep. Anthony DeLuca,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2023-05-24,[],IL,103rd +House Floor Amendment No. 3 Tabled,2023-05-25,['amendment-failure'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-09,[],IL,103rd +Third Reading - Short Debate - Passed 079-029-000,2024-05-22,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +"Placed on Calendar Order of 2nd Reading May 24, 2024",2024-05-23,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Amy Elik,2024-05-28,[],IL,103rd +House Floor Amendment No. 4 Home Rule Note Requested as Amended by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2023-05-05,[],IL,103rd +Sponsor Removed Sen. Neil Anderson,2023-05-23,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - January 24, 2024",2024-01-24,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2 - May 18, 2023",2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Rachel Ventura,2024-05-26,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 1,2023-05-18,[],IL,103rd +Second Reading,2023-05-16,['reading-2'],IL,103rd +Added Co-Sponsor Rep. Blaine Wilhour,2023-02-28,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Elgie R. Sims, Jr.",2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2024-05-14,[],IL,103rd +Referred to Assignments,2024-04-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-06-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2024-06-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-05-15,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Kimberly A. Lightford,2024-04-23,[],IL,103rd +Waive Posting Notice,2023-05-17,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 17, 2023",2023-05-16,['reading-3'],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-02-28,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1 - May 19, 2023",2023-05-18,[],IL,103rd +Governor Vetoed,2023-08-11,['executive-veto'],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 4 Tabled,2024-05-22,['amendment-failure'],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 1, 4, 5, 6, 7",2023-05-25,[],IL,103rd +Added as Co-Sponsor Sen. Michael E. Hastings,2024-05-10,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-23,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2024-05-21,['reading-3'],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Prescription Drug Affordability & Accessibility Committee; 012-000-000,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-26,[],IL,103rd +Added Co-Sponsor Rep. Joyce Mason,2023-05-11,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to Executive,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Anne Stava-Murray,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ann Gillespie,2023-10-25,[],IL,103rd +Added as Co-Sponsor Sen. Julie A. Morrison,2024-05-26,[],IL,103rd +House Floor Amendment No. 4 Housing Affordability Impact Note Requested as Amended by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Senate Floor Amendment No. 3 Assignments Refers to Education,2023-05-09,[],IL,103rd +"Added Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2024-05-28,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Cristina Castro,2024-01-24,['filing'],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Robert F. Martwick,2023-05-17,['filing'],IL,103rd +Housing Affordability Impact Note Filed,2023-05-23,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2024-01-24,[],IL,103rd +Sponsor Removed Sen. Steve McClure,2023-05-23,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2023-05-17,[],IL,103rd +House Floor Amendment No. 4 Judicial Note Requested as Amended by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Senate Floor Amendment No. 3 Recommend Do Adopt Education; 013-000-000,2023-05-10,[],IL,103rd +Sent to the Governor,2024-06-07,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2024-05-28,[],IL,103rd +"Placed Calendar Total Veto October 25, 2023",2023-10-24,[],IL,103rd +Added Co-Sponsor Rep. Jawaharial Williams,2023-02-28,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Christopher Belt,2023-05-19,['filing'],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2024-04-23,[],IL,103rd +Do Pass Executive; 008-003-001,2023-05-17,['committee-passage'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Cristina Castro,2024-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-06-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2023-10-26,[],IL,103rd +Added Co-Sponsor Rep. Dave Vella,2023-05-26,[],IL,103rd +Senate Floor Amendment No. 2 House Concurs 110-000-000,2023-05-19,[],IL,103rd +"Added Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-11,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 4, 5, 6, 7 - May 25, 2023",2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0898,2024-08-09,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 112-000-000,2024-05-21,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 5 Tabled,2024-05-22,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2024-05-10,[],IL,103rd +Second Reading,2024-05-24,['reading-2'],IL,103rd +"Added Alternate Co-Sponsor Rep. Maurice A. West, II",2023-05-18,[],IL,103rd +Third Reading - Passed; 052-002-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 011-000-000,2023-05-19,[],IL,103rd +Arrived in House,2023-05-17,['introduction'],IL,103rd +"Added Alternate Co-Sponsor Rep. Edgar Gonzalez, Jr.",2023-05-18,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2023-10-27,[],IL,103rd +House Floor Amendment No. 7 Tabled,2024-05-22,['amendment-failure'],IL,103rd +Added as Co-Sponsor Sen. Celina Villanueva,2024-05-13,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2023-05-25,['filing'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 25, 2024",2024-05-24,['reading-3'],IL,103rd +Added Alternate Co-Sponsor Rep. Matt Hanson,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Michelle Mussman,2024-05-28,[],IL,103rd +House Committee Amendment No. 2 Senate Concurs 053-000-000,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 4 Filed with Secretary by Sen. Kimberly A. Lightford,2023-05-10,['amendment-introduction'],IL,103rd +Added Alternate Co-Sponsor Rep. Camille Y. Lilly,2023-05-17,[],IL,103rd +House Floor Amendment No. 1 State Mandates Fiscal Note Filed as Amended,2023-05-23,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to Executive,2024-01-24,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Governor Approved,2024-08-02,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Linda Holmes,2024-06-18,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-17,['reading-2'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Laura Fine,2024-04-25,[],IL,103rd +Motion Filed Override Governor Veto Sen. Sue Rezin,2023-10-24,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-02-28,[],IL,103rd +House Floor Amendment No. 4 Land Conveyance Appraisal Note Requested as Amended by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added Co-Sponsor Rep. Janet Yang Rohr,2023-02-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Chris Miller,2023-11-01,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Assignments Referred to State Government,2023-05-19,[],IL,103rd +House Floor Amendment No. 4 Pension Note Requested as Amended by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Rachel Ventura,2024-04-25,[],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-06-18,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-22,[],IL,103rd +Added as Co-Sponsor Sen. Suzy Glowiak Hilton,2024-05-14,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 1, 2",2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-24,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2023-05-25,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +"Added Co-Sponsor Rep. Curtis J. Tarver, II",2023-05-11,[],IL,103rd +Senate Concurs,2023-05-24,[],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Kam Buckner,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Lakesia Collins,2024-05-20,['amendment-introduction'],IL,103rd +"Effective Date August 2, 2024",2024-08-02,[],IL,103rd +Senate Floor Amendment No. 4 Referred to Assignments,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Brad Halbrook,2024-05-28,[],IL,103rd +House Floor Amendment No. 2 State Mandates Fiscal Note Filed as Amended,2023-05-23,[],IL,103rd +House Committee Amendment No. 1 Motion Held in Executive,2024-02-08,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to State Government,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2023-05-18,[],IL,103rd +House Committee Amendment No. 1 Motion Held in Executive,2024-03-07,[],IL,103rd +House Floor Amendment No. 1 Home Rule Note Filed as Amended,2023-05-23,[],IL,103rd +Senate Floor Amendment No. 4 Assignments Refers to Education,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0753,2024-08-02,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-20,[],IL,103rd +Added Co-Sponsor Rep. Anthony DeLuca,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Mary Gill,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Mary E. Flowers,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael W. Halpin,2024-06-18,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Willie Preston,2024-04-26,[],IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +Total Veto Stands,2023-11-08,[],IL,103rd +Added as Co-Sponsor Sen. Win Stoller,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-02-28,[],IL,103rd +House Floor Amendment No. 4 Racial Impact Note Requested as Amended by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Passed Both Houses,2023-05-24,[],IL,103rd +Added Alternate Co-Sponsor Rep. Nabeela Syed,2023-05-18,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-17,[],IL,103rd +Added as Co-Sponsor Sen. Robert Peters,2024-05-14,[],IL,103rd +House Floor Amendment No. 4 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2023-05-25,['filing'],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 1, 2 - May 22, 2024",2024-05-21,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2024",2024-05-24,[],IL,103rd +"Secretary's Desk - Concurrence House Amendment(s) 2, 6",2024-05-23,[],IL,103rd +Governor Approved,2023-06-27,['executive-signature'],IL,103rd +"Effective Date January 1, 2024",2023-06-27,[],IL,103rd +Added Alternate Co-Sponsor Rep. Hoan Huynh,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Sara Feigenholtz,2023-06-06,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Nabeela Syed,2023-05-17,[],IL,103rd +"Added as Co-Sponsor Sen. Emil Jones, III",2024-05-14,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 2, 6 - May 23, 2024",2024-05-23,[],IL,103rd +House Floor Amendment No. 4 Motion to Concur Referred to Assignments,2023-05-25,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 26, 2024",2024-05-25,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Filed with Secretary Sen. Michael E. Hastings,2024-05-23,['filing'],IL,103rd +Added Co-Sponsor Rep. Bob Morgan,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-06-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Paul Faraci,2023-05-10,[],IL,103rd +House Floor Amendment No. 2 Home Rule Note Filed as Amended,2023-05-23,[],IL,103rd +Pursuant to Senate Rule 3-9(b) / Referred to Assignments,2024-06-26,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 055-000-000,2023-05-19,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2024-05-21,[],IL,103rd +House Floor Amendment No. 4 State Debt Impact Note Requested as Amended by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +House Committee Amendment No. 1 Motion To Concur Recommended Do Adopt State Government; 009-000-000,2023-05-19,[],IL,103rd +Resolution Adopted,2023-02-28,['passage'],IL,103rd +Third Reading - Passed; 034-022-000,2023-05-18,"['passage', 'reading-3']",IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Simmons,2024-04-29,[],IL,103rd +Added Co-Sponsor Rep. Kam Buckner,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Michael J. Kelly,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Jason Bunting,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2023-05-11,[],IL,103rd +Assigned to Insurance,2024-04-30,['referral-committee'],IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +House Floor Amendment No. 4 State Mandates Fiscal Note Requested as Amended by Rep. Ann M. Williams,2023-05-08,[],IL,103rd +Added as Co-Sponsor Sen. Sally J. Turner,2023-05-24,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Added as Co-Sponsor Sen. Mark L. Walker,2024-05-15,[],IL,103rd +Chief Sponsor Changed to Sen. Bill Cunningham,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Erica Harriss,2024-05-26,[],IL,103rd +House Floor Amendment No. 5 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2023-05-25,['filing'],IL,103rd +Public Act . . . . . . . . . 103-0106,2023-06-27,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Justin Slaughter,2023-05-18,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2024-06-18,[],IL,103rd +House Floor Amendment No. 2 State Debt Impact Note Filed as Amended,2023-05-24,[],IL,103rd +Senate Concurs,2023-05-19,[],IL,103rd +House Committee Amendment No. 1 Motion to Concur Referred to Assignments,2024-06-26,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Filed with Secretary Sen. Bill Cunningham,2024-05-23,['filing'],IL,103rd +Sponsor Removed Sen. Dave Syverson,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Patrick J. Joyce,2024-06-25,[],IL,103rd +Added Co-Sponsor Rep. David Friess,2024-05-28,[],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Transportation: Vehicles & Safety; 007-004-000,2023-05-10,['committee-passage-favorable'],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Patrick J. Joyce,2024-04-30,[],IL,103rd +"Added as Alternate Chief Co-Sponsor Sen. Napoleon Harris, III",2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-05-21,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Filed with Secretary Sen. Michael E. Hastings,2024-05-23,['filing'],IL,103rd +Added Alternate Co-Sponsor Rep. Travis Weaver,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-17,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Senate Concurs 054-000-000,2023-05-24,[],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2024-05-15,[],IL,103rd +Third Reading - Passed; 058-000-000,2024-05-26,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 5 Motion to Concur Referred to Assignments,2023-05-25,[],IL,103rd +Sent to the Governor,2024-06-07,['executive-receipt'],IL,103rd +House Floor Amendment No. 6 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2023-05-25,['filing'],IL,103rd +Passed Both Houses,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Suzy Glowiak Hilton,2023-05-17,[],IL,103rd +Added Alternate Co-Sponsor Rep. Bradley Fritts,2023-05-18,[],IL,103rd +Senate Concurs,2023-05-24,[],IL,103rd +"Effective Date August 1, 2024",2023-08-04,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Cristina Castro,2024-06-25,[],IL,103rd +Added Co-Sponsor Rep. Yolonda Morris,2024-05-28,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Sponsor Removed Sen. Seth Lewis,2023-05-24,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +"Rule 2-10 Committee Deadline Established As May 10, 2024",2024-04-30,[],IL,103rd +Senate Committee Amendment No. 1 Adopted,2024-05-21,['amendment-passage'],IL,103rd +House Floor Amendment No. 4 Adopted,2023-05-10,['amendment-passage'],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Abdelnasser Rashid,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. William E Hauter,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2023-05-11,[],IL,103rd +Do Pass as Amended Insurance; 007-003-000,2024-05-21,['committee-passage'],IL,103rd +Governor Approved,2023-08-14,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Ram Villivalam,2024-05-01,[],IL,103rd +House Floor Amendment No. 1 Motion to Concur Assignments Referred to Local Government,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Andrew S. Chesney,2024-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0472,2023-08-04,['became-law'],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Abdelnasser Rashid,2023-05-18,[],IL,103rd +Passed Both Houses,2023-05-24,[],IL,103rd +Governor Approved,2024-06-25,['executive-signature'],IL,103rd +House Floor Amendment No. 6 Motion to Concur Referred to Assignments,2023-05-25,[],IL,103rd +House Floor Amendment No. 4 Balanced Budget Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2023-05-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 25, 2023",2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-06-25,[],IL,103rd +Sponsor Removed Sen. Erica Harriss,2023-05-24,[],IL,103rd +House Floor Amendment No. 6 Motion to Concur Filed with Secretary Sen. Bill Cunningham,2024-05-23,['filing'],IL,103rd +Sponsor Removed Sen. Jil Tracy,2023-05-24,[],IL,103rd +House Floor Amendment No. 6 Motion to Concur Referred to Assignments,2024-05-23,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Willie Preston,2023-05-18,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-12,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2024-06-25,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2024-05-28,[],IL,103rd +House Floor Amendment No. 2 Motion to Concur Assignments Referred to Local Government,2024-05-23,[],IL,103rd +"Effective Date June 25, 2024",2024-06-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Dan McConchie,2024-05-26,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 21, 2024",2024-05-21,['reading-2'],IL,103rd +Added as Alternate Co-Sponsor Sen. Sara Feigenholtz,2024-05-01,[],IL,103rd +"Effective Date August 14, 2023",2023-08-14,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Kevin Schmidt,2023-05-19,[],IL,103rd +House Floor Amendment No. 4 Correctional Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tony M. McCombie,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Meg Loughran Cappel,2023-05-30,[],IL,103rd +"Effective Date August 11, 2023",2023-08-11,[],IL,103rd +House Floor Amendment No. 7 Motion to Concur Filed with Secretary Sen. Julie A. Morrison,2023-05-25,['filing'],IL,103rd +House Floor Amendment No. 7 Motion to Concur Referred to Assignments,2023-05-25,[],IL,103rd +House Floor Amendment No. 4 Fiscal Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0548,2023-08-11,['became-law'],IL,103rd +"Added Alternate Co-Sponsor Rep. Curtis J. Tarver, II",2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-18,[],IL,103rd +Added as Co-Sponsor Sen. Laura M. Murphy,2023-05-31,[],IL,103rd +Added Co-Sponsor Rep. Gregg Johnson,2024-05-28,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Robert Peters,2024-06-25,[],IL,103rd +House Committee Amendment No. 2 Motion to Concur Assignments Referred to Executive,2024-05-23,[],IL,103rd +Sponsor Removed Sen. Sally J. Turner,2023-05-24,[],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-21,[],IL,103rd +Senate Floor Amendment No. 4 Recommend Do Adopt Education; 012-000-000,2023-05-16,[],IL,103rd +Added Co-Sponsor Rep. Norma Hernandez,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Karina Villa,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0559,2023-08-14,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Robert Peters,2024-05-02,['amendment-introduction'],IL,103rd +"Effective Date July 1, 2026; Some Provisions",2024-06-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Sally J. Turner,2024-05-26,[],IL,103rd +House Floor Amendment No. 1 Motion To Concur Recommended Do Adopt Local Government; 008-000-000,2024-05-23,[],IL,103rd +Sent to the Governor,2024-06-24,['executive-receipt'],IL,103rd +House Floor Amendment No. 2 Motion To Concur Recommended Do Adopt Local Government; 008-000-000,2024-05-23,[],IL,103rd +Public Act . . . . . . . . . 103-0594,2024-06-25,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2024-05-02,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2023-05-25,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Tom Weber,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 088-023-000,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +House Committee Amendment No. 1 Motion to Concur Be Approved for Consideration Assignments,2023-05-25,[],IL,103rd +"Added Co-Sponsor Rep. Maurice A. West, II",2024-05-28,[],IL,103rd +House Floor Amendment No. 4 Home Rule Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-10,[],IL,103rd +Recalled to Second Reading,2023-05-17,['reading-2'],IL,103rd +House Floor Amendment No. 6 Motion to Concur Assignments Referred to Executive,2024-05-23,[],IL,103rd +House Floor Amendment No. 3 Filed with Clerk by Rep. La Shawn K. Ford,2023-05-24,['amendment-introduction'],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2024-06-26,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +House Committee Amendment No. 2 Motion To Concur Recommended Do Adopt Executive; 009-002-000,2024-05-23,[],IL,103rd +House Floor Amendment No. 3 Referred to Rules Committee,2023-05-24,[],IL,103rd +Senate Floor Amendment No. 3 Adopted; Lightford,2023-05-17,['amendment-passage'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-06-26,[],IL,103rd +Added Co-Sponsor Rep. Fred Crespo,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. David Koehler,2023-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Steve Stadelman,2024-05-03,[],IL,103rd +House Floor Amendment No. 1 Senate Concurs 057-000-000,2024-05-24,[],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +House Floor Amendment No. 4 Housing Affordability Impact Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-10,[],IL,103rd +House Floor Amendment No. 4 Motion to Concur Be Approved for Consideration Assignments,2023-05-25,[],IL,103rd +Governor Approved,2023-08-18,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Randy E. Frese,2023-05-18,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Theresa Mah,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2024-05-28,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +"Effective Date January 1, 2024",2023-08-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Sonya M. Harper,2023-05-18,[],IL,103rd +Governor Approved,2024-06-26,['executive-signature'],IL,103rd +Sponsor Removed Sen. Dale Fowler,2023-05-24,[],IL,103rd +House Floor Amendment No. 6 Motion To Concur Recommended Do Adopt Executive; 009-002-000,2024-05-23,[],IL,103rd +Third Reading - Passed; 040-019-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Senate Floor Amendment No. 4 Adopted; Lightford,2023-05-17,['amendment-passage'],IL,103rd +House Floor Amendment No. 4 Judicial Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-05-03,[],IL,103rd +Added Co-Sponsor Rep. Nabeela Syed,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2023-05-25,[],IL,103rd +House Floor Amendment No. 5 Motion to Concur Be Approved for Consideration Assignments,2023-05-25,[],IL,103rd +House Floor Amendment No. 2 Senate Concurs 057-000-000,2024-05-24,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0825,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 6 Motion to Concur Be Approved for Consideration Assignments,2023-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Insurance,2024-05-07,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-19,[],IL,103rd +House Floor Amendment No. 4 Land Conveyance Appraisal Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Laura Faver Dias,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2023-05-25,[],IL,103rd +Public Act . . . . . . . . . 103-0561,2023-08-18,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. William E Hauter,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Travis Weaver,2024-05-28,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2023-05-17,[],IL,103rd +House Committee Amendment No. 2 Senate Concurs 044-014-000,2024-05-24,[],IL,103rd +Sponsor Removed Sen. Tom Bennett,2023-05-24,[],IL,103rd +"Effective Date June 26, 2024; some provisions effective July 1, 2025.",2024-06-26,[],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2024-05-24,[],IL,103rd +House Floor Amendment No. 6 Senate Concurs 044-014-000,2024-05-24,[],IL,103rd +Rule 19(a) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Third Reading - Passed; 052-001-000,2023-05-17,"['passage', 'reading-3']",IL,103rd +Public Act . . . . . . . . . 103-0595,2024-06-26,['became-law'],IL,103rd +Added Co-Sponsor Rep. Hoan Huynh,2023-05-11,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Ellman,2024-05-07,[],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +House Floor Amendment No. 7 Motion to Concur Be Approved for Consideration Assignments,2023-05-25,[],IL,103rd +House Floor Amendment No. 4 Pension Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-10,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Added Co-Sponsor Rep. Joe C. Sosnowski,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Michael T. Marron,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jed Davis,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Jennifer Sanalitro,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Robyn Gabel,2024-05-24,[],IL,103rd +House Floor Amendment No. 1 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Senate Concurs,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2023-05-17,['amendment-failure'],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +House Floor Amendment No. 4 Racial Impact Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Christopher Belt,2024-05-08,[],IL,103rd +Added Co-Sponsor Rep. Mark L. Walker,2023-05-11,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +House Committee Amendment No. 1 Senate Concurs 036-018-000,2023-05-26,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Governor Approved,2024-08-09,['executive-signature'],IL,103rd +Passed Both Houses,2024-05-24,[],IL,103rd +House Floor Amendment No. 4 Senate Concurs 036-018-000,2023-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Javier L. Cervantes,2024-05-10,[],IL,103rd +House Floor Amendment No. 4 State Debt Impact Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-10,[],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Added Co-Sponsor Rep. Maura Hirschauer,2023-05-11,[],IL,103rd +"Effective Date July 1, 2025",2023-08-04,[],IL,103rd +Added Co-Sponsor Rep. Steven Reick,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Paul Jacobs,2023-05-18,[],IL,103rd +Arrived in House,2023-05-17,['introduction'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +House Floor Amendment No. 2 Rule 19(c) / Re-referred to Rules Committee,2023-05-31,[],IL,103rd +Approved for Consideration Rules Committee; 004-000-000,2023-11-07,[],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 3, 4",2023-05-17,[],IL,103rd +Public Act . . . . . . . . . 103-0367,2023-07-28,['became-law'],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Rules Referred to Health Care Availability & Accessibility Committee,2024-05-24,[],IL,103rd +Added Co-Sponsor Rep. Lance Yednock,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0429,2023-08-04,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Adriane Johnson,2024-05-10,[],IL,103rd +"Effective Date January 1, 2025",2024-08-09,[],IL,103rd +House Floor Amendment No. 5 Senate Concurs 036-018-000,2023-05-26,[],IL,103rd +Sent to the Governor,2024-06-04,['executive-receipt'],IL,103rd +House Floor Amendment No. 4 State Mandates Fiscal Note Requested as Amended - Withdrawn by Rep. Ann M. Williams,2023-05-10,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jason Bunting,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Rules Referred to Judiciary - Criminal Committee,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Rules Referred to Judiciary - Criminal Committee,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Dave Severin,2023-05-18,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2024-05-24,[],IL,103rd +Placed on Calendar 2nd Reading - Short Debate,2023-11-07,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-10,['reading-3'],IL,103rd +Added as Alternate Co-Sponsor Sen. Michael E. Hastings,2023-05-17,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 17, 2024",2024-05-10,[],IL,103rd +Added Co-Sponsor Rep. Ann M. Williams,2023-05-11,[],IL,103rd +Governor Approved,2024-06-05,['executive-signature'],IL,103rd +Public Act . . . . . . . . . 103-1011,2024-08-09,['became-law'],IL,103rd +House Floor Amendment No. 6 Senate Concurs 036-018-000,2023-05-26,[],IL,103rd +House Floor Amendment No. 7 Senate Concurs 036-018-000,2023-05-26,[],IL,103rd +"Effective Date June 5, 2024",2024-06-05,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Lakesia Collins,2024-05-13,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Martin McLaughlin,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Patrick Sheehan,2024-05-28,[],IL,103rd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Mary Beth Canty,2023-05-17,[],IL,103rd +Third Reading - Short Debate - Passed 072-039-000,2023-05-10,"['passage', 'reading-3']",IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Health Care Availability & Accessibility Committee; 007-003-000,2024-05-24,[],IL,103rd +House Floor Amendment No. 4 Filed with Clerk by Rep. La Shawn K. Ford,2023-11-08,['amendment-introduction'],IL,103rd +House Floor Amendment No. 4 Referred to Rules Committee,2023-11-08,[],IL,103rd +House Floor Amendment No. 1 Tabled,2023-05-10,['amendment-failure'],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Mary Beth Canty,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Anna Moeller,2023-05-11,[],IL,103rd +Senate Concurs,2023-05-26,[],IL,103rd +Public Act . . . . . . . . . 103-0590,2024-06-05,['became-law'],IL,103rd +Added as Alternate Co-Sponsor Sen. Mike Porfirio,2024-05-14,[],IL,103rd +Senate Committee Amendment No. 1 House Concurs 070-035-000,2024-05-25,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Amy L. Grant,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. David Friess,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Margaret Croke,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Dan Ugaste,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 4 Motion Filed Concur Rep. Mary Beth Canty,2023-05-17,[],IL,103rd +House Floor Amendment No. 2 Tabled,2023-05-10,['amendment-failure'],IL,103rd +House Floor Amendment No. 4 Rules Refers to Executive Committee,2023-11-08,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mary Edly-Allen,2024-05-16,[],IL,103rd +Passed Both Houses,2023-05-26,[],IL,103rd +Sent to the Governor,2023-06-07,['executive-receipt'],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +"Rule 2-10 Committee Deadline Established As May 24, 2024",2024-05-17,[],IL,103rd +Added Co-Sponsor Rep. Norine K. Hammond,2024-05-28,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Eva-Dina Delgado,2023-05-11,[],IL,103rd +Sponsor Removed Sen. Sue Rezin,2023-11-08,[],IL,103rd +House Floor Amendment No. 3 Tabled,2023-05-10,['amendment-failure'],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +House Floor Amendment No. 4 Recommends Be Adopted Executive Committee; 012-000-000,2023-11-08,['committee-passage-favorable'],IL,103rd +Senate Committee Amendment No. 2 Filed with Secretary by Sen. Robert Peters,2024-05-20,['amendment-introduction'],IL,103rd +Added Co-Sponsor Rep. Camille Y. Lilly,2024-05-25,[],IL,103rd +Governor Approved,2023-08-04,['executive-signature'],IL,103rd +Added Co-Sponsor Rep. Angelica Guerrero-Cuellar,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Jonathan Carroll,2023-05-10,[],IL,103rd +"Added Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2024-05-28,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Stephens,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. John Egofske,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Amy L. Grant,2023-05-11,[],IL,103rd +Added Co-Sponsor Rep. Dagmara Avelar,2023-05-10,[],IL,103rd +"Effective Date August 4, 2023; Some Provisions",2023-08-04,[],IL,103rd +Added Co-Sponsor Rep. Bradley Fritts,2024-05-28,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Cyril Nichols,2023-11-08,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Referred to Rules Committee,2023-05-17,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2024-05-25,[],IL,103rd +Senate Committee Amendment No. 2 Referred to Assignments,2024-05-20,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Natalie Toro,2024-05-21,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Lakesia Collins,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Martin McLaughlin,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jennifer Sanalitro,2023-05-18,[],IL,103rd +"Effective Date January 1, 2024; Some Provisions",2023-08-04,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to Child Care Accessibility & Early Childhood Education Committee,2023-05-18,[],IL,103rd +Sponsor Removed Sen. Donald P. DeWitte,2023-11-08,[],IL,103rd +House Floor Amendment No. 2 Fiscal Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-11-09,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 2 Assignments Refers to Insurance,2024-05-21,[],IL,103rd +Added Co-Sponsor Rep. Kevin John Olickal,2023-05-10,[],IL,103rd +Public Act . . . . . . . . . 103-0467,2023-08-04,['became-law'],IL,103rd +Added Co-Sponsor Rep. Daniel Didech,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Paul Jacobs,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Child Care Accessibility & Early Childhood Education Committee,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Patrick Windhorst,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Joe C. Sosnowski,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Stephanie A. Kifowit,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Referred to Child Care Accessibility & Early Childhood Education Committee,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Patrick Windhorst,2023-05-11,[],IL,103rd +House Floor Amendment No. 2 Balanced Budget Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-11-09,[],IL,103rd +Added Co-Sponsor Rep. Harry Benton,2023-05-10,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Mattie Hunter,2024-05-21,[],IL,103rd +Governor Approved,2024-07-29,['executive-signature'],IL,103rd +"Effective Date January 1, 2025; some provisions effective 1/1/26",2024-07-29,[],IL,103rd +Senate Committee Amendment No. 2 Adopted,2024-05-21,['amendment-passage'],IL,103rd +Motion Filed To Reconsider the Vote on Motion Rep. Kelly M. Cassidy,2023-05-10,[],IL,103rd +Added Co-Sponsor Rep. Michael T. Marron,2023-05-11,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 010-002-000,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jeff Keicher,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Jackie Haas,2024-05-28,[],IL,103rd +House Floor Amendment No. 2 Correctional Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-11-09,[],IL,103rd +House Floor Amendment No. 2 Housing Affordability Impact Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-11-09,[],IL,103rd +Motion to Reconsider Vote - Withdrawn Rep. Kelly M. Cassidy,2023-05-11,[],IL,103rd +Public Act . . . . . . . . . 103-0720,2024-07-29,['became-law'],IL,103rd +Do Pass as Amended Insurance; 007-004-000,2024-05-21,['committee-passage'],IL,103rd +Added Co-Sponsor Rep. Charles Meier,2024-05-28,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 010-002-000,2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. Jed Davis,2023-05-11,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Christopher ""C.D."" Davidsmeyer",2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Steven Reick,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Judiciary - Criminal Committee; 015-000-000,2024-05-28,[],IL,103rd +Added Co-Sponsor Rep. Sharon Chung,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 4 Motion to Concur Recommends Be Adopted Child Care Accessibility & Early Childhood Education Committee; 009-003-000,2023-05-18,[],IL,103rd +House Floor Amendment No. 2 Judicial Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-11-09,[],IL,103rd +"Placed on Calendar Order of 2nd Reading May 21, 2024",2024-05-21,['reading-2'],IL,103rd +Arrive in Senate,2023-05-11,['introduction'],IL,103rd +Placed on Calendar Order of First Reading,2023-05-11,['reading-1'],IL,103rd +"Rule 2-10 Third Reading/Passage Deadline Established As May 24, 2024",2024-05-21,[],IL,103rd +Senate Committee Amendment No. 2 House Concurs 085-024-000,2023-05-19,[],IL,103rd +Added Co-Sponsor Rep. Jenn Ladisch Douglass,2023-05-11,[],IL,103rd +Added Alternate Co-Sponsor Rep. Jackie Haas,2023-05-18,[],IL,103rd +Senate Floor Amendment No. 5 Motion to Concur Recommends Be Adopted Judiciary - Criminal Committee; 015-000-000,2024-05-28,[],IL,103rd +House Floor Amendment No. 2 Land Conveyance Appraisal Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-11-09,[],IL,103rd +House Floor Amendment No. 2 Pension Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-11-09,[],IL,103rd +Second Reading,2024-05-22,['reading-2'],IL,103rd +Chief Senate Sponsor Sen. Sara Feigenholtz,2023-05-11,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Craig Wilcox,2024-05-30,[],IL,103rd +Added Co-Sponsor Rep. Debbie Meyers-Martin,2023-05-12,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 085-024-000,2023-05-19,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Dennis Tipsword, Jr.",2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Chris Miller,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Seth Lewis,2024-05-30,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Judiciary - Criminal Committee,2023-05-15,[],IL,103rd +Senate Floor Amendment No. 4 House Concurs 085-024-000,2023-05-19,[],IL,103rd +House Floor Amendment No. 2 Racial Impact Note Requested as Amended - Withdrawn by Rep. La Shawn K. Ford,2023-11-09,[],IL,103rd +First Reading,2023-05-11,['reading-1'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 23, 2024",2024-05-22,['reading-3'],IL,103rd +Senate Floor Amendment No. 3 Filed with Secretary by Sen. Robert Peters,2024-05-22,['amendment-introduction'],IL,103rd +Referred to Assignments,2023-05-11,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Referred to Judiciary - Criminal Committee,2023-05-15,[],IL,103rd +House Concurs,2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Blaine Wilhour,2023-05-18,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Julie A. Morrison,2024-06-06,[],IL,103rd +Chief Sponsor Changed to Sen. Kimberly A. Lightford,2023-11-09,[],IL,103rd +House Floor Amendment No. 4 Adopted,2023-11-09,['amendment-passage'],IL,103rd +Assigned to Executive,2023-05-16,['referral-committee'],IL,103rd +Senate Floor Amendment No. 3 Referred to Assignments,2024-05-22,[],IL,103rd +Rule 19(b) / Re-referred to Rules Committee,2024-06-29,[],IL,103rd +Added Alternate Co-Sponsor Rep. Brad Halbrook,2023-05-18,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Judiciary - Criminal Committee; 011-000-000,2023-05-17,[],IL,103rd +Senate Floor Amendment No. 2 Motion to Concur Recommends Be Adopted Judiciary - Criminal Committee; 011-000-000,2023-05-17,[],IL,103rd +"Added Co-Sponsor Rep. Elizabeth ""Lisa"" Hernandez",2023-05-19,[],IL,103rd +Added Alternate Co-Sponsor Rep. Rita Mayfield,2023-05-18,[],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-11-09,['reading-3'],IL,103rd +Senate Floor Amendment No. 3 Be Approved for Consideration Assignments,2024-05-23,[],IL,103rd +"Rule 2-10 Third Reading Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Mike Simmons,2023-05-16,[],IL,103rd +Recalled to Second Reading,2024-05-23,['reading-2'],IL,103rd +Added Alternate Co-Sponsor Rep. Sharon Chung,2023-05-18,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 113-000-000,2023-05-18,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Debbie Meyers-Martin,2023-11-09,[],IL,103rd +Added Alternate Chief Co-Sponsor Rep. Suzanne M. Ness,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Filed with Secretary by Sen. Sara Feigenholtz,2023-05-16,['amendment-introduction'],IL,103rd +Senate Floor Amendment No. 3 Adopted; Peters,2024-05-23,['amendment-passage'],IL,103rd +Senate Floor Amendment No. 2 House Concurs 113-000-000,2023-05-18,[],IL,103rd +Governor Approved,2023-08-02,['executive-signature'],IL,103rd +Added Alternate Co-Sponsor Rep. Jay Hoffman,2023-05-18,[],IL,103rd +Added Alternate Co-Sponsor Rep. Natalie A. Manley,2023-05-18,[],IL,103rd +House Concurs,2023-05-18,[],IL,103rd +"Effective Date August 2, 2023",2023-08-02,[],IL,103rd +Senate Committee Amendment No. 1 Referred to Assignments,2023-05-16,[],IL,103rd +3/5 Vote Required,2023-11-09,[],IL,103rd +Placed on Calendar Order of 3rd Reading,2024-05-23,[],IL,103rd +Third Reading - Passed; 045-014-000,2024-05-23,"['passage', 'reading-3']",IL,103rd +Passed Both Houses,2023-05-18,[],IL,103rd +Public Act . . . . . . . . . 103-0410,2023-08-02,['became-law'],IL,103rd +Added Alternate Co-Sponsor Rep. Anna Moeller,2023-05-18,[],IL,103rd +Third Reading - Short Debate - Passed 105-000-000,2023-11-09,"['passage', 'reading-3']",IL,103rd +"Rule 2-10 Committee Deadline Established As May 19, 2023",2023-05-16,[],IL,103rd +Senate Committee Amendment No. 1 Assignments Refers to Executive,2023-05-17,[],IL,103rd +Secretary's Desk - Concurrence House Amendment(s) 4,2023-11-09,[],IL,103rd +Senate Committee Amendment No. 1 Tabled Pursuant to Rule 5-4(a),2024-05-23,['amendment-failure'],IL,103rd +Added Alternate Co-Sponsor Rep. Lance Yednock,2023-05-18,[],IL,103rd +"Added Co-Sponsor Rep. Michael J. Coffey, Jr.",2023-05-18,[],IL,103rd +Added Co-Sponsor Rep. John Egofske,2023-05-18,[],IL,103rd +"Added Alternate Co-Sponsor Rep. Lawrence ""Larry"" Walsh, Jr.",2023-05-18,[],IL,103rd +"Placed on Calendar Order of Concurrence House Amendment(s) 4 - November 9, 2023",2023-11-09,[],IL,103rd +Waive Posting Notice,2023-05-17,[],IL,103rd +Arrived in House,2024-05-24,['introduction'],IL,103rd +"Placed on Calendar Order of Concurrence Senate Amendment(s) 2, 3",2024-05-24,[],IL,103rd +Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Committee Amendment No. 1 Adopted; Executive,2023-05-17,['amendment-passage'],IL,103rd +House Floor Amendment No. 4 Motion to Concur Filed with Secretary Sen. Kimberly A. Lightford,2023-11-09,['filing'],IL,103rd +House Floor Amendment No. 4 Motion to Concur Referred to Assignments,2023-11-09,[],IL,103rd +Do Pass as Amended Executive; 007-002-000,2023-05-17,['committee-passage'],IL,103rd +Senate Committee Amendment No. 2 Motion Filed Concur Rep. Anna Moeller,2024-05-24,[],IL,103rd +Governor Approved,2023-07-28,['executive-signature'],IL,103rd +Held on Calendar Order of Second Reading - Short Debate,2023-05-18,['reading-2'],IL,103rd +Placed on Calendar Order of 3rd Reading - Short Debate,2023-05-19,['reading-3'],IL,103rd +"Effective Date January 1, 2024",2023-07-28,[],IL,103rd +Placed on Calendar Order of 2nd Reading,2023-05-17,['reading-2'],IL,103rd +House Floor Amendment No. 4 Motion to Concur Be Approved for Consideration Assignments,2023-11-09,[],IL,103rd +Senate Floor Amendment No. 3 Motion Filed Concur Rep. Anna Moeller,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0300,2023-07-28,['became-law'],IL,103rd +Third Reading - Short Debate - Passed 113-000-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +House Floor Amendment No. 4 3/5 Vote Required,2023-11-09,[],IL,103rd +Second Reading,2023-05-17,['reading-2'],IL,103rd +"Placed on Calendar Order of 3rd Reading May 18, 2023",2023-05-17,['reading-3'],IL,103rd +House Floor Amendment No. 4 Senate Concurs 047-002-000,2023-11-09,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Referred to Rules Committee,2024-05-24,[],IL,103rd +Passed Both Houses,2023-05-19,[],IL,103rd +Sent to the Governor,2023-06-16,['executive-receipt'],IL,103rd +Senate Concurs,2023-11-09,[],IL,103rd +Added as Alternate Chief Co-Sponsor Sen. Linda Holmes,2023-05-18,[],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Rules Referred to Human Services Committee,2024-05-24,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Rules Referred to Human Services Committee,2024-05-24,[],IL,103rd +Governor Approved,2023-07-31,['executive-signature'],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura Fine,2023-05-19,[],IL,103rd +Passed Both Houses,2023-11-09,[],IL,103rd +Added as Co-Sponsor Sen. Linda Holmes,2023-11-09,[],IL,103rd +Third Reading - Passed; 039-015-000,2023-05-19,"['passage', 'reading-3']",IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2024-05-24,[],IL,103rd +"Effective Date January 1, 2024",2023-07-31,[],IL,103rd +Public Act . . . . . . . . . 103-0409,2023-07-31,['became-law'],IL,103rd +Senate Committee Amendment No. 2 Motion to Concur Recommends Be Adopted Human Services Committee; 009-000-000,2024-05-24,[],IL,103rd +"Added as Alternate Co-Sponsor Sen. Napoleon Harris, III",2023-05-19,[],IL,103rd +Added as Chief Co-Sponsor Sen. Cristina Castro,2023-11-09,[],IL,103rd +Chief Co-Sponsor Changed to Sen. Cristina Castro,2023-11-09,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Celina Villanueva,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 3 Motion to Concur Recommends Be Adopted Human Services Committee; 009-000-000,2024-05-24,[],IL,103rd +Senate Committee Amendment No. 2 House Concurs 083-023-001,2024-05-25,[],IL,103rd +Arrived in House,2023-05-19,['introduction'],IL,103rd +Added as Co-Sponsor Sen. Lakesia Collins,2023-11-16,[],IL,103rd +Sent to the Governor,2023-12-01,['executive-receipt'],IL,103rd +Placed on Calendar Order of Concurrence Senate Amendment(s) 1,2023-05-19,[],IL,103rd +Senate Floor Amendment No. 3 House Concurs 083-023-001,2024-05-25,[],IL,103rd +House Concurs,2024-05-25,[],IL,103rd +Senate Committee Amendment No. 1 Motion Filed Concur Rep. Ann M. Williams,2023-05-19,[],IL,103rd +Governor Approved,2023-12-08,['executive-signature'],IL,103rd +"Effective Date December 8, 2023",2023-12-08,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Referred to Rules Committee,2023-05-19,[],IL,103rd +Passed Both Houses,2024-05-25,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Doris Turner,2024-05-26,[],IL,103rd +Senate Committee Amendment No. 1 Motion to Concur Recommends Be Adopted Rules Committee; 005-000-000,2023-05-24,[],IL,103rd +Public Act . . . . . . . . . 103-0578,2023-12-08,['became-law'],IL,103rd +Senate Committee Amendment No. 1 House Concurs 069-034-000,2023-05-24,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Laura M. Murphy,2024-05-26,[],IL,103rd +Added as Alternate Co-Sponsor Sen. Meg Loughran Cappel,2024-05-30,[],IL,103rd +House Concurs,2023-05-24,[],IL,103rd +Passed Both Houses,2023-05-24,[],IL,103rd +Sent to the Governor,2024-06-21,['executive-receipt'],IL,103rd +Governor Approved,2024-07-10,['executive-signature'],IL,103rd +Added Chief Co-Sponsor Rep. Cyril Nichols,2023-05-24,[],IL,103rd +Sent to the Governor,2023-06-22,['executive-receipt'],IL,103rd +"Effective Date January 1, 2025",2024-07-10,[],IL,103rd +Public Act . . . . . . . . . 103-0650,2024-07-10,['became-law'],IL,103rd +Governor Approved,2023-08-11,['executive-signature'],IL,103rd +"Effective Date January 1, 2024",2023-08-11,[],IL,103rd +Public Act . . . . . . . . . 103-0540,2023-08-11,['became-law'],IL,103rd +introduced by Representative Laurie Pohutsky,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-09-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Marino,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2022-06-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pauline Wendzel,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-06-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-07-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pauline Wendzel,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rodney Wakeman,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pauline Wendzel,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Diana Farrington,2021-07-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rodney Wakeman,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2022-01-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2022-06-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2022-09-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-10-26T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-10-26T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARSHALL BULLOCK,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2022-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2022-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2022-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2022-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2022-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Coleman,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2022-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DOUGLAS WOZNIAK,2022-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2022-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE ZORN,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR JOHN BIZON, M.D.",2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-02-22T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Robert Bezotte,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Maddock,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2022-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Maddock,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tullio Liberati,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ken Borton,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Donna Lasinski,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Marino,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-05-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR BETTY JEAN ALEXANDER,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ronnie Peterson,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARK HUIZENGA,2022-05-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Richard Steenland,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +ORDERED ENROLLED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +introduced by Representative Julie Calley,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-09-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-09-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-09-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-09-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-01-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2022-01-25T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2022-05-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2022-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rodney Wakeman,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2022-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2022-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ken Borton,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2022-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pauline Wendzel,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-07-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-07-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-07-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARSHALL BULLOCK,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2022-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Coleman,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrea Schroeder,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2022-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2022-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Reilly,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-07-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2022-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2022-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2022-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2021-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-09-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Timothy Beson,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Maddock,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Marino,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Donna Lasinski,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Maddock,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pauline Wendzel,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pauline Wendzel,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-04-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Neeley,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2021-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2022-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-07-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Robert Bezotte,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Ellison,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM HOLLIER,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2022-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2022-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2021-07-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Marino,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2022-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2022-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Marino,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM HOLLIER,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE ZORN,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Robert Bezotte,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2022-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2022-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Marino,2021-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2022-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-11-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Neeley,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DOUGLAS WOZNIAK,2022-05-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Ellison,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE ZORN,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Lilly,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-09-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-09-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARK HUIZENGA,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2022-02-22T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Coleman,2022-05-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Robert Bezotte,2021-04-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DOUGLAS WOZNIAK,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DOUGLAS WOZNIAK,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-09-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Daire Rendon,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Neeley,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DOUGLAS WOZNIAK,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-08-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ronnie Peterson,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARSHALL BULLOCK,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-08-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrea Schroeder,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2021-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jason Wentworth,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Ellison,2021-09-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Ellison,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Marino,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2021-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Coleman,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Lilly,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2022-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2022-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2022-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-09-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Huizenga,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2021-09-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-09-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-09-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Diana Farrington,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR JOHN BIZON, M.D.",2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-09-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR BETTY JEAN ALEXANDER,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Daire Rendon,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2022-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Lilly,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2021-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +introduced by Representative Kelly Breen,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeffrey Pepper,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2022-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2021-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Lilly,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR JOHN BIZON, M.D.",2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2021-07-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2022-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Coleman,2022-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DOUGLAS WOZNIAK,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARSHALL BULLOCK,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2022-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARSHALL BULLOCK,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ken Borton,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR BETTY JEAN ALEXANDER,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Robert Bezotte,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2022-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2022-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-05-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2022-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2022-05-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-06-02T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-10-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Richard Steenland,2022-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Reilly,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2022-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARK HUIZENGA,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2021-11-04T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE ZORN,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-07-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Donna Lasinski,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Robert Bezotte,2021-11-04T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pauline Wendzel,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rodney Wakeman,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-11-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARK HUIZENGA,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ronnie Peterson,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DOUGLAS WOZNIAK,2022-06-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ken Borton,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-09-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeffrey Pepper,2022-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Robert Bezotte,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-02-22T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-12-29T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Marino,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-06-02T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-10-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-10-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-12-29T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-10-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Lilly,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-06-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-06-02T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-06-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2022-06-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2022-09-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2022-04-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jewell Jones,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2022-04-26T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Timothy Beson,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Diana Farrington,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-07-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2022-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-07-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR JOHN BIZON, M.D.",2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-09-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Neeley,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tullio Liberati,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2022-07-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2022-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2022-09-08T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2022-01-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Daire Rendon,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2022-07-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR JOHN BIZON, M.D.",2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2021-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-07-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2022-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-09-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tullio Liberati,2022-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Ellison,2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-10-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-04-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2022-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-06-02T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARSHALL BULLOCK,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Lilly,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-12-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2021-12-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Coleman,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Reilly,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rodney Wakeman,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR JOHN BIZON, M.D.",2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARK HUIZENGA,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tullio Liberati,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Diana Farrington,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Richard Steenland,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2022-07-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARSHALL BULLOCK,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Daire Rendon,2022-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2022-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2022-01-25T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Marino,2021-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Robert Bezotte,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-10-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2022-07-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2021-10-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2022-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-04-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2022-02-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-02-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Harris,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2022-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Reilly,2021-12-15T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Ellison,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2022-06-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-06-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrea Schroeder,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2022-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-11-04T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2022-06-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rodney Wakeman,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR BETTY JEAN ALEXANDER,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pauline Wendzel,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-11-04T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR BETTY JEAN ALEXANDER,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +introduced by Representative Kara Hope,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rodney Wakeman,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Maddock,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARSHALL BULLOCK,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-09-09T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-09-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2022-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Carol Glanville,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Maddock,2021-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2021-06-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2021-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Reilly,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Maddock,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-09-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pauline Wendzel,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2022-05-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-12-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-12-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2022-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2022-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2022-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2022-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2022-05-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2022-05-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE ZORN,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2022-05-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rodney Wakeman,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-09-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2022-05-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Diana Farrington,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-04-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2021-04-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Marino,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2021-04-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2022-04-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2022-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Richard Steenland,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-06-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rodney Wakeman,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-05-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-04-19T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2021-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARK HUIZENGA,2022-06-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2022-04-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Neeley,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DOUGLAS WOZNIAK,2022-05-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2022-04-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Diana Farrington,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2022-04-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-09-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-06-02T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ronnie Peterson,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2021-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2022-09-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARSHALL BULLOCK,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DOUGLAS WOZNIAK,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR BETTY JEAN ALEXANDER,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR BETTY JEAN ALEXANDER,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR BETTY JEAN ALEXANDER,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Neeley,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Diana Farrington,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Donna Lasinski,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2022-01-25T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2022-01-25T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-06-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-09-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2022-06-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2022-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-12-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-12-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-12-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-12-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2022-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARK HUIZENGA,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ken Borton,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2022-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ken Borton,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ken Borton,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2022-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR BETTY JEAN ALEXANDER,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrea Schroeder,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2021-04-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Donna Lasinski,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Robert Bezotte,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Robert Bezotte,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2021-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2022-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DOUGLAS WOZNIAK,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DOUGLAS WOZNIAK,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Ellison,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Daire Rendon,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-02-22T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-09-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Huizenga,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2022-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jason Wentworth,2022-05-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2022-05-10T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2022-05-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-05-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2022-05-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2022-05-10T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-05-10T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR BETTY JEAN ALEXANDER,2021-08-31T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-08-31T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2021-08-31T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-08-31T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jewell Jones,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Timothy Beson,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrea Schroeder,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pauline Wendzel,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2022-05-10T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL MACDONALD,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-05-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2022-05-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2021-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE ZORN,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pauline Wendzel,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pauline Wendzel,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tullio Liberati,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2022-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2022-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Timothy Beson,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2022-02-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-06-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2022-06-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2022-06-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2022-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Coleman,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Huizenga,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2022-02-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2022-02-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-02-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2022-02-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2022-02-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR BETTY JEAN ALEXANDER,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Donna Lasinski,2022-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +Rep. Greg VanWoerkom replaced Rep. Thomas Albert as conferee 12/06/2022,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2022-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Richard Steenland,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2022-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2022-09-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2022-09-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-06-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2021-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeffrey Pepper,2022-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Diana Farrington,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Robert Bezotte,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Ellison,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-10-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Daire Rendon,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2022-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2022-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2022-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-09-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2022-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2022-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Donna Lasinski,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2022-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR BETTY JEAN ALEXANDER,2022-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Huizenga,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Maddock,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2022-10-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +RULES SUSPENDED,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2021-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Reilly,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +introduced by Representative Rachel Hood,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Richard Steenland,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-10-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ronnie Peterson,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pauline Wendzel,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rodney Wakeman,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-09-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-09-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeffrey Pepper,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-01-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-09-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-09-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-09-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2021-09-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ronnie Peterson,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeffrey Pepper,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Diana Farrington,2021-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-09-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR JOHN BIZON, M.D.",2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2022-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2022-04-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2022-04-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Timothy Beson,2022-04-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Timothy Beson,2022-04-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-09-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-09-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-09-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-09-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-09-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-09-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Marino,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrea Schroeder,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2022-09-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-10-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Timothy Beson,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Huizenga,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Robert Bezotte,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Maddock,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Robert Bezotte,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +ENROLLMENT VACATED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +introduced by Representative Matt Hall,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-09-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2022-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2022-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2022-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pauline Wendzel,2022-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-11-04T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARSHALL BULLOCK,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Reilly,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Lilly,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Robert Bezotte,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-07-27T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-07-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-07-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-07-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-07-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-07-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tullio Liberati,2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-04-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Marino,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jewell Jones,2021-07-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2022-07-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2022-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2022-07-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Ellison,2022-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2022-07-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-07-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2022-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Timothy Beson,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Daire Rendon,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Harris,2022-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-07-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2022-04-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2022-02-22T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-11-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Richard Steenland,2021-11-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Daire Rendon,2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Lilly,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-07-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Diana Farrington,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Richard Steenland,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tullio Liberati,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ronnie Peterson,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Reilly,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrea Schroeder,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-09-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2021-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ken Borton,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pauline Wendzel,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-06-02T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-08-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARSHALL BULLOCK,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Carol Glanville,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-09-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2021-09-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Huizenga,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2022-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-09-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Richard Steenland,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2022-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2022-05-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-01-19T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Donna Lasinski,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jewell Jones,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2022-05-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeffrey Pepper,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-05-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rodney Wakeman,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2022-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2022-06-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Diana Farrington,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeffrey Pepper,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2022-02-22T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2022-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeffrey Pepper,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Robert Bezotte,2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2022-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2022-05-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +ORDERED ENROLLED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +introduced by Representative Stephanie Young,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeffrey Pepper,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR JOHN BIZON, M.D.",2021-07-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2022-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-11-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-04-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2022-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2022-02-22T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2022-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2022-02-22T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +introduced by Representative Kevin Coleman,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +INTRODUCED BY SENATOR DALE ZORN,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2022-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2022-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2022-02-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-01-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Timothy Beson,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2022-02-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-06-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2022-06-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-07-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2022-05-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-07-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2022-05-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2022-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-06-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2022-05-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2022-05-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-05-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Ellison,2022-05-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2022-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-12-15T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2022-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR BETTY JEAN ALEXANDER,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2022-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-09-15T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Ellison,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-04-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Timothy Beson,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2022-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-02-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2022-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-06-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR JOHN BIZON, M.D.",2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Ellison,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-02-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeffrey Pepper,2022-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Donna Lasinski,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2021-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2022-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrea Schroeder,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeffrey Pepper,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARK HUIZENGA,2022-05-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Coleman,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-04-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-06-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-07-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-06-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-07-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2021-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-06-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2021-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-06-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Daire Rendon,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Neeley,2022-06-14T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-04-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM HOLLIER,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Lilly,2021-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2021-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR JOHN BIZON, M.D.",2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Lilly,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Timothy Beson,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Timothy Beson,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-05-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2022-06-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jewell Jones,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Daire Rendon,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2021-04-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2022-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2022-06-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARSHALL BULLOCK,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +referred to second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-09-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tullio Liberati,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Lilly,2021-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE ZORN,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-04-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Timothy Beson,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Neeley,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Coleman,2022-05-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2021-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2022-06-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-10-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Coleman,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Neeley,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jewell Jones,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Maddock,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2022-05-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Harris,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Huizenga,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Daire Rendon,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2021-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Huizenga,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-12-29T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2022-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Marino,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-10-12T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2021-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL MACDONALD,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2022-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-06T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARSHALL BULLOCK,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE ZORN,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR JOHN BIZON, M.D.",2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2022-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARK HUIZENGA,2022-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2021-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rodney Wakeman,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-11-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-07-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kevin Hertel,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeffrey Pepper,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2022-09-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-05-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2022-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-01-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jewell Jones,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2022-09-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2022-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-05-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-02-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2022-04-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Lilly,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR BETTY JEAN ALEXANDER,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Timothy Beson,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Marino,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE ZORN,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-11-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-07-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-09-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAN LAUWERS,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Harris,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Daire Rendon,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-01-19T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-06-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2022-01-19T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-02-25T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARK HUIZENGA,2022-09-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2022-01-19T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-10-28T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Robert Bezotte,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-07-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-07-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-09-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2021-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-07-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-02-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-01-19T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2021-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Richard Steenland,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Richard Steenland,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2022-10-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2022-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARK HUIZENGA,2022-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-01-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Ellison,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Reilly,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-06-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Richard Steenland,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-01-19T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2021-08-17T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR JOHN BIZON, M.D.",2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Harris,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2022-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2021-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Maddock,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ken Borton,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2022-01-19T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Richard Steenland,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2022-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2022-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR LANA THEIS,2022-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-09-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Reilly,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-01-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR BETTY JEAN ALEXANDER,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEVIN DALEY,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2022-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-01-25T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-02-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROSEMARY BAYER,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Tate,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Cherry,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2022-06-08T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2021-06-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beth Griffin,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tyrone Carter,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-10-27T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Roth,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2022-02-17T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2022-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ADAM J. HOLLIER,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2022-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2022-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KIMBERLY A. LASATA,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-01-12T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Anthony,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tullio Liberati,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pauline Wendzel,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bradley Slagh,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bryan Posthumus,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Lilly,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM ANANICH,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cara Clemente,2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Helena Scott,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MALLORY MCMORROW,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2021-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ryan Berman,2021-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +introduced by the Speaker on behalf of the entire membership,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tommy Brann,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2021-10-27T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARSHALL BULLOCK,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DALE W. ZORN,2022-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Brixie,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sue Allor,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ken Borton,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tim Sneller,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abdullah Hammoud,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-10-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-03-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-11-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ED MCBROOM,2021-10-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2022-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2022-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Rogers,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Lilly,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Karen Whitsett,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2022-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Shri Thanedar,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ronnie Peterson,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DAYNA POLEHANKI,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Cynthia Johnson,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Thomas Albert,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Amos O'Neal,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steve Carra,2021-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Harris,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR PAUL WOJNO,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2022-10-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Darrin Camilleri,2022-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Harris,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Luke Meerman,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative TC Clements,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Samantha Steckloff,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Maddock,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rodney Wakeman,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2022-06-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Bronna Kahle,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Greg VanWoerkom,2021-06-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Terry Sabo,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Alexander,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SEAN MCCANN,2021-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2022-03-01T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Beeler,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Graham Filler,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jack O'Malley,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR SYLVIA SANTANA,2021-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR JOHN BIZON, M.D.",2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2022-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ann Bollin,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sarah Lightner,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ERIKA GEISS,2021-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brenda Carter,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tullio Liberati,2021-12-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Andrew Fink,2021-08-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Joe Bellino,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mike Mueller,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-12-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Regina Weiss,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-04-12T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-12-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jim Haadsma,2021-07-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Douglas Wozniak,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Cavanagh,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-12-15T05:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MARSHALL BULLOCK,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gregory Markkanen,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ronnie Peterson,2022-01-18T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Jeff Yaroch,2021-04-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Yousef Rabhi,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Annette Glenn,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2022-03-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Brad Paquette,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Phil Green,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ranjeev Puri,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR MICHAEL D. MACDONALD,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David Martin,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ronnie Peterson,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Ben Frederick,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Scott VanSingel,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Eisen,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR TOM BARRETT,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative David LaGrand,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2021-01-28T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Koleszar,2021-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pat Outman,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mark Tisdel,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Angela Witwer,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Tenisha Yancey,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Padma Kuppa,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RICK OUTMAN,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Richard Steenland,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Lori Stone,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Steven Johnson,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Gary Howell,2021-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Alex Garza,2021-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR ARIC NESBITT,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Matt Hall,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Laurie Pohutsky,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rachel Hood,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Sara Cambensy,2021-04-15T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Felicia Brabec,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Richard Steenland,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mari Manoogian,2021-06-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM RUNESTAD,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kara Hope,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Stephanie Young,2022-01-26T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Daire Rendon,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR DOUGLAS WOZNIAK,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEREMY MOSS,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Abraham Aiyash,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Roger Hauck,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative John Damoose,2021-09-23T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-09-01T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Pamela Hornberger,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Nate Shannon,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Christine Morse,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR STEPHANIE CHANG,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kyra Bolden,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Rodney Wakeman,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Beau LaFave,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative William Sowerby,2022-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +"INTRODUCED BY SENATOR CURTIS HERTEL, JR.",2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Kelly Breen,2021-07-01T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Mary Whiteford,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +introduced by Representative Julie Calley,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +INTRODUCED BY SENATOR JIM STAMAS,2022-09-07T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 490 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +introduced by Representative Ben Frederick,2022-05-24T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Education,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-10-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +POSTPONED FOR THE DAY,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-03-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2021-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-03-22T04:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-03-22T04:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-03-22T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Energy,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-22T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +rule 71 suspended,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-05-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-05-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-05-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-05-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-05-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-05-17T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Transportation,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-09-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +POSTPONED FOR THE DAY,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Education,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-06-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-03-08T05:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-02-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-06-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-09-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +POSTPONED FOR THE DAY,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Education,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +POSTPONED FOR THE DAY,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-11-03T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted by unanimous standing vote,2022-02-17T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-02-17T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-02-17T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-10-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-12-14T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-14T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-14T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-06-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-07T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-12T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2022-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2022-01-19T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-06-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted by unanimous standing vote,2022-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +INTRODUCED BY SENATOR RUTH A. JOHNSON,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-07T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-02-23T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-22T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-22T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-02-08T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-01-25T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-02-08T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-06-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-04-12T04:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-04-12T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +adopted,2022-04-12T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-02-18T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-02-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-02-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +postponed for the day,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-03-04T05:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-03-11T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-02-18T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-01-28T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Judiciary,2022-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-02-11T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted by unanimous standing vote,2021-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +postponed for the day,2021-01-13T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-04-15T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-17T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-01-13T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-01-28T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2021-03-04T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-01-13T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-02-18T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Financial Services,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-02-04T05:00:00+00:00,['passage'],MI,2021-2022 +adopted by unanimous standing vote,2021-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 422 Yeas 62 Nays 39 Excused 0 Not Voting 8,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-03-01T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-03-01T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-12-01T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-10-06T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +postponed for the day,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +rule 71 suspended,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-01-13T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-06-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +postponed for the day,2021-01-13T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-05-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-12-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-10-05T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-08T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +introduced by Representative John Damoose,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2022-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-08T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-08T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-08-17T04:00:00+00:00,['passage'],MI,2021-2022 +adopted,2021-08-17T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-08-17T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-09-30T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-09-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Education,2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +rule 71 suspended,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-10-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-10-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-01-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Energy,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +postponed for the day,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-19T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-01-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-01-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2022-01-19T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-01-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-01-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-19T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-01-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2022-01-19T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-05-13T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-01-19T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2022-01-19T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +adopted,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +adopted,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-01-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-08T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +POSTPONED FOR THE DAY,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-13T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-07-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-11-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-07T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-09-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +INTRODUCED BY SENATOR WAYNE A. SCHMIDT,2021-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2021-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-02-18T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-09-14T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-09-14T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-08-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted by unanimous standing vote,2021-11-03T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-05-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-09-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +substitute (H-1) adopted,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +adopted,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +introduced by Representative Michele Hoitenga,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +adopted,2021-11-30T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-11-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-07T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-07T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-07T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +postponed for the day,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-10-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-07T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-11-30T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-12-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Judiciary,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-09-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +postponed for the day,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Judiciary,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-11-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-04-21T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-01-12T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted by unanimous standing vote,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +POSTPONED FOR THE DAY,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted by unanimous standing vote,2021-10-20T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-10-20T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-14T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-14T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-14T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +substitute (H-1) adopted,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-04-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-04-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule 71 suspended,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Judiciary,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-17T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-17T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-17T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-17T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-17T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-17T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-17T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-17T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-01-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-22T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-22T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +adopted by unanimous standing vote,2022-01-25T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-01-25T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-07T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-01-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-02-04T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +substitute (H-1) adopted,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-01-13T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-02-18T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-01-13T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-01-28T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Energy,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +adopted,2021-01-13T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-03-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-01-13T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-01-13T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-02-25T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-01-13T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-01-13T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Health Policy,2022-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-09-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-09-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-09-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +INTRODUCED BY SENATOR KEN HORN,2021-05-06T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-04-14T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-02-09T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-10-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-10-26T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-06-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +rule 71 suspended,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-12-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-17T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-02-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-02-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-12-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +postponed for the day,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Financial Services,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +adopted,2022-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-12-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-12-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Agriculture,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-12-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-10-05T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted by unanimous standing vote,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-08-17T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-08-17T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-09-30T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +adopted,2022-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +INTRODUCED BY SENATOR JEFF IRWIN,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +referred to Committee on Government Operations,2021-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2021-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-08-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-08-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-04-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-02-01T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-08T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-04-15T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Education,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-07-21T04:00:00+00:00,['passage'],MI,2021-2022 +rule 71 suspended,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +adopted,2021-05-06T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-07-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-05-06T04:00:00+00:00,['passage'],MI,2021-2022 +adopted,2021-05-06T04:00:00+00:00,['passage'],MI,2021-2022 +adopted,2021-05-06T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-05-06T04:00:00+00:00,['passage'],MI,2021-2022 +adopted,2021-05-06T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-05-06T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-07-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +introduced by Representative Ben Frederick,2022-02-22T05:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2022-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-07-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-08T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-09-07T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-07-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +reported with recommendation without amendment,2022-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2022-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-04-26T04:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-04-26T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-14T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-02-24T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-11-02T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +adopted,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Financial Services,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-09-14T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-13T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-07-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +INTRODUCED BY SENATOR WINNIE BRINKS,2021-02-16T05:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-17T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-12-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-04-29T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Government Operations,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-10-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-09-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-02-22T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Education,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +POSTPONED FOR THE DAY,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +adopted,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +INTRODUCED BY SENATOR ROGER VICTORY,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2022-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-07T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted by unanimous standing vote,2021-10-07T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-12-06T05:00:00+00:00,['reading-1'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted by unanimous standing vote,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-12-06T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-14T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-09-22T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +adopted,2021-06-02T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-12-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-12-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-09-22T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-08T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Health Policy,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +INTRODUCED BY SENATOR CURTIS S. VANDERWALL,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-09-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-07T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-09-09T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Health Policy,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-09-09T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +INTRODUCED BY SENATOR MIKE SHIRKEY,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +postponed for the day,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +rule 71 suspended,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-08T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-10-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-07-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Energy,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +postponed for the day,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +INTRODUCED BY SENATOR JON C. BUMSTEAD,2021-02-02T05:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-05-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-05-17T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-05-17T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-05-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-10-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-04-20T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Appropriations,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-04-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-08T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-09-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted by unanimous standing vote,2022-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-06-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-05-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-04-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +adopted,2022-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-01-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-04-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted by unanimous standing vote,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-29T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-08T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Financial Services,2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-08-17T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-12-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Judiciary,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted by unanimous standing vote,2021-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-14T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-14T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-12-14T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-14T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-01-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-01-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2021-09-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +POSTPONED FOR THE DAY,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-02-17T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-07-01T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted by unanimous standing vote,2021-09-29T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-04-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-04-14T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-04-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-03-16T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-09-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-09-07T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted by unanimous standing vote,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-08T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-09-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Appropriations,2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-05-10T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-09-07T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-09-14T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-07-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-02-24T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-07-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-07T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Oversight,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-05-10T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-12-01T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +postponed for the day,2021-01-13T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-07-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-01-28T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-07-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-02-01T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-02-18T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2022-06-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-01-26T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-09-07T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-16T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +rule 71 suspended,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-01-28T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-12T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-09-07T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-02-18T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-02-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-04-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-12-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-03-04T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-01-26T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-06T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-25T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-01-13T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Government Operations,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +adopted,2021-04-29T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-08-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Health Policy,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Financial Services,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-04-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +ADOPTED,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Energy,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-12-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Energy,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-03-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-09-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-01-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +SUBSTITUTE (S-1) ADOPTED,2022-04-20T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-04-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2021-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Transportation,2022-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-04-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +printed joint resolution filed 05/10/2022,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-09-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Education,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Health Policy,2022-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Oversight,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2021-08-31T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +ADOPTED,2021-08-31T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +ADOPTED,2021-08-31T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-01-20T05:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2021-08-31T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Oversight,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-07-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-07-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Education,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-12-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-07-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2021-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-03-16T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-09-09T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Energy,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-09-09T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Transportation,2022-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2021-06-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-09-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-04-14T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-07-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-4),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2021-04-29T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Transportation,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Financial Services,2021-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ROLL CALL: ROLL CALL # 68 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ROLL CALL: ROLL CALL # 46 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-09-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Education,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-02-08T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-02-18T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-01-12T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +per Rule 41 referred to Committee on Oversight,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Financial Services,2021-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-06-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Transportation,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Transportation,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-02-18T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-02-24T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-09-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +SENATOR REMOVED AS SPONSOR: ROGER VICTORY,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-07-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-02-08T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-04-29T04:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-04-29T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Oversight,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-01-13T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-07-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-09-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-02-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-02-04T05:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-07-01T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Energy,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-01-28T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-09-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-11-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Insurance,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-04-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2022-05-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-12-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Education,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-04-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Insurance,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Appropriations,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +SENATOR REMOVED AS SPONSOR: TOM BARRETT,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Oversight,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-04-14T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-06-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Insurance,2021-09-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Agriculture,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-06-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-09-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ADOPTED,2022-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-02-24T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-02-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-09-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +SUBSTITUTE (S-1) ADOPTED,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-12-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-12-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-02-24T05:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-12-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-12-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-12-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Insurance,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-12-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-04-14T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Transportation,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2022-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-02-16T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +SUBSTITUTE (S-2) ADOPTED,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Agriculture,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Education,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2021-10-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Insurance,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-01-20T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-02-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Education,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +POSTPONED FOR THE DAY,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Health Policy,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-02-22T05:00:00+00:00,['amendment-failure'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-01-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-01-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-11-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Financial Services,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2021-05-13T04:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Insurance,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Education,2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2021-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-01-26T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-01-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-01-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Oversight,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-02-16T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-09-29T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Financial Services,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Oversight,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2021-05-13T04:00:00+00:00,['passage'],MI,2021-2022 +ADOPTED,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +ADOPTED,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +ADOPTED,2021-07-15T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Oversight,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-11-02T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Agriculture,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-07-01T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +motion to discharge committee postponed for day,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-01-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Government Operations,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-07-15T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Oversight,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2022-06-23T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +ADOPTED,2021-10-07T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-03-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-09-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Agriculture,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-12-01T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-04-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-11-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +ADOPTED,2021-01-13T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-04-21T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Energy,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-11-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-02-18T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Appropriations,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2021-02-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-12-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Oversight,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +ADOPTED,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-11-30T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Education,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-05-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-02-24T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-10-06T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-10-06T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-04-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-03-16T04:00:00+00:00,['passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Government Operations,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-11-30T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-02-04T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-03-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +POSTPONED TEMPORARILY,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2021-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +SUBSTITUTE (S-1) ADOPTED,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2021-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-05-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-02-11T05:00:00+00:00,['passage'],MI,2021-2022 +ADOPTED,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Financial Services,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-04-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-04-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2022-06-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-04-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-06-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-04-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +SUBSTITUTE (S-1) ADOPTED,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Education,2022-06-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +substitute (H-1) adopted,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Oversight,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-06-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-11-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2021-02-04T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2021-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-10-13T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-23T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-12-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-04-12T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2022-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-06-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +POSTPONED FOR THE DAY,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-09-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-09-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-06-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-11-30T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2022-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-10-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2021-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Government Operations,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Education,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Financial Services,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-12-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-05-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-05-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-05-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Oversight,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2022-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-09-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-01-20T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Financial Services,2021-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +vote on adoption reconsidered,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Transportation,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Financial Services,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-04-29T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-04-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-12-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-02-24T05:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Agriculture,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Oversight,2022-05-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-07-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-04-29T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-04-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-07-15T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-11-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-04-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-5),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-04-29T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-02-22T05:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Financial Services,2021-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-10-14T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Education,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +roll call Roll Call # 3 Yeas 107 Nays 0 Excused 0 Not Voting 3,2021-01-13T05:00:00+00:00,[],MI,2021-2022 +ADOPTED,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-06-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-04-29T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-03-22T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-10-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2021-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-04-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +SUBSTITUTE (S-1) ADOPTED,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-05-24T04:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-06-14T04:00:00+00:00,['passage'],MI,2021-2022 +ADOPTED,2022-04-21T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Education,2022-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-02-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Insurance,2022-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-01-25T05:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Energy,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-11-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2021-10-13T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-04-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Financial Services,2022-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Insurance,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-01-13T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-01-27T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +per Rule 41 referred to Committee on Agriculture,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-07-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-03-11T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-02-23T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-09-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-02-18T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +roll call Roll Call # 2 Yeas 107 Nays 0 Excused 0 Not Voting 3,2021-01-13T05:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-05-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-10-21T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-01-13T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2022-06-21T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Energy,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-01-13T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ROLL CALL: ROLL CALL # 50 YEAS 20 NAYS 14 EXCUSED 2 NOT VOTING 0,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Judiciary,2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Insurance,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Agriculture,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-03-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Insurance,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-04-12T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Agriculture,2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2022-04-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Oversight,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-12-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-05-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-04-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-02-01T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-07-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Oversight,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Financial Services,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-11-30T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-11-30T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-01-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-09-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Financial Services,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-01-20T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Agriculture,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-04-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Energy,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Oversight,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-22T05:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-4),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-10-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-05-10T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-06-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-02-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Energy,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-4),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-06-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-06-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-05-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-02-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-02-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-02-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-06-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-11-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-11-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +ADOPTED,2021-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-12-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-04-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-06-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-10-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-09-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-01-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-02-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-07-21T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-12-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +SENATOR REMOVED AS SPONSOR: LANA THEIS,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Oversight,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-01-28T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-10-27T04:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-07-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-08-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-06-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-09-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-12-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-06-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Oversight,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-10-19T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Agriculture,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-09-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Communications and Technology,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-12-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Energy,2022-08-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/20/2022,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2021,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2021,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +adopted,2022-06-21T04:00:00+00:00,['passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +received in House,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-01-20T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/25/2022,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/15/2021,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/25/2022,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2022,2022-09-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/17/2022,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/28/2022,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/10/2021,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2022,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/13/2021,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 09/27/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2021,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/06/2021,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/27/2021,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/27/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/07/2021,2021-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/26/2021,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/20/2022,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/20/2022,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2021,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/05/2021,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/28/2022,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2022,2022-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/20/2022,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2022,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2021,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/06/2021,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 12/01/2022,2022-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 10/14/2021,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/07/2021,2021-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2022,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/15/2021,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 12/15/2021,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2022,2022-09-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/15/2021,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/06/2021,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2022,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2022,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/06/2021,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/06/2021,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/24/2022,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/20/2022,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/24/2022,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/10/2022,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/14/2021,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/07/2022,2022-09-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 11/09/2021,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/12/2021,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2022,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/06/2021,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2022,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/14/2021,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/14/2021,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2022,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2022,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/14/2021,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2022,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/07/2021,2021-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2022,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2022,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2022,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/07/2021,2021-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2022,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/05/2021,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2022,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2022,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/01/2022,2022-02-02T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/14/2021,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/15/2022,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/14/2021,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/14/2022,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/14/2022,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2022,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2022,2022-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/14/2022,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/22/2022,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2022,2022-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2022,2022-12-01T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/24/2022,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/27/2021,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/27/2021,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/13/2021,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/27/2021,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/29/2021,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +adopted,2022-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/29/2021,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/09/2021,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/13/2021,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2022,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2022,2022-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/18/2022,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/03/2021,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2022,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2022,2022-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/05/2021,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2022,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/18/2022,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +motion to discharge committee approved,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/28/2021,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 06/08/2021,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +ADOPTED AS SUBSTITUTED (S-1),2022-03-01T05:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/25/2021,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 10/28/2021,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/04/2021,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/04/2021,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/28/2021,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/13/2021,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/28/2021,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/28/2021,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/28/2021,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/25/2021,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2022,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2022,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2022,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2022,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2022,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/26/2022,2022-06-01T04:00:00+00:00,[],MI,2021-2022 +received in House,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +bill electronically reproduced 01/18/2022,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2022,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +received in House,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/04/2021,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/26/2022,2022-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/02/2022,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2022,2022-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/03/2022,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2022,2022-12-01T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/26/2022,2022-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2022,2022-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/25/2021,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2022,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2022,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/26/2022,2022-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/25/2021,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2022,2022-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2022,2022-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2022,2022-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +joint resolution electronically reproduced 01/13/2021,2021-01-26T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/03/2022,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/25/2021,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/25/2021,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/01/2022,2022-02-02T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2022,2022-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/25/2021,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2021,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/25/2021,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +received in House,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2021,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/10/2021,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/10/2021,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/13/2021,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2021,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/14/2021,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/18/2021,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/03/2021,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2021,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 09/14/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/30/2021,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/18/2021,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +adopted,2021-09-14T04:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2021,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE S-1,2021-01-28T05:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/23/2021,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2022,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/18/2021,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/20/2021,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/27/2021,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/09/2021,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/20/2021,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/28/2021,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 12/09/2021,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/25/2021,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2021,2021-09-23T04:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2021,2021-09-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2021,2021-09-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2021,2021-09-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/03/2022,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2021,2021-09-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/18/2021,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/20/2021,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/08/2021,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2021,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/03/2022,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-03-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2021,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/18/2021,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/03/2021,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/20/2021,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 03/02/2022,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/27/2021,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/26/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/05/2021,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/03/2022,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/15/2022,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/04/2021,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2021,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/03/2022,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2021,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/10/2021,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/10/2021,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/18/2021,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2021,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2022,2022-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2022,2022-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2022,2022-04-14T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/18/2021,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2022,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/08/2021,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/18/2021,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +received in House,2021-09-21T04:00:00+00:00,['introduction'],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2021,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2022,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/01/2022,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/03/2022,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2022,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/02/2021,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-02-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 05/19/2021,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2022,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2021,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 02/18/2021,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2021,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/18/2021,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/18/2021,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/18/2021,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +received in House,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +ADOPTED,2021-03-11T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-05-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/26/2021,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +adopted,2021-03-04T05:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 04/27/2021,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/09/2021,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/25/2021,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2021,2021-09-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/26/2021,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2021,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/01/2022,2022-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +adopted,2021-11-03T04:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/18/2022,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 02/09/2022,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/02/2021,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/10/2022,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/02/2021,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +adopted,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/22/2022,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/08/2022,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2022,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 05/18/2022,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/08/2022,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2022,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 05/18/2022,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2022,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2022,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/02/2021,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/22/2022,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/14/2021,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/02/2021,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/27/2022,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/27/2022,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 04/27/2022,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/27/2022,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2021,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/25/2022,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2021,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/17/2022,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/17/2022,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2021,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/17/2022,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2021,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/17/2022,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/17/2022,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/17/2022,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/03/2021,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/17/2022,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2022,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/17/2022,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2022,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/10/2021,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/09/2021,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/05/2021,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/06/2021,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/14/2021,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2021,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/05/2021,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/13/2021,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/13/2021,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2021,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/02/2021,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2021,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +adopted,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 12/07/2021,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/02/2021,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/02/2021,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2021,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/02/2021,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/10/2021,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/08/2022,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/08/2022,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/02/2021,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/02/2021,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/08/2021,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/18/2021,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/20/2021,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/09/2021,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/09/2021,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/09/2021,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/13/2021,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/13/2021,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/20/2021,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +ADOPTED,2021-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +joint resolution electronically reproduced 04/27/2021,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +joint resolution electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 12/14/2021,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/14/2021,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/14/2021,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/14/2021,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2021,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/15/2021,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/15/2021,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2021,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/18/2021,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/18/2021,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +received in House,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/18/2021,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-02-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/10/2021,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/10/2021,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +received in House,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +ADOPTED,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-02-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/14/2021,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/18/2021,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +received in House,2021-01-13T05:00:00+00:00,['introduction'],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/17/2021,2021-02-18T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/02/2021,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/02/2021,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2022,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2022,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +joint resolution electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 05/20/2021,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 05/19/2022,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2022,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2022,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/24/2022,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2022,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/24/2022,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/24/2022,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/24/2022,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/24/2022,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/24/2022,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/27/2021,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/23/2021,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/28/2021,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 10/28/2021,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/28/2021,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 10/28/2021,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2022,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2022,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/03/2021,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/26/2022,2022-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2022,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/26/2022,2022-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2022,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2022,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2022,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +received in House,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/24/2022,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2022,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/18/2021,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2021,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2021,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2022,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/04/2021,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 01/26/2022,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2022,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 05/05/2021,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2021,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2021,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2021,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 03/23/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/07/2021,2021-10-12T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/10/2021,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/20/2021,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +ADOPTED AS SUBSTITUTED (S-1),2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/14/2021,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +adopted,2021-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 09/14/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/08/2021,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/03/2021,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/03/2021,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/03/2021,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/06/2021,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/03/2021,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/03/2021,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/27/2021,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/27/2021,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/04/2021,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/04/2021,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/20/2022,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2022,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/20/2022,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2022,2022-09-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/07/2022,2022-09-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/07/2022,2022-09-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2022,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/08/2022,2022-09-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/20/2022,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2022,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/20/2022,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2022,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/07/2022,2022-09-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2022,2022-09-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/20/2022,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/07/2022,2022-09-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2021,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/10/2021,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/13/2021,2021-01-26T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/10/2022,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/10/2022,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/10/2022,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/10/2022,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/10/2022,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/10/2022,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2021,2021-09-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/03/2021,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/08/2021,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2022,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2022,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/04/2021,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/10/2021,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/10/2021,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +adopted,2021-11-09T05:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/28/2021,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/28/2021,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2021,2021-09-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2021,2021-09-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2021,2021-09-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2021,2021-09-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2022,2022-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2022,2022-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/26/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/27/2022,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/02/2021,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2022,2022-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2022,2022-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/23/2021,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/23/2021,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/23/2021,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 09/23/2021,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/23/2021,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/23/2021,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/26/2022,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/26/2022,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/26/2022,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/26/2022,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Energy,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/30/2021,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/30/2021,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/30/2021,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/10/2021,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/10/2021,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 06/10/2021,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/01/2022,2022-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2022,2022-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/01/2022,2022-02-02T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2022,2022-02-03T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2022,2022-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +bill electronically reproduced 02/02/2022,2022-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/08/2021,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Health Policy,2022-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 12/01/2022,2022-12-01T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2022,2022-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2022,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2022,2022-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/09/2021,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2022,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2022,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/14/2022,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/15/2022,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/15/2022,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +joint resolution electronically reproduced 02/03/2022,2022-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +adopted,2022-03-01T05:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 12/06/2022,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/06/2022,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/08/2022,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/08/2022,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Government Operations,2022-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-04-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/05/2021,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/05/2021,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/05/2021,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/10/2022,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/10/2022,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/10/2022,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/10/2022,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/10/2022,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/08/2021,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 05/11/2022,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/08/2022,2022-09-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/01/2022,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2022,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2022,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2021,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/15/2022,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/15/2022,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/15/2022,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/15/2022,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/15/2022,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/15/2022,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/26/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/28/2022,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/03/2022,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/01/2022,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/27/2021,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2022,2022-02-03T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2022,2022-02-03T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/12/2021,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/02/2021,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/13/2021,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/01/2022,2022-02-02T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/13/2021,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/25/2021,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-01-20T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/20/2021,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/27/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/28/2022,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/28/2022,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2021,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/08/2021,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/14/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/18/2022,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/05/2021,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/12/2022,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +ADOPTED AS SUBSTITUTED (S-1),2022-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2022,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +adopted,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/02/2021,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/29/2021,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/03/2022,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/03/2022,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2021,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2021,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/27/2021,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/09/2021,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2021,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/10/2022,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/10/2022,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/10/2022,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/26/2021,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/26/2021,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/26/2021,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/26/2021,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-02-16T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 10/13/2022,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2021,2021-09-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2021,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/25/2021,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2021,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/20/2021,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/20/2021,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Energy,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +ADOPTED,2022-02-22T05:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/14/2021,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/14/2021,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2021,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/14/2021,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2021,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/14/2021,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/07/2021,2021-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/13/2021,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/13/2021,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 05/26/2021,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +received in House,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +bill electronically reproduced 05/17/2022,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/02/2021,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2021,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/14/2021,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/12/2021,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +ADOPTED AS SUBSTITUTED (S-2),2022-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 03/08/2022,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/08/2022,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/18/2022,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/08/2021,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/25/2021,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/08/2021,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/08/2021,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/08/2021,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/09/2021,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/09/2021,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/09/2021,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/09/2021,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/13/2021,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/13/2021,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/20/2021,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/20/2021,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/03/2022,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/18/2021,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2022,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/18/2021,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +joint resolution electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/19/2021,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/14/2021,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/14/2021,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/14/2021,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/14/2021,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/26/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/15/2021,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/15/2021,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/15/2021,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/15/2021,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/15/2021,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/20/2021,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/09/2021,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/08/2022,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/08/2022,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/22/2022,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/22/2022,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/18/2021,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/18/2021,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +ADOPTED AS SUBSTITUTED (S-1),2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +adopted,2021-03-11T05:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/18/2021,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2021,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +ADOPTED,2021-01-28T05:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/18/2021,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/18/2021,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-02-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/13/2021,2021-01-26T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/22/2022,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/10/2021,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2021,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +adopted,2021-01-28T05:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/29/2021,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2021,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/02/2021,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/02/2021,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2022,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2022,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2022,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2022,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2022,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/24/2021,2021-06-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/18/2021,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/25/2022,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/25/2022,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/25/2022,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2022,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2022,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2022,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/24/2022,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/24/2022,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/28/2021,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 05/26/2022,2022-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2022,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2022,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2022,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2022,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2022,2022-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2021,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2022,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2021,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/18/2021,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2021,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 06/30/2021,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-01-20T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-09-22T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/09/2021,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2021,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2021,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2021,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/28/2021,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 01/26/2022,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2022,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2022,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2022,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2022,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 05/05/2021,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2021,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2021,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/08/2021,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2022,2022-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 07/01/2021,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2021,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2021,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/10/2021,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +adopted,2021-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 05/20/2021,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/20/2021,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +received in House,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +received in House,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2022,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2022,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2022,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/09/2022,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/21/2021,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/02/2021,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/02/2021,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/04/2021,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2021,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/03/2021,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/03/2021,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/03/2021,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/03/2021,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/03/2021,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/27/2021,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/27/2021,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/27/2021,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/27/2021,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/27/2021,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/03/2021,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/03/2021,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/03/2021,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/03/2021,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/03/2021,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/03/2021,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-04-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2022,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/20/2022,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2022,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/20/2022,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/07/2022,2022-09-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/04/2021,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2022,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +ADOPTED,2021-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/04/2021,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +adopted,2021-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2022,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +ADOPTED AS SUBSTITUTED (S-1),2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 02/11/2021,2021-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2021,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/08/2021,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 01/18/2022,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2021,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-04-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/25/2021,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/04/2021,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2022,2022-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2022,2022-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/21/2022,2022-09-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/27/2022,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2021,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/22/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2021,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/18/2022,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/18/2022,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/18/2022,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/04/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/18/2022,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/18/2022,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/18/2022,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/18/2022,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/18/2022,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/18/2022,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/28/2021,2021-02-02T05:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 05/12/2021,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +ADOPTED,2021-05-13T04:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/10/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 09/29/2021,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/28/2021,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/29/2021,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/29/2021,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/29/2021,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/29/2021,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/29/2021,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/29/2021,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/30/2021,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/08/2022,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/08/2022,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2022,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2022,2022-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/01/2022,2022-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/01/2022,2022-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/01/2022,2022-02-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2022,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/03/2022,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2022,2022-12-01T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2022,2022-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/02/2022,2022-02-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/08/2021,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/08/2021,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 05/13/2021,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/09/2021,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2022,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +received in House,2022-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +bill electronically reproduced 06/14/2022,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 06/14/2022,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/14/2022,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/14/2022,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/14/2022,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 452 Yeas 57 Nays 46 Excused 0 Not Voting 6,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2022,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2022,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2021,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/08/2022,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/18/2021,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/17/2021,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/15/2021,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/03/2021,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-15T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/21/2022,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/13/2021,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2022,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 05/10/2022,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2022,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/28/2021,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2022,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2022,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 08/17/2021,2021-08-18T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/25/2021,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2021,2021-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/12/2022,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/12/2022,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2021,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2022,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/23/2021,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/11/2022,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/01/2021,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/15/2022,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/15/2022,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/15/2022,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/15/2022,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/15/2022,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/01/2022,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/01/2022,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/26/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/28/2022,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/03/2022,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/01/2022,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2022,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/01/2022,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/01/2022,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +printed joint resolution filed 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2021-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/27/2021,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2021,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/24/2021,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/21/2021,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/14/2021,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/18/2021,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 06/22/2022,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 01/25/2022,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/14/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/28/2022,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +ADOPTED AS AMENDED,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/29/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/28/2022,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/10/2022,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/30/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/02/2021,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/29/2021,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 03/23/2021,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/10/2022,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/23/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/03/2022,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/29/2022,2022-09-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/29/2022,2022-09-29T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/29/2022,2022-09-29T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 09/29/2022,2022-09-29T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH RECOMMENDATION FOR REFERRAL TO COMMITTEE ON APPROPRIATIONS,2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2022,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2022,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +vote on adoption reconsidered,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/07/2021,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/22/2022,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/29/2021,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/03/2022,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/03/2022,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/05/2021,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/24/2022,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/05/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/06/2021,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/15/2021,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/12/2022,2022-10-12T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/11/2022,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/13/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/08/2022,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +adopted,2022-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2022,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2021,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/26/2022,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/09/2022,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/16/2022,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-12T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/26/2021,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/26/2021,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/13/2022,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/02/2021,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/08/2022,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/02/2021,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/23/2021,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-01-20T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2021,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2021,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 11/30/2021,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2021,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 02/17/2022,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 03/17/2022,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/15/2021,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/20/2021,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 01/27/2021,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/22/2021,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 12/01/2021,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-12T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/20/2021,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/20/2021,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/20/2021,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +ENTIRE MEMBERSHIP OF THE SENATE AND LIEUTENANT GOVERNOR NAMED CO-SPONSORS,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-04-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2021-02-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 05/24/2022,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 02/18/2021,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4),2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-04-29T04:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-11-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-03-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-02-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +notice given to discharge committee,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Judiciary, with substitute (H-1)",2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-02-24T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-09-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-09-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-06-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-03-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-09-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-09-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 10/07/2021,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-01-26T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-04-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-04-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-04-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-24T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-11-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted by unanimous standing vote,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-03-04T05:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2021-02-23T05:00:00+00:00,['committee-passage'],MI,2021-2022 +notice given to discharge committee,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON REGULATORY REFORM,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-05-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2021-02-04T05:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Judiciary, with substitute (H-2)",2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +received in House,2021-10-13T04:00:00+00:00,['introduction'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2021-04-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-05-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-11-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 06/09/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 03/11/2021,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-02-23T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2022-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Judiciary, with substitute (H-1)",2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-04-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-04-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-04-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 03/16/2021,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-05-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received in House,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +received in House,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-4),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2021-03-16T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-02-23T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 04/29/2021,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received in House,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2022-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +postponed for the day,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-4),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with amendment(s),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-02-23T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON APPROPRIATIONS,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-02-24T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-09-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-04-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-04-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-04-29T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-01-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-11-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-04-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-4),2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-02-24T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-09-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"per Rule 41 referred to Committee on Military, Veterans and Homeland Security",2022-01-19T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-09-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2022-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-04-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +roll call Roll Call # 113 Yeas 59 Nays 50 Excused 0 Not Voting 1,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-02-18T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-04-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Judiciary, with substitute (H-1)",2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Judiciary, with substitute (H-1)",2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-01-18T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON APPROPRIATIONS,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-4),2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-01-18T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-01-18T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-02-24T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-4),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-02-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-5),2021-12-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-04-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with amendment(s),2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-06-22T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Judiciary, with substitute (H-1)",2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-06-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2022-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +rule 71 suspended,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-07-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received in House,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-02-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-02-23T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2021-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +ADOPTED,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-02-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-11-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2021-02-11T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-01-13T05:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-11-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +per Rule 41 referred to Committee on Elections and Ethics,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +adopted,2021-01-13T05:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-07-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-04-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-05-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-05-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Judiciary, with substitute (H-1)",2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee postponed for day,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2022-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2021-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-01-18T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-01-18T05:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-02-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-04-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 02/22/2022,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-4),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-04-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-02-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +substitute (H-3) adopted,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-10-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-02-23T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-03-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-11-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-06-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-05-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-03-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-4),2022-06-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-09-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-6),2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +adopted by unanimous standing vote,2021-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-01-27T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-04-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-08-31T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-08-31T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 12/07/2021,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 10/13/2021,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-02-23T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-4),2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2022-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-04-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-05-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +roll call Roll Call # 319 Yeas 65 Nays 39 Excused 0 Not Voting 6,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-09-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-10-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-30T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-02-23T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-04-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-4),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Judiciary, with substitute (H-1)",2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-02-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee postponed for day,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +notice given to discharge committee,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +per Rule 41 referred to Committee on Local Government and Municipal Finance,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +per Rule 41 referred to Committee on Local Government and Municipal Finance,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-5),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-01-27T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON FINANCE,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-09-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-02-23T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 03/24/2021,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-5),2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2021-10-13T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2021-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 01/27/2022,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-09-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-02-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +received in House,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-02-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +received in House,2022-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-02-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-02-23T05:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee approved,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2022-07-01T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee postponed for day,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +ADOPTED,2021-02-11T05:00:00+00:00,['passage'],MI,2021-2022 +motion to discharge committee postponed for day,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-02-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-02-23T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-4),2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2022-02-08T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-04-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Judiciary, with substitute (H-2)",2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-02-16T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-02-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-02-23T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-04-19T04:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Rules and Competitiveness, with substitute (H-1)",2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-01-19T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +RULES SUSPENDED,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on motions and resolutions,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-04-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-4),2021-04-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-4),2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-11-30T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Judiciary, with substitute (H-1)",2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-11T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +received in House,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-01-27T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-04-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +received in House,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-10-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-06-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-02-23T05:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 06/22/2021,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-01-18T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-05-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-03-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-01-18T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Judiciary, with substitute (H-1)",2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-02-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-04-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON NATURAL RESOURCES,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-03-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-02-24T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-02-24T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +received in House,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-4),2021-05-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 02/02/2022,2022-02-03T05:00:00+00:00,[],MI,2021-2022 +adopted,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-01-27T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-04-29T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-4),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON APPROPRIATIONS,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-04-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-07-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON LOCAL GOVERNMENT,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"referred to Committee on Judiciary, with substitute (H-1)",2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee approved,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 04/26/2022,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +bill electronically reproduced 06/16/2021,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-6),2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-02-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-04-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +per Rule 41 referred to Committee on Oversight,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-03-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-02-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-05-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +bill electronically reproduced 03/09/2021,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-02-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH AMENDMENT(S),2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-04-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-04-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-02-24T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-03-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-04-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4),2021-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +adopted,2021-10-14T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +adopted by unanimous standing vote,2021-04-29T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2021-10-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +adopted by unanimous standing vote,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-03-04T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-04-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-08-31T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +notice given to discharge committee,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-05-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +notice given to discharge committee,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-01-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +notice given to discharge committee,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-01-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2021-10-19T04:00:00+00:00,['passage'],MI,2021-2022 +motion to discharge committee approved,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-04-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +adopted by Senate - referred to the Clerk for record,2021-12-15T05:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-02-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-10T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-10T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 129 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +adopted by Senate - referred to the Clerk for record,2022-07-01T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +adopted by unanimous standing vote,2022-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +adopted by unanimous standing vote,2021-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2021-02-03T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received in House,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee approved,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +ADOPTED,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill electronically reproduced 05/19/2022,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +adopted by unanimous standing vote,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) CONCURRED IN,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3) AND AMENDMENT(S),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +postponed temporarily,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2021-06-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-05-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-07-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4),2022-04-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted,2021-04-21T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-01-26T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-03-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-5),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-11-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-4) CONCURRED IN,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2021-10-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 461 Yeas 68 Nays 30 Excused 0 Not Voting 11,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Judiciary, with substitute (H-2)",2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) ADOPTED,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +ADOPTED,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted by unanimous standing vote,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +adopted by unanimous standing vote,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4) AND AMENDMENT(S),2022-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-05-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-04-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-04-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +notice given to discharge committee,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-04-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-04-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-05-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-18T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Education,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 259 YEAS 19 NAYS 16 EXCUSED 1 NOT VOTING 0,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +ADOPTED,2021-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +roll call Roll Call # 101 Yeas 62 Nays 40 Excused 0 Not Voting 4,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-10-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2021-11-30T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +adopted by unanimous standing vote,2021-10-13T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3) AND AMENDMENT(S),2021-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +received in House,2022-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +RULES SUSPENDED,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee postponed for day,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-04-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +adopted by Senate - referred to the Clerk for record,2021-02-11T05:00:00+00:00,['passage'],MI,2021-2022 +adopted by Senate - referred to the Clerk for record,2021-02-11T05:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-09-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +notice given to discharge committee,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +ADOPTED,2021-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +adopted by unanimous standing vote,2021-12-01T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2022-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +received in House,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-08-31T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-03-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON APPROPRIATIONS,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +placed on messages from the Senate,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-09-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +adopted by unanimous standing vote,2022-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-02-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 462 Yeas 58 Nays 39 Excused 0 Not Voting 12,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +notice given to discharge committee,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-04-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +notice given to discharge committee,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +adopted by Senate - referred to the Clerk for record,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-04-29T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-01-26T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2021-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-02-15T05:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-06-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee approved,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-10-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2021-01-26T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +notice given to discharge committee,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee rejected,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +notice given to discharge committee,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-02-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-01-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3) AND AMENDMENT(S),2021-05-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-03-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-5),2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee approved,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) ADOPTED,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4) AND AMENDMENT(S),2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +RULES SUSPENDED,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-04-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-10-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +adopted,2021-11-02T04:00:00+00:00,['passage'],MI,2021-2022 +motion to discharge committee approved,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-04-29T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-07T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2021-01-26T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +ADOPTED,2021-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-02-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2021-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 247 YEAS 32 NAYS 4 EXCUSED 0 NOT VOTING 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-11-03T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-23T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-09T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-01-27T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-01-27T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-02-25T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-26T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-03T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-08-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-12-07T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on second reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2021-01-26T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-11-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-03T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-01-26T05:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2021-01-26T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-11T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-07-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-06-08T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-06-02T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-29T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-01-26T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-04-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-07-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-09T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-01-26T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-03T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-11-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-03T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-04-27T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-11T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-03T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-11T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-15T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-02T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-25T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-11-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-09-09T04:00:00+00:00,[],MI,2021-2022 +ADOPTED,2021-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-04-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 257 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-02-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-06-03T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-02-23T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-04-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2021-04-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-04-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-09-28T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-24T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-09-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-23T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-04-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-09T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-09-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-07T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-07-01T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-15T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-20T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-20T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-03-02T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-11-02T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-02-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 122 YEAS 35 NAYS 1 EXCUSED 0 NOT VOTING 0,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +ADOPTED AS SUBSTITUTED (S-1),2021-11-02T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-02-23T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +adopted,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 74 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-09-30T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-02-22T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-03-02T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-3) not adopted,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-04-22T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-15T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-10-26T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 73 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 42 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-04T05:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) ADOPTED,2021-01-28T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +adopted,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-20T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-11T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-12-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 231 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-02-17T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-04-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on second reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) AS AMENDED CONCURRED IN,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 61 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +ADOPTED BY 2/3 VOTE ROLL CALL # 190 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-04-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-11T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-09T04:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 365 YEAS 34 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-10-05T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-01-25T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-03T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-03-08T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-04-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-02-15T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-11-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-08-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-10-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-02T05:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-09-29T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-04T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) AS AMENDED CONCURRED IN,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-02-24T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-02T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-03-02T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-06T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-02T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-3) AS AMENDED CONCURRED IN,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +notice given to discharge committee,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-10-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-01-27T05:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-02T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-08T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-03T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-02T05:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-10T04:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 120 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-06-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-04-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-29T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-07T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-4) AS AMENDED CONCURRED IN,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +ADOPTED,2022-05-17T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +placed on second reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-08-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 433 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-01-12T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 52 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-08-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 51 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-5) CONCURRED IN,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-03T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-15T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +adopted,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-03T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 446 YEAS 32 NAYS 3 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-10-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 421 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-11-02T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-02-04T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-09-30T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-02-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-04-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-25T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 117 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-03T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-07-01T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-01-25T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-15T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-01-25T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-23T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-06T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +ADOPTED,2021-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-07-01T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-11-03T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-20T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2021-06-02T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-07-01T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +re-referred to Committee on Regulatory Reform,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-11T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-29T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Regulatory Reform,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 224 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-06-09T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-01-26T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-01-27T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-25T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-03T04:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-01-12T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) AS AMENDED CONCURRED IN,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 62 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-01-25T05:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-05-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-10T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-01-26T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-25T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-4) CONCURRED IN,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-02-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-02T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-25T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-11T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +amended,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-10-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-02-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-07-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-12-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 8 YEAS 23 NAYS 15 EXCUSED 0 NOT VOTING 0,2022-01-20T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-03T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-11-03T04:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) AS AMENDED CONCURRED IN,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-10-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-10-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-11-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +ROLL CALL: ROLL CALL # 208 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-11T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-09T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 53 YEAS 19 NAYS 16 EXCUSED 1 NOT VOTING 0,2021-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-11-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-25T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-03-02T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-11T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-12-09T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-03T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-20T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on second reading,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +received on 04/20/2022,2022-04-26T04:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-25T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 260 YEAS 19 NAYS 16 EXCUSED 1 NOT VOTING 0,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-12-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) ADOPTED,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-02T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-02-16T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-02-23T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 98 YEAS 31 NAYS 3 EXCUSED 2 NOT VOTING 0,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-11-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-03-23T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-11T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 14 YEAS 25 NAYS 10 EXCUSED 1 NOT VOTING 0,2021-02-18T05:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-03-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-03T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-11T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-02-04T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-03-08T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 110 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-04-29T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-01-27T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-25T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-03T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on second reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-24T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-11T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-02-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-11-03T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-02-04T05:00:00+00:00,['reading-2'],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 246 YEAS 32 NAYS 4 EXCUSED 0 NOT VOTING 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 473 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-02-04T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-10-07T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH AMENDMENT(S),2021-03-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2) AND AMENDMENT(S),2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-10-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) AS AMENDED CONCURRED IN,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-02-25T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-04-22T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 16 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-02-25T05:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-04-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-4) CONCURRED IN,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 472 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-10-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-11T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-04-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2021-04-21T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-25T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-02-23T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-01-12T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-01-27T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-01-27T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) AS AMENDED CONCURRED IN,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-25T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-02-15T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-15T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-03T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 109 YEAS 33 NAYS 2 EXCUSED 1 NOT VOTING 0,2021-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-4) CONCURRED IN,2022-04-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2021-02-25T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 17 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-02-25T05:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-01-26T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-01-26T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-03T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-04-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-04-20T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-11T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-03T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-02-18T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-10-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-07T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-09-09T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-03T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 94 YEAS 34 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-04-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-02-25T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-4) CONCURRED IN,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-04-14T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-04-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-04-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) AS AMENDED CONCURRED IN,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 223 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-09-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +ADOPTED,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-10-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-04T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-02T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-10T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-02-25T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-04T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-03T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +adopted by unanimous standing vote,2021-10-13T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-06-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-09-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-06T04:00:00+00:00,['reading-2'],MI,2021-2022 +motion to discharge committee rejected,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-02-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) AS AMENDED CONCURRED IN,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-04-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-10T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-10-07T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-10T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE CONCURRED IN,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-25T04:00:00+00:00,['reading-2'],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-11T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on second reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-04-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-04-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-07-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-08-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-07-01T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-07-01T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-07-01T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-03T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-11-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-11-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to Committee on Government Operations,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-03-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-20T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 47 YEAS 20 NAYS 14 EXCUSED 2 NOT VOTING 0,2021-03-11T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-02-17T05:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-03-03T05:00:00+00:00,['reading-2'],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-02-17T05:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-02-17T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-24T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-01-26T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-12-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-08-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-1) adopted,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-11T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-10-20T04:00:00+00:00,['reading-2'],MI,2021-2022 +ADOPTED,2021-04-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-06-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-04-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-08-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-01-26T05:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-03-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-02T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-10T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-02-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-10T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-01-12T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-03-18T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-11-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4),2022-05-17T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-02-17T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-11-03T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 395 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-10-20T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-05-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-04-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-12-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-03-15T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee rejected,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-02-22T05:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-2) adopted,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 227 YEAS 32 NAYS 1 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-1) adopted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +substitute (H-2) adopted,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +received on 11/10/2022,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 392 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-10-20T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +received on 04/21/2021,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +received on 03/17/2021,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +substitute (H-1) adopted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-03-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-1) adopted,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-02-18T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +received on 04/28/2021,2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 102 YEAS 34 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-12-02T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-02T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4),2022-04-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-06-16T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4) AS AMENDED,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +RULES SUSPENDED,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 108 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 229 YEAS 33 NAYS 3 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-08-31T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 245 YEAS 35 NAYS 0 EXCUSED 2 NOT VOTING 1,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 93 YEAS 34 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-04-21T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-12-09T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-01-26T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +adopted,2022-02-08T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 83 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-16T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +substitute (H-2) adopted and amended,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-4),2021-05-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-10-26T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +amended,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-08T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-06-30T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +received on 03/11/2021,2021-03-11T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-12T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) not adopted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted and amended,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted and amended,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 363 YEAS 24 NAYS 10 EXCUSED 2 NOT VOTING 0,2021-10-05T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-05-26T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 54 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted and amended,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-10-19T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-06-16T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +substitute (H-1) adopted,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4),2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +substitute (H-1) adopted,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-03-03T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-05-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-07-15T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee postponed for day,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 383 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-10-14T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4),2022-09-20T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-12-02T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +received on 05/11/2022,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +substitute (H-1) adopted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 297 YEAS 19 NAYS 16 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-2) adopted,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 91 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 44 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-23T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-2) adopted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-1) adopted,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED BY 3/4 VOTE ROLL CALL # 87 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-10-26T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 240 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-06-02T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-11T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 262 YEAS 25 NAYS 10 EXCUSED 1 NOT VOTING 0,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 233 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-3) adopted,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3) AS AMENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 445 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 103 YEAS 34 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 116 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 393 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-10-20T04:00:00+00:00,['passage'],MI,2021-2022 +rule suspended,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-11T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted and amended,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-06-08T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-11-09T05:00:00+00:00,[],MI,2021-2022 +postponed temporarily,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-06-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 12 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-02-18T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted and amended,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +amended,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +amendment(s) not adopted,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-09-09T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-03-04T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 77 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-11-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-04-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 132 YEAS 33 NAYS 0 EXCUSED 5 NOT VOTING 0,2022-04-21T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-06-16T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 69 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 134 YEAS 33 NAYS 0 EXCUSED 5 NOT VOTING 0,2022-04-21T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +received on 02/25/2021,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-25T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-05-25T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-8) ADOPTED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-6) ADOPTED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3) AS AMENDED,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4) AS AMENDED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 75 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 111 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-04-29T04:00:00+00:00,['passage'],MI,2021-2022 +received on 06/09/2021,2021-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 354 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-09-29T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 355 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-09-29T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +received on 03/24/2021,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +substitute (H-5) adopted,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +ADOPTED AS SUBSTITUTED (S-1),2021-01-28T05:00:00+00:00,['passage'],MI,2021-2022 +received on 03/24/2021,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 78 YEAS 35 NAYS 3 EXCUSED 0 NOT VOTING 0,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-05-13T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +substitute (H-3) adopted,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +amended,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +substitute (H-5) adopted and amended,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 121 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 394 YEAS 35 NAYS 1 EXCUSED 0 NOT VOTING 0,2021-10-20T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 258 YEAS 19 NAYS 16 EXCUSED 1 NOT VOTING 0,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 457 YEAS 32 NAYS 2 EXCUSED 4 NOT VOTING 0,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted and amended,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-11-02T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted and amended,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) ADOPTED,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +amended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 475 YEAS 21 NAYS 16 EXCUSED 1 NOT VOTING 0,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +received on 05/05/2021,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +PASSED BY 3/4 VOTE ROLL CALL # 45 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-2) adopted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 100 YEAS 29 NAYS 5 EXCUSED 2 NOT VOTING 0,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-4) adopted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +received on 03/04/2021,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 181 Yeas 99 Nays 4 Excused 0 Not Voting 3,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted and amended,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2021-06-17T04:00:00+00:00,[],MI,2021-2022 +received on 05/27/2021,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-09-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +received on 03/18/2021,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-1) adopted,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-25T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-10-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 69 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +received on 10/20/2021,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted and amended,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-01-26T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-1) adopted,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-25T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-25T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-04-12T04:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-1) adopted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-10-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-12-07T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee rejected,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 187 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-05-13T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +substitute (H-5) adopted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-01-25T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 230 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-05-17T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-2) adopted,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-11-30T05:00:00+00:00,['amendment-failure'],MI,2021-2022 +placed on third reading,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted and amended,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-03-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-10-07T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 96 YEAS 32 NAYS 6 EXCUSED 0 NOT VOTING 0,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-06-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-3) adopted,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-08T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +received on 11/10/2021,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +substitute (H-1) adopted,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +received on 03/17/2021,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +received on 03/17/2021,2021-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +substitute (H-2) adopted,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted and amended,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted and amended,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-25T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 230 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-3) adopted,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 470 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-04-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-11-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-05-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted and amended,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-2) adopted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 95 YEAS 33 NAYS 1 EXCUSED 2 NOT VOTING 0,2021-04-21T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-03-03T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-10-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-09-09T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 240 YEAS 35 NAYS 0 EXCUSED 2 NOT VOTING 1,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 11 YEAS 24 NAYS 11 EXCUSED 1 NOT VOTING 0,2021-02-11T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +amended,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-03-09T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 112 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-04-29T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 13 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-02-18T05:00:00+00:00,['passage'],MI,2021-2022 +POSTPONED FOR THE DAY,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-02-09T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 441 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-11-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-02-08T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 108 YEAS 19 NAYS 15 EXCUSED 1 NOT VOTING 1,2021-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-03-22T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted and amended,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 447 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +received on 06/03/2021,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 211 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-04-20T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +received on 05/05/2021,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-04-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-05-03T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-03T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-08T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-05-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-03T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 118 YEAS 35 NAYS 1 EXCUSED 0 NOT VOTING 0,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +received on 10/05/2021,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +substitute (H-1) adopted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-5),2022-02-15T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +received on 05/19/2021,2021-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-05-04T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 327 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 314 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-06-15T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +placed on third reading,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-08T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted and amended,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 255 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 84 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-10-20T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-08-31T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted and amended,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) not adopted,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +adopted by Senate - referred to the Clerk for record,2021-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-02-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-4) adopted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-02-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +amended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 12 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2022-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +received on 02/18/2021,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +substitute (H-1) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 250 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 263 YEAS 32 NAYS 3 EXCUSED 1 NOT VOTING 0,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-1) adopted,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-03-25T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 311 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 276 Yeas 79 Nays 26 Excused 0 Not Voting 5,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-10-19T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2021-10-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,[],MI,2021-2022 +amended,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 81 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +received on 04/29/2021,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +substitute (H-1) not adopted,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted and amended,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4),2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-04-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +received on 06/10/2021,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +read a second time,2021-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-1) adopted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-05-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +received on 01/20/2022,2022-01-20T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-11-10T05:00:00+00:00,[],MI,2021-2022 +received on 05/11/2022,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +RULES SUSPENDED,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +amended,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-10-19T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted and amended,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +received on 05/05/2021,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-2) adopted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3) AS AMENDED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +received on 06/03/2021,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-11T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 43 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-23T05:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +ADOPTED,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-16T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-20T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-1) adopted,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 437 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-2) adopted,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +received on 11/10/2021,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-16T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 105 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-09-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-09-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) AS AMENDED CONCURRED IN,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-03-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-06-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-03-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-10-26T04:00:00+00:00,[],MI,2021-2022 +received on 04/22/2021,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 15 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-02-24T05:00:00+00:00,['passage'],MI,2021-2022 +ADOPTED AS SUBSTITUTED (S-1),2021-02-04T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-04-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-06-16T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-16T04:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON APPROPRIATIONS,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 25 YEAS 34 NAYS 4 EXCUSED 0 NOT VOTING 0,2022-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 228 YEAS 33 NAYS 0 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 226 YEAS 32 NAYS 1 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 225 YEAS 33 NAYS 0 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-3) adopted,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-04-13T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-25T04:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-1) adopted,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-05-17T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) not adopted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-15T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-04-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-10-06T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-03-16T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +substitute (H-3) not adopted,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-06-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-03-08T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 68 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-08T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 458 YEAS 20 NAYS 14 EXCUSED 4 NOT VOTING 0,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 11 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2022-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 62 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-08T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 10 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +received on 11/10/2022,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +substitute (H-1) adopted,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted and amended,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted and amended,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 415 YEAS 28 NAYS 5 EXCUSED 2 NOT VOTING 1,2021-10-27T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-2) adopted,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-03-02T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-16T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-05-19T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted and amended,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-13T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +substitute (H-2) adopted and amended,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 476 YEAS 21 NAYS 16 EXCUSED 1 NOT VOTING 0,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-09-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +received on 03/18/2021,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) not adopted,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-09-20T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 97 YEAS 28 NAYS 10 EXCUSED 0 NOT VOTING 0,2022-03-22T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-17T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-17T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 72 YEAS 34 NAYS 0 EXCUSED 1 NOT VOTING 1,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-4),2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +received on 11/02/2021,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 364 YEAS 34 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-10-05T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 107 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 76 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-03-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) not adopted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-03-24T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted and amended,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 241 YEAS 35 NAYS 0 EXCUSED 2 NOT VOTING 1,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +received on 02/25/2021,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +substitute (H-3) adopted,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +received on 03/24/2022,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-03-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 03/24/2021,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 332 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-07-15T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +received on 11/10/2021,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-11T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-04-13T04:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +substitute (H-5) adopted,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-1) adopted,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-11) adopted,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-24T05:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-2) adopted,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-01-27T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-04-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +substitute (H-5) adopted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-17T05:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-2) adopted,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 279 YEAS 29 NAYS 6 EXCUSED 1 NOT VOTING 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-04-13T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 277 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-10-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-12-01T05:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-3) adopted and amended,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2021-10-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-05-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-10-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +vote reconsidered on substitute (H-1),2021-04-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-01-25T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 433 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +received on 03/22/2022,2022-03-22T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-11-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED ROLL CALL # 453 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-11-30T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +received on 03/08/2022,2022-03-08T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +received on 12/02/2021,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +received on 12/09/2021,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 438 YEAS 24 NAYS 12 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +received on 01/27/2022,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-01-20T05:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED ROLL CALL # 236 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +received on 03/09/2022,2022-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 65 YEAS 20 NAYS 17 EXCUSED 0 NOT VOTING 1,2022-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 237 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 299 YEAS 32 NAYS 3 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted and amended,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +received on 03/24/2021,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 95 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED ROLL CALL # 101 YEAS 34 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 346 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-09-01T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a third time,2021-11-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-03-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 339 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-3) adopted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-03T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-03-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +returned to Senate,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) reconsidered,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +received on 06/03/2021,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +substitute (H-1) adopted,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-2) adopted and amended,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 78 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 113 YEAS 37 NAYS 0 EXCUSED 0 NOT VOTING 1,2022-04-14T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-2) adopted,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-02-25T05:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-4) adopted,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +received on 05/11/2022,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +received on 05/11/2022,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +received on 06/10/2021,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +received on 05/11/2022,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +referred to second reading,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +received on 02/10/2022,2022-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-11-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +received on 02/23/2022,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 261 YEAS 25 NAYS 10 EXCUSED 1 NOT VOTING 0,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-11-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 288 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-10-13T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-05T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +received on 03/25/2021,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-10T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-10-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-03-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +received on 06/15/2022,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 280 YEAS 28 NAYS 7 EXCUSED 1 NOT VOTING 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-03-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) reconsidered,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-10-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-3) adopted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-05T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-05-26T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +received on 02/24/2021,2021-02-24T05:00:00+00:00,['introduction'],MI,2021-2022 +RULES SUSPENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 82 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-02-16T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-01-27T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-01T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-2) adopted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 504 YEAS 31 NAYS 4 EXCUSED 3 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted and amended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a third time,2021-03-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 486 YEAS 21 NAYS 15 EXCUSED 1 NOT VOTING 1,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-02T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-04-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-13T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +received on 10/05/2021,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 79 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2) AS AMENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 487 YEAS 24 NAYS 12 EXCUSED 1 NOT VOTING 1,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +received on 04/27/2021,2021-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +RULES SUSPENDED,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-05T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-22T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 344 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +received on 05/05/2021,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-05-05T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +received on 04/21/2022,2022-04-26T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-02-18T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-03T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2022-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +received on 03/03/2022,2022-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-06-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-2) adopted,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-29T04:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-13T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 43 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-03-04T05:00:00+00:00,['passage'],MI,2021-2022 +received on 06/02/2021,2021-06-02T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 458 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 438 YEAS 28 NAYS 7 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +received on 03/24/2022,2022-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 238 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-06-02T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-03-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +Rep. Mary Cavanagh removed as cosponsor,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +POSTPONED TEMPORARILY,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 472 YEAS 21 NAYS 16 EXCUSED 1 NOT VOTING 0,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 489 YEAS 25 NAYS 12 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +received on 04/22/2021,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 03/24/2021,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +motion to discharge committee approved,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-04-13T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-02-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +received on 05/11/2022,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +received on 10/05/2021,2021-10-05T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2022-02-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-1) adopted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 471 YEAS 21 NAYS 16 EXCUSED 1 NOT VOTING 0,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2022-03-09T05:00:00+00:00,['amendment-passage'],MI,2021-2022 +placed on third reading,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-01T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to second reading,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 347 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-09-01T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 348 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +received on 05/18/2022,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +referred to second reading,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-11-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-01-27T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-06-08T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-06-02T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-08T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 281 YEAS 29 NAYS 6 EXCUSED 1 NOT VOTING 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 456 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2021-12-01T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +SUBSTITUTE (S-4) CONCURRED IN,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +received on 02/23/2022,2022-02-23T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +received on 06/10/2021,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 11/10/2021,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 300 YEAS 30 NAYS 5 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-04-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 440 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-02-18T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +received on 03/17/2022,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-12-07T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 429 YEAS 34 NAYS 0 EXCUSED 1 NOT VOTING 1,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-03-22T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +received on 12/09/2021,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 133 YEAS 33 NAYS 0 EXCUSED 5 NOT VOTING 0,2022-04-21T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 283 YEAS 29 NAYS 6 EXCUSED 1 NOT VOTING 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-04-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 414 YEAS 27 NAYS 9 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-02-18T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-05T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-11-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +received on 10/20/2021,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-04-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED ROLL CALL # 384 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-10-14T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-04-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 13 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-02-18T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 331 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-07-15T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-22T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-02-17T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 252 YEAS 32 NAYS 4 EXCUSED 0 NOT VOTING 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 347 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-04-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 05/26/2021,2021-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +RULES SUSPENDED,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) ADOPTED,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +received on 04/21/2021,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-03-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 278 YEAS 29 NAYS 6 EXCUSED 1 NOT VOTING 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +received on 03/25/2021,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-10-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +received on 04/22/2021,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +substitute (H-1) adopted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-26T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted and amended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-04-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +received on 10/14/2021,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-2) adopted and amended,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 397 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-10-20T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to second reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-08T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 02/10/2021,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 03/17/2022,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-08T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-05-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 06/24/2021,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +RULES SUSPENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-04-22T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +received on 10/20/2021,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on immediate passage,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 460 YEAS 34 NAYS 0 EXCUSED 4 NOT VOTING 0,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +received on 02/18/2021,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 345 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +notice given to discharge committee,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-1) adopted,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-12-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-11T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 503 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-06-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 03/23/2021,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 135 YEAS 21 NAYS 15 EXCUSED 1 NOT VOTING 1,2022-04-26T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +received on 05/25/2021,2021-05-25T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2022-02-16T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-06-02T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-12-07T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-07T04:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 317 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 244 YEAS 34 NAYS 0 EXCUSED 2 NOT VOTING 2,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-10-13T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted and amended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 03/17/2022,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +received on 10/20/2021,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED ROLL CALL # 137 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 90 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-07T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 452 YEAS 31 NAYS 6 EXCUSED 1 NOT VOTING 0,2021-11-30T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +received on 05/05/2021,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +RULES SUSPENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +received on 05/17/2022,2022-05-17T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 10 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2022-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +received on 01/27/2022,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +substitute (H-3) adopted,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +received on 05/19/2022,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 312 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +received on 05/13/2021,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 474 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2022-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 186 YEAS 25 NAYS 10 EXCUSED 1 NOT VOTING 0,2021-05-13T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee postponed for day,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-11T04:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 411 YEAS 28 NAYS 6 EXCUSED 2 NOT VOTING 0,2021-10-26T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-09-29T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-10-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) ADOPTED,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +received on 05/05/2021,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 344 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-08-31T04:00:00+00:00,['passage'],MI,2021-2022 +received on 03/10/2022,2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED ROLL CALL # 488 YEAS 27 NAYS 10 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-29T04:00:00+00:00,['reading-3'],MI,2021-2022 +DEFEATED ROLL CALL # 513 YEAS 15 NAYS 19 EXCUSED 3 NOT VOTING 1,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +received on 03/09/2022,2022-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-01-27T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +substitute (H-1) adopted,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 228 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 343 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-08-31T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2022-04-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2022-04-13T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-22T05:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted and amended,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +received on 09/29/2021,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-09-09T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +received on 06/15/2022,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-04-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +received on 04/22/2021,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 06/15/2022,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2022-06-15T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +read a third time,2021-04-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 03/10/2021,2021-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2022-02-23T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 53 YEAS 23 NAYS 14 EXCUSED 1 NOT VOTING 0,2022-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-04-22T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-02-24T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-05-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 318 YEAS 32 NAYS 5 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 512 YEAS 15 NAYS 17 EXCUSED 3 NOT VOTING 3,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 432 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-04-13T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-24T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 313 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +received on 04/21/2022,2022-04-26T04:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +received on 09/29/2021,2021-09-29T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2022-03-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-02-24T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-06-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-04-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-03-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 279 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +received on 04/29/2021,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-05-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +received on 03/24/2021,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-2) adopted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +received on 06/09/2021,2021-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-16T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 298 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +received on 02/18/2021,2021-02-18T05:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2022-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 76 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 139 YEAS 34 NAYS 0 EXCUSED 4 NOT VOTING 0,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +received on 04/29/2021,2021-04-29T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +received on 02/11/2021,2021-02-11T05:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-05-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +received on 05/19/2022,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 358 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-09-30T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 396 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-10-20T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 8 YEAS 34 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +received on 11/10/2021,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +received on 03/25/2021,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +received on 05/19/2022,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-05-26T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-12-07T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-12-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-02-16T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 442 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-10-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 18 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-09T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 343 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 239 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-06-02T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2022-04-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 04/28/2021,2021-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 102 YEAS 34 NAYS 2 EXCUSED 1 NOT VOTING 1,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +received on 04/21/2021,2021-04-21T04:00:00+00:00,['introduction'],MI,2021-2022 +RULES SUSPENDED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 119 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-03-22T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +received on 12/08/2021,2021-12-08T05:00:00+00:00,['introduction'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2022-03-09T05:00:00+00:00,['amendment-passage'],MI,2021-2022 +received on 12/02/2021,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +received on 05/27/2021,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 200 YEAS 22 NAYS 12 EXCUSED 3 NOT VOTING 1,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +received on 06/09/2021,2021-06-09T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-01T05:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-2) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-01T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 7 YEAS 34 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-02-04T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +received on 11/10/2021,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-06-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 235 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-02T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +received on 05/13/2021,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on immediate passage,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-02T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-05T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 114 Yeas 75 Nays 34 Excused 0 Not Voting 1,2021-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-11-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 423 YEAS 25 NAYS 10 EXCUSED 1 NOT VOTING 0,2021-11-02T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 119 Yeas 102 Nays 7 Excused 0 Not Voting 1,2021-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 116 Yeas 100 Nays 9 Excused 0 Not Voting 1,2021-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-12-01T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 271 Yeas 104 Nays 4 Excused 0 Not Voting 2,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 118 Yeas 100 Nays 9 Excused 0 Not Voting 1,2021-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 217 Yeas 103 Nays 5 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 270 Yeas 104 Nays 4 Excused 0 Not Voting 2,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 81 Yeas 82 Nays 25 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-04-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 514 Yeas 97 Nays 8 Excused 0 Not Voting 4,2021-10-28T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 71 Yeas 56 Nays 48 Excused 0 Not Voting 2,2022-02-23T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 414 YEAS 32 NAYS 2 EXCUSED 2 NOT VOTING 0,2021-10-26T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-02-17T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 482 YEAS 27 NAYS 10 EXCUSED 1 NOT VOTING 0,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 159 Yeas 75 Nays 27 Excused 0 Not Voting 4,2022-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 11/29/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 443 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-05T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-05T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-06-10T04:00:00+00:00,['reading-3'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-02-25T05:00:00+00:00,['amendment-failure'],MI,2021-2022 +received on 05/05/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-06-08T04:00:00+00:00,['reading-3'],MI,2021-2022 +rule suspended,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-07-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-11-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 213 Yeas 107 Nays 1 Excused 0 Not Voting 2,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-11T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-06-08T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a second time,2021-06-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +received on 04/28/2022,2022-04-28T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 52 Yeas 105 Nays 0 Excused 0 Not Voting 1,2022-02-16T05:00:00+00:00,['passage'],MI,2021-2022 +received on 05/05/2021,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 336 Yeas 107 Nays 3 Excused 0 Not Voting 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 179 Yeas 106 Nays 1 Excused 0 Not Voting 3,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-09-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 113 Yeas 99 Nays 2 Excused 0 Not Voting 5,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +received on 08/31/2021,2021-09-09T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 395 YEAS 24 NAYS 14 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +received on 08/31/2021,2021-09-09T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-03-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 132 Yeas 87 Nays 17 Excused 0 Not Voting 6,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 135 Yeas 83 Nays 21 Excused 0 Not Voting 6,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 453 Yeas 101 Nays 2 Excused 0 Not Voting 6,2021-10-06T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +received on 06/15/2022,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 306 Yeas 72 Nays 37 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-04-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-09-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 115 Yeas 107 Nays 2 Excused 0 Not Voting 1,2021-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +received on 06/24/2021,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-11-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 506 Yeas 104 Nays 2 Excused 0 Not Voting 3,2021-10-27T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 508 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 55 Yeas 61 Nays 47 Excused 0 Not Voting 2,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-10-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 511 YEAS 34 NAYS 1 EXCUSED 3 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 66 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 298 Yeas 104 Nays 0 Excused 0 Not Voting 6,2022-06-14T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 507 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 59 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 60 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-06-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 510 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-01T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 340 Yeas 83 Nays 23 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 92 Yeas 103 Nays 3 Excused 0 Not Voting 4,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on immediate passage,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 74 Yeas 102 Nays 0 Excused 0 Not Voting 4,2022-02-24T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-02-16T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 06/15/2022,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 72 Yeas 98 Nays 5 Excused 0 Not Voting 3,2022-02-24T05:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-2) AS AMENDED ADOPTED,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 508 Yeas 95 Nays 11 Excused 0 Not Voting 3,2021-10-27T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on immediate passage,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Oversight,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-06-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-05T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 352 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +received on 11/10/2022,2022-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +received on 06/15/2022,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 354 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +received on 04/27/2022,2022-04-27T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 285 Yeas 107 Nays 0 Excused 0 Not Voting 3,2022-06-07T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 376 Yeas 83 Nays 24 Excused 0 Not Voting 3,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 281 Yeas 87 Nays 22 Excused 0 Not Voting 1,2021-06-02T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 29 Yeas 91 Nays 14 Excused 0 Not Voting 1,2022-02-01T05:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 30 Yeas 91 Nays 14 Excused 0 Not Voting 1,2022-02-01T05:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 111 Yeas 106 Nays 0 Excused 0 Not Voting 4,2021-04-15T04:00:00+00:00,['passage'],MI,2021-2022 +received on 03/23/2022,2022-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2021-04-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +received on 02/09/2022,2022-02-09T05:00:00+00:00,['introduction'],MI,2021-2022 +received on 11/10/2021,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +VOTE RECONSIDERED,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 498 YEAS 34 NAYS 3 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-05-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 282 YEAS 28 NAYS 7 EXCUSED 1 NOT VOTING 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2022-02-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 41 Yeas 106 Nays 0 Excused 0 Not Voting 0,2022-02-09T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-02-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +received on 09/30/2021,2021-09-30T04:00:00+00:00,['introduction'],MI,2021-2022 +received on 10/20/2021,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 546 Yeas 105 Nays 0 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 545 Yeas 104 Nays 1 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 104 Yeas 61 Nays 40 Excused 0 Not Voting 5,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 242 Yeas 66 Nays 43 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 585 Yeas 99 Nays 4 Excused 0 Not Voting 4,2021-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 577 Yeas 99 Nays 0 Excused 0 Not Voting 8,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 554 Yeas 103 Nays 2 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 105 Yeas 62 Nays 39 Excused 0 Not Voting 5,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a second time,2021-06-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +passed; given immediate effect Roll Call # 156 Yeas 104 Nays 0 Excused 0 Not Voting 2,2022-04-12T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 65 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 63 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-03-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-01T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-11-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2022-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-12-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED ROLL CALL # 66 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +received on 02/04/2021,2021-02-04T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +received on 05/18/2022,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on immediate passage,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-11-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 55 Yeas 102 Nays 3 Excused 0 Not Voting 1,2022-02-16T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on immediate passage,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-01-25T05:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Insurance,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-04-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 04/22/2021,2021-04-22T04:00:00+00:00,['introduction'],MI,2021-2022 +received on 06/15/2022,2022-06-15T04:00:00+00:00,['introduction'],MI,2021-2022 +VOTE RECONSIDERED,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 468 Yeas 94 Nays 12 Excused 0 Not Voting 3,2021-10-13T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 76 Yeas 106 Nays 1 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-03-16T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 03/17/2022,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 583 Yeas 64 Nays 39 Excused 0 Not Voting 4,2021-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +received on 11/30/2021,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2022-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +received on 01/27/2022,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2022-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-03-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-03-03T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-02-23T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 335 Yeas 110 Nays 0 Excused 0 Not Voting 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +notice given to discharge committee,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-03T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-12-08T05:00:00+00:00,[],MI,2021-2022 +received on 10/26/2021,2021-10-26T04:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-01-25T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 321 Yeas 105 Nays 0 Excused 0 Not Voting 5,2022-06-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 492 Yeas 104 Nays 0 Excused 0 Not Voting 5,2021-10-20T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 443 Yeas 104 Nays 0 Excused 0 Not Voting 6,2021-09-29T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-10-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-02-17T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 611 Yeas 93 Nays 10 Excused 0 Not Voting 4,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 14 YEAS 33 NAYS 4 EXCUSED 1 NOT VOTING 0,2022-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF RESOLUTIONS,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +passed; given immediate effect Roll Call # 161 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-04-29T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-10-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 29 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 24 Yeas 102 Nays 0 Excused 0 Not Voting 4,2022-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 351 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +received on 05/26/2021,2021-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-03-16T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 178 Yeas 86 Nays 13 Excused 0 Not Voting 7,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2022-03-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 67 Yeas 91 Nays 16 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 66 Yeas 82 Nays 22 Excused 0 Not Voting 2,2022-02-22T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-09-09T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 336 Yeas 99 Nays 7 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-04-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +received on 03/03/2022,2022-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 264 Yeas 96 Nays 11 Excused 0 Not Voting 3,2022-05-24T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 260 Yeas 107 Nays 0 Excused 0 Not Voting 3,2022-05-24T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 125 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-04-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-04-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-04-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-06-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 162 Yeas 99 Nays 3 Excused 0 Not Voting 4,2022-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-04-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED ROLL CALL # 402 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-10-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 144 Yeas 105 Nays 0 Excused 0 Not Voting 1,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 87 Yeas 103 Nays 1 Excused 0 Not Voting 2,2022-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on immediate passage,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-04-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-05-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 406 YEAS 19 NAYS 15 EXCUSED 2 NOT VOTING 0,2021-10-26T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 178 Yeas 106 Nays 1 Excused 0 Not Voting 3,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Health Policy,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 106 Yeas 85 Nays 16 Excused 0 Not Voting 5,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-12-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 352 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-06-09T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 581 Yeas 99 Nays 4 Excused 0 Not Voting 4,2021-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on immediate passage,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-02-17T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 77 Yeas 100 Nays 7 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-02-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +received on 05/26/2022,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 285 Yeas 77 Nays 33 Excused 0 Not Voting 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 132 Yeas 67 Nays 38 Excused 0 Not Voting 1,2022-03-22T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-12-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-11-02T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Health Policy,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 276 YEAS 19 NAYS 16 EXCUSED 1 NOT VOTING 0,2021-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +received on 11/10/2021,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +adopted by 2/3 vote Roll Call # 13 Yeas 102 Nays 7 Excused 0 Not Voting 1,2021-02-24T05:00:00+00:00,['passage'],MI,2021-2022 +received on 06/02/2021,2021-06-02T04:00:00+00:00,['introduction'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-06-02T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 206 Yeas 58 Nays 49 Excused 0 Not Voting 3,2021-05-13T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 361 YEAS 28 NAYS 10 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 108 Yeas 90 Nays 20 Excused 0 Not Voting 0,2021-04-14T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 371 Yeas 69 Nays 38 Excused 0 Not Voting 3,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-03-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 527 Yeas 102 Nays 0 Excused 0 Not Voting 7,2021-11-04T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-03-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 06/17/2021,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 271 Yeas 95 Nays 12 Excused 0 Not Voting 3,2022-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 142 Yeas 105 Nays 0 Excused 0 Not Voting 1,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-06-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to Committee on Education,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 143 Yeas 88 Nays 20 Excused 0 Not Voting 2,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-04-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-10-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +postponed temporarily,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 425 YEAS 28 NAYS 7 EXCUSED 1 NOT VOTING 0,2021-11-02T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-10-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 07/15/2021,2021-07-21T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2022-03-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 320 Yeas 105 Nays 4 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 304 YEAS 33 NAYS 2 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +received on 03/25/2021,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-07-01T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-04-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-01-20T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 541 Yeas 75 Nays 29 Excused 0 Not Voting 5,2021-11-09T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 603 Yeas 95 Nays 7 Excused 0 Not Voting 5,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 329 Yeas 108 Nays 1 Excused 0 Not Voting 1,2021-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 177 Yeas 58 Nays 49 Excused 0 Not Voting 3,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-11-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 547 Yeas 105 Nays 0 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 237 YEAS 19 NAYS 17 EXCUSED 0 NOT VOTING 0,2021-06-02T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-04-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 11/30/2021,2021-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-07-01T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 06/16/2022,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-04-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +received on 03/09/2022,2022-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 145 Yeas 104 Nays 0 Excused 0 Not Voting 2,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 466 Yeas 102 Nays 4 Excused 0 Not Voting 3,2021-10-13T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-26T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 84 Yeas 104 Nays 3 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +postponed temporarily,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-1) adopted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 166 Yeas 107 Nays 1 Excused 0 Not Voting 2,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 28 Yeas 87 Nays 22 Excused 0 Not Voting 1,2021-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 379 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-10-07T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-12-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 215 Yeas 98 Nays 10 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 578 Yeas 99 Nays 0 Excused 0 Not Voting 8,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 273 Yeas 104 Nays 4 Excused 0 Not Voting 2,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 21 Yeas 71 Nays 31 Excused 0 Not Voting 4,2022-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 160 Yeas 75 Nays 27 Excused 0 Not Voting 4,2022-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 288 Yeas 94 Nays 16 Excused 0 Not Voting 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +received on 11/29/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2022-07-01T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-05-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 88 Yeas 103 Nays 1 Excused 0 Not Voting 2,2022-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 169 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 539 Yeas 75 Nays 29 Excused 0 Not Voting 5,2021-11-09T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 17 Yeas 108 Nays 2 Excused 0 Not Voting 0,2021-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 549 Yeas 104 Nays 1 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) OFFERED,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +received on 05/18/2022,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-02-24T05:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED ROLL CALL # 275 YEAS 19 NAYS 16 EXCUSED 1 NOT VOTING 0,2021-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 462 YEAS 22 NAYS 13 EXCUSED 3 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-24T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 280 Yeas 88 Nays 21 Excused 0 Not Voting 1,2021-06-02T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-03-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 96 Yeas 79 Nays 27 Excused 0 Not Voting 4,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 75 Yeas 102 Nays 0 Excused 0 Not Voting 4,2022-02-24T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 341 Yeas 97 Nays 10 Excused 0 Not Voting 3,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-06-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-11-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 50 Yeas 106 Nays 3 Excused 0 Not Voting 1,2021-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 28 Yeas 93 Nays 12 Excused 0 Not Voting 1,2022-02-01T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 483 Yeas 91 Nays 12 Excused 0 Not Voting 6,2021-10-19T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 23 Yeas 98 Nays 4 Excused 0 Not Voting 4,2022-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +received on 03/25/2021,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +adopted by 2/3 vote,2022-05-10T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 117 Yeas 102 Nays 7 Excused 0 Not Voting 1,2021-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on immediate passage,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 62 Yeas 99 Nays 2 Excused 0 Not Voting 5,2022-02-17T05:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +received on 04/14/2022,2022-04-14T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-05-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-04-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2022-03-08T05:00:00+00:00,['reading-1'],MI,2021-2022 +placed on immediate passage,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 576 Yeas 99 Nays 0 Excused 0 Not Voting 8,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 11/29/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 257 Yeas 107 Nays 0 Excused 0 Not Voting 3,2022-05-24T04:00:00+00:00,['passage'],MI,2021-2022 +received on 06/17/2021,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 141 Yeas 105 Nays 0 Excused 0 Not Voting 1,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-01-26T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-02-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +received on 05/18/2022,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2022-01-26T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED ROLL CALL # 70 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 333 Yeas 69 Nays 41 Excused 0 Not Voting 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 512 Yeas 100 Nays 5 Excused 0 Not Voting 4,2021-10-28T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-06-07T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 64 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 23 Yeas 63 Nays 47 Excused 0 Not Voting 0,2021-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-04-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-06-02T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 93 Yeas 102 Nays 4 Excused 0 Not Voting 4,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 157 Yeas 101 Nays 1 Excused 0 Not Voting 4,2022-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-10-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +received on 05/26/2022,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 15 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-02-25T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 416 YEAS 29 NAYS 5 EXCUSED 2,2021-10-27T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 481 YEAS 27 NAYS 10 EXCUSED 1 NOT VOTING 0,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 241 Yeas 101 Nays 8 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-04-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-26T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 35 Yeas 106 Nays 0 Excused 0 Not Voting 0,2022-02-09T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-12-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-10-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 58 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 261 Yeas 72 Nays 35 Excused 0 Not Voting 3,2022-05-24T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 460 Yeas 103 Nays 0 Excused 0 Not Voting 6,2021-10-06T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 489 Yeas 104 Nays 0 Excused 0 Not Voting 5,2021-10-20T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 214 Yeas 107 Nays 1 Excused 0 Not Voting 2,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 553 Yeas 103 Nays 2 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-11-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 560 Yeas 100 Nays 0 Excused 0 Not Voting 7,2021-12-01T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 509 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 461 Yeas 102 Nays 1 Excused 0 Not Voting 6,2021-10-06T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +received on 09/01/2021,2021-09-09T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 258 Yeas 107 Nays 0 Excused 0 Not Voting 3,2022-05-24T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 195 Yeas 60 Nays 43 Excused 0 Not Voting 3,2022-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 491 Yeas 100 Nays 4 Excused 0 Not Voting 5,2021-10-20T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 09/28/2022,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a second time,2021-05-20T04:00:00+00:00,['reading-2'],MI,2021-2022 +received on 03/17/2022,2022-03-17T04:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +received on 11/30/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 210 Yeas 83 Nays 25 Excused 0 Not Voting 2,2021-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-10-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-02T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +passed by 3/4 vote; given immediate effect Roll Call # 322 Yeas 105 Nays 0 Excused 0 Not Voting 5,2022-06-21T04:00:00+00:00,['passage'],MI,2021-2022 +received on 06/17/2021,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2022-01-25T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 212 Yeas 95 Nays 13 Excused 0 Not Voting 2,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 319 Yeas 105 Nays 4 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 48 Yeas 80 Nays 25 Excused 0 Not Voting 1,2022-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-04-22T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 38 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +substitute (H-2) adopted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 323 Yeas 105 Nays 0 Excused 0 Not Voting 5,2022-06-21T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 62 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 299 Yeas 104 Nays 0 Excused 0 Not Voting 6,2022-06-14T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 507 Yeas 95 Nays 11 Excused 0 Not Voting 3,2021-10-27T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-07T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 46 Yeas 94 Nays 11 Excused 0 Not Voting 1,2022-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 264 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-05-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Health Policy,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2022-01-25T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 94 Yeas 104 Nays 2 Excused 0 Not Voting 4,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-26T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 526 Yeas 102 Nays 0 Excused 0 Not Voting 7,2021-11-04T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on immediate passage,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 475 Yeas 67 Nays 40 Excused 0 Not Voting 2,2021-10-14T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-11-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 510 Yeas 97 Nays 8 Excused 0 Not Voting 4,2021-10-28T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 536 Yeas 102 Nays 0 Excused 0 Not Voting 7,2021-11-04T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-05-10T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-05-26T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 09/28/2022,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 272 Yeas 104 Nays 4 Excused 0 Not Voting 2,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 555 Yeas 98 Nays 7 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-06-07T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-04-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 109 Yeas 63 Nays 38 Excused 0 Not Voting 5,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 146 Yeas 104 Nays 0 Excused 0 Not Voting 2,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 61 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-4) adopted,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +passed Roll Call # 157 Yeas 108 Nays 2 Excused 0 Not Voting 0,2021-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 32 Yeas 104 Nays 5 Excused 0 Not Voting 1,2021-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-04-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 03/24/2021,2021-03-24T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 91 Yeas 106 Nays 0 Excused 0 Not Voting 4,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +received on 06/10/2021,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 99 Yeas 100 Nays 1 Excused 0 Not Voting 5,2022-03-08T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 140 Yeas 105 Nays 0 Excused 0 Not Voting 1,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 286 Yeas 80 Nays 30 Excused 0 Not Voting 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-04-13T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 528 Yeas 95 Nays 7 Excused 0 Not Voting 7,2021-11-04T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 103 Yeas 107 Nays 3 Excused 0 Not Voting 0,2021-04-14T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-02-23T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-10-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 133 Yeas 102 Nays 3 Excused 0 Not Voting 1,2022-03-22T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 483 YEAS 27 NAYS 10 EXCUSED 1 NOT VOTING 0,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +received on 12/09/2021,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on immediate passage,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 478 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-10-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +RETURNED FROM HOUSE WITH SUBSTITUTE (H-1),2022-02-09T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-04-22T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 302 Yeas 102 Nays 7 Excused 0 Not Voting 1,2021-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 152 Yeas 59 Nays 50 Excused 0 Not Voting 1,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +received on 12/09/2021,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-11-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-06-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +read a second time,2021-06-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 383 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-06-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +passed; given immediate effect Roll Call # 286 Yeas 106 Nays 0 Excused 0 Not Voting 4,2022-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +received on 06/17/2021,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 288 Yeas 105 Nays 1 Excused 0 Not Voting 4,2022-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +received on 12/01/2021,2021-12-01T05:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-10-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +placed on immediate passage,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +received on 11/10/2021,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +VOTE RECONSIDERED,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +received on 09/20/2022,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +received on 04/21/2022,2022-04-26T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 95 Yeas 106 Nays 0 Excused 0 Not Voting 4,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-11-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-10-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-02-25T05:00:00+00:00,['amendment-failure'],MI,2021-2022 +passed; given immediate effect Roll Call # 364 Yeas 109 Nays 1 Excused 0 Not Voting 0,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 64 Yeas 99 Nays 2 Excused 0 Not Voting 5,2022-02-17T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 16 Yeas 109 Nays 1 Excused 0 Not Voting 0,2021-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 351 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +received on 06/17/2021,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2021-04-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 130 Yeas 86 Nays 18 Excused 0 Not Voting 6,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-05-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-03-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-16T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-13T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 64 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 306 Yeas 56 Nays 49 Excused 0 Not Voting 5,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 265 Yeas 95 Nays 12 Excused 0 Not Voting 3,2022-05-24T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 454 Yeas 100 Nays 3 Excused 0 Not Voting 6,2021-10-06T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-02-18T05:00:00+00:00,['reading-1'],MI,2021-2022 +substitute (H-1) adopted,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 308 Yeas 73 Nays 36 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 604 Yeas 95 Nays 7 Excused 0 Not Voting 5,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 45 Yeas 105 Nays 5 Excused 0 Not Voting 0,2021-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-09-29T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED ROLL CALL # 124 YEAS 21 NAYS 15 EXCUSED 0 NOT VOTING 0,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 22 Yeas 110 Nays 0 Excused 0 Not Voting 0,2021-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 207 Yeas 58 Nays 49 Excused 0 Not Voting 3,2021-05-13T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 88 Yeas 106 Nays 1 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 289 Yeas 81 Nays 24 Excused 0 Not Voting 5,2022-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 18 Yeas 108 Nays 2 Excused 0 Not Voting 0,2021-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-10-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 40 Yeas 109 Nays 1 Excused 0 Not Voting 0,2021-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 57 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 259 Yeas 107 Nays 0 Excused 0 Not Voting 3,2022-05-24T04:00:00+00:00,['passage'],MI,2021-2022 +received on 11/10/2021,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 362 YEAS 29 NAYS 9 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +received on 01/27/2022,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-11-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +received on 03/04/2021,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 162 Yeas 75 Nays 34 Excused 0 Not Voting 1,2021-04-29T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-06-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-05-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-01-25T05:00:00+00:00,['reading-3'],MI,2021-2022 +received on 06/24/2021,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 382 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +received on 03/10/2022,2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on immediate passage,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +received on 04/26/2022,2022-04-26T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 574 Yeas 99 Nays 0 Excused 0 Not Voting 8,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-04-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 275 Yeas 103 Nays 5 Excused 0 Not Voting 2,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 245 Yeas 106 Nays 3 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 287 Yeas 108 Nays 2 Excused 0 Not Voting 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-10-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-10-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +received on 12/02/2021,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2022-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2022-02-16T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-05-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 575 Yeas 99 Nays 0 Excused 0 Not Voting 8,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 459 Yeas 99 Nays 4 Excused 0 Not Voting 6,2021-10-06T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 330 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 373 Yeas 107 Nays 0 Excused 0 Not Voting 3,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 63 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-10-13T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a second time,2021-06-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +passed; given immediate effect Roll Call # 68 Yeas 104 Nays 3 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +received on 10/20/2021,2021-10-20T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 297 Yeas 103 Nays 1 Excused 0 Not Voting 6,2022-06-14T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 264 Yeas 94 Nays 14 Excused 0 Not Voting 2,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 328 Yeas 106 Nays 3 Excused 0 Not Voting 1,2021-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 105 Yeas 90 Nays 20 Excused 0 Not Voting 0,2021-04-14T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-02-24T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 235 YEAS 25 NAYS 11 EXCUSED 0 NOT VOTING 0,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 434 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 155 Yeas 101 Nays 3 Excused 0 Not Voting 2,2022-04-12T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-02-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 458 Yeas 87 Nays 16 Excused 0 Not Voting 6,2021-10-06T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 513 Yeas 95 Nays 10 Excused 0 Not Voting 4,2021-10-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-06-07T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-05-26T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Judiciary,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +received on 10/14/2021,2021-10-14T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2022-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-12-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +received on 06/03/2021,2021-06-03T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-04-22T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +received on 07/15/2021,2021-07-21T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 179 Yeas 95 Nays 4 Excused 0 Not Voting 7,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-4) adopted,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 177 Yeas 89 Nays 10 Excused 0 Not Voting 7,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-12-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 435 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-02-23T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-07-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-11-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 167 Yeas 93 Nays 15 Excused 0 Not Voting 2,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 107 Yeas 90 Nays 20 Excused 0 Not Voting 0,2021-04-14T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 476 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 584 Yeas 99 Nays 4 Excused 0 Not Voting 4,2021-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-07-01T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 106 Yeas 90 Nays 20 Excused 0 Not Voting 0,2021-04-14T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-11-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 109 Yeas 105 Nays 5 Excused 0 Not Voting 0,2021-04-14T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-07-01T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-06-22T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-11-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4),2021-12-08T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 304 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 209 Yeas 59 Nays 49 Excused 0 Not Voting 2,2021-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-07-01T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 277 Yeas 105 Nays 4 Excused 0 Not Voting 1,2021-06-02T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 25 Yeas 102 Nays 0 Excused 0 Not Voting 4,2022-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-03-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-06-22T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-04-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 229 YEAS 33 NAYS 0 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-22T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 79 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-09-29T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 09/01/2021,2021-09-09T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 564 Yeas 96 Nays 4 Excused 0 Not Voting 7,2021-12-01T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-03-16T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-04-22T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 143 Yeas 105 Nays 0 Excused 0 Not Voting 1,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 67 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 39 Yeas 106 Nays 0 Excused 0 Not Voting 0,2022-02-09T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 40 Yeas 106 Nays 0 Excused 0 Not Voting 0,2022-02-09T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 362 Yeas 107 Nays 3 Excused 0 Not Voting 0,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-12-01T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +adopted,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 158 Yeas 91 Nays 11 Excused 0 Not Voting 4,2022-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +received on 11/29/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED BY 3/4 VOTE ROLL CALL # 424 YEAS 27 NAYS 8 EXCUSED 1 NOT VOTING 0,2021-11-02T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 372 Yeas 97 Nays 10 Excused 0 Not Voting 3,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 72 Yeas 98 Nays 9 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 06/02/2021,2021-06-02T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2022-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 09/28/2022,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 11 Yeas 107 Nays 0 Excused 0 Not Voting 3,2021-02-18T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-04-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 11/30/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +placed on immediate passage,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 131 Yeas 87 Nays 17 Excused 0 Not Voting 6,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-03-11T05:00:00+00:00,['reading-3'],MI,2021-2022 +SUBSTITUTE (S-2) DEFEATED,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 104 Yeas 78 Nays 32 Excused 0 Not Voting 0,2021-04-14T04:00:00+00:00,['passage'],MI,2021-2022 +received on 06/17/2021,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 9 Yeas 107 Nays 0 Excused 0 Not Voting 3,2021-02-18T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 90 Yeas 106 Nays 0 Excused 0 Not Voting 4,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 10 Yeas 107 Nays 0 Excused 0 Not Voting 3,2021-02-18T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-10-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on third reading,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-03-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-13T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-03-01T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 273 Yeas 106 Nays 1 Excused 0 Not Voting 3,2022-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 155 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 636 Yeas 95 Nays 8 Excused 0 Not Voting 4,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 457 Yeas 87 Nays 16 Excused 0 Not Voting 6,2021-10-06T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 509 Yeas 95 Nays 11 Excused 0 Not Voting 3,2021-10-27T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-03-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 124 Yeas 71 Nays 33 Excused 0 Not Voting 2,2022-03-16T04:00:00+00:00,['passage'],MI,2021-2022 +received on 11/29/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 112 Yeas 56 Nays 45 Excused 0 Not Voting 5,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 438 Yeas 102 Nays 4 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 245 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-06-02T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 406 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-05-03T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +substitute (H-2) adopted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 87 Yeas 100 Nays 7 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 262 Yeas 56 Nays 52 Excused 0 Not Voting 2,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +received on 09/28/2022,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-02-18T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 359 Yeas 58 Nays 52 Excused 0 Not Voting 0,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-2) adopted,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Health Policy,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 7 Yeas 101 Nays 0 Excused 0 Not Voting 5,2022-01-25T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-06-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 327 Yeas 97 Nays 12 Excused 0 Not Voting 1,2021-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 571 Yeas 95 Nays 4 Excused 0 Not Voting 8,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +passed by 3/4 vote; given immediate effect Roll Call # 274 Yeas 103 Nays 5 Excused 0 Not Voting 2,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 374 Yeas 56 Nays 48 Excused 0 Not Voting 6,2022-07-01T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 271 YEAS 21 NAYS 15 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 573 Yeas 99 Nays 0 Excused 0 Not Voting 8,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 321 Yeas 57 Nays 52 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 82 Yeas 104 Nays 0 Excused 0 Not Voting 2,2022-03-01T05:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-11T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-12-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 356 Yeas 110 Nays 0 Excused 0 Not Voting 0,2021-06-22T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 534 Yeas 101 Nays 1 Excused 0 Not Voting 7,2021-11-04T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 37 Yeas 79 Nays 27 Excused 0 Not Voting 0,2022-02-09T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 184 Yeas 102 Nays 1 Excused 0 Not Voting 3,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 112 Yeas 106 Nays 0 Excused 0 Not Voting 4,2021-04-15T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-09-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 134 Yeas 88 Nays 16 Excused 0 Not Voting 6,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 204 Yeas 97 Nays 10 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 133 Yeas 86 Nays 18 Excused 0 Not Voting 6,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 31 Yeas 79 Nays 30 Excused 0 Not Voting 1,2021-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-2) adopted,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 283 Yeas 107 Nays 0 Excused 0 Not Voting 3,2022-06-07T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 292 Yeas 105 Nays 5 Excused 0 Not Voting 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 484 YEAS 34 NAYS 3 EXCUSED 1 NOT VOTING 0,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 501 Yeas 94 Nays 10 Excused 0 Not Voting 5,2021-10-27T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 127 Yeas 107 Nays 1 Excused 0 Not Voting 2,2021-04-21T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 27 Yeas 66 Nays 43 Excused 0 Not Voting 1,2021-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-05-11T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +passed; given immediate effect Roll Call # 101 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 476 Yeas 105 Nays 2 Excused 0 Not Voting 2,2021-10-14T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 108 Yeas 101 Nays 0 Excused 0 Not Voting 5,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-12-01T05:00:00+00:00,['reading-1'],MI,2021-2022 +received on 03/09/2022,2022-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 277 Yeas 93 Nays 12 Excused 0 Not Voting 5,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 80 Yeas 91 Nays 15 Excused 0 Not Voting 4,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 455 Yeas 99 Nays 4 Excused 0 Not Voting 6,2021-10-06T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-02-01T05:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Oversight,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 339 Yeas 100 Nays 5 Excused 0 Not Voting 5,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 488 Yeas 69 Nays 34 Excused 0 Not Voting 6,2021-10-19T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-10-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 363 Yeas 110 Nays 0 Excused 0 Not Voting 0,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED ROLL CALL # 288 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 357 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-06-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 523 Yeas 83 Nays 20 Excused 0 Not Voting 6,2021-11-03T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-05-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 561 Yeas 97 Nays 3 Excused 0 Not Voting 7,2021-12-01T05:00:00+00:00,['passage'],MI,2021-2022 +inserted full title,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 317 Yeas 107 Nays 2 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 413 Yeas 62 Nays 38 Excused 0 Not Voting 9,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-06-03T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 198 Yeas 90 Nays 17 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Communications and Technology,2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 148 Yeas 63 Nays 46 Excused 0 Not Voting 1,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-11T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-05-05T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-05-04T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +received on 05/05/2021,2021-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-11-09T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 50 Yeas 96 Nays 8 Excused 0 Not Voting 2,2022-02-16T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 315 Yeas 97 Nays 12 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-07-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Health Policy,2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 185 Yeas 103 Nays 0 Excused 0 Not Voting 3,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 411 Yeas 103 Nays 6 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 405 YEAS 19 NAYS 15 EXCUSED 2 NOT VOTING 0,2021-10-26T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 44 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-03-04T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 302 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-11-02T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2022-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 552 Yeas 91 Nays 14 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 563 Yeas 96 Nays 4 Excused 0 Not Voting 7,2021-12-01T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-06-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2022-09-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +substitute (H-4) adopted and amended,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-11T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 401 Yeas 106 Nays 2 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 533 Yeas 101 Nays 1 Excused 0 Not Voting 7,2021-11-04T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-05T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-02-18T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +received on 09/28/2022,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 86 Yeas 100 Nays 7 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 357 Yeas 110 Nays 0 Excused 0 Not Voting 0,2021-06-22T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-07-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +reported with recommendation without amendment,2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 475 YEAS 23 NAYS 14 EXCUSED 0 NOT VOTING 1,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 467 Yeas 105 Nays 1 Excused 0 Not Voting 3,2021-10-13T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 412 Yeas 103 Nays 6 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 376 Yeas 56 Nays 48 Excused 0 Not Voting 6,2022-07-01T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 304 Yeas 100 Nays 4 Excused 0 Not Voting 6,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 46 Yeas 107 Nays 3 Excused 0 Not Voting 0,2021-03-11T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 205 Yeas 76 Nays 28 Excused 0 Not Voting 5,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 75 Yeas 106 Nays 1 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-05-12T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +PASSED ROLL CALL # 19 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-02-25T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 486 Yeas 88 Nays 15 Excused 0 Not Voting 6,2021-10-19T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-01-26T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-08-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +placed on immediate passage,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 110 Yeas 54 Nays 47 Excused 0 Not Voting 5,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 176 Yeas 83 Nays 25 Excused 0 Not Voting 2,2021-05-06T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-04-13T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 524 Yeas 85 Nays 18 Excused 0 Not Voting 6,2021-11-03T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-05-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 54 Yeas 104 Nays 5 Excused 0 Not Voting 1,2021-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 334 Yeas 110 Nays 0 Excused 0 Not Voting 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Education,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 359 Yeas 97 Nays 9 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-3) adopted,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 520 Yeas 103 Nays 0 Excused 0 Not Voting 6,2021-11-03T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 505 YEAS 32 NAYS 3 EXCUSED 3 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 337 Yeas 100 Nays 5 Excused 0 Not Voting 5,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 340 Yeas 100 Nays 10 Excused 0 Not Voting 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 474 Yeas 94 Nays 13 Excused 0 Not Voting 2,2021-10-14T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 312 Yeas 93 Nays 16 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 47 Yeas 101 Nays 4 Excused 0 Not Voting 1,2022-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 12 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-02-23T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Transportation,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 408 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED ROLL CALL # 457 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Transportation,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 337 Yeas 98 Nays 10 Excused 0 Not Voting 2,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 122 Yeas 69 Nays 39 Excused 0 Not Voting 2,2021-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Education,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 06/30/2022,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 384 YEAS 32 NAYS 6 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-08-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 06/30/2022,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 289 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 310 Yeas 64 Nays 45 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-05-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-02-18T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 115 Yeas 57 Nays 44 Excused 0 Not Voting 5,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-10-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 200 Yeas 89 Nays 18 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 403 Yeas 60 Nays 44 Excused 0 Not Voting 5,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +received on 05/11/2022,2022-05-11T04:00:00+00:00,['introduction'],MI,2021-2022 +received on 03/10/2022,2022-03-10T05:00:00+00:00,['introduction'],MI,2021-2022 +received on 11/02/2021,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 205 Yeas 88 Nays 18 Excused 0 Not Voting 4,2021-05-13T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 477 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-09-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 70 Yeas 97 Nays 10 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 312 Yeas 105 Nays 0 Excused 0 Not Voting 5,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 421 Yeas 62 Nays 39 Excused 0 Not Voting 8,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 487 Yeas 69 Nays 34 Excused 0 Not Voting 6,2021-10-19T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-06-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 255 Yeas 92 Nays 15 Excused 0 Not Voting 3,2022-05-24T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-04-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-12-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 404 Yeas 56 Nays 48 Excused 0 Not Voting 5,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 269 Yeas 104 Nays 4 Excused 0 Not Voting 2,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Transportation,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 151 Yeas 86 Nays 17 Excused 0 Not Voting 3,2022-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 431 YEAS 31 NAYS 4 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +passed by 3/4 vote; given immediate effect Roll Call # 268 Yeas 103 Nays 5 Excused 0 Not Voting 2,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 373 Yeas 56 Nays 48 Excused 0 Not Voting 6,2022-07-01T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 550 Yeas 105 Nays 0 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 572 Yeas 95 Nays 4 Excused 0 Not Voting 8,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-04-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 444 Yeas 102 Nays 2 Excused 0 Not Voting 6,2021-09-29T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 102 Yeas 107 Nays 3 Excused 0 Not Voting 0,2021-04-14T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-05T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 412 Yeas 60 Nays 37 Excused 0 Not Voting 12,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-06-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-05-11T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +transmitted,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +HOUSE CONCURRENCE RECEIVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-05-04T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +read a third time,2022-05-10T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 333 Yeas 56 Nays 49 Excused 0 Not Voting 5,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 408 Yeas 90 Nays 17 Excused 0 Not Voting 3,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 99 Yeas 108 Nays 1 Excused 0 Not Voting 1,2021-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 407 YEAS 19 NAYS 15 EXCUSED 2 NOT VOTING 0,2021-10-26T04:00:00+00:00,['passage'],MI,2021-2022 +vote on passage reconsidered,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-05-11T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +AMENDMENT(S) WITHDRAWN,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 535 Yeas 91 Nays 11 Excused 0 Not Voting 7,2021-11-04T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +received on 05/27/2021,2021-05-27T04:00:00+00:00,['introduction'],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Health Policy,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 14 Yeas 102 Nays 7 Excused 0 Not Voting 1,2021-02-24T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-01-26T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 136 Yeas 104 Nays 1 Excused 0 Not Voting 1,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 358 Yeas 110 Nays 0 Excused 0 Not Voting 0,2021-06-22T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-02-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 63 Yeas 97 Nays 4 Excused 0 Not Voting 5,2022-02-17T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 279 Yeas 99 Nays 10 Excused 0 Not Voting 1,2021-06-02T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 414 Yeas 62 Nays 39 Excused 0 Not Voting 8,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on immediate passage,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +received on 03/09/2022,2022-03-09T05:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Agriculture,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 254 Yeas 79 Nays 28 Excused 0 Not Voting 3,2022-05-24T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-12-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 38 Yeas 106 Nays 0 Excused 0 Not Voting 0,2022-02-09T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-26T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 415 Yeas 61 Nays 38 Excused 0 Not Voting 10,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 420 Yeas 62 Nays 39 Excused 0 Not Voting 8,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 326 Yeas 104 Nays 5 Excused 0 Not Voting 1,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-04-22T04:00:00+00:00,['reading-1'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-05-12T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +transmitted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +reported with recommendation without amendment,2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 176 Yeas 76 Nays 23 Excused 0 Not Voting 7,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-06-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 272 Yeas 95 Nays 12 Excused 0 Not Voting 3,2022-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED ROLL CALL # 478 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 188 YEAS 21 NAYS 14 EXCUSED 3 NOT VOTING 0,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 123 Yeas 88 Nays 16 Excused 0 Not Voting 2,2022-03-16T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 301 Yeas 101 Nays 8 Excused 0 Not Voting 1,2021-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Transportation,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Judiciary,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-05-11T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-09-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +received on 11/02/2021,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +received on 11/29/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 407 Yeas 58 Nays 42 Excused 0 Not Voting 9,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 618 Yeas 101 Nays 1 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 30 YEAS 19 NAYS 15 EXCUSED 1 NOT VOTING 1,2021-02-25T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 313 Yeas 105 Nays 0 Excused 0 Not Voting 5,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 591 Yeas 96 Nays 8 Excused 0 Not Voting 3,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 566 Yeas 57 Nays 43 Excused 0 Not Voting 7,2021-12-01T05:00:00+00:00,['passage'],MI,2021-2022 +received on 10/26/2021,2021-10-26T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 405 Yeas 57 Nays 45 Excused 0 Not Voting 7,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-12-01T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 85 Yeas 94 Nays 13 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 392 Yeas 86 Nays 22 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 155 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-05-03T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 94 Yeas 99 Nays 6 Excused 0 Not Voting 1,2022-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 590 Yeas 96 Nays 8 Excused 0 Not Voting 3,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 201 Yeas 91 Nays 16 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 95 Yeas 99 Nays 6 Excused 0 Not Voting 1,2022-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 54 Yeas 99 Nays 6 Excused 0 Not Voting 1,2022-02-16T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 44 Yeas 96 Nays 9 Excused 0 Not Voting 1,2022-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 625 Yeas 102 Nays 0 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 203 Yeas 90 Nays 17 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 164 Yeas 110 Nays 0 Excused 0 Not Voting 0,2021-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 416 Yeas 62 Nays 39 Excused 0 Not Voting 8,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-02-17T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2022-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-02-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 97 Yeas 106 Nays 0 Excused 0 Not Voting 4,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +received on 06/30/2022,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on immediate passage,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 98 Yeas 106 Nays 0 Excused 0 Not Voting 4,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 39 Yeas 93 Nays 17 Excused 0 Not Voting 0,2021-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 462 Yeas 103 Nays 0 Excused 0 Not Voting 6,2021-10-06T04:00:00+00:00,['passage'],MI,2021-2022 +passed by 3/4 vote; given immediate effect Roll Call # 267 Yeas 102 Nays 6 Excused 0 Not Voting 2,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Agriculture,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 150 Yeas 83 Nays 19 Excused 0 Not Voting 4,2022-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 61 Yeas 98 Nays 3 Excused 0 Not Voting 5,2022-02-17T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-05-10T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 330 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED ROLL CALL # 422 YEAS 27 NAYS 8 EXCUSED 1 NOT VOTING 0,2021-11-02T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 168 Yeas 82 Nays 26 Excused 0 Not Voting 2,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 78 Yeas 56 Nays 51 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 399 Yeas 106 Nays 2 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 70 Yeas 54 Nays 50 Excused 0 Not Voting 2,2022-02-23T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 150 Yeas 65 Nays 44 Excused 0 Not Voting 1,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 417 Yeas 62 Nays 39 Excused 0 Not Voting 8,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 71 Yeas 101 Nays 6 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2022-06-23T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +transmitted,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-08-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-10-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +received on 10/26/2021,2021-10-26T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 145 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 484 Yeas 60 Nays 43 Excused 0 Not Voting 6,2021-10-19T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 338 Yeas 98 Nays 7 Excused 0 Not Voting 5,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2022-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 290 Yeas 93 Nays 12 Excused 0 Not Voting 5,2022-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +received on 11/30/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 442 Yeas 100 Nays 6 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +received on 09/28/2022,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +ADOPTED,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 303 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +received on 11/30/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Tax Policy,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Commerce and Tourism,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-05-12T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +referred to Committee on Health Policy,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 296 Yeas 104 Nays 0 Excused 0 Not Voting 6,2022-06-14T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 111 Yeas 58 Nays 43 Excused 0 Not Voting 5,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 9 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-08-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Tax Policy,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +reported with recommendation without amendment,2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 137 Yeas 104 Nays 1 Excused 0 Not Voting 1,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-03-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Appropriations,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 11/30/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-10-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-08-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 313 Yeas 106 Nays 3 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 6 Yeas 99 Nays 2 Excused 0 Not Voting 5,2022-01-25T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 130 Yeas 103 Nays 0 Excused 0 Not Voting 3,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +received on 11/30/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-12-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 461 YEAS 34 NAYS 0 EXCUSED 4 NOT VOTING 0,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 530 Yeas 102 Nays 0 Excused 0 Not Voting 7,2021-11-04T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 183 Yeas 91 Nays 12 Excused 0 Not Voting 3,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-05-11T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +transmitted,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-22T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 60 Yeas 94 Nays 7 Excused 0 Not Voting 5,2022-02-17T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-2) adopted,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-08-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 344 Yeas 110 Nays 0 Excused 0 Not Voting 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 79 Yeas 102 Nays 5 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-05-13T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +transmitted,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Health Policy,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 11/29/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 142 Yeas 87 Nays 22 Excused 0 Not Voting 1,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +Rep. Helena Scott removed as cosponsor,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 26 Yeas 61 Nays 48 Excused 0 Not Voting 1,2021-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 27 Yeas 94 Nays 11 Excused 0 Not Voting 1,2022-02-01T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +reported with recommendation without amendment,2022-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2022-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 424 Yeas 59 Nays 49 Excused 0 Not Voting 2,2021-07-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 570 Yeas 98 Nays 1 Excused 0 Not Voting 8,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 506 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) DEFEATED,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-01-26T05:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-04-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 557 Yeas 103 Nays 2 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 126 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-04-21T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 380 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-10-07T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-02-18T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 01/27/2022,2022-01-27T05:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 246 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 141 YEAS 22 NAYS 13 EXCUSED 3 NOT VOTING 0,2022-05-03T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 532 Yeas 101 Nays 1 Excused 0 Not Voting 7,2021-11-04T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 128 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-04-21T04:00:00+00:00,['passage'],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Transportation,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-02-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Health Policy,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 160 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-05-03T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 38 Yeas 93 Nays 17 Excused 0 Not Voting 0,2021-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-15T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 83 Yeas 99 Nays 8 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 144 YEAS 22 NAYS 13 EXCUSED 3 NOT VOTING 0,2022-05-03T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 110 Yeas 106 Nays 0 Excused 0 Not Voting 4,2021-04-15T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-05-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-07-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 385 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 285 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-01-26T05:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 347 Yeas 103 Nays 7 Excused 0 Not Voting 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2022-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +received on 06/16/2021,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 287 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-03-03T05:00:00+00:00,['amendment-failure'],MI,2021-2022 +passed; given immediate effect Roll Call # 51 Yeas 106 Nays 3 Excused 0 Not Voting 1,2021-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-05-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-05-03T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +passed; given immediate effect Roll Call # 450 Yeas 105 Nays 0 Excused 0 Not Voting 5,2021-09-30T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 463 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 499 Yeas 100 Nays 4 Excused 0 Not Voting 5,2021-10-27T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 473 Yeas 94 Nays 13 Excused 0 Not Voting 2,2021-10-14T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 196 Yeas 74 Nays 29 Excused 0 Not Voting 3,2022-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-04-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 350 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-09-14T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 114 Yeas 55 Nays 46 Excused 0 Not Voting 5,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 136 Yeas 87 Nays 17 Excused 0 Not Voting 6,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 409 Yeas 57 Nays 39 Excused 0 Not Voting 13,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 47 Yeas 108 Nays 1 Excused 0 Not Voting 1,2021-03-16T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 537 Yeas 102 Nays 0 Excused 0 Not Voting 7,2021-11-04T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 170 Yeas 60 Nays 48 Excused 0 Not Voting 2,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Transportation,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-05-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 517 Yeas 88 Nays 14 Excused 0 Not Voting 7,2021-11-02T04:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-05-03T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +passed; given immediate effect Roll Call # 107 Yeas 65 Nays 36 Excused 0 Not Voting 5,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-12-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +rule suspended,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 360 Yeas 95 Nays 11 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 303 Yeas 57 Nays 48 Excused 0 Not Voting 5,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 338 Yeas 100 Nays 10 Excused 0 Not Voting 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 360 Yeas 77 Nays 33 Excused 0 Not Voting 0,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +received on 10/21/2021,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 282 Yeas 93 Nays 16 Excused 0 Not Voting 1,2021-06-02T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 542 Yeas 101 Nays 3 Excused 0 Not Voting 5,2021-11-09T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Health Policy,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +Rep. Richard Steenland removed as cosponsor,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Education,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 519 Yeas 103 Nays 0 Excused 0 Not Voting 6,2021-11-03T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Transportation,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 44 Yeas 105 Nays 5 Excused 0 Not Voting 0,2021-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-07-15T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-01-26T05:00:00+00:00,['reading-3'],MI,2021-2022 +roll call Roll Call # 282 Yeas 51 Nays 56 Excused 0 Not Voting 3,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-05T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to second reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 361 Yeas 106 Nays 4 Excused 0 Not Voting 0,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-02-04T05:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-11T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 382 Yeas 105 Nays 3 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 522 Yeas 69 Nays 34 Excused 0 Not Voting 6,2021-11-03T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +received on 06/02/2021,2021-06-02T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 350 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +received on 10/07/2021,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 69 Yeas 104 Nays 3 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 284 Yeas 106 Nays 1 Excused 0 Not Voting 3,2022-06-07T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +postponed temporarily,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 436 Yeas 102 Nays 4 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 74 Yeas 56 Nays 51 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +received on 11/30/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 30 Yeas 108 Nays 1 Excused 0 Not Voting 1,2021-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 141 Yeas 89 Nays 20 Excused 0 Not Voting 1,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-09-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 139 Yeas 61 Nays 44 Excused 0 Not Voting 1,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +received on 11/02/2021,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-10-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED ROLL CALL # 154 YEAS 33 NAYS 2 EXCUSED 3 NOT VOTING 0,2022-05-03T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 359 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 407 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 8 Yeas 101 Nays 1 Excused 0 Not Voting 4,2022-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED ROLL CALL # 303 YEAS 31 NAYS 4 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 305 Yeas 56 Nays 49 Excused 0 Not Voting 5,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 345 Yeas 110 Nays 0 Excused 0 Not Voting 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-05-03T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +passed; given immediate effect Roll Call # 556 Yeas 102 Nays 3 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 389 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-10-19T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 278 Yeas 98 Nays 11 Excused 0 Not Voting 1,2021-06-02T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 138 Yeas 78 Nays 26 Excused 0 Not Voting 6,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 153 YEAS 33 NAYS 2 EXCUSED 1 NOT VOTING 0,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-03-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Appropriations,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 582 Yeas 102 Nays 1 Excused 0 Not Voting 4,2021-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 408 YEAS 19 NAYS 15 EXCUSED 2 NOT VOTING 0,2021-10-26T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-03-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 236 Yeas 104 Nays 4 Excused 0 Not Voting 2,2021-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-03T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 144 Yeas 60 Nays 49 Excused 0 Not Voting 1,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 152 Yeas 84 Nays 19 Excused 0 Not Voting 3,2022-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 86 Yeas 104 Nays 0 Excused 0 Not Voting 2,2022-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 490 Yeas 96 Nays 8 Excused 0 Not Voting 5,2021-10-20T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 422 Yeas 103 Nays 5 Excused 0 Not Voting 2,2021-07-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 151 Yeas 65 Nays 44 Excused 0 Not Voting 1,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-02-04T05:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-1) adopted,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +received on 09/28/2022,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-12-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 9 Yeas 97 Nays 5 Excused 0 Not Voting 4,2022-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 551 Yeas 91 Nays 14 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 163 Yeas 109 Nays 1 Excused 0 Not Voting 0,2021-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-05-11T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +transmitted,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +received on 03/18/2021,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 73 Yeas 102 Nays 0 Excused 0 Not Voting 4,2022-02-24T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-26T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Communications and Technology,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-04-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-03-03T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 482 Yeas 101 Nays 2 Excused 0 Not Voting 6,2021-10-19T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 90 Yeas 104 Nays 0 Excused 0 Not Voting 2,2022-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +received on 03/23/2021,2021-03-23T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 348 Yeas 102 Nays 7 Excused 0 Not Voting 1,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 377 Yeas 96 Nays 12 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 485 Yeas 85 Nays 18 Excused 0 Not Voting 6,2021-10-19T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 440 Yeas 100 Nays 6 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-10-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Education,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 49 Yeas 104 Nays 0 Excused 0 Not Voting 2,2022-02-16T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 279 Yeas 85 Nays 20 Excused 0 Not Voting 5,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 353 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Education,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Oversight,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 207 Yeas 96 Nays 8 Excused 0 Not Voting 5,2022-05-10T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-02-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 45 Yeas 96 Nays 9 Excused 0 Not Voting 1,2022-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 184 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-05-13T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-04-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2022-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-01-27T05:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 278 Yeas 98 Nays 7 Excused 0 Not Voting 5,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 82 Yeas 100 Nays 7 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 409 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-05-11T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +passed; given immediate effect Roll Call # 270 Yeas 96 Nays 11 Excused 0 Not Voting 3,2022-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-12-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 52 Yeas 59 Nays 50 Excused 0 Not Voting 1,2021-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +vote on passage reconsidered,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 401 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-10-21T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 355 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-03-25T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Education,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-05-11T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 400 Yeas 108 Nays 0 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 73 Yeas 91 Nays 16 Excused 0 Not Voting 3,2021-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 544 Yeas 104 Nays 1 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 500 Yeas 56 Nays 48 Excused 0 Not Voting 5,2021-10-27T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 237 Yeas 74 Nays 34 Excused 0 Not Voting 2,2021-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 371 Yeas 56 Nays 49 Excused 0 Not Voting 5,2022-07-01T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 135 Yeas 103 Nays 2 Excused 0 Not Voting 1,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 65 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 406 Yeas 58 Nays 44 Excused 0 Not Voting 7,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Tax Policy,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 437 Yeas 102 Nays 4 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-07-01T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 531 Yeas 102 Nays 0 Excused 0 Not Voting 7,2021-11-04T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-05-12T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 06/24/2021,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 377 Yeas 56 Nays 48 Excused 0 Not Voting 6,2022-07-01T04:00:00+00:00,['passage'],MI,2021-2022 +passed by 3/4 vote; given immediate effect Roll Call # 146 Yeas 88 Nays 20 Excused 0 Not Voting 2,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 419 Yeas 62 Nays 39 Excused 0 Not Voting 8,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 243 Yeas 66 Nays 43 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-04-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 418 Yeas 62 Nays 39 Excused 0 Not Voting 8,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 424 Yeas 61 Nays 38 Excused 0 Not Voting 10,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 309 Yeas 101 Nays 4 Excused 0 Not Voting 5,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 599 Yeas 102 Nays 0 Excused 0 Not Voting 5,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 372 Yeas 56 Nays 48 Excused 0 Not Voting 6,2022-07-01T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-04-13T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-01-26T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 423 Yeas 62 Nays 39 Excused 0 Not Voting 8,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 128 Yeas 71 Nays 31 Excused 0 Not Voting 4,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 149 Yeas 67 Nays 42 Excused 0 Not Voting 1,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 548 Yeas 94 Nays 11 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-11T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 216 Yeas 61 Nays 47 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 138 Yeas 61 Nays 44 Excused 0 Not Voting 1,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-02-16T05:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-09-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 36 Yeas 106 Nays 0 Excused 0 Not Voting 0,2022-02-09T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-05-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-05-12T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +substitute (H-2) adopted,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 356 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-26T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 290 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-01-27T05:00:00+00:00,['reading-3'],MI,2021-2022 +received on 06/16/2021,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 123 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +received on 03/18/2021,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +substitute (H-1) adopted,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 456 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 175 Yeas 105 Nays 3 Excused 0 Not Voting 2,2021-05-06T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 43 Yeas 55 Nays 51 Excused 0 Not Voting 0,2022-02-09T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-12T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 426 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-05-03T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +transmitted,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 411 Yeas 60 Nays 39 Excused 0 Not Voting 10,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 441 Yeas 103 Nays 3 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +passed by 3/4 vote; given immediate effect Roll Call # 170 Yeas 87 Nays 16 Excused 0 Not Voting 3,2022-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 232 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 391 Yeas 102 Nays 6 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 256 Yeas 98 Nays 9 Excused 0 Not Voting 3,2022-05-24T04:00:00+00:00,['passage'],MI,2021-2022 +received on 10/27/2021,2021-10-27T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 244 Yeas 67 Nays 42 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 121 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 03/18/2021,2021-03-18T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 511 Yeas 94 Nays 11 Excused 0 Not Voting 4,2021-10-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-02-04T05:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-11T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-02-04T05:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 276 Yeas 62 Nays 47 Excused 0 Not Voting 1,2021-06-02T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-05-03T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +placed on third reading,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +passed by 2/3 vote Roll Call # 318 Yeas 81 Nays 28 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 388 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-10-19T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 202 Yeas 91 Nays 16 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 274 YEAS 19 NAYS 16 EXCUSED 1 NOT VOTING 0,2021-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 307 Yeas 71 Nays 38 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-05-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 5 Yeas 96 Nays 5 Excused 0 Not Voting 5,2022-01-25T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 410 Yeas 60 Nays 39 Excused 0 Not Voting 10,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 3 Yeas 76 Nays 25 Excused 0 Not Voting 5,2022-01-25T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 154 YEAS 32 NAYS 3 EXCUSED 1 NOT VOTING 0,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +received on 06/10/2021,2021-06-10T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 358 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-3) adopted,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-05-03T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +passed; given immediate effect Roll Call # 529 Yeas 96 Nays 6 Excused 0 Not Voting 7,2021-11-04T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 153 Yeas 98 Nays 11 Excused 0 Not Voting 1,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +received on 06/17/2021,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +read a third time,2022-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-05-05T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 339 Yeas 100 Nays 10 Excused 0 Not Voting 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Transportation,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2022-05-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 346 Yeas 110 Nays 0 Excused 0 Not Voting 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 404 Yeas 107 Nays 2 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +"referred to Committee on Families, Children, and Seniors",2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-05-03T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +read a third time,2022-05-05T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 159 Yeas 110 Nays 0 Excused 0 Not Voting 0,2021-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 383 Yeas 105 Nays 3 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 311 Yeas 68 Nays 41 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 444 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +received on 09/28/2022,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +title amended,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-22T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 478 Yeas 55 Nays 48 Excused 0 Not Voting 6,2021-10-19T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 592 Yeas 83 Nays 21 Excused 0 Not Voting 3,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-09-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 51 Yeas 96 Nays 8 Excused 0 Not Voting 2,2022-02-16T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 314 Yeas 73 Nays 32 Excused 0 Not Voting 5,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 196 Yeas 67 Nays 40 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 159 YEAS 24 NAYS 11 EXCUSED 3 NOT VOTING 0,2022-05-03T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 185 Yeas 85 Nays 22 Excused 0 Not Voting 3,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 143 YEAS 22 NAYS 13 EXCUSED 3 NOT VOTING 0,2022-05-03T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 309 Yeas 65 Nays 44 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 314 Yeas 93 Nays 16 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +received on 10/19/2021,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 172 YEAS 22 NAYS 13 EXCUSED 3 NOT VOTING 0,2022-05-03T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 316 Yeas 106 Nays 3 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +title amended,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 15 Yeas 69 Nays 33 Excused 0 Not Voting 4,2022-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +defeated Roll Call # 282 Yeas 51 Nays 56 Excused 0 Not Voting 3,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +substitute (H-2) adopted,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +title amended,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Health Policy,2021-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +received on 05/04/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 151 YEAS 21 NAYS 14 EXCUSED 3 NOT VOTING 0,2022-05-03T04:00:00+00:00,['passage'],MI,2021-2022 +received on 05/12/2021,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 195 Yeas 57 Nays 50 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 25 Yeas 104 Nays 6 Excused 0 Not Voting 0,2021-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +received on 10/19/2021,2021-10-19T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 251 Yeas 85 Nays 20 Excused 0 Not Voting 5,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-05-11T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +passed; given immediate effect Roll Call # 24 Yeas 104 Nays 6 Excused 0 Not Voting 0,2021-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 375 Yeas 84 Nays 23 Excused 0 Not Voting 3,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-23T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 154 Yeas 61 Nays 49 Excused 0 Not Voting 0,2021-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 10/21/2021,2021-10-21T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 164 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 181 Yeas 60 Nays 47 Excused 0 Not Voting 3,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-05-12T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +reported with recommendation without amendment,2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on immediate passage,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 05/12/2021,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 317 Yeas 79 Nays 26 Excused 0 Not Voting 5,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 405 Yeas 97 Nays 12 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 26 Yeas 96 Nays 6 Excused 0 Not Voting 4,2022-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 158 Yeas 109 Nays 1 Excused 0 Not Voting 0,2021-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on immediate passage,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 14 Yeas 69 Nays 33 Excused 0 Not Voting 4,2022-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 316 Yeas 105 Nays 0 Excused 0 Not Voting 5,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 161 Yeas 92 Nays 10 Excused 0 Not Voting 4,2022-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 402 Yeas 60 Nays 43 Excused 0 Not Voting 6,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 120 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 184 Yeas 58 Nays 49 Excused 0 Not Voting 3,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 88 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 09/28/2022,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 06/16/2021,2021-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-03-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +postponed for the day,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-06-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-05-03T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 6 Yeas 58 Nays 51 Excused 0 Not Voting 1,2021-02-04T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Tax Policy,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 7 Yeas 57 Nays 52 Excused 0 Not Voting 1,2021-02-04T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-06-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Tax Policy,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 613 Yeas 102 Nays 0 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +received on 03/03/2021,2021-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2022-02-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 5 Yeas 60 Nays 49 Excused 0 Not Voting 1,2021-02-04T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +received on 10/26/2021,2021-10-26T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-01-27T05:00:00+00:00,['committee-passage'],MI,2021-2022 +title amended,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 302 Yeas 105 Nays 0 Excused 0 Not Voting 5,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +received on 12/09/2021,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-4) adopted,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 311 Yeas 92 Nays 13 Excused 0 Not Voting 5,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +Rep. Nate Shannon removed as cosponsor,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 368 YEAS 28 NAYS 10 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 187 Yeas 57 Nays 50 Excused 0 Not Voting 3,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Oversight,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 569 Yeas 95 Nays 5 Excused 0 Not Voting 7,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +title amended,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 515 Yeas 99 Nays 6 Excused 0 Not Voting 4,2021-10-28T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 240 Yeas 65 Nays 44 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-10-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-10-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Transportation,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-11-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +title amended,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 624 Yeas 102 Nays 0 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-05-05T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Judiciary,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 06/24/2021,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +received on 09/20/2022,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +referred to Committee on Financial Services,2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 621 Yeas 102 Nays 0 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +title amended,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 540 Yeas 92 Nays 12 Excused 0 Not Voting 5,2021-11-09T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 629 Yeas 102 Nays 0 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 460 Yeas 101 Nays 2 Excused 0 Not Voting 6,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 199 Yeas 58 Nays 45 Excused 0 Not Voting 3,2022-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 153 YEAS 31 NAYS 4 EXCUSED 3 NOT VOTING 0,2022-05-03T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 188 Yeas 59 Nays 44 Excused 0 Not Voting 3,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 200 Yeas 76 Nays 27 Excused 0 Not Voting 3,2022-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 4 Yeas 76 Nays 25 Excused 0 Not Voting 5,2022-01-25T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-3) adopted,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 192 Yeas 78 Nays 25 Excused 0 Not Voting 3,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 444 Yeas 56 Nays 50 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 186 Yeas 57 Nays 46 Excused 0 Not Voting 3,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 4 Yeas 59 Nays 50 Excused 0 Not Voting 1,2021-02-04T05:00:00+00:00,['passage'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-27T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Health Policy,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +received on 09/21/2022,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 190 Yeas 58 Nays 49 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 22 Yeas 99 Nays 3 Excused 0 Not Voting 4,2022-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 172 YEAS 19 NAYS 17 EXCUSED 0 NOT VOTING 0,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 125 Yeas 100 Nays 3 Excused 0 Not Voting 3,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 262 Yeas 95 Nays 12 Excused 0 Not Voting 3,2022-05-24T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 149 Yeas 58 Nays 44 Excused 0 Not Voting 4,2022-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 307 Yeas 104 Nays 1 Excused 0 Not Voting 5,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 42 Yeas 55 Nays 51 Excused 0 Not Voting 0,2022-02-09T05:00:00+00:00,['passage'],MI,2021-2022 +received on 05/13/2021,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +VOTE RECONSIDERED,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 339 YEAS 23 NAYS 12 EXCUSED 1 NOT VOTING 0,2021-07-15T04:00:00+00:00,['passage'],MI,2021-2022 +received on 05/18/2022,2022-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 211 Yeas 101 Nays 3 Excused 0 Not Voting 5,2022-05-10T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 192 Yeas 65 Nays 42 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 121 Yeas 101 Nays 2 Excused 0 Not Voting 3,2022-03-15T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-2) adopted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 126 Yeas 100 Nays 3 Excused 0 Not Voting 3,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 439 Yeas 99 Nays 7 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +received on 12/09/2021,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 375 Yeas 56 Nays 48 Excused 0 Not Voting 6,2022-07-01T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 422 Yeas 62 Nays 39 Excused 0 Not Voting 8,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-05-11T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 09/28/2022,2022-09-28T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +amended,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 11 Yeas 102 Nays 0 Excused 0 Not Voting 4,2022-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 100 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +defeated Roll Call # 119 Yeas 49 Nays 54 Excused 0 Not Voting 3,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +received on 12/09/2021,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 427 Yeas 88 Nays 18 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-03-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-04-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Transportation,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 193 Yeas 66 Nays 41 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 147 Yeas 106 Nays 3 Excused 0 Not Voting 1,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 433 Yeas 97 Nays 9 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 425 Yeas 57 Nays 48 Excused 0 Not Voting 4,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-11T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 626 Yeas 102 Nays 0 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 05/26/2022,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2022-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +substitute (H-3) adopted,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 182 Yeas 56 Nays 51 Excused 0 Not Voting 3,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +reported with recommendation without amendment,2021-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-10-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +received on 03/04/2021,2021-03-04T05:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 378 Yeas 72 Nays 37 Excused 0 Not Voting 1,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 183 Yeas 57 Nays 50 Excused 0 Not Voting 3,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-13T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-07-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 250 Yeas 101 Nays 4 Excused 0 Not Voting 5,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +title amended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +received on 05/26/2022,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 194 Yeas 55 Nays 48 Excused 0 Not Voting 3,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +received on 06/30/2022,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 329 Yeas 89 Nays 15 Excused 0 Not Voting 6,2022-06-21T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +title amended,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-06-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 568 Yeas 95 Nays 5 Excused 0 Not Voting 7,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2022-06-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 10/26/2021,2021-10-26T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 627 Yeas 102 Nays 0 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 310 Yeas 105 Nays 0 Excused 0 Not Voting 5,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 353 Yeas 106 Nays 0 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2022-05-04T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed Roll Call # 332 Yeas 108 Nays 1 Excused 0 Not Voting 1,2021-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +POSTPONED TEMPORARILY,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +received on 05/13/2021,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-02-24T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 263 Yeas 104 Nays 3 Excused 0 Not Voting 3,2022-05-24T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-09-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +received on 05/19/2022,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +reported with recommendation without amendment,2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Oversight,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 163 YEAS 22 NAYS 13 EXCUSED 3 NOT VOTING 0,2022-05-03T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 263 Yeas 56 Nays 52 Excused 0 Not Voting 2,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +received on 09/20/2022,2022-09-20T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 331 Yeas 95 Nays 9 Excused 0 Not Voting 6,2022-06-21T04:00:00+00:00,['passage'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-01T05:00:00+00:00,['reading-3'],MI,2021-2022 +reported with recommendation without amendment,2021-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 148 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 426 Yeas 88 Nays 18 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 305 Yeas 72 Nays 37 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 31 Yeas 102 Nays 3 Excused 0 Not Voting 1,2022-02-01T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 191 Yeas 55 Nays 48 Excused 0 Not Voting 3,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 300 Yeas 104 Nays 0 Excused 0 Not Voting 6,2022-06-14T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +title amended,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 10/26/2021,2021-10-26T04:00:00+00:00,['introduction'],MI,2021-2022 +referred to Committee on Tax Policy,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +received on 12/09/2021,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 197 Yeas 54 Nays 49 Excused 0 Not Voting 3,2022-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2022-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-07-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 199 YEAS 22 NAYS 12 EXCUSED 3 NOT VOTING 1,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +received on 06/24/2021,2021-06-24T04:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 198 Yeas 62 Nays 41 Excused 0 Not Voting 3,2022-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 444 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 06/02/2021,2021-06-02T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-02-16T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +given immediate effect,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 02/25/2021,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +PASSED ROLL CALL # 167 YEAS 19 NAYS 17 EXCUSED 0 NOT VOTING 0,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 431 Yeas 75 Nays 33 Excused 0 Not Voting 2,2021-08-17T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 16 Yeas 101 Nays 1 Excused 0 Not Voting 4,2022-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-08-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +transmitted,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 11/30/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-02-23T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 189 Yeas 56 Nays 51 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-11-30T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 408 Yeas 62 Nays 36 Excused 0 Not Voting 11,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 430 Yeas 77 Nays 31 Excused 0 Not Voting 2,2021-08-17T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +transmitted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 477 Yeas 55 Nays 48 Excused 0 Not Voting 6,2021-10-19T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 274 Yeas 98 Nays 9 Excused 0 Not Voting 3,2022-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 11/10/2021,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 201 Yeas 76 Nays 27 Excused 0 Not Voting 3,2022-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-01-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO SECRETARY FOR RECORD,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 403 Yeas 107 Nays 2 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 180 Yeas 96 Nays 11 Excused 0 Not Voting 3,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-10-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 395 Yeas 102 Nays 6 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 456 Yeas 97 Nays 6 Excused 0 Not Voting 6,2021-10-06T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +PASSED ROLL CALL # 160 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2021-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 379 Yeas 92 Nays 16 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 354 Yeas 106 Nays 0 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Health Policy,2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 398 Yeas 108 Nays 0 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +adopted by Senate - referred to the Clerk for record,2021-12-15T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +title amended,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Oversight,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 152 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 318 Yeas 78 Nays 27 Excused 0 Not Voting 5,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-02-16T05:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 593 Yeas 83 Nays 21 Excused 0 Not Voting 3,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-05-13T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +PASSED ROLL CALL # 126 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Judiciary,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +received on 11/30/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 432 Yeas 100 Nays 8 Excused 0 Not Voting 2,2021-08-17T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +received on 05/19/2022,2022-05-19T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 129 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 194 Yeas 63 Nays 44 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 328 Yeas 91 Nays 14 Excused 0 Not Voting 5,2022-06-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 188 Yeas 59 Nays 48 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +postponed for the day,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 284 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 567 Yeas 97 Nays 3 Excused 0 Not Voting 7,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-06-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed Roll Call # 380 Yeas 73 Nays 33 Excused 0 Not Voting 3,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 29 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2022-02-15T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 239 Yeas 66 Nays 43 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +title amended,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +amended,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 622 Yeas 102 Nays 0 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +amended,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 165 Yeas 87 Nays 21 Excused 0 Not Voting 2,2021-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +title amended,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2021-02-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 367 Yeas 58 Nays 52 Excused 0 Not Voting 0,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 06/15/2022,2022-06-16T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 623 Yeas 102 Nays 0 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +placed on second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 11/02/2021,2021-11-02T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 315 Yeas 105 Nays 0 Excused 0 Not Voting 5,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 612 Yeas 98 Nays 4 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +title amended,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-05T04:00:00+00:00,['reading-3'],MI,2021-2022 +title amended,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 199 Yeas 94 Nays 13 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +received on 05/04/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 562 Yeas 91 Nays 9 Excused 0 Not Voting 7,2021-12-01T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-10-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 05/04/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 186 Yeas 89 Nays 18 Excused 0 Not Voting 3,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +received on 12/09/2021,2021-12-09T05:00:00+00:00,['introduction'],MI,2021-2022 +passed; given immediate effect Roll Call # 628 Yeas 102 Nays 0 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-02-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Insurance,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 594 Yeas 83 Nays 21 Excused 0 Not Voting 3,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Energy,2021-10-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-03-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a third time,2022-06-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-01-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2021-06-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-10T04:00:00+00:00,['reading-1'],MI,2021-2022 +reported with recommendation without amendment,2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 10/07/2021,2021-10-07T04:00:00+00:00,['introduction'],MI,2021-2022 +postponed temporarily,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 146 YEAS 20 NAYS 15 EXCUSED 3 NOT VOTING 0,2022-05-03T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +received on 12/07/2021,2021-12-07T05:00:00+00:00,['introduction'],MI,2021-2022 +title amended,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED ROLL CALL # 176 YEAS 22 NAYS 13 EXCUSED 3 NOT VOTING 0,2022-05-03T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 189 Yeas 56 Nays 47 Excused 0 Not Voting 3,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 05/26/2022,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 380 Yeas 88 Nays 21 Excused 0 Not Voting 1,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 10 Yeas 74 Nays 28 Excused 0 Not Voting 4,2022-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 187 Yeas 64 Nays 39 Excused 0 Not Voting 3,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +received on 06/30/2022,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 423 Yeas 107 Nays 1 Excused 0 Not Voting 2,2021-07-21T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 190 Yeas 68 Nays 35 Excused 0 Not Voting 3,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +received on 05/03/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Judiciary, with substitute (H-1)",2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 05/04/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +received on 05/03/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +referred to second reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2022-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 12 Yeas 102 Nays 0 Excused 0 Not Voting 4,2022-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 435 Yeas 104 Nays 4 Excused 0 Not Voting 2,2021-08-17T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 619 Yeas 85 Nays 17 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 301 Yeas 104 Nays 0 Excused 0 Not Voting 6,2022-06-14T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 129 Yeas 89 Nays 15 Excused 0 Not Voting 6,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 153 Yeas 101 Nays 2 Excused 0 Not Voting 3,2022-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-5) adopted,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 586 Yeas 58 Nays 46 Excused 0 Not Voting 3,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 170 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2022-02-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2022-02-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-06-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 65 Yeas 74 Nays 27 Excused 0 Not Voting 5,2022-02-17T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 397 Yeas 98 Nays 10 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 614 Yeas 102 Nays 0 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-09-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-10-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed by 3/4 vote; given immediate effect Roll Call # 308 Yeas 96 Nays 9 Excused 0 Not Voting 5,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 191 Yeas 59 Nays 48 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 463 Yeas 65 Nays 32 Excused 0 Not Voting 12,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +title amended,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 212 Yeas 100 Nays 4 Excused 0 Not Voting 5,2022-05-10T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Transportation,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Education,2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-09-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 379 Yeas 72 Nays 37 Excused 0 Not Voting 1,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 435 Yeas 83 Nays 23 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 09/14/2021,2021-09-14T04:00:00+00:00,['introduction'],MI,2021-2022 +received on 06/17/2021,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 434 Yeas 104 Nays 4 Excused 0 Not Voting 2,2021-08-17T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-02-23T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 12/02/2021,2021-12-02T05:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +received on 02/10/2021,2021-02-10T05:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-01-27T05:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Commerce and Tourism,2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 58 YEAS 22 NAYS 15 EXCUSED 1 NOT VOTING 0,2022-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +title amended,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 204 Yeas 68 Nays 35 Excused 0 Not Voting 3,2022-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Transportation,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +received on 05/12/2021,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2022-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +per Rule 41 referred to Committee on Energy,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-06-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-07T05:00:00+00:00,['reading-1'],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 05/12/2021,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2021-10-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-16T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-06-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Transportation,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-04-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +reported with recommendation without amendment,2021-02-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Health Policy,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 06/17/2021,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-01-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to second reading,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-01-26T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 430 Yeas 61 Nays 45 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +title amended,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Transportation,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 05/04/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-09-14T04:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +title amended,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-04-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 203 Yeas 65 Nays 38 Excused 0 Not Voting 3,2022-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 434 Yeas 84 Nays 22 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 431 Yeas 99 Nays 7 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +received on 05/03/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +reported with recommendation without amendment,2021-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +title amended,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-06-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-10-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-02-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2021-10-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 295 Yeas 104 Nays 6 Excused 0 Not Voting 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-03-02T05:00:00+00:00,['reading-2'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +title amended,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-02-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a second time,2021-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 02/15/2022,2022-02-15T05:00:00+00:00,['introduction'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-12-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 394 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 197 Yeas 57 Nays 50 Excused 0 Not Voting 3,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +amended,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-10-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +transmitted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +title amended,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on second reading,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-05-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +received on 05/13/2021,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +reported with recommendation without amendment,2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a second time,2021-05-13T04:00:00+00:00,['reading-2'],MI,2021-2022 +transmitted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +received on 05/12/2021,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +reported with recommendation without amendment,2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-03-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +title amended,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED ROLL CALL # 183 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-05-13T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 332 Yeas 101 Nays 3 Excused 0 Not Voting 6,2022-06-21T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-04-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 395 Yeas 104 Nays 4 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Elections and Ethics,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +title amended,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 2 Yeas 75 Nays 26 Excused 0 Not Voting 5,2022-01-25T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 436 Yeas 80 Nays 28 Excused 0 Not Voting 2,2021-08-17T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-02T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a first time,2021-02-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-5),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +title amended,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 498 Yeas 101 Nays 3 Excused 0 Not Voting 5,2021-10-27T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +vote reconsidered,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +received on 05/13/2021,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +referred to Committee on Judiciary,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-05-11T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 03/03/2022,2022-03-03T05:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DEFEATED ROLL CALL # 495 YEAS 14 NAYS 22 EXCUSED 1 NOT VOTING 1,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-09-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 393 Yeas 108 Nays 0 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-01-26T05:00:00+00:00,['committee-passage'],MI,2021-2022 +received on 03/25/2021,2021-03-25T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 396 Yeas 105 Nays 3 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed by 3/4 vote; given immediate effect Roll Call # 293 Yeas 106 Nays 4 Excused 0 Not Voting 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-09-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed Roll Call # 428 Yeas 87 Nays 18 Excused 0 Not Voting 4,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 202 Yeas 75 Nays 28 Excused 0 Not Voting 3,2022-05-05T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +title amended,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +title amended,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED ROLL CALL # 170 YEAS 22 NAYS 13 EXCUSED 3 NOT VOTING 0,2022-05-03T04:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-05-12T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +received on 05/04/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +read a second time,2021-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +title amended,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Education,2021-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 355 Yeas 67 Nays 39 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-16T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 464 Yeas 89 Nays 14 Excused 0 Not Voting 6,2021-10-06T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-09-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +received on 05/03/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2021-09-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +passed by 3/4 vote; given immediate effect Roll Call # 296 Yeas 104 Nays 6 Excused 0 Not Voting 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +referred to second reading,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2021-05-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +reported with recommendation without amendment,2022-05-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 396 Yeas 79 Nays 29 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-10-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-11-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED ROLL CALL # 136 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-19T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +title amended,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +Rep. Helena Scott removed as cosponsor,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +VOTE RECONSIDERED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-11-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +received on 05/04/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-02T05:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +title amended,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 137 Yeas 85 Nays 19 Excused 0 Not Voting 6,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +passed by 3/4 vote; given immediate effect Roll Call # 394 Yeas 102 Nays 6 Excused 0 Not Voting 1,2022-09-12T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Government Operations,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +received on 05/04/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-14T05:00:00+00:00,['reading-1'],MI,2021-2022 +reported with recommendation without amendment,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-10-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +received on 05/13/2021,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 407 Yeas 104 Nays 5 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2022-01-26T05:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-02-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-11T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-12-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-02-04T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 05/04/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED ROLL CALL # 31 YEAS 20 NAYS 14 EXCUSED 1 NOT VOTING 1,2021-02-25T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-09-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed Roll Call # 502 Yeas 55 Nays 47 Excused 0 Not Voting 7,2021-10-27T04:00:00+00:00,['passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 253 Yeas 103 Nays 0 Excused 0 Not Voting 7,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 370 Yeas 56 Nays 54 Excused 0 Not Voting 0,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 05/04/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +received on 05/12/2021,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2022-09-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 05/13/2021,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-03-04T05:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-02-22T05:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 144 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +roll call Roll Call # 119 Yeas 49 Nays 54 Excused 0 Not Voting 3,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +Rep. Terry Sabo removed as cosponsor,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-12-14T05:00:00+00:00,['reading-1'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed by 3/4 vote; given immediate effect Roll Call # 294 Yeas 104 Nays 6 Excused 0 Not Voting 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +title amended,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-12-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +title amended,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2021-10-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-10-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 187 YEAS 20 NAYS 15 EXCUSED 3 NOT VOTING 0,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a first time,2022-05-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 356 Yeas 73 Nays 33 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 12/09/2021,2021-12-14T05:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 81 Yeas 71 Nays 33 Excused 0 Not Voting 2,2022-03-01T05:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2021-10-26T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to second reading,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 103 Yeas 74 Nays 27 Excused 0 Not Voting 5,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-06-24T04:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-07-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +read a second time,2021-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +motion to discharge committee approved,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 05/05/2022,2022-05-05T04:00:00+00:00,['introduction'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 433 Yeas 87 Nays 21 Excused 0 Not Voting 2,2021-08-17T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-02-24T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +title amended,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +vote reconsidered,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-09T05:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-11-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +title amended,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-04-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-06-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +referred to second reading,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2021-06-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 100 Yeas 63 Nays 39 Excused 0 Not Voting 4,2022-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 518 Yeas 55 Nays 0 Excused 0 Not Voting 54,2021-11-02T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-09-29T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 464 Yeas 58 Nays 21 Excused 0 Not Voting 30,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 269 Yeas 88 Nays 19 Excused 0 Not Voting 3,2022-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2022-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 477 YEAS 23 NAYS 14 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-02T04:00:00+00:00,['reading-1'],MI,2021-2022 +received on 11/10/2021,2021-11-10T05:00:00+00:00,['introduction'],MI,2021-2022 +title amended,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-12-14T05:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2022-09-20T04:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-04-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-04-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 06/23/2022,2022-06-28T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 208 Yeas 65 Nays 42 Excused 0 Not Voting 3,2021-05-13T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2022-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-04-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-08-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Government Operations,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a second time,2022-01-25T05:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +received on 11/29/2022,2022-11-30T05:00:00+00:00,['introduction'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 349 Yeas 105 Nays 4 Excused 0 Not Voting 1,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +title amended,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2021-11-10T05:00:00+00:00,['reading-1'],MI,2021-2022 +referred to second reading,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-05-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2021-10-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee approved,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-05-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-04-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-12-14T05:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-11-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +RULES SUSPENDED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-04-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON INSURANCE AND BANKING,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-04-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-02-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 295 Yeas 60 Nays 44 Excused 0 Not Voting 6,2022-06-14T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-05-10T04:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-05-06T04:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Education,2021-10-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-06-28T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a second time,2021-06-09T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +transmitted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2022-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +passed by 3/4 vote; given immediate effect Roll Call # 290 Yeas 107 Nays 3 Excused 0 Not Voting 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Agriculture,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 291 Yeas 108 Nays 2 Excused 0 Not Voting 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-04-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +reported with recommendation without amendment,2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +received on 05/12/2021,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 294 Yeas 61 Nays 43 Excused 0 Not Voting 6,2022-06-14T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Judiciary,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed Roll Call # 559 Yeas 104 Nays 1 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-03-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-08-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-09T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-09-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 381 Yeas 70 Nays 38 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +re-referred to Committee on Health Policy,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +amended,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-05-10T04:00:00+00:00,['reading-2'],MI,2021-2022 +passed; given immediate effect Roll Call # 171 Yeas 66 Nays 37 Excused 0 Not Voting 3,2022-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +read a first time,2022-03-03T05:00:00+00:00,['reading-1'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee approved,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Health Policy,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Financial Services,2021-09-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +referred to Committee on Rules and Competitiveness,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 145 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Natural Resources and Outdoor Recreation,2022-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-08-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +transmitted,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-07-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-22T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Education,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-02-23T05:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 352 Yeas 106 Nays 0 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +received on 06/30/2022,2022-06-30T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-04-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Local Government and Municipal Finance,2021-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +received on 05/14/2021,2021-05-18T04:00:00+00:00,['introduction'],MI,2021-2022 +read a second time,2022-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Tax Policy,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2021-10-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-02-09T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-04-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +"REFERRED TO COMMITTEE ON FAMILIES, SENIORS, AND VETERANS",2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"Reps. Regina Weiss, Cynthia Johnson, Rachel Hood removed as co-sponsors",2021-05-05T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +title amended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-04-29T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2021-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-02-15T05:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-02-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Education,2021-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2021-08-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-2),2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-11-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-09-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Transportation,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-10-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-17T04:00:00+00:00,['reading-2'],MI,2021-2022 +passed; given immediate effect Roll Call # 365 Yeas 84 Nays 26 Excused 0 Not Voting 0,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-02T05:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-02-22T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 289 Yeas 108 Nays 2 Excused 0 Not Voting 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-09-14T04:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Transportation,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2021-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on second reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-05-26T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +passed; given immediate effect Roll Call # 13 Yeas 74 Nays 28 Excused 0 Not Voting 4,2022-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 176 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-05-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-15T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 173 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-12T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +RULES SUSPENDED,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +received on 06/17/2021,2021-06-17T04:00:00+00:00,['introduction'],MI,2021-2022 +read a first time,2022-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 440 Yeas 81 Nays 23 Excused 0 Not Voting 6,2021-09-21T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +received on 07/15/2021,2021-07-21T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-25T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to second reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Judiciary,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-01-27T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +received on 05/04/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +transmitted,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +vote reconsidered,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Education,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-11-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2022-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +RULES SUSPENDED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-02-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-04T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation with substitute (H-1),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-02-23T05:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-04-05T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +title amended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Transportation,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-09-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Elections and Ethics,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +title amended,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-04-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +transmitted,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 235 Yeas 97 Nays 11 Excused 0 Not Voting 2,2021-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 598 Yeas 102 Nays 0 Excused 0 Not Voting 5,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +referred to Committee on Education,2021-10-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-04-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Education,2021-10-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 05/12/2021,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +defeated Roll Call # 120 Yeas 50 Nays 53 Excused 0 Not Voting 3,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON FINANCE,2021-03-04T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2022-03-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-07-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Judiciary,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +rule suspended,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-02-15T05:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE ON ENVIRONMENTAL QUALITY,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +VOTE RECONSIDERED,2021-02-25T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Health Policy,2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +vote reconsidered,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +substitute (H-1) adopted,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2021-09-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-05-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2022-05-04T04:00:00+00:00,['reading-1'],MI,2021-2022 +passed; given immediate effect Roll Call # 503 Yeas 55 Nays 48 Excused 0 Not Voting 6,2021-10-27T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON TRANSPORTATION AND INFRASTRUCTURE,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 32 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-02-25T05:00:00+00:00,['passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2022-02-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-02-25T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +substitute (H-4) adopted,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-2),2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 429 Yeas 87 Nays 19 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +motion to discharge committee approved,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on second reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +received on 05/13/2021,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +referred to second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 286 YEAS 30 NAYS 7 EXCUSED 1 NOT VOTING 0,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-03-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-02-16T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-5),2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +substitute (H-2) adopted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ENERGY AND TECHNOLOGY,2021-11-02T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +received on 05/12/2021,2021-05-12T04:00:00+00:00,['introduction'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-12-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-11-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +transmitted,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +transmitted,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-05-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +received on 05/04/2022,2022-05-04T04:00:00+00:00,['introduction'],MI,2021-2022 +placed on third reading,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +substitute (H-1) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-19T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 127 Yeas 85 Nays 17 Excused 0 Not Voting 4,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-07-21T04:00:00+00:00,['reading-1'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-08-31T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-07-01T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +placed on second reading,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-06-17T04:00:00+00:00,['reading-1'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +received on 05/13/2021,2021-05-13T04:00:00+00:00,['introduction'],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON AGRICULTURE,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-08-31T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH AMENDMENT(S),2021-06-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2022-06-30T04:00:00+00:00,['reading-1'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON OVERSIGHT,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-10T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-12-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-12-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on second reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +title amended,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-07T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-05-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON AGRICULTURE,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2022-02-23T05:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-04-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-02-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-12-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-04-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +reported with recommendation without amendment,2021-03-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH AMENDMENT(S),2021-10-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee approved,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +rule suspended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-07-01T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-09T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2021-07-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-10-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-20T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-04-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +read a first time,2022-11-30T05:00:00+00:00,['reading-1'],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +transmitted,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-07-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2022-06-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-03-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-11-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-04-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +motion to discharge committee approved,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +transmitted,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with amendment(s),2021-03-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 320 Yeas 82 Nays 23 Excused 0 Not Voting 5,2022-06-21T04:00:00+00:00,['passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +substitute (H-2) adopted,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-4),2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Financial Services,2022-06-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-21T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +substitute (H-3) adopted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +reported with recommendation without amendment,2022-06-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-05-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-18T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +motion to discharge committee approved,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-03-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +Rep. Mari Manoogian removed as cosponsor,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Workforce, Trades, and Talent",2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Tax Policy,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-04-29T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-08T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a third time,2021-10-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +POSTPONED TEMPORARILY,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-04-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-05-26T04:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2021-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-12-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-3),2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-10-05T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-3),2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-01-25T05:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2022-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-09-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-11-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-06-09T04:00:00+00:00,['reading-2'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-09T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-12-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-15T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-07-01T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2021-05-12T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 350 Yeas 60 Nays 49 Excused 0 Not Voting 1,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +reported with recommendation without amendment,2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-11-30T05:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2021-12-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-01-20T05:00:00+00:00,[],MI,2021-2022 +Rep. Samantha Steckloff removed as cosponsor,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-02-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +transmitted,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2022-04-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-02-23T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-08-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-11-04T04:00:00+00:00,['reading-2'],MI,2021-2022 +rule suspended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-09-29T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-11-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-4) CONCURRED IN,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-06-22T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-07-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DEFEATED ROLL CALL # 514 YEAS 15 NAYS 19 EXCUSED 3 NOT VOTING 1,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on immediate passage,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-02-10T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +Rep. Lori Stone removed as sponsor,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-11-30T05:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-03T05:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-1) adopted,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-11-02T04:00:00+00:00,['reading-2'],MI,2021-2022 +Rep. Sarah Anthony removed as cosponsor,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-01-20T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-04-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on immediate passage,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-03T05:00:00+00:00,['reading-3'],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +not adopted Roll Call # 451 Yeas 65 Nays 38 Excused 0 Not Voting 6,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-20T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-04-20T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON NATURAL RESOURCES,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 601 Yeas 85 Nays 17 Excused 0 Not Voting 5,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-08-31T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 211 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +rule suspended,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation without amendment,2021-12-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-04-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 175 Yeas 62 Nays 37 Excused 0 Not Voting 7,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 102 Yeas 58 Nays 43 Excused 0 Not Voting 5,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-06-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-2) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 588 Yeas 75 Nays 29 Excused 0 Not Voting 3,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2022-02-24T05:00:00+00:00,['reading-3'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-02-24T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-12-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on immediate passage,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON NATURAL RESOURCES,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 238 Yeas 91 Nays 18 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +transmitted,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on immediate passage,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-01-27T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +substitute (H-1) adopted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-10T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-02-17T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +substitute (H-4) adopted,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +received on 05/26/2022,2022-05-26T04:00:00+00:00,['introduction'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 587 Yeas 75 Nays 29 Excused 0 Not Voting 3,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +substitute (H-3) adopted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON REGULATORY REFORM,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +received on 02/25/2021,2021-03-02T05:00:00+00:00,['introduction'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-02-25T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-07-01T04:00:00+00:00,['committee-passage'],MI,2021-2022 +substitute (H-3) adopted,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on immediate passage,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2021-07-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +substitute (H-2) adopted,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-12-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-10-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +motion to discharge committee approved,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +RULES SUSPENDED,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2021-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2022-05-05T04:00:00+00:00,['reading-1'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-24T05:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-02-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON AGRICULTURE,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2022-05-04T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +transmitted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +read a second time,2022-11-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) CONCURRED IN,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-09-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 334 Yeas 102 Nays 3 Excused 0 Not Voting 5,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON OVERSIGHT,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH AMENDMENT(S),2021-06-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-03-09T05:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE ON JUDICIARY AND PUBLIC SAFETY,2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"Reps. Sara Cambensy, Samantha Steckloff, Brad Paquette removed as co-sponsors",2021-10-27T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +substitute (H-1) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-5),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +"referred to Committee on Military, Veterans and Homeland Security",2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-30T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-01-12T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-16T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2021-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2021-05-13T04:00:00+00:00,['reading-1'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-01-27T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-03-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +substitute (H-2) adopted,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2021-05-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE ON ELECTIONS,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-04-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-5) adopted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-4),2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON APPROPRIATIONS,2022-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-08-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-02-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-05-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2021-12-09T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +motion to discharge committee approved,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 69 Yeas 104 Nays 0 Excused 0 Not Voting 2,2022-02-23T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-02-16T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-19T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-09-22T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-04-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-09-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON LOCAL GOVERNMENT,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-03-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-10-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-04-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +substitute (H-1) adopted,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-06-23T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2022-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2021-06-10T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON OVERSIGHT,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-04-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-07-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-02-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to second reading,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2021-12-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 266 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +substitute (H-1) adopted,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to second reading,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to Committee on Regulatory Reform,2022-11-30T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-11-03T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2021-05-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-01-12T05:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-07-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on immediate passage,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +AMENDMENT(S) CONCURRED IN,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +substitute (H-1) adopted,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-12-06T05:00:00+00:00,['reading-2'],MI,2021-2022 +motion to discharge committee approved,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-04-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-09-22T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-04-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 265 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +placed on second reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a second time,2021-04-27T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-12-14T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH AMENDMENT(S),2021-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-04-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-12-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-4),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +returned to Senate,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-03T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-04-12T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-03-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-03-03T05:00:00+00:00,['referral-committee'],MI,2021-2022 +substitute (H-1) adopted,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-03-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-04-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-02-16T05:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2021-06-08T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2021-07-15T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 323 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 118 Yeas 103 Nays 0 Excused 0 Not Voting 3,2022-03-15T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-12-06T05:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-01-26T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED ROLL CALL # 403 YEAS 34 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-10-26T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 171 Yeas 107 Nays 0 Excused 0 Not Voting 3,2021-05-06T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-12-06T05:00:00+00:00,['reading-2'],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-12-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-04-13T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-5),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-06T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-17T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-07-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +AMENDMENT(S) CONCURRED IN,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on immediate passage,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-04-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-11-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-16T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 472 Yeas 105 Nays 2 Excused 0 Not Voting 2,2021-10-14T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 459 YEAS 34 NAYS 0 EXCUSED 4 NOT VOTING 0,2021-12-02T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-07-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 600 Yeas 98 Nays 4 Excused 0 Not Voting 5,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +returned to Senate,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-02-16T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-08T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 169 Yeas 76 Nays 27 Excused 0 Not Voting 3,2022-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-25T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH AMENDMENT(S),2021-10-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-12-06T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a third time,2021-09-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on second reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-10T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE ON HEALTH POLICY AND HUMAN SERVICES,2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 232 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-01-27T05:00:00+00:00,['reading-3'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-02T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2022-12-07T05:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +substitute (H-2) adopted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-12-08T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON AGRICULTURE,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 23 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-02-15T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2021-10-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 93 Yeas 97 Nays 8 Excused 0 Not Voting 1,2022-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-02-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-01-18T05:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 174 Yeas 61 Nays 38 Excused 0 Not Voting 7,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-12-07T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4),2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REASSIGNED TO COMMITTEE ON EDUCATION AND CAREER READINESS,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-14T05:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-10T04:00:00+00:00,['reading-3'],MI,2021-2022 +"Reps. Laurie Pohutsky, Mari Manoogian, Kelly Breen removed as co-sponsors",2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 436 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-10-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-09-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-09-22T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-06-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-03-03T05:00:00+00:00,['reading-2'],MI,2021-2022 +passed; given immediate effect Roll Call # 92 Yeas 96 Nays 9 Excused 0 Not Voting 1,2022-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +vote reconsidered,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-09-14T04:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2021-12-01T05:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +inserted full title,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-04-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2022-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-06T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2022-02-08T05:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-09-28T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-12T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-02-11T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 521 Yeas 103 Nays 0 Excused 0 Not Voting 6,2021-11-03T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 445 Yeas 104 Nays 0 Excused 0 Not Voting 6,2021-09-29T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-10-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 324 Yeas 108 Nays 1 Excused 0 Not Voting 1,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +referred to second reading,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-04-28T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 174 Yeas 106 Nays 0 Excused 0 Not Voting 4,2021-05-06T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 173 Yeas 107 Nays 0 Excused 0 Not Voting 3,2021-05-06T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 342 Yeas 110 Nays 0 Excused 0 Not Voting 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 77 Yeas 81 Nays 20 Excused 0 Not Voting 5,2022-02-24T05:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 374 Yeas 90 Nays 17 Excused 0 Not Voting 3,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-12-06T05:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-12-07T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 56 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-03-18T04:00:00+00:00,['passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 463 Yeas 55 Nays 48 Excused 0 Not Voting 6,2021-10-06T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON ECONOMIC AND SMALL BUSINESS DEVELOPMENT,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-10T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2022-03-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +substitute (H-1) adopted,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +read a first time,2021-03-02T05:00:00+00:00,['reading-1'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-5) CONCURRED IN,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-25T04:00:00+00:00,['referral-committee'],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +transmitted,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-01-18T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a first time,2022-06-01T04:00:00+00:00,['reading-1'],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH AMENDMENT(S),2021-06-10T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2021-09-29T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-03-03T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2021-03-02T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED ROLL CALL # 348 YEAS 27 NAYS 9 EXCUSED 0 NOT VOTING 0,2021-09-01T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-11-29T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 251 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-5) adopted,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +substitute (H-1) adopted,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-04T04:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-16T05:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 390 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-10-19T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-01T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 78 Yeas 80 Nays 21 Excused 0 Not Voting 5,2022-02-24T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-03-16T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-3),2022-02-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 349 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-09-01T04:00:00+00:00,['passage'],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 479 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-03-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-10-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 233 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-02-16T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +AMENDMENT(S) CONCURRED IN,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-06T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-01-26T05:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-08T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +returned to Senate,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-11-30T05:00:00+00:00,['reading-2'],MI,2021-2022 +read a third time,2021-12-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-02T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +substitute (H-3) adopted,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2021-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +transmitted,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-10-05T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-24T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on second reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-04-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +referred to Committee on Appropriations,2022-05-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-07-01T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-05-12T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a second time,2021-07-21T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2022-10-13T04:00:00+00:00,['referral-committee'],MI,2021-2022 +reported with recommendation with substitute (H-1),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 602 Yeas 102 Nays 0 Excused 0 Not Voting 5,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-10T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-02-16T05:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-05-20T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-17T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-13T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-12-07T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON REGULATORY REFORM,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-05-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 267 Yeas 93 Nays 14 Excused 0 Not Voting 3,2022-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 26 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +placed on second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 2 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-01-18T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH AMENDMENT(S),2022-06-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 306 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2021-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +INSERTED FULL TITLE,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-09-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-5),2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-09T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +returned to Senate,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2021-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON REGULATORY REFORM,2021-10-27T04:00:00+00:00,['referral-committee'],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 315 YEAS 23 NAYS 14 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +rule suspended,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 242 YEAS 35 NAYS 0 EXCUSED 2 NOT VOTING 1,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-09-01T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 321 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 247 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 605 Yeas 91 Nays 11 Excused 0 Not Voting 5,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-09-01T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-07-01T04:00:00+00:00,['reading-3'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-11-10T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-05-27T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 319 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 249 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-10T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 455 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-12-01T05:00:00+00:00,['passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-09-20T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 17 Yeas 86 Nays 16 Excused 0 Not Voting 4,2022-01-26T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 308 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 443 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 402 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 473 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 309 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ORDERED ENROLLED,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-12-08T05:00:00+00:00,[],MI,2021-2022 +referred to second reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 410 Yeas 81 Nays 28 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 89 Yeas 95 Nays 9 Excused 0 Not Voting 2,2022-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-4) adopted and amended,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 93 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-12-07T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2021-10-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2021-03-02T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 277 YEAS 32 NAYS 3 EXCUSED 1 NOT VOTING 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 332 YEAS 34 NAYS 1 EXCUSED 3 NOT VOTING 0,2022-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted and amended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-02-08T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 430 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 134 Yeas 103 Nays 2 Excused 0 Not Voting 1,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-10T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-09-29T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on immediate passage,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +vote reconsidered,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 606 Yeas 97 Nays 5 Excused 0 Not Voting 5,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +RULES SUSPENDED,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 172 Yeas 107 Nays 0 Excused 0 Not Voting 3,2021-05-06T04:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Tax Policy,2022-06-01T04:00:00+00:00,['referral-committee'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 105 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-15T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 234 YEAS 21 NAYS 15 EXCUSED 0 NOT VOTING 0,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +RULES SUSPENDED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 182 Yeas 103 Nays 0 Excused 0 Not Voting 3,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 334 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-02-24T05:00:00+00:00,['committee-passage'],MI,2021-2022 +RULES SUSPENDED,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-06-24T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-15T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-03-01T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED ROLL CALL # 391 YEAS 25 NAYS 11 EXCUSED 0 NOT VOTING 0,2021-10-19T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2021-09-28T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +RULES SUSPENDED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-06-15T04:00:00+00:00,['reading-2'],MI,2021-2022 +passed; given immediate effect Roll Call # 300 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-02-16T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-11-10T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +inserted full title,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-26T04:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 398 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-10-21T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-09-28T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a third time,2022-12-07T05:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-03-08T05:00:00+00:00,['referral-committee'],MI,2021-2022 +inserted full title,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 310 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 437 Yeas 101 Nays 3 Excused 0 Not Voting 6,2021-09-14T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-04-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 386 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-10-14T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) CONCURRED IN,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 75 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 307 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-03-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-17T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 243 YEAS 35 NAYS 0 EXCUSED 2 NOT VOTING 1,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-03-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +SUBSTITUTE (S-5) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 486 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 487 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED ROLL CALL # 272 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 89 Yeas 57 Nays 49 Excused 0 Not Voting 4,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-09T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-06-24T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 115 YEAS 32 NAYS 4 EXCUSED 0 NOT VOTING 2,2022-04-14T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-10-27T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 485 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-01-12T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2021-10-26T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +amended,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-12-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-15T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on immediate passage,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 276 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 404 YEAS 34 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-10-26T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 208 Yeas 95 Nays 9 Excused 0 Not Voting 5,2022-05-10T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 377 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON AGRICULTURE,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-06-24T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +read a second time,2022-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-29T04:00:00+00:00,['reading-3'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 103 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2021-12-14T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 399 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-10-21T04:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-06-24T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 106 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 104 YEAS 34 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-04-22T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-03-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Government Operations,2022-01-12T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 114 YEAS 33 NAYS 5 EXCUSED 0 NOT VOTING 0,2022-04-14T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 107 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-4) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 53 Yeas 97 Nays 8 Excused 0 Not Voting 1,2022-02-16T05:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +ORDERED ENROLLED,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-06-24T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 52 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 379 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 104 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-4) CONCURRED IN,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 341 Yeas 79 Nays 27 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 33 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-22T05:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 400 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-10-21T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-07-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 156 Yeas 61 Nays 49 Excused 0 Not Voting 0,2021-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2022-12-08T05:00:00+00:00,['reading-2'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a second time,2021-03-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 3 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-01-18T05:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH AMENDMENT(S),2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-16T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2022-06-08T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 305 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-03-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 19 Yeas 102 Nays 0 Excused 0 Not Voting 4,2022-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-09T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 239 YEAS 24 NAYS 13 EXCUSED 1 NOT VOTING 0,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 284 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 272 YEAS 35 NAYS 2 EXCUSED 1 NOT VOTING 0,2022-05-24T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-11-02T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +inserted full title,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-1),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-02-17T05:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on immediate passage,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-02-17T05:00:00+00:00,['reading-2'],MI,2021-2022 +inserted full title,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-07-01T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 346 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 488 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 494 Yeas 87 Nays 10 Excused 0 Not Voting 12,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-09-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 376 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-01-27T05:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 449 Yeas 98 Nays 6 Excused 0 Not Voting 5,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 34 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-22T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-09-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-02-15T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 464 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-09-20T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-12-14T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 610 Yeas 103 Nays 0 Excused 0 Not Voting 4,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 325 Yeas 82 Nays 27 Excused 0 Not Voting 1,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +inserted full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 345 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-09-01T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 256 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-19T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 370 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-06-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-05-12T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-12-07T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 49 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 324 Yeas 103 Nays 2 Excused 0 Not Voting 5,2022-06-21T04:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 480 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-24T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 48 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-04-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 438 Yeas 101 Nays 3 Excused 0 Not Voting 6,2021-09-14T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +postponed for the day,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-05-25T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +postponed temporarily,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-05-18T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF GENERAL ORDERS,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on third reading,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 565 Yeas 71 Nays 29 Excused 0 Not Voting 7,2021-12-01T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2022-06-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED ROLL CALL # 92 YEAS 21 NAYS 17 EXCUSED 0 NOT VOTING 0,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +placed on second reading,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 439 Yeas 101 Nays 3 Excused 0 Not Voting 6,2021-09-14T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 331 YEAS 34 NAYS 1 EXCUSED 3 NOT VOTING 0,2022-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-23T04:00:00+00:00,['committee-passage'],MI,2021-2022 +REFERRED TO COMMITTEE ON GOVERNMENT OPERATIONS,2021-05-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +title amended,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 238 YEAS 24 NAYS 13 EXCUSED 1 NOT VOTING 0,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 493 Yeas 88 Nays 9 Excused 0 Not Voting 12,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 358 Yeas 67 Nays 39 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 296 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,[],MI,2021-2022 +amended,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 210 Yeas 97 Nays 7 Excused 0 Not Voting 5,2022-05-10T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 8 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-02-11T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-3) adopted,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +"Reps. Kara Hope, Padma Kuppa, Matt Koleszar removed as co-sponsors",2021-06-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-11-03T04:00:00+00:00,['reading-3'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 497 Yeas 95 Nays 9 Excused 0 Not Voting 5,2021-10-27T04:00:00+00:00,['passage'],MI,2021-2022 +motion to discharge committee approved,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 615 Yeas 102 Nays 0 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2021-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-06T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 209 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITH SUBSTITUTE (S-2),2022-05-18T04:00:00+00:00,['committee-passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-12-07T05:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 368 Yeas 94 Nays 12 Excused 0 Not Voting 4,2022-07-01T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) ADOPTED,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +returned to Senate,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 194 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 343 Yeas 109 Nays 1 Excused 0 Not Voting 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +inserted full title,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-06T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 233 Yeas 58 Nays 48 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +inserted full title,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +inserted full title,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on immediate passage,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on second reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/14/2021 09:34 AM,2021-12-14T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +placed on third reading,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-03-23T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +passed; given immediate effect Roll Call # 595 Yeas 78 Nays 26 Excused 0 Not Voting 3,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 200 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 481 Yeas 87 Nays 16 Excused 0 Not Voting 6,2021-10-19T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 202 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 20 Yeas 102 Nays 0 Excused 0 Not Voting 4,2022-01-27T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 160 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-04-29T04:00:00+00:00,['passage'],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-09-01T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 32 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2022-02-22T05:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2),2021-12-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-02-15T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 5 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-01-19T05:00:00+00:00,['passage'],MI,2021-2022 +inserted full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 88 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +"Reps.Rachel Hood, Jim Ellison, Tenisha Yancey removed as co-sponsors",2021-06-17T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 543 Yeas 104 Nays 1 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 361 Yeas 106 Nays 0 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 19 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2022-02-09T05:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) ADOPTED,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 369 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 281 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +substitute (H-3) adopted,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 196 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 326 YEAS 21 NAYS 16 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED ROLL CALL # 325 YEAS 21 NAYS 16 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-03-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 220 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +returned to Senate,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-02-24T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2022-12-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +inserted full title,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 03/17/2021 12:58 PM,2022-03-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +read a third time,2022-12-07T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-02T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-09-20T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 525 Yeas 91 Nays 12 Excused 0 Not Voting 6,2021-11-03T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +passed by 3/4 vote; given immediate effect Roll Call # 249 Yeas 104 Nays 1 Excused 0 Not Voting 5,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-04-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-10-07T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 434 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-04-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 330 Yeas 100 Nays 4 Excused 0 Not Voting 6,2022-06-21T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 335 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +amended,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-03-01T05:00:00+00:00,['reading-2'],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 315 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-10-05T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +COMMITTEE RECOMMENDED IMMEDIATE EFFECT,2022-09-22T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-02-01T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-12-06T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 197 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 192 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-12-07T05:00:00+00:00,['reading-3'],MI,2021-2022 +INSERTED FULL TITLE,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2021-09-09T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-11-10T05:00:00+00:00,['committee-passage'],MI,2021-2022 +placed on third reading,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +INSERTED FULL TITLE,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 98 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-22T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 6 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-01-19T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PRESENTED TO GOVERNOR 12/14/2021 09:32 AM,2021-12-14T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +RULES SUSPENDED,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-06-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 374 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 40 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-23T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 372 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-12-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 375 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +INSERTED FULL TITLE,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 338 YEAS 34 NAYS 1 EXCUSED 3 NOT VOTING 0,2022-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-07-01T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-14T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2021-09-29T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2021-03-02T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 291 YEAS 29 NAYS 6 EXCUSED 1 NOT VOTING 0,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +title amended,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 193 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2021-09-09T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED ROLL CALL # 385 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-10-14T04:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) CONCURRED IN,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 314 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 204 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 72 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-26T04:00:00+00:00,['referral-committee'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-05-24T04:00:00+00:00,['referral-committee'],MI,2021-2022 +passed; given immediate effect Roll Call # 232 Yeas 58 Nays 48 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +inserted full title,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 377 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-10-07T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 328 YEAS 21 NAYS 16 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +IMMEDIATE EFFECT POSTPONED,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 439 YEAS 24 NAYS 11 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 22 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH AMENDMENT(S),2021-06-10T04:00:00+00:00,[],MI,2021-2022 +read a second time,2021-05-19T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on immediate passage,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 205 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED FAVORABLY WITHOUT AMENDMENT,2022-10-11T04:00:00+00:00,['committee-passage'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-10-05T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 221 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-03-02T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-12-06T05:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +passed Roll Call # 268 Yeas 93 Nays 14 Excused 0 Not Voting 3,2022-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-04-20T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 353 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-09-29T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-06-24T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 474 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-12-09T05:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 209 Yeas 91 Nays 13 Excused 0 Not Voting 5,2022-05-10T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-03-09T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 92 YEAS 34 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-04-21T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +PASSED BY 3/4 VOTE; GIVEN IMMEDIATE EFFECT ROLL CALL # 373 YEAS 30 NAYS 8 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +inserted full title,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 366 Yeas 95 Nays 11 Excused 0 Not Voting 4,2022-07-01T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-12-07T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 416 Yeas 107 Nays 1 Excused 0 Not Voting 2,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 317 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-03-24T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 451 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-11-30T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 620 Yeas 100 Nays 2 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 94 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON ELECTIONS,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-12-14T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 234 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 198 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-06-24T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +FULL TITLE AGREED TO,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-07-01T04:00:00+00:00,['reading-3'],MI,2021-2022 +returned to Senate,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 316 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-05-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 273 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2022-06-30T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with full title,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +returned to Senate,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-11-02T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-05-18T04:00:00+00:00,['referral-committee'],MI,2021-2022 +INSERTED FULL TITLE,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-16T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 521 YEAS 27 NAYS 5 EXCUSED 6 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-12-06T05:00:00+00:00,['referral-committee'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON ELECTIONS,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 217 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-03-09T05:00:00+00:00,['committee-passage'],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 420 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-11-02T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 488 Yeas 93 Nays 7 Excused 0 Not Voting 9,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-03-02T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-01-26T05:00:00+00:00,['referral-committee'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-1),2022-12-07T05:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on third reading,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 322 YEAS 21 NAYS 16 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 89 YEAS 22 NAYS 16 EXCUSED 0 NOT VOTING 0,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +read a second time,2021-06-30T04:00:00+00:00,['reading-2'],MI,2021-2022 +placed on immediate passage,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-06-24T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +VOTE RECONSIDERED,2022-04-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-06-23T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-10-05T04:00:00+00:00,['referral-committee'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 7 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-01-20T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 248 YEAS 25 NAYS 11 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +inserted full title,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 216 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-06-03T04:00:00+00:00,['committee-passage'],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +passed; given immediate effect Roll Call # 287 Yeas 78 Nays 28 Excused 0 Not Voting 4,2022-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 498 Yeas 75 Nays 21 Excused 0 Not Voting 13,2022-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 322 Yeas 87 Nays 22 Excused 0 Not Voting 1,2021-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-09-30T04:00:00+00:00,['referral-committee'],MI,2021-2022 +INSERTED FULL TITLE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-04-27T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 545 YEAS 31 NAYS 0 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 42 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-23T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-12-07T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-09-20T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-18T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 77 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-12-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +RULES SUSPENDED,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-5),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 80 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with full title,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 129 Yeas 100 Nays 3 Excused 0 Not Voting 3,2022-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 337 YEAS 34 NAYS 1 EXCUSED 3 NOT VOTING 0,2022-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 312 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 63 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-08T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-09-20T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PRESENTED TO GOVERNOR 02/28/2022 01:33 PM,2022-03-01T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-04-14T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-03-22T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH AMENDMENT(S),2021-03-02T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 313 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-02-15T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 112 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-04-13T04:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-05-26T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4),2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 74 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 124 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-15T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-04-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-4),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-09-20T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-23T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 449 YEAS 24 NAYS 12 EXCUSED 1 NOT VOTING 1,2021-11-30T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 41 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-23T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-17T04:00:00+00:00,['reading-3'],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 293 YEAS 33 NAYS 2 EXCUSED 1 NOT VOTING 0,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 191 YEAS 22 NAYS 13 EXCUSED 1 NOT VOTING 0,2021-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +PASSED BY 3/4 VOTE; GIVEN IMMEDIATE EFFECT ROLL CALL # 309 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-06-24T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 311 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 305 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 282 YEAS 35 NAYS 2 EXCUSED 1 NOT VOTING 0,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 307 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +APPROVED BY GOVERNOR 03/10/2022 10:02 AM,2022-03-15T04:00:00+00:00,['executive-signature'],MI,2021-2022 +INSERTED FULL TITLE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-02-22T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 412 YEAS 28 NAYS 6 EXCUSED 2 NOT VOTING 0,2021-10-26T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 496 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-03-22T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-04-20T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 415 Yeas 94 Nays 15 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 536 YEAS 31 NAYS 0 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 333 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-07-15T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 414 Yeas 93 Nays 16 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 51 YEAS 35 NAYS 2 EXCUSED 1 NOT VOTING 0,2022-03-03T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted and amended,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 399 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +ORDERED ENROLLED,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 378 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-04-14T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with full title,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 155 Yeas 101 Nays 9 Excused 0 Not Voting 0,2021-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 617 Yeas 94 Nays 8 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 493 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 616 Yeas 94 Nays 8 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +inserted full title,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 441 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-09-30T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 452 YEAS 22 NAYS 14 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +TITLE AMENDED,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-12-07T05:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) ADOPTED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 334 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-07-15T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 4 YEAS 29 NAYS 9 EXCUSED 0 NOT VOTING 0,2022-01-18T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 485 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +ADOPTED BY 2/3 VOTE ROLL CALL # 205 YEAS 26 NAYS 6 EXCUSED 6 NOT VOTING 0,2022-05-10T04:00:00+00:00,['passage'],MI,2021-2022 +inserted full title,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 435 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2021-12-14T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 363 Yeas 101 Nays 5 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 371 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 116 YEAS 34 NAYS 4 EXCUSED 0 NOT VOTING 0,2022-04-14T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 201 YEAS 33 NAYS 1 EXCUSED 4 NOT VOTING 0,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-01-20T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 336 YEAS 34 NAYS 1 EXCUSED 3 NOT VOTING 0,2022-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 140 YEAS 33 NAYS 2 EXCUSED 3 NOT VOTING 0,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 491 Yeas 63 Nays 34 Excused 0 Not Voting 12,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1),2022-05-11T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 213 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 212 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 148 Yeas 62 Nays 40 Excused 0 Not Voting 4,2022-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1),2022-05-11T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1),2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-01T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 324 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 266 Yeas 69 Nays 38 Excused 0 Not Voting 3,2022-05-24T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 430 YEAS 30 NAYS 6 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 429 YEAS 30 NAYS 6 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 335 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-07-15T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with amendment(s) with full title,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 367 Yeas 98 Nays 8 Excused 0 Not Voting 4,2022-07-01T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 426 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-11-02T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 420 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 419 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 413 YEAS 32 NAYS 2 EXCUSED 2 NOT VOTING 0,2021-10-26T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 533 YEAS 31 NAYS 0 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 492 Yeas 79 Nays 17 Excused 0 Not Voting 13,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-12-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +placed on immediate passage,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-12-06T05:00:00+00:00,['reading-3'],MI,2021-2022 +INSERTED FULL TITLE,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 520 YEAS 28 NAYS 4 EXCUSED 6 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-3) DEFEATED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 529 YEAS 31 NAYS 0 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +FULL TITLE AGREED TO,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 207 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) DEFEATED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT POSTPONED,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 211 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 357 Yeas 96 Nays 10 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 208 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +inserted full title,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 389 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-1),2022-05-11T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-09-22T04:00:00+00:00,['referral-committee'],MI,2021-2022 +returned from Senate with substitute (S-1),2021-05-19T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +"Reps. Helena Scott, Kevin Coleman, Karen Whitsett removed as co-sponsors",2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 98 Yeas 101 Nays 0 Excused 0 Not Voting 5,2022-03-08T05:00:00+00:00,['passage'],MI,2021-2022 +FULL TITLE AGREED TO,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 421 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 138 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-04-27T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-4) ADOPTED,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 283 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +ORDERED ENROLLED,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1),2021-05-19T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-05-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 299 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2022-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 425 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 549 YEAS 23 NAYS 6 EXCUSED 9 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 349 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 534 YEAS 31 NAYS 0 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/16/2021 05:19 PM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +returned from Senate with substitute (S-1),2021-05-19T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 202 YEAS 33 NAYS 1 EXCUSED 4 NOT VOTING 0,2022-05-04T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +POSTPONED TEMPORARILY,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 419 YEAS 19 NAYS 16 EXCUSED 1 NOT VOTING 0,2021-11-02T04:00:00+00:00,['passage'],MI,2021-2022 +TITLE AMENDED,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2021-09-09T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 76 Yeas 78 Nays 23 Excused 0 Not Voting 5,2022-02-24T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-06-23T04:00:00+00:00,['reading-3'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 306 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 218 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +FULL TITLE AGREED TO,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 248 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-06-03T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 291 Yeas 102 Nays 2 Excused 0 Not Voting 6,2022-06-09T04:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 495 Yeas 93 Nays 4 Excused 0 Not Voting 12,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-12-06T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +substitute (H-3) adopted and amended,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +title amended,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-12-07T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 471 Yeas 71 Nays 37 Excused 0 Not Voting 1,2022-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-12-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 127 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +INSERTED FULL TITLE,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE WITH SUBSTITUTE (S-2),2022-06-07T04:00:00+00:00,['referral-committee'],MI,2021-2022 +VETOED BY GOVERNOR 03/18/2022,2022-03-22T04:00:00+00:00,['executive-veto'],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 100 YEAS 35 NAYS 2 EXCUSED 1 NOT VOTING 0,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 210 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-05-25T04:00:00+00:00,['passage'],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 424 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 497 Yeas 70 Nays 27 Excused 0 Not Voting 12,2022-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-03-22T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 496 YEAS 26 NAYS 10 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 320 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 125 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +IMMEDIATE EFFECT POSTPONED,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 210 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 308 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with full title,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 173 Yeas 99 Nays 0 Excused 0 Not Voting 7,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-12-06T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 231 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-05-17T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 206 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-12-06T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 491 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 483 YEAS 36 NAYS 0 EXCUSED 1 NOT VOTING 1,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +inserted full title,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 537 YEAS 31 NAYS 0 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 199 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 47 YEAS 35 NAYS 2 EXCUSED 1 NOT VOTING 0,2022-03-01T05:00:00+00:00,['passage'],MI,2021-2022 +ORDERED ENROLLED,2021-03-23T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 538 YEAS 31 NAYS 0 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 35 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-22T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 378 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-10-07T04:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 300 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2022-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 453 YEAS 22 NAYS 14 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2021-02-11T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-10-27T04:00:00+00:00,['reading-3'],MI,2021-2022 +RULES SUSPENDED,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/17/2021 11:20 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +returned to Senate,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 490 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 484 Yeas 97 Nays 5 Excused 0 Not Voting 7,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1),2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 522 YEAS 27 NAYS 5 EXCUSED 6 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 494 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 418 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 203 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 496 Yeas 68 Nays 28 Excused 0 Not Voting 13,2022-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 532 YEAS 31 NAYS 0 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/16/2021 05:21 PM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +read a third time,2022-11-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +returned from Senate with substitute (S-1),2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 195 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 409 YEAS 33 NAYS 2 EXCUSED 2 NOT VOTING 1,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 539 YEAS 23 NAYS 8 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +returned from Senate with substitute (S-1),2021-05-19T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-04-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 445 Yeas 100 Nays 4 Excused 0 Not Voting 5,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 269 YEAS 34 NAYS 0 EXCUSED 1 NOT VOTING 1,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-4) CONCURRED IN,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 323 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +passed; given immediate effect Roll Call # 443 Yeas 104 Nays 2 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-09-30T04:00:00+00:00,['committee-passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 209 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT POSTPONED,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 492 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-09-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-27T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 356 YEAS 20 NAYS 15 EXCUSED 0 NOT VOTING 1,2021-09-30T04:00:00+00:00,['passage'],MI,2021-2022 +substitute (H-1) adopted,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 405 YEAS 21 NAYS 16 EXCUSED 1 NOT VOTING 0,2022-07-01T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 31 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-16T05:00:00+00:00,['passage'],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 214 YEAS 22 NAYS 11 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 447 YEAS 22 NAYS 14 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PASSED BY 3/4 VOTE; GIVEN IMMEDIATE EFFECT ROLL CALL # 316 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-09-09T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) not adopted,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 470 Yeas 71 Nays 37 Excused 0 Not Voting 1,2022-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +motion to discharge committee approved,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +ORDERED ENROLLED,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-02-24T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 33 Yeas 59 Nays 50 Excused 0 Not Voting 1,2021-03-09T05:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 126 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2022-10-11T04:00:00+00:00,['referral-committee'],MI,2021-2022 +DEFEATED ROLL CALL # 546 YEAS 18 NAYS 0 EXCUSED 9 NOT VOTING 11,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/20/2021 04:04 PM,2021-10-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 233 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-1),2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 201 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 227 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-12-07T05:00:00+00:00,['reading-3'],MI,2021-2022 +inserted full title,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1) AND AMENDMENT(S),2021-10-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-03-22T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-05-25T04:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-03-22T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 85 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-25T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 376 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-10-07T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 360 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +placed on second reading,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 446 Yeas 106 Nays 0 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-1) with title amendment,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1),2022-05-11T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-09-09T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-26T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 232 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +returned from Senate without amendment with full title,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1),2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH AMENDMENT(S),2022-06-15T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-10T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-09-28T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-03-01T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 490 Yeas 97 Nays 0 Excused 0 Not Voting 12,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 207 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITHOUT AMENDMENT(S),2021-10-14T04:00:00+00:00,['committee-passage'],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-05-25T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 05/05/2022 09:14 AM,2022-05-05T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 30 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-16T05:00:00+00:00,['passage'],MI,2021-2022 +title amended,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 268 YEAS 34 NAYS 0 EXCUSED 1 NOT VOTING 1,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +FULL TITLE AGREED TO,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 451 YEAS 22 NAYS 14 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 486 Yeas 87 Nays 13 Excused 0 Not Voting 9,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-1),2022-05-11T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-03-22T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/28/2022 02:34 PM,2022-12-31T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 05/03/2022 12:02 PM,2022-05-04T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 46 YEAS 35 NAYS 2 EXCUSED 1 NOT VOTING 0,2022-03-01T05:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 123 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-1),2022-05-11T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/28/2022 02:32 PM,2022-12-31T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 97 Yeas 101 Nays 0 Excused 0 Not Voting 5,2022-03-08T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with full title,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 469 Yeas 70 Nays 38 Excused 0 Not Voting 1,2022-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 172 Yeas 99 Nays 0 Excused 0 Not Voting 7,2022-04-28T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 335 Yeas 59 Nays 46 Excused 0 Not Voting 5,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-1),2022-05-11T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 333 YEAS 34 NAYS 1 EXCUSED 3 NOT VOTING 0,2022-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 432 Yeas 95 Nays 11 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +TITLE AMENDED,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 387 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +laid over one day under the rules,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 388 YEAS 31 NAYS 7 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/23/2021 10:24 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 215 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 547 YEAS 28 NAYS 1 EXCUSED 9 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +placed on second reading,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 454 YEAS 34 NAYS 0 EXCUSED 3 NOT VOTING 1,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 242 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-06-02T04:00:00+00:00,['passage'],MI,2021-2022 +FULL TITLE AGREED TO,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled 09/01/2021,2021-09-09T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2022-11-29T05:00:00+00:00,['committee-passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-03-09T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 292 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +inserted full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 543 YEAS 30 NAYS 1 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +presented to the Governor 06/23/2022 12:26 PM,2022-06-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PASSED ROLL CALL # 222 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 504 Yeas 55 Nays 49 Excused 0 Not Voting 5,2021-10-27T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 413 Yeas 95 Nays 14 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-3) with immediate effect and full title,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/21/2022 01:38 PM,2022-03-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 230 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 297 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 638 Yeas 81 Nays 22 Excused 0 Not Voting 4,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 295 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 461 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +title amended,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 540 YEAS 23 NAYS 8 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +inserted full title,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-07-21T04:00:00+00:00,['reading-3'],MI,2021-2022 +TITLE AMENDED,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 296 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 265 YEAS 30 NAYS 4 EXCUSED 1 NOT VOTING 1,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 447 Yeas 106 Nays 0 Excused 0 Not Voting 3,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 294 YEAS 33 NAYS 5 EXCUSED 0 NOT VOTING 0,2022-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 472 Yeas 71 Nays 37 Excused 0 Not Voting 1,2022-11-10T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 427 YEAS 27 NAYS 9 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 9 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 220 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 454 YEAS 36 NAYS 0 EXCUSED 1 NOT VOTING 1,2021-11-30T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 241 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-06-02T04:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 225 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 05/24/2022 10:54 AM,2022-05-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ORDERED ENROLLED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 639 Yeas 81 Nays 22 Excused 0 Not Voting 4,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +title amended,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-24T04:00:00+00:00,['reading-3'],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +adverse roll call,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled 09/01/2021,2021-09-09T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 218 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 128 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with full title,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +read a second time,2022-05-18T04:00:00+00:00,['reading-2'],MI,2021-2022 +INSERTED FULL TITLE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with full title,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-09-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/29/2021 10:15 AM,2021-11-02T04:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate with amendment(s) with immediate effect and full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 219 YEAS 21 NAYS 12 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 50 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 446 YEAS 22 NAYS 14 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and title amendment,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 417 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 450 YEAS 25 NAYS 12 EXCUSED 1 NOT VOTING 0,2021-11-30T05:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 489 YEAS 34 NAYS 2 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +laid over one day under the rules,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 287 YEAS 33 NAYS 2 EXCUSED 1 NOT VOTING 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 524 YEAS 26 NAYS 6 EXCUSED 6 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +ORDERED ENROLLED,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-09-20T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 460 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-3) with immediate effect and title amendment,2022-01-20T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/02/2022 11:42 AM,2022-06-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 542 YEAS 31 NAYS 0 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-12-08T05:00:00+00:00,['reading-3'],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and full title,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 336 YEAS 28 NAYS 7 EXCUSED 1 NOT VOTING 0,2021-07-15T04:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 505 Yeas 55 Nays 49 Excused 0 Not Voting 5,2021-10-27T04:00:00+00:00,['passage'],MI,2021-2022 +ORDERED ENROLLED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with amendment(s) with immediate effect and full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-09-15T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-04-14T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1),2022-05-11T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-12-14T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 392 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 53 Yeas 108 Nays 1 Excused 0 Not Voting 1,2021-03-17T04:00:00+00:00,['passage'],MI,2021-2022 +SUBSTITUTE (S-2) DEFEATED,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PASSED BY 3/4 VOTE; GIVEN IMMEDIATE EFFECT ROLL CALL # 310 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +inserted full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and full title,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 286 YEAS 33 NAYS 2 EXCUSED 1 NOT VOTING 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 368 Yeas 58 Nays 52 Excused 0 Not Voting 0,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 337 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-07-15T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 485 Yeas 97 Nays 5 Excused 0 Not Voting 7,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +PRESENTED TO GOVERNOR 06/07/2021 11:32 AM,2021-06-08T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 410 YEAS 34 NAYS 2 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +"returned from Senate, adopted by 2/3 vote",2022-05-11T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2022-02-17T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with amendment(s) with immediate effect and full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/17/2021 04:12 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 528 YEAS 29 NAYS 2 EXCUSED 6 NOT VOTING 1,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 516 YEAS 22 NAYS 10 EXCUSED 6 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 120 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 362 Yeas 106 Nays 0 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with amendment(s) with immediate effect and full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 518 YEAS 22 NAYS 10 EXCUSED 6 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 253 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 90 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 393 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 412 YEAS 33 NAYS 3 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 509 Yeas 90 Nays 7 Excused 0 Not Voting 12,2022-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2022-04-14T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-01T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 535 YEAS 31 NAYS 0 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1),2022-05-11T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 101 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-03-23T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 223 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and title amendment,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 222 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with title amendment,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 481 Yeas 96 Nays 6 Excused 0 Not Voting 7,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1),2022-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 519 YEAS 27 NAYS 5 EXCUSED 6 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-06-17T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +inserted full title,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +FULL TITLE AGREED TO,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 502 YEAS 25 NAYS 11 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 226 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +TITLE AMENDED,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 480 Yeas 90 Nays 12 Excused 0 Not Voting 7,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/06/2021 09:18 AM,2021-12-07T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +ORDERED ENROLLED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 364 YEAS 28 NAYS 10 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +"Reps. Julie Brixie, Terry Sabo, Nate Shannon removed as co-sponsors",2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 380 YEAS 35 NAYS 3 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 607 Yeas 88 Nays 14 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-2),2022-09-28T04:00:00+00:00,['committee-passage'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 03/10/2022 11:16 AM,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PASSED BY 3/4 VOTE ROLL CALL # 465 YEAS 34 NAYS 0 EXCUSED 2 NOT VOTING 2,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1),2022-05-11T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-02-22T05:00:00+00:00,['reading-3'],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 495 YEAS 21 NAYS 15 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 61 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 525 YEAS 30 NAYS 0 EXCUSED 6 NOT VOTING 2,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +presented to the Governor 12/17/2021 11:04 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 494 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 351 Yeas 97 Nays 9 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with amendment(s) with immediate effect and full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 03/24/2021 03:48 PM,2021-03-25T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +Senate substitute (S-2) concurred in,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 431 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and full title,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +PASSED BY 3/4 VOTE; GIVEN IMMEDIATE EFFECT ROLL CALL # 467 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 266 YEAS 29 NAYS 5 EXCUSED 1 NOT VOTING 1,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-12-07T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 386 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +inserted full title,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 470 YEAS 28 NAYS 5 EXCUSED 5 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-4) ADOPTED,2022-04-20T04:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-3),2022-06-07T04:00:00+00:00,['committee-passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 228 Yeas 107 Nays 1 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-1) with full title,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 497 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 531 YEAS 31 NAYS 0 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED ROLL CALL # 482 YEAS 31 NAYS 6 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 459 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +TITLE AMENDED,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-09-15T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 369 Yeas 58 Nays 52 Excused 0 Not Voting 0,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 363 YEAS 29 NAYS 9 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 411 YEAS 34 NAYS 2 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled 09/01/2021,2021-09-09T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 381 Yeas 103 Nays 6 Excused 0 Not Voting 1,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 482 Yeas 89 Nays 13 Excused 0 Not Voting 7,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 09/02/2021 01:01 PM,2021-09-09T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2021-11-03T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 24 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-10T05:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-09-15T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 527 YEAS 24 NAYS 7 EXCUSED 6 NOT VOTING 1,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 432 YEAS 29 NAYS 7 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 589 Yeas 100 Nays 4 Excused 0 Not Voting 3,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/17/2021 04:10 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/07/2022 11:12 AM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ORDERED ENROLLED,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-10-07T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 67 Yeas 101 Nays 3 Excused 0 Not Voting 2,2022-02-22T05:00:00+00:00,['passage'],MI,2021-2022 +placed on immediate passage,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 11/17/2021 02:55 PM,2021-11-30T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 09/02/2021 01:20 PM,2021-09-09T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 468 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-3) with full title,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 523 YEAS 26 NAYS 6 EXCUSED 6 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +TITLE AMENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled 04/21/2022,2022-04-21T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 481 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +PRESENTED TO GOVERNOR 12/16/2021 03:48 PM,2021-12-16T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-09-15T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 17 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2022-02-08T05:00:00+00:00,['passage'],MI,2021-2022 +TITLE AMENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-04T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 361 YEAS 21 NAYS 15 EXCUSED 0 NOT VOTING 0,2021-09-30T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 89 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +PRESENTED TO GOVERNOR 03/10/2022 11:40 AM,2022-03-15T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +inserted full title,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 05/27/2021 12:57 PM,2021-06-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with full title,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 03/26/2021 03:37 PM,2021-04-13T04:00:00+00:00,['executive-signature'],MI,2021-2022 +returned to Senate,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/19/2022 09:38 AM,2022-07-20T04:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate with substitute (S-1) with title amendment,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 293 YEAS 32 NAYS 5 EXCUSED 1 NOT VOTING 0,2022-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +approved by the Governor 12/23/2021 10:12 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate without amendment with full title,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 609 Yeas 101 Nays 2 Excused 0 Not Voting 4,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +bill ordered enrolled,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and full title,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 91 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-1) with title amendment,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +Senate amendment(s) concurred in Roll Call # 516 Yeas 101 Nays 1 Excused 0 Not Voting 7,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 498 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-09-15T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 05/17/2022 11:43 AM,2022-05-18T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 234 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +PASSED BY 3/4 VOTE; GIVEN IMMEDIATE EFFECT ROLL CALL # 469 YEAS 34 NAYS 2 EXCUSED 2 NOT VOTING 0,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 121 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +ASSIGNED PA 0020'22,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and title amendment,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-04-20T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with title amendment,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) CONCURRED IN,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +ENROLLMENT VACATED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) CONCURRED IN,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 465 YEAS 32 NAYS 1 EXCUSED 5 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +laid over one day under the rules,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-3) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 278 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled 04/21/2022,2022-04-21T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/16/2021 05:27 PM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +FULL TITLE AGREED TO,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0121'21,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 02/15/2022 11:32 AM,2022-02-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-02-24T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 266 YEAS 0 NAYS 36 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 09/10/2021 08:23 AM,2021-09-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +returned to Senate,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-05-25T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 425 Yeas 93 Nays 15 Excused 0 Not Voting 2,2021-07-21T04:00:00+00:00,['passage'],MI,2021-2022 +FULL TITLE AGREED TO,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and title amendment,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-06-07T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 327 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +ENROLLMENT VACATED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +VOTE RECONSIDERED,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/29/2022 01:02 PM,2022-06-29T04:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and title amendment,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 221 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 390 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 541 YEAS 31 NAYS 0 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled 04/21/2022,2022-04-21T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 404 YEAS 21 NAYS 16 EXCUSED 1 NOT VOTING 0,2022-07-01T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED OUT OF SESSION,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 73 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-03-15T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 365 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with title amendment,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 450 YEAS 22 NAYS 14 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +inserted full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1) AS AMENDED,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-04-20T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) ADOPTED,2022-04-20T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 05/05/2022 03:06 PM,2022-05-11T04:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 446 Yeas 80 Nays 25 Excused 0 Not Voting 5,2021-09-30T04:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 410 YEAS 19 NAYS 15 EXCUSED 2 NOT VOTING 0,2021-10-26T04:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 489 Yeas 29 Nays 67 Excused 0 Not Voting 13,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +POSTPONED TEMPORARILY,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with title amendment,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +substitute (H-1) adopted,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 05/12/2022 09:05 AM,2022-05-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +INSERTED FULL TITLE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and title amendment,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 415 YEAS 29 NAYS 7 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 630 Yeas 72 Nays 30 Excused 0 Not Voting 5,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 147 Yeas 95 Nays 7 Excused 0 Not Voting 4,2022-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-03-02T05:00:00+00:00,['amendment-failure'],MI,2021-2022 +returned from Senate with substitute (S-2) with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-3) CONCURRED IN,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:36 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 398 Yeas 95 Nays 13 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/23/2022 10:01 AM,2022-03-23T04:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +PASSED BY 3/4 VOTE; GIVEN IMMEDIATE EFFECT ROLL CALL # 479 YEAS 35 NAYS 2 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 298 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +returned to Senate,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/06/2022 08:13 AM,2022-06-02T04:00:00+00:00,['executive-signature'],MI,2021-2022 +FULL TITLE AGREED TO,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with amendment(s) with immediate effect and full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/29/2021 11:58 AM,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 480 YEAS 35 NAYS 2 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-1) with title amendment,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 493 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/02/2021 01:16 PM,2021-09-09T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 04/26/2021 01:02 PM,2021-04-27T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 366 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/02/2021 01:18 PM,2021-09-09T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +read a third time,2021-05-20T04:00:00+00:00,['reading-3'],MI,2021-2022 +inserted full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/02/2021 09:32 AM,2021-06-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +read a second time,2021-03-10T05:00:00+00:00,['reading-2'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 106 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +title amended,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and title amendment,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and title amendment,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 06/09/2021 01:21 PM,2021-06-10T04:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 270 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +laid over one day under the rules,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with full title,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/14/2022 11:48 AM,2022-06-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +INSERTED FULL TITLE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with full title,2022-04-14T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +passed Roll Call # 508 Yeas 96 Nays 1 Excused 0 Not Voting 12,2022-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with amendment(s) with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 110 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2022-03-24T04:00:00+00:00,['passage'],MI,2021-2022 +presented to the Governor 06/08/2021 09:16 AM,2021-06-08T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PASSED ROLL CALL # 289 YEAS 31 NAYS 4 EXCUSED 1 NOT VOTING 0,2021-06-17T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 37 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-12-07T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 269 YEAS 22 NAYS 14 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/29/2021 11:10 AM,2021-11-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 03/17/2022 01:00 PM,2022-03-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-03-02T05:00:00+00:00,['amendment-failure'],MI,2021-2022 +bill ordered enrolled,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 45 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2022-02-23T05:00:00+00:00,['passage'],MI,2021-2022 +inserted full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +"Reps. Alex Garza, Mary Cavanagh, Shri Thanedar removed as co-sponsors",2021-06-17T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 365 Yeas 79 Nays 27 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 416 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +RULES SUSPENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ENROLLMENT VACATED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/11/2022 01:58 PM,2022-07-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +SUBSTITUTE (S-3) ADOPTED,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1),2022-05-11T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 397 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +INSERTED FULL TITLE,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 391 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/07/2021 03:08 PM,2021-12-07T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 382 YEAS 29 NAYS 7 EXCUSED 0 NOT VOTING 0,2021-10-13T04:00:00+00:00,['passage'],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 224 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with title amendment,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-3) CONCURRED IN,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-04-14T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 05/05/2022 09:16 AM,2022-05-05T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +inserted full title,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with amendment(s) with immediate effect and full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +PASSED ROLL CALL # 409 YEAS 19 NAYS 15 EXCUSED 2 NOT VOTING 0,2021-10-26T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 364 Yeas 78 Nays 28 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-4) with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 114 YEAS 24 NAYS 12 EXCUSED 0 NOT VOTING 0,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/21/2022 10:58 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 492 YEAS 20 NAYS 17 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +laid over one day under the rules,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-3) with full title,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with amendment(s) with immediate effect and full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-09-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 294 YEAS 26 NAYS 9 EXCUSED 1 NOT VOTING 0,2021-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +referred to Clerk,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0122'21,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 02/28/2022 11:12 AM,2022-02-24T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-09-28T04:00:00+00:00,['reading-3'],MI,2021-2022 +ORDERED ENROLLED,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-15T04:00:00+00:00,['reading-3'],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-04-20T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with full title,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-01-20T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 27 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-15T05:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and title amendment,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 367 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2022-06-01T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 254 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/02/2021 09:30 AM,2021-06-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 15 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/26/2022 03:17 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +presented to the Governor 04/19/2022 09:10 AM,2022-04-26T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 06/21/2022 11:02 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 07/11/2022 01:02 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 11/17/2021 02:57 PM,2021-11-30T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +inserted full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-3) with immediate effect,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 221 Yeas 58 Nays 48 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +presented to the Governor 10/26/2021 09:44 AM,2021-10-26T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 06/07/2021 11:30 AM,2021-06-08T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 10/26/2021 09:48 AM,2021-10-26T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 06/08/2021 11:04 AM,2021-06-09T04:00:00+00:00,['executive-signature'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 06/09/2021 02:38 PM,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 01/20/2022 01:34 PM,2022-01-25T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +full title agreed to,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/21/2022 09:58 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +INSERTED FULL TITLE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-3) CONCURRED IN,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/06/2021 09:37 AM,2021-12-02T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate with substitute (S-2) with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 238 Yeas 0 Nays 106 Excused 0 Not Voting 4,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/16/2021 03:44 PM,2021-12-16T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate without amendment with full title,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/16/2021 05:33 PM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +INSERTED FULL TITLE,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 248 Yeas 0 Nays 109 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +POSTPONED TEMPORARILY,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 05/24/2022 10:58 AM,2022-05-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/11/2022 01:46 PM,2022-07-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/26/2022 03:05 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 06/29/2022 01:22 PM,2022-06-29T04:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate with amendment(s) with immediate effect and full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-04-27T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled 05/10/2022,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 38 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 05/11/2022 09:17 AM,2022-05-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +passed; given immediate effect Roll Call # 450 Yeas 98 Nays 6 Excused 0 Not Voting 5,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 331 Yeas 105 Nays 4 Excused 0 Not Voting 1,2021-06-15T04:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 530 YEAS 31 NAYS 0 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +Senate amendment(s) concurred in Roll Call # 384 Yeas 104 Nays 4 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/07/2022 09:20 AM,2022-06-07T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 02/15/2022 11:36 AM,2022-02-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with full title,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/14/2022 02:42 PM,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/28/2022 01:36 PM,2022-03-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 02/28/2022 11:04 AM,2022-02-24T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +passed; given immediate effect Roll Call # 487 Yeas 88 Nays 12 Excused 0 Not Voting 9,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +TITLE AMENDED,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 34 YEAS 34 NAYS 1 EXCUSED 1 NOT VOTING 0,2021-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +FULL TITLE AGREED TO,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 03/23/2022 09:37 AM,2022-03-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 10/19/2021 11:52 AM,2021-10-19T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-04-28T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1),2021-11-30T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-04-14T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/15/2021 01:06 PM,2021-06-15T04:00:00+00:00,['executive-signature'],MI,2021-2022 +inserted full title,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/15/2022 09:19 AM,2022-03-15T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +ENROLLMENT VACATED,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/21/2022 10:54 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +INSERTED FULL TITLE,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 01:14 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/05/2022 12:09 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +INSERTED FULL TITLE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 440 YEAS 26 NAYS 10 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +FULL TITLE AGREED TO,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/26/2021 09:46 AM,2021-10-26T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 359 YEAS 21 NAYS 15 EXCUSED 0 NOT VOTING 0,2021-09-30T04:00:00+00:00,['passage'],MI,2021-2022 +presented to the Governor 12/17/2021 11:06 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/10/2022 10:14 AM,2022-03-10T05:00:00+00:00,['executive-signature'],MI,2021-2022 +RULES SUSPENDED,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/11/2022 01:52 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 41 Yeas 60 Nays 50 Excused 0 Not Voting 0,2021-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +roll call Roll Call # 236 Yeas 0 Nays 106 Excused 0 Not Voting 4,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/17/2021 11:02 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 330 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with amendment(s) with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) concurred in,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-5) CONCURRED IN,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 436 YEAS 31 NAYS 5 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +ORDERED ENROLLED,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/04/2022 02:38 PM,2022-03-03T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +"Reps. Samantha Steckloff, Cara Clemente, Amos O'Neal removed as co-sponsors",2021-06-17T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 11/04/2021 09:36 AM,2021-11-09T05:00:00+00:00,['executive-signature'],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN AS SUBSTITUTED (S-3),2021-04-21T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/02/2022 11:38 AM,2022-06-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 05/03/2021 11:12 AM,2021-05-04T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 140 Yeas 107 Nays 2 Excused 0 Not Voting 1,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 05/03/2021 11:08 AM,2021-05-04T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +passed; given immediate effect Roll Call # 224 Yeas 58 Nays 48 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +read a third time,2021-06-30T04:00:00+00:00,['reading-3'],MI,2021-2022 +presented to the Governor 03/30/2021 11:02 AM,2021-04-13T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +passed; given immediate effect Roll Call # 229 Yeas 58 Nays 48 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/26/2022 03:21 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 09/10/2021 10:10 AM,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 09/16/2021 02:32 PM,2021-09-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +FULL TITLE AGREED TO,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 05/19/2022 10:56 AM,2022-05-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 226 Yeas 58 Nays 48 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/30/2021 01:48 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and title amendment,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-4) with immediate effect and title amendment,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/29/2022 02:08 PM,2022-06-29T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 06/06/2022 08:50 AM,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-04-20T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/11/2021 10:20 AM,2021-06-10T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 03/26/2021 04:16 PM,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 06/03/2021 09:27 AM,2021-06-08T04:00:00+00:00,['executive-signature'],MI,2021-2022 +DEFEATED ROLL CALL # 267 YEAS 0 NAYS 36 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/19/2022 12:00 PM,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 05/11/2022 09:15 AM,2022-05-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ORDERED ENROLLED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/14/2021 09:50 AM,2021-12-14T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate with substitute (S-1) with title amendment,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 259 Yeas 0 Nays 109 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2021-04-29T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 11/22/2021 11:01 AM,2021-11-30T05:00:00+00:00,['executive-signature'],MI,2021-2022 +vetoed by the Governor 09/10/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +Senate amendment(s) concurred in Roll Call # 386 Yeas 104 Nays 4 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. JIM STAMAS, JON BUMSTEAD, CURTIS HERTEL",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 242 Yeas 0 Nays 106 Excused 0 Not Voting 4,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/23/2022 12:24 PM,2022-06-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 06/24/2021 03:38 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 526 YEAS 22 NAYS 8 EXCUSED 6 NOT VOTING 2,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/03/2022 02:58 PM,2022-03-03T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/03/2022 02:56 PM,2022-03-03T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 05/19/2022 04:47 PM,2022-05-19T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +bill ordered enrolled,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 04/28/2022 12:17 PM,2022-04-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-2),2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 484 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +presented to the Governor 06/22/2021 10:44 AM,2021-06-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled 04/21/2022,2022-04-21T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 04/01/2021 10:38 AM,2021-04-13T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 07/11/2022 01:20 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +HOUSE AMENDMENT(S) CONCURRED IN ROLL CALL # 417 YEAS 34 NAYS 0 EXCUSED 1 NOT VOTING 1,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +SENATE REQUESTS RETURN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 02/28/2022 11:06 AM,2022-02-24T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +INSERTED FULL TITLE,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 295 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 10/13/2021 09:08 AM,2021-10-14T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +APPROVED BY GOVERNOR 03/23/2022 09:39 AM,2022-03-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +APPROVED BY GOVERNOR 12/23/2021 10:52 AM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 254 Yeas 0 Nays 109 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/17/2021 11:08 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/21/2022 10:28 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 217 Yeas 58 Nays 48 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +FULL TITLE AGREED TO,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/21/2022 10:30 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:24 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 10/05/2021 01:33 PM,2021-10-06T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-12-06T05:00:00+00:00,['reading-3'],MI,2021-2022 +ORDERED ENROLLED,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 439 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +PRESENTED TO GOVERNOR 07/21/2021 10:46 AM,2021-07-27T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate with substitute (S-3) with full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 12:52 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ROLL CALL: ROLL CALL # 499 YEAS 30 NAYS 5 EXCUSED 1 NOT VOTING 2,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/17/2021 04:18 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-3),2022-06-07T04:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 02/23/2022 10:34 AM,2022-02-23T05:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 09/16/2021 02:30 PM,2021-09-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 249 Yeas 0 Nays 109 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 04/28/2022 12:19 PM,2022-04-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ORDERED ENROLLED,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-3) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 375 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-10-07T04:00:00+00:00,['passage'],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-03-01T05:00:00+00:00,['reading-3'],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-3) with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +assigned PA 97'21,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/08/2021 09:14 AM,2021-06-08T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 06/23/2022 12:14 PM,2022-06-23T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ORDERED ENROLLED,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +presented to the Governor 05/24/2022 10:56 AM,2022-05-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +substitute (H-1) adopted,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +assigned PA 151'21,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 448 YEAS 22 NAYS 14 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 491 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +inserted full title,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and full title,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/23/2021 11:59 AM,2021-06-23T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 413 YEAS 32 NAYS 4 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/23/2022 11:04 AM,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with title amendment,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) concurred in,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-01-19T05:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 467 YEAS 33 NAYS 0 EXCUSED 5 NOT VOTING 0,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 455 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with title amendment,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 229 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with amendment(s),2022-06-21T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 36 YEAS 31 NAYS 4 EXCUSED 1 NOT VOTING 0,2021-03-02T05:00:00+00:00,['passage'],MI,2021-2022 +roll call Roll Call # 246 Yeas 0 Nays 106 Excused 0 Not Voting 4,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 05/12/2022 09:07 AM,2022-05-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 01/20/2022 01:36 PM,2022-01-25T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 03/28/2022 01:38 PM,2022-04-12T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 05/12/2022 09:50 AM,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +POSTPONED TEMPORARILY,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +placed on third reading,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 231 Yeas 59 Nays 47 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 548 YEAS 22 NAYS 6 EXCUSED 9 NOT VOTING 1,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 231 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +presented to the Governor 06/24/2021 04:34 PM,2021-06-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 06/21/2022 10:52 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +title amended,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 11/17/2021 02:59 PM,2021-11-30T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 257 Yeas 0 Nays 109 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +inserted full title,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 247 Yeas 3 Nays 106 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 544 YEAS 31 NAYS 0 EXCUSED 7 NOT VOTING 0,2022-12-07T05:00:00+00:00,['passage'],MI,2021-2022 +Senate amendment(s) concurred in Roll Call # 385 Yeas 104 Nays 4 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 05/05/2022 05:08 PM,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with title amendment,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/08/2021 11:06 AM,2021-06-09T04:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate with substitute (S-3) with immediate effect and full title,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +full title agreed to,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Appropriations,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 496 Yeas 66 Nays 38 Excused 0 Not Voting 5,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 122 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-04-20T04:00:00+00:00,['passage'],MI,2021-2022 +laid over one day under the rules,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 275 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 206 YEAS 33 NAYS 0 EXCUSED 5 NOT VOTING 0,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 381 YEAS 35 NAYS 1 EXCUSED 0 NOT VOTING 0,2021-10-13T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 05/19/2022 04:49 PM,2022-05-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 85 YEAS 24 NAYS 14 EXCUSED 0 NOT VOTING 0,2022-03-15T04:00:00+00:00,['passage'],MI,2021-2022 +ORDERED ENROLLED,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 466 YEAS 33 NAYS 0 EXCUSED 5 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/21/2022 10:50 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 497 YEAS 23 NAYS 13 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 09/16/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-4) CONCURRED IN,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 04/28/2022 12:21 PM,2022-04-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and title amendment,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/28/2022 01:34 PM,2022-04-12T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 256 Yeas 0 Nays 109 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-02-17T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 362 YEAS 21 NAYS 15 EXCUSED 0 NOT VOTING 0,2021-09-30T04:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/29/2022 02:22 PM,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 16 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 280 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-05-26T04:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/07/2021 02:12 PM,2021-07-15T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/14/2021 09:52 AM,2021-12-14T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +ORDERED ENROLLED,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 267 YEAS 29 NAYS 5 EXCUSED 1 NOT VOTING 1,2021-06-10T04:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 219 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-05-20T04:00:00+00:00,['passage'],MI,2021-2022 +presented to the Governor 06/21/2022 10:56 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with amendment(s) with immediate effect and full title,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 06/02/2022 11:32 AM,2022-06-07T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 291 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +presented to the Governor 06/21/2022 11:00 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate with substitute (S-5) with immediate effect and full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/16/2021 03:46 PM,2021-12-16T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 05/06/2021 12:15 PM,2021-05-06T04:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 251 Yeas 0 Nays 109 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/17/2021 11:10 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 06/21/2022 10:32 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate with substitute (S-1),2021-12-14T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 246 Yeas 0 Nays 109 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 09/10/2021,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 11/05/2021 01:37 PM,2021-11-09T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate without amendment with full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +assigned PA 121'22 with immediate effect,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 381 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 01:16 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +passed; given immediate effect Roll Call # 230 Yeas 59 Nays 47 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 01:00 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 11/02/2021 01:00 PM,2021-11-03T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +passed; given immediate effect Roll Call # 223 Yeas 58 Nays 48 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 05/19/2022 04:51 PM,2022-05-19T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 06/02/2021 09:34 AM,2021-06-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +placed on immediate passage,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +House conferees named 05/26/2021: Reps. Mary Whiteford Phil Green Abdullah Hammoud,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +House conferees named 05/26/2021: Reps. Sue Allor Timothy Beson Rachel Hood,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/29/2022 01:16 PM,2022-06-29T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 06/29/2022 01:08 PM,2022-06-29T04:00:00+00:00,['executive-signature'],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 01/20/2022 01:40 PM,2022-01-25T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/19/2021 11:56 AM,2021-10-19T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 06/15/2021 01:04 PM,2021-06-15T04:00:00+00:00,['executive-signature'],MI,2021-2022 +full title agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 550 YEAS 26 NAYS 1 EXCUSED 9 NOT VOTING 2,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Education,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/16/2021 03:40 PM,2021-12-16T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/05/2022 12:11 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 12/23/2021 10:36 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/23/2021 10:50 AM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +APPROVED BY GOVERNOR 07/13/2021 10:30 AM,2021-07-15T04:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate without amendment with full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/16/2021 03:42 PM,2021-12-16T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/17/2021 11:22 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 357 YEAS 35 NAYS 1 EXCUSED 0 NOT VOTING 0,2021-09-30T04:00:00+00:00,['passage'],MI,2021-2022 +assigned PA 48'22 with immediate effect,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 465 Yeas 105 Nays 1 Excused 0 Not Voting 3,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2021-03-02T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 324 YEAS 33 NAYS 1 EXCUSED 2 NOT VOTING 0,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/30/2021 03:47 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 02/18/2021 12:59 PM,2021-02-22T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/11/2022 10:07 AM,2022-03-10T05:00:00+00:00,['executive-signature'],MI,2021-2022 +PRESENTED TO GOVERNOR 01/28/2022 01:02 PM,2022-02-01T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +FULL TITLE AGREED TO,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 502 YEAS 31 NAYS 5 EXCUSED 2 NOT VOTING 0,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/01/2021 10:46 AM,2021-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/23/2022 02:56 PM,2022-03-23T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +HOUSE SUBSTITUTE (H-5) CONCURRED IN,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 64 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 03/07/2022 12:47 PM,2022-03-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +House conferees named 05/26/2021: Reps. Jeff Yaroch Matt Maddock Ronnie Dean Peterson,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 06/14/2022 12:02 PM,2022-06-15T04:00:00+00:00,['executive-signature'],MI,2021-2022 +FULL TITLE AGREED TO,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-3) CONCURRED IN,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/16/2021 05:39 PM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 12:54 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 06/24/2021 04:32 PM,2021-06-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 03/28/2022 01:40 PM,2022-04-12T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 05/05/2022 03:00 PM,2022-05-05T04:00:00+00:00,['executive-signature'],MI,2021-2022 +rule suspended,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0150'22,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 01:12 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 387 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-10-14T04:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 05/26/2022 10:54 AM,2022-05-26T04:00:00+00:00,['executive-signature'],MI,2021-2022 +HOUSE SUBSTITUTE (H-2) CONCURRED IN,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 06/22/2021 10:40 AM,2021-06-23T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 07/01/2021 10:36 AM,2021-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 12/13/2022 11:14 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/21/2022 10:38 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +roll call Roll Call # 325 Yeas 56 Nays 49 Excused 0 Not Voting 5,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with amendment(s) with immediate effect and full title,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 234 Yeas 0 Nays 106 Excused 0 Not Voting 4,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 247 Yeas 0 Nays 106 Excused 0 Not Voting 4,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Scott A. VanSingel Thomas A. Albert Samantha Steckloff,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Government Operations,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/10/2022 11:56 AM,2022-06-09T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate with substitute (S-3) with immediate effect and full title,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/10/2022 11:54 AM,2022-06-09T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 06/10/2022 11:50 AM,2022-06-09T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/06/2022 08:15 AM,2022-06-02T04:00:00+00:00,['executive-signature'],MI,2021-2022 +HOUSE SUBSTITUTE (H-3) CONCURRED IN,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-4) with immediate effect and title amendment,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +House conferees named 05/26/2021: Reps. Sue Allor Timothy Beson Rachel Hood,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/24/2022 08:28 AM,2022-06-23T04:00:00+00:00,['executive-signature'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/29/2022 01:10 PM,2022-06-29T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 422 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +approved by the Governor 11/10/2021 03:48 PM,2021-11-30T05:00:00+00:00,['executive-signature'],MI,2021-2022 +FULL TITLE AGREED TO,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/07/2022 03:48 PM,2022-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 04/07/2022 12:02 PM,2022-03-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +rule suspended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-04-20T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/23/2022 12:18 PM,2022-06-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 06/29/2022 01:14 PM,2022-06-29T04:00:00+00:00,['executive-signature'],MI,2021-2022 +laid over one day under the rules,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 11/22/2021 11:03 AM,2021-11-30T05:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 11/03/2021 01:50 PM,2021-11-03T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate without amendment with full title,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0073'22 WITH IMMEDIATE EFFECT,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0076'22 WITH IMMEDIATE EFFECT,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 05/12/2022 09:46 AM,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/07/2021 09:40 AM,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/29/2022 01:26 PM,2022-06-30T04:00:00+00:00,['executive-signature'],MI,2021-2022 +placed on third reading,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +House conferees named 05/26/2021: Reps. Tommy Brann Andrew Fink Tyrone Carter,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 02/01/2022 12:32 PM,2022-02-01T05:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/09/2021 02:30 PM,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/21/2022 10:40 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 12/17/2021 04:24 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/21/2022 11:22 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 499 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/16/2021 05:25 PM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 04/08/2021 10:30 AM,2021-04-13T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2021-05-19T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 06/09/2021 01:19 PM,2021-06-10T04:00:00+00:00,['executive-signature'],MI,2021-2022 +full title agreed to,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Annette Glenn Thomas A. Albert Shri Thanedar,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 02/15/2022 11:30 AM,2022-02-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 05/13/2021 09:31 AM,2021-05-13T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 551 YEAS 20 NAYS 8 EXCUSED 10 NOT VOTING 0,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/07/2022 03:44 PM,2022-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ORDERED ENROLLED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 11/04/2021 09:30 AM,2021-11-09T05:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/16/2021 05:31 PM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +TITLE AMENDED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 09/27/2022 10:06 AM,2022-09-27T04:00:00+00:00,['executive-signature'],MI,2021-2022 +House conferees named 05/26/2021: Reps. Bradley Slagh Sarah L. Lightner Tyrone Carter,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and full title,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 11/04/2021 09:32 AM,2021-11-09T05:00:00+00:00,['executive-signature'],MI,2021-2022 +APPROVED BY GOVERNOR 07/25/2022 09:20 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 329 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 538 Yeas 104 Nays 0 Excused 0 Not Voting 5,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with title amendment,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/16/2022 11:22 AM,2022-06-16T04:00:00+00:00,['executive-signature'],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-02-15T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 04/14/2022 02:02 PM,2022-04-26T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 06/29/2022 02:42 PM,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/28/2022 02:36 PM,2022-12-31T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 10/14/2022,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/23/2022 12:20 PM,2022-06-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +title amended,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 11/04/2021 09:34 AM,2021-11-09T05:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 06/14/2022 11:54 AM,2022-06-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 11/30/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/02/2021 01:31 PM,2021-12-02T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 07/07/2022 11:18 AM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 07/25/2022 09:30 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +rule suspended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +inserted full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 341 YEAS 37 NAYS 1 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/23/2021 10:10 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 12/13/2022 11:34 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +roll call Roll Call # 245 Yeas 0 Nays 106 Excused 0 Not Voting 4,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 220 Yeas 56 Nays 50 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 423 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-20T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Bradley Slagh Thomas A. Albert Tyrone Carter,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/10/2022 11:26 AM,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-3) with immediate effect,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 03/23/2022 10:40 AM,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/06/2022 08:17 AM,2022-06-02T04:00:00+00:00,['executive-signature'],MI,2021-2022 +PASSED ROLL CALL # 322 YEAS 32 NAYS 0 EXCUSED 2 NOT VOTING 2,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +approved by the Governor 10/29/2021 10:09 AM,2021-11-02T04:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 500 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +"Reps. Yousef Rabhi, Abraham Aiyash, Stephanie Young removed as co-sponsors",2021-06-17T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/21/2022 01:34 PM,2022-03-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +inserted full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +Senate amendment(s) concurred in Roll Call # 388 Yeas 103 Nays 5 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +HOUSE AMENDMENT(S) CONCURRED IN ROLL CALL # 58 YEAS 34 NAYS 0 EXCUSED 1 NOT VOTING 1,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 05/19/2022 10:40 AM,2022-05-19T04:00:00+00:00,['executive-signature'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/10/2022 10:04 AM,2022-03-10T05:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 02/28/2022 11:14 AM,2022-02-24T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 05/02/2022 09:03 AM,2022-05-03T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 05/13/2022 11:13 AM,2022-05-13T04:00:00+00:00,[],MI,2021-2022 +SENATE REQUESTS RETURN,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/21/2021 10:44 AM,2021-07-27T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 04/07/2022 12:00 PM,2022-03-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +FULL TITLE AGREED TO,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/15/2022 09:21 AM,2022-03-15T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +roll call Roll Call # 280 Yeas 78 Nays 29 Excused 0 Not Voting 3,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-4) with full title,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 399 Yeas 106 Nays 3 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +returned from Senate with amendment(s) with immediate effect and full title,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 608 Yeas 103 Nays 0 Excused 0 Not Voting 4,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0082'21 WITH IMMEDIATE EFFECT,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 18 Yeas 85 Nays 17 Excused 0 Not Voting 4,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 11/04/2021 02:44 PM,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/15/2022 09:17 AM,2022-03-15T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and title amendment,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/29/2022 01:18 PM,2022-06-29T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/15/2021 02:24 PM,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 05/17/2022 11:39 AM,2022-05-18T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 12/23/2021 10:14 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +laid over one day under the rules,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 05/13/2021 09:35 AM,2021-05-13T04:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate amendment(s) concurred in Roll Call # 383 Yeas 104 Nays 4 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/23/2022 09:53 AM,2022-03-23T04:00:00+00:00,['executive-signature'],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +assigned PA 95'22 with immediate effect,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-01-18T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 02/01/2022 12:30 PM,2022-02-01T05:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 03/09/2022 02:52 PM,2022-03-09T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +ROLL CALL: ROLL CALL # 401 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 353 Yeas 107 Nays 3 Excused 0 Not Voting 0,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/29/2022 01:12 PM,2022-06-29T04:00:00+00:00,['executive-signature'],MI,2021-2022 +laid over one day under the rules,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/13/2021 10:10 AM,2021-07-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with full title,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/19/2022 10:06 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +FULL TITLE AGREED TO,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 449 YEAS 22 NAYS 14 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +passed; given immediate effect Roll Call # 227 Yeas 58 Nays 48 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +filed with Secretary of State 06/09/2021 02:28 PM,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2021-10-21T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 96 YEAS 19 NAYS 14 EXCUSED 2 NOT VOTING 1,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 116 Yeas 100 Nays 3 Excused 0 Not Voting 3,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 216 Yeas 58 Nays 48 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +ORDERED ENROLLED,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 02/23/2022 10:36 AM,2022-02-23T05:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/19/2022 09:56 AM,2022-07-20T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0026'21 WITH IMMEDIATE EFFECT,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 06/03/2021 11:02 AM,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 83 Yeas 62 Nays 42 Excused 0 Not Voting 2,2022-03-01T05:00:00+00:00,['passage'],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0005'21 WITH IMMEDIATE EFFECT,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/10/2022 11:52 AM,2022-06-09T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/27/2021 01:04 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 10:54 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +APPROVED BY GOVERNOR 10/14/2021 08:47 AM,2021-10-19T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 11/18/2021 09:34 AM,2021-11-30T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/05/2022 02:05 PM,2022-12-06T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +passed; given immediate effect Roll Call # 228 Yeas 58 Nays 48 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +approved by the Governor 05/26/2022 10:52 AM,2022-05-26T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 90'22 with immediate effect,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 494 Yeas 105 Nays 0 Excused 0 Not Voting 4,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and title amendment,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +assigned PA 145'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 01/20/2022 01:38 PM,2022-01-25T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +APPROVED BY GOVERNOR 07/01/2021 10:30 AM,2021-07-15T04:00:00+00:00,['executive-signature'],MI,2021-2022 +passed; given immediate effect Roll Call # 222 Yeas 58 Nays 48 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +presented to the Governor 06/02/2022 11:36 AM,2022-06-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 03/15/2022 11:04 AM,2022-03-15T04:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/15/2022 11:02 AM,2022-03-15T04:00:00+00:00,['executive-signature'],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +enrollment vacated,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 79 Yeas 86 Nays 18 Excused 0 Not Voting 2,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/14/2021 09:44 AM,2021-12-14T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/16/2021 03:50 PM,2021-12-16T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +VETOED BY GOVERNOR 10/15/2021,2021-10-19T04:00:00+00:00,['executive-veto'],MI,2021-2022 +roll call Roll Call # 258 Yeas 0 Nays 109 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 05/05/2022 02:58 PM,2022-05-05T04:00:00+00:00,['executive-signature'],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +House conferees named 05/26/2021: Reps. Sarah L. Lightner Jeff Yaroch Cynthia A. Johnson,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/11/2022 01:56 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +SENATE REQUESTS RETURN,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/23/2021 10:16 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 06/24/2022 08:30 AM,2022-06-23T04:00:00+00:00,['executive-signature'],MI,2021-2022 +FULL TITLE AGREED TO,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/24/2022 08:32 AM,2022-06-23T04:00:00+00:00,['executive-signature'],MI,2021-2022 +PRESENTED TO GOVERNOR 11/02/2021 12:58 PM,2021-11-03T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +APPROVED BY GOVERNOR 07/29/2021 09:34 AM,2021-08-25T04:00:00+00:00,['executive-signature'],MI,2021-2022 +laid over one day under the rules,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +House conferees named 05/26/2021: Reps. Annette Glenn Scott A. VanSingel Shri Thanedar,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 06/22/2021 10:36 AM,2021-06-23T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +HOUSE AMENDMENT(S) CONCURRED IN ROLL CALL # 303 YEAS 36 NAYS 0 EXCUSED 1 NOT VOTING 1,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +House conferees named 05/26/2021: Reps. Brad Paquette Annette Glenn Regina Weiss,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 09/24/2021 09:48 AM,2021-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 483 Yeas 97 Nays 5 Excused 0 Not Voting 7,2022-12-06T05:00:00+00:00,['passage'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 292 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-08T04:00:00+00:00,['passage'],MI,2021-2022 +roll call Roll Call # 59 Yeas 91 Nays 14 Excused 0 Not Voting 1,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 131 Yeas 96 Nays 9 Excused 0 Not Voting 1,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) concurred in,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 501 YEAS 31 NAYS 5 EXCUSED 2 NOT VOTING 0,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +REASSIGNED TO COMMITTEE ON REGULATORY REFORM,2022-04-19T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 299 Yeas 109 Nays 0 Excused 0 Not Voting 1,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +substitute (H-2) adopted,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/05/2022 01:59 PM,2022-12-06T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/05/2022 02:09 PM,2022-12-06T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +passed; given immediate effect Roll Call # 225 Yeas 58 Nays 48 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. JIM STAMAS, WAYNE A SCHMIDT, CURTIS HERTEL",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/24/2021 08:19 AM,2021-06-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-4) with immediate effect and full title,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/19/2022 10:08 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ORDERED ENROLLED,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 406 YEAS 35 NAYS 0 EXCUSED 2 NOT VOTING 1,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 241 Yeas 0 Nays 106 Excused 0 Not Voting 4,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 06/28/2022 11:41 AM,2022-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/23/2022 12:16 PM,2022-06-23T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ORDERED ENROLLED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 115 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/11/2022 01:42 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 11/22/2021 12:58 PM,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 05/19/2022 10:42 AM,2022-05-19T04:00:00+00:00,['executive-signature'],MI,2021-2022 +INSERTED FULL TITLE,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 09/24/2021 09:50 AM,2021-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 05/05/2022 03:02 PM,2022-05-05T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 07/11/2022 08:08 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 07/21/2022 10:04 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 05/19/2022 11:44 AM,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Commerce and Tourism,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 04/07/2022 11:58 AM,2022-03-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +TITLE AMENDED,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 11/04/2021 10:50 AM,2021-11-09T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 02/23/2022 11:28 AM,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) ADOPTED,2022-05-04T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +ORDERED ENROLLED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 12:48 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ORDERED ENROLLED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ENROLLMENT VACATED,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 03/23/2022 10:42 AM,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 396 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 2,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/10/2022 10:08 AM,2022-03-10T05:00:00+00:00,['executive-signature'],MI,2021-2022 +vetoed by the Governor 04/14/2021,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/29/2022 01:00 PM,2022-06-29T04:00:00+00:00,['executive-signature'],MI,2021-2022 +House conferees named 06/21/2022: Reps. Sarah L. Lightner Thomas A. Albert Cynthia A. Johnson,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/16/2021 05:37 PM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +PRESENTED TO GOVERNOR 06/22/2021 10:42 AM,2021-06-23T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +PASSED BY 3/4 VOTE ROLL CALL # 466 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-12-08T05:00:00+00:00,['passage'],MI,2021-2022 +full title agreed to,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0125'21 WITH IMMEDIATE EFFECT,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ENROLLMENT VACATED,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-05-11T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/01/2021 10:44 AM,2021-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 243 Yeas 0 Nays 106 Excused 0 Not Voting 4,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 02/28/2022 11:10 AM,2022-02-24T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +passed; given immediate effect Roll Call # 215 Yeas 58 Nays 48 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +roll call Roll Call # 244 Yeas 1 Nays 105 Excused 0 Not Voting 4,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 04/28/2022 12:15 PM,2022-04-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +Senate substitute (S-4) concurred in,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0020'21 WITH IMMEDIATE EFFECT,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) concurred in as substituted (H-2),2021-10-19T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +DISCHARGE COMMITTEE APPROVED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 11/05/2021 11:27 AM,2021-11-09T05:00:00+00:00,['executive-signature'],MI,2021-2022 +House conferees named 06/21/2022: Reps. Sue Allor Thomas A. Albert Rachel Hood,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 11:58 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 06/28/2022 11:43 AM,2022-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and title amendment,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 12:42 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 09/24/2021 10:50 AM,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. WAYNE A SCHMIDT, JIM STAMAS, ROSEMARY BAYER",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/27/2022 01:39 PM,2022-12-28T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +APPROVED BY GOVERNOR 06/24/2021 08:23 AM,2021-06-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/13/2022 03:17 PM,2022-12-28T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 10/15/2021 02:05 PM,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/21/2022 10:34 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 635 Yeas 93 Nays 10 Excused 0 Not Voting 4,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/10/2022 12:00 PM,2022-06-09T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 10/03/2022 02:28 PM,2022-10-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/14/2021 09:38 AM,2021-12-14T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 165'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/24/2022 09:16 AM,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0165'21 WITH IMMEDIATE EFFECT,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/05/2022 05:04 PM,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/24/2022 09:14 AM,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/29/2021 11:08 AM,2021-08-25T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/07/2022 11:16 AM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:28 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/13/2022 02:12 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +POSTPONED FOR THE DAY,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/19/2022 09:50 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +PRESENTED TO GOVERNOR 05/17/2021 12:04 PM,2021-05-18T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +FULL TITLE AGREED TO,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +Senate requests return,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/17/2021 11:26 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +title amended,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0037'22,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/21/2022 09:56 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +laid over one day under the rules,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/23/2022 09:59 AM,2022-03-23T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 05/05/2022 02:56 PM,2022-05-05T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ROLL CALL: ROLL CALL # 204 YEAS 34 NAYS 0 EXCUSED 4 NOT VOTING 0,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 11/04/2021 09:50 AM,2021-11-09T05:00:00+00:00,['executive-signature'],MI,2021-2022 +FULL TITLE AGREED TO,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/23/2021 10:38 AM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 03/28/2022 01:42 PM,2022-03-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 10/05/2022 12:27 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/23/2021 10:02 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +House conferees named 05/26/2021: Reps. Brad Paquette Annette Glenn Regina Weiss,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/26/2022 01:38 PM,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 218 Yeas 58 Nays 48 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +approved by the Governor 03/10/2022 10:12 AM,2022-03-10T05:00:00+00:00,['executive-signature'],MI,2021-2022 +FULL TITLE AGREED TO,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 579 Yeas 96 Nays 3 Excused 0 Not Voting 8,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/29/2022 02:20 PM,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/15/2022 11:42 AM,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/15/2022 11:44 AM,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 250 Yeas 0 Nays 109 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/23/2022 10:04 AM,2022-06-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 06/10/2022 11:48 AM,2022-06-09T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +rule suspended,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 213 Yeas 97 Nays 8 Excused 0 Not Voting 5,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Tommy Brann Thomas A. Albert Tyrone Carter,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Communications and Technology,2021-04-14T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 111 YEAS 24 NAYS 14 EXCUSED 0 NOT VOTING 0,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/10/2022 11:20 AM,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Thomas A. Albert Greg VanWoerkom Joe Tate,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +Senate requests return,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/01/2021 01:14 PM,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/14/2022 11:50 AM,2022-06-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 02/01/2022 12:34 PM,2022-02-01T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 07/01/2021 01:30 PM,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 06/23/2022: SENS. JOHN BIZON, JIM STAMAS, ADAM HOLLIER",2022-06-23T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/17/2021 04:28 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/16/2021 03:52 PM,2021-12-16T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 402 YEAS 32 NAYS 5 EXCUSED 1 NOT VOTING 0,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/01/2021 10:28 AM,2021-07-15T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 06/21/2022 10:36 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 05/17/2021 12:02 PM,2021-05-18T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +SUBSTITUTE (S-3) ADOPTED,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Jeff Yaroch Thomas A. Albert Ronnie Dean Peterson,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/29/2022 01:28 PM,2022-06-30T04:00:00+00:00,['executive-signature'],MI,2021-2022 +FULL TITLE AGREED TO,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/13/2022 02:04 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 212 YEAS 0 NAYS 36 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-2) CONCURRED IN AS AMENDED,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/25/2022 10:44 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/21/2022 10:00 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +APPROVED BY GOVERNOR 07/11/2022 08:00 AM,2022-07-20T04:00:00+00:00,['executive-signature'],MI,2021-2022 +full title agreed to,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/05/2022 05:00 PM,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/19/2022 11:30 AM,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. JOHN BIZON, JIM STAMAS, ADAM HOLLIER",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/30/2021 01:44 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 115'21 with immediate effect,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with title amendment,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 09/24/2021 10:52 AM,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 12:02 PM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. JON BUMSTEAD, JIM STAMAS, SEAN MCCANN",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0085'22 WITH IMMEDIATE EFFECT,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/24/2021 11:04 AM,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/11/2022 12:10 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/02/2022 11:46 AM,2022-06-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 11/30/2021 09:35 AM,2021-12-01T05:00:00+00:00,['executive-signature'],MI,2021-2022 +laid over one day under the rules,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 02/01/2022 01:46 PM,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/21/2022 11:28 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/13/2022 02:08 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 80 Yeas 104 Nays 0 Excused 0 Not Voting 2,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/29/2022 02:12 PM,2022-06-29T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +roll call Roll Call # 239 Yeas 0 Nays 106 Excused 0 Not Voting 4,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/13/2022 01:58 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 11/05/2021 01:39 PM,2021-11-09T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +roll call Roll Call # 261 Yeas 0 Nays 109 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/26/2022 03:03 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 04/07/2022 02:48 PM,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/29/2022 02:34 PM,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 227 YEAS 0 NAYS 36 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-07-27T04:00:00+00:00,[],MI,2021-2022 +Senate amendment(s) concurred in by 3/4 vote Roll Call # 387 Yeas 103 Nays 5 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 04/07/2022 02:52 PM,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 07/01/2022,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. JIM STAMAS, JIM RUNESTAD, ADAM HOLLIER",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/29/2022 02:36 PM,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 03/15/2022 11:08 AM,2022-03-16T04:00:00+00:00,['executive-signature'],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 226 YEAS 0 NAYS 36 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 220 YEAS 0 NAYS 36 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 221 YEAS 0 NAYS 36 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/29/2021 11:12 AM,2021-11-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 11/10/2021 04:10 PM,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-3) with immediate effect and title amendment,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/17/2021 11:24 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +rule suspended,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/22/2022 01:54 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +ROLL CALL: ROLL CALL # 398 YEAS 35 NAYS 2 EXCUSED 1 NOT VOTING 0,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/01/2021 01:20 PM,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 252 Yeas 1 Nays 108 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 02/01/2022 12:36 PM,2022-02-01T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 06/15/2021 02:22 PM,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/01/2021 10:26 AM,2021-07-15T04:00:00+00:00,['executive-signature'],MI,2021-2022 +PRESENTED TO GOVERNOR 05/17/2022 11:41 AM,2022-05-18T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 10/29/2021 10:11 AM,2021-11-02T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 06/06/2022 08:52 AM,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 505 YEAS 24 NAYS 12 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/01/2021 01:26 PM,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/11/2022 10:52 AM,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 11:56 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 12/17/2021 11:28 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 253 Yeas 0 Nays 109 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/10/2022 11:58 AM,2022-06-09T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +FULL TITLE AGREED TO,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/29/2022 02:30 PM,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 506 YEAS 25 NAYS 11 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-3) with immediate effect and title amendment,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/29/2022 02:02 PM,2022-06-29T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +rule suspended,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/23/2021 10:46 AM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate without amendment with full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +placed on immediate passage,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/29/2022 02:10 PM,2022-06-29T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +rule suspended,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/30/2022 10:10 AM,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 10/14/2022,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/21/2022 10:46 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 06/14/2022 02:56 PM,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 84 Yeas 99 Nays 5 Excused 0 Not Voting 2,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 11/04/2021 09:46 AM,2021-11-04T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 11/17/2021 02:53 PM,2021-11-30T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:48 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +Senate amendment(s) concurred in Roll Call # 429 Yeas 104 Nays 4 Excused 0 Not Voting 2,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/27/2021 01:02 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 500 YEAS 32 NAYS 4 EXCUSED 2 NOT VOTING 0,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/26/2022 03:01 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 255 Yeas 1 Nays 108 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 328 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/23/2021 10:48 AM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. ROGER VICTORY, JIM STAMAS, SEAN MCCANN",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 11/22/2021 01:00 PM,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/21/2022 10:06 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ROLL CALL: ROLL CALL # 468 YEAS 33 NAYS 0 EXCUSED 5 NOT VOTING 0,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/23/2022 10:02 AM,2022-06-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ORDERED ENROLLED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/29/2022 10:04 AM,2022-03-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 05/26/2022 01:40 PM,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/23/2022 10:06 AM,2022-06-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 12/23/2021 10:26 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 09/26/2022 03:15 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 12/13/2022 11:36 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 163 Yeas 80 Nays 22 Excused 0 Not Voting 4,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/23/2022 10:08 AM,2022-06-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 05/26/2022 10:58 AM,2022-06-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 9'21 with immediate effect,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) nonconcurred in,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/07/2022 05:08 PM,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 06/03/2021,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-5) concurred in,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/27/2022 01:35 PM,2022-12-28T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 07/19/2022 10:04 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 493 Yeas 106 Nays 0 Excused 0 Not Voting 3,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 02/09/2022 02:38 PM,2022-02-10T05:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 06/29/2022 01:06 PM,2022-06-29T04:00:00+00:00,['executive-signature'],MI,2021-2022 +PRESENTED TO GOVERNOR 12/13/2022 03:07 PM,2022-12-28T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +ROLL CALL: ROLL CALL # 109 YEAS 34 NAYS 3 EXCUSED 1 NOT VOTING 0,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 504 Yeas 94 Nays 3 Excused 0 Not Voting 12,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and title amendment,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 02/01/2022 01:48 PM,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0074'22 WITH IMMEDIATE EFFECT,2022-05-17T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with full title,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and full title,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. JON BUMSTEAD, JIM STAMAS, SEAN MCCANN",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. ARIC NESBITT, JIM STAMAS, SYLVIA A SANTANA",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) concurred in,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 06/23/2022: SENS. WAYNE A SCHMIDT, JIM STAMAS, ADAM HOLLIER",2022-06-23T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/21/2022 01:30 PM,2022-03-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +vetoed by the Governor 07/13/2021,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +read a third time,2022-05-18T04:00:00+00:00,['reading-3'],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Jeff Yaroch Thomas A. Albert Ronnie Dean Peterson,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/05/2022 05:02 PM,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +assigned PA 22'21,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/24/2022 09:12 AM,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/01/2021 10:34 AM,2021-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +VETOED BY GOVERNOR 11/05/2021,2021-11-09T05:00:00+00:00,['executive-veto'],MI,2021-2022 +approved by the Governor 07/19/2022 10:02 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +INSERTED FULL TITLE,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Sue Allor Thomas A. Albert Rachel Hood,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 558 Yeas 103 Nays 2 Excused 0 Not Voting 4,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. RICK OUTMAN, JIM STAMAS, CURTIS HERTEL, JR.",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/25/2022 09:32 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 15'22 with immediate effect,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/17/2021 04:30 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 03/02/2021 12:54 PM,2021-03-03T05:00:00+00:00,['executive-signature'],MI,2021-2022 +DEFEATED ROLL CALL # 224 YEAS 0 NAYS 36 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 11/05/2021 01:33 PM,2021-11-09T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-05-25T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 05/17/2021 12:00 PM,2021-05-18T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ORDERED ENROLLED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 222 YEAS 0 NAYS 36 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 04/07/2022 12:04 PM,2022-03-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate amendment(s) concurred in Roll Call # 349 Yeas 104 Nays 2 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 479 Yeas 103 Nays 0 Excused 0 Not Voting 6,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 02/23/2022 11:30 AM,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Oversight,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/30/2021 01:42 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 02/23/2022 10:32 AM,2022-02-23T05:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate substitute (S-1) concurred in by 3/4 vote,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/16/2022 04:58 PM,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/05/2022 02:03 PM,2022-12-06T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +title amendment agreed to,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 01:06 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/14/2022 02:48 PM,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/05/2022 12:25 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 12/28/2022 02:40 PM,2022-12-31T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +re-referred to Committee on Judiciary,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) concurred in,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 25'22 with immediate effect,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +assigned PA 21'21,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/29/2022 01:04 PM,2022-06-29T04:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 281 Yeas 94 Nays 13 Excused 0 Not Voting 3,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-3) with immediate effect and title amendment,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 04/08/2021 11:20 AM,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/30/2021 01:40 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 05/17/2021 11:58 AM,2021-05-18T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 360 YEAS 21 NAYS 15 EXCUSED 0 NOT VOTING 0,2021-09-30T04:00:00+00:00,['passage'],MI,2021-2022 +filed with Secretary of State 05/13/2021 10:36 AM,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +Senate amendment(s) concurred in Roll Call # 382 Yeas 104 Nays 4 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:26 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 06/10/2021 02:30 PM,2021-06-15T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 11/04/2021 02:42 PM,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 180 Yeas 101 Nays 2 Excused 0 Not Voting 3,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 07/01/2022,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 09/27/2022 01:34 PM,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 06/09/2021 02:36 PM,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 05/10/2021 01:04 PM,2021-05-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +rule suspended,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/25/2022 10:34 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/30/2021 01:46 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0173'22 WITH IMMEDIATE EFFECT,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 03/23/2022 01:26 PM,2022-03-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 12/17/2021 11:30 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +assigned PA 131'22 with immediate effect,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +Senate amendment(s) concurred in by 3/4 vote Roll Call # 391 Yeas 102 Nays 6 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/06/2022 08:54 AM,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:22 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-10-27T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 11:32 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 06/23/2022: SENS. JOHN BIZON, JIM STAMAS, ADAM HOLLIER",2022-06-23T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/29/2021 09:32 AM,2021-08-25T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 05/19/2022 11:28 AM,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/26/2022 03:19 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +Senate substitute (S-4) concurred in,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/10/2022 12:02 PM,2022-06-09T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/02/2022 01:12 PM,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/21/2022 01:32 PM,2022-03-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +POSTPONED FOR THE DAY,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/13/2021 04:52 PM,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 05/21/2021 11:04 AM,2021-05-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +Senate amendment(s) concurred in Roll Call # 505 Yeas 82 Nays 15 Excused 0 Not Voting 12,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 12:04 PM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 07/07/2022 11:10 AM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +DEFEATED ROLL CALL # 218 YEAS 0 NAYS 36 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 11/04/2021 02:38 PM,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +assigned PA 128'21,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/29/2022 02:28 PM,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/17/2021 04:16 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/13/2021 10:32 AM,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 06/23/2022: SENS. JON BUMSTEAD, JIM STAMAS, SEAN MCCANN",2022-06-23T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/17/2021 04:22 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/16/2021 03:58 PM,2021-12-16T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 12/13/2022 11:54 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 07/21/2021 03:18 PM,2021-07-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 12/13/2022 12:06 PM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. JOHN BIZON, JIM STAMAS, ADAM HOLLIER",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) ADOPTED,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 437 YEAS 32 NAYS 4 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 04/26/2022 10:52 AM,2022-04-26T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 12/13/2022 11:22 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +roll call Roll Call # 237 Yeas 0 Nays 106 Excused 0 Not Voting 4,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 85 Yeas 99 Nays 5 Excused 0 Not Voting 2,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/07/2021 08:11 AM,2021-12-07T05:00:00+00:00,['executive-signature'],MI,2021-2022 +APPROVED BY GOVERNOR 07/19/2022 09:40 AM,2022-07-20T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ORDERED ENROLLED,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Tommy Brann Thomas A. Albert Tyrone Carter,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/19/2022 12:18 PM,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 06/02/2022 11:30 AM,2022-06-07T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/29/2021 11:14 AM,2021-11-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ASSIGNED PA 0036'22,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/29/2021 11:52 AM,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-06-30T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +returned from Senate with substitute (S-1) with title amendment,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/10/2022 10:16 AM,2022-03-10T05:00:00+00:00,['executive-signature'],MI,2021-2022 +PRESENTED TO GOVERNOR 09/28/2021 09:12 AM,2021-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/10/2022 11:18 AM,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 04/07/2022 02:50 PM,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/07/2022 05:04 PM,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/23/2022 09:51 AM,2022-03-23T04:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate requests return,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +"Reps. Tullio Liberati, Darrin Camilleri, Ranjeev Puri removed as co-sponsors",2021-06-17T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/27/2022 01:37 PM,2022-12-28T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 03/23/2022 09:47 AM,2022-03-23T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 101'21,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 05/19/2022 10:52 AM,2022-05-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 29'21,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/22/2022 02:04 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 03/23/2022 10:56 AM,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 343 Yeas 91 Nays 16 Excused 0 Not Voting 3,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/23/2022 09:43 AM,2022-03-23T04:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate with substitute (S-5) with full title,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/13/2021 04:32 PM,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 260 Yeas 0 Nays 109 Excused 0 Not Voting 1,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/19/2022 12:28 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/29/2022 02:32 PM,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/29/2022 02:38 PM,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/21/2022 10:48 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 11/04/2021 02:40 PM,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 06/10/2021 02:28 PM,2021-06-15T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 77'22 with immediate effect,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Judiciary,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/11/2021 10:18 AM,2021-06-10T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ORDERED ENROLLED,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +assigned PA 164'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +referred to conference committee 06/23/2022,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/19/2022 09:30 AM,2022-07-20T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ROLL CALL: ROLL CALL # 97 YEAS 20 NAYS 14 EXCUSED 2 NOT VOTING 0,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 12:56 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +"SENATE NAMED CONFEREES 06/23/2022: SENS. TOM BARRETT, JIM STAMAS, ADAM HOLLIER",2022-06-23T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +referred to conference committee 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/19/2022 12:02 PM,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/19/2022 12:24 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Brad Paquette Thomas A. Albert Regina Weiss,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +assigned PA 127'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +referred to conference committee 06/23/2022,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0124'21 WITH IMMEDIATE EFFECT,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 04/01/2022,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/14/2022 11:58 AM,2022-06-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +assigned PA 92'22 with immediate effect,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 323 YEAS 34 NAYS 0 EXCUSED 2 NOT VOTING 0,2021-06-30T04:00:00+00:00,['passage'],MI,2021-2022 +APPROVED BY GOVERNOR 03/29/2022 10:02 AM,2022-04-12T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0180'22 WITH IMMEDIATE EFFECT,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +assigned PA 191'22 with immediate effect,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 04/21/2021 02:32 PM,2021-04-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/13/2022 02:02 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 104'22 with immediate effect,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 02/23/2022 11:26 AM,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 02/07/2022 01:32 PM,2022-02-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +assigned PA 16'22 with immediate effect,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/24/2022 08:36 AM,2022-06-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 1 Yeas 76 Nays 25 Excused 0 Not Voting 5,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +assigned PA 114'22 with immediate effect,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +assigned PA 94'21 with immediate effect,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +BECAME LAW WITHOUT GOVERNOR'S SIGNATURE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 10/07/2021 02:00 PM,2021-10-12T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/23/2022 10:54 AM,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/23/2022 10:50 AM,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +assigned PA 44'22 with immediate effect,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/23/2022 10:46 AM,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +assigned PA 126'22 with immediate effect,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/02/2021 01:33 PM,2021-12-07T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +roll call Roll Call # 597 Yeas 98 Nays 4 Excused 0 Not Voting 5,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/14/2022 11:52 AM,2022-10-13T04:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate with substitute (S-2) with full title,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0159'22 WITH IMMEDIATE EFFECT,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +assigned PA 146'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/23/2021 10:34 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. JIM STAMAS, JIM RUNESTAD, ADAM HOLLIER",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +assigned PA 144'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 217 YEAS 0 NAYS 36 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. WAYNE A SCHMIDT, JIM STAMAS, ROSEMARY BAYER",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/26/2022 03:07 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +APPROVED BY GOVERNOR 12/23/2021 10:54 AM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 02:04 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 12/07/2021 02:44 PM,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 458 Yeas 97 Nays 7 Excused 0 Not Voting 5,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/26/2022 03:13 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 10/05/2022 12:15 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +roll call Roll Call # 56 Yeas 101 Nays 4 Excused 0 Not Voting 1,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +assigned PA 13'21 with immediate effect,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/22/2022 03:50 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/07/2022 03:46 PM,2022-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 05/03/2021 11:10 AM,2021-05-04T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 11'21 with immediate effect,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and title amendment,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +assigned PA 176'22 with immediate effect,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +assigned PA 203'22 with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) concurred in,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 255 YEAS 0 NAYS 35 EXCUSED 3 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 345 Yeas 105 Nays 2 Excused 0 Not Voting 3,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0025'21 WITH IMMEDIATE EFFECT,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +assigned PA 100'21 with immediate effect,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 11/04/2021 01:15 PM,2021-11-09T05:00:00+00:00,['executive-signature'],MI,2021-2022 +HOUSE SUBSTITUTE (H-3) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +assigned PA 63'22,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +assigned PA 98'21 with immediate effect,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +assigned PA 129'22 with immediate effect,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 05/24/2021 12:38 PM,2021-05-26T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 6'21 with immediate effect,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +assigned PA 98'22 with immediate effect,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 05/19/2022 11:40 AM,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +"Reps. Felicia Brabec, Joe Tate, John Cherry removed as co-sponsors",2021-06-17T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 11:12 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +roll call Roll Call # 91 Yeas 95 Nays 10 Excused 0 Not Voting 1,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/29/2021 09:42 AM,2021-07-21T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 12/22/2022 02:38 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 12/22/2022 02:26 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 12/22/2022 02:36 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 124'22 with immediate effect,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/21/2021 10:52 AM,2021-07-27T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +VETOED BY GOVERNOR 05/19/2021,2021-05-20T04:00:00+00:00,['executive-veto'],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/29/2022 01:00 PM,2022-12-31T05:00:00+00:00,['executive-signature'],MI,2021-2022 +full title agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 07/21/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/28/2022 02:42 PM,2022-12-31T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 12/13/2022 12:00 PM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +rule suspended,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/29/2022 01:04 PM,2022-12-31T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 03/10/2022 11:28 AM,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +POSTPONED TEMPORARILY,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +assigned PA 21'22 with immediate effect,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +assigned PA 56'22 with immediate effect,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +SENATE REQUESTS RETURN,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +assigned PA 54'21 with immediate effect,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/13/2021 10:02 AM,2021-07-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 06/30/2021 01:54 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/29/2022 02:24 PM,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/13/2021 10:00 AM,2021-07-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/13/2022 03:09 PM,2022-12-28T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +postponed temporarily,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +Senate amendment(s) concurred in by 3/4 vote Roll Call # 392 Yeas 103 Nays 5 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/13/2021 10:06 AM,2021-07-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +full title agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/22/2022 02:02 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 44'21 with immediate effect,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0064'21 WITH IMMEDIATE EFFECT,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 355 Yeas 92 Nays 18 Excused 0 Not Voting 0,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 06/03/2021,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +assigned PA 99'21 with immediate effect,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN AS SUBSTITUTED (S-3),2021-10-06T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 04/26/2022 11:30 AM,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/22/2022 02:24 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +FULL TITLE AGREED TO,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/21/2022 11:20 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +request granted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/30/2021 01:56 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 69'22 with immediate effect,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/19/2022 12:12 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/14/2022 02:44 PM,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +vote on concurring reconsidered,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +House conferees named 05/26/2021: Reps. Scott A. VanSingel Ken Borton Samantha Steckloff,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/21/2022 11:24 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. WAYNE A SCHMIDT, JIM STAMAS, ROSEMARY BAYER",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF MESSAGES FROM THE HOUSE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 344 Yeas 107 Nays 0 Excused 0 Not Voting 3,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. ROGER VICTORY, JIM STAMAS, SEAN MCCANN",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0070'21 WITH IMMEDIATE EFFECT,2021-08-25T04:00:00+00:00,[],MI,2021-2022 +assigned PA 86'22 with immediate effect,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +House conferees named 05/26/2021: Reps. Greg VanWoerkom Ann Bollin Terry J. Sabo,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 07/01/2022,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +amended,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 07/01/2022,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/23/2022 11:02 AM,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +referred to conference committee 06/23/2022,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +assigned PA 130'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 11:20 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate without amendment with immediate effect,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 06/23/2022: SENS. TOM BARRETT, JIM STAMAS, ADAM HOLLIER",2022-06-23T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 06/23/2022: SENS. JON BUMSTEAD, JIM STAMAS, SEAN MCCANN",2022-06-23T04:00:00+00:00,[],MI,2021-2022 +referred to conference committee 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) ADOPTED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/23/2021 10:40 AM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 06/23/2022 03:02 PM,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 02:02 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 06/23/2022 10:00 AM,2022-06-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 06/23/2022 02:58 PM,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/13/2022 04:14 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/13/2022 04:06 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 02/01/2022 01:50 PM,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +assigned PA 32'22 with immediate effect,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +assigned PA 31'22 with immediate effect,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:14 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/27/2021 12:50 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +referred to conference committee 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/23/2021 10:30 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +PRESENTED TO GOVERNOR 03/29/2022 10:57 AM,2022-04-12T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 147'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +assigned PA 115'22 with immediate effect,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +assigned PA 116'22 with immediate effect,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 124 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 06/24/2021 11:08 AM,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/29/2022 01:06 PM,2022-12-31T05:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate with substitute (S-3) with immediate effect and title amendment,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 11:48 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 06/11/2021 10:22 AM,2021-06-10T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 12/13/2022 04:00 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Greg VanWoerkom Thomas A. Albert Terry J. Sabo,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +assigned PA 33'21 with immediate effect,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 385 Yeas 104 Nays 4 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/11/2022 12:02 PM,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 347 Yeas 105 Nays 2 Excused 0 Not Voting 3,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN AS SUBSTITUTED (S-3),2021-10-07T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +assigned PA 141'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/11/2022 08:12 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 55'22 with immediate effect,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 11/05/2021 02:17 PM,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/14/2022 11:46 AM,2022-06-16T04:00:00+00:00,['executive-signature'],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 04/07/2022 12:08 PM,2022-03-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 580 Yeas 70 Nays 33 Excused 0 Not Voting 4,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/23/2021 09:58 AM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +ORDERED ENROLLED,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 11/04/2021 02:56 PM,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 203 YEAS 34 NAYS 0 EXCUSED 4 NOT VOTING 0,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/07/2022 03:58 PM,2022-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 07/19/2022 12:30 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 11:42 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +ROLL CALL: ROLL CALL # 271 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 501 Yeas 81 Nays 16 Excused 0 Not Voting 12,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-04-20T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/13/2021 10:04 AM,2021-07-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 480 Yeas 101 Nays 2 Excused 0 Not Voting 6,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 11/11/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 499 Yeas 74 Nays 23 Excused 0 Not Voting 12,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 1'22 with immediate effect,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 252 YEAS 0 NAYS 34 EXCUSED 4 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/22/2022 02:42 PM,2022-12-28T05:00:00+00:00,['executive-signature'],MI,2021-2022 +"SENATE NAMED CONFEREES 06/23/2022: SENS. ARIC NESBITT, JIM STAMAS, SYLVIA A SANTANA",2022-06-23T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +title amended,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/22/2022 02:30 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +assigned PA 120'22 with immediate effect,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 06/29/2022 01:20 PM,2022-06-30T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0085'21 WITH IMMEDIATE EFFECT,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +assigned PA 78'22 with immediate effect,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/30/2022 10:12 AM,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Thomas A. Albert Brad Paquette Joe Tate,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 260 YEAS 0 NAYS 36 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/13/2022 04:10 PM,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0084'21 WITH IMMEDIATE EFFECT,2021-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) concurred in,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +request granted,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +HOUSE AMENDMENT(S) CONCURRED IN ROLL CALL # 304 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +referred to conference committee 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 427 Yeas 92 Nays 16 Excused 0 Not Voting 2,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +request granted,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/29/2021 11:06 AM,2021-11-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 11/03/2021 01:48 PM,2021-11-03T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +vetoed by the Governor 10/14/2022,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 11/30/2021 02:56 PM,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0090'21 WITH IMMEDIATE EFFECT,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 11/02/2021 01:02 PM,2021-11-03T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 12/13/2022 11:52 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +House conferees named 05/26/2021: Reps. Tommy Brann Andrew Fink Tyrone Carter,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +assigned PA 46'21,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +assigned PA 185'22 with immediate effect,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-02-22T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/01/2021 01:12 PM,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 354 Yeas 106 Nays 4 Excused 0 Not Voting 0,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +assigned PA 22'22 with immediate effect,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 297 Yeas 102 Nays 7 Excused 0 Not Voting 1,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 05/24/2021 12:44 PM,2021-05-26T04:00:00+00:00,['executive-signature'],MI,2021-2022 +APPROVED BY GOVERNOR 10/07/2022 03:30 PM,2022-10-11T04:00:00+00:00,['executive-signature'],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 05/24/2021 12:40 PM,2021-05-26T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 03/10/2022 11:24 AM,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 01:18 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +APPROVED BY GOVERNOR 05/24/2021 12:42 PM,2021-05-26T04:00:00+00:00,['executive-signature'],MI,2021-2022 +laid over one day under the rules,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/22/2022 02:34 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 68 Yeas 101 Nays 3 Excused 0 Not Voting 2,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0038'21 WITH IMMEDIATE EFFECT,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 213 YEAS 0 NAYS 36 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/14/2022 11:56 AM,2022-06-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 71'22 with immediate effect,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/23/2021 10:32 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/19/2022 09:28 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 05/05/2022 04:58 PM,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/19/2022 09:36 AM,2022-07-20T04:00:00+00:00,['executive-signature'],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +assigned PA 127'22 with immediate effect,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/06/2021 09:35 AM,2021-12-02T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 11/04/2021 09:38 AM,2021-11-09T05:00:00+00:00,['executive-signature'],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/29/2022 01:02 PM,2022-12-31T05:00:00+00:00,['executive-signature'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +assigned PA 29'22 with immediate effect,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0102'22 WITH IMMEDIATE EFFECT,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/21/2021 10:42 AM,2021-07-27T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 12/13/2022 11:24 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 02/09/2022 03:32 PM,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +referred to conference committee 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-4) CONCURRED IN,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +Senate amendment(s) concurred in Roll Call # 326 Yeas 94 Nays 11 Excused 0 Not Voting 5,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +assigned PA 116'21 with immediate effect,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 03/11/2021 11:50 AM,2021-03-16T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +roll call Roll Call # 58 Yeas 103 Nays 2 Excused 0 Not Voting 1,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 04/01/2022,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 10/05/2022 10:54 AM,2022-10-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 03/15/2022 11:48 AM,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/02/2022 04:01 PM,2022-12-06T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +FULL TITLE AGREED TO,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-4) concurred in,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 11/04/2021 02:54 PM,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/11/2022 08:10 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +laid over one day under the rules,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 506 Yeas 94 Nays 3 Excused 0 Not Voting 12,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/29/2022 10:46 AM,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/01/2021 03:17 PM,2021-09-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 05/26/2022 01:44 PM,2022-06-01T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Oversight,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +assigned PA 2'22,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 11/10/2021 03:44 PM,2021-11-30T05:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 384 Yeas 105 Nays 3 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 219 Yeas 58 Nays 48 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,['passage'],MI,2021-2022 +PRESENTED TO GOVERNOR 10/05/2022 11:00 AM,2022-10-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 39 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. KIMBERLY LASATA, JIM STAMAS, JEFF IRWIN",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 263 YEAS 0 NAYS 36 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +House conferees named 05/26/2021: Reps. Mark E. Huizenga Steven Johnson Felicia Brabec,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +assigned PA 91'22 with immediate effect,2022-06-02T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +referred to conference committee 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/23/2022 10:10 AM,2022-06-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +laid over one day under the rules,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and title amendment,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 258 YEAS 0 NAYS 36 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 442 YEAS 36 NAYS 0 EXCUSED 2 NOT VOTING 0,2022-09-28T04:00:00+00:00,['passage'],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 298 Yeas 102 Nays 7 Excused 0 Not Voting 1,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/07/2022 03:56 PM,2022-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 07/11/2022 08:02 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 06/23/2022 02:56 PM,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/23/2022 03:00 PM,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) concurred in by 3/4 vote,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +assigned PA 205'22 with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 219 YEAS 0 NAYS 36 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +referred to conference committee 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/22/2022 02:48 PM,2022-12-28T05:00:00+00:00,['executive-signature'],MI,2021-2022 +full title agreed to,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +referred to conference committee 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +referred to conference committee 06/23/2022,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +House conferees named 05/26/2021: Reps. Jeff Yaroch Matt Maddock Ronnie Dean Peterson,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 06/23/2022: SENS. ARIC NESBITT, JIM STAMAS, SYLVIA A SANTANA",2022-06-23T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/05/2022 12:31 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +"SENATE NAMED CONFEREES 06/23/2022: SENS. ROGER VICTORY, JIM STAMAS, SEAN MCCANN",2022-06-23T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 215 YEAS 0 NAYS 36 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. JON BUMSTEAD, JIM STAMAS, SEAN MCCANN",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +Senate amendment(s) concurred in Roll Call # 428 Yeas 104 Nays 4 Excused 0 Not Voting 2,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 04/07/2022 02:54 PM,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. JIM STAMAS, JIM RUNESTAD, ADAM HOLLIER",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. KIMBERLY LASATA, JIM STAMAS, JEFF IRWIN",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +assigned PA 128'22 with immediate effect,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Elections and Ethics,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +assigned PA 113'21 with immediate effect,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/05/2022 02:07 PM,2022-12-06T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +assigned PA 57'22,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. ARIC NESBITT, JIM STAMAS, SYLVIA A SANTANA",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 02/01/2022 01:52 PM,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/23/2021 10:28 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 12/22/2022 03:40 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 41'21 with immediate effect,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +assigned PA 28'21,2021-06-15T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 06/15/2021 01:02 PM,2021-06-16T04:00:00+00:00,['executive-signature'],MI,2021-2022 +APPROVED BY GOVERNOR 05/19/2022 10:54 AM,2022-05-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/01/2021 01:10 PM,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +House conferees named 05/26/2021: Reps. Mark E. Huizenga Steven Johnson Felicia Brabec,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 240 Yeas 1 Nays 105 Excused 0 Not Voting 4,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/29/2021 11:54 AM,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/05/2022 12:03 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +FULL TITLE AGREED TO,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/05/2022 12:23 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/29/2021 11:18 AM,2021-11-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 125'22 with immediate effect,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/24/2022 08:34 AM,2022-06-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/27/2021 12:58 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +read a third time,2021-03-10T05:00:00+00:00,['reading-3'],MI,2021-2022 +full title agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +assigned PA 133'22 with immediate effect,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Oversight,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +assigned PA 157'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0164'21 WITH IMMEDIATE EFFECT,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 500 Yeas 75 Nays 22 Excused 0 Not Voting 12,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/27/2021 01:00 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/21/2022 11:30 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 05/17/2022 11:45 AM,2022-05-18T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +referred to conference committee 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 248 Yeas 0 Nays 106 Excused 0 Not Voting 4,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 503 YEAS 33 NAYS 3 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +assigned PA 87'22 with immediate effect,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:38 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 12:46 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 12/22/2022 02:06 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +returned from Senate with substitute (S-1) with full title,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/22/2022 02:28 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 235 Yeas 0 Nays 106 Excused 0 Not Voting 4,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with immediate effect and full title,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/19/2022 12:26 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/29/2022 02:26 PM,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and title amendment,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 96 Yeas 101 Nays 0 Excused 0 Not Voting 5,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/07/2022 03:42 PM,2022-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +re-referred to Committee on Tax Policy,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 12:58 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate with substitute (S-3) with immediate effect and full title,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +assigned PA 70'22 with immediate effect,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 11/30/2021,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/01/2021 01:18 PM,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +returned from Senate without amendment with full title,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 03/02/2021 02:19 PM,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/29/2021 11:06 AM,2021-08-25T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/25/2022 10:46 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +assigned PA 131'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/21/2021 03:20 PM,2021-07-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +rule suspended,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 11/10/2021 04:06 PM,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 342 Yeas 96 Nays 11 Excused 0 Not Voting 3,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/16/2021 10:37 AM,2021-07-27T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. ARIC NESBITT, JIM STAMAS, SYLVIA A SANTANA",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/24/2022 09:18 AM,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 06/23/2022: SENS. KIMBERLY LASATA, JIM STAMAS, JEFF IRWIN",2022-06-30T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 476 Yeas 102 Nays 0 Excused 0 Not Voting 7,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 12/22/2022,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 478 Yeas 99 Nays 3 Excused 0 Not Voting 7,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 10/07/2022 04:00 PM,2022-10-11T04:00:00+00:00,['executive-signature'],MI,2021-2022 +PRESENTED TO GOVERNOR 12/13/2022 03:21 PM,2022-12-28T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/22/2022 04:34 PM,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 10/05/2022 10:52 AM,2022-10-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 06/23/2022 03:04 PM,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 388 Yeas 90 Nays 18 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +assigned PA 109'22 with immediate effect,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 225 YEAS 0 NAYS 36 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/07/2022 05:16 PM,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +assigned PA 111'22 with immediate effect,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 477 Yeas 93 Nays 9 Excused 0 Not Voting 7,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +referred to conference committee 06/23/2022,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +referred to conference committee 06/23/2022,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/14/2022 11:58 AM,2022-10-13T04:00:00+00:00,['executive-signature'],MI,2021-2022 +full title agreed to,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +assigned PA 58'22 with immediate effect,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/23/2022 12:22 PM,2022-06-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 242'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/13/2022 02:06 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0036'21 WITH IMMEDIATE EFFECT,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Ben Frederick Thomas A. Albert Samantha Steckloff,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +re-returned from Senate with substitute (S-3) to House substitute (H-1),2021-04-21T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 11/05/2021,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +SENATE REQUESTS RETURN,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +assigned PA 177'22 with immediate effect,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/03/2022 02:52 PM,2022-03-03T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +FULL TITLE AGREED TO,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 167 Yeas 102 Nays 0 Excused 0 Not Voting 4,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 05/19/2022 10:46 AM,2022-05-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/19/2022 09:48 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 12/22/2022 04:14 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +assigned PA 163'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +assigned PA 123'22 with immediate effect,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/19/2022 09:44 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +assigned PA 40'21 with immediate effect,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 12:44 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 10/05/2022 10:56 AM,2022-10-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ASSIGNED PA 0069'21 WITH IMMEDIATE EFFECT,2021-08-25T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/29/2021 09:44 AM,2021-07-21T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 12/16/2021 05:29 PM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +APPROVED BY GOVERNOR 07/29/2021 09:30 AM,2021-08-25T04:00:00+00:00,['executive-signature'],MI,2021-2022 +APPROVED BY GOVERNOR 10/14/2022 12:02 PM,2022-11-09T05:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Elections and Ethics,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0034'22 WITH IMMEDIATE EFFECT,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +assigned PA 106'21 with immediate effect,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +ENROLLMENT VACATED,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +assigned PA 52'22 with immediate effect,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 10/07/2021,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/11/2022 12:12 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/13/2022 02:16 PM,2022-12-28T05:00:00+00:00,['executive-signature'],MI,2021-2022 +VETOED BY GOVERNOR 03/24/2021,2021-03-25T04:00:00+00:00,['executive-veto'],MI,2021-2022 +ORDERED ENROLLED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 342 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0006'22 WITH IMMEDIATE EFFECT,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/29/2022 01:40 PM,2022-12-31T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 02/07/2022 01:34 PM,2022-02-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +ASSIGNED PA 0001'21 WITH IMMEDIATE EFFECT,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 117 Yeas 93 Nays 10 Excused 0 Not Voting 3,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/07/2022 05:02 PM,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 43'22 with immediate effect,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/19/2021 11:48 AM,2021-10-19T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Ben Frederick Thomas A. Albert Samantha Steckloff,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 634 Yeas 58 Nays 45 Excused 0 Not Voting 4,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/28/2022 02:38 PM,2022-12-31T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 12/22/2022 04:20 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +assigned PA 152'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Brad Paquette Thomas A. Albert Regina Weiss,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0163'21 WITH IMMEDIATE EFFECT,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/05/2022 12:01 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 06/29/2022 02:04 PM,2022-06-29T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +passed; given immediate effect Roll Call # 43 Yeas 66 Nays 44 Excused 0 Not Voting 0,2021-03-10T05:00:00+00:00,['passage'],MI,2021-2022 +ASSIGNED PA 0162'21 WITH IMMEDIATE EFFECT,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 10/14/2022,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +assigned PA 95'21,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 05/19/2022 11:42 AM,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 06/15/2021 02:20 PM,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:40 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +assigned PA 4'22 with immediate effect,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-06-02T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 459 Yeas 99 Nays 5 Excused 0 Not Voting 5,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/08/2021: Reps. Tommy Brann Andrew Fink Tyrone Carter,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/08/2021: Reps. Annette Glenn Scott A. VanSingel Shri Thanedar,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +Rep. Felicia Brabec replaced Rep. Abdullah Hammoud as conferee 01/26/2022,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. ARIC NESBITT, JIM STAMAS, SYLVIA A SANTANA",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 214 YEAS 0 NAYS 36 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/11/2022 12:04 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 216 YEAS 0 NAYS 36 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 10/07/2022 04:50 PM,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. ARIC NESBITT, JIM STAMAS, SYLVIA A SANTANA",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. KIMBERLY LASATA, JIM STAMAS, JEFF IRWIN",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. WAYNE A SCHMIDT, JIM STAMAS, ADAM HOLLIER",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +House conferees named 06/08/2021: Reps. Mark E. Huizenga Steven Johnson Felicia Brabec,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 265 YEAS 0 NAYS 36 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +title amended,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +referred to messages from Governor,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 06/24/2021 03:40 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 89'22 with immediate effect,2022-06-01T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 186'22 with immediate effect,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. KIMBERLY LASATA, JIM STAMAS, JEFF IRWIN",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 348 Yeas 105 Nays 2 Excused 0 Not Voting 3,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/05/2022 02:01 PM,2022-12-06T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 12/13/2022 11:38 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 12/13/2022 03:15 PM,2022-12-28T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 02/28/2022 11:16 AM,2022-02-24T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 10/19/2021 11:50 AM,2021-10-19T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +"Reps. Jewell Jones, Brenda Carter, William Sowerby removed as co-sponsors",2021-06-17T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/22/2022 04:22 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/14/2022 01:06 PM,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0172'22 WITH IMMEDIATE EFFECT,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 326 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 10/14/2022,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 251 YEAS 0 NAYS 34 EXCUSED 4 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/29/2022 01:38 PM,2022-12-31T05:00:00+00:00,[],MI,2021-2022 +assigned PA 14'22 with immediate effect,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Education,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/13/2021 04:28 PM,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 168 Yeas 102 Nays 0 Excused 0 Not Voting 4,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. WAYNE A SCHMIDT, JIM STAMAS, ROSEMARY BAYER",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 03/29/2022 10:44 AM,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 05/13/2021 09:33 AM,2021-05-13T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 01/28/2022 01:20 PM,2022-02-01T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/01/2021 03:19 PM,2021-09-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +TITLE AMENDED,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) concurred in,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/29/2021 09:40 AM,2021-08-25T04:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +assigned PA 162'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 462 YEAS 0 NAYS 34 EXCUSED 4 NOT VOTING 0,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/13/2021 04:26 PM,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +Senate amendment(s) concurred in Roll Call # 21 Yeas 60 Nays 50 Excused 0 Not Voting 0,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/19/2022 11:52 AM,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 04/22/2021 11:04 AM,2021-04-22T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ORDERED ENROLLED,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 164 Yeas 102 Nays 0 Excused 0 Not Voting 4,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/22/2022 03:48 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Elections and Ethics,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/17/2021 11:12 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 10/29/2021 11:08 AM,2021-11-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. JOHN BIZON, JIM STAMAS, ADAM HOLLIER",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/07/2022 03:40 PM,2022-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 06/09/2022 12:45 PM,2022-06-09T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/07/2022 03:36 PM,2022-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. WAYNE A SCHMIDT, JIM STAMAS, ROSEMARY BAYER",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. TOM BARRETT, JIM STAMAS, ADAM HOLLIER",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/19/2022 09:42 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 06/14/2022 02:52 PM,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/24/2021 08:17 AM,2021-06-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 119'21 with immediate effect,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/13/2022 03:13 PM,2022-12-28T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 12/16/2021 03:56 PM,2021-12-16T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-06-02T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/22/2022 02:32 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 350 Yeas 103 Nays 3 Excused 0 Not Voting 4,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/30/2021 02:02 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:46 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/21/2022 09:46 AM,2022-07-20T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 11/10/2021 02:44 PM,2021-11-10T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 12/16/2021 03:54 PM,2021-12-16T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +ASSIGNED PA 0151'22 WITH IMMEDIATE EFFECT,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 421 Yeas 108 Nays 0 Excused 0 Not Voting 2,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0083'22 WITH IMMEDIATE EFFECT,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/22/2022 02:20 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate requests return,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/29/2022 01:42 PM,2022-12-31T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +assigned PA 41'22 with immediate effect,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 223 YEAS 0 NAYS 36 EXCUSED 0 NOT VOTING 0,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 250 YEAS 0 NAYS 34 EXCUSED 4 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 11/05/2021 02:15 PM,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 06/23/2022: SENS. WAYNE A SCHMIDT, JIM STAMAS, ROSEMARY BAYER",2022-06-23T04:00:00+00:00,[],MI,2021-2022 +retransmitted,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-5) concurred in,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/22/2022 04:10 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 640 Yeas 81 Nays 22 Excused 0 Not Voting 4,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +assigned PA 39'22 with immediate effect,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 471 YEAS 30 NAYS 1 EXCUSED 6 NOT VOTING 1,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 11/04/2021 02:46 PM,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/13/2021 04:22 PM,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/16/2022 03:40 PM,2022-03-16T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 06/30/2021 01:52 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 62'22 with immediate effect,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 06/16/2022 03:00 PM,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +assigned PA 247'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 261 YEAS 0 NAYS 36 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/24/2021 09:40 AM,2021-06-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ROLL CALL: ROLL CALL # 369 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/07/2021 08:13 AM,2021-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 12/22/2022 03:52 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN AS SUBSTITUTED (S-1),2021-06-30T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/07/2022 05:06 PM,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 633 Yeas 100 Nays 3 Excused 0 Not Voting 4,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/29/2022 01:44 PM,2022-12-31T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/29/2022 01:10 PM,2022-12-31T05:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 122'22 with immediate effect,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 10/07/2021 02:48 PM,2021-10-12T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/11/2022 01:44 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 07/29/2021 11:16 AM,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +assigned PA 26'22 with immediate effect,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 503 Yeas 97 Nays 0 Excused 0 Not Voting 12,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/22/2022 04:24 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 06/24/2021 08:15 AM,2021-06-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 507 Yeas 82 Nays 15 Excused 0 Not Voting 12,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 257 YEAS 0 NAYS 36 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/24/2022 09:20 AM,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-07T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/22/2022 04:12 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 05/25/2021 02:44 PM,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 02/09/2022 02:40 PM,2022-02-10T05:00:00+00:00,['executive-signature'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/27/2021 01:06 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 479 Yeas 100 Nays 2 Excused 0 Not Voting 7,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 386 Yeas 81 Nays 27 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/13/2022 04:04 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/04/2022 09:47 AM,2022-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +APPROVED BY GOVERNOR 12/22/2022 02:50 PM,2022-12-28T05:00:00+00:00,['executive-signature'],MI,2021-2022 +referred to Committee on Appropriations,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +referred to conference committee 06/23/2022,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +retransmitted,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Elections and Ethics,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-07T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/22/2022 04:28 PM,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Government Operations,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +title amended,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-3) CONCURRED IN,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 57 Yeas 104 Nays 1 Excused 0 Not Voting 1,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) concurred in,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. RICK OUTMAN, JIM STAMAS, CURTIS HERTEL, JR.",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 256 YEAS 0 NAYS 36 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 04/07/2022 02:56 PM,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/14/2022 02:40 PM,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. ROGER VICTORY, JIM STAMAS, JEFF IRWIN",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 11/04/2021 10:48 AM,2021-11-09T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +Rep. Ben Frederick replaced Rep. Thomas Albert as chair of conference 09/27/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Regulatory Reform,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +assigned PA 156'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 05/25/2021 02:48 PM,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/25/2022 09:36 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate substitute (S-1) concurred in as amended,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 24'22 with immediate effect,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 05/25/2021 02:46 PM,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 05/25/2021 02:50 PM,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN AS SUBSTITUTED (S-5),2021-03-17T04:00:00+00:00,[],MI,2021-2022 +referred to conference committee 06/23/2022,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/02/2022 11:40 AM,2022-06-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2021-12-02T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 154 Yeas 98 Nays 5 Excused 0 Not Voting 3,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) concurred in,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Regulatory Reform,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 06/29/2022 02:40 PM,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/19/2022 11:50 AM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0109'21 WITH IMMEDIATE EFFECT,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/11/2022 12:14 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 249 YEAS 0 NAYS 34 EXCUSED 3 NOT VOTING 1,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0174'22 WITH IMMEDIATE EFFECT,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +assigned PA 47'22 with immediate effect,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/16/2021 04:00 PM,2021-12-16T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-07T05:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 372 YEAS 20 NAYS 16 EXCUSED 0 NOT VOTING 0,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +assigned PA 68'22 with immediate effect,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 262 YEAS 0 NAYS 36 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 02/22/2022 09:32 AM,2022-02-22T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 134'22 with immediate effect,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 05/10/2021 01:02 PM,2021-05-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ASSIGNED PA 0137'22 WITH IMMEDIATE EFFECT,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0037'21 WITH IMMEDIATE EFFECT,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +referred to conference committee 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 03/10/2022 11:42 AM,2022-03-15T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +roll call Roll Call # 457 Yeas 99 Nays 5 Excused 0 Not Voting 5,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 12/22/2022,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 02/24/2022 11:39 AM,2022-03-01T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/14/2022 02:50 PM,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/13/2022 03:11 PM,2022-12-28T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:44 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/22/2022 02:22 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +referred to conference committee 06/23/2022,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/19/2022 11:58 AM,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-4) concurred in,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +SEN. TOM BARRETT REPLACED SEN. JIM STAMAS AS CONFEREE 06/30/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. JIM STAMAS, JIM RUNESTAD, ADAM HOLLIER",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/22/2022 02:14 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +referred to conference committee 06/23/2022,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +VETOED BY GOVERNOR 11/05/2021,2021-11-09T05:00:00+00:00,['executive-veto'],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 490 YEAS 36 NAYS 1 EXCUSED 1 NOT VOTING 0,2022-11-29T05:00:00+00:00,['passage'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/27/2021 12:52 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +assigned PA 233'22 with immediate effect,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 06/23/2022: SENS. ROGER VICTORY, JIM STAMAS, JEFF IRWIN",2022-06-23T04:00:00+00:00,[],MI,2021-2022 +assigned PA 228'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/24/2021 08:21 AM,2021-06-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 12/13/2022 02:46 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +DEFEATED ROLL CALL # 259 YEAS 0 NAYS 36 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/02/2022 04:05 PM,2022-12-06T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. JOHN BIZON, JIM STAMAS, ADAM HOLLIER",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/07/2022 05:18 PM,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/23/2022 02:54 PM,2022-03-23T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 112'22 with immediate effect,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/23/2022 02:54 PM,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +assigned PA 110'22 with immediate effect,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/21/2022 09:48 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 235'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-06-08T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0118'21 WITH IMMEDIATE EFFECT,2021-12-01T05:00:00+00:00,[],MI,2021-2022 +assigned PA 231'22 with immediate effect,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 96'22 with immediate effect,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Oversight,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 11/04/2021 09:44 AM,2021-11-04T04:00:00+00:00,['executive-signature'],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 11/05/2021,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0035'21 WITH IMMEDIATE EFFECT,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +assigned PA 3'22 with immediate effect,2022-02-01T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/29/2022 02:06 PM,2022-06-29T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 06/30/2021 01:58 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +enrollment vacated,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. WAYNE A SCHMIDT, JIM STAMAS, ADAM HOLLIER",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 453 Yeas 84 Nays 20 Excused 0 Not Voting 5,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/02/2022 04:18 PM,2022-03-02T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2022-03-02T05:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +assigned PA 140'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 04/07/2022 12:10 PM,2022-04-12T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 12/22/2022 04:16 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0158'21 WITH IMMEDIATE EFFECT,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +retransmitted,2021-06-02T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-11-10T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 596 Yeas 98 Nays 4 Excused 0 Not Voting 5,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:42 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/14/2021 09:36 AM,2021-12-14T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 07/13/2021 04:24 PM,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0107'21 WITH IMMEDIATE EFFECT,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 04/21/2021 02:30 PM,2021-04-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/27/2021 12:10 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/13/2021 10:24 AM,2021-07-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +APPROVED BY GOVERNOR 12/16/2021 05:23 PM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate requests return,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +vote on concurring reconsidered,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0159'21,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +CONFERENCE REPORT RECEIVED IN SENATE,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with amendment(s) with immediate effect,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/15/2022 11:00 AM,2022-03-15T04:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 366 Yeas 57 Nays 53 Excused 0 Not Voting 0,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 04/26/2021 01:00 PM,2021-04-27T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 08/19/2021 09:54 AM,2021-08-18T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/29/2022 01:48 PM,2022-12-31T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/13/2021 10:28 AM,2021-07-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 19 Yeas 85 Nays 25 Excused 0 Not Voting 0,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 03/10/2022 10:00 AM,2022-03-15T04:00:00+00:00,['executive-signature'],MI,2021-2022 +referred to conference committee 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +assigned PA 155'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. TOM BARRETT, JIM STAMAS, ADAM HOLLIER",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0130'22 WITH IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 02/22/2022 09:26 AM,2022-02-22T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +assigned PA 260'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/02/2022 04:20 PM,2022-03-02T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 11/17/2021 02:51 PM,2021-11-30T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 04/07/2022 02:58 PM,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 165 Yeas 102 Nays 0 Excused 0 Not Voting 4,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 12:34 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 145'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +assigned PA 154'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +referred to conference committee 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) concurred in,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +assigned PA 59'22 with immediate effect,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 03/23/2022 09:41 AM,2022-03-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +PRESENTED TO GOVERNOR 09/26/2022 01:29 PM,2022-09-27T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 143'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/13/2022 02:18 PM,2022-12-28T05:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 50'21 with immediate effect,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 04/22/2021 11:02 AM,2021-04-22T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 07/13/2021 10:22 AM,2021-07-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0138'21 WITH IMMEDIATE EFFECT,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 03/23/2022 01:24 PM,2022-03-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 204'22 with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Education,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +referred to conference committee 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/23/2021 10:56 AM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 12/22/2022 04:00 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2022-03-03T05:00:00+00:00,['amendment-failure'],MI,2021-2022 +bill ordered enrolled,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +retransmitted,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/14/2021 09:40 AM,2021-12-14T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +ASSIGNED PA 0266'22 WITH IMMEDIATE EFFECT,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/22/2022 02:52 PM,2022-12-28T05:00:00+00:00,['executive-signature'],MI,2021-2022 +ROLL CALL: ROLL CALL # 342 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 02/23/2022 10:38 AM,2022-02-23T05:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 10/01/2021 03:15 PM,2021-09-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. KEN HORN, JIM STAMAS, CURTIS HERTEL",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +assigned PA 210'22 with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0275'22,2022-12-31T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 451 Yeas 99 Nays 5 Excused 0 Not Voting 5,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/17/2021 04:20 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +ENROLLMENT VACATED,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +assigned PA 99'22 with immediate effect,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/30/2022 11:01 AM,2022-04-12T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ORDERED ENROLLED,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +assigned PA 94'22 with immediate effect,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/22/2022 04:36 PM,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 11/10/2021 03:42 PM,2021-11-30T05:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 07/11/2022 08:06 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +APPROVED BY GOVERNOR 05/19/2021 10:00 AM,2021-05-20T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +House conferees named 06/08/2021: Reps. Mark E. Huizenga Steven Johnson Felicia Brabec,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0149'22 WITH IMMEDIATE EFFECT,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +CONFERENCE REPORT RECEIVED IN SENATE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. ROGER VICTORY, JIM STAMAS, SEAN MCCANN",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +referred to conference committee 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/08/2021: Reps. Sue Allor Timothy Beson Rachel Hood,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +referred to conference committee 06/23/2022,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +assigned PA 108'22 with immediate effect,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/25/2022 10:50 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0018'21 WITH IMMEDIATE EFFECT,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 325 YEAS 33 NAYS 0 EXCUSED 2 NOT VOTING 1,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 11:50 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +roll call Roll Call # 32 Yeas 98 Nays 6 Excused 0 Not Voting 2,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-11-29T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. JON BUMSTEAD, JIM STAMAS, SEAN MCCANN",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 214 Yeas 98 Nays 8 Excused 0 Not Voting 4,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-5) ADOPTED,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0017'21 WITH IMMEDIATE EFFECT,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0019'21 WITH IMMEDIATE EFFECT,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-04-13T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 470 Yeas 56 Nays 51 Excused 0 Not Voting 2,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/05/2022 12:29 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/14/2022 11:52 AM,2022-06-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 07/21/2022 11:12 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/14/2022 09:45 AM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/22/2022 02:54 PM,2022-12-28T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 07/29/2021 11:18 AM,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/11/2022 01:50 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 153'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +assigned PA 202'22 with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/07/2021 03:10 PM,2021-12-07T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/07/2022 11:08 AM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +amended,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/13/2022 04:16 PM,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 10/14/2022 12:04 PM,2022-11-09T05:00:00+00:00,['executive-signature'],MI,2021-2022 +referred to conference committee 06/23/2022,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/16/2021 03:36 PM,2021-12-16T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 10/05/2022 12:13 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +POSTPONED FOR THE DAY,2022-03-09T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0088'21 WITH IMMEDIATE EFFECT,2021-10-12T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/14/2021 09:42 AM,2021-12-14T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +assigned PA 142'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 426 Yeas 92 Nays 16 Excused 0 Not Voting 2,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Natural Resources and Outdoor Recreation,2021-10-13T04:00:00+00:00,[],MI,2021-2022 +referred to conference committee 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/29/2022 01:08 PM,2022-12-31T05:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 07/11/2022 12:32 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 117'22 with immediate effect,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +assigned PA 262'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/30/2021 02:00 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +title amendment agreed to,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 02/09/2022 02:42 PM,2022-02-10T05:00:00+00:00,['executive-signature'],MI,2021-2022 +rule suspended,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/01/2021 10:32 AM,2021-07-15T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 248'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 04/28/2022 12:05 PM,2022-04-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ASSIGNED PA 0274'22,2022-12-31T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. KIMBERLY LASATA, JIM STAMAS, JEFF IRWIN",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 10/07/2022 05:20 PM,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 06/23/2022: SENS. WAYNE A SCHMIDT, JIM STAMAS, ROSEMARY BAYER",2022-06-23T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 08/19/2021 09:38 AM,2021-08-18T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 259'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 05/19/2022 11:34 AM,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/29/2021 11:04 AM,2021-08-25T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/13/2022 03:05 PM,2022-12-28T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +vetoed by the Governor 10/14/2022,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 264 YEAS 0 NAYS 36 EXCUSED 2 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +VETOED BY GOVERNOR 12/22/2022,2022-12-28T05:00:00+00:00,['executive-veto'],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/11/2022 08:04 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ORDERED ENROLLED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/17/2022 09:19 AM,2022-03-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 12/13/2022 04:08 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/17/2021 12:45 PM,2021-07-27T04:00:00+00:00,['executive-signature'],MI,2021-2022 +APPROVED BY GOVERNOR 10/14/2022 12:00 PM,2022-11-09T05:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0269'22,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +referred to conference committee 05/27/2021,2021-06-01T04:00:00+00:00,[],MI,2021-2022 +assigned PA 113'22 with immediate effect,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 474 Yeas 102 Nays 0 Excused 0 Not Voting 7,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 11/04/2021 02:52 PM,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 495 Yeas 97 Nays 7 Excused 0 Not Voting 5,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-03-10T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/19/2022 12:06 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-04-21T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Local Government and Municipal Finance,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 10/05/2021 01:35 PM,2021-10-06T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ASSIGNED PA 0196'22 WITH IMMEDIATE EFFECT,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Oversight,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) concurred in,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/26/2022 03:09 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +"SENATE NAMED CONFEREES 06/23/2022: SENS. KIMBERLY LASATA, JIM STAMAS, JEFF IRWIN",2022-06-23T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/13/2022 02:00 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. ROGER VICTORY, JIM STAMAS, JEFF IRWIN",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +assigned PA 209'22 with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +assigned PA 138'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0084'22 WITH IMMEDIATE EFFECT,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0027'21 WITH IMMEDIATE EFFECT,2021-06-16T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/22/2022 02:08 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 06/09/2022 12:47 PM,2022-06-09T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +House conferees named 06/08/2021: Reps. Jeff Yaroch Matt Maddock Ronnie Dean Peterson,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-08T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. JOHN BIZON, JIM STAMAS, ADAM HOLLIER",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. WAYNE A SCHMIDT, JIM STAMAS, ADAM HOLLIER",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 11/03/2021 01:46 PM,2021-11-03T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 03/29/2022 10:59 AM,2022-04-12T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 12/13/2022 11:44 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 10/14/2022 01:12 PM,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +assigned PA 111'21,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 07/01/2022,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/30/2021 02:06 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 10/14/2022 01:14 PM,2022-11-09T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/23/2022 12:12 PM,2022-06-23T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 10/29/2021 10:05 AM,2021-11-02T04:00:00+00:00,['executive-signature'],MI,2021-2022 +rule suspended,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/02/2022 04:07 PM,2022-12-06T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +ENROLLMENT VACATED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +assigned PA 217'22 with immediate effect,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/19/2022 12:10 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 04/22/2021 11:30 AM,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/13/2021 10:20 AM,2021-07-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +full title agreed to,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 230'22 with immediate effect,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/19/2022 09:58 AM,2022-07-20T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 10/20/2021 04:02 PM,2021-10-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +request granted,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +assigned PA 51'21 with immediate effect,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/13/2021 10:18 AM,2021-07-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +full title agreed to,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-01-25T05:00:00+00:00,[],MI,2021-2022 +assigned PA 118'22 with immediate effect,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 02/09/2022 03:34 PM,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +"Reps. Tim Sneller, Donna Lasinski, Tyrone Carter removed as co-sponsors",2021-06-17T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 387 Yeas 102 Nays 6 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 06/28/2022 11:39 AM,2022-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 108'21 with immediate effect,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/21/2022 11:10 AM,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/22/2022 04:06 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. RICK OUTMAN, JIM STAMAS, SYLVIA A SANTANA",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +referred to conference committee 06/23/2022,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/11/2022 01:48 PM,2022-07-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +assigned PA 257'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +SENATE REQUESTS RETURN,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 475 Yeas 58 Nays 43 Excused 0 Not Voting 8,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/13/2022 03:19 PM,2022-12-28T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +re-returned from Senate with substitute (S-3) to House substitute (H-1) with title amendment,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/21/2021 10:50 AM,2021-07-27T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/19/2022 09:46 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +full title agreed to,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +assigned PA 74'21,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0016'21 WITH IMMEDIATE EFFECT,2021-05-26T04:00:00+00:00,[],MI,2021-2022 +assigned PA 264'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 258'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 06/24/2021 11:00 AM,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0166'21 WITH IMMEDIATE EFFECT,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/04/2022 02:57 PM,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 397 Yeas 105 Nays 3 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/29/2021 10:07 AM,2021-11-02T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 263'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +House conferees named 06/08/2021: Reps. Brad Paquette Annette Glenn Regina Weiss,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. JOHN BIZON, JIM STAMAS, ADAM HOLLIER",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 11:40 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +ORDERED ENROLLED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/13/2021 10:34 AM,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/23/2021 10:18 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/29/2021 11:14 AM,2021-08-25T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-22T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 12/08/2021: SENS. JIM STAMAS, KEN HORN, CURTIS HERTEL",2021-12-08T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/24/2021 11:06 AM,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 03/19/2021 10:02 AM,2021-03-23T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 07/07/2022 11:14 AM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/07/2022 04:56 PM,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/23/2021 10:44 AM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 100'22 with immediate effect,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/08/2021: Reps. Tommy Brann Andrew Fink Tyrone Carter,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +assigned PA 156'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/19/2022 12:04 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/23/2021 10:42 AM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 11/22/2021 10:59 AM,2021-11-30T05:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 06/14/2022 12:00 PM,2022-06-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 06/24/2021 11:02 AM,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 11/05/2021,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +assigned PA 246'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with full title,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/22/2022 04:08 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and title amendment,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0051'22 WITH IMMEDIATE EFFECT,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +assigned PA 52'21 with immediate effect,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 05/11/2022 09:19 AM,2022-05-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ASSIGNED PA 0146'22,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0273'22,2022-12-31T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/05/2022 12:37 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +re-referred to Committee on Oversight,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 502 Yeas 95 Nays 2 Excused 0 Not Voting 12,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/05/2022 12:33 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. ARIC NESBITT, JIM STAMAS, SYLVIA A SANTANA",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/14/2021 09:48 AM,2021-12-14T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0276'22,2022-12-31T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/07/2021 02:46 PM,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. JON BUMSTEAD, JIM STAMAS, SEAN MCCANN",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/23/2022 09:55 AM,2022-03-23T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 07/01/2021 10:42 AM,2021-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 378 Yeas 56 Nays 48 Excused 0 Not Voting 6,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/27/2021: SENS. JON BUMSTEAD, JIM STAMAS, SEAN MCCANN",2021-05-27T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/30/2021 01:50 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 10/07/2022 05:00 PM,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/22/2022 04:18 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/07/2021 02:02 PM,2021-10-07T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0103'22,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +assigned PA 102'21 with immediate effect,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/10/2022 10:18 AM,2022-03-10T05:00:00+00:00,['executive-signature'],MI,2021-2022 +APPROVED BY GOVERNOR 12/22/2022 02:46 PM,2022-12-28T05:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 01:10 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 02/09/2022 02:36 PM,2022-02-10T05:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 49'21 with immediate effect,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/22/2022 04:32 PM,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/22/2022 02:10 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +Rep. Kyra Bolden removed as cosponsor,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 10/14/2022,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) ADOPTED,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0031'21 WITH IMMEDIATE EFFECT,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 02/09/2022 03:30 PM,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 03/24/2021 01:01 PM,2021-03-25T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 10/05/2022 11:57 AM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +House conferees named 06/21/2022: Reps. Sarah L. Lightner Thomas A. Albert Cynthia A. Johnson,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/13/2021 10:16 AM,2021-07-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 07/11/2022 12:40 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +re-referred to Committee on Education,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/29/2021 11:50 AM,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +assigned PA 192'22 with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 10/14/2022,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 01/27/2022 09:06 AM,2022-01-27T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0120'21 WITH IMMEDIATE EFFECT,2021-12-08T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-10-06T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/23/2021 10:06 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 155'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/21/2022 09:50 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 252 Yeas 69 Nays 34 Excused 0 Not Voting 7,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/29/2021 09:38 AM,2021-08-25T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 07/13/2021 04:40 PM,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/23/2022 10:58 AM,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/26/2022 03:11 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 06/30/2021 02:08 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +title amendment agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0007'22 WITH IMMEDIATE EFFECT,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +retransmitted,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/22/2022 02:40 PM,2022-12-28T05:00:00+00:00,['executive-signature'],MI,2021-2022 +House conferees named 06/21/2022: Reps. Brad Paquette Thomas A. Albert Regina Weiss,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +Senate requests return,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 456 Yeas 83 Nays 21 Excused 0 Not Voting 5,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +assigned PA 8'21 with immediate effect,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/01/2021 01:28 PM,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/04/2022 02:40 PM,2022-03-03T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +Senate substitute (S-1) concurred in,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +House conferees named 06/08/2021: Reps. Sue Allor Timothy Beson Rachel Hood,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +assigned PA 201'22 with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/19/2022 12:20 PM,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 452 Yeas 97 Nays 7 Excused 0 Not Voting 5,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/27/2021 12:54 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +assigned PA 152'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-3),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/22/2022 04:40 PM,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/29/2021 10:13 AM,2021-11-02T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 11/22/2021 12:56 PM,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/27/2021 12:56 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +House conferees named 06/08/2021: Reps. Sarah L. Lightner Jeff Yaroch Cynthia A. Johnson,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/19/2022 10:00 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/14/2022 02:54 PM,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +assigned PA 255'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 34'21 with immediate effect,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +assigned PA 167'22 with immediate effect,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/10/2022 11:30 AM,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +assigned PA 199'22 with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +assigned PA 261'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Tommy Brann Thomas A. Albert Tyrone Carter,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/19/2022 09:32 AM,2022-07-20T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 12/13/2022 04:02 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 11/04/2021 09:42 AM,2021-11-04T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 03/15/2022 11:40 AM,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +assigned PA 12'21,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0073'21 WITH IMMEDIATE EFFECT,2021-08-25T04:00:00+00:00,[],MI,2021-2022 +assigned PA 32'21,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/13/2021 04:42 PM,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +assigned PA 256'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:30 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/11/2022 07:58 AM,2022-07-20T04:00:00+00:00,['executive-signature'],MI,2021-2022 +laid over one day under the rules,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/08/2021: Reps. Brad Paquette Annette Glenn Regina Weiss,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/24/2021 09:38 AM,2021-06-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 07/19/2022 12:08 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 05/19/2022 10:44 AM,2022-05-19T04:00:00+00:00,['executive-signature'],MI,2021-2022 +PRESENTED TO GOVERNOR 07/21/2021 10:48 AM,2021-07-27T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/07/2021 02:50 PM,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/11/2021 10:16 AM,2021-06-10T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2022-05-04T04:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/17/2021 04:14 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 10/07/2022 03:34 PM,2022-10-11T04:00:00+00:00,['executive-signature'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 03/23/2022 10:44 AM,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 05/17/2022 11:35 AM,2022-05-18T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +vetoed by the Governor 12/23/2021,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 253 YEAS 0 NAYS 34 EXCUSED 4 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 11/10/2021 04:04 PM,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +SENATE ADOPTED CONFERENCE REPORT WITH IMMEDIATE EFFECT ROLL CALL # 464 YEAS 25 NAYS 8 EXCUSED 5 NOT VOTING 0,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/14/2022 02:46 PM,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/28/2022 01:44 PM,2022-04-12T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 02/23/2022 09:40 AM,2022-02-23T05:00:00+00:00,['executive-signature'],MI,2021-2022 +re-returned from Senate with substitute (S-3) to House substitute (H-1) with title amendment,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 10/03/2021,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 05/19/2021 01:08 PM,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/26/2022 02:55 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +SENATE ADOPTED CONFERENCE REPORT WITH IMMEDIATE EFFECT ROLL CALL # 400 YEAS 35 NAYS 2 EXCUSED 1 NOT VOTING 0,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +Rep. Greg VanWoerkom replaced Rep. Thomas Albert as conferee 06/29/2022,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +assigned PA 241'22 with immediate effect,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/13/2021 04:44 PM,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/13/2022 04:18 PM,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 04/01/2022 04:34 PM,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 292 Yeas 96 Nays 8 Excused 0 Not Voting 6,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/05/2022 12:07 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +Senate substitute (S-2) concurred in,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/11/2022 12:08 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +request granted,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/13/2021 04:50 PM,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 05/06/2021 12:17 PM,2021-05-06T04:00:00+00:00,['executive-signature'],MI,2021-2022 +VETOED BY GOVERNOR 10/15/2021,2021-10-19T04:00:00+00:00,['executive-veto'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0060'22 WITH IMMEDIATE EFFECT,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 08/23/2021 08:15 AM,2021-08-19T04:00:00+00:00,['executive-signature'],MI,2021-2022 +full title agreed to,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/13/2021 04:46 PM,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-06-15T04:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/11/2022 01:40 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +assigned PA 168'22 with immediate effect,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0278'22,2022-12-31T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/15/2022 11:06 AM,2022-03-15T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 07/11/2022 12:38 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and title amendment,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/02/2022 04:03 PM,2022-12-06T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/22/2022 04:38 PM,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +SEN. TOM BARRETT REPLACED SEN. JIM STAMAS AS CONFEREE 06/30/2021,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 03/10/2022 11:14 AM,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/22/2022 02:12 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 06/24/2021 09:36 AM,2021-06-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 02/23/2022 11:32 AM,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/11/2021 10:14 AM,2021-06-10T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/27/2021 01:08 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 03/29/2022 10:00 AM,2022-04-12T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 252'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/14/2022 11:46 AM,2022-10-13T04:00:00+00:00,['executive-signature'],MI,2021-2022 +full title agreed to,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-6) DEFEATED,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 04/18/2022 11:28 AM,2022-04-19T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +retransmitted,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 188'22 with immediate effect,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Education,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 275 Yeas 105 Nays 0 Excused 0 Not Voting 5,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 02/28/2022 11:08 AM,2022-02-24T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +"SEN. CURTIS HERTEL, JR. REPLACED SEN. JEFF IRWIN AS CONFEREE 12/08/2021",2021-12-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 126'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 12:50 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +House conferees named 06/08/2021: Reps. Mary Whiteford Phil Green Abdullah Hammoud,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 02/22/2022 09:30 AM,2022-02-22T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 12/13/2022 11:26 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +RETURNED FROM HOUSE WITH SUBSTITUTE (H-2) TO SENATE SUBSTITUTE (S-3),2021-10-20T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 04/22/2021 11:28 AM,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/25/2022 09:24 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 11/30/2021 09:33 AM,2021-11-30T05:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 12/13/2022 11:30 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +GIVEN IMMEDIATE EFFECT,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 06/22/2021 10:38 AM,2021-06-23T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +POSTPONED TEMPORARILY,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0270'22,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/16/2022 11:20 AM,2022-06-16T04:00:00+00:00,['executive-signature'],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 10/14/2022 01:16 PM,2022-11-09T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) concurred in,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/14/2022 11:50 AM,2022-10-13T04:00:00+00:00,['executive-signature'],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/11/2022 12:06 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/21/2022 09:52 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 03/09/2022 02:54 PM,2022-03-09T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +House conferees named 06/21/2022: Reps. Jeff Yaroch Thomas A. Albert Ronnie Dean Peterson,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/19/2021 02:00 PM,2021-07-27T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/22/2022 03:54 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +referred to conference committee 06/23/2022,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +House conferees named 06/08/2021: Reps. Jeff Yaroch Matt Maddock Ronnie Dean Peterson,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 11:18 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 12/16/2021 05:35 PM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +ORDERED ENROLLED,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 12/22/2022,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Scott A. VanSingel Thomas A. Albert Samantha Steckloff,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +assigned PA 220'22 with immediate effect,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/01/2021 01:16 PM,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/26/2022 02:53 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 10/05/2022 10:58 AM,2022-10-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +House conferees named 06/08/2021: Reps. Scott A. VanSingel Ken Borton Samantha Steckloff,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) NONCONCURRED IN,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 166 Yeas 102 Nays 0 Excused 0 Not Voting 4,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0221'22 WITH IMMEDIATE EFFECT,2022-11-09T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 08/19/2021 09:36 AM,2021-08-18T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 07/25/2022 09:22 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 10/29/2021 11:48 AM,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 05/12/2022 09:03 AM,2022-05-12T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 07/13/2021 10:12 AM,2021-07-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +PRESENTED TO GOVERNOR 07/11/2022 01:38 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 153'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 08/23/2021 08:19 AM,2021-08-19T04:00:00+00:00,['executive-signature'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 02/09/2022 03:36 PM,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +assigned PA 105'21 with immediate effect,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/29/2022 01:24 PM,2022-06-30T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/13/2022 02:22 PM,2022-12-28T05:00:00+00:00,['executive-signature'],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 03/30/2022 11:09 AM,2022-04-12T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 10/19/2021 11:54 AM,2021-10-19T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 12/20/2021 11:17 AM,2021-12-29T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 03/21/2022 01:36 PM,2022-03-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +Senate substitute (S-3) to House substitute (H-1) concurred in,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0211'22 WITH IMMEDIATE EFFECT,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in as amended,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0068'21 WITH IMMEDIATE EFFECT,2021-08-25T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/19/2022 09:34 AM,2022-07-20T04:00:00+00:00,['executive-signature'],MI,2021-2022 +APPROVED BY GOVERNOR 12/22/2022 02:44 PM,2022-12-28T05:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0236'22 WITH IMMEDIATE EFFECT,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +referred to conference committee 06/23/2022,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 06/23/2022: SENS. KIMBERLY LASATA, JIM STAMAS, JEFF IRWIN",2022-06-23T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 632 Yeas 55 Nays 48 Excused 0 Not Voting 4,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/20/2021 01:36 PM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 12/13/2022 11:28 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-29T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0080'22,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-08-17T04:00:00+00:00,[],MI,2021-2022 +Rep. Thomas Albert replaced Rep. Steven Johnson as conferee 09/20/2021,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +assigned PA 75'21 with immediate effect,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/23/2021 10:00 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 03/17/2022 10:16 AM,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +Rep. Ben Frederick replaced Rep. Mark Huizenga as conferee 01/27/2022,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +assigned PA 232'22 with immediate effect,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. KIMBERLY LASATA, JIM STAMAS, JEFF IRWIN",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 10/14/2022 01:18 PM,2022-11-09T05:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Oversight,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/13/2021 10:26 AM,2021-07-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +full title agreed to,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/29/2022 01:46 PM,2022-12-31T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/04/2022 09:49 AM,2022-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +Rep. Ben Frederick replaced Rep. Mark Huizenga as conferee 01/27/2022,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-03-11T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Ben Frederick Thomas A. Albert Samantha Steckloff,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Tommy Brann Thomas A. Albert Tyrone Carter,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/16/2022 03:42 PM,2022-03-16T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +vetoed by the Governor 04/01/2022,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0222'22 WITH IMMEDIATE EFFECT,2022-11-09T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0066'21 WITH IMMEDIATE EFFECT,2021-07-27T04:00:00+00:00,[],MI,2021-2022 +assigned PA 92'21 with immediate effect,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 417 Yeas 106 Nays 3 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/19/2021 03:11 PM,2021-10-20T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 10/14/2022 01:04 PM,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/19/2022 11:56 AM,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 20 Yeas 77 Nays 33 Excused 0 Not Voting 0,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:12 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/17/2021 11:16 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +roll call Roll Call # 449 Yeas 84 Nays 21 Excused 0 Not Voting 5,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/13/2021 04:34 PM,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/12/2022 09:48 AM,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 04/28/2022 12:13 PM,2022-04-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +APPROVED BY GOVERNOR 12/23/2021 10:58 AM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/22/2022 04:30 PM,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +assigned PA 139'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN AS SUBSTITUTED (S-3),2021-03-17T04:00:00+00:00,[],MI,2021-2022 +assigned PA 35'22 with immediate effect,2022-03-17T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 139 Yeas 58 Nays 51 Excused 0 Not Voting 1,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 10/14/2022 12:06 PM,2022-11-09T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 10/04/2022 02:59 PM,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 346 Yeas 103 Nays 4 Excused 0 Not Voting 3,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 447 Yeas 72 Nays 33 Excused 0 Not Voting 5,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/22/2022 02:00 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 06/16/2022 05:00 PM,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/21/2022 11:16 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 02:00 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 10/05/2022 11:59 AM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 12/22/2022 02:16 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 249'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 08/23/2021 08:17 AM,2021-08-19T04:00:00+00:00,['executive-signature'],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 10:56 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +House conferees named 06/08/2021: Reps. Greg VanWoerkom Ann Bollin Terry J. Sabo,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/26/2022 03:23 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-05-18T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +Rep. Joe Tate replaced Rep. Felicia Brabec as conferee 09/20/2021,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 02/24/2022 11:41 AM,2022-03-01T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +APPROVED BY GOVERNOR 07/25/2022 09:18 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 03/30/2022 01:50 PM,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0008'22 WITH IMMEDIATE EFFECT,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0223'22 WITH IMMEDIATE EFFECT,2022-11-09T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 08/23/2021 04:18 PM,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0039'21 WITH IMMEDIATE EFFECT,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/25/2022 10:36 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 09/27/2022 10:04 AM,2022-09-27T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 12/13/2022 10:58 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 07/13/2021 04:48 PM,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 03/23/2022 01:22 PM,2022-03-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/21/2021 02:14 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/17/2021 11:36 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 07/11/2022 12:36 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 08/19/2021 09:32 AM,2021-08-18T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 06/30/2022 10:08 AM,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/13/2022 04:22 PM,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-1) CONCURRED IN,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-08-31T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/17/2021 04:26 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/21/2021 10:40 AM,2021-07-27T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 10/14/2022 12:10 PM,2022-10-13T04:00:00+00:00,['executive-signature'],MI,2021-2022 +Rep. Regina Weiss removed as cosponsor,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +assigned PA 154'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/11/2022 10:05 AM,2022-03-10T05:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/22/2022 04:26 PM,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/29/2021 11:12 AM,2021-08-25T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/21/2022 11:14 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/08/2021: Reps. Bradley Slagh Sarah L. Lightner Tyrone Carter,2021-06-08T04:00:00+00:00,[],MI,2021-2022 +assigned PA 5'22 with immediate effect,2022-02-10T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/29/2021 09:36 AM,2021-08-25T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 12/22/2022 03:56 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +assigned PA 148'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +assigned PA 229'22 with immediate effect,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +"Senate conferees named 12/08/2021: Sens. Jim Stamas Ken Horn Curtis Hertel, Jr.",2021-12-08T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0161'21,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/23/2021 09:37 AM,2021-07-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ASSIGNED PA 0160'21,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 11:08 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 114'21 with immediate effect,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +LAID OVER ONE DAY UNDER THE RULES,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0272'22 WITH IMMEDIATE EFFECT,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 04/28/2022 12:07 PM,2022-04-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +rule suspended,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Government Operations,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Oversight,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:18 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +assigned PA 45'22 with immediate effect,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0268'22 WITH IMMEDIATE EFFECT,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 10/07/2022,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/08/2021 03:00 PM,2021-03-04T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 10/05/2022 12:17 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 03/23/2022 09:45 AM,2022-03-23T04:00:00+00:00,['executive-signature'],MI,2021-2022 +title amendment agreed to,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +assigned PA 27'22 with immediate effect,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/17/2021 11:32 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +VOTE RECONSIDERED,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +assigned PA 58'21 with immediate effect,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 02/04/2022,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 59'21 with immediate effect,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 11:16 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 07/19/2022 12:22 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/29/2021 11:56 AM,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +assigned PA 60'21 with immediate effect,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/13/2021 04:38 PM,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +assigned PA 45'21 with immediate effect,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 03/29/2022 10:42 AM,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/13/2021 10:14 AM,2021-07-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0160'22 WITH IMMEDIATE EFFECT,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/19/2022 11:32 AM,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Appropriations,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +assigned PA 30'22 with immediate effect,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 11/04/2021 02:50 PM,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +assigned PA 101'22 with immediate effect,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/19/2022 11:54 AM,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/01/2021 10:40 AM,2021-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 03/24/2021 03:36 PM,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +assigned PA 93'21 with immediate effect,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) to House substitute (H-1) concurred in,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 11:10 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +presented to the Governor 12/13/2022 11:06 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +House request Governor to return bill,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Mary Whiteford Thomas A. Albert Felicia Brabec,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/11/2022 12:00 PM,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/25/2022 09:28 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Sue Allor Thomas A. Albert Rachel Hood,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Jeff Yaroch Thomas A. Albert Ronnie Dean Peterson,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 04/28/2022 12:23 PM,2022-04-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +House conferees named 06/21/2022: Reps. Bradley Slagh Thomas A. Albert Tyrone Carter,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 390 Yeas 103 Nays 5 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +re-returned from Senate with substitute (S-1) to House substitute (H-1) with immediate effect,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0167'21 WITH IMMEDIATE EFFECT,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0123'21 WITH IMMEDIATE EFFECT,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/01/2021 10:38 AM,2021-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +re-referred to Committee on Elections and Ethics,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 06/25/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 637 Yeas 95 Nays 8 Excused 0 Not Voting 4,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-05-05T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0014'21 WITH IMMEDIATE EFFECT,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/22/2022 03:58 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-2) ADOPTED,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 10/07/2022 04:54 PM,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/05/2022 11:55 AM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 09/27/2022 10:02 AM,2022-09-27T04:00:00+00:00,['executive-signature'],MI,2021-2022 +conference report received,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0019'22 WITH IMMEDIATE EFFECT,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +assigned PA 61'21 with immediate effect,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 10/14/2022,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-10-26T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 08/23/2021 04:14 PM,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +assigned PA 63'21 with immediate effect,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/07/2021 09:42 AM,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/14/2021 09:46 AM,2021-12-14T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with immediate effect and full title,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 02/22/2022 09:28 AM,2022-02-22T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 12/22/2022 01:58 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 7'21 with immediate effect,2021-04-22T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/22/2022 01:56 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +APPROVED BY GOVERNOR 05/19/2022 10:50 AM,2022-05-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0038'22 WITH IMMEDIATE EFFECT,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/19/2022 09:52 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0277'22,2022-12-31T05:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Oversight,2022-01-12T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 02/23/2022 09:44 AM,2022-02-23T05:00:00+00:00,['executive-signature'],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. ROGER VICTORY, JIM STAMAS, JEFF IRWIN",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +"SEN. SYLVIA SANTANA REPLACED SEN. CURTIS HERTEL, JR. AS CONFEREE 06/09/2021",2021-06-09T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/15/2022 11:46 AM,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/25/2022 09:16 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +PRESENTED TO GOVERNOR 06/21/2022 11:04 AM,2022-06-23T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +VETOED BY GOVERNOR 04/29/2022,2022-05-03T04:00:00+00:00,['executive-veto'],MI,2021-2022 +ASSIGNED PA 0110'21 WITH IMMEDIATE EFFECT,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +Rep. Ben Frederick replaced Rep. Mark Huizenga as conferee 01/27/2022,2022-01-27T05:00:00+00:00,[],MI,2021-2022 +assigned PA 17'22 with immediate effect,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +assigned PA 89'21 with immediate effect,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0237'22 WITH IMMEDIATE EFFECT,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +conference report received,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +"Sen. Curtis Hertel, Jr. replaced Sen. Jeff Irwin as conferee 12/08/2021",2021-12-08T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/10/2022 10:10 AM,2022-03-10T05:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 54'22,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/21/2022 10:02 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate amendment(s) to House substitute (H-2) concurred in,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +assigned PA 140'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/25/2022 10:38 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +RETURNED FROM HOUSE WITH AMENDMENT(S) TO SENATE SUBSTITUTE (S-1),2022-02-09T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-11-30T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Sue Allor Thomas A. Albert Rachel Hood,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +Rep. Thomas Albert replaced Rep. Greg VanWoerkom as chair of conference 06/29/2022,2022-06-29T04:00:00+00:00,[],MI,2021-2022 +retransmitted,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 55 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 389 Yeas 100 Nays 8 Excused 0 Not Voting 1,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 02/23/2022 11:20 AM,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +DEFEATED ROLL CALL # 254 YEAS 0 NAYS 35 EXCUSED 3 NOT VOTING 0,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/14/2022 01:00 PM,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-3) CONCURRED IN,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/13/2022 02:20 PM,2022-12-28T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 11/30/2021 02:54 PM,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +assigned PA 97'22 with immediate effect,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 04/07/2022 12:06 PM,2022-03-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0271'22 WITH IMMEDIATE EFFECT,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Annette Glenn Thomas A. Albert Shri Thanedar,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/08/2021 03:02 PM,2021-03-04T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2021-10-07T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 06/23/2021 10:37 AM,2021-06-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +vetoed by the Governor 06/25/2021,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +assigned PA 33'22 with immediate effect,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 236 YEAS 36 NAYS 0 EXCUSED 0 NOT VOTING 0,2021-05-27T04:00:00+00:00,['passage'],MI,2021-2022 +APPROVED BY GOVERNOR 06/24/2022 08:38 AM,2022-06-30T04:00:00+00:00,['executive-signature'],MI,2021-2022 +re-referred to Committee on Oversight,2022-11-10T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0198'22 WITH IMMEDIATE EFFECT,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 507 YEAS 25 NAYS 11 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/20/2021 12:06 PM,2021-10-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/21/2022 11:26 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +"SEN. CURTIS HERTEL, JR. REPLACED SEN. JEFF IRWIN AS CONFEREE 06/30/2022",2022-06-30T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/13/2022 04:20 PM,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +motion to override veto failed Roll Call # 401 Yeas 62 Nays 47 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +assigned PA 139'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 09/27/2022 01:30 PM,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +conference report adopted Roll Call # 370 Yeas 99 Nays 7 Excused 0 Not Voting 4,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 11:00 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 251'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/14/2022 12:08 PM,2022-10-13T04:00:00+00:00,['executive-signature'],MI,2021-2022 +PRESENTED TO GOVERNOR 05/10/2021 01:06 PM,2021-05-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 182'22 with immediate effect,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +motion to override veto failed Roll Call # 400 Yeas 62 Nays 47 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +assigned PA 105'22,2022-06-16T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 06/23/2021 04:58 PM,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) to House substitute (H-1) concurred in,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor with line item(s) vetoed 03/09/2021 09:16 AM,2021-03-09T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 04/11/2022 08:40 AM,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +assigned PA 214'22 with immediate effect,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +"SENATE NAMED CONFEREES 05/24/2022: SENS. WAYNE A SCHMIDT, JIM STAMAS, ROSEMARY BAYER",2022-05-24T04:00:00+00:00,[],MI,2021-2022 +assigned PA 11'22 with immediate effect,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +HOUSE AMENDMENT(S) TO SENATE SUBSTITUTE (S-1) CONCURRED IN,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-05-26T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 340 YEAS 34 NAYS 1 EXCUSED 3 NOT VOTING 0,2022-06-16T04:00:00+00:00,['passage'],MI,2021-2022 +filed with Secretary of State 03/10/2022 11:22 AM,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +conference report adopted Roll Call # 455 Yeas 76 Nays 28 Excused 0 Not Voting 5,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 206 Yeas 104 Nays 0 Excused 0 Not Voting 5,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2022-05-03T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/03/2022 02:32 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 02/23/2022 11:24 AM,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/19/2022 12:14 PM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 05/19/2022 11:38 AM,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +assigned PA 81 with immediate effect,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 04/28/2022 12:09 PM,2022-04-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +assigned PA 10'21 with immediate effect,2021-05-06T04:00:00+00:00,[],MI,2021-2022 +assigned PA 117'21 with immediate effect,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/29/2021 11:16 AM,2021-11-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-04-26T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/24/2021 04:30 PM,2021-06-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +ROLL CALL: ROLL CALL # 60 YEAS 22 NAYS 15 EXCUSED 1 NOT VOTING 0,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 02/23/2022 09:42 AM,2022-02-23T05:00:00+00:00,['executive-signature'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/25/2022 10:30 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/20/2021 09:08 AM,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +assigned PA 75'22,2022-05-12T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 05/05/2022 02:54 PM,2022-05-05T04:00:00+00:00,['executive-signature'],MI,2021-2022 +PRESENTED TO GOVERNOR 09/02/2021 01:03 PM,2021-09-09T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 12/23/2021 10:22 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 12/20/2021 01:42 PM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 05/05/2022 02:48 PM,2022-05-05T04:00:00+00:00,['executive-signature'],MI,2021-2022 +vetoed by the Governor 12/22/2022,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0148'22 WITH IMMEDIATE EFFECT,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-3) ADOPTED,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +"SEN. CURTIS HERTEL, JR. REPLACED SEN. JEFF IRWIN AS CONFEREE 09/21/2021",2021-09-21T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 03/29/2022 09:58 AM,2022-04-12T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0053'22 WITH IMMEDIATE EFFECT,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0170'22 WITH IMMEDIATE EFFECT,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/22/2022 03:46 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 08/23/2021 04:16 PM,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +assigned PA 216'22 with immediate effect,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 02/25/2022 02:14 PM,2022-03-01T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 12/22/2022 04:02 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +assigned PA 62'21 with immediate effect,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/25/2022 10:32 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 08/23/2021 08:13 AM,2021-08-19T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 181'22,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 03/23/2022 09:49 AM,2022-03-23T04:00:00+00:00,['executive-signature'],MI,2021-2022 +House conferees named 06/21/2022: Reps. Ben Frederick Thomas A. Albert Samantha Steckloff,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/27/2021 01:10 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0239'22 WITH IMMEDIATE EFFECT,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0267'22 WITH IMMEDIATE EFFECT,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/19/2022 09:54 AM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +assigned PA 132'22 with immediate effect,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Tax Policy,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +assigned PA 129'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/25/2022 09:26 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 79 with immediate effect,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +assigned PA 55'21 with immediate effect,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 09/27/2022 01:32 PM,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/07/2022 03:50 PM,2022-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 10/14/2022 12:12 PM,2022-10-13T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 05/19/2022 04:53 PM,2022-05-19T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 10/14/2022 01:20 PM,2022-11-09T05:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/13/2022 11:02 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +ASSIGNED PA 0136'21 WITH IMMEDIATE EFFECT,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/22/2022 03:42 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-04-27T04:00:00+00:00,[],MI,2021-2022 +assigned PA 193'22 with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 12/22/2022,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/26/2021 03:08 PM,2021-07-27T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 10/11/2022 04:24 PM,2022-10-11T04:00:00+00:00,['executive-signature'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/29/2021 11:10 AM,2021-08-25T04:00:00+00:00,[],MI,2021-2022 +assigned PA 250'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/23/2021 10:04 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +vetoed by the Governor 12/22/2022,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0169'22 WITH IMMEDIATE EFFECT,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 03/09/2021,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/25/2022 10:42 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0147'22 WITH IMMEDIATE EFFECT,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0136'22 WITH IMMEDIATE EFFECT,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/26/2022 02:59 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 79'22 with immediate effect,2022-05-19T04:00:00+00:00,[],MI,2021-2022 +House conferees named 12/09/2021: Reps. Ben Frederick Greg VanWoerkom Terry J. Sabo,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +Rep. Thomas Albert replaced Rep. Greg VanWoerkom as chair of conference 12/09/2021,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/14/2022 01:24 PM,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +assigned PA 104'21 with immediate effect,2021-11-04T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/29/2021 09:46 AM,2021-07-21T04:00:00+00:00,['executive-signature'],MI,2021-2022 +transmitted,2021-06-17T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-2) CONCURRED IN AS SUBSTITUTED (S-3),2021-11-02T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/05/2022 12:05 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 96'21,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +"re-referred to Committee on Families, Children, and Seniors",2022-11-10T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0072'21 WITH IMMEDIATE EFFECT,2021-08-25T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/20/2021 01:38 PM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 12/22/2022 02:18 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 03/23/2022 10:48 AM,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +Governor returned bill,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 01:04 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 07/01/2021 01:22 PM,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/13/2022 02:10 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0050'22 WITH IMMEDIATE EFFECT,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +assigned PA 161'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 469 Yeas 56 Nays 51 Excused 0 Not Voting 2,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/30/2021 01:38 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 10/03/2022 02:30 PM,2022-10-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +AMENDMENT(S) ADOPTED,2021-06-24T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +vetoed by the Governor 12/22/2022,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0004'21 WITH IMMEDIATE EFFECT,2021-03-25T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0265'22 WITH IMMEDIATE EFFECT,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/13/2021 04:36 PM,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/01/2021 01:24 PM,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 05/05/2022 03:04 PM,2022-05-05T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 12/13/2022 11:46 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 142'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/11/2022 10:50 AM,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 448 Yeas 100 Nays 4 Excused 0 Not Voting 5,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/22/2022 03:44 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2021-06-10T04:00:00+00:00,[],MI,2021-2022 +assigned PA 57'21 with immediate effect,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Agriculture,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 28'22 with immediate effect,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +assigned PA 42'21 with immediate effect,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +enrollment vacated,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/13/2022 02:44 PM,2022-12-08T05:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 40'22 with immediate effect,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +Rep. Greg VanWoerkom replaced Rep. Ann Bollin as conferee 12/09/2021,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 10/07/2022 03:32 PM,2022-10-11T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 10/12/2022 09:23 AM,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Appropriations,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/21/2021 02:10 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/13/2022 04:12 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/07/2021 10:47 AM,2021-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +vetoed by the Governor 07/21/2022,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +PASSED; GIVEN IMMEDIATE EFFECT ROLL CALL # 321 YEAS 31 NAYS 4 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +assigned PA 56'21 with immediate effect,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 12/22/2022,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +motion to discharge committee approved,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/17/2021 11:18 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +assigned PA 244'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-23T04:00:00+00:00,[],MI,2021-2022 +assigned PA 184'22 with immediate effect,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +assigned PA 226'22 with immediate effect,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 448 Yeas 81 Nays 24 Excused 0 Not Voting 5,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 418 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/29/2021 11:20 AM,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +Rep. Felicia Brabec replaced Rep. Abdullah Hammoud as conferee 01/26/2022,2022-01-26T05:00:00+00:00,[],MI,2021-2022 +CONFERENCE REPORT RECEIVED IN SENATE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/07/2022 03:38 PM,2022-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:16 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0071'21 WITH IMMEDIATE EFFECT,2021-08-25T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/27/2021 09:18 AM,2021-07-27T04:00:00+00:00,[],MI,2021-2022 +assigned PA 43'21 with immediate effect,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/05/2022 12:21 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +title amendment agreed to,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/22/2022 04:04 PM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/02/2022 11:34 AM,2022-06-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 10/14/2022 11:54 AM,2022-10-13T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 23'22 with immediate effect,2022-03-10T05:00:00+00:00,[],MI,2021-2022 +conference report received,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/02/2022 11:44 AM,2022-06-02T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +vetoed by the Governor 12/22/2022,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2),2022-06-21T04:00:00+00:00,[],MI,2021-2022 +re-returned from Senate with substitute (S-5) to House substitute (H-1) with title amendment,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/17/2021 11:34 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 21 YEAS 36 NAYS 2 EXCUSED 0 NOT VOTING 0,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +returned to Senate,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 11/04/2021 09:40 AM,2021-11-09T05:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 175'22 with immediate effect,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +assigned PA 189'22 with immediate effect,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +retransmitted,2021-03-03T05:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/09/2021 11:36 AM,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Greg VanWoerkom Thomas A. Albert Terry J. Sabo,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 471 Yeas 56 Nays 51 Excused 0 Not Voting 2,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0082'22 WITH IMMEDIATE EFFECT,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 05/05/2022 02:50 PM,2022-05-05T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 157'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0178'22 WITH IMMEDIATE EFFECT,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +assigned PA 61'22 with immediate effect,2022-03-24T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 05/19/2021 10:02 AM,2021-05-20T04:00:00+00:00,['executive-signature'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 06/24/2022 09:22 AM,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0238'22,2022-12-28T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/11/2022 01:54 PM,2022-07-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 02/23/2022 11:22 AM,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/23/2022 10:52 AM,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +re-received from Senate with notice of nonconcurrence in House substitute (H-1),2022-11-10T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/07/2022 03:28 PM,2022-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +re-returned to Senate,2022-05-10T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 04/28/2022 12:11 PM,2022-04-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +vetoed by the Governor 07/01/2021,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/21/2022 10:44 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +vetoed by the Governor 10/29/2021,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 473 Yeas 102 Nays 0 Excused 0 Not Voting 7,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +vote reconsidered,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +re-returned to Senate,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +vote reconsidered,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0030'21 WITH IMMEDIATE EFFECT,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/14/2022 01:22 PM,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 09/10/2021 08:25 AM,2021-09-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 13'22 with immediate effect,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +assigned PA 253'22 with immediate effect,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/25/2022 10:40 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0179'22 WITH IMMEDIATE EFFECT,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +assigned PA 190'22 with immediate effect,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/21/2021 02:12 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/05/2022 04:56 PM,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 03/29/2022 10:40 AM,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 02/28/2022 01:20 PM,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +conference report received,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-4) DEFEATED,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/07/2022 05:10 PM,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/19/2022 12:16 PM,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/05/2022 04:52 PM,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +assigned PA 245'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 91'21 with immediate effect,2021-10-20T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 05/26/2022 10:56 AM,2022-06-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 08/23/2021 04:12 PM,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/14/2022 01:26 PM,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0224'22 WITH IMMEDIATE EFFECT,2022-11-09T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +assigned PA 243'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +Rep. Thomas Albert replaced Rep. Ann Bollin as conferee 09/20/2021,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:34 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0168'21 WITH IMMEDIATE EFFECT,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/05/2022 05:06 PM,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +assigned PA 80 with immediate effect,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/11/2022 01:08 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 67'22 with immediate effect,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/01/2021 03:13 PM,2021-09-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 206'22 with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +assigned PA 227'22 with immediate effect,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +SENATE ADOPTED CONFERENCE REPORT WITH IMMEDIATE EFFECT ROLL CALL # 508 YEAS 25 NAYS 11 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +conference report adopted Roll Call # 441 Yeas 97 Nays 8 Excused 0 Not Voting 5,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 57 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +assigned PA 65'22 with immediate effect,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +assigned PA 72'22 with immediate effect,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0018'22 WITH IMMEDIATE EFFECT,2022-03-01T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/05/2022 04:50 PM,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +FULL TITLE AGREED TO,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-4) ADOPTED,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +Rep. Mary Whiteford replaced Rep. Thomas Albert as conferee 09/27/2022,2022-09-27T04:00:00+00:00,[],MI,2021-2022 +assigned PA 78 with immediate effect,2021-08-19T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 09/10/2021 10:12 AM,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0049'22 WITH IMMEDIATE EFFECT,2022-04-12T04:00:00+00:00,[],MI,2021-2022 +assigned PA 135'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/01/2021 03:09 PM,2021-09-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +Rep. Joe Tate replaced Rep. Terry Sabo as conferee 09/20/2021,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +assigned PA 150'21,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +assigned PA 183'22 with immediate effect,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/26/2022 01:42 PM,2022-06-01T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/14/2022 09:43 AM,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +referred to Committee on Appropriations,2022-09-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +re-referred to Committee on Rules and Competitiveness,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +assigned PA 158'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/14/2022 11:56 AM,2022-10-13T04:00:00+00:00,['executive-signature'],MI,2021-2022 +Rep. Joe Tate replaced Rep. Terry Sabo as conferee 12/09/2021,2021-12-09T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-4) with immediate effect and full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +assigned PA 254'22,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/14/2022 01:08 PM,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +assigned PA 234'22 with immediate effect,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 134'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0067'21 WITH IMMEDIATE EFFECT,2021-07-27T04:00:00+00:00,[],MI,2021-2022 +assigned PA 76'21 with immediate effect,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/05/2022 12:19 PM,2022-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/07/2022 04:58 PM,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/26/2022 02:57 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 12/23/2021 10:20 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 213'22,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/06/2021 02:45 PM,2021-07-14T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 141'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO COMMITTEE OF THE WHOLE,2021-06-23T04:00:00+00:00,['referral-committee'],MI,2021-2022 +placed on messages from the Senate,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 10/07/2022 04:52 PM,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/07/2021 04:36 PM,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 06/10/2022,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +RETURNED FROM HOUSE WITH AMENDMENT(S) TO SENATE SUBSTITUTE (S-1),2021-03-04T05:00:00+00:00,[],MI,2021-2022 +House conferees named 06/21/2022: Reps. Brad Paquette Thomas A. Albert Regina Weiss,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +assigned PA 2'21 with immediate effect,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/16/2021 03:34 PM,2021-12-16T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 42'22 with immediate effect,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +conference report adopted Roll Call # 369 Yeas 97 Nays 9 Excused 0 Not Voting 4,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +assigned PA 12'22 with immediate effect,2022-02-23T05:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Government Operations,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Education,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0119'22 WITH IMMEDIATE EFFECT,2022-06-30T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/26/2022 03:25 PM,2022-09-22T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +re-returned from Senate with concurrence to House amendment(s) to Senate substitute (S-1),2022-02-09T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/10/2022 11:24 AM,2022-06-09T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ORDERED ENROLLED OUT OF SESSION,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 05/05/2022 02:52 PM,2022-05-05T04:00:00+00:00,['executive-signature'],MI,2021-2022 +title amendment agreed to,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/23/2022 09:58 AM,2022-06-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +Senate substitute (S-1) to House substitute (H-1) concurred in,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/21/2022 09:54 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +laid over one day under the rules,2021-05-27T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/07/2022 04:48 PM,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-05-11T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/23/2021 10:08 AM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 11/04/2021 02:48 PM,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Rules and Competitiveness,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +assigned PA 225'22 with immediate effect,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 05/19/2021 01:10 PM,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +REFERRED TO CONFERENCE COMMITTEE,2022-06-23T04:00:00+00:00,[],MI,2021-2022 +Rep. Mary Whiteford replaced Rep. Greg VanWoerkom as conferee 12/06/2022,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +assigned PA 103'21 with immediate effect,2021-11-09T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/23/2022 02:52 PM,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +re-returned to Senate,2021-10-14T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 09/29/2022 01:53 PM,2022-10-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/21/2022 11:18 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 05/05/2022 04:54 PM,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/07/2022 03:52 PM,2022-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +retransmitted,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:20 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +assigned PA 195'22 with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0015'21 WITH IMMEDIATE EFFECT,2021-05-20T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 418 Yeas 79 Nays 30 Excused 0 Not Voting 1,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 05/17/2022 11:37 AM,2022-05-18T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +roll call Roll Call # 284 Yeas 110 Nays 0 Excused 0 Not Voting 0,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2022-03-03T05:00:00+00:00,[],MI,2021-2022 +HOUSE AMENDMENT(S) TO SENATE SUBSTITUTE (S-1) CONCURRED IN,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/20/2021 01:34 PM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +line item(s) separated,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 07/11/2022 01:36 PM,2022-07-20T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +re-referred to Committee on Tax Policy,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-04-28T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +retransmitted,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/25/2022 09:34 AM,2022-08-17T04:00:00+00:00,['executive-signature'],MI,2021-2022 +vetoed by the Governor 10/03/2021,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +assigned PA 64'22 with immediate effect,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 10/03/2021,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +assigned PA 200'22 with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0083'21 WITH IMMEDIATE EFFECT,2021-09-14T04:00:00+00:00,[],MI,2021-2022 +"SEN. CURTIS HERTEL, JR. REPLACED SEN. JEFF IRWIN AS CONFEREE 09/21/2021",2021-09-21T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 302 YEAS 35 NAYS 0 EXCUSED 3 NOT VOTING 0,2022-06-14T04:00:00+00:00,['passage'],MI,2021-2022 +bill ordered enrolled,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +SEN. JIM STAMAS REPLACED SEN. KIMBERLY A. LASATA AS CHAIR OF CONFERENCE COMMITTEE 09/28/2022,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor with line item(s) vetoed 07/13/2021 02:36 PM,2021-07-21T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 12/27/2021 12:32 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +vote on concurring reconsidered,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +re-returned from Senate with concurrence to House substitute (H-2) to Senate substitute (S-3),2021-11-02T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/14/2022 01:10 PM,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/10/2022 01:00 PM,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +REPORTED BY COMMITTEE OF THE WHOLE FAVORABLY WITH SUBSTITUTE (S-1),2021-06-24T04:00:00+00:00,['committee-passage'],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +substitute (H-4) adopted,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +assigned PA 240'22 with immediate effect,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/07/2022 03:54 PM,2022-09-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +conference report received,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0197'22 WITH IMMEDIATE EFFECT,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +assigned PA 47'21 with immediate effect,2021-07-01T04:00:00+00:00,[],MI,2021-2022 +assigned PA 88'22,2022-06-01T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 10/14/2022 11:48 AM,2022-10-13T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 218'22 with immediate effect,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +request granted,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in as substituted (H-4),2022-02-08T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 10/01/2021 03:11 PM,2021-09-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +CONFERENCE REPORT RECEIVED IN SENATE,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/14/2022 01:02 PM,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 10/07/2022 05:14 PM,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +assigned PA 93'22 with immediate effect,2022-06-09T04:00:00+00:00,[],MI,2021-2022 +assigned PA 219'22 with immediate effect,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +assigned PA 149'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/13/2021 04:20 PM,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +SUBSTITUTE (S-1) CONCURRED IN,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +assigned PA 107'22 with immediate effect,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 10/04/2022 09:54 AM,2022-10-11T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0171'22 WITH IMMEDIATE EFFECT,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 03/07/2022 12:49 PM,2022-03-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +Rep. Greg VanWoerkom replaced Rep. Thomas Albert as conferee 12/06/2022,2022-12-06T05:00:00+00:00,[],MI,2021-2022 +CONFERENCE REPORT RECEIVED IN SENATE,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Elections and Ethics,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +assigned PA 143'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 41 YEAS 31 NAYS 4 EXCUSED 1 NOT VOTING 0,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 05/19/2022 10:48 AM,2022-05-24T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 10/07/2022 05:12 PM,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +motion to override line item(s) failed Roll Call # 34 Yeas 64 Nays 45 Excused 0 Not Voting 1,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 283 Yeas 110 Nays 0 Excused 0 Not Voting 0,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-06-30T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/21/2021 02:16 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 02/15/2022 11:38 AM,2022-02-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 66'22 with immediate effect,2022-05-05T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-5) to House substitute (H-1) concurred in,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/25/2022 10:48 AM,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Elections and Ethics,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +CONFERENCE REPORT RECEIVED IN SENATE,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +re-returned from Senate with substitute (S-3) to House substitute (H-1) with title amendment,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 05/03/2021 09:08 AM,2021-05-04T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +APPROVED BY GOVERNOR WITH LINE ITEM(S) VETOED 07/14/2022 10:57 AM,2022-07-20T04:00:00+00:00,['executive-veto-line-item'],MI,2021-2022 +presented to the Governor 12/13/2022 11:04 AM,2022-12-08T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +"SEN. CURTIS HERTEL, JR. REPLACED SEN. JEFF IRWIN AS CONFEREE 09/28/2022",2022-09-28T04:00:00+00:00,[],MI,2021-2022 +conference report adopted Roll Call # 631 Yeas 94 Nays 9 Excused 0 Not Voting 4,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDED,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +conference report received,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +CONFERENCE REPORT RECEIVED IN SENATE,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +assigned PA 187'22 with immediate effect,2022-08-17T04:00:00+00:00,[],MI,2021-2022 +VETOED BY GOVERNOR 05/13/2021,2021-05-13T04:00:00+00:00,['executive-veto'],MI,2021-2022 +retransmitted,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 12/22/2022,2022-12-08T05:00:00+00:00,[],MI,2021-2022 +SENATE ADOPTED CONFERENCE REPORT WITH IMMEDIATE EFFECT ROLL CALL # 352 YEAS 34 NAYS 2 EXCUSED 0 NOT VOTING 0,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/14/2022 02:32 PM,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +conference report adopted Roll Call # 641 Yeas 78 Nays 25 Excused 0 Not Voting 4,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-4) with title amendment,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +assigned PA 48'21 with immediate effect,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +SENATE ADOPTED CONFERENCE REPORT WITH IMMEDIATE EFFECT ROLL CALL # 351 YEAS 35 NAYS 0 EXCUSED 1 NOT VOTING 0,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 11/05/2021 01:35 PM,2021-11-09T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +roll call Roll Call # 33 Yeas 104 Nays 0 Excused 0 Not Voting 2,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +retransmitted,2022-03-15T04:00:00+00:00,[],MI,2021-2022 +assigned PA 208'22 with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +assigned PA 215'22 with immediate effect,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +vetoed by the Governor 10/03/2021,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING WITH SUBSTITUTE (S-1),2021-06-24T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-4) concurred in,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 48 Yeas 60 Nays 49 Excused 0 Not Voting 2,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0137'21 WITH IMMEDIATE EFFECT,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor 02/16/2022 09:30 AM,2022-02-16T05:00:00+00:00,['executive-signature'],MI,2021-2022 +motion to override line item(s) failed Roll Call # 35 Yeas 66 Nays 43 Excused 0 Not Voting 1,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 10/04/2022 03:01 PM,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 327 Yeas 93 Nays 10 Excused 0 Not Voting 7,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +re-returned from Senate with concurrence to House amendment(s) to Senate substitute (S-1),2021-03-04T05:00:00+00:00,[],MI,2021-2022 +VETOED BY GOVERNOR 03/18/2022,2022-03-22T04:00:00+00:00,['executive-veto'],MI,2021-2022 +bill ordered enrolled,2021-06-03T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 05/19/2022 11:36 AM,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +assigned PA 207'22 with immediate effect,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED OUT OF SESSION,2021-07-15T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +SENATE ADOPTED CONFERENCE REPORT WITH IMMEDIATE EFFECT ROLL CALL # 403 YEAS 37 NAYS 0 EXCUSED 1 NOT VOTING 0,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0194'22 WITH IMMEDIATE EFFECT,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 02/16/2022 10:56 AM,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2022-03-22T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-10-19T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/08/2021 09:20 AM,2021-06-08T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +title amendment agreed to,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-03-04T05:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0081'22 WITH IMMEDIATE EFFECT,2022-05-24T04:00:00+00:00,[],MI,2021-2022 +conference report adopted by Senate,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/08/2021 09:18 AM,2021-06-08T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 07/01/2021 03:10 PM,2021-07-15T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +full title agreed to,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +CONFERENCE REPORT RECEIVED IN SENATE,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +conference report adopted by Senate with immediate effect,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0144'22 WITH IMMEDIATE EFFECT,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2021-05-13T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +SENATE ADOPTED CONFERENCE REPORT WITH IMMEDIATE EFFECT ROLL CALL # 463 YEAS 33 NAYS 0 EXCUSED 3 NOT VOTING 2,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 11/10/2021 03:46 PM,2021-11-30T05:00:00+00:00,['executive-signature'],MI,2021-2022 +roll call Roll Call # 389 Yeas 95 Nays 13 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 10/20/2021 12:02 PM,2021-10-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +title amended,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +conference report received,2021-09-21T04:00:00+00:00,[],MI,2021-2022 +RETURN GRANTED,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +re-referred to Committee on Elections and Ethics,2021-10-05T04:00:00+00:00,[],MI,2021-2022 +line item(s) separated,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +RULES SUSPENDED,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PLACED ON ORDER OF THIRD READING,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +VETOED BY GOVERNOR 10/29/2021,2021-11-02T04:00:00+00:00,['executive-veto'],MI,2021-2022 +full title agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +motion to override line item(s) failed Roll Call # 420 Yeas 54 Nays 54 Excused 0 Not Voting 2,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +retransmitted,2022-02-08T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 11/10/2021 04:08 PM,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +PLACED ON IMMEDIATE PASSAGE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 07/15/2021 12:54 PM,2021-07-27T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 03/08/2021 03:04 PM,2021-03-04T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +re-returned to Senate,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +conference report adopted Roll Call # 442 Yeas 99 Nays 6 Excused 0 Not Voting 5,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 10/20/2021 12:04 PM,2021-10-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 06/09/2021 01:15 PM,2021-06-09T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2022-06-21T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/09/2021 01:17 PM,2021-06-09T04:00:00+00:00,['executive-signature'],MI,2021-2022 +bill ordered enrolled,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +VETO OVERRIDE DEFEATED ROLL CALL # 189 YEAS 20 NAYS 15 EXCUSED 1 NOT VOTING 0,2021-05-18T04:00:00+00:00,[],MI,2021-2022 +assigned PA 9'22 with immediate effect,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +SENATE ADOPTED CONFERENCE REPORT WITH IMMEDIATE EFFECT ROLL CALL # 501 YEAS 35 NAYS 1 EXCUSED 2 NOT VOTING 0,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2022-09-20T04:00:00+00:00,[],MI,2021-2022 +conference report received,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-3) to House substitute (H-1) concurred in,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 49 Yeas 64 Nays 45 Excused 0 Not Voting 1,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +conference report adopted by Senate with immediate effect,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-4) concurred in,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +conference report adopted Roll Call # 454 Yeas 78 Nays 26 Excused 0 Not Voting 5,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 12/16/2021 03:38 PM,2021-12-16T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +VETOED BY GOVERNOR 10/29/2021,2021-11-02T04:00:00+00:00,['executive-veto'],MI,2021-2022 +vote reconsidered,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) DEFEATED,2021-06-24T04:00:00+00:00,['amendment-failure'],MI,2021-2022 +POSTPONED FOR THE DAY,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +VOTE RECONSIDERED,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +assigned PA 112'21,2021-11-30T05:00:00+00:00,[],MI,2021-2022 +RETURNED FROM HOUSE WITH SUBSTITUTE (H-4) TO SENATE SUBSTITUTE (S-1),2022-02-09T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 09/24/2021 02:20 PM,2021-09-23T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +filed with Secretary of State 06/09/2021 02:34 PM,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/23/2022 12:28 PM,2022-06-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +returned to Senate,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/14/2022 12:10 PM,2022-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor with line item(s) vetoed 03/09/2021 09:20 AM,2021-03-09T05:00:00+00:00,['executive-signature'],MI,2021-2022 +FILED WITH SECRETARY OF STATE 07/15/2021 02:02 PM,2021-07-27T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/09/2021 02:32 PM,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor with line item(s) vetoed 09/29/2021 10:01 AM,2021-09-29T04:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0065'21 WITH IMMEDIATE EFFECT,2021-07-27T04:00:00+00:00,[],MI,2021-2022 +assigned PA 23'21 with immediate effect,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 03/09/2021 11:38 AM,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +approved by the Governor with line item(s) vetoed 07/20/2022 12:39 PM,2022-07-20T04:00:00+00:00,['executive-signature'],MI,2021-2022 +approved by the Governor 07/05/2022 01:25 PM,2022-07-01T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 24'21 with immediate effect,2021-06-09T04:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2021-11-02T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 12/20/2021 01:32 PM,2021-12-29T05:00:00+00:00,['executive-signature'],MI,2021-2022 +re-returned to Senate,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-12-14T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-09-22T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 293 Yeas 98 Nays 6 Excused 0 Not Voting 6,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +disapproved line item(s) re-referred to Committee on Appropriations,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) ADOPTED,2022-02-09T05:00:00+00:00,['amendment-passage'],MI,2021-2022 +enrollment vacated,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +AMENDMENT(S) ADOPTED,2022-03-16T04:00:00+00:00,['amendment-passage'],MI,2021-2022 +PASSED ROLL CALL # 320 YEAS 19 NAYS 16 EXCUSED 1 NOT VOTING 0,2021-06-24T04:00:00+00:00,['passage'],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +PASSED ROLL CALL # 86 YEAS 34 NAYS 2 EXCUSED 2 NOT VOTING 0,2022-03-16T04:00:00+00:00,['passage'],MI,2021-2022 +vote on concurring reconsidered,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +HOUSE SUBSTITUTE (H-4) TO SENATE SUBSTITUTE (S-1) AS AMENDED CONCURRED IN,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/07/2022 10:22 AM,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/20/2022 03:20 PM,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 09/29/2021 10:58 AM,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +assigned PA 3'21 with immediate effect,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED OUT OF SESSION,2022-10-11T04:00:00+00:00,[],MI,2021-2022 +title amendment agreed to,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +returned to Senate,2021-03-17T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 12/21/2021 02:06 PM,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 12/17/2021 11:14 AM,2021-12-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +PRESENTED TO GOVERNOR 09/27/2021 09:44 AM,2021-09-28T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +bill ordered enrolled,2022-06-14T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 12/20/2021 01:40 PM,2021-12-15T05:00:00+00:00,['executive-signature'],MI,2021-2022 +ASSIGNED PA 0132'21 WITH IMMEDIATE EFFECT,2021-12-29T05:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 10/05/2022 11:02 AM,2022-10-11T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +APPROVED BY GOVERNOR WITH LINE ITEM(S) VETOED 09/29/2021 10:04 AM,2021-09-30T04:00:00+00:00,['executive-veto-line-item'],MI,2021-2022 +returned from Senate with substitute (S-2) with immediate effect and full title,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +IMMEDIATE EFFECT DEFEATED,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +INSERTED FULL TITLE,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-4) concurred in,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +ROLL CALL: ROLL CALL # 20 YEAS 38 NAYS 0 EXCUSED 0 NOT VOTING 0,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +assigned PA 135'22 with immediate effect,2022-07-01T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 03/23/2021 08:44 AM,2021-03-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +assigned PA 86'21 with immediate effect,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +line item(s) separated,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +assigned PA 166'22 with immediate effect,2022-07-20T04:00:00+00:00,[],MI,2021-2022 +motion to override line item(s) failed Roll Call # 36 Yeas 64 Nays 45 Excused 0 Not Voting 1,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +disapproved line item(s) re-referred to Committee on Appropriations,2022-09-21T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +VETOED BY GOVERNOR 03/26/2021,2021-04-13T04:00:00+00:00,['executive-veto'],MI,2021-2022 +disapproved line item(s) re-referred to Committee on Appropriations,2021-09-29T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 09/29/2021 11:00 AM,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +APPROVED BY GOVERNOR 10/11/2022 11:40 AM,2022-10-13T04:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 12/21/2021 02:08 PM,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/21/2022 10:42 AM,2022-06-21T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +TITLE AMENDMENT AGREED TO,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +returned from Senate with substitute (S-1) with full title,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 393 Yeas 96 Nays 12 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +ORDERED ENROLLED,2021-03-18T04:00:00+00:00,[],MI,2021-2022 +laid over one day under the rules,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +re-returned from Senate with amendment(s) to House substitute (H-4),2022-02-09T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +motion to override line item(s) failed Roll Call # 37 Yeas 65 Nays 44 Excused 0 Not Voting 1,2021-03-09T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +FILED WITH SECRETARY OF STATE 10/12/2022 09:21 AM,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0087'21 WITH IMMEDIATE EFFECT,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 06/23/2022 11:00 AM,2022-06-28T04:00:00+00:00,['executive-signature'],MI,2021-2022 +assigned PA 133'21 with immediate effect,2021-12-15T05:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2021-09-30T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 06/23/2022 02:50 PM,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +PRESENTED TO GOVERNOR 03/23/2021 08:46 AM,2021-03-24T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +laid over one day under the rules,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +rule suspended,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +ASSIGNED PA 0212'22 WITH IMMEDIATE EFFECT,2022-10-13T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 06/30/2021 02:04 PM,2021-06-30T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +motion to discharge committee approved,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-2) concurred in,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 122 Yeas 100 Nays 4 Excused 0 Not Voting 2,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +assigned PA 106'22 with immediate effect,2022-06-28T04:00:00+00:00,[],MI,2021-2022 +VETOED BY GOVERNOR 03/26/2021,2021-04-13T04:00:00+00:00,['executive-veto'],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +motion to override line item(s) failed Roll Call # 465 Yeas 52 Nays 44 Excused 0 Not Voting 13,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 07/13/2021 10:08 AM,2021-07-14T04:00:00+00:00,['executive-signature'],MI,2021-2022 +rule suspended,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +motion to override line item(s) failed Roll Call # 466 Yeas 53 Nays 43 Excused 0 Not Voting 13,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +POSTPONED FOR THE DAY,2021-04-13T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 07/13/2021 04:30 PM,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +Senate amendment(s) to House substitute (H-4) concurred in,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 390 Yeas 57 Nays 51 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-03-16T04:00:00+00:00,[],MI,2021-2022 +motion to override line item(s) failed Roll Call # 467 Yeas 53 Nays 43 Excused 0 Not Voting 13,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 34 Yeas 106 Nays 0 Excused 0 Not Voting 0,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +assigned PA 53'21 with immediate effect,2021-07-14T04:00:00+00:00,[],MI,2021-2022 +full title agreed to,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2022-02-09T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +motion to override line item(s) failed Roll Call # 468 Yeas 52 Nays 44 Excused 0 Not Voting 13,2022-09-28T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 03/17/2022 10:30 AM,2022-03-17T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +approved by the Governor 03/23/2022 09:57 AM,2022-03-23T04:00:00+00:00,['executive-signature'],MI,2021-2022 +presented to the Governor 02/15/2022 11:34 AM,2022-02-15T05:00:00+00:00,['executive-receipt'],MI,2021-2022 +enrollment vacated,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +vote on concurring reconsidered,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +approved by the Governor 02/16/2022 09:32 AM,2022-02-16T05:00:00+00:00,['executive-signature'],MI,2021-2022 +filed with Secretary of State 03/23/2022 11:00 AM,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +assigned PA 46'22 with immediate effect,2022-03-23T04:00:00+00:00,[],MI,2021-2022 +filed with Secretary of State 02/16/2022 10:58 AM,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +Senate substitute (S-1) concurred in,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +roll call Roll Call # 394 Yeas 59 Nays 49 Excused 0 Not Voting 2,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +assigned PA 10'22 with immediate effect,2022-02-16T05:00:00+00:00,[],MI,2021-2022 +bill ordered enrolled,2021-06-24T04:00:00+00:00,[],MI,2021-2022 +presented to the Governor 07/06/2021 02:43 PM,2021-07-01T04:00:00+00:00,['executive-receipt'],MI,2021-2022 +vetoed by the Governor 07/20/2021,2021-07-21T04:00:00+00:00,[],MI,2021-2022 +referred to Committee on Government Operations,2021-07-21T04:00:00+00:00,['referral-committee'],MI,2021-2022 +Coauthored by Representatives Judy and Abbott,2024-01-10,[],IN,2024 +Senator Tomes added as second author,2024-01-08,[],IN,2024 +Authored by Representative Mayfield,2024-01-08,[],IN,2024 +Authored by Senator Pol,2024-01-08,[],IN,2024 +Coauthored by Representative Teshka,2024-01-08,[],IN,2024 +Authored by Representative Davis,2024-01-08,[],IN,2024 +Authored by Representative Campbell,2024-01-08,[],IN,2024 +Coauthored by Representatives Speedy and Judy,2024-01-10,[],IN,2024 +Authored by Representative Greene,2024-01-08,[],IN,2024 +Authored by Senator Bassler,2024-01-09,[],IN,2024 +Authored by Senator Walker G,2024-01-08,[],IN,2024 +Authored by Senator Buck,2024-01-08,[],IN,2024 +Authored by Senator Randolph Lonnie M,2024-01-08,[],IN,2024 +Authored by Representative Soliday,2024-01-10,[],IN,2024 +Authored by Senator Qaddoura,2024-02-29,[],IN,2024 +"Authored by Senators Holdman, Crider, Bray",2024-01-18,[],IN,2024 +Coauthored by Representative Pack,2024-01-08,[],IN,2024 +Referred to the Senate,2023-11-21,['referral'],IN,2024 +"Coauthored by Representatives Teshka, Lucas, Morrison",2024-01-08,[],IN,2024 +Coauthored by Representative Bartels,2024-01-09,[],IN,2024 +Authored by Representative DeVon,2024-01-08,[],IN,2024 +"Coauthored by Representatives Carbaugh, Lehman, Schaibley",2024-01-09,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Authored by Senator Taylor G,2024-01-09,[],IN,2024 +Authored by Representative Prescott,2024-03-07,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Representative Andrade,2024-01-22,[],IN,2024 +Authored by Senators Young M and Tomes,2024-01-08,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Authored by Representative Clere,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Senator Young M,2024-01-10,[],IN,2024 +Authored by Representative Bartlett,2024-01-08,[],IN,2024 +Authored by Senator Raatz,2024-01-09,[],IN,2024 +Authored by Representative Klinker,2024-02-19,[],IN,2024 +Authored by Representative Johnson,2024-01-09,[],IN,2024 +Authored by Representative Moed,2024-01-09,[],IN,2024 +Authored by Representative Porter,2024-01-10,[],IN,2024 +Authored by Senator Walker G,2024-01-08,[],IN,2024 +Authored by Senators Byrne and Raatz,2024-01-08,[],IN,2024 +Coauthored by Representatives Teshka and Hall,2024-01-09,[],IN,2024 +Authored by Representative DeLaney,2024-01-09,[],IN,2024 +Coauthored by Representatives Cash and Haggard,2024-01-09,[],IN,2024 +Authored by Senators Freeman and Taylor G,2024-01-08,[],IN,2024 +Authored by Senators Bray and Goode,2024-02-12,[],IN,2024 +Authored by Representative Slager,2024-01-16,[],IN,2024 +Authored by Senator Deery,2024-01-09,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Coauthored by Representative Manning,2024-01-10,[],IN,2024 +Authored by Senator Baldwin,2024-01-16,[],IN,2024 +Authored by Representative Cash,2024-01-08,[],IN,2024 +Authored by Senator Alexander,2024-01-25,[],IN,2024 +Coauthored by Representatives Meltzer and Garcia Wilburn,2024-01-09,[],IN,2024 +Authored by Representative Goss-Reaves,2024-01-08,[],IN,2024 +Coauthored by Representative Aylesworth,2024-01-08,[],IN,2024 +Authored by Representative Porter,2024-02-01,[],IN,2024 +Authored by Senator Crider,2024-01-08,[],IN,2024 +Authored by Senator Gaskill,2024-01-08,[],IN,2024 +Authored by Senator Buck,2024-01-08,[],IN,2024 +Authored by Senators Leising and Byrne,2024-01-09,[],IN,2024 +Authored by Representative Hatcher,2024-01-09,[],IN,2024 +Authored by Senator Zay,2024-01-08,[],IN,2024 +Authored by Senator Niezgodski,2024-01-11,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Senator Ford J.D.,2024-01-08,[],IN,2024 +Authored by Representative Bauer M,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-02-27,[],IN,2024 +"Coauthored by Representatives McGuire, DeLaney, Pfaff",2024-01-10,[],IN,2024 +Authored by Senator Freeman,2024-01-08,[],IN,2024 +Authored by Representative Pack,2024-01-16,[],IN,2024 +Senate sponsor: Senator Glick,2024-02-26,[],IN,2024 +Authored by Representative Huston,2024-01-25,[],IN,2024 +Authored by Representative Errington,2024-02-27,[],IN,2024 +Authored by Representative Karickhoff,2024-01-25,[],IN,2024 +Authored by Senator Baldwin,2024-01-09,[],IN,2024 +Authored by Representative Manning,2024-01-25,[],IN,2024 +Authored by Representative Pryor,2024-02-22,[],IN,2024 +Authored by Senator Leising,2024-02-20,[],IN,2024 +Authored by Representative Errington,2024-02-27,[],IN,2024 +Authored by Representative Boy,2024-01-09,[],IN,2024 +Authored by Representative Soliday,2024-01-09,[],IN,2024 +Coauthored by Representative Snow,2024-01-09,[],IN,2024 +Authored by Representative Morrison,2024-01-09,[],IN,2024 +Coauthored by Representatives Fleming and Andrade,2024-01-10,[],IN,2024 +Coauthored by Representatives Baird and Culp,2024-01-10,[],IN,2024 +Authored by Senator Raatz,2024-01-09,[],IN,2024 +Authored by Representative Bartlett,2024-01-10,[],IN,2024 +Authored by Representative Aylesworth,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-02-27,[],IN,2024 +Authored by Representative Moed,2024-01-10,[],IN,2024 +Authored by Senator Vinzant,2024-01-16,[],IN,2024 +Authored by Senators Becker and Alting,2024-03-07,[],IN,2024 +Authored by Senator Maxwell,2024-01-10,[],IN,2024 +Coauthored by Representatives Judy and Pressel,2024-01-10,[],IN,2024 +Authored by Representative Smaltz,2024-01-10,[],IN,2024 +Authored by Senator Carrasco,2024-01-09,[],IN,2024 +Coauthored by Representatives Bartels and Moed,2024-01-09,[],IN,2024 +Coauthored by Representative Soliday,2024-01-09,[],IN,2024 +Coauthored by Representative DeVon,2024-01-08,[],IN,2024 +Authored by Representative Pack,2024-01-09,[],IN,2024 +Authored by Representative Smaltz,2024-01-10,[],IN,2024 +Coauthored by Representatives Davis and McGuire,2024-01-10,[],IN,2024 +Authored by Representative Hatcher,2024-01-09,[],IN,2024 +Authored by Senator Doriot,2024-01-08,[],IN,2024 +Authored by Representative Rowray,2024-01-09,[],IN,2024 +Authored by Senators Byrne and Doriot,2024-01-09,[],IN,2024 +"Authored by Senators Walker K, Garten, Niemeyer",2024-01-09,[],IN,2024 +Authored by Senator Taylor G,2024-01-09,[],IN,2024 +Authored by Senators Pol and Hunley,2024-01-16,[],IN,2024 +Coauthored by Representative Jeter,2024-01-09,[],IN,2024 +Coauthored by Representative Patterson,2024-01-09,[],IN,2024 +Authored by Senator Mishler,2024-01-16,[],IN,2024 +Authored by Senator Charbonneau,2024-01-08,[],IN,2024 +Authored by Senator Holdman,2024-01-08,[],IN,2024 +Authored by Senator Goode,2024-01-16,[],IN,2024 +Authored by Representative DeVon,2024-01-08,[],IN,2024 +Authored by Senator Yoder,2024-01-09,[],IN,2024 +Authored by Senators Bohacek and Alting,2024-01-08,[],IN,2024 +Coauthored by Senators Busch and Johnson T,2024-01-08,[],IN,2024 +Authored by Representative Olthoff,2024-01-09,[],IN,2024 +Authored by Senator Doriot,2024-01-09,[],IN,2024 +Coauthored by Representative Miller K,2024-01-09,[],IN,2024 +Authored by Representative Andrade,2024-01-09,[],IN,2024 +Authored by Senator Gaskill,2024-01-10,[],IN,2024 +Authored by Senators Brown L and Rogers,2024-01-08,[],IN,2024 +Coauthored by Representatives VanNatter and Torr,2024-01-09,[],IN,2024 +Authored by Senators Alting and Walker K,2024-01-09,[],IN,2024 +Coauthored by Representatives Torr and Miller D,2024-01-09,[],IN,2024 +Authored by Representative Hatcher,2024-01-09,[],IN,2024 +Authored by Representative Clere,2024-01-08,[],IN,2024 +Authored by Representative Shackleford,2024-01-09,[],IN,2024 +Authored by Senator Dernulc,2024-01-08,[],IN,2024 +Coauthored by Representative Zimmerman,2024-01-09,[],IN,2024 +Authored by Senator Ford J.D.,2024-01-16,[],IN,2024 +"Coauthored by Senators Garten, Donato, Crane, Deery, Johnson T, Holdman, Doriot, Brown L, Gaskill, Carrasco, Alexander, Charbonneau, Messmer, Walker K, Glick, Byrne, Niemeyer, Maxwell, Buck, Koch, Busch, Leising, Dernulc, Crider, Freeman, Becker, Goode and Baldwin",2024-01-16,[],IN,2024 +Authored by Senator Hunley,2024-01-16,[],IN,2024 +Authored by Senator Pol,2024-01-11,[],IN,2024 +Authored by Representative Rowray,2024-01-08,[],IN,2024 +Coauthored by Representatives Manning and Davis,2024-01-09,[],IN,2024 +Authored by Representative Andrade,2024-01-22,[],IN,2024 +Representative Thompson added as coauthor,2024-02-20,[],IN,2024 +Authored by Representative Smith V,2024-01-09,[],IN,2024 +Authored by Representative Bauer M,2024-01-08,[],IN,2024 +Authored by Senator Buck,2024-01-08,[],IN,2024 +Authored by Senator Messmer,2024-02-06,[],IN,2024 +Authored by Senator Yoder,2024-01-09,[],IN,2024 +Authored by Representative DeVon,2024-01-08,[],IN,2024 +"Coauthored by Representatives Jeter, Karickhoff, Miller D",2024-01-10,[],IN,2024 +Authored by Senator Raatz,2024-01-09,[],IN,2024 +Authored by Representative Lehman,2024-01-08,[],IN,2024 +Authored by Senator Ford J.D.,2024-01-09,[],IN,2024 +Authored by Senator Glick,2024-01-16,[],IN,2024 +Coauthored by Representative Pack,2024-01-09,[],IN,2024 +Coauthored by Representatives Barrett and McGuire,2024-01-10,[],IN,2024 +Coauthored by Representatives Pressel and King,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Representative Soliday,2024-01-09,[],IN,2024 +Authored by Representative Pack,2024-01-09,[],IN,2024 +Authored by Representative Moseley,2024-01-09,[],IN,2024 +Authored by Senator Qaddoura,2024-02-29,[],IN,2024 +Authored by Senators Becker and Leising,2024-02-29,[],IN,2024 +Authored by Senator Byrne,2024-02-29,[],IN,2024 +Authored by Senator Ford J.D.,2024-02-29,[],IN,2024 +Authored by Senator Qaddoura,2024-02-29,[],IN,2024 +Authored by Senator Zay,2024-02-29,[],IN,2024 +Authored by Representative O'Brien,2024-03-04,[],IN,2024 +Authored by Representative GiaQuinta,2024-03-05,[],IN,2024 +Authored by Representative Miller K,2024-01-09,[],IN,2024 +Authored by Representative McNamara,2024-02-29,[],IN,2024 +Authored by Representative Harris,2024-01-08,[],IN,2024 +Authored by Representative Pressel,2024-02-29,[],IN,2024 +Authored by Representative McNamara,2024-02-29,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Authored by Senator Yoder,2024-01-09,[],IN,2024 +Authored by Representative Barrett,2024-01-11,[],IN,2024 +Authored by Senator Crider,2024-02-13,[],IN,2024 +Authored by Senator Messmer,2024-01-09,[],IN,2024 +Coauthored by Representative Bauer M,2024-01-08,[],IN,2024 +Authored by Senators Bray and Garten,2024-01-09,[],IN,2024 +Authored by Senator Niezgodski,2024-01-08,[],IN,2024 +Authored by Representative Klinker,2024-01-08,[],IN,2024 +Coauthored by Representatives Manning and Rowray,2024-01-08,[],IN,2024 +Authored by Senator Brown L,2024-01-08,[],IN,2024 +Authored by Representative Speedy,2024-01-10,[],IN,2024 +Senate sponsor: Senator Niezgodski,2024-02-19,[],IN,2024 +Authored by Representative Steuerwald,2024-02-19,[],IN,2024 +Authored by Senator Baldwin,2024-02-13,[],IN,2024 +Authored by Senators Tomes and Becker,2024-02-13,[],IN,2024 +Authored by Senators Baldwin and Garten,2024-01-09,[],IN,2024 +Authored by Senator Buck,2024-01-08,[],IN,2024 +"Coauthored by Senators Charbonneau, Brown L, Raatz, Freeman, Busch, Baldwin, Glick, Gaskill, Walker K and Koch",2024-01-16,[],IN,2024 +Coauthored by Representatives Fleming and Haggard,2024-01-09,[],IN,2024 +Coauthored by Representative Torr,2024-01-10,[],IN,2024 +Authored by Senators Deery and Donato,2024-01-09,[],IN,2024 +Authored by Senator Donato,2024-01-08,[],IN,2024 +Authored by Senator Buchanan,2024-01-08,[],IN,2024 +Authored by Senator Donato,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-02-27,[],IN,2024 +Authored by Senator Messmer,2024-01-16,[],IN,2024 +Authored by Representative Pack,2024-01-08,[],IN,2024 +Authored by Senator Yoder,2024-01-09,[],IN,2024 +Coauthored by Representatives Speedy and Teshka,2024-01-09,[],IN,2024 +Authored by Representative Johnson,2024-01-09,[],IN,2024 +Authored by Senator Koch,2024-02-05,[],IN,2024 +Authored by Senator Becker,2024-01-16,[],IN,2024 +Authored by Representative Klinker,2024-01-08,[],IN,2024 +Authored by Representative Klinker,2024-01-08,[],IN,2024 +Authored by Representative Meltzer,2024-01-09,[],IN,2024 +Authored by Senator Taylor G,2024-01-09,[],IN,2024 +Authored by Representative Thompson,2024-01-08,[],IN,2024 +Authored by Representative Davis,2024-01-08,[],IN,2024 +Coauthored by Representatives Miller K and Fleming,2024-01-09,[],IN,2024 +Authored by Representative Rowray,2024-01-10,[],IN,2024 +Coauthored by Senator Mishler,2024-01-18,[],IN,2024 +Authored by Senator Buchanan,2024-01-08,[],IN,2024 +Authored by Senator Bohacek,2024-01-08,[],IN,2024 +Authored by Senators Brown L and Charbonneau,2024-03-05,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Senator Randolph Lonnie M,2024-01-08,[],IN,2024 +Authored by Senators Maxwell and Bohacek,2024-01-16,[],IN,2024 +"Coauthored by Representatives Teshka, Morris, Prescott",2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Senator Charbonneau,2024-01-08,[],IN,2024 +Authored by Senator Leising,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Coauthored by Representative Hall,2024-01-08,[],IN,2024 +Authored by Senator Walker K,2024-03-04,[],IN,2024 +Authored by Representative Smaltz,2024-01-10,[],IN,2024 +"Coauthored by Representatives Genda, Aylesworth, VanNatter",2024-01-10,[],IN,2024 +Authored by Senator Maxwell,2024-03-04,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Authored by Representative DeLaney,2024-01-10,[],IN,2024 +Authored by Representative Prescott,2024-01-10,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Representative Negele,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Coauthored by Representative Meltzer,2024-01-10,[],IN,2024 +Authored by Senator Walker G,2024-01-08,[],IN,2024 +Authored by Senator Johnson T,2024-02-01,[],IN,2024 +Authored by Senator Qaddoura,2024-03-04,[],IN,2024 +Authored by Senator Ford J.D.,2024-01-08,[],IN,2024 +Authored by Senator Gaskill,2024-01-08,[],IN,2024 +Authored by Senator Leising,2024-01-08,[],IN,2024 +Authored by Senator Breaux,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Representative Mayfield,2024-01-16,[],IN,2024 +Referred to the Senate,2024-01-10,['referral'],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Representative Steuerwald,2024-02-15,[],IN,2024 +Coauthored by Representatives Karickhoff and Gore,2024-01-11,[],IN,2024 +"Senate sponsors: Senators Taylor G, Breaux, Hunley",2024-01-31,[],IN,2024 +Authored by Representative Lucas,2024-02-15,[],IN,2024 +Authored by Representative Lindauer,2024-01-11,[],IN,2024 +Referred to the Senate,2024-01-10,['referral'],IN,2024 +Authored by Representative Boy,2024-01-11,[],IN,2024 +Authored by Senator Buchanan,2024-01-11,[],IN,2024 +Authored by Senator Crider,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +"Coauthored by Representatives Behning, Morrison, Judy",2024-01-10,[],IN,2024 +Authored by Representative Lindauer,2024-01-11,[],IN,2024 +Senate sponsor: Senator Niezgodski,2024-01-31,[],IN,2024 +Authored by Senators Dernulc and Niemeyer,2024-01-18,[],IN,2024 +Authored by Representative Karickhoff,2024-01-10,[],IN,2024 +Authored by Representative Lyness,2024-01-31,[],IN,2024 +Authored by Representative Karickhoff,2024-01-10,[],IN,2024 +Coauthored by Representative Barrett,2024-01-10,[],IN,2024 +Coauthored by Representatives Teshka and McGuire,2024-01-10,[],IN,2024 +Coauthored by Representative Judy,2024-01-10,[],IN,2024 +Authored by Representative Wesco,2024-01-09,[],IN,2024 +Authored by Senator Johnson T,2024-01-16,[],IN,2024 +Authored by Representative Ledbetter,2024-01-11,[],IN,2024 +"Authored by Senators Alting, Crider, Becker",2024-01-08,[],IN,2024 +Authored by Senator Freeman,2024-01-23,[],IN,2024 +House sponsor: Representative Prescott,2024-01-25,[],IN,2024 +"Coauthored by Representatives Porter, Karickhoff, Meltzer",2024-01-08,[],IN,2024 +Authored by Representative Errington,2024-01-08,[],IN,2024 +Coauthored by Representative Fleming,2024-01-16,[],IN,2024 +Authored by Senator Walker K,2024-01-08,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Senator Pol,2024-01-11,[],IN,2024 +Authored by Senator Raatz,2024-01-11,[],IN,2024 +Coauthored by Representatives Behning and Heaton,2024-01-08,[],IN,2024 +Coauthored by Representatives King and Davis,2024-01-11,[],IN,2024 +"Coauthored by Representatives Haggard, Sweet, Prescott",2024-01-11,[],IN,2024 +Authored by Senator Mishler,2024-01-11,[],IN,2024 +Coauthored by Representative Johnson,2024-01-09,[],IN,2024 +Authored by Representative Payne,2024-01-11,[],IN,2024 +Authored by Representative Slager,2024-01-11,[],IN,2024 +Authored by Representative Lauer,2024-01-11,[],IN,2024 +Authored by Senator Qaddoura,2024-01-11,[],IN,2024 +Authored by Senator Mishler,2024-01-11,[],IN,2024 +Authored by Representative Gore,2024-01-08,[],IN,2024 +Senate sponsor: Senator Dernulc,2024-01-25,[],IN,2024 +Authored by Representative Goss-Reaves,2024-01-08,[],IN,2024 +Authored by Representative Clere,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-03-05,[],IN,2024 +Authored by Senator Koch,2024-01-09,[],IN,2024 +Authored by Senator Bray,2024-03-05,[],IN,2024 +Authored by Representative Torr,2024-01-08,[],IN,2024 +Coauthored by Senator Garten,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-03-05,[],IN,2024 +"Coauthored by Representatives Manning, Bartels, Hatfield",2024-01-08,[],IN,2024 +Authored by Representative Shackleford,2024-01-08,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Coauthored by Representative Miller D,2024-01-08,[],IN,2024 +Authored by Representative Pressel,2024-01-08,[],IN,2024 +Coauthored by Representative Clere,2024-01-08,[],IN,2024 +Coauthored by Representatives Carbaugh and Jackson,2024-01-08,[],IN,2024 +Coauthored by Representative Torr,2024-01-08,[],IN,2024 +Authored by Representative Lehman,2024-01-08,[],IN,2024 +Authored by Representative Lucas,2024-01-08,[],IN,2024 +Authored by Representative Manning,2024-01-08,[],IN,2024 +Authored by Representative Lucas,2024-01-08,[],IN,2024 +Authored by Representative Borders,2024-01-16,[],IN,2024 +Coauthored by Representative Fleming,2024-01-08,[],IN,2024 +Authored by Representative Porter,2024-01-08,[],IN,2024 +Authored by Representative Boy,2024-01-11,[],IN,2024 +Authored by Senator Ford J.D.,2024-02-15,[],IN,2024 +Authored by Senator Freeman,2024-01-10,[],IN,2024 +"Authored by Senators Deery, Raatz and Johnson T",2024-01-09,[],IN,2024 +"Senate sponsors: Senators Crider, Ford J.D., Yoder",2024-01-30,[],IN,2024 +Authored by Senator Koch,2024-01-09,[],IN,2024 +Senator Baldwin added as second author,2024-01-08,[],IN,2024 +Authored by Representative Patterson,2024-01-16,[],IN,2024 +House sponsor: Representative GiaQuinta,2024-01-30,[],IN,2024 +Coauthored by Representatives Thompson and Speedy,2024-01-09,[],IN,2024 +Authored by Senator Gaskill,2024-01-08,[],IN,2024 +Authored by Representative Porter,2024-03-06,[],IN,2024 +Coauthored by Representative Boy,2024-01-09,[],IN,2024 +Authored by Senators Messmer and Garten,2024-01-10,[],IN,2024 +Referred to the Senate,2024-01-08,['referral'],IN,2024 +Authored by Senators Gaskill and Holdman,2024-01-10,[],IN,2024 +Authored by Senator Crider,2024-01-10,[],IN,2024 +Referred to the Senate,2024-01-08,['referral'],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Senator Bohacek,2024-01-10,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Coauthored by Representative Prescott,2024-01-08,[],IN,2024 +Authored by Representative Boy,2024-01-25,[],IN,2024 +Authored by Senator Qaddoura,2024-03-07,[],IN,2024 +Authored by Representative Morrison,2024-01-08,[],IN,2024 +Authored by Representative Olthoff,2024-01-08,[],IN,2024 +Authored by Representative Smith V,2024-01-09,[],IN,2024 +Authored by Representative Smith V,2024-01-08,[],IN,2024 +Authored by Senator Randolph Lonnie M,2024-01-08,[],IN,2024 +Authored by Representative Garcia Wilburn,2024-01-11,[],IN,2024 +Authored by Representative Schaibley,2024-01-08,[],IN,2024 +Authored by Senator Charbonneau,2024-01-08,[],IN,2024 +Authored by Senator Bassler,2024-01-16,[],IN,2024 +Authored by Senator Doriot,2024-01-08,[],IN,2024 +"Coauthored by Representatives GiaQuinta, Boy, Hamilton",2024-01-08,[],IN,2024 +Authored by Senator Niemeyer,2024-01-08,[],IN,2024 +Authored by Representative Bartlett,2024-01-08,[],IN,2024 +Authored by Representative Dvorak,2024-01-08,[],IN,2024 +Authored by Representative Cash,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Senator Qaddoura,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +"Coauthored by Representatives Snow, Barrett, Heaton",2024-01-08,[],IN,2024 +Authored by Senator Maxwell,2024-01-18,[],IN,2024 +Senate sponsor: Senator Maxwell,2024-01-22,[],IN,2024 +Authored by Representative Baird,2024-01-16,[],IN,2024 +Authored by Representative Lindauer,2024-01-11,[],IN,2024 +Coauthored by Representative Jeter,2024-01-09,[],IN,2024 +Coauthored by Representative Pierce K,2024-01-10,[],IN,2024 +Authored by Representative Schaibley,2024-01-08,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Senator Freeman,2024-03-04,[],IN,2024 +"Coauthored by Representatives Jeter, Meltzer, DeLaney",2024-01-08,[],IN,2024 +Coauthored by Representative Culp,2024-01-09,[],IN,2024 +Senate sponsor: Senator Maxwell,2024-01-22,[],IN,2024 +Coauthored by Representative O'Brien,2024-01-11,[],IN,2024 +Authored by Senator Taylor G,2024-02-19,[],IN,2024 +Authored by Senators Bohacek and Alting,2024-01-08,[],IN,2024 +Authored by Senator Busch,2024-01-16,[],IN,2024 +Authored by Representative O'Brien,2024-01-10,[],IN,2024 +Authored by Representative Bartels,2024-01-09,[],IN,2024 +Authored by Senator Young M,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Representative Dvorak,2024-01-08,[],IN,2024 +Authored by Representative DeLaney,2024-01-10,[],IN,2024 +Coauthored by Representative Heine,2024-01-10,[],IN,2024 +"Coauthored by Representatives Jeter, Steuerwald, Soliday",2024-01-08,[],IN,2024 +Senate sponsor: Senator Crider,2024-03-06,[],IN,2024 +Authored by Representative Manning,2024-01-09,[],IN,2024 +Authored by Representative McNamara,2024-03-07,[],IN,2024 +Authored by Representative Pryor,2024-01-08,[],IN,2024 +Authored by Senator Busch,2024-01-16,[],IN,2024 +Authored by Senator Alting,2024-01-08,[],IN,2024 +First reading: adopted,2024-01-22,"['passage', 'reading-1']",IN,2024 +"Coauthored by Representatives Campbell, Fleming, Errington",2024-01-10,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Lauer,2024-01-10,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +"Coauthored by Representatives Pierce K, Boy and DeLaney",2024-01-08,[],IN,2024 +Coauthored by Representatives Aylesworth and Culp,2024-01-16,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Moseley,2024-01-09,[],IN,2024 +Authored by Senator Koch,2024-01-25,[],IN,2024 +Coauthored by Representatives Garcia Wilburn and Fleming,2024-01-09,[],IN,2024 +Coauthored by Representative Teshka,2024-01-10,[],IN,2024 +Coauthored by Representatives McNamara and Judy,2024-01-10,[],IN,2024 +Coauthored by Representatives Baird and Barrett,2024-01-11,[],IN,2024 +Authored by Senator Becker,2024-01-08,[],IN,2024 +Coauthored by Representative Carbaugh,2024-01-09,[],IN,2024 +Authored by Representative VanNatter,2024-01-11,[],IN,2024 +Authored by Senator Hunley,2024-01-10,[],IN,2024 +Authored by Representative Bartels,2024-01-09,[],IN,2024 +Authored by Representative Slager,2024-01-09,[],IN,2024 +Authored by Senator Qaddoura,2024-01-08,[],IN,2024 +Authored by Senator Holdman,2024-01-16,[],IN,2024 +Authored by Representative Dvorak,2024-01-10,[],IN,2024 +Authored by Senator Byrne,2024-01-08,[],IN,2024 +Authored by Senator Dernulc,2024-01-08,[],IN,2024 +Authored by Senators Tomes and Bohacek,2024-01-08,[],IN,2024 +Authored by Senator Alexander,2024-01-08,[],IN,2024 +Senate sponsors: Senators Niezgodski and Doriot,2024-02-27,[],IN,2024 +Authored by Senator Crider,2024-01-08,[],IN,2024 +Authored by Senator Leising,2024-01-08,[],IN,2024 +Authored by Representative Borders,2024-01-10,[],IN,2024 +Authored by Representative Boy,2024-02-20,[],IN,2024 +Authored by Representative Davis,2024-01-11,[],IN,2024 +Authored by Representative Olthoff,2024-01-09,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-03-05,[],IN,2024 +Authored by Senator Byrne,2024-01-08,[],IN,2024 +Authored by Senator Rogers,2024-01-16,[],IN,2024 +Authored by Representative Steuerwald,2024-02-29,[],IN,2024 +Authored by Senator Ford J.D.,2024-02-20,[],IN,2024 +Authored by Senator Leising,2024-01-08,[],IN,2024 +Authored by Representative Smith V,2024-01-08,[],IN,2024 +Authored by Senator Tomes,2024-01-08,[],IN,2024 +Authored by Senator Young M,2024-01-08,[],IN,2024 +Coauthored by Representatives Bartels and Lindauer,2024-01-09,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Coauthored by Representatives DeLaney and Pfaff,2024-01-09,[],IN,2024 +Authored by Representative Steuerwald,2024-02-20,[],IN,2024 +Authored by Representative Miller K,2024-01-09,[],IN,2024 +Authored by Senators Goode and Niezgodski,2024-01-16,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Authored by Representative Pryor,2024-01-08,[],IN,2024 +Authored by Senator Randolph Lonnie M,2024-01-08,[],IN,2024 +Authored by Representative Carbaugh,2024-01-10,[],IN,2024 +Authored by Representative Torr,2024-01-08,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Senator Walker K,2024-01-09,[],IN,2024 +Authored by Senators Niezgodski and Doriot,2024-01-08,[],IN,2024 +Authored by Representative Summers,2024-01-08,[],IN,2024 +Authored by Representative Aylesworth,2024-01-08,[],IN,2024 +Authored by Senator Bassler,2024-01-16,[],IN,2024 +Authored by Senator Koch,2024-02-20,[],IN,2024 +Senate sponsor: Senator Gaskill,2024-02-19,[],IN,2024 +Authored by Representative Rowray,2024-01-09,[],IN,2024 +Coauthored by Representative King,2024-01-08,[],IN,2024 +Coauthored by Representatives Bartels and Teshka,2024-01-10,[],IN,2024 +Authored by Representative Pryor,2024-02-19,[],IN,2024 +Authored by Senator Brown L,2024-01-08,[],IN,2024 +Coauthored by Representatives Rowray and DeLaney,2024-01-08,[],IN,2024 +Coauthored by Representatives Lehman and Smaltz,2024-01-10,[],IN,2024 +Authored by Representative King,2024-01-09,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Hatfield,2024-01-16,[],IN,2024 +Authored by Senator Buchanan,2024-01-09,[],IN,2024 +Authored by Representative Manning,2024-02-06,[],IN,2024 +Authored by Representative Criswell,2024-01-08,[],IN,2024 +Authored by Senators Bassler and Bray,2024-02-05,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative McNamara,2024-01-08,[],IN,2024 +Authored by Representative Wesco,2024-01-09,[],IN,2024 +Coauthored by Representatives Negele and Pack,2024-01-10,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Senator Deery,2024-01-08,[],IN,2024 +Authored by Senator Niemeyer,2024-01-08,[],IN,2024 +Authored by Representative Greene,2024-01-08,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Senator Donato,2024-01-10,[],IN,2024 +Authored by Senator Glick,2024-01-10,[],IN,2024 +Authored by Representative Klinker,2024-01-08,[],IN,2024 +Authored by Senators Qaddoura and Raatz,2024-02-13,[],IN,2024 +"Coauthored by Representatives Cash, McGuire, Speedy",2024-01-08,[],IN,2024 +Authored by Representative Campbell,2024-01-08,[],IN,2024 +Authored by Senator Leising,2024-01-08,[],IN,2024 +"Coauthored by Representatives Hostettler, Sweet, Cash",2024-01-11,[],IN,2024 +Authored by Representative Klinker,2024-02-26,[],IN,2024 +"Coauthored by Representatives McNamara, Jeter, Moseley",2024-01-09,[],IN,2024 +Authored by Representative Goss-Reaves,2024-01-08,[],IN,2024 +Coauthored by Representatives Criswell and Davis,2024-01-10,[],IN,2024 +Authored by Representative Shackleford,2024-01-08,[],IN,2024 +Authored by Representative Greene,2024-01-08,[],IN,2024 +Authored by Senator Gaskill,2024-01-10,[],IN,2024 +Coauthored by Representative Teshka,2024-01-08,[],IN,2024 +Authored by Senator Ford J.D.,2024-02-26,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Representative Aylesworth,2024-02-06,[],IN,2024 +Coauthored by Representatives Snow and Fleming,2024-01-10,[],IN,2024 +"Coauthored by Representatives Soliday, Zimmerman, Pierce M",2024-01-08,[],IN,2024 +Authored by Representative Goss-Reaves,2024-01-08,[],IN,2024 +Authored by Senator Charbonneau,2024-01-16,[],IN,2024 +Authored by Senators Taylor G and Hunley,2024-01-18,[],IN,2024 +Authored by Senator Alexander,2024-01-09,[],IN,2024 +Senate sponsor: Senator Taylor G,2024-02-26,[],IN,2024 +Authored by Representative Steuerwald,2024-02-26,[],IN,2024 +Authored by Representative Barrett,2024-01-09,[],IN,2024 +Authored by Senators Freeman and Taylor G,2024-01-08,[],IN,2024 +Authored by Senator Messmer,2024-01-09,[],IN,2024 +"Authored by Senators Garten, Maxwell, Byrne",2024-01-11,[],IN,2024 +Coauthored by Representative Goodrich,2024-01-09,[],IN,2024 +Coauthored by Representative Miller D,2024-01-08,[],IN,2024 +Authored by Representative Lucas,2024-01-18,[],IN,2024 +Authored by Representative Lucas,2024-01-08,[],IN,2024 +Authored by Senator Rogers,2024-01-08,[],IN,2024 +Authored by Representative Pfaff,2024-01-10,[],IN,2024 +Authored by Representative Cherry,2024-01-08,[],IN,2024 +Senate sponsor: Senator Niezgodski,2024-01-09,[],IN,2024 +Authored by Senator Breaux,2024-01-08,[],IN,2024 +Authored by Representative Davis,2024-01-08,[],IN,2024 +Authored by Representative Prescott,2024-01-08,[],IN,2024 +Authored by Representative Karickhoff,2024-01-11,[],IN,2024 +Coauthored by Representative Pressel,2024-01-08,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +"Coauthored by Representatives Abbott, Bartlett, Bartels",2024-01-11,[],IN,2024 +Authored by Senator Breaux,2024-01-08,[],IN,2024 +Authored by Representative Gore,2024-01-08,[],IN,2024 +Coauthored by Representative Miller D,2024-01-11,[],IN,2024 +Authored by Representative Porter,2024-01-10,[],IN,2024 +Authored by Representative Barrett,2024-01-11,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Representative King,2024-01-08,[],IN,2024 +"Coauthored by Senators Holdman, Freeman, Glick, Gaskill, Buck, Niemeyer, Alexander, Baldwin, Raatz, Charbonneau, Rogers, Bassler, Buchanan, Walker K, Donato, Doriot, Messmer, Zay, Crane, Tomes, Byrne, Johnson T, Deery, Goode, Carrasco, Maxwell",2024-01-16,[],IN,2024 +Authored by Representative Payne,2024-01-11,[],IN,2024 +Authored by Representative Hamilton,2024-01-09,[],IN,2024 +Authored by Senator Hunley,2024-01-10,[],IN,2024 +Coauthored by Representatives Garcia Wilburn and Pfaff,2024-01-08,[],IN,2024 +Authored by Representative Pierce K,2024-03-06,[],IN,2024 +Authored by Representative Greene,2024-01-08,[],IN,2024 +Authored by Senator Ford J.D.,2024-01-09,[],IN,2024 +Authored by Representative Pryor,2024-01-08,[],IN,2024 +Authored by Representative Harris,2024-01-09,[],IN,2024 +Authored by Senator Randolph Lonnie M,2024-01-08,[],IN,2024 +Authored by Senator Qaddoura,2024-03-06,[],IN,2024 +Coauthored by Representative Harris,2024-01-08,[],IN,2024 +Authored by Representative Bauer M,2024-01-08,[],IN,2024 +Authored by Representative Pryor,2024-01-08,[],IN,2024 +Authored by Senators Buchanan and Rogers,2024-01-11,[],IN,2024 +Authored by Representative Heine,2024-01-08,[],IN,2024 +Senate sponsors: Senators Charbonneau and Hunley,2024-02-26,[],IN,2024 +Authored by Representative Aylesworth,2024-03-06,[],IN,2024 +Coauthored by Representative Fleming,2024-01-08,[],IN,2024 +Authored by Senator Doriot,2024-01-10,[],IN,2024 +Authored by Senator Vinzant,2024-01-16,[],IN,2024 +Authored by Representative Lindauer,2024-01-11,[],IN,2024 +Coauthored by Representative Pierce K,2024-01-08,[],IN,2024 +Authored by Senator Ford J.D.,2024-03-04,[],IN,2024 +Coauthored by Representative Gore,2024-01-08,[],IN,2024 +Coauthored by Representatives Miller K and Teshka,2024-01-10,[],IN,2024 +Authored by Representative Summers,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Representative Bartlett,2024-01-08,[],IN,2024 +Authored by Representative Hamilton,2024-01-08,[],IN,2024 +Authored by Senator Yoder,2024-01-09,[],IN,2024 +Authored by Senator Randolph Lonnie M,2024-01-08,[],IN,2024 +Authored by Representative Hamilton,2024-01-08,[],IN,2024 +Authored by Representative Hatcher,2024-01-09,[],IN,2024 +Authored by Representative Harris,2024-01-09,[],IN,2024 +Authored by Representative Pressel,2024-01-08,[],IN,2024 +Authored by Senator Alexander,2024-01-08,[],IN,2024 +Authored by Representative Bauer M,2024-01-08,[],IN,2024 +Authored by Senator Koch,2024-02-29,[],IN,2024 +Authored by Senator Leising,2024-02-13,[],IN,2024 +Authored by Representative Moed,2024-01-10,[],IN,2024 +Authored by Senator Donato,2024-01-16,[],IN,2024 +Coauthored by Representative Lehman,2024-01-10,[],IN,2024 +Authored by Representative Manning,2024-01-08,[],IN,2024 +Authored by Representative Harris,2024-01-08,[],IN,2024 +Coauthored by Representatives Bauer M and Jackson,2024-01-09,[],IN,2024 +Authored by Representative Zimmerman,2024-01-08,[],IN,2024 +Authored by Representative Steuerwald,2024-02-19,[],IN,2024 +Authored by Senator Doriot,2024-01-08,[],IN,2024 +Authored by Representative Rowray,2024-01-09,[],IN,2024 +Coauthored by Representatives Barrett and McGuire,2024-01-10,[],IN,2024 +Authored by Senator Holdman,2024-01-08,[],IN,2024 +Authored by Representative VanNatter,2024-01-10,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Authored by Senator Qaddoura,2024-02-20,[],IN,2024 +Authored by Representative Moseley,2024-01-09,[],IN,2024 +Authored by Representative Boy,2024-01-09,[],IN,2024 +"Coauthored by Representatives Teshka, Manning, Garcia Wilburn",2024-01-10,[],IN,2024 +Authored by Representative Moed,2024-01-09,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Representative Cherry,2024-01-08,[],IN,2024 +Authored by Representative Hostettler,2024-01-08,[],IN,2024 +Authored by Representative Aylesworth,2024-01-09,[],IN,2024 +Authored by Senator Hunley,2024-01-09,[],IN,2024 +Authored by Senator Goode,2024-01-16,[],IN,2024 +Authored by Representative Pierce M,2024-01-08,[],IN,2024 +Authored by Senators Brown L and Buchanan,2024-01-08,[],IN,2024 +Authored by Senator Raatz,2024-01-09,[],IN,2024 +Authored by Representative Mayfield,2024-01-08,[],IN,2024 +Authored by Senator Taylor G,2024-02-27,[],IN,2024 +Authored by Senator Qaddoura,2024-01-09,[],IN,2024 +Authored by Senators Brown L and Buchanan,2024-01-08,[],IN,2024 +Authored by Representative Cash,2024-01-08,[],IN,2024 +Coauthored by Representatives Judy and Heine,2024-01-09,[],IN,2024 +Authored by Representative Klinker,2024-01-08,[],IN,2024 +Authored by Representative Zent,2024-01-09,[],IN,2024 +Authored by Representative GiaQuinta,2024-03-06,[],IN,2024 +Coauthored by Representative Steuerwald,2024-01-09,[],IN,2024 +Authored by Senator Ford J.D.,2024-02-13,[],IN,2024 +Coauthored by Representatives Lehman and Miller K,2024-01-11,[],IN,2024 +"Coauthored by Representatives Smaltz, Greene, Garcia Wilburn",2024-01-08,[],IN,2024 +Coauthored by Representative Haggard,2024-01-10,[],IN,2024 +Authored by Representative Miller D,2024-01-09,[],IN,2024 +Authored by Representative Jackson,2024-01-10,[],IN,2024 +Authored by Senator Walker G,2024-01-08,[],IN,2024 +Authored by Representative Smaltz,2024-01-11,[],IN,2024 +Authored by Senator Holdman,2024-01-08,[],IN,2024 +Authored by Senator Dernulc,2024-01-08,[],IN,2024 +Coauthored by Representative Abbott,2024-01-08,[],IN,2024 +Authored by Representative Pressel,2024-01-08,[],IN,2024 +Coauthored by Representatives Cash and Haggard,2024-01-09,[],IN,2024 +Authored by Representative Genda,2024-01-10,[],IN,2024 +Authored by Representative Borders,2024-01-10,[],IN,2024 +Coauthored by Representatives Aylesworth and Morris,2024-01-11,[],IN,2024 +Coauthored by Representative Haggard,2024-01-10,[],IN,2024 +Coauthored by Representative McNamara,2024-01-09,[],IN,2024 +Authored by Representative Goss-Reaves,2024-01-10,[],IN,2024 +Authored by Representative Heaton,2024-01-09,[],IN,2024 +Authored by Senator Niemeyer,2024-01-08,[],IN,2024 +Coauthored by Representative Karickhoff,2024-01-10,[],IN,2024 +Authored by Senator Koch,2024-01-09,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Coauthored by Representatives Bauer M and Garcia Wilburn,2024-01-10,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Coauthored by Representatives Bartels and Teshka,2024-01-10,[],IN,2024 +Authored by Senator Ford J.D.,2024-01-29,[],IN,2024 +Authored by Representative Cherry,2024-01-08,[],IN,2024 +"Authored by Senators Alting, Crider, Becker",2024-01-08,[],IN,2024 +Authored by Representative Bauer M,2024-01-08,[],IN,2024 +Authored by Representative Moed,2024-01-10,[],IN,2024 +Authored by Representative Summers,2024-01-08,[],IN,2024 +Authored by Representative Boy,2024-01-09,[],IN,2024 +Coauthored by Representative Gore,2024-01-10,[],IN,2024 +Authored by Representative Negele,2024-01-08,[],IN,2024 +Authored by Representative Pack,2024-01-08,[],IN,2024 +Authored by Senator Glick,2024-01-10,[],IN,2024 +Authored by Representative Pryor,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Senator Hunley,2024-01-08,[],IN,2024 +Authored by Representative Moseley,2024-01-09,[],IN,2024 +Senate sponsor: Senator Taylor G,2024-02-26,[],IN,2024 +Coauthored by Representatives Lehman and Steuerwald,2024-01-09,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Coauthored by Representatives Meltzer and Garcia Wilburn,2024-01-09,[],IN,2024 +Authored by Representative DeLaney,2024-01-10,[],IN,2024 +Authored by Senators Gaskill and Freeman,2024-01-08,[],IN,2024 +Coauthored by Representatives Harris and Soliday,2024-01-08,[],IN,2024 +Authored by Senators Niemeyer and Dernulc,2024-01-08,[],IN,2024 +Authored by Senator Donato,2024-01-10,[],IN,2024 +Authored by Representative Pressel,2024-01-10,[],IN,2024 +Authored by Representative Genda,2024-01-09,[],IN,2024 +Authored by Senator Zay,2024-01-08,[],IN,2024 +Authored by Representative DeLaney,2024-01-10,[],IN,2024 +Authored by Representative Garcia Wilburn,2024-01-10,[],IN,2024 +Authored by Representative GiaQuinta,2024-03-07,[],IN,2024 +Authored by Representative Clere,2024-01-09,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Representative Dvorak,2024-03-06,[],IN,2024 +Authored by Representative Smith V,2024-01-09,[],IN,2024 +Authored by Representative Pierce K,2024-01-09,[],IN,2024 +Authored by Senators Alexander and Rogers,2024-01-08,[],IN,2024 +Authored by Representative DeVon,2024-01-08,[],IN,2024 +"Coauthored by Representatives Davis, King, Morris",2024-01-10,[],IN,2024 +Authored by Senator Byrne,2024-01-09,[],IN,2024 +Authored by Representative Sweet,2024-01-09,[],IN,2024 +Authored by Senators Rogers and Holdman,2024-01-08,[],IN,2024 +Authored by Representative Hatcher,2024-01-09,[],IN,2024 +Authored by Representative Zent,2024-01-09,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Senator Taylor G,2024-01-09,[],IN,2024 +Authored by Senator Qaddoura,2024-01-16,[],IN,2024 +Authored by Representative McGuire,2024-01-09,[],IN,2024 +Authored by Representative Torr,2024-01-08,[],IN,2024 +Coauthored by Representatives Hamilton and Errington,2024-01-16,[],IN,2024 +Authored by Senator Johnson T,2024-01-09,[],IN,2024 +Authored by Senator Johnson T,2024-01-09,[],IN,2024 +Authored by Representative Pack,2024-01-09,[],IN,2024 +Authored by Senator Niemeyer,2024-01-09,[],IN,2024 +Coauthored by Representative Payne,2024-01-09,[],IN,2024 +Authored by Senator Young M,2024-01-09,[],IN,2024 +Authored by Senator Qaddoura,2024-03-08,[],IN,2024 +Authored by Senator Buck,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Representative Zimmerman,2024-01-08,[],IN,2024 +Authored by Representative Harris,2024-01-09,[],IN,2024 +Authored by Representative Lindauer,2024-01-11,[],IN,2024 +Authored by Representative Carbaugh,2024-01-10,[],IN,2024 +Senate sponsor: Senator Qaddoura,2024-02-19,[],IN,2024 +Authored by Representative Ledbetter,2024-01-29,[],IN,2024 +Authored by Senator Freeman,2024-01-16,[],IN,2024 +Authored by Representative Miller D,2024-01-09,[],IN,2024 +Coauthored by Representative Heine,2024-01-10,[],IN,2024 +Authored by Senator Niezgodski,2024-01-08,[],IN,2024 +Authored by Senator Alexander,2024-01-11,[],IN,2024 +Authored by Representative Lauer,2024-01-09,[],IN,2024 +Senate sponsor: Senator Brown L,2024-01-22,[],IN,2024 +Coauthored by Representatives Speedy and Pressel,2024-01-09,[],IN,2024 +Authored by Senator Rogers,2024-01-08,[],IN,2024 +Authored by Senator Qaddoura,2024-02-20,[],IN,2024 +Authored by Representative Payne,2024-01-25,[],IN,2024 +Authored by Senator Hunley,2024-01-16,[],IN,2024 +Authored by Senator Vinzant,2024-01-16,[],IN,2024 +"Coauthored by Senators Holdman, Brown L, Freeman, Glick, Gaskill, Buck, Niemeyer, Alexander, Raatz, Charbonneau, Rogers, Bassler, Buchanan, Walker K, Donato, Doriot, Messmer, Zay, Crane, Tomes, Byrne, Johnson T, Deery, Carrasco, Maxwell",2024-01-16,[],IN,2024 +Authored by Senator Buchanan,2024-01-16,[],IN,2024 +Authored by Senator Johnson T,2024-01-09,[],IN,2024 +Authored by Senators Goode and Yoder,2024-02-12,[],IN,2024 +Coauthored by Representatives Behning and Karickhoff,2024-01-09,[],IN,2024 +Coauthored by Representative Gore,2024-01-10,[],IN,2024 +Authored by Representative Bartlett,2024-01-10,[],IN,2024 +"Coauthored by Representatives Aylesworth, Bartels, Cherry",2024-01-08,[],IN,2024 +Authored by Representative Miller D,2024-01-10,[],IN,2024 +Authored by Representative Summers,2024-01-08,[],IN,2024 +Authored by Senator Tomes,2024-01-16,[],IN,2024 +Authored by Senator Yoder,2024-01-09,[],IN,2024 +Authored by Senator Baldwin,2024-01-10,[],IN,2024 +Authored by Senator Maxwell,2024-03-07,[],IN,2024 +"Authored by Senators Garten, Bray, Taylor G",2024-02-12,[],IN,2024 +Coauthored by Representative Pressel,2024-01-09,[],IN,2024 +Coauthored by Representative Zimmerman,2024-01-10,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +"Authored by Senators Ford J.D., Taylor G and Yoder",2024-01-22,[],IN,2024 +Authored by Representative VanNatter,2024-01-10,[],IN,2024 +Authored by Senator Zay,2024-01-16,[],IN,2024 +Authored by Representative Heine,2024-01-22,[],IN,2024 +Authored by Representative Smith V,2024-01-09,[],IN,2024 +Coauthored by Representatives Snow and GiaQuinta,2024-01-11,[],IN,2024 +Authored by Representative GiaQuinta,2024-02-12,[],IN,2024 +Authored by Senators Becker and Crider,2024-01-08,[],IN,2024 +Authored by Senators Walker K and Crider,2024-01-08,[],IN,2024 +Authored by Senator Bassler,2024-01-16,[],IN,2024 +Authored by Senator Niemeyer,2024-01-16,[],IN,2024 +Authored by Senator Walker G,2024-01-16,[],IN,2024 +Authored by Senator Buck,2024-01-11,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Authored by Senator Pol,2024-01-16,[],IN,2024 +Coauthored by Representatives Karickhoff and Hatfield,2024-01-08,[],IN,2024 +Authored by Representative Davis,2024-01-08,[],IN,2024 +Authored by Senators Alting and Walker K,2024-01-09,[],IN,2024 +Authored by Senators Buchanan and Deery,2024-03-05,[],IN,2024 +Authored by Representative Torr,2024-01-08,[],IN,2024 +Authored by Senator Dernulc,2024-01-08,[],IN,2024 +Authored by Senator Qaddoura,2024-01-08,[],IN,2024 +Authored by Representative DeVon,2024-01-08,[],IN,2024 +Authored by Representative Pressel,2024-01-08,[],IN,2024 +Authored by Senator Breaux,2024-01-08,[],IN,2024 +Authored by Senator Messmer,2024-01-10,[],IN,2024 +Authored by Representative Pressel,2024-01-08,[],IN,2024 +Authored by Senator Holdman,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +"Coauthored by Representatives Barrett, Ledbetter, Bauer M",2024-01-16,[],IN,2024 +Authored by Senator Rogers,2024-01-08,[],IN,2024 +"Coauthored by Representatives Meltzer, Steuerwald, Gore",2024-01-09,[],IN,2024 +Authored by Senator Bohacek,2024-02-13,[],IN,2024 +Authored by Senator Randolph Lonnie M,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Coauthored by Representative Clere,2024-01-10,[],IN,2024 +Coauthored by Representatives Aylesworth and Jeter,2024-01-09,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Senator Raatz,2024-01-10,[],IN,2024 +Authored by Senator Messmer,2024-03-05,[],IN,2024 +Authored by Senator Niezgodski,2024-01-08,[],IN,2024 +Authored by Senator Qaddoura,2024-01-08,[],IN,2024 +Authored by Senator Ford J.D.,2024-01-08,[],IN,2024 +Authored by Senators Charbonneau and Becker,2024-01-11,[],IN,2024 +Authored by Representative Meltzer,2024-01-09,[],IN,2024 +Authored by Senator Ford J.D.,2024-01-08,[],IN,2024 +Senate sponsor: Senator Messmer,2024-02-15,[],IN,2024 +Authored by Representative Porter,2024-01-10,[],IN,2024 +Authored by Representative Culp,2024-02-15,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Authored by Senator Holdman,2024-01-10,[],IN,2024 +Authored by Representative McNamara,2024-02-15,[],IN,2024 +Authored by Senator Tomes,2024-01-08,[],IN,2024 +"Authored by Senators Raatz, Garten, Bray",2024-02-27,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Steuerwald,2024-02-13,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Smith V,2024-02-13,[],IN,2024 +Authored by Senators Zay and Holdman,2024-03-05,[],IN,2024 +Coauthored by Representative Errington,2024-01-09,[],IN,2024 +Authored by Senator Brown L,2024-02-13,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Authored by Senator Mishler,2024-02-13,[],IN,2024 +Authored by Senator Bray,2024-03-05,[],IN,2024 +Authored by Senator Bray,2024-03-05,[],IN,2024 +Authored by Senator Pol,2024-01-08,[],IN,2024 +Coauthored by Representatives Manning and Criswell,2024-01-08,[],IN,2024 +Authored by Senator Rogers,2024-01-09,[],IN,2024 +"Authored by Senators Bohacek, Deery, Brown L",2024-01-08,[],IN,2024 +Authored by Representative King,2024-01-29,[],IN,2024 +Coauthored by Representative Schaibley,2024-01-08,[],IN,2024 +Authored by Representative Lucas,2024-01-08,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Coauthored by Representative Torr,2024-01-10,[],IN,2024 +Authored by Senator Vinzant,2024-01-16,[],IN,2024 +Authored by Senator Vinzant,2024-01-16,[],IN,2024 +Authored by Representative Soliday,2024-01-09,[],IN,2024 +Authored by Senator Qaddoura,2024-02-22,[],IN,2024 +Authored by Senator Vinzant,2024-01-16,[],IN,2024 +Authored by Representative Barrett,2024-01-09,[],IN,2024 +Authored by Representative Moseley,2024-01-09,[],IN,2024 +Authored by Senator Freeman,2024-01-16,[],IN,2024 +Authored by Representative Borders,2024-01-10,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Authored by Representative Dvorak,2024-01-10,[],IN,2024 +Authored by Senator Pol,2024-01-08,[],IN,2024 +Authored by Representative Smaltz,2024-01-08,[],IN,2024 +Authored by Representative Criswell,2024-01-08,[],IN,2024 +Coauthored by Representatives Manning and Haggard,2024-01-08,[],IN,2024 +Authored by Representative Manning,2024-01-09,[],IN,2024 +Authored by Senator Dernulc,2024-01-08,[],IN,2024 +Authored by Senator Alexander,2024-01-09,[],IN,2024 +Authored by Representative Speedy,2024-01-08,[],IN,2024 +Authored by Senator Koch,2024-01-08,[],IN,2024 +Authored by Senators Brown L and Charbonneau,2024-01-08,[],IN,2024 +Authored by Senators Becker and Tomes,2024-01-08,[],IN,2024 +Authored by Senator Baldwin,2024-01-08,[],IN,2024 +Coauthored by Senator Pol,2024-01-09,[],IN,2024 +"Coauthored by Senators Byrne, Yoder, Bohacek",2024-01-08,[],IN,2024 +"Coauthored by Representatives May, Heaton, Lindauer",2024-01-08,[],IN,2024 +Authored by Representative Smith V,2024-01-09,[],IN,2024 +Authored by Representative Wesco,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Coauthored by Representatives VanNatter and Hostettler,2024-01-09,[],IN,2024 +Authored by Senator Raatz,2024-01-08,[],IN,2024 +Authored by Representative Gore,2024-01-16,[],IN,2024 +"Coauthored by Representatives Davis, McGuire, VanNatter",2024-01-16,[],IN,2024 +Authored by Senator Crider,2024-01-09,[],IN,2024 +Authored by Representative Torr,2024-01-08,[],IN,2024 +Authored by Representative Thompson,2024-01-08,[],IN,2024 +Authored by Representative Culp,2024-01-08,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Lucas,2024-01-08,[],IN,2024 +Authored by Senator Tomes,2024-01-08,[],IN,2024 +Authored by Senator Koch,2024-01-10,[],IN,2024 +Authored by Senator Leising,2024-01-08,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Lehman,2024-01-08,[],IN,2024 +Coauthored by Representatives Heine and Judy,2024-01-10,[],IN,2024 +"Coauthored by Senators Raatz, Glick, Baldwin, Brown L, Gaskill, Busch, Johnson T",2024-01-08,[],IN,2024 +"Coauthored by Representatives Jeter, Steuerwald, Goss-Reaves",2024-01-10,[],IN,2024 +Authored by Representative Criswell,2024-01-09,[],IN,2024 +Coauthored by Representative Gore,2024-01-08,[],IN,2024 +Authored by Senator Niemeyer,2024-01-09,[],IN,2024 +Authored by Representative Lauer,2024-01-08,[],IN,2024 +Authored by Representative Johnson,2024-01-09,[],IN,2024 +Senator Yoder added as coauthor,2024-01-08,[],IN,2024 +Authored by Senator Crider,2024-01-08,[],IN,2024 +"Authored by Senators Buck, Donato, Becker",2024-03-08,[],IN,2024 +Authored by Senator Johnson T,2024-01-09,[],IN,2024 +Authored by Representative Smaltz,2024-01-10,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Authored by Representative King,2024-01-10,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +"Coauthored by Representatives Patterson, Haggard, Pierce M",2024-01-10,[],IN,2024 +Authored by Senator Yoder,2024-01-09,[],IN,2024 +"Coauthored by Representatives King, Davis, Morris",2024-01-09,[],IN,2024 +Authored by Representative King,2024-01-08,[],IN,2024 +Authored by Representative Clere,2024-01-08,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Senator Taylor G,2024-01-08,[],IN,2024 +Authored by Representative Barrett,2024-01-11,[],IN,2024 +Authored by Representative Sweet,2024-01-09,[],IN,2024 +Coauthored by Senators Glick and Doriot,2024-01-11,[],IN,2024 +Authored by Representative Aylesworth,2024-01-08,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Senator Holdman,2024-01-08,[],IN,2024 +Coauthored by Representatives Meltzer and Negele,2024-01-08,[],IN,2024 +Coauthored by Representative Bartels,2024-01-16,[],IN,2024 +"Coauthored by Representatives Prescott, Lindauer, Sweet",2024-01-11,[],IN,2024 +Authored by Senator Bassler,2024-01-09,[],IN,2024 +Authored by Representative Andrade,2024-01-09,[],IN,2024 +"Coauthored by Representatives Cherry, Heine, DeLaney",2024-01-11,[],IN,2024 +Authored by Representative Borders,2024-01-10,[],IN,2024 +Authored by Senator Messmer,2024-01-18,[],IN,2024 +Authored by Senator Tomes,2024-01-08,[],IN,2024 +"Coauthored by Representatives Goodrich, Jordan, Klinker",2024-01-08,[],IN,2024 +Coauthored by Representative Ledbetter,2024-01-08,[],IN,2024 +Coauthored by Representative McNamara,2024-01-16,[],IN,2024 +Authored by Representative Cherry,2024-01-08,[],IN,2024 +Authored by Representative Shackleford,2024-01-09,[],IN,2024 +Authored by Representative King,2024-01-09,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Coauthored by Representative Aylesworth,2024-01-08,[],IN,2024 +Authored by Representative Negele,2024-01-09,[],IN,2024 +Authored by Representative Pfaff,2024-03-06,[],IN,2024 +"Coauthored by Representatives Miller D, Wesco, Prescott",2024-01-11,[],IN,2024 +Authored by Senator Holdman,2024-01-08,[],IN,2024 +Coauthored by Senator Mishler,2024-01-18,[],IN,2024 +Authored by Representative Hamilton,2024-01-08,[],IN,2024 +Authored by Representative Pierce K,2024-01-10,[],IN,2024 +"Coauthored by Representatives Zimmerman, Moed, Smaltz",2024-01-09,[],IN,2024 +Authored by Senator Freeman,2024-01-08,[],IN,2024 +Authored by Senators Holdman and Garten,2024-02-26,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Authored by Representative Dvorak,2024-01-10,[],IN,2024 +Authored by Senator Bray,2024-01-08,[],IN,2024 +Coauthored by Representative Baird,2024-01-16,[],IN,2024 +Authored by Representative Sweet,2024-01-10,[],IN,2024 +Authored by Senator Ford J.D.,2024-03-04,[],IN,2024 +Authored by Senator Freeman,2024-01-10,[],IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Elections and Apportionment,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Sweet,2024-01-09,[],IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Campbell,2024-01-09,[],IN,2024 +First reading: referred to Committee on Local Government,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"Coauthored by Representatives Cash, Haggard, Sweet, Bartlett, Harris, Hatcher, Jackson, Pack, Porter, Pryor, Shackleford, Summers",2024-01-09,[],IN,2024 +First reading: referred to Committee on Family and Children Services,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Elections and Apportionment,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Judy,2024-01-09,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Utilities,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Pierce K,2024-01-10,[],IN,2024 +Authored by Representative Ledbetter,2024-01-08,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Utilities,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Haggard,2024-01-09,[],IN,2024 +Authored by Representative Garcia Wilburn,2024-01-10,[],IN,2024 +First reading: adopted voice vote,2024-03-07,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-03-05,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-03-05,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Senator Crider,2024-01-08,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Garcia Wilburn,2024-01-08,[],IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Culp,2024-01-08,[],IN,2024 +Authored by Representative Behning,2024-01-09,[],IN,2024 +"Authored by Senators Garten, Brown L, Koch",2024-01-16,[],IN,2024 +First reading: adopted,2024-03-06,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-03-06,"['passage', 'reading-1']",IN,2024 +First reading: adopted,2024-03-06,"['passage', 'reading-1']",IN,2024 +First reading: adopted standing vote,2024-03-04,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Carbaugh,2024-01-10,[],IN,2024 +First reading: referred to Committee on Agriculture and Rural Development,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative McNamara,2024-01-09,[],IN,2024 +Authored by Representative Olthoff,2024-01-08,[],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-03-07,"['passage', 'reading-1']",IN,2024 +"Coauthored by Representatives Abbott, Andrade, Aylesworth, Bauer M, Boy, Campbell, DeLaney, Carbaugh, Fleming, Garcia Wilburn, GiaQuinta, Gore, Hamilton, Harris, Hatcher, Hatfield, Jackson, Johnson B, Judy, Klinker, McGuire, McNamara, Miller K, Moed, Moseley, Negele, Olthoff, Pack, Patterson, Payne, Pfaff, Pierce K, Porter, Pryor, Shackleford, Smith V",2024-03-06,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Speedy,2024-01-10,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Fleming,2024-01-16,[],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Abbott,2024-01-09,[],IN,2024 +First reading: adopted voice vote,2024-03-08,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Snow,2024-01-10,[],IN,2024 +First reading: referred to Committee on Family and Children Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to the Committee on Public Policy,2024-01-25,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-12,"['passage', 'reading-1']",IN,2024 +Coauthored by Representative Pack,2024-01-10,[],IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-12,"['passage', 'reading-1']",IN,2024 +"Coauthored by Senators Breaux, Hunley, Niezgodski, Pol, Qaddoura, Randolph Lonnie M and Vinzant",2024-01-22,[],IN,2024 +Coauthored by Representative GiaQuinta,2024-01-22,[],IN,2024 +Coauthored by Representatives Hamilton and Pryor,2024-02-12,[],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Policy,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Family, Children and Human Affairs",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Local Government,2024-02-13,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Engleman,2024-01-10,[],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-27,"['passage', 'reading-1']",IN,2024 +First reading: adopted,2024-02-13,"['passage', 'reading-1']",IN,2024 +First reading: adopted,2024-02-13,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-02-13,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-02-13,"['passage', 'reading-1']",IN,2024 +Authored by Representative Teshka,2024-01-08,[],IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Financial Institutions,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Policy,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Hall,2024-01-08,[],IN,2024 +Authored by Representative Shackleford,2024-01-08,[],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative McGuire,2024-01-10,[],IN,2024 +First reading: referred to Committee on Family and Children Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Payne,2024-01-11,[],IN,2024 +Authored by Representative Judy,2024-01-11,[],IN,2024 +Authored by Representative Heine,2024-01-08,[],IN,2024 +First reading: referred to Committee on Education,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Morrison,2024-01-11,[],IN,2024 +Authored by Representative Meltzer,2024-01-09,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Carbaugh,2024-01-10,[],IN,2024 +"First reading: referred to the Committee on Utilities, Energy and Telecommunications",2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-05,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Jeter,2024-01-08,[],IN,2024 +Authored by Representative Payne,2024-01-11,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Zent,2024-01-10,[],IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Fleming,2024-01-11,[],IN,2024 +Authored by Representative Bartels,2024-01-11,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Errington,2024-01-08,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Olthoff,2024-01-08,[],IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Campbell,2024-01-08,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Summers,2024-01-08,[],IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative O'Brien,2024-01-10,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-03-06,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-02-13,"['passage', 'reading-1']",IN,2024 +Authored by Representative Speedy,2024-01-10,[],IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Natural Resources,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Policy,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Speedy,2024-01-10,[],IN,2024 +First reading: referred to the Committee on Roads and Transportation,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Baird,2024-01-10,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative VanNatter,2024-01-10,[],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Commerce, Small Business and Economic Development",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Hall,2024-01-10,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Financial Institutions,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Porter,2024-02-26,[],IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Gore,2024-01-10,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative GiaQuinta,2024-01-11,[],IN,2024 +First reading: referred to Committee on Appropriations,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"Coauthored by Senators Hunley, Randolph Lonnie M, Breaux",2024-02-27,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Policy,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-20,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Family and Children Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Schaibley,2024-01-10,[],IN,2024 +Authored by Representative Andrade,2024-01-09,[],IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-13,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-02-29,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Zimmerman,2024-01-08,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Barrett,2024-02-26,[],IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Elections,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Jackson,2024-01-08,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Bauer M,2024-01-09,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to the Committee on Roads and Transportation,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Teshka,2024-01-08,[],IN,2024 +First reading: adopted,2024-02-26,"['passage', 'reading-1']",IN,2024 +Authored by Representative Pryor,2024-02-26,[],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-02-06,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Coauthored by Senators Breaux, Hunley, Niezgodski, Pol, Qaddoura, Randolph Lonnie M, Taylor G, Vinzant and Yoder",2024-02-26,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Pierce K,2024-01-10,[],IN,2024 +First reading: adopted,2024-02-26,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Financial Institutions,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Utilities,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Culp,2024-01-10,[],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Family, Children and Human Affairs",2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-03-04,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-26,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Financial Institutions,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Authored by Senators Doriot, Bohacek, Donato",2024-01-18,[],IN,2024 +Coauthored by Representative Hamilton,2024-03-06,[],IN,2024 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Lauer,2024-01-08,[],IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Goss-Reaves,2024-01-16,[],IN,2024 +Authored by Representative Garcia Wilburn,2024-01-08,[],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Authored by Senators Deery, Alting, Charbonneau",2024-01-11,[],IN,2024 +First reading: referred to Committee on Elections and Apportionment,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Hall,2024-01-10,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Coauthored by Senator Randolph Lonnie M,2024-03-08,[],IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"Authored by Senators Garten, Freeman, Holdman",2024-01-08,[],IN,2024 +Authored by Representative Snow,2024-01-10,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Utilities,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Veterans Affairs and The Military,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Authored by Senators Tomes, Becker, Messmer",2024-01-08,[],IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Goodrich,2024-01-09,[],IN,2024 +"Authored by Senators Koch, Brown L, Glick",2024-01-09,[],IN,2024 +First reading: referred to Committee on Pensions and Labor,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Coauthored by Representative Gore,2024-01-08,[],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Utilities,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Teshka,2024-01-08,[],IN,2024 +Coauthored by Representative Pressel,2024-01-08,[],IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-22,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Karickhoff,2024-01-10,[],IN,2024 +Authored by Representative Cash,2024-01-08,[],IN,2024 +First reading: referred to the Committee on Public Policy,2024-01-29,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Pensions and Labor,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-03-05,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-03-05,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-03-05,"['passage', 'reading-1']",IN,2024 +First reading: adopted,2024-02-15,"['passage', 'reading-1']",IN,2024 +First reading: adopted,2024-02-15,"['passage', 'reading-1']",IN,2024 +Authored by Representative Bartels,2024-02-15,[],IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Pensions and Labor,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Appropriations,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Ledbetter,2024-01-08,[],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Utilities,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative O'Brien,2024-01-10,[],IN,2024 +Authored by Representative McNamara,2024-01-09,[],IN,2024 +First reading: referred to Committee on Natural Resources,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Goodrich,2024-01-09,[],IN,2024 +"First reading: referred to Committee on Family, Children and Human Affairs",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +"Authored by Senators Garten, Baldwin, Koch",2024-01-16,[],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-01-11,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Klinker,2024-01-22,[],IN,2024 +Authored by Representative Hamilton,2024-02-19,[],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"Coauthored by Representatives Genda, Aylesworth, Barrett, Carbaugh, Cash, Greene, Heaton, Lauer, McGuire, Morris, Patterson, Snow, Sweet, Teshka",2024-01-29,[],IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Jackson,2024-01-08,[],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Haggard,2024-01-09,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Teshka,2024-01-09,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-01-29,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Steuerwald,2024-01-09,[],IN,2024 +Authored by Representative Baird,2024-01-11,[],IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Elections,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Goodrich,2024-01-09,[],IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Pensions and Labor,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Coauthored by Representative Garcia Wilburn,2024-01-08,[],IN,2024 +Coauthored by Representative Criswell,2024-01-08,[],IN,2024 +First reading: referred to Committee on Pensions and Labor,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Steuerwald,2024-01-09,[],IN,2024 +Authored by Representative Morris,2024-01-16,[],IN,2024 +Authored by Representative Mayfield,2024-01-16,[],IN,2024 +Authored by Representative Judy,2024-01-16,[],IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative McNamara,2024-01-09,[],IN,2024 +Authored by Representative Fleming,2024-01-16,[],IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Elections,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Judy,2024-01-11,[],IN,2024 +First reading: adopted voice vote,2024-02-20,"['passage', 'reading-1']",IN,2024 +"First reading: referred to Committee on Family, Children and Human Affairs",2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-02-19,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Pensions and Labor,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Hall,2024-01-08,[],IN,2024 +First reading: adopted voice vote,2024-02-13,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Pensions and Labor,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Culp,2024-01-09,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-01-10,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Natural Resources,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Culp,2024-01-08,[],IN,2024 +Authored by Senator Glick,2024-01-08,[],IN,2024 +First reading: referred to Committee on Elections,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Pensions and Labor,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-20,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Rowray,2024-02-19,[],IN,2024 +First reading: referred to Committee on Financial Institutions,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-03-05,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative VanNatter,2024-01-10,[],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Bartlett,2024-01-08,[],IN,2024 +"Coauthored by Representatives Harris, Shackleford, Jackson, Smith V, Porter, Bartlett, Summers, Pack, Hatcher",2024-02-19,[],IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Prescott,2024-01-08,[],IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Senate sponsors: Senators Bray and Taylor G,2024-01-08,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Cash,2024-01-08,[],IN,2024 +Authored by Representative Steuerwald,2024-01-09,[],IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Agriculture,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Morris,2024-01-10,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Agriculture and Rural Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Coauthored by Senators Breaux and Qaddoura,2024-03-04,[],IN,2024 +Authored by Representative Greene,2024-01-08,[],IN,2024 +First reading: referred to Committee on Local Government,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-29,"['passage', 'reading-1']",IN,2024 +Authored by Representative Miller K,2024-01-09,[],IN,2024 +Authored by Representative Carbaugh,2024-01-10,[],IN,2024 +Authored by Representative Miller D,2024-01-09,[],IN,2024 +First reading: adopted voice vote,2024-01-18,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-03-04,"['passage', 'reading-1']",IN,2024 +Authored by Representative Negele,2024-01-10,[],IN,2024 +Authored by Representative Huston,2023-11-21,[],IN,2024 +Senate sponsors: Senators Bray and Taylor G,2024-01-08,[],IN,2024 +Authored by Representative Gore,2024-01-08,[],IN,2024 +Authored by Representative Ledbetter,2024-01-08,[],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Summers,2024-01-22,[],IN,2024 +Authored by Representative Bauer M,2024-02-27,[],IN,2024 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative McGuire,2024-01-09,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-03-07,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-01-22,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Criswell,2024-01-08,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Coauthored by Representatives Campbell and Negele,2024-02-19,[],IN,2024 +First reading: referred to Committee on Agriculture and Rural Development,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Zimmerman,2024-01-10,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-03-04,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Coauthored by Representative Pressel,2024-01-25,[],IN,2024 +First reading: referred to Committee on Family and Children Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Pfaff,2024-01-10,[],IN,2024 +Authored by Representative Criswell,2024-01-09,[],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-01,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-03-07,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Sweet,2024-01-09,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-12,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Policy,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Natural Resources,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Abbott,2024-01-10,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Fleming,2024-01-10,[],IN,2024 +"First reading: referred to Committee on Family, Children and Human Affairs",2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted standing vote,2024-01-25,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Jackson,2024-01-08,[],IN,2024 +Authored by Representative Haggard,2024-01-10,[],IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Coauthored by Representatives Pryor, Shackleford, Jackson, Hatcher",2024-02-01,[],IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Engleman,2024-01-08,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Hamilton,2024-01-11,[],IN,2024 +First reading: adopted voice vote,2024-02-27,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Natural Resources,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Haggard,2024-01-09,[],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Pensions and Labor,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Coauthored by Representative Porter,2024-02-20,[],IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Senate sponsor: Senator Alting,2024-01-10,[],IN,2024 +Authored by Representative Baird,2024-01-16,[],IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Appropriations,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Zent,2024-02-26,[],IN,2024 +"First reading: referred to Committee on Commerce, Small Business and Economic Development",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Cosponsor: Senator Randolph,2024-01-31,[],IN,2024 +Coauthored by Representative Jeter,2024-01-25,[],IN,2024 +Authored by Representative Heine,2024-01-09,[],IN,2024 +First reading: adopted,2024-02-27,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Natural Resources,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-02-15,"['passage', 'reading-1']",IN,2024 +Coauthored by Representative Garcia Wilburn,2024-01-25,[],IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Natural Resources,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to the Committee on Employment, Labor and Pensions",2024-01-25,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Appropriations,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Coauthored by Representatives Harris, Pack, Bartlett, Jackson, Hatcher, Porter, Shackleford, Smith V, Summers",2024-02-22,[],IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Coauthored by Representative Rowray,2024-02-27,[],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Errington,2024-01-08,[],IN,2024 +First reading: adopted voice vote,2024-02-20,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Bauer M,2024-01-31,[],IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-02-15,"['passage', 'reading-1']",IN,2024 +Authored by Representative Pfaff,2024-01-10,[],IN,2024 +First reading: referred to Committee on Utilities,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Aylesworth,2024-01-10,[],IN,2024 +Authored by Representative Speedy,2024-01-10,[],IN,2024 +First reading: adopted voice vote,2024-01-25,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Education,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-27,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-01-31,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Zent,2024-01-09,[],IN,2024 +Authored by Representative Morris,2024-01-10,[],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-03-07,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Family and Children Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Baird,2024-01-10,[],IN,2024 +Authored by Representative Haggard,2024-01-09,[],IN,2024 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Errington,2024-01-16,[],IN,2024 +Authored by Representative Abbott,2024-01-09,[],IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Judy,2024-01-09,[],IN,2024 +First reading: referred to Committee on Public Policy,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-01-18,"['passage', 'reading-1']",IN,2024 +Authored by Representative Goss-Reaves,2024-01-08,[],IN,2024 +First reading: adopted standing vote,2024-01-23,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Behning,2024-01-10,[],IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Elections and Apportionment,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Agriculture,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Behning,2024-01-10,[],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Andrade,2024-01-09,[],IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Andrade,2024-01-09,[],IN,2024 +Authored by Representative Morris,2024-01-10,[],IN,2024 +Authored by Representative Meltzer,2024-01-09,[],IN,2024 +Authored by Representative Heine,2024-01-08,[],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +Cosponsors: Representatives Rowray E and Errington,2024-01-25,[],IN,2024 +First reading: referred to Committee on Appropriations,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Morris,2024-01-10,[],IN,2024 +First reading: referred to Committee on Public Policy,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Behning,2024-01-10,[],IN,2024 +First reading: referred to Committee on Public Policy,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Policy,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Family, Children and Human Affairs",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Lyness,2024-01-22,[],IN,2024 +First reading: referred to Committee on Public Policy,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Authored by Senators Garten, Charbonneau, Brown L",2024-01-08,[],IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Abbott,2024-01-11,[],IN,2024 +Authored by Representative Johnson,2024-01-09,[],IN,2024 +First reading: referred to Committee on Financial Institutions,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Mayfield,2024-01-11,[],IN,2024 +First reading: referred to Committee on Financial Institutions,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-03-05,"['passage', 'reading-1']",IN,2024 +Authored by Representative Goodrich,2024-01-08,[],IN,2024 +First reading: referred to Committee on Pensions and Labor,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Payne,2024-01-11,[],IN,2024 +First reading: referred to Committee on Public Policy,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Appropriations,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Haggard,2024-01-09,[],IN,2024 +Authored by Representative Goodrich,2024-01-09,[],IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Zimmerman,2024-01-10,[],IN,2024 +First reading: referred to Committee on Elections,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Family, Children and Human Affairs",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Abbott,2024-01-09,[],IN,2024 +First reading: referred to Committee on Utilities,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Family, Children and Human Affairs",2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Meltzer,2024-01-09,[],IN,2024 +Coauthored by Representative Hamilton,2024-02-29,[],IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Natural Resources,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-03-04,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +Coauthored by Representative Harris,2024-01-22,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Jeter,2024-01-09,[],IN,2024 +Authored by Representative Steuerwald,2024-02-22,[],IN,2024 +Authored by Representative Prescott,2024-01-09,[],IN,2024 +First reading: adopted,2024-01-09,"['passage', 'reading-1']",IN,2024 +Authored by Representative Steuerwald,2024-01-08,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Slager,2024-01-25,[],IN,2024 +Authored by Representative Schaibley,2024-01-10,[],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Appropriations,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-06,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Authored by Senators Rogers, Raatz, Buchanan",2024-01-16,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-02-20,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Natural Resources,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Cherry,2024-01-08,[],IN,2024 +"First reading: referred to Committee on Family, Children and Human Affairs",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Lyness,2024-01-22,[],IN,2024 +First reading: referred to Committee on Family and Children Services,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-03-05,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Hall,2024-01-10,[],IN,2024 +First reading: referred to Committee on Local Government,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted standing vote,2024-02-19,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-03-05,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Lehman,2024-01-09,[],IN,2024 +Authored by Representative Miller D,2024-01-11,[],IN,2024 +Authored by Representative Johnson,2024-01-08,[],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-03-05,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-02-29,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-29,"['passage', 'reading-1']",IN,2024 +Authored by Representative Teshka,2024-01-08,[],IN,2024 +First reading: adopted voice vote,2024-02-29,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-29,"['passage', 'reading-1']",IN,2024 +"Coauthored by Representatives Miller K, Smaltz, Carbaugh, Judy, Morris, Lehman, Abbott, Zent, Heine",2024-03-05,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-29,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-29,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Coauthored by Representatives Lehman, Teshka, Bartels, McNamara",2024-03-04,[],IN,2024 +Authored by Representative Prescott,2024-01-08,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Snow,2024-01-10,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-02-29,"['passage', 'reading-1']",IN,2024 +Authored by Representative Fleming,2024-01-08,[],IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Senator Niezgodski,2024-01-08,[],IN,2024 +Coauthored by Representative Speedy,2024-02-29,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-02-29,"['passage', 'reading-1']",IN,2024 +Authored by Representative Porter,2024-01-08,[],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-01-16,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-13,"['passage', 'reading-1']",IN,2024 +Authored by Representative Schaibley,2024-01-08,[],IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Ledbetter,2024-01-08,[],IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Negele,2024-01-08,[],IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-01-09,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-02-20,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Elections and Apportionment,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Cosponsors: Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Freeman, Garten, Gaskill, Glick, Goode, Holdman, Hunley, Johnson T, Koch, Leising, Maxwell, Messmer, Mishler, Niemeyer, Pol, Qaddoura, Raatz, Randolph, Rogers, Taylor G, Tomes, Vinzant, Walker G, Walker K, Yoder, Young M, Zay",2024-02-19,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedure,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-02-19,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-13,"['passage', 'reading-1']",IN,2024 +Authored by Representative Jackson,2024-01-08,[],IN,2024 +First reading: adopted voice vote,2024-02-13,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Garcia Wilburn,2024-01-09,[],IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +"Authored by Senators Garten, Mishler, Holdman",2024-01-16,[],IN,2024 +Authored by Representative Karickhoff,2024-01-10,[],IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +"Authored by Senators Baldwin, Crider, Charbonneau",2024-01-08,[],IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-15,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Elections,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Financial Institutions,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-27,"['passage', 'reading-1']",IN,2024 +Authored by Representative Manning,2024-01-08,[],IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Clere,2024-01-30,[],IN,2024 +Authored by Representative Pierce K,2024-01-09,[],IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Family and Children Services,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Cherry,2024-03-06,[],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative McGuire,2024-01-09,[],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Morrison,2024-01-08,[],IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Gore,2024-01-09,[],IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Authored by Senators Zay and Holdman,2024-01-30,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Errington,2024-01-09,[],IN,2024 +Coauthored by Representatives O'Brien and Hatfield,2024-03-07,[],IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +"Coauthored by Representatives Harris, Bartlett, Hatcher, Jackson, Pack, Pryor, Shackleford, Smith V, Summers",2024-03-06,[],IN,2024 +Authored by Senators Bohacek and Doriot,2024-01-18,[],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-01-11,"['committee-passage', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Withdrawn,2024-01-11,['withdrawal'],IN,2024 +Senator Johnson T added as second author,2024-01-23,[],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Tax and Fiscal Policy,2024-01-25,"['committee-passage', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Senators Donato and Deery added as coauthors,2024-01-09,[],IN,2024 +Senator Donato added as third author,2024-01-18,[],IN,2024 +Representative Errington added as coauthor,2024-01-16,[],IN,2024 +Senator Johnson T added as second author,2024-01-16,[],IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-03-05,"['passage', 'reading-1']",IN,2024 +Senator Qaddoura added as coauthor,2024-01-09,[],IN,2024 +First reading: referred to Committee on Education,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Representatives Moed and Culp K added as coauthors,2024-01-18,[],IN,2024 +First reading: adopted voice vote,2024-03-04,"['passage', 'reading-1']",IN,2024 +Senator Hunley added as second author,2024-03-04,[],IN,2024 +"Committee report: do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +First reading: adopted,2024-03-06,"['passage', 'reading-1']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +House sponsor: Representative Lyness,2024-01-18,[],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Coauthored by Representative Jackson,2024-01-22,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-01-25,"['committee-passage', 'referral-committee']",IN,2024 +Representative Hall D added as coauthor,2024-01-22,[],IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Senator Qaddoura added as third author,2024-01-10,[],IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-11,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Senator Brown L added as second author,2024-01-10,[],IN,2024 +Committee report: do pass adopted; reassigned to Committee on Tax and Fiscal Policy,2024-01-25,"['committee-passage', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +Senator Walker K added as second author,2024-01-11,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Representative Carbaugh added as coauthor,2024-01-16,[],IN,2024 +First reading: referred to Committee on Education,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +Senator Gaskill added as coauthor,2024-01-22,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Senator Messmer added as second author,2024-01-09,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"Representatives Behning, Porter, Campbell added as coauthors",2024-01-18,[],IN,2024 +Senator Niemeyer added as second author,2024-01-09,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Senator Glick added as second author,2024-01-16,[],IN,2024 +First reading: adopted,2024-01-22,"['passage', 'reading-1']",IN,2024 +First reading: adopted,2024-02-22,"['passage', 'reading-1']",IN,2024 +House sponsor: Representative Bartels,2024-02-06,[],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Senator Vinzant added as coauthor,2024-02-29,[],IN,2024 +First reading: adopted,2024-03-04,"['passage', 'reading-1']",IN,2024 +First reading: adopted,2024-02-29,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +House sponsor: Representative Huston,2024-01-09,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +Authored by Representative Bauer M,2024-02-19,[],IN,2024 +Senator Messmer added as coauthor,2024-01-11,[],IN,2024 +First reading: referred to Committee on Appropriations,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Elections and Apportionment,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Senator Raatz added as second author,2024-01-18,[],IN,2024 +Senator Charbonneau added as second author,2024-01-22,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +First reading: referred to Committee on Financial Institutions,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Withdrawn,2024-02-26,['withdrawal'],IN,2024 +Representative Clere added as coauthor,2024-01-22,[],IN,2024 +Representative Garcia Wilburn V added as coauthor,2024-01-23,[],IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative Morris,2024-03-05,[],IN,2024 +"Committee report: do pass, adopted",2024-01-22,['committee-passage'],IN,2024 +First reading: referred to Committee on Agriculture and Rural Development,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Representative Gore M added as coauthor,2024-01-18,[],IN,2024 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Senator Freeman added as third author,2024-01-23,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +First reading: referred to Committee on Local Government,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-29,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-22,['committee-passage'],IN,2024 +"Coauthored by Representatives Bartels, Judy, Lucas, Soliday",2024-01-10,[],IN,2024 +First reading: referred to Committee on Insurance,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +Authored by Representative Campbell,2024-01-10,[],IN,2024 +Authored by Representative Harris,2024-01-31,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +First reading: adopted,2024-01-31,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Insurance,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Senator Charbonneau added as second author,2024-01-16,[],IN,2024 +Representatives Teshka J and Wesco added as coauthors,2024-01-29,[],IN,2024 +First reading: referred to Committee on Elections and Apportionment,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +"Senators Garten, Niemeyer, Niezgodski added as coauthors",2024-01-09,[],IN,2024 +Senator Alting added as second author,2024-01-18,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +"Representatives VanNatter, Miller K, Johnson added as coauthors",2024-01-23,[],IN,2024 +Representative Soliday added as coauthor,2024-01-22,[],IN,2024 +Representative Wesco added as coauthor,2024-01-11,[],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Commerce, Small Business and Economic Development",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Elections and Apportionment,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +Senator Ford J.D. added as coauthor,2024-01-11,[],IN,2024 +"Coauthored by Representatives Karickhoff, Torr, Summers, Porter, Campbell",2024-01-30,[],IN,2024 +Representative Zimmerman added as coauthor,2024-01-30,[],IN,2024 +"Committee report: do pass, adopted",2024-01-22,['committee-passage'],IN,2024 +First reading: adopted voice vote,2024-01-30,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-01-08,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-01-08,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to the Committee on Public Policy,2024-01-25,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Representative Sweet L added as coauthor,2024-01-16,[],IN,2024 +First reading: adopted,2024-01-22,"['passage', 'reading-1']",IN,2024 +"Representatives Teshka J, Lucas, Payne Z added as coauthors",2024-01-22,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-01-22,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-22,['committee-passage'],IN,2024 +First reading: adopted,2024-03-06,"['passage', 'reading-1']",IN,2024 +First reading: adopted,2024-03-07,"['passage', 'reading-1']",IN,2024 +Senator Johnson T added as second author,2024-01-29,[],IN,2024 +Senator Johnson T added as second author,2024-01-29,[],IN,2024 +Senator Walker G added as second author,2024-01-29,[],IN,2024 +First reading: referred to Committee on Local Government,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Representative Olthoff added as coauthor,2024-01-22,[],IN,2024 +First reading: referred to Committee on Agriculture and Rural Development,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative May,2024-01-25,[],IN,2024 +First reading: referred to Committee on Education,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Natural Resources,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative Lehman,2024-01-16,[],IN,2024 +"Coauthored by Representatives Andrade, Garcia Wilburn, Harris, Moed",2024-02-27,[],IN,2024 +Senator Charbonneau added as second author,2024-01-16,[],IN,2024 +"Committee report: do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Senator Niemeyer added as second author,2024-01-09,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Representative Lauer added as coauthor,2024-02-20,[],IN,2024 +Representatives Goodrich and Wesco added as coauthors,2024-01-16,[],IN,2024 +Senator Messmer added as second author,2024-01-18,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +First reading: referred to Committee on Education,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-02-19,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Committee on Joint Rules,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-02-19,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Committee report: do pass adopted; reassigned to Committee on Tax and Fiscal Policy,2024-01-18,"['committee-passage', 'referral-committee']",IN,2024 +Coauthored by Representative GiaQuinta,2023-11-21,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-02-19,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Freeman, Garten, Gaskill, Glick, Holdman, Hunley, Johnson T, Koch, Leising, Maxwell, Messmer, Mishler, Niemeyer, Niezgodski, Pol, Qaddoura, Raatz, Randolph, Rogers, Taylor G, Tomes, Vinzant, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2024-02-12,[],IN,2024 +First reading: referred to Committee on Insurance,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative Prescott,2024-01-25,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-02-01,"['passage', 'reading-1']",IN,2024 +Senator Glick added as third author,2024-01-18,[],IN,2024 +Coauthored by Representative Smaltz,2024-02-26,[],IN,2024 +First reading: adopted,2024-01-25,"['passage', 'reading-1']",IN,2024 +First reading: adopted,2024-01-25,"['passage', 'reading-1']",IN,2024 +First reading: adopted,2024-02-22,"['passage', 'reading-1']",IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +House sponsor: Representative Aylesworth,2024-02-20,[],IN,2024 +First reading: referred to Committee on Local Government,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative Mayfield,2024-02-27,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +First reading: adopted,2024-02-27,"['passage', 'reading-1']",IN,2024 +Senator Doriot added as second author,2024-01-18,[],IN,2024 +"Reassigned to Committee on Family, Children and Human Affairs",2024-01-09,[],IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-22,['committee-passage'],IN,2024 +Representative Negele added as coauthor,2024-01-22,[],IN,2024 +House sponsor: Representative Torr,2024-01-18,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Senator Garten added as second author,2024-01-16,[],IN,2024 +First reading: referred to Committee on Natural Resources,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Senator Qaddoura added as coauthor,2024-01-09,[],IN,2024 +Senator Byrne added as second author,2024-01-09,[],IN,2024 +House sponsor: Representative Steuerwald,2024-02-20,[],IN,2024 +First reading: adopted,2024-02-29,"['passage', 'reading-1']",IN,2024 +First reading: referred to the Committee on Ways and Means,2024-02-20,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Natural Resources,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Senator Busch added as coauthor,2024-01-09,[],IN,2024 +Senators Glick and Pol added as coauthors,2024-01-09,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-22,['committee-passage'],IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Policy,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-11,['committee-passage'],IN,2024 +House sponsor: Representative Porter,2024-02-19,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Family, Children and Human Affairs",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Senator Byrne added as coauthor,2024-01-18,[],IN,2024 +First reading: referred to Committee on Education,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-01-25,"['passage', 'reading-1']",IN,2024 +Authored by Senator Alexander,2024-01-25,[],IN,2024 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Garten, Gaskill, Glick, Goode G, Holdman, Hunley, Johnson T, Koch, Leising, Maxwell, Messmer, Mishler, Niemeyer, Niezgodski, Pol, Qaddoura, Raatz, Randolph, Rogers, Taylor G, Tomes, Vinzant, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2024-01-23,[],IN,2024 +First reading: referred to Committee on Education,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Senator Charbonneau added as second author,2024-01-30,[],IN,2024 +Withdrawn,2024-01-09,['withdrawal'],IN,2024 +"Committee report: do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-09,['committee-passage'],IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Senator Koch added as second author,2024-01-09,[],IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Senator Becker added as second author,2024-01-22,[],IN,2024 +Representative Judy added as coauthor,2024-01-18,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Senator Brown L added as second author,2024-01-22,[],IN,2024 +"Committee report: do pass, adopted",2024-01-22,['committee-passage'],IN,2024 +Senator Johnson T added as second author,2024-01-16,[],IN,2024 +Senator Doriot added as second author,2024-01-23,[],IN,2024 +First reading: referred to Committee on Elections and Apportionment,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Senator Charbonneau added as second author,2024-01-10,[],IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Senator Bassler added as second author,2024-01-25,[],IN,2024 +First reading: referred to Committee on Public Policy,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Senator Crane added as coauthor,2024-01-11,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +First reading: referred to Committee on Insurance,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +Senator Randolph added as coauthor,2024-01-25,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Senator Niezgodski added as second author,2024-01-10,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Local Government,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +First reading: referred to Committee on Elections and Apportionment,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +Senator Glick added as second author,2024-01-18,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Representative Errington added as coauthor,2024-01-18,[],IN,2024 +Senator Crane added as coauthor,2024-01-11,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-01-10,"['passage', 'reading-1']",IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to the Committee on Roads and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Policy,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Representative Miller D added as coauthor,2024-01-16,[],IN,2024 +Representative McGuire J added as coauthor,2024-01-22,[],IN,2024 +Senator Charbonneau added as second author,2024-01-22,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative Pierce M,2024-02-12,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +Committee report: do pass adopted; reassigned to Committee on Tax and Fiscal Policy,2024-01-22,"['committee-passage', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Representative Lauer added as coauthor,2024-02-19,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Senator Donato added as second author,2024-01-10,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Coauthored by Representative Moed,2024-02-26,[],IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative Rowray,2024-01-11,[],IN,2024 +"First reading: referred to Committee on Commerce, Small Business and Economic Development",2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2024-01-25,"['committee-passage', 'referral-committee']",IN,2024 +First reading: adopted,2024-01-22,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Insurance,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Senator Crider added as third author,2024-01-11,[],IN,2024 +First reading: referred to Committee on Natural Resources,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Representative Speedy added as coauthor,2024-02-05,[],IN,2024 +Senator Walker G added as second author,2024-01-25,[],IN,2024 +"Coauthored by Representatives Johnson B, Moseley, DeLaney, Pierce M, Bauer M, Speedy, GiaQuinta, Campbell, Abbott, Goodrich, Pfaff, Errington, Andrade, Lehman, Pressel, Borders, Olthoff, Behning, Morrison, Hatfield, Morris, Heaton, Manning, Jackson, DeVon, Pierce K, Gore, Klinker, Porter, Hatcher, Harris, Shackleford, Cherry, Steuerwald, Smith V, Greene, Jordan, Baird, Schaibley, Patterson, Culp, Sweet, Bartlett, Pack, Fleming, Garcia Wilburn, Moed, Rowray, Heine, Negele, Pryor, Huston, Summers",2024-02-19,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-22,['committee-passage'],IN,2024 +"First reading: referred to Committee on Commerce, Small Business and Economic Development",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +Representatives Fleming and Carbaugh added as coauthors,2024-01-16,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Representative Karickhoff added as coauthor,2024-01-16,[],IN,2024 +Representative Pack R added as coauthor,2024-01-18,[],IN,2024 +Representative Prescott added as coauthor,2024-01-16,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +Representative Garcia Wilburn V added as coauthor,2024-01-23,[],IN,2024 +First reading: referred to the Committee on Public Health,2024-01-29,"['reading-1', 'referral-committee']",IN,2024 +"Representatives Barrett, Fleming, Andrade M added as coauthors",2024-01-22,[],IN,2024 +Representative Wesco added as coauthor,2024-01-16,[],IN,2024 +Senator Charbonneau added as third author,2024-01-09,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +"Representatives Jordan, Engleman, Lyness added as coauthors",2024-01-16,[],IN,2024 +Senator Buchanan added as second author,2024-01-22,[],IN,2024 +Senator Crider added as coauthor,2024-01-09,[],IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Representative Sweet L added as coauthor,2024-01-29,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Withdrawn,2024-01-18,['withdrawal'],IN,2024 +First reading: adopted,2024-03-06,"['passage', 'reading-1']",IN,2024 +First reading: adopted,2024-02-26,"['passage', 'reading-1']",IN,2024 +Representative Moed added as coauthor,2024-01-16,[],IN,2024 +Representatives Pressel and Clere added as coauthors,2024-01-23,[],IN,2024 +Senator Johnson T added as third author,2024-01-09,[],IN,2024 +House sponsor: Representative Lehman,2024-02-13,[],IN,2024 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Freeman, Garten, Gaskill, Glick, Goode, Holdman, Hunley, Johnson T, Koch, Maxwell, Messmer, Mishler, Niemeyer, Niezgodski, Pol, Qaddoura, Raatz, Randolph, Rogers, Taylor G, Tomes, Vinzant, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2024-02-13,[],IN,2024 +Representative Hamilton added as coauthor,2024-01-23,[],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Representative Miller D added as coauthor,2024-01-16,[],IN,2024 +Senator Young M added as second author,2024-01-18,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Representatives Pfaff and Criswell C added as coauthors,2024-01-16,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Policy,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +First reading: referred to Committee on Education,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Senator Rogers added as second author,2024-01-29,[],IN,2024 +Representative Haggard C added as coauthor,2024-01-18,[],IN,2024 +First reading: adopted voice vote,2024-02-27,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Representative Teshka J added as coauthor,2024-01-18,[],IN,2024 +Representatives King J and Wesco added as coauthors,2024-01-18,[],IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Representative Pressel added as coauthor,2024-01-16,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-11,['committee-passage'],IN,2024 +Representative Karickhoff added as coauthor,2024-01-18,[],IN,2024 +Senator Randolph added as coauthor,2024-01-22,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +First reading: referred to Committee on Utilities,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +Representatives Manning and Criswell C added as coauthors,2024-01-22,[],IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Senator Alexander added as coauthor,2024-01-10,[],IN,2024 +First reading: referred to the Committee on Roads and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Agriculture and Rural Development,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Senator Baldwin added as second author,2024-01-11,[],IN,2024 +First reading: referred to Committee on Insurance,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Senator Johnson T added as second author,2024-01-09,[],IN,2024 +"Representatives Schaibley, Criswell C, Shackleford added as coauthors",2024-01-23,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +Representative Davis M added as coauthor,2024-01-18,[],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-01-16,"['committee-passage', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Senator Niezgodski added as coauthor,2024-01-29,[],IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Senator Doriot added as second author,2024-01-18,[],IN,2024 +First reading: adopted voice vote,2024-03-08,"['passage', 'reading-1']",IN,2024 +Senator Freeman added as second author,2024-01-16,[],IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to the Committee on Roads and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Senator Raatz added as second author,2024-01-25,[],IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +First reading: referred to Committee on Financial Institutions,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +Senator Baldwin added as second author,2024-01-10,[],IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +Representative Hamilton added as coauthor,2024-01-23,[],IN,2024 +Representative Bartels added as coauthor,2024-01-29,[],IN,2024 +Senator Pol added as coauthor,2024-01-22,[],IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Senator Brown L added as second author,2024-02-22,[],IN,2024 +Representative Judy added as coauthor,2024-01-18,[],IN,2024 +Withdrawn,2024-01-11,['withdrawal'],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +Senator Rogers added as second author,2024-01-10,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-09,['committee-passage'],IN,2024 +First reading: referred to Committee on Education,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Family, Children and Human Affairs",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Judiciary,2024-01-10,"['committee-passage', 'referral-committee']",IN,2024 +"Representatives Abbott, Aylesworth, Baird, Barrett, Bartels, Carbaugh, Cash, Clere, Criswell, Culp, Davis, DeVon, Engleman, Genda, Goodrich, Gore, Goss-Reaves, Haggard, Hatfield, Heaton, Heine, Huston, Judy, Lauer, Ledbetter, Lehman, Lindauer, Lucas, Lyness, Manning, May, Mayfield, McGuire, McNamara, Meltzer, Miller D, Olthoff, Pack R, Patterson, Pierce K, Prescott, Rowray, Schaibley, Slager, Speedy, Steuerwald, Sweet, Teshka, Thompson, Torr, VanNatter, Wesco, Zent, Zimmerman added as coauthors",2024-02-20,[],IN,2024 +Representative Heaton added as coauthor,2024-01-16,[],IN,2024 +Representative Cash B added as coauthor,2024-01-11,[],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Senator Byrne added as second author,2024-01-09,[],IN,2024 +First reading: referred to the Committee on Roads and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Senator Johnson T added as coauthor,2024-01-09,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +First reading: referred to Committee on Public Policy,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +Senator Qaddoura added as third author,2024-01-09,[],IN,2024 +Representative Bartlett added as coauthor,2024-01-11,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +First reading: referred to Committee on Insurance,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted,2024-01-09,"['passage', 'reading-1']",IN,2024 +Senator Qaddoura added as coauthor,2024-01-16,[],IN,2024 +Senator Doriot added as second author,2024-01-10,[],IN,2024 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Buchanan, Buck, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Freeman, Garten, Gaskill, Glick, Goode, Holdman, Hunley, Johnson T, Koch, Leising, Maxwell, Messmer, Mishler, Niemeyer, Niezgodski, Pol, Qaddoura, Raatz, Randolph, Rogers, Taylor G, Tomes, Vinzant, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2024-02-13,[],IN,2024 +Representative Teshka J added as coauthor,2024-01-11,[],IN,2024 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Freeman, Gaskill, Glick, Goode, Holdman, Hunley, Johnson T, Koch, Leising, Maxwell, Messmer, Mishler, Niemeyer, Niezgodski, Pol, Qaddoura, Randolph, Rogers, Taylor G, Tomes, Vinzant, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2024-02-27,[],IN,2024 +Representative McGuire J added as coauthor,2024-01-11,[],IN,2024 +"Committee report: do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +First reading: adopted,2024-03-06,"['passage', 'reading-1']",IN,2024 +Senator Carrasco added as second author,2024-01-25,[],IN,2024 +Senator Niezgodski added as coauthor,2024-01-09,[],IN,2024 +First reading: adopted,2024-02-15,"['passage', 'reading-1']",IN,2024 +House sponsor: Representative Lindauer,2024-03-05,[],IN,2024 +Senator Crider added as second author,2024-01-09,[],IN,2024 +"Committee report: do pass, adopted",2024-01-22,['committee-passage'],IN,2024 +"Coauthored by Representatives Harris, Jackson, Pack, Bartlett, Hatcher, Porter, Shackleford, Smith V, Summers",2024-02-26,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Senator Qaddoura added as coauthor,2024-01-18,[],IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +Senator Crane added as coauthor,2024-01-11,[],IN,2024 +Pursuant to Senate Rule 68(b); reassigned to Committee on Corrections and Criminal Law,2024-01-23,['referral-committee'],IN,2024 +"Committee report: do pass, adopted",2024-01-11,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Representative Payne Z added as coauthor,2024-01-22,[],IN,2024 +Senator Walker K added as coauthor,2024-01-16,[],IN,2024 +First reading: referred to Committee on Agriculture and Rural Development,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-16,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Agriculture and Rural Development,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +Senator Ford J.D. added as coauthor,2024-01-09,[],IN,2024 +Representative Payne Z added as coauthor,2024-01-22,[],IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +Representative Andrade M added as coauthor,2024-01-18,[],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-01-25,"['committee-passage', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +First reading: adopted,2024-01-09,"['passage', 'reading-1']",IN,2024 +"Representatives Jeter C, Heaton, Greene R added as coauthors",2024-01-11,[],IN,2024 +Senator Koch added as second author,2024-01-22,[],IN,2024 +House sponsor: Representative Baird,2024-03-05,[],IN,2024 +"Committee report: do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +Representative Manning added as coauthor,2024-01-23,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +"Representatives Goodrich, Jordan, Teshka J added as coauthors",2024-01-16,[],IN,2024 +Representative Clere added as coauthor,2024-01-22,[],IN,2024 +Senator Goode G added as coauthor,2024-01-10,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +Representative Manning added as coauthor,2024-01-29,[],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Natural Resources,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +First reading: referred to Committee on Judiciary,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Senator Qaddoura added as second author,2024-01-18,[],IN,2024 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2024-01-25,"['committee-passage', 'referral-committee']",IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-26,"['passage', 'reading-1']",IN,2024 +Senator Pol added as coauthor,2024-01-22,[],IN,2024 +First reading: referred to Committee on Agriculture and Rural Development,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +First reading: adopted,2024-02-12,"['passage', 'reading-1']",IN,2024 +Representatives Lehman and Abbott D added as coauthors,2024-01-11,[],IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +Representative Judy added as coauthor,2024-01-18,[],IN,2024 +First reading: adopted,2024-01-22,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Representative Goodrich added as coauthor,2024-01-29,[],IN,2024 +First reading: adopted voice vote,2024-01-22,"['passage', 'reading-1']",IN,2024 +Senator Bassler added as second author,2024-01-25,[],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Insurance,2024-01-10,"['reading-1', 'referral-committee']",IN,2024 +Representative Pierce K added as coauthor,2024-01-18,[],IN,2024 +First reading: referred to Committee on Ways and Means,2024-01-11,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-01-09,"['reading-1', 'referral-committee']",IN,2024 +"Representatives Engleman, Jordan, Fleming added as coauthors",2024-01-16,[],IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-01-08,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative Jordan,2024-02-12,[],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Judiciary,2024-01-25,"['committee-passage', 'referral-committee']",IN,2024 +Senator Crider added as second author,2024-01-16,[],IN,2024 +Senator Doriot added as second author,2024-01-10,[],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-09,['committee-passage'],IN,2024 +Representative Goss-Reaves added as coauthor,2024-01-16,[],IN,2024 +"Senators Alexander, Alting, Baldwin, Bassler, Bohacek, Bray, Breaux, Brown L, Buchanan, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Doriot, Ford J.D., Freeman, Garten, Gaskill, Glick, Goode, Holdman, Hunley, Johnson T, Koch, Leising, Maxwell, Messmer, Mishler, Niemeyer, Niezgodski, Pol, Qaddoura, Raatz, Rogers, Taylor G, Tomes, Vinzant, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2024-03-08,[],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Senator Randolph added as coauthor,2024-02-01,[],IN,2024 +Senator Johnson T added as second author,2024-01-22,[],IN,2024 +Senator Doriot added as second author,2024-01-18,[],IN,2024 +Representatives McGuire and Davis added as coauthors,2024-01-30,[],IN,2024 +Second reading: ordered engrossed,2024-02-05,['reading-2'],IN,2024 +Representative Manning added as coauthor,2024-01-11,[],IN,2024 +Senators Rogers and Goode G added as coauthors,2024-01-10,[],IN,2024 +Representative Pryor added as coauthor,2024-01-23,[],IN,2024 +Senator Glick added as third author,2024-01-10,[],IN,2024 +Representatives Jeter and Steuerwald added as coauthors,2024-01-30,[],IN,2024 +Amendment #1 (Barrett) prevailed; voice vote,2024-01-18,['amendment-passage'],IN,2024 +Amendment #1 (Koch) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +Representative VanNatter added as coauthor,2024-01-22,[],IN,2024 +"Committee report: do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +Representative Cherry added as coauthor,2024-01-23,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-18,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +Senator Rogers added as second author,2024-01-18,[],IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-01-18,"['committee-passage', 'referral-committee']",IN,2024 +Senator Bohacek added as coauthor,2024-01-09,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-09,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +Senator Charbonneau added as third author,2024-01-09,[],IN,2024 +Amendment #1 (Pierce M) failed; voice vote,2024-01-29,"['amendment-failure', 'failure']",IN,2024 +Senator Charbonneau added as second author,2024-01-18,[],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +"Committee report: do pass, adopted",2024-01-09,['committee-passage'],IN,2024 +Representative Speedy added as coauthor,2024-01-22,[],IN,2024 +"Representatives Heaton, Speedy, Teshka J added as coauthors",2024-01-29,[],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +Representatives Bauer M and Harris added as coauthors,2024-01-18,[],IN,2024 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Buchanan, Buck, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Freeman, Garten, Gaskill, Glick, Goode, Holdman, Hunley, Johnson T, Koch, Leising, Maxwell, Messmer, Mishler, Niemeyer, Niezgodski, Pol, Raatz, Randolph, Rogers, Taylor G, Tomes, Vinzant, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2024-02-22,[],IN,2024 +Senator Goode G added as second author,2024-01-10,[],IN,2024 +"Representatives Bartels, Jeter C, Torr added as coauthors",2024-01-29,[],IN,2024 +Representative Harris added as coauthor,2024-01-18,[],IN,2024 +Representative Bartlett added as coauthor,2024-01-18,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +Representative Fleming added as coauthor,2024-02-20,[],IN,2024 +Senator Taylor G removed as author,2024-01-11,[],IN,2024 +"Senators Alting, Doriot, Tomes added as coauthors",2024-01-10,[],IN,2024 +Second reading: adopted voice vote,2024-01-25,"['passage', 'reading-2']",IN,2024 +Senator Walker G added as second author,2024-01-23,[],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-01-18,"['committee-passage', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +Referred to the Senate,2024-02-16,['referral'],IN,2024 +Representative Pryor added as coauthor,2024-01-16,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Referred to the House,2024-03-05,['referral'],IN,2024 +"Committee report: do pass, adopted",2024-01-22,['committee-passage'],IN,2024 +Representative Barrett removed as coauthor,2024-01-23,[],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +Senator Hunley added as third author,2024-01-10,[],IN,2024 +Senator Freeman added as third author,2024-01-23,[],IN,2024 +Senator Niezgodski added as coauthor,2024-01-18,[],IN,2024 +Referred to the House,2024-03-05,['referral'],IN,2024 +Representative Andrade M added as coauthor,2024-01-29,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +Amendment #1 (Buck) prevailed; voice vote,2024-02-01,['amendment-passage'],IN,2024 +Senator Crider added as coauthor,2024-01-25,[],IN,2024 +Senator Alting added as coauthor,2024-01-18,[],IN,2024 +Amendment #1 (Raatz) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +"Senators Bohacek, Freeman, Glick added as coauthors",2024-01-25,[],IN,2024 +Representatives Behning and Davis M added as coauthors,2024-01-29,[],IN,2024 +Representative Andrade M added as coauthor,2024-01-29,[],IN,2024 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Brown L, Buchanan, Buck, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Freeman, Garten, Gaskill, Glick, Goode G, Holdman, Johnson T, Koch, Leising, Maxwell, Messmer, Mishler, Niemeyer, Raatz, Rogers, Tomes, Walker G, Walker K, Young M, Zay added as coauthors",2024-01-22,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-22,['committee-passage'],IN,2024 +Representative McGuire J added as coauthor,2024-01-16,[],IN,2024 +Referred to the House,2024-02-12,['referral'],IN,2024 +Senator Buck added as coauthor,2024-01-18,[],IN,2024 +Senator Garten added as third author,2024-01-16,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Senator Deery added as third author,2024-01-22,[],IN,2024 +Referred to the House,2024-02-12,['referral'],IN,2024 +Senator Charbonneau added as third author,2024-01-16,[],IN,2024 +Cosponsors: Representatives Prescott and Errington,2024-01-11,[],IN,2024 +Senator Doriot added as second author,2024-01-25,[],IN,2024 +Referred to the Senate,2024-01-23,['referral'],IN,2024 +Reassigned to Committee on Agriculture and Rural Development,2024-01-16,[],IN,2024 +First reading: adopted,2024-02-19,"['passage', 'reading-1']",IN,2024 +Senator Niezgodski added as coauthor,2024-01-25,[],IN,2024 +Representative Barrett added as coauthor,2024-01-16,[],IN,2024 +"Committee report: do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +"Senators Niemeyer, Walker G, Walker K added as coauthors",2024-01-25,[],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +Representative Garcia Wilburn V added as coauthor,2024-01-22,[],IN,2024 +Referred to the Senate,2024-02-27,['referral'],IN,2024 +Representatives Pierce K and Criswell C added as coauthors,2024-01-16,[],IN,2024 +Cosponsor: Representative Pack R,2024-02-13,[],IN,2024 +Amendment #1 (Dernulc) prevailed; voice vote,2024-01-23,['amendment-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +Representative Payne Z added as coauthor,2024-01-22,[],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +Representative Judy added as coauthor,2024-01-16,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +Representative Payne Z added as coauthor,2024-01-23,[],IN,2024 +Amendment #2 (Negele) prevailed; voice vote,2024-01-16,['amendment-passage'],IN,2024 +Senator Dernulc added as coauthor,2024-01-10,[],IN,2024 +Senator Raatz added as third author,2024-01-29,[],IN,2024 +Representative Prescott added as coauthor,2024-01-16,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-18,['reading-2'],IN,2024 +Representative Summers removed as author,2024-01-29,[],IN,2024 +Amendment #2 (Holdman) prevailed; voice vote,2024-02-01,['amendment-passage'],IN,2024 +First reading: adopted,2024-02-26,"['passage', 'reading-1']",IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Senator Becker added as second author,2024-01-25,[],IN,2024 +Representative Pressel added as coauthor,2024-01-16,[],IN,2024 +Representative Zimmerman added as coauthor,2024-01-22,[],IN,2024 +Representative Goss-Reaves added as coauthor,2024-01-16,[],IN,2024 +Representative Wesco added as coauthor,2024-01-18,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-22,['committee-passage'],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-01-18,"['committee-passage', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Referred to the Senate,2024-01-09,['referral'],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-01-18,"['committee-passage', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +Senator Glick added as second author,2024-01-29,[],IN,2024 +Second reading: ordered engrossed,2024-01-16,['reading-2'],IN,2024 +First reading: adopted,2024-02-26,"['passage', 'reading-1']",IN,2024 +Senator Freeman added as third author,2024-01-09,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Representative Wesco added as coauthor,2024-01-16,[],IN,2024 +Second reading: ordered engrossed,2024-02-05,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Senator Buck added as second author,2024-01-11,[],IN,2024 +Second reading: ordered engrossed,2024-01-31,['reading-2'],IN,2024 +"Committee report: do pass, adopted",2024-01-11,['committee-passage'],IN,2024 +Senator Ford J.D. added as coauthor,2024-01-25,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Senator Bray removed as author,2024-01-25,[],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Senator Donato added as third author,2024-01-18,[],IN,2024 +Senator Niezgodski added as coauthor,2024-01-18,[],IN,2024 +Representative McGuire J added as coauthor,2024-01-11,[],IN,2024 +Senator Alting added as third author,2024-01-29,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +"Committee report: do pass, adopted",2024-01-11,['committee-passage'],IN,2024 +Second reading: adopted voice vote,2024-02-01,"['passage', 'reading-2']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Senators Niezgodski and Ford J.D. added as coauthors,2024-01-09,[],IN,2024 +Representative Miller K added as coauthor,2024-01-18,[],IN,2024 +Senator Qaddoura added as coauthor,2024-01-25,[],IN,2024 +"Committee report: do pass, adopted",2024-01-09,['committee-passage'],IN,2024 +Senator Doriot added as coauthor,2024-01-10,[],IN,2024 +Amendment #3 (Messmer) prevailed; voice vote,2024-01-30,['amendment-passage'],IN,2024 +Referred to the House,2024-01-26,['referral'],IN,2024 +Representative Meltzer J added as coauthor,2024-01-18,[],IN,2024 +Senator Johnson T added as coauthor,2024-01-16,[],IN,2024 +Senators Dernulc and Tomes added as coauthors,2024-01-09,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-11,['committee-passage'],IN,2024 +Representative Miller D removed as coauthor,2024-01-22,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +"Coauthored by Representatives Abbott, Andrade, Aylesworth, Bartlett, Boy, Campbell, DeLaney, DeVon, Dvorak, Errington, Fleming, Garcia Wilburn, GiaQuinta, Goodrich, Gore, Hamilton, Harris, Hatcher, Hatfield, Heaton, Heine, Hostettler, Jackson, Johnson B, Judy, Klinker, McGuire, Miller D, Miller K, Moed, Moseley, Negele, Olthoff, Pack, Pfaff, Pierce K, Pierce M, Porter, Pryor, Rowray, Shackleford, Smith V, Soliday, Summers, Teshka, VanNatter, Wesco",2024-02-19,[],IN,2024 +Amendment #2 (Wesco) prevailed; voice vote,2024-01-25,['amendment-passage'],IN,2024 +Amendment #1 (Messmer) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +First reading: adopted,2024-01-30,"['passage', 'reading-1']",IN,2024 +Senator Baldwin added as coauthor,2024-01-09,[],IN,2024 +Senator Carrasco added as third author,2024-01-22,[],IN,2024 +"Representatives Carbaugh, Snow C, Shackleford added as coauthors",2024-01-29,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Senator Glick added as second author,2024-02-01,[],IN,2024 +"Representatives Ledbetter, Morris, King, Negele, Lucas, Soliday, Cherry, Jordan, Thompson, Johnson B, Moseley, Manning, Bauer M, Miller K, Pierce K, Heaton, Zimmerman, Cash, Judy, Errington, Barrett, McGuire, Porter, Klinker, Hatcher, Hamilton added as coauthors",2024-03-08,[],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +"Representatives Goss-Reaves, Engleman, Summers added as coauthors",2024-01-30,[],IN,2024 +"Reassigned to Committee on Commerce, Small Business and Economic Development",2024-01-16,[],IN,2024 +Amendment #1 (Clere) prevailed; voice vote,2024-01-31,['amendment-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-01-18,"['committee-passage', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Amendment #1 (Meltzer) prevailed; voice vote,2024-01-18,['amendment-passage'],IN,2024 +Representatives Jeter C and Torr added as coauthors,2024-01-25,[],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +Senator Messmer added as third author,2024-02-01,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +Senator Niemeyer added as coauthor,2024-01-25,[],IN,2024 +"Committee report: do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-01-18,"['committee-passage', 'referral-committee']",IN,2024 +Cosponsor: Representative Pressel,2024-02-06,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Senator Buchanan added as coauthor,2024-01-25,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Senator Crider added as second author,2024-01-22,[],IN,2024 +Senator Bohacek added as coauthor,2024-01-22,[],IN,2024 +Referred to the Senate,2024-01-26,['referral'],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-01-18,[],IN,2024 +Senator Tomes added as third author,2024-01-09,[],IN,2024 +Senator Garten added as third author,2024-01-10,[],IN,2024 +Representative Speedy added as coauthor,2024-01-11,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Referred to the Senate,2024-03-06,['referral'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +Representative Manning added as coauthor,2024-01-16,[],IN,2024 +Amendment #1 (Brown L) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +Senator Alting added as second author,2024-01-10,[],IN,2024 +Representative Shackleford added as coauthor,2024-01-29,[],IN,2024 +Representative Payne Z added as coauthor,2024-01-22,[],IN,2024 +First reading: adopted standing vote,2024-01-25,"['passage', 'reading-1']",IN,2024 +Senator Byrne added as coauthor,2024-01-09,[],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-01-25,"['committee-passage', 'referral-committee']",IN,2024 +Senator Bassler added as coauthor,2024-01-10,[],IN,2024 +Senator Johnson T added as coauthor,2024-01-10,[],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +"Committee report: do pass, adopted",2024-01-09,['committee-passage'],IN,2024 +Senator Young M added as second author,2024-01-25,[],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +Representative O'Brien T added as coauthor,2024-01-16,[],IN,2024 +Senator Leising added as second author,2024-01-18,[],IN,2024 +Senator Young M added as third author,2024-01-25,[],IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Tax and Fiscal Policy,2024-01-18,"['committee-passage', 'referral-committee']",IN,2024 +Senator Garten added as third author,2024-01-16,[],IN,2024 +Amendment #1 (Baldwin) prevailed; voice vote,2024-02-01,['amendment-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-16,['reading-2'],IN,2024 +Senator Garten added as second author,2024-01-22,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +Senators Taylor G and Ford J.D. added as coauthors,2024-03-04,[],IN,2024 +Second reading: ordered engrossed,2024-01-18,['reading-2'],IN,2024 +Representative Hamilton added as coauthor,2024-01-23,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Representative Olthoff added as coauthor,2024-01-16,[],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Senator Rogers added as third author,2024-01-11,[],IN,2024 +"Committee report: do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +House sponsor: Representative Bartlett,2024-03-04,[],IN,2024 +Amendment #1 (Smaltz) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +Senator Messmer added as third author,2024-01-11,[],IN,2024 +Amendment #1 (Maxwell) prevailed; voice vote,2024-01-25,['amendment-passage'],IN,2024 +Representative Smaltz added as coauthor,2024-01-11,[],IN,2024 +Senator Walker K added as coauthor,2024-01-09,[],IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +"Coauthored by Representatives Shackleford, Pryor, Hatcher, Smith V, Jackson, Porter, Bartlett, Summers, Pack",2024-01-31,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Coauthored by Representative Klinker,2024-01-10,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +Amendment #1 (Morrison) prevailed; voice vote,2024-01-22,['amendment-passage'],IN,2024 +Representative Abbott D added as coauthor,2024-01-18,[],IN,2024 +First reading: adopted,2024-01-10,"['passage', 'reading-1']",IN,2024 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Freeman, Garten, Gaskill, Glick, Goode, Holdman, Hunley, Johnson T, Koch, Maxwell, Messmer, Mishler, Niemeyer, Niezgodski, Pol, Qaddoura, Raatz, Randolph, Rogers, Taylor G, Tomes, Vinzant, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2024-02-20,[],IN,2024 +Referred to the House,2024-02-28,['referral'],IN,2024 +First reading: adopted,2024-02-27,"['passage', 'reading-1']",IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +Representative Snow C added as coauthor,2024-01-11,[],IN,2024 +"Second reading: adopted Roll Call 245: yeas 39, nays 9",2024-03-04,"['passage', 'reading-2']",IN,2024 +Senate sponsor: Senator Alexander,2024-02-27,[],IN,2024 +Amendment #2 (Leising) prevailed; voice vote,2024-01-30,['amendment-passage'],IN,2024 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Freeman, Garten, Gaskill, Glick, Goode, Holdman, Hunley, Johnson T, Koch, Leising, Maxwell, Messmer, Mishler, Niemeyer, Niezgodski, Pol, Qaddoura, Raatz, Randolph, Rogers, Tomes, Vinzant, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2024-02-19,[],IN,2024 +Senate sponsor: Senator Walker K,2024-01-25,[],IN,2024 +First reading: adopted,2024-02-26,"['passage', 'reading-1']",IN,2024 +Senator Baldwin removed as second author,2024-01-09,[],IN,2024 +Representative Steuerwald added as coauthor,2024-01-16,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-22,['committee-passage'],IN,2024 +Referred to the Senate,2024-01-23,['referral'],IN,2024 +"Committee report: do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +Senator Becker added as coauthor,2024-01-18,[],IN,2024 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Freeman, Garten, Gaskill, Glick, Goode, Holdman, Hunley, Johnson T, Leising, Maxwell, Messmer, Mishler, Niemeyer, Niezgodski, Pol, Qaddoura, Raatz, Randolph, Rogers, Taylor G, Tomes, Vinzant, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2024-02-20,[],IN,2024 +Representative Andrade M added as coauthor,2024-01-18,[],IN,2024 +Second reading: ordered engrossed,2024-01-18,['reading-2'],IN,2024 +Representatives Lauer and Pack R added as coauthors,2024-01-23,[],IN,2024 +Referred to the House,2024-01-17,['referral'],IN,2024 +Cosponsors: Representatives Rowray E and Errington,2024-01-25,[],IN,2024 +Amendment #1 (Clere) prevailed; voice vote,2024-01-18,['amendment-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Representative Rowray E added as coauthor,2024-01-29,[],IN,2024 +Second reading: ordered engrossed,2024-01-23,['reading-2'],IN,2024 +Representative DeLaney removed as coauthor,2024-01-16,[],IN,2024 +Representative Hamilton added as coauthor,2024-01-16,[],IN,2024 +Representative Prescott added as coauthor,2024-01-16,[],IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Senator Bassler added as second author,2024-01-18,[],IN,2024 +Representative Manning added as coauthor,2024-01-11,[],IN,2024 +Representative Criswell C removed as author,2024-01-22,[],IN,2024 +Amendment #1 (Tomes) prevailed; voice vote,2024-01-18,['amendment-passage'],IN,2024 +Representatives Bartels and Jeter C added as coauthors,2024-01-22,[],IN,2024 +Second reading: ordered engrossed,2024-01-30,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +Referred to the Senate,2024-01-23,['referral'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-16,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Senator Ford J.D. added as coauthor,2024-01-09,[],IN,2024 +Referred to the House,2024-03-05,['referral'],IN,2024 +First reading: adopted voice vote,2023-11-21,"['passage', 'reading-1']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-11,['committee-passage'],IN,2024 +Referred to the House,2024-01-23,['referral'],IN,2024 +"Committee report: do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Senator Niemeyer added as second author,2024-01-25,[],IN,2024 +Representative Heaton removed as coauthor,2024-01-16,[],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-01-18,[],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +Representative McGuire J added as coauthor,2024-01-11,[],IN,2024 +Representative Payne Z added as coauthor,2024-01-22,[],IN,2024 +Second reading: adopted voice vote,2024-01-25,"['passage', 'reading-2']",IN,2024 +Representative Garcia Wilburn V added as coauthor,2024-01-18,[],IN,2024 +Amendment #1 (Mayfield) prevailed; voice vote,2024-02-01,['amendment-passage'],IN,2024 +Representative Baird added as coauthor,2024-01-23,[],IN,2024 +Representative Manning added as coauthor,2024-01-16,[],IN,2024 +Reassigned to Committee on Courts and Criminal Code,2024-01-11,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +Senator Gaskill added as third author,2024-01-16,[],IN,2024 +Representative Cherry added as coauthor,2024-01-23,[],IN,2024 +Referred to the Senate,2024-02-20,['referral'],IN,2024 +Representative Ledbetter C added as coauthor,2024-01-11,[],IN,2024 +Authored by Representative Huston,2024-01-08,[],IN,2024 +Senator Donato added as second author,2024-02-01,[],IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +Authored by Representative Huston,2024-01-08,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Representative Behning removed as author,2024-01-25,[],IN,2024 +Representative Harris added as coauthor,2024-01-18,[],IN,2024 +Senator Gaskill added as second author,2024-01-09,[],IN,2024 +Senator Crane added as second author,2024-01-22,[],IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Senator Carrasco added as coauthor,2024-01-16,[],IN,2024 +Senator Leising added as second author,2024-01-29,[],IN,2024 +Senator Niezgodski added as coauthor,2024-01-18,[],IN,2024 +"Third reading: passed; Roll Call 69: yeas 49, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #1 (Ford J.D.) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +Representative Smaltz added as coauthor,2024-01-29,[],IN,2024 +Referred to the House,2024-02-21,['referral'],IN,2024 +"Amendment #1 (Leising) prevailed; Roll Call 92: yeas 48, nays 0",2024-02-05,['amendment-passage'],IN,2024 +Pursuant to Senate Rule 68(b); reassigned to Committee on Rules and Legislative Procedure,2024-01-29,['referral-committee'],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +"Senators Doriot, Byrne, Buck, Leising, Koch, Young M added as coauthors",2024-01-11,[],IN,2024 +Referred to the House,2024-01-19,['referral'],IN,2024 +Referred to the Senate,2024-02-28,['referral'],IN,2024 +First reading: adopted,2024-01-31,"['passage', 'reading-1']",IN,2024 +Representative Jordan added as cosponsor,2024-01-25,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-18,['reading-2'],IN,2024 +Representative Teshka J added as author,2024-01-25,[],IN,2024 +Second reading: ordered engrossed,2024-01-31,['reading-2'],IN,2024 +Representative Garcia Wilburn V added as coauthor,2024-01-25,[],IN,2024 +Amendment #5 (Leising) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +Representative Goss-Reaves added as coauthor,2024-01-29,[],IN,2024 +Second reading: ordered engrossed,2024-01-18,['reading-2'],IN,2024 +First reading: adopted voice vote,2024-03-07,"['passage', 'reading-1']",IN,2024 +Senator Gaskill added as coauthor,2024-01-22,[],IN,2024 +"Third reading: passed; Roll Call 8: yeas 45, nays 0",2024-01-18,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Representatives Judy, Lucas, Pack R added as coauthors",2024-01-29,[],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-01-23,[],IN,2024 +Second reading: ordered engrossed,2024-01-11,['reading-2'],IN,2024 +First reading: adopted,2024-02-05,"['passage', 'reading-1']",IN,2024 +Referred to the House,2024-02-20,['referral'],IN,2024 +First reading: adopted voice vote,2024-01-25,"['passage', 'reading-1']",IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-01-11,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +First reading: adopted voice vote,2024-01-25,"['passage', 'reading-1']",IN,2024 +Representative DeVon added as coauthor,2024-01-16,[],IN,2024 +Representative Davis M added as coauthor,2024-01-29,[],IN,2024 +Coauthored by Representative GiaQuinta,2024-01-08,[],IN,2024 +Coauthored by Representative GiaQuinta,2024-01-08,[],IN,2024 +"Amendment #1 (Hamilton) failed; Roll Call 48: yeas 30, nays 67",2024-01-25,"['amendment-failure', 'failure']",IN,2024 +Amendment #4 (Pol) prevailed; voice vote,2024-01-30,['amendment-passage'],IN,2024 +Amendment #4 (Gaskill) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +"Senators Donato, Crane, Rogers added as coauthors",2024-02-01,[],IN,2024 +"Representatives Abbott D, Baird, Prescott added as coauthors",2024-01-22,[],IN,2024 +Amendment #1 (Koch) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-31,['reading-2'],IN,2024 +Amendment #3 (Teshka) prevailed; voice vote,2024-01-22,['amendment-passage'],IN,2024 +Senator Gaskill added as coauthor,2024-02-01,[],IN,2024 +Second reading: ordered engrossed,2024-01-18,['reading-2'],IN,2024 +First reading: adopted voice vote,2024-01-29,"['passage', 'reading-1']",IN,2024 +Representative King J added as coauthor,2024-01-16,[],IN,2024 +Referred to the House,2024-01-26,['referral'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-01,['reading-2'],IN,2024 +Senator Busch added as third author,2024-01-10,[],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Senators Brown L and Rogers added as coauthors,2024-01-16,[],IN,2024 +First reading: adopted voice vote,2024-02-05,"['passage', 'reading-1']",IN,2024 +Senators Niezgodski and Qaddoura added as coauthors,2024-02-01,[],IN,2024 +"Amendment #1 (Bauer M) failed; Roll Call 16: yeas 28, nays 66",2024-01-22,"['amendment-failure', 'failure']",IN,2024 +First reading: adopted,2024-01-31,"['passage', 'reading-1']",IN,2024 +First reading: adopted,2024-01-10,"['passage', 'reading-1']",IN,2024 +Senate sponsor: Senator Baldwin,2024-01-10,[],IN,2024 +House sponsor: Representative Barrett,2024-03-04,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-30,['reading-2'],IN,2024 +Cosponsor: Representative Hamilton,2024-03-04,[],IN,2024 +Amendment #1 (Miller D) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +Representative Pryor added as coauthor,2024-01-18,[],IN,2024 +Amendment #2 (Torr) prevailed; voice vote,2024-01-18,['amendment-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Representative Prescott added as coauthor,2024-01-16,[],IN,2024 +Senator Glick added as second author,2024-01-25,[],IN,2024 +First reading: adopted,2024-03-07,"['passage', 'reading-1']",IN,2024 +Second reading: adopted voice vote,2024-02-01,"['passage', 'reading-2']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Representatives McNamara, Criswell C, Pfaff added as coauthors",2024-01-23,[],IN,2024 +House sponsor: Representative Slager,2024-01-25,[],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Amendment #1 (Harris) failed; Roll Call 56: yeas 25, nays 64",2024-01-29,"['amendment-failure', 'failure']",IN,2024 +"Third reading: passed; Roll Call 114: yeas 43, nays 5",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-01-30,['reading-2'],IN,2024 +Senator Crane added as coauthor,2024-01-16,[],IN,2024 +Amendment #5 (Donato) prevailed; voice vote,2024-01-23,['amendment-passage'],IN,2024 +Senator Deery added as third author,2024-01-25,[],IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Representative Miller K added as coauthor,2024-01-22,[],IN,2024 +Second reading: ordered engrossed,2024-01-16,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +First reading: adopted,2024-02-19,"['passage', 'reading-1']",IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-01-16,[],IN,2024 +"Senators Alexander, Alting, Bassler, Becker, Bohacek, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Freeman, Gaskill, Glick, Goode G, Holdman, Hunley, Johnson T, Koch, Leising, Maxwell, Messmer, Mishler, Niemeyer, Niezgodski, Pol, Qaddoura, Raatz, Randolph, Rogers, Taylor G, Tomes, Vinzant, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2024-01-10,[],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Representatives Lauer and Shackleford added as coauthors,2024-03-08,[],IN,2024 +Representative Torr added as coauthor,2024-01-18,[],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-01-16,[],IN,2024 +Representative Morris added as coauthor,2024-01-23,[],IN,2024 +"Senators Busch, Yoder, Pol added as coauthors",2024-01-22,[],IN,2024 +Representatives Jeter C and Pierce M added as coauthors,2024-01-23,[],IN,2024 +Amendment #2 (Zimmerman) prevailed; voice vote,2024-01-18,['amendment-passage'],IN,2024 +"Representatives Olthoff, Goss-Reaves, Jackson added as coauthors",2024-01-23,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Senators Alting, Doriot, Charbonneau added as coauthors",2024-01-22,[],IN,2024 +First reading: adopted voice vote,2024-02-22,"['passage', 'reading-1']",IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Amendment #1 (Hunley) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +Representative Miller D removed as coauthor,2024-01-30,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +Senator Deery added as second author,2024-01-22,[],IN,2024 +Senator Donato added as coauthor,2024-01-09,[],IN,2024 +Senator Crider added as coauthor,2024-01-10,[],IN,2024 +Representative Goss-Reaves added as coauthor,2024-01-23,[],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Representative Garcia Wilburn V added as coauthor,2024-01-23,[],IN,2024 +Senator Niezgodski added as coauthor,2024-01-25,[],IN,2024 +Senator Doriot added as coauthor,2024-01-10,[],IN,2024 +"Committee report: do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-05,['reading-2'],IN,2024 +Senator Becker added as coauthor,2024-01-11,[],IN,2024 +Senator Freeman added as second author,2024-01-22,[],IN,2024 +Amendment #1 (Behning) prevailed; voice vote,2024-01-23,['amendment-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-25,['reading-2'],IN,2024 +Representative Davis M added as coauthor,2024-01-16,[],IN,2024 +Senators Carrasco and Bassler added as coauthors,2024-01-18,[],IN,2024 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2024-01-16,"['committee-passage', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 106: yeas 38, nays 10",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +"Amendment #2 (Yoder) failed; Roll Call 79: yeas 9, nays 40",2024-02-01,"['amendment-failure', 'failure']",IN,2024 +Representative Miller D added as coauthor,2024-01-29,[],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-22,['reading-2'],IN,2024 +Representative Goodrich added as coauthor,2024-01-29,[],IN,2024 +Referred to the House,2024-02-21,['referral'],IN,2024 +First reading: adopted,2024-03-04,"['passage', 'reading-1']",IN,2024 +Representative Hall D added as coauthor,2024-01-23,[],IN,2024 +Amendment #2 (Johnson T) prevailed; voice vote,2024-02-01,['amendment-passage'],IN,2024 +Referred to the Senate,2024-02-28,['referral'],IN,2024 +Referred to the Senate,2024-01-26,['referral'],IN,2024 +Referred to the Senate,2024-02-27,['referral'],IN,2024 +Senator Doriot removed as second author,2024-01-22,[],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-01-22,"['committee-passage', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +Referred to the House,2024-01-26,['referral'],IN,2024 +Senator Niemeyer added as second author,2024-01-25,[],IN,2024 +"Committee report: do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +Senator Walker G added as third author,2024-01-18,[],IN,2024 +Representative Teshka J added as author,2024-01-22,[],IN,2024 +Senator Garten added as second author,2024-01-09,[],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +Amendment #9 (McGuire) prevailed; voice vote,2024-01-31,['amendment-passage'],IN,2024 +Senator Randolph added as coauthor,2024-01-30,[],IN,2024 +Senate sponsors: Senators Bray and Taylor G,2023-11-21,[],IN,2024 +"Third reading: passed; Roll Call 14: yeas 46, nays 0",2024-01-22,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: adopted,2024-01-25,"['passage', 'reading-1']",IN,2024 +"Senators Bohacek, Tomes, Dernulc added as coauthors",2024-01-25,[],IN,2024 +Senator Deery added as second author,2024-01-22,[],IN,2024 +Representative McGuire J added as coauthor,2024-01-22,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-01,['reading-2'],IN,2024 +"Senators Buchanan, Donato, Byrne, Raatz, Rogers, Doriot, Messmer added as coauthors",2024-01-16,[],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Senators Becker and Niemeyer added as coauthors,2024-01-25,[],IN,2024 +Amendment #1 (Andrade) motion withdrawn voice vote,2024-01-25,"['amendment-withdrawal', 'withdrawal']",IN,2024 +Senator Freeman added as second author,2024-01-29,[],IN,2024 +Amendment #2 (Buck) prevailed; voice vote,2024-02-01,['amendment-passage'],IN,2024 +Representatives Bartels and Judy added as coauthors,2024-01-29,[],IN,2024 +Pursuant to Senate Rule 68(b); reassigned to Committee on Rules and Legislative Procedure,2024-01-18,['referral-committee'],IN,2024 +Representative King J added as coauthor,2024-01-23,[],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-18,['reading-2'],IN,2024 +First reading: adopted voice vote,2024-01-11,"['passage', 'reading-1']",IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +Pursuant to Senate Rule 68(b); reassigned to Committee on Pensions and Labor,2024-01-16,['referral-committee'],IN,2024 +Representative Fleming added as coauthor,2024-01-30,[],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +First reading: adopted,2024-03-07,"['passage', 'reading-1']",IN,2024 +"Senators Donato, Bohacek, Brown L added as coauthors",2024-01-18,[],IN,2024 +Amendment #2 (Boy) failed; voice vote,2024-01-29,"['amendment-failure', 'failure']",IN,2024 +Representatives Teshka J and Goodrich added as coauthors,2024-01-29,[],IN,2024 +Senator Niemeyer added as coauthor,2024-01-09,[],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-01-23,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +Representative Lauer added as coauthor,2024-01-22,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +"Second reading: adopted Roll Call 10: yeas 94, nays 0",2024-01-16,"['passage', 'reading-2']",IN,2024 +"Amendment #4 (Culp) prevailed; Roll Call 45: yeas 67, nays 27",2024-01-25,['amendment-passage'],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-01-25,[],IN,2024 +Amendment #2 (Raatz) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +Senator Walker G added as coauthor,2024-02-01,[],IN,2024 +Second reading: ordered engrossed,2024-01-31,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-02-05,['reading-2'],IN,2024 +Senator Zay added as second author,2024-01-22,[],IN,2024 +Senator Randolph added as coauthor,2024-02-01,[],IN,2024 +First reading: adopted voice vote,2024-02-20,"['passage', 'reading-1']",IN,2024 +"Third reading: passed; Roll Call 13: yeas 46, nays 0",2024-01-22,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-01-11,[],IN,2024 +Senator Vinzant added as author,2024-01-11,[],IN,2024 +Representative King J added as coauthor,2024-01-18,[],IN,2024 +Senator Brown L added as second author,2024-02-05,[],IN,2024 +"Senators Byrne, Doriot, Buck, Alexander, Messmer added as coauthors",2024-01-11,[],IN,2024 +Senator Randolph added as coauthor,2024-01-23,[],IN,2024 +Referred to the Senate,2024-02-27,['referral'],IN,2024 +Senator Leising added as third author,2024-01-18,[],IN,2024 +House sponsor: Representative Porter,2024-01-25,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-11,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Representative Karickhoff added as coauthor,2024-02-20,[],IN,2024 +Amendment #1 (McGuire) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +Senator Dernulc added as third author,2024-01-11,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-29,['committee-passage'],IN,2024 +House sponsor: Representative Bartels,2024-02-01,[],IN,2024 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2024-01-11,"['committee-passage', 'referral-committee']",IN,2024 +Senator Bohacek added as coauthor,2024-01-30,[],IN,2024 +Amendment #1 (Teshka) prevailed; voice vote,2024-01-25,['amendment-passage'],IN,2024 +Senate sponsors: Senators Leising and Glick,2024-02-01,[],IN,2024 +Second reading: ordered engrossed,2024-01-31,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +"Representatives Manning, Ledbetter, Fleming added as coauthors",2024-01-29,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Senate sponsors: Senators Johnson T and Glick,2024-01-16,[],IN,2024 +"Representatives Zimmerman, Pierce M, Hall D added as coauthors",2024-01-23,[],IN,2024 +Representatives Zimmerman and Hamilton added as coauthors,2024-01-22,[],IN,2024 +Senator Becker added as coauthor,2024-01-10,[],IN,2024 +Senator Hunley added as third author,2024-01-18,[],IN,2024 +Amendment #1 (Pryor) failed; voice vote,2024-01-16,"['amendment-failure', 'failure']",IN,2024 +Senator Dernulc added as second author,2024-02-05,[],IN,2024 +Senator Walker K added as coauthor,2024-01-09,[],IN,2024 +Senate sponsor: Senator Freeman,2024-01-16,[],IN,2024 +Representative Bartels added as coauthor,2024-01-29,[],IN,2024 +"Amendment #1 (DeLaney) failed; Roll Call 114: yeas 30, nays 66",2024-02-01,"['amendment-failure', 'failure']",IN,2024 +Representatives Mayfield and Summers added as coauthors,2024-01-29,[],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-01-18,[],IN,2024 +Senator Randolph added as coauthor,2024-01-22,[],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-01-11,"['committee-passage', 'referral-committee']",IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-01-31,['reading-2'],IN,2024 +Senate sponsors: Senators Alexander and Raatz,2024-01-16,[],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +Senator Koch added as second author,2024-01-18,[],IN,2024 +Senator Koch added as author,2024-01-25,[],IN,2024 +Representative Wesco added as coauthor,2024-01-16,[],IN,2024 +Senator Rogers added as third author,2024-01-22,[],IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Representative Moseley added as coauthor,2024-01-29,[],IN,2024 +Senator Niezgodski added as coauthor,2024-01-29,[],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-01-31,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-16,['reading-2'],IN,2024 +Senator Leising added as coauthor,2024-01-10,[],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +Senator Alexander added as coauthor,2024-01-29,[],IN,2024 +"Representatives May, Borders, Johnson added as coauthors",2024-01-29,[],IN,2024 +Senator Buck added as coauthor,2024-02-13,[],IN,2024 +Second reading: ordered engrossed,2024-01-18,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 74: yeas 91, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 47: yeas 49, nays 0",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Freeman added as second author,2024-01-18,[],IN,2024 +Senator Doriot added as third author,2024-01-29,[],IN,2024 +First reading: adopted voice vote,2024-02-29,"['passage', 'reading-1']",IN,2024 +Senator Baldwin added as second author,2024-02-01,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Representative Zimmerman added as coauthor,2024-01-22,[],IN,2024 +Senator Johnson T added as third author,2024-01-22,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-23,['reading-2'],IN,2024 +Senator Walker G added as coauthor,2024-01-25,[],IN,2024 +Senator Randolph added as coauthor,2024-01-25,[],IN,2024 +Senator Qaddoura added as coauthor,2024-01-25,[],IN,2024 +Senator Bohacek added as third author,2024-01-25,[],IN,2024 +Second reading: ordered engrossed,2024-01-18,['reading-2'],IN,2024 +Representative Barrett added as coauthor,2024-01-30,[],IN,2024 +Representatives Miller K and added as coauthors,2024-01-22,[],IN,2024 +Representative Barrett added as coauthor,2024-01-29,[],IN,2024 +Referred to the Senate,2024-02-20,['referral'],IN,2024 +First reading: adopted voice vote,2024-01-25,"['passage', 'reading-1']",IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2024-01-22,"['committee-passage', 'referral-committee']",IN,2024 +Representative Gore added as author,2024-01-29,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-01,['reading-2'],IN,2024 +Referred to the Senate,2024-02-27,['referral'],IN,2024 +Senator Doriot removed as coauthor,2024-01-11,[],IN,2024 +Referred to the House,2024-01-12,['referral'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +First reading: adopted,2024-02-19,"['passage', 'reading-1']",IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +Amendment #1 (Goss-Reaves) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Senator Messmer added as coauthor,2024-01-16,[],IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Representative Bauer M added as coauthor,2024-01-30,[],IN,2024 +First reading: adopted,2024-02-19,"['passage', 'reading-1']",IN,2024 +Senator Becker added as third author,2024-01-25,[],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-01-22,[],IN,2024 +"Amendment #2 (Smith V) failed; Roll Call 115: yeas 31, nays 63",2024-02-01,"['amendment-failure', 'failure']",IN,2024 +Second reading: ordered engrossed,2024-01-31,['reading-2'],IN,2024 +First reading: adopted,2024-03-07,"['passage', 'reading-1']",IN,2024 +Second reading: ordered engrossed,2024-01-18,['reading-2'],IN,2024 +Representative Davis M added as coauthor,2024-01-18,[],IN,2024 +Second reading: ordered engrossed,2024-01-16,['reading-2'],IN,2024 +Returned to the Senate,2024-03-07,['receipt'],IN,2024 +Returned to the Senate,2024-03-07,['receipt'],IN,2024 +"Senators Brown L, Becker, Bohacek, Busch, Donato, Johnson T, Leising added as coauthors",2024-01-11,[],IN,2024 +Amendment #2 (Garten) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +Senate sponsors: Senators Baldwin and Bohacek,2024-01-29,[],IN,2024 +Senator Ford J.D. added as coauthor,2024-01-22,[],IN,2024 +Returned to the Senate,2024-02-20,['receipt'],IN,2024 +Returned to the Senate,2024-02-20,['receipt'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 110: yeas 47, nays 1",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senate sponsor: Senator Holdman,2024-01-30,[],IN,2024 +"Senators Freeman, Pol, Taylor G added as coauthors",2024-01-18,[],IN,2024 +"Third reading: passed; Roll Call 46: yeas 49, nays 0",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +House sponsor: Representative Engleman,2024-01-22,[],IN,2024 +Amendment #1 (Karickhoff) prevailed; voice vote,2024-02-01,['amendment-passage'],IN,2024 +Representative Gore removed as coauthor,2024-01-29,[],IN,2024 +"Senate sponsors: Senators Crider, Dernulc, Alexander",2024-02-01,[],IN,2024 +Amendment #1 (Cash) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +Returned to the House,2024-03-01,['receipt'],IN,2024 +First reading: adopted voice vote,2024-02-29,"['passage', 'reading-1']",IN,2024 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Freeman, Garten, Gaskill, Glick, Goode G, Holdman, Hunley, Johnson T, Koch, Leising, Maxwell, Messmer, Mishler, Niemeyer, Pol, Qaddoura, Raatz, Randolph, Rogers, Taylor G, Tomes, Vinzant, Walker G, Walker K, Yoder, Young M, Zay added as cosponsors",2024-01-11,[],IN,2024 +Representative Jordan added as coauthor,2024-01-29,[],IN,2024 +Senator Dernulc added as third author,2024-02-05,[],IN,2024 +"Senate sponsors: Senators Johnson T, Walker G, Walker K",2024-01-29,[],IN,2024 +Second reading: adopted voice vote,2024-02-01,"['passage', 'reading-2']",IN,2024 +Cosponsor: Representative Pressel,2024-02-01,[],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Amendment #1 (Snow) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-31,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Second reading: adopted Roll Call 8: yeas 94, nays 0",2024-01-16,"['passage', 'reading-2']",IN,2024 +"Second reading: adopted Roll Call 11: yeas 94, nays 0",2024-01-16,"['passage', 'reading-2']",IN,2024 +Senator Buck added as coauthor,2024-01-11,[],IN,2024 +Returned to the House,2024-02-21,['receipt'],IN,2024 +Senator Yoder added as coauthor,2024-01-25,[],IN,2024 +Senator Crane added as coauthor,2024-01-29,[],IN,2024 +Senators Gaskill and Rogers added as coauthors,2024-01-25,[],IN,2024 +First reading: adopted,2024-01-25,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-02-22,"['passage', 'reading-1']",IN,2024 +"Third reading: passed; Roll Call 22: yeas 47, nays 1",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +House sponsor: Representative Engleman,2024-01-29,[],IN,2024 +Senator Bohacek added as coauthor,2024-01-30,[],IN,2024 +"Second reading: adopted Roll Call 9: yeas 93, nays 0",2024-01-16,"['passage', 'reading-2']",IN,2024 +"Third reading: passed; Roll Call 22: yeas 93, nays 0",2024-01-22,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 51: yeas 49, nays 0",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Messmer added as coauthor,2024-01-29,[],IN,2024 +Senate sponsor: Senator Koch,2024-01-22,[],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +"Amendment #3 (Errington) failed; Roll Call 55: yeas 27, nays 66",2024-01-29,"['amendment-failure', 'failure']",IN,2024 +Senator Alexander added as coauthor,2024-01-30,[],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +Senator Ford J.D. added as coauthor,2024-01-25,[],IN,2024 +Senator Rogers added as second author,2024-01-29,[],IN,2024 +Senate sponsors: Senators Byrne and Garten,2024-02-01,[],IN,2024 +Senator Pol added as coauthor,2024-01-25,[],IN,2024 +Amendment #2 (Culp) prevailed; voice vote,2024-01-31,['amendment-passage'],IN,2024 +Senate sponsor: Senator Koch,2024-01-23,[],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +Amendment #1 (Holdman) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +Senator Tomes added as coauthor,2024-02-13,[],IN,2024 +Senator Charbonneau added as coauthor,2024-01-29,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 101: yeas 48, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Cosponsor: Representative Harris,2024-01-25,[],IN,2024 +"Representatives Olthoff, Goss-Reaves, Porter added as coauthors",2024-01-22,[],IN,2024 +Senator Pol added as coauthor,2024-01-22,[],IN,2024 +Senate sponsor: Senator Freeman,2024-01-16,[],IN,2024 +"Third reading: passed; Roll Call 20: yeas 48, nays 0",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #3 (Bauer M) prevailed; voice vote,2024-01-25,['amendment-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Senator Randolph added as coauthor,2024-02-01,[],IN,2024 +Senator Randolph added as coauthor,2024-01-23,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Returned to the House,2024-01-25,['receipt'],IN,2024 +Rule 105.1 suspended,2024-01-23,[],IN,2024 +Senator Johnson T added as coauthor,2024-01-16,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +Representative O'Brien added as coauthor,2024-02-20,[],IN,2024 +Representative Sweet L added as coauthor,2024-01-29,[],IN,2024 +"Third reading: passed; Roll Call 66: yeas 97, nays 0",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #2 (Smith V) failed; voice vote,2024-01-29,"['amendment-failure', 'failure']",IN,2024 +"Senators Bohacek, Deery, Dernulc, Doriot added as coauthors",2024-01-18,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Senate sponsor: Senator Rogers,2024-01-23,[],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Senate sponsor: Senator Koch,2024-01-30,[],IN,2024 +"Amendment #1 (Thompson) prevailed; Division of the House: yeas 61, nays 37",2024-01-29,['amendment-passage'],IN,2024 +Senator Glick added as second author,2024-01-18,[],IN,2024 +"Third reading: passed; Roll Call 67: yeas 48, nays 1",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senate sponsors: Senators Brown L and Messmer,2024-02-01,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 132: yeas 48, nays 0",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-01-31,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-02-05,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +First reading: adopted voice vote,2024-02-29,"['passage', 'reading-1']",IN,2024 +"Committee report: without recommendation, adopted",2024-01-18,[],IN,2024 +Senate sponsor: Senator Tomes,2024-01-31,[],IN,2024 +Senators Goode G and Rogers added as coauthors,2024-01-22,[],IN,2024 +Senators Crider and Johnson T added as coauthors,2024-01-29,[],IN,2024 +Senator Alting added as coauthor,2024-01-29,[],IN,2024 +Senator Ford J.D. added as coauthor,2024-01-18,[],IN,2024 +"Third reading: passed; Roll Call 137: yeas 48, nays 0",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Ford J.D. added as coauthor,2024-01-11,[],IN,2024 +Representative Teshka J added as coauthor,2024-01-29,[],IN,2024 +Representative Fleming added as coauthor,2024-01-29,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +Senate sponsor: Senator Brown L,2024-01-30,[],IN,2024 +"Third reading: passed; Roll Call 42: yeas 64, nays 30",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Amendment #2 (Jackson) motion withdrawn voice vote,2024-01-29,"['amendment-withdrawal', 'withdrawal']",IN,2024 +Senator Goode G added as coauthor,2024-01-10,[],IN,2024 +"Amendment #1 (Garcia Wilburn) failed; Roll Call 46: yeas 26, nays 68",2024-01-25,"['amendment-failure', 'failure']",IN,2024 +"Third reading: passed; Roll Call 31: yeas 69, nays 27",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Bassler added as coauthor,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 63: yeas 93, nays 4",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 40: yeas 94, nays 0",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Senate sponsors: Senators Koch, Freeman, Baldwin",2024-02-05,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-25,['reading-2'],IN,2024 +Senator Bohacek added as coauthor,2024-01-22,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-05,['reading-2'],IN,2024 +Representatives Heine and Klinker added as coauthors,2024-01-29,[],IN,2024 +Representative Clere added as coauthor,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 23: yeas 39, nays 9",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-02-01,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 58: yeas 47, nays 2",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senate sponsor: Senator Carrasco,2024-01-18,[],IN,2024 +Senator Baldwin added as coauthor,2024-01-18,[],IN,2024 +Amendment #1 (Olthoff) prevailed; voice vote,2024-01-23,['amendment-passage'],IN,2024 +Senate sponsor: Senator Glick,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 121: yeas 93, nays 0",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senate sponsor: Senator Baldwin,2024-02-01,[],IN,2024 +Amendment #8 (Behning) prevailed; voice vote,2024-01-30,['amendment-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-23,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +Senator Baldwin added as third author,2024-01-09,[],IN,2024 +Senator Randolph added as coauthor,2024-03-04,[],IN,2024 +Senator Crider added as second author,2024-01-18,[],IN,2024 +First reading: adopted,2024-01-25,"['passage', 'reading-1']",IN,2024 +House sponsor: Representative Engleman,2024-01-22,[],IN,2024 +Senators Alting and Doriot added as coauthors,2024-01-18,[],IN,2024 +Senator Alting added as third author,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 25: yeas 47, nays 0",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Dernulc added as coauthor,2024-01-29,[],IN,2024 +First reading: referred to the Committee on Roads and Transportation,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 41: yeas 86, nays 8",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senate sponsor: Senator Johnson T,2024-01-30,[],IN,2024 +Referred to the House,2024-01-10,['referral'],IN,2024 +Referred to the Senate,2024-02-20,['referral'],IN,2024 +"Senators Crane, Buchanan, Tomes added as coauthors",2024-01-25,[],IN,2024 +"Amendment #1 (Thompson) prevailed; Roll Call 53: yeas 96, nays 0",2024-01-29,['amendment-passage'],IN,2024 +"Third reading: passed; Roll Call 45: yeas 49, nays 0",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 84: yeas 45, nays 4",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: adopted voice vote,2024-01-11,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-01-11,"['passage', 'reading-1']",IN,2024 +"Representatives Morrison, Criswell C, Haggard C added as coauthors",2024-01-23,[],IN,2024 +Senators Baldwin and Messmer added as coauthors,2024-01-16,[],IN,2024 +Senator Messmer added as coauthor,2024-01-10,[],IN,2024 +Amendment #1 (Errington) ruled out of order,2024-01-22,[],IN,2024 +"Amendment #1 (Ford J.D.) failed; Roll Call 38: yeas 9, nays 39",2024-01-29,"['amendment-failure', 'failure']",IN,2024 +First reading: adopted,2024-01-08,"['passage', 'reading-1']",IN,2024 +First reading: adopted,2024-01-08,"['passage', 'reading-1']",IN,2024 +Returned to the House,2024-01-25,['receipt'],IN,2024 +Returned to the House,2024-01-25,['receipt'],IN,2024 +Senate sponsor: Senator Baldwin,2024-01-29,[],IN,2024 +Returned to the House,2024-03-07,['receipt'],IN,2024 +Representative Teshka J removed as coauthor,2024-01-25,[],IN,2024 +First reading: referred to the Committee on Public Policy,2024-01-30,"['reading-1', 'referral-committee']",IN,2024 +First reading: adopted voice vote,2024-02-29,"['passage', 'reading-1']",IN,2024 +"Third reading: passed; Roll Call 136: yeas 97, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-02-05,['reading-2'],IN,2024 +House sponsor: Representative Lindauer,2024-01-30,[],IN,2024 +Returned to the House,2024-02-23,['receipt'],IN,2024 +Returned to the House,2023-11-21,['receipt'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-31,['reading-2'],IN,2024 +Representative Teshka J removed as coauthor,2024-01-22,[],IN,2024 +First reading: adopted,2024-01-31,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-02-29,"['passage', 'reading-1']",IN,2024 +Senate sponsor: Senator Koch,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 38: yeas 95, nays 0",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Senate sponsors: Senators Doriot and Niezgodski,2024-01-29,[],IN,2024 +"Committee report: do pass, adopted",2024-01-22,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-16,['committee-passage'],IN,2024 +House sponsor: Representative Pressel,2024-01-18,[],IN,2024 +Amendment #14 (Deery) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +Returned to the House,2024-01-31,['receipt'],IN,2024 +First reading: adopted,2024-01-30,"['passage', 'reading-1']",IN,2024 +Senator Randolph added as coauthor,2024-02-01,[],IN,2024 +Senator Carrasco added as third author,2024-01-18,[],IN,2024 +"Committee report: do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +"Senators Alting, Becker, Niezgodski added as coauthors",2024-01-29,[],IN,2024 +Amendment #2 (Mishler) prevailed; voice vote,2024-01-25,['amendment-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Senator Yoder added as coauthor,2024-01-18,[],IN,2024 +Representative Barrett added as coauthor,2024-01-16,[],IN,2024 +Senator Randolph added as coauthor,2024-02-01,[],IN,2024 +Senator Buchanan added as coauthor,2024-01-22,[],IN,2024 +Amendment #1 (Errington) ruled out of order,2024-01-22,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +Senator Becker added as coauthor,2024-01-22,[],IN,2024 +"Senators Crane, Busch, Johnson T, Buck, Gaskill added as coauthors",2024-01-22,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-01,['reading-2'],IN,2024 +House sponsor: Representative May,2024-02-05,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +Representative Prescott added as coauthor,2024-01-30,[],IN,2024 +Amendment #5 (Pressel) prevailed; voice vote,2024-01-30,['amendment-passage'],IN,2024 +Representative Pressel added as coauthor,2024-01-30,[],IN,2024 +Withdrawn,2024-01-30,['withdrawal'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-23,['reading-2'],IN,2024 +Cosponsor: Representative Pressel,2024-01-25,[],IN,2024 +"Amendment #1 (Porter) failed; Roll Call 54: yeas 31, nays 66",2024-01-29,"['amendment-failure', 'failure']",IN,2024 +"Second reading: amended, ordered engrossed",2024-01-30,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +First reading: adopted,2024-02-26,"['passage', 'reading-1']",IN,2024 +"Senate sponsors: Senators Walker K, Alting, Messmer",2024-01-16,[],IN,2024 +Senate sponsor: Senator Freeman,2024-01-22,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-05,['reading-2'],IN,2024 +First reading: adopted,2024-02-26,"['passage', 'reading-1']",IN,2024 +Senator Zay added as coauthor,2024-01-16,[],IN,2024 +"Representatives Pressel, Speedy, Johnson added as coauthors",2024-02-01,[],IN,2024 +"Third reading: passed; Roll Call 24: yeas 47, nays 1",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the Senate,2024-01-26,['receipt'],IN,2024 +"Third reading: passed; Roll Call 86: yeas 49, nays 0",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Qaddoura added as coauthor,2024-01-18,[],IN,2024 +Senator Dernulc added as third author,2024-01-25,[],IN,2024 +"Senators Messmer, Donato, Koch, Tomes added as coauthors",2024-01-22,[],IN,2024 +First reading: adopted voice vote,2024-02-29,"['passage', 'reading-1']",IN,2024 +Returned to the Senate,2024-03-05,['receipt'],IN,2024 +First reading: adopted,2024-02-26,"['passage', 'reading-1']",IN,2024 +First reading: adopted voice vote,2024-01-29,"['passage', 'reading-1']",IN,2024 +Representative Pack R added as coauthor,2024-01-30,[],IN,2024 +Senator Freeman added as coauthor,2024-01-25,[],IN,2024 +Senator Randolph added as coauthor,2024-01-18,[],IN,2024 +"Committee report: without recommendation, adopted",2024-01-29,[],IN,2024 +Returned to the Senate,2024-01-31,['receipt'],IN,2024 +Representative Goodrich added as coauthor,2024-01-31,[],IN,2024 +Amendment #1 (Jackson) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +Returned to the Senate,2024-02-06,['receipt'],IN,2024 +First reading: adopted voice vote,2024-02-05,"['passage', 'reading-1']",IN,2024 +Amendment #3 (Pol) failed; voice vote,2024-02-05,"['amendment-failure', 'failure']",IN,2024 +"Senate sponsors: Senators Freeman, Koch, Brown L",2024-02-01,[],IN,2024 +Second reading: ordered engrossed,2024-02-05,['reading-2'],IN,2024 +"Senate sponsors: Senators Buchanan, Bray, Crider",2024-01-22,[],IN,2024 +Placed back on second reading,2024-01-29,[],IN,2024 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Freeman, Garten, Gaskill, Glick, Goode, Holdman, Hunley, Johnson T, Koch, Leising, Maxwell, Messmer, Mishler, Niemeyer, Pol, Qaddoura, Raatz, Randolph, Rogers, Taylor G, Tomes, Vinzant, Walker G, Walker K, Yoder, Young M, Zay added as cosponsors",2024-02-05,[],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Senator Bohacek added as coauthor,2024-03-04,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +Representatives Goss-Reaves and Barrett added as coauthors,2024-01-22,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-18,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 72: yeas 49, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the Senate,2024-03-07,['receipt'],IN,2024 +House sponsor: Representative Abbott,2024-02-01,[],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +House sponsor: Representative Lindauer,2024-02-05,[],IN,2024 +Senator Randolph added as coauthor,2024-01-30,[],IN,2024 +Senator Johnson T added as coauthor,2024-01-16,[],IN,2024 +Senator Byrne added as coauthor,2024-01-18,[],IN,2024 +Senator Crider added as second author,2024-01-29,[],IN,2024 +"Representatives Olthoff, Miller D, Baird, Patterson, Schaibley, Pfaff, Jackson, Gore, Andrade added as coauthors",2024-03-08,[],IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-18,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 32: yeas 96, nays 0",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Randolph added as coauthor,2024-01-25,[],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 131: yeas 98, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-01-31,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 61: yeas 49, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Ford J.D. added as coauthor,2024-01-22,[],IN,2024 +Representative Pack R added as coauthor,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 135: yeas 48, nays 0",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Messmer added as coauthor,2024-01-22,[],IN,2024 +Amendment #2 (Behning) prevailed; voice vote,2024-01-23,['amendment-passage'],IN,2024 +"Third reading: passed; Roll Call 52: yeas 38, nays 11",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 64: yeas 35, nays 14",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Representative VanNatter added as coauthor,2024-01-29,[],IN,2024 +Second reading: ordered engrossed,2024-01-31,['reading-2'],IN,2024 +Amendment #1 (Rogers) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +Senate sponsor: Senator Crider,2024-01-29,[],IN,2024 +Amendment #1 (Clere) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +Representative Davis M added as coauthor,2024-01-16,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-25,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Senator Randolph added as coauthor,2024-02-01,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Amendment #15 (Deery) prevailed; Division of the Senate: yeas 34, nays 8",2024-02-05,['amendment-passage'],IN,2024 +Returned to the Senate,2024-01-31,['receipt'],IN,2024 +Returned to the House,2024-01-29,['receipt'],IN,2024 +Senate sponsors: Senators Koch and Buck,2024-01-30,[],IN,2024 +Amendment #2 (Porter) failed; voice vote,2024-01-29,"['amendment-failure', 'failure']",IN,2024 +Representative Meltzer J added as coauthor,2024-01-18,[],IN,2024 +Senator Niezgodski added as coauthor,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 66: yeas 49, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +House sponsor: Representative Lehman,2024-01-23,[],IN,2024 +Senate sponsor: Senator Gaskill,2024-01-30,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-23,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +First reading: adopted voice vote,2024-02-22,"['passage', 'reading-1']",IN,2024 +Second reading: ordered engrossed,2024-02-05,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 64: yeas 97, nays 0",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +Referred to the House,2024-01-26,['referral'],IN,2024 +"Third reading: passed; Roll Call 141: yeas 93, nays 4",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Representative Goodrich added as coauthor,2024-01-29,[],IN,2024 +"Third reading: passed; Roll Call 71: yeas 49, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #11 (Rogers) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +House sponsor: Representative Jeter,2024-01-30,[],IN,2024 +House sponsor: Representative Aylesworth,2024-01-29,[],IN,2024 +Cosponsor: Representative Speedy,2024-02-01,[],IN,2024 +House sponsor: Representative Carbaugh,2024-01-30,[],IN,2024 +"Third reading: passed; Roll Call 32: yeas 46, nays 0",2024-01-25,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: adopted,2024-01-22,"['passage', 'reading-1']",IN,2024 +Senate sponsors: Senators Alexander and Goode,2024-02-01,[],IN,2024 +"Senate sponsors: Senators Johnson T, Freeman, Carrasco",2024-01-30,[],IN,2024 +"Third reading: passed; Roll Call 101: yeas 94, nays 1",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 41: yeas 49, nays 0",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 77: yeas 90, nays 4",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Representative Jordan added as coauthor,2024-01-31,[],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +Senator Buchanan added as third author,2024-01-29,[],IN,2024 +"Third reading: passed; Roll Call 49: yeas 48, nays 0",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Representative Behning added as coauthor,2024-01-25,[],IN,2024 +Senator Qaddoura added as coauthor,2024-01-25,[],IN,2024 +Returned to the House,2024-01-08,['receipt'],IN,2024 +House sponsor: Representative Zimmerman,2024-01-29,[],IN,2024 +Returned to the House,2024-01-08,['receipt'],IN,2024 +Senator Randolph added as coauthor,2024-01-23,[],IN,2024 +Amendment #2 (Ford J.D.) failed; voice vote,2024-01-29,"['amendment-failure', 'failure']",IN,2024 +"Senators Leising, Qaddoura, Alexander added as coauthors",2024-01-29,[],IN,2024 +"Third reading: passed; Roll Call 60: yeas 97, nays 0",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +House sponsor: Representative Lauer,2024-02-01,[],IN,2024 +Returned to the House,2024-02-06,['receipt'],IN,2024 +Representative Porter added as coauthor,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 127: yeas 47, nays 1",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Alexander added as coauthor,2024-01-22,[],IN,2024 +Senate sponsor: Senator Leising,2024-02-01,[],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-05,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Senate sponsor: Senator Busch,2024-01-30,[],IN,2024 +House sponsor: Representative Speedy,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 117: yeas 95, nays 0",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-01-22,['reading-2'],IN,2024 +"Senate sponsors: Senators Tomes, Crider, Hunley",2024-02-01,[],IN,2024 +Senator Walker G added as coauthor,2024-01-22,[],IN,2024 +Senator Doriot added as coauthor,2024-01-18,[],IN,2024 +Returned to the House,2024-03-01,['receipt'],IN,2024 +"Third reading: passed; Roll Call 132: yeas 96, nays 2",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Rule 105.1 suspended,2024-01-22,[],IN,2024 +Senator Baldwin added as second author,2024-02-05,[],IN,2024 +Returned to the House,2024-03-01,['receipt'],IN,2024 +Referred to the House,2024-01-23,['referral'],IN,2024 +Senators Maxwell and Alexander added as coauthors,2024-01-18,[],IN,2024 +Senate sponsor: Senator Messmer,2024-01-23,[],IN,2024 +"Senators Alexander, Byrne, Qaddoura added as coauthors",2024-01-22,[],IN,2024 +House sponsor: Representative Bartels,2024-02-06,[],IN,2024 +Returned to the Senate,2024-02-27,['receipt'],IN,2024 +Returned to the Senate,2024-01-31,['receipt'],IN,2024 +Senator Donato added as second author,2024-01-29,[],IN,2024 +Senator Johnson T added as coauthor,2024-01-22,[],IN,2024 +Representative Criswell C added as coauthor,2024-01-22,[],IN,2024 +Senate sponsor: Senator Koch,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 123: yeas 48, nays 0",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: adopted voice vote,2023-11-21,"['passage', 'reading-1']",IN,2024 +Senator Rogers added as coauthor,2024-01-25,[],IN,2024 +Senator Vinzant added as coauthor,2024-01-25,[],IN,2024 +Cosponsor: Senator Niezgodski,2024-01-22,[],IN,2024 +Senator Becker added as coauthor,2024-01-10,[],IN,2024 +"Third reading: passed; Roll Call 18: yeas 93, nays 0",2024-01-22,"['passage', 'reading-3', 'reading-3']",IN,2024 +Cosponsor: Representative Lehman,2024-01-30,[],IN,2024 +"Senators Johnson T, Crane, Rogers added as coauthors",2024-01-23,[],IN,2024 +"Committee report: amend do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +Senate sponsor: Senator Goode,2024-01-23,[],IN,2024 +Amendment #1 (Behning) prevailed; voice vote,2024-01-31,['amendment-passage'],IN,2024 +"Third reading: passed; Roll Call 105: yeas 48, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Cosponsor: Representative Jordan,2024-01-18,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-25,['reading-2'],IN,2024 +House sponsor: Representative Lehman,2024-01-30,[],IN,2024 +Returned to the Senate,2024-02-27,['receipt'],IN,2024 +"Third reading: passed; Roll Call 7: yeas 75, nays 19",2024-01-16,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Becker added as coauthor,2024-01-16,[],IN,2024 +Returned to the House,2024-02-06,['receipt'],IN,2024 +Senator Freeman added as coauthor,2024-01-23,[],IN,2024 +Second reading: ordered engrossed,2024-01-31,['reading-2'],IN,2024 +Senator Bohacek added as coauthor,2024-01-22,[],IN,2024 +Senator Randolph added as coauthor,2024-02-01,[],IN,2024 +Senator Rogers added as third author,2024-01-22,[],IN,2024 +Referred to the House,2024-03-05,['referral'],IN,2024 +First reading: adopted voice vote,2024-02-05,"['passage', 'reading-1']",IN,2024 +"Third reading: passed; Roll Call 43: yeas 64, nays 30",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the House,2024-01-11,['receipt'],IN,2024 +"Senators Crane, Byrne, Doriot added as coauthors",2024-03-04,[],IN,2024 +Returned to the Senate,2024-02-27,['receipt'],IN,2024 +Returned to the House,2024-01-11,['receipt'],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Representative Bartels added as coauthor,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 39: yeas 95, nays 0",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Senate sponsors: Senators Bohacek, Becker, Yoder",2024-02-05,[],IN,2024 +"Third reading: passed; Roll Call 113: yeas 48, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 85: yeas 49, nays 0",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the House,2024-03-01,['receipt'],IN,2024 +House sponsor: Representative Baird,2024-02-01,[],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +Amendment #1 (Meltzer) prevailed; voice vote,2024-01-25,['amendment-passage'],IN,2024 +Amendment #2 (Rogers) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Representative Miller D added as coauthor,2024-01-30,[],IN,2024 +Amendment #1 (Heine) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-30,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 107: yeas 48, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 58: yeas 86, nays 11",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Randolph added as coauthor,2024-02-01,[],IN,2024 +Senator Carrasco added as second author,2024-02-05,[],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Returned to the Senate,2024-01-26,['receipt'],IN,2024 +Senators Zay and Busch added as coauthors,2024-01-18,[],IN,2024 +Senate sponsor: Senator Leising,2024-01-22,[],IN,2024 +Senate sponsors: Senators Donato and Yoder,2024-02-05,[],IN,2024 +"Senators Young M, Glick, Leising added as coauthors",2024-01-22,[],IN,2024 +Cosponsors: Representatives Bartels and McNamara,2024-02-05,[],IN,2024 +Second reading: ordered engrossed,2024-01-30,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +Representative Clere added as coauthor,2024-01-23,[],IN,2024 +Representative Carbaugh added as coauthor,2024-03-08,[],IN,2024 +"Third reading: passed; Roll Call 80: yeas 49, nays 0",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the House,2024-03-01,['receipt'],IN,2024 +Senator Crane removed as coauthor,2024-02-05,[],IN,2024 +Amendment #3 (DeLaney) prevailed; voice vote,2024-01-30,['amendment-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-01,['reading-2'],IN,2024 +Amendment #2 (Pol) prevailed; voice vote,2024-02-01,['amendment-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-05,['reading-2'],IN,2024 +Representatives Lauer and Klinker added as coauthors,2024-01-23,[],IN,2024 +"Senators Donato, Koch, Byrne, Vinzant added as coauthors",2024-01-30,[],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Senator Ford J.D. added as coauthor,2024-02-05,[],IN,2024 +House sponsor: Representative Prescott,2024-01-23,[],IN,2024 +Senator Deery added as coauthor,2024-01-29,[],IN,2024 +House sponsor: Representative Soliday,2024-01-30,[],IN,2024 +"Third reading: passed; Roll Call 125: yeas 95, nays 0",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senate sponsor: Senator Raatz,2024-01-30,[],IN,2024 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Freeman, Garten, Gaskill, Glick, Goode, Holdman, Hunley, Johnson T, Koch, Leising, Maxwell, Messmer, Mishler, Niemeyer, Niezgodski, Pol, Randolph, Rogers, Taylor G, Vinzant, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2024-02-13,[],IN,2024 +Second reading: ordered engrossed,2024-02-05,['reading-2'],IN,2024 +House sponsor: Representative Gore,2024-01-30,[],IN,2024 +Senator Raatz added as coauthor,2024-01-22,[],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +House sponsor: Representative DeVon,2024-01-29,[],IN,2024 +Returned to the House,2024-01-11,['receipt'],IN,2024 +Senator Doriot added as coauthor,2024-01-30,[],IN,2024 +Senator Raatz added as second author,2024-01-23,[],IN,2024 +Amendment #1 (DeLaney) failed; voice vote,2024-01-29,"['amendment-failure', 'failure']",IN,2024 +"Third reading: passed; Roll Call 112: yeas 48, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +Senator Young M added as third author,2024-01-18,[],IN,2024 +"Third reading: passed; Roll Call 119: yeas 87, nays 9",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the Senate,2024-01-17,['referral'],IN,2024 +"Third reading: passed; Roll Call 69: yeas 78, nays 18",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Senators Garten, Glick, Holdman, Johnson T added as coauthors",2024-01-18,[],IN,2024 +"Senate sponsors: Senators Goode, Garten, Baldwin",2024-02-05,[],IN,2024 +"Committee report: do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +House sponsor: Representative Lehman,2024-01-23,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +House sponsor: Representative Barrett,2024-01-29,[],IN,2024 +"Third reading: passed; Roll Call 33: yeas 95, nays 0",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 21: yeas 94, nays 0",2024-01-22,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 98: yeas 92, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #2 (King) prevailed; voice vote,2024-02-01,['amendment-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-25,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 120: yeas 96, nays 0",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #3 (Smith V) ruled out of order,2024-01-29,[],IN,2024 +"Third reading: passed; Roll Call 33: yeas 46, nays 0",2024-01-25,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the Senate,2024-02-02,['referral'],IN,2024 +Senator Charbonneau added as third author,2024-01-22,[],IN,2024 +Returned to the House,2024-03-01,['receipt'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +Referred to the Senate,2024-01-17,['referral'],IN,2024 +"Third reading: passed; Roll Call 65: yeas 49, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Randolph added as coauthor,2024-01-29,[],IN,2024 +Senate sponsors: Senators Donato and Walker G,2024-01-23,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +House sponsor: Representative Manning,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 15: yeas 46, nays 0",2024-01-22,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Crane added as second author,2024-01-25,[],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 106: yeas 93, nays 1",2024-01-31,"['passage', 'reading-3', 'reading-3']",IN,2024 +Representative Snow added as coauthor,2024-02-20,[],IN,2024 +Senate sponsor: Senator Koch,2024-01-23,[],IN,2024 +Amendment #2 (Bohacek) prevailed; voice vote,2024-01-16,['amendment-passage'],IN,2024 +"Senate sponsors: Senators Niemeyer, Garten, Goode",2024-01-23,[],IN,2024 +"Senate sponsors: Senators Johnson T, Charbonneau, Donato",2024-02-05,[],IN,2024 +Senator Gaskill added as second author,2024-02-05,[],IN,2024 +"Third reading: passed; Roll Call 75: yeas 92, nays 1",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 126: yeas 95, nays 0",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the Senate,2024-01-17,['referral'],IN,2024 +"Third reading: passed; Roll Call 56: yeas 49, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 88: yeas 97, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senate sponsors: Senators Walker K and Alting,2024-01-29,[],IN,2024 +Referred to the Committee on Courts and Criminal Code pursuant to House Rule 127,2024-01-29,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +Referred to the Senate,2024-01-17,['referral'],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Amendment #1 (Gore) ruled out of order,2024-01-31,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-23,['reading-2'],IN,2024 +Amendment #1 (Porter) ruled out of order,2024-01-22,[],IN,2024 +Senate sponsor: Senator Koch,2024-01-29,[],IN,2024 +Senate sponsor: Senator Crider,2024-02-05,[],IN,2024 +Representative Negele added as coauthor,2024-01-29,[],IN,2024 +Amendment #2 (Messmer) prevailed; voice vote,2024-01-23,['amendment-passage'],IN,2024 +Senate sponsors: Senators Alting and Walker K,2024-01-29,[],IN,2024 +Senate sponsor: Senator Koch,2024-01-23,[],IN,2024 +Representatives Garcia Wilburn V and King J added as coauthors,2024-01-30,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +Senate sponsor: Senator Freeman,2024-01-18,[],IN,2024 +Second reading: ordered engrossed,2024-01-16,['reading-2'],IN,2024 +Pursuant to Senate Rule 35 (c); technical correction committee report adopted,2024-02-05,[],IN,2024 +"Third reading: passed; Roll Call 35: yeas 93, nays 0",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 97: yeas 92, nays 1",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +House sponsor: Representative Torr,2024-02-06,[],IN,2024 +"Senate sponsors: Senators Koch, Brown L, Donato",2024-02-01,[],IN,2024 +"Third reading: passed; Roll Call 34: yeas 94, nays 1",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Bassler added as coauthor,2024-01-23,[],IN,2024 +Senate sponsor: Senator Freeman,2024-01-30,[],IN,2024 +Referred to the House,2024-02-02,['referral'],IN,2024 +House sponsor: Representative Miller D,2024-02-01,[],IN,2024 +Returned to the Senate,2024-01-26,['receipt'],IN,2024 +Senate sponsor: Senator Charbonneau,2024-01-22,[],IN,2024 +"Senate sponsors: Senators Johnson T, Charbonneau, Brown L",2024-01-22,[],IN,2024 +Senator Bohacek added as third author,2024-01-18,[],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +House sponsor: Representative Thompson,2024-02-05,[],IN,2024 +"Amendment #2 (Garcia Wilburn) failed; Roll Call 47: yeas 28, nays 67",2024-01-25,"['amendment-failure', 'failure']",IN,2024 +"Senators Alexander, Alting, Baldwin, Bassler, Becker, Bohacek, Bray, Breaux, Brown L, Buchanan, Buck, Busch, Byrne, Carrasco, Charbonneau, Crane, Crider, Deery, Dernulc, Donato, Doriot, Ford J.D., Freeman, Garten, Gaskill, Glick, Goode, Holdman, Johnson T, Koch, Leising, Maxwell, Messmer, Mishler, Niemeyer, Niezgodski, Pol, Qaddoura, Raatz, Randolph, Rogers, Tomes, Vinzant, Walker G, Walker K, Yoder, Young M, Zay added as coauthors",2024-01-25,[],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +House sponsor: Representative Morrison,2024-02-06,[],IN,2024 +"Committee report: do pass, adopted",2024-01-22,['committee-passage'],IN,2024 +Amendment #2 (Porter) failed; voice vote,2024-01-29,"['amendment-failure', 'failure']",IN,2024 +Referred to the House,2024-01-23,['referral'],IN,2024 +Senator Koch added as coauthor,2024-01-18,[],IN,2024 +"Third reading: passed; Roll Call 115: yeas 48, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Representative Miller D added as coauthor,2024-01-29,[],IN,2024 +"Third reading: passed; Roll Call 134: yeas 83, nays 14",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senate sponsors: Senators Brown L and Charbonneau,2024-01-29,[],IN,2024 +"Third reading: passed; Roll Call 62: yeas 97, nays 0",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Ford J.D. added as coauthor,2024-01-11,[],IN,2024 +House sponsor: Representative Ledbetter,2024-02-05,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-05,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 68: yeas 82, nays 14",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Alting added as coauthor,2024-01-22,[],IN,2024 +"Third reading: passed; Roll Call 14: yeas 82, nays 0",2024-01-18,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +"Senators Alting, Doriot, Tomes, Bohacek, Becker added as cosponsors",2024-02-27,[],IN,2024 +First reading: referred to Committee on Agriculture,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 89: yeas 95, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Bassler added as coauthor,2024-01-30,[],IN,2024 +Amendment #1 (Brown L) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +"Senate sponsors: Senators Rogers, Bassler, Buchanan",2024-01-23,[],IN,2024 +House sponsor: Representative McNamara,2024-01-22,[],IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +Second reading: ordered engrossed,2024-01-22,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 118: yeas 94, nays 0",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 99: yeas 48, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 99: yeas 94, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-01-25,['reading-2'],IN,2024 +"Senators Crider, Donato, Busch, Koch, Walker K added as cosponsors",2024-02-27,[],IN,2024 +Cosponsor: Representative Rowray E,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 136: yeas 48, nays 0",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #1 (Rogers) prevailed; voice vote,2024-02-01,['amendment-passage'],IN,2024 +House sponsor: Representative Slager,2024-01-25,[],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-01-25,"['committee-passage', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +Senator Randolph added as coauthor,2024-01-29,[],IN,2024 +House sponsor: Representative Behning,2024-01-30,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-31,['reading-2'],IN,2024 +Representative Wesco added as coauthor,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 135: yeas 88, nays 9",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 96: yeas 92, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 103: yeas 95, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senate sponsors: Senators Baldwin and Pol,2024-01-30,[],IN,2024 +"Third reading: passed; Roll Call 62: yeas 49, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +Referred to the Senate,2024-02-02,['referral'],IN,2024 +"Cosponsors: Representatives Jordan, King, Speedy",2024-02-01,[],IN,2024 +Senator Glick added as coauthor,2024-01-18,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative Steuerwald,2024-02-05,[],IN,2024 +Amendment #1 (Wesco) prevailed; voice vote,2024-01-30,['amendment-passage'],IN,2024 +Referred to the Senate,2024-01-30,['referral'],IN,2024 +Senate sponsor: Senator Gaskill,2024-01-30,[],IN,2024 +Referred to the Senate,2024-01-30,['referral'],IN,2024 +"Third reading: passed; Roll Call 121: yeas 47, nays 1",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Representative Jeter C added as coauthor,2024-01-18,[],IN,2024 +"Third reading: passed; Roll Call 134: yeas 48, nays 0",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the House,2024-02-13,['referral'],IN,2024 +Senator Charbonneau added as third author,2024-01-16,[],IN,2024 +Cosponsor: Representative Ledbetter,2024-01-30,[],IN,2024 +Senator Leising added as second author,2024-01-30,[],IN,2024 +"Representatives Fleming, Jackson, GiaQuinta, Johnson, Moseley, Gore M, Errington, Hamilton, Andrade M, Pfaff, Pack R, Dvorak, Campbell, Garcia Wilburn V added as coauthors",2024-01-18,[],IN,2024 +House sponsor: Representative Miller D,2024-02-05,[],IN,2024 +Senator Randolph added as coauthor,2024-02-01,[],IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Referred to the Senate,2024-01-23,['referral'],IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +"Senators Donato, Koch, Doriot added as coauthors",2024-01-22,[],IN,2024 +Referred to the Senate,2024-02-02,['referral'],IN,2024 +Referred to the Senate,2024-02-01,['referral'],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Cosponsor: Representative Teshka J,2024-01-23,[],IN,2024 +Representative Goodrich added as coauthor,2024-01-30,[],IN,2024 +Senator Randolph added as coauthor,2024-01-30,[],IN,2024 +"Third reading: passed; Roll Call 30: yeas 96, nays 0",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +"Second reading: amended, ordered engrossed",2024-02-01,['reading-2'],IN,2024 +Senator Charbonneau added as coauthor,2024-02-01,[],IN,2024 +Cosponsor: Representative Bartels,2024-01-29,[],IN,2024 +"Third reading: passed; Roll Call 133: yeas 96, nays 1",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Senate sponsor: Senator Baldwin,2024-01-29,[],IN,2024 +Senators Doriot and Raatz added as coauthors,2024-01-18,[],IN,2024 +Senator Garten added as third author,2024-01-23,[],IN,2024 +"Senate sponsors: Senators Brown L, Messmer, Crider",2024-02-05,[],IN,2024 +Referred to the Senate,2024-02-02,['referral'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +Amendment #6 (Garten) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +Senate sponsor: Senator Johnson T,2024-02-05,[],IN,2024 +Senator Deery added as second author,2024-01-23,[],IN,2024 +"Cosponsors: Representatives Pressel, Lindauer, Genda",2024-02-05,[],IN,2024 +Senator Donato added as second author,2024-02-05,[],IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +Referred to the Senate,2024-01-30,['referral'],IN,2024 +Referred to the House,2024-01-26,['referral'],IN,2024 +Cosponsor: Representative Cherry,2024-02-05,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Senate,2024-01-23,['referral'],IN,2024 +"Third reading: passed; Roll Call 139: yeas 74, nays 22",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 23: yeas 96, nays 0",2024-01-22,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +"Third reading: passed; Roll Call 10: yeas 33, nays 12",2024-01-18,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 13: yeas 83, nays 0",2024-01-18,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #1 (Pol) failed; voice vote,2024-01-22,"['amendment-failure', 'failure']",IN,2024 +Amendment #1 (Young M) prevailed; voice vote,2024-01-23,['amendment-passage'],IN,2024 +Senator Glick added as coauthor,2024-01-25,[],IN,2024 +Senator Leising added as coauthor,2024-02-05,[],IN,2024 +"Third reading: passed; Roll Call 61: yeas 86, nays 11",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 57: yeas 75, nays 21",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-01-18,"['reading-1', 'referral-committee']",IN,2024 +"Amendment #5 (DeLaney) failed; Roll Call 72: yeas 28, nays 63",2024-01-30,"['amendment-failure', 'failure']",IN,2024 +"Second reading: amended, ordered engrossed",2024-01-16,['reading-2'],IN,2024 +Representative Pack R removed as coauthor,2024-02-26,[],IN,2024 +Referred to the Senate,2024-02-02,['referral'],IN,2024 +Senate sponsors: Senators Johnson T and Busch,2024-01-30,[],IN,2024 +Senator Randolph added as coauthor,2024-01-23,[],IN,2024 +Senator Freeman added as second author,2024-02-05,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-01,['reading-2'],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Referred to the Senate,2024-02-06,['referral'],IN,2024 +Senate sponsor: Senator Crider,2024-02-05,[],IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +House sponsor: Representative Behning,2024-01-30,[],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Senate sponsor: Senator Carrasco,2024-01-30,[],IN,2024 +"Third reading: passed; Roll Call 70: yeas 59, nays 36",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Senators Qaddoura, Hunley, Donato, Rogers, Ford J.D. added as coauthors",2024-02-01,[],IN,2024 +Senator Byrne added as coauthor,2024-01-22,[],IN,2024 +Referred to the Senate,2024-01-30,['referral'],IN,2024 +"Third reading: passed; Roll Call 103: yeas 48, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +"Third reading: passed; Roll Call 85: yeas 94, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 128: yeas 95, nays 0",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Senator Dernulc added as third author,2024-02-05,[],IN,2024 +"Third reading: passed; Roll Call 100: yeas 94, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the Senate,2024-02-06,['referral'],IN,2024 +Amendment #1 (Ford J.D.) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +"Third reading: passed; Roll Call 109: yeas 48, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 82: yeas 43, nays 6",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Randolph added as coauthor,2024-01-25,[],IN,2024 +Senator Messmer added as second author,2024-01-30,[],IN,2024 +House sponsor: Representative Teshka,2024-02-06,[],IN,2024 +Senator Young M added as coauthor,2024-01-23,[],IN,2024 +Amendment #2 (Byrne) prevailed; voice vote,2024-01-23,['amendment-passage'],IN,2024 +Amendment #1 (Young M) prevailed; voice vote,2024-01-22,['amendment-passage'],IN,2024 +Senator Randolph added as coauthor,2024-01-29,[],IN,2024 +"Third reading: passed; Roll Call 63: yeas 49, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 42: yeas 49, nays 0",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Byrne added as coauthor,2024-01-29,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +Amendment #1 (Niezgodski) failed; voice vote,2024-01-22,"['amendment-failure', 'failure']",IN,2024 +"Senators Vinzant, Tomes, Doriot, Randolph added as coauthors",2024-01-29,[],IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +Senate sponsors: Senators Brown L and Johnson T,2024-02-01,[],IN,2024 +Senator Rogers added as coauthor,2024-01-22,[],IN,2024 +Cosponsor: Senator Breaux,2024-02-05,[],IN,2024 +House sponsor: Representative Baird,2024-02-01,[],IN,2024 +"Third reading: passed; Roll Call 112: yeas 81, nays 14",2024-01-31,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-02-05,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 124: yeas 94, nays 0",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +House sponsor: Representative Manning,2024-02-05,[],IN,2024 +Senator Crider added as second author,2024-02-05,[],IN,2024 +"Third reading: passed; Roll Call 93: yeas 94, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 92: yeas 91, nays 4",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senate sponsor: Senator Freeman,2024-01-23,[],IN,2024 +House sponsor: Representative Clere,2024-01-30,[],IN,2024 +Senate sponsor: Senator Holdman,2024-01-30,[],IN,2024 +Senate sponsor: Senator Gaskill,2024-01-29,[],IN,2024 +Senators Koch and Vinzant added as coauthors,2024-01-29,[],IN,2024 +Senate sponsor: Senator Busch,2024-02-05,[],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +House sponsor: Representative Torr,2024-01-29,[],IN,2024 +Returned to the Senate,2024-01-23,['receipt'],IN,2024 +"Third reading: passed; Roll Call 87: yeas 85, nays 12",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +House sponsor: Representative Smaltz,2024-01-25,[],IN,2024 +Cosponsor: Representative Behning,2024-01-30,[],IN,2024 +Referred to the House,2024-02-02,['referral'],IN,2024 +"Cosponsors: Representatives Sweet, Baird, Zimmerman",2024-01-29,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +First reading: referred to the Committee on Roads and Transportation,2024-01-31,"['reading-1', 'referral-committee']",IN,2024 +Amendment #9 (Porter) ruled out of order,2024-01-22,[],IN,2024 +"Third reading: passed; Roll Call 138: yeas 48, nays 0",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the House,2024-02-23,['receipt'],IN,2024 +Amendment #1 (Garten) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +Referred to the House,2024-01-24,['referral'],IN,2024 +"Senators Deery, Dernulc, Donato, Doriot added as coauthors",2024-01-18,[],IN,2024 +Representatives Pressel and Campbell added as coauthors,2024-01-22,[],IN,2024 +House sponsor: Representative Pressel,2024-01-30,[],IN,2024 +Amendment #3 (Porter) ruled out of order,2024-01-29,[],IN,2024 +Amendment #11 (Goode) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +House sponsor: Representative Jeter,2024-02-01,[],IN,2024 +"Third reading: passed; Roll Call 29: yeas 96, nays 0",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +House sponsor: Representative Judy,2024-02-05,[],IN,2024 +"Third reading: passed; Roll Call 76: yeas 94, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 19: yeas 94, nays 0",2024-01-22,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the Senate,2024-01-30,['referral'],IN,2024 +"Third reading: passed; Roll Call 73: yeas 63, nays 32",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-01-25,['reading-2'],IN,2024 +"Amendment #2 (Summers) failed; Roll Call 52: yeas 30, nays 65",2024-01-29,"['amendment-failure', 'failure']",IN,2024 +Senate sponsor: Senator Doriot,2024-01-30,[],IN,2024 +Senate sponsors: Senators Deery and Carrasco,2024-01-30,[],IN,2024 +Amendment #6 (Hunley) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +"Third reading: passed; Roll Call 44: yeas 42, nays 7",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Cosponsors: Representatives Abbott, Barrett, Prescott",2024-02-01,[],IN,2024 +Senate sponsors: Senators Raatz and Qaddoura,2024-01-30,[],IN,2024 +"Senate sponsors: Senators Carrasco, Koch, Garten",2024-01-23,[],IN,2024 +Representative King J added as coauthor,2024-02-01,[],IN,2024 +Senator Donato added as coauthor,2024-03-04,[],IN,2024 +Senate sponsor: Senator Messmer,2024-01-23,[],IN,2024 +Senator Zay added as cosponsor,2024-02-05,[],IN,2024 +Senator Alting added as coauthor,2024-01-22,[],IN,2024 +Senator Bohacek added as coauthor,2024-01-16,[],IN,2024 +Cosponsor: Senator Busch,2024-01-16,[],IN,2024 +Senator Randolph added as coauthor,2024-01-18,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Senator Dernulc added as coauthor,2024-01-11,[],IN,2024 +"Reread second time: amended, ordered engrossed",2024-01-31,['reading-2'],IN,2024 +"Representatives Davis, Sweet, DeLaney, Criswell, Garcia Wilburn added as coauthors",2024-03-08,[],IN,2024 +Referred to the Senate,2024-01-23,['referral'],IN,2024 +"Third reading: passed; Roll Call 17: yeas 97, nays 0",2024-01-22,"['passage', 'reading-3', 'reading-3']",IN,2024 +House sponsor: Representative Baird,2024-02-06,[],IN,2024 +House sponsor: Representative May,2024-02-05,[],IN,2024 +Amendment #2 (Young M) prevailed; voice vote,2024-01-25,['amendment-passage'],IN,2024 +Cosponsor: Representative Aylesworth,2024-02-06,[],IN,2024 +Senator Doriot added as coauthor,2024-01-22,[],IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +Senator Goode G added as coauthor,2024-01-22,[],IN,2024 +First reading: adopted,2024-03-06,"['passage', 'reading-1']",IN,2024 +"Third reading: passed; Roll Call 129: yeas 48, nays 0",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senate sponsor: Senator Donato,2024-02-05,[],IN,2024 +"Third reading: passed; Roll Call 21: yeas 48, nays 0",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 116: yeas 95, nays 0",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +Placed back on second reading,2024-01-29,[],IN,2024 +Referred to the Senate,2024-02-02,['referral'],IN,2024 +"Representatives May, Steuerwald, Johnson, Zimmerman added as coauthors",2024-01-22,[],IN,2024 +Senator Baldwin added as coauthor,2024-01-23,[],IN,2024 +Senate sponsors: Senators Glick and Leising,2024-01-30,[],IN,2024 +Senator Carrasco added as second author,2024-02-05,[],IN,2024 +Senate sponsors: Senators Zay and Crider,2024-01-30,[],IN,2024 +"Cosponsors: Representatives Ledbetter, Patterson, Olthoff",2024-02-01,[],IN,2024 +Senate sponsors: Senators Charbonneau and Garten,2024-02-05,[],IN,2024 +Referred to the Senate,2024-01-30,['referral'],IN,2024 +"Amendment #3 (Hunley) failed; Roll Call 39: yeas 9, nays 40",2024-01-29,"['amendment-failure', 'failure']",IN,2024 +Senator Yoder added as coauthor,2024-01-23,[],IN,2024 +House sponsor: Representative May,2024-01-29,[],IN,2024 +Referred to the Senate,2024-01-30,['referral'],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +Senate sponsor: Senator Crider,2024-01-30,[],IN,2024 +Senate sponsors: Senators Raatz and Crane,2024-01-25,[],IN,2024 +Amendment #6 (Freeman) prevailed; voice vote,2024-01-25,['amendment-passage'],IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +Senator Garten added as second author,2024-01-29,[],IN,2024 +Representative Jackson added as coauthor,2024-01-30,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +"Committee report: do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Amendment #1 (Taylor G) failed; voice vote,2024-01-23,"['amendment-failure', 'failure']",IN,2024 +Senate sponsors: Senators Holdman and Garten,2024-01-22,[],IN,2024 +Referred to the House,2024-01-19,['referral'],IN,2024 +Senate sponsors: Senators Raatz and Alexander,2024-01-22,[],IN,2024 +"Third reading: passed; Roll Call 126: yeas 47, nays 1",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Insurance,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Amendment #5 (Porter) failed; voice vote,2024-01-29,"['amendment-failure', 'failure']",IN,2024 +Senator Goode G added as coauthor,2024-01-18,[],IN,2024 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2024-01-25,"['committee-passage', 'referral-committee']",IN,2024 +Amendment #2 (Garten) prevailed; voice vote,2024-01-22,['amendment-passage'],IN,2024 +Referred to the House,2024-01-24,['referral'],IN,2024 +"Third reading: passed; Roll Call 127: yeas 51, nays 44",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +First reading: referred to Committee on Judiciary,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-01-25,"['reading-1', 'referral-committee']",IN,2024 +Amendment #1 (Walker K) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +"Amendment #3 (Ford J.D.) failed; Roll Call 90: yeas 9, nays 39",2024-02-05,"['amendment-failure', 'failure']",IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Senate,2024-02-02,['referral'],IN,2024 +Amendment #8 (Yoder) prevailed; voice vote,2024-01-29,['amendment-passage'],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Senate,2024-02-06,['referral'],IN,2024 +Referred to the Senate,2024-02-02,['referral'],IN,2024 +Rule 105.1 suspended,2024-01-23,[],IN,2024 +Senator Rogers added as third author,2024-01-30,[],IN,2024 +House sponsor: Representative King,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 16: yeas 37, nays 9",2024-01-22,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Cosponsors: Representatives Lindauer, Abbott, Prescott",2024-02-06,[],IN,2024 +Senate sponsors: Senators Baldwin and Carrasco,2024-01-29,[],IN,2024 +Amendment #8 (Donato) prevailed; voice vote,2024-01-30,['amendment-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Cosponsor: Representative Pfaff,2024-01-30,[],IN,2024 +"Third reading: passed; Roll Call 102: yeas 94, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-01-22,['reading-2'],IN,2024 +House sponsor: Representative Barrett,2024-02-05,[],IN,2024 +House sponsor: Representative Olthoff,2024-01-29,[],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Amendment #3 (Freeman) prevailed; Roll Call 28: yeas 39, nays 8",2024-01-25,['amendment-passage'],IN,2024 +"Cosponsors: Representatives DeVon, Lauer, Heine",2024-02-05,[],IN,2024 +Referred to the Senate,2024-02-06,['referral'],IN,2024 +First reading: referred to Committee on Utilities,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 68: yeas 49, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative McGuire,2024-01-30,[],IN,2024 +House sponsor: Representative Speedy,2024-02-06,[],IN,2024 +Cosponsor: Representative Ledbetter,2024-02-05,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +Amendment #5 (Teshka) prevailed; voice vote,2024-01-30,['amendment-passage'],IN,2024 +Senator Niemeyer added as second author,2024-02-05,[],IN,2024 +"Senate sponsors: Senators Walker G, Johnson T, Gaskill",2024-01-30,[],IN,2024 +"Third reading: passed; Roll Call 80: yeas 96, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +First reading: referred to Committee on Financial Institutions,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Senate sponsors: Senators Byrne, Garten, Brown L",2024-01-31,[],IN,2024 +Senator Young M added as coauthor,2024-01-22,[],IN,2024 +"Amendment #7 (Qaddoura) failed; Roll Call 94: yeas 8, nays 40",2024-02-05,"['amendment-failure', 'failure']",IN,2024 +First reading: referred to the Committee on Roads and Transportation,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 91: yeas 94, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +Senate sponsor: Senator Donato,2024-01-23,[],IN,2024 +Senator Byrne added as coauthor,2024-01-29,[],IN,2024 +"Third reading: passed; Roll Call 95: yeas 92, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Veterans Affairs and The Military,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Cosponsor: Representative Wesco,2024-01-25,[],IN,2024 +Senator Randolph added as coauthor,2024-01-30,[],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 50: yeas 91, nays 7",2024-01-25,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Alexander added as coauthor,2024-02-05,[],IN,2024 +Senator Randolph added as coauthor,2024-02-01,[],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +House sponsor: Representative GiaQuinta,2024-01-29,[],IN,2024 +Senator Raatz added as second author,2024-02-01,[],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Cosponsors: Representatives Barrett and Culp,2024-02-01,[],IN,2024 +House sponsor: Representative Ledbetter,2024-02-01,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +"Third reading: passed; Roll Call 27: yeas 85, nays 10",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 81: yeas 73, nays 21",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the Senate,2024-02-06,['referral'],IN,2024 +Senate sponsor: Senator Brown L,2024-01-30,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-05,['reading-2'],IN,2024 +Cosponsor: Representative Lehman,2024-02-01,[],IN,2024 +"Third reading: passed; Roll Call 130: yeas 98, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-01-22,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 67: yeas 67, nays 29",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative Barrett,2024-02-06,[],IN,2024 +"Third reading: passed; Roll Call 70: yeas 49, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the House,2024-03-05,['referral'],IN,2024 +Amendment #1 (Pol) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +Senate sponsor: Senator Holdman,2024-01-30,[],IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +First reading: referred to Committee on Utilities,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Family and Children Services,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-01-25,[],IN,2024 +Referred to the Senate,2024-02-02,['referral'],IN,2024 +Returned to the House,2024-02-06,['receipt'],IN,2024 +"Amendment #4 (Qaddoura) failed; Roll Call 29: yeas 9, nays 38",2024-01-25,"['amendment-failure', 'failure']",IN,2024 +"Third reading: passed; Roll Call 142: yeas 96, nays 2",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Referred to the Senate,2024-01-23,['referral'],IN,2024 +Senator Buck added as coauthor,2024-01-25,[],IN,2024 +"Third reading: passed; Roll Call 123: yeas 85, nays 8",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Donato added as second author,2024-02-01,[],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Senators Busch and Koch added as coauthors,2024-01-16,[],IN,2024 +"Representatives Rowray, Wesco, Zent, Boy added as coauthors",2024-03-08,[],IN,2024 +"Third reading: passed; Roll Call 37: yeas 68, nays 27",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +Cosponsors: Representatives Lindauer and Bartels,2024-01-30,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +Returned to the Senate,2024-03-06,['receipt'],IN,2024 +Referred to the Senate,2024-01-17,['referral'],IN,2024 +"Cosponsors: Representatives Behning, McGuire, Davis",2024-02-06,[],IN,2024 +"Third reading: passed; Roll Call 84: yeas 95, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 139: yeas 45, nays 3",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Crane added as third author,2024-02-05,[],IN,2024 +Senator Baldwin added as coauthor,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 36: yeas 97, nays 0",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-01-30,['reading-2'],IN,2024 +Senator Bassler added as coauthor,2024-02-01,[],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Senator Yoder added as third author,2024-02-01,[],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +"Committee report: do pass, adopted",2024-02-20,['committee-passage'],IN,2024 +First reading: referred to the Committee on Roads and Transportation,2024-01-31,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-01-25,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 90: yeas 94, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +House sponsor: Representative Lehman,2024-02-06,[],IN,2024 +"Third reading: passed; Roll Call 17: yeas 46, nays 0",2024-01-22,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Randolph added as coauthor,2024-01-30,[],IN,2024 +Senator Rogers added as coauthor,2024-02-01,[],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +First reading: referred to Committee on Judiciary,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Representative King J added as coauthor,2024-01-29,[],IN,2024 +Referred to the Senate,2024-01-23,['referral'],IN,2024 +"Senators Dernulc, Raatz, Alexander, Bassler, Gaskill added as cosponsors",2024-02-27,[],IN,2024 +Senate sponsor: Senator Holdman,2024-01-30,[],IN,2024 +First reading: referred to Committee on Pensions and Labor,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Senate,2024-02-06,['referral'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-05,['reading-2'],IN,2024 +First reading: referred to Committee on Utilities,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative Slager,2024-01-18,[],IN,2024 +"Third reading: passed; Roll Call 137: yeas 97, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senate sponsors: Senators Bassler and Deery,2024-01-30,[],IN,2024 +House sponsor: Representative McNamara,2024-01-30,[],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +First reading: referred to Committee on Natural Resources,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative Slager,2024-02-05,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-23,['reading-2'],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Referred to the Senate,2024-02-06,['referral'],IN,2024 +First reading: referred to Committee on Utilities,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +"Senate sponsors: Senators Brown L, Koch, Dernulc",2024-01-30,[],IN,2024 +Referred to the Senate,2024-01-30,['referral'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-26,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 49: yeas 98, nays 0",2024-01-25,"['passage', 'reading-3', 'reading-3']",IN,2024 +Rule 105.1 suspended,2024-01-18,[],IN,2024 +Referred to the Senate,2024-02-02,['referral'],IN,2024 +"Committee report: do pass, adopted",2024-02-20,['committee-passage'],IN,2024 +First reading: referred to Committee on Local Government,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +Senate sponsor: Senator Leising,2024-02-01,[],IN,2024 +Senate sponsor: Senator Bohacek,2024-01-30,[],IN,2024 +Senator Koch added as coauthor,2024-01-16,[],IN,2024 +Senator Randolph added as coauthor,2024-01-30,[],IN,2024 +"Third reading: passed; Roll Call 88: yeas 44, nays 5",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-01-30,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 28: yeas 96, nays 0",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +First reading: referred to Committee on Public Policy,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Third reading: call withdrawn,2024-01-30,"['reading-3', 'withdrawal']",IN,2024 +Amendment #1 (Rogers) prevailed; voice vote,2024-02-01,['amendment-passage'],IN,2024 +Representative Moed added as coauthor,2024-01-29,[],IN,2024 +Senator Pol added as coauthor,2024-01-23,[],IN,2024 +Senate sponsors: Senators Raatz and Johnson T,2024-01-30,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +House sponsor: Representative King,2024-02-05,[],IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senate sponsors: Senators Doriot and Leising,2024-01-29,[],IN,2024 +First reading: referred to Committee on Local Government,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senator Baldwin added as coauthor,2024-01-23,[],IN,2024 +Senator Bassler added as coauthor,2024-01-25,[],IN,2024 +"Third reading: passed; Roll Call 144: yeas 94, nays 4",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Utilities,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Representative Goss-Reaves added as coauthor,2024-01-23,[],IN,2024 +Representative Bartels added as cosponsor,2024-02-13,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Referred to the Senate,2024-02-06,['referral'],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Senator Carrasco added as third author,2024-01-22,[],IN,2024 +Senate sponsor: Senator Baldwin,2024-01-30,[],IN,2024 +Amendment #1 (Buchanan) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +Senator Charbonneau added as coauthor,2024-01-30,[],IN,2024 +"Committee report: do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +Referred to the Senate,2024-01-30,['referral'],IN,2024 +Senator Niemeyer added as second author,2024-02-05,[],IN,2024 +Amendment #2 (Tomes) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +"Senators Baldwin, Bohacek, Tomes, Byrne, Crane added as coauthors",2024-01-23,[],IN,2024 +Cosponsor: Representative Olthoff,2024-01-25,[],IN,2024 +"Representatives Klinker, Porter, Hatcher added as coauthors",2024-01-18,[],IN,2024 +Senator Vinzant added as coauthor,2024-01-18,[],IN,2024 +"Third reading: passed; Roll Call 138: yeas 97, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 122: yeas 47, nays 1",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +First reading: adopted,2024-02-19,"['passage', 'reading-1']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senator Dernulc added as coauthor,2024-02-01,[],IN,2024 +Referred to the House,2024-01-24,['referral'],IN,2024 +House sponsor: Representative Rowray,2024-02-06,[],IN,2024 +Amendment #1 (Hunley) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +"Third reading: passed; Roll Call 104: yeas 94, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Representative Goss-Reaves added as coauthor,2024-01-18,[],IN,2024 +House sponsor: Representative Baird,2024-02-06,[],IN,2024 +Amendment #2 (Garten) prevailed; voice vote,2024-01-22,['amendment-passage'],IN,2024 +Senator Baldwin added as second author,2024-02-05,[],IN,2024 +"Amendment #2 (Qaddoura) failed; Roll Call 75: yeas 9, nays 40",2024-02-01,"['amendment-failure', 'failure']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Senator Yoder added as third author,2024-01-23,[],IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 146: yeas 41, nays 8",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 143: yeas 98, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senator Raatz added as coauthor,2024-02-05,[],IN,2024 +Amendment #1 (Taylor G) failed; voice vote,2024-01-25,"['amendment-failure', 'failure']",IN,2024 +First reading: referred to Committee on Local Government,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +House sponsor: Representative Jeter,2024-02-06,[],IN,2024 +Senator Randolph added as cosponsor,2024-02-19,[],IN,2024 +"Third reading: passed; Roll Call 82: yeas 67, nays 29",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Randolph added as coauthor,2024-01-30,[],IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 12: yeas 46, nays 0",2024-01-22,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-29,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 122: yeas 96, nays 0",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senate sponsors: Senators Deery and Dernulc,2024-01-25,[],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +House sponsor: Representative Steuerwald,2024-01-22,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-26,['committee-passage'],IN,2024 +Cosponsor: Representative Karickhoff,2024-02-06,[],IN,2024 +Referred to the Senate,2024-01-19,['referral'],IN,2024 +Returned to the Senate,2024-02-20,['receipt'],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Second reading: amended, ordered engrossed",2024-02-05,['reading-2'],IN,2024 +Senator Becker added as third author,2024-02-05,[],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-01,['reading-2'],IN,2024 +Referred to the House,2024-01-24,['referral'],IN,2024 +Senate sponsors: Senators Glick and Becker,2024-02-05,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +"Third reading: passed; Roll Call 83: yeas 92, nays 4",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Local Government,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-20,['committee-passage'],IN,2024 +Referred to the Senate,2024-02-06,['referral'],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +"Third reading: passed; Roll Call 133: yeas 38, nays 10",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: do pass, adopted",2024-02-13,['committee-passage'],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-02-15,"['committee-passage', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 36: yeas 45, nays 0",2024-01-25,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Ford J.D. added as coauthor,2024-02-01,[],IN,2024 +Second reading: adopted voice vote,2024-02-26,"['passage', 'reading-2']",IN,2024 +Second reading: adopted voice vote,2024-02-29,"['passage', 'reading-2']",IN,2024 +Referred to the Senate,2024-01-30,['referral'],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +First reading: referred to Committee on Public Policy,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-20,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Referred to the Senate,2024-01-30,['referral'],IN,2024 +"Third reading: passed; Roll Call 108: yeas 45, nays 3",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Senators Baldwin, Messmer, Niezgodski added as cosponsors",2024-02-05,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +Referred to the House,2024-01-23,['referral'],IN,2024 +"Third reading: passed; Roll Call 125: yeas 47, nays 1",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Cosponsors: Representatives Olthoff and Aylesworth,2024-02-05,[],IN,2024 +"Committee report: do pass, adopted",2024-02-19,['committee-passage'],IN,2024 +Representative Lehman added as coauthor,2024-01-29,[],IN,2024 +"First reading: referred to Committee on Family, Children and Human Affairs",2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Senator Pol added as coauthor,2024-01-25,[],IN,2024 +Representative Pierce K added as cosponsor,2024-02-15,[],IN,2024 +Amendment #1 (Leising) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +"Amendment #3 (Qaddoura) failed; Roll Call 76: yeas 9, nays 40",2024-02-01,"['amendment-failure', 'failure']",IN,2024 +Senator Leising added as coauthor,2024-01-23,[],IN,2024 +"Senators Yoder, Vinzant, Taylor G, Randolph, Pol, Niezgodski, Hunley, Ford J.D. added as cosponsors",2024-02-27,[],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +"Senate sponsors: Senators Raatz, Brown L, Johnson T",2024-01-23,[],IN,2024 +House sponsor: Representative Thompson,2024-02-01,[],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Amendment #2 (Taylor G) failed; voice vote,2024-01-25,"['amendment-failure', 'failure']",IN,2024 +"Committee report: do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +Senator Pol added as cosponsor,2024-02-19,[],IN,2024 +Referred to the Senate,2024-02-06,['referral'],IN,2024 +Amendment #1 (Raatz) prevailed; voice vote,2024-02-05,['amendment-passage'],IN,2024 +House sponsor: Representative Steuerwald,2024-02-06,[],IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 9: yeas 44, nays 1",2024-01-18,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Bassler added as coauthor,2024-02-01,[],IN,2024 +"Representatives Aylesworth, Baird, Bartels, Carbaugh, Cherry, Clere, Criswell C, Davis M, DeVon, Engleman, Genda M, Goss-Reaves, Greene R, Hostettler, Huston, Jordan, King J, Lauer, Lehman, Manning, May, Mayfield, McNamara, Meltzer J, Miller D, Moed, Negele, O'Brien T, Olthoff, Patterson L, Payne Z, Pierce K, Pressel, Schaibley, Steuerwald, Thompson, Zimmerman, Judy added as coauthors",2024-01-18,[],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Senator Niezgodski added as coauthor,2024-01-22,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +"Representatives Pierce K, Boy, DeLaney added as cosponsors",2024-02-19,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Referred to the Senate,2024-02-06,['referral'],IN,2024 +"Senators Rogers, Leising, Pol added as coauthors",2024-01-23,[],IN,2024 +"Amendment #3 (Hunley) failed; Roll Call 93: yeas 11, nays 37",2024-02-05,"['amendment-failure', 'failure']",IN,2024 +Second reading: ordered engrossed,2024-02-05,['reading-2'],IN,2024 +"Committee report: do pass, adopted",2024-02-20,['committee-passage'],IN,2024 +"Senators Walker G, Messmer, Holdman, Buck, Niezgodski, Koch added as coauthors",2024-01-25,[],IN,2024 +"Third reading: passed; Roll Call 78: yeas 73, nays 22",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 107: yeas 73, nays 24",2024-01-31,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"Representatives Baird, Patterson L, Schaibley added as coauthors",2024-01-18,[],IN,2024 +Senator Randolph added as coauthor,2024-01-23,[],IN,2024 +"Senators Leising, Messmer, Niemeyer, Walker G added as coauthors",2024-01-25,[],IN,2024 +Second reading: adopted voice vote,2024-02-29,"['passage', 'reading-2']",IN,2024 +Cosponsors: Representatives Prescott and O'Brien,2024-02-06,[],IN,2024 +"Third reading: passed; Roll Call 109: yeas 74, nays 22",2024-01-31,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: adopted voice vote,2024-02-26,"['passage', 'reading-2']",IN,2024 +Referred to the House,2024-02-02,['referral'],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Representative Davis M added as coauthor,2024-01-31,[],IN,2024 +"Cosponsors: Representatives Steuerwald, Negele, Hatcher",2024-01-30,[],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Cosponsors: Representatives McNamara and Meltzer,2024-02-05,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +First reading: referred to Committee on Judiciary,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Senator Randolph added as cosponsor,2024-02-15,[],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-22,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +House sponsor: Representative Thompson,2024-01-30,[],IN,2024 +"Third reading: passed; Roll Call 24: yeas 77, nays 19",2024-01-22,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Utilities,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +"Second reading: amended, ordered engrossed",2024-01-29,['reading-2'],IN,2024 +Referred to the House,2024-02-02,['referral'],IN,2024 +Second reading: ordered engrossed,2024-02-05,['reading-2'],IN,2024 +"Amendment #6 (Qaddoura) failed; Roll Call 95: yeas 8, nays 40",2024-02-05,"['amendment-failure', 'failure']",IN,2024 +Referred to the Senate,2024-01-30,['referral'],IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-01-25,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative Carbaugh,2024-02-06,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senate sponsor: Senator Rogers,2024-02-05,[],IN,2024 +Pursuant to Senate Rule 68(b); reassigned to Committee on Homeland Security and Transportation,2024-02-06,['referral-committee'],IN,2024 +"Third reading: passed; Roll Call 65: yeas 97, nays 0",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +"Third reading: passed; Roll Call 79: yeas 75, nays 21",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the House,2024-02-02,['referral'],IN,2024 +Referred to the Senate,2024-02-01,['referral'],IN,2024 +Referred to the Senate,2024-01-26,['referral'],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-19,['committee-passage'],IN,2024 +Senator Johnson T added as third author,2024-02-01,[],IN,2024 +Cosponsors: Representatives Goss-Reaves and Garcia Wilburn,2024-02-01,[],IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +First reading: referred to Committee on Ways and Means,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Senator Raatz added as second author,2024-02-05,[],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Second reading: amended, ordered engrossed",2024-02-05,['reading-2'],IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-01-25,"['reading-1', 'referral-committee']",IN,2024 +"Amendment #3 (Qaddoura) failed; Roll Call 30: yeas 9, nays 38",2024-01-25,"['amendment-failure', 'failure']",IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +"Representatives Pierce K, Boy, DeLaney added as cosponsors",2024-02-19,[],IN,2024 +Senator Crider added as coauthor,2024-01-16,[],IN,2024 +Referred to the Senate,2024-02-02,['referral'],IN,2024 +First reading: referred to Committee on Public Policy,2024-01-25,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +"Second reading: amended, ordered engrossed",2024-01-22,['reading-2'],IN,2024 +Senator Vinzant added as coauthor,2024-01-18,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +First reading: referred to Committee on Agriculture,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senate sponsor: Senator Freeman,2024-02-01,[],IN,2024 +"Amendment #4 (Ford J.D.) failed; Roll Call 91: yeas 8, nays 40",2024-02-05,"['amendment-failure', 'failure']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Senator Buck added as coauthor,2024-02-06,[],IN,2024 +Cosponsor: Representative Lehman,2024-02-05,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-30,['reading-2'],IN,2024 +"Representatives Abbott D, Andrade M, Aylesworth, Baird, Barrett, Bartels, Bartlett, Bauer M, Behning, Borders, Boy, Campbell, Carbaugh, Cash B, Clere, Criswell C, Davis M, DeLaney, DeVon, Dvorak, Engleman, Errington, Fleming, Garcia Wilburn V, Genda M, GiaQuinta, Goodrich, Gore M, Goss-Reaves, Greene R, Haggard C, Hall D, Hamilton, Harris, Hatcher, Hatfield, Heaton, Heine, Hostettler, Huston, Jackson, Jeter C, Johnson, Jordan, Judy, King J, Klinker, Lauer, Ledbetter C, Lehman, Lindauer, Lucas, Lyness, Manning, May, Mayfield, McGuire J, McNamara, Miller K, Moed, Morris, Morrison, Moseley, Negele, O'Brien T, Olthoff, Pack R, Patterson L, Payne Z, Pfaff, Pierce K, Pierce M, Prescott, Pressel, Pryor, Rowray E, Schaibley, Shackleford, Slager, Smaltz, Smith, V., Snow C, Soliday, Speedy, Steuerwald, Summers, Sweet L, Teshka J, Thompson, Torr, VanNatter, Wesco, Zent, Zimmerman added as coauthors",2024-01-23,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-25,['reading-2'],IN,2024 +First reading: referred to Committee on Agriculture and Rural Development,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Cosponsor: Representative Teshka,2024-01-30,[],IN,2024 +Cosponsors: Representatives Manning and Miller K,2024-01-29,[],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Senator Bohacek added as coauthor,2024-01-25,[],IN,2024 +"Committee report: do pass, adopted",2024-02-26,['committee-passage'],IN,2024 +Cosponsor: Representative Slager,2024-01-29,[],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Senator Niezgodski removed as coauthor,2024-01-25,[],IN,2024 +Amendment #4 (Prescott) prevailed; voice vote,2024-01-30,['amendment-passage'],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Cosponsor: Representative Carbaugh,2024-02-06,[],IN,2024 +"Third reading: passed; Roll Call 35: yeas 41, nays 5",2024-01-25,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Cosponsor: Representative Miller D,2024-01-23,[],IN,2024 +Senator Bohacek added as cosponsor,2024-02-19,[],IN,2024 +Senator Bohacek added as third author,2024-02-05,[],IN,2024 +Senator Becker added as coauthor,2024-01-25,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-02-20,"['committee-passage', 'referral-committee']",IN,2024 +First reading: referred to Committee on Financial Institutions,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Representatives Goss-Reaves, May, Culp, Aylesworth, VanNatter added as coauthors",2024-03-08,[],IN,2024 +First reading: referred to Committee on Veterans Affairs and The Military,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 110: yeas 93, nays 1",2024-01-31,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-01-23,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 94: yeas 92, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +"Third reading: passed; Roll Call 20: yeas 94, nays 0",2024-01-22,"['passage', 'reading-3', 'reading-3']",IN,2024 +House sponsor: Representative Steuerwald,2024-02-06,[],IN,2024 +"Third reading: passed; Roll Call 60: yeas 49, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Johnson T added as third author,2024-02-01,[],IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +First reading: referred to Committee on Appropriations,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senator Koch added as cosponsor,2024-02-15,[],IN,2024 +House sponsor: Representative Pierce K,2024-01-30,[],IN,2024 +Senator Koch added as second sponsor,2024-01-29,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Referred to the Senate,2024-02-06,['referral'],IN,2024 +"Third reading: passed; Roll Call 50: yeas 41, nays 8",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Judiciary,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Senator Leising added as second author,2024-02-05,[],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +Senator Doriot added as third author,2024-01-25,[],IN,2024 +"Senators Walker G, Crane, Doriot, Zay added as coauthors",2024-01-30,[],IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +Senator Charbonneau added as second sponsor,2024-02-05,[],IN,2024 +Representative Aylesworth removed as sponsor,2024-02-01,[],IN,2024 +Senator Bassler added as coauthor,2024-01-30,[],IN,2024 +Representative Bartels added as cosponsor,2024-02-13,[],IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +Cosponsors: Representatives Goss-Reaves and Garcia Wilburn,2024-02-06,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Rule 105.1 suspended,2024-01-22,[],IN,2024 +"Third reading: passed; Roll Call 57: yeas 49, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Representative Goodrich added as coauthor,2024-01-29,[],IN,2024 +House sponsor: Representative Jeter,2024-01-22,[],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-02-13,"['committee-passage', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 34: yeas 46, nays 0",2024-01-25,"['passage', 'reading-3', 'reading-3']",IN,2024 +Cosponsor: Senator Donato,2024-01-30,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Representative Miller D added as cosponsor,2024-02-20,[],IN,2024 +"Cosponsors: Representatives Teshka, Moed, Garcia Wilburn",2024-02-06,[],IN,2024 +Senator Rogers added as second sponsor,2024-02-01,[],IN,2024 +Senator Baldwin added as coauthor,2024-02-06,[],IN,2024 +First reading: referred to Committee on Education,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative Wesco,2024-01-30,[],IN,2024 +Senator Tomes added as second sponsor,2024-02-19,[],IN,2024 +Senator Niezgodski added as cosponsor,2024-02-05,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +Senator Becker added as coauthor,2024-02-01,[],IN,2024 +Senator Walker G added as second sponsor,2024-02-20,[],IN,2024 +Senator Leising added as coauthor,2024-01-16,[],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +First reading: referred to Committee on Local Government,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Homeland Security and Transportation,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Pensions and Labor,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +Senator Rogers added as coauthor,2024-02-01,[],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +Amendment #7 (Hunley) failed; voice vote,2024-01-25,"['amendment-failure', 'failure']",IN,2024 +"Amendment #5 (Qaddoura) failed; Roll Call 96: yeas 7, nays 40",2024-02-05,"['amendment-failure', 'failure']",IN,2024 +Referred to the Senate,2024-01-23,['referral'],IN,2024 +Senator Becker added as coauthor,2024-01-30,[],IN,2024 +Representative Speedy added as coauthor,2024-01-29,[],IN,2024 +"Third reading: passed; Roll Call 81: yeas 36, nays 13",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +"Cosponsors: Representatives Miller K, Baird, Pryor",2024-01-30,[],IN,2024 +"Third reading: passed; Roll Call 140: yeas 48, nays 0",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Judiciary,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-29,['committee-passage'],IN,2024 +House sponsor: Representative Schaibley,2024-01-30,[],IN,2024 +Senator Donato added as third author,2024-02-05,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative McGuire,2024-01-29,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Referred to the Senate,2024-01-23,['referral'],IN,2024 +First reading: referred to Committee on Judiciary,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Representative DeLaney added as coauthor,2024-01-22,[],IN,2024 +Representatives Jeter and Steuerwald added as cosponsors,2024-02-12,[],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Cosponsor: Representative Jordan,2024-01-30,[],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-01-30,['committee-passage'],IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +"Senators Donato, Becker, Ford J.D. added as coauthors",2024-02-01,[],IN,2024 +First reading: referred to Committee on Local Government,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 130: yeas 48, nays 0",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: do pass, adopted",2024-02-13,['committee-passage'],IN,2024 +First reading: referred to Committee on Environmental Affairs,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Referred to the House,2024-01-26,['referral'],IN,2024 +"Third reading: passed; Roll Call 87: yeas 47, nays 2",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Local Government,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +Senator Baldwin added as third sponsor,2024-02-06,[],IN,2024 +First reading: referred to Committee on Family and Children Services,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Senator Niezgodski added as third author,2024-01-25,[],IN,2024 +Senator Crane added as coauthor,2024-01-25,[],IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +"Reread second time: amended, ordered engrossed",2024-01-30,['reading-2'],IN,2024 +Senator Buck added as coauthor,2024-01-30,[],IN,2024 +Senator Randolph added as coauthor,2024-01-29,[],IN,2024 +House sponsor: Representative Morrison,2024-01-25,[],IN,2024 +"Representatives Carbaugh, Fleming, Porter added as cosponsors",2024-02-19,[],IN,2024 +First reading: referred to Committee on Natural Resources,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senator Tomes added as coauthor,2024-02-05,[],IN,2024 +Senator Doriot added as coauthor,2024-02-06,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +"Committee report: do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-02-19,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 40: yeas 40, nays 9",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Representatives Slager and Davis added as cosponsors,2024-02-22,[],IN,2024 +"Committee report: do pass, adopted",2024-02-19,['committee-passage'],IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +Senator Buck added as coauthor,2024-01-23,[],IN,2024 +"Committee report: do pass, adopted",2024-02-13,['committee-passage'],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Referred to the Senate,2024-02-02,['referral'],IN,2024 +"Third reading: passed; Roll Call 83: yeas 34, nays 15",2024-02-01,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Representatives Payne, Genda, Fleming, Smith V added as coauthors",2024-03-08,[],IN,2024 +Representative Sweet added as sponsor,2024-02-01,[],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +"First reading: referred to Committee on Family, Children and Human Affairs",2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +Senator Ford J.D. added as coauthor,2024-01-25,[],IN,2024 +Second reading: ordered engrossed,2024-02-05,['reading-2'],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Senate sponsors: Senators Walker G and Johnson T,2024-01-30,[],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"Senators Alexander, Becker, Bohacek, Buchanan added as coauthors",2024-01-22,[],IN,2024 +"Senate sponsors: Senators Baldwin, Garten, Freeman",2024-01-30,[],IN,2024 +"Committee report: do pass, adopted",2024-02-29,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +First reading: referred to Committee on Natural Resources,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senator Byrne added as coauthor,2024-02-05,[],IN,2024 +Referred to the Senate,2024-01-30,['referral'],IN,2024 +"Committee report: do pass, adopted",2024-02-20,['committee-passage'],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Senator Bassler added as coauthor,2024-01-22,[],IN,2024 +Senate sponsor: Senator Zay,2024-01-31,[],IN,2024 +Referred to the Senate,2024-02-06,['referral'],IN,2024 +Senator Leising added as second author,2024-02-05,[],IN,2024 +Senator Koch added as third sponsor,2024-02-19,[],IN,2024 +Senator Charbonneau added as coauthor,2024-01-22,[],IN,2024 +"Committee report: do pass, adopted",2024-02-20,['committee-passage'],IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 111: yeas 96, nays 0",2024-01-31,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Second reading: amended, ordered engrossed",2024-02-05,['reading-2'],IN,2024 +"Committee report: do pass, adopted",2024-01-25,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Senator Buck added as coauthor,2024-01-22,[],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +First reading: referred to Committee on Ways and Means,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Senate sponsor: Senator Rogers,2024-01-31,[],IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +"Second reading: amended, ordered engrossed",2024-02-05,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 111: yeas 48, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #1 (Rogers) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Returned to the House,2024-03-01,['receipt'],IN,2024 +Amendment #1 (Byrne) prevailed; voice vote,2024-02-22,['amendment-passage'],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-01-25,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"Senators Leising, Buchanan, Garten added as coauthors",2024-02-05,[],IN,2024 +"Committee report: do pass, adopted",2024-02-13,['committee-passage'],IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +Referred to the House,2024-01-26,['referral'],IN,2024 +Second reading: ordered engrossed,2024-02-22,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Senators Glick and Gaskill added as coauthors,2024-02-06,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-26,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-26,['committee-passage'],IN,2024 +Amendment #4 (Buchanan) prevailed; voice vote,2024-01-25,['amendment-passage'],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Returned to the House,2024-03-01,['receipt'],IN,2024 +Amendment #1 (Glick) prevailed; voice vote,2024-02-19,['amendment-passage'],IN,2024 +"Third reading: passed; Roll Call 143: yeas 46, nays 2",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Crane added as coauthor,2024-02-05,[],IN,2024 +Senator Ford J.D. added as coauthor,2024-02-01,[],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +House sponsor: Representative Bartels,2024-01-22,[],IN,2024 +"Amendment #4 (Qaddoura) failed; Roll Call 77: yeas 10, nays 39",2024-02-01,"['amendment-failure', 'failure']",IN,2024 +First reading: referred to Committee on Family and Children Services,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Senate,2024-02-06,['referral'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +"Senators Deery, Donato, Bassler, Johnson T, Zay, Buchanan added as coauthors",2024-01-30,[],IN,2024 +Senator Baldwin added as second sponsor,2024-02-22,[],IN,2024 +Amendment #1 (Koch) prevailed; voice vote,2024-02-19,['amendment-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-05,['reading-2'],IN,2024 +Senator Niezgodski added as coauthor,2024-01-25,[],IN,2024 +Senator Walker K added as cosponsor,2024-02-12,[],IN,2024 +Senate sponsor: Senator Buchanan,2024-01-31,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"Representatives Aylesworth, Carbaugh, DeVon, Genda M, Goodrich, Greene R, Haggard C, Heine, Manning, Miller D, Olthoff, Payne Z, Pierce K, Pierce M, Smaltz, Snow C, Speedy, Teshka J, Davis M added as coauthors",2024-01-22,[],IN,2024 +Title amendment: adopted,2024-02-05,['amendment-passage'],IN,2024 +First reading: referred to Committee on Public Policy,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 100: yeas 48, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senator Ford J.D. added as cosponsor,2024-02-22,[],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Cosponsors: Representatives Steuerwald and Jordan,2024-02-06,[],IN,2024 +First reading: referred to Committee on Education,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Policy,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Amendment #2 (Yoder) failed; voice vote,2024-02-05,"['amendment-failure', 'failure']",IN,2024 +House sponsor: Representative King,2024-01-18,[],IN,2024 +Referred to the Senate,2024-02-02,['referral'],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Judiciary,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Senate,2024-01-26,['referral'],IN,2024 +Amendment #3 (Baldwin) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +Representative Prescott added as coauthor,2024-01-18,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Returned to the House,2024-02-27,['receipt'],IN,2024 +Senator Buchanan added as coauthor,2024-01-22,[],IN,2024 +First reading: referred to Committee on Agriculture,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Senator Randolph added as coauthor,2024-02-01,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +House sponsor: Representative Karickhoff,2024-01-25,[],IN,2024 +Senator Dernulc added as second author,2024-02-05,[],IN,2024 +First reading: referred to Committee on Elections,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Senator Doriot added as second sponsor,2024-02-19,[],IN,2024 +Referred to the House,2024-01-23,['referral'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-26,['committee-passage'],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-01-25,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Returned to the House,2024-02-28,['receipt'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-29,['committee-passage'],IN,2024 +Senator Brown L added as second sponsor,2024-02-05,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-02-15,[],IN,2024 +Senator Doriot added as third sponsor,2024-02-29,[],IN,2024 +Senator Yoder added as cosponsor,2024-02-15,[],IN,2024 +"Third reading: passed; Roll Call 59: yeas 66, nays 31",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Representatives Summers, Hamilton, Torr added as cosponsors",2024-02-15,[],IN,2024 +House sponsor: Representative Zent,2024-02-06,[],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senator Randolph added as coauthor,2024-01-23,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +First reading: referred to the Committee on Roads and Transportation,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Returned to the House,2024-02-27,['receipt'],IN,2024 +"Committee report: do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +Senator Bohacek added as cosponsor,2024-02-20,[],IN,2024 +House sponsor: Representative Behning,2024-02-06,[],IN,2024 +"Committee report: do pass, adopted",2024-02-26,['committee-passage'],IN,2024 +First reading: referred to Committee on Education,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 255: yeas 48, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Crane added as cosponsor,2024-02-22,[],IN,2024 +Amendment #2 (Alting) prevailed; voice vote,2024-02-26,['amendment-passage'],IN,2024 +"Third reading: passed; Roll Call 53: yeas 40, nays 9",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Randolph added as cosponsor,2024-02-27,[],IN,2024 +Referred to the House,2024-02-02,['referral'],IN,2024 +House sponsor: Representative Meltzer,2024-02-05,[],IN,2024 +"Amendment #1 (Yoder) failed; Roll Call 116: yeas 9, nays 39",2024-02-05,"['amendment-failure', 'failure']",IN,2024 +Senator Byrne added as third sponsor,2024-02-12,[],IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +House sponsor: Representative Baird,2024-02-05,[],IN,2024 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2024-02-20,"['committee-passage', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-20,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-22,['reading-2'],IN,2024 +Representative Barrett added as coauthor,2024-03-04,[],IN,2024 +Senator Glick removed as second author,2024-02-05,[],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Representative Moseley added as cosponsor,2024-02-15,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Senator Gaskill added as cosponsor,2024-02-22,[],IN,2024 +Senator Messmer added as cosponsor,2024-02-12,[],IN,2024 +Amendment #4 (Baldwin) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +Representative Heaton added as coauthor,2024-01-18,[],IN,2024 +"Cosponsors: Representatives Speedy, Pressel, Goss-Reaves",2024-01-18,[],IN,2024 +Senator Yoder added as coauthor,2024-02-01,[],IN,2024 +Senator Ford J.D. added as cosponsor,2024-02-22,[],IN,2024 +Cosponsor: Representative Lindauer,2024-01-25,[],IN,2024 +Amendment #2 (Brown L) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 165: yeas 93, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-03-04,['reading-2'],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Senator Johnson T added as third sponsor,2024-02-05,[],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-02-22,"['committee-passage', 'referral-committee']",IN,2024 +"Second reading: adopted Roll Call 149: yeas 81, nays 0",2024-02-15,"['passage', 'reading-2']",IN,2024 +"Third reading: passed; Roll Call 172: yeas 49, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Cosponsor: Representative Davis,2024-02-06,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-22,['reading-2'],IN,2024 +Senator Randolph added as cosponsor,2024-02-15,[],IN,2024 +Senator Bassler added as coauthor,2024-01-25,[],IN,2024 +"Committee report: do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 128: yeas 35, nays 13",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #1 (Pol) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +"Third reading: passed; Roll Call 144: yeas 49, nays 0",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 196: yeas 49, nays 0",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-02-28,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"Cosponsors: Representatives Judy, Pack R, Hostettler",2024-01-22,[],IN,2024 +First reading: referred to Committee on Insurance and Financial Institutions,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2024-02-12,"['committee-passage', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Senate,2024-02-01,['referral'],IN,2024 +"Committee report: do pass, adopted",2024-02-13,['committee-passage'],IN,2024 +House sponsor: Representative Miller D,2024-02-05,[],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Representative Abbott D added as coauthor,2024-01-22,[],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Senator Byrne added as second sponsor,2024-02-19,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-19,['reading-2'],IN,2024 +"Senators Walker K, Zay, Carrasco, Busch, Yoder added as coauthors",2024-01-25,[],IN,2024 +Senate sponsors: Senators Raatz and Rogers,2024-01-31,[],IN,2024 +House sponsor: Representative Thompson,2024-02-06,[],IN,2024 +Senator Young M added as coauthor,2024-01-22,[],IN,2024 +Representative Lehman added as coauthor,2024-03-04,[],IN,2024 +"Amendment #1 (Hunley) failed; Roll Call 31: yeas 9, nays 38",2024-01-25,"['amendment-failure', 'failure']",IN,2024 +Representative Negele added as cosponsor,2024-02-22,[],IN,2024 +Amendment #1 (Freeman) prevailed; voice vote,2024-02-27,['amendment-passage'],IN,2024 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +First reading: referred to Committee on Ways and Means,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Policy,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Senate,2024-02-01,['referral'],IN,2024 +Senators Crider and Rogers added as coauthors,2024-01-22,[],IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +"Committee report: do pass, adopted",2024-02-13,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Senator Doriot added as second sponsor,2024-02-19,[],IN,2024 +"Third reading: passed; Roll Call 228: yeas 91, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-02-29,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 170: yeas 49, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Elections,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +First reading: referred to Committee on Agriculture,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-20,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-19,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 118: yeas 48, nays 0",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Amendment #5 (Hunley) failed; Roll Call 78: yeas 10, nays 39",2024-02-01,"['amendment-failure', 'failure']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Representative Goss-Reaves added as cosponsor,2024-02-19,[],IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +Referred to the House,2024-01-24,['referral'],IN,2024 +Senate sponsor: Senator Buchanan,2024-01-29,[],IN,2024 +Second reading: ordered engrossed,2024-02-22,['reading-2'],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Cosponsor: Representative Barrett,2024-02-06,[],IN,2024 +"Committee report: do pass, adopted",2024-02-13,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +Senator Crane added as cosponsor,2024-02-20,[],IN,2024 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2024-02-13,"['committee-passage', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 224: yeas 40, nays 6",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +First reading: referred to Committee on Local Government,2024-01-25,"['reading-1', 'referral-committee']",IN,2024 +Senator Hunley added as coauthor,2024-01-25,[],IN,2024 +Senator Randolph added as coauthor,2024-01-30,[],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Senators Crane and Goode added as coauthors,2024-02-01,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-26,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Senator Tomes added as second sponsor,2024-02-12,[],IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Senator Becker added as coauthor,2024-01-30,[],IN,2024 +Senator Walker K added as second sponsor,2024-02-26,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Referred to the Senate,2024-01-30,['referral'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +First reading: referred to Committee on Elections and Apportionment,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Health,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Representative Moed added as coauthor,2024-01-22,[],IN,2024 +"Senators Buck, Byrne, Charbonneau, Crane added as coauthors",2024-01-22,[],IN,2024 +Cosponsor: Senator Messmer,2024-01-30,[],IN,2024 +"Amendment #2 (Ford J.D.) failed; Roll Call 97: yeas 9, nays 39",2024-02-05,"['amendment-failure', 'failure']",IN,2024 +Senator Messmer added as second sponsor,2024-02-12,[],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Second reading: ordered engrossed,2024-02-15,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-29,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 141: yeas 36, nays 11",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 168: yeas 93, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senators Charbonneau and Niemeyer added as cosponsors,2024-02-12,[],IN,2024 +"Third reading: passed; Roll Call 201: yeas 49, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +First reading: referred to Committee on Agriculture and Rural Development,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-02-20,"['committee-passage', 'referral-committee']",IN,2024 +House sponsor: Representative Haggard,2024-01-29,[],IN,2024 +Senator Dernulc added as coauthor,2024-01-29,[],IN,2024 +Senator Baldwin added as coauthor,2024-01-29,[],IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Senator Crane added as cosponsor,2024-02-20,[],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Referred to the House,2024-02-02,['referral'],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-22,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-01-25,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Senators Niezgodski and Yoder added as cosponsors,2024-02-29,[],IN,2024 +Senator Zay added as second sponsor,2024-02-29,[],IN,2024 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2024-02-15,"['committee-passage', 'referral-committee']",IN,2024 +House sponsor: Representative Carbaugh,2024-02-01,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +House sponsor: Representative Engleman,2024-01-25,[],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Referred to the House,2024-02-02,['referral'],IN,2024 +Senator Doriot added as second sponsor,2024-02-27,[],IN,2024 +House sponsor: Representative Davis,2024-02-06,[],IN,2024 +Second reading: ordered engrossed,2024-02-01,['reading-2'],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +"Representatives Karickhoff, King, Miller D added as cosponsors",2024-02-22,[],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-02-22,"['committee-passage', 'referral-committee']",IN,2024 +First reading: referred to Committee on Local Government,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senator Buck added as third sponsor,2024-02-19,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +"Third reading: passed; Roll Call 203: yeas 49, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the House,2024-01-24,['referral'],IN,2024 +Referred to the Senate,2024-02-01,['referral'],IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +"Senate sponsors: Senators Holdman, Bassler, Doriot",2024-01-31,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Representatives Cherry and Klinker added as cosponsors,2024-02-20,[],IN,2024 +First reading: referred to Committee on Appropriations,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Education and Career Development,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senators Walker K and Alexander added as coauthors,2024-01-16,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-26,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Senator Ford J.D. added as cosponsor,2024-02-05,[],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +First reading: referred to Committee on Corrections and Criminal Law,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-19,['committee-passage'],IN,2024 +Cosponsors: Representatives Barrett and McGuire,2024-01-30,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Representative Sweet removed as cosponsor,2024-02-01,[],IN,2024 +Senator Alexander added as second sponsor,2024-02-15,[],IN,2024 +Amendment #5 (Freeman) prevailed; voice vote,2024-02-19,['amendment-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 124: yeas 38, nays 10",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #3 (Gaskill) prevailed; voice vote,2024-02-19,['amendment-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-22,['reading-2'],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Referred to the House,2024-02-02,['referral'],IN,2024 +Amendment #1 (Bohacek) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +House sponsor: Representative Pressel,2024-02-06,[],IN,2024 +Senator Buchanan added as coauthor,2024-01-22,[],IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Referred to the House,2024-01-26,['referral'],IN,2024 +House sponsor: Representative King,2024-02-01,[],IN,2024 +House sponsor: Representative Teshka,2024-02-01,[],IN,2024 +Representative Harris added as cosponsor,2024-02-22,[],IN,2024 +Senator Freeman added as cosponsor,2024-02-12,[],IN,2024 +Senator Walker K added as cosponsor,2024-02-13,[],IN,2024 +"Third reading: passed; Roll Call 258: yeas 48, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: do pass, adopted",2024-01-18,['committee-passage'],IN,2024 +"Cosponsors: Representatives Andrade, Moseley, Boy",2024-02-06,[],IN,2024 +First reading: referred to Committee on Natural Resources,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"Senators Dernulc, Goode, Becker, Garten added as cosponsors",2024-02-12,[],IN,2024 +Amendment #2 (Brown L) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +Amendment #2 (Thompson) prevailed; voice vote,2024-02-27,['amendment-passage'],IN,2024 +Returned to the House with amendments,2024-02-27,['receipt'],IN,2024 +Cosponsors: Representatives Meltzer and McGuire,2024-02-06,[],IN,2024 +"Committee report: do pass, adopted",2024-02-13,['committee-passage'],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Amendment #4 (Judy) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +"Committee report: do pass, adopted",2024-02-29,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 256: yeas 97, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Ways and Means,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senator Rogers added as coauthor,2024-01-30,[],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Pursuant to Senate Rule 68(b); reassigned to Committee on Elections,2024-02-19,['referral-committee'],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +First reading: referred to Committee on Financial Institutions,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Senator Byrne added as second sponsor,2024-02-29,[],IN,2024 +"Amendment #3 (Ford J.D.) failed; Roll Call 98: yeas 8, nays 40",2024-02-05,"['amendment-failure', 'failure']",IN,2024 +"Committee report: do pass, adopted",2024-02-19,['committee-passage'],IN,2024 +Senator Yoder added as cosponsor,2024-02-13,[],IN,2024 +Senator Bohacek added as cosponsor,2024-02-05,[],IN,2024 +"Senators Doriot, Gaskill, Buchanan, Johnson T added as coauthors",2024-01-25,[],IN,2024 +Senator Holdman added as coauthor,2024-02-01,[],IN,2024 +Senator Crane added as coauthor,2024-01-29,[],IN,2024 +Senator Johnson T added as coauthor,2024-01-29,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-29,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 108: yeas 85, nays 11",2024-01-31,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +"Senators Byrne, Doriot, Messmer added as coauthors",2024-01-22,[],IN,2024 +First reading: referred to Committee on Ways and Means,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Public Policy,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +House sponsor: Representative Teshka,2024-02-06,[],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +"Cosponsors: Representatives Behning, King, Davis",2024-02-01,[],IN,2024 +Senator Leising added as second sponsor,2024-02-19,[],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +"Cosponsors: Representatives Heaton, Lucas, Zimmerman",2024-01-29,[],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-22,['reading-2'],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +"Senators Niezgodski, Pol, Qaddoura, Randolph, Taylor G, Yoder, Ford J.D. added as coauthors",2024-01-30,[],IN,2024 +Senator Crane added as cosponsor,2024-02-15,[],IN,2024 +"Third reading: passed; Roll Call 156: yeas 36, nays 13",2024-02-19,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #2 (Carbaugh) prevailed; voice vote,2024-02-28,['amendment-passage'],IN,2024 +Representative Aylesworth added as cosponsor,2024-02-01,[],IN,2024 +"Third reading: passed; Roll Call 86: yeas 65, nays 29",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 177: yeas 92, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +First reading: referred to Committee on Elections,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 206: yeas 80, nays 16",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +"Senators Byrne, Doriot, Crane added as cosponsors",2024-02-19,[],IN,2024 +"Amendment #2 (Qaddoura) failed; Roll Call 155: yeas 8, nays 41",2024-02-19,"['amendment-failure', 'failure']",IN,2024 +"Third reading: passed; Roll Call 191: yeas 49, nays 0",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Financial Institutions,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Senator Walker G added as second sponsor,2024-02-20,[],IN,2024 +"First reading: referred to Committee on Family, Children and Human Affairs",2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Amendment #2 (DeLaney) prevailed; voice vote,2024-01-22,['amendment-passage'],IN,2024 +Senator Deery added as second sponsor,2024-02-29,[],IN,2024 +First reading: referred to Committee on Public Health,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 174: yeas 49, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Raatz removed as sponsor,2024-02-22,[],IN,2024 +First reading: referred to Committee on Elections and Apportionment,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Senator Doriot added as cosponsor,2024-02-29,[],IN,2024 +House sponsor: Representative Behning,2024-02-06,[],IN,2024 +First reading: referred to Committee on Family and Children Services,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +Senator Koch added as third sponsor,2024-02-12,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-13,['committee-passage'],IN,2024 +"Cosponsors: Representatives Abbott, Morris, Judy",2024-02-01,[],IN,2024 +First reading: referred to Committee on Public Health,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +First reading: referred to Committee on Ways and Means,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Second reading: ordered engrossed,2024-02-22,['reading-2'],IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Cosponsor: Representative Morris,2024-01-25,[],IN,2024 +First reading: referred to Committee on Insurance,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Amendment #1 (Leising) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +Amendment #1 (Byrne) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +First reading: referred to Committee on Local Government,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-13,['committee-passage'],IN,2024 +Cosponsors: Representatives DeVon and Davis,2024-02-01,[],IN,2024 +"Senators Maxwell, Taylor G, Bohacek, Alexander, Deery, Doriot, Brown L, Koch added as coauthors",2024-01-25,[],IN,2024 +Second reading: ordered engrossed,2024-03-04,['reading-2'],IN,2024 +Returned to the Senate with amendments,2024-02-21,['receipt'],IN,2024 +"Third reading: passed; Roll Call 140: yeas 98, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the House with amendments,2024-02-28,['receipt'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-02-22,['reading-2'],IN,2024 +Representative Speedy removed as sponsor,2024-02-26,[],IN,2024 +"Amendment #2 (Pol) failed; Roll Call 154: yeas 18, nays 29",2024-02-19,"['amendment-failure', 'failure']",IN,2024 +"Third reading: passed; Roll Call 226: yeas 60, nays 34",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Senators Freeman, Garten, Gaskill, Goode G added as coauthors",2024-01-22,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"Senators Maxwell, Byrne, Leising added as cosponsors",2024-02-22,[],IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +Returned to the Senate,2024-02-16,['receipt'],IN,2024 +"Third reading: passed; Roll Call 270: yeas 98, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: adopted Roll Call 150: yeas 83, nays 0",2024-02-15,"['passage', 'reading-2']",IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Senator Randolph added as cosponsor,2024-02-19,[],IN,2024 +"Third reading: passed; Roll Call 256: yeas 48, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 26: yeas 38, nays 10",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 209: yeas 48, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Senator Randolph added as cosponsor,2024-02-20,[],IN,2024 +Representatives Steuerwald and Jeter added as cosponsors,2024-02-22,[],IN,2024 +Returned to the Senate without amendments,2024-02-21,['receipt'],IN,2024 +Representative Andrade added as cosponsor,2024-02-19,[],IN,2024 +Placed back on second reading,2024-02-20,[],IN,2024 +Senator Bohacek added as second sponsor,2024-02-20,[],IN,2024 +Senator Randolph added as cosponsor,2024-03-04,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-13,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 253: yeas 48, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 189: yeas 47, nays 1",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-02-05,['reading-2'],IN,2024 +Returned to the Senate without amendments,2024-02-28,['receipt'],IN,2024 +Senator Leising added as second sponsor,2024-02-20,[],IN,2024 +Referred to the House,2024-01-26,['referral'],IN,2024 +Second reading: ordered engrossed,2024-02-05,['reading-2'],IN,2024 +Amendment #2 (Johnson T) prevailed; voice vote,2024-02-27,['amendment-passage'],IN,2024 +"Amendment #1 (DeLaney) failed; Roll Call 151: yeas 27, nays 54",2024-02-15,"['amendment-failure', 'failure']",IN,2024 +Senator Bohacek removed as second sponsor,2024-02-29,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-20,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Senator Bassler added as coauthor,2024-01-18,[],IN,2024 +Second reading: ordered engrossed,2024-02-27,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Cosponsor: Representative Abbott,2024-02-05,[],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +First reading: referred to Committee on Ways and Means,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Representatives Abbott D and Soliday added as coauthors,2024-01-18,[],IN,2024 +Senator Randolph added as cosponsor,2024-02-15,[],IN,2024 +First reading: referred to Committee on Judiciary,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senator Goode added as second sponsor,2024-02-12,[],IN,2024 +"Amendment #3 (Gaskill) prevailed; Division of the Senate: yeas 39, nays 8",2024-02-27,['amendment-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 167: yeas 49, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-02-27,['reading-2'],IN,2024 +Senator Crane added as cosponsor,2024-02-15,[],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-27,['reading-2'],IN,2024 +First reading: referred to Committee on Ways and Means,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative Snow,2024-02-06,[],IN,2024 +Amendment #2 (Charbonneau) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-13,['committee-passage'],IN,2024 +Amendment #1 (Behning) prevailed; voice vote,2024-02-26,['amendment-passage'],IN,2024 +"Third reading: passed; Roll Call 202: yeas 49, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Cosponsors: Representatives Teshka and Bauer M,2024-02-05,[],IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Second reading: amended, ordered engrossed",2024-02-01,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-02-15,['reading-2'],IN,2024 +Senator Freeman added as second sponsor,2024-02-19,[],IN,2024 +Cosponsors: Representatives Negele and Greene,2024-02-05,[],IN,2024 +"Third reading: passed; Roll Call 166: yeas 48, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Representative Fleming added as cosponsor,2024-02-15,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-29,['reading-2'],IN,2024 +Senator Becker removed as second sponsor,2024-02-12,[],IN,2024 +Second reading: ordered engrossed,2024-02-05,['reading-2'],IN,2024 +Referred to the Senate,2024-02-01,['referral'],IN,2024 +Senator Johnson T added as second sponsor,2024-02-13,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"Amendment #3 (Raatz) prevailed; Division of the Senate: yeas 32, nays 7",2024-03-04,['amendment-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-27,['reading-2'],IN,2024 +Senator Becker removed as third author,2024-02-05,[],IN,2024 +Cosponsor: Representative Cherry,2024-02-06,[],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 223: yeas 47, nays 0",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-01-25,['reading-2'],IN,2024 +Representative McNamara added as cosponsor,2024-02-22,[],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Senator Buck added as coauthor,2024-01-22,[],IN,2024 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2024-02-15,"['committee-passage', 'referral-committee']",IN,2024 +House sponsor: Representative Carbaugh,2024-02-06,[],IN,2024 +"Third reading: passed; Roll Call 194: yeas 40, nays 9",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Glick added as second sponsor,2024-02-22,[],IN,2024 +House sponsor: Representative Lindauer,2024-01-29,[],IN,2024 +Representatives Cash and Pack R added as cosponsors,2024-02-28,[],IN,2024 +"Senators Koch, Leising, Raatz added as cosponsors",2024-02-26,[],IN,2024 +First reading: referred to Committee on Education,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Representative Cherry added as cosponsor,2024-02-15,[],IN,2024 +House sponsor: Representative Culp,2024-02-06,[],IN,2024 +Referred to the Senate,2024-01-30,['referral'],IN,2024 +First reading: referred to Committee on Pensions and Labor,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Second reading: amended, ordered engrossed",2024-02-26,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-29,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +Senator Gaskill added as coauthor,2024-01-22,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-29,['committee-passage'],IN,2024 +Senator Randolph added as coauthor,2024-01-25,[],IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-27,['reading-2'],IN,2024 +Senator Baldwin added as coauthor,2024-02-05,[],IN,2024 +Senator Doriot added as third sponsor,2024-02-26,[],IN,2024 +Returned to the House without amendments,2024-02-21,['receipt'],IN,2024 +Returned to the House with amendments,2024-02-28,['receipt'],IN,2024 +Returned to the Senate without amendments,2024-03-05,['receipt'],IN,2024 +Representative King added as cosponsor,2024-02-19,[],IN,2024 +Senator Pol added as coauthor,2024-02-06,[],IN,2024 +Returned to the House without amendments,2024-02-21,['receipt'],IN,2024 +Committee report: do pass adopted; reassigned to Committee on Appropriations,2024-02-22,"['committee-passage', 'referral-committee']",IN,2024 +Senator Randolph added as cosponsor,2024-02-27,[],IN,2024 +"Third reading: passed; Roll Call 252: yeas 92, nays 0",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 258: yeas 96, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 280: yeas 48, nays 0",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Rules and Legislative Procedures,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Second reading: ordered engrossed,2024-02-15,['reading-2'],IN,2024 +"Amendment #1 (Qaddoura) failed; Roll Call 151: yeas 10, nays 34",2024-02-15,"['amendment-failure', 'failure']",IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +"Third reading: passed; Roll Call 281: yeas 47, nays 1",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 102: yeas 39, nays 9",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +"Cosponsors: Representatives Baird, Prescott, Bartels",2024-01-29,[],IN,2024 +Amendment #1 (Crider) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +Senator Leising added as second author,2024-02-05,[],IN,2024 +Senator Charbonneau added as coauthor,2024-01-18,[],IN,2024 +Returned to the House with amendments,2024-02-21,['receipt'],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senator Doriot added as cosponsor,2024-02-13,[],IN,2024 +"Senators Alexander, Alting, Baldwin, Becker added as coauthors",2024-01-29,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Amendment #1 (Rogers) prevailed; voice vote,2024-02-22,['amendment-passage'],IN,2024 +"Third reading: passed; Roll Call 163: yeas 92, nays 1",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-02-15,[],IN,2024 +Second reading: ordered engrossed,2024-02-22,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 160: yeas 49, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +Senator Dernulc added as coauthor,2024-01-22,[],IN,2024 +Amendment #2 (Pryor) ruled out of order,2024-02-19,[],IN,2024 +Senators Crane and Doriot added as cosponsors,2024-03-04,[],IN,2024 +"Third reading: passed; Roll Call 254: yeas 46, nays 2",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +House sponsor: Representative Lehman,2024-01-23,[],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Amendment #4 (Bassler) prevailed; voice vote,2024-02-26,['amendment-passage'],IN,2024 +Senators Walker G and Taylor G added as cosponsors,2024-02-19,[],IN,2024 +Second reading: ordered engrossed,2024-02-15,['reading-2'],IN,2024 +Senator Randolph added as cosponsor,2024-02-27,[],IN,2024 +Returned to the Senate,2024-02-16,['receipt'],IN,2024 +"Third reading: passed; Roll Call 48: yeas 47, nays 2",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Randolph added as cosponsor,2024-02-27,[],IN,2024 +Senator Alting added as coauthor,2024-02-05,[],IN,2024 +"Cosponsors: Representatives Teshka, McGuire, Jordan",2024-02-06,[],IN,2024 +Senator Randolph added as cosponsor,2024-02-26,[],IN,2024 +"Cosponsors: Representatives VanNatter, Manning, King",2024-02-06,[],IN,2024 +Second reading: ordered engrossed,2024-01-29,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Signed by the President Pro Tempore,2024-02-29,['passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +Referred to the Senate,2024-01-19,['referral'],IN,2024 +Senator Randolph added as cosponsor,2024-02-27,[],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Senator Randolph added as cosponsor,2024-03-04,[],IN,2024 +Senator Goode removed as third sponsor,2024-02-05,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-03-04,['reading-2'],IN,2024 +Senator Crane added as cosponsor,2024-02-15,[],IN,2024 +Placed back on second reading,2024-02-20,[],IN,2024 +"Cosponsors: Representatives Thompson, Davis, Teshka",2024-02-06,[],IN,2024 +First reading: referred to Committee on Pensions and Labor,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 169: yeas 90, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 190: yeas 39, nays 10",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Public Health,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Representatives Fleming and Negele added as cosponsors,2024-02-19,[],IN,2024 +"Third reading: passed; Roll Call 210: yeas 40, nays 8",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the House with amendments,2024-03-01,['receipt'],IN,2024 +Senator Buck added as cosponsor,2024-02-26,[],IN,2024 +Senator Crane added as cosponsor,2024-02-22,[],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 226: yeas 47, nays 0",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 142: yeas 47, nays 1",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Education,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 261: yeas 42, nays 6",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 266: yeas 98, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Representative Klinker added as cosponsor,2024-02-19,[],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Amendment #1 (Bohacek) prevailed; voice vote,2024-02-26,['amendment-passage'],IN,2024 +Senator Messmer added as coauthor,2024-01-22,[],IN,2024 +Senator Rogers added as second sponsor,2024-02-29,[],IN,2024 +Amendment #1 (Deery) prevailed; voice vote,2024-02-26,['amendment-passage'],IN,2024 +Returned to the House with amendments,2024-02-21,['receipt'],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +"Second reading: amended, ordered engrossed",2024-03-04,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-27,['reading-2'],IN,2024 +Representative Bartels added as cosponsor,2024-02-13,[],IN,2024 +Representative Criswell added as cosponsor,2024-02-27,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-26,['reading-2'],IN,2024 +Returned to the House with amendments,2024-02-27,['receipt'],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Referred to the Senate,2024-01-31,['referral'],IN,2024 +Representative Porter added as cosponsor,2024-02-20,[],IN,2024 +Second reading: ordered engrossed,2024-02-22,['reading-2'],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Senator Niezgodski added as cosponsor,2024-02-15,[],IN,2024 +Rule 105.1 suspended,2024-01-23,[],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-02-13,[],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 237: yeas 94, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Senators Holdman, Johnson T, Leising, Messmer added as coauthors",2024-01-22,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-19,['reading-2'],IN,2024 +First reading: referred to Committee on Public Health,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-20,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 214: yeas 93, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Agriculture and Rural Development,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Returned to the Senate without amendments,2024-02-28,['receipt'],IN,2024 +"Third reading: passed; Roll Call 192: yeas 49, nays 0",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #2 (Raatz) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +Returned to the House without amendments,2024-02-27,['receipt'],IN,2024 +Representative Hamilton added as cosponsor,2024-02-13,[],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +"Committee report: do pass, adopted",2024-02-19,['committee-passage'],IN,2024 +Representatives McNamara and Andrade added as cosponsors,2024-02-20,[],IN,2024 +Senator Becker added as coauthor,2024-02-01,[],IN,2024 +Senators Bohacek and Pol added as coauthors,2024-01-25,[],IN,2024 +Senator Randolph added as cosponsor,2024-03-04,[],IN,2024 +Senator Alting added as coauthor,2024-02-01,[],IN,2024 +Senator Pol added as cosponsor,2024-02-22,[],IN,2024 +Motion to concur filed,2024-03-07,['filing'],IN,2024 +Representatives Hamilton and O'Brien added as cosponsors,2024-02-15,[],IN,2024 +Representative Teshka added as sponsor,2024-02-26,[],IN,2024 +Representative Porter added as cosponsor,2024-02-19,[],IN,2024 +Senator Alting added as coauthor,2024-01-29,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 59: yeas 49, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +Representative Bartels added as cosponsor,2024-02-12,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Representative Speedy removed as sponsor,2024-02-19,[],IN,2024 +"Third reading: passed; Roll Call 250: yeas 49, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Randolph added as cosponsor,2024-03-04,[],IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +Senator Randolph removed as coauthor,2024-02-01,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-13,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 19: yeas 48, nays 0",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senators Donato and Becker added as cosponsors,2024-02-19,[],IN,2024 +Senator Crane added as coauthor,2024-01-29,[],IN,2024 +"Third reading: passed; Roll Call 211: yeas 31, nays 17",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 205: yeas 92, nays 4",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Bray removed as second sponsor,2024-02-12,[],IN,2024 +"Senators Johnson T, Brown L, Koch, Raatz added as coauthors",2024-02-01,[],IN,2024 +Senator Goode G added as coauthor,2024-01-25,[],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-02-19,[],IN,2024 +Referred to the Senate,2024-02-01,['referral'],IN,2024 +Returned to the Senate without amendments,2024-03-05,['receipt'],IN,2024 +"Second reading: amended, ordered engrossed",2024-03-04,['reading-2'],IN,2024 +Motion to concur filed,2024-02-28,['filing'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-27,['reading-2'],IN,2024 +Amendment #3 (Leising) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +Senator Vinzant added as cosponsor,2024-02-12,[],IN,2024 +Senator Buck added as coauthor,2024-02-06,[],IN,2024 +Pursuant to Senate Rule 68(b); reassigned to Committee on Appropriations,2024-01-18,['referral-committee'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-29,['reading-2'],IN,2024 +Motion to dissent filed,2024-02-26,['filing'],IN,2024 +"Third reading: passed; Roll Call 212: yeas 47, nays 1",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the House with amendments,2024-03-01,['receipt'],IN,2024 +Amendment #3 (Hunley) prevailed; voice vote,2024-02-27,['amendment-passage'],IN,2024 +"Cosponsors: Representatives Teshka, Carbaugh, McGuire",2024-02-06,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-29,['reading-2'],IN,2024 +Amendment #1 (Carrasco) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +Senator Randolph added as cosponsor,2024-02-20,[],IN,2024 +Returned to the Senate without amendments,2024-02-27,['receipt'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-29,['reading-2'],IN,2024 +Senator Tomes added as second sponsor,2024-02-29,[],IN,2024 +Senator Buck added as second sponsor,2024-02-19,[],IN,2024 +"Cosponsors: Representatives Davis, McGuire, King",2024-02-06,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-13,['committee-passage'],IN,2024 +Senator Randolph added as cosponsor,2024-02-22,[],IN,2024 +"Third reading: passed; Roll Call 222: yeas 91, nays 1",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Senator Ford J.D. added as cosponsor,2024-02-15,[],IN,2024 +Amendment #1 (Holdman) prevailed; voice vote,2024-02-27,['amendment-passage'],IN,2024 +Senator Doriot added as third sponsor,2024-02-22,[],IN,2024 +Representative Prescott added as cosponsor,2024-02-19,[],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Senator Buck added as coauthor,2024-02-06,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +"Senate sponsors: Senators Freeman, Rogers, Raatz",2024-02-05,[],IN,2024 +Second reading: ordered engrossed,2024-02-15,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-19,['reading-2'],IN,2024 +Returned to the Senate without amendments,2024-02-21,['receipt'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-05,['reading-2'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-28,['reading-2'],IN,2024 +Senator Baldwin added as sponsor,2024-02-22,[],IN,2024 +"Third reading: passed; Roll Call 251: yeas 49, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the House,2024-02-02,['referral'],IN,2024 +Senator Niezgodski added as coauthor,2024-02-06,[],IN,2024 +Senate dissented from House amendments,2024-02-26,[],IN,2024 +Second reading: ordered engrossed,2024-02-15,['reading-2'],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +"Third reading: passed; Roll Call 186: yeas 49, nays 0",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Senators Niemeyer, Raatz, Tomes, Walker G added as coauthors",2024-01-22,[],IN,2024 +Senators Taylor G and Glick added as coauthors,2024-01-25,[],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +Senator Raatz added as third sponsor,2024-02-27,[],IN,2024 +Senator Randolph added as coauthor,2024-02-06,[],IN,2024 +Senator Vinzant added as cosponsor,2024-02-15,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-03-04,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 131: yeas 39, nays 9",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Amendment #1 (Pierce M) failed; Roll Call 153: yeas 28, nays 68",2024-02-19,"['amendment-failure', 'failure']",IN,2024 +"Senators Maxwell, Dernulc, Bohacek, Niemeyer added as coauthors",2024-01-25,[],IN,2024 +Representative Ledbetter added as cosponsor,2024-02-15,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-03-04,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 282: yeas 48, nays 0",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the House without amendments,2024-02-21,['receipt'],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +"Second reading: amended, ordered engrossed",2024-03-04,['reading-2'],IN,2024 +Senator Ford J.D. added as cosponsor,2024-02-19,[],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Referred to the House,2024-02-02,['referral'],IN,2024 +Amendment #2 (Holdman) prevailed; voice vote,2024-02-27,['amendment-passage'],IN,2024 +Amendment #1 (Zay) prevailed; voice vote,2024-02-22,['amendment-passage'],IN,2024 +Senator Buck added as third sponsor,2024-02-29,[],IN,2024 +Amendment #2 (Johnson T) prevailed; voice vote,2024-02-19,['amendment-passage'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +"Committee report: do pass, adopted",2024-02-19,['committee-passage'],IN,2024 +Signed by the President Pro Tempore,2024-02-29,['passage'],IN,2024 +"Third reading: passed; Roll Call 263: yeas 48, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Vinzant added as cosponsor,2024-02-19,[],IN,2024 +"Third reading: passed; Roll Call 164: yeas 94, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +Representative McGuire J added as coauthor,2024-01-23,[],IN,2024 +"Third reading: passed; Roll Call 250: yeas 93, nays 0",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Crider added as cosponsor,2024-02-26,[],IN,2024 +Senator Buck added as second sponsor,2024-02-27,[],IN,2024 +"Amendment #1 (Hunley) failed; Roll Call 183: yeas 14, nays 34",2024-02-26,"['amendment-failure', 'failure']",IN,2024 +Signed by the President Pro Tempore,2024-02-29,['passage'],IN,2024 +First reading: referred to Committee on Tax and Fiscal Policy,2024-02-07,"['reading-1', 'referral-committee']",IN,2024 +Referred to the House,2024-02-02,['referral'],IN,2024 +Senators Donato and Becker added as cosponsors,2024-02-15,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +House sponsor: Representative Thompson,2024-01-23,[],IN,2024 +Returned to the House without amendments,2024-02-28,['receipt'],IN,2024 +Returned to the House without amendments,2024-03-05,['receipt'],IN,2024 +Senator Dernulc added as cosponsor,2024-02-19,[],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Senator Goode added as coauthor,2024-01-29,[],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-02-13,[],IN,2024 +Senator Tomes added as coauthor,2024-02-01,[],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Senator Randolph added as cosponsor,2024-03-04,[],IN,2024 +"Third reading: passed; Roll Call 168: yeas 47, nays 2",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Returned to the Senate without amendments,2024-02-27,['receipt'],IN,2024 +"First reading: referred to Committee on Commerce, Small Business and Economic Development",2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +First reading: referred to Committee on Commerce and Technology,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 264: yeas 96, nays 1",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 275: yeas 48, nays 0",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Yoder added as cosponsor,2024-02-15,[],IN,2024 +Representative Pierce K added as sponsor,2024-02-19,[],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 163: yeas 46, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +House sponsor: Representative Abbott,2024-01-30,[],IN,2024 +Senator Randolph added as cosponsor,2024-03-04,[],IN,2024 +"House concurred in Senate amendments; Roll Call 240: yeas 89, nays 0",2024-02-28,[],IN,2024 +Referred to the Senate,2024-02-06,['referral'],IN,2024 +Senator Bohacek added as cosponsor,2024-02-22,[],IN,2024 +First reading: referred to Committee on Education,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 261: yeas 97, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Alexander added as second sponsor,2024-02-19,[],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 187: yeas 49, nays 0",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Pol added as cosponsor,2024-02-13,[],IN,2024 +"Third reading: passed; Roll Call 239: yeas 67, nays 23",2024-02-28,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-02-27,['reading-2'],IN,2024 +Senators Bohacek and Busch added as cosponsors,2024-02-15,[],IN,2024 +Second reading: ordered engrossed,2024-02-15,['reading-2'],IN,2024 +Representatives Jordan and Campbell added as cosponsors,2024-02-19,[],IN,2024 +Senators Alting and Doriot added as coauthors,2024-01-18,[],IN,2024 +Representative Speedy added as cosponsor,2024-02-26,[],IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +Representative Clere added as cosponsor,2024-02-20,[],IN,2024 +Returned to the House without amendments,2024-02-28,['receipt'],IN,2024 +Senator Doriot added as cosponsor,2024-02-29,[],IN,2024 +"House concurred in Senate amendments; Roll Call 315: yeas 88, nays 0",2024-03-07,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-20,['committee-passage'],IN,2024 +Signed by the Speaker,2024-02-27,['passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-26,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 161: yeas 88, nays 6",2024-02-19,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #1 (Miller D) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +Senator Pol added as coauthor,2024-01-22,[],IN,2024 +Amendment #1 (Donato) prevailed; voice vote,2024-02-26,['amendment-passage'],IN,2024 +Motion to dissent filed,2024-03-04,['filing'],IN,2024 +"Amendment #2 (Qaddoura) failed; Roll Call 152: yeas 10, nays 34",2024-02-15,"['amendment-failure', 'failure']",IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Senator Qaddoura added as coauthor,2024-01-29,[],IN,2024 +"Third reading: passed; Roll Call 173: yeas 90, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Senator Rogers added as second sponsor,2024-02-27,[],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Returned to the House with amendments,2024-02-28,['receipt'],IN,2024 +Motion to concur filed,2024-02-28,['filing'],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 160: yeas 91, nays 3",2024-02-19,"['passage', 'reading-3', 'reading-3']",IN,2024 +Representative Fleming added as cosponsor,2024-02-19,[],IN,2024 +Senator Bohacek added as third sponsor,2024-02-29,[],IN,2024 +Returned to the House with amendments,2024-02-21,['receipt'],IN,2024 +Amendment #1 (Thompson) prevailed; voice vote,2024-02-26,['amendment-passage'],IN,2024 +Senator Tomes added as cosponsor,2024-02-26,[],IN,2024 +Signed by the Speaker,2024-02-27,['passage'],IN,2024 +Senator Randolph added as cosponsor,2024-03-04,[],IN,2024 +"Third reading: passed; Roll Call 229: yeas 46, nays 0",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the House without amendments,2024-02-28,['receipt'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-29,['committee-passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +Returned to the Senate without amendments,2024-02-21,['receipt'],IN,2024 +Senator Randolph added as cosponsor,2024-02-26,[],IN,2024 +Motion to dissent filed,2024-02-28,['filing'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Returned to the Senate without amendments,2024-02-21,['receipt'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-26,['reading-2'],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-02-22,"['committee-passage', 'referral-committee']",IN,2024 +"Reread second time: amended, ordered engrossed",2024-02-22,['reading-2'],IN,2024 +Returned to the Senate without amendments,2024-03-05,['receipt'],IN,2024 +Senator Randolph added as cosponsor,2024-02-27,[],IN,2024 +"Senators Crider, Charbonneau, Walker K added as coauthors",2024-02-05,[],IN,2024 +"Third reading: passed; Roll Call 220: yeas 43, nays 6",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 218: yeas 90, nays 4",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the Senate with amendments,2024-03-01,['receipt'],IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Senator Bohacek added as second sponsor,2024-03-04,[],IN,2024 +Cosponsors: Representatives Jeter C and Lindauer,2024-01-23,[],IN,2024 +Senator Maxwell added as second sponsor,2024-02-26,[],IN,2024 +Returned to the House without amendments,2024-02-27,['receipt'],IN,2024 +"Third reading: passed; Roll Call 285: yeas 48, nays 0",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +House sponsor: Representative Thompson,2024-02-05,[],IN,2024 +"Senators Glick, Buck, Randolph added as cosponsors",2024-02-20,[],IN,2024 +Amendment #1 (Holdman) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +Senator Randolph added as coauthor,2024-01-22,[],IN,2024 +Senator Carrasco added as cosponsor,2024-02-19,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 165: yeas 46, nays 2",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Randolph added as cosponsor,2024-03-04,[],IN,2024 +Returned to the Senate with amendments,2024-03-05,['receipt'],IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Senator Doriot added as third sponsor,2024-02-05,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Amendment #2 (Freeman) prevailed; voice vote,2024-02-26,['amendment-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-03-04,['reading-2'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Senator Glick added as third author,2024-02-05,[],IN,2024 +Motion to concur filed,2024-02-22,['filing'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 199: yeas 49, nays 0",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 215: yeas 93, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 227: yeas 45, nays 1",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +House sponsor: Representative Barrett,2024-02-06,[],IN,2024 +"House concurred in Senate amendments; Roll Call 288: yeas 89, nays 0",2024-03-06,[],IN,2024 +Rule 105.1 suspended,2024-01-22,[],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Amendment #3 (Pryor) ruled out of order,2024-02-19,[],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-02-22,"['committee-passage', 'referral-committee']",IN,2024 +Senator Crider added as coauthor,2024-01-18,[],IN,2024 +Senator Koch added as cosponsor,2024-02-26,[],IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Returned to the House without amendments,2024-03-01,['receipt'],IN,2024 +Representatives Abbott and Gore added as cosponsors,2024-02-27,[],IN,2024 +Senator Busch added as cosponsor,2024-02-19,[],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +"Third reading: passed; Roll Call 230: yeas 94, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +House sponsor: Representative Lehman,2024-01-29,[],IN,2024 +Representative Zimmerman added as cosponsor,2024-02-19,[],IN,2024 +"Third reading: passed; Roll Call 232: yeas 95, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Tomes added as cosponsor,2024-02-26,[],IN,2024 +"Third reading: passed; Roll Call 55: yeas 49, nays 0",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +House dissented from Senate amendments,2024-03-04,[],IN,2024 +House sponsor: Representative Soliday,2024-01-30,[],IN,2024 +"Third reading: passed; Roll Call 73: yeas 48, nays 1",2024-01-30,"['passage', 'reading-3', 'reading-3']",IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +First reading: referred to Committee on Education,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Amendment #1 (Baldwin) prevailed; voice vote,2024-02-26,['amendment-passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Senator Freeman added as coauthor,2024-02-05,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +"House concurred in Senate amendments; Roll Call 190: yeas 89, nays 0",2024-02-22,[],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +"Third reading: passed; Roll Call 207: yeas 48, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 260: yeas 45, nays 3",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-29,['reading-2'],IN,2024 +"Senators Crane, Tomes, Deery, Zay, Maxwell added as coauthors",2024-01-23,[],IN,2024 +House dissented from Senate amendments,2024-02-29,[],IN,2024 +Referred to the House,2024-01-23,['referral'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-26,['reading-2'],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"First reading: referred to Committee on Employment, Labor and Pensions",2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-29,['reading-2'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Returned to the Senate without amendments,2024-02-20,['receipt'],IN,2024 +Motion to concur filed,2024-02-22,['filing'],IN,2024 +"Amendment #2 (Yoder) failed; Roll Call 249: yeas 11, nays 38",2024-03-04,"['amendment-failure', 'failure']",IN,2024 +"House concurred in Senate amendments; Roll Call 241: yeas 62, nays 29",2024-02-28,[],IN,2024 +"Third reading: passed; Roll Call 205: yeas 48, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Returned to the House with amendments,2024-03-01,['receipt'],IN,2024 +Senator Rogers added as third sponsor,2024-03-04,[],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Senator Doriot added as cosponsor,2024-02-20,[],IN,2024 +Motion to concur filed,2024-03-04,['filing'],IN,2024 +Amendment #1 (Behning) prevailed; voice vote,2024-02-26,['amendment-passage'],IN,2024 +Motion to concur filed,2024-03-06,['filing'],IN,2024 +Senator Zay added as third sponsor,2024-02-26,[],IN,2024 +"Third reading: passed; Roll Call 225: yeas 46, nays 1",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Senator Rogers added as cosponsor,2024-02-19,[],IN,2024 +"Third reading: passed; Roll Call 158: yeas 89, nays 2",2024-02-19,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Representative Porter added as cosponsor,2024-02-20,[],IN,2024 +Returned to the House without amendments,2024-02-27,['receipt'],IN,2024 +Second reading: ordered engrossed,2024-02-15,['reading-2'],IN,2024 +"House concurred in Senate amendments; Roll Call 283: yeas 90, nays 0",2024-03-05,[],IN,2024 +Returned to the Senate with amendments,2024-02-21,['receipt'],IN,2024 +"Amendment #2 (Ford J.D.) failed; Roll Call 180: yeas 12, nays 37",2024-02-26,"['amendment-failure', 'failure']",IN,2024 +Motion to concur filed,2024-03-06,['filing'],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-26,['committee-passage'],IN,2024 +Representative Criswell added as cosponsor,2024-02-19,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-26,['reading-2'],IN,2024 +Senator Randolph added as coauthor,2024-01-23,[],IN,2024 +Senator Alting added as third sponsor,2024-02-29,[],IN,2024 +Returned to the House without amendments,2024-02-27,['receipt'],IN,2024 +Returned to the House without amendments,2024-03-05,['receipt'],IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +Signed by the President Pro Tempore,2024-02-29,['passage'],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +"Third reading: passed; Roll Call 259: yeas 92, nays 4",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 195: yeas 49, nays 0",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Rogers added as second sponsor,2024-02-22,[],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +Cosponsors: Representatives Goodrich and Snow,2024-02-05,[],IN,2024 +First reading: referred to Committee on Education,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 221: yeas 49, nays 0",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Doriot added as third sponsor,2024-02-26,[],IN,2024 +Amendment #1 (Brown L) prevailed; voice vote,2024-02-22,['amendment-passage'],IN,2024 +"Third reading: passed; Roll Call 171: yeas 49, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Randolph added as cosponsor,2024-02-22,[],IN,2024 +"Third reading: passed; Roll Call 277: yeas 39, nays 9",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Natural Resources,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 147: yeas 32, nays 17",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Randolph added as cosponsor,2024-03-04,[],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Senator Becker added as coauthor,2024-02-05,[],IN,2024 +"Third reading: passed; Roll Call 167: yeas 93, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Natural Resources,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Returned to the House with amendments,2024-03-01,['receipt'],IN,2024 +Representatives Karickhoff and Lindauer added as coauthors,2024-01-22,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-29,['committee-passage'],IN,2024 +Senators Crane and Raatz added as coauthors,2024-01-18,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"Third reading: passed; Roll Call 230: yeas 44, nays 2",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Amendment #1 (Meltzer) prevailed; Division of the House: yeas 64, nays 29",2024-02-29,['amendment-passage'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Cosponsors: Representatives Jeter and Pierce K,2024-01-29,[],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +Second reading: ordered engrossed,2024-02-22,['reading-2'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Senator Rogers added as cosponsor,2024-02-19,[],IN,2024 +Senator Randolph added as cosponsor,2024-02-20,[],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +"Senators Raatz, Zay, Busch, Byrne added as coauthors",2024-01-25,[],IN,2024 +Senator Ford J.D. added as third sponsor,2024-02-27,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-22,['reading-2'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Rule 105.1 suspended,2024-02-20,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-27,['reading-2'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Senator Becker added as cosponsor,2024-02-26,[],IN,2024 +Senator Randolph added as cosponsor,2024-03-04,[],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +"Third reading: passed; Roll Call 231: yeas 94, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Representative Lehman added as cosponsor,2024-02-19,[],IN,2024 +Cosponsors: Representatives Zent and Judy,2024-01-30,[],IN,2024 +Returned to the Senate with amendments,2024-03-05,['receipt'],IN,2024 +Representative Speedy added as cosponsor,2024-02-19,[],IN,2024 +Returned to the House without amendments,2024-03-05,['receipt'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 217: yeas 47, nays 2",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Representative Lucas removed as cosponsor,2024-02-05,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-29,['committee-passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Senator Pol added as cosponsor,2024-02-19,[],IN,2024 +Signed by the President Pro Tempore,2024-02-29,['passage'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Senator Zay added as cosponsor,2024-02-13,[],IN,2024 +Senator Donato added as coauthor,2024-01-18,[],IN,2024 +First reading: referred to Committee on Education,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +House conferees appointed: Engleman and Boy,2024-02-29,[],IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +"Third reading: passed; Roll Call 288: yeas 48, nays 0",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 273: yeas 40, nays 7",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Alting added as cosponsor,2024-02-29,[],IN,2024 +Returned to the House without amendments,2024-02-20,['receipt'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Amendment #3 (Walker G) prevailed; voice vote,2024-02-22,['amendment-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Senator Hunley added as cosponsor,2024-02-15,[],IN,2024 +First reading: referred to Committee on Education,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Motion to dissent filed,2024-02-28,['filing'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +House sponsor: Representative Behning,2024-02-06,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-29,['committee-passage'],IN,2024 +Senator Alting added as cosponsor,2024-02-29,[],IN,2024 +Returned to the House without amendments,2024-02-27,['receipt'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"Representatives Abbott D, Aylesworth, Baird, Bartels, Carbaugh, Cash B, Cherry, Clere, Criswell C, DeVon, Engleman, Genda M, Goss-Reaves, Greene R, Heine, Hostettler, Huston, Jordan, King J, Lauer, Ledbetter C, Lehman, Manning, May, Mayfield, McNamara, Meltzer J, Negele, O'Brien T, Olthoff, Patterson L, Payne Z, Pierce K, Pressel, Schaibley, Steuerwald, Thompson, Zimmerman, Judy added as coauthors",2024-01-23,[],IN,2024 +Motion to concur filed,2024-02-29,['filing'],IN,2024 +Senator Rogers added as coauthor,2024-01-22,[],IN,2024 +Representative Shackleford added as cosponsor,2024-02-22,[],IN,2024 +Senator Randolph added as cosponsor,2024-02-26,[],IN,2024 +"Amendment #3 (Ford J.D.) failed; Roll Call 184: yeas 10, nays 39",2024-02-26,"['amendment-failure', 'failure']",IN,2024 +House conferees appointed: Torr and Bauer M,2024-02-29,[],IN,2024 +Senator Doriot added as cosponsor,2024-02-20,[],IN,2024 +Returned to the Senate without amendments,2024-02-21,['receipt'],IN,2024 +First reading: referred to Committee on Education,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 181: yeas 91, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the Senate with amendments,2024-03-01,['receipt'],IN,2024 +Senator Baldwin added as third sponsor,2024-02-19,[],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Signed by the Speaker,2024-02-27,['passage'],IN,2024 +"Amendment #1 (Pol) failed; Roll Call 181: yeas 18, nays 31",2024-02-26,"['amendment-failure', 'failure']",IN,2024 +"Third reading: passed; Roll Call 262: yeas 47, nays 1",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +First reading: referred to Committee on Natural Resources,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Senators Walker G, Walker K, Gaskill, Maxwell, Bassler added as coauthors",2024-02-01,[],IN,2024 +"House concurred in Senate amendments; Roll Call 284: yeas 84, nays 4",2024-03-05,[],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Cosponsors: Representatives Jordan and Pierce K,2024-01-23,[],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Returned to the Senate with amendments,2024-03-05,['receipt'],IN,2024 +Senator Messmer added as coauthor,2024-01-29,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-19,['reading-2'],IN,2024 +Representative Wesco added as cosponsor,2024-02-20,[],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 157: yeas 87, nays 4",2024-02-19,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Vinzant added as coauthor,2024-01-25,[],IN,2024 +First reading: referred to Committee on Insurance,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +"Third reading: passed; Roll Call 43: yeas 35, nays 14",2024-01-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +House advisors appointed: Meltzer and DeLaney,2024-02-29,[],IN,2024 +"Third reading: passed; Roll Call 169: yeas 49, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Randolph added as coauthor,2024-01-30,[],IN,2024 +House conferees appointed: Zimmerman and Harris,2024-02-29,[],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +"Amendment #1 (Ford J.D.) failed; Roll Call 177: yeas 9, nays 38",2024-02-22,"['amendment-failure', 'failure']",IN,2024 +Amendment #20 (Thompson) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Senator Doriot added as cosponsor,2024-03-05,[],IN,2024 +Representative Porter added as cosponsor,2024-02-27,[],IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +Senator Yoder added as coauthor,2024-02-01,[],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +"Third reading: passed; Roll Call 204: yeas 94, nays 1",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-02-22,"['committee-passage', 'referral-committee']",IN,2024 +Motion to dissent filed,2024-03-04,['filing'],IN,2024 +Senator Ford J.D. added as coauthor,2024-01-18,[],IN,2024 +Returned to the Senate without amendments,2024-02-28,['receipt'],IN,2024 +Senator Randolph added as cosponsor,2024-02-19,[],IN,2024 +Senator Taylor G added as cosponsor,2024-02-20,[],IN,2024 +Representatives Davis and Pfaff added as cosponsors,2024-02-15,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +"Third reading: passed; Roll Call 159: yeas 88, nays 6",2024-02-19,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-02-22,['reading-2'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Signed by the Speaker,2024-02-27,['passage'],IN,2024 +"Third reading: passed; Roll Call 259: yeas 48, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senate dissented from House amendments,2024-02-29,[],IN,2024 +"Third reading: passed; Roll Call 287: yeas 48, nays 0",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Returned to the Senate without amendments,2024-02-20,['receipt'],IN,2024 +Representative Cherry added as cosponsor,2024-02-20,[],IN,2024 +Senators Buck and Doriot added as cosponsors,2024-02-26,[],IN,2024 +Senator Randolph added as cosponsor,2024-02-19,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Referred to the House,2024-01-26,['referral'],IN,2024 +Senator Walker K added as cosponsor,2024-02-19,[],IN,2024 +"Third reading: passed; Roll Call 104: yeas 48, nays 0",2024-02-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Cosponsors: Representatives Davis, Teshka, Heaton",2024-02-06,[],IN,2024 +Representative Summers added as cosponsor,2024-02-20,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Senator Rogers added as cosponsor,2024-03-05,[],IN,2024 +Senators Donato and Busch added as cosponsors,2024-02-29,[],IN,2024 +Motion to concur filed,2024-03-06,['filing'],IN,2024 +Amendment #3 (DeLaney) failed; voice vote,2024-02-22,"['amendment-failure', 'failure']",IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +"Third reading: passed; Roll Call 203: yeas 95, nays 0",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +"House advisors appointed: Jeter, Zimmerman and Garcia Wilburn",2024-02-29,[],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +"Amendment #2 (Ford J.D.) failed; Roll Call 185: yeas 11, nays 38",2024-02-26,"['amendment-failure', 'failure']",IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Returned to the House with amendments,2024-02-21,['receipt'],IN,2024 +"Third reading: passed; Roll Call 228: yeas 46, nays 0",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Referred to the House,2024-01-23,['referral'],IN,2024 +Returned to the House with amendments,2024-02-27,['receipt'],IN,2024 +Concurrence withdrawn,2024-02-29,['withdrawal'],IN,2024 +Senator Randolph added as cosponsor,2024-02-27,[],IN,2024 +"Amendment #1 (Qaddoura) failed; Roll Call 247: yeas 18, nays 31",2024-03-04,"['amendment-failure', 'failure']",IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Returned to the House with amendments,2024-03-01,['receipt'],IN,2024 +Representative Moed added as cosponsor,2024-02-27,[],IN,2024 +"Third reading: passed; Roll Call 26: yeas 80, nays 17",2024-01-23,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the House,2024-01-24,['referral'],IN,2024 +"Third reading: passed; Roll Call 193: yeas 49, nays 0",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Pursuant to Senate Rule 68(b); reassigned to Committee on Rules and Legislative Procedure,2024-02-22,['referral-committee'],IN,2024 +First reading: referred to Committee on Public Policy,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Amendment #2 (Pol) failed; Roll Call 182: yeas 17, nays 32",2024-02-26,"['amendment-failure', 'failure']",IN,2024 +Returned to the Senate without amendments,2024-02-21,['receipt'],IN,2024 +First reading: referred to Committee on Education,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +"Third reading: passed; Roll Call 257: yeas 47, nays 1",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #5 (Baldwin) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +"Third reading: passed; Roll Call 166: yeas 93, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +"House concurred in Senate amendments; Roll Call 287: yeas 92, nays 0",2024-03-06,[],IN,2024 +"Third reading: passed; Roll Call 252: yeas 41, nays 7",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Senators Niemeyer and Walker K added as coauthors,2024-01-23,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +"House concurred in Senate amendments; Roll Call 186: yeas 85, nays 0",2024-02-22,[],IN,2024 +Returned to the House with amendments,2024-02-21,['receipt'],IN,2024 +Returned to the House with amendments,2024-03-01,['receipt'],IN,2024 +Returned to the Senate without amendments,2024-02-20,['receipt'],IN,2024 +Senator Baldwin added as cosponsor,2024-02-26,[],IN,2024 +Returned to the House with amendments,2024-03-01,['receipt'],IN,2024 +"Third reading: passed; Roll Call 262: yeas 96, nays 2",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Returned to the House with amendments,2024-02-27,['receipt'],IN,2024 +Returned to the House with amendments,2024-03-01,['receipt'],IN,2024 +Amendment #2 (Rogers) prevailed; voice vote,2024-02-27,['amendment-passage'],IN,2024 +Senator Crane added as coauthor,2024-01-29,[],IN,2024 +"Cosponsors: Representatives Barrett, Jackson, Hall",2024-01-30,[],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Senator Hunley added as coauthor,2024-02-05,[],IN,2024 +Amendment #2 (Baldwin) prevailed; voice vote,2024-02-26,['amendment-passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +House sponsor: Representative DeVon,2024-01-30,[],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Senate conferees appointed: Brown L and Yoder,2024-03-04,[],IN,2024 +Motion to concur filed,2024-02-28,['filing'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-29,['reading-2'],IN,2024 +Public Law 9,2024-03-11,['became-law'],IN,2024 +Senator Young M added as coauthor,2024-01-18,[],IN,2024 +Rule 105.1 suspended,2024-01-25,[],IN,2024 +Motion to dissent filed,2024-03-04,['filing'],IN,2024 +Amendment #2 (Raatz) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +Returned to the Senate without amendments,2024-02-21,['receipt'],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Senator Byrne added as coauthor,2024-02-05,[],IN,2024 +"House concurred in Senate amendments; Roll Call 289: yeas 92, nays 0",2024-03-06,[],IN,2024 +"Third reading: passed; Roll Call 279: yeas 48, nays 0",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the House without amendments,2024-02-06,['receipt'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Amendment #1 (Buchanan) prevailed; voice vote,2024-02-27,['amendment-passage'],IN,2024 +Senator Randolph added as cosponsor,2024-02-20,[],IN,2024 +"Reread second time: amended, ordered engrossed",2024-02-22,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"Senators Baldwin, Buchanan, Gaskill, Mishler added as coauthors",2024-02-05,[],IN,2024 +Motion to concur filed,2024-03-04,['filing'],IN,2024 +Senator Doriot added as cosponsor,2024-02-26,[],IN,2024 +Returned to the Senate with amendments,2024-03-05,['receipt'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +"Third reading: passed; Roll Call 216: yeas 93, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-20,['committee-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-26,['reading-2'],IN,2024 +Amendment #1 (Moed) motion withdrawn,2024-02-28,"['amendment-withdrawal', 'withdrawal']",IN,2024 +"House concurred in Senate amendments; Roll Call 279: yeas 89, nays 4",2024-03-05,[],IN,2024 +"House concurred in Senate amendments; Roll Call 300: yeas 93, nays 0",2024-03-06,[],IN,2024 +Motion to concur filed,2024-02-26,['filing'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Senator Buck added as cosponsor,2024-02-15,[],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Returned to the Senate without amendments,2024-02-20,['receipt'],IN,2024 +"Third reading: passed; Roll Call 164: yeas 38, nays 10",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +First reading: referred to Committee on Insurance,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"House concurred in Senate amendments; Roll Call 299: yeas 94, nays 0",2024-03-06,[],IN,2024 +Amendment #2 (Hamilton) ruled out of order,2024-02-26,[],IN,2024 +"Senate concurred in House amendments; Roll Call 269: yeas 46, nays 2",2024-03-04,[],IN,2024 +"Senate concurred in House amendments; Roll Call 292: yeas 47, nays 0",2024-03-06,[],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Returned to the House with amendments,2024-02-28,['receipt'],IN,2024 +Second reading: ordered engrossed,2024-03-04,['reading-2'],IN,2024 +Signed by the President Pro Tempore,2024-02-29,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"Third reading: passed; Roll Call 267: yeas 95, nays 3",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +Representative Moseley added as cosponsor,2024-02-15,[],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Motion to concur filed,2024-02-28,['filing'],IN,2024 +Senator Pol added as cosponsor,2024-02-26,[],IN,2024 +House conferees appointed: Pressel and Harris,2024-02-29,[],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Senator Randolph added as cosponsor,2024-02-27,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Signed by the Speaker,2024-02-27,['passage'],IN,2024 +Senator Glick added as cosponsor,2024-02-29,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Motion to dissent filed,2024-03-06,['filing'],IN,2024 +Senator Doriot added as cosponsor,2024-02-29,[],IN,2024 +Referred to the House,2024-01-24,['referral'],IN,2024 +"Appeal the ruling of the chair (Pryor); ruling of the chair sustained Roll Call 154: yeas 67, nays 28",2024-02-19,[],IN,2024 +Senator Tomes added as cosponsor,2024-02-29,[],IN,2024 +Returned to the House with amendments,2024-02-21,['receipt'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Senator Vinzant added as cosponsor,2024-02-26,[],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Senator Tomes added as cosponsor,2024-02-15,[],IN,2024 +Representative Clere added as cosponsor,2024-02-13,[],IN,2024 +"House advisors appointed: Steuerwald, Bartels and Gore",2024-02-29,[],IN,2024 +Senator Glick added as cosponsor,2024-02-26,[],IN,2024 +Returned to the House without amendments,2024-02-21,['receipt'],IN,2024 +"Third reading: passed; Roll Call 257: yeas 94, nays 4",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +House dissented from Senate amendments,2024-03-04,[],IN,2024 +Motion to concur filed,2024-03-06,['filing'],IN,2024 +Representative Bartels added as cosponsor,2024-02-15,[],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Referred to the House,2024-01-24,['referral'],IN,2024 +Public Law 126,2024-03-13,['became-law'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +"Committee report: do pass, adopted",2024-02-29,['committee-passage'],IN,2024 +Public Law 60,2024-03-11,['became-law'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Returned to the House with amendments,2024-02-28,['receipt'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Senators Zay and Byrne added as coauthors,2024-01-18,[],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-27,['reading-2'],IN,2024 +First reading: referred to Committee on Veterans Affairs and Public Safety,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 198: yeas 49, nays 0",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +Motion to concur filed,2024-02-28,['filing'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 208: yeas 34, nays 14",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +"Amendment #4 (DeLaney) prevailed; Roll Call 202: yeas 93, nays 0",2024-02-26,['amendment-passage'],IN,2024 +Signed by the President Pro Tempore,2024-02-27,['passage'],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +Amendment #1 (Behning) prevailed; voice vote,2024-02-26,['amendment-passage'],IN,2024 +Motion to concur filed,2024-02-22,['filing'],IN,2024 +Motion to dissent filed,2024-03-04,['filing'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +House dissented from Senate amendments,2024-03-06,[],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Amendment #2 (Raatz) prevailed; voice vote,2024-02-27,['amendment-passage'],IN,2024 +Returned to the House with amendments,2024-03-01,['receipt'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"Senate concurred in House amendments; Roll Call 295: yeas 45, nays 2",2024-03-06,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-26,['reading-2'],IN,2024 +Referred to Committee on Insurance pursuant to House Rule 84,2024-02-20,[],IN,2024 +"Senate concurred in House amendments; Roll Call 267: yeas 37, nays 11",2024-03-04,[],IN,2024 +Senator Randolph added as cosponsor,2024-03-04,[],IN,2024 +Senator Randolph added as coauthor,2024-01-30,[],IN,2024 +"House concurred in Senate amendments; Roll Call 282: yeas 87, nays 2",2024-03-05,[],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Amendment #1 (Porter) failed; voice vote,2024-02-19,"['amendment-failure', 'failure']",IN,2024 +Motion to concur filed,2024-03-06,['filing'],IN,2024 +"Appeal the ruling of the chair (Pryor); ruling of the chair sustained Roll Call 155: yeas 65, nays 28",2024-02-19,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Senate advisors appointed: Ford J.D. and Charbonneau,2024-03-04,[],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +"Senate concurred in House amendments; Roll Call 233: yeas 43, nays 0",2024-02-29,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +"Third reading: passed; Roll Call 120: yeas 48, nays 0",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the Senate with amendments,2024-03-05,['receipt'],IN,2024 +Public Law 27,2024-03-11,['became-law'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Second reading: ordered engrossed,2024-02-28,['reading-2'],IN,2024 +Signed by the President of the Senate,2024-02-07,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Returned to the Senate with amendments,2024-03-05,['receipt'],IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 217: yeas 94, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Concurrence withdrawn,2024-03-04,['withdrawal'],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-02-15,[],IN,2024 +"Concurrence failed for lack of constitutional majority; Roll Call 240: yeas 20, nays 25",2024-02-29,['failure'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-02-29,['passage'],IN,2024 +Amendment #3 (Raatz) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"Senators Dernulc, Raatz, Yoder added as coauthors",2024-02-05,[],IN,2024 +Signed by the President Pro Tempore,2024-02-29,['passage'],IN,2024 +"Representatives Culp K, Goodrich, Haggard C, Heine, Ledbetter C, Morris, Slager, Sweet L, Torr, VanNatter, Snow C added as coauthors",2024-01-25,[],IN,2024 +"Cosponsors: Representatives McGuire, Patterson, Shackleford",2024-01-30,[],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Amendment #3 (Freeman) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +Senate dissented from House amendments,2024-03-04,[],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +"Third reading: passed; Roll Call 173: yeas 28, nays 21",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Senator Randolph added as cosponsor,2024-02-20,[],IN,2024 +House conferees appointed: Baird and Boy,2024-02-29,[],IN,2024 +Representative Goodrich added as cosponsor,2024-01-29,[],IN,2024 +"Third reading: passed; Roll Call 162: yeas 47, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 161: yeas 48, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Amendment #2 (Ford J.D.) failed; Roll Call 178: yeas 10, nays 37",2024-02-22,"['amendment-failure', 'failure']",IN,2024 +House conferees appointed: Thompson and Pryor,2024-03-05,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Public Law 31,2024-03-11,['became-law'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Senator Randolph added as cosponsor,2024-02-26,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"Third reading: passed; Roll Call 197: yeas 49, nays 0",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Senate conferees appointed: Freeman and Taylor G,2024-02-29,[],IN,2024 +"Third reading: passed; Roll Call 235: yeas 95, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Senator Yoder added as coauthor,2024-01-18,[],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +"Third reading: passed; Roll Call 225: yeas 93, nays 1",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"Committee report: do pass, adopted",2024-02-19,['committee-passage'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Motion to concur filed,2024-02-28,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +House sponsor: Representative Prescott,2024-02-05,[],IN,2024 +"House concurred in Senate amendments; Roll Call 294: yeas 93, nays 0",2024-03-06,[],IN,2024 +"Third reading: passed; Roll Call 219: yeas 47, nays 2",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +House conferees appointed: Clere and Porter,2024-03-06,[],IN,2024 +Second reading: ordered engrossed,2024-03-04,['reading-2'],IN,2024 +Public Law 97,2024-03-13,['became-law'],IN,2024 +First reading: referred to Committee on Ways and Means,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +House sponsor: Representative McGuire,2024-01-29,[],IN,2024 +Representative Torr added as cosponsor,2024-02-15,[],IN,2024 +Returned to the Senate without amendments,2024-02-21,['receipt'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"House advisors appointed: Karickhoff, King, Cherry and Andrade",2024-02-29,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-01,['committee-passage'],IN,2024 +Amendment #19 (Thompson) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Representative Lindauer added as cosponsor,2024-02-22,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-29,['committee-passage'],IN,2024 +Returned to the Senate with amendments,2024-02-27,['receipt'],IN,2024 +Referred to the House,2024-02-02,['referral'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Representative Teshka removed as cosponsor,2024-02-19,[],IN,2024 +"Senate concurred in House amendments; Roll Call 294: yeas 47, nays 0",2024-03-06,[],IN,2024 +Senate dissented from House amendments,2024-03-05,[],IN,2024 +"Third reading: passed; Roll Call 175: yeas 44, nays 5",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Returned to the Senate with amendments,2024-02-20,['receipt'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +"Third reading: passed; Roll Call 170: yeas 90, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Randolph added as cosponsor,2024-02-26,[],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +"Third reading: passed; Roll Call 172: yeas 91, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +First reading: referred to Committee on Local Government,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-02-15,[],IN,2024 +"House concurred in Senate amendments; Roll Call 301: yeas 95, nays 0",2024-03-06,[],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Returned to the Senate without amendments,2024-02-27,['receipt'],IN,2024 +Second reading: ordered engrossed,2024-02-22,['reading-2'],IN,2024 +Motion to dissent filed,2024-02-29,['filing'],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Motion to dissent filed,2024-02-29,['filing'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Senator Doriot added as cosponsor,2024-02-29,[],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +"Senate sponsors: Senators Raatz, Garten, Rogers",2024-01-23,[],IN,2024 +Committee report: Pursuant to Senate Rule 66(b); approved by Rules Committee as amended by Senate Committee on Tax and Fiscal Policy.,2024-02-26,[],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-02-29,['passage'],IN,2024 +Returned to the House without amendments,2024-02-21,['receipt'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Amendment #16 (Thompson) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +Public Law 61,2024-03-11,['became-law'],IN,2024 +"House concurred in Senate amendments; Roll Call 293: yeas 74, nays 19",2024-03-06,[],IN,2024 +Public Law 68,2024-03-11,['became-law'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Senate dissented from House amendments,2024-02-29,[],IN,2024 +Amendment #1 (Baldwin) prevailed; voice vote,2024-02-27,['amendment-passage'],IN,2024 +Motion to dissent filed,2024-03-06,['filing'],IN,2024 +First reading: referred to Committee on Education,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Second reading: amended, ordered engrossed",2024-02-22,['reading-2'],IN,2024 +Motion to concur filed,2024-03-06,['filing'],IN,2024 +Senator Carrasco added as cosponsor,2024-02-19,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +First reading: referred to Committee on Natural Resources,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Returned to the Senate without amendments,2024-02-21,['receipt'],IN,2024 +Public Law 53,2024-03-11,['became-law'],IN,2024 +Senator Young M removed as coauthor,2024-01-29,[],IN,2024 +Signed by the Speaker,2024-02-27,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +"Third reading: passed; Roll Call 176: yeas 91, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Senator Becker added as cosponsor,2024-02-26,[],IN,2024 +Amendment #5 (Freeman) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +Returned to the House without amendments,2024-03-01,['receipt'],IN,2024 +Returned to the Senate without amendments,2024-02-21,['receipt'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Rule 105.1 suspended,2024-02-22,[],IN,2024 +"Third reading: passed; Roll Call 274: yeas 42, nays 6",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +Senators Buck and Zay added as coauthors,2024-01-22,[],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Senators Alting and Doriot added as cosponsors,2024-02-20,[],IN,2024 +"House advisors appointed: Abbott, Prescott and Jackson",2024-02-29,[],IN,2024 +Amendment #2 (Pol) failed; voice vote,2024-03-04,"['amendment-failure', 'failure']",IN,2024 +Senate dissented from House amendments,2024-02-29,[],IN,2024 +Signed by the President Pro Tempore,2024-02-29,['passage'],IN,2024 +"House concurred in Senate amendments; Roll Call 280: yeas 77, nays 18",2024-03-05,[],IN,2024 +Returned to the House with amendments,2024-02-21,['receipt'],IN,2024 +"House advisors appointed: Judy, Clere, Cherry, Snow and Porter",2024-03-05,[],IN,2024 +Public Law 38,2024-03-11,['became-law'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Motion to concur filed,2024-02-27,['filing'],IN,2024 +House conferees appointed: Pressel and Harris,2024-03-05,[],IN,2024 +Returned to the House with amendments,2024-02-21,['receipt'],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Returned to the House with amendments,2024-03-01,['receipt'],IN,2024 +"House concurred in Senate amendments; Roll Call 242: yeas 87, nays 0",2024-02-28,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +"House advisors appointed: Barrett, King, Goss-Reaves and Campbell",2024-03-06,[],IN,2024 +Public Law 62,2024-03-11,['became-law'],IN,2024 +"Third reading: passed; Roll Call 234: yeas 95, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +House conferees appointed: Carbaugh and Bartlett,2024-03-04,[],IN,2024 +"House concurred in Senate amendments; Roll Call 275: yeas 93, nays 0",2024-03-05,[],IN,2024 +Third reading: call withdrawn,2024-02-26,"['reading-3', 'withdrawal']",IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Returned to the House without amendments,2024-02-21,['receipt'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-02-29,['passage'],IN,2024 +Motion to concur filed,2024-02-26,['filing'],IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +Motion to concur filed,2024-02-29,['filing'],IN,2024 +Returned to the Senate without amendments,2024-02-28,['receipt'],IN,2024 +Public Law 77,2024-03-12,['became-law'],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-02-19,[],IN,2024 +Returned to the House with amendments,2024-02-27,['receipt'],IN,2024 +Returned to the House without amendments,2024-02-27,['receipt'],IN,2024 +Senate advisors appointed: Pol and Alexander,2024-02-29,[],IN,2024 +Amendment #2 (Behning) prevailed; voice vote,2024-02-19,['amendment-passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Senator Pol added as cosponsor,2024-02-20,[],IN,2024 +Referred to the Senate,2024-01-24,['referral'],IN,2024 +"Third reading: passed; Roll Call 222: yeas 34, nays 13",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +First reading: referred to Committee on Judiciary,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 213: yeas 33, nays 15",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Cosponsors: Representatives Rowray, Zimmerman, Hamilton",2024-02-05,[],IN,2024 +Second reading: ordered engrossed,2024-02-05,['reading-2'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +"Amendment #1 (Hunley) failed; Roll Call 248: yeas 10, nays 39",2024-03-04,"['amendment-failure', 'failure']",IN,2024 +Public Law 7,2024-03-11,['became-law'],IN,2024 +Motion to dissent filed,2024-03-04,['filing'],IN,2024 +Senator Buck added as cosponsor,2024-02-27,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"Third reading: passed; Roll Call 251: yeas 93, nays 0",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +"House concurred in Senate amendments; Roll Call 285: yeas 89, nays 0",2024-03-05,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Motion to concur filed,2024-03-04,['filing'],IN,2024 +House conferees appointed: Carbaugh and Shackleford,2024-03-06,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +"Senate concurred in House amendments; Roll Call 293: yeas 44, nays 3",2024-03-06,[],IN,2024 +Public Law 67,2024-03-11,['became-law'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +House conferees appointed: Barrett and Fleming,2024-03-04,[],IN,2024 +Public Law 143,2024-03-13,['became-law'],IN,2024 +Motion to dissent filed,2024-03-04,['filing'],IN,2024 +Motion to dissent filed,2024-02-21,['filing'],IN,2024 +Amendment #8 (Busch) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Representative Judy added as cosponsor,2024-02-06,[],IN,2024 +Returned to the Senate with amendments,2024-03-05,['receipt'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +House dissented from Senate amendments,2024-03-05,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Senator Niezgodski added as coauthor,2024-01-22,[],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +"Third reading: passed; Roll Call 157: yeas 31, nays 18",2024-02-19,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +First reading: referred to Committee on Public Health,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Senate conferees appointed: Johnson T and Randolph Lonnie M,2024-03-04,[],IN,2024 +Senate conferees appointed: Crider and Vinzant,2024-02-29,[],IN,2024 +Returned to the House without amendments,2024-02-27,['receipt'],IN,2024 +First reading: referred to Committee on Education and Career Development,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +"Third reading: passed; Roll Call 204: yeas 48, nays 1",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Johnson T added as coauthor,2024-02-05,[],IN,2024 +"Third reading: passed; Roll Call 171: yeas 81, nays 10",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-02-15,[],IN,2024 +"House concurred in Senate amendments; Roll Call 311: yeas 83, nays 0",2024-03-07,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Concurrence rescinded,2024-02-29,[],IN,2024 +Motion to concur filed,2024-03-06,['filing'],IN,2024 +Returned to the Senate without amendments,2024-02-28,['receipt'],IN,2024 +Representative Porter added as cosponsor,2024-02-15,[],IN,2024 +Signed by the Speaker,2024-02-07,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Representative Jackson added as cosponsor,2024-02-19,[],IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +Amendment #5 (Raatz) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +Public Law 57,2024-03-11,['became-law'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +House sponsor: Representative Teshka,2024-02-06,[],IN,2024 +"House concurred in Senate amendments; Roll Call 310: yeas 80, nays 0",2024-03-07,[],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Amendment #3 (DeLaney) ruled out of order,2024-02-26,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Senator Rogers added as cosponsor,2024-03-04,[],IN,2024 +"House concurred in Senate amendments; Roll Call 292: yeas 69, nays 24",2024-03-06,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-27,['reading-2'],IN,2024 +House dissented from Senate amendments,2024-03-04,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Public Law 118,2024-03-13,['became-law'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-19,['committee-passage'],IN,2024 +Signed by the Speaker,2024-02-27,['passage'],IN,2024 +"Senators Messmer, Freeman, Gaskill added as cosponsors",2024-02-26,[],IN,2024 +Returned to the House with amendments,2024-02-27,['receipt'],IN,2024 +"Third reading: passed; Roll Call 218: yeas 31, nays 18",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the Speaker,2024-02-27,['passage'],IN,2024 +Senator Becker added as coauthor,2024-01-30,[],IN,2024 +"House concurred in Senate amendments; Roll Call 274: yeas 93, nays 0",2024-03-05,[],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Representative Hall added as cosponsor,2024-02-20,[],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +"Third reading: passed; Roll Call 269: yeas 66, nays 31",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Amendment #2 (Teshka) prevailed; voice vote,2024-02-26,['amendment-passage'],IN,2024 +First reading: referred to Committee on Ways and Means,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +"House concurred in Senate amendments; Roll Call 244: yeas 87, nays 0",2024-02-28,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Senator Pol removed as coauthor,2024-03-04,[],IN,2024 +"House concurred in Senate amendments; Roll Call 188: yeas 88, nays 0",2024-02-22,[],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Returned to the House with amendments,2024-02-20,['receipt'],IN,2024 +Senate dissented from House amendments,2024-03-04,[],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +"House concurred in Senate amendments; Roll Call 298: yeas 93, nays 0",2024-03-06,[],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Senator Tomes added as cosponsor,2024-02-26,[],IN,2024 +Signed by the President Pro Tempore,2024-02-07,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Senate dissented from House amendments,2024-03-05,[],IN,2024 +Public Law 89,2024-03-12,['became-law'],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +House dissented from Senate amendments,2024-03-04,[],IN,2024 +Senate dissented from House amendments,2024-03-05,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +"House advisors appointed: Ledbetter, Goss-Reaves, Manning and Shackleford",2024-03-04,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-26,['reading-2'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Returned to the House with amendments,2024-02-28,['receipt'],IN,2024 +"House advisors appointed: Schaibley, Lehman and Porter",2024-03-06,[],IN,2024 +"Cosponsors: Representatives Behning, Davis, Speedy",2024-02-06,[],IN,2024 +"First reading: referred to Committee on Utilities, Energy and Telecommunications",2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Representative Hamilton added as cosponsor,2024-02-19,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +"Third reading: passed; Roll Call 178: yeas 65, nays 26",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Committee report: do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Signed by the Speaker,2024-02-27,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +"Senate concurred in House amendments; Roll Call 266: yeas 48, nays 0",2024-03-04,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Public Law 26,2024-03-11,['became-law'],IN,2024 +"Third reading: passed; Roll Call 289: yeas 30, nays 18",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 216: yeas 49, nays 0",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-02-26,['reading-2'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-02-19,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Amendment #7 (Raatz) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +"Senators Buchanan, Deery, Gaskill added as cosponsors",2024-02-29,[],IN,2024 +Returned to the Senate with amendments,2024-03-05,['receipt'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +House conferees appointed: Thompson and Porter,2024-03-05,[],IN,2024 +Public Law 16,2024-03-11,['became-law'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Referred to the House,2024-01-23,['referral'],IN,2024 +Motion to concur filed,2024-02-28,['filing'],IN,2024 +Public Law 80,2024-03-12,['became-law'],IN,2024 +"House concurred in Senate amendments; Roll Call 276: yeas 93, nays 2",2024-03-05,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Returned to the Senate with amendments,2024-03-01,['receipt'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +House conferees appointed: Pressel and Johnson B,2024-03-05,[],IN,2024 +Representative Bartels added as cosponsor,2024-02-26,[],IN,2024 +Senate conferees appointed: Gaskill and Hunley,2024-03-04,[],IN,2024 +Signed by the President of the Senate,2024-02-28,['passage'],IN,2024 +Second reading: ordered engrossed,2024-02-19,['reading-2'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +First reading: referred to Committee on Government and Regulatory Reform,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Senate advisors appointed: Qaddoura and Busch,2024-03-04,[],IN,2024 +Public Law 52,2024-03-11,['became-law'],IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +Amendment #2 (Hunley) failed; voice vote,2024-03-04,"['amendment-failure', 'failure']",IN,2024 +Senate advisors appointed: Taylor G and Messmer,2024-02-29,[],IN,2024 +Returned to the Senate with amendments,2024-02-21,['receipt'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Amendment #9 (Brown L) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +Senator Donato added as second sponsor,2024-02-05,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Public Law 43,2024-03-11,['became-law'],IN,2024 +Returned to the House with amendments,2024-02-28,['receipt'],IN,2024 +Senator Niezgodski added as coauthor,2024-02-05,[],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Representative Cash added as cosponsor,2024-02-19,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +"Third reading: passed; Roll Call 179: yeas 90, nays 1",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +House dissented from Senate amendments,2024-02-22,[],IN,2024 +Motion to dissent filed,2024-02-29,['filing'],IN,2024 +Amendment #14 (Clere) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +Senator Niezgodski added as coauthor,2024-01-22,[],IN,2024 +Motion to concur filed,2024-02-28,['filing'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-02-29,['passage'],IN,2024 +Returned to the House without amendments,2024-03-01,['receipt'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +House conferees appointed: Behning and Pfaff,2024-03-06,[],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Representative Negele added as cosponsor,2024-02-22,[],IN,2024 +First reading: referred to Committee on Health and Provider Services,2024-02-05,"['reading-1', 'referral-committee']",IN,2024 +House dissented from Senate amendments,2024-03-06,[],IN,2024 +"Third reading: passed; Roll Call 175: yeas 83, nays 8",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Public Law 130,2024-03-13,['became-law'],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"Third reading: passed; Roll Call 188: yeas 40, nays 9",2024-02-26,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +"Senate concurred in House amendments; Roll Call 234: yeas 38, nays 6",2024-02-29,[],IN,2024 +Motion to dissent filed,2024-03-04,['filing'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Public Law 42,2024-03-11,['became-law'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Motion to concur filed,2024-02-28,['filing'],IN,2024 +House dissented from Senate amendments,2024-03-06,[],IN,2024 +Representative Bartels added as cosponsor,2024-02-20,[],IN,2024 +Senator Young M added as second author,2024-01-29,[],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Senator Baldwin added as coauthor,2024-02-05,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Public Law 66,2024-03-11,['became-law'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-19,['reading-2'],IN,2024 +Amendment #13 (Teshka) prevailed; voice vote,2024-02-26,['amendment-passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +House dissented from Senate amendments,2024-03-05,[],IN,2024 +Motion to concur filed,2024-02-28,['filing'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +Senator Buck added as cosponsor,2024-02-27,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Returned to the Senate with amendments,2024-02-21,['receipt'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +"House advisors appointed: VanNatter, Behning, Lyness and Moseley",2024-03-04,[],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Senator Randolph added as cosponsor,2024-02-26,[],IN,2024 +"House concurred in Senate amendments; Roll Call 290: yeas 92, nays 0",2024-03-06,[],IN,2024 +Amendment #8 (Freeman) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +"House concurred in Senate amendments; Roll Call 296: yeas 71, nays 24",2024-03-06,[],IN,2024 +"Third reading: passed; Roll Call 212: yeas 60, nays 35",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Senators Dernulc, Qaddoura, Donato added as coauthors",2024-02-05,[],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Senator Tomes added as cosponsor,2024-02-19,[],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +House conferees appointed: Jeter and Pierce M,2024-03-04,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Concurrence withdrawn,2024-02-29,['withdrawal'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +"House advisors appointed: Lindauer, Lauer and Johnson B",2024-03-05,[],IN,2024 +Senate conferees appointed: Leising and Qaddoura,2024-02-29,[],IN,2024 +Amendment #1 (Pol) failed; voice vote,2024-03-04,"['amendment-failure', 'failure']",IN,2024 +Returned to the House with amendments,2024-02-21,['receipt'],IN,2024 +"Minority report (DeLaney) not substituted for majority report Roll Call 183: yeas 28, nays 58",2024-02-22,[],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-27,['reading-2'],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Signed by the Speaker,2024-02-27,['passage'],IN,2024 +Senate conferees appointed: Brown L and Pol,2024-02-29,[],IN,2024 +Senator Becker added as cosponsor,2024-02-20,[],IN,2024 +"Senate concurred in House amendments; Roll Call 231: yeas 40, nays 5",2024-02-29,[],IN,2024 +"House concurred in Senate amendments; Roll Call 291: yeas 92, nays 0",2024-03-06,[],IN,2024 +Public Law 29,2024-03-11,['became-law'],IN,2024 +Public Law 49,2024-03-11,['became-law'],IN,2024 +"Third reading: passed; Roll Call 159: yeas 38, nays 11",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Public Law 45,2024-03-11,['became-law'],IN,2024 +"Amendment #1 (Hamilton) failed; Roll Call 156: yeas 28, nays 64",2024-02-19,"['amendment-failure', 'failure']",IN,2024 +Motion to dissent filed,2024-02-29,['filing'],IN,2024 +Motion to concur filed,2024-02-26,['filing'],IN,2024 +Senate conferees appointed: Holdman and Qaddoura,2024-03-05,[],IN,2024 +"House concurred in Senate amendments; Roll Call 245: yeas 66, nays 20",2024-02-28,[],IN,2024 +Senate advisors appointed: Taylor G and Raatz,2024-02-29,[],IN,2024 +Motion to concur filed,2024-02-28,['filing'],IN,2024 +Senator Crane added as cosponsor,2024-02-27,[],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-03-04,['reading-2'],IN,2024 +Senate conferees appointed: Messmer and Vinzant,2024-03-05,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Motion to concur filed,2024-02-22,['filing'],IN,2024 +Senate conferees appointed: Brown L and Taylor G,2024-03-05,[],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +Senator Randolph added as coauthor,2024-01-25,[],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Public Law 74,2024-03-12,['became-law'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Senator Yoder added as coauthor,2024-02-05,[],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +House conferees appointed: Manning and Porter,2024-02-29,[],IN,2024 +Returned to the House without amendments,2024-02-27,['receipt'],IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Returned to the Senate without amendments,2024-02-21,['receipt'],IN,2024 +Representative Lindauer added as cosponsor,2024-02-22,[],IN,2024 +House conferees appointed: Lindauer and Boy,2024-03-06,[],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +"Third reading: passed; Roll Call 215: yeas 42, nays 7",2024-02-29,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #7 (Raatz) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"House advisors appointed: Davis, McGuire, DeLaney, Klinker and Smith V",2024-03-06,[],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Pursuant to Senate Rule 68(b); reassigned to Committee on Education and Career Development,2024-02-05,['referral-committee'],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Public Law 87,2024-03-12,['became-law'],IN,2024 +"Committee report: amend do pass, adopted Roll Call 184: yeas 59, nays 28",2024-02-22,['committee-passage'],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +"Amendment #8 (DeLaney) failed; Roll Call 192: yeas 36, nays 56",2024-02-26,"['amendment-failure', 'failure']",IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +"Amendment #10 (DeLaney) prevailed; Roll Call 248: yeas 92, nays 0",2024-02-29,['amendment-passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +House dissented from Senate amendments,2024-03-04,[],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +"House concurred in Senate amendments; Roll Call 278: yeas 91, nays 0",2024-03-05,[],IN,2024 +Senate advisors appointed: Randolph Lonnie M and Carrasco,2024-02-29,[],IN,2024 +"Third reading: passed; Roll Call 209: yeas 95, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +"House advisors appointed: Bartels, Miller D, Gore and Shackleford",2024-03-04,[],IN,2024 +Public Law 50,2024-03-11,['became-law'],IN,2024 +Returned to the House with amendments,2024-02-27,['receipt'],IN,2024 +Senator Buck added as coauthor,2024-01-29,[],IN,2024 +"House concurred in Senate amendments; Roll Call 243: yeas 87, nays 0",2024-02-28,[],IN,2024 +Senate conferees appointed: Bohacek and Ford J.D.,2024-03-06,[],IN,2024 +Senator Carrasco added as cosponsor,2024-02-20,[],IN,2024 +"Committee report: do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Senator Busch added as coauthor,2024-02-05,[],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Public Law 2,2024-03-04,['became-law'],IN,2024 +Returned to the House with amendments,2024-03-01,['receipt'],IN,2024 +"Third reading: passed; Roll Call 145: yeas 46, nays 3",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +"House advisors appointed: Miller D, May, Hall, Bauer M and Errington",2024-03-05,[],IN,2024 +House dissented from Senate amendments,2024-03-05,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Representative Pierce K removed as cosponsor,2024-02-12,[],IN,2024 +Amendment #4 (Pol) failed; voice vote,2024-03-04,"['amendment-failure', 'failure']",IN,2024 +Amendment #8 (Raatz) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Second reading: ordered engrossed,2024-03-04,['reading-2'],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Senate dissented from House amendments,2024-02-29,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Senate conferees appointed: Gaskill and Taylor G,2024-03-05,[],IN,2024 +House conferees appointed: Teshka and Moed,2024-02-29,[],IN,2024 +Senate advisors appointed: Ford J.D. and Rogers,2024-03-04,[],IN,2024 +"Third reading: passed; Roll Call 174: yeas 92, nays 0",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +"Third reading: passed; Roll Call 229: yeas 93, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Public Law 73,2024-03-12,['became-law'],IN,2024 +Motion to concur filed,2024-02-22,['filing'],IN,2024 +Senator Raatz added as cosponsor,2024-02-29,[],IN,2024 +Public Law 55,2024-03-11,['became-law'],IN,2024 +Motion to concur filed,2024-02-26,['filing'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Public Law 1,2024-02-12,['became-law'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +House conferees appointed: Carbaugh and Fleming,2024-03-04,[],IN,2024 +Returned to the Senate with amendments,2024-02-21,['receipt'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Senator Donato removed as second sponsor,2024-02-15,[],IN,2024 +House conferees appointed: King and Shackleford,2024-03-04,[],IN,2024 +House conferees appointed: McNamara and Hatcher,2024-03-05,[],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Senate conferees appointed: Buck and Pol,2024-03-05,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-15,['committee-passage'],IN,2024 +Public Law 84,2024-03-12,['became-law'],IN,2024 +Public Law 86,2024-03-12,['became-law'],IN,2024 +Senate conferees appointed: Baldwin and Ford J.D.,2024-03-06,[],IN,2024 +"First reading: referred to Committee on Family, Children and Human Affairs",2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-02-15,[],IN,2024 +"House concurred in Senate amendments; Roll Call 246: yeas 89, nays 0",2024-02-28,[],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +First reading: referred to Committee on Judiciary,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +Senate dissented from House amendments,2024-03-05,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Public Law 148,2024-03-13,['became-law'],IN,2024 +Senator Gaskill added as coauthor,2024-02-06,[],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Representative Harris removed as conferee,2024-03-08,[],IN,2024 +Representative Judy removed as cosponsor,2024-02-19,[],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Returned to the Senate without amendments,2024-02-21,['receipt'],IN,2024 +"Third reading: passed; Roll Call 206: yeas 41, nays 8",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Public Law 56,2024-03-11,['became-law'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Senator Bohacek added as cosponsor,2024-03-05,[],IN,2024 +Motion to concur filed,2024-03-04,['filing'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Motion to dissent filed,2024-02-28,['filing'],IN,2024 +"Third reading: passed; Roll Call 211: yeas 94, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Third reading: passed; Roll Call 221: yeas 93, nays 1",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Public Law 145,2024-03-13,['became-law'],IN,2024 +"House advisors appointed: Manning, Criswell and Miller K",2024-02-29,[],IN,2024 +Representative Lehman added as cosponsor,2024-02-15,[],IN,2024 +Public Law 78,2024-03-12,['became-law'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Public Law 147,2024-03-13,['became-law'],IN,2024 +Public Law 115,2024-03-13,['became-law'],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"House advisors appointed: Sweet, Barrett and Fleming",2024-03-04,[],IN,2024 +Senate advisors appointed: Yoder and Carrasco,2024-03-06,[],IN,2024 +Senate conferees appointed: Baldwin and Pol,2024-03-05,[],IN,2024 +Senate advisors appointed: Pol and Brown L,2024-03-05,[],IN,2024 +Amendment #11 (Pol) failed; voice vote,2024-03-04,"['amendment-failure', 'failure']",IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +Public Law 140,2024-03-13,['became-law'],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-02-15,[],IN,2024 +Senate conferees appointed: Niemeyer and Ford J.D.,2024-03-05,[],IN,2024 +Representative Pierce M added as cosponsor,2024-02-12,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +"Senate concurred in House amendments; Roll Call 232: yeas 31, nays 13",2024-02-29,[],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +Returned to the Senate without amendments,2024-02-21,['receipt'],IN,2024 +"House advisors appointed: Lehman, Smaltz and Shackleford",2024-03-04,[],IN,2024 +Representative Soliday added as conferee,2024-03-08,[],IN,2024 +House sponsor: Representative Davis,2024-02-06,[],IN,2024 +Senator Goode added as second sponsor,2024-02-15,[],IN,2024 +Public Law 14,2024-03-11,['became-law'],IN,2024 +"House concurred in Senate amendments; Roll Call 273: yeas 95, nays 0",2024-03-05,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Public Law 146,2024-03-13,['became-law'],IN,2024 +House conferees appointed: Ledbetter and Gore,2024-03-04,[],IN,2024 +Signed by the Governor,2024-02-12,['executive-signature'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Senate advisors appointed: Ford J.D. and Niemeyer,2024-03-05,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Representative Hamilton added as cosponsor,2024-02-19,[],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +"Senators Walker G, Donato, Dernulc added as cosponsors",2024-02-29,[],IN,2024 +House dissented from Senate amendments,2024-02-29,[],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the Governor,2024-03-04,['executive-signature'],IN,2024 +"Second reading: amended, ordered engrossed",2024-03-04,['reading-2'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Public Law 103,2024-03-13,['became-law'],IN,2024 +"House advisors appointed: Clere, Cherry, Mayfield, Judy and Harris",2024-03-05,[],IN,2024 +"Third reading: passed; Roll Call 276: yeas 39, nays 9",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Senate dissented from House amendments,2024-03-05,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +"Senate concurred in House amendments; Roll Call 268: yeas 35, nays 13",2024-03-04,[],IN,2024 +House conferees appointed: Wesco and Pfaff,2024-03-04,[],IN,2024 +"House advisors appointed: Steuerwald, Negele, Gore and Pryor",2024-03-05,[],IN,2024 +Motion to concur filed,2024-02-26,['filing'],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Senators Koch and Raatz added as cosponsors,2024-02-27,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +Public Law 20,2024-03-11,['became-law'],IN,2024 +"House concurred in Senate amendments; Roll Call 189: yeas 53, nays 34",2024-02-22,[],IN,2024 +Public Law 119,2024-03-13,['became-law'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Representative Prescott added as cosponsor,2024-02-26,[],IN,2024 +"Referred to Committee on Ways and Means pursuant to House Rule 84; Failed, Roll Call 185: yeas 28, nays 59",2024-02-22,[],IN,2024 +Public Law 39,2024-03-11,['became-law'],IN,2024 +Senate advisors appointed: Becker and Yoder,2024-03-06,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"Senators Byrne, Buchanan, Carrasco, Garten added as coauthors",2024-02-05,[],IN,2024 +"Third reading: passed; Roll Call 180: yeas 61, nays 30",2024-02-20,"['passage', 'reading-3', 'reading-3']",IN,2024 +Motion to dissent filed,2024-03-04,['filing'],IN,2024 +"House advisors appointed: Abbott, Baird, Dvorak and Jackson",2024-03-06,[],IN,2024 +Public Law 48,2024-03-11,['became-law'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Senator Randolph added as cosponsor,2024-02-20,[],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Returned to the House with amendments,2024-02-28,['receipt'],IN,2024 +Senator Freeman removed as third sponsor,2024-02-29,[],IN,2024 +Amendment #18 (Barrett) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +"Senate concurred in House amendments; Roll Call 235: yeas 42, nays 2",2024-02-29,[],IN,2024 +Referred to the House,2024-01-31,['referral'],IN,2024 +Senate dissented from House amendments,2024-02-29,[],IN,2024 +Senate advisors appointed: Niezgodski and Baldwin,2024-03-05,[],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +"Amendment #3 (Andrade) failed; Roll Call 193: yeas 35, nays 60",2024-02-26,"['amendment-failure', 'failure']",IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +CCR # 1 filed in the Senate,2024-03-07,['filing'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Public Law 30,2024-03-11,['became-law'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Amendment #4 (Tomes) prevailed; voice vote,2024-03-04,['amendment-passage'],IN,2024 +"Senate concurred in House amendments; Roll Call 243: yeas 44, nays 0",2024-02-29,[],IN,2024 +"House concurred in Senate amendments; Roll Call 187: yeas 86, nays 0",2024-02-22,[],IN,2024 +House dissented from Senate amendments,2024-03-06,[],IN,2024 +Public Law 109,2024-03-13,['became-law'],IN,2024 +Senator Crane added as cosponsor,2024-02-15,[],IN,2024 +"House advisors appointed: Ledbetter, Clere and Klinker",2024-02-29,[],IN,2024 +"Third reading: passed; Roll Call 286: yeas 40, nays 8",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senate advisors appointed: Taylor G and Crider,2024-03-05,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"Third reading: passed; Roll Call 223: yeas 83, nays 11",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 358: yeas 96, nays 0",2024-03-08,[],IN,2024 +Senate advisors appointed: Rogers and Niezgodski,2024-03-05,[],IN,2024 +House conferees appointed: Barrett and Shackleford,2024-03-04,[],IN,2024 +CCR # 1 filed in the Senate,2024-03-06,['filing'],IN,2024 +"Third reading: passed; Roll Call 119: yeas 48, nays 0",2024-02-06,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Senator Randolph added as cosponsor,2024-02-20,[],IN,2024 +Motion to concur filed,2024-02-29,['filing'],IN,2024 +Signed by the President Pro Tempore,2024-02-29,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Public Law 72,2024-03-12,['became-law'],IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +Senate conferees appointed: Freeman and Pol,2024-03-04,[],IN,2024 +House dissented from Senate amendments,2024-03-06,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Returned to the Senate with amendments,2024-02-21,['receipt'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 333: yeas 43, nays 4",2024-03-08,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +CCR # 1 filed in the Senate,2024-03-07,['filing'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +House conferees appointed: Thompson and Campbell,2024-02-29,[],IN,2024 +Amendment #1 (Fleming) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +Rule 105.1 suspended,2024-03-08,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +"Senators Deery, Freeman, Dernulc, Messmer, Niemeyer, Zay added as coauthors",2024-02-05,[],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Senator Mishler added as advisor,2024-03-06,[],IN,2024 +House sponsor: Representative Barrett,2024-02-06,[],IN,2024 +CCR # 1 filed in the House,2024-03-07,['filing'],IN,2024 +Senator Rogers removed as advisor,2024-03-06,[],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Public Law 15,2024-03-11,['became-law'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +"Senate concurred in House amendments; Roll Call 264: yeas 42, nays 6",2024-03-04,[],IN,2024 +Public Law 58,2024-03-11,['became-law'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +"Senate advisors appointed: Taylor G, Maxwell and Bohacek",2024-03-04,[],IN,2024 +CCR # 1 filed in the House,2024-03-07,['filing'],IN,2024 +Representative Campbell removed as coauthor,2024-03-05,[],IN,2024 +Public Law 59,2024-03-11,['became-law'],IN,2024 +Returned to the House without amendments,2024-02-21,['receipt'],IN,2024 +House conferees appointed: Cherry and Porter,2024-03-06,[],IN,2024 +CCR # 1 filed in the House,2024-03-06,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Public Law 10,2024-03-11,['became-law'],IN,2024 +Returned to the Senate without amendments,2024-02-28,['receipt'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Concurrence withdrawn,2024-02-29,['withdrawal'],IN,2024 +Senate conferees appointed: Raatz and Yoder,2024-03-06,[],IN,2024 +"Amendment #6 (DeLaney) failed; Roll Call 194: yeas 38, nays 58",2024-02-26,"['amendment-failure', 'failure']",IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Committee report: amend do pass adopted; reassigned to Committee on Appropriations,2024-02-22,"['committee-passage', 'referral-committee']",IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Returned to the House with amendments,2024-03-01,['receipt'],IN,2024 +Senate conferees appointed: Garten and Hunley,2024-02-29,[],IN,2024 +Signed by the Speaker,2024-02-27,['passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-03-04,['reading-2'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Public Law 165,2024-03-13,['became-law'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +House dissented from Senate amendments,2024-03-04,[],IN,2024 +Public Law 149,2024-03-13,['became-law'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +First reading: referred to Committee on Roads and Transportation,2024-02-06,"['reading-1', 'referral-committee']",IN,2024 +"Third reading: passed; Roll Call 224: yeas 70, nays 23",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +"Third reading: passed; Roll Call 263: yeas 97, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +"House advisors appointed: Schaibley, Zent and Fleming",2024-03-04,[],IN,2024 +Public Law 40,2024-03-11,['became-law'],IN,2024 +"Third reading: passed; Roll Call 220: yeas 94, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #1 (Behning) prevailed; voice vote,2024-02-26,['amendment-passage'],IN,2024 +Returned to the House without amendments,2024-02-21,['receipt'],IN,2024 +"Third reading: passed; Roll Call 283: yeas 48, nays 0",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Motion to dissent filed,2024-02-28,['filing'],IN,2024 +Public Law 51,2024-03-11,['became-law'],IN,2024 +"House advisors appointed: Pierce K, Morrison, Boy and Errington",2024-03-04,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-02-27,['passage'],IN,2024 +Public Law 64,2024-03-11,['became-law'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +"Senate concurred in House amendments; Roll Call 236: yeas 43, nays 1",2024-02-29,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +"Senate advisors appointed: Ford J.D., Rogers and Bohacek",2024-03-05,[],IN,2024 +Public Law 85,2024-03-12,['became-law'],IN,2024 +Returned to the House with amendments,2024-03-01,['receipt'],IN,2024 +"House concurred in Senate amendments; Roll Call 272: yeas 96, nays 0",2024-03-05,[],IN,2024 +Senate conferees appointed: Koch and Randolph Lonnie M,2024-03-05,[],IN,2024 +House conferees appointed: Culp and DeLaney,2024-02-29,[],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Public Law 71,2024-03-11,['became-law'],IN,2024 +Public Law 142,2024-03-13,['became-law'],IN,2024 +Rule 105.1 suspended,2024-02-19,[],IN,2024 +Motion to concur filed,2024-03-06,['filing'],IN,2024 +House conferees appointed: Miller D and Campbell,2024-03-05,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +"Third reading: passed; Roll Call 233: yeas 93, nays 2",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +"House advisors appointed: Negele, McNamara, Pierce M and Shackleford",2024-03-04,[],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +Senator Donato added as third sponsor,2024-02-15,[],IN,2024 +CCR # 1 filed in the House,2024-03-07,['filing'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-02-22,[],IN,2024 +First reading: referred to Committee on Education,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Senator Messmer removed as advisor,2024-03-08,[],IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +"Cosponsors: Representatives Teshka, Jordan, Cash",2024-02-06,[],IN,2024 +Signed by the President Pro Tempore,2024-02-29,['passage'],IN,2024 +Senator Qaddoura removed as advisor,2024-03-08,[],IN,2024 +Senate conferees appointed: Holdman and Qaddoura,2024-03-05,[],IN,2024 +Senate conferees appointed: Walker K and Niezgodski,2024-02-29,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Rule 105.1 suspended,2024-03-04,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-20,['committee-passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +"Senate advisors appointed: Niezgodski, Buck and Dernulc",2024-03-05,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 347: yeas 93, nays 5",2024-03-08,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Public Law 107,2024-03-13,['became-law'],IN,2024 +"Second reading: amended, ordered engrossed",2024-03-04,['reading-2'],IN,2024 +House conferees appointed: Torr and Hatfield,2024-03-05,[],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Motion to concur filed,2024-02-28,['filing'],IN,2024 +Senator Zay added as cosponsor,2024-02-27,[],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Public Law 159,2024-03-13,['became-law'],IN,2024 +House conferees appointed: Carbaugh and Pfaff,2024-03-05,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Public Law 102,2024-03-13,['became-law'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +CCR # 1 filed in the Senate,2024-03-07,['filing'],IN,2024 +"House advisors appointed: Jeter, Steuerwald, Speedy, Bauer M and Garcia Wilburn",2024-03-05,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 329: yeas 45, nays 1",2024-03-08,[],IN,2024 +House conferees appointed: Slager and Andrade,2024-03-05,[],IN,2024 +"Third reading: passed; Roll Call 213: yeas 92, nays 2",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Amendment #3 (Lehman) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +Senator Randolph Lonnie M removed as conferee,2024-03-08,[],IN,2024 +Senator Doriot added as coauthor,2024-02-06,[],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Amendment #1 (Bartels) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +"House advisors appointed: Behning, Jordan and Smith V",2024-02-29,[],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Senate dissented from House amendments,2024-02-29,[],IN,2024 +Public Law 63,2024-03-11,['became-law'],IN,2024 +Motion to concur filed,2024-03-06,['filing'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +"Senate concurred in House amendments; Roll Call 241: yeas 45, nays 0",2024-02-29,[],IN,2024 +Public Law 101,2024-03-13,['became-law'],IN,2024 +Public Law 166,2024-03-13,['became-law'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Public Law 156,2024-03-13,['became-law'],IN,2024 +Signed by the Speaker,2024-02-27,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Senate advisors appointed: Vinzant and Alting,2024-02-29,[],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Senate dissented from House amendments,2024-03-05,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Public Law 46,2024-03-11,['became-law'],IN,2024 +"Senate advisors appointed: Pol, Glick and Brown L",2024-03-05,[],IN,2024 +"House concurred in Senate amendments; Roll Call 303: yeas 87, nays 9",2024-03-06,[],IN,2024 +CCR # 1 filed in the House,2024-03-07,['filing'],IN,2024 +"House advisors appointed: Torr, Engleman and Hatcher",2024-03-05,[],IN,2024 +Senator Young M added as coauthor,2024-03-04,[],IN,2024 +Returned to the Senate without amendments,2024-02-28,['receipt'],IN,2024 +Public Law 8,2024-03-11,['became-law'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Senator Vinzant removed as conferee,2024-03-08,[],IN,2024 +Signed by the Speaker,2024-03-04,['passage'],IN,2024 +Senate advisors appointed: Hunley and Baldwin,2024-03-05,[],IN,2024 +Public Law 81,2024-03-12,['became-law'],IN,2024 +Representative Barrett added as cosponsor,2024-03-04,[],IN,2024 +Representative Johnson B removed as conferee,2024-03-06,[],IN,2024 +Senator Randolph added as cosponsor,2024-03-04,[],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +"Committee report: do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Representative Zimmerman added as cosponsor,2024-02-19,[],IN,2024 +Returned to the House with amendments,2024-02-28,['receipt'],IN,2024 +"House advisors appointed: Cherry, Teshka, McGuire and Klinker",2024-03-05,[],IN,2024 +Public Law 155,2024-03-13,['became-law'],IN,2024 +Public Law 135,2024-03-13,['became-law'],IN,2024 +Public Law 90,2024-03-12,['became-law'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-29,['committee-passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Representative Speedy removed as coauthor,2024-03-04,[],IN,2024 +Signed by the President Pro Tempore,2024-02-27,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Representative Miller D added as coauthor,2024-03-05,[],IN,2024 +Signed by the President Pro Tempore,2024-03-08,['passage'],IN,2024 +Senate advisors appointed: Randolph Lonnie M and Maxwell,2024-02-29,[],IN,2024 +Returned to the Senate without amendments,2024-02-28,['receipt'],IN,2024 +Senator Taylor G removed as advisor,2024-03-08,[],IN,2024 +Signed by the Speaker,2024-02-27,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +"Third reading: passed; Roll Call 284: yeas 48, nays 0",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Public Law 23,2024-03-11,['became-law'],IN,2024 +CCR # 1 filed in the House,2024-03-07,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Public Law 54,2024-03-11,['became-law'],IN,2024 +Senator Taylor G removed as conferee,2024-03-06,[],IN,2024 +CCR # 1 filed in the Senate,2024-03-07,['filing'],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Senate conferees appointed: Walker G and Taylor G,2024-03-04,[],IN,2024 +"House concurred in Senate amendments; Roll Call 281: yeas 65, nays 26",2024-03-05,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Motion to concur filed,2024-02-26,['filing'],IN,2024 +Cosponsors: Representatives Baird and King,2024-02-06,[],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Public Law 160,2024-03-13,['became-law'],IN,2024 +Public Law 154,2024-03-13,['became-law'],IN,2024 +Representative Olthoff added as coauthor,2024-03-08,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Representatives Behning and Speedy added as cosponsors,2024-02-12,[],IN,2024 +Representative Lauer added as cosponsor,2024-02-27,[],IN,2024 +"Amendment #2 (Smith V) failed; Roll Call 199: yeas 31, nays 62",2024-02-26,"['amendment-failure', 'failure']",IN,2024 +Amendment #17 (Barrett) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +"House advisors appointed: Jordan, Pierce K and Harris",2024-02-29,[],IN,2024 +Public Law 25,2024-03-11,['became-law'],IN,2024 +Public Law 128,2024-03-13,['became-law'],IN,2024 +Public Law 19,2024-03-11,['became-law'],IN,2024 +Returned to the Senate without amendments,2024-03-05,['receipt'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Public Law 18,2024-03-11,['became-law'],IN,2024 +Senate conferees appointed: Johnson T and Randolph Lonnie M,2024-03-06,[],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 307: yeas 92, nays 0",2024-03-06,[],IN,2024 +"Amendment #4 (Smith V) failed; Roll Call 195: yeas 28, nays 68",2024-02-26,"['amendment-failure', 'failure']",IN,2024 +Senate advisors appointed: Ford J.D. and Crane,2024-03-06,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Motion to dissent filed,2024-02-29,['filing'],IN,2024 +"House advisors appointed: Thompson, Snow, Smaltz, Bartlett and Moseley",2024-03-06,[],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Senate conferees appointed: Glick and Qaddoura,2024-03-07,[],IN,2024 +"Amendment #3 (DeLaney) failed; Roll Call 200: yeas 29, nays 63",2024-02-26,"['amendment-failure', 'failure']",IN,2024 +CCR # 1 filed in the House,2024-03-07,['filing'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Amendment #4 (Porter) failed; voice vote,2024-02-29,"['amendment-failure', 'failure']",IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 329: yeas 91, nays 0",2024-03-08,[],IN,2024 +Returned to the Senate without amendments,2024-02-28,['receipt'],IN,2024 +Amendment #12 (Smith V) failed; voice vote,2024-02-26,"['amendment-failure', 'failure']",IN,2024 +Senator Pol removed as conferee,2024-03-08,[],IN,2024 +Public Law 24,2024-03-11,['became-law'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-27,['committee-passage'],IN,2024 +Motion to dissent filed,2024-02-29,['filing'],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Senate conferees appointed: Buchanan and Niezgodski,2024-03-06,[],IN,2024 +Senators Vinzant and Pol added as coauthors,2024-02-06,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Senate dissented from House amendments,2024-02-29,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Public Law 13,2024-03-11,['became-law'],IN,2024 +"Conference Committee Report 1: adopted by the Senate; Roll Call 299: yeas 46, nays 2",2024-03-07,[],IN,2024 +Signed by the President Pro Tempore,2024-03-08,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Public Law 69,2024-03-11,['became-law'],IN,2024 +Public Law 83,2024-03-12,['became-law'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Representative McGuire removed as advisor,2024-03-08,[],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +First reading: referred to Committee on Courts and Criminal Code,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Signed by the Speaker,2024-02-27,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Public Law 65,2024-03-11,['became-law'],IN,2024 +Senator Rogers added as conferee,2024-03-06,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Representative McGuire removed as author,2024-03-05,[],IN,2024 +"Amendment #1 (Qaddoura) failed; Roll Call 246: yeas 12, nays 37",2024-03-04,"['amendment-failure', 'failure']",IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +"Senate concurred in House amendments; Roll Call 237: yeas 31, nays 14",2024-02-29,[],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +Senate advisors appointed: Ford J.D. and Johnson T,2024-03-04,[],IN,2024 +Senate advisors appointed: Qaddoura and Charbonneau,2024-03-06,[],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +"House concurred in Senate amendments; Roll Call 297: yeas 62, nays 31",2024-03-06,[],IN,2024 +CCR # 1 filed in the House,2024-03-06,['filing'],IN,2024 +"House advisors appointed: Meltzer, Prescott, Abbott and Gore",2024-03-05,[],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Referred to the House,2024-02-07,['referral'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Amendment #1 (Porter) ruled out of order,2024-02-29,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 324: yeas 45, nays 2",2024-03-08,[],IN,2024 +House conferees appointed: Snow and Smith V,2024-02-29,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Senate conferees appointed: Johnson T and Ford J.D.,2024-03-07,[],IN,2024 +Signed by the President Pro Tempore,2024-03-08,['passage'],IN,2024 +Public Law 70,2024-03-11,['became-law'],IN,2024 +Senator Messmer added as conferee,2024-03-08,[],IN,2024 +Senate conferees appointed: Donato and Yoder,2024-03-05,[],IN,2024 +Representative Lindauer added as conferee,2024-03-06,[],IN,2024 +House conferees appointed: Behning and DeLaney,2024-03-05,[],IN,2024 +"Third reading: passed; Roll Call 278: yeas 48, nays 0",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Senator Qaddoura added as conferee,2024-03-08,[],IN,2024 +Senator Mishler added as advisor,2024-03-06,[],IN,2024 +Senator Donato removed as third sponsor,2024-02-26,[],IN,2024 +CCR # 1 filed in the Senate,2024-03-07,['filing'],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Motion to dissent filed,2024-02-28,['filing'],IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +Public Law 144,2024-03-13,['became-law'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-22,['committee-passage'],IN,2024 +Amendment #2 (Behning) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +CCR # 1 filed in the Senate,2024-03-07,['filing'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"Third reading: passed; Roll Call 265: yeas 71, nays 27",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Second reading: amended, ordered engrossed",2024-02-29,['reading-2'],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +Senate conferees appointed: Raatz and Ford J.D.,2024-02-29,[],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +"House concurred in Senate amendments; Roll Call 277: yeas 66, nays 27",2024-03-05,[],IN,2024 +Senate conferees appointed: Becker and Pol,2024-03-05,[],IN,2024 +Signed by the President of the Senate,2024-02-28,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +"Third reading: passed; Roll Call 236: yeas 94, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +CCR # 1 filed in the Senate,2024-03-07,['filing'],IN,2024 +Senator Garten added as third sponsor,2024-02-26,[],IN,2024 +"Third reading: passed; Roll Call 255: yeas 98, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Senate advisors appointed: Yoder, Donato and Johnson T",2024-02-29,[],IN,2024 +Public Law 79,2024-03-12,['became-law'],IN,2024 +"House advisors appointed: Davis, Payne, Cash and Smith V",2024-03-05,[],IN,2024 +Returned to the Senate without amendments,2024-02-28,['receipt'],IN,2024 +House conferees appointed: Behning and Smith V,2024-03-06,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Amendment #2 (Porter) ruled out of order,2024-02-29,[],IN,2024 +Signed by the Governor,2024-03-04,['executive-signature'],IN,2024 +"Third reading: passed; Roll Call 219: yeas 93, nays 1",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Senate advisors appointed: Ford J.D., Raatz and Rogers",2024-03-05,[],IN,2024 +Public Law 110,2024-03-13,['became-law'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Second reading: ordered engrossed,2024-02-26,['reading-2'],IN,2024 +"House advisors appointed: Davis, Behning and Pfaff",2024-02-29,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 341: yeas 96, nays 0",2024-03-08,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 322: yeas 94, nays 0",2024-03-07,[],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Senator Pol removed as conferee,2024-03-07,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Public Law 32,2024-03-11,['became-law'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Senate advisors appointed: Charbonneau and Yoder,2024-03-07,[],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +House conferees appointed: King and Dvorak,2024-02-29,[],IN,2024 +Returned to the Senate with amendments,2024-03-05,['receipt'],IN,2024 +CCR # 1 filed in the House,2024-03-07,['filing'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-29,['reading-2'],IN,2024 +CCR # 1 filed in the House,2024-03-07,['filing'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +House conferees appointed: Teshka and Andrade,2024-02-29,[],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +CCR # 1 filed in the Senate,2024-03-06,['filing'],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +First reading: referred to Committee on Education,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +Senate advisors appointed: Taylor G and Crider,2024-03-05,[],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +Motion to concur filed,2024-03-08,['filing'],IN,2024 +"Amendment #4 (DeLaney) failed; Roll Call 201: yeas 36, nays 58",2024-02-26,"['amendment-failure', 'failure']",IN,2024 +House conferees appointed: Heine and Summers,2024-03-04,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Senate advisors appointed: Leising and Vinzant,2024-03-07,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 355: yeas 96, nays 0",2024-03-08,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Referred to the House,2024-02-06,['referral'],IN,2024 +Senate advisors appointed: Qaddoura and Mishler,2024-03-06,[],IN,2024 +Signed by the President Pro Tempore,2024-03-08,['passage'],IN,2024 +Amendment #15 (Clere) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Senate dissented from House amendments,2024-02-29,[],IN,2024 +Representative Thompson added as author,2024-03-05,[],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Senator Qaddoura removed as advisor,2024-03-08,[],IN,2024 +"Amendment #11 (DeLaney) failed; Roll Call 197: yeas 28, nays 67",2024-02-26,"['amendment-failure', 'failure']",IN,2024 +Signed by the President of the Senate,2024-02-28,['passage'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Second reading: ordered engrossed,2024-03-04,['reading-2'],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +Motion to concur filed,2024-03-06,['filing'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +CCR # 1 filed in the Senate,2024-03-07,['filing'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 307: yeas 48, nays 0",2024-03-08,[],IN,2024 +Senator Taylor G added as conferee,2024-03-08,[],IN,2024 +Senator Randolph removed as coauthor,2024-02-29,[],IN,2024 +Motion to dissent filed,2024-03-06,['filing'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 337: yeas 96, nays 0",2024-03-08,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Representative Pfaff removed as conferee,2024-03-08,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Senate conferees appointed: Becker and Randolph Lonnie M,2024-02-29,[],IN,2024 +Public Law 88,2024-03-12,['became-law'],IN,2024 +Public Law 139,2024-03-13,['became-law'],IN,2024 +CCR # 1 filed in the Senate,2024-03-07,['filing'],IN,2024 +Public Law 47,2024-03-11,['became-law'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Amendment #9 (DeLaney) ruled out of order,2024-02-26,[],IN,2024 +First reading: referred to Committee on Public Health,2024-02-12,"['reading-1', 'referral-committee']",IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 319: yeas 47, nays 0",2024-03-08,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 354: yeas 96, nays 0",2024-03-08,[],IN,2024 +Senate conferees appointed: Garten and Niezgodski,2024-02-29,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 334: yeas 42, nays 5",2024-03-08,[],IN,2024 +CCR # 1 filed in the House,2024-03-07,['filing'],IN,2024 +Public Law 35,2024-03-11,['became-law'],IN,2024 +Public Law 95,2024-03-13,['became-law'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Representative Pierce M removed as conferee,2024-03-08,[],IN,2024 +"House concurred in Senate amendments; Roll Call 302: yeas 58, nays 36",2024-03-06,[],IN,2024 +Public Law 3,2024-03-04,['became-law'],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +Representative McGuire added as conferee,2024-03-08,[],IN,2024 +Senate advisors appointed: Hunley and Leising,2024-02-29,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 325: yeas 75, nays 21",2024-03-07,[],IN,2024 +House dissented from Senate amendments,2024-03-06,[],IN,2024 +Public Law 28,2024-03-11,['became-law'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-26,['reading-2'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +"House advisors appointed: Snow, Payne and Jackson",2024-03-04,[],IN,2024 +"Third reading: passed; Roll Call 271: yeas 38, nays 10",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 328: yeas 90, nays 0",2024-03-08,[],IN,2024 +Representative Thompson removed as coauthor,2024-03-05,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +"Amendment #9 (Porter) failed; Roll Call 249: yeas 27, nays 65",2024-02-29,"['amendment-failure', 'failure']",IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Senator Randolph Lonnie M removed as conferee,2024-03-08,[],IN,2024 +Representative Behning removed as advisor,2024-03-06,[],IN,2024 +"House advisors appointed: Speedy, Jeter and Bauer M",2024-02-29,[],IN,2024 +Motion to concur filed,2024-03-06,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Returned to the Senate without amendments,2024-02-28,['receipt'],IN,2024 +CCR # 1 filed in the Senate,2024-03-07,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 327: yeas 90, nays 2",2024-03-08,[],IN,2024 +Signed by the President Pro Tempore,2024-03-08,['passage'],IN,2024 +Second reading: ordered engrossed,2024-02-29,['reading-2'],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 316: yeas 45, nays 3",2024-03-08,[],IN,2024 +"Third reading: passed; Roll Call 260: yeas 97, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +"House advisors appointed: Manning, Haggard and Moseley",2024-02-29,[],IN,2024 +Public Law 34,2024-03-11,['became-law'],IN,2024 +Signed by the President Pro Tempore,2024-03-08,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +Senator Donato added as cosponsor,2024-02-26,[],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 306: yeas 80, nays 12",2024-03-06,[],IN,2024 +CCR # 1 filed in the House,2024-03-07,['filing'],IN,2024 +Returned to the Senate with amendments,2024-03-05,['receipt'],IN,2024 +Public Law 75,2024-03-12,['became-law'],IN,2024 +Senator Messmer added as conferee,2024-03-07,[],IN,2024 +Motion to dissent filed,2024-03-06,['filing'],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Senate conferees appointed: Raatz and Yoder,2024-03-05,[],IN,2024 +Senate conferees appointed: Leising and Hunley,2024-02-29,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Public Law 22,2024-03-11,['became-law'],IN,2024 +"House concurred in Senate amendments; Roll Call 352: yeas 81, nays 13",2024-03-08,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Public Law 4,2024-03-04,['became-law'],IN,2024 +"House advisors appointed: Goodrich, Davis, Cash, DeLaney, Klinker and Pfaff",2024-03-06,[],IN,2024 +"Third reading: passed; Roll Call 210: yeas 93, nays 0",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Senate concurred in House amendments; Roll Call 297: yeas 40, nays 8",2024-03-07,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +House dissented from Senate amendments,2024-03-06,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Second reading: ordered engrossed,2024-02-27,['reading-2'],IN,2024 +Motion to dissent filed,2024-02-29,['filing'],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +Returned to the Senate with amendments,2024-03-05,['receipt'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-04,['passage'],IN,2024 +CCR # 1 filed in the House,2024-03-07,['filing'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 338: yeas 96, nays 0",2024-03-08,[],IN,2024 +Public Law 91,2024-03-12,['became-law'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 357: yeas 96, nays 0",2024-03-08,[],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Senate advisors appointed: Qaddoura and Baldwin,2024-03-05,[],IN,2024 +House dissented from Senate amendments,2024-02-29,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 330: yeas 91, nays 1",2024-03-08,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 328: yeas 26, nays 21",2024-03-08,[],IN,2024 +"Conference Committee Report 1: adopted by the Senate; Roll Call 303: yeas 39, nays 9",2024-03-07,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 331: yeas 94, nays 0",2024-03-08,[],IN,2024 +CCR # 1 filed in the Senate,2024-03-07,['filing'],IN,2024 +House dissented from Senate amendments,2024-03-06,[],IN,2024 +Public Law 44,2024-03-11,['became-law'],IN,2024 +Representative DeLaney removed as conferee,2024-03-06,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 315: yeas 48, nays 0",2024-03-08,[],IN,2024 +"Third reading: passed; Roll Call 254: yeas 98, nays 1",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +"Senate advisors appointed: Yoder, Glick and Goode",2024-02-29,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +CCR # 1 filed in the House,2024-03-07,['filing'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Public Law 41,2024-03-11,['became-law'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Public Law 12,2024-03-11,['became-law'],IN,2024 +Public Law 104,2024-03-13,['became-law'],IN,2024 +CCR # 1 filed in the Senate,2024-03-06,['filing'],IN,2024 +House conferees appointed: Teshka and Smith V,2024-03-06,[],IN,2024 +Signed by the President Pro Tempore,2024-03-08,['passage'],IN,2024 +Senator Taylor G removed as conferee,2024-03-07,[],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +Senator Yoder removed as conferee,2024-03-08,[],IN,2024 +Motion to concur filed,2024-03-07,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Senator Qaddoura added as conferee,2024-03-08,[],IN,2024 +Public Law 21,2024-03-11,['became-law'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 317: yeas 48, nays 0",2024-03-08,[],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +Signed by the Governor,2024-03-04,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Representative Davis added as conferee,2024-03-08,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 324: yeas 95, nays 0",2024-03-07,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Amendment #7 (Porter) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +"Senate advisors appointed: Yoder, Mishler and Holdman",2024-02-29,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 336: yeas 47, nays 0",2024-03-08,[],IN,2024 +Signed by the Governor,2024-03-15,['executive-signature'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +"Committee report: amend do pass, adopted",2024-02-13,['committee-passage'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-26,['reading-2'],IN,2024 +"Third reading: passed; Roll Call 227: yeas 66, nays 31",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Public Law 112,2024-03-13,['became-law'],IN,2024 +"Appeal the ruling of the chair (Delaney); ruling of the chair sustained. Roll Call 196: yeas 68, nays 27",2024-02-26,[],IN,2024 +CCR # 1 filed in the House,2024-03-06,['filing'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Public Law 170,2024-03-15,['became-law'],IN,2024 +Representative Jordan removed as advisor,2024-03-08,[],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +Amendment #5 (Porter) prevailed; voice vote,2024-02-29,['amendment-passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Senator Donato added as conferee,2024-03-07,[],IN,2024 +Motion to dissent filed,2024-03-06,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-08,['passage'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 310: yeas 41, nays 7",2024-03-08,[],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Senator Rogers added as conferee,2024-03-08,[],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +"House advisors appointed: Rowray, Behning and Pfaff",2024-03-06,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +"House concurred in Senate amendments; Roll Call 316: yeas 89, nays 4",2024-03-07,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Public Law 99,2024-03-13,['became-law'],IN,2024 +Referred to the Committee on Ways and Means pursuant to House Rule 127,2024-02-13,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 335: yeas 98, nays 0",2024-03-08,[],IN,2024 +Senate dissented from House amendments,2024-02-29,[],IN,2024 +Signed by the President Pro Tempore,2024-03-08,['passage'],IN,2024 +Public Law 17,2024-03-11,['became-law'],IN,2024 +Senate dissented from House amendments,2024-03-05,[],IN,2024 +Public Law 133,2024-03-13,['became-law'],IN,2024 +CCR # 1 filed in the Senate,2024-03-06,['filing'],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 311: yeas 47, nays 0",2024-03-08,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Senator Goode removed as second sponsor,2024-02-27,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 318: yeas 89, nays 0",2024-03-07,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 346: yeas 69, nays 29",2024-03-08,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 335: yeas 47, nays 0",2024-03-08,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 309: yeas 35, nays 13",2024-03-08,[],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +Representative Behning added as conferee,2024-03-06,[],IN,2024 +Public Law 152,2024-03-13,['became-law'],IN,2024 +Signed by the President Pro Tempore,2024-03-08,['passage'],IN,2024 +Public Law 33,2024-03-11,['became-law'],IN,2024 +Signed by the Governor,2024-03-12,['executive-signature'],IN,2024 +Senate conferees appointed: Baldwin and Qaddoura,2024-02-29,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 320: yeas 47, nays 0",2024-03-08,[],IN,2024 +House conferees appointed: Culp and Pryor,2024-03-06,[],IN,2024 +CCR # 1 filed in the Senate,2024-03-07,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Motion to concur filed,2024-02-28,['filing'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Returned to the Senate with amendments,2024-03-05,['receipt'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-08,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Senate conferees appointed: Raatz and Hunley,2024-03-06,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Senator Ford J.D. removed as conferee,2024-03-06,[],IN,2024 +Senate advisors appointed: Yoder and Rogers,2024-03-06,[],IN,2024 +"House advisors appointed: Aylesworth, Steuerwald, Haggard and Bauer M",2024-03-06,[],IN,2024 +Senate advisors appointed: Randolph Lonnie M and Johnson T,2024-02-29,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +"Senate concurred in House amendments; Roll Call 239: yeas 45, nays 0",2024-02-29,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Senate conferees appointed: Tomes and Vinzant,2024-03-05,[],IN,2024 +Senate dissented from House amendments,2024-03-05,[],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Motion to concur filed,2024-03-05,['filing'],IN,2024 +Public Law 82,2024-03-12,['became-law'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +CCR # 1 filed in the House,2024-03-06,['filing'],IN,2024 +Senator Baldwin added as second sponsor,2024-02-27,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Public Law 158,2024-03-13,['became-law'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 332: yeas 92, nays 6",2024-03-08,[],IN,2024 +Senate conferees appointed: Bohacek and Pol,2024-02-29,[],IN,2024 +Signed by the President Pro Tempore,2024-03-08,['passage'],IN,2024 +CCR # 2 filed in the House,2024-03-07,['filing'],IN,2024 +"Third reading: passed; Roll Call 208: yeas 68, nays 28",2024-02-27,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +Public Law 76,2024-03-12,['became-law'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 321: yeas 44, nays 3",2024-03-08,[],IN,2024 +House dissented from Senate amendments,2024-03-06,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 308: yeas 91, nays 0",2024-03-06,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +CCR # 1 filed in the House,2024-03-07,['filing'],IN,2024 +Public Law 116,2024-03-13,['became-law'],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Public Law 36,2024-03-11,['became-law'],IN,2024 +Representative Shackleford added as cosponsor,2024-02-15,[],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 308: yeas 40, nays 8",2024-03-08,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Motion to concur filed,2024-02-28,['filing'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Senate conferees appointed: Freeman and Hunley,2024-03-06,[],IN,2024 +Public Law 105,2024-03-13,['became-law'],IN,2024 +"Second reading: amended, ordered engrossed",2024-02-29,['reading-2'],IN,2024 +Representative Campbell removed as conferee,2024-03-08,[],IN,2024 +CCR # 1 filed in the Senate,2024-03-07,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Senate conferees appointed: Raatz and Qaddoura,2024-03-06,[],IN,2024 +"Senate advisors appointed: Qaddoura, Rogers, Raatz and Tomes",2024-03-06,[],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Public Law 171,2024-03-18,['became-law'],IN,2024 +Returned to the Senate with amendments,2024-02-28,['receipt'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 332: yeas 45, nays 2",2024-03-08,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Public Law 136,2024-03-13,['became-law'],IN,2024 +Representative Jordan added as conferee,2024-03-08,[],IN,2024 +"Third reading: passed; Roll Call 268: yeas 98, nays 0",2024-03-04,"['passage', 'reading-3', 'reading-3']",IN,2024 +"Senate concurred in House amendments; Roll Call 242: yeas 33, nays 12",2024-02-29,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +"Conference Committee Report 1: adopted by the Senate; Roll Call 301: yeas 48, nays 0",2024-03-07,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 325: yeas 45, nays 2",2024-03-08,[],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +"Rules Suspended. Conference Committee Report 2: adopted by the House; Roll Call 323: yeas 76, nays 18",2024-03-07,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Public Law 37,2024-03-11,['became-law'],IN,2024 +Senate advisors appointed: Randolph Lonnie M and Deery,2024-02-29,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 312: yeas 85, nays 0",2024-03-07,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 306: yeas 48, nays 0",2024-03-08,[],IN,2024 +Senate conferees appointed: Leising and Qaddoura,2024-03-07,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Senator Goode added as cosponsor,2024-02-27,[],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +"Senate concurred in House amendments; Roll Call 291: yeas 45, nays 2",2024-03-06,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Senator Doriot added as conferee,2024-03-06,[],IN,2024 +Senate conferees appointed: Brown L and Vinzant,2024-03-05,[],IN,2024 +Public Law 137,2024-03-13,['became-law'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 312: yeas 47, nays 0",2024-03-08,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Senate advisors appointed: Niezgodski and Glick,2024-03-05,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Senator Johnson T removed as advisor,2024-03-06,[],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Public Law 167,2024-03-14,['became-law'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Public Law 11,2024-03-11,['became-law'],IN,2024 +"Senate advisors appointed: Hunley, Buchanan and Donato",2024-03-05,[],IN,2024 +Motion to withdraw CCR #1: prevailed,2024-03-08,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Senators Doriot and Alting added as cosponsors,2024-02-29,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Public Law 153,2024-03-13,['became-law'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 318: yeas 43, nays 4",2024-03-08,[],IN,2024 +CCR # 1 filed in the House,2024-03-07,['filing'],IN,2024 +Senator Doriot added as coauthor,2024-03-06,[],IN,2024 +Public Law 120,2024-03-13,['became-law'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +"Conference Committee Report 1: adopted by the Senate; Roll Call 298: yeas 48, nays 0",2024-03-07,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Dissent rescinded,2024-02-29,[],IN,2024 +"Senate advisors appointed: Taylor G, Busch and Brown L",2024-03-07,[],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +Senator Qaddoura removed as conferee,2024-03-06,[],IN,2024 +Senator Carrasco added as coauthor,2024-03-05,[],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +"Senate advisors appointed: Mishler, Ford J.D. and Garten",2024-03-06,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 342: yeas 97, nays 0",2024-03-08,[],IN,2024 +Signed by the Governor,2024-03-18,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-03-08,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 349: yeas 70, nays 25",2024-03-08,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Motion to concur filed,2024-02-28,['filing'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 321: yeas 82, nays 12",2024-03-07,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Returned to the Senate with amendments,2024-03-05,['receipt'],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +"Senate concurred in House amendments; Roll Call 238: yeas 29, nays 16",2024-02-29,[],IN,2024 +Public Law 164,2024-03-13,['became-law'],IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +Public Law 106,2024-03-13,['became-law'],IN,2024 +House conferees appointed: Goodrich and Smith V,2024-03-06,[],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +Public Law 131,2024-03-13,['became-law'],IN,2024 +Public Law 169,2024-03-15,['became-law'],IN,2024 +Public Law 121,2024-03-13,['became-law'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 338: yeas 35, nays 12",2024-03-08,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 313: yeas 34, nays 13",2024-03-08,[],IN,2024 +Public Law 117,2024-03-13,['became-law'],IN,2024 +Senator Johnson T added as conferee,2024-03-06,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Motion to concur filed,2024-03-01,['filing'],IN,2024 +"Third reading: passed; Roll Call 272: yeas 42, nays 6",2024-03-05,"['passage', 'reading-3', 'reading-3']",IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Public Law 111,2024-03-13,['became-law'],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +CCR # 1 filed in the Senate,2024-03-07,['filing'],IN,2024 +Signed by the President Pro Tempore,2024-03-08,['passage'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 343: yeas 98, nays 0",2024-03-08,[],IN,2024 +House conferees appointed: Lehman and Pierce M,2024-03-05,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Public Law 151,2024-03-13,['became-law'],IN,2024 +CCR # 2 filed in the Senate,2024-03-08,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the Governor,2024-03-14,['executive-signature'],IN,2024 +Public Law 141,2024-03-13,['became-law'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 356: yeas 95, nays 1",2024-03-08,[],IN,2024 +Public Law 122,2024-03-13,['became-law'],IN,2024 +House conferees appointed: Bartels and Pack,2024-03-05,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +Public Law 161,2024-03-13,['became-law'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Public Law 125,2024-03-13,['became-law'],IN,2024 +Senator Doriot added as advisor,2024-03-06,[],IN,2024 +Returned to the House with amendments,2024-03-05,['receipt'],IN,2024 +"Senate concurred in House amendments; Roll Call 265: yeas 46, nays 2",2024-03-04,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 337: yeas 40, nays 7",2024-03-08,[],IN,2024 +"House advisors appointed: Judy, Miller D and Campbell",2024-03-05,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +"House advisors appointed: Hostettler, Lucas, Haggard and Hamilton",2024-03-05,[],IN,2024 +Public Law 6,2024-03-11,['became-law'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 319: yeas 69, nays 25",2024-03-07,[],IN,2024 +"Rules Suspended. Conference Committee Report 2: adopted by the Senate; Roll Call 323: yeas 42, nays 5",2024-03-08,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Senate dissented from House amendments,2024-03-05,[],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 350: yeas 68, nays 25",2024-03-08,[],IN,2024 +"House advisors appointed: Behning, Davis, Thompson, DeLaney, Klinker and Pfaff",2024-03-06,[],IN,2024 +Signed by the Governor,2024-03-15,['executive-signature'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-03-05,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Senate conferees appointed: Mishler and Randolph Lonnie M,2024-03-05,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 330: yeas 46, nays 0",2024-03-08,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Senator Qaddoura removed as conferee,2024-03-08,[],IN,2024 +Signed by the Speaker,2024-03-07,['passage'],IN,2024 +Public Law 129,2024-03-13,['became-law'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +CCR # 1 filed in the Senate,2024-03-06,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Representative Manning removed as advisor,2024-03-06,[],IN,2024 +Public Law 100,2024-03-13,['became-law'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 314: yeas 32, nays 16",2024-03-08,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-03-07,['passage'],IN,2024 +Motion to dissent filed,2024-03-05,['filing'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 334: yeas 92, nays 1",2024-03-08,[],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +CCR # 1 filed in the Senate,2024-03-07,['filing'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +CCR # 1 filed in the House,2024-03-07,['filing'],IN,2024 +House dissented from Senate amendments,2024-03-06,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Public Law 94,2024-03-13,['became-law'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 322: yeas 47, nays 0",2024-03-08,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Public Law 92,2024-03-13,['became-law'],IN,2024 +CCR # 1 filed in the House,2024-03-06,['filing'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Representative Andrade removed as conferee,2024-03-06,[],IN,2024 +Signed by the President of the Senate,2024-03-08,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Senator Buchanan added as conferee,2024-03-08,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +"Senate advisors appointed: Yoder, Baldwin and Garten",2024-03-05,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Public Law 124,2024-03-13,['became-law'],IN,2024 +Public Law 113,2024-03-13,['became-law'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +House conferees appointed: Thompson and Porter,2024-03-05,[],IN,2024 +Public Law 162,2024-03-13,['became-law'],IN,2024 +Public Law 163,2024-03-13,['became-law'],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the Governor,2024-03-11,['executive-signature'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Public Law 114,2024-03-13,['became-law'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Representative Manning added as conferee,2024-03-06,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 313: yeas 87, nays 0",2024-03-07,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +House conferees appointed: Jeter and DeLaney,2024-03-06,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-03-08,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +"House advisors appointed: Steuerwald, O'Brien, Olthoff, Klinker, Pfaff and Smith V",2024-03-06,[],IN,2024 +"Conference Committee Report 1: adopted by the Senate; Roll Call 300: yeas 48, nays 0",2024-03-07,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Public Law 157,2024-03-13,['became-law'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +CCR # 1 filed in the House,2024-03-06,['filing'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 305: yeas 48, nays 0",2024-03-08,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Public Law 98,2024-03-13,['became-law'],IN,2024 +"House advisors appointed: Jordan, Clere, Judy, DeLaney, Fleming and Pryor",2024-03-05,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Public Law 5,2024-03-11,['became-law'],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +Public Law 134,2024-03-13,['became-law'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Senator Charbonneau added as third author,2024-03-06,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 340: yeas 98, nays 0",2024-03-08,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Rule 105.1 suspended,2024-03-06,[],IN,2024 +Public Law 138,2024-03-13,['became-law'],IN,2024 +CCR # 1 filed in the Senate,2024-03-06,['filing'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 336: yeas 97, nays 0",2024-03-08,[],IN,2024 +Public Law 150,2024-03-13,['became-law'],IN,2024 +Signed by the President Pro Tempore,2024-03-08,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 305: yeas 66, nays 26",2024-03-06,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Public Law 168,2024-03-15,['became-law'],IN,2024 +Representative Zent added as coauthor,2024-03-06,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 326: yeas 39, nays 8",2024-03-08,[],IN,2024 +Public Law 93,2024-03-13,['became-law'],IN,2024 +Senator Yoder removed as advisor,2024-03-08,[],IN,2024 +Senator Randolph Lonnie M removed as conferee,2024-03-08,[],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +"Conference Committee Report 1: adopted by the Senate; Roll Call 302: yeas 39, nays 9",2024-03-07,[],IN,2024 +Senate conferees appointed: Freeman and Taylor G,2024-03-07,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-15,['executive-signature'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Senate advisors appointed: Hunley and Raatz,2024-03-07,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Senator Yoder added as conferee,2024-03-08,[],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Representative Porter removed as conferee,2024-03-08,[],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Public Law 96,2024-03-13,['became-law'],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +Public Law 108,2024-03-13,['became-law'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Representative Cherry added as conferee,2024-03-08,[],IN,2024 +Public Law 127,2024-03-13,['became-law'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Senator Garten removed as advisor,2024-03-08,[],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 327: yeas 45, nays 1",2024-03-08,[],IN,2024 +Public Law 132,2024-03-13,['became-law'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 345: yeas 99, nays 0",2024-03-08,[],IN,2024 +Senator Yoder removed as conferee,2024-03-08,[],IN,2024 +Senator Garten added as conferee,2024-03-08,[],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +CCR # 1 filed in the Senate,2024-03-08,['filing'],IN,2024 +CCR # 1 filed in the House,2024-03-08,['filing'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Vetoed by the Governor,2024-03-18,['executive-veto'],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the House; Roll Call 351: yeas 57, nays 39",2024-03-08,[],IN,2024 +"Rules Suspended. Conference Committee Report 1: adopted by the Senate; Roll Call 331: yeas 45, nays 2",2024-03-08,[],IN,2024 +Signed by the President Pro Tempore,2024-03-11,['passage'],IN,2024 +Signed by the Speaker,2024-03-11,['passage'],IN,2024 +Signed by the President of the Senate,2024-03-12,['passage'],IN,2024 +Signed by the Governor,2024-03-13,['executive-signature'],IN,2024 +Public Law 123,2024-03-13,['became-law'],IN,2024 +"Introduced by Representatives J. Rodriguez, Kerkman, Dittrich, Gundrum, Kuglitsch, Penterman, Rozar, Steffen, Tusler, Knodl and Born; +cosponsored by Senators Wanggaard, Ballweg, Darling, Feyen, Jagler and Stroebel",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Hong, Anderson, Baldeh, Brostoff, Conley, Emerson, Goyke, Hebl, Moore Omokunde, Neubauer, Shankland, Shelton, Sinicki, Spreitzer, Vining and Subeck; +cosponsored by Senators Larson, L. Taylor, Agard and Carpenter",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Macco, Brandtjen, Dittrich, Edming, Horlacher, Moses, Murphy, Knodl, Kuglitsch, Thiesfeldt and Wichgers; +cosponsored by Senators Jacque, Stroebel and Nass",2021-07-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Anderson, Hong, Moore Omokunde, Baldeh, Sinicki, Spreitzer and Brostoff; +cosponsored by Senators Larson, L. Taylor and Carpenter",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Wanggaard, Felzkowski, Marklein and Nass; +cosponsored by Representatives Cabral-Guevara, Spiros, Armstrong, Brandtjen, Callahan, Dittrich, Edming, Knodl, Moses, Murphy, Rozar, Wichgers and Zimmerman",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Wirch, Roys, Johnson, Larson and Smith; +cosponsored by Representatives Drake, Hebl, Snodgrass, Conley, Andraca, Neubauer, Shelton, Stubbs, Pope, Sinicki, Baldeh, Cabrera, Hesselbein, Vruwink, Haywood, Spreitzer, Bowen and Shankland",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vos, Rozar, Armstrong, Born, Dittrich, Duchow, James, Knodl, Kuglitsch, Loudenbeck, Magnafici, Moses, Novak, Penterman, Plumer, Snyder, Steffen, Summerfield, Tauchen, Tusler, Wichgers, Wittke and Zimmerman; +cosponsored by Senators Bernier, Darling, Petrowski, Wanggaard and Wirch",2021-09-15T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Ballweg, Darling and Felzkowski; +cosponsored by Representatives Armstrong, Born, Callahan, Dittrich, Edming, Kuglitsch, Magnafici, Moses, Petersen, Thiesfeldt and Tranel",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Riemer, Bowen, Conley, Anderson, Andraca, B. Meyers, Baldeh, Brostoff, Cabrera, Considine, Emerson, Hebl, Hong, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink; +cosponsored by Senators Agard, Carpenter, Erpenbach, Roys, L. Taylor, Smith and Larson",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman, Penterman, Kurtz, Oldenburg and Tranel; +cosponsored by Senators Marklein and Ballweg",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Allen, Brandtjen, Edming, Gundrum, Kerkman, Knodl, Kuglitsch, Magnafici, Moses, Rozar, Schraa, Steffen, Thiesfeldt, Tittl, Tranel, Tusler, Vos, Murphy and Wichgers; +cosponsored by Senators Jacque, Bernier, Bradley and Nass",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Felzkowski, Kapenga, Testin, Wimberger, Stroebel, Bernier and Nass; +cosponsored by Representatives Thiesfeldt, Horlacher and Schraa",2021-01-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Wimberger, Roth and Jacque; +cosponsored by Representatives Snyder, Krug, Mursau, VanderMeer, Dittrich, Milroy and Snodgrass",2021-05-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Bernier, Felzkowski, Feyen, Marklein, Nass and Stroebel; +cosponsored by Representatives Born, Armstrong, August, Brandtjen, Cabral-Guevara, Callahan, Dittrich, Edming, James, Katsma, Kitchens, Knodl, Krug, Kuglitsch, Kurtz, Loudenbeck, Macco, Moses, Penterman, Petersen, Petryk, Plumer, Rozar, Schraa, Skowronski, Snyder, Sortwell, Steffen, Tittl, Tusler, Vorpagel, Wichgers, Zimmerman, Magnafici and Duchow",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Smith; +cosponsored by Representatives Vruwink, S. Rodriguez, Ohnstad, Doyle, Sinicki, Hebl, B. Meyers, Subeck, Stubbs and Drake",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Penterman, Steffen, Armstrong, Spiros, Dittrich, Loudenbeck, Mursau, Duchow, Wichgers and Tusler; +cosponsored by Senators Jagler, Wanggaard, Marklein, Nass, Darling and Bradley",2021-10-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Nass and L. Taylor; +cosponsored by Representatives Penterman, Skowronski, Sinicki, Cabrera, Allen, Dittrich, Gundrum, Kuglitsch, Zimmerman and Edming",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Cowles, Feyen and Jagler; +cosponsored by Representatives Spiros, Brooks, Sortwell, Thiesfeldt and Tittl",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vos, Summerfield, James, Tusler, Cabral-Guevara, Born, Steineke, Wichgers, Magnafici, Dallman, Katsma, Callahan, Kuglitsch, J. Rodriguez, Vorpagel, Snyder, Duchow, Schraa, Petersen, Thiesfeldt, Swearingen, Zimmerman, Edming, Wittke and Moses",2021-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Ballweg, Jacque and Felzkowski; +cosponsored by Representatives Wittke, Katsma, Vorpagel, Kuglitsch and Murphy",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ballweg and Marklein; +cosponsored by Representatives Mursau, Knodl, Penterman, Skowronski, Snodgrass and Wichgers",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Bernier; +cosponsored by Representatives Schraa, Allen, Armstrong, Brandtjen, Cabral-Guevara, Duchow, Horlacher, James, Knodl, Kuglitsch, Magnafici, Moses, Pronschinske, Rozar, Steffen, Thiesfeldt and Wichgers",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Novak, Tranel, Shankland, Kitchens, Andraca, Billings, Cabrera, Dittrich, Emerson, Oldenburg, Petryk, Plumer, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Cowles and Jacque",2022-02-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Gundrum, Knodl, Allen, Armstrong, Callahan, Edming, Horlacher, Magnafici, Moses, Plumer, Rozar, Schraa, Sortwell and Wichgers; +cosponsored by Senators Stroebel, Felzkowski and Nass",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Marklein and Ballweg; +cosponsored by Representatives Dittrich, Gundrum, Penterman, Mursau, Tusler, Snyder and Thiesfeldt",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Horlacher and Schraa; +cosponsored by Senators Jacque, Felzkowski, Kapenga, Testin, Wimberger, Stroebel, Bernier and Nass",2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Kerkman; +cosponsored by Senator Wanggaard",2021-06-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Bradley, Cowles, Felzkowski, Smith and Stroebel; +cosponsored by Representatives Vruwink, Anderson, Andraca, Brooks, Cabrera, Conley, Drake, Emerson, Haywood, Hong, Horlacher, Kitchens, Kuglitsch, Macco, Magnafici, Mursau, Ramthun, J. Rodriguez, S. Rodriguez, Rozar, Shankland, Shelton, Sinicki, Skowronski, Snodgrass, Sortwell, Thiesfeldt, Tusler, Wichgers and Zimmerman",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snodgrass, Considine, Anderson, Andraca, Baldeh, Behnke, Billings, Cabrera, Conley, Hebl, Hesselbein, Hong, Neubauer, Ohnstad, Pope, Shankland, Shelton, Sinicki, Spreitzer, Stubbs and Vining; +cosponsored by Senators Agard, Smith, Carpenter, Larson, Roys, L. Taylor and Wirch",2021-07-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Roys and Erpenbach; +cosponsored by Representatives S. Rodriguez, Subeck, Brostoff, Hebl, Hesselbein, Hong, Pope, Shelton and Spreitzer",2022-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Brandtjen, Cabral-Guevara, Rozar, Tittl, Gundrum, Sortwell, Tusler, Plumer, Skowronski, James, Allen, Kuglitsch, Moses, Ramthun and Sanfelippo; +cosponsored by Senators Bernier, Jacque and Nass",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Sortwell, Brandtjen, Magnafici, Penterman, Schraa and Wichgers",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Ballweg, Felzkowski, Feyen, Jagler, Stafsholt, Stroebel and Wanggaard; +cosponsored by Representatives Dallman, Allen, Born, Cabral-Guevara, Callahan, Dittrich, Edming, Horlacher, James, Knodl, Macco, Magnafici, Milroy, Mursau, Novak, Summerfield, Swearingen, Krug, Wichgers and Thiesfeldt",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Knodl, Gundrum, Moses and Tauchen; +cosponsored by Senators Stroebel, Nass and Roys",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Horlacher, Andraca, Armstrong, Hintz, Kuglitsch, Murphy, Rozar, Tusler, Vruwink and Brandtjen; +cosponsored by Senators Jacque and Felzkowski",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Mursau, Kuglitsch, Moses, L. Myers, Spiros, Tauchen and Wichgers; +cosponsored by Senators Felzkowski, Ballweg, Marklein and L. Taylor",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Smith, Carpenter, Felzkowski, Feyen, Marklein, Pfaff, L. Taylor and Wanggaard; +cosponsored by Representatives Callahan, Edming, Gundrum, Haywood, Mursau, Ohnstad, Shankland, Snodgrass, Subeck and Tusler",2021-08-11T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson and L. Taylor; +cosponsored by Representatives Spreitzer, S. Rodriguez, Neubauer, Anderson, Andraca, Baldeh, Billings, Brostoff, Cabrera, Conley, Emerson, Goyke, Hebl, Hesselbein, Hong, Pope, Shankland, Shelton, Sinicki, Subeck and Vruwink",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sanfelippo, Dittrich, Duchow, Moses, Murphy and Rozar",2021-01-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, L. Taylor, Darling, Felzkowski, Marklein, Nass and Wanggaard; +cosponsored by Representatives Magnafici, Dittrich, Armstrong, Cabral-Guevara, Callahan, Duchow, Edming, Gundrum, James, Kerkman, Kitchens, Knodl, Krug, Moses, Murphy, Mursau, Novak, Ortiz-Velez, Plumer, J. Rodriguez, Schraa, Skowronski, Snyder, Tittl, Tranel, VanderMeer, Wichgers and Zimmerman",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Petrowski; +cosponsored by Representative Spiros",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Darling, Roth, Marklein, Nass, Ballweg and Felzkowski; +cosponsored by Representatives Duchow, Brooks, Skowronski, Magnafici, Edming, Kerkman, Spiros, Krug, Gundrum, Kuglitsch, Murphy, Wichgers and Knodl",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Hebl, Spreitzer, Hesselbein, Pope, Vruwink, Sinicki and Andraca; +cosponsored by Senators Wirch, Carpenter, Ringhand, Agard, Smith, Larson and L. Taylor",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabrera, Sinicki, Brostoff, Hesselbein, Hebl, Shelton, Riemer, L. Myers, Pope, Shankland, Conley, Bowen, Subeck, Anderson, Drake, Neubauer, Snodgrass, Spreitzer, Baldeh and Stubbs; +cosponsored by Senators Larson, Carpenter, Roys, Smith, Agard and Ringhand",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Johnson, L. Taylor, Agard, Bewley, Carpenter, Erpenbach, Larson, Pfaff, Ringhand, Smith and Wirch; +cosponsored by Representatives Subeck, Emerson, Andraca, Anderson, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Drake, Goyke, Hebl, Hesselbein, Hong, B. Meyers, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Vining and Considine",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga and Felzkowski; +cosponsored by Representatives Duchow, Edming, Mursau, Brandtjen, Brooks, Cabral-Guevara, Dittrich, Novak, J. Rodriguez, Rozar, Skowronski and Tusler",2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Jacque, Bernier, Feyen, Marklein, Stroebel, Wanggaard and Wimberger; +cosponsored by Representatives Snyder, Murphy, Armstrong, Brooks, Cabral-Guevara, Dallman, Gundrum, Krug, Kuglitsch, Loudenbeck, Moses, Mursau, Novak, Ramthun, J. Rodriguez, Schraa, Spiros, Steffen, Tauchen, Tittl, Tranel, VanderMeer, Vorpagel, Wichgers, Wittke and Zimmerman",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Carpenter, Roys, Agard and Johnson; +cosponsored by Representatives Anderson, Subeck, Brostoff, Sinicki, Hebl, Shankland, Ohnstad, Baldeh, Neubauer, Snodgrass, Cabrera, Spreitzer, Milroy, Considine, Pope, Conley, Shelton and Andraca",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Agard, Larson, Erpenbach, Johnson, Ringhand, Roys, Smith and L. Taylor; +cosponsored by Representatives Snodgrass, Novak, Cabrera, Neubauer, Spreitzer, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Conley, Considine, Doyle, Drake, Emerson, Goyke, Hebl, Hesselbein, Hintz, Hong, Kitchens, Milroy, L. Myers, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Subeck and Vining",2021-04-28T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Bernier, Feyen and Felzkowski; +cosponsored by Representatives Armstrong, Tranel, Oldenburg, Born, Cabral-Guevara, Callahan, Duchow, Edming, James, Knodl, Krug, Kurtz, Moses, Mursau, Petryk, Plumer, Rozar, Snyder, Swearingen, Tusler, Vorpagel, Wittke, Zimmerman and Steffen",2021-04-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Goyke, Andraca, Baldeh, Conley, Considine, Emerson, Haywood, Hebl, Hintz, B. Meyers, Pope, Riemer, S. Rodriguez, Shankland, Sinicki, Spreitzer, Subeck, Vining, Hesselbein, Ohnstad and Shelton; +cosponsored by Senators Smith, Agard, Carpenter, Johnson, Larson and L. Taylor",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Magnafici, Dittrich, Allen, Armstrong, Brandtjen, Brooks, Cabral-Guevara, Callahan, Edming, Gundrum, Horlacher, Jagler, James, Knodl, Kuglitsch, Moses, Plumer, Ramthun, Schraa, Skowronski, Sortwell, Tauchen, Thiesfeldt, Tittl, Wichgers and Wittke; +cosponsored by Senators Jacque and Stroebel",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives S. Rodriguez, B. Meyers, Conley, Andraca, Brostoff, Cabral-Guevara, Drake, Emerson, Hebl, Hesselbein, Hong, Milroy, Rozar, Shankland, Sinicki, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Ringhand, Bewley, Carpenter, Cowles, Larson and Roys",2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Larson, Agard, Bewley, Johnson and Ringhand; +cosponsored by Representatives Shelton, Shankland, Emerson, Andraca, Baldeh, Brostoff, Cabrera, Conley, Hebl, Hong, McGuire, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Sinicki, Snodgrass, Spreitzer, Vining, Vruwink, Subeck and Stubbs",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Bernier; +cosponsored by Representatives Brandtjen, Allen, Brooks, Cabral-Guevara, Callahan, Edming, Gundrum, Horlacher, Murphy, Ramthun, Rozar, Sanfelippo, Schraa, Skowronski, Steffen, Thiesfeldt, Tittl and Wichgers",2021-08-11T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Dittrich, Doyle, Gundrum, Mursau, Tusler, Snyder and Thiesfeldt",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Carpenter, L. Taylor and Ringhand; +cosponsored by Representatives L. Myers, Armstrong, Anderson, Vruwink, Bowen, Stubbs, Spreitzer, Subeck, Shelton, Pope, Sinicki, Emerson, Cabral-Guevara, Drake, Cabrera and Andraca",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, L. Taylor, Bernier, Bradley, Carpenter, Johnson, Ringhand and Roys; +cosponsored by Representatives Thiesfeldt, Skowronski, Armstrong, Bowen, Brandtjen, Callahan, Drake, Emerson, Gundrum, Horlacher, Knodl, Moses, Plumer, Rozar, Snodgrass, Subeck and Wichgers",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Neylon, Zimmerman, Armstrong, Brooks, Duchow, Gundrum, Kitchens, Murphy, Riemer, Sortwell, Spiros, Subeck, Tranel and Wichgers; +cosponsored by Senators Stafsholt, Ballweg, Ringhand and L. Taylor",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Brandtjen, Magnafici, Penterman, Schraa, Wichgers and Murphy; +cosponsored by Senator Jacque",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Petryk, Haywood, Bowen, Dallman, Dittrich, Cabral-Guevara, James, Knodl, Moses, Mursau, Pronschinske, Rozar, Steffen, Stubbs, Subeck, VanderMeer, Wichgers, Zimmerman, Spiros and Skowronski; +cosponsored by Senators Kooyenga, Johnson, Marklein, Stroebel, L. Taylor and Wimberger",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Tittl, Goyke, Allen, Anderson, Andraca, Baldeh, Born, Bowen, Brooks, Brostoff, Cabrera, Considine, Doyle, Drake, Edming, Emerson, Gundrum, Haywood, Hebl, Kerkman, Krug, Loudenbeck, Macco, B. Meyers, Milroy, Moses, Mursau, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Petryk, Pope, S. Rodriguez, Rozar, Schraa, Shankland, Shelton, Skowronski, Snodgrass, Snyder, Sortwell, Spreitzer, Subeck, Thiesfeldt, Vining and Zimmerman; +cosponsored by Senators Darling, Roys, Bernier, Carpenter, Felzkowski, Feyen, Johnson, Larson, Ringhand, L. Taylor, Testin, Wanggaard and Wimberger",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Brostoff, Considine, Moore Omokunde, Anderson, Andraca, Baldeh, Billings, Bowen, Cabrera, Conley, Doyle, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Agard, Erpenbach, Johnson, Larson, Ringhand and Roys",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Duchow, Dittrich, Sanfelippo, Allen, Kuglitsch and Wichgers; +cosponsored by Senators Kooyenga and Jagler",2022-01-31T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, L. Taylor, Erpenbach, Agard, Roys and Smith; +cosponsored by Representatives L. Myers, Brostoff, Goyke, Ohnstad, Anderson, Hong, Cabrera, Hebl, Sinicki, Neubauer, Andraca, Snodgrass, Pope, Shelton, Conley, Subeck, Stubbs, Milroy, Emerson, B. Meyers, Shankland, S. Rodriguez, Considine, Vining and Baldeh",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators L. Taylor, Johnson, Roys, Erpenbach, Agard, Smith, Larson and Carpenter; +cosponsored by Representatives Drake, Subeck, Stubbs, Anderson, Baldeh, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer and Vining",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Bewley, Smith, Larson and L. Taylor; +cosponsored by Representatives Hesselbein, Snodgrass, Milroy, Riemer, Sinicki, Hebl, Conley, Hong, Doyle, Vruwink, Pope, Andraca, Anderson, Stubbs, Bowen, Subeck, Shankland, Shelton, B. Meyers, S. Rodriguez and Spreitzer",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Marklein, Ballweg, Felzkowski, Kooyenga and Wirch; +cosponsored by Representatives Tittl, Penterman, Murphy, Mursau, L. Myers, Oldenburg, Shankland, VanderMeer and Wichgers",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Roth and Nass; +cosponsored by Representatives Vos, Murphy, Allen, Magnafici, Moses, Armstrong, Horlacher, Dittrich, Rozar, Cabral-Guevara, Callahan, Spiros, Kuglitsch, Knodl and Wichgers",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Agard, Roys, Erpenbach and L. Taylor; +cosponsored by Representatives Shankland, Spreitzer, Considine, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Stubbs, Subeck and Vining",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Roys, Erpenbach, Agard, L. Taylor and Larson; +cosponsored by Representatives Haywood, Milroy, Ortiz-Velez, Anderson, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Neubauer, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sinicki, Neubauer, Haywood, Spreitzer, Ohnstad, Shankland, Bowen, Doyle, Shelton, Andraca, Drake, Emerson, Snodgrass, Cabrera, Stubbs, Pope, Hong, Conley, Subeck, Vruwink, Milroy, Hebl and Baldeh; +cosponsored by Senators Wirch, Ringhand, Johnson, Bewley, Agard, Erpenbach, Carpenter, Roys and Larson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tauchen, Dittrich, Duchow, Hong, Krug, Kurtz, Macco, Milroy, Moses, Neubauer, Novak, Thiesfeldt, Wittke, Doyle, Vining and Tranel; +cosponsored by Senators Stroebel, Roys and Ballweg",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Agard, Roys, Erpenbach, Larson, Ringhand, Smith and Carpenter; +cosponsored by Representatives Stubbs, Baldeh, Cabrera, Hong, Anderson, Andraca, Brostoff, Conley, Emerson, Haywood, Hebl, Hesselbein, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives James, Cabral-Guevara, Subeck, Spiros, Murphy, Armstrong, Moses, Horlacher and Tusler",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spreitzer, Hong, Hesselbein, Neubauer, Snodgrass, Stubbs, Subeck, Pope, Baldeh, Vruwink, Considine, Andraca, Bowen, Drake, Emerson, Goyke, Hebl, Hintz, B. Meyers, Milroy, Novak, S. Rodriguez, Shankland, Shelton and Sinicki; +cosponsored by Senators Carpenter, Roys, Agard, Bewley, Larson and Ringhand",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Darling; +cosponsored by Representative Thiesfeldt",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Nass, Cowles, Feyen and Felzkowski; +cosponsored by Representatives Tranel, Novak, Kurtz, Oldenburg, VanderMeer, Jagler, Knodl, Moses, Murphy, Mursau, Ramthun, Schraa and Tusler",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin and Stroebel; +cosponsored by Representatives Gundrum, Cabral-Guevara, Dittrich and Horlacher",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Carpenter, Smith, Agard, Wirch, Ringhand, Erpenbach, Roys and Larson; +cosponsored by Representatives Stubbs, Bowen, Haywood, L. Myers, Baldeh, Drake, Moore Omokunde, Shankland, Milroy, Hebl, S. Rodriguez, Andraca, Snodgrass, Ohnstad, Vruwink, Pope, Ortiz-Velez, Doyle, Hesselbein, Neubauer, Subeck, Hong, Cabrera, Spreitzer, Shelton, Anderson, Riemer, Goyke, Vining, Brostoff, Conley, McGuire and Emerson",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein and Ballweg; +cosponsored by Representatives Dallman, Penterman, Kurtz, Oldenburg and Tranel",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Larson, Roys, Wimberger, Johnson, Bewley, Carpenter, Nass and Ballweg; +cosponsored by Representatives Moses, Allen, Cabral-Guevara, Callahan, Dallman, Dittrich, Edming, Gundrum, Macco, Murphy, Novak, Petryk, Tauchen, Thiesfeldt, Tranel, Schraa, Shankland, Sinicki, Spreitzer, Subeck, VanderMeer, Vruwink and Cabrera",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Considine, Shelton, Spreitzer, Hebl, Emerson, Vruwink, B. Meyers, Milroy, Anderson, Sinicki, Hintz, Cabrera and Subeck; +cosponsored by Senators Bewley, Erpenbach, Larson, Roys, Ringhand, Agard, Smith, Pfaff and Carpenter",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles and Jacque; +cosponsored by Representatives Novak, Tranel, Shankland, Kitchens, Andraca, Billings, Cabrera, Dittrich, Emerson, Oldenburg, Petryk, Plumer, Spreitzer, Stubbs and Subeck",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Magnafici; +cosponsored by Senator Bernier",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Armstrong, James, Loudenbeck, Murphy and Ramthun; +cosponsored by Senators Felzkowski, Ballweg, Bernier, Cowles, Nass and Stroebel",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Agard, Carpenter, Erpenbach, Larson, Roys, Johnson, L. Taylor and Wirch",2021-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, L. Taylor, Ringhand, Agard, Bewley, Johnson, Larson, Smith and Wirch",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Horlacher, Brooks and Schraa; +cosponsored by Senators Jacque, Stroebel, Darling, Felzkowski, Kapenga, Marklein, Petrowski, Wanggaard, Testin, Wimberger, Stafsholt, Nass, Kooyenga, Ballweg and Bradley",2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Agard and Roys; +cosponsored by Representatives Kerkman, Emerson, Hong, Milroy, Moses, Sinicki, Subeck, Stubbs and Allen",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Bewley, Carpenter, Roys, Erpenbach, Larson and Ringhand; +cosponsored by Representatives Goyke, Vruwink, Sinicki, Milroy, Emerson, Haywood, Drake, Ohnstad, Vining, Andraca, Conley, Hebl, Hesselbein, Spreitzer, Considine, Shankland, Moore Omokunde, Shelton, Riemer, Hintz, Subeck and Stubbs",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kitchens, Knodl, Murphy, Mursau, Novak, Tauchen, Tusler and VanderMeer; +cosponsored by Senators Cowles and Ballweg",2021-08-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski and Felzkowski; +cosponsored by Representatives Snyder, Spiros, Edming and Callahan",2022-01-26T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, Felzkowski, Marklein and L. Taylor; +cosponsored by Representatives James, Callahan, Bowen, Snyder, Schraa, Brandtjen, Edming, Knodl, Kuglitsch, Magnafici, Mursau, L. Myers, Plumer, Rozar, Spreitzer, Stubbs, Thiesfeldt, Tittl and Horlacher",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Spiros, Armstrong, Brandtjen, Callahan, Dittrich, Edming, Knodl, Moses, Murphy, Rozar, Wichgers and Zimmerman; +cosponsored by Senators Jacque, Wanggaard, Felzkowski, Marklein and Nass",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Billings, Pope, Vining, Baldeh, Bowen, Cabrera, Conley, Considine, Hebl, Milroy, Shelton, Sinicki, Stubbs, Subeck, Vruwink, Cabral-Guevara and Hesselbein; +cosponsored by Senators Carpenter, Agard, Roys and L. Taylor",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tauchen, Dittrich, Kuglitsch, Ramthun and Skowronski; +cosponsored by Senators Kooyenga, Jacque and Ballweg",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Nass, Jacque, Kapenga, Kooyenga, Stroebel, Testin and Felzkowski; +cosponsored by Representatives Wichgers, Knodl, Sanfelippo, Allen, Behnke, Brandtjen, Gundrum, Kuglitsch, Murphy and Skowronski",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Doyle, S. Rodriguez, Snodgrass, B. Meyers, Anderson, Hebl, Vruwink, Spreitzer, Milroy, Hesselbein, Shelton, Shankland, Subeck, Ohnstad and Stubbs; +cosponsored by Senators Pfaff and Larson",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Ohnstad, McGuire, Andraca, Sinicki, Emerson, Cabrera, Hebl, Moore Omokunde, Conley, Vruwink, Snodgrass, Pope, Shelton, Considine, Subeck and Baldeh; +cosponsored by Senators Wirch, Agard, Carpenter, L. Taylor, Larson and Ringhand",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Dallman, Brandtjen, Kitchens, Knodl, Kuglitsch, Kurtz, Magnafici, Mursau, Rozar and Subeck",2021-07-26T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee for Review of Administrative Rules,2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spreitzer, Loudenbeck, Kerkman, Conley, Vruwink, Hebl, Sinicki, Considine, Subeck and Stubbs; +cosponsored by Senators Ringhand, L. Taylor and Wirch",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Novak, Magnafici, Allen, Armstrong, Cabral-Guevara, Dittrich, Duchow, Gundrum, Kitchens, Knodl, Loudenbeck, Mursau, Penterman, J. Rodriguez, Rozar, Sinicki, Skowronski, Spiros, Spreitzer, Steffen, Summerfield, Tittl and Tusler; +cosponsored by Senators Ballweg, Marklein, Feyen, Jacque and Ringhand",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Goyke, Vruwink, Sinicki, Milroy, Emerson, Haywood, Drake, Ohnstad, Vining, Andraca, Conley, Hebl, Hesselbein, Spreitzer, Considine, Shankland, Moore Omokunde, Shelton, Riemer, Hintz, Subeck and Stubbs; +cosponsored by Senators Johnson, Bewley, Carpenter, Roys, Erpenbach, Larson and Ringhand",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Erpenbach, Roys, L. Taylor and Larson; +cosponsored by Representatives Moore Omokunde, Emerson, Sinicki, Anderson, Andraca, Baldeh, Brostoff, Cabrera, Conley, Considine, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Snodgrass, Stubbs, Subeck, Vining and Vruwink",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Marklein; +cosponsored by Representative Vos",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Agard, Bewley, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith, L. Taylor and Wirch; +cosponsored by Representatives Cabrera, Snodgrass, Neubauer, Novak, Spreitzer, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, Kitchens, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Stubbs, Subeck, Vining and Vruwink",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Oldenburg, VanderMeer, Edming, Magnafici, Moses, Mursau, Novak, Plumer and Rozar; +cosponsored by Senators Stafsholt and Pfaff",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Armstrong, Petryk, Penterman, August, Brandtjen, Cabral-Guevara, Callahan, Dittrich, Edming, James, Katsma, Kitchens, Knodl, Krug, Kuglitsch, Loudenbeck, Macco, Magnafici, Moses, Oldenburg, Petersen, Plumer, Schraa, Snyder, Sortwell, Steffen, Tittl, Tusler, Vorpagel, Wichgers, Zimmerman and Born; +cosponsored by Senators Wimberger, Bernier, Darling, Felzkowski, Feyen, Marklein, Nass and Stroebel",2022-01-31T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snodgrass, Considine, Anderson, Andraca, Baldeh, Behnke, Billings, Cabrera, Conley, Hebl, Hong, Neubauer, Ohnstad, Pope, Shelton, Sinicki, Spreitzer, Stubbs, Subeck and Vining; +cosponsored by Senators Agard, Smith, Carpenter, Larson, Roys, L. Taylor and Wirch",2021-07-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth and Darling; +cosponsored by Representatives Murphy, Armstrong, Gundrum and Allen",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Allen, Horlacher and Armstrong",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, L. Taylor, Smith, Roys, Ringhand and Larson; +cosponsored by Representatives Pope, Vining, Shelton, Spreitzer, Hesselbein, Hebl, B. Meyers, Andraca, Considine, Subeck, Emerson, Stubbs, Haywood, Snodgrass, L. Myers and Sinicki",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Allen, Brooks, Brandtjen and Murphy; +cosponsored by Senator Jacque",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, J. Rodriguez, Billings, Brandtjen, Cabrera, Callahan, Drake, James, Kuglitsch, Milroy, Moses, Murphy, Rozar, Shankland, Skowronski, Sinicki, Subeck, Tusler, Vining and Wichgers; +cosponsored by Senators Darling, Agard, Cowles, Jacque, Johnson, Larson, Marklein, Ringhand, L. Taylor, Wanggaard and Wirch",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Cabrera, Hong, Baldeh, Anderson, Andraca, Bowen, Brostoff, Conley, Considine, Emerson, Haywood, Hebl, Hesselbein, Neubauer, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink; +cosponsored by Senators Johnson, Agard, Roys, Bewley, Erpenbach, Larson, Pfaff, Smith, Wirch and Carpenter",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Pfaff, Smith, Bewley, Ringhand, Agard, Roys and Larson; +cosponsored by Representatives Vining, B. Meyers, Shankland, Milroy, Doyle, Vruwink, Snodgrass, Hintz, Sinicki, Hebl, Ohnstad, Shelton, Spreitzer, Considine, Billings, Anderson, Neubauer, Hesselbein, S. Rodriguez, Conley, Subeck, Stubbs, Andraca, Ortiz-Velez and McGuire",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Moses, Mursau and Subeck; +cosponsored by Senators Petrowski, Pfaff and Ringhand",2021-11-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Andraca, Stubbs, Hesselbein, Conley, Hong, Anderson, Hebl, Snodgrass, Baldeh, Sinicki, S. Rodriguez, Pope, Emerson, Ortiz-Velez, Neubauer, Billings, Brostoff, Spreitzer, Shelton, Goyke, Bowen, Ohnstad, Vining, Considine, Moore Omokunde, Subeck, Vruwink, Cabrera and Drake; +cosponsored by Senators L. Taylor, Agard, Johnson, Erpenbach, Roys, Larson, Carpenter, Smith and Ringhand",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Subeck; +cosponsored by Senator Bernier",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vorpagel, Katsma, Tittl, Kuglitsch, Kurtz, Ramthun, Knodl, Vruwink, Zimmerman, Doyle, Horlacher, Moses and Skowronski; +cosponsored by Senators Feyen, Felzkowski, Marklein and Wanggaard",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives VanderMeer, Oldenburg, Armstrong, Krug, Kurtz, Moses, Ortiz-Velez, Skowronski, Tauchen, Thiesfeldt, Tranel, Cabrera, Tittl, Spiros and Edming; +cosponsored by Senators Marklein, Ballweg, L. Taylor and Testin",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Duchow, Allen, Armstrong, Dallman, Edming, Gundrum, Knodl, Krug, Kuglitsch, Macco, Magnafici, Moses, Murphy, Mursau, Penterman, Pronschinske, Schraa and Spiros; +cosponsored by Senators Bernier, Darling, Felzkowski, Marklein, Wanggaard and Ballweg",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Bewley and Agard; +cosponsored by Representatives Brostoff, B. Meyers, Sinicki, Emerson, Spreitzer, Hebl, Shelton, Milroy, Baldeh, Ohnstad, Hong, Anderson, Cabrera, Stubbs and Subeck",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kurtz, Riemer, Novak, Kitchens, Drake, Tusler, Skowronski, B. Meyers, Considine, Subeck, Anderson, Hebl, Vruwink, Moses, Andraca, McGuire, Dallman, Shankland and Emerson; +cosponsored by Senators Kooyenga and Smith",2021-04-06T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabrera, Snodgrass, Neubauer, Novak, Spreitzer, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, Kitchens, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Stubbs, Subeck, Vining and Vruwink; +cosponsored by Senators Carpenter, Agard, Bewley, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith, L. Taylor and Wirch",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Ramthun, Brooks, Cabrera, Dittrich, Gundrum, Knodl, Kuglitsch, Magnafici, Moses, Rozar, Steffen and Wichgers; +cosponsored by Senators Stroebel, Felzkowski and Marklein",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Nass; +cosponsored by Representatives Callahan, Armstrong, Behnke, Born, Brandtjen, Dallman, Dittrich, Edming, Gundrum, James, Katsma, Kitchens, Knodl, Krug, Kuglitsch, Kurtz, Macco, Magnafici, Mursau, Novak, Penterman, Petersen, Petryk, Plumer, J. Rodriguez, Sanfelippo, Snyder, Sortwell, Spiros, Steffen, Swearingen, Thiesfeldt, Tittl, Tranel and Cabral-Guevara",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Bewley, Carpenter, Jacque, Ringhand and Wirch; +cosponsored by Representatives Murphy, Baldeh, Callahan, Edming, Goyke, Krug, Kuglitsch, Loudenbeck, Rozar, Subeck, Tittl, Tusler and Wittke",2021-07-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Pope, Stubbs and Vruwink; +cosponsored by Senator Carpenter",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Cabral-Guevara, Brandtjen, Edming, Horlacher, Knodl and Kuglitsch; +cosponsored by Senators Roth, Stroebel, Felzkowski, Nass and Darling",2021-09-30T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Considine, S. Rodriguez, Cabrera, Conley, Emerson, Hebl, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Pfaff, Smith, Erpenbach, Larson and Ringhand",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Loudenbeck, Sinicki, Thiesfeldt, Shelton, Murphy and Duchow; +cosponsored by Senators Jagler and Cowles",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Stroebel and Nass; +cosponsored by Representatives Cabral-Guevara, Macco, Brandtjen, Dittrich, Edming, Horlacher, Moses, Murphy, Knodl, Kuglitsch, Thiesfeldt and Wichgers",2021-07-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Smith, Cowles, Carpenter, Felzkowski, Feyen, Marklein, Pfaff and Ringhand; +cosponsored by Representatives Callahan, Dittrich, Cabral-Guevara, Edming, Gundrum, Murphy, Mursau, Ohnstad, Shankland, Skowronski, Subeck, Tusler and Spreitzer",2021-08-11T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Petryk, Penterman, Armstrong, Born, Dittrich, Duchow, Edming, Knodl, Kuglitsch, Loudenbeck, Moses, Mursau, Petersen, Thiesfeldt, Tittl, Wichgers and Wittke; +cosponsored by Senators Roth, Ballweg, Bernier and Feyen",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Loudenbeck; +cosponsored by Senator Ballweg",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, Bowen, Hong, Moore Omokunde, Anderson, Baldeh, Drake, Hebl, L. Myers, Cabrera, Stubbs and Spreitzer; +cosponsored by Senators Larson, Roys, Johnson and Agard",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Cowles and Stroebel; +cosponsored by Representatives Krug, Armstrong, Edming, Horlacher, Kitchens, Moses, Murphy, Mursau, Rozar, Thiesfeldt and Tusler",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Emerson, Shelton, Andraca, Baldeh, Cabrera, Conley, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Sinicki, Snodgrass, Spreitzer, Vining, Vruwink, Brostoff, Subeck and Stubbs; +cosponsored by Senators Smith, Larson, Agard, Johnson and Roys",2021-10-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, B. Meyers, Considine, Doyle, Milroy, Vruwink, Baldeh, Cabrera, Emerson, Hebl, Hesselbein, Hong, Neubauer, Ohnstad, S. Rodriguez, Shelton, Snodgrass, Spreitzer, Subeck and Sinicki; +cosponsored by Senators Smith, Bewley, Ringhand and Agard",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Shelton, Baldeh, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hesselbein, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Pope, Subeck and Vining; +cosponsored by Senators Larson, Smith, Carpenter and Roys",2021-05-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Cabral-Guevara, Cabrera, Milroy, Murphy, Mursau, Petryk, Rozar, Skowronski, Tauchen, Tusler, VanderMeer and Knodl; +cosponsored by Senators Jacque, Bernier, Darling and Felzkowski",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Ballweg, Smith, Agard, Bernier, Bewley, Bradley, Carpenter, Cowles, Erpenbach, Felzkowski, Feyen, Jacque, Johnson, Larson, Marklein, Pfaff, Ringhand, Roth, Roys, Stroebel, L. Taylor, Testin, Wanggaard and Wimberger; +cosponsored by Representatives Emerson, Macco, Anderson, Andraca, Bowen, Cabral-Guevara, Conley, Considine, Drake, Hebl, Hesselbein, Horlacher, Kerkman, B. Meyers, Milroy, Murphy, Mursau, Neubauer, Oldenburg, Ortiz-Velez, Pope, Ramthun, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spreitzer, Anderson, Baldeh, Billings, Cabrera, Considine, Doyle, Hebl, Pope, Sinicki, Snodgrass, Subeck and Vruwink; +cosponsored by Senators Smith, Carpenter, Ringhand and Agard",2021-05-13T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski and Bewley; +cosponsored by Representatives Edming and B. Meyers",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steineke, Armstrong, Baldeh, Duchow, Edming, Gundrum, James, Murphy, Novak, Plumer and Rozar; +cosponsored by Senators Darling, Ballweg, Felzkowski and Johnson",2022-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sinicki, Edming, Milroy, Cabrera, Mursau, Brostoff, Vruwink, Cabral-Guevara, Ohnstad, Thiesfeldt, Drake, Hebl, Horlacher, Kitchens, Ortiz-Velez, Doyle, Neubauer, Hesselbein, Shelton, Petryk, Anderson, Bowen, Shankland, Moore Omokunde, Spreitzer, S. Rodriguez, Rozar, Conley, Emerson, Vining, Billings, Snodgrass, B. Meyers, Wittke, Spiros, Armstrong, VanderMeer, Considine, Riemer, Subeck and Baldeh; +cosponsored by Senators Nass, Wirch, Bewley, Carpenter, Johnson, Larson, Roys, Smith, Marklein, Ringhand, Agard, Jacque, L. Taylor, Cowles, Erpenbach and Pfaff",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Mursau, Krug, Edming, Swearingen, Tittl, Moses, Callahan, Tusler, Milroy, Sinicki, Hebl, Andraca and Snodgrass; +cosponsored by Senators Felzkowski, Ballweg, Jagler, L. Taylor, Ringhand and Cowles",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Felzkowski and Nass; +cosponsored by Representatives Brooks, Gundrum, Knodl, Allen, Armstrong, Callahan, Edming, Horlacher, Magnafici, Moses, Plumer, Rozar, Schraa, Sortwell and Wichgers",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Billings, Tranel, Petryk, Doyle, Oldenburg, Pronschinske, Andraca, Cabral-Guevara, Considine, B. Meyers, Milroy, Novak, Ohnstad, Pope, Shankland, Shelton, Subeck and Vruwink; +cosponsored by Senators Smith, Agard, Carpenter, Jacque, Larson, Pfaff and Ringhand",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Ballweg, Felzkowski, Feyen, Jagler, Stafsholt, Stroebel, Testin and Wanggaard; +cosponsored by Representatives Moses, Born, Callahan, Dittrich, Edming, James, Knodl, Magnafici, Mursau, Novak, Snyder, Tranel, Krug, Wichgers and Thiesfeldt",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Born, Armstrong, August, Brandtjen, Cabral-Guevara, Callahan, Dittrich, Duchow, Edming, James, Katsma, Kitchens, Knodl, Krug, Kuglitsch, Kurtz, Loudenbeck, Macco, Magnafici, Moses, Penterman, Petersen, Petryk, Plumer, Rozar, Schraa, Skowronski, Snyder, Sortwell, Steffen, Tittl, Tusler, Vorpagel, Wichgers and Zimmerman; +cosponsored by Senators Testin, Bernier, Felzkowski, Feyen, Marklein, Nass and Stroebel",2022-01-31T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Erpenbach, Johnson, Larson, Roys and Smith; +cosponsored by Representatives Vining, Brostoff, Considine, Moore Omokunde, Anderson, Andraca, Baldeh, Bowen, Billings, Cabrera, Conley, Doyle, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kitchens, Callahan and Knodl; +cosponsored by Senators Cowles, Darling and Ringhand",2021-09-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Carpenter, Smith and Roys; +cosponsored by Representatives Brostoff, Hebl, Milroy, Cabrera, Andraca, Anderson, Subeck and Sinicki",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Oldenburg, Plumer, Cabral-Guevara, Considine, Gundrum, Krug, Rozar, Snyder, Spiros, Tauchen, Tittl, VanderMeer and Tusler; +cosponsored by Senators Ballweg, Cowles, Petrowski, Pfaff and Wanggaard",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Marklein; +cosponsored by Representative Kurtz",2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Neubauer, Brostoff, Spreitzer, Andraca, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hong, B. Meyers, Milroy, Ohnstad, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Vruwink, Pope, Subeck and Moore Omokunde; +cosponsored by Senators Bewley, Agard, Roys, Smith, Wirch and Ringhand",2022-02-22T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Finance,2021-06-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Felzkowski, Ballweg, Bradley, Nass and Roth; +cosponsored by Representatives Gundrum, Tittl, Allen, Armstrong, Brandtjen, Cabral-Guevara, Callahan, Dittrich, Edming, Horlacher, Knodl, Macco, Magnafici, Moses, Mursau, Neylon, Penterman, Rozar, Sortwell, Steffen, Tauchen, Tusler, VanderMeer, Wichgers, Skowronski and Schraa",2021-08-19T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Larson, Carpenter, Agard, Johnson and Ringhand; +cosponsored by Representatives Subeck, Anderson, Brostoff, Andraca, Baldeh, Cabrera, Conley, Considine, Hebl, Hesselbein, Milroy, Neubauer, Ohnstad, Shankland, Snodgrass, Spreitzer and Vining",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Wimberger, Testin, Bernier, Carpenter, Jacque, Pfaff and Wirch; +cosponsored by Representatives Snyder, Skowronski, Allen, Cabral-Guevara, Edming, Moses, Shankland, Wichgers and Sinicki",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Carpenter, Agard, Darling and Felzkowski; +cosponsored by Representatives Katsma, Skowronski, Wichgers, Bowen, Brandtjen, Dittrich, Drake, J. Rodriguez, Loudenbeck, Mursau, Novak, Ortiz-Velez, Rozar, Sinicki, Subeck, Thiesfeldt and Andraca",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Testin, Ballweg, Bernier, Petrowski, Pfaff, Ringhand, Roys, Smith and Wimberger; +cosponsored by Representatives Kitchens, Novak, Tranel, Shankland, Krug, Hong, Milroy, Mursau, Neubauer, Oldenburg, Penterman, Plumer and Tauchen",2021-11-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Dittrich, Horlacher, Knodl, Moses, Plumer, Rozar, Thiesfeldt, Wichgers and Murphy; +cosponsored by Senator Wanggaard",2021-07-13T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Magnafici, Allen, Brandtjen, Cabral-Guevara, Callahan, Dittrich, Duchow, Edming, Gundrum, Horlacher, Murphy, Pronschinske, Ramthun, Rozar, Schraa, Sortwell, Tusler and Wichgers; +cosponsored by Senators Stafsholt, Jacque, Nass and Wanggaard",2021-05-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Bewley, Ballweg, Cowles and Smith; +cosponsored by Representatives Mursau, B. Meyers, Brooks, Callahan, Considine, Edming, Knodl, Milroy, Rozar, Swearingen, Tittl and Tusler",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Armstrong, Gundrum and Allen; +cosponsored by Senators Roth and Darling",2022-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Considine, Hebl, Brostoff, S. Rodriguez, Shankland, Shelton, Hintz, Andraca, Spreitzer, L. Myers, Conley, Hong, Snodgrass, Goyke, Vruwink, Emerson, Sinicki and Drake; +cosponsored by Senators Larson, Erpenbach, Roys, Smith, Bewley, Pfaff and Carpenter",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Smith; +cosponsored by Representative Vruwink",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Felzkowski, Feyen, Jagler, Marklein, Stroebel, Testin and Wanggaard; +cosponsored by Representatives Edming, Dallman, Allen, Armstrong, Born, Cabral-Guevara, Callahan, James, Magnafici, Mursau, Penterman, Snyder, Summerfield, Tauchen, Krug and Thiesfeldt",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Oldenburg, Novak, Spreitzer, Anderson, Baldeh, Bowen, Cabrera, Considine, Drake, Emerson, Hebl, B. Meyers, Moses, Mursau, Rozar, Shankland, Skowronski, Subeck, Tranel, VanderMeer and Vruwink; +cosponsored by Senators Testin, L. Taylor, Pfaff, Ringhand and Smith",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Billings, Pope, Baldeh, Bowen, Cabrera, Conley, Considine, Hebl, Milroy, Sinicki, Shelton, Stubbs, Subeck, Vruwink, Hesselbein and Spreitzer; +cosponsored by Senators Roys, Agard, Carpenter and L. Taylor",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brandtjen, Allen, Brooks, Cabral-Guevara, Callahan, Edming, Gundrum, Horlacher, Murphy, Ramthun, Rozar, Sanfelippo, Schraa, Skowronski, Steffen, Thiesfeldt, Tittl and Wichgers; +cosponsored by Senators Jacque and Bernier",2021-09-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Wanggaard, Ballweg and Darling; +cosponsored by Representatives Penterman, Brandtjen, Cabral-Guevara, Gundrum, Knodl, Murphy, Rozar, Wichgers and Edming",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives S. Rodriguez, Anderson, Andraca, Sinicki, Haywood, Conley, Hebl, Subeck, Considine and Shelton; +cosponsored by Senators Larson and Johnson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Ballweg and Feyen; +cosponsored by Representatives Schraa, Brandtjen, Edming, Gundrum, Kuglitsch, Moses, Murphy, Mursau, Ramthun, Thiesfeldt, Tittl and Wichgers",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Stroebel, Bernier, Felzkowski, Wanggaard, Bradley, Darling, Nass and Marklein; +cosponsored by Representatives Dittrich, Brooks, Gundrum, Horlacher, Magnafici, Moses, Rozar, Thiesfeldt, Wichgers and Skowronski",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Horlacher, Allen, Armstrong, Billings, Brooks, Doyle, Spreitzer, Subeck and Born; +cosponsored by Senators Ballweg, Cowles and Marklein",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga and Marklein; +cosponsored by Representatives Kurtz, Dittrich, Penterman, James, Knodl, Edming, Skowronski, Moses, Armstrong, Brandtjen, Murphy and Allen",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tauchen, Gundrum and Loudenbeck; +cosponsored by Senators Stafsholt, Stroebel, Darling and Feyen",2021-05-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman, Duchow and Plumer; +cosponsored by Senators Bernier and Roth",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Rozar, Armstrong, Born, Brandtjen, Callahan, Dallman, Dittrich, Edming, Gundrum, James, Kitchens, Krug, Kuglitsch, Kurtz, Loudenbeck, Magnafici, Murphy, Mursau, Novak, Penterman, Petersen, Petryk, Plumer, J. Rodriguez, Snyder, Sortwell, Spiros, Thiesfeldt, Tittl, Swearingen, Sanfelippo and Cabral-Guevara; +cosponsored by Senator Jacque",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, L. Taylor, Kooyenga and Nass; +cosponsored by Representatives Ramthun, VanderMeer, Born, Brooks, Callahan, Dittrich, Edming, Horlacher, Kurtz, Milroy, Mursau, Rozar, Spiros, Thiesfeldt, Tranel and Zimmerman",2021-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Stubbs, Brostoff, Anderson, Sinicki, Andraca, Baldeh, Cabrera, Conley, Considine, Hebl, Hesselbein, Milroy, Neubauer, Ohnstad, Pope, Shankland, Shelton, Snodgrass and Spreitzer; +cosponsored by Senators Larson, Agard, Carpenter, Roys and Johnson",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives VanderMeer, Magnafici, Allen, Brandtjen, Cabral-Guevara, Dittrich, Knodl, Moses, Mursau, Sortwell, Thiesfeldt, Wichgers and Tusler; +cosponsored by Senators Nass and Ballweg",2021-12-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Carpenter and Agard; +cosponsored by Representatives Brostoff, Vining, Sinicki, Hebl, Shelton, B. Meyers, Ohnstad, Considine, Cabral-Guevara and Stubbs",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives VanderMeer, Loudenbeck, Sortwell and Kurtz",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Doyle, Considine, B. Meyers, Milroy, Vruwink, Baldeh, Cabrera, Emerson, Hebl, Hesselbein, Hong, Neubauer, Ohnstad, S. Rodriguez, Shelton, Snodgrass, Spreitzer, Subeck and Sinicki; +cosponsored by Senators Smith, Bewley, Ringhand, Agard and Carpenter",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Macco, Armstrong, Edming, Gundrum, Knodl, Krug, Kuglitsch, Magnafici, Moses, Murphy, Mursau, Penterman, Schraa, Spiros and Allen; +cosponsored by Senators Bernier, Cowles, Darling, Stroebel, Felzkowski, Marklein and Ballweg",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brandtjen, Callahan, Dittrich, Drake, Gundrum, Horlacher, Milroy, Moses, Murphy, Mursau, Ortiz-Velez, Ramthun, Rozar, Sanfelippo, Steffen, Tittl, Wichgers, Zimmerman and Subeck; +cosponsored by Senators Jacque, Wanggaard, L. Taylor, Carpenter, Darling and Larson",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Cabral-Guevara, Sinicki and Wichgers; +cosponsored by Senators Felzkowski and L. Taylor",2021-10-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Penterman, Dittrich, Edming, Murphy, Mursau, Wichgers and Knodl; +cosponsored by Senators Kooyenga and Stroebel",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Krug, Kurtz, Thiesfeldt, Spiros, Gundrum, Subeck, Shelton, Hebl, Rozar, Armstrong, Drake, Sinicki, Kitchens, Magnafici, Cabral-Guevara, Milroy, L. Myers, Callahan, Mursau, VanderMeer, Spreitzer, Cabrera and Stubbs; +cosponsored by Senators Bernier, Carpenter, L. Taylor and Ringhand",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Darling, Felzkowski and Marklein; +cosponsored by Representatives Gundrum, Rozar, Armstrong, Behnke, Brooks, Cabral-Guevara, Dittrich, Knodl, Krug, Magnafici, Penterman, Sanfelippo, Wichgers and Murphy",2022-02-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Plumer, Edming, Dittrich, Steffen, Petryk, Krug, Skowronski, Rozar, Mursau, Cabral-Guevara, Wichgers, Sanfelippo, Petersen, Magnafici, Moses, Billings, Subeck, Spiros, Ramthun, James, Ohnstad, Zimmerman and Armstrong; +cosponsored by Senators Testin, Bernier, Feyen, Kooyenga, Wanggaard and Nass",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Ringhand and Stroebel; +cosponsored by Representatives Steffen, Bowen, Dittrich, Gundrum, Murphy, Novak, Petersen, Rozar, Skowronski, Spiros and Zimmerman",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Bradley and L. Taylor; +cosponsored by Representatives Rozar, Allen, Armstrong, Bowen, Drake, Edming, James, Kitchens, Magnafici, Murphy, Mursau, Sinicki, Spreitzer and Vruwink",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg and Marklein; +cosponsored by Representatives Dallman, Kurtz, Skowronski, Steffen, Tittl and Tusler",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Novak, Spiros, Bowen, Armstrong, Andraca, Baldeh, Billings, Brostoff, Considine, Drake, Goyke, James, Kitchens, Moore Omokunde, Mursau, L. Myers, Neubauer, Riemer, Rozar, Schraa, Shelton, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Johnson, Roys, Larson and Wirch",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Drake, Moses, Skowronski, Baldeh, Emerson, Goyke, Haywood, Macco, Vruwink, McGuire, Wittke and Conley; +cosponsored by Senators Wanggaard and L. Taylor",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Agard, Bewley, Carpenter, Larson, Roys, Wirch and Ringhand; +cosponsored by Representatives Anderson, Baldeh, Bowen, Brostoff, Cabrera, Drake, Goyke, Hebl, Neubauer, Shankland, Shelton, Sinicki, Snodgrass, Hesselbein, Stubbs, Vruwink, Subeck, Emerson and Spreitzer",2021-04-28T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spreitzer, Considine, Cabrera, Conley, Doyle, Emerson, Hebl, Hesselbein, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Stubbs, Subeck and Vruwink; +cosponsored by Senators Pfaff, Smith, Agard, Bewley, Erpenbach, Johnson, Larson, Ringhand and Roys",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Wanggaard; +cosponsored by Representatives Spiros, Dittrich, Horlacher, Knodl, Moses, Plumer, Rozar, Thiesfeldt, Wichgers and Murphy",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives McGuire, Andraca, Ohnstad, Anderson, Brostoff, Cabrera, Conley, Emerson, Hebl, Hong, Kerkman, B. Meyers, Milroy, Neubauer, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Wirch, Smith, Larson and Carpenter",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Behnke,2021-06-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Darling and Ringhand; +cosponsored by Representatives Kitchens, Knodl and Callahan",2021-09-15T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee for Review of Administrative Rules,2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Wirch, Carpenter, Agard, L. Taylor, Johnson and Smith; +cosponsored by Representatives Andraca, Kerkman, McGuire, Ohnstad, Neubauer, Snodgrass, Considine, Sinicki, Conley, Pope, Spreitzer, Shelton, Subeck, Hong and Stubbs",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Emerson, Anderson, Conley, Considine, Drake, Haywood, Hebl, Hesselbein, Hong, Milroy, Mursau, Ohnstad, S. Rodriguez, Shankland, Sinicki, Spreitzer, Stubbs, Subeck, Summerfield, Vruwink and Shelton; +cosponsored by Senators Smith, Agard, Bewley, Marklein and Pfaff",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, L. Taylor, Darling, Cowles, Feyen and Roth; +cosponsored by Representatives James, Armstrong, Moses, Murphy and Spiros",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jagler, Pfaff, Cowles, Larson, Marklein, Ringhand, Smith and Wirch; +cosponsored by Representatives Billings, Mursau, Anderson, Cabral-Guevara, Cabrera, Conley, Edming, Milroy, Moses, Pope, Shelton, Shankland, Spiros, Spreitzer, Stubbs and Subeck",2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Andraca, Anderson, Cabrera, Conley, Considine, Hebl, Hesselbein, Hong, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Snodgrass, Stubbs and Vruwink; +cosponsored by Senators Johnson, Erpenbach, Agard, Carpenter, Larson, Pfaff and Roys",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Armstrong, Behnke, Brandtjen, Brooks, Callahan, Dallman, Dittrich, Duchow, Edming, Gundrum, Knodl, Kuglitsch, Magnafici, Moses, Pronschinske, Rozar, Skowronski, Snyder, Spiros, Subeck, Mursau and Tusler; +cosponsored by Senators Bradley, Cowles, Felzkowski, Nass and Wanggaard",2021-06-17T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Ballweg and Wanggaard; +cosponsored by Representatives Brandtjen, Brooks, Dittrich, Horlacher, Loudenbeck, Milroy, Moses, Murphy, Mursau, Ramthun, Rozar, Thiesfeldt, Tusler and Wichgers",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Krug, Armstrong, Edming, Horlacher, Kitchens, Moses, Murphy, Mursau, Rozar, Thiesfeldt and Tusler; +cosponsored by Senators Jacque, Cowles and Stroebel",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Marklein, Ballweg, Feyen, Nass, L. Taylor and Wanggaard; +cosponsored by Representatives Brooks, Brandtjen, Callahan, Dittrich, Gundrum, Knodl, Kuglitsch, Moses, Mursau, Rozar, Schraa, Skowronski, Steffen, Thiesfeldt, Tranel and Tusler",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Neubauer, Anderson, Baldeh, Brostoff, Goyke, Hesselbein, Hintz, Hong, Sinicki, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Wirch, Roys, Agard, Carpenter, Ringhand and Larson",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Roth, Carpenter, Cowles, Ballweg, Bernier, Bewley, Felzkowski, Petrowski, Wanggaard, Wimberger and Kooyenga; +cosponsored by Representatives Krug, Murphy, Armstrong, Baldeh, Billings, Cabral-Guevara, Conley, Dittrich, Duchow, Edming, Hesselbein, James, Mursau, Novak, Loudenbeck, Penterman, Petryk, Shelton, Sinicki, Subeck, Tranel, Spreitzer, Vruwink, Wittke and Schraa",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Born, Schraa, Snyder, Callahan, Behnke, Brandtjen, Dallman, Dittrich, Duchow, Edming, Gundrum, James, Knodl, Krug, Kurtz, Macco, Murphy, Oldenburg, Penterman, Plumer, Steffen, Kitchens, Mursau, Thiesfeldt, Sanfelippo and Vos; +cosponsored by Senators Marklein, Feyen, Jagler and Nass",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Skowronski, Sinicki, Spiros, Tusler, Hesselbein, Emerson, Petryk, Cabral-Guevara, Kerkman, Spreitzer, Bowen, Dittrich, Mursau, Wichgers, Shankland, Vruwink, Neubauer, Conley, Subeck, Horlacher, Ortiz-Velez, Riemer, Kurtz, Armstrong, B. Meyers, Snodgrass, Allen, Hebl, Andraca, Hong, Ohnstad, Thiesfeldt, Drake, Shelton, James, Considine, S. Rodriguez, Vining, Stubbs, Haywood, Anderson, Baldeh, Penterman, Macco, Edming, Tittl, Milroy, Summerfield, Billings, Brostoff, Cabrera, Doyle, Goyke, Hintz, McGuire, Moore Omokunde, L. Myers, Pope, Schraa, Wittke and Plumer; +cosponsored by Senators Roth, Carpenter, Kooyenga, Bewley, Agard, Feyen, L. Taylor, Smith, Ringhand, Wirch, Larson, Pfaff, Johnson and Felzkowski",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Brostoff, Riemer, Baldeh, Bowen, Cabrera, Conley, Emerson, Hebl, Hesselbein, Hintz, Milroy, Neubauer, S. Rodriguez, Shankland, Shelton, Sinicki, Spreitzer, Stubbs, Vining and Vruwink; +cosponsored by Senators Roys, Johnson, Agard, Ballweg, Carpenter, Larson, Bewley, L. Taylor, Wirch and Erpenbach",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vruwink, S. Rodriguez, Ohnstad, Doyle, Sinicki, Hebl, B. Meyers, Subeck, Stubbs and Drake; +cosponsored by Senator Smith",2022-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Feyen; +cosponsored by Representatives Armstrong and Kurtz",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Rozar, Dittrich, Brooks and Skowronski; +cosponsored by Senators Stroebel, Felzkowski, Jacque, Marklein, Bradley and Stafsholt",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Sinicki; +cosponsored by Senator Johnson",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Armstrong, Considine, Edming, Hintz, Moses, Novak, Spreitzer and Subeck; +cosponsored by Senators Petrowski, Ballweg, Felzkowski, Marklein and Ringhand",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Johnson, Agard, Larson, Ringhand, Roys and L. Taylor; +cosponsored by Representatives Subeck, Shelton, Anderson, Andraca, Billings, Cabrera, Conley, Emerson, Goyke, Hebl, Hesselbein, Hong, B. Meyers, Milroy, Moore Omokunde, S. Rodriguez, Shankland, Sinicki, Snodgrass, Spreitzer, Stubbs and Drake",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Brooks, Gundrum, Horlacher, Magnafici, Moses, Rozar, Thiesfeldt, Wichgers and Skowronski; +cosponsored by Senators Kooyenga, Stroebel, Bernier, Felzkowski, Wanggaard, Bradley, Darling, Nass and Marklein",2021-02-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Ballweg, Cowles, Felzkowski and Ringhand; +cosponsored by Representatives Kurtz, Armstrong, Behnke, Milroy, Moses, Novak, Oldenburg, Penterman, Rozar, Skowronski and Tusler",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Agard, Carpenter, Erpenbach, Larson, Roys, L. Taylor and Wirch; +cosponsored by Representatives Shelton, Snodgrass, Hintz, Anderson, Andraca, Baldeh, Brostoff, Cabrera, Conley, Considine, Drake, Hebl, Hesselbein, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Sinicki, Spreitzer, Stubbs, Subeck and Vruwink",2021-07-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Wanggaard, Ballweg, Felzkowski and Nass; +cosponsored by Representatives Brooks, Behnke, Armstrong, Brandtjen, Callahan, Cabral-Guevara, Dittrich, Gundrum, Horlacher, Knodl, Moses, Murphy, Schraa, Tittl and Wichgers",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Bernier, Felzkowski, Feyen and Stafsholt; +cosponsored by Representatives Summerfield, Edming, Armstrong, Born, Plumer, Krug, Cabral-Guevara, Snyder, Callahan, Gundrum, Horlacher, Duchow, Wittke, Rozar, Kurtz, Vorpagel, Moses, Tranel, Swearingen, Zimmerman, Mursau, Tusler, Petryk, Oldenburg, Knodl, James and Jagler",2021-04-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Hong, Anderson, Baldeh, Billings, Brostoff, Cabrera, Conley, Emerson, Hebl, Moore Omokunde, Neubauer, Shelton, Sinicki and Spreitzer; +cosponsored by Senators Agard, Carpenter, Larson and Roys",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Bewley, Carpenter, Cowles, Jacque, Johnson, Marklein, Pfaff, Ringhand and Larson; +cosponsored by Representatives James, Baldeh, Cabral-Guevara, Dittrich, Drake, Edming, Emerson, Gundrum, Magnafici, Mursau, Rozar, Sinicki, Skowronski, Spiros, Stubbs, Subeck, Thiesfeldt, Vruwink, Wittke, Oldenburg, Spreitzer and VanderMeer",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives J. Rodriguez and Thiesfeldt; +cosponsored by Senator Bradley",2021-03-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Zimmerman, McGuire, Armstrong, Cabral-Guevara, Dallman, Drake, Horlacher, Kuglitsch, Loudenbeck, Macco, Moses, Neylon, Novak, Penterman, Plumer, Rozar, Schraa, Skowronski, Snyder, Tusler, Vruwink and Wittke; +cosponsored by Senators Feyen, Ballweg, Cowles, Darling, Pfaff, Ringhand, Wanggaard and Marklein",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Penterman, Plumer, Armstrong, Dittrich, Rozar, Duchow, Mursau, Moses, Emerson, Spreitzer, Thiesfeldt, Skowronski, Magnafici, Subeck and Wittke; +cosponsored by Senators Jagler and Marklein",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wichgers, Armstrong, Billings, Bowen, Brandtjen, Cabral-Guevara, Edming, Gundrum, Horlacher, Milroy, Mursau, Rozar and Pronschinske; +cosponsored by Senators Jacque, Bernier, Feyen and L. Taylor",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Bernier, Darling, Kooyenga, Pfaff, Ringhand, Stafsholt, Stroebel and L. Taylor; +cosponsored by Representatives Plumer, Armstrong, Baldeh, Brooks, Callahan, Dittrich, Duchow, Gundrum, Krug, Magnafici, Moses, Mursau, L. Myers, Neylon, Ramthun, J. Rodriguez, Rozar, Schraa, Skowronski, Snyder, Spiros, Tauchen and Zimmerman",2021-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and L. Taylor; +cosponsored by Representatives Sortwell, Thiesfeldt, Wichgers and Moses",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Armstrong, Brandtjen, Moses, Thiesfeldt and Tusler; +cosponsored by Senators Wanggaard, L. Taylor, Darling, Cowles, Feyen, Jacque and Nass",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Krug, Brandtjen, Brooks, Dittrich, Moses, Murphy, Mursau, Ramthun, Rozar, Schraa, Steffen, Tittl and Wichgers; +cosponsored by Senators Stafsholt, Bernier, Jacque, Stroebel, Wanggaard and Jagler",2021-05-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Cowles; +cosponsored by Representative Steineke",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Novak, Swearingen, Tranel, Armstrong, Conley, Edming, Kurtz, Penterman, J. Rodriguez, Snyder, Spiros, Steffen, Tittl and Tusler; +cosponsored by Senators Roth, Pfaff and Testin",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Horlacher, Brooks and Schraa; +cosponsored by Senators Jacque, Felzkowski, Kapenga, Marklein, Petrowski, Wanggaard, Wimberger, Stroebel, Bernier, Stafsholt, Nass, Ballweg and Bradley",2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Bewley, Roys, Larson and Smith; +cosponsored by Representatives Shelton, Hong, Hebl, Sinicki, Pope, Considine, Vruwink, Subeck, Andraca, Hesselbein, Baldeh and Spreitzer",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell and Gundrum; +cosponsored by Senators Stroebel and Nass",2021-10-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Novak, Dittrich, Knodl, Kuglitsch, Moses, Spiros, Brandtjen and Murphy; +cosponsored by Senators Marklein and Nass",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Employment Relations,2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, L. Taylor, Ballweg, Carpenter, Cowles, Felzkowski, Feyen, Marklein, Nass and Wanggaard; +cosponsored by Representatives Macco, Callahan, Dittrich, Drake, Duchow, Gundrum, Haywood, Horlacher, Katsma, Kitchens, Knodl, Kuglitsch, Moses, Mursau, Oldenburg, Ramthun, Skowronski, Snyder, Steffen, Wittke and Zimmerman",2021-01-21T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Feyen, Jagler and Nass; +cosponsored by Representatives Born, Schraa, Snyder, Callahan, Behnke, Brandtjen, Dallman, Dittrich, Duchow, Edming, Gundrum, James, Knodl, Krug, Kurtz, Macco, Murphy, Mursau, Oldenburg, Penterman, Plumer, Steffen, Kitchens, Thiesfeldt and Vos",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Riemer, S. Rodriguez, Vining, Goyke, Neubauer, Sinicki, Drake, Hintz, Billings, Vruwink, Conley, Doyle, Hebl, Spreitzer, Shelton, Hesselbein, Shankland, Hong, Andraca, Subeck, Cabrera, Stubbs, Pope, Considine, Baldeh, Bowen, Emerson, B. Meyers, Milroy, Ohnstad, Snodgrass, Brostoff, McGuire, Moore Omokunde, Anderson and Ortiz-Velez; +cosponsored by Senators Erpenbach, Smith, Bewley, Johnson, Agard, Roys, Carpenter, Wirch, Ringhand, Larson, L. Taylor and Pfaff",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Edming, Armstrong, Brooks, Callahan, Kerkman, Krug, Loudenbeck, Milroy, Murphy, Ortiz-Velez, Petryk, Rozar, Sinicki, Thiesfeldt, Tittl, Tusler, VanderMeer, Vruwink, Wichgers and Mursau; +cosponsored by Senators Jacque, Nass, Bernier, Carpenter, Ringhand, Testin and Wirch",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Pfaff, Larson and Carpenter; +cosponsored by Representatives Doyle, Billings, Brostoff, Andraca, Conley, Hebl, Cabrera, Emerson, B. Meyers, Sinicki, Spreitzer, Milroy, Considine, Ohnstad, Shelton, Subeck, Stubbs, Vruwink and Shankland",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Billings,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Agard, Roys, Bewley, Erpenbach, Larson, Smith, Wirch and Carpenter; +cosponsored by Representatives Stubbs, Neubauer, Cabrera, Hong, Baldeh, Anderson, Andraca, Bowen, Brostoff, Conley, Considine, Emerson, Haywood, Hebl, Hesselbein, Hintz, B. Meyers, Ohnstad, Pope, Shankland, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Agard and Carpenter; +cosponsored by Representatives Vining, Pope, Billings, Baldeh, Bowen, Cabrera, Conley, Considine, Hebl, Milroy, Sinicki, Shelton, Stubbs, Subeck, Vruwink and Spreitzer",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Bowen, L. Myers, Stubbs, Drake, Behnke, Steffen, Andraca, Baldeh, Cabral-Guevara, Conley, Considine, Dittrich, Hebl, Hesselbein, B. Meyers, Milroy, Moore Omokunde, Neubauer, Penterman, S. Rodriguez, Shankland, Sinicki, Snyder, Spiros, Spreitzer, Subeck, Vining and Vruwink; +cosponsored by Senators Johnson, Agard, Bewley, Larson and Roys",2021-10-06T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Considine, Sinicki, Hebl, Ohnstad, Pope, Subeck, Stubbs, Conley, Spreitzer and Andraca; +cosponsored by Senators Agard, Roys, Bewley and Larson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kuglitsch, Allen, Drake, Haywood, Andraca, Armstrong, Conley, Kerkman, Oldenburg, Stubbs, Ortiz-Velez and Knodl; +cosponsored by Senators Darling, Cowles, Felzkowski and Feyen",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Ballweg, L. Taylor, Agard, Roys, Bewley, Erpenbach, Larson, Pfaff, Ringhand, Smith, Wirch and Carpenter; +cosponsored by Representatives Stubbs, Subeck, Cabrera, Hong, Anderson, Andraca, Bowen, Brostoff, Conley, Considine, Emerson, Haywood, Hebl, Hesselbein, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Milroy, Vining and Vruwink",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Hong, Andraca, Emerson, B. Meyers, Vining, Stubbs, Anderson, Cabrera, Milroy, Pope, Snodgrass, Neubauer, Vruwink, Sinicki, Spreitzer, Shankland, Conley, Considine, Hesselbein, Hebl, Baldeh, L. Myers, Doyle, Subeck, Billings, Ohnstad, S. Rodriguez, Moore Omokunde and Brostoff; +cosponsored by Senators Larson, Carpenter, Roys, Johnson, Agard and Smith",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Cabrera, Emerson, Ortiz-Velez, Anderson, Baldeh, Conley, Hebl, Hesselbein, Snodgrass, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Carpenter and Roys",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Knodl, Brooks, Wichgers, Brandtjen, Tauchen and Sortwell; +cosponsored by Senator Nass",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Bewley, Cowles, Marklein, Ringhand and Wanggaard; +cosponsored by Representatives Mursau, Armstrong, Cabrera, Knodl, Oldenburg, Rozar and Tusler",2021-08-11T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Knodl, Allen, Armstrong, Brooks, Behnke, Cabral-Guevara, Krug, Murphy, Rozar, Tittl, Wichgers and Schraa; +cosponsored by Senator Wimberger",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier and Darling; +cosponsored by Representatives Steineke, Snyder, Allen, Armstrong, Baldeh, Edming, James, Kerkman, Moses, Novak, Ortiz-Velez, Plumer, Rozar, Shankland, Skowronski, Spiros, Spreitzer, Steffen, Subeck, Tauchen, Tranel, Tusler and Mursau",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Carpenter, Larson and Roys; +cosponsored by Representatives Shankland, Snodgrass, Anderson, Andraca, Baldeh, Cabrera, Conley, Considine, Emerson, Hebl, Moore Omokunde, Neubauer, Ohnstad, Shelton, Spreitzer, Subeck and Vining",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Armstrong, Dittrich, Gundrum, Penterman and Born",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Rozar, Callahan, Allen, Dittrich, Edming, Gundrum, James, Knodl, Magnafici, Penterman, Petersen, Ramthun, Schraa, Skowronski, Thiesfeldt, Vorpagel, Murphy, Cabral-Guevara and Behnke; +cosponsored by Senators Bradley, Kapenga, Ballweg, Bernier, Felzkowski, Roth, Stroebel, Testin and Wanggaard",2022-02-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Anderson, Hong, Moore Omokunde, Cabrera, Conley, Hebl, Sinicki, Shelton, Spreitzer, Considine and Subeck; +cosponsored by Senators Larson, L. Taylor and Smith",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Larson, Agard, Bewley and Johnson; +cosponsored by Representatives Emerson, Shankland, Shelton, Andraca, Baldeh, Brostoff, Cabrera, Conley, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Sinicki, Snodgrass, Spreitzer, Vining, Vruwink, Subeck and Stubbs",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Magnafici, Dittrich, Armstrong, Cabral-Guevara, Callahan, Duchow, Edming, Gundrum, James, Kerkman, Kitchens, Knodl, Krug, Moses, Murphy, Mursau, Novak, Ortiz-Velez, Plumer, J. Rodriguez, Schraa, Skowronski, Snyder, Tittl, Tranel, VanderMeer, Wichgers and Zimmerman; +cosponsored by Senators Jacque, L. Taylor, Darling, Felzkowski, Marklein, Nass and Wanggaard",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Darling, Felzkowski, Jacque and Wanggaard; +cosponsored by Representatives Kitchens, Thiesfeldt, Allen, Armstrong, Brandtjen, Cabral-Guevara, Dittrich, James, Knodl, Mursau, Rozar, Schraa, Snyder, Tusler, Wichgers and Summerfield",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Smith, Erpenbach, Johnson, Larson and Ringhand; +cosponsored by Representatives Hesselbein, Emerson, Stubbs, Shelton, Hong, Brostoff, Hebl, Anderson, Neubauer, Subeck, Pope, Shankland, Spreitzer, Billings, Sinicki, Cabrera and Vining",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Loudenbeck; +cosponsored by Senator Kooyenga",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Petersen, Magnafici, Dittrich, Doyle, Allen, Macco, Hesselbein, Tusler and Petryk; +cosponsored by Senators Stafsholt, Feyen and Ballweg",2021-10-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Mursau, B. Meyers, Brooks, Callahan, Considine, Edming, Knodl, Milroy, Ohnstad, Rozar, Swearingen, Tittl and Tusler; +cosponsored by Senators Felzkowski, Bewley, Ballweg, Cowles and Smith",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pronschinske, August, Armstrong, Brandtjen, Cabral-Guevara, Callahan, Dallman, Edming, Gundrum, Horlacher, James, Kuglitsch, Magnafici, Moses, Murphy, Neylon, Novak, Rozar, Schraa, Skowronski, Sortwell, Steffen, Summerfield, Swearingen, Thiesfeldt, Tittl, VanderMeer, Vorpagel, Wichgers, Jagler, Tauchen, Allen and Born; +cosponsored by Senators Felzkowski, Bernier, Jacque, Marklein, Nass, Roth and Wanggaard",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Agard, Bewley, Carpenter, Larson and L. Taylor; +cosponsored by Representatives Shankland, VanderMeer, Andraca, Allen, Baldeh, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Ohnstad, Pope, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hesselbein, Ortiz-Velez, Sinicki, Neubauer, Cabrera, Stubbs and Subeck",2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Anderson, Cabrera, Conley, Considine, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Erpenbach, Johnson, Agard, Bewley, Carpenter, Larson, Pfaff, Ringhand, Roys and Wirch",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Bewley and Wanggaard; +cosponsored by Representatives Skowronski, Horlacher, Sinicki, Vruwink and Wichgers",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Schraa, Dittrich, Duchow, Horlacher, Krug, Ramthun, Novak, J. Rodriguez, Spiros, Tauchen, Tittl, Armstrong, Brooks, Cabral-Guevara, Callahan, Edming, Gundrum, James, Kitchens, Kuglitsch, Loudenbeck, Magnafici, Moses, Mursau, Petersen, Plumer, Rozar, Skowronski, Snyder, Sortwell, Swearingen, Thiesfeldt, Tranel, Vorpagel and Zimmerman; +cosponsored by Senators Felzkowski, Roth, Erpenbach, Bernier, Cowles, Darling, Feyen, Marklein, Ringhand, Smith, Wanggaard, Wirch, Ballweg, Jacque, Larson, Nass and L. Taylor",2021-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Andraca, Cabrera, Considine, Hebl, B. Meyers, Milroy, Pope, Sinicki, Spreitzer and Subeck; +cosponsored by Senators Smith, Bewley, Larson, Roys and L. Taylor",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Armstrong, Behnke, Brandtjen, Callahan, Cabral-Guevara, Dittrich, Gundrum, Horlacher, Knodl, Moses, Murphy, Schraa, Tittl and Wichgers; +cosponsored by Senators Jacque, Ballweg, Felzkowski, Nass and Wanggaard",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Ramthun,2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Feyen and Marklein; +cosponsored by Representatives Dallman, Behnke, Cabral-Guevara, Edming, Knodl, Krug, Magnafici, Murphy, Mursau, Penterman and Ramthun",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Carpenter, Larson, Ringhand, Johnson, Erpenbach, Roys, L. Taylor and Smith; +cosponsored by Representatives Shelton, Snodgrass, Goyke, Anderson, Andraca, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Sinicki, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith and Bewley; +cosponsored by Representative Hintz",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Darling, Nass, Wanggaard, Stroebel and Jagler; +cosponsored by Representatives Wittke, Thiesfeldt, Dittrich, Knodl, Murphy, Penterman, Moses, Rozar, Brandtjen, Macco and Magnafici",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ballweg, Feyen, Larson, Ringhand, Testin, Wimberger, Stroebel and Roys; +cosponsored by Representatives Steffen, Anderson, Brooks, Callahan, Dittrich, Hintz, Hong, Kitchens, Knodl, Milroy, Moses, Murphy, Mursau, L. Myers, Neubauer, J. Rodriguez, Rozar, Schraa, Shankland, Sinicki, Skowronski, Snodgrass, Sortwell, Summerfield, Swearingen, Vorpagel, Vruwink, Drake and Thiesfeldt",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Ballweg; +cosponsored by Representatives Macco, Tauchen, Gundrum, Krug, Kurtz, Loudenbeck, Magnafici, Moses, Oldenburg, Penterman and Edming",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Smith; +cosponsored by Representative Petryk",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kitchens, Novak, Tranel, Shankland, Krug, Hong, Milroy, Mursau, Neubauer, Oldenburg, Penterman, Plumer, Tauchen, Petryk, Subeck, Spiros, Considine, Pope, Vining, Spreitzer, Ohnstad, Conley and Tusler; +cosponsored by Senators Cowles, Testin, Ballweg, Bernier, Petrowski, Pfaff, Ringhand, Roys, Smith and Wimberger",2021-12-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Milroy, Considine, Doyle, B. Meyers, Vruwink, Baldeh, Cabrera, Emerson, Hebl, Hesselbein, Hong, Neubauer, Ohnstad, S. Rodriguez, Shelton, Snodgrass, Spreitzer, Subeck and Sinicki; +cosponsored by Senators Smith, Bewley, Ringhand and Agard",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Finance,2021-06-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Agard, Carpenter, Erpenbach, Felzkowski, Feyen, Jacque, Johnson, Larson, Pfaff, Ringhand, Roys, Wanggaard and Wirch; +cosponsored by Representatives Plumer, Subeck, Skowronski, Anderson, Andraca, Baldeh, Billings, Bowen, Brooks, Brostoff, Cabrera, Callahan, Conley, Considine, Dittrich, Doyle, Drake, Duchow, Edming, Emerson, Goyke, Gundrum, Hebl, Hesselbein, Hintz, Hong, Katsma, Kerkman, Knodl, Kuglitsch, Magnafici, B. Meyers, Milroy, Mursau, L. Myers, Neubauer, Novak, Ohnstad, Ortiz-Velez, Pronschinske, Riemer, J. Rodriguez, S. Rodriguez, Rozar, Schraa, Shankland, Shelton, Sinicki, Snodgrass, Snyder, Spiros, Spreitzer, Steffen, Stubbs, Tauchen, Tittl, Tusler, Vining, Vos, Vruwink and Wichgers",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Armstrong, Gundrum and Allen; +cosponsored by Senators Roth and Darling",2022-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Novak, Zimmerman, Armstrong, Born, Cabral-Guevara, Edming, Dittrich, Duchow, Gundrum, Jagler, James, Katsma, Krug, Knodl, Kurtz, Moses, Mursau, Oldenburg, Petryk, Plumer, Rozar, Snyder, Swearingen, Tranel, Vorpagel and Wittke; +cosponsored by Senators Marklein, Bernier, Stroebel, Felzkowski, Feyen, Jacque and Stafsholt",2021-04-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Horlacher, Emerson, Allen, Brandtjen, Callahan, Dittrich, Edming, Kerkman, Kuglitsch, Loudenbeck, Milroy, Mursau, Novak, Petryk, Ramthun, Thiesfeldt, Shelton and Spreitzer; +cosponsored by Senators Jacque, Wanggaard, Bewley, Agard, Ballweg, Nass, Pfaff, Ringhand, L. Taylor and Johnson",2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Hong, Anderson, Andraca, Baldeh, Billings, Bowen, Conley, Considine, Drake, Goyke, Haywood, Hebl, Hesselbein, Hintz, Neubauer, Ohnstad, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Subeck, Vruwink, Kurtz, Wittke, Ortiz-Velez and Novak; +cosponsored by Senators Roys, Agard, Bewley, Carpenter, Erpenbach, Johnson, Larson, Pfaff and Darling",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Wimberger; +cosponsored by Representatives Sortwell, Knodl, Armstrong, Brooks, Behnke, Cabral-Guevara, Krug, Murphy, Rozar, Tittl and Wichgers",2022-02-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Feyen; +cosponsored by Representatives Pronschinske, Loudenbeck, Horlacher, Kuglitsch, Moses, Petryk, Skowronski and Zimmerman",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Nass; +cosponsored by Representatives Ramthun, Wichgers, Behnke, Brandtjen, Gundrum and Thiesfeldt",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Andraca, Conley, Hesselbein, Hong, Anderson, Hebl, Snodgrass, Baldeh, Sinicki, S. Rodriguez, Pope, Emerson, Ortiz-Velez, Neubauer, Billings, Brostoff, Spreitzer, Shelton, Goyke, Bowen, Ohnstad, Riemer, Vining, Considine, Hintz, B. Meyers, Haywood, Cabrera and Drake; +cosponsored by Senators Johnson, Agard, Erpenbach, Roys, Larson, L. Taylor, Carpenter, Bewley, Smith and Ringhand",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Born, Macco, Cabral-Guevara, Drake, Gundrum, Katsma, Kerkman, Knodl, Kuglitsch, Magnafici, Murphy, Sinicki and Steffen; +cosponsored by Senators Darling and Cowles",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Felzkowski, Jacque, Marklein, Bradley and Stafsholt; +cosponsored by Representatives Rozar, Dittrich, Brooks and Skowronski",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Emerson, Shelton, Andraca, Baldeh, Cabrera, Conley, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Sinicki, Snodgrass, Spreitzer, Vining, Vruwink, Brostoff, Subeck and Stubbs; +cosponsored by Senators Smith, Larson, Agard, Johnson and Roys",2021-10-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Cowles, Darling, Stroebel, Felzkowski, Marklein and Wanggaard; +cosponsored by Representatives Dittrich, Allen, Armstrong, Edming, Gundrum, Knodl, Krug, Kuglitsch, Macco, Magnafici, Murphy, Mursau, Penterman, Schraa and Spiros",2022-02-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, L. Myers, Hong, Anderson, Baldeh, Billings, Brostoff, Cabrera, Conley, Emerson, Goyke, Hebl, Moore Omokunde, Neubauer, Shankland, Shelton, Sinicki, Spreitzer and Subeck; +cosponsored by Senators Johnson, Agard, Larson and Roys",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Born, Edming, Horlacher, James, Kitchens, Krug, Milroy, Mursau, Novak, Oldenburg, Petryk, Plumer, J. Rodriguez, Shankland, Sortwell, Steffen, Tranel, VanderMeer, Subeck, Spreitzer and Murphy; +cosponsored by Senators Marklein, Bewley, Ballweg and Darling",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives B. Meyers, S. Rodriguez, Andraca, Brostoff, Anderson, Sinicki, Shelton, Hebl, Snodgrass, Vruwink, Cabrera, Spreitzer, Shankland, Subeck and Stubbs; +cosponsored by Senators Smith, Bewley, Roys, Larson and Pfaff",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Moses, Allen, Brooks, Edming, Loudenbeck, Magnafici, Murphy, Pronschinske, Rozar, Tusler, Wichgers and Cabral-Guevara; +cosponsored by Senators Bernier, Nass and Jacque",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Cabrera, Bowen, Anderson, Baldeh, Brostoff, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Subeck and Vining; +cosponsored by Senators L. Taylor, Johnson, Agard, Erpenbach, Roys, Smith and Larson",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pronschinske, Allen, Brandtjen, Callahan, Edming, Gundrum, Knodl, Kuglitsch, Magnafici, Rozar, Schraa and Wichgers; +cosponsored by Senators Roth, Wanggaard, Bernier, Felzkowski and Nass",2021-10-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Plumer, Subeck, Skowronski, Anderson, Andraca, Baldeh, Billings, Bowen, Brooks, Brostoff, Cabrera, Callahan, Conley, Considine, Dittrich, Doyle, Drake, Duchow, Edming, Emerson, Goyke, Gundrum, Hebl, Hintz, Hesselbein, Hong, Katsma, Kerkman, Kuglitsch, Knodl, Magnafici, Milroy, Mursau, B. Meyers, L. Myers, Neubauer, Novak, Ohnstad, Ortiz-Velez, Pronschinske, Riemer, J. Rodriguez, S. Rodriguez, Rozar, Schraa, Shankland, Shelton, Sinicki, Snodgrass, Snyder, Spiros, Spreitzer, Steffen, Stubbs, Tauchen, Tittl, Tusler, Vining, Vos, Vruwink and Wichgers; +cosponsored by Senators Darling, Agard, Carpenter, Erpenbach, Felzkowski, Feyen, Jacque, Johnson, Larson, Pfaff, Ringhand, Roys, Wanggaard and Wirch",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Smith; +cosponsored by Representatives Snodgrass, Shelton, Conley, Hong, Sinicki and Stubbs",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Felzkowski, Marklein and Wanggaard; +cosponsored by Representatives Vorpagel, Katsma, Doyle, Horlacher, Knodl, Kuglitsch, Kurtz, Moses, Ramthun, Skowronski, Tittl, Vruwink and Zimmerman",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga and Jagler; +cosponsored by Representatives Duchow, Dittrich, Sanfelippo, Allen, Kuglitsch and Wichgers",2022-01-26T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, L. Taylor, Ballweg and Marklein; +cosponsored by Representatives Thiesfeldt, Knodl, Brooks, Moses, Sinicki and Skowronski",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, L. Taylor, Agard, Ballweg, Carpenter, Cowles and Roys; +cosponsored by Representatives Thiesfeldt, Baldeh, Knodl, Moses, L. Myers, Rozar, Sinicki, Skowronski, Spreitzer and Tusler",2021-09-15T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, L. Taylor, Ballweg, Marklein, Testin and Wanggaard; +cosponsored by Representatives VanderMeer, Moses, Murphy, Snodgrass, Thiesfeldt and Tittl",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Johnson, Ballweg, Felzkowski and Larson; +cosponsored by Representatives Rozar, Billings, Snyder, Armstrong, Cabrera, Considine, Dittrich, Emerson, Hebl, Ramthun, S. Rodriguez, Shankland, Sinicki, Spiros, Spreitzer, Stubbs, Subeck and Edming",2021-02-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Ballweg, Carpenter, Petrowski, Ringhand, Roys, L. Taylor and Wirch; +cosponsored by Representatives Novak, Magnafici, Cabrera, Dittrich, Duchow, Kerkman, Kitchens, Moses, Mursau, Ortiz-Velez, Rozar, Shankland, Sinicki, Snyder, Subeck, Tittl and Tusler",2021-02-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Wirch, Agard, Carpenter, Feyen, Kooyenga, L. Taylor and Testin; +cosponsored by Representatives Summerfield, Sinicki, Edming, Considine, Andraca, Bowen, Doyle, Gundrum, Krug, Milroy, Moses, Petryk, Rozar, Snodgrass, Sortwell, Subeck, Thiesfeldt, Vruwink, Billings, Knodl and Murphy",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jagler, Marklein and Nass; +cosponsored by Representatives James, Sortwell, Armstrong, Horlacher, Penterman and Knodl",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Agard, Carpenter, Jacque, Larson, Pfaff and Ringhand; +cosponsored by Representatives Billings, Tranel, Petryk, Doyle, Oldenburg, Pronschinske, Andraca, Cabral-Guevara, Considine, B. Meyers, Milroy, Novak, Ohnstad, Pope, Shankland, Shelton, Subeck, Vruwink and Spreitzer",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, L. Myers, Hong, Anderson, Baldeh, Billings, Cabrera, Conley, Considine, Emerson, Goyke, Hebl, Moore Omokunde, Neubauer, Shankland, Shelton, Sinicki, Spreitzer and Subeck; +cosponsored by Senators Johnson, Larson, Agard, Carpenter, Roys and L. Taylor",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Goyke, Andraca, Baldeh, Conley, Considine, Emerson, Haywood, Hebl, Hintz, B. Meyers, Pope, Riemer, S. Rodriguez, Shankland, Sinicki, Spreitzer, Subeck, Vining, Hesselbein, Ohnstad and Shelton; +cosponsored by Senators Smith, Agard, Carpenter, Johnson, Larson and L. Taylor",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Billings, Kitchens, Armstrong, Baldeh, Bowen, Cabrera, Considine, Conley, Emerson, Haywood, Hebl, Hesselbein, Krug, B. Meyers, Moses, Mursau, Neubauer, Novak, Ortiz-Velez, Rozar, S. Rodriguez, Shankland, Shelton, Sinicki, Skowronski, Spiros, Spreitzer, Steffen, Subeck, Tusler, Vining and Wichgers; +cosponsored by Senators Darling, Johnson, Bernier, Carpenter, Cowles, Erpenbach, Jacque, Larson, Pfaff, Ringhand, Roys, Smith, L. Taylor and Ballweg",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spreitzer, Loudenbeck, Bowen, Conley, Drake, Emerson, Hesselbein, Hintz, S. Rodriguez, Shelton, Skowronski, Subeck, Tauchen and Vruwink; +cosponsored by Senators Ringhand, Nass, Carpenter, Cowles and Felzkowski",2021-03-08T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Wanggaard, Feyen, Marklein and Stroebel; +cosponsored by Representatives Steffen, Sortwell, Kuglitsch, Brandtjen, Wichgers, James, Gundrum, Duchow, Skowronski, Dittrich and Knodl",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Wanggaard, L. Taylor, Carpenter, Darling, Felzkowski and Larson; +cosponsored by Representatives Brandtjen, Callahan, Dittrich, Drake, Gundrum, Horlacher, Milroy, Moses, Murphy, Mursau, Ortiz-Velez, Ramthun, Rozar, Sanfelippo, Steffen, Tittl, Wichgers, Zimmerman and Subeck",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, Jacque, Kooyenga, Roth, Stroebel, Testin and Darling; +cosponsored by Representatives Duchow, Neylon, Allen, Brandtjen, Brooks, Cabral-Guevara, Dittrich, Gundrum, Horlacher, James, Krug, Kuglitsch, Magnafici, Murphy, Novak, Rozar, Sortwell, Thiesfeldt, Tusler, VanderMeer, Vorpagel, Wichgers and Wittke",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Zimmerman, Armstrong, Brandtjen, Dittrich, Edming, Gundrum, James, Kurtz, Murphy, Plumer, Snodgrass, Tauchen and Tusler; +cosponsored by Senators Roth, Bernier, Cowles and Felzkowski",2021-12-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Rozar, Snyder, Armstrong, Billings, Cabrera, Considine, Dittrich, Edming, Emerson, Hebl, Ramthun, S. Rodriguez, Shankland, Sinicki, Spiros, Spreitzer, Stubbs, Subeck and Skowronski; +cosponsored by Senators Darling, Johnson, Ballweg, Felzkowski and Larson",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Johnson, Carpenter, Erpenbach, Roys and Ringhand; +cosponsored by Representatives Emerson, Anderson, Snodgrass, Sinicki, Vruwink, Drake, Conley, Hebl, Spreitzer, Considine, Shankland, Shelton, Baldeh and Stubbs",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Cabral-Guevara, Armstrong, Gundrum, Horlacher, Rozar, Subeck, Tusler and Wichgers; +cosponsored by Senators Jacque, Ballweg and Carpenter",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Horlacher, Kitchens, Murphy, Mursau, Schraa, Skowronski, Wichgers, Zimmerman, Callahan, Edming, Sortwell, Moses and Rozar; +cosponsored by Senators Felzkowski, Kooyenga and Bernier",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, VanderMeer, Andraca, Allen, Baldeh, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Ohnstad, Pope, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Smith, Agard, Bewley, Carpenter, Larson and L. Taylor",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kapenga, Ballweg, Darling, Jacque, Jagler, Nass and Petrowski; +cosponsored by Representatives Kuglitsch, Steineke, Sinicki, Allen, Cabral-Guevara, Dittrich, Horlacher, Knodl, Loudenbeck, Murphy, Mursau, Penterman, Petryk, Schraa, Spiros, Spreitzer, Steffen, Subeck, Swearingen, Thiesfeldt, Tittl, Tranel and Vruwink",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Roys and L. Taylor; +cosponsored by Representatives Subeck, Vining, Andraca, Considine, Emerson, Hebl, Hong, Pope, Shelton, Sinicki, Spreitzer, Stubbs and Vruwink",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Neubauer, Anderson, Emerson, Baldeh, Brostoff, Cabrera, Conley, Considine, Hebl, Hong, B. Meyers, Milroy, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining; +cosponsored by Senators Roys, Larson, Agard, Erpenbach, L. Taylor and Smith",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, B. Meyers, Anderson, Cabrera, Conley, Doyle, Emerson, Hebl, Hesselbein, Hong, Milroy, L. Myers, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Pfaff, Erpenbach, Agard, Bewley, Carpenter, Johnson, Larson, Ringhand, Roys and Wirch",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kurtz, Dittrich, Duchow, Edming, Kuglitsch, Magnafici, Moses, Skowronski, Tranel and Zimmerman; +cosponsored by Senators Testin and Marklein",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Bernier, Jacque, Jagler, Stroebel and Wanggaard; +cosponsored by Representatives Krug, Brandtjen, Brooks, Dittrich, Moses, Murphy, Mursau, Ramthun, Rozar, Schraa, Steffen, Tittl and Wichgers",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth and Darling; +cosponsored by Representatives Murphy, Armstrong, Gundrum and Allen",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, Nass and Felzkowski; +cosponsored by Representatives Dallman, Murphy, Moses, Knodl, Swearingen and Rozar",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Skowronski, Brandtjen, Edming, James, Moses, Ramthun, Sanfelippo, Schraa and Wichgers; +cosponsored by Senators Bradley and Nass",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Carpenter, Nass, Marklein, Bradley, Testin, L. Taylor, Smith, Roth, Ringhand, Jacque, Johnson, Cowles, Wanggaard, Bewley, Wirch, Jagler, Bernier and Feyen; +cosponsored by Representatives Skowronski, Vos, Hintz, Vorpagel, Sinicki, Spiros, Tittl, Callahan, Magnafici, Vruwink, Petryk, Armstrong, James, Rozar, Plumer, Pronschinske, Penterman, Ramthun, Dittrich, Doyle, Macco, Tusler, J. Rodriguez, Cabral-Guevara, Gundrum, Mursau, Subeck, Dallman, Kerkman, Behnke, Knodl, Hebl, Milroy, B. Meyers, Summerfield, Kuglitsch, Hesselbein, Spreitzer, Zimmerman, Horlacher, Tranel, Conley, VanderMeer, Loudenbeck, Moore Omokunde, Andraca, Emerson, Snodgrass, Brostoff, Neubauer, Edming, Shelton, Drake, McGuire, Bowen, Ohnstad, Wittke, Shankland, Anderson, Swearingen, Baldeh, Kitchens, Allen and Considine",2021-11-01T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Bernier and Testin; +cosponsored by Representatives Spiros, Krug, Rozar and VanderMeer",2021-08-11T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Kooyenga and Bernier; +cosponsored by Representatives Dittrich, Mursau, Horlacher, Kitchens, Murphy, Schraa, Skowronski, Moses, Zimmerman, Callahan, Edming, Wichgers, Rozar and Sortwell",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hesselbein, B. Meyers, Milroy, Riemer, Sinicki, Hebl, Conley, Hong, Cabrera, Pope, Andraca, Anderson, Stubbs, Spreitzer, Subeck, Shankland, Shelton and S. Rodriguez; +cosponsored by Senators Roys, Wirch, Bewley, Agard, Smith, Larson, Carpenter and L. Taylor",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Haywood, Loudenbeck, Emerson, Hebl, B. Meyers, Krug, Kitchens, Andraca, S. Rodriguez, Drake, Vruwink, Subeck, Vining, Cabrera, Wittke, Hong, Considine, Hesselbein, Baldeh, Spreitzer, Shankland and Shelton; +cosponsored by Senator L. Taylor",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Loudenbeck, Vorpagel, Kuglitsch, Magnafici, Duchow, Moses, Bowen, Callahan, Kitchens, Mursau and Sinicki; +cosponsored by Senators Darling, Ballweg, Carpenter, Felzkowski, Ringhand and L. Taylor",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Roth; +cosponsored by Representatives Cabral-Guevara, Allen and Schraa",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Johnson, Smith, Agard, Carpenter, Roys, L. Taylor, Ringhand, Erpenbach and Bewley; +cosponsored by Representatives Pope, Andraca, Considine, Spreitzer, Vining, Sinicki, Brostoff, Anderson, Hesselbein, Goyke, B. Meyers, Cabrera, Snodgrass, L. Myers, Shankland, Drake, Emerson, Shelton, Hebl, Conley, Subeck, S. Rodriguez, Ohnstad, Stubbs, Milroy, Vruwink and Hong",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Carpenter and Nass; +cosponsored by Representatives Thiesfeldt, Steffen, Baldeh, Brandtjen, Brostoff, Gundrum, Knodl, Plumer, Rozar, Skowronski and Spiros",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier and Petrowski; +cosponsored by Representative James",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Mursau, Penterman, Knodl, Skowronski, Snodgrass and Wichgers; +cosponsored by Senators Felzkowski, Ballweg and Marklein",2022-01-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Edming, Knodl, Penterman, Allen, Kuglitsch, Armstrong, Gundrum, Krug, Macco, Magnafici, Murphy, Mursau, Schraa and Spiros; +cosponsored by Senators Bernier, Marklein, Cowles, Darling, Stroebel, Felzkowski, Wanggaard and Ballweg",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Sortwell, Allen, James, Magnafici and Murphy; +cosponsored by Senator Jacque",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, Bowen, Moore Omokunde, Shelton, Andraca, Anderson, Cabrera, Conley, Considine, Emerson, Hebl, Hesselbein, Hong, L. Myers, Pope, Sinicki, Spreitzer, Stubbs, Subeck and Vining; +cosponsored by Senators Larson, Roys, Agard, Johnson, Smith and L. Taylor",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Petryk, Armstrong, Callahan, Dittrich, Edming, James, Krug and Novak; +cosponsored by Senators Bernier, Darling and Felzkowski",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Gundrum, Moses, Rozar, Thiesfeldt and Wichgers; +cosponsored by Senator Stafsholt",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Thiesfeldt, Dittrich, Brandtjen, Knodl, Macco, Magnafici, Murphy and Rozar; +cosponsored by Senators Darling, Roth, Stroebel and Wanggaard",2022-02-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Armstrong, Behnke, Born, Brandtjen, Dallman, Dittrich, Edming, Gundrum, James, Katsma, Kitchens, Knodl, Krug, Kuglitsch, Kurtz, Macco, Magnafici, Mursau, Novak, Penterman, Petersen, Petryk, Plumer, J. Rodriguez, Sanfelippo, Snyder, Sortwell, Spiros, Steffen, Swearingen, Thiesfeldt, Tittl, Tranel and Cabral-Guevara; +cosponsored by Senators Jacque and Nass",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Drake, Goyke, Vruwink, Hebl, Andraca, Hong, Shelton, Milroy, Considine, Stubbs, S. Rodriguez, Moore Omokunde, Subeck, Vining, Spreitzer, Pope, Snodgrass, Sinicki and Cabrera; +cosponsored by Senators Johnson, Carpenter, Larson and Agard",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Callahan, Dittrich, Drake, Gundrum, Murphy, Rozar and Wichgers; +cosponsored by Senators Jacque, Nass, Carpenter and Cowles",2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Darling, Jacque, Stroebel, Wanggaard and Johnson; +cosponsored by Representatives J. Rodriguez, Brooks, Armstrong, Billings, Brandtjen, Dittrich, Doyle, Duchow, James, Kitchens, Magnafici, Moses, Murphy, Mursau, Oldenburg, Rozar, Spiros, Steffen, Tusler and Skowronski",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Moses, Subeck, Armstrong, Cabral-Guevara, Dittrich, Krug, Rozar and Wichgers; +cosponsored by Senators Jacque and Carpenter",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Wanggaard, Nass, Marklein and Ballweg; +cosponsored by Representatives Dittrich, Gundrum, Rozar, Katsma, Ramthun, Moses, Murphy, Neylon, Callahan, Thiesfeldt, Kuglitsch, Brooks, Schraa, Cabral-Guevara, Spiros, Allen, Edming and Knodl",2021-08-11T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Knodl, Armstrong, Allen, Brandtjen, Brooks, Cabral-Guevara, Callahan, Dallman, Dittrich, Duchow, Edming, Gundrum, Horlacher, James, Krug, Kuglitsch, Magnafici, Moses, Murphy, Neylon, Novak, Oldenburg, Pronschinske, Ramthun, Rozar, Sanfelippo, Schraa, Skowronski, Sortwell, Summerfield, Tauchen, Thiesfeldt, Tittl, VanderMeer, Wichgers and Zimmerman; +cosponsored by Senators Stroebel, Testin, Felzkowski, Jacque, Marklein, Nass, Wanggaard and Feyen",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth and Darling; +cosponsored by Representatives Murphy, Armstrong, Gundrum and Allen",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Darling, Felzkowski and Marklein; +cosponsored by Representatives Sortwell, Brandtjen, Cabral-Guevara, Dittrich, Edming, Horlacher, Mursau, Ortiz-Velez, Steffen, VanderMeer, Wichgers and Stubbs",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Nass, Ballweg, Cowles, Darling, Felzkowski, Jagler, Marklein and Roth; +cosponsored by Representatives Vos, Armstrong, Behnke, Brooks, Cabral-Guevara, Dallman, Dittrich, Duchow, Edming, James, Kuglitsch, Kurtz, Magnafici, Murphy, Neylon, Penterman, Plumer, Schraa, Sortwell, Spiros, Steffen, Thiesfeldt, Wichgers, Wittke, Zimmerman and Knodl",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, Marklein and Ballweg; +cosponsored by Representatives Spiros, Knodl, Cabral-Guevara, Callahan, Dittrich, Edming, James, Kuglitsch, Murphy, Ramthun, Wichgers, Steffen, Magnafici, Gundrum, Moses, Rozar and Neylon",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Brandtjen, Horlacher, Moses, Murphy, Ramthun, Schraa, Skowronski and Wichgers; +cosponsored by Senator Jacque",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Magnafici, Doyle, Drake, Duchow, B. Meyers, Murphy, Novak, Petersen, Schraa, Steffen, Stubbs, Tauchen, Tittl, Vruwink and Loudenbeck; +cosponsored by Senators Stafsholt, L. Taylor, Ballweg, Bewley, Jagler, Nass and Stroebel",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ringhand, Agard, Larson, Roys, Smith and Wirch; +cosponsored by Representatives McGuire, Conley, Ohnstad, Riemer, Anderson, Baldeh, Bowen, Brostoff, Cabrera, Considine, Doyle, Drake, Emerson, Milroy, Shankland, Spreitzer, Stubbs, S. Rodriguez and Vining",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Smith, Roys, Carpenter, Agard and Bewley; +cosponsored by Representatives Emerson, Shelton, Shankland, Pope, Conley, Andraca, Hesselbein, Hebl, Spreitzer, Considine, B. Meyers, Vruwink, Anderson, Sinicki and Stubbs",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Roys, Erpenbach, Agard, L. Taylor and Larson; +cosponsored by Representatives Vining, Goyke, Ortiz-Velez, Anderson, Andraca, Baldeh, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Subeck",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Agard, Carpenter, Johnson, Larson and L. Taylor; +cosponsored by Representatives Goyke, Andraca, Baldeh, Considine, Emerson, Haywood, Hebl, B. Meyers, Pope, Riemer, S. Rodriguez, Shankland, Sinicki, Spreitzer, Subeck, Vining and Hintz",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Felzkowski and Nass; +cosponsored by Representatives Wichgers, Horlacher, Allen, Brandtjen, Brooks, Edming, Knodl, Kuglitsch, Magnafici, Moses, Murphy, Ramthun, Rozar, Skowronski, Thiesfeldt and Plumer",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein and Ballweg; +cosponsored by Representatives Kurtz, Edming, Considine, Milroy, Moses, Mursau, Oldenburg and Rozar",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Tusler, Spiros, Billings, Bowen, Cabral-Guevara, Cabrera, Edming, Hong, Kitchens, Krug, Moses, Murphy, Ortiz-Velez, Petryk, Shankland, Sinicki, Thiesfeldt, Tittl, Vorpagel, Vruwink and Wichgers; +cosponsored by Senators Petrowski, Wimberger, Carpenter, Bradley, Cowles, Jacque, Larson, Marklein, Pfaff, Ringhand, Roth, Smith and Wirch",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Ballweg and L. Taylor; +cosponsored by Representatives Krug, Mursau, Cabral-Guevara, Callahan, Horlacher, Knodl, Ramthun, Rozar, Snyder, Spreitzer and Subeck",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Agard, Carpenter, Johnson, Larson and L. Taylor; +cosponsored by Representatives Goyke, Andraca, Baldeh, Conley, Considine, Emerson, Haywood, Hebl, B. Meyers, Pope, Riemer, S. Rodriguez, Shankland, Sinicki, Spreitzer, Subeck, Vining and Hintz",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Schraa, Callahan, Goyke, Bowen, Andraca, Baldeh, Cabrera, Conley, Considine, Dittrich, Drake, Haywood, Hebl, Magnafici, Mursau, Neubauer, Pope, Rozar, Sinicki, Spreitzer, Steffen, Subeck, Tauchen, Tusler, Vining and Stubbs; +cosponsored by Senators Wanggaard, Felzkowski, L. Taylor, Ballweg, Carpenter, Johnson, Larson and Petrowski",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Oldenburg, Hebl, Armstrong, Horlacher, Moses, Pope, Spreitzer and Vruwink; +cosponsored by Senators Pfaff, Agard, Bernier, Cowles, Darling, Ringhand and Wirch",2022-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith, L. Taylor and Wirch; +cosponsored by Representatives Neubauer, Andraca, Baldeh, Billings, Bowen, Brostoff, Conley, Considine, Doyle, Drake, Emerson, Goyke, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Ohnstad, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Haywood",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Loudenbeck, Dallman, Brooks, Duchow, James, Kerkman, Krug, Kurtz, Mursau, Novak, Shankland, Subeck, Summerfield, Vruwink and Allen; +cosponsored by Senators Felzkowski, Bewley, Cowles and Petrowski",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Ballweg, Jacque and Nass; +cosponsored by Representatives Sortwell, Brooks, Allen, Dittrich, Horlacher, Knodl, Krug, Kuglitsch, Moses, Murphy, Steffen, Thiesfeldt, Wichgers and Zimmerman",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James and Cabral-Guevara; +cosponsored by Senator Wanggaard",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier and Petrowski; +cosponsored by Representatives Rozar, Snyder, Edming and Spiros",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Roth and Wanggaard; +cosponsored by Representatives Thiesfeldt, Wittke, Brandtjen, Gundrum, Knodl, Macco, Magnafici, Moses, Murphy, Rozar and Steffen",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles and Darling; +cosponsored by Representatives Spiros, Murphy, Rozar, Tusler and VanderMeer",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kurtz, Loudenbeck, Edming, Knodl, Krug, Novak and Spiros; +cosponsored by Senators Testin, Marklein and Ballweg",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Petersen, Gundrum, Armstrong, Magnafici, Behnke, Sanfelippo, Cabral-Guevara, Brooks, Kuglitsch, Wichgers, Krug, Knodl, Murphy and Schraa; +cosponsored by Senators Stroebel and Darling",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Knodl; +cosponsored by Senator Stroebel",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Marklein and Pfaff; +cosponsored by Representatives Plumer, Dallman, Callahan, Horlacher, Moses, Mursau, Penterman, Rozar, Snodgrass, Spreitzer, Stubbs, Tusler, Vruwink and Tauchen",2021-08-11T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, August, Armstrong, Behnke, Gundrum, Knodl and Penterman; +cosponsored by Senator Roth",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Behnke, August and Gundrum; +cosponsored by Senator Roth",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Edming, Armstrong, Callahan, Krug, Milroy, Moses, Mursau, Plumer, Rozar, Skowronski, Spiros, Tauchen and VanderMeer; +cosponsored by Senators Petrowski, Bewley, Cowles and Marklein",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Employment Relations,2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Cowles; +cosponsored by Representatives Thiesfeldt and Ramthun",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Allen, Armstrong, Brandtjen, Cabral-Guevara, Edming, Gundrum, James, Knodl, Kuglitsch, Novak, Schraa, Spiros, Subeck, Tittl, VanderMeer and Tusler; +cosponsored by Senators Petrowski, Ballweg, Cowles, Ringhand and L. Taylor",2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Armstrong and Petryk,2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brandtjen, Armstrong, Behnke, Dittrich, Gundrum, Horlacher, Subeck, Thiesfeldt, Wichgers and Tusler; +cosponsored by Senators Jacque, Ballweg and L. Taylor",2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Bewley, Carpenter, Roys and Agard; +cosponsored by Representatives Vining, Shelton, Shankland, Sinicki, Andraca, Brostoff, Cabrera, Emerson, Goyke, Hesselbein, B. Meyers, Moore Omokunde, Pope, S. Rodriguez and Spreitzer",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Steffen, Bowen, Brandtjen, Cabral-Guevara, Gundrum, Macco, Magnafici, Moses, Murphy, Ramthun, Skowronski, Tusler, Wichgers, Knodl and Neylon; +cosponsored by Senators Wimberger, Wanggaard, Ballweg and Darling",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Stroebel; +cosponsored by Representatives Wichgers, Sanfelippo, Armstrong, Behnke, Duchow, Gundrum, Kuglitsch, Krug, Murphy and Dittrich",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ringhand, L. Taylor and Wirch; +cosponsored by Representatives Spreitzer, Loudenbeck, Kerkman, Conley, Vruwink, Hebl, Sinicki, Considine, Subeck and Stubbs",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Roys, Johnson and Agard; +cosponsored by Representatives Brostoff, Bowen, Hong, Moore Omokunde, Anderson, Baldeh, Drake, Hebl, L. Myers, Cabrera, Stubbs and Spreitzer",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ballweg and Nass; +cosponsored by Representatives Duchow, Loudenbeck, Armstrong, Brandtjen, Cabral-Guevara, Horlacher, Knodl, Moses, Ramthun, Spiros, Wichgers, Ortiz-Velez and Tusler",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steineke, Stubbs, Armstrong, Baldeh, Cabral-Guevara, Cabrera, Dittrich, Edming, Goyke, Gundrum, Kitchens, Krug, Kurtz, Loudenbeck, Macco, Milroy, Mursau, Novak, Petryk, Schraa, Spiros, Steffen, Tauchen, Tittl, Tranel, Wittke and Zimmerman; +cosponsored by Senators Wanggaard, L. Taylor, Ballweg and Pfaff",2021-05-18T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Thiesfeldt, Allen, Brandtjen, Cabral-Guevara, Edming, Gundrum, Magnafici, Murphy, Ramthun, Rozar, Tittl, Tusler and Wichgers; +cosponsored by Senator Nass",2021-03-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Stroebel and Roys; +cosponsored by Representatives Cabral-Guevara, Armstrong, Knodl, Mursau, Oldenburg and Penterman",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ballweg, Agard, Carpenter, Darling and Kooyenga; +cosponsored by Representatives Kurtz, Brooks, Dittrich, Gundrum, Horlacher, Magnafici, Rozar, Skowronski, Tauchen, Tusler and Wichgers",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Cabral-Guevara, Dittrich, Mursau, Subeck, Wichgers and Murphy; +cosponsored by Senators Petrowski, Pfaff, Ballweg, Carpenter, Jacque, Marklein and Ringhand",2021-11-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Zimmerman, Dittrich, Edming, James, Kurtz, Plumer, J. Rodriguez, Spiros, Steffen, Tusler, Schraa, Armstrong, VanderMeer and Murphy; +cosponsored by Senators Wanggaard, L. Taylor, Felzkowski, Jagler, Kooyenga, Marklein and Nass",2021-07-01T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hong, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Hebl, Hesselbein, Moore Omokunde, Neubauer, Ohnstad, Riemer, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining, Pope and Emerson; +cosponsored by Senators Roys, Johnson, Erpenbach, Agard, Bewley, Carpenter, Larson, Pfaff, Ringhand, Smith, L. Taylor and Wirch",2021-11-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Roth; +cosponsored by Representatives Plumer, Gundrum, Knodl and Murphy",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Roys, Agard, Ringhand and Wanggaard; +cosponsored by Representatives Tusler, McGuire, Allen, Behnke, Born, Cabrera, Kitchens, Knodl, Penterman, Pope, Skowronski, Steffen, Stubbs, Subeck, Thiesfeldt, Vruwink and James",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Rozar, Anderson, Bowen, Brostoff, Cabrera, Gundrum, Krug, Moses, Mursau, L. Myers, Ortiz-Velez, Spreitzer, Subeck and Stubbs; +cosponsored by Senators L. Taylor, Wanggaard, Jacque, Ballweg, Bradley, Larson, Ringhand and Smith",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Schraa, Bowen, Brandtjen, Brooks, Edming, Kitchens, Rozar, Snyder, Spiros and VanderMeer; +cosponsored by Senators Testin, Felzkowski, Ballweg, Cowles, Marklein, Nass and Wanggaard",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Cabral-Guevara, Anderson, Doyle, Andraca, Armstrong, Bowen, Brooks, Dittrich, Duchow, Edming, Moses, Murphy, Mursau, Novak, Oldenburg, Petryk, Plumer, Schraa, Shankland, Skowronski, Spiros, Spreitzer, Subeck, Zimmerman and Wittke; +cosponsored by Senators Bernier, L. Taylor, Agard and Ballweg",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Vining, Shelton, Spreitzer, Hesselbein, Hebl, B. Meyers, Andraca, Considine, Subeck, Emerson, Stubbs, Haywood, Snodgrass, L. Myers and Sinicki; +cosponsored by Senators Agard, L. Taylor, Smith, Roys, Ringhand and Larson",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Ballweg, Jacque and Felzkowski; +cosponsored by Representatives Schraa, Thiesfeldt, Brandtjen, Dittrich, Duchow, Edming, Horlacher, Gundrum, James, Krug, Kuglitsch, Magnafici, Murphy, Pronschinske, Rozar and Steffen",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Summerfield, James, Cabral-Guevara, Dittrich, Rozar and Wichgers; +cosponsored by Senators Testin and Kooyenga",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jagler, Feyen, Ballweg, Stafsholt, Wanggaard, Stroebel, Felzkowski and Marklein; +cosponsored by Representatives Moses, Callahan, Born, Edming, Gundrum, James, Mursau, Tauchen, Dittrich, Magnafici, Tranel, Summerfield, Sortwell, Brandtjen and Krug",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Neylon, Penterman, Skowronski, Edming, VanderMeer, Sortwell, Brandtjen, Kuglitsch, Zimmerman, Mursau, Thiesfeldt and Knodl; +cosponsored by Senators Nass and Stroebel",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Testin, Feyen, Ballweg, Felzkowski, Jacque, Nass, Pfaff and Ringhand; +cosponsored by Representatives Kurtz, VanderMeer, Cabral-Guevara, Krug, Dallman, Oldenburg, Anderson, Callahan, Hesselbein, Kuglitsch, Murphy, Mursau, Schraa, Skowronski, Tauchen, Thiesfeldt, Wichgers, Hintz, Tusler and Spreitzer",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Hong, Cabrera, Baldeh, Anderson, Andraca, Bowen, Brostoff, Conley, Considine, Emerson, Haywood, Hebl, Hesselbein, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink; +cosponsored by Senators Johnson, L. Taylor, Agard, Roys, Bewley, Erpenbach, Larson, Smith, Wirch and Carpenter",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Behnke, Allen, Armstrong, Cabral-Guevara, Callahan, Dittrich, Edming, Gundrum, Horlacher, Mursau, Penterman, Petryk, Schraa, Sinicki, Steffen, Thiesfeldt and Spreitzer; +cosponsored by Senators Wimberger, Cowles, Feyen, Marklein and Nass",2021-10-19T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jagler and Cowles; +cosponsored by Representatives Dittrich, Loudenbeck, Sinicki, Thiesfeldt, Shelton, Murphy and Duchow",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Macco, Thiesfeldt, Brooks, Cabrera, Gundrum, Kerkman, Loudenbeck, Murphy, Rozar, Schraa, Spreitzer, Subeck and Vining; +cosponsored by Senators Cowles, Agard, Darling, Petrowski and Wanggaard",2021-02-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Kitchens, Armstrong, Born, Cabral-Guevara, Dittrich, Jagler, Kerkman, Moses, Murphy, Neylon, Rozar, Skowronski, Snyder, Swearingen, Tranel, VanderMeer and James; +cosponsored by Senators Stafsholt, Bernier, Darling, Nass and Larson",2021-02-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Haywood; +cosponsored by Senator Johnson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Shelton, Anderson, Andraca, Spreitzer, Vining, Sinicki, Brostoff, Hesselbein, Goyke, B. Meyers, Cabrera, Snodgrass, L. Myers, Shankland, Drake, Emerson, Hebl, Conley, Subeck, S. Rodriguez, Ohnstad, Stubbs, Milroy, Vruwink and Hong; +cosponsored by Senators Smith, Larson, Johnson, Ringhand, L. Taylor, Agard, Carpenter, Roys, Erpenbach and Bewley",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representative Murphy",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hong, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Drake, Emerson, Goyke, Hebl, Hesselbein, Hintz, McGuire, L. Myers, Neubauer, Ohnstad, Moore Omokunde, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink; +cosponsored by Senators Agard, Bewley, Carpenter, Erpenbach, Johnson, Larson, Ringhand, Roys, Smith, L. Taylor and Wirch",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Vruwink, Cabrera, Conley, Hebl, Shankland and Sinicki; +cosponsored by Senators Smith, Carpenter, Roys and L. Taylor",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Emerson, Andraca, Anderson, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Drake, Goyke, Hebl, Hesselbein, Hong, B. Meyers, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vining; +cosponsored by Senators Roys, Johnson, L. Taylor, Agard, Bewley, Carpenter, Erpenbach, Larson, Pfaff, Ringhand, Smith and Wirch",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Mursau, Tranel, Spreitzer, Kurtz, Tittl, Cabral-Guevara, Brooks, Magnafici, Sinicki, Oldenburg, VanderMeer, Callahan, Bowen, Sortwell, Murphy, Pronschinske, Edming, Subeck, Swearingen, Shelton, Wichgers, Rozar and Dallman; +cosponsored by Senators Felzkowski, Ringhand, Cowles, Marklein and L. Taylor",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Murphy, Armstrong, Brooks, Cabral-Guevara, Dallman, Gundrum, Krug, Kuglitsch, Loudenbeck, Moses, Mursau, Novak, Ramthun, J. Rodriguez, Schraa, Spiros, Steffen, Tauchen, Tittl, Tranel, VanderMeer, Vorpagel, Wichgers and Wittke; +cosponsored by Senators Felzkowski, Jacque, Bernier, Feyen, Marklein, Stroebel, Wanggaard and Wimberger",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wichgers, Gundrum, Allen, Armstrong, Brandtjen, Brooks, Cabral-Guevara, Dittrich, Edming, Horlacher, Moses, Petersen, Ramthun, Rozar, Sanfelippo, Schraa, Thiesfeldt, Tittl and Tusler; +cosponsored by Senators Jacque, Ballweg, Bradley, Nass and Bernier",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Dittrich, Armstrong, Brandtjen and Gundrum",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Duchow, Neylon, Allen, Brandtjen, Brooks, Cabral-Guevara, Dittrich, Gundrum, Horlacher, James, Kitchens, Krug, Kuglitsch, Magnafici, Murphy, Novak, Rozar, Sortwell, Thiesfeldt, Tusler, VanderMeer, Vorpagel, Wichgers and Wittke; +cosponsored by Senators Wanggaard, Darling, Jacque, Kooyenga, Roth, Stroebel and Testin",2022-01-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Brandtjen, Wichgers, Murphy and Knodl",2022-02-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sanfelippo, Armstrong, August, Cabral-Guevara, Dittrich, Duchow, Edming, Gundrum, Horlacher, Jagler, Knodl, Krug, Kuglitsch, Magnafici, Moses, Murphy, Pronschinske, Rozar, Skowronski, Spiros, Steffen, Tauchen, Thiesfeldt, Wichgers, VanderMeer, Zimmerman, Kerkman, Callahan, Brandtjen and Sortwell; +cosponsored by Senators Bradley, Stroebel, Wimberger, Ballweg, Bernier, Cowles, Felzkowski, Feyen, Marklein, Nass, Testin and Wanggaard",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Armstrong, Cabral-Guevara, Dittrich, Edming, Magnafici, Moses, Murphy, Mursau, Rozar, Tusler, Schraa and Knodl; +cosponsored by Senators Ballweg, Darling, Nass, Marklein, L. Taylor and Wanggaard",2021-07-01T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Felzkowski, Nass and Stroebel; +cosponsored by Representatives Horlacher, Allen, Armstrong, Behnke, Brandtjen, Cabral-Guevara, Dittrich, Duchow, Edming, Gundrum, James, Knodl, Macco, Magnafici, Moses, Murphy, Penterman, Rozar, Schraa, Sortwell and Wichgers",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, Bowen, Shelton, Sinicki, Baldeh, Cabrera, Conley, Considine, Emerson, Goyke, Hebl, Hong, Snodgrass, Spreitzer and Vruwink; +cosponsored by Senators Larson, Roys and Smith",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Horlacher, Wichgers, Brandtjen, Allen, Armstrong, Cabral-Guevara, Callahan, Dittrich, Edming, Gundrum, Kuglitsch, Ramthun, Rozar, Skowronski, Tittl, Tusler and Steffen; +cosponsored by Senator Jacque",2021-07-01T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives McGuire, Conley, Ohnstad, Riemer, Anderson, Baldeh, Bowen, Brostoff, Cabrera, Considine, Doyle, Drake, Emerson, Milroy, S. Rodriguez, Shankland, Spreitzer, Stubbs, Vining and Sinicki; +cosponsored by Senators Ringhand, Agard, Larson, Roys and Smith",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Petryk, Dallman, Spreitzer, Armstrong, Bowen, Edming, Gundrum, Mursau, Rozar, Snodgrass, Tittl, VanderMeer, Murphy, James and Stubbs; +cosponsored by Senators Ballweg, Smith and Jacque",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Bernier; +cosponsored by Representatives Wichgers, Cabral-Guevara, Murphy and Spiros",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Considine, Shelton, Cabrera, Conley, Emerson, Hebl, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink; +cosponsored by Senators Pfaff, Smith, Erpenbach, Roys, Larson, Agard and Ringhand",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Moses, Born, Callahan, Dittrich, Edming, James, Magnafici, Mursau, Novak, Snyder, Tranel and Wichgers; +cosponsored by Senators Marklein, Ballweg, Felzkowski, Feyen, Jagler, Stafsholt, Stroebel, Testin and Wanggaard",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Dallman, Brandtjen, Callahan, Edming, James, Knodl, Magnafici, Milroy, Moses, Mursau, Penterman, Sortwell and Thiesfeldt; +cosponsored by Senators Felzkowski, Ballweg, Jacque, Jagler, Stroebel and Testin",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, L. Taylor, Wanggaard and Ballweg; +cosponsored by Representatives Steineke, Stubbs, Dittrich, Armstrong, Baldeh, Cabral-Guevara, Duchow, Edming, Goyke, Gundrum, Katsma, Kitchens, Krug, Kurtz, Loudenbeck, Macco, Milroy, Moses, Mursau, Novak, Petryk, Schraa, Spiros, Steffen, Zimmerman, Wittke, Tranel, Ohnstad and Vruwink",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Knodl, Brooks, Cabral-Guevara, Callahan, Dittrich, Gundrum, Horlacher, Kuglitsch, Magnafici, Moses, Murphy, Ramthun, Rozar, Schraa and Wichgers; +cosponsored by Senator Jacque",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Krug, Subeck, Mursau, Moses, Bowen, Brandtjen, Gundrum, Plumer, Spiros, Tusler and Horlacher; +cosponsored by Senators Testin and L. Taylor",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives McGuire, Doyle, Snodgrass, Andraca, Billings, Bowen, Considine, Emerson, Hebl, Hesselbein, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Pfaff, Wirch, Agard, Carpenter, Larson, Ringhand, Roys and Smith",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Carpenter, Roys, Larson, Erpenbach and Wirch; +cosponsored by Representatives Hebl, Emerson, Hong, Shelton, Neubauer, Andraca, Shankland, Anderson, Bowen, Hesselbein, Stubbs, Vruwink, Sinicki, Subeck, Spreitzer and Cabrera",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Kuglitsch, Armstrong, Drake, Edming, Gundrum, Milroy, Moses, Plumer, Schraa, Thiesfeldt and Vruwink; +cosponsored by Senators Bradley, Ballweg, Nass and Wanggaard",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Larson, Agard, Bewley, Carpenter, Roys, Smith and L. Taylor; +cosponsored by Representatives Shelton, Moore Omokunde, Anderson, Baldeh, Billings, Brostoff, Cabrera, Conley, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, B. Meyers, Ohnstad, Pope, Riemer, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators LeMahieu, Ballweg, Darling, Feyen, Jagler, Marklein, Ringhand, Roys, Stroebel and L. Taylor; +cosponsored by Representatives Vorpagel, Vruwink, Katsma, Allen, Baldeh, Cabral-Guevara, Callahan, Conley, Dallman, Dittrich, Drake, Duchow, Edming, Gundrum, Haywood, Hesselbein, Horlacher, James, Kerkman, Kitchens, Kuglitsch, Krug, Magnafici, Moses, Mursau, Penterman, Petryk, Plumer, Riemer, Sinicki, Spiros, Spreitzer, Stubbs, Subeck, Summerfield, Thiesfeldt, Tranel, Tusler and Wittke",2021-10-18T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Macco, Tauchen, Gundrum, Krug, Kurtz, Loudenbeck, Magnafici, Moses, Oldenburg, Penterman and Edming; +cosponsored by Senator Ballweg",2022-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Allen, Armstrong, Brandtjen, Duchow, Gundrum, Horlacher, James, Knodl, Murphy, Sortwell, Tittl and Wichgers; +cosponsored by Senators Bernier, Ballweg, Felzkowski and Kapenga",2022-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives J. Rodriguez, Armstrong, Gundrum, Neylon, Ramthun and Rozar; +cosponsored by Senators Wanggaard and Ballweg",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Senator Smith,2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Macco, Wittke, Armstrong, Callahan, Dittrich, Edming, Horlacher, Katsma, Kerkman, Knodl, Kuglitsch, Magnafici, Milroy, Murphy, Petryk, Ramthun, Skowronski, Snyder, Steffen, Summerfield, Tranel, Zimmerman and Tittl; +cosponsored by Senators Testin, Carpenter, Ballweg, Felzkowski, Feyen, Jacque, Marklein and L. Taylor",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Pfaff and Ringhand; +cosponsored by Representatives Snyder, Moses, Mursau and Subeck",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Brostoff, Hong, Anderson, Baldeh, Conley, Emerson, Hebl, Moore Omokunde, Neubauer, Pope, Sinicki and Spreitzer; +cosponsored by Senators L. Taylor, Larson and Roys",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Marklein; +cosponsored by Representatives Kurtz, VanderMeer and Oldenburg",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard and L. Taylor; +cosponsored by Representatives Spiros, Drake, Moses, Skowronski, Baldeh, Emerson, Goyke, Haywood, Macco, Vruwink, McGuire, Wittke and Conley",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, Bowen, Anderson, Hesselbein, Hong, Moore Omokunde, Shelton and Sinicki; +cosponsored by Senator L. Taylor",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Callahan, Bowen, Snyder, Schraa, Brandtjen, Edming, Knodl, Kuglitsch, Magnafici, Mursau, L. Myers, Plumer, Rozar, Spreitzer, Stubbs, Thiesfeldt, Tittl and Horlacher; +cosponsored by Senators Wanggaard, Felzkowski, Marklein and L. Taylor",2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Carpenter, Erpenbach, Roys, L. Taylor, Smith and Larson; +cosponsored by Representatives Riemer, Bowen, Conley, Anderson, Andraca, B. Meyers, Baldeh, Brostoff, Cabrera, Considine, Emerson, Hebl, Hong, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Stafsholt, Petrowski, Bernier and Bewley; +cosponsored by Representatives Mursau, B. Meyers, Spiros, Tusler and Shankland",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin and Stroebel; +cosponsored by Representatives Cabral-Guevara, Murphy, Allen, Armstrong, Brandtjen, Horlacher, James, Kuglitsch, Moses, Penterman, Schraa, Tittl, Tusler and Wichgers",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Johnson; +cosponsored by Representative Sinicki",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier and L. Taylor; +cosponsored by Representatives Sortwell, Ortiz-Velez, Brooks, Tittl, Cabral-Guevara, Krug, L. Myers, Moses, Drake, Considine and Summerfield",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, S. Rodriguez, Conley, Doyle, Hebl, Hesselbein, Ohnstad, Pope, Shankland, Sinicki, Snodgrass, Tusler and Vruwink; +cosponsored by Senators Ringhand, Agard, Larson and Smith",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier and Darling; +cosponsored by Representatives Summerfield, Swearingen, Conley, Edming, Gundrum, James, Moses, Mursau, Pronschinske, Shankland, Sinicki, Skowronski, Spiros, Spreitzer and Tauchen",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Roth, Wimberger, Felzkowski, Nass and Stroebel; +cosponsored by Representatives Knodl, Armstrong, Behnke, Brandtjen, Brooks, Cabral-Guevara, Dittrich, Gundrum, Horlacher, Krug, Kuglitsch, Magnafici, Penterman, Petersen, Pronschinske, Rozar, Sanfelippo, Schraa, Tittl, Wichgers and Neylon",2022-02-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Nass, Bradley, Kapenga, Stroebel, Felzkowski, Jacque, Testin, Marklein and Wanggaard; +cosponsored by Representatives Ramthun, Horlacher, Sortwell, Magnafici, Wichgers, Cabral-Guevara, Brooks, Jagler, Gundrum, Macco, Skowronski, Thiesfeldt, Brandtjen, Allen, Dittrich, Moses, Knodl and Schraa",2021-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Wirch, Carpenter, Roys, Johnson, Ringhand, Erpenbach, Larson and Smith; +cosponsored by Representatives Subeck, Hong, S. Rodriguez, Brostoff, Pope, Neubauer, Cabrera, Shelton, L. Myers, Goyke, Stubbs, Ohnstad, Riemer, Emerson, Conley, Baldeh, Snodgrass, Anderson, Hebl, Bowen, Spreitzer, Vining, Sinicki, Drake, Billings, Moore Omokunde and Hesselbein",2021-07-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Murphy, Callahan, Dittrich, Edming, Knodl, Krug, Magnafici, Moses, Plumer, Rozar, Sanfelippo, Tauchen, Wichgers and Zimmerman; +cosponsored by Senators Stafsholt, Testin, Bewley, Cowles, Felzkowski, Marklein, Nass, Stroebel and Wanggaard",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steineke, Cabral-Guevara, Drake, Hesselbein, Hintz, Magnafici, Milroy, Moses, Ohnstad, Penterman, Sinicki, Snodgrass, Spiros, Steffen, Subeck and Vruwink; +cosponsored by Senators Cowles, Carpenter, Darling and Nass",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Cowles and Marklein; +cosponsored by Representatives Zimmerman, Cabral-Guevara, Dittrich, Edming, Goyke, Brooks, Gundrum, Kuglitsch, Moses, Murphy, Rozar, Spiros, Subeck, Tauchen, Wichgers, James and Tusler",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wichgers, Cabral-Guevara, Murphy and Spiros; +cosponsored by Senator Bernier",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Ortiz-Velez, Cabrera, Anderson, Considine, Shelton, Hong, Spreitzer, Baldeh, Haywood, Ohnstad, Subeck, Sinicki, Hebl, Goyke, Hesselbein, Pope and Stubbs; +cosponsored by Senator Carpenter",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives B. Meyers, Hebl, S. Rodriguez, Shelton, Vruwink, Considine, Sinicki, Stubbs, Emerson, Andraca and Subeck; +cosponsored by Senators Bewley and Ringhand",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Carpenter, Roys and L. Taylor; +cosponsored by Representatives Subeck, Vruwink, Cabrera, Conley, Hebl, Shankland and Sinicki",2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Roth and L. Taylor; +cosponsored by Representatives Cabral-Guevara, Skowronski, Dittrich, Schraa, Murphy, Rozar, Krug, Milroy, Tusler, Subeck, Thiesfeldt, B. Meyers, James, Snodgrass, Baldeh and Cabrera",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hesselbein, Stubbs, Emerson, Shelton, Hong, Brostoff, Conley, Hebl, Anderson, Snodgrass, Neubauer, Doyle, Subeck, Pope, Shankland, Spreitzer, Billings, Baldeh, Sinicki, Hintz, Cabrera and Vining; +cosponsored by Senators Smith, Roys, Johnson, Wirch, Ringhand, Larson and Erpenbach",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives VanderMeer, Neylon, Armstrong, Born, Brandtjen, Doyle, Duchow, Edming, Gundrum, Knodl, Kuglitsch, Loudenbeck, Moses, Mursau, Oldenburg, Petryk, Spiros, Tauchen and Thiesfeldt; +cosponsored by Senators Cowles, Roth, Kooyenga, Bernier and Pfaff",2021-09-30T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ringhand, Cowles, Marklein and L. Taylor; +cosponsored by Representatives Mursau, Tranel, Spreitzer, Kurtz, Tittl, Cabral-Guevara, Brooks, Magnafici, Sinicki, Oldenburg, VanderMeer, Callahan, Bowen, Sortwell, Murphy, Pronschinske, Edming, Subeck, Swearingen and Shelton",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Wittke, Anderson, Andraca, Cabral-Guevara, Conley, Duchow, Hebl, Hintz, Hong, Magnafici, Vining, Vruwink, Shelton and Sinicki; +cosponsored by Senators Carpenter, Larson, Ringhand and Wanggaard",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sinicki, Neubauer, Haywood, Spreitzer, Ohnstad, Shankland, Bowen, Doyle, Shelton, Andraca, Drake, Emerson, Snodgrass, Cabrera, Stubbs, Pope, Hong, Conley, Subeck, Vruwink, Milroy, Hebl and Baldeh; +cosponsored by Senators Wirch, Ringhand, Johnson, Bewley, Agard, Erpenbach, Carpenter, Roys and Larson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Horlacher, Allen, Armstrong, Behnke, Brandtjen, Cabral-Guevara, Dittrich, Duchow, Edming, Gundrum, James, Knodl, Macco, Magnafici, Moses, Murphy, Penterman, Rozar, Schraa, Sortwell and Wichgers; +cosponsored by Senators Testin, Felzkowski, Nass and Stroebel",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Rozar, Vining, Tusler, Stubbs, Spreitzer, Sinicki, Shelton, Shankland, S. Rodriguez, Neubauer, L. Myers, Murphy, Milroy, Krug, Hebl, Emerson, Drake, Considine, Conley, Cabrera, Cabral-Guevara, Brostoff, Bowen, Baldeh and Andraca; +cosponsored by Senators Roys, Darling, Wirch, L. Taylor, Ringhand, Pfaff, Larson, Carpenter, Agard and Erpenbach",2021-08-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Mursau, Spiros, Brostoff, L. Myers, Ramthun, Sinicki, Subeck, Tusler and Moore Omokunde; +cosponsored by Senators Jacque and L. Taylor",2021-09-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ringhand, Agard and Bewley; +cosponsored by Representatives Andraca, Conley, Considine, Emerson, Hebl, Hintz, Milroy, Ohnstad, Pope, Shelton, Sinicki, Spreitzer, Stubbs and Vruwink",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Krug, Kurtz, Armstrong, Brandtjen, Doyle, Moses, Mursau, Novak, Oldenburg, Petryk, Rozar, Summerfield and Cabrera; +cosponsored by Senators Jacque, Testin, Ballweg, Cowles, Marklein and Smith",2021-03-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators LeMahieu, Kapenga, Feyen, Marklein, Stroebel, Kooyenga, Bernier, Felzkowski and Ballweg",2021-04-13T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Erpenbach, Johnson, Carpenter, Agard, Bewley, Larson, Pfaff, Ringhand, Roys and Wirch; +cosponsored by Representatives Subeck, Anderson, Cabral-Guevara, Cabrera, Conley, Considine, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vruwink",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Snodgrass, Goyke, Anderson, Andraca, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Sinicki, Spreitzer, Stubbs, Subeck, Vining and Vruwink; +cosponsored by Senators Agard, Carpenter, Larson, Ringhand, Johnson, Erpenbach, Roys, L. Taylor and Smith",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Behnke, Murphy and Tusler; +cosponsored by Senator Jacque",2021-08-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Bewley, Ringhand and Agard; +cosponsored by Representatives Shankland, B. Meyers, Considine, Doyle, Milroy, Vruwink, Baldeh, Cabrera, Emerson, Hebl, Hesselbein, Hong, Neubauer, Ohnstad, S. Rodriguez, Shelton, Snodgrass, Spreitzer, Subeck and Sinicki",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Loudenbeck, Rozar, Magnafici, Armstrong, Bowen, Brooks, Dittrich, Kuglitsch, Kurtz, Mursau, Plumer, J. Rodriguez, Spreitzer, Stubbs, Subeck and Considine; +cosponsored by Senators Kooyenga, Ballweg, Carpenter, Cowles, Erpenbach, Felzkowski, Marklein, Ringhand and L. Taylor",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Bewley, Larson, Roys and L. Taylor; +cosponsored by Representatives Shankland, Andraca, Cabrera, Considine, Hebl, B. Meyers, Milroy, Sinicki, Spreitzer, Subeck and Pope",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, S. Rodriguez, Thiesfeldt, Anderson, Andraca, Bowen, Cabrera, Conley, Drake, Emerson, Hebl, Hesselbein, Hintz, Milroy, Moses, Murphy, Neubauer, Ortiz-Velez, Shankland, Shelton, Sinicki, Skowronski, Spreitzer, Subeck and Ohnstad; +cosponsored by Senators Ballweg, Erpenbach, Larson, Ringhand, Roys and Wirch",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Agard, Bernier, Bewley, Carpenter, Cowles, Darling, Johnson, Larson, Petrowski, Pfaff, Ringhand, Roys, Smith, L. Taylor and Wirch; +cosponsored by Representatives Spiros, Anderson, Andraca, Baldeh, Bowen, Cabral-Guevara, Cabrera, Conley, Considine, Drake, Emerson, Hebl, Hesselbein, Hong, Kitchens, Macco, B. Meyers, Milroy, Murphy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Snyder, Spreitzer, Steffen, Stubbs, Subeck, Tittl, Vining and Vruwink",2021-05-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Sinicki, Andraca, Spreitzer, Brostoff, Anderson, Hesselbein, Goyke, B. Meyers, Cabrera, Snodgrass, L. Myers, Shankland, Drake, Emerson, Shelton, Hebl, Conley, Subeck, S. Rodriguez, Ohnstad, Stubbs, Milroy, Vruwink and Hong; +cosponsored by Senators Larson, Smith, Johnson, L. Taylor, Agard, Carpenter, Roys, Erpenbach and Bewley",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Magnafici, Snyder, Armstrong, Brooks, Callahan, Jagler, Knodl, Krug, Moses, Skowronski, Spiros, Wichgers and Edming; +cosponsored by Senators Testin, Stafsholt, Bradley, Cowles and Felzkowski",2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative VanderMeer; +cosponsored by Senator Testin",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Moses, Mursau, Subeck and Wichgers; +cosponsored by Senators Petrowski, Carpenter, Cowles and Ballweg",2021-10-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Darling; +cosponsored by Representatives Tittl, Armstrong, Cabral-Guevara, Gundrum, James, Knodl, Murphy, Mursau, Rozar, Skowronski, Tusler, Wichgers and Thiesfeldt",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tranel, Novak, Kurtz, Oldenburg, VanderMeer, Dittrich, Knodl, Moses, Murphy, Mursau, Skowronski and Tusler; +cosponsored by Senators Marklein, Nass, Cowles, Feyen, Stroebel, Felzkowski and Ballweg",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Felzkowski; +cosponsored by Representatives Sortwell, Moses, Brooks, Cabral-Guevara, Callahan, Edming, Mursau, Oldenburg, Skowronski, Tittl, Wichgers and Pronschinske",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Senator LeMahieu,2021-06-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spreitzer, Shelton, Emerson, Snodgrass, Brostoff, Sinicki, Hebl, Conley, Considine, Cabrera, Andraca, S. Rodriguez, Subeck, Milroy, Billings, Baldeh, Hong, Stubbs and Vruwink; +cosponsored by Senators Larson, Carpenter, Roys, Ringhand, Smith and Johnson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Nass, Bernier and Jacque; +cosponsored by Representatives Sortwell, Moses, Cabral-Guevara, Knodl, Kuglitsch, Plumer, Rozar, Schraa, Tusler, Brandtjen, Wichgers, Thiesfeldt and Allen",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Bowen,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Armstrong, Bowen, Brandtjen, Moses and Rozar; +cosponsored by Senators Wanggaard, L. Taylor, Darling, Cowles, Feyen, Jacque and Roys",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tranel, Armstrong, Brandtjen, Cabrera, Dittrich, Gundrum, Jagler, Kerkman, Kurtz, Loudenbeck, Moses, Murphy, Novak, Oldenburg, Petryk, Plumer, Pronschinske, Rozar, Skowronski, Summerfield, Tauchen, Thiesfeldt, Tittl, Tusler, VanderMeer, Vruwink and Born; +cosponsored by Senators Marklein, Bernier, Cowles, Feyen, Pfaff, Ringhand, Stafsholt, Testin, Wanggaard and Wimberger",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt and Felzkowski; +cosponsored by Representatives Swearingen, Edming, Callahan, Magnafici, Mursau, Rozar and VanderMeer",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives August and Steineke,2021-01-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Wimberger, Felzkowski and Marklein; +cosponsored by Representatives Kurtz, Brandtjen, Cabral-Guevara, Dittrich, Horlacher, Krug, Kuglitsch, Magnafici, Moses, Ramthun, Rozar, Steffen, Tusler and Wichgers",2021-08-11T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Doyle, Gundrum, Mursau, Tusler, Snyder and Thiesfeldt",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Larson, Agard, Johnson and Roys; +cosponsored by Representatives Shelton, Shankland, Emerson, Andraca, Baldeh, Brostoff, Cabrera, Conley, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Sinicki, Snodgrass, Spreitzer, Vining, Vruwink, Subeck and Stubbs",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Ballweg, Nass and Wanggaard; +cosponsored by Representatives Spiros, Kuglitsch, Armstrong, Drake, Edming, Gundrum, Milroy, Moses, Plumer, Schraa, Thiesfeldt and Vruwink",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Anderson, Hong, Moore Omokunde, Sinicki, Spreitzer and L. Myers; +cosponsored by Senators Larson, L. Taylor, Carpenter and Smith",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Nass, Wirch, Bewley, Carpenter, Johnson, Larson, Roys, Smith, Marklein, Ringhand, Agard, Jacque, L. Taylor, Cowles, Erpenbach and Pfaff; +cosponsored by Representatives Sinicki, Edming, Milroy, Cabrera, Mursau, Brostoff, Vruwink, Cabral-Guevara, Ohnstad, Thiesfeldt, Drake, Hebl, Horlacher, Kitchens, Ortiz-Velez, Doyle, Neubauer, Hesselbein, Shelton, Petryk, Anderson, Bowen, Shankland, Moore Omokunde, Spreitzer, S. Rodriguez, Rozar, Conley, Emerson, Vining, Billings, Snodgrass, B. Meyers, Wittke, Spiros, Armstrong, VanderMeer, Considine, Riemer and Subeck",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Allen, Brooks, Armstrong and Horlacher",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Plumer; +cosponsored by Senator Petrowski",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Tittl, Brandtjen, Cabral-Guevara, Gundrum, James, Krug, Moses, Murphy, Pronschinske, Summerfield, Thiesfeldt, Wichgers and Tusler; +cosponsored by Senator Bradley",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Stroebel and Nass; +cosponsored by Representatives Sanfelippo, Krug, Gundrum and Moses",2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Felzkowski, Feyen, Jagler, Stafsholt, Stroebel, Wanggaard and Testin; +cosponsored by Representatives Dallman, Allen, Born, Callahan, Dittrich, Edming, James, Macco, Magnafici, Moses, Mursau, Novak, Swearingen, Tranel, Krug, Wichgers and Thiesfeldt",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Krug, Mursau and Subeck; +cosponsored by Senator Testin",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Jacque, Marklein, Nass, Stroebel and Cowles; +cosponsored by Representatives Snyder, Callahan, Behnke, Born, Dittrich, Gundrum, James, Kuglitsch, Murphy and Penterman",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Legislative Council,2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Cabral-Guevara, Brandtjen, Brooks, Edming, Horlacher, Moses, Mursau, Schraa, Tauchen and Thiesfeldt; +cosponsored by Senator Jacque",2021-06-07T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Employment Relations,2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Summerfield, Armstrong, Kuglitsch, Moses, J. Rodriguez, Skowronski and Swearingen; +cosponsored by Senators Marklein, Felzkowski and L. Taylor",2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Kooyenga, L. Taylor, Johnson, Smith, Carpenter, Bewley, Wirch and Ringhand; +cosponsored by Representatives L. Myers, Tranel, Bowen, Pope, Hebl, Vruwink, Emerson, Baldeh, Sinicki, Considine, Billings, Stubbs, Conley, Ohnstad, Neubauer, Goyke, Anderson, Shankland, Shelton, Hesselbein, S. Rodriguez, Subeck, Drake and Andraca",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Darling, Marklein and Wanggaard; +cosponsored by Representatives Brandtjen, Dittrich, Armstrong, Murphy, Rozar, Sanfelippo, Steffen, Thiesfeldt, Tranel, Wichgers and Baldeh",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Bernier; +cosponsored by Representative Magnafici",2021-03-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier and Felzkowski; +cosponsored by Representatives Schraa, Brooks, Callahan, Haywood, Kitchens, Knodl, Kuglitsch, Moses, Rozar, Skowronski, Tauchen, Thiesfeldt, Wichgers, Zimmerman and Swearingen",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Armstrong, Brandtjen, Doyle, Milroy, Mursau, Plumer, Ramthun, Subeck and Schraa; +cosponsored by Senators Jacque, Marklein, Agard, Ballweg, Bewley and L. Taylor",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives McGuire, Spiros, Baldeh, Conley, Considine, Dittrich, Hebl, Hesselbein, Kerkman, Milroy, Ohnstad, Pope, S. Rodriguez, Shankland, Sinicki, Subeck and Vruwink; +cosponsored by Senators Wanggaard, Agard, Bewley, Carpenter, Darling and Smith",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hintz, Schraa, Hesselbein, Thiesfeldt, Snodgrass, Milroy, Cabral-Guevara, Spiros, Haywood, Hebl, Sinicki, Conley, S. Rodriguez, Spreitzer, Bowen, Shelton, Baldeh, Considine, Vining, Drake, Novak, Murphy, Stubbs and Subeck; +cosponsored by Senators Feyen, Roth, Ballweg, Carpenter and Marklein",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Ballweg, Cowles, Darling, Larson, Pfaff, Roth, Roys, Wanggaard, Agard and L. Taylor; +cosponsored by Representatives Spiros, Baldeh, Billings, Bowen, Cabral-Guevara, Cabrera, Doyle, Kerkman, Mursau, L. Myers, Oldenburg, Rozar, Shelton, Subeck, Allen and Spreitzer",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Ringhand; +cosponsored by Representative Conley, by request of of a constituent, Jennifer Thompson",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Larson, Agard, Johnson and Roys; +cosponsored by Representatives Shankland, Emerson, Shelton, Andraca, Baldeh, Brostoff, Cabrera, Conley, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Sinicki, Snodgrass, Spreitzer, Vining, Vruwink, Subeck and Stubbs",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Plumer, Tranel, Novak, Allen, Kitchens, Magnafici, Armstrong, Skowronski, Tittl, Kerkman, Moses, Tusler, Murphy, Tauchen, Dallman, Spiros, Summerfield, Krug, Edming and Baldeh; +cosponsored by Senators Marklein and Ballweg",2021-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sanfelippo, Allen, Armstrong, Behnke, Brandtjen, Brooks, Cabral-Guevara, Callahan, Dittrich, Gundrum, Horlacher, Kuglitsch, Magnafici, Moses, Murphy, Neylon, Ramthun, Rozar, Spiros, Steffen, Tusler, Wichgers and Wittke",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Larson, Agard, Bewley, Johnson, Ringhand and Roys; +cosponsored by Representatives Emerson, Shankland, Shelton, Andraca, Baldeh, Brostoff, Cabrera, Conley, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Sinicki, Snodgrass, Spreitzer, Vining, Vruwink, Subeck and Stubbs",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Riemer, Anderson, Cabral-Guevara, Cabrera, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hong, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Snodgrass, Spreitzer, Stubbs, Vining and Vruwink; +cosponsored by Senators L. Taylor, Erpenbach, Agard, Carpenter, Johnson, Larson, Pfaff and Roys",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Ballweg; +cosponsored by Representatives Behnke, Edming, Ramthun, Subeck and Tusler",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spreitzer, Anderson, Sinicki, Hebl, Baldeh, Hong, Hesselbein, Ohnstad, Subeck, Andraca, Shankland, Milroy, Shelton and Pope; +cosponsored by Senators Agard, Roys, Bewley, Larson and Carpenter",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Tusler, Anderson, Andraca, Billings, Bowen, Cabral-Guevara, Cabrera, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hintz, Hong, Kitchens, Neubauer, Pope, S. Rodriguez, Shelton, Sinicki, Spreitzer, Stubbs, Subeck, Vining and Vruwink; +cosponsored by Senators Johnson, Smith, Agard, Bewley, Erpenbach, Larson, Ringhand, Roys and L. Taylor",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Skowronski, Horlacher, Sinicki, Vruwink and Wichgers; +cosponsored by Senators Feyen, Bewley and Wanggaard",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee for Review of Administrative Rules,2021-01-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Carpenter, Roys, Ringhand, Smith and Johnson; +cosponsored by Representatives Spreitzer, Shelton, Emerson, Snodgrass, Brostoff, Sinicki, Hebl, Conley, Considine, Cabrera, Andraca, S. Rodriguez, Subeck, Milroy, Billings, Baldeh, Hong, Stubbs and Vruwink",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Summerfield, Oldenburg, Armstrong, Billings, Doyle, Edming, Gundrum, James, Kitchens, Krug, Kuglitsch, Kurtz, Loudenbeck, B. Meyers, Milroy, Moses, Mursau, Novak, Petryk, Plumer, Rozar, Skowronski, Snyder, Spreitzer, Tauchen, Thiesfeldt, Tranel, VanderMeer and Vruwink; +cosponsored by Senators Testin, Ringhand, Cowles, Ballweg, Bernier, Bewley, Erpenbach, Felzkowski, Jacque, Marklein, Nass, Petrowski, Pfaff, Roys, Smith and L. Taylor",2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Feyen and Ballweg; +cosponsored by Representatives Petersen, Magnafici, Dittrich, Doyle, Allen and Petryk",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wirch, Agard, Bewley, Carpenter, Erpenbach, Johnson, Larson, Ringhand and Roys; +cosponsored by Representatives Sinicki, Andraca, Baldeh, Bowen, Cabrera, Conley, Drake, Doyle, Emerson, Haywood, Hebl, Hong, Milroy, Neubauer, Ohnstad, Pope, Shankland, Shelton, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, Hebl, Milroy, Cabrera, Andraca, Anderson, Subeck and Sinicki; +cosponsored by Senators Larson, Carpenter, Roys and Smith",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Carpenter and Agard; +cosponsored by Representatives Bowen, Shelton, Conley, Pope, Hebl, Neubauer, Cabrera, Subeck, Spreitzer, Sinicki, Hong and Stubbs",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Petrowski, Roys, L. Taylor, Larson, Wirch, Ringhand, Johnson, Smith and Cowles; +cosponsored by Representatives Spiros, Vining, Kerkman, Novak, Milroy, Sinicki, L. Myers, Baldeh, Hesselbein, Rozar, Spreitzer, Neubauer, S. Rodriguez, Moses, Subeck, Cabrera, Shelton, Bowen, Anderson, Skowronski, Mursau and Shankland",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Carpenter, Ballweg, Felzkowski, Feyen and L. Taylor; +cosponsored by Representatives Macco, Wittke, Armstrong, Callahan, Dittrich, Edming, Horlacher, Kerkman, Kuglitsch, Magnafici, Milroy, Petryk, Ramthun, Skowronski, Snyder, Steffen, Summerfield, Zimmerman, Gundrum and James",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators L. Taylor, Johnson, Roys, Agard, Larson, Wirch and Carpenter; +cosponsored by Representatives L. Myers, Stubbs, Drake, Shankland, S. Rodriguez, Anderson, Hebl, Neubauer, Ortiz-Velez, Hong, Emerson, Snodgrass, Cabrera, Baldeh, Conley, Hesselbein, Spreitzer, Vining, Hintz, Subeck, Shelton, Billings, Brostoff, Bowen, Considine and Goyke",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Brooks, Callahan, Edming, Gundrum, Knodl, Loudenbeck, Moses, Oldenburg, Skowronski, VanderMeer, Wichgers and Rozar; +cosponsored by Senators Stafsholt, Cowles, Felzkowski and Feyen",2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pronschinske, Petryk, Bowen, Emerson, Hebl, Kerkman, Krug, Milroy, Sinicki, Skowronski, Snyder, Spiros, Spreitzer, Tauchen, Tranel, Tusler and Vruwink; +cosponsored by Senators Smith, Carpenter, Cowles, Felzkowski, Nass, Pfaff, L. Taylor and Wirch",2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pronschinske, Petryk, Armstrong, Brandtjen, Dallman, Dittrich, Gundrum, Krug, Kuglitsch, Milroy, Moses, Murphy, Oldenburg, Plumer, Schraa, Snodgrass, Subeck, Thiesfeldt, Tittl, VanderMeer, Wittke, Ramthun and Knodl; +cosponsored by Senators Jacque and Carpenter",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Anderson, S. Rodriguez, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink; +cosponsored by Senators Erpenbach, Smith, Carpenter, Agard, Bewley, Johnson, Larson, Pfaff, Ringhand, Roys, L. Taylor and Wirch",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vos, Steineke and August",2021-04-09T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Marklein, Ballweg and Pfaff; +cosponsored by Representatives Rozar, Callahan, Gundrum, Armstrong, Moses, Skowronski, Billings, Knodl, Bowen, Cabral-Guevara, Kuglitsch, Brooks, Tusler, Tittl, Plumer and B. Meyers",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Rozar, Brooks, Krug, Moses, Subeck and Wichgers; +cosponsored by Senators Ballweg, Cowles and Felzkowski",2021-12-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Agard, Carpenter, Larson, Ringhand and L. Taylor; +cosponsored by Representatives Shankland, Novak, Andraca, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Hebl, Hesselbein, Neubauer, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vruwink and Billings",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Ballweg, Bernier, Bradley and Nass; +cosponsored by Representatives Wichgers, Gundrum, Allen, Armstrong, Brandtjen, Brooks, Cabral-Guevara, Dittrich, Edming, Horlacher, Moses, Petersen, Ramthun, Rozar, Sanfelippo, Schraa, Thiesfeldt, Tittl and Tusler",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, L. Taylor, Ballweg, Cowles, Larson and Smith; +cosponsored by Representatives Moses, James, Doyle, Brandtjen, Billings, Callahan, Dittrich, Edming, Emerson, Gundrum, Knodl, Kuglitsch, Novak, Rozar, Snyder, Sortwell, Tauchen, Thiesfeldt, Tittl, Wichgers and Tusler",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Armstrong, Dittrich, Kuglitsch, Loudenbeck, Macco, Moses, Murphy, Penterman, Tittl, Wichgers and Zimmerman; +cosponsored by Senators Wimberger, Bernier and Nass",2021-09-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Carpenter, Darling, Feyen, Ringhand and Smith; +cosponsored by Representatives VanderMeer, Oldenburg, Doyle, Armstrong, Bowen, Cabral-Guevara, Cabrera, Edming, Gundrum, James, B. Meyers, Mursau, Novak, Petryk, Plumer, Rozar, Schraa, Shankland, Sinicki, Skowronski, Spiros, Spreitzer, Steffen, Subeck, Tranel, Wittke and Zimmerman",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Novak, Tranel, Allen, Callahan, Dittrich, Drake, Edming, Horlacher, Kerkman, Kitchens, Knodl, Loudenbeck, Magnafici, Milroy, Moses, Mursau, Penterman, Riemer, Shankland, Shelton, Sinicki, Spiros, Spreitzer, Subeck, Thiesfeldt, Tusler, Vruwink and Wittke; +cosponsored by Senators Marklein, Bernier, Carpenter, Nass and Ringhand",2021-10-19T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Cowles and Marklein; +cosponsored by Representatives Horlacher, Allen, Armstrong, Billings, Brooks, Doyle, Spreitzer and Subeck",2021-09-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Kapenga, Bernier, Feyen, Jacque, Kooyenga, Marklein, Nass and Wanggaard; +cosponsored by Representative Dittrich",2021-05-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Agard, Ballweg, Bewley, Carpenter, Cowles, Darling, Erpenbach, Jacque, Johnson, Kooyenga, Larson, Marklein, Pfaff, Ringhand, Smith and Wirch; +cosponsored by Representatives Stubbs, Hong, Subeck, Baldeh, Allen, Andraca, Billings, Bowen, Cabral-Guevara, Conley, Considine, Drake, Duchow, Emerson, Haywood, Hebl, Hesselbein, Kerkman, B. Meyers, Milroy, Murphy, Mursau, Ohnstad, Penterman, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spiros, Spreitzer, Thiesfeldt, Tranel, Tusler, Vining, Vruwink, Wichgers, Pope, Anderson and Dittrich",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, L. Taylor, Pfaff, Ringhand and Smith; +cosponsored by Representatives Oldenburg, Novak, Spreitzer, Anderson, Baldeh, Bowen, Cabrera, Considine, Drake, Emerson, Hebl, B. Meyers, Moses, Mursau, Rozar, Shankland, Skowronski, Subeck, Tranel, VanderMeer and Vruwink",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Mursau, Armstrong, Brooks, Cabral-Guevara, Callahan, Dallman, Edming, Gundrum, Horlacher, Krug, Moses, Plumer, Pronschinske, Ramthun, J. Rodriguez, Skowronski, Sortwell, Stubbs, Summerfield, Tittl, Tranel, Tusler and Wichgers; +cosponsored by Senators Jacque, Ballweg, Felzkowski, Marklein, Nass and Wanggaard",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Krug,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, L. Taylor, Ballweg, Carpenter, Larson, Nass and Roys; +cosponsored by Representatives Cabral-Guevara, Brandtjen, Allen, Bowen, Cabrera, Kerkman, Moses, Murphy, J. Rodriguez, Shankland, Skowronski, Snyder, Sortwell, Subeck, Tittl, Vorpagel, Wichgers and Spreitzer",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Armstrong, Brandtjen and Ortiz-Velez; +cosponsored by Senators Wanggaard, L. Taylor, Darling and Cowles",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives L. Myers, Bowen, Haywood, Stubbs, Baldeh, Drake, Moore Omokunde, Hong, Snodgrass, Shelton, Ortiz-Velez, Hebl, Conley, Subeck, Sinicki, Anderson, Hesselbein, Cabrera, Shankland and Neubauer; +cosponsored by Senators L. Taylor, Johnson, Roys and Erpenbach",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kitchens, Pope, Baldeh, Billings, Cabrera, Duchow, Hebl, Hintz, Kurtz, Milroy, Mursau, Neubauer, Novak, Petryk, Rozar, Shelton, Sinicki, Snodgrass, Sortwell, Spreitzer, Steffen, Subeck, Tauchen, Tittl, Tranel, Tusler and Zimmerman; +cosponsored by Senators Cowles, Ballweg, Ringhand and Roys",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, L. Taylor, Darling, Cowles, Feyen, Jacque and Roys; +cosponsored by Representatives Spiros, Armstrong, Brandtjen, Moses and Rozar",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, L. Taylor, Darling, Cowles, Feyen, Jacque and Nass; +cosponsored by Representatives Spiros, Armstrong, Brandtjen, Moses, Thiesfeldt and Tusler",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Ballweg, Bewley, Cowles, Felzkowski, Marklein and Nass; +cosponsored by Representatives James, Armstrong, Callahan, Dittrich, Doyle, Edming, Knodl, Magnafici, Milroy, Neylon, Novak, Oldenburg, Plumer, Ramthun, Rozar, Skowronski, Stubbs, Thiesfeldt and Wichgers",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Billings, Anderson, Neubauer, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining; +cosponsored by Senators Smith, Roys, Erpenbach, L. Taylor, Larson and Carpenter",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Bowen,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Carpenter and Smith; +cosponsored by Representatives Allen, Cabral-Guevara, Armstrong, Dallman, Hintz, Horlacher, Moses, Rozar, Thiesfeldt, Spreitzer and Neubauer",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tusler, Skowronski, Rozar, Duchow and Subeck; +cosponsored by Senators Kooyenga, Carpenter, L. Taylor, Marklein, Felzkowski, Nass and Roth",2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Born,2021-10-18T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, Cabrera, Sinicki, Hebl, Shankland, Bowen, Subeck, Anderson, Hesselbein and Stubbs; +cosponsored by Senators Larson, Carpenter, Smith, Agard and Ringhand",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives S. Rodriguez, Sinicki, B. Meyers, Andraca, Baldeh, Cabrera, Doyle, Hebl, Hong, Pope, Shankland, Subeck, Spreitzer and Stubbs; +cosponsored by Senators Smith, Larson, Agard and L. Taylor",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spreitzer, Snodgrass, Neubauer, Cabrera, Bowen, Brostoff, Conley, Considine, Emerson, Hebl, Hesselbein, Hintz, Moore Omokunde, S. Rodriguez, Shankland, Shelton, Sinicki, Subeck and Vining; +cosponsored by Senators Carpenter, Agard, Larson and Roys",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Bewley; +cosponsored by Representatives B. Meyers, Milroy, Shankland, Conley, Vruwink, Considine, Subeck, Shelton and Spreitzer",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Committee on Labor and Regulatory Reform,2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Snyder,2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Legislative Council,2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Sortwell, Armstrong, Horlacher, Penterman and Knodl; +cosponsored by Senators Jagler, Marklein and Nass",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga and Cowles; +cosponsored by Representative J. Rodriguez",2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, L. Taylor and Cowles; +cosponsored by Representatives Allen, Mursau, Kerkman, Gundrum, Spiros, Knodl, Wittke, Rozar, Subeck, Wichgers, Loudenbeck and Neylon",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman, Armstrong, Dittrich, Kitchens, Moses and Born; +cosponsored by Senator Feyen",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vos, August, Tranel, Subeck, Dittrich, Gundrum, Snyder, Doyle, Zimmerman, Brostoff, Duchow, Horlacher, Magnafici, Krug, Kitchens, Novak, Plumer, Sinicki, Baldeh, Steffen, Tusler, Armstrong, Knodl, Kuglitsch, Spreitzer, Ohnstad, Pronschinske, Shelton, Moses, Stubbs, Schraa, Hintz, Skowronski, Andraca, Thiesfeldt, Ramthun, Spiros, Bowen and Murphy; +cosponsored by Senators Darling, Ballweg, Jacque and Wanggaard",2021-04-06T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Dittrich, Gundrum, Penterman, Mursau, Wichgers, Tusler and Snyder",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Cabral-Guevara, Rozar, Armstrong, Brandtjen, Brooks, Dittrich, Horlacher, Knodl, Magnafici, Penterman, Sortwell, Allen, Wichgers and Schraa",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Skowronski, Armstrong, Bowen, Brandtjen, Callahan, Drake, Emerson, Gundrum, Horlacher, Knodl, Moses, Plumer, Rozar, Snodgrass, Subeck and Wichgers; +cosponsored by Senators Jacque, L. Taylor, Bernier, Bradley, Carpenter, Johnson, Ringhand and Roys",2021-02-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Bewley, Cowles and Petrowski; +cosponsored by Representatives Loudenbeck, Dallman, Allen, Brooks, Duchow, James, Kerkman, Krug, Kurtz, Mursau, Novak, Shankland, Subeck, Summerfield and Vruwink",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Gundrum, Armstrong, Brooks, Dittrich, Edming, Horlacher, Knodl, Kuglitsch, Penterman, Rozar, Schraa and Wichgers; +cosponsored by Senators Bradley, Jagler, Cowles, Felzkowski, Nass and Stroebel",2021-10-07T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Plumer,2021-07-13T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Cabral-Guevara, Allen, Armstrong, Brandtjen, Edming, Horlacher, Knodl and Kuglitsch; +cosponsored by Senators Roth, Stroebel, Felzkowski and Darling",2021-09-30T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Wittke and L. Myers; +cosponsored by Senators Darling and Bernier",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Smith; +cosponsored by Representative Vruwink",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Kuglitsch, Cabral-Guevara, Rozar, Magnafici, Gundrum, Murphy, Penterman, Edming, Armstrong, Brandtjen, Tranel, Behnke and Knodl; +cosponsored by Senators Jagler, Nass and Darling",2021-10-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Doyle, B. Meyers, Andraca, Shankland, Sinicki, Emerson, Conley, Snodgrass, Vruwink, Subeck, Cabrera, Spreitzer, Hong, S. Rodriguez, Drake, Baldeh, Riemer and Stubbs; +cosponsored by Senators Pfaff, Ringhand, Smith, Roys, Larson and Carpenter",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Marklein; +cosponsored by Representatives Tranel, Behnke, Kurtz, Moses, Novak, VanderMeer and Tusler",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Edming, Armstrong, Brandtjen, Brooks, Callahan, Dittrich, Horlacher, Milroy, Moses, Murphy, Mursau, Rozar, Schraa, Sinicki, Tauchen, Thiesfeldt, Tranel and Wichgers; +cosponsored by Senators Jacque, Felzkowski, Carpenter and Wanggaard",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen and Marklein; +cosponsored by Representatives Sortwell, Armstrong, Behnke, Brandtjen, Dittrich, Edming, Moses, Murphy, Rozar, Schraa, Spiros and Tusler",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard and Bewley; +cosponsored by Representatives B. Meyers, Neubauer, Brostoff, Sinicki, Shelton, Hong, Hebl, Conley, Cabrera, Spreitzer, Milroy, Subeck, Anderson, Vruwink, Considine, Stubbs, Pope and Hesselbein",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Larson; +cosponsored by Representative Sinicki",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Shelton and Sinicki",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Andraca, Anderson, Sinicki, Subeck, Spreitzer, Pope, Conley, Considine and Neubauer; +cosponsored by Senators Larson, Carpenter, L. Taylor and Agard",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Horlacher, Armstrong, Behnke, Brostoff, Cabral-Guevara, Cabrera, Emerson, Gundrum, Rozar, Spiros, Spreitzer, Subeck and Sinicki; +cosponsored by Senators Jacque, Ballweg, Bewley, L. Taylor and Wanggaard",2021-07-01T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Hong, Anderson, Baldeh, Billings, Cabrera, Conley, Considine, Emerson, Goyke, Hebl, L. Myers, Moore Omokunde, Neubauer, Shankland, Shelton, Sinicki, Spreitzer and Subeck; +cosponsored by Senators Johnson, Agard, Carpenter, Larson and Roys",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Neylon and Allen,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Drake, Kerkman and Rozar; +cosponsored by Senator Testin",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Macco and Kitchens; +cosponsored by Senators Wimberger and Cowles",2021-06-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Duchow, Loudenbeck, Armstrong, Brandtjen, Cabral-Guevara, Horlacher, Knodl, Moses, Ramthun, Spiros, Wichgers, Ortiz-Velez and Tusler; +cosponsored by Senators Felzkowski, Ballweg and Nass",2021-12-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Neylon, Duchow, Magnafici, Edming, Steffen, Spiros, Krug, Knodl, Brooks, Sortwell, Gundrum, Murphy, Jagler, Wichgers and VanderMeer; +cosponsored by Senators Stroebel, Roth, Darling, Marklein, Jacque, Wanggaard, Bradley, Nass, Ballweg and Felzkowski",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Knodl, Cabral-Guevara, Callahan, Dittrich, Edming, James, Kuglitsch, Murphy, Neylon, Ramthun, Wichgers, Steffen, Magnafici, Gundrum, Moses and Rozar; +cosponsored by Senators Wanggaard and Marklein",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Senator LeMahieu,2021-06-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Billings, Pope, Vining, Baldeh, Bowen, Cabrera, Conley, Considine, Hebl, Shelton, Sinicki, Stubbs, Subeck, Vruwink, Shankland, Hesselbein and Spreitzer; +cosponsored by Senators L. Taylor, Agard, Carpenter and Roys",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Agard, Erpenbach, Roys, Larson, L. Taylor, Carpenter, Bewley, Smith, Ringhand and Pfaff; +cosponsored by Representatives Stubbs, Andraca, Conley, Hesselbein, Hong, Anderson, Hebl, Snodgrass, Baldeh, Sinicki, S. Rodriguez, Pope, Emerson, Ortiz-Velez, Neubauer, Billings, Brostoff, Spreitzer, Shelton, Goyke, Bowen, Ohnstad, Riemer, Vining, Considine, Hintz, B. Meyers, Haywood, Cabrera and Drake",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Senators Bradley and Jacque,2021-06-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hintz, Neubauer, Baldeh, L. Myers, Conley, Bowen, Stubbs, Spreitzer, Ohnstad, Anderson, Goyke, Emerson, Subeck, Hebl, Pope, Cabrera, Sinicki, Drake, Vining and Hesselbein; +cosponsored by Senators Carpenter, Roys, Agard, L. Taylor and Johnson",2021-09-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Stroebel, Darling and Feyen; +cosponsored by Representatives Tauchen, Gundrum and Loudenbeck",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hintz, Spreitzer, Subeck, Emerson, Shelton, Anderson, Ohnstad, Haywood, Riemer, Doyle, Brostoff, S. Rodriguez, Goyke, Hong, Snodgrass, Billings, Andraca, Pope, Hesselbein, Considine, Conley, Ortiz-Velez, L. Myers, Vining, Neubauer, B. Meyers, Sinicki, Shankland, Cabrera, Hebl and Baldeh",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Plumer; +cosponsored by Senator Testin",2021-06-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tranel, Armstrong, Brandtjen, Cabrera, Dittrich, Gundrum, Kerkman, Kurtz, Loudenbeck, Moses, Murphy, Novak, Oldenburg, Petryk, Pronschinske, Rozar, Skowronski, Sortwell, Summerfield, Tauchen, Thiesfeldt, Tittl, Tusler, VanderMeer, Vruwink and Born; +cosponsored by Senators Marklein, Bernier, Cowles, Feyen, Pfaff, Ringhand, Testin, Wanggaard and Wimberger",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wichgers, Knodl, Sanfelippo, Allen, Behnke, Brandtjen, Gundrum, Kuglitsch, Murphy and Skowronski; +cosponsored by Senators Bradley, Nass, Jacque, Kooyenga, Stroebel and Testin",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Cabral-Guevara, Callahan, Edming, Knodl, Petryk and Macco",2021-09-28T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Andraca, Shankland, Doyle, B. Meyers, S. Rodriguez, Anderson, Baldeh, Conley, Considine, Emerson, Hebl, Hong, Milroy, Ohnstad, Riemer, Shelton, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Carpenter, Pfaff, Erpenbach and L. Taylor",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Knodl, Rozar, Allen, Armstrong, Brandtjen, Brooks, Cabral-Guevara, Callahan, Dallman, Dittrich, Edming, Gundrum, Horlacher, James, Krug, Kuglitsch, Kurtz, Magnafici, Moses, Mursau, Neylon, Petryk, Ramthun, Sanfelippo, Schraa, Skowronski, Sortwell, Steffen, Summerfield, Swearingen, Thiesfeldt, Tittl, Tusler, VanderMeer and Zimmerman; +cosponsored by Senators Bernier, Felzkowski, Jacque, Marklein, Nass, Stafsholt and Stroebel",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Roys, Erpenbach, L. Taylor, Larson and Smith; +cosponsored by Representatives Hebl, Baldeh, Neubauer, Anderson, Andraca, Brostoff, Cabrera, Conley, Considine, Emerson, Hong, B. Meyers, Milroy, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Stubbs, Subeck and Vruwink",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brandtjen, Brooks, Dittrich, Horlacher, Loudenbeck, Milroy, Moses, Murphy, Mursau, Ramthun, Rozar, Thiesfeldt, Tusler and Wichgers; +cosponsored by Senators Jacque, Ballweg and Wanggaard",2021-06-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vos, Armstrong, Born, Cabral-Guevara, Callahan, Dallman, Dittrich, Duchow, Edming, Gundrum, Horlacher, James, Katsma, Krug, Kuglitsch, Kurtz, Moses, Murphy, Mursau, Novak, Plumer, Pronschinske, Ramthun, Rozar, Schraa, Spiros, Steffen, Subeck, Swearingen, Tauchen, Thiesfeldt, Tusler, Vorpagel, Vruwink and Zimmerman; +cosponsored by Senators Kapenga, Ballweg, Darling, Felzkowski, Stroebel and Wanggaard",2021-06-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Stroebel, Felzkowski, Nass and Darling; +cosponsored by Representatives Sortwell, Cabral-Guevara, Allen, Brandtjen, Edming, Horlacher, Knodl and Kuglitsch",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Felzkowski; +cosponsored by Representative Petersen",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Erpenbach, Agard, Carpenter, Larson, Pfaff and Roys; +cosponsored by Representatives Subeck, Andraca, Anderson, Cabrera, Conley, Considine, Hebl, Hesselbein, Hong, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Snodgrass, Stubbs and Vruwink",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Emerson, Vining, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Drake, Goyke, Hebl, Hesselbein, Hong, Neubauer, S. Rodriguez, Shankland, Shelton, Sinicki, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Roys, Agard, Erpenbach, Johnson, Larson, Pfaff, Smith and L. Taylor",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Allen,2021-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Hong, Stubbs, Brostoff, Conley, Drake, Neubauer, Sinicki, Snodgrass, Spreitzer, Anderson, Baldeh, Cabrera, Considine, Emerson, Haywood, Hebl, Hesselbein, Hintz, Ohnstad, Riemer, Vining, Vruwink, Pope and Bowen; +cosponsored by Senators Agard, Larson, Johnson, Roys, Smith, Wirch, Carpenter and Ringhand",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ringhand, Agard, Johnson, Larson, Pfaff and Roys; +cosponsored by Representatives Macco, Goyke, Andraca, Armstrong, Cabral-Guevara, Considine, Drake, Haywood, Hebl, Hintz, Horlacher, Kitchens, McGuire, Moore Omokunde, Ohnstad, Pope, Sinicki, Snodgrass, Spreitzer, Steffen, Stubbs, Thiesfeldt, Vruwink and Shankland",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabrera, Spreitzer, Neubauer, Snodgrass, Anderson, Conley, Considine, Emerson, Hebl, Hesselbein, Hintz, Hong, Milroy, Moore Omokunde, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Stubbs, Subeck and Vruwink; +cosponsored by Senators Carpenter, Bewley, Larson, Ringhand, Roys, Smith, L. Taylor and Wirch",2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Bernier, Bradley, Nass and Stroebel; +cosponsored by Representatives Murphy, Cabral-Guevara, Brandtjen, Brooks, Dittrich, Edming, Gundrum, Horlacher, Knodl, Kuglitsch, Magnafici, Moses, Ramthun, Rozar, Sanfelippo, Schraa, Skowronski, Thiesfeldt, Tittl, Tusler, Wichgers and Steffen",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Allen, August, Vorpagel, Brandtjen, Ramthun, Tittl and Gundrum; +cosponsored by Senator Ballweg",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kapenga, Bernier, Felzkowski, Feyen, Marklein and Stroebel; +cosponsored by Representatives Callahan, Penterman, August, Brandtjen, Cabral-Guevara, Dittrich, Duchow, Edming, James, Kitchens, Knodl, Kuglitsch, Kurtz, Macco, Magnafici, Moses, Petersen, Schraa, Snyder, Sortwell, Steffen, Tittl, Tusler, Vorpagel, Wichgers, Zimmerman and Born",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators LeMahieu, Kapenga, Feyen, Bewley and Ringhand",2021-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Smith, Bewley, Agard, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roth, Roys, L. Taylor and Wirch; +cosponsored by Representatives McGuire, Sinicki, Baldeh, Bowen, Cabrera, Conley, Doyle, Hebl, Hesselbein, Hong, Milroy, Pope, Shankland, Shelton, Stubbs, Tusler, Emerson and Drake",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen and L. Taylor; +cosponsored by Representatives Sortwell, Armstrong, Brooks, Edming, Kuglitsch, Murphy, Rozar, Skowronski, Tittl, Tusler and Thiesfeldt",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kurtz, Krug, Jagler, Spiros, Callahan, Dittrich, Rozar, Armstrong, Edming, Tranel, Magnafici, James, Cabral-Guevara, Born, Brandtjen, Gundrum, Kuglitsch, Ramthun, Tauchen, Wichgers and Skowronski; +cosponsored by Senators Testin, Nass, Wanggaard, Marklein, Bernier, Stroebel and Felzkowski",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Sanfelippo, Armstrong, Brandtjen, Cabral-Guevara, Horlacher, Magnafici, Moses, Rozar and Wichgers; +cosponsored by Senators Wanggaard, Darling, Bradley, Cowles, Feyen, Jacque, Nass, Roth and Testin",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator LeMahieu; +cosponsored by Representative Vos",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Felzkowski and Nass; +cosponsored by Representatives Tittl, Brooks, Dallman, Edming, Knodl, Kurtz, Magnafici, Moses, Murphy, Rozar, Schraa, Skowronski and Tusler",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga and Darling; +cosponsored by Representatives Wittke, J. Rodriguez, Neylon, Macco, Kuglitsch, Cabrera and Andraca",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Edming, Dittrich, Gundrum, Macco, Oldenburg, Schraa, Steffen, Skowronski and Tittl; +cosponsored by Senator Stroebel",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators L. Taylor, Larson, Carpenter and Johnson; +cosponsored by Representatives Subeck, Sinicki, Anderson, Andraca, Billings, Brostoff, Considine, Emerson, Hebl, Neubauer, Shelton, Snodgrass and Stubbs",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga and Stroebel; +cosponsored by Representatives Penterman, Dittrich, Edming, Murphy, Mursau and Wichgers",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Nass; +cosponsored by Representatives Ramthun, Steffen, Behnke, Brandtjen, Gundrum, Horlacher and Wichgers",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Carpenter, Roys and Ringhand; +cosponsored by Representatives Hesselbein, Spreitzer, Andraca, Hebl, Emerson, B. Meyers, Baldeh, Subeck, Snodgrass, Drake, Goyke, Riemer, Vruwink, Sinicki, Hintz, Conley, Pope, S. Rodriguez, Hong, Bowen, Milroy, Shankland, Anderson and Shelton",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, James, Vining, Cabral-Guevara, Cabrera, Emerson, Gundrum, Moses, Mursau, Ohnstad, Plumer, Ramthun, Shankland, Snyder, Sortwell, Spreitzer, Subeck and Tusler; +cosponsored by Senators Petrowski, Agard, Ballweg, Marklein, Ringhand, Roys and Wirch",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Anderson, Cabral-Guevara, Cabrera, Conley, Considine, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Vining and Vruwink; +cosponsored by Senators Erpenbach, Johnson, Agard, Bewley, Carpenter, Larson, Pfaff, Ringhand, Roys and Wirch",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Zimmerman, Kuglitsch, Magnafici, Milroy and Moses; +cosponsored by Senators Stafsholt and Felzkowski",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Snyder, Behnke, Born, Brandtjen, Dittrich, Edming, Gundrum, James, Kuglitsch, Murphy, Penterman, Plumer, Sanfelippo, Schraa, Tranel and Mursau; +cosponsored by Senators Feyen, Marklein, Nass, Stroebel and Cowles",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives B. Meyers, Doyle, Shankland, Vining, S. Rodriguez, Milroy, Sinicki, Andraca, Cabrera, Baldeh, Spreitzer, Conley, Emerson, Subeck, Hebl, Hintz, Hesselbein, Snodgrass, Ohnstad, Anderson, Drake, Vruwink, Billings, Goyke, Bowen, Stubbs, McGuire, Neubauer, Hong, Pope, Ortiz-Velez, Brostoff, Considine and Shelton; +cosponsored by Senators Smith, Bewley, Johnson, Carpenter, Erpenbach, Agard, L. Taylor, Roys, Wirch, Ringhand, Larson and Pfaff",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Magnafici, Armstrong, Edming, B. Meyers, Milroy, Moses, Novak and Tittl; +cosponsored by Senators Petrowski, Ballweg, Bewley, Cowles, Darling and Feyen",2021-09-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Darling, Bernier, Bradley, Feyen, Jagler, Stroebel and Wimberger; +cosponsored by Representatives Magnafici, Wittke, Allen, Brandtjen, Cabral-Guevara, Callahan, Dallman, Dittrich, Duchow, Edming, Gundrum, Kitchens, Kuglitsch, Loudenbeck, Moses, Mursau, Petryk, Ramthun, Rozar, Snyder, Steffen, Tauchen, Thiesfeldt, Tusler, VanderMeer, Wichgers and Zimmerman",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Brandtjen, Edming, Moses, Rozar and Schraa; +cosponsored by Senators Feyen, Jacque, Ringhand and Wanggaard",2021-06-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Nass and Feyen; +cosponsored by Representatives Magnafici, Rozar, Cabral-Guevara, Krug, Armstrong, Brooks, Edming, Horlacher, Moses and Steffen",2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee for Review of Administrative Rules,2021-06-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Johnson, Larson, Agard, Bewley, Carpenter, Cowles, Petrowski, Pfaff, Ringhand and Roys; +cosponsored by Representatives Snyder, Subeck, Sinicki, Allen, Andraca, Baldeh, Bowen, Cabrera, Considine, Dittrich, Emerson, Hebl, James, Knodl, B. Meyers, Mursau, Ohnstad, Shelton, Spreitzer, Stubbs, Vruwink and Vining",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Roys, Agard, Johnson, Smith and L. Taylor; +cosponsored by Representatives Brostoff, Bowen, Moore Omokunde, Shelton, Andraca, Anderson, Cabrera, Conley, Considine, Emerson, Hebl, Hesselbein, Hong, L. Myers, Pope, Sinicki, Spreitzer, Stubbs, Subeck and Vining",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives L. Myers, Allen, Rozar, Ohnstad, Sinicki, Milroy, Vruwink, Hesselbein, Hebl, Emerson, Moses, Shankland, S. Rodriguez, Kerkman, Dittrich, Cabral-Guevara, Considine, Magnafici, Baldeh, Vining, Cabrera, Spreitzer, Pope, Andraca, Shelton, Anderson, Subeck, Drake and Stubbs; +cosponsored by Senators Bernier, L. Taylor, Carpenter, Roys, Larson, Darling, Erpenbach, Agard and Ringhand",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kitchens, Allen, Duchow, Loudenbeck, Macco and Spreitzer; +cosponsored by Senators Jacque and Cowles",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ballweg, Jacque, Jagler, Stroebel and Testin; +cosponsored by Representatives Tittl, Dallman, Brandtjen, Callahan, Edming, James, Knodl, Magnafici, Milroy, Moses, Mursau, Penterman, Sortwell and Krug",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Stafsholt, Bradley, Cowles and Felzkowski; +cosponsored by Representatives Magnafici, Snyder, Armstrong, Brooks, Callahan, Jagler, Knodl, Krug, Moses, Skowronski, Spiros, Wichgers, Edming and Rozar",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Ballweg, Felzkowski, Marklein, Nass, Ringhand, L. Taylor and Wanggaard; +cosponsored by Representatives Callahan, Bowen, Brandtjen, Brooks, Goyke, Kitchens, Knodl, Murphy, Neylon, Rozar, Schraa, Snyder, Spiros and Thiesfeldt",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hesselbein, Emerson, Stubbs, Shelton, Hong, Brostoff, Hebl, Anderson, Neubauer, Subeck, Pope, Shankland, Spreitzer, Billings, Sinicki, Cabrera and Vining; +cosponsored by Senators Roys, Smith, Erpenbach, Johnson, Larson and Ringhand",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Duchow, Novak, Callahan, James, Kitchens, Loudenbeck, Magnafici, Moses, L. Myers, J. Rodriguez, Sinicki, Skowronski, Steffen, Subeck and Cabrera; +cosponsored by Senators Darling, Ballweg, Felzkowski and Ringhand",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Billings, Vining, Baldeh, Bowen, Cabrera, Conley, Considine, Hebl, Milroy, Shelton, Sinicki, Stubbs, Subeck, Vruwink, Cabral-Guevara, Hesselbein and Spreitzer; +cosponsored by Senators Larson, Agard, Carpenter, Roys and L. Taylor",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Swearingen, Edming, Callahan, Magnafici, Mursau, Rozar, VanderMeer and Spiros; +cosponsored by Senators Stafsholt and Felzkowski",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Anderson, Baldeh, Conley, Emerson, Pope, S. Rodriguez, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Ringhand, Roys, Erpenbach and Johnson",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Carpenter, Marklein and Petrowski; +cosponsored by Representatives Kitchens, Kurtz, Steffen, Cabral-Guevara, Duchow, Edming, Novak, Rozar, Skowronski, Tusler, VanderMeer, Wichgers, Ohnstad and Mursau",2021-08-19T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Andraca, S. Rodriguez, Anderson, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, Kitchens, McGuire, B. Meyers, Milroy, Moore Omokunde, Neubauer, Novak, Ohnstad, Ortiz-Velez, Pope, Riemer, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Tranel, Vining and Vruwink; +cosponsored by Senators Smith, Roys, Agard, Bewley, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, L. Taylor and Wirch",2021-06-11T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Pfaff, Wirch, Agard, Carpenter, Larson, Ringhand, Roys and Smith; +cosponsored by Representatives McGuire, Doyle, Snodgrass, Andraca, Billings, Bowen, Considine, Emerson, Hebl, Hesselbein, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Spreitzer, Stubbs, Subeck and Vruwink",2021-07-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Agard, Erpenbach, Larson, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Spreitzer, Cabrera, Neubauer, Snodgrass, Anderson, Andraca, Brostoff, Conley, Considine, Emerson, Goyke, Hebl, Hesselbein, Moore Omokunde, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Subeck and Vining",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Cowles, Felzkowski, Marklein, Nass and L. Taylor; +cosponsored by Representatives VanderMeer, Moses, Cabral-Guevara, Billings, Brandtjen, Dallman, Doyle, Mursau, Novak, Oldenburg, Rozar, Spiros, Subeck, Tauchen, Thiesfeldt and Tusler",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Schraa, Callahan, Moore Omokunde, Baldeh, Bowen, Cabrera, Dallman, Dittrich, Drake, Goyke, Gundrum, Haywood, Horlacher, Knodl, L. Myers, Rozar, Sinicki, Spiros, Spreitzer, Tittl, Vining and Stubbs; +cosponsored by Senators Wanggaard, Felzkowski, Johnson, Cowles, Darling, Jagler, Larson, Marklein, L. Taylor and Ballweg",2021-09-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Wanggaard, Bernier, Bewley, Feyen, Jacque, Nass and Ringhand; +cosponsored by Representatives Loudenbeck, Dallman, Born, James, Kerkman, Milroy, Moses, Mursau, Oldenburg, Petersen, Plumer, Shankland, Sortwell, Spreitzer, Thiesfeldt and Tusler",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Bernier and Nass; +cosponsored by Representatives Steffen, Armstrong, Dittrich, Loudenbeck, Macco, Moses, Murphy, Penterman, Wichgers, Zimmerman, Tittl and Kuglitsch",2021-09-15T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Cowles, Ballweg, Bernier, Felzkowski, Feyen, Nass, Petrowski, Roys and Marklein; +cosponsored by Representatives Macco, Steffen, Baldeh, Edming, Gundrum, Horlacher, Knodl, Kuglitsch, Loudenbeck, Moses, Murphy, Penterman, Spiros, Wittke and Zimmerman",2021-09-15T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Smith; +cosponsored by Representatives Shankland, Andraca, Billings, Cabrera, Conley, Goyke, Hebl, Hesselbein, Hong, Sinicki, Spreitzer and Subeck",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Considine, Shelton, Cabrera, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Pfaff, Smith, Erpenbach, Larson and Ringhand",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Senator Smith,2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Skowronski, Milroy, Mursau, Andraca, Billings, Bowen, Cabrera, Conley, Considine, Doyle, Drake, Hebl, Hesselbein, B. Meyers, Ohnstad, Pope, Shankland, Shelton, Sinicki, Spreitzer, Subeck and Vruwink; +cosponsored by Senators Bewley, Smith, Agard, Johnson, Ringhand and Larson",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Rozar, Armstrong, Brandtjen, Brooks, Dittrich, Horlacher, Knodl, Magnafici, Penterman and Sortwell",2021-09-15T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Jacque, Marklein, Wimberger and Stroebel; +cosponsored by Representatives Horlacher, VanderMeer, Haywood, Allen, Bowen, Brandtjen, Brooks, Dittrich, Edming, James, Katsma, Moses, Novak, Oldenburg, Rozar, Snodgrass, Sortwell, Spiros, Stubbs, Thiesfeldt, Wichgers, Wittke, Tittl, Knodl and Zimmerman",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Sinicki, Anderson, Andraca, Billings, Brostoff, Considine, Emerson, Hebl, Neubauer, Shelton, Snodgrass and Stubbs; +cosponsored by Senators L. Taylor, Larson, Carpenter and Johnson",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Murphy, Cabral-Guevara, Brandtjen, Brooks, Edming, Horlacher, Moses, Mursau, Schraa, Tauchen and Thiesfeldt",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, L. Taylor and Wirch; +cosponsored by Representatives Shankland, Billings, Considine, Emerson, Andraca, Cabrera, Conley, Hebl, Hesselbein, L. Myers, Milroy, Neubauer, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining, Vruwink and Anderson",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Kuglitsch; +cosponsored by Senator Bradley, by request of Public Service Commission of Wisconsin",2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Felzkowski and Marklein; +cosponsored by Representatives Ramthun, Brooks, Cabrera, Dittrich, Gundrum, Knodl, Kuglitsch, Magnafici, Moses, Rozar, Steffen and Wichgers",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Born, Thiesfeldt, Armstrong, Allen, Dittrich, Edming, Gundrum, James, Kuglitsch, Loudenbeck, Magnafici, Novak, Oldenburg, Petryk, Plumer, Rozar, Steffen, Tittl, Tusler, Mursau and Knodl; +cosponsored by Senators Jagler, Bradley, Darling, Feyen and Ballweg",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Schraa, Bowen, Brandtjen, Brooks, Goyke, Kitchens, Knodl, Murphy, Rozar, Snyder, Spiros, Thiesfeldt and Neylon; +cosponsored by Senators Feyen, Ballweg, Felzkowski, Marklein, Nass, Ringhand, L. Taylor and Wanggaard",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Novak, Tranel, Dallman, Oldenburg, Steffen, Ramthun, Cabral-Guevara, Dittrich, Horlacher, Edming and Thiesfeldt; +cosponsored by Senators Jacque, Wanggaard and Bernier",2021-06-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Macco, Shelton, Baldeh, Bowen, Brandtjen, Cabrera, Dittrich, Edming, Gundrum, Jagler, Kitchens, Kuglitsch, Milroy, Moses, Murphy, Mursau, Ramthun, Shankland, Sinicki, Snyder, Spreitzer, Tauchen, Thiesfeldt, Tittl, Tranel, Tusler, Vorpagel, Vruwink, Spiros and Petryk; +cosponsored by Senators Wimberger, Cowles, Jacque, Carpenter and Marklein",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Krug, Tusler and Horlacher; +cosponsored by Senator Ballweg",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Armstrong, Moses, Murphy and Wittke; +cosponsored by Senator Jacque",2021-05-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Ramthun, Wichgers, Behnke, Brandtjen, Gundrum and Thiesfeldt; +cosponsored by Senators Jacque and Nass",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives August, Loudenbeck, Spiros, Dittrich, Kuglitsch, Schraa and Thiesfeldt; +cosponsored by Senator Stafsholt",2021-10-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Ramthun, Steffen, Behnke, Brandtjen, Gundrum, Horlacher and Wichgers; +cosponsored by Senators Jacque and Nass",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Duchow, Knodl, Vos, Vorpagel, Dallman, Dittrich, Edming, Gundrum, Kerkman, Kitchens, Krug, Kuglitsch, Magnafici, Moses, Murphy, Novak, Plumer, Steffen, Thiesfeldt, Tittl, Tranel, Stubbs, Anderson, Drake, Hebl, Sinicki, Subeck and Vruwink; +cosponsored by Senators Darling, Ballweg, Feyen, Marklein, Carpenter, Erpenbach and L. Taylor",2021-06-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Pfaff, Ballweg, Carpenter, Jacque, Marklein and Ringhand; +cosponsored by Representatives Snyder, Cabral-Guevara, Dittrich, Mursau, Subeck and Wichgers",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Cowles; +cosponsored by Representatives Tauchen, Kitchens and Mursau",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Ballweg, Wimberger and Nass; +cosponsored by Representatives Brooks, Brandtjen, Dittrich, Moses, Murphy, Mursau, Skowronski, Tusler, Wichgers and Spiros",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Emerson, Conley, Cabrera, Hebl, Anderson, Sinicki, Stubbs, Vruwink, Subeck, Shelton, Ortiz-Velez, Bowen, Billings, Ohnstad, S. Rodriguez, Haywood and Brostoff; +cosponsored by Senators Johnson, Roys, Ringhand, Larson, L. Taylor and Carpenter",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Loudenbeck, Novak, Dittrich and Subeck; +cosponsored by Senator Darling",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Armstrong, Tittl, Ohnstad, Ramthun, Rozar, Tauchen, Thiesfeldt, VanderMeer, Tusler and Skowronski; +cosponsored by Senators Cowles, Bewley, Feyen, Jacque and Petrowski",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Marklein, Feyen, Jacque and Ringhand; +cosponsored by Representatives Novak, Magnafici, Allen, Armstrong, Cabral-Guevara, Dittrich, Duchow, Gundrum, Kitchens, Knodl, Loudenbeck, Mursau, Penterman, J. Rodriguez, Rozar, Sinicki, Skowronski, Spiros, Spreitzer, Steffen, Summerfield, Tittl and Tusler",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Ballweg, Cowles, Roth and Wanggaard; +cosponsored by Representatives Thiesfeldt, Bowen, Cabral-Guevara, Dallman, Hintz, Horlacher, Murphy, Mursau, Ramthun, Schraa, Skowronski, Stubbs and Tusler",2021-05-06T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Neubauer, Cabrera, Hong, Baldeh, Anderson, Andraca, Bowen, Brostoff, Conley, Considine, Emerson, Haywood, Hebl, Hesselbein, Hintz, B. Meyers, Ohnstad, Pope, Shankland, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink; +cosponsored by Senators Johnson, Agard, Roys, Bewley, Erpenbach, Larson, Smith, Wirch and Carpenter",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, L. Taylor, Darling, Cowles, Feyen and Jacque; +cosponsored by Representatives Brandtjen, Armstrong, Knodl, Moses, Spiros and Wichgers",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tusler, McGuire, Allen, Behnke, Born, Cabrera, Kitchens, Knodl, Penterman, Pope, Skowronski, Steffen, Stubbs, Subeck, Thiesfeldt, Vruwink and James; +cosponsored by Senators Wimberger, Roys, Agard, Ringhand and Wanggaard",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Erpenbach, Johnson, Larson, Ringhand, Roys and Smith; +cosponsored by Representatives Vining, Brostoff, Considine, Moore Omokunde, Anderson, Andraca, Baldeh, Billings, Bowen, Cabrera, Conley, Doyle, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Anderson, Bowen, Considine, Drake, Emerson, Hebl, Neubauer, Pope, Sinicki, Spreitzer, Subeck, Vruwink and Cabrera; +cosponsored by Senator Larson",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Haywood, Sinicki, Brostoff, Hebl, Ohnstad, Andraca, S. Rodriguez, Hesselbein, Drake, Subeck, Pope, Bowen, Stubbs and Shelton; +cosponsored by Senators Johnson, Ringhand, Roys and Agard",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Edming, Gundrum, Haywood, Mursau, Ohnstad, Shankland, Snodgrass, Subeck and Tusler; +cosponsored by Senators Petrowski, Smith, Carpenter, Felzkowski, Feyen, Marklein, Pfaff, L. Taylor and Wanggaard",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hintz, Hesselbein, Spreitzer, Subeck, B. Meyers, Haywood, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Hebl, Hong, McGuire, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Vining and Vruwink; +cosponsored by Senators Erpenbach, Johnson, Roys, Carpenter, Wirch and Smith",2021-02-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Emerson, Shankland, Shelton, Andraca, Baldeh, Cabrera, Conley, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Sinicki, Snodgrass, Spreitzer, Vining, Vruwink, Brostoff, Subeck and Stubbs; +cosponsored by Senators Smith, Larson, Agard, Bewley and Johnson",2021-10-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Jagler, Erpenbach, Ballweg, Darling, Marklein, Nass, Ringhand and Smith; +cosponsored by Representatives Snyder, Kurtz, Subeck, Armstrong, Cabral-Guevara, Callahan, Conley, Considine, Dittrich, Edming, Hebl, Kuglitsch, Loudenbeck, Mursau, Novak, Penterman, Schraa, Shankland, Snodgrass, Spiros, Spreitzer, Tittl, Vruwink, Zimmerman, Knodl and Skowronski",2021-09-15T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Skowronski, Allen, Cabral-Guevara, Edming, Moses, Shankland and Wichgers; +cosponsored by Senators Petrowski, Wimberger, Testin, Bernier, Carpenter, Jacque, Pfaff and Wirch",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Knodl, Magnafici, Gundrum, Rozar, Tittl, Kuglitsch, Skowronski and Brandtjen; +cosponsored by Senators Stroebel, Darling, Nass, L. Taylor and Marklein",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Billings, Loudenbeck, Allen, Anderson, Andraca, Baldeh, Bowen, Brostoff, Cabrera, Conley, Considine, Drake, Emerson, Goyke, Hebl, Hesselbein, Hintz, Horlacher, James, Kurtz, B. Meyers, Milroy, L. Myers, Novak, Ohnstad, Oldenburg, Penterman, Petryk, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining, Vruwink, Duchow and Murphy; +cosponsored by Senators Johnson, Darling, Agard, Ballweg, Bewley, Carpenter, Cowles, Erpenbach, Felzkowski, Jacque, Larson, Pfaff, Ringhand, Roys, Wanggaard and Wirch",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Zimmerman, Brooks, Cabral-Guevara, Dittrich, Edming, Goyke, Gundrum, James, Kuglitsch, Moses, Murphy, Rozar, Spiros, Subeck, Tauchen and Wichgers; +cosponsored by Senators Darling, Cowles and Marklein",2021-07-01T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Neylon, Allen, Duchow, Brandtjen, Dittrich, Horlacher, Knodl, Kuglitsch, Sanfelippo, Wichgers, Andraca, Armstrong, Cabral-Guevara, Conley, Considine, Dallman, Doyle, Drake, Edming, Gundrum, Hong, Krug, Loudenbeck, Magnafici, McGuire, Mursau, Oldenburg, Penterman, Plumer, Pronschinske, Riemer, S. Rodriguez, Rozar, Shankland, Sinicki, Skowronski, Spiros, Steffen, Tauchen, Tranel, Vruwink, Wittke and Zimmerman; +cosponsored by Senators Kapenga, Bradley, Darling, Jagler, Kooyenga, Nass, Bernier, Carpenter, Felzkowski, Jacque, Johnson, Marklein, Roth and Stroebel",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Cabral-Guevara, Drake, L. Myers, Haywood, Bowen, Baldeh, Hong, Cabrera, Hesselbein, Neubauer, Sinicki, Andraca, Conley, Shankland, Snodgrass, S. Rodriguez, Shelton, Emerson, Brostoff, Hebl and Anderson; +cosponsored by Senators Johnson, L. Taylor, Roys, Erpenbach, Carpenter and Wirch",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Darling, Roth, Marklein, Wanggaard, Bradley, Nass, Ballweg and Felzkowski; +cosponsored by Representatives August, Brooks, Gundrum, Magnafici, Edming, Spiros, Krug, Neylon, Loudenbeck, Kuglitsch, Murphy, Jagler, VanderMeer, Knodl and Wichgers",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Spreitzer, Andraca, Vining, Sinicki, Brostoff, Goyke, Hesselbein, Shelton, B. Meyers, Anderson, Cabrera, Snodgrass, L. Myers, Shankland, Drake, Emerson, S. Rodriguez, Hebl, Conley, Subeck, Ohnstad, Stubbs, Milroy, Vruwink and Hong; +cosponsored by Senators Larson, Smith, Johnson, Ringhand, L. Taylor, Agard, Carpenter, Roys, Erpenbach and Bewley",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kitchens, Tusler, Dittrich, Mursau, Ramthun and Thiesfeldt; +cosponsored by Senator Cowles",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Swearingen, Summerfield, Callahan, Hesselbein, Kitchens, Kurtz, B. Meyers, Milroy, Moses, Mursau, Novak, Oldenburg, Rozar, Thiesfeldt, Tusler, VanderMeer, Zimmerman, Spiros, Pronschinske, Tittl and Spreitzer; +cosponsored by Senators Petrowski, Felzkowski, Ballweg, Bewley, Cowles, Erpenbach, Feyen, Jacque, Pfaff, Ringhand, Stroebel, Testin and Wirch",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives VanderMeer, Oldenburg, Doyle, Armstrong, Bowen, Cabral-Guevara, Cabrera, Edming, Gundrum, James, B. Meyers, Mursau, Novak, Petryk, Plumer, Rozar, Schraa, Shankland, Sinicki, Skowronski, Spiros, Spreitzer, Steffen, Subeck, Tranel, Wittke and Zimmerman; +cosponsored by Senators Ballweg, Carpenter, Darling, Feyen, Ringhand and Smith",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, L. Taylor, Bernier, Carpenter, Cowles, Darling, Erpenbach, Felzkowski, Jacque, Marklein, Nass, Pfaff, Smith, Stroebel and Kooyenga; +cosponsored by Representatives Pronschinske, Petryk, Allen, Armstrong, Brandtjen, Cabrera, Dallman, Dittrich, Drake, Hintz, Hong, Kerkman, Kitchens, Kuglitsch, Magnafici, L. Myers, Milroy, Mursau, Novak, Plumer, Ramthun, J. Rodriguez, Sinicki, Skowronski, Spiros, Spreitzer, Tittl, Tranel, Vruwink and Thiesfeldt",2021-01-27T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Vos; +cosponsored by Senator LeMahieu",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Dittrich,2021-05-06T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Horlacher, Stubbs, Brooks, Cabral-Guevara, Dittrich, Gundrum, Hintz, Hong, Krug, Kuglitsch, Loudenbeck, Macco, Magnafici, Neylon, Skowronski, Sortwell, Vruwink, Wichgers and Tittl; +cosponsored by Senators Kooyenga, Johnson, Stroebel, Carpenter, Marklein and Roys",2021-05-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives August, Pronschinske, Moses, Sortwell, Vorpagel, Macco, Plumer, Rozar, Murphy, Wittke, Tusler, Wichgers, Callahan, Dallman, Horlacher, Armstrong, VanderMeer, Cabral-Guevara, Spiros, Schraa, Brandtjen, Kurtz, Swearingen, Loudenbeck, Ramthun, Kuglitsch, Born, Vos and Thiesfeldt; +cosponsored by Senators Felzkowski, Nass, Jacque, Bernier, Stroebel and Roth",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Felzkowski, Bernier, Feyen, Marklein, Ringhand, Stroebel and L. Taylor; +cosponsored by Representatives Swearingen, Edming, Armstrong, Brooks, Callahan, Mursau, Sortwell, Summerfield, Thiesfeldt, Tusler and VanderMeer",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Ballweg, Cowles, Darling, Pfaff, Ringhand and Wanggaard; +cosponsored by Representatives Zimmerman, McGuire, Armstrong, Cabral-Guevara, Dallman, Drake, Horlacher, Kuglitsch, Loudenbeck, Macco, Moses, Neylon, Novak, Penterman, Plumer, Rozar, Schraa, Skowronski, Snyder, Tusler, Vruwink and Wittke",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, S. Rodriguez, Milroy, Brostoff, Hebl, Shelton, Pope, Conley, Baldeh, Hesselbein, Doyle, Goyke, Neubauer, Vruwink, B. Meyers, Vining, Billings, McGuire, Anderson, Shankland, Snodgrass, Considine, Spreitzer, Riemer, Cabrera, Stubbs, Hintz, Drake, Sinicki, Hong, Ortiz-Velez, Emerson, L. Myers, Andraca, Haywood, Moore Omokunde and Ohnstad; +cosponsored by Senators Agard, Carpenter, Bewley, Roys, Ringhand, Larson and Erpenbach",2021-07-01T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, L. Taylor, Darling, Cowles, Feyen, Jacque and Roys; +cosponsored by Representatives Spiros, Armstrong, Brandtjen, Brooks, Cabrera, Moses, Rozar, Thiesfeldt and Wichgers",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Vining, Hong, Anderson, Baldeh, Brostoff, Cabrera, Emerson, Hebl, Moore Omokunde, Neubauer, Shelton and Sinicki; +cosponsored by Senators L. Taylor, Agard, Larson and Roys",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Ballweg, L. Taylor and Wimberger",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Ballweg, Agard, Bewley, Carpenter, Cowles, Jacque, Marklein, Ringhand, Roys and L. Taylor; +cosponsored by Representatives Novak, Bowen, Dittrich, Gundrum, Jagler, Magnafici, Milroy, Murphy, Rozar, Shankland, Sinicki, Spiros, Tauchen, Thiesfeldt, Tittl, Vorpagel, Vruwink, Edming, Neylon and Subeck",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Born, Cabral-Guevara, Callahan, Edming, Horlacher, James, Knodl, Magnafici, Milroy, Moses, Mursau, Novak, Snyder, Spiros, Wichgers and Zimmerman; +cosponsored by Senators Marklein, Ballweg, Darling, Felzkowski, Feyen, Jagler, Stroebel, Testin, Wanggaard and Kooyenga",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Ramthun, VanderMeer, Born, Brooks, Callahan, Dittrich, Edming, Horlacher, Kurtz, Milroy, Mursau, Rozar, Spiros, Thiesfeldt, Tranel and Zimmerman; +cosponsored by Senators Jacque, L. Taylor, Kooyenga and Nass",2021-01-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Carpenter, L. Taylor, Erpenbach and Smith; +cosponsored by Representatives Hebl, Emerson, Hong, Cabrera, Anderson, Bowen, Hesselbein, Stubbs, Sinicki, L. Myers, Spreitzer, Subeck and Shelton",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hintz, Snodgrass, Shelton, Anderson, Andraca, Baldeh, Brostoff, Cabrera, Conley, Drake, Emerson, Hebl, Hesselbein, B. Meyers, Neubauer, Pope, Sinicki, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Roys, Smith, Agard, Larson, Ringhand and L. Taylor",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Pfaff, Agard, Bernier, Cowles, Darling, Ringhand and Wirch; +cosponsored by Representatives Oldenburg, Hebl, Armstrong, Horlacher, Moses, Pope, Spreitzer and Vruwink",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Brandtjen, Dittrich, Mursau and Wichgers; +cosponsored by Senator Jacque",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Brooks, Bowen, Kitchens, Milroy and Schraa; +cosponsored by Senator Bernier",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Felzkowski, Feyen, Marklein, Nass and L. Taylor; +cosponsored by Representatives Horlacher, Allen, Brandtjen, Brooks, Callahan, Dittrich, Gundrum, Jagler, Knodl, Krug, Kurtz, Moses, Murphy, Ortiz-Velez, Plumer, Ramthun, Skowronski, Wichgers and Zimmerman",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives L. Myers, Moore Omokunde, Emerson, Hong, Snodgrass, Hebl, Sinicki, Brostoff, Andraca, Neubauer, Cabrera, Vruwink, Pope, Shankland, Spreitzer, Shelton, Subeck, Ohnstad, Anderson, Bowen, Vining, Hesselbein, Baldeh, Goyke, Hintz, Drake, S. Rodriguez and Ortiz-Velez; +cosponsored by Senators L. Taylor, Wirch, Carpenter, Roys and Johnson",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Ballweg, Cowles, Darling, Felzkowski, Kooyenga, Marklein and Roth; +cosponsored by Representatives Loudenbeck, Rozar, Armstrong, Billings, Born, Dittrich, Doyle, Gundrum, Kitchens, Knodl, Kurtz, Milroy, Moses, L. Myers, Novak, Pronschinske, J. Rodriguez, Schraa, Snyder, Spiros, Subeck, Tauchen, Tittl, Tusler and Penterman",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Felzkowski, Cowles, Feyen and Wanggaard; +cosponsored by Representatives Petersen, Callahan, Edming, James, Moses, Mursau, Oldenburg, Penterman, Spiros, Steffen, Thiesfeldt, Knodl and Sinicki",2021-09-15T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Ballweg; +cosponsored by Representatives Summerfield, Knodl, Rozar and Skowronski",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Agard, Bernier, Bewley, Carpenter, Erpenbach, Larson, Pfaff, Ringhand, Roys, Smith, L. Taylor and Wirch; +cosponsored by Representatives S. Rodriguez, Subeck, Sinicki, Hong, Stubbs, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, McGuire, B. Meyers, Milroy, Mursau, L. Myers, Neubauer, Ortiz-Velez, Pope, Riemer, Rozar, Shankland, Shelton, Snodgrass, Spreitzer, Vining, Vruwink and Moore Omokunde",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Murphy, Moses, Armstrong and Spiros; +cosponsored by Senators Wanggaard, L. Taylor, Darling, Cowles, Feyen and Roth",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pronschinske, Petryk, Allen, Armstrong, Brandtjen, Cabrera, Dallman, Dittrich, Drake, Hintz, Hong, Kerkman, Kitchens, Magnafici, Milroy, Mursau, L. Myers, Novak, Plumer, Ramthun, J. Rodriguez, Sinicki, Skowronski, Spiros, Spreitzer, Thiesfeldt, Tittl, Tranel, Vruwink, Kuglitsch, Bowen, Edming and Emerson; +cosponsored by Senators Bradley, L. Taylor, Carpenter, Cowles, Darling, Erpenbach, Felzkowski, Jacque, Marklein, Pfaff, Smith, Stroebel, Bernier, Kooyenga and Nass",2021-01-26T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, L. Taylor, Ballweg, Bewley, Jagler, Nass and Stroebel; +cosponsored by Representatives Magnafici, Doyle, Drake, Duchow, B. Meyers, Murphy, Novak, Petersen, Schraa, Steffen, Stubbs, Tauchen, Tittl, Vruwink and Loudenbeck",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Spreitzer, Andraca, Baldeh, Cabrera, Conley, Considine, Hebl, Hesselbein, Milroy, Ohnstad, Shelton, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Roys, Johnson, Ringhand and Smith",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Petryk, Armstrong, Cabral-Guevara, Callahan, Dittrich, Gundrum, Horlacher, Kuglitsch, L. Myers, Moses, Mursau, Oldenburg, Rozar, Tauchen, Tusler, Wichgers, Zimmerman and Thiesfeldt; +cosponsored by Senators Jacque, Testin, Feyen, Nass, Stafsholt and L. Taylor",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier and Felzkowski; +cosponsored by Representatives Summerfield, Moses, Armstrong, Kitchens, Mursau, Novak, Oldenburg, Petryk, Skowronski and Spiros",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Roys, Carpenter and Smith; +cosponsored by Representatives Snodgrass, Brostoff, Milroy, Hebl, Neubauer, Andraca, Shelton, Pope, Sinicki, Vruwink, Subeck, Anderson, Shankland, Emerson, Hesselbein, Spreitzer, Moore Omokunde and Vining",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Allen, Armstrong, Brandtjen, Brooks, Dittrich, Duchow, Edming, Gundrum, Knodl, Krug, Magnafici, Moses, Murphy, Petryk, Ramthun, Rozar, Sortwell and Tusler; +cosponsored by Senators Bernier, Ballweg, Stroebel, Marklein and Nass",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives VanderMeer, Krug, Kurtz, Armstrong, Callahan, Edming, Moses, Mursau, Novak, Oldenburg, Rozar and Tusler; +cosponsored by Senators Testin and L. Taylor",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Bowen, Dittrich, Gundrum, Murphy, Novak, Petersen, Rozar, Skowronski, Spiros and Zimmerman; +cosponsored by Senators Bernier, Ringhand and Stroebel",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Pfaff, Smith, Agard, Bewley, Erpenbach, Johnson, Larson, Ringhand and Roys; +cosponsored by Representatives Spreitzer, Considine, Cabrera, Conley, Doyle, Emerson, Hebl, Hesselbein, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Stubbs, Subeck and Vruwink",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson and Roys; +cosponsored by Representatives Anderson, Neubauer, Considine, Hebl, Andraca, Subeck, S. Rodriguez, Hong and Sinicki",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brandtjen, Armstrong, Drake, Horlacher, Moses, Rozar, Wichgers, Thiesfeldt and Allen; +cosponsored by Senator Jacque",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Larson, Smith, Ringhand, L. Taylor, Agard, Carpenter, Roys, Erpenbach and Bewley; +cosponsored by Representatives Pope, Brostoff, Considine, Sinicki, Hesselbein, Anderson, Shankland, Goyke, B. Meyers, Cabrera, Snodgrass, L. Myers, Vining, Drake, Emerson, Shelton, Hebl, Conley, Subeck, S. Rodriguez, Ohnstad, Stubbs, Milroy, Vruwink and Hong",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Spiros, Penterman, Kuglitsch, Allen, Summerfield, Callahan, Gundrum, Knodl, Tusler, Katsma, Loudenbeck, Rozar, Schraa, Mursau, Plumer and Edming; +cosponsored by Senators Testin, Jagler, Kapenga, Bradley, Wanggaard, Nass, LeMahieu, Cowles, Bernier and Roth",2021-10-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Nass, Darling, Stroebel and Testin; +cosponsored by Representatives Horlacher, Callahan, Allen, Armstrong, Brandtjen, Cabral-Guevara, Dittrich, Edming, Gundrum, Knodl, Kuglitsch, Macco, Magnafici, Moses, Penterman, Rozar, Schraa, Tusler, VanderMeer, Wichgers and Steffen",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Legislative Council,2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee for Review of Administrative Rules,2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Rozar, Novak, Armstrong, Callahan, Dallman, Edming, Kitchens, B. Meyers, Moses, Mursau, Oldenburg, Shankland, Snyder, Tusler and Vruwink; +cosponsored by Senators Feyen, Bewley, Ringhand and Ballweg",2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Kerkman; +cosponsored by Senator Wanggaard",2021-03-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Bowen, Haywood, L. Myers, Baldeh, Drake, Moore Omokunde, Shankland, Milroy, Hebl, S. Rodriguez, Andraca, Snodgrass, Ohnstad, Vruwink, Pope, Ortiz-Velez, Doyle, Hesselbein, Neubauer, Subeck, Hong, Cabrera, Spreitzer, Shelton, Anderson, Riemer, Goyke, Vining, Brostoff, Conley, McGuire and Emerson; +cosponsored by Senators Johnson, Carpenter, Smith, Agard, Wirch, Ringhand, Erpenbach, Roys and Larson",2021-03-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Agard, Bewley and Smith; +cosponsored by Representatives Brostoff, Emerson, Conley, Sinicki, Anderson, Andraca, Baldeh, Considine, Drake, Goyke, Hebl, Hesselbein, Hong, S. Rodriguez, Spreitzer, Stubbs, Subeck and Vining",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Vining, Anderson, Baldeh, Cabrera, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hong, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Snodgrass, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Erpenbach, Johnson, Agard, Carpenter, Larson, Pfaff and Roys",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Wichgers, Brandtjen, Cabrera, Dittrich, Edming, Gundrum, Jagler, Moses, Sinicki, Skowronski, Steffen, Tittl, Rozar and Spiros; +cosponsored by Senators Testin, Ballweg, Cowles, L. Taylor and Wanggaard",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James and Rozar; +cosponsored by Senators Bernier and Petrowski",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt and Nass; +cosponsored by Representatives Tauchen and Ramthun",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Brooks, Brandtjen, Horlacher, Moses, Murphy, Ramthun, Schraa, Skowronski and Wichgers",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Bradley; +cosponsored by Representatives Sortwell, Tittl, Brandtjen, Cabral-Guevara, Gundrum, James, Krug, Moses, Murphy, Pronschinske, Summerfield, Thiesfeldt, Wichgers and Tusler",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein and Stroebel; +cosponsored by Representatives Cabral-Guevara, Wittke, Armstrong, Born, Callahan, Duchow, Edming, Gundrum, Jagler, Katsma, Knodl, Krug, Kurtz, Moses, Murphy, Oldenburg, Petryk, Plumer, Rozar, Snyder, Swearingen, Tranel, Tusler, Vorpagel and Zimmerman",2021-04-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Roys, Agard, Bewley, Larson and Ringhand; +cosponsored by Representatives Spreitzer, Hong, Hesselbein, Neubauer, Snodgrass, Stubbs, Subeck, Pope, Baldeh, Vruwink, Considine, Andraca, Bowen, Drake, Emerson, Goyke, Hebl, Hintz, B. Meyers, Milroy, Novak, S. Rodriguez, Shankland, Shelton and Sinicki",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Felzkowski; +cosponsored by Representatives Krug, Armstrong, Moses, Brandtjen, Allen, Wichgers and Subeck",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Employment Relations,2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Brandtjen, Brooks, Dallman, Duchow, Kuglitsch, Magnafici, Moses, Murphy, Neylon, Rozar, Skowronski and Sortwell",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Agard, Carpenter and Johnson; +cosponsored by Representatives Sinicki, Subeck, Brostoff, Anderson, Shankland, Ohnstad, Baldeh, Hesselbein, Neubauer, Snodgrass, Cabrera, Milroy, Considine, Pope, Conley, Shelton, Andraca and Hebl",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives J. Rodriguez, Kerkman, Doyle, Billings, Dittrich, Tusler, Sinicki, Snyder and Thiesfeldt; +cosponsored by Senators Ballweg and Johnson",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brandtjen, Dittrich, Armstrong, Murphy, Rozar, Sanfelippo, Steffen, Thiesfeldt, Tranel, Wichgers and Baldeh; +cosponsored by Senators Jacque, Darling, Marklein and Wanggaard",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spreitzer, Neubauer, Cabrera, Snodgrass, Brostoff, Conley, Considine, Emerson, Goyke, Hebl, Hesselbein, Hong, Moore Omokunde, Ohnstad, Riemer, S. Rodriguez, Shankland, Shelton, Subeck, Vining and Pope; +cosponsored by Senators Carpenter, Agard, Roys, Johnson, Ringhand, Smith, L. Taylor and Larson",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Felzkowski, Stafsholt, Cowles and Jacque; +cosponsored by Representatives Murphy, Spiros, Gundrum, Snyder, Krug, James, Oldenburg, Duchow, Wittke, Horlacher, Edming, Vorpagel, Tranel, Rozar, Cabral-Guevara, Moses, Petryk, Swearingen, Zimmerman, Knodl, Loudenbeck, Jagler and Steffen",2021-04-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Testin; +cosponsored by Representative Krug",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Emerson, Macco, Anderson, Andraca, Bowen, Cabral-Guevara, Conley, Considine, Drake, Hebl, Hesselbein, Horlacher, Kerkman, B. Meyers, Milroy, Murphy, Mursau, Neubauer, Oldenburg, Ortiz-Velez, Pope, Ramthun, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining, Vruwink, J. Rodriguez, Rozar, Ohnstad, Penterman and Tusler; +cosponsored by Senators Darling, Ballweg, Smith, Bernier, Bradley, Cowles, Felzkowski, Feyen, Jacque, Marklein, Roth, Stroebel, Wanggaard, Wimberger, Agard, Bewley, Carpenter, Erpenbach, Larson, Pfaff, Ringhand, Roys, L. Taylor and Testin",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, L. Taylor, Ballweg, Bernier, Cowles, Darling, Feyen, Jacque, Marklein, Nass and Wanggaard; +cosponsored by Representatives Tusler, Cabral-Guevara, Sortwell, Bowen, Gundrum, Kuglitsch, Loudenbeck, Magnafici, Moses, Mursau, Plumer, Rozar, Snyder, Subeck and Thiesfeldt",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Roth, Pfaff and Wanggaard; +cosponsored by Representatives Vorpagel, Kuglitsch, Steffen and Tauchen",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee for Review of Administrative Rules,2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sinicki, Hintz, Ortiz-Velez, Milroy, Ohnstad, Shankland, Hesselbein, Spreitzer, McGuire, Emerson, Baldeh, Billings, Brostoff, Cabrera, Conley, Goyke, Hong, B. Meyers, Neubauer, Shelton, Subeck, Bowen, Doyle, Drake, Hebl, Pope, Snodgrass, Stubbs, Vining, Vruwink, Anderson, Riemer, Considine, Moore Omokunde, S. Rodriguez, L. Myers, Haywood and Andraca; +cosponsored by Senators Wirch, Ringhand, Bewley, Smith, Johnson, Erpenbach, Carpenter, Pfaff, L. Taylor, Larson, Agard and Roys",2021-05-13T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ballweg, Bernier, Cowles, Feyen, Jacque, Nass, Ringhand, L. Taylor, Wirch and Darling; +cosponsored by Representatives Plumer, Cabral-Guevara, Baldeh, Billings, Brooks, Doyle, Duchow, Gundrum, Kurtz, Loudenbeck, Moses, Murphy, Mursau, Neylon, Novak, Rozar, Shelton, Sortwell, Steffen, Subeck, Summerfield, Tauchen, Thiesfeldt, Tittl and VanderMeer",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Andraca, Conley, Considine, Emerson, Hebl, Hintz, Milroy, Ohnstad, Pope, Shelton, Sinicki, Spreitzer, Stubbs, Vruwink and Subeck; +cosponsored by Senators Ringhand, Agard and Bewley",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Erpenbach, Johnson, Ringhand, Carpenter, Larson, Pfaff, Wirch and Smith; +cosponsored by Representatives Conley, Hebl, Snodgrass, Andraca, Neubauer, Shelton, Stubbs, Pope, Sinicki, Vruwink, Spreitzer, Vining, Cabral-Guevara, Bowen, S. Rodriguez and Shankland",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Loudenbeck, Murphy, Novak, Tauchen, Tranel, VanderMeer, Oldenburg, Snyder, Edming and Skowronski; +cosponsored by Senators Marklein, Ballweg, Nass, Petrowski, Testin and Stroebel",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Bernier, Carpenter and Ballweg; +cosponsored by Representatives L. Myers, Novak, Drake, Moore Omokunde, Emerson, Sinicki, Stubbs, Goyke, Kuglitsch, Murphy, Ohnstad, Considine, Vruwink, Ortiz-Velez and Andraca",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Vruwink,2021-03-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Bernier; +cosponsored by Representatives Sortwell, Brooks, Bowen, Kitchens, Milroy and Schraa",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Ballweg, Bernier, Cowles, Darling, Feyen, Nass, Wimberger and Felzkowski; +cosponsored by Representatives Summerfield, Oldenburg, Armstrong, Cabral-Guevara, Callahan, Dallman, James, Magnafici, Moses, Petryk, Plumer, Pronschinske, Ramthun, Rozar, Schraa, Spiros, Swearingen, Tauchen, Tranel, Tusler, VanderMeer and Horlacher",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Wanggaard; +cosponsored by Representative Kerkman",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Duchow, Loudenbeck, Allen, Cabral-Guevara, Dallman, Dittrich, Gundrum, Horlacher, James, Kitchens, Krug, Kuglitsch, Kurtz, Magnafici, Penterman, Plumer, Rozar, Spiros, Tittl, Vorpagel, Wichgers, Wittke, Zimmerman, Schraa and Edming; +cosponsored by Senators Testin, Bradley, Ballweg, Darling, Felzkowski, Kapenga, Marklein, Stroebel, Wanggaard and Jacque",2021-10-19T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Armstrong, Behnke, Brandtjen, Dittrich, Edming, Moses, Murphy, Rozar, Schraa, Spiros and Tusler; +cosponsored by Senators Feyen and Marklein",2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Bradley, Jacque, Nass, Testin and Wanggaard; +cosponsored by Representatives Cabral-Guevara, Allen, Brandtjen, Callahan, Dittrich, Duchow, Edming, Gundrum, Katsma, Krug, Magnafici, Murphy, Ramthun, J. Rodriguez, Rozar, Thiesfeldt, Tittl, Tusler, Vos, Tauchen, Knodl, Skowronski and Wichgers",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brandtjen, Gundrum, Murphy, Mursau, Subeck, Thiesfeldt and Wichgers; +cosponsored by Senator Jacque",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Smith, Agard, Larson, Ringhand and L. Taylor; +cosponsored by Representatives Hintz, Snodgrass, Shelton, Anderson, Andraca, Baldeh, Brostoff, Cabrera, Conley, Drake, Emerson, Hebl, Hesselbein, B. Meyers, Neubauer, Pope, Sinicki, Spreitzer, Stubbs, Subeck and Vruwink",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Wichgers, Cabrera and Allen",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier and Felzkowski; +cosponsored by Representatives James, Loudenbeck, Armstrong, Born, Cabral-Guevara, Callahan, Duchow, Edming, Gundrum, Knodl, Krug, Moses, Mursau, Oldenburg, Petryk, Plumer, Rozar, Snyder, Steffen, Swearingen, Tranel, Vorpagel, Wittke and Zimmerman",2021-04-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Dallman, Callahan, Allen, Brandtjen, Cabral-Guevara, Edming, Horlacher, James, Knodl, Macco, Magnafici, Moses, Mursau, Penterman, Skowronski, Summerfield, Swearingen, VanderMeer, Wichgers, Kurtz and Gundrum; +cosponsored by Senators Felzkowski, Stafsholt, Bradley, Jacque, Jagler and Testin",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ringhand, Carpenter and Roys; +cosponsored by Representatives Shelton, Hebl, Sinicki, Drake, Spreitzer, Stubbs and Conley",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Riemer, Hebl, Brostoff, S. Rodriguez, Doyle, Cabrera, Neubauer, Billings, Spreitzer, Snodgrass, Conley, Ohnstad, Baldeh, Sinicki, Shankland, Anderson, Considine, Hong, Stubbs, Goyke, Vining, Hesselbein, McGuire, Subeck, Hintz and Bowen; +cosponsored by Senators Roys, Johnson, Carpenter, Larson, Wirch, L. Taylor and Agard",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Larson, Agard and L. Taylor; +cosponsored by Representatives S. Rodriguez, Sinicki, B. Meyers, Andraca, Cabrera, Doyle, Hebl, Hong, Pope, Shankland, Subeck and Spreitzer",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Stroebel, Ballweg, Nass and Roth; +cosponsored by Representatives Krug, Armstrong, Edming, Knodl, Kurtz, Moses, Oldenburg, Rozar and Tusler",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, L. Taylor, Darling, Cowles, Feyen, Jacque and Roys; +cosponsored by Representatives Spiros, Armstrong, Bowen, Brandtjen, Moses and Rozar",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley and Ringhand; +cosponsored by Representatives B. Meyers, Hebl, S. Rodriguez, Shelton, Vruwink, Considine, Sinicki, Stubbs, Emerson, Andraca and Subeck",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Snodgrass, Andraca, Cabrera, Conley, Considine, Shelton and Sinicki",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brandtjen, Allen, Behnke, Gundrum, James, Kuglitsch, Magnafici, Murphy, Penterman, Sanfelippo and Thiesfeldt; +cosponsored by Senators Stroebel, Jacque and Nass",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Moses, Born, Callahan, Edming, Horlacher, Kitchens, Knodl, Loudenbeck, Macco, Murphy, Ramthun, Rozar, Skowronski, Snyder, Thiesfeldt, Tittl, Tusler, VanderMeer and Wichgers; +cosponsored by Senators Petrowski, Bewley, Bradley, Cowles, Felzkowski, Kooyenga, Nass, Testin and Wanggaard",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Wanggaard, L. Taylor, Carpenter, Feyen, Ringhand, Jacque, Felzkowski, Roys, Darling, Testin, Larson and Pfaff; +cosponsored by Representatives Loudenbeck, Born, Schraa, Ramthun, Tauchen, Novak, Snyder, Skowronski, Rozar, Zimmerman, Edming, Mursau, Knodl, James, Doyle, Cabrera, Summerfield, VanderMeer, Dittrich, Sinicki, Milroy, Spiros, Moses, Neubauer, Hong, Duchow, Drake, Tranel, Riemer, Bowen, Andraca, Spreitzer, B. Meyers, Subeck and Brostoff",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Marklein, Darling and L. Taylor; +cosponsored by Representatives Novak, Tranel, Dittrich, Kitchens, Rozar, Shankland, Skowronski, Spiros, Swearingen, Tauchen, Tusler, Vorpagel and Subeck",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Smith, Erpenbach, Agard, L. Taylor, Pfaff and Larson; +cosponsored by Representatives Neubauer, Shankland, Spreitzer, Anderson, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Vining and Vruwink",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snodgrass, Considine, Anderson, Andraca, Baldeh, Billings, Cabrera, Conley, Hebl, Hesselbein, Hong, Neubauer, Ohnstad, Pope, Shelton, Sinicki, Stubbs and Vining; +cosponsored by Senators Agard, Smith, Carpenter, Larson, Roys, L. Taylor and Wirch",2021-07-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Marklein and Ballweg; +cosponsored by Representatives Kurtz, Loudenbeck, Edming, Knodl, Krug, Novak and Spiros",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Cabral-Guevara, Spiros, Allen, Katsma, Ramthun, Neylon, Callahan, Edming, Kuglitsch, Brooks, Knodl, Gundrum, Rozar and Moses; +cosponsored by Senators Stroebel, Wanggaard, Nass, Marklein and Ballweg",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Allen, Wichgers, Knodl, Gundrum, Skowronski, Behnke, Brandtjen, Dittrich, Murphy, Penterman, Schraa and Steffen; +cosponsored by Senators Jacque, Bernier and Stroebel",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Shankland, Emerson, Andraca, Baldeh, Cabrera, Conley, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Sinicki, Snodgrass, Spreitzer, Vining, Vruwink, Brostoff, Subeck and Stubbs; +cosponsored by Senators Smith, Larson, Agard, Johnson and Roys",2021-10-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hong, Andraca, Baldeh, Bowen, Billings, Brostoff, Cabrera, Conley, Drake, Emerson, Hebl, Hesselbein, Milroy, Moore Omokunde, Neubauer, Shankland, Shelton, Sinicki, Spreitzer, Stubbs, Subeck and Pope; +cosponsored by Senators Johnson, Roys, Erpenbach, Agard, Bewley, Larson, Pfaff, Ringhand, Smith and Wirch",2021-11-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Neylon, Duchow, Andraca, Cabral-Guevara, Haywood, J. Rodriguez and Schraa; +cosponsored by Senators Kooyenga, Bernier and Roys",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Shelton, Conley, Pope, Hebl, Neubauer, Cabrera, Subeck, Spreitzer, Sinicki, Hong and Stubbs; +cosponsored by Senators Larson, Carpenter and Agard",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee for Review of Administrative Rules,2021-01-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Larson, Agard, Johnson and Roys; +cosponsored by Representatives Shankland, Emerson, Shelton, Andraca, Baldeh, Brostoff, Cabrera, Conley, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Sinicki, Snodgrass, Spreitzer, Vining, Vruwink, Subeck and Stubbs",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Gundrum, Magnafici, Cabral-Guevara, Dittrich, Moses, Armstrong and Horlacher; +cosponsored by Senators Testin, Nass and Ballweg",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, L. Taylor, Kooyenga, Bernier, Ballweg, Cowles, Felzkowski and Feyen; +cosponsored by Representatives James, Loudenbeck, Vruwink, Armstrong, Born, Brandtjen, Cabral-Guevara, Dallman, Dittrich, Doyle, Drake, Duchow, Edming, Gundrum, Kuglitsch, Kurtz, Macco, Moses, Murphy, Mursau, L. Myers, Novak, J. Rodriguez, Skowronski, Snyder, Spiros, Tittl and Billings",2021-07-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Considine, Moore Omokunde, Ortiz-Velez, Andraca, Anderson, Bowen, Drake, Hebl, Neubauer, Pope, Shelton and Vruwink; +cosponsored by Senator Erpenbach",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Senators Kooyenga and Stroebel,2021-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Ramthun, Brooks, Allen, Behnke, Brandtjen, Cabral-Guevara, Gundrum, Horlacher, Murphy and Wichgers; +cosponsored by Senator Jacque",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Roys, Agard, Carpenter and Wirch; +cosponsored by Representatives Snodgrass, Shelton, Hintz, Anderson, Andraca, Baldeh, Billings, Brostoff, Cabrera, Conley, Considine, Drake, Emerson, Hebl, Hesselbein, Neubauer, Pope, Shankland, Sinicki, Stubbs, Subeck and Vruwink",2021-07-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, B. Meyers, Anderson, Cabral-Guevara, Cabrera, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hong, Milroy, L. Myers, Neubauer, Ohnstad, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Roys, Erpenbach, Agard, Bewley, Carpenter, Johnson, Larson, Pfaff and Ringhand",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sinicki, Milroy, Hintz, Hesselbein, Spreitzer, Subeck, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hong, McGuire, B. Meyers, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Snodgrass, Stubbs, Vining and Vruwink; +cosponsored by Senators Johnson, Wirch, Smith, Bewley, Ringhand, Carpenter, Agard, Larson, Roys and L. Taylor",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Cowles, Ballweg, Jacque, Johnson, Ringhand, Roys and Smith; +cosponsored by Representatives Mursau, Subeck, Anderson, Andraca, Bowen, Cabral-Guevara, Emerson, Hebl, Hesselbein, S. Rodriguez, Shankland and Spreitzer",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Brostoff, Considine, Moore Omokunde, Anderson, Andraca, Baldeh, Billings, Bowen, Cabrera, Conley, Doyle, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Agard, Johnson, Larson, Roys and Smith",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Wanggaard and Bernier; +cosponsored by Representatives Novak, Tranel, Dallman, Oldenburg, Steffen, Ramthun, Cabral-Guevara, Dittrich, Horlacher, Edming, Thiesfeldt, Murphy and Tusler",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Testin; +cosponsored by Representatives Wittke, Drake, Kerkman and Rozar",2022-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Cowles, Felzkowski and Feyen; +cosponsored by Representatives Kuglitsch, Allen, Drake, Haywood, Andraca, Armstrong, Conley, Kerkman, Oldenburg and Stubbs",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Carpenter, Felzkowski, Marklein, Nass, Roth and L. Taylor; +cosponsored by Representatives Tusler, Duchow, Rozar, Skowronski and Subeck",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Duchow, Neylon, Kitchens, Cabral-Guevara and Subeck; +cosponsored by Senators Cowles and Darling",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel and Nass; +cosponsored by Representatives Sortwell, Murphy, Behnke, Cabral-Guevara, Moses, Rozar, Wichgers, Thiesfeldt, Brandtjen, Brooks, Horlacher, James and Schraa",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Feyen, Cowles, Ballweg, Jacque, Ringhand, Roys, Smith and Wanggaard; +cosponsored by Representatives Mursau, Subeck, Anderson, Andraca, Bowen, Cabral-Guevara, Emerson, Hebl, S. Rodriguez, Shankland and Spreitzer",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith and Bernier; +cosponsored by Representatives Emerson, James, Petryk and Summerfield",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Schraa, Brooks, Callahan, Haywood, Kitchens, Knodl, Kuglitsch, Moses, Rozar, Skowronski, Tauchen, Thiesfeldt, Wichgers, Zimmerman and Murphy; +cosponsored by Senators Bernier, Felzkowski and Nass",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Smith; +cosponsored by Representative Shankland",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, VanderMeer, Baldeh, Billings, Cabrera, Conley, Doyle, Emerson, Hebl, Hesselbein, B. Meyers, Milroy, Moore Omokunde, Neubauer, Ohnstad, Oldenburg, Pope, Rozar, Shelton, Spreitzer, Stubbs, Subeck and Sinicki; +cosponsored by Senators Testin, Carpenter, Bewley, Larson, Pfaff, Ringhand, Roys, Smith and L. Taylor",2021-05-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Nass; +cosponsored by Representatives Pronschinske, Allen, Armstrong, Behnke, Brandtjen, Edming, Krug, Kuglitsch and Tittl",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Nass and Smith; +cosponsored by Representatives Sortwell, Brooks, Edming, Gundrum, Knodl, Moses, Murphy, Ramthun and Tittl",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Nass, Jacque, Kapenga, Kooyenga, Stroebel and Testin; +cosponsored by Representatives Wichgers, Knodl, Sanfelippo, Allen, Behnke, Brandtjen, Gundrum, Kuglitsch, Murphy and Skowronski",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Shankland; +cosponsored by Senator Smith",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Ballweg, Bewley, Ringhand and Marklein; +cosponsored by Representatives Zimmerman, Cabral-Guevara, Dittrich, Duchow, Edming, Haywood, Macco, Moses, Murphy, Mursau, Petryk, Sinicki, Skowronski, Snodgrass, Subeck, Tranel and Vruwink",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Magnafici, Armstrong, Brandtjen, Cabral-Guevara, Edming, Gundrum, Horlacher, James, Knodl, Moses, Penterman, Pronschinske, Schraa, Skowronski, Sortwell, Spiros, Tittl, Wichgers and Brooks; +cosponsored by Senators Bradley, Felzkowski, Nass and Stroebel",2021-09-22T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Legislative Organization,2021-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Pfaff, Smith, Erpenbach, Larson and Ringhand; +cosponsored by Representatives Considine, Shelton, Cabrera, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Spreitzer, Stubbs, Subeck and Vruwink",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Snodgrass, Hintz, Anderson, Andraca, Baldeh, Brostoff, Cabrera, Conley, Considine, Drake, Hebl, Hesselbein, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Sinicki, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Smith, Agard, Carpenter, Erpenbach, Larson, Roys, L. Taylor and Wirch",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Darling, Carpenter, Cowles, Felzkowski, Jacque, Johnson, Larson, Marklein, Petrowski, Pfaff, Smith, L. Taylor and Wirch; +cosponsored by Representatives Rozar, J. Rodriguez, Bowen, Cabral-Guevara, Cabrera, Callahan, Dittrich, Drake, Duchow, Edming, Emerson, Kerkman, Kuglitsch, Magnafici, Moses, Mursau, Novak, Ortiz-Velez, Pope, Shankland, Sinicki, Spiros, Spreitzer, Thiesfeldt, Tusler, Vorpagel, Wittke and Subeck",2021-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Ballweg, Felzkowski, Stroebel, Wanggaard and Wirch; +cosponsored by Representatives Kitchens, Mursau, Gundrum, Knodl, Loudenbeck, Sinicki, Skowronski, Tauchen, Thiesfeldt and Wichgers",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Johnson, Erpenbach, Agard, Bewley, Carpenter, Larson, Pfaff, Ringhand, Smith, L. Taylor and Wirch; +cosponsored by Representatives Hong, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Hebl, Hesselbein, Moore Omokunde, Neubauer, Ohnstad, Riemer, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Ballweg, Cowles, Jacque, Marklein and Wanggaard; +cosponsored by Representatives James, Armstrong, Bowen, Brandtjen, Dittrich, Edming, Gundrum, Kitchens, Krug, Kuglitsch, Magnafici, Moses, Murphy, Oldenburg, Plumer, Ramthun, J. Rodriguez, Rozar, Subeck, Tittl, Tusler and Wichgers",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Zimmerman, Cabral-Guevara, Dittrich, Duchow, Edming, Haywood, Macco, Moses, Murphy, Mursau, Petryk, Sinicki, Skowronski, Snodgrass, Subeck, Tranel and Vruwink; +cosponsored by Senators Bernier, Bewley, Ringhand, Ballweg and Marklein",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Vos and Hintz,2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hesselbein, Andraca, Milroy, Riemer, Sinicki, Hebl, Conley, Hong, Ohnstad, Cabrera, Anderson, Stubbs, Bowen, Spreitzer, Subeck, Shankland, Shelton, B. Meyers, S. Rodriguez and Considine; +cosponsored by Senators Pfaff, Wirch, Carpenter, Ringhand, Smith, Roys, Bewley, Agard, Larson and L. Taylor",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga and Darling; +cosponsored by Representatives Dittrich and Cabral-Guevara",2022-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Agard, Darling, Wanggaard and Petrowski; +cosponsored by Representatives Steffen, Macco, Thiesfeldt, Loudenbeck, Kerkman, Brooks, Gundrum, Schraa, Rozar, Subeck, Murphy, Spreitzer, Vining and Cabrera",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Ballweg, Darling, Felzkowski, Marklein and Nass; +cosponsored by Representatives Wittke, Dittrich, Gundrum, Knodl, Kuglitsch, Moses, Ramthun, Rozar, Skowronski, Tranel, VanderMeer and Zimmerman",2021-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vorpagel, Armstrong, Cabral-Guevara, Callahan, Dallman, Edming, Gundrum, James, Kitchens, Knodl, Moses, Neylon, Novak, Oldenburg, Penterman, Rozar, Sinicki, Schraa, Sortwell, Spiros, Swearingen, Tauchen, Thiesfeldt, Tittl, VanderMeer and Wittke; +cosponsored by Senators Feyen, Wanggaard, Bradley, Felzkowski, Jagler, Pfaff, Roys, Stroebel and Testin",2021-09-30T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Edming, Skowronski, Callahan, Knodl, Kurtz, Magnafici, Moses, Mursau, Rozar, Tranel, VanderMeer and Wichgers; +cosponsored by Senators Stafsholt, Bradley, Felzkowski, Marklein and Stroebel",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pronschinske, Loudenbeck, Horlacher, Kuglitsch, Moses, Petryk, Skowronski, Tauchen and Zimmerman; +cosponsored by Senators Jacque and Feyen",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kitchens, Thiesfeldt, Allen, Armstrong, Brandtjen, Cabral-Guevara, Dittrich, James, Knodl, Mursau, Rozar, Schraa, Snyder, Tusler and Wichgers; +cosponsored by Senators Bernier, Darling, Felzkowski, Jacque and Wanggaard",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski and L. Taylor; +cosponsored by Representatives Murphy, Cabral-Guevara, Sinicki, Wichgers, James, Drake and Brostoff",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Pfaff, Smith, Agard, Bewley, Erpenbach, Johnson, Larson, Ringhand, Roys and Wirch; +cosponsored by Representatives Considine, Neubauer, Shelton, Conley, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Ohnstad, Pope, Shankland, Spreitzer, Stubbs, Subeck and Vruwink",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Ringhand, Cowles, Ballweg, Bernier, Bewley, Erpenbach, Felzkowski, Jacque, Marklein, Nass, Petrowski, Pfaff, Roys, Smith and L. Taylor; +cosponsored by Representatives Summerfield, Oldenburg, Armstrong, Billings, Doyle, Edming, Gundrum, James, Kitchens, Krug, Kuglitsch, Kurtz, Loudenbeck, B. Meyers, Milroy, Moses, Mursau, Novak, Petryk, Plumer, Rozar, Skowronski, Snyder, Spreitzer, Tauchen, Thiesfeldt, Tranel, VanderMeer and Vruwink",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Felzkowski and L. Taylor; +cosponsored by Representatives Kerkman, Cabral-Guevara, Dittrich, Edming, Gundrum, Knodl, Moses, Murphy, Rozar, Steffen, Tauchen, Tusler and Wichgers",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Callahan, Brandtjen, Milroy and Ramthun; +cosponsored by Senators Jacque and Feyen",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Conley, Hebl, Andraca, Shelton, Pope, Cabrera, Vruwink, Spreitzer, Vining, Cabral-Guevara, Shankland, Bowen, Sinicki, Neubauer and Snodgrass; +cosponsored by Senators Agard, Erpenbach, Johnson, Ringhand, Carpenter, Larson, Pfaff and Smith",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Sortwell, Cabrera, Neubauer, Considine, Hong, Conley, Baldeh, Tranel, Ortiz-Velez, Subeck, Billings, Tusler and Hesselbein; +cosponsored by Senators Johnson, Felzkowski, Roys and Carpenter",2021-03-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Skowronski, Armstrong, Bowen, Brostoff, Cabrera, Edming, Horlacher, Loudenbeck, Petersen, Petryk, Ramthun, Rozar, Schraa, Shankland, Subeck, Tauchen, Tusler and Wichgers; +cosponsored by Senators Darling, Ballweg, Jacque and Wanggaard",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Vining, Hebl, Moore Omokunde, Baldeh, Andraca, Shelton, Cabrera, Spreitzer, Subeck, Emerson, S. Rodriguez, Bowen, Sinicki, Neubauer, Conley and Snodgrass; +cosponsored by Senators Agard, Roys, Johnson, Larson and Wirch",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Skowronski, Murphy, Gundrum, Cabral-Guevara, Subeck, Mursau, Rozar, Knodl, Horlacher, Moses, Cabrera, Penterman and Thiesfeldt; +cosponsored by Senators Petrowski, Jacque, Darling and Marklein",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Hong, S. Rodriguez, Brostoff, Pope, Neubauer, Cabrera, Shelton, L. Myers, Goyke, Stubbs, Ohnstad, Riemer, Emerson, Conley, Baldeh, Snodgrass, Anderson, Hebl, Bowen, Spreitzer, Vining, Sinicki, Drake, Billings, Moore Omokunde and Hesselbein; +cosponsored by Senators Agard, Wirch, Carpenter, Roys, Johnson, Ringhand, Erpenbach, Larson and Smith",2021-07-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kitchens, Magnafici, Tusler, Armstrong, August, Born, Dittrich, Duchow, James, Kerkman, Knodl, Krug, Kuglitsch, Kurtz, Loudenbeck, Moses, Mursau, Neylon, Novak, Plumer, Skowronski, Snyder, Spiros, Steffen, Steineke, Summerfield, Swearingen, Tauchen, Tranel, Vorpagel, Vos and Wittke; +cosponsored by Senators Felzkowski, Bernier, Carpenter, Darling, Feyen and Marklein",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Sortwell, Armstrong, Brandtjen, Magnafici, Penterman, Schraa and Wichgers",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Carpenter, Ballweg, Felzkowski, Feyen, Nass and L. Taylor; +cosponsored by Representatives Macco, Wittke, Armstrong, Callahan, Dittrich, Edming, Horlacher, Kerkman, Kuglitsch, Magnafici, Milroy, Petryk, Snyder, Steffen, Summerfield, Zimmerman, Ramthun, Skowronski and James",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators LeMahieu, Kapenga, Feyen, Testin, Wanggaard, Bernier, Marklein, Stroebel, Jacque and Ballweg; +cosponsored by Representatives Vos, Steineke, August, Petersen, Vorpagel, Duchow, James, Kerkman, Born, Loudenbeck, Katsma, Zimmerman, J. Rodriguez, Kurtz, Skowronski, Kitchens, Ramthun, Edming, Spiros, Petryk, Neylon, Sortwell, Plumer, Tusler, Murphy, Moses, Summerfield, Snyder, Macco, Steffen, Rozar, Krug, Dittrich, Gundrum, Dallman, Tranel, Brooks, Allen, Wittke, Swearingen and Armstrong",2021-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Cabral-Guevara, Allen, Brandtjen, Edming, Horlacher, Knodl and Kuglitsch; +cosponsored by Senators Roth, Stroebel, Felzkowski, Nass and Darling",2021-09-30T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steineke, August, Armstrong, Born, Brooks, Cabral-Guevara, Dallman, Dittrich, Duchow, Edming, Gundrum, Katsma, Knodl, Kuglitsch, Kurtz, Loudenbeck, Magnafici, Mursau, Petersen, Plumer, Rozar, Sortwell, Spiros, Steffen, Swearingen, Tauchen, Thiesfeldt, Tittl, VanderMeer, Vorpagel, Wichgers, Wittke and Neylon; +cosponsored by Senators Roth, Bradley, Nass, Felzkowski, Jacque, Jagler, Stroebel and Ballweg",2021-05-13T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Cowles, Jacque, Marklein and Carpenter; +cosponsored by Representatives Steffen, Macco, Shelton, Baldeh, Bowen, Brandtjen, Cabrera, Dittrich, Edming, Gundrum, Jagler, Kitchens, Kuglitsch, Milroy, Moses, Murphy, Mursau, Ramthun, Shankland, Sinicki, Spreitzer, Snyder, Tauchen, Thiesfeldt, Tittl, Tranel, Tusler, Vorpagel, Vruwink and Spiros",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Ballweg; +cosponsored by Representatives Tittl, Armstrong, Brandtjen, Cabral-Guevara, Dittrich, Edming, Gundrum, Horlacher, Mursau, Rozar, Subeck and Thiesfeldt",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Gundrum, Brooks, Edming, Jagler, Knodl, Krug, Macco, Neylon, Skowronski, Sortwell, Spiros, Steffen, VanderMeer, Wichgers and Loudenbeck; +cosponsored by Senators Darling, Stroebel, Wimberger, Felzkowski, Feyen, Marklein, Nass, Petrowski and Wanggaard",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Bernier, Feyen, Kooyenga, Wanggaard and Nass; +cosponsored by Representatives Plumer, Edming, Dittrich, Steffen, Petryk, Krug, Skowronski, Rozar, Mursau, Cabral-Guevara, Wichgers, Sanfelippo, Petersen, Magnafici, Moses, Billings, Subeck, Spiros, Ramthun, James, Ohnstad, Zimmerman and Armstrong",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Darling, Jacque and Marklein; +cosponsored by Representatives Dittrich, Cabral-Guevara, Cabrera, Gundrum, Horlacher, Knodl, Moses, Murphy, Mursau, Penterman, Rozar, Skowronski, Subeck and Thiesfeldt",2021-08-19T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Armstrong, August, Macco, Steffen and Knodl; +cosponsored by Senators Cowles and Ballweg",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sanfelippo, Krug, Gundrum and Moses; +cosponsored by Senators Testin, Nass and Feyen",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Ortiz-Velez, Brooks, Tittl, Cabral-Guevara, Krug, L. Myers, Moses, Drake, Considine and Summerfield; +cosponsored by Senators Bernier and L. Taylor",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Armstrong and Kurtz; +cosponsored by Senator Feyen",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Agard, Carpenter, Larson and Roys; +cosponsored by Representatives Bowen, Hong, Anderson, Baldeh, Billings, Cabrera, Conley, Considine, Emerson, Goyke, Hebl, L. Myers, Moore Omokunde, Neubauer, Shankland, Shelton, Sinicki, Spreitzer and Subeck",2021-08-19T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steineke, Stubbs, Armstrong, Baldeh, Cabral-Guevara, Cabrera, Duchow, Edming, Goyke, Gundrum, Kitchens, Krug, Kurtz, Loudenbeck, Macco, Milroy, Murphy, Mursau, Novak, Petryk, Schraa, Sortwell, Spiros, Steffen, Wittke and Zimmerman; +cosponsored by Senators Wimberger, Wanggaard, L. Taylor and Ballweg",2021-05-18T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Bowen,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin and L. Taylor; +cosponsored by Representatives Krug, Subeck, Mursau, Moses, Bowen, Brandtjen, Gundrum, Plumer, Spiros, Tusler and Horlacher",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Magnafici, Ramthun, Allen, Armstrong, Behnke, Brandtjen, Cabral-Guevara, Gundrum, Horlacher, Kuglitsch, Rozar, Sortwell, Thiesfeldt, Wichgers, Schraa and Dittrich; +cosponsored by Senators Jacque, Nass and Wanggaard",2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Bewley, Ringhand, Roys and Larson; +cosponsored by Representatives Subeck, Conley, Brostoff, Cabrera, Drake, Emerson, Haywood, Hebl, Hesselbein, Hong, Pope, Shankland, Sinicki, Snodgrass, Spreitzer and Vining",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives J. Rodriguez, Dittrich, Born, Armstrong, Dallman, James, Kitchens, Kuglitsch, Macco, Magnafici, Murphy, Rozar, Schraa, Skowronski, Spiros, Summerfield, Tauchen, Tittl, Tranel, Vorpagel, Wichgers, Wittke and Zimmerman; +cosponsored by Senators Roth, Stroebel, Cowles, Kooyenga, Jacque and Darling",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Edming, Mursau, L. Myers, Anderson, Andraca, Armstrong, Bowen, Brandtjen, Callahan, Drake, Hebl, Horlacher, Milroy, Novak, Ortiz-Velez, Petersen, Petryk, Rozar, Shankland, Sinicki, Snodgrass, Summerfield, Tranel and Shelton; +cosponsored by Senators Jacque, L. Taylor, Carpenter, Roth, Testin and Wirch",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Bewley, Feyen, Smith and Petrowski; +cosponsored by Representatives Rozar, Krug, Hong and Tusler",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ballweg, Marklein and L. Taylor; +cosponsored by Representatives Callahan, Mursau, Kuglitsch, L. Myers, Moses, Spiros, Tauchen and Wichgers",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Carpenter, Darling and Nass; +cosponsored by Representatives Steineke, Cabral-Guevara, Drake, Hesselbein, Hintz, Magnafici, Milroy, Moses, Ohnstad, Penterman, Sinicki, Snodgrass, Spiros, Steffen, Subeck and Vruwink",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Krug; +cosponsored by Senator Testin",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Agard, Carpenter, Erpenbach, Smith, Roys, Bewley, Pfaff, Ringhand, Wirch, L. Taylor and Johnson",2021-01-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Ringhand, Roys, L. Taylor, Agard, Johnson and Larson; +cosponsored by Representatives Emerson, Andraca, Brostoff, Cabrera, Conley, Considine, Neubauer, Shelton, Sinicki, Hebl, Hong, Moore Omokunde, Ohnstad, Snodgrass, Stubbs, Subeck and Vining",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley and Nass; +cosponsored by Representatives Skowronski, Brandtjen, Edming, Horlacher, James, Moses, Ramthun, Sanfelippo, Schraa and Wichgers",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Employment Relations,2022-01-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, Smith, Ballweg, Darling, Feyen, Marklein and Pfaff; +cosponsored by Representatives Billings, Spiros, Armstrong, Brandtjen, Cabral-Guevara, Cabrera, Doyle, Murphy, Mursau, Ohnstad, Rozar, Sinicki, Subeck, Ortiz-Velez, Vruwink and Wichgers",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Roth, Darling, Marklein, Jacque, Wanggaard, Bradley, Nass, Ballweg and Felzkowski; +cosponsored by Representatives Neylon, Duchow, Magnafici, Edming, Steffen, Spiros, Krug, Knodl, Brooks, Sortwell, Gundrum, Murphy, Jagler, Wichgers and VanderMeer",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Stroebel, Felzkowski, Nass and Darling; +cosponsored by Representatives Sortwell, Cabral-Guevara, Brandtjen, Edming, Horlacher, Knodl and Kuglitsch",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Employment Relations,2022-01-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Snodgrass, Cabrera, Conley, Drake, Emerson, Hebl, Hesselbein, Hong, Pope, S. Rodriguez, Sinicki, Spreitzer, Vining, Andraca and Stubbs; +cosponsored by Senators L. Taylor, Roys, Ringhand and Larson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Andraca, Billings, Bowen, Cabrera, Considine, Hebl, Hong, Milroy, Ohnstad, Pope, Shankland, Shelton, Sinicki, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Smith, Agard, Carpenter and Roys",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Anderson, Considine, Spreitzer, Vining, Sinicki, Brostoff, Hesselbein, Goyke, B. Meyers, Cabrera, Snodgrass, L. Myers, Shankland, Drake, Emerson, Shelton, Hebl, Conley, Subeck, S. Rodriguez, Ohnstad, Stubbs, Milroy, Vruwink and Hong; +cosponsored by Senators Larson, Johnson, Smith, L. Taylor, Agard, Carpenter, Roys, Erpenbach and Bewley",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Spiros; +cosponsored by Senator Petrowski",2021-06-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Carpenter, Ringhand and Agard; +cosponsored by Representatives Spreitzer, Anderson, Baldeh, Billings, Cabrera, Considine, Doyle, Hebl, Pope, Sinicki, Snodgrass, Subeck and Vruwink",2021-04-28T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ballweg, Bewley, Cowles, Jacque, Marklein and Nass; +cosponsored by Representatives Magnafici, Armstrong, Brooks, Cabral-Guevara, Callahan, Dittrich, Doyle, Edming, James, Knodl, Milroy, Moses, Murphy, Neylon, Novak, Oldenburg, Petryk, Plumer, Ramthun, Rozar, Skowronski, Spiros, Tauchen, Thiesfeldt and Wichgers",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Erpenbach and Smith; +cosponsored by Representatives Emerson, Shelton, Pope, Sinicki, Snodgrass, Baldeh, Billings, Cabral-Guevara, Doyle, Riemer, Spreitzer and Stubbs",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kurtz, Dallman, Edming, James, Krug, Mursau, Novak, Oldenburg, Plumer, Rozar, Sinicki, Spiros, Tauchen, Thiesfeldt and VanderMeer; +cosponsored by Senators Ballweg, Marklein, Stafsholt, L. Taylor and Testin",2021-05-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Andraca, Conley, Emerson, Hebl, Neubauer, Pope, Shelton, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Larson, Johnson and Roys",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Ballweg, Jagler, Nass, Stroebel and Cowles; +cosponsored by Representatives Callahan, Snyder, Born, Brandtjen, Dittrich, Edming, Gundrum, James, Knodl, Krug, Kuglitsch, Murphy, J. Rodriguez, Sanfelippo, Thiesfeldt, Kitchens and Tranel",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Felzkowski, Cowles and Nass; +cosponsored by Representatives Callahan, Swearingen, Mursau, Spiros, Tusler and Edming",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Roth; +cosponsored by Representatives August, Rozar, Dittrich, Kuglitsch, Thiesfeldt, Behnke, Wichgers, Brooks, Brandtjen, Drake, Tittl, Neylon, Ortiz-Velez and Schraa",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier and L. Taylor; +cosponsored by Representatives Pronschinske, James, Petryk, Edming, Gundrum, Knodl, Moses, Mursau, Plumer, Ramthun, Skowronski and Sortwell",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Marklein and Johnson; +cosponsored by Representatives J. Rodriguez, Kerkman, Doyle, Billings, Dittrich, Tusler, Sinicki, Snyder and Thiesfeldt",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Armstrong, Considine, Duchow, Edming, Gundrum, Pope, Wichgers and Wittke; +cosponsored by Senators Petrowski, Erpenbach, Cowles, Marklein, Ringhand, Smith, Wanggaard and Ballweg",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Cabrera, Anderson, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hong, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Erpenbach, Johnson, Agard, Bewley, Carpenter, Larson, Pfaff and Ringhand",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Bewley, Johnson, Carpenter, Erpenbach, Agard, L. Taylor, Roys, Wirch, Ringhand, Larson and Pfaff; +cosponsored by Representatives B. Meyers, Doyle, Shankland, Vining, S. Rodriguez, Milroy, Sinicki, Andraca, Cabrera, Baldeh, Spreitzer, Conley, Emerson, Subeck, Hebl, Hintz, Hesselbein, Snodgrass, Ohnstad, Anderson, Drake, Vruwink, Billings, Goyke, Bowen, Stubbs, McGuire, Neubauer, Hong, Pope, Ortiz-Velez, Brostoff and Considine",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Nass, Cowles, Feyen, Stroebel, Felzkowski and Ballweg; +cosponsored by Representatives Tranel, Novak, Kurtz, Oldenburg, VanderMeer, Dittrich, Knodl, Moses, Murphy, Mursau, Skowronski and Tusler",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth and Darling; +cosponsored by Representatives Murphy, Armstrong, Gundrum and Allen",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Krug and Shankland,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hong, Anderson, Andraca, Baldeh, Bowen, Brostoff, Cabrera, Conley, Drake, Emerson, Hebl, Hesselbein, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spiros, Spreitzer, Stubbs, Subeck, Vining, Vruwink, Hintz and Considine; +cosponsored by Senators Kooyenga, Agard, Bewley, Carpenter, Johnson, Pfaff, Ringhand, Roys, Smith and L. Taylor",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Bradley, Felzkowski, Bernier, Darling, Jagler, Kapenga, LeMahieu, Marklein, Nass, Roth and Stroebel; +cosponsored by Representatives Dittrich, Allen, Callahan, Gundrum, Horlacher, Katsma, Knodl, Kuglitsch, Loudenbeck, Magnafici, Penterman, J. Rodriguez, Schraa, Spiros, Summerfield, Thiesfeldt, Tittl, Tusler and Edming",2021-10-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hong, Pope, Shankland, Anderson, Andraca, Baldeh, Brostoff, Conley, Considine, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Milroy, Moore Omokunde, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Vining, Vruwink, Subeck and Drake; +cosponsored by Senators Agard, Carpenter, Johnson, Ringhand and Bewley",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Feyen and Stroebel; +cosponsored by Representatives Dallman, Armstrong, Dittrich, Duchow, Kuglitsch, Mursau and Spiros",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Roth; +cosponsored by Representatives Murphy, August, Armstrong, Behnke, Gundrum, Knodl and Penterman",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Murphy, Rozar, Tusler and VanderMeer; +cosponsored by Senators Cowles and Darling",2021-08-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Haywood, Milroy, Ortiz-Velez, Anderson, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Neubauer, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining; +cosponsored by Senators Smith, Roys, Erpenbach, Agard, L. Taylor and Larson",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Snodgrass, Anderson, Andraca, Baldeh, Cabrera, Conley, Considine, Emerson, Hebl, Moore Omokunde, Neubauer, Ohnstad, Shelton, Spreitzer, Subeck and Vining; +cosponsored by Senators Smith, Carpenter, Larson and Roys",2021-05-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Cowles, Felzkowski and Feyen; +cosponsored by Representatives Tittl, Brooks, Callahan, Gundrum, Knodl, Loudenbeck, Moses, Oldenburg, Skowronski, VanderMeer, Wichgers, Edming and Rozar",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Shelton, Baldeh, Cabrera, Emerson, Hebl, Hesselbein, Milroy, Ohnstad, Sinicki, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Wirch, Carpenter, Johnson, Larson, Ringhand and Roys",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Duchow, Kuglitsch, Bowen, Edming, Knodl and Subeck; +cosponsored by Senators Kooyenga, Carpenter, Marklein and Roys",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel and Roys; +cosponsored by Representatives Tauchen, Dittrich, Doyle, Duchow, Hong, Krug, Kurtz, Macco, Milroy, Moses, Neubauer, Novak, Thiesfeldt and Wittke",2021-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Jacque and Nass; +cosponsored by Representatives Dittrich, Brandtjen, Cabral-Guevara, Rozar, Tittl, Gundrum, Sortwell, Tusler, Plumer, Skowronski, James, Allen, Kuglitsch, Moses, Ramthun and Sanfelippo",2021-04-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives August, Brooks, Gundrum, Magnafici, Edming, Spiros, Krug, Neylon, Loudenbeck, Kuglitsch, Murphy, Jagler, VanderMeer, Wichgers and Knodl; +cosponsored by Senators Stroebel, Darling, Roth, Bradley, Nass, Wanggaard, Ballweg, Marklein and Felzkowski",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Gundrum, Ramthun, Brooks, Rozar and Skowronski; +cosponsored by Senators Wanggaard and Jacque",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Committee on Labor and Regulatory Reform,2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Committee on Government Operations, Legal Review and Consumer Protection",2021-06-04T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Armstrong and Petryk,2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Macco, Callahan, Dittrich, Drake, Duchow, Gundrum, Haywood, Horlacher, Katsma, Kitchens, Knodl, Kuglitsch, Moses, Mursau, Oldenburg, Ramthun, Skowronski, Snyder, Steffen, Wittke, Zimmerman and Subeck; +cosponsored by Senators Kooyenga, Ballweg, Carpenter, Cowles, Felzkowski, Feyen, Marklein, Nass, L. Taylor and Wanggaard",2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, L. Taylor, Ballweg and Cowles; +cosponsored by Representatives Steineke, Stubbs, Armstrong, Baldeh, Cabral-Guevara, Cabrera, Edming, Goyke, Gundrum, Kitchens, Krug, Kurtz, Loudenbeck, Macco, Milroy, Moses, Mursau, Novak, Petryk, Schraa, Spiros, Steffen, Tranel, Wittke, Zimmerman, Ohnstad, Vruwink and Subeck",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Agard, Carpenter, Johnson, Roys and Smith; +cosponsored by Representatives Conley, Anderson, Andraca, Baldeh, Cabrera, Drake, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, Moore Omokunde, Ohnstad, Ortiz-Velez, Pope, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Vining and Spreitzer",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier and Darling; +cosponsored by Representatives Wittke and Thiesfeldt",2022-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Plumer, Dallman, Callahan, Horlacher, Moses, Mursau, Penterman, Rozar, Snodgrass, Spreitzer, Stubbs, Tusler and Vruwink; +cosponsored by Senators Ballweg, Marklein and Pfaff",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Johnson, Agard, Carpenter, L. Taylor, Larson and Wirch; +cosponsored by Representatives Riemer, Hebl, Brostoff, S. Rodriguez, Doyle, Cabrera, Neubauer, Billings, Spreitzer, Snodgrass, Conley, Ohnstad, Baldeh, Sinicki, Shankland, Anderson, Considine, Hong, Stubbs, Goyke, Vining, Hesselbein, McGuire, Subeck and Hintz",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Smith, Carpenter, Larson, Roys, L. Taylor and Wirch; +cosponsored by Representatives Snodgrass, Considine, Anderson, Andraca, Baldeh, Behnke, Billings, Cabrera, Conley, Neubauer, Ohnstad, Pope, Shelton, Sinicki, Stubbs, Subeck and Vining",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Roth, Stroebel, Wanggaard and Ballweg; +cosponsored by Representatives Wittke, Thiesfeldt, Allen, Brandtjen, Gundrum, Knodl, Macco, Magnafici, Murphy and Neylon",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Ballweg, Jacque and Wanggaard; +cosponsored by Representatives Thiesfeldt, Skowronski, Armstrong, Bowen, Brostoff, Cabrera, Edming, Horlacher, Loudenbeck, Petersen, Petryk, Ramthun, Rozar, Shankland, Subeck, Tauchen, Tusler, Wichgers and Schraa",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Ballweg, Feyen and Nass; +cosponsored by Representatives Zimmerman, Armstrong, Dittrich, Duchow, Gundrum, Horlacher, Knodl, Kuglitsch, Kurtz, Macco, Magnafici, Moses, Murphy, Penterman, Plumer, Pronschinske, Sortwell, Steffen, Subeck, Tauchen, Thiesfeldt, Tittl and Wittke",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Ballweg, Bewley and Darling; +cosponsored by Representatives Born, Edming, Horlacher, James, Kitchens, Krug, Milroy, Mursau, Novak, Oldenburg, Petryk, Plumer, J. Rodriguez, Shankland, Sortwell, Steffen, Tranel, VanderMeer and Subeck",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Bernier; +cosponsored by Representatives Wichgers, Cabral-Guevara, Murphy and Spiros",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Summerfield, Edming, Armstrong, Born, Plumer, Krug, Cabral-Guevara, Snyder, Callahan, Gundrum, Horlacher, Duchow, Wittke, Rozar, Kurtz, Vorpagel, Moses, Tranel, Swearingen, Zimmerman, Mursau, Tusler, Petryk, Oldenburg, Knodl, James and Jagler; +cosponsored by Senators Marklein, Bernier, Felzkowski, Feyen and Stafsholt",2021-04-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Krug and Wichgers; +cosponsored by Senator Jacque",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Brandtjen, Cabral-Guevara, Rozar, Tittl, Gundrum, Sortwell, Tusler, Plumer, Skowronski, James, Allen, Kuglitsch, Moses, Ramthun and Sanfelippo; +cosponsored by Senators Bernier, Jacque and Nass",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Roth, Stroebel, Wanggaard and Ballweg; +cosponsored by Representatives Wittke, Thiesfeldt, Dittrich, Brandtjen, Gundrum, Knodl, Macco, Magnafici and Rozar",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Krug, Petryk, Subeck, Armstrong, Ortiz-Velez, Rozar, Shankland, Skowronski, Thiesfeldt, Mursau and Murphy; +cosponsored by Senators Jacque, Testin and Wanggaard",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Ballweg, Cowles, Felzkowski, Jacque, Marklein, Stafsholt and Stroebel; +cosponsored by Representatives Steineke, Kitchens, Knodl, Kuglitsch, Loudenbeck, Murphy, Mursau, Rozar, Schraa, Tittl and Tusler",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Committee on Rules,2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives J. Rodriguez, Rozar, L. Myers, Armstrong, Brostoff, Dittrich, Duchow, Edming, Goyke, Gundrum, Horlacher, James, Kitchens, Magnafici, Murphy, Mursau, Snyder, Summerfield, Tusler, Wichgers, Skowronski, Zimmerman and Stubbs; +cosponsored by Senators Bernier, Felzkowski, Ringhand and L. Taylor",2021-09-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Mursau, Jagler, Loudenbeck, Moses, Murphy, Petryk, Rozar, Summerfield, Tauchen, Thiesfeldt, Tusler and Wichgers; +cosponsored by Senators Jacque and Ballweg",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Nass and Wanggaard; +cosponsored by Representatives Magnafici, Ramthun, Allen, Behnke, Cabral-Guevara, Gundrum, Horlacher, Kuglitsch, Rozar, Sortwell, Wichgers and Thiesfeldt",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Bernier, Ballweg and Bradley; +cosponsored by Representatives Mursau, Ramthun, Knodl, Krug and Dittrich",2021-09-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Roys, Johnson, Wirch, Ringhand, Larson and Erpenbach; +cosponsored by Representatives Hesselbein, Stubbs, Emerson, Shelton, Hong, Brostoff, Conley, Hebl, Anderson, Snodgrass, Neubauer, Doyle, Subeck, Pope, Shankland, Spreitzer, Billings, Baldeh, Sinicki, Hintz, Cabrera and Vining",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Ballweg; +cosponsored by Representatives Brooks, Armstrong, Brandtjen, Dittrich, Kuglitsch, Murphy, Mursau, Skowronski, Tusler and Wichgers",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Felzkowski and Ballweg; +cosponsored by Representatives Krug, Edming, Callahan, James, Mursau, Rozar, Snyder, Spiros and VanderMeer",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Stroebel; +cosponsored by Representative Knodl",2022-02-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Shelton, Anderson, Andraca, Billings, Brostoff, Conley, Emerson, Hebl, Neubauer, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Larson, Carpenter and Johnson",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Ballweg, Bewley, Carpenter, Cowles, Darling, Felzkowski, Jacque, Kooyenga, Pfaff, Ringhand, Stafsholt, Smith, Testin and Wimberger; +cosponsored by Representatives VanderMeer, Anderson, Andraca, Armstrong, Baldeh, Considine, Dittrich, Doyle, Edming, Gundrum, Hong, James, Kerkman, Krug, Loudenbeck, Magnafici, Milroy, Moses, Mursau, Oldenburg, Ramthun, S. Rodriguez, Rozar, Sinicki, Skowronski, Spiros, Steffen, Stubbs, Summerfield, Tauchen, Tittl, Thiesfeldt, Vruwink and Spreitzer",2021-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hesselbein, Pope, Vining, B. Meyers, S. Rodriguez, Drake, Goyke, Emerson, Vruwink, Hong, Milroy, Sinicki, Rozar, Hintz, Spreitzer, Andraca, Hebl, Shelton, Dittrich, Subeck, Conley, Loudenbeck, Murphy, Stubbs, Ohnstad, Spiros, Cabrera, Kerkman and Tusler; +cosponsored by Senators Carpenter, Roys, Erpenbach, Wirch, Jacque, Bewley, Ringhand, Johnson, Agard, Pfaff and Smith",2021-11-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Ringhand; +cosponsored by Representatives Brooks, Armstrong, Brandtjen, Dittrich, Knodl, Kuglitsch, Murphy, Mursau, Skowronski, Tusler and Wichgers",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Johnson, Bernier, Ballweg and Cowles; +cosponsored by Representatives Snyder, Magnafici, Doyle, Kerkman, Milroy, Spiros, Duchow, Considine, Andraca, Rozar, Vruwink, Ohnstad, Wichgers, Subeck, Dittrich, Loudenbeck, Plumer, Stubbs and Bowen",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Loudenbeck, Vruwink, Armstrong, Billings, Born, Brandtjen, Cabral-Guevara, Dallman, Dittrich, Doyle, Drake, Duchow, Edming, Gundrum, Kuglitsch, Kurtz, Macco, Moses, Murphy, Mursau, L. Myers, Novak, J. Rodriguez, Skowronski, Snyder, Spiros and Tittl; +cosponsored by Senators Wanggaard, L. Taylor, Kooyenga, Bernier, Ballweg, Cowles, Felzkowski and Feyen",2021-07-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snodgrass, Billings, Baldeh, Tusler, Anderson, Andraca, Cabral-Guevara, Emerson, Hebl, Shelton, Sinicki, Spreitzer and Subeck; +cosponsored by Senators Johnson, Roth, Carpenter, Darling, Larson, Ringhand and L. Taylor",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Stroebel, Wimberger, Ballweg, Bradley, Felzkowski, Feyen, Jacque, Marklein, Nass and Wanggaard; +cosponsored by Representatives Sanfelippo, Edming, Gundrum, Knodl, Krug, Murphy, Neylon, Skowronski, Steffen, VanderMeer and Wichgers",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Carpenter, Roys, Ringhand, Smith and Agard; +cosponsored by Representatives Pope, Shelton, Hebl, Neubauer, Milroy, Cabrera, Spreitzer, Subeck, Ohnstad, Considine, Sinicki, Billings, Hong, S. Rodriguez and Stubbs",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Stroebel; +cosponsored by Representative Gundrum",2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Stafsholt, Bradley, Jacque, Jagler, Stroebel and Testin; +cosponsored by Representatives Brooks, Dallman, Callahan, Allen, Brandtjen, Cabral-Guevara, Duchow, Edming, Horlacher, James, Knodl, Macco, Magnafici, Moses, Mursau, Penterman, Skowronski, Sortwell, Summerfield, Swearingen, Thiesfeldt, VanderMeer, Krug and Wichgers",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Brandtjen, Gundrum, Murphy, Mursau, Subeck, Wichgers and Thiesfeldt",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators L. Taylor, Wanggaard, Jacque, Ballweg, Bradley, Larson, Ringhand, Smith and Roys; +cosponsored by Representatives Thiesfeldt, Rozar, Anderson, Bowen, Brostoff, Cabrera, Gundrum, Krug, Moses, Mursau, L. Myers, Ortiz-Velez, Spreitzer, Subeck and Stubbs",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Bradley, Ballweg, Darling, Felzkowski, Kapenga, Marklein, Stroebel and Wanggaard; +cosponsored by Representatives Duchow, Loudenbeck, Allen, Cabral-Guevara, Dallman, Dittrich, Gundrum, Horlacher, James, Kitchens, Krug, Kuglitsch, Kurtz, Magnafici, Penterman, Plumer, Rozar, Spiros, Tittl, Vorpagel, Wichgers, Wittke, Zimmerman, Edming, Schraa and Thiesfeldt",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Cabral-Guevara and Moses; +cosponsored by Senators Testin, Nass and Feyen",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson and Smith; +cosponsored by Representatives Brostoff, Sinicki, Bowen and Hebl",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Agard, Erpenbach, Larson, Ringhand, Roys, Smith and L. Taylor; +cosponsored by Representatives Spreitzer, Neubauer, Snodgrass, Cabrera, Anderson, Andraca, Bowen, Brostoff, Conley, Emerson, Goyke, Hebl, Hesselbein, Hong, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Subeck and Vining",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Andraca, Hong, Baldeh, Conley, Drake, Moore Omokunde, Ortiz-Velez, S. Rodriguez, Shelton, Snodgrass, Anderson, Bowen, Brostoff, Considine, Emerson, Hebl, Hesselbein, Neubauer, Ohnstad, Riemer, Sinicki, Spreitzer, Subeck, Vining, Vruwink and Cabrera; +cosponsored by Senators Johnson, Agard, Bewley, Carpenter, Erpenbach, Larson, Ringhand, Roys, Smith and L. Taylor",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Anderson, Baldeh, Bowen, Brostoff, Cabrera, Drake, Goyke, Hebl, Neubauer, Shankland, Shelton, Sinicki, Snodgrass, Hesselbein, Stubbs, Subeck, Vruwink, Emerson and Spreitzer; +cosponsored by Senators Johnson, Agard, Bewley, Carpenter, Larson, Roys, Wirch and Ringhand",2021-05-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, S. Rodriguez, Andraca, Baldeh, Cabral-Guevara, Cabrera, Conley, Considine, Drake, Emerson, Hebl, Hesselbein, B. Meyers, Milroy, Ohnstad, Shankland, Sinicki, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Ringhand, Roys and Larson",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Macco, Armstrong, Edming, Gundrum, Knodl, Krug, Kuglitsch, Magnafici, Moses, Murphy, Mursau, Penterman, Schraa and Spiros; +cosponsored by Senators Bernier, Cowles, Darling, Stroebel, Felzkowski, Marklein, Wanggaard and Ballweg",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Feyen and Wanggaard; +cosponsored by Representatives Sortwell, Brandtjen, Gundrum, Knodl, Kuglitsch, Mursau, Thiesfeldt and Tittl",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Wittke, Armstrong, Born, Callahan, Duchow, Edming, Gundrum, Jagler, Katsma, Knodl, Krug, Kurtz, Moses, Murphy, Oldenburg, Petryk, Plumer, Rozar, Snyder, Swearingen, Tranel, Tusler, Vorpagel and Zimmerman; +cosponsored by Senators Marklein and Stroebel",2021-04-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Larson, Agard, Carpenter, Roys and L. Taylor; +cosponsored by Representatives Bowen, L. Myers, Hong, Anderson, Baldeh, Billings, Cabrera, Conley, Considine, Emerson, Goyke, Hebl, Moore Omokunde, Neubauer, Shankland, Shelton, Sinicki, Spreitzer and Subeck",2021-08-19T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling and Roth; +cosponsored by Representatives Wittke, Thiesfeldt, Brandtjen, Gundrum, Knodl, Macco, Magnafici, Murphy, Vorpagel and Kuglitsch",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Pfaff, Erpenbach, Agard, Bewley, Carpenter, Johnson, Larson, Ringhand, Roys and Wirch; +cosponsored by Representatives Subeck, B. Meyers, Anderson, Cabrera, Conley, Doyle, Emerson, Hebl, Hesselbein, Hong, Milroy, L. Myers, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vruwink",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ballweg, Bewley and Cowles; +cosponsored by Representatives Mursau, Armstrong, Brooks, Callahan, Moses, Murphy, Ramthun, Rozar, Snyder, Spiros, Subeck, Tauchen and Tittl",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Carpenter, Larson and Pfaff; +cosponsored by Representatives Billings, Andraca, Brostoff, Doyle, Emerson, Hebl, Hesselbein, B. Meyers, Pope, Shankland, Spreitzer and Shelton",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Cowles, Darling, Stroebel, Felzkowski and Marklein; +cosponsored by Representatives Macco, Armstrong, Edming, Gundrum, Knodl, Krug, Kuglitsch, Magnafici, Moses, Murphy, Mursau, Penterman, Schraa and Spiros",2022-02-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Neubauer, Andraca, Baldeh, Billings, Bowen, Brostoff, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, Ohnstad, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining; +cosponsored by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith, L. Taylor and Wirch",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Magnafici, Cabral-Guevara, Callahan, Dittrich, Edming, James, Moses, Mursau, Novak, Tranel, Wichgers and Zimmerman; +cosponsored by Senators Marklein, Stafsholt, Ballweg, Felzkowski, Feyen, Jagler, Stroebel, Testin and Wanggaard",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Penterman, August, Brandtjen, Cabral-Guevara, Dittrich, Duchow, Edming, James, Kitchens, Knodl, Kuglitsch, Kurtz, Macco, Magnafici, Moses, Petersen, Schraa, Snyder, Sortwell, Steffen, Tittl, Tusler, Vorpagel, Wichgers, Zimmerman and Born; +cosponsored by Senators Kapenga, Bernier, Felzkowski, Feyen, Marklein and Stroebel",2022-01-31T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hesselbein, Subeck, Neubauer, Snodgrass, Hebl, Shelton, Anderson, Andraca, Pope, Stubbs, Sinicki, Emerson, Ohnstad and Vining; +cosponsored by Senators Erpenbach, Roys, L. Taylor, Agard, Ringhand and Larson",2021-07-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Moses, Wichgers and Allen; +cosponsored by Senator Jacque",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Summerfield, James, Kuglitsch, Moses and Knodl; +cosponsored by Senators Bernier and Stroebel",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Conley, B. Meyers, Andraca, Baldeh, Bowen, Brostoff, Cabral-Guevara, Cabrera, Considine, Doyle, Drake, Emerson, Goyke, Hebl, Hong, Milroy, Moore Omokunde, Neubauer, Pope, Shankland, Shelton, Snodgrass, Sinicki, Spreitzer, Stubbs, Subeck, S. Rodriguez, Vruwink, Vining, Ohnstad and Tusler; +cosponsored by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Roys, Smith, L. Taylor and Ringhand",2021-12-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Testin, Ballweg, Bernier, Petrowski, Pfaff, Ringhand, Roys, Smith and Wimberger; +cosponsored by Representatives Kitchens, Novak, Tranel, Shankland, Krug, Hong, Milroy, Mursau, Neubauer, Oldenburg, Penterman, Plumer and Tauchen",2021-11-08T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Snyder,2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kitchens, Thiesfeldt, Krug, Armstrong, Cabral-Guevara, Duchow, Edming, James, Knodl, Kurtz, Loudenbeck, Moses, Mursau, Oldenburg, Petryk, Rozar, Snyder, Swearingen, Tranel, Wittke and Zimmerman; +cosponsored by Senators Cowles, Marklein, Felzkowski, Ballweg and Feyen",2021-04-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Brooks, Edming, Moses and Murphy; +cosponsored by Senators Felzkowski, Wimberger, Jagler and Darling",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Wimberger, Carpenter, Pfaff, Marklein, Ringhand, Smith and Testin; +cosponsored by Representatives Murphy, Emerson, Baldeh, Billings, Cabrera, Doyle, Drake, Hintz, Hong, Milroy, Moses, Neubauer, Rozar, Shankland, Snodgrass, Steffen, Subeck, Thiesfeldt, Tittl, Tusler, Anderson and Brostoff",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Goyke, Andraca, Baldeh, Brostoff, Cabrera, Conley, Considine, Drake, Haywood, Hebl, Hintz, B. Meyers, Milroy, Pope, Riemer, Shankland, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink; +cosponsored by Senators Ringhand, Agard, Carpenter, Larson, Roys and L. Taylor",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Bradley, Bewley and L. Taylor; +cosponsored by Representatives Thiesfeldt, Armstrong, Baldeh, Brooks, Horlacher, Krug, Kuglitsch, Magnafici, Moses, Ortiz-Velez, Rozar, Sinicki and Wichgers",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wichgers, Penterman, Allen, Brandtjen, Emerson, Gundrum, Milroy, J. Rodriguez, Skowronski, Subeck, Thiesfeldt, Schraa, Behnke and James; +cosponsored by Senators Jacque, Ringhand and Wanggaard",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, Feyen and Jagler; +cosponsored by Representatives James and Cabral-Guevara",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Riemer, Conley, Considine, Drake, Hebl, Milroy, Novak, Shelton, Spreitzer, Subeck, Vining, Vruwink, Sinicki and Stubbs; +cosponsored by Senators Carpenter, Cowles, Johnson and Ringhand",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Thiesfeldt and Wichgers; +cosponsored by Senators Jacque and L. Taylor",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Stafsholt, Ballweg, Felzkowski, Feyen, Jagler, Stroebel, Testin and Wanggaard; +cosponsored by Representatives Magnafici, Cabral-Guevara, Callahan, Dittrich, Edming, James, Moses, Mursau, Novak, Tranel, Krug, Wichgers and Thiesfeldt",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Thiesfeldt, Armstrong, Baldeh, Brandtjen, Gundrum, Rozar and Steffen",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Wanggaard, Marklein, Felzkowski, Ballweg and Jacque; +cosponsored by Representatives Tauchen, Armstrong, Schraa, Sinicki, Allen, Thiesfeldt, Edming, Mursau, L. Myers and Spiros",2021-07-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives B. Meyers, Goyke, Andraca, Baldeh, Bowen, Cabrera, Conley, Considine, Drake, Emerson, Hebl, Hong, Milroy, Moore Omokunde, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Vining and Vruwink; +cosponsored by Senators Bewley, Erpenbach, Johnson, L. Taylor, Carpenter, Roys, Agard and Larson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Riemer, B. Meyers, Hebl, Snodgrass, McGuire, Neubauer, Conley, Hesselbein, Considine, Vruwink, Pope, Doyle, Cabrera, Subeck, Sinicki, Stubbs, Spreitzer, Anderson, Shankland, Billings, Drake and Shelton; +cosponsored by Senators Ringhand, L. Taylor, Bewley, Johnson, Carpenter, Larson and Wirch",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Novak, Armstrong, Born, Brandtjen, Callahan, Dittrich, Doyle, Edming, Gundrum, James, Katsma, Kitchens, Krug, Kuglitsch, Kurtz, Loudenbeck, Macco, Magnafici, Murphy, Mursau, Oldenburg, Penterman, Petersen, Petryk, Plumer, Schraa, Snyder, Spiros, Steffen, Tittl, Tranel, Cabral-Guevara, Moses and Allen; +cosponsored by Senators Wanggaard, Ballweg, Darling, Jacque, Jagler and Marklein",2022-01-14T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives B. Meyers, Milroy, Shankland, Conley, Vruwink, Considine, Subeck, Shelton and Spreitzer; +cosponsored by Senator Bewley",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vruwink, Thiesfeldt, Haywood, Ramthun, Sortwell, Brooks, Shelton, Tusler, Zimmerman, Horlacher, Mursau, Kitchens, Cabrera, S. Rodriguez, Andraca, Anderson, Conley, Sinicki, Skowronski, Kuglitsch, Wichgers, Hong, Magnafici, Emerson, J. Rodriguez, Snodgrass, Drake, Rozar, Bowen, Shankland and Macco; +cosponsored by Senators Feyen, Smith, Cowles, Bradley, Felzkowski and Stroebel",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives VanderMeer, Magnafici, Armstrong, Brandtjen, Cabral-Guevara, Dittrich, Gundrum, James, Kerkman, Krug, Kuglitsch, Kurtz, Loudenbeck, Murphy, Mursau, Penterman, Petryk, Rozar, Snyder, Sortwell, Steffen, Tauchen and Wichgers; +cosponsored by Senators Wimberger, Ballweg and Marklein",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Brandtjen, Dallman, Edming, James, Knodl, Magnafici, Moses, Mursau, Penterman, Swearingen and Thiesfeldt; +cosponsored by Senators Stroebel, Kapenga, Felzkowski and Feyen",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel and Nass; +cosponsored by Representatives Sortwell and Gundrum",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wichgers, Horlacher, Allen, Brandtjen, Brooks, Edming, Knodl, Kuglitsch, Magnafici, Moses, Murphy, Ramthun, Rozar, Skowronski, Thiesfeldt and Plumer; +cosponsored by Senators Jacque, Felzkowski and Nass",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Senator Testin,2022-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Skowronski, Brooks, Knodl and Schraa; +cosponsored by Senators Jacque, Ballweg and Felzkowski",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Roys, Bernier, Carpenter, Felzkowski, Feyen, Johnson, Larson, Ringhand, L. Taylor, Testin, Wanggaard and Wimberger; +cosponsored by Representatives Steffen, Goyke, Allen, Anderson, Andraca, Baldeh, Born, Bowen, Brooks, Brostoff, Cabrera, Considine, Doyle, Drake, Edming, Emerson, Gundrum, Haywood, Hebl, Kerkman, Krug, Loudenbeck, Macco, B. Meyers, Milroy, Moses, Mursau, L. Myers, Neubauer, Novak, Ohnstad, Ortiz-Velez, Petryk, Pope, Rozar, S. Rodriguez, Schraa, Shankland, Shelton, Skowronski, Snodgrass, Snyder, Sortwell, Spreitzer, Subeck, Thiesfeldt, Tittl, Vining and Zimmerman",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Callahan, Behnke, Born, Dittrich, Gundrum, James, Kuglitsch, Murphy, Penterman and Sanfelippo; +cosponsored by Senators Feyen, Jacque, Marklein, Nass, Stroebel and Cowles",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Nass and Stroebel; +cosponsored by Representatives Dittrich, Skowronski, Edming, Thiesfeldt, Knodl and Murphy",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ballweg, Bewley, Cowles, Jacque, Marklein and Nass; +cosponsored by Representatives Edming, Armstrong, Brooks, Cabral-Guevara, Callahan, Dittrich, J. Rodriguez, James, Knodl, Magnafici, Milroy, Moses, Murphy, Mursau, Neylon, Novak, Oldenburg, Petryk, Plumer, Ramthun, Rozar, Skowronski, Spiros, Thiesfeldt and Wichgers",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Ramthun, Allen, Behnke, Brandtjen, Brooks, Cabral-Guevara, Gundrum, Horlacher, Murphy and Wichgers",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vos, Armstrong, Behnke, Brooks, Cabral-Guevara, Dallman, Dittrich, Duchow, Edming, James, Kuglitsch, Kurtz, Magnafici, Murphy, Neylon, Penterman, Plumer, Schraa, Sortwell, Spiros, Steffen, Thiesfeldt, Wichgers, Wittke, Zimmerman, Knodl and Sanfelippo; +cosponsored by Senators Stroebel, Nass, Ballweg, Cowles, Darling, Felzkowski, Jagler, Marklein and Roth",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Carpenter; +cosponsored by Representatives Pronschinske, Petryk, Armstrong, Brandtjen, Dallman, Dittrich, Gundrum, Krug, Kuglitsch, Milroy, Moses, Murphy, Oldenburg, Plumer, Schraa, Snodgrass, Subeck, Thiesfeldt, Tittl, VanderMeer, Wittke and Ramthun",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kurtz, Brandtjen, Cabral-Guevara, Dittrich, Duchow, Edming, Kerkman, Kuglitsch, Magnafici, Skowronski, Thiesfeldt, Tranel and Zimmerman; +cosponsored by Senators Testin, Ballweg, Darling and Felzkowski",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Finance,2021-06-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Ballweg and Feyen; +cosponsored by Representatives Cabral-Guevara, Sortwell, Schraa, Wichgers, Magnafici, Tranel, Knodl, Edming, Bowen and Sinicki",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Emerson, Moore Omokunde, Baldeh, Bowen, Brostoff, Cabrera, Conley, Considine, Drake, Goyke, Hebl, Ohnstad, Shelton, Sinicki, Spreitzer, Stubbs, Subeck and Vining; +cosponsored by Senators L. Taylor, Roys, Agard, Bewley, Carpenter, Johnson and Larson",2022-02-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Agard, Larson and Roys; +cosponsored by Representatives Spreitzer, Snodgrass, Neubauer, Cabrera, Bowen, Brostoff, Conley, Considine, Emerson, Hebl, Hesselbein, Hintz, Moore Omokunde, S. Rodriguez, Shankland, Shelton, Sinicki, Subeck and Vining",2021-10-18T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Oldenburg, VanderMeer, Doyle, James, Penterman, Rozar and Subeck; +cosponsored by Senators Petrowski, Carpenter, Cowles and Darling",2022-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, L. Taylor, Felzkowski, Jagler, Kooyenga, Marklein and Nass; +cosponsored by Representatives Zimmerman, Dittrich, Edming, James, Kurtz, Plumer, J. Rodriguez, Spiros, Steffen, Tusler, Schraa, VanderMeer and Murphy",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Ballweg, Feyen and Bernier; +cosponsored by Representatives Petryk, Penterman, Armstrong, Born, Dittrich, Edming, Knodl, Kuglitsch, Loudenbeck, Moses, Mursau, Petersen, Thiesfeldt, Wichgers, Wittke and Duchow",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Katsma, Vorpagel, Kuglitsch and Murphy; +cosponsored by Senators Stroebel, Ballweg, Jacque and Felzkowski",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Oldenburg, Zimmerman, Petryk, Armstrong, Dittrich, Drake, Gundrum, James, Moses, Mursau, Novak, Schraa, Skowronski, Swearingen, Tranel, VanderMeer, Vorpagel, Wittke, Vruwink and Kuglitsch; +cosponsored by Senators Stafsholt, Feyen and Ballweg",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ringhand, Roys and Larson; +cosponsored by Representatives Subeck, S. Rodriguez, Andraca, Baldeh, Cabral-Guevara, Conley, Considine, Drake, Emerson, Hebl, Hesselbein, B. Meyers, Milroy, Ohnstad, Shankland, Sinicki, Spreitzer, Stubbs and Vruwink",2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Novak, Mursau, Gundrum, Subeck, Snyder, Thiesfeldt and Tusler; +cosponsored by Senators Ballweg and Marklein",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Ramthun and Wichgers; +cosponsored by Senator Jacque",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Oldenburg, Brandtjen, Callahan, Dittrich, Edming, James, Kuglitsch, Magnafici, Moses, Penterman, Petersen, Petryk, Plumer, Thiesfeldt, Tranel and Wichgers; +cosponsored by Senators Stafsholt, Darling and Ballweg",2022-01-31T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Tittl, Allen, Murphy, James and Magnafici",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Moses, Wichgers and Murphy",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee for Review of Administrative Rules,2021-01-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Rozar, Brostoff, Billings, Cabral-Guevara, Dittrich, Duchow, Goyke, Kitchens, Kuglitsch, Skowronski, Tittl and Wichgers; +cosponsored by Senators Testin, Darling, Erpenbach, Johnson, Larson, Pfaff and Wirch",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Considine, Shelton, Spreitzer, Hebl, Emerson, Vruwink, B. Meyers, Milroy, Anderson, Sinicki, Hintz, Cabrera and Subeck; +cosponsored by Senators Erpenbach, Bewley, Larson, Roys, Ringhand, Agard, Smith, Pfaff and Carpenter",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Smith and Jacque; +cosponsored by Representatives Petryk, Dallman, Spreitzer, Armstrong, Bowen, Edming, Gundrum, Mursau, Rozar, Snodgrass, Tittl, VanderMeer, Murphy and James",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Nass, Ballweg, Feyen and Ringhand; +cosponsored by Representatives Kurtz, Novak, Tranel, Oldenburg, VanderMeer, Dittrich, Mursau, Tusler and Spiros",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Ballweg, Darling and Felzkowski; +cosponsored by Representatives Cabral-Guevara, Dittrich, Duchow, Edming, Kerkman, Kuglitsch, Magnafici, Thiesfeldt, Tranel, Skowronski, Zimmerman and Brandtjen",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Petersen, Edming, Horlacher, Sinicki and Cabrera; +cosponsored by Senators Ballweg and Roys",2021-09-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Moore Omokunde, Emerson, Sinicki, Anderson, Andraca, Baldeh, Brostoff, Cabrera, Conley, Considine, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Snodgrass, Stubbs, Subeck, Vining and Vruwink; +cosponsored by Senators Smith, Erpenbach, Roys, L. Taylor and Larson",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives S. Rodriguez, Hong, Sinicki, B. Meyers, Hebl, Subeck and Considine",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Considine, Shelton, Spreitzer, Hebl, Emerson, Vruwink, B. Meyers, Milroy, Anderson, Sinicki, Hintz, Cabrera and Subeck; +cosponsored by Senators Erpenbach, Bewley, Larson, Roys, Ringhand, Agard, Smith, Pfaff and Carpenter",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Knodl, Loudenbeck, Murphy, Skowronski, VanderMeer and Wichgers; +cosponsored by Senators Stroebel, Darling and Felzkowski",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives L. Myers, Vruwink, Baldeh, Cabrera, Sinicki, Hesselbein, Subeck, Snodgrass and Drake; +cosponsored by Senator L. Taylor",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Senator Smith,2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Brandtjen, Dittrich, Moses, Murphy, Mursau, Skowronski, Tusler, Wichgers and Spiros; +cosponsored by Senators Bernier, Ballweg, Wimberger and Nass",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Bernier, Cowles and Felzkowski; +cosponsored by Representatives Zimmerman, Armstrong, Brandtjen, Dittrich, Edming, Gundrum, James, Kurtz, Murphy, Plumer, Tauchen and Snodgrass",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Roth; +cosponsored by Representatives Murphy, August, Behnke and Gundrum",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives S. Rodriguez, Emerson, Moore Omokunde, Baldeh, Bowen, Brostoff, Cabrera, Conley, Considine, Drake, Goyke, Hebl, Ohnstad, Pope, Shelton, Sinicki, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Smith, L. Taylor, Roys, Agard, Larson and Johnson",2022-02-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Roys and Smith; +cosponsored by Representatives Brostoff, Bowen, Shelton, Sinicki, Baldeh, Cabrera, Conley, Considine, Emerson, Goyke, Hebl, Hong and Snodgrass",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Carpenter, Cowles, Darling, Feyen, Jacque, Marklein, Nass, Ringhand, Smith, Stroebel, Wanggaard and Ballweg; +cosponsored by Representatives Gundrum, Skowronski, Allen, Armstrong, Behnke, Conley, Dittrich, Doyle, Drake, Hesselbein, Horlacher, Knodl, Magnafici, Milroy, Murphy, Novak, Petryk, Plumer, Ramthun, Sinicki, Spiros, Spreitzer, Steffen, Thiesfeldt, Tranel, VanderMeer, Vruwink and Subeck",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Agard and Roys; +cosponsored by Representatives Billings, Pope, Vining, Baldeh, Bowen, Cabrera, Conley, Considine, Hebl, Milroy, Shelton, Sinicki, Stubbs, Subeck and Vruwink",2022-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Emerson, Moore Omokunde, Baldeh, Bowen, Brostoff, Cabrera, Conley, Considine, Drake, Goyke, Hebl, Shelton, Sinicki, Spreitzer, Stubbs and Subeck; +cosponsored by Senators L. Taylor, Roys, Agard, Carpenter and Johnson",2022-02-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Gundrum; +cosponsored by Senator Stroebel",2022-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Allen, Dittrich, Brandtjen, Brooks, Cabral-Guevara, Edming, Moses, Rozar and Wichgers; +cosponsored by Senators Wimberger, Marklein, Nass and Ballweg",2022-02-22T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Baldeh, Bowen, Drake, L. Myers, Ohnstad, Sinicki, Spreitzer, Subeck, Mursau and Stubbs; +cosponsored by Senators L. Taylor, Agard, Bewley, Carpenter and Stroebel",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Moses, Novak, Tranel, Pronschinske, Brandtjen, Kerkman, Skowronski, Armstrong, Cabrera, Dittrich, Gundrum, Kurtz, Murphy, Oldenburg, Petryk, Rozar, Sortwell, Tauchen, Thiesfeldt, Tittl, Tusler, Vruwink and Born; +cosponsored by Senators Marklein, Bernier, Cowles, Feyen, Pfaff, Testin and Wimberger",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Legislative Council,2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Agard, Carpenter, Roys and Johnson; +cosponsored by Representatives Subeck, Stubbs, Brostoff, Anderson, Sinicki, Hebl, Shankland, Ohnstad, Baldeh, Hesselbein, Neubauer, Snodgrass, Cabrera, Spreitzer, Milroy, Considine, Pope, Conley, Shelton and Andraca",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kurtz, Edming, Considine, Milroy, Moses, Mursau, Oldenburg and Rozar; +cosponsored by Senators Marklein and Ballweg",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Knodl, Armstrong, Allen, Behnke, Brandtjen, Brooks, Cabral-Guevara, Dittrich, Edming, Gundrum, Horlacher, Kitchens, Krug, Kuglitsch, Macco, Magnafici, Moses, Neylon, Novak, Oldenburg, Penterman, Pronschinske, Ramthun, Rozar, Schraa, Skowronski, Sortwell, Tranel, VanderMeer, Wichgers, Plumer and Zimmerman; +cosponsored by Senator Jacque",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Ballweg, Carpenter, Cowles, Erpenbach, Marklein, Ringhand and L. Taylor; +cosponsored by Representatives Loudenbeck, Rozar, Magnafici, Armstrong, Bowen, Brooks, Dittrich, Kuglitsch, Kurtz, Mursau, Plumer, J. Rodriguez, Spreitzer, Stubbs, Subeck and Considine",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Zimmerman, Dittrich, Gundrum, Kuglitsch, VanderMeer, Moses, Ramthun, Skowronski, Tranel, Rozar and Knodl; +cosponsored by Senators Kooyenga, Marklein, Ballweg, Felzkowski, Darling and Nass",2021-01-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Rozar, Armstrong, Born, Brandtjen, Callahan, Dallman, Dittrich, Edming, Gundrum, James, Kitchens, Krug, Kuglitsch, Kurtz, Loudenbeck, Magnafici, Murphy, Mursau, Novak, Penterman, Petersen, Petryk, Plumer, J. Rodriguez, Snyder, Sortwell, Spiros, Thiesfeldt, Tittl and Cabral-Guevara",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, L. Taylor, Ballweg and Pfaff; +cosponsored by Representatives Steineke, Stubbs, Armstrong, Baldeh, Cabral-Guevara, Cabrera, Dittrich, Edming, Goyke, Gundrum, Kitchens, Krug, Kurtz, Loudenbeck, Macco, Milroy, Mursau, Novak, Petryk, Schraa, Spiros, Steffen, Tauchen, Tittl, Tranel, Wittke, Zimmerman, Ohnstad, Vruwink, Subeck and Born",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Bernier; +cosponsored by Representative Magnafici",2021-03-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Brostoff, Considine, Sinicki, Hesselbein, Anderson, Shankland, Goyke, B. Meyers, Cabrera, Snodgrass, L. Myers, Vining, Drake, Emerson, Shelton, Hebl, Conley, Subeck, S. Rodriguez, Ohnstad, Stubbs, Milroy, Vruwink and Hong; +cosponsored by Senators Johnson, Larson, Smith, Ringhand, L. Taylor, Agard, Carpenter, Roys, Erpenbach and Bewley",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Sortwell, Kuglitsch, Brandtjen, Wichgers, James, Gundrum, Duchow, Skowronski, Dittrich and Knodl; +cosponsored by Senators Darling, Wanggaard, Feyen, Marklein and Stroebel",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Carpenter, Roys, Agard and Johnson; +cosponsored by Representatives Anderson, Brostoff, Sinicki, Subeck, Hebl, Shankland, Ohnstad, Baldeh, Neubauer, Snodgrass, Cabrera, Milroy, Considine, Pope, Spreitzer, Conley, Shelton and Andraca",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives J. Rodriguez, Brooks, Armstrong, Billings, Brandtjen, Dittrich, Doyle, Duchow, Edming, James, Kitchens, Magnafici, Moses, Murphy, Mursau, Oldenburg, Rozar, Spiros, Steffen, Tusler and Skowronski; +cosponsored by Senators Ballweg, Darling, Jacque, Stroebel, Wanggaard and Johnson",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Emerson, Shelton, Shankland, Conley, Andraca, Hesselbein, Hebl, Spreitzer, Considine, B. Meyers, Vruwink, Anderson, Sinicki and Stubbs; +cosponsored by Senators Larson, Smith, Roys, Carpenter, Agard and Bewley",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hesselbein, Cabral-Guevara, Milroy, Snodgrass, S. Rodriguez, Hebl, Pope, Emerson, Neubauer, Shelton, Hong, Anderson, Andraca, Vruwink, Bowen, Stubbs, Skowronski, Tusler, Sinicki, Spreitzer, Cabrera, Subeck, Drake, Ohnstad, Conley, Shankland and Billings; +cosponsored by Senators Agard, Kooyenga, L. Taylor, Larson, Smith, Wirch, Erpenbach, Carpenter, Johnson and Bewley",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Behnke, Murphy and Tusler",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pronschinske, Summerfield, Armstrong, Kitchens, Moses, Penterman, Petryk and Tranel; +cosponsored by Senator Feyen",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Plumer,2021-09-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steineke, Kitchens, Knodl, Kuglitsch, Loudenbeck, Murphy, Mursau, Rozar, Schraa, Tittl, Tusler and Skowronski; +cosponsored by Senators Feyen, Ballweg, Cowles, Felzkowski, Jacque, Marklein, Stafsholt and Stroebel",2021-08-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative August; +cosponsored by Senator Petrowski",2021-05-13T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Wichgers and Katsma; +cosponsored by Senator Jacque",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman, Rozar and Tusler; +cosponsored by Senators Feyen and Ballweg",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Johnson, Bernier, Carpenter, Cowles, Erpenbach, Jacque, Larson, Pfaff, Ringhand, Roys, Smith, L. Taylor and Ballweg; +cosponsored by Representatives Billings, Kitchens, Armstrong, Baldeh, Bowen, Cabrera, Considine, Conley, Emerson, Haywood, Hebl, Hesselbein, Krug, B. Meyers, Moses, Mursau, Neubauer, Novak, Ortiz-Velez, Rozar, S. Rodriguez, Shankland, Shelton, Sinicki, Skowronski, Spiros, Spreitzer, Steffen, Subeck, Tusler, Vining and Wichgers",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Drake, Baldeh, Moore Omokunde, Emerson, Vining, Snodgrass, Hesselbein, Conley, Hebl, Shelton, Considine, Hong, Spreitzer, Subeck and Sinicki; +cosponsored by Senators Johnson, Agard, Bewley, Roys, Larson and Carpenter",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Conley, Brostoff, Cabrera, Drake, Emerson, Haywood, Hebl, Hesselbein, Hong, Pope, Shankland, Sinicki, Snodgrass, Spreitzer, Vining and Stubbs; +cosponsored by Senators Johnson, Bewley, Ringhand, Roys and Larson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Magnafici, Wittke, Allen, Brandtjen, Cabral-Guevara, Callahan, Dallman, Dittrich, Duchow, Edming, Gundrum, Kitchens, Kuglitsch, Loudenbeck, Moses, Mursau, Petryk, Ramthun, Rozar, Snyder, Steffen, Tauchen, Thiesfeldt, Tusler, VanderMeer, Wichgers and Zimmerman; +cosponsored by Senators Felzkowski, Darling, Bernier, Bradley, Feyen, Jagler, Stroebel and Wimberger",2021-06-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators LeMahieu, Darling and Stroebel; +cosponsored by Representatives Vos, Armstrong, Behnke, Cabral-Guevara, Dallman, Dittrich, Gundrum, Katsma, Knodl, Krug, Kuglitsch, Magnafici, Murphy, Mursau, Penterman, Plumer, Rozar, Sanfelippo, Steffen, Tusler and Wittke",2022-02-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Stroebel and Ballweg; +cosponsored by Representatives Murphy, Allen, Horlacher, Moses and Ramthun",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier and Ballweg; +cosponsored by Representative Armstrong",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Emerson, Shelton, Pope, Sinicki, Snodgrass, Baldeh, Billings, Cabral-Guevara, Doyle, Riemer, Spreitzer and Stubbs; +cosponsored by Senators Carpenter, Erpenbach and Smith",2022-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, L. Taylor, Bernier and Feyen; +cosponsored by Representatives Wichgers, Armstrong, Billings, Bowen, Brandtjen, Cabral-Guevara, Edming, Gundrum, Horlacher, Milroy, Mursau, Rozar and Pronschinske",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jagler, Wanggaard, Marklein, Nass, Darling and Bradley; +cosponsored by Representatives James, Penterman, Steffen, Armstrong, Spiros, Dittrich, Loudenbeck, Mursau, Duchow and Wichgers",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Horlacher, Mursau, Rozar, Cabrera and Sinicki; +cosponsored by Senators Cowles, Felzkowski, Wanggaard, L. Taylor and Jacque",2021-09-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Zimmerman, Armstrong, Dittrich, Duchow, James and Plumer; +cosponsored by Senators Testin, Ballweg and Bewley",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Andraca, Spreitzer, Vruwink, Hebl, Emerson, Shelton, Conley, Sinicki, Considine, Hesselbein, Milroy, Bowen, Cabrera, Shankland and Hong; +cosponsored by Senators Erpenbach, Carpenter, Johnson, Agard and Smith",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Baldeh, Cabrera, Hesselbein, Ohnstad, Pope, S. Rodriguez, Sinicki, Spreitzer and Vruwink; +cosponsored by Senator Agard",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jagler, Marklein, Roth and Ballweg; +cosponsored by Representatives Penterman, Dittrich, James, Schraa and Allen",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Stafsholt, Ballweg, Jacque, Darling, Feyen, Ringhand, Pfaff, Cowles, Wanggaard, Carpenter, Roth, Testin, Larson, Nass, Marklein, Johnson and Jagler; +cosponsored by Representatives Skowronski, Sinicki, Tittl, Allen, Doyle, Vruwink, Milroy, Cabral-Guevara, S. Rodriguez, Brooks, Gundrum, Magnafici, J. Rodriguez, Plumer, Macco, Kurtz, Penterman, Shankland, James, Subeck, Neubauer, Snodgrass, Rozar, Spiros, Andraca, Behnke, Conley, Hesselbein, Kuglitsch, Wittke, Considine, Kerkman, Brandtjen, Spreitzer, Horlacher, Dittrich, Callahan, Stubbs, Murphy, Schraa, Knodl, Riemer, Thiesfeldt, Ramthun, Edming, Pronschinske, Mursau, Petryk, B. Meyers, Tusler, Drake, Shelton, Kitchens, Hong, Katsma, Pope, Hintz, Oldenburg, Tranel, Moses, VanderMeer and Novak",2021-11-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Ballweg, Bernier, Marklein, Nass, Stroebel and L. Taylor; +cosponsored by Representatives Murphy, Armstrong, Cabral-Guevara, Dittrich, Drake, Gundrum, Horlacher, Kuglitsch, Kurtz, Magnafici, Moses, Ramthun, S. Rodriguez, Rozar, Thiesfeldt, Tittl, VanderMeer and Zimmerman",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles and Ballweg; +cosponsored by Representatives VanderMeer, Armstrong, Milroy, Oldenburg and Spiros",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Andraca, Baldeh, Billings, Bowen, Cabrera, Considine, Hebl, Hesselbein, Hong, Milroy, Pope, Shankland, Shelton, Sinicki, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Smith, Agard, Carpenter and Roys",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, Shelton, Sinicki, Spreitzer, Drake, Hebl, Neubauer, Snodgrass, Billings, Goyke, Considine, Anderson, Conley, Hesselbein, Bowen, Emerson, Vining, Ortiz-Velez, Andraca, Baldeh and Subeck; +cosponsored by Senators Roys, Jacque, Johnson, Agard and Larson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kurtz, Dittrich, Penterman, James, Knodl, Edming, Skowronski, Moses, Armstrong, Brandtjen, Murphy and Allen; +cosponsored by Senators Kooyenga and Marklein",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman, Vorpagel, Wittke, Allen, Armstrong, August, Brandtjen, Cabral-Guevara, Callahan, Dittrich, Duchow, Edming, James, Katsma, Kitchens, Knodl, Krug, Kuglitsch, Magnafici, Moses, Penterman, Petersen, Plumer, Schraa, Snyder, Sortwell, Steffen, Tusler, Zimmerman and Born; +cosponsored by Senators Feyen, Bernier, Felzkowski, Marklein and Stroebel",2022-01-31T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Thiesfeldt, Brandtjen, Gundrum, Knodl, Kuglitsch, Macco, Magnafici, Murphy and Vorpagel; +cosponsored by Senators Darling and Roth",2022-02-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Plumer, Hesselbein, Skowronski and Spreitzer; +cosponsored by Senators Testin and Erpenbach",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Erpenbach, Bewley, Johnson, Carpenter, Roys and Ringhand; +cosponsored by Representatives Hesselbein, Considine, Cabrera, Milroy, Hebl, Sinicki, S. Rodriguez, Andraca, Emerson, Subeck, Shankland, Ohnstad, Cabral-Guevara and Stubbs",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Behnke, Armstrong, Dittrich, Gundrum and Magnafici; +cosponsored by Senators Testin, Nass and Ballweg",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wirch, Agard, Carpenter, Larson, Ringhand, Smith and L. Taylor; +cosponsored by Representatives Subeck, Andraca, Hebl, Hesselbein, Pope, Sinicki, Spreitzer and Vruwink",2021-08-11T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Johnson, Agard, Erpenbach, L. Taylor, Smith, Larson and Carpenter; +cosponsored by Representatives Neubauer, Ohnstad, Sinicki, Anderson, Andraca, Baldeh, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Pope, S. Rodriguez, Shankland, Shelton, Snodgrass, Spreitzer, Stubbs, Subeck and Vining",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger and L. Taylor; +cosponsored by Representatives Tusler, Brooks, Cabral-Guevara, Dittrich, Goyke, Hebl, Knodl, Macco, Rozar and Skowronski",2021-09-15T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tusler, Snyder, Dittrich and Spiros; +cosponsored by Senator Wimberger",2021-11-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Roys and Smith; +cosponsored by Representatives James, Born, Callahan, Dittrich, Kitchens, Kuglitsch, Subeck and Tittl",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Penterman, Dittrich, James and Schraa; +cosponsored by Senators Jagler, Marklein, Ballweg and Roth",2022-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Carpenter, Bewley, Roys, Ringhand, Larson and Erpenbach; +cosponsored by Representatives Subeck, S. Rodriguez, Milroy, Brostoff, Hebl, Shelton, Pope, Conley, Baldeh, Hesselbein, Doyle, Goyke, Neubauer, Vruwink, B. Meyers, Vining, Billings, McGuire, Anderson, Shankland, Snodgrass, Considine, Spreitzer, Riemer, Cabrera, Stubbs, Hintz, Drake, Sinicki, Hong, Ortiz-Velez, Emerson, L. Myers, Andraca and Haywood",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Drake, Bowen, Haywood, Stubbs, L. Myers, Baldeh, Moore Omokunde, Anderson, Andraca, Brostoff, Cabrera, Conley, Considine, Emerson, Goyke, Hebl, Hesselbein, Hong, Milroy, B. Meyers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink; +cosponsored by Senators L. Taylor, Johnson, Bewley, Carpenter, Larson, Ringhand, Roys and Wirch",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Agard, Bewley, Johnson, Larson, Ringhand and Smith; +cosponsored by Representatives Vining, Andraca, Conley, Considine, Drake, Emerson, Goyke, Hebl, Hesselbein, Hong, Milroy, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tauchen, Kitchens and Mursau; +cosponsored by Senator Cowles",2022-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Rozar, Magnafici, Brooks, Skowronski and Edming; +cosponsored by Senators Stroebel, Bernier, Felzkowski, Jacque, Nass and Marklein",2021-02-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Neubauer, Cabrera, Novak, Snodgrass, Spreitzer, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Conley, Considine, Emerson, Goyke, Hebl, Hesselbein, Hong, McGuire, Ohnstad, Pope, Riemer, S. Rodriguez, Shankland, Sinicki, Shelton, Stubbs, Subeck and Vining; +cosponsored by Senators Carpenter, Agard, Johnson, Larson, Roys and Smith",2021-07-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Jacque, Ringhand and Wanggaard; +cosponsored by Representatives Thiesfeldt, Dallman, Brandtjen, Edming, Moses, Rozar and Schraa",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Doyle, Billings, Brostoff, Andraca, Conley, Hebl, Cabrera, Emerson, B. Meyers, Sinicki, Spreitzer, Milroy, Considine, Ohnstad, Shelton, Subeck, Stubbs, Vruwink and Shankland; +cosponsored by Senators Pfaff, Larson and Carpenter",2022-03-03T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kurtz, Brooks, Duchow, Edming, James, Kuglitsch, Macco, Moses, Murphy, Novak, Oldenburg, Penterman, Rozar, Shankland, VanderMeer, Vruwink and Wichgers; +cosponsored by Senators Ballweg, Marklein, Pfaff and Testin",2022-01-20T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives S. Rodriguez, Subeck, Brostoff, Hebl, Hesselbein, Hong, Pope, Shelton and Spreitzer; +cosponsored by Senators Agard, Roys and Erpenbach",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Bernier, Darling, Felzkowski and Larson; +cosponsored by Representatives Tittl, Cabral-Guevara, Cabrera, Milroy, Murphy, Mursau, Petryk, Rozar, Tauchen, Tusler, VanderMeer and Skowronski",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wirch, Agard, Bewley, Carpenter, Erpenbach, Johnson, Larson, Ringhand and Roys; +cosponsored by Representatives Sinicki, Andraca, Baldeh, Bowen, Cabrera, Conley, Drake, Doyle, Emerson, Haywood, Hebl, Hong, Milroy, Neubauer, Ohnstad, Pope, Shankland, Shelton, Snodgrass, Stubbs, Subeck, Vruwink and Spreitzer",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ballweg, Marklein and Nass; +cosponsored by Representatives Loudenbeck, Knodl, Sortwell, Callahan, Mursau, Armstrong, Bowen, Brooks, Dittrich, Duchow, Edming, Krug, Kuglitsch, Magnafici, Murphy, Rozar, Schraa, Steffen and Wichgers",2021-04-28T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Smith; +cosponsored by Representative Vruwink",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Carpenter, Bewley, Larson, Pfaff, Ringhand, Roys, Smith and L. Taylor; +cosponsored by Representatives Shankland, VanderMeer, Baldeh, Billings, Cabrera, Conley, Doyle, Emerson, Hebl, Hesselbein, B. Meyers, Milroy, Neubauer, Ohnstad, Oldenburg, Pope, Rozar, Shelton, Spreitzer, Stubbs, Subeck and Moore Omokunde",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator L. Taylor; +cosponsored by Representatives Brostoff, Bowen, Anderson, Hesselbein, Hong, Moore Omokunde, Shelton and Sinicki",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Cowles and Carpenter; +cosponsored by Representatives Knodl, Andraca, Drake, Magnafici, Sinicki, Spreitzer, Subeck, Tranel and Skowronski",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Erpenbach, Cowles, Marklein, Ringhand, Smith and Wanggaard; +cosponsored by Representatives Spiros, Armstrong, Considine, Duchow, Edming, Gundrum, Pope, Wichgers and Wittke",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Darling and Felzkowski; +cosponsored by Representatives Brooks, VanderMeer, Loudenbeck, Murphy, Knodl and Skowronski",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Sortwell and Steffen,2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee for Review of Administrative Rules,2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators LeMahieu, Feyen and Kapenga; +cosponsored by Representatives Vos and Steineke",2021-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Petersen, Ramthun, Brooks, Steffen, Dittrich, Tusler, Doyle, Spiros, Murphy, Petryk, Knodl, Rozar, Vorpagel, Armstrong, Kuglitsch, Tranel, Snyder and Moses; +cosponsored by Senators Testin, Ringhand, Feyen and Marklein",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Erpenbach, Johnson, Carpenter, Agard, Bewley, Larson, Pfaff, Ringhand, Roys and Wirch; +cosponsored by Representatives Subeck, S. Rodriguez, Anderson, Cabral-Guevara, Cabrera, Conley, Considine, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, L. Myers, Neubauer, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vruwink",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator LeMahieu; +cosponsored by Representative Vos",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spreitzer, Andraca, Cabrera, Conley, Considine, Hebl, Hong, Ohnstad, Ortiz-Velez, Shelton, Stubbs and Vruwink; +cosponsored by Senators Carpenter, Agard and Bewley",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Summerfield, Armstrong, Edming, Kuglitsch, Loudenbeck, Moses, Murphy, Ortiz-Velez, Petryk, Skowronski, Spiros, Tittl, Tusler and VanderMeer; +cosponsored by Senators Bernier, Ballweg and Feyen",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, LeMahieu, Wanggaard, Bradley, Darling, Felzkowski, Feyen, Jacque, Jagler, Kapenga, Nass, Petrowski, Stafsholt, Stroebel and Testin",2021-11-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Brostoff, Considine, Moore Omokunde, Anderson, Andraca, Baldeh, Billings, Bowen, Cabrera, Conley, Doyle, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Agard, Erpenbach, Johnson, Larson, Roys and Smith",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Sinicki and Shelton; +cosponsored by Senator Jacque",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Agard, Carpenter and Roys; +cosponsored by Representatives Baldeh, Goyke, Hong, Stubbs, Conley, Andraca, Snodgrass, Shelton, Anderson, Brostoff, Cabral-Guevara, Considine, Drake, Emerson, Haywood, Hebl, Moore Omokunde, L. Myers, Ohnstad, Ortiz-Velez, Pope, Sinicki, Spreitzer, Subeck, Vining and Vruwink",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Wimberger; +cosponsored by Representatives Tusler, Snyder and J. Rodriguez",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Dittrich, Armstrong, Baldeh, Bowen, Brandtjen, Horlacher, Knodl, Moses, Rozar, Thiesfeldt and Wichgers; +cosponsored by Senators Jacque, L. Taylor and Ballweg",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, J. Rodriguez, Neylon, Macco, Kuglitsch and Cabrera; +cosponsored by Senators Kooyenga and Darling",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Loudenbeck, Duchow, August, Armstrong, Dittrich, Moses, Plumer, Skowronski and Tusler; +cosponsored by Senators Wanggaard, Nass and Cowles",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Erpenbach, Johnson, Larson, Roys and Smith; +cosponsored by Representatives Vining, Brostoff, Considine, Moore Omokunde, Anderson, Andraca, Baldeh, Billings, Bowen, Cabrera, Conley, Doyle, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Horlacher, Vruwink, Allen and Vos; +cosponsored by Senator Stroebel",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, L. Taylor, Smith, Carpenter, Johnson, Roys, Larson, Erpenbach, Bewley, Wirch and Ringhand; +cosponsored by Representatives Hong, Shelton, Subeck, B. Meyers, Ohnstad, Moore Omokunde, Billings, Anderson, Snodgrass, Drake, Goyke, Andraca, Cabrera, Considine, Baldeh, Spreitzer, Hintz, S. Rodriguez, Brostoff, Vruwink, Sinicki, Neubauer, Pope, Stubbs, Bowen, Emerson, Conley, McGuire, Shankland, Riemer, Hebl, Hesselbein and Vining",2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Agard, Bewley, Carpenter, Darling, Erpenbach, Johnson, Larson and Pfaff; +cosponsored by Representatives Stubbs, Hong, Anderson, Andraca, Baldeh, Billings, Bowen, Conley, Considine, Drake, Goyke, Haywood, Hebl, Hesselbein, Hintz, Neubauer, Ohnstad, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Subeck, Vruwink, Ortiz-Velez, Wittke, Kurtz and Novak",2022-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Feyen and Ballweg; +cosponsored by Representatives Oldenburg, Zimmerman, Petryk, Armstrong, Dittrich, Drake, Gundrum, James, Moses, Mursau, Novak, Schraa, Skowronski, Swearingen, Tranel, VanderMeer, Vorpagel, Wittke, Kuglitsch and Vruwink",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Schraa, Thiesfeldt, Brandtjen, Dittrich, Duchow, Edming, Gundrum, Horlacher, James, Krug, Kuglitsch, Magnafici, Murphy, Pronschinske, Rozar, Steffen and Tittl; +cosponsored by Senators Bernier, Ballweg, Jacque and Felzkowski",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Plumer, Armstrong, Baldeh, Brooks, Callahan, Dittrich, Duchow, Gundrum, Krug, Magnafici, Moses, Mursau, L. Myers, Neylon, Ramthun, J. Rodriguez, Rozar, Schraa, Skowronski, Snyder, Spiros, Tauchen and Zimmerman; +cosponsored by Senators Felzkowski, Bernier, Darling, Kooyenga, Pfaff, Ringhand, Stafsholt, Stroebel and L. Taylor",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Spiros, Edming, L. Myers, Mursau, Callahan and Tauchen; +cosponsored by Senators Petrowski, Felzkowski, Bewley and Bernier",2021-06-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Shelton, Anderson, Andraca, Billings, Cabrera, Conley, Emerson, Goyke, Hebl, Hesselbein, Hong, B. Meyers, Milroy, Moore Omokunde, S. Rodriguez, Shankland, Sinicki, Snodgrass, Spreitzer, Stubbs and Drake; +cosponsored by Senators Smith, Johnson, Agard, Larson, Ringhand, Roys and L. Taylor",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Petersen, Dittrich, Drake, Hintz, Krug, Macco, Murphy, Mursau, Sinicki, Thiesfeldt, Vos and Vruwink; +cosponsored by Senators Ballweg, Marklein, Carpenter and Testin",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Drake, Goyke, Vruwink, Hebl, Andraca, Hong, Shelton, Conley, Milroy, Considine, Stubbs, Subeck, Vining, Spreitzer, Hesselbein, Billings, Sinicki and Cabrera; +cosponsored by Senators Roys, Larson, Agard and Johnson",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Bernier, Jacque, Marklein, Nass, Roth and Wanggaard; +cosponsored by Representatives Pronschinske, August, Armstrong, Brandtjen, Cabral-Guevara, Callahan, Dallman, Edming, Gundrum, Horlacher, James, Kuglitsch, Magnafici, Moses, Murphy, Neylon, Novak, Rozar, Schraa, Skowronski, Sortwell, Steffen, Summerfield, Swearingen, Thiesfeldt, Tittl, VanderMeer, Vorpagel and Wichgers",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Cabral-Guevara, Drake and Murphy; +cosponsored by Senators Kooyenga and Darling",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Wirch and L. Taylor; +cosponsored by Representatives Armstrong, Ohnstad, Brooks, Anderson, Baldeh, Cabrera, Conley, Doyle, Hebl, Kerkman, Knodl, McGuire, B. Meyers, Moses, Neubauer, S. Rodriguez, Rozar, Shankland, Sinicki, Skowronski, Spreitzer, Stubbs, Subeck, VanderMeer, Vruwink and Drake",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Employment Relations,2022-01-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Macco, Goyke, Andraca, Armstrong, Cabral-Guevara, Considine, Drake, Haywood, Hebl, Hintz, Horlacher, Kitchens, McGuire, Moore Omokunde, Ohnstad, Pope, Sinicki, Snodgrass, Spreitzer, Steffen, Stubbs, Thiesfeldt, Vruwink and Shankland; +cosponsored by Senators Ringhand, Agard, Johnson, Larson, Pfaff, Roys and Smith",2022-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Darling, Jagler and Wimberger; +cosponsored by Representatives Dittrich, Brooks, Edming and Moses",2022-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Murphy; +cosponsored by Senator Jacque",2021-04-06T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives L. Myers, Vruwink, Baldeh, Cabrera, Sinicki, Hesselbein, Subeck, Snodgrass and Drake; +cosponsored by Senator L. Taylor",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Gundrum, Murphy, Rozar and Steffen",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Vining, Andraca, Considine, Emerson, Hebl, Hong, Pope, Shelton, Sinicki, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Smith, Roys and L. Taylor",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Agard, Johnson, Erpenbach, Roys, L. Taylor, Larson and Carpenter; +cosponsored by Representatives Hong, S. Rodriguez, Shelton, Anderson, Andraca, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, Shankland, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Moses, Allen, Brandtjen, Cabral-Guevara, Knodl, Kuglitsch, Plumer, Rozar, Schraa, Tusler, Wichgers and Thiesfeldt; +cosponsored by Senators Nass, Bernier and Jacque",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Neubauer, Shankland, Spreitzer, Anderson, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Vining and Vruwink; +cosponsored by Senators Roys, Smith, Erpenbach, Agard, L. Taylor, Pfaff and Larson",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman, Knodl, Moses, Murphy, Rozar and Swearingen; +cosponsored by Senators Wanggaard, Felzkowski and Nass",2021-05-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives J. Rodriguez, Snyder, Doyle, Billings, Cabrera, Dittrich, Duchow, Kuglitsch, Tusler and Sinicki; +cosponsored by Senators Ballweg, Marklein, Johnson and Roys",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, L. Taylor, Roys and Larson; +cosponsored by Representatives Brostoff, L. Myers, Bowen, Cabrera, Moore Omokunde, Shelton, Drake, Hebl, Hong, Anderson, Ortiz-Velez, Considine, Neubauer, Haywood, Baldeh, Goyke and Spreitzer",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder and Spiros; +cosponsored by Senator Petrowski",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Stubbs, Emerson, Andraca, Conley, Considine, Hebl, B. Meyers, Pope, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink; +cosponsored by Senators Smith, Johnson, Carpenter, Roys and L. Taylor",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Considine, Pope, Brostoff, Hebl, Hesselbein, Hong, Shelton, Sinicki, Stubbs, Subeck and Vruwink; +cosponsored by Senators Erpenbach, Roys and Smith",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Mursau, Sinicki, Shankland, Magnafici, Cabrera, L. Myers, Shelton, Subeck, Hintz, Loudenbeck, Cabral-Guevara and Duchow",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, L. Taylor, Carpenter, Feyen, Marklein, Bernier, Bewley, Jacque, Ballweg and Ringhand; +cosponsored by Representatives Hong, Subeck, Stubbs, Sinicki, S. Rodriguez, Cabrera, Bowen, Hesselbein, Drake, Emerson, Hintz, Vruwink, Milroy, Hebl, Shelton, Tauchen, Shankland, Anderson, Conley, Snodgrass, Mursau, Spreitzer, Brandtjen, Murphy and Thiesfeldt",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Feyen; +cosponsored by Representatives Pronschinske, Summerfield, Armstrong, Kitchens, Penterman, Petryk, Moses, Tranel and Edming",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Darling, Nass, L. Taylor and Marklein; +cosponsored by Representatives Knodl, Magnafici, Gundrum, Rozar, Tittl, Kuglitsch, Skowronski and Brandtjen",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Schraa, Allen, Armstrong, Brandtjen, Cabral-Guevara, Horlacher, James, Knodl, Magnafici, Moses, Pronschinske, Rozar, Thiesfeldt, Wichgers and Murphy; +cosponsored by Senator Bernier",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Erpenbach, Johnson, Larson, Roys and Smith; +cosponsored by Representatives Vining, Brostoff, Considine, Moore Omokunde, Anderson, Andraca, Baldeh, Billings, Bowen, Cabrera, Conley, Doyle, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Bernier, Bradley and Nass; +cosponsored by Representatives Sortwell, Allen, Brandtjen, Edming, Gundrum, Kerkman, Knodl, Kuglitsch, Magnafici, Moses, Rozar, Schraa, Steffen, Thiesfeldt, Tittl, Tranel, Tusler and Vos",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vos, Murphy, Allen, Magnafici, Moses, Armstrong, Horlacher, Dittrich, Rozar, Cabral-Guevara, Callahan, Spiros, Kuglitsch, Knodl and Wichgers; +cosponsored by Senators Stroebel, Roth and Nass",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt and Pfaff; +cosponsored by Representatives Oldenburg, VanderMeer, Edming, Magnafici, Moses, Mursau, Novak, Plumer and Rozar",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives August, Rozar, Dittrich, Kuglitsch, Thiesfeldt, Behnke, Wichgers, Brooks, Brandtjen, Drake, Tittl, Neylon, Ortiz-Velez and Schraa; +cosponsored by Senator Roth",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives L. Myers, Tranel, Bowen, Pope, Hebl, Vruwink, Emerson, Baldeh, Sinicki, Considine, Billings, Stubbs, Conley, Ohnstad, Neubauer, Goyke, Anderson, Shankland, Shelton, Hesselbein, S. Rodriguez, Subeck, Drake and Andraca; +cosponsored by Senators Larson, Kooyenga, L. Taylor, Johnson, Smith, Carpenter, Bewley, Wirch and Ringhand",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Employment Relations,2022-01-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Rozar, Allen, Armstrong, Bowen, Drake, Edming, James, Kitchens, Magnafici, Murphy, Mursau, Sinicki, Spreitzer and Vruwink; +cosponsored by Senators Bernier, Bradley and L. Taylor",2021-05-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sinicki, Neubauer, Haywood, Spreitzer, Ohnstad, Shankland, Bowen, Doyle, Shelton, Andraca, Drake, Emerson, Snodgrass, Cabrera, Stubbs, Pope, Hong, Conley, Subeck, Vruwink, Milroy and Hebl; +cosponsored by Senators Wirch, Ringhand, Johnson, Bewley, Agard, Erpenbach, Carpenter, Roys and Larson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Novak, Kurtz and Tranel",2021-06-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Thiesfeldt, Wichgers, Armstrong, Brandtjen, James, Knodl, Krug, Rozar and Tusler",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ballweg, Bernier, Jagler, Marklein, Stafsholt and Stroebel; +cosponsored by Representatives Horlacher, Cabral-Guevara, Allen, Armstrong, Brandtjen, Brooks, Dittrich, Duchow, Edming, Gundrum, James, Kuglitsch, Macco, Magnafici, Moses, Penterman, Schraa, Skowronski, Sortwell, Spiros, Summerfield, Thiesfeldt, Tittl and Wichgers",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman, Krug, Cabral-Guevara, Considine, Kerkman, Kitchens, Mursau, Spiros, Tauchen, Tranel, Vruwink and Sinicki; +cosponsored by Senators Ballweg, Agard, Carpenter, Cowles and Marklein",2022-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Andraca, Billings, Cabrera, Conley, Goyke, Hebl, Hesselbein, Hong, Sinicki, Spreitzer, Subeck, Stubbs and Shelton; +cosponsored by Senators Smith, Larson and Agard",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Wimberger, Nass, Jacque, Kapenga, Kooyenga, Stroebel, Testin and Felzkowski; +cosponsored by Representatives Wichgers, Knodl, Sanfelippo, Allen, Behnke, Brandtjen, Gundrum, Kuglitsch, Murphy and Skowronski",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives VanderMeer, Neylon, Magnafici, Allen, Cabral-Guevara, Dittrich, Horlacher, Knodl, Moses, Plumer, Sortwell, Thiesfeldt and Wichgers; +cosponsored by Senators Nass, Marklein, Stroebel, Bernier and Felzkowski",2021-12-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Roys, Erpenbach, L. Taylor, Larson and Carpenter; +cosponsored by Representatives Billings, Anderson, Neubauer, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brandtjen, Armstrong, Knodl, Moses and Wichgers; +cosponsored by Senators Wanggaard, L. Taylor, Darling, Cowles, Feyen and Jacque",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hintz, Neubauer, Baldeh, L. Myers, Hebl, Pope, Emerson, Conley, Bowen, Stubbs, Spreitzer, Ohnstad, Subeck, Anderson, Goyke, Vining and Hesselbein; +cosponsored by Senators Carpenter, Roys, Agard, L. Taylor and Johnson",2021-09-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, Ballweg, Darling, Jacque, Jagler and Marklein; +cosponsored by Representatives Novak, Armstrong, Born, Brandtjen, Callahan, Dittrich, Doyle, Edming, Gundrum, James, Katsma, Kitchens, Krug, Kuglitsch, Kurtz, Loudenbeck, Macco, Magnafici, Murphy, Mursau, Oldenburg, Penterman, Petersen, Petryk, Plumer, Schraa, Snyder, Spiros, Steffen, Tittl and Tranel",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Hong, Anderson, Baldeh, Brostoff, Conley, Emerson, Hebl, Moore Omokunde, Neubauer and Sinicki; +cosponsored by Senator L. Taylor",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Armstrong, Brandtjen and Gundrum; +cosponsored by Senator Jacque",2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Kooyenga, Kapenga, Bernier, Nass and Stroebel; +cosponsored by Representatives Katsma, Dittrich, Knodl, Krug, Murphy, Novak, Oldenburg, Thiesfeldt, Tranel, Wichgers, Zimmerman and Behnke",2022-01-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tranel, Novak, Billings, Murphy, Oldenburg, Spiros, Tittl, Wichgers, Kerkman, Petryk and Kuglitsch; +cosponsored by Senators Jacque and Ringhand",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Brostoff, Vruwink, Snodgrass, Hebl, Spreitzer, Cabrera, Andraca, Shankland, Considine, Conley, Hintz, Pope, Subeck, Shelton, Stubbs, Emerson, Baldeh and Hong; +cosponsored by Senators Larson, Carpenter, Johnson, Roys and Smith",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Rozar, Krug, Hong and Tusler; +cosponsored by Senators Bernier, Bewley, Feyen, Smith and Petrowski",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg and Roys; +cosponsored by Representatives Petersen, Edming, Horlacher, Sinicki and Cabrera",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Employment Relations,2022-01-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin and Stroebel; +cosponsored by Representatives Dittrich, Macco, Schraa and Horlacher",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Ballweg, Bewley, L. Taylor and Wanggaard; +cosponsored by Representatives Horlacher, Armstrong, Behnke, Brostoff, Cabral-Guevara, Cabrera, Emerson, Gundrum, Rozar, Spiros, Spreitzer and Subeck",2021-06-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Jacque, Bernier, Feyen and Nass; +cosponsored by Representatives Penterman, August, Vorpagel, Allen, Brandtjen, Cabral-Guevara, Callahan, Dittrich, Edming, James, Knodl, Kuglitsch, Loudenbeck, Macco, Magnafici, Moses, Petersen, Plumer, Schraa, Snyder, Sortwell, Steffen, Tittl, Tusler, Wichgers, Zimmerman and Born",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Erpenbach, Johnson, Agard, Bewley, Carpenter, Larson, Pfaff, Ringhand and Roys; +cosponsored by Representatives Subeck, Cabrera, Anderson, Baldeh, Cabral-Guevara, Conley, Considine, Doyle, Emerson, Hesselbein, Hong, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Vining and Vruwink",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hesselbein, Snodgrass, Milroy, Riemer, Sinicki, Hebl, Conley, Hong, Doyle, Vruwink, Pope, Andraca, Anderson, Stubbs, Bowen, Subeck, Shankland, Shelton, B. Meyers, S. Rodriguez and Spreitzer; +cosponsored by Senators Agard, Bewley, Smith, Larson and L. Taylor",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Katsma, Wittke and Macco; +cosponsored by Senator Kooyenga",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Krug, Murphy, Armstrong, Baldeh, Billings, Cabral-Guevara, Conley, Dittrich, Duchow, Edming, Hesselbein, James, Loudenbeck, Mursau, Novak, Penterman, Petryk, Shelton, Sinicki, Spreitzer, Subeck, Tranel, Vruwink and Wittke; +cosponsored by Senators Darling, Roth, Ballweg, Bernier, Bewley, Carpenter, Cowles, Felzkowski, Kooyenga, Petrowski, Wanggaard and Wimberger",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Carpenter, Erpenbach, Johnson, Larson, Roys, Smith and L. Taylor; +cosponsored by Representatives Snodgrass, Cabrera, Neubauer, Spreitzer, Anderson, Brostoff, Conley, Considine, Emerson, Goyke, Hebl, Hesselbein, Hong, S. Rodriguez, Shankland, Shelton, Sinicki, Stubbs and Vining",2021-07-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, S. Rodriguez, Anderson, Baldeh, Cabral-Guevara, Cabrera, Conley, Considine, Emerson, Hebl, Hesselbein, Hong, Milroy, L. Myers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Carpenter, Erpenbach, Agard, Bewley, Johnson, Larson, Pfaff and Ringhand",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen and Ballweg; +cosponsored by Representatives Dallman, Rozar and Tusler",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Baldeh, Goyke, Hong, Stubbs, Conley, Andraca, Snodgrass, Shelton, Anderson, Brostoff, Cabral-Guevara, Considine, Drake, Emerson, Haywood, Hebl, Hesselbein, Moore Omokunde, B. Meyers, Ohnstad, Ortiz-Velez, Pope, Sinicki, Spreitzer, Subeck, Vining and Vruwink; +cosponsored by Senators Johnson, Agard, Carpenter and Roys",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Erpenbach, Johnson, Larson, Ringhand, Roys and Smith; +cosponsored by Representatives Vining, Brostoff, Considine, Moore Omokunde, Anderson, Andraca, Baldeh, Billings, Bowen, Cabrera, Conley, Doyle, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, Neubauer, Shelton, Sinicki, Spreitzer, Stubbs, Subeck and Vruwink",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Agard, Carpenter and Roys; +cosponsored by Representatives Pope, Billings, Vining, Baldeh, Bowen, Cabrera, Conley, Considine, Hebl, Milroy, Shelton, Sinicki, Stubbs, Subeck and Vruwink",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Callahan, Baldeh, Edming, Goyke, Krug, Kuglitsch, Loudenbeck, Rozar, Subeck, Tittl, Tusler and Wittke; +cosponsored by Senators Stafsholt, Bewley, Carpenter, Jacque, Ringhand and Wirch",2021-07-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brandtjen, Ramthun, Cabral-Guevara, Dittrich, Edming, Gundrum, Knodl, Kuglitsch, Magnafici, Murphy, Rozar, Schraa, Tittl and Wichgers; +cosponsored by Senators Jacque, Ballweg, Felzkowski and Wanggaard",2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Moore Omokunde, Brostoff, Anderson, Bowen, Cabrera, Conley, Haywood, L. Myers, Shelton, Sinicki, Snodgrass and Subeck; +cosponsored by Senators Larson, Johnson, Roys and L. Taylor",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Stubbs, Andraca, Bowen, Brostoff, Cabrera, Conley, Considine, Hebl, Hesselbein, Neubauer, Moore Omokunde, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer and Subeck; +cosponsored by Senators Roys, Johnson, Agard, Carpenter, Larson, Ringhand, Smith and L. Taylor",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Tusler, Anderson, Andraca, Armstrong, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Drake, Hebl, Hesselbein, Milroy, L. Myers, Ramthun, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Vining and Vruwink; +cosponsored by Senators Ballweg, Johnson, Agard, Carpenter, Cowles, Jacque, Larson, Roys, Smith, L. Taylor and Wirch",2021-07-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Duchow, Thiesfeldt, Wittke, Cabral-Guevara, Gundrum, Kitchens, Knodl, Kuglitsch, Moses, Novak and Ramthun",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, L. Taylor, Larson, Agard, Carpenter and Roys; +cosponsored by Representatives Shankland, Shelton, Subeck, Spreitzer, Bowen, S. Rodriguez, Neubauer, Hesselbein, Baldeh, Spiros, Sinicki, Conley, Milroy, Cabrera, Drake, Emerson, Ohnstad, Murphy, Brostoff and Stubbs",2021-07-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Knodl, Andraca, Armstrong, Brandtjen, Hintz, L. Myers, Neylon, Oldenburg, Pope, Rozar, Skowronski, Tittl, Vining and Allen; +cosponsored by Senators Darling, Kooyenga, Nass, Pfaff and Bernier",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Ringhand, Jacque, Roys, Smith and Wirch; +cosponsored by Representatives McGuire, Vining, Hong, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Considine, Doyle, Drake, Emerson, Hebl, Milroy, S. Rodriguez, Shankland, Shelton, Spreitzer, Stubbs, Vruwink and Sinicki",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Roys, Erpenbach, Wirch, Jacque, Bewley, Ringhand, Johnson, Agard, Pfaff and Smith; +cosponsored by Representatives Hesselbein, Pope, Vining, B. Meyers, S. Rodriguez, Drake, Goyke, Emerson, Vruwink, Hong, Milroy, Sinicki, Rozar, Hintz, Spreitzer, Andraca, Hebl, Shelton, Dittrich, Subeck, Conley, Loudenbeck, Murphy, Stubbs, Ohnstad, Spiros, Cabrera, Kerkman and Tusler",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee for Review of Administrative Rules,2021-01-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wirch, Agard, Carpenter, Larson, Roys, Smith and L. Taylor; +cosponsored by Representatives Ohnstad, Baldeh, Neubauer, Shankland, Sinicki and Vruwink",2021-08-11T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Ramthun and Brooks,2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Hong, Baldeh, Brostoff, Cabrera, Conley, Drake, Emerson, Haywood, Hebl, Hesselbein, Pope, Shankland, Sinicki, Snodgrass, Spreitzer and Stubbs; +cosponsored by Senators Agard, Bewley, Ringhand, Roys, L. Taylor and Larson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Stroebel; +cosponsored by Representatives Wichgers, Sanfelippo, Armstrong, Behnke, Duchow, Gundrum, Kuglitsch, Krug, Murphy and Dittrich",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Stafsholt; +cosponsored by Representative Brooks",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Brooks, Allen, Dittrich, Horlacher, Knodl, Krug, Kuglitsch, Moses, Murphy, Steffen, Thiesfeldt, Wichgers and Zimmerman; +cosponsored by Senators Kooyenga, Ballweg, Jacque and Nass",2021-05-13T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Johnson, Carpenter, Roys and L. Taylor; +cosponsored by Representatives Shankland, Stubbs, Emerson, Andraca, Conley, Considine, Hebl, B. Meyers, Pope, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink",2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Bernier, Felzkowski and Nass; +cosponsored by Representatives Ramthun, Allen, Dittrich, Edming, Gundrum, James, Knodl, Krug, Magnafici, Moses, Rozar, Schraa, Steffen, Thiesfeldt, Tusler and Tittl",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives L. Myers, Stubbs, Drake, Shankland, S. Rodriguez, Anderson, Hebl, Neubauer, Ortiz-Velez, Hong, Emerson, Snodgrass, Cabrera, Baldeh, Conley, Hesselbein, Spreitzer, Vining, Hintz, Subeck, Shelton, Billings, Brostoff, Bowen and Considine; +cosponsored by Senators L. Taylor, Johnson, Roys, Agard, Larson, Wirch and Carpenter",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives August, Vorpagel, Brooks, Spiros, Plumer, Steffen, Armstrong, Penterman, Magnafici, Behnke, Kuglitsch, Moses, Dittrich, Sanfelippo, Wittke, Wichgers, Gundrum, Rozar, Petersen, Krug, Knodl, Tittl, Murphy, Dallman, Allen, Swearingen and Schraa; +cosponsored by Senators Wimberger, Roth, Darling, Feyen, Testin and Ballweg",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Knodl, Andraca, Drake, Magnafici, Sinicki, Spreitzer, Subeck, Tranel and Skowronski; +cosponsored by Senators Darling, Cowles and Carpenter",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Knodl, Gundrum, Moses and Tauchen; +cosponsored by Senators Stroebel, Nass and Roys",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Larson, Agard, Johnson and Roys; +cosponsored by Representatives Shankland, Shelton, Emerson, Andraca, Baldeh, Brostoff, Cabrera, Conley, Hebl, Hong, McGuire, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Sinicki, Snodgrass, Spreitzer, Vining, Vruwink, Subeck and Stubbs",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vorpagel, Kuglitsch, Steffen and Tauchen; +cosponsored by Senators Bradley, Roth, Pfaff and Smith",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vos, Steineke, Petersen, Vorpagel, Duchow, James, Born, Knodl, Cabral-Guevara, Zimmerman, Macco, Steffen, Kitchens, Tranel, Novak, Gundrum, Tusler, Thiesfeldt, Kuglitsch, Ramthun, Brandtjen, Summerfield, Dallman, Katsma, Tittl, Dittrich, J. Rodriguez, Oldenburg, VanderMeer, Magnafici, Edming, Pronschinske, Snyder, Brooks, Schraa, Swearingen, Wittke, Moses, Callahan, Rozar, Skowronski, Sortwell, Krug, Spiros, Tauchen, Plumer, Wichgers, Murphy, Loudenbeck, Behnke and Neylon; +cosponsored by Senators Kapenga, Jacque, Jagler, Stafsholt, Stroebel, Testin, LeMahieu and Bernier",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kuglitsch, Wittke, Cabral-Guevara, Callahan, Dallman, James, Knodl, Moses, Rozar, Sortwell and Thiesfeldt; +cosponsored by Senator Testin",2021-05-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Ballweg, Marklein, Nass and Stroebel; +cosponsored by Representatives Horlacher, Callahan, Edming, Kuglitsch, Moses, Mursau, Ramthun, Rozar, Skowronski and Tusler",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Magnafici, Krug, Armstrong, Born, Cabral-Guevara, Callahan, Edming, Katsma, Moses, Oldenburg, Rozar, Swearingen, Tranel and Wittke",2021-04-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Erpenbach, Johnson, Agard, Bewley, Carpenter, Larson, Pfaff and Ringhand; +cosponsored by Representatives Subeck, S. Rodriguez, Anderson, Baldeh, Cabral-Guevara, Cabrera, Conley, Emerson, Hebl, Hesselbein, Hong, Milroy, L. Myers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vruwink",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Brandtjen, Edming, Sinicki, Tusler, Wichgers and Haywood; +cosponsored by Senators Jacque, Ballweg and L. Taylor",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Roys, Johnson, Larson and Wirch; +cosponsored by Representatives Pope, Vining, Hebl, Baldeh, Snodgrass, Moore Omokunde, Conley, Andraca, Neubauer, Shelton, Stubbs, Sinicki, Cabrera, Spreitzer, Subeck, Emerson, S. Rodriguez, Bowen and Shankland",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, Shelton, Sinicki, Spreitzer, Drake, Hebl, Neubauer, Snodgrass, Billings, Goyke, Considine, Anderson, Conley, Hesselbein, Bowen, Emerson, Vining, Ortiz-Velez, Andraca, Baldeh and Subeck",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Murphy; +cosponsored by Senators Roth and Ballweg",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Oldenburg; +cosponsored by Senator Marklein",2021-12-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Moses, Brandtjen, Bowen, Horlacher and Spiros; +cosponsored by Senator Bernier",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wirch, Agard, Bewley, Carpenter, Erpenbach, Johnson, Larson, Ringhand and Roys; +cosponsored by Representatives Sinicki, Anderson, Baldeh, Bowen, Cabrera, Conley, Drake, Doyle, Emerson, Haywood, Hebl, Hong, Milroy, Neubauer, Ohnstad, Pope, Shankland, Shelton, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Cabral-Guevara, Armstrong, Brandtjen, Moses, Murphy, Wichgers and Edming",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Smith, Johnson, L. Taylor, Agard, Carpenter, Roys, Erpenbach and Bewley; +cosponsored by Representatives Pope, Hesselbein, Sinicki, Brostoff, Anderson, Shankland, Goyke, B. Meyers, Cabrera, Snodgrass, L. Myers, Vining, Drake, Emerson, Shelton, Hebl, Conley, Subeck, S. Rodriguez, Ohnstad, Stubbs, Milroy, Vruwink and Hong",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Baldeh, Cabrera, Hong, Anderson, Andraca, Brostoff, Conley, Emerson, Haywood, Hebl, Hesselbein, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink; +cosponsored by Senators Johnson, Agard, Roys, Erpenbach, Larson, Ringhand, Smith and Carpenter",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Ringhand, Carpenter, Johnson, Larson, Marklein, Roys, Wirch and Ballweg; +cosponsored by Representatives Tittl, Goyke, Andraca, Armstrong, Bowen, Brostoff, Conley, Considine, Emerson, Hebl, Krug, Kurtz, Milroy, Murphy, Mursau, Neubauer, Novak, Pope, Riemer, J. Rodriguez, Schraa, Shankland, Shelton, Sinicki, Snyder, Spiros, Spreitzer, Steffen, Stubbs, Vining, Vruwink and Wichgers",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Summerfield, Oldenburg, Armstrong, Cabral-Guevara, Callahan, Dallman, Horlacher, James, Magnafici, Moses, Petryk, Plumer, Pronschinske, Ramthun, Rozar, Schraa, Spiros, Swearingen, Tauchen, Tranel, Tusler and VanderMeer; +cosponsored by Senators Marklein, Ballweg, Bernier, Cowles, Darling, Felzkowski, Feyen, Nass and Wimberger",2021-06-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Wanggaard, Ballweg, Bernier, Darling and Jacque; +cosponsored by Representatives Wittke, Katsma, Kuglitsch, Macco, Zimmerman, Allen, Armstrong, Brandtjen, Dittrich, Doyle, Duchow, Edming, Horlacher, Kurtz, Moses, Mursau, Novak, Oldenburg, Penterman, Rozar, Schraa, Snodgrass, Swearingen, Thiesfeldt, Vruwink, Wichgers, Spreitzer, Knodl, Hong and Subeck",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Plumer and Armstrong,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Ballweg, Felzkowski and Kapenga; +cosponsored by Representatives Cabral-Guevara, Allen, Armstrong, Brandtjen, Duchow, Gundrum, Horlacher, James, Knodl, Murphy, Sortwell, Tittl and Wichgers",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Nass and Stroebel; +cosponsored by Representatives Dittrich, Neylon, Penterman, Skowronski, Edming, VanderMeer, Sortwell, Brandtjen, Kuglitsch, Zimmerman, Mursau, Thiesfeldt, Knodl and Murphy",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Zimmerman, Dittrich, J. Rodriguez, B. Meyers, Baldeh, Bowen, Brandtjen, Edming, Gundrum, Hong, Moses, Mursau, Ortiz-Velez, Shankland, Sinicki, Spreitzer, Summerfield, Tauchen, Thiesfeldt, Vining, Vruwink, Wichgers and Knodl; +cosponsored by Senators Jacque, Bernier, Wanggaard, Testin, Johnson, Bewley, Pfaff, Ballweg, Carpenter, Larson, Ringhand, L. Taylor and Wirch",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Macco, Wittke, Armstrong, Cabral-Guevara, Callahan, Dittrich, Edming, Horlacher, Katsma, Kerkman, Knodl, Kuglitsch, Magnafici, Milroy, Murphy, Petryk, Ramthun, Skowronski, Snyder, Steffen, Summerfield, Tranel and Zimmerman; +cosponsored by Senators Testin, Carpenter, Ballweg, Felzkowski, Feyen, Jacque, Marklein and L. Taylor",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Wirch, Bewley, Agard, Smith, Larson, Carpenter and L. Taylor; +cosponsored by Representatives Hesselbein, B. Meyers, Milroy, Riemer, Sinicki, Hebl, Conley, Hong, Cabrera, Pope, Andraca, Anderson, Stubbs, Spreitzer, Subeck, Shankland, Shelton and S. Rodriguez",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Shankland, Sinicki, Brostoff, Anderson, Hesselbein, Goyke, B. Meyers, Cabrera, Snodgrass, L. Myers, Vining, Drake, Emerson, Shelton, Hebl, Conley, Subeck, S. Rodriguez, Ohnstad, Stubbs, Milroy, Vruwink, Hong and Andraca; +cosponsored by Senators Larson, Smith, Johnson, L. Taylor, Ringhand, Agard, Carpenter, Roys, Erpenbach and Bewley",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives J. Rodriguez, Callahan, Dallman, Edming, Horlacher, Katsma, Knodl, Rozar, Vorpagel, Wittke, Schraa, Thiesfeldt, Allen and VanderMeer; +cosponsored by Senators Stroebel, Cowles, Feyen and Jagler",2021-09-30T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Allen, Andraca, Armstrong, Behnke, Cabral-Guevara, Callahan, Gundrum, Horlacher, Knodl, Kurtz, Magnafici, Moses, Mursau, Rozar, Sortwell, Spiros, Swearingen, Tittl, Vorpagel, Vruwink and Zimmerman; +cosponsored by Senators Nass, Bradley, Cowles, Darling, Jagler, Marklein, Ballweg and Jacque",2021-10-06T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives McGuire, Snodgrass, Doyle, Andraca, Billings, Bowen, Conley, Considine, Emerson, Hebl, Hesselbein, Neubauer, Ohnstad, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Stubbs, Subeck and Vruwink; +cosponsored by Senators Pfaff, Wirch, Agard, Carpenter, Larson, Ringhand and Smith",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Brandtjen, Gundrum, Moses, Rozar, J. Rodriguez, Bowen, Knodl and Mursau; +cosponsored by Senators Darling, Cowles, Jacque, Marklein and Wanggaard",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Rozar, Armstrong, Brandtjen, Cabral-Guevara, Edming, Gundrum, Murphy, Sinicki, Skowronski, Spiros, Subeck and Wichgers; +cosponsored by Senators Jacque, Ballweg and L. Taylor",2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wichgers, Knodl, Sanfelippo, Allen, Behnke, Brandtjen, Gundrum, Kuglitsch, Murphy and Skowronski; +cosponsored by Senators Bradley, Wimberger, Nass, Jacque, Kooyenga, Stroebel and Testin",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Macco, Wittke, Armstrong, Callahan, Dittrich, Edming, Gundrum, Horlacher, Kerkman, Kuglitsch, Magnafici, Milroy, Murphy, Petryk, Ramthun, Skowronski, Snyder, Steffen, Summerfield and Zimmerman; +cosponsored by Senators Testin, Carpenter, Ballweg, Felzkowski, Feyen, Nass and L. Taylor",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Hong, Anderson, Baldeh, Billings, Brostoff, Cabrera, Conley, Emerson, Goyke, Hebl, Moore Omokunde, Neubauer, Shelton and Sinicki; +cosponsored by Senators Johnson, Larson, Agard and Roys",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Cowles, Feyen and Jagler; +cosponsored by Representatives J. Rodriguez, Callahan, Dallman, Edming, Horlacher, Katsma, Knodl, Rozar, Schraa, Thiesfeldt, Vorpagel, Wittke, Allen and VanderMeer",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Armstrong, Cabral-Guevara, Horlacher, Moses, Murphy, Spiros and Subeck; +cosponsored by Senator Jacque",2021-06-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke and Thiesfeldt; +cosponsored by Senators Bernier and Darling",2022-02-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Snyder, Andraca, Armstrong, Billings, Bowen, Brostoff, Cabral-Guevara, Cabrera, Conley, Considine, Dittrich, Drake, Emerson, Haywood, Hebl, Hesselbein, Milroy, Moore Omokunde, L. Myers, Ohnstad, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Thiesfeldt, Vruwink and Anderson; +cosponsored by Senators Johnson, Agard, Carpenter, Larson, Ringhand, Roys, L. Taylor, Wirch, Jacque and Ballweg",2021-05-13T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Cabrera, Shelton and Sinicki",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kuglitsch, Steineke, Sinicki, Allen, Cabral-Guevara, Dittrich, Horlacher, Knodl, Loudenbeck, Murphy, Mursau, Penterman, Petryk, Schraa, Spiros, Spreitzer, Steffen, Subeck, Swearingen, Thiesfeldt, Tittl, Tranel and Vruwink; +cosponsored by Senators Kapenga, Ballweg, Darling, Jacque, Jagler, Nass and Petrowski",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Erpenbach, Johnson, Carpenter, Agard, Bewley, Larson, Pfaff, Ringhand, Roys and Wirch; +cosponsored by Representatives Subeck, Anderson, Cabral-Guevara, Cabrera, Conley, Considine, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Vining and Vruwink",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Goyke, Andraca, Baldeh, Considine, Emerson, Haywood, Hebl, Hintz, B. Meyers, Pope, Riemer, S. Rodriguez, Shankland, Sinicki, Spreitzer, Subeck, Vining, Hesselbein, Ohnstad and Shelton; +cosponsored by Senators Smith, Agard, Carpenter, Johnson, Larson and L. Taylor",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kuglitsch, Magnafici, Allen, Armstrong, Dittrich, Doyle, Edming, Gundrum, Hong, Kitchens, Ortiz-Velez, J. Rodriguez, Schraa, Sinicki, Snodgrass, Spreitzer, Subeck, Summerfield, Vruwink and Krug; +cosponsored by Senators Testin, Nass, Wanggaard, Cowles and Agard",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Carpenter, Johnson, Roys and Smith; +cosponsored by Representatives Vining, Brostoff, Vruwink, Snodgrass, Hebl, Spreitzer, Cabrera, Andraca, Pope, Shankland, Considine, Conley, Hintz, Subeck, Shelton, Stubbs, Emerson, Baldeh and Hong",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Dittrich, Allen, Murphy, Edming, Kuglitsch, Mursau, Thiesfeldt and Tusler; +cosponsored by Senators Kooyenga, Darling and Bernier",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Agard, Johnson, Larson, Roys and Smith; +cosponsored by Representatives Neubauer, Cabrera, Novak, Snodgrass, Spreitzer, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Conley, Considine, Emerson, Goyke, Hebl, Hesselbein, Hong, McGuire, Ohnstad, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Stubbs, Subeck and Vining",2021-07-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Edming, Armstrong, Brooks, Cabral-Guevara, Callahan, Dittrich, James, Knodl, Magnafici, Milroy, Moses, Murphy, Mursau, Neylon, Novak, Oldenburg, Petryk, Plumer, Ramthun, J. Rodriguez, Rozar, Skowronski, Spiros, Thiesfeldt and Wichgers; +cosponsored by Senators Felzkowski, Ballweg, Bewley, Cowles, Jacque, Marklein and Nass",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tranel, Behnke, Novak, Kurtz, Moses, VanderMeer and Tusler; +cosponsored by Senator Marklein",2021-06-17T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Cabral-Guevara, Kuglitsch, Tusler and Wichgers; +cosponsored by Senator Roth",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spreitzer, Neubauer, Snodgrass, Cabrera, Anderson, Andraca, Bowen, Brostoff, Conley, Emerson, Goyke, Hebl, Hesselbein, Hong, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Subeck and Vining; +cosponsored by Senators Carpenter, Agard, Erpenbach, Larson, Ringhand, Roys, Smith and L. Taylor",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Erpenbach, Agard, Bewley, Johnson, Larson, Pfaff and Ringhand; +cosponsored by Representatives Subeck, Milroy, Anderson, Baldeh, Cabrera, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hong, Neubauer, Ohnstad, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vruwink",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Allen, Brandtjen, Edming, Gundrum, Murphy, Penterman, Steffen, Thiesfeldt and Tittl; +cosponsored by Senators Stroebel, Felzkowski and Marklein",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Zimmerman, Ortiz-Velez, Krug, Armstrong, Moses, Cabral-Guevara, Emerson, Milroy, Tittl, Magnafici, Baldeh, Spiros, Plumer, Snodgrass, Dittrich, Summerfield, Drake, Sinicki, Callahan, Billings, Hesselbein, Conley, Subeck, Stubbs, Spreitzer, Considine, Shelton, B. Meyers, Duchow, Allen, Tusler, Mursau, Schraa, Bowen, Horlacher, Knodl and Cabrera; +cosponsored by Senators Wanggaard, L. Taylor, Larson, Carpenter, Ringhand, Agard and Cowles",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Murphy, Allen, Armstrong, Callahan, Dittrich, Edming, Gundrum, James, Katsma, Kitchens, Kuglitsch, Kurtz, Novak, Petersen, Plumer, Skowronski, Snyder, Swearingen, Tittl and Cabral-Guevara",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Stroebel, Wimberger, Felzkowski, Feyen, Marklein, Nass, Petrowski and Wanggaard; +cosponsored by Representatives Tittl, Gundrum, Brooks, Edming, Jagler, Knodl, Krug, Macco, Murphy, Neylon, Skowronski, Sortwell, Spiros, Steffen, VanderMeer, Wichgers and Loudenbeck",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Feyen; +cosponsored by Representatives Dallman, Armstrong, Dittrich, Kitchens, Moses and Edming",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Darling and Nass; +cosponsored by Representatives Penterman, Armstrong, Dittrich, Horlacher, Kitchens, Krug, Ramthun, Thiesfeldt, Wichgers and Edming",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Horlacher, Allen, Armstrong, Dittrich, Knodl, Krug, Magnafici, Moses, Murphy, Neylon, Schraa, Skowronski, Steffen, Thiesfeldt and Wichgers; +cosponsored by Senator Nass",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, Neubauer, Cabrera and Stubbs; +cosponsored by Senators Larson, Johnson, Roys and Carpenter",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Ballweg, Carpenter, Felzkowski, Ringhand and L. Taylor; +cosponsored by Representatives Loudenbeck, Vorpagel, Kuglitsch, Magnafici, Duchow, Moses, Bowen, Callahan, Kitchens and Mursau",2021-04-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snodgrass, Cabrera, Hebl, Hesselbein, Pope, Shelton, Spreitzer, Subeck and Sinicki; +cosponsored by Senators Agard and Roys",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier and Darling; +cosponsored by Representatives Petryk, Armstrong, Callahan, Dittrich, Edming, James, Krug and Novak",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ballweg, Cowles, Feyen, Marklein and Wanggaard; +cosponsored by Representatives Schraa, Brooks, Callahan, Dittrich, James, Knodl, Kuglitsch, Murphy, Mursau, Penterman, Plumer, Spiros, Thiesfeldt and Tusler",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Steineke,2022-01-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Brooks, Bowen, Gundrum, Horlacher, Krug, Kurtz, Murphy, Rozar, Schraa, Skowronski, Snyder, Spiros, Subeck, Tittl, Kuglitsch, Mursau and Duchow; +cosponsored by Senators Feyen, L. Taylor, Jacque, Felzkowski and Stroebel",2021-02-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Marklein, Agard, Ballweg, Bewley and L. Taylor; +cosponsored by Representatives Armstrong, Brandtjen, Doyle, Milroy, Mursau, Plumer, Ramthun, Subeck and Schraa",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Magnafici, Brandtjen, Brooks, Callahan, Gundrum, Kitchens, Knodl, Krug, Kuglitsch, Kurtz, Macco, Murphy, Petersen, J. Rodriguez, Rozar, Skowronski, Snyder, Tauchen, Tittl, Tusler, Wichgers, Riemer and Dittrich; +cosponsored by Senators Testin, Felzkowski, Marklein, Stroebel and Jacque",2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Committee on Labor and Regulatory Reform,2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Murphy, Allen, Armstrong, Brandtjen, Horlacher, James, Kuglitsch, Moses, Penterman, Schraa, Tittl, Tusler and Wichgers; +cosponsored by Senators Testin and Stroebel",2021-12-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives L. Myers, Armstrong, Anderson, Vruwink, Bowen, Stubbs, Spreitzer, Subeck, Shelton, Pope, Sinicki, Emerson, Cabral-Guevara, Drake, Cabrera and Andraca; +cosponsored by Senators Smith, Carpenter, L. Taylor and Ringhand",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, B. Meyers, Sinicki, Emerson, Spreitzer, Hebl, Shelton, Milroy, Baldeh, Ohnstad, Hong, Anderson, Cabrera, Stubbs and Subeck; +cosponsored by Senators Larson, Bewley and Agard",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kitchens, Kurtz, Steffen, Cabral-Guevara, Duchow, Edming, Novak, Ohnstad, Rozar, Skowronski, Tusler, VanderMeer, Wichgers and Mursau; +cosponsored by Senators Wimberger, Carpenter, Marklein and Petrowski",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Armstrong, Cabral-Guevara, Dittrich, Drake, Gundrum, Horlacher, Kuglitsch, Kurtz, Magnafici, Moses, Ramthun, S. Rodriguez, Rozar, Thiesfeldt, Tittl, VanderMeer and Zimmerman; +cosponsored by Senators Bradley, Ballweg, Bernier, Marklein, Nass, Stroebel and L. Taylor",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kitchens, Mursau, Gundrum, Knodl, Loudenbeck, Sinicki, Skowronski, Tauchen, Thiesfeldt and Wichgers; +cosponsored by Senators Cowles, Ballweg, Felzkowski, Stroebel and Wanggaard",2021-02-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Krug and Wichgers",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vos, Callahan, Allen, Armstrong, August, Born, Brandtjen, Cabral-Guevara, Dallman, Dittrich, Duchow, Edming, Gundrum, Horlacher, James, Katsma, Knodl, Kuglitsch, Kurtz, Loudenbeck, Macco, Magnafici, Moses, Murphy, Neylon, Petersen, Petryk, Plumer, Rozar, Schraa, Spiros, Steineke, Summerfield, Swearingen, Tauchen, Thiesfeldt, Tittl, Tranel, VanderMeer, Wichgers, Wittke and Zimmerman; +cosponsored by Senators Marklein, Feyen, Ballweg, Bernier, Bradley, Darling, Felzkowski, Jagler, Kapenga, LeMahieu, Nass, Stafsholt, Stroebel, Testin, Wanggaard and Wimberger",2021-05-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Magnafici; +cosponsored by Senator Bernier",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Plumer, Kitchens, Krug, Novak, Penterman, Snyder, Sortwell, Armstrong, Milroy, Rozar, Dittrich, Spiros, VanderMeer, Horlacher, James, Cabral-Guevara, Thiesfeldt, Kurtz, Skowronski and Edming; +cosponsored by Senators Roth, Darling, Larson, Stroebel and Marklein",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Felzkowski and Marklein; +cosponsored by Representatives Zimmerman, Kuglitsch, Magnafici, Milroy and Moses",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kitchens, Billings, Krug, Dallman, Duchow, Edming, Emerson, Mursau, L. Myers, Novak, J. Rodriguez, Rozar, Skowronski, Spiros, Spreitzer and Subeck; +cosponsored by Senators Ballweg, Jacque and Ringhand",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Nass; +cosponsored by Representatives Gundrum, Allen, Behnke, Brandtjen, Cabral-Guevara, Dittrich, Horlacher, Knodl, Kuglitsch, Magnafici, Murphy, Ramthun, Rozar, Skowronski, Sortwell, Wichgers, Thiesfeldt, Armstrong and Tusler",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, L. Taylor, Agard and Carpenter; +cosponsored by Representatives Bowen, Hong, Anderson, Baldeh, Brostoff, Conley, Emerson, Goyke, Hebl, Moore Omokunde, Neubauer, Shankland, Shelton, Sinicki, Spreitzer, Vining and Subeck",2021-07-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Skowronski, Moses, Murphy and Wichgers",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Brostoff, Considine, Moore Omokunde, Anderson, Andraca, Baldeh, Billings, Bowen, Cabrera, Conley, Doyle, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Agard, Erpenbach, Johnson, Larson, Roys and Smith",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Carpenter, Cowles and Nass; +cosponsored by Representatives Spiros, Plumer, Bowen, Edming, Krug, Moses, Murphy, Rozar, Tusler and VanderMeer",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Mursau, Tauchen, Thiesfeldt, Schraa and Knodl; +cosponsored by Senators Felzkowski and Ballweg",2021-06-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Cowles, Felzkowski, Nass and Wanggaard; +cosponsored by Representatives James, Armstrong, Behnke, Brandtjen, Brooks, Callahan, Dallman, Dittrich, Duchow, Edming, Gundrum, Knodl, Kuglitsch, Magnafici, Moses, Pronschinske, Rozar, Skowronski, Snyder, Spiros, Subeck, Mursau and Tusler",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, L. Taylor, Wanggaard and Ballweg; +cosponsored by Representatives Steineke, Stubbs, Armstrong, Baldeh, Cabral-Guevara, Cabrera, Duchow, Edming, Goyke, Gundrum, Kitchens, Krug, Kurtz, Loudenbeck, Macco, Milroy, Moses, Mursau, Novak, Petryk, Schraa, Spiros, Steffen, Zimmerman, Wittke, Tranel, Ohnstad, Vruwink and Subeck",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Testin; +cosponsored by Representatives Krug, Mursau and Subeck",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Felzkowski, Ballweg, Darling, Roth, Stafsholt, Stroebel and Wanggaard; +cosponsored by Representatives James, Summerfield, Armstrong, Dittrich, Edming, Jagler, Knodl, Magnafici, Milroy, Moses, Murphy, Mursau, Oldenburg, Petryk, Pronschinske, Rozar, Schraa, Skowronski, Tauchen, Tittl, Tranel, VanderMeer and Zimmerman",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Testin and Feyen; +cosponsored by Representatives Duchow, Kitchens, Thiesfeldt and Skowronski",2021-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tusler, Cabral-Guevara, Subeck, Sortwell, Bowen, Moses, Rozar, Loudenbeck, Snyder, Plumer, Mursau, Gundrum and Thiesfeldt; +cosponsored by Senators Testin, L. Taylor, Ballweg, Bernier, Cowles, Darling, Feyen, Jacque, Marklein, Nass and Wanggaard",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vos and Steineke; +cosponsored by Senators LeMahieu, Feyen and Kapenga",2021-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Ballweg, Jacque, Jagler, Testin, Wanggaard, Felzkowski and Marklein; +cosponsored by Representatives Brooks, Callahan, Dallman, Dittrich, Magnafici, Moses, Snyder, Spiros and Wichgers",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Employment Relations,2022-01-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Krug, Cabral-Guevara, L. Myers, Anderson, Andraca, Bowen, Conley, Emerson, Hong, Mursau, S. Rodriguez, Rozar, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining; +cosponsored by Senators Jacque, Agard, Johnson, Larson, Ringhand, Roys and L. Taylor",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Katsma, Behnke, Dittrich, Knodl, Krug, Murphy, Novak, Oldenburg, Thiesfeldt, Tranel, Wichgers, Zimmerman and Kurtz; +cosponsored by Senators Marklein, Kooyenga, Kapenga, Bernier, Nass and Stroebel",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Darling, Jacque and Wanggaard; +cosponsored by Representatives Petersen, Armstrong, Behnke, Brooks, Edming, Kitchens, Krug, Magnafici and Rozar",2022-02-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Macco, Schraa, Horlacher and Murphy; +cosponsored by Senators Testin and Stroebel",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Roys, Larson and Pfaff; +cosponsored by Representatives B. Meyers, Brostoff, Anderson, Sinicki, Shelton, Hebl, Snodgrass, Vruwink, Cabrera, Spreitzer, Shankland, Subeck and Stubbs",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pronschinske, James, Petryk, Edming, Gundrum, Knodl, Moses, Mursau, Plumer, Ramthun, Skowronski and Sortwell; +cosponsored by Senators Bernier and L. Taylor",2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Roys, Bewley, Carpenter and Larson; +cosponsored by Representatives Spreitzer, Anderson, Sinicki, Hebl, Baldeh, Hong, Ohnstad, Hesselbein, Subeck, Andraca, Shankland, Milroy, Shelton, Pope, Bowen, Snodgrass and Stubbs",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Jagler, Cowles, Felzkowski, Nass and Stroebel; +cosponsored by Representatives Gundrum, Armstrong, Brooks, Dittrich, Edming, Horlacher, Knodl, Kuglitsch, Neylon, Penterman, Rozar, Schraa and Wichgers",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Emerson, Moore Omokunde, Baldeh, Bowen, Cabrera, Conley, Considine, Drake, Goyke, Hebl, Hintz, Ohnstad, Shelton, Sinicki, Spreitzer, Stubbs and Subeck; +cosponsored by Senators L. Taylor, Roys, Agard, Johnson and Larson",2022-02-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Penterman, Gundrum, Mursau, Tusler, Snyder and Doyle",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard and Ballweg; +cosponsored by Representatives J. Rodriguez, Armstrong, Gundrum, Neylon, Ramthun and Rozar",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Testin; +cosponsored by Representatives Kuglitsch, Wittke, Cabral-Guevara, Callahan, Dallman, James, Moses, Rozar, Sortwell, Thiesfeldt and Knodl",2021-04-28T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Bernier, Darling, Nass and Larson; +cosponsored by Representatives Tittl, Kitchens, Armstrong, Born, Cabral-Guevara, Dittrich, Jagler, Kerkman, Moses, Murphy, Neylon, Rozar, Skowronski, Snyder, Swearingen, Tranel and VanderMeer",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Nass, Bernier, Carpenter, Ringhand, Testin and Wirch; +cosponsored by Representatives Edming, Armstrong, Brooks, Callahan, Kerkman, Krug, Loudenbeck, Milroy, Murphy, Ortiz-Velez, Petryk, Rozar, Sinicki, Thiesfeldt, Tittl, Tusler, VanderMeer, Vruwink, Wichgers and Mursau",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Mursau, Gundrum, Novak, Oldenburg, Skowronski, Subeck, Thiesfeldt and Spreitzer; +cosponsored by Senators Cowles, Smith, Agard and L. Taylor",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Spiros, Cabral-Guevara, Duchow, Edming, Gundrum, Horlacher, James, Knodl, Krug, Moses, Oldenburg, Petryk, Rozar, Snyder, Swearingen, Tranel, Vorpagel, Wittke, Zimmerman, Loudenbeck and Jagler; +cosponsored by Senators Stroebel, Felzkowski, Jacque, Cowles and Stafsholt",2021-04-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Hong, Shankland, Tusler, Kitchens, Brostoff, Goyke, Milroy, Ohnstad, Snodgrass, Conley, Hebl, Vining, S. Rodriguez, Shelton, Spreitzer, Hintz, Anderson, Neubauer, Doyle, Drake, Billings, Emerson, Hesselbein, Vruwink, Stubbs, Bowen, Sinicki, Moses, Cabrera, Mursau, Subeck and Wichgers; +cosponsored by Senators Wimberger, Jacque, L. Taylor, Johnson, Agard, Erpenbach, Larson and Ringhand",2021-06-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Allen, Armstrong, Callahan, Dittrich, Edming, Gundrum, James, Katsma, Kitchens, Kuglitsch, Kurtz, Novak, Petersen, Plumer, Skowronski, Snyder, Swearingen, Tittl, Sanfelippo and Cabral-Guevara; +cosponsored by Senator Jacque",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Rozar, Armstrong, Baldeh, Brandtjen, Gundrum and Steffen; +cosponsored by Senator Jacque",2021-07-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Testin, L. Taylor, Carpenter, Ballweg, Bernier, Darling, Felzkowski, Feyen, Nass and Stroebel; +cosponsored by Representatives Zimmerman, Callahan, Sinicki, Allen, Armstrong, Brandtjen, Brooks, Dittrich, Edming, Gundrum, Horlacher, Jagler, Knodl, Kuglitsch, Macco, Moses, Murphy, Mursau, Novak, Oldenburg, Petryk, Plumer, Rozar, Sortwell, Summerfield, Thiesfeldt, Tranel, Tusler, Vorpagel, Wichgers and Skowronski",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Knodl, Baldeh, Brandtjen, Brostoff, Cabrera, Drake, Hong, Magnafici, Murphy, Sinicki, Subeck and Spreitzer; +cosponsored by Senator Darling",2021-08-19T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Roys, Erpenbach, Agard, Bewley, Larson, Pfaff, Ringhand, Smith and Wirch; +cosponsored by Representatives Hong, Andraca, Baldeh, Bowen, Brostoff, Cabrera, Conley, Drake, Emerson, Hebl, Hesselbein, Milroy, Moore Omokunde, Neubauer, Shankland, Shelton, Sinicki, Spreitzer, Stubbs, Subeck and Billings",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Erpenbach, Agard, Carpenter, Larson, Pfaff and Roys; +cosponsored by Representatives Subeck, Riemer, Anderson, Baldeh, Cabrera, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hong, Milroy, Neubauer, Pope, S. Rodriguez, Shankland, Shelton, Snodgrass, Spreitzer, Stubbs and Vruwink",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Marklein, Nass, Stroebel and Cowles; +cosponsored by Representatives Callahan, Snyder, Behnke, Born, Brandtjen, Dittrich, Edming, Gundrum, James, Kuglitsch, Murphy, Penterman, Plumer, Sanfelippo, Schraa, Mursau and Tranel",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Duchow, Skowronski, Magnafici, Edming, Steffen, Kerkman, Spiros, Krug, Brooks, Loudenbeck, Gundrum, Murphy, Knodl and Wichgers; +cosponsored by Senators Stroebel, Darling, Roth, Marklein, Wanggaard, Nass, Ballweg and Felzkowski",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Emerson, Shankland, Shelton, Andraca, Baldeh, Cabrera, Conley, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Sinicki, Snodgrass, Spreitzer, Vining, Vruwink, Brostoff, Subeck and Stubbs; +cosponsored by Senators Smith, Larson, Agard, Bewley, Johnson, Ringhand and Roys",2021-10-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, Ballweg, Bradley, Cowles, Felzkowski, Jacque, Kooyenga, Marklein, Nass and Testin; +cosponsored by Representative James",2021-01-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Snodgrass, Hintz, Anderson, Baldeh, Brostoff, Conley, Considine, Emerson, Hebl, Neubauer, Ohnstad, Pope, Sinicki, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Smith, Agard, Carpenter, Larson and Roys",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ringhand, Erpenbach, Agard, Bewley, Carpenter, Johnson, Larson, Pfaff, Roys, L. Taylor and Wirch; +cosponsored by Representatives Anderson, Billings, S. Rodriguez, Subeck, Baldeh, Cabral-Guevara, Cabrera, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hong, Milroy, L. Myers, Neubauer, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Vining and Vruwink",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Dittrich, Cabral-Guevara, Edming, Gundrum, Murphy, Mursau, Ohnstad, Shankland, Skowronski, Subeck, Tusler and Spreitzer; +cosponsored by Senators Petrowski, Smith, Cowles, Carpenter, Felzkowski, Feyen, Marklein, Pfaff and Ringhand",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Ballweg; +cosponsored by Representatives Mursau, Jagler, Loudenbeck, Moses, Murphy, Petryk, Rozar, Summerfield, Tauchen, Thiesfeldt, Tusler and Wichgers",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Hebl,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Jacque, Marklein, Nass, Pfaff, Smith and Testin; +cosponsored by Representatives Novak, Dallman, Vruwink, Armstrong, Billings, Cabral-Guevara, Callahan, Horlacher, Moses, Oldenburg, Petryk, Rozar, Schraa, Skowronski, Steffen, Subeck, Tittl, Tusler and Mursau",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Armstrong, Brandtjen, Dittrich, Kuglitsch, Murphy, Mursau, Skowronski, Tusler and Wichgers; +cosponsored by Senators Jacque and Ballweg",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Kapenga, Felzkowski and Feyen; +cosponsored by Representatives Callahan, Brandtjen, Dallman, Edming, James, Knodl, Magnafici, Moses, Mursau, Penterman, Swearingen, Krug, Wichgers and Thiesfeldt",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Senator Smith,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wichgers, Brandtjen, Murphy, Spreitzer, Snodgrass and Milroy; +cosponsored by Senator Jacque",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Bewley, Ringhand and Agard; +cosponsored by Representatives Shankland, Milroy, Considine, Doyle, B. Meyers, Vruwink, Baldeh, Cabrera, Emerson, Hebl, Hesselbein, Hong, Neubauer, Ohnstad, S. Rodriguez, Shelton, Snodgrass, Spreitzer, Subeck and Sinicki",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Moses, Murphy, Horlacher, Knodl and Sortwell; +cosponsored by Senators Roth, Jagler and Nass",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Brostoff, Considine, Moore Omokunde, Anderson, Andraca, Baldeh, Billings, Bowen, Cabrera, Conley, Doyle, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, Neubauer, Shelton, Sinicki, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Agard, Erpenbach, Larson, Ringhand, Roys and Smith",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Moses, Thiesfeldt, Allen, Armstrong, Brooks, Cabral-Guevara, Callahan, Horlacher, Plumer, Rozar, Schraa, Sortwell, Wichgers and Jagler",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Armstrong, Ohnstad, Anderson, Brooks, Baldeh, Cabrera, Conley, Doyle, Hebl, Kerkman, Knodl, McGuire, B. Meyers, Moses, Neubauer, S. Rodriguez, Rozar, Shankland, Sinicki, Skowronski, Spreitzer, Stubbs, Subeck, VanderMeer, Vruwink and Drake; +cosponsored by Senators Kooyenga, Wirch and L. Taylor",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Rozar, Allen, Armstrong, Behnke, Brooks, Gundrum, Knodl, Krug, Kuglitsch, Magnafici, Moses, Murphy, Penterman, Petersen, Wichgers and Schraa; +cosponsored by Senators Wimberger, Darling, Felzkowski, Marklein and Stroebel",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Jagler, Bernier, Bradley, Cowles, Kapenga, LeMahieu, Nass, Roth and Wanggaard; +cosponsored by Representatives Dittrich, Allen, Callahan, Gundrum, Katsma, Knodl, Krug, Kuglitsch, Loudenbeck, Mursau, Penterman, Plumer, Rozar, Schraa, Spiros, Summerfield, Tusler and Edming",2021-10-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Bernier and Roys; +cosponsored by Representatives Neylon, Duchow, Andraca, Cabral-Guevara, Haywood, J. Rodriguez and Schraa",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Armstrong, Cabral-Guevara, Gundrum, James, Knodl, Murphy, Mursau, Rozar, Skowronski, Thiesfeldt, Tusler, Wichgers and Sinicki; +cosponsored by Senators Jacque and Darling",2021-08-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Roys, Larson and Wirch; +cosponsored by Representatives Novak, Spiros, Bowen, Armstrong, Andraca, Baldeh, Billings, Brostoff, Considine, Drake, Goyke, James, Kitchens, Moore Omokunde, Mursau, L. Myers, Neubauer, Riemer, Rozar, Schraa, Shelton, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Bowen,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Bewley, Carpenter, Smith and Roys; +cosponsored by Representatives Pope, Hesselbein, Subeck, Baldeh, Spreitzer, Conley, Vruwink, Sinicki, Snodgrass and Ohnstad",2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Darling; +cosponsored by Representatives Knodl, Baldeh, Brandtjen, Brostoff, Cabrera, Drake, Hong, Magnafici, Murphy, Sinicki, Subeck and Spreitzer",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Bradley; +cosponsored by Representatives J. Rodriguez and Thiesfeldt",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski and Stroebel; +cosponsored by Representatives Swearingen, Callahan and Dittrich",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Horlacher, VanderMeer, Haywood, Allen, Bowen, Brandtjen, Brooks, Dittrich, Edming, James, Katsma, Knodl, Moses, Novak, Oldenburg, Rozar, Snodgrass, Sortwell, Spiros, Stubbs, Thiesfeldt, Tittl, Wichgers, Wittke, Zimmerman and Skowronski; +cosponsored by Senators Kooyenga, Jacque, Marklein, Stroebel and Wimberger",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Magnafici, Milroy, Sinicki, Billings, Bowen, Conley, Doyle, Drake, Emerson, Hebl, Hesselbein, Hintz, Kerkman, B. Meyers, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Spreitzer, Subeck, Tauchen, Vruwink and Murphy",2021-06-18T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Hebl,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Shelton, Shankland, Sinicki, Andraca, Brostoff, Cabrera, Emerson, Goyke, Hesselbein, B. Meyers, Moore Omokunde, Pope, S. Rodriguez, Spreitzer, Stubbs and Snodgrass; +cosponsored by Senators Smith, Bewley, Carpenter, Roys and Agard",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Jacque, Johnson, Larson, Ringhand, Roys, L. Taylor and Bewley; +cosponsored by Representatives Hebl, Anderson, Baldeh, Cabrera, Conley, Drake, Emerson, Haywood, Hesselbein, Hong, Horlacher, Milroy, S. Rodriguez, Shankland, Shelton, Sinicki, Spreitzer, Subeck, Vining and Vruwink",2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Hong, Baldeh, Subeck, Allen, Anderson, Andraca, Billings, Bowen, Cabral-Guevara, Conley, Considine, Drake, Dittrich, Duchow, Emerson, Haywood, Hebl, Hesselbein, Kerkman, B. Meyers, Milroy, Murphy, Mursau, Ohnstad, Penterman, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spiros, Spreitzer, Thiesfeldt, Tranel, Tusler, Vining, Vruwink, Wichgers and Kuglitsch; +cosponsored by Senators Roys, Agard, Ballweg, Bewley, Carpenter, Cowles, Darling, Erpenbach, Jacque, Johnson, Kooyenga, Larson, Marklein, Pfaff, Ringhand, Smith and Wirch",2022-01-20T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Mursau, Subeck, Anderson, Andraca, Bowen, Cabral-Guevara, Emerson, Hebl, Hesselbein, S. Rodriguez, Shankland and Spreitzer; +cosponsored by Senators Kooyenga, Cowles, Ballweg, Jacque, Johnson, Ringhand, Roys and Smith",2021-05-13T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tusler, Edming, Armstrong, Callahan, Steffen, Dittrich, Petersen, Brandtjen, Tittl, Gundrum, Novak, Kurtz, Krug, Knodl, James, Plumer, Skowronski, Kuglitsch, Macco, Born, Murphy, Kitchens, Swearingen, Sanfelippo and Cabral-Guevara; +cosponsored by Senators Wanggaard and Jacque",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Allen, Brandtjen, Callahan, Dittrich, Gundrum, Horlacher, Magnafici, Ramthun, Wichgers and Murphy; +cosponsored by Senators Stroebel, Jacque and Wanggaard",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Jacque and Nass; +cosponsored by Representatives Dittrich, Brandtjen, Cabral-Guevara, Rozar, Tittl, Gundrum, Sortwell, Tusler, Plumer, Skowronski, James, Allen, Kuglitsch, Moses, Ramthun and Sanfelippo",2021-04-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Krug, Mursau, Edming, Callahan, Swearingen, Behnke, Spiros, Snyder, Moses, Rozar, Shankland, B. Meyers and Spreitzer; +cosponsored by Senator Bewley",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brandtjen, Murphy, Wichgers and Knodl; +cosponsored by Senator Jacque",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin and Cowles; +cosponsored by Representatives VanderMeer, Loudenbeck, Sortwell and Kurtz",2021-03-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Edming and B. Meyers; +cosponsored by Senators Petrowski and Bewley",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wichgers, Skowronski, Moses and Murphy; +cosponsored by Senator Jacque",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Macco, Steffen, Baldeh, Edming, Gundrum, Horlacher, Knodl, Kuglitsch, Loudenbeck, Moses, Murphy, Penterman, Spiros, Wittke and Zimmerman; +cosponsored by Senators Stroebel, Cowles, Ballweg, Bernier, Felzkowski, Feyen, Nass, Petrowski, Roys and Marklein",2021-09-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Stroebel, Darling, Felzkowski, Kapenga, Marklein, Petrowski, Wanggaard, Testin, Wimberger, Stafsholt, Nass, Kooyenga, Ballweg and Bradley; +cosponsored by Representatives Thiesfeldt, Horlacher, Brooks and Schraa",2021-01-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Dittrich, Cabral-Guevara, Krug, Moses, Mursau, Petryk, Spreitzer, Subeck, Tauchen and Tittl; +cosponsored by Senators Jacque and L. Taylor",2021-07-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Felzkowski, Jacque, Marklein, Nass, Stafsholt and Stroebel; +cosponsored by Representatives Knodl, Rozar, Allen, Armstrong, Brandtjen, Brooks, Cabral-Guevara, Callahan, Dallman, Dittrich, Edming, Gundrum, Horlacher, James, Krug, Kuglitsch, Kurtz, Magnafici, Moses, Mursau, Neylon, Petryk, Ramthun, Sanfelippo, Schraa, Skowronski, Sortwell, Steffen, Swearingen, Summerfield, Thiesfeldt, Tittl, Tusler, VanderMeer and Zimmerman",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Bernier, Cowles, Feyen, Pfaff, Testin and Wimberger; +cosponsored by Representatives Moses, Armstrong, Brandtjen, Cabrera, Dittrich, Gundrum, Kurtz, Murphy, Novak, Oldenburg, Petryk, Pronschinske, Rozar, Skowronski, Sortwell, Tauchen, Thiesfeldt, Tranel, Tusler, Vruwink, Kerkman and Tittl",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman, Cabral-Guevara, Edming, Gundrum, Novak, Oldenburg and Zimmerman; +cosponsored by Senators Stafsholt and Felzkowski",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Stroebel, Wimberger, Felzkowski, Nass, Petrowski and Wanggaard; +cosponsored by Representatives Steffen, Edming, Gundrum, Knodl, Krug, Murphy, Neylon, Skowronski, Spiros, VanderMeer and Wichgers",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Darling, Felzkowski, Jagler, Marklein, Stafsholt, Stroebel and Wanggaard; +cosponsored by Representatives Behnke, Cabral-Guevara, Callahan, Edming, James, Magnafici, Mursau, Snyder and Krug",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sanfelippo, Brandtjen, Horlacher, James, Knodl, Kuglitsch, Magnafici, Murphy, Ramthun, Rozar and Wichgers; +cosponsored by Senators Bradley, Jacque, Feyen and Stroebel",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Felzkowski, Ballweg, Marklein, Nass and Wanggaard; +cosponsored by Representatives Callahan, Schraa, Bowen, Brandtjen, Brooks, Edming, Kitchens, Rozar, Snyder, Spiros and VanderMeer",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sinicki, Neubauer, Haywood, Spreitzer, Ohnstad, Shankland, Bowen, Doyle, Shelton, Andraca, Drake, Emerson, Snodgrass, Cabrera, Stubbs, Pope, Hong, Conley, Subeck, Vruwink, Milroy, Hebl and Baldeh; +cosponsored by Senators Wirch, Ringhand, Johnson, Bewley, Agard, Erpenbach, Carpenter, Roys and Larson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sinicki, Moore Omokunde, Bowen, Emerson, Baldeh, Hebl, Stubbs, Brostoff, Cabrera, Hesselbein, Anderson, Spreitzer, Shelton, Neubauer, B. Meyers, McGuire, Snodgrass, Hong, Ohnstad, Goyke, L. Myers and Pope; +cosponsored by Senators Carpenter, Johnson, Roys, Wirch and Larson",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Dittrich,2021-03-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Darling, Felzkowski, Bradley, Nass, Testin, Wanggaard and Wimberger; +cosponsored by Representatives Behnke, Thiesfeldt, Dittrich, Armstrong, Born, Brandtjen, Cabral-Guevara, Callahan, Gundrum, Knodl, Kuglitsch, Magnafici, Ramthun, Sortwell, Tauchen, Tittl, VanderMeer, Wichgers, Zimmerman and Schraa",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Marklein and Ballweg; +cosponsored by Representatives Dittrich, Gundrum, Penterman, Mursau, Snyder, Thiesfeldt, Tusler and Doyle",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Murphy, Behnke, Cabral-Guevara, Moses, Rozar, Wichgers, Thiesfeldt, Brandtjen, Brooks, Horlacher, James and Schraa; +cosponsored by Senators Stroebel and Nass",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and L. Taylor; +cosponsored by Representatives Sortwell, Knodl, Cabrera, Gundrum, Moses, Murphy, Mursau, Subeck, Thiesfeldt, Wichgers and Shankland",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger and Jacque; +cosponsored by Representatives Tauchen, Steffen, Mursau and Shelton",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Agard and Wirch; +cosponsored by Representatives Hebl, Doyle, Hong, Ohnstad, Shankland, Shelton, Sinicki, Subeck and Vruwink",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Kooyenga; +cosponsored by Representative Loudenbeck",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snodgrass, Considine, Anderson, Andraca, Baldeh, Behnke, Billings, Cabral-Guevara, Cabrera, Conley, Hebl, Hesselbein, Ohnstad, Neubauer, S. Rodriguez, Shankland, Shelton, Sinicki, Spreitzer, Stubbs, Subeck and Vining; +cosponsored by Senators Pfaff, Agard, Smith, Carpenter, Larson, Roys, L. Taylor and Wirch",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Armstrong and Petryk,2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Brandtjen, Bowen, Dittrich, Gundrum, Moses, Mursau, Skowronski, Tusler and Wichgers; +cosponsored by Senators Jacque and Ballweg",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Legislative Council,2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Subeck, Cabrera, Hong, Anderson, Andraca, Bowen, Brostoff, Conley, Considine, Emerson, Haywood, Hebl, Hesselbein, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Milroy, Vining and Vruwink; +cosponsored by Senators Johnson, Ballweg, L. Taylor, Agard, Roys, Bewley, Erpenbach, Larson, Pfaff, Ringhand, Smith, Wirch and Carpenter",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Hebl,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives S. Rodriguez, Emerson, Subeck, McGuire, Snodgrass, Drake, Anderson, Baldeh, Billings, Bowen, Cabrera, Conley, Considine, Haywood, Hebl, Hesselbein, Hong, B. Meyers, Milroy, L. Myers, Neubauer, Pope, Shankland, Shelton, Sinicki, Spreitzer, Stubbs, Vining, Vruwink, Ohnstad and Andraca; +cosponsored by Senators Johnson, Erpenbach, Agard, Bewley, Carpenter, Larson, Roys, Smith and Wirch",2021-05-13T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin and L. Taylor; +cosponsored by Representatives VanderMeer, Krug, Kurtz, Armstrong, Callahan, Edming, Moses, Mursau, Novak, Oldenburg, Rozar and Tusler",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Employment Relations,2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Cowles, Pfaff, Ringhand, Wanggaard, Roth and Ballweg; +cosponsored by Representatives Spiros, Born, Callahan, Conley, Duchow, Loudenbeck, Murphy, Novak, Ortiz-Velez, Plumer, Rozar, Sinicki, Skowronski and Spreitzer",2021-10-26T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Marklein, Felzkowski, Ballweg and Feyen; +cosponsored by Representatives Kitchens, Thiesfeldt, Krug, Armstrong, Cabral-Guevara, Duchow, Edming, James, Knodl, Kurtz, Loudenbeck, Moses, Mursau, Oldenburg, Petryk, Rozar, Snyder, Swearingen, Tranel, Wittke and Zimmerman",2021-04-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Stroebel, Bernier and Wanggaard",2021-01-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Nass and Cowles; +cosponsored by Representatives August, Loudenbeck, Horlacher, Spiros, Wichgers, Brooks, Rozar, Steffen, Kuglitsch, Gundrum, Murphy, Subeck, Dittrich, Brandtjen, Mursau, Kurtz, Moses and Born",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Cowles, Darling, Marklein and Ringhand; +cosponsored by Representatives Kuglitsch, Zimmerman, Wittke, Armstrong, Dallman, Horlacher, Murphy, Mursau, Neylon, Novak, Rozar, Schraa, Skowronski, Snyder, Spiros and Tusler",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Wanggaard, Bernier, Felzkowski, Nass and Stroebel; +cosponsored by Representatives Pronschinske, Allen, Brandtjen, Callahan, Edming, Gundrum, Knodl, Kuglitsch, Magnafici, Rozar, Schraa and Wichgers",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Jacque and Wanggaard; +cosponsored by Representatives James, Allen, Brandtjen, Callahan, Dittrich, Gundrum, Horlacher, Magnafici, Ramthun, Wichgers and Murphy",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Oldenburg, Steineke, Billings, Cabrera, Doyle, Edming, Kitchens, Krug, Loudenbeck, B. Meyers, Milroy, Moses, Mursau, Novak, Rozar, Skowronski, Subeck, Tauchen, Thiesfeldt, Tusler and Spreitzer; +cosponsored by Senators Cowles, Bewley, Feyen, Petrowski, Ringhand, Testin and Wirch",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Agard, Carpenter, Johnson, Larson and L. Taylor; +cosponsored by Representatives Goyke, Andraca, Baldeh, Conley, Considine, Emerson, Haywood, Hebl, B. Meyers, Pope, Riemer, S. Rodriguez, Shankland, Sinicki, Spreitzer, Subeck, Vining and Hintz",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Petrowski; +cosponsored by Representative August",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snodgrass, Considine, Moore Omokunde, Anderson, Bowen, Conley, Drake, Emerson, Hebl, Neubauer, Ohnstad, Pope, Shelton, Sinicki, Spreitzer, Subeck and Vruwink; +cosponsored by Senator Erpenbach",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Roth, Nass and Wanggaard; +cosponsored by Representatives Gundrum, Thiesfeldt, Wittke, Brandtjen, Knodl, Macco, Magnafici, Moses, Murphy, Penterman, Rozar, Steffen and Vorpagel",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Roth, Stroebel and Wanggaard; +cosponsored by Representatives Wittke, Thiesfeldt, Dittrich, Brandtjen, Knodl, Macco, Magnafici, Murphy and Rozar",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski and Stroebel; +cosponsored by Representatives Dallman and Brooks",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Jagler and Nass; +cosponsored by Representatives James, Dittrich, Callahan, Armstrong, Steffen, J. Rodriguez, Edming, Spiros, Petersen, Brandtjen, Tittl, Gundrum, Novak, Magnafici, Kurtz, Snyder, Krug, Plumer, Oldenburg, Skowronski, Petryk, Sortwell, Behnke, Kuglitsch, Murphy, Kitchens, Mursau, Swearingen and Cabral-Guevara",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Bewley, Larson, Ringhand, Roys, Smith, L. Taylor and Wirch; +cosponsored by Representatives Cabrera, Spreitzer, Neubauer, Snodgrass, Anderson, Conley, Considine, Emerson, Hebl, Hesselbein, Hintz, Hong, Milroy, Moore Omokunde, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Stubbs, Subeck and Vruwink",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Knodl, L. Myers, Baldeh, Moses, Rozar, Skowronski, Sinicki, Spreitzer and Tusler; +cosponsored by Senators Feyen, L. Taylor, Cowles, Agard, Ballweg, Carpenter and Roys",2021-09-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt and Pfaff; +cosponsored by Representatives Oldenburg, VanderMeer, Bowen, Edming, Magnafici, Moses, Mursau, Novak and Plumer",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Penterman, Kuglitsch, Allen, Magnafici, Skowronski, Tusler, Dittrich and Moses; +cosponsored by Senator Stroebel",2022-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, L. Taylor, Larson, Carpenter, Ringhand, Agard and Cowles; +cosponsored by Representatives James, Zimmerman, Ortiz-Velez, Krug, Armstrong, Moses, Cabral-Guevara, Emerson, Milroy, Tittl, Magnafici, Baldeh, Spiros, Plumer, Snodgrass, Dittrich, Summerfield, Drake, Sinicki, Callahan, Billings, Hesselbein, Conley, Subeck, Stubbs, Spreitzer, Considine, Shelton, B. Meyers, Duchow, Allen, Tusler, Mursau, Schraa, Bowen, Horlacher, Knodl and Cabrera",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Cowles, Petrowski, Pfaff and Wanggaard; +cosponsored by Representatives Oldenburg, Plumer, Cabral-Guevara, Considine, Gundrum, Krug, Rozar, Snyder, Spiros, Tauchen, Tittl and VanderMeer",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Smith, Ringhand, Larson, Johnson, Roys, Erpenbach, Agard, L. Taylor and Carpenter; +cosponsored by Representatives Neubauer, Hesselbein, L. Myers, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Felzkowski and Marklein; +cosponsored by Representatives Sortwell, Allen, Brandtjen, Edming, Gundrum, Murphy, Penterman, Steffen, Thiesfeldt and Tittl",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin and Felzkowski; +cosponsored by Representatives Mursau and Edming",2021-09-15T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard and Jacque; +cosponsored by Representatives Tusler, Edming, Armstrong, Callahan, Steffen, Dittrich, Petersen, Brandtjen, Tittl, Gundrum, Novak, Kurtz, Krug, Knodl, James, Plumer, Skowronski, Kuglitsch, Macco, Born, Murphy, Kitchens, Swearingen and Dallman",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Jacque and Stroebel; +cosponsored by Representatives Milroy, Allen, Andraca, Bowen, Cabral-Guevara, B. Meyers, Pope, Rozar, Sinicki and Stubbs",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators L. Taylor, Johnson, Agard, Erpenbach, Roys, Smith and Larson; +cosponsored by Representatives Stubbs, Cabrera, Bowen, Anderson, Baldeh, Brostoff, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Subeck and Vining",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Callahan, Moses, Mursau, Novak, J. Rodriguez, Snyder, Spreitzer, Swearingen and Zimmerman; +cosponsored by Senators Petrowski, Ballweg, Bewley, Cowles, Jacque and Marklein",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives L. Myers, Andraca, Baldeh, Bowen, Brostoff, Conley, Considine, Drake, Emerson, Goyke, Hebl, Hong, Moore Omokunde, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck and Vining; +cosponsored by Senators L. Taylor, Ringhand, Agard, Johnson, Larson and Roys",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth and Stroebel; +cosponsored by Representatives Penterman, Kitchens, Skowronski, Armstrong, Oldenburg, Loudenbeck, Tranel, Cabral-Guevara, Gundrum and Moses",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Ballweg, Wimberger, Pfaff and Darling; +cosponsored by Representatives Dittrich, Magnafici, Vruwink, Penterman, Mursau, Armstrong, Milroy, Duchow, Gundrum, Subeck, Moore Omokunde, Spreitzer, Doyle, Petryk, Brandtjen, Shankland, Drake and Behnke",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wirch, Smith, Larson and Carpenter; +cosponsored by Representatives McGuire, Andraca, Ohnstad, Anderson, Brostoff, Cabrera, Conley, Emerson, Hebl, Hong, Kerkman, B. Meyers, Milroy, Neubauer, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and L. Taylor; +cosponsored by Representatives Mursau, Spiros, Brostoff, L. Myers, Ramthun, Sinicki, Subeck and Tusler",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators LeMahieu, Wanggaard, Feyen, Ballweg and Darling; +cosponsored by Representatives Vos, Magnafici, Armstrong, Born, Cabral-Guevara, Dittrich, Duchow, Edming, Gundrum, James, Kuglitsch, Moses, Novak, Steffen, Vorpagel, Wittke, Schraa, Kurtz and Rozar",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Agard, Carpenter, Cowles and Marklein; +cosponsored by Representatives Dallman, Krug, Cabral-Guevara, Considine, Kerkman, Kitchens, Mursau, Spiros, Tauchen, Tranel and Vruwink",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Jagler and Nass; +cosponsored by Representatives Moses, Murphy, Knodl, Horlacher and Sortwell",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Stroebel; +cosponsored by Representatives Magnafici, Dittrich, Allen, Armstrong, Brandtjen, Brooks, Cabral-Guevara, Callahan, Edming, Gundrum, Horlacher, Jagler, James, Knodl, Kuglitsch, Moses, Plumer, Ramthun, Schraa, Skowronski, Sortwell, Tauchen, Thiesfeldt, Tittl, Wichgers and Wittke",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Neubauer, Moore Omokunde, Hong, Anderson, Andraca, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, B. Meyers, Milroy, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining; +cosponsored by Senators Larson, Agard, Johnson, Erpenbach, Roys, L. Taylor and Smith",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Behnke, Edming, Ramthun, Subeck and Tusler; +cosponsored by Senators Jacque and Ballweg",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vos, Wittke, Cabral-Guevara, Dittrich, Duchow, Kerkman, Krug, Kuglitsch, Loudenbeck, Magnafici, Murphy, Mursau, Rozar, Spiros, Steffen, Tranel, Neubauer, Sinicki and Vruwink; +cosponsored by Senators Wanggaard, Darling, Marklein, Nass, Petrowski, Carpenter and Wirch",2022-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Anderson, Brostoff, Sinicki, Subeck, Hebl, Shankland, Ohnstad, Baldeh, Neubauer, Snodgrass, Cabrera, Milroy, Considine, Pope, Spreitzer, Conley, Shelton and Andraca; +cosponsored by Senators Larson, Carpenter, Roys, Agard and Johnson",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Penterman, Brandtjen, Cabral-Guevara, Gundrum, Knodl, Murphy, Rozar and Wichgers; +cosponsored by Senators Jacque, Wanggaard, Ballweg and Darling",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Cabrera, Gundrum, Knodl, Moses, Murphy, Mursau, Subeck, Thiesfeldt, Wichgers and Shankland; +cosponsored by Senators Jacque and L. Taylor",2021-05-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Kooyenga, Carpenter, Agard, Bewley, Felzkowski, Feyen, Johnson, Larson, Pfaff, Ringhand, Smith, L. Taylor and Wirch; +cosponsored by Representatives Skowronski, Sinicki, Allen, Anderson, Andraca, Armstrong, Baldeh, Billings, Bowen, Brostoff, Cabral-Guevara, Cabrera, Conley, Considine, Dittrich, Doyle, Drake, Edming, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, Horlacher, James, Kerkman, Kurtz, Macco, McGuire, B. Meyers, Milroy, Moore Omokunde, Mursau, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Petryk, Plumer, Pope, Penterman, Riemer, S. Rodriguez, Schraa, Shankland, Shelton, Snodgrass, Spreitzer, Spiros, Stubbs, Subeck, Summerfield, Thiesfeldt, Tittl, Tusler, Vining, Vruwink, Wichgers and Wittke",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Smith, Johnson, L. Taylor, Agard, Carpenter, Roys, Erpenbach and Bewley; +cosponsored by Representatives Pope, Sinicki, Andraca, Spreitzer, Brostoff, Anderson, Hesselbein, Goyke, B. Meyers, Cabrera, Snodgrass, L. Myers, Shankland, Drake, Emerson, Shelton, Hebl, Conley, Subeck, S. Rodriguez, Ohnstad, Stubbs, Milroy, Vruwink and Hong",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Carpenter, Roys, Bewley, L. Taylor and Agard; +cosponsored by Representatives B. Meyers, S. Rodriguez, Conley, Cabrera, Andraca, Spreitzer, Hebl, Haywood, Shankland and Emerson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +Introduced privileged by Representative Ramthun,2022-01-25T06:00:00+00:00,[],WI,2021 +"Introduced by Senators Erpenbach, Smith, Carpenter, Bewley, Wirch, L. Taylor, Ringhand, Larson, Johnson, Roys, Agard and Pfaff; +cosponsored by Representatives Anderson, S. Rodriguez, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Moses, Brooks, Cabral-Guevara, Dittrich, Knodl, Krug, Kuglitsch, Schraa and Tauchen",2022-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Allen, Cabral-Guevara and S. Rodriguez; +cosponsored by Senator Jacque",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and L. Taylor; +cosponsored by Representatives Tusler, Penterman, Sinicki and Spreitzer",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives S. Rodriguez, Subeck, Sinicki, Hong, Stubbs, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, McGuire, B. Meyers, Milroy, Mursau, L. Myers, Neubauer, Ortiz-Velez, Pope, Riemer, Rozar, Shankland, Shelton, Snodgrass, Spreitzer, Vining, Vruwink and Moore Omokunde; +cosponsored by Senators Johnson, Agard, Bernier, Bewley, Carpenter, Erpenbach, Larson, Pfaff, Ringhand, Roys, Smith, L. Taylor and Wirch",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Gundrum, Cabral-Guevara, Dittrich, Horlacher and Murphy; +cosponsored by Senators Testin and Stroebel",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Committee on Labor and Integrated Employment,2022-01-26T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Marklein, Stafsholt, L. Taylor and Testin; +cosponsored by Representatives Kurtz, Dallman, Edming, James, Krug, Mursau, Novak, Oldenburg, Plumer, Rozar, Sinicki, Spiros, Tauchen, Thiesfeldt and VanderMeer",2021-04-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski and Bernier; +cosponsored by Representatives Snyder, Schraa, Rozar, Edming, Kitchens, Krug, Loudenbeck, Macco, Novak, Sortwell, Tittl, Brooks, Cabral-Guevara, James, Knodl, Plumer, Spiros and Summerfield",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Haywood, Anderson, Andraca, Baldeh, Bowen, Billings, Cabrera, Conley, Emerson, Hesselbein, Hong, Milroy, Ohnstad, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Ringhand, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Roys, Smith and Wirch",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives L. Myers, Novak, Drake, Andraca, Considine, Emerson, Goyke, Kuglitsch, Moore Omokunde, Murphy, Ohnstad, Ortiz-Velez, Sinicki, Stubbs, Vruwink and Tusler; +cosponsored by Senators Johnson, Bernier, Ballweg and Carpenter",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Katsma, Skowronski, Wichgers, Bowen, Brandtjen, Dittrich, Drake, Duchow, Loudenbeck, Mursau, Novak, Ortiz-Velez, J. Rodriguez, Rozar, Sinicki, Subeck, Thiesfeldt, Andraca and Tusler; +cosponsored by Senators Kooyenga, Carpenter, Agard, Darling and Felzkowski",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Thiesfeldt; +cosponsored by Senator Darling",2022-02-14T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Testin, Carpenter, Larson, Marklein and Ringhand; +cosponsored by Representatives Loudenbeck, Novak, Plumer, Shankland, Ramthun, Spiros, Armstrong, Brandtjen, Cabral-Guevara, Cabrera, Callahan, Conley, Considine, Dallman, Dittrich, Duchow, James, Kerkman, Kitchens, Krug, Murphy, Mursau, Shelton, Sinicki, Skowronski, Snodgrass, Spreitzer, Subeck, Stubbs, VanderMeer, Vruwink, Wittke and Zimmerman",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kitchens, Novak, Tranel, Shankland, Krug, Hong, Milroy, Mursau, Neubauer, Oldenburg, Penterman, Plumer, Tauchen, Petryk, Subeck, Spiros, Considine, Pope, Vining, Spreitzer, Ohnstad, Conley and Tusler; +cosponsored by Senators Cowles, Testin, Ballweg, Bernier, Petrowski, Pfaff, Ringhand, Roys, Smith and Wimberger",2021-12-02T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Rozar, VanderMeer, Dittrich, Armstrong, Born, Cabral-Guevara, Callahan, Duchow, Edming, Gundrum, Krug, Kurtz, Loudenbeck, Moses, Mursau, Oldenburg, Petryk, Plumer, Snyder, Swearingen, Tranel, Vorpagel, Wittke and Zimmerman; +cosponsored by Senators Bernier, Felzkowski and Stafsholt",2021-04-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Ballweg and Wanggaard; +cosponsored by Representatives Spiros, Armstrong, August, Macco, Steffen and Knodl",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Wanggaard, Ballweg and Darling; +cosponsored by Representatives Sortwell, Steffen, Bowen, Brandtjen, Cabral-Guevara, Gundrum, Macco, Magnafici, Moses, Murphy, Ramthun, Skowronski, Tusler, Wichgers, Knodl and Neylon",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Thiesfeldt, Dittrich, Murphy, Penterman, Moses, Rozar, Brandtjen, Macco, Knodl and Magnafici; +cosponsored by Senators Roth, Darling, Nass, Wanggaard, Stroebel and Jagler",2022-02-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Nass, Marklein, Stroebel, Bernier and Felzkowski; +cosponsored by Representatives VanderMeer, Neylon, Magnafici, Allen, Cabral-Guevara, Dittrich, Horlacher, Knodl, Moses, Plumer, Sortwell, Thiesfeldt and Wichgers",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Felzkowski, Marklein, Nass, Wanggaard and Ballweg; +cosponsored by Representatives Murphy, Mursau, Armstrong, Brooks, Cabral-Guevara, Callahan, Dallman, Edming, Gundrum, Horlacher, Krug, Moses, Plumer, Pronschinske, Ramthun, J. Rodriguez, Skowronski, Sortwell, Stubbs, Summerfield, Tittl, Tranel, Tusler and Wichgers",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen and Stroebel; +cosponsored by Representatives Wittke, Vos, Armstrong, Brandtjen, Dittrich, Duchow, Horlacher, Kuglitsch, Magnafici, Moses, Murphy, Thiesfeldt and Wichgers",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Edming, Petersen, Doyle, Tauchen, Spiros, Sinicki, L. Myers, Mursau, Milroy, Knodl, Kuglitsch, Wichgers, Moses, Subeck, Tusler, Ohnstad, Murphy and Allen; +cosponsored by Senators Kooyenga, Darling, Cowles, Marklein, Wirch and Ballweg",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wichgers, Cabral-Guevara, Murphy and Spiros; +cosponsored by Senator Bernier",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wichgers, Cabral-Guevara, Murphy and Spiros; +cosponsored by Senator Bernier",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Larson; +cosponsored by Representatives Shelton, Snodgrass, Hong, Moore Omokunde, Drake, Brostoff, Neubauer, Hebl, Spreitzer, Andraca, Emerson, Hesselbein, Stubbs, Bowen, Sinicki, Cabrera and Subeck",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Testin and Pfaff; +cosponsored by Representatives Novak, Swearingen, Tranel, Armstrong, Conley, Edming, Kurtz, Penterman, J. Rodriguez, Snyder, Spiros, Steffen, Tittl, Tusler, Schraa and Vruwink",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Wanggaard, Bradley, Felzkowski, Jagler, Pfaff, Roys, Stroebel and Testin; +cosponsored by Representatives Vorpagel, Armstrong, Cabral-Guevara, Callahan, Dallman, Edming, Gundrum, James, Kitchens, Knodl, Moses, Neylon, Novak, Oldenburg, Penterman, Rozar, Schraa, Sinicki, Sortwell, Spiros, Swearingen, Tauchen, Tittl, VanderMeer, Wittke and Thiesfeldt",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Erpenbach, Roys, Wirch, Agard, Ringhand, Larson, Johnson and Carpenter; +cosponsored by Representatives Hesselbein, Drake, Emerson, S. Rodriguez, Shelton, Conley, Andraca, Vruwink, Spreitzer, Neubauer, Hebl, Ohnstad, Milroy, Cabrera, Bowen, Considine, Stubbs, Shankland, Subeck, Hong, Baldeh, L. Myers and Pope",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Allen, Krug, Kuglitsch and Subeck; +cosponsored by Senator Ballweg",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Wanggaard and Ringhand; +cosponsored by Representatives Wichgers, Penterman, Allen, Brandtjen, Emerson, Gundrum, Milroy, J. Rodriguez, Skowronski, Subeck, Thiesfeldt and Schraa",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Stroebel, Cowles, Darling, Jacque and Kooyenga; +cosponsored by Representatives J. Rodriguez, Dittrich, Born, Armstrong, Dallman, James, Kitchens, Kuglitsch, Macco, Magnafici, Murphy, Rozar, Skowronski, Spiros, Summerfield, Tauchen, Tittl, Tranel, Vorpagel, Wichgers, Wittke, Zimmerman and Schraa",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ballweg, Jagler, L. Taylor and Ringhand; +cosponsored by Representatives Mursau, Krug, Edming, Swearingen, Tittl, Moses, Callahan, Milroy, Sinicki, Hebl, Andraca, Snodgrass and Tusler",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Johnson; +cosponsored by Representative Sinicki",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Marklein, Pfaff and Testin; +cosponsored by Representatives Kurtz, Brooks, Duchow, Edming, James, Kuglitsch, Macco, Moses, Murphy, Novak, Oldenburg, Penterman, Rozar, Shankland, VanderMeer, Vruwink and Wichgers",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Erpenbach, Carpenter, Johnson, Agard, Smith, Roys and Pfaff; +cosponsored by Representatives Pope, Andraca, Spreitzer, Vruwink, Hebl, Emerson, Shelton, Conley, Sinicki, Considine, Hesselbein, Milroy, Bowen, Cabrera, Shankland and Hong",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Haywood,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Ballweg and L. Taylor; +cosponsored by Representatives Rozar, Skowronski, Armstrong, Brandtjen, Cabral-Guevara, Edming, Gundrum, Murphy, Sinicki, Spiros, Subeck and Wichgers",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Stafsholt; +cosponsored by Representatives Gundrum, Moses, Rozar, Thiesfeldt and Wichgers",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Moses, Thiesfeldt, Allen, Armstrong, Brooks, Cabral-Guevara, Callahan, Horlacher, Plumer, Rozar, Schraa, Sortwell, Wichgers and Ramthun; +cosponsored by Senator Jacque",2021-05-04T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Senator Jacque,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Agard, Johnson, Larson and Smith; +cosponsored by Representatives McGuire, Andraca, Conley, Considine, Drake, Emerson, Goyke, Hebl, Hesselbein, B. Meyers, Milroy, Ohnstad, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Nass and Roys; +cosponsored by Representatives Knodl, Gundrum, Moses and Tauchen",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Carpenter, Roys, Agard and Smith; +cosponsored by Representatives Brostoff, Hebl, Anderson, Sinicki, Shelton, Stubbs and Cabrera",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Cowles; +cosponsored by Representative Steineke",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Wittke, Brandtjen, Gundrum, Knodl, Macco, Magnafici, Moses, Murphy, Rozar and Steffen; +cosponsored by Senators Darling, Roth and Wanggaard",2022-02-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Nass; +cosponsored by Representatives Cabral-Guevara, Rozar, Andraca, Armstrong, Brandtjen, Dittrich, Gundrum, Horlacher, James, Mursau, Sortwell, Subeck, Thiesfeldt and Tusler",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Armstrong, Gundrum and Allen; +cosponsored by Senators Roth and Darling",2022-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Kitchens and Wittke; +cosponsored by Senators Bernier, Darling, Ballweg and Felzkowski",2022-02-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Felzkowski and Marklein; +cosponsored by Representatives Plumer, Billings, Brooks, Gundrum, Knodl, Moses, Murphy, Rozar and Subeck",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Employment Relations,2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Bernier and Darling; +cosponsored by Representatives Steffen, Allen, Dittrich, Edming, Knodl, Kuglitsch, Murphy, Mursau and Thiesfeldt",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Loudenbeck, Sortwell, Kurtz, James, Andraca, Armstrong, Conley, Dittrich, Duchow, Kerkman, Kuglitsch, L. Myers, Moses, Mursau, Spreitzer, Subeck, VanderMeer, Vruwink and Swearingen; +cosponsored by Senators Marklein, Darling, Ballweg, Bewley, Cowles, Petrowski and Felzkowski",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Haywood; +cosponsored by Senator Johnson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Bewley, Bradley, Cowles, Felzkowski, Kooyenga, Nass, Testin and Wanggaard; +cosponsored by Representatives Spiros, Moses, Born, Callahan, Edming, Horlacher, Kitchens, Knodl, Loudenbeck, Macco, Murphy, Petryk, Ramthun, Rozar, Skowronski, Snyder, Thiesfeldt, Tittl, Tusler, VanderMeer and Wichgers",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Armstrong, Brooks and Knodl; +cosponsored by Senators Marklein and Kooyenga",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Bernier; +cosponsored by Representatives Wichgers, Cabral-Guevara, Murphy and Spiros",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Roth; +cosponsored by Representatives Murphy, Cabral-Guevara, Kuglitsch, Sortwell, Tusler and Wichgers",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Ballweg, Bernier, Bewley, Darling, Felzkowski, Larson, Pfaff, Roys and Smith; +cosponsored by Representatives Zimmerman, Baldeh, Billings, Born, Brostoff, Doyle, Duchow, Emerson, Horlacher, Krug, Kuglitsch, Loudenbeck, Milroy, Moses, Neubauer, Oldenburg, Petryk, Ramthun, Stubbs, Wichgers and Wittke",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Felzkowski and Wanggaard; +cosponsored by Representatives Dallman, Summerfield, Dittrich, Gundrum, Mursau, Subeck, Thiesfeldt, Swearingen and Tusler",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Krug, Rozar and VanderMeer; +cosponsored by Senators Petrowski, Bernier and Testin",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brandtjen, Allen, Gundrum, Knodl, Magnafici, Moses, Plumer, Ramthun, Rozar, Skowronski and Wichgers; +cosponsored by Senators Jacque, Bernier, Felzkowski, Feyen, Nass, Stroebel and Wanggaard",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Nass, Jacque, Bernier, Stroebel and Roth; +cosponsored by Representatives August, Pronschinske, Moses, Sortwell, Vorpagel, Macco, Plumer, Rozar, Murphy, Wittke, Tusler, Wichgers, Callahan, Dallman, Horlacher, Armstrong, VanderMeer, Cabral-Guevara, Spiros, Schraa, Brandtjen, Kurtz, Swearingen, Loudenbeck, Ramthun, Kuglitsch, Born, Vos and Thiesfeldt",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, Emerson, Conley, Sinicki, Anderson, Andraca, Baldeh, Considine, Drake, Goyke, Hebl, Hesselbein, Hong, S. Rodriguez, Spreitzer, Stubbs, Subeck and Vining; +cosponsored by Senators Larson, Agard, Bewley and Smith",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman, Armstrong, Behnke, Brandtjen, Callahan, Dittrich, Edming, Gundrum, James, Kitchens, Knodl, Krug, Kuglitsch, Kurtz, Loudenbeck, Macco, Murphy, Mursau, Novak, Oldenburg, Penterman, Petersen, Plumer, J. Rodriguez, Sanfelippo, Schraa, Skowronski, Snyder, Sortwell, Spiros, Steffen, Swearingen, Tittl, Tranel and Cabral-Guevara; +cosponsored by Senators Roth, Ballweg, Darling, Jacque, Marklein and Nass",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Plumer, Billings, Brooks, Gundrum, Knodl, Moses, Murphy, Rozar and Subeck; +cosponsored by Senators Bernier, Felzkowski and Marklein",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Carpenter; +cosponsored by Representatives Tittl, Moses, Subeck, Armstrong, Cabral-Guevara, Dittrich, Krug, Rozar and Wichgers",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Hesselbein, Sinicki, Brostoff, Anderson, Shankland, Goyke, B. Meyers, Cabrera, Snodgrass, L. Myers, Vining, Drake, Emerson, Shelton, Hebl, Conley, Subeck, S. Rodriguez, Ohnstad, Stubbs, Milroy, Vruwink and Hong; +cosponsored by Senators Larson, Smith, Johnson, L. Taylor, Agard, Carpenter, Roys, Erpenbach and Bewley",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Darling, Ballweg, Bewley, Cowles, Petrowski and Felzkowski; +cosponsored by Representatives Loudenbeck, Sortwell, Kurtz, James, Andraca, Armstrong, Conley, Dittrich, Duchow, Kerkman, Kuglitsch, Moses, Mursau, L. Myers, Spreitzer, Subeck, VanderMeer and Vruwink",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kuglitsch, Dittrich, Brandtjen, Duchow, Edming, Knodl, Magnafici, Murphy, Pronschinske and Rozar; +cosponsored by Senators Jagler, Roth, Ballweg, Nass, Stroebel and Wimberger",2021-06-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg and Marklein; +cosponsored by Representatives Dittrich, Novak, Mursau, Gundrum, Subeck, Snyder and Thiesfeldt",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Nass, Wanggaard, Cowles and Agard; +cosponsored by Representatives Kuglitsch, Magnafici, Allen, Armstrong, Dittrich, Doyle, Edming, Gundrum, Hong, Kitchens, Ortiz-Velez, J. Rodriguez, Schraa, Sinicki, Snodgrass, Spreitzer, Subeck, Summerfield and Vruwink",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Snyder, Born, Brandtjen, Dittrich, Edming, Gundrum, James, Knodl, Krug, Kuglitsch, Murphy, J. Rodriguez, Sanfelippo, Thiesfeldt, Kitchens and Tranel; +cosponsored by Senators Feyen, Ballweg, Jagler, Nass, Stroebel and Cowles",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Darling; +cosponsored by Representatives Zimmerman, Horlacher, James, Krug, Steffen and Wichgers",2021-04-28T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Carpenter, Cowles and Ballweg; +cosponsored by Representatives Spiros, Moses, Mursau, Subeck and Wichgers",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Edming, Dallman, Allen, Armstrong, Born, Cabral-Guevara, Callahan, James, Magnafici, Mursau, Penterman, Snyder, Summerfield, Tauchen, Krug and Thiesfeldt; +cosponsored by Senators Stafsholt, Felzkowski, Feyen, Jagler, Marklein, Stroebel, Testin and Wanggaard",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Magnafici, Doyle, Kerkman, Milroy, Spiros, Duchow, Considine, Andraca, Rozar, Vruwink, Ohnstad, Wichgers, Subeck, Dittrich, Loudenbeck, Plumer, Bowen and Stubbs; +cosponsored by Senators Kooyenga, Johnson, Bernier, Ballweg and Cowles",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Smith, Carpenter, Johnson, Larson, Pfaff, Roys, L. Taylor and Wirch; +cosponsored by Representatives Vining, Anderson, Brostoff, Andraca, Bowen, Cabral-Guevara, Cabrera, Conley, Drake, Emerson, Goyke, Hebl, Hesselbein, Hong, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Subeck, Pope, Shankland, Shelton, Sinicki, Spreitzer and Stubbs",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Anderson, Brostoff, Andraca, Bowen, Cabral-Guevara, Cabrera, Conley, Drake, Emerson, Goyke, Hebl, Hesselbein, Hong, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Shankland, Shelton, Sinicki, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Agard, Smith, Carpenter, Johnson, Larson, Pfaff, Roys, L. Taylor and Wirch",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Mursau, Allen, Bowen, Brandtjen, Edming, Horlacher, Ramthun, Stubbs, Subeck, Tusler and Wichgers; +cosponsored by Senators Jacque, Nass and L. Taylor",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Employment Relations,2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Cabrera, Hong, Baldeh, Anderson, Andraca, Bowen, Brostoff, Conley, Considine, Emerson, Haywood, Hebl, Hesselbein, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink; +cosponsored by Senators Johnson, Agard, Roys, Bewley, Erpenbach, Larson, Ringhand, Smith, Wirch and Carpenter",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vorpagel, Vruwink, Katsma, Allen, Baldeh, Cabral-Guevara, Callahan, Conley, Dallman, Dittrich, Drake, Duchow, Edming, Gundrum, Haywood, Hesselbein, Horlacher, James, Kerkman, Kitchens, Kuglitsch, Krug, Magnafici, Moses, Mursau, Penterman, Petryk, Plumer, Riemer, Sinicki, Spiros, Spreitzer, Stubbs, Subeck, Summerfield, Thiesfeldt, Tranel, Tusler and Wittke; +cosponsored by Senators LeMahieu, Ballweg, Darling, Feyen, Jagler, Marklein, Ringhand, Roys, Stroebel and L. Taylor",2021-10-19T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Novak, Andraca, Billings, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Hebl, Hesselbein, Neubauer, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vruwink and Baldeh; +cosponsored by Senators Smith, Agard, Carpenter, Larson, Ringhand and L. Taylor",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Shelton, Anderson, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Snodgrass, Spreitzer, Subeck and Stubbs; +cosponsored by Senators Smith, Roys and L. Taylor",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Erpenbach, Wirch, Bewley, Carpenter, L. Taylor, Roys, Ringhand, Pfaff, Smith and Larson; +cosponsored by Representatives Sinicki, Shankland, Hesselbein, Anderson, Hintz, Hebl, Vruwink, Neubauer, Conley, S. Rodriguez, Emerson, Andraca, Shelton, Spreitzer, Skowronski, Subeck and Stubbs",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, Emerson, Shankland, Anderson, Andraca, Baldeh, Billings, Bowen, Cabrera, Conley, Considine, Doyle, Drake, Goyke, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, Moses, Murphy, L. Myers, Neubauer, Ortiz-Velez, Pope, S. Rodriguez, Shelton, Sinicki, Skowronski, Snodgrass, Spreitzer, Stubbs, Subeck, Vining, Vruwink and Ohnstad; +cosponsored by Senators Agard, Bewley, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys and Smith",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Wimberger, Carpenter, Roth, Wirch, Cowles, Jacque, Larson, Roys, Marklein, Bradley, Ringhand and Pfaff; +cosponsored by Representatives Snyder, Tusler, Spiros, Sinicki, Kitchens, Vorpagel, Cabrera, Petryk, Vruwink, Krug, Moses, Ortiz-Velez, Billings, Bowen, Shankland, Thiesfeldt, Cabral-Guevara, Hong, Wichgers, Edming, Murphy and Tittl",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Moses, Swearingen, Armstrong, Born, Cabral-Guevara, Callahan, Edming, Dittrich, Duchow, Gundrum, Knodl, Krug, Mursau, Oldenburg, Petryk, Plumer, Rozar, Snyder, Tranel, Tusler, Vorpagel, Wittke, Zimmerman and James; +cosponsored by Senators Marklein, Felzkowski and Feyen",2021-04-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Armstrong, Brandtjen, Edming, Moses, Murphy and Wichgers; +cosponsored by Senator Jacque",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Roth; +cosponsored by Representatives Petryk, Mursau, Rozar and Wichgers",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Testin, Feyen, Nass, Stafsholt and L. Taylor; +cosponsored by Representatives Murphy, Petryk, L. Myers, Armstrong, Cabral-Guevara, Callahan, Dittrich, Gundrum, Horlacher, Kuglitsch, Moses, Mursau, Oldenburg, Rozar, Tauchen, Tusler, Wichgers, Zimmerman and Thiesfeldt",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hong, Anderson, Bowen, Cabrera, Conley, Emerson, Goyke, Hebl, L. Myers, Milroy, Neubauer, Riemer, Shelton, Sinicki, Snodgrass, Stubbs and Subeck; +cosponsored by Senators Larson, Carpenter, Roys and L. Taylor",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives L. Myers, Brostoff, McGuire, Hebl, Haywood, Hong, Hesselbein, Cabrera, Neubauer, Andraca, Shelton, Baldeh, Emerson, Ortiz-Velez, Hintz, Vruwink, Snodgrass, Anderson, Spreitzer, Subeck, Conley, Pope, Sinicki, Bowen, Goyke, Milroy, Drake, Vining, S. Rodriguez, Riemer and Shankland; +cosponsored by Senators L. Taylor, Wirch, Johnson, Roys, Agard, Smith, Larson, Bewley, Carpenter and Pfaff",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Allen, Mursau, Gundrum, Kerkman, Knodl, Loudenbeck, Neylon, Rozar, Spiros, Subeck, Wichgers, Wittke, J. Rodriguez and Vruwink; +cosponsored by Senators Darling, L. Taylor and Cowles",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives August, Katsma, Loudenbeck, Armstrong, Penterman, Allen, Duchow, Sortwell, Cabral-Guevara, Dallman, Plumer, Moses, Oldenburg, Kuglitsch, Knodl, Dittrich, Wichgers, VanderMeer, Horlacher, Brandtjen, Brooks, Born and Murphy; +cosponsored by Senators Felzkowski and Stroebel",2022-02-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Penterman, Murphy, Mursau, L. Myers, Oldenburg, VanderMeer, Wichgers and Shankland; +cosponsored by Senators Jacque, Ballweg, Felzkowski, Kooyenga, Marklein and Wirch",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, James, Allen, Armstrong, Brandtjen, Brooks, Cabral-Guevara, Callahan, Dallman, Dittrich, Duchow, Edming, Gundrum, Kitchens, Knodl, Krug, Kurtz, Magnafici, Moses, Murphy, Mursau, Ortiz-Velez, Petryk, Pronschinske, Ramthun, Rozar, Schraa, Skowronski, Steffen, Thiesfeldt, Tittl, Tranel and Macco; +cosponsored by Senators Stafsholt, Stroebel, Cowles, Feyen, Jacque, Marklein and Roth",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Agard, Carpenter, Larson and Ringhand; +cosponsored by Representatives McGuire, Stubbs, Anderson, Andraca, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hintz, Ohnstad, Riemer, S. Rodriguez, Shelton, Sinicki, Snodgrass, Subeck and Vruwink",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Carpenter, Johnson and Ringhand; +cosponsored by Representatives Subeck, McGuire, Cabrera, Emerson, Hebl, Hesselbein, Ohnstad, Shankland, Shelton, Sinicki, Spreitzer and Vruwink",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Brandtjen, Callahan, Dittrich, Gundrum, Knodl, Kuglitsch, Moses, Mursau, Rozar, Schraa, Skowronski, Steffen, Tranel, Thiesfeldt and Tusler; +cosponsored by Senators Felzkowski, Marklein, Ballweg, Feyen, Nass, L. Taylor and Wanggaard",2021-07-01T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Pope, S. Rodriguez, Anderson, Andraca, Baldeh, Brostoff, Cabrera, Conley, Considine, Doyle, Emerson, Haywood, Hebl, Hesselbein, Hong, Moore Omokunde, L. Myers, Neubauer, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vruwink and Drake; +cosponsored by Senators Larson, Erpenbach, Ringhand, Roys, L. Taylor and Wirch",2021-07-01T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Baldeh, Cabrera, Moore Omokunde, Conley, Brostoff, Anderson, Andraca, Bowen, Considine, Hebl, Hesselbein, Neubauer, Ohnstad, Ortiz-Velez, Hintz, Shelton, Snodgrass, Stubbs, Vruwink and Subeck",2021-07-01T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Behnke, Cabral-Guevara, Callahan, Edming, James, Magnafici, Mursau and Snyder; +cosponsored by Senators Wimberger, Felzkowski, Jagler, Marklein, Stafsholt, Stroebel and Wanggaard",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Callahan, Dallman, Dittrich, Edming, James, Magnafici, Moses, Mursau, Spiros, Wichgers and Thiesfeldt; +cosponsored by Senators Petrowski, Ballweg, Jacque, Jagler, Testin, Wanggaard, Felzkowski and Marklein",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Moses, Callahan, Born, Brandtjen, Dittrich, Edming, Gundrum, James, Magnafici, Mursau, Sortwell, Summerfield, Tauchen, Tranel and Zimmerman; +cosponsored by Senators Jagler, Feyen, Ballweg, Stafsholt, Wanggaard, Stroebel, Felzkowski and Marklein",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Considine, Neubauer, Shelton, Conley, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Ohnstad, Pope, Shankland, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Pfaff, Smith, Agard, Bewley, Erpenbach, Johnson, Larson, Ringhand, Roys and Wirch",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, L. Taylor, Kooyenga, Larson, Smith, Wirch, Erpenbach, Carpenter, Johnson and Bewley; +cosponsored by Representatives Hesselbein, Cabral-Guevara, Snodgrass, Milroy, S. Rodriguez, Hebl, Pope, Emerson, Neubauer, Shelton, Hong, Anderson, Andraca, Vruwink, Bowen, Tusler, Spreitzer, Stubbs, Skowronski, Sinicki, Cabrera, Subeck, Drake, Ohnstad, Conley, Shankland and Billings",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Wimberger, L. Taylor, Wanggaard, Feyen and Pfaff; +cosponsored by Representatives Steineke, Stubbs, Armstrong, Baldeh, Cabral-Guevara, Cabrera, Dallman, Dittrich, Edming, Gundrum, Kitchens, Krug, Kurtz, Macco, Milroy, Mursau, Novak, Petryk, Schraa, Spiros, Steffen, Zimmerman, Wittke, Ohnstad and Vruwink",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Edming, Gundrum and B. Meyers; +cosponsored by Senators Petrowski, Cowles, Bewley and Stroebel",2022-02-02T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Steineke and August,2021-05-06T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Steineke; +cosponsored by Senator Cowles",2022-02-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Steineke; +cosponsored by Senator Cowles",2022-02-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives McGuire, Stubbs, Andraca, Doyle, Hintz, Ohnstad, Riemer, S. Rodriguez, Shelton, Snodgrass, Anderson, Conley, Considine, Emerson, Hebl, Sinicki, Vruwink, Hesselbein and Subeck; +cosponsored by Senators Roys, Agard, Carpenter, Larson and Ringhand",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger and Cowles; +cosponsored by Representatives Steffen, Macco, Kitchens and Tusler",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Plumer, Cabral-Guevara, Billings, Brooks, Baldeh, Doyle, Duchow, Gundrum, Kurtz, Loudenbeck, Moses, Murphy, Mursau, Neylon, Novak, Rozar, Shelton, Sortwell, Steffen, Subeck, Summerfield, Tauchen, Thiesfeldt, Tittl and VanderMeer; +cosponsored by Senators Felzkowski, Ballweg, Bernier, Cowles, Feyen, Jacque, Nass, Ringhand, L. Taylor and Wirch",2021-06-17T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Mursau,2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Murphy, Brostoff, Gundrum, Moses, Oldenburg, Sinicki, Spreitzer and Subeck",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives VanderMeer, Moses, Murphy, Snodgrass, Thiesfeldt and Tittl; +cosponsored by Senators Cowles, L. Taylor, Ballweg, Marklein, Testin and Wanggaard",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Brandtjen, Cabral-Guevara, Dittrich, Edming, Horlacher, Mursau, Ortiz-Velez, Steffen, VanderMeer and Wichgers; +cosponsored by Senators Roth, Darling, Felzkowski and Marklein",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Novak, Magnafici, Cabrera, Dittrich, Duchow, Kerkman, Kitchens, Moses, Mursau, Ortiz-Velez, Rozar, Shankland, Sinicki, Snyder, Subeck, Tittl, Tusler, Armstrong, Spiros and Edming; +cosponsored by Senators Testin, Ballweg, Carpenter, Petrowski, Ringhand, Roys, L. Taylor and Wirch",2021-02-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Armstrong, Callahan, Dittrich, Doyle, Edming, Knodl, Magnafici, Milroy, Neylon, Novak, Oldenburg, Plumer, Ramthun, Rozar, Skowronski, Stubbs, Thiesfeldt and Wichgers; +cosponsored by Senators Bernier, Ballweg, Bewley, Cowles, Felzkowski, Marklein and Nass",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ringhand, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Roys, Smith and Wirch; +cosponsored by Representatives Pope, Haywood, Anderson, Andraca, Baldeh, Billings, Bowen, Cabrera, Conley, Emerson, Hesselbein, Hong, Milroy, Ohnstad, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Subeck",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Murphy, Schraa, Snodgrass and Tusler; +cosponsored by Senators Roth and Feyen",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hintz, Spreitzer, Hesselbein, Subeck, B. Meyers, Haywood, Doyle, Pope, Stubbs, McGuire, Emerson, Ohnstad, Neubauer, S. Rodriguez, Conley, Snodgrass, Shelton, Vruwink, Vining, Hong, Shankland, Anderson, Milroy, Bowen, Billings, Baldeh, Cabrera, Brostoff, Riemer, Hebl, Goyke, Considine, Sinicki and Ortiz-Velez",2021-01-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Considine, Shelton, Spreitzer, Hebl, Emerson, Vruwink, B. Meyers, Milroy, Anderson, Sinicki, Hintz, Cabrera and Subeck; +cosponsored by Senators Erpenbach, Bewley, Larson, Roys, Ringhand, Agard, Smith, Pfaff and Carpenter",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Penterman, Skowronski, Sinicki, Cabrera, Allen, Dittrich, Gundrum, Kuglitsch, Zimmerman and Edming; +cosponsored by Senators Kooyenga, Nass and L. Taylor",2022-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Shelton and Sinicki",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Felzkowski, Roth, Cowles, Bewley and Nass; +cosponsored by Representatives VanderMeer, Krug, Rozar, Dittrich, Edming, Knodl, Kuglitsch, Magnafici, Mursau, Murphy, Ohnstad, Oldenburg, Shankland, Snodgrass, Snyder, Spiros, Steffen, Tauchen, Tittl and Wichgers",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Bernier, Felzkowski, Marklein and Stroebel; +cosponsored by Representatives Dallman, Vorpagel, Wittke, Allen, Armstrong, August, Brandtjen, Cabral-Guevara, Callahan, Dittrich, Duchow, Edming, James, Katsma, Kitchens, Knodl, Krug, Kuglitsch, Magnafici, Moses, Penterman, Petersen, Plumer, Schraa, Snyder, Sortwell, Steffen, Tusler, Zimmerman and Born",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Gundrum, Spiros, Schraa, Penterman, Kuglitsch, Loudenbeck, Allen, Katsma, Summerfield, Callahan, J. Rodriguez, Horlacher, Tittl, Knodl, Thiesfeldt, Tusler, Magnafici and Edming; +cosponsored by Senators Testin, Bradley, Jagler, Kapenga, Stroebel, Felzkowski, Darling, Nass, LeMahieu, Marklein, Bernier and Roth",2021-10-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Bernier, Ballweg, Bewley, Carpenter, Johnson, Larson, Pfaff, Ringhand, L. Taylor, Testin, Wanggaard and Wirch; +cosponsored by Representatives Zimmerman, Dittrich, Baldeh, Bowen, Brandtjen, Edming, Gundrum, Hong, Knodl, B. Meyers, Moses, Mursau, Ortiz-Velez, J. Rodriguez, Shankland, Sinicki, Spreitzer, Summerfield, Tauchen, Thiesfeldt, Vining, Vruwink and Wichgers",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Petrowski, Cowles and Felzkowski; +cosponsored by Representatives Callahan, Magnafici, Horlacher, Rozar, Edming, Spiros, Tittl, Kurtz, VanderMeer and Skowronski",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Loudenbeck, Rozar, Armstrong, Billings, Born, Dittrich, Doyle, Gundrum, Kitchens, Knodl, Kurtz, Milroy, Moses, L. Myers, Novak, Pronschinske, J. Rodriguez, Schraa, Snyder, Spiros, Subeck, Tauchen, Tittl, Tusler and Penterman; +cosponsored by Senators Bernier, Ballweg, Cowles, Darling, Felzkowski, Kooyenga, Marklein and Roth",2021-08-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Callahan, Moses, Tittl, Tusler and Wichgers; +cosponsored by Senators Jacque and Felzkowski",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Andraca, Haywood, Anderson, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Vining and Vruwink; +cosponsored by Senators Agard, Larson, Johnson, Erpenbach, Roys, L. Taylor and Smith",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Gundrum, Penterman, Mursau, Snyder, Thiesfeldt, Tusler and Doyle; +cosponsored by Senators Wimberger, Marklein and Ballweg",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Petryk, Billings, Anderson, Andraca, Armstrong, Baldeh, Cabral-Guevara, Considine, Dittrich, Drake, Emerson, Hebl, Hesselbein, Neubauer, Novak, Ohnstad, Rozar, Shelton, Spreitzer, Stubbs, Subeck, Thiesfeldt and Vruwink; +cosponsored by Senators Wirch, Carpenter, Erpenbach, Jacque, Larson, Smith and L. Taylor",2021-05-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators L. Taylor, Agard, Bewley, Larson, Ringhand, Roys and Smith; +cosponsored by Representatives Bowen, Mursau, Milroy, B. Meyers, Andraca, Baldeh, Billings, Brostoff, Conley, Considine, Drake, Emerson, Haywood, Hebl, Hesselbein, Hong, Moore Omokunde, Neubauer, Pope, S. Rodriguez, Shankland, Shelton, Snodgrass, Spreitzer, Stubbs, Subeck and Vining",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Allen and Neylon,2021-06-09T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Johnson, Ringhand and Smith; +cosponsored by Representatives Subeck, Spreitzer, Andraca, Baldeh, Cabrera, Conley, Considine, Hebl, Hesselbein, Milroy, Ohnstad, Shelton, Sinicki, Snodgrass and Stubbs",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Johnson, L. Taylor, Roys, Larson, Smith and Erpenbach; +cosponsored by Representatives Bowen, Ohnstad, Spreitzer, Hong, Stubbs, Hebl, Emerson, S. Rodriguez, Neubauer, Hesselbein, Baldeh, Brostoff, Snodgrass, Goyke, Pope, Shankland, Shelton, Moore Omokunde, L. Myers, Anderson, Drake, Subeck, Sinicki, Ortiz-Velez, Considine, Andraca, Hintz, Conley, Vining and Cabrera",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Born, Swearingen, Wittke, Krug, Brooks, Milroy, Penterman, Loudenbeck, Kuglitsch, Zimmerman, Mursau, Dallman, Murphy, Hong, Drake, Andraca, Bowen and Subeck; +cosponsored by Senators Petrowski, Roth, Jacque, Cowles, Darling, Feyen, Bewley and Felzkowski",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tauchen, Steffen, Mursau and Shelton; +cosponsored by Senators Wimberger and Jacque",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Feyen; +cosponsored by Representatives Thiesfeldt, Callahan, Brandtjen, Milroy and Ramthun",2021-04-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spreitzer, Hebl, Andraca, Pope, Shelton, Anderson, Subeck, Shankland, Hong, Sinicki, Considine and Vruwink; +cosponsored by Senators Larson, Roys, Carpenter, Smith and Stroebel",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Schraa, Brooks, Callahan, Dittrich, James, Kuglitsch, Murphy, Mursau, Penterman, Plumer, Spiros, Thiesfeldt and Tusler; +cosponsored by Senators Felzkowski, Ballweg, Cowles, Feyen and Marklein",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Mursau, Milroy, B. Meyers, Andraca, Baldeh, Billings, Brostoff, Conley, Considine, Drake, Emerson, Haywood, Hebl, Hesselbein, Hong, Moore Omokunde, Neubauer, Pope, S. Rodriguez, Shankland, Shelton, Snodgrass, Spreitzer, Stubbs, Subeck and Vining; +cosponsored by Senators L. Taylor, Agard, Bewley, Larson, Ringhand, Roys and Smith",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Vos and Steineke,2021-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ringhand, Agard, Carpenter, Larson, Roys and L. Taylor; +cosponsored by Representatives Goyke, Andraca, Baldeh, Brostoff, Cabrera, Conley, Considine, Drake, Haywood, Hebl, Hintz, B. Meyers, Milroy, Pope, Riemer, Shankland, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Johnson, Roys, Larson and Wirch; +cosponsored by Representatives Hong, Shelton, Hebl, Baldeh, Snodgrass, Moore Omokunde, Conley, Andraca, Neubauer, Stubbs, Pope, Sinicki, Cabrera, Spreitzer, Subeck, Emerson, Bowen, S. Rodriguez and Shankland",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Loudenbeck, Armstrong, Born, Cabral-Guevara, Callahan, Duchow, Edming, Gundrum, Knodl, Krug, Moses, Mursau, Oldenburg, Petryk, Plumer, Rozar, Snyder, Swearingen, Tranel, Vorpagel, Wittke and Zimmerman; +cosponsored by Senators Bernier and Felzkowski",2021-04-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Summerfield, Sinicki, Edming, Considine, Andraca, Bowen, Doyle, Gundrum, Krug, Milroy, Moses, Petryk, Snodgrass, Sortwell, Subeck, Thiesfeldt, Vruwink, Knodl, Murphy and Tusler; +cosponsored by Senators Jacque, Agard, Carpenter, Feyen, Kooyenga, L. Taylor, Testin and Wirch",2021-11-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Haywood, Cabrera, Andraca, Bowen, Brostoff, Drake, Goyke, Moore Omokunde, L. Myers, Ortiz-Velez, Riemer, S. Rodriguez, Sinicki, Vining, McGuire, Rozar, Milroy, Hebl, Stubbs, Hong, Emerson, Steffen, Spreitzer, Conley, Hesselbein, Kerkman, Shankland, Anderson, Cabral-Guevara, Snodgrass, Neubauer, Pope, Billings, Considine, Doyle, Subeck, Vruwink, Mursau, Shelton and Hintz; +cosponsored by Senators Johnson, Carpenter, Larson, L. Taylor, Roys, Bewley, Agard, Jacque, Wirch, Marklein, Pfaff, Ringhand, Ballweg and Darling",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Carpenter, Jagler, Larson, Marklein, Nass, Ringhand, Wirch and Jacque; +cosponsored by Representatives Pronschinske, Allen, Considine, Dallman, Dittrich, Drake, Edming, Gundrum, Hesselbein, Hintz, Horlacher, Krug, Kuglitsch, McGuire, Milroy, Penterman, Petryk, Plumer, Riemer, Sinicki, Spiros, Spreitzer, Steffen, Steineke, Subeck, Thiesfeldt, Tusler, Tittl, Tranel, Vruwink, Mursau, Schraa and Knodl",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Hebl,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Novak, Tranel, Dittrich, Kitchens, Rozar, Shankland, Skowronski, Spiros, Swearingen, Tauchen, Tusler, Vorpagel and Subeck; +cosponsored by Senators Testin, Marklein, Darling, L. Taylor and Bernier",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Vos and Steineke,2021-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hesselbein, Milroy, Riemer, Sinicki, Hebl, Conley, Hong, Andraca, Anderson, Stubbs, Spreitzer, Subeck, Shelton, B. Meyers, S. Rodriguez and Considine; +cosponsored by Senators Johnson, Carpenter, Smith, Agard, Larson and L. Taylor",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Haywood; +cosponsored by Senator Johnson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, L. Taylor, Agard and Ballweg; +cosponsored by Representatives James, Cabral-Guevara, Anderson, Doyle, Andraca, Armstrong, Bowen, Brooks, Dittrich, Duchow, Edming, Moses, Murphy, Mursau, Novak, Oldenburg, Petryk, Plumer, Schraa, Shankland, Skowronski, Spiros, Spreitzer, Subeck, Zimmerman and Wittke",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Skowronski, Tittl, Sinicki, Allen, Doyle, Vruwink, Milroy, Cabral-Guevara, S. Rodriguez, Brooks, Gundrum, Magnafici, J. Rodriguez, Plumer, Macco, Kurtz, Penterman, Shankland, James, Subeck, Neubauer, Snodgrass, Rozar, Spiros, Andraca, Behnke, Conley, Hesselbein, Kuglitsch, Wittke, Considine, Kerkman, Brandtjen, Spreitzer, Horlacher, Dittrich, Callahan, Stubbs, Murphy, Schraa, Knodl, Riemer, Thiesfeldt, Edming, Petryk, VanderMeer, Ramthun, Pronschinske, Mursau, B. Meyers, Tusler, Drake, Shelton, Kitchens, Hong, Katsma, Pope, Hintz, Oldenburg, Tranel, Moses, Novak and Summerfield; +cosponsored by Senators Wimberger, Stafsholt, Ballweg, Jacque, Darling, Feyen, Ringhand, Pfaff, Cowles, Wanggaard, Carpenter, Roth, Testin, Larson, Nass, Johnson, Marklein and Jagler",2021-11-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Haywood, Sinicki, Brostoff, Hebl, Ohnstad, Andraca, S. Rodriguez, Hesselbein, Drake, Subeck, Pope, Bowen, Stubbs and Shelton; +cosponsored by Senators Johnson, Ringhand, Roys and Agard",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Snodgrass, Anderson, Andraca, Billings, Brostoff, Conley, Considine, Emerson, Hebl, Neubauer, Shelton, Sinicki and Stubbs; +cosponsored by Senators Larson and Johnson",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hong, Anderson, Goyke, Snodgrass, Brostoff, Emerson, Neubauer, Hebl, Vining, Hesselbein, Shelton, Pope, Subeck, Conley, Ohnstad, Considine, Moore Omokunde, Stubbs, Baldeh, Bowen, Spreitzer and Sinicki; +cosponsored by Senators Agard, L. Taylor, Johnson, Larson and Roys",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Emerson, Andraca, Brostoff, Cabrera, Conley, Considine, Neubauer, Shelton, Sinicki, Hebl, Hong, Moore Omokunde, Ohnstad, Snodgrass, Stubbs, Subeck and Vining; +cosponsored by Senators Carpenter, Ringhand, Roys, L. Taylor, Agard, Johnson and Larson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Hebl,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Darling, Felzkowski, Marklein and Stroebel; +cosponsored by Representatives Rozar, Allen, Armstrong, Behnke, Brooks, Gundrum, Knodl, Krug, Kuglitsch, Magnafici, Moses, Penterman and Wichgers",2022-02-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Summerfield, Knodl, Rozar and Skowronski; +cosponsored by Senator Ballweg",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Loudenbeck, Novak, Plumer, Shankland, Ramthun, Spiros, Armstrong, Brandtjen, Cabral-Guevara, Cabrera, Callahan, Conley, Considine, Dallman, Dittrich, Duchow, James, Kerkman, Kitchens, Krug, Murphy, Mursau, Shelton, Sinicki, Skowronski, Snodgrass, Spreitzer, Subeck, Stubbs, VanderMeer, Vruwink, Wittke and Zimmerman; +cosponsored by Senators Ballweg, Testin, Carpenter, Larson, Marklein and Ringhand",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Schraa, Brandtjen, Edming, Gundrum, Kuglitsch, Moses, Murphy, Mursau, Ramthun, Thiesfeldt, Tittl and Wichgers; +cosponsored by Senators Jacque, Ballweg, Feyen and Nass",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Erpenbach, Smith, Bewley, Carpenter, Agard, Larson, Pfaff, Johnson, Ringhand, Roys, L. Taylor and Wirch; +cosponsored by Representatives Riemer, S. Rodriguez, Hintz, Vining, Goyke, Neubauer, Sinicki, Drake, Billings, Vruwink, Conley, Doyle, Hebl, Spreitzer, Shelton, Hesselbein, Shankland, Hong, Andraca, Subeck, Cabrera, Stubbs, Pope, Considine, Baldeh, Bowen, Emerson, B. Meyers, Milroy, Ohnstad, Snodgrass, Brostoff, McGuire, Moore Omokunde, Anderson and Ortiz-Velez",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee for Review of Administrative Rules,2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Jacque and Nass; +cosponsored by Representatives Gundrum, James, Cabral-Guevara, Duchow, Knodl, Kuglitsch and Wichgers",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Bewley, Roys, Ringhand, Agard and Larson; +cosponsored by Representatives Pope, Emerson, B. Meyers, Andraca, Conley, Considine, Shankland, Vruwink, Subeck, Hesselbein, Spreitzer, Doyle, Stubbs, Bowen, Sinicki and Shelton",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Petryk; +cosponsored by Senator Smith",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Rozar, Callahan, Armstrong, Billings, Bowen, Brooks, Cabral-Guevara, Gundrum, Knodl, Kuglitsch, B. Meyers, Moses, Plumer, Ramthun, Skowronski, Tittl and Tusler; +cosponsored by Senators Bernier, Ballweg, Marklein and Pfaff",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Agard, Roys, Bewley, Erpenbach, Larson, Ringhand, Smith, Wirch and Carpenter; +cosponsored by Representatives Stubbs, Cabrera, Hong, Baldeh, Anderson, Andraca, Bowen, Brostoff, Conley, Considine, Emerson, Haywood, Hebl, Hesselbein, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Plumer, Moses, Penterman, Armstrong, August, Brandtjen, Cabral-Guevara, Callahan, Dallman, Dittrich, Duchow, Edming, James, Katsma, Kitchens, Knodl, Krug, Kuglitsch, Kurtz, Loudenbeck, Macco, Magnafici, Petersen, Petryk, Schraa, Snyder, Sortwell, Steffen, Tittl, Tusler, Vorpagel, Wichgers, Zimmerman and Born; +cosponsored by Senators Felzkowski, Bernier, Darling, Feyen, Marklein and Stroebel",2022-01-31T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Milroy, Andraca, Hebl, B. Meyers, Sinicki, Stubbs, Subeck and Vruwink; +cosponsored by Senators Bewley and Smith",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee for Review of Administrative Rules,2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Ohnstad, Spreitzer, Hong, Stubbs, Hebl, Emerson, S. Rodriguez, Neubauer, Hesselbein, Baldeh, Brostoff, Snodgrass, Goyke, Pope, Shankland, Shelton, Moore Omokunde, L. Myers, Anderson, Drake, Subeck, Sinicki, Ortiz-Velez, Considine, Andraca, Hintz, Conley, Vining, Cabrera, McGuire and Milroy; +cosponsored by Senators Agard, Johnson, L. Taylor, Roys, Larson, Smith and Erpenbach",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Agard, Bewley, Erpenbach, Johnson, Larson, Ringhand, Roys and Smith; +cosponsored by Representatives Neubauer, Cabrera, Snodgrass, Spreitzer, Anderson, Baldeh, Billings, Bowen, Brostoff, Conley, Considine, Drake, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Subeck, Vining and Vruwink",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Finance,2021-06-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Drake, Shelton, Hebl, Milroy, Andraca, Snodgrass, Neubauer, Ortiz-Velez, S. Rodriguez, Cabrera, Sinicki, Goyke, Conley, Haywood, Considine, Spreitzer, Emerson, Billings, Vining, Baldeh, Subeck, Anderson, Hong, Shankland, Hesselbein, Bowen, L. Myers, Brostoff and Hintz; +cosponsored by Senators Johnson, Carpenter, Wirch, L. Taylor, Roys, Bewley, Erpenbach and Larson",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Wanggaard; +cosponsored by Representatives Horlacher, Wichgers, Brandtjen, Allen, Armstrong, Cabral-Guevara, Callahan, Dittrich, Edming, Gundrum, Kuglitsch, Ramthun, Rozar, Skowronski, Tittl, Tusler and Schraa",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, James, Dittrich, Moses, Murphy, Mursau, Rozar, Skowronski and Wichgers; +cosponsored by Senators Jacque and Marklein",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Cowles; +cosponsored by Representatives Kitchens, Tusler, Dittrich, Mursau, Ramthun and Thiesfeldt",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Billings, Snyder, Bowen, Cabral-Guevara, Cabrera, Dittrich, Drake, Edming, Emerson, Hebl, Hesselbein, Hong, Horlacher, Kerkman, Kitchens, B. Meyers, Milroy, Moses, Murphy, Mursau, Novak, Ohnstad, Ramthun, S. Rodriguez, Rozar, Schraa, Shankland, Shelton, Sinicki, Skowronski, Snodgrass, Spreitzer, Stubbs, Subeck, Tusler, Vining and Vruwink; +cosponsored by Senators Jacque, Johnson, Agard, Ballweg, Bewley, Carpenter, Cowles, Darling, Erpenbach, Larson, Pfaff, Ringhand, Roys and Wirch",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Anderson, Brooks, Callahan, Dittrich, Hintz, Hong, Kitchens, Knodl, Milroy, Moses, Murphy, Mursau, L. Myers, Neubauer, S. Rodriguez, Rozar, Schraa, Sinicki, Skowronski, Snodgrass, Sortwell, Summerfield, Swearingen, Vorpagel, Vruwink, Shankland, Drake, Thiesfeldt and Macco; +cosponsored by Senators Felzkowski, Ballweg, Feyen, Larson, Ringhand, Testin, Wimberger, Roys and Stroebel",2021-02-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Larson and Ringhand; +cosponsored by Representatives Subeck, Hebl, Sinicki, Anderson, Stubbs, Conley and Cabral-Guevara",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Darling, Jagler, Marklein, Petrowski, Stafsholt and Testin; +cosponsored by Representatives Callahan, Snyder, Born, Dittrich, Duchow, Knodl, Moses, Mursau, J. Rodriguez, Rozar, Tittl and Tusler",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Oldenburg, Petryk, Allen, Armstrong, Bowen, Cabral-Guevara, Dallman, Dittrich, Edming, Gundrum, Haywood, Jagler, Knodl, Moses, Murphy, Mursau, Novak, Plumer, Ramthun, Rozar, Snyder, Tauchen, Thiesfeldt, Tittl, Tranel, VanderMeer, Wichgers, Wittke, Zimmerman and Spiros; +cosponsored by Senators Testin, L. Taylor, Ballweg, Cowles and Feyen",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Bernier, Cowles, Feyen, Pfaff, Ringhand, Stafsholt, Testin, Wanggaard and Wimberger; +cosponsored by Representatives Tranel, Armstrong, Brandtjen, Cabrera, Dittrich, Gundrum, Jagler, Kurtz, Moses, Murphy, Novak, Oldenburg, Petryk, Plumer, Pronschinske, Rozar, Skowronski, Summerfield, Tauchen, Thiesfeldt, Tusler, VanderMeer, Vruwink, Kerkman, Loudenbeck, Tittl and Born",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Doyle, Hong, Ohnstad, Shankland, Shelton, Sinicki, Subeck and Vruwink; +cosponsored by Senators Smith, Agard and Wirch",2021-12-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Wimberger, Ballweg, Jacque and Ringhand; +cosponsored by Representatives Ramthun, Hebl, Hintz, Kitchens, B. Meyers, Milroy, Moses, Mursau, Novak, Oldenburg, J. Rodriguez, Rozar, Sinicki, Skowronski, Spreitzer, Subeck and Tusler",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Krug, Mursau, Cabral-Guevara, Callahan, Horlacher, Knodl, Ramthun, Rozar, Snyder, Spreitzer and Subeck; +cosponsored by Senators Jacque, Ballweg and L. Taylor",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Ballweg and Felzkowski; +cosponsored by Representatives Thiesfeldt, Skowronski, Brooks, Knodl and Schraa",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Bernier; +cosponsored by Representatives Schraa, Allen, Armstrong, Brandtjen, Cabral-Guevara, Horlacher, James, Knodl, Magnafici, Moses, Pronschinske, Rozar, Thiesfeldt and Wichgers",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Krug, Armstrong, Allen, Brandtjen, Moses, Subeck and Wichgers; +cosponsored by Senators Jacque and Felzkowski",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Emerson, B. Meyers, Andraca, Conley, Considine, Shankland, Vruwink, Subeck, Hesselbein, Spreitzer, Doyle, Stubbs, Bowen, Sinicki and Shelton; +cosponsored by Senators Smith, Bewley, Roys, Ringhand, Agard, Larson and L. Taylor",2021-12-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Brooks, Brandtjen, Dittrich, Mursau and Wichgers",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard and Jacque; +cosponsored by Representatives Gundrum, Ramthun, Brooks, Rozar and Skowronski",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Ramthun, Hebl, Hintz, Kitchens, B. Meyers, Milroy, Moses, Mursau, Novak, Oldenburg, J. Rodriguez, Rozar, Sinicki, Skowronski, Spreitzer, Subeck and Tusler; +cosponsored by Senators Cowles, Wimberger, Ballweg, Jacque and Ringhand",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Ringhand and Testin; +cosponsored by Representatives Horlacher, Bowen, Brooks, Cabral-Guevara, Dittrich, Duchow, Gundrum, Hong, Magnafici, Moses, Murphy, Rozar, Schraa, Skowronski, Subeck and Wichgers",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Brandtjen, Armstrong, Drake, Horlacher, Moses, Rozar, Wichgers and Thiesfeldt",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Horlacher, Allen, Brandtjen, Brooks, Callahan, Dittrich, Gundrum, Jagler, Knodl, Krug, Kurtz, Moses, Murphy, Ortiz-Velez, Plumer, Ramthun, Skowronski, Wichgers and Zimmerman; +cosponsored by Senators Ballweg, Felzkowski, Feyen, Marklein, Nass and L. Taylor",2021-02-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tauchen, Duchow, Doyle, Kurtz, Milroy, L. Myers, Neubauer, Novak, Thiesfeldt, Wittke, Shankland and Tranel; +cosponsored by Senators Stroebel, Roys, L. Taylor and Ballweg",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, Felzkowski, L. Taylor, Ballweg, Carpenter, Johnson, Larson and Petrowski; +cosponsored by Representatives Schraa, Callahan, Goyke, Bowen, Andraca, Baldeh, Cabrera, Conley, Considine, Dittrich, Drake, Haywood, Hebl, Magnafici, Mursau, Neubauer, Pope, Rozar, Sinicki, Spreitzer, Steffen, Subeck, Tauchen, Tusler, Vining and Stubbs",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Bernier, Petrowski, Pfaff and Ringhand; +cosponsored by Representatives Oldenburg, VanderMeer, Doyle, Edming, James, Krug, B. Meyers, Moses, Mursau, Novak, Petryk, Plumer, Sinicki, Skowronski, Spreitzer, Tranel and Tusler",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Smith, Agard, Bewley, Erpenbach, Larson, Ringhand, Roys and L. Taylor; +cosponsored by Representatives Shankland, Tusler, Anderson, Andraca, Billings, Bowen, Cabral-Guevara, Cabrera, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hintz, Hong, Kitchens, Neubauer, Pope, Shelton, Sinicki, Spreitzer, Stubbs, S. Rodriguez, Subeck, Vining and Vruwink",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Sinicki,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Gundrum, Horlacher, Loudenbeck, Ramthun, Brooks, Spiros, Dittrich, Mursau, Moses, Skowronski and Knodl; +cosponsored by Senators Stroebel and Felzkowski",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Magnafici, Knodl, Moses, Thiesfeldt and Tittl; +cosponsored by Senator Roth",2021-10-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Magnafici, Brandtjen, Billings, Callahan, Doyle, Edming, Horlacher, B. Meyers, Mursau, Novak, Oldenburg, Pronschinske, Rozar, Skowronski, Tittl, VanderMeer and Vruwink; +cosponsored by Senator Bernier",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Agard, Roys, Bewley, Erpenbach, Larson, Pfaff, Smith, Wirch and Carpenter; +cosponsored by Representatives Stubbs, Cabrera, Hong, Baldeh, Anderson, Andraca, Bowen, Brostoff, Conley, Considine, Emerson, Haywood, Hebl, Hesselbein, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Roth, Carpenter, Darling, Larson, Ringhand and L. Taylor; +cosponsored by Representatives Snodgrass, Billings, Baldeh, Tusler, Anderson, Andraca, Cabral-Guevara, Emerson, Hebl, Shelton, Sinicki, Spreitzer and Subeck",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Brandtjen, Gundrum, Knodl, Kuglitsch, Mursau, Thiesfeldt and Tittl; +cosponsored by Senators Roth, Feyen and Wanggaard",2021-10-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jagler and Marklein; +cosponsored by Representatives Penterman, Plumer, Armstrong, Dittrich, Rozar, Duchow, Mursau, Moses, Emerson, Spreitzer, Thiesfeldt, Skowronski, Magnafici, Subeck and Wittke",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Sortwell,2021-06-17T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tusler, Callahan, Mursau, Emerson, Wichgers, Cabrera, Rozar, Milroy, Tittl, Subeck, Thiesfeldt and Edming; +cosponsored by Senators Jacque, Wanggaard, Carpenter, L. Taylor and Ringhand",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Hong, Stubbs, Brostoff, Conley, Drake, Neubauer, Sinicki, Snodgrass, Spreitzer, Anderson, Baldeh, Billings, Cabrera, Considine, Doyle, Emerson, Haywood, Hebl, Hesselbein, Hintz, Ohnstad, Riemer, Vining and Vruwink; +cosponsored by Senators Agard, Larson, Johnson, Roys, Smith and Wirch",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Duchow, Edming, Mursau, Brandtjen, Brooks, Cabral-Guevara, Dittrich, Novak, J. Rodriguez, Rozar, Skowronski, Tusler and Schraa; +cosponsored by Senators Kooyenga and Felzkowski",2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives VanderMeer, Moses, Cabral-Guevara, Billings, Brandtjen, Dallman, Doyle, Knodl, Mursau, Novak, Oldenburg, Pronschinske, Rozar, Spiros, Subeck, Tauchen, Thiesfeldt, Wichgers, Shelton and Tusler; +cosponsored by Senators Ballweg, Cowles, Felzkowski, Marklein, Nass, L. Taylor and Pfaff",2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Legislative Council,2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kuglitsch, Armstrong, Dallman, Horlacher, Murphy, Mursau, Neylon, Novak, Rozar, Schraa, Skowronski, Snyder, Spiros, Tusler, Wittke and Zimmerman; +cosponsored by Senators Feyen, Cowles, Darling, Marklein and Ringhand",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Armstrong, Dittrich, Gundrum, Kitchens and Born; +cosponsored by Senator Feyen",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Zimmerman, Armstrong, Dittrich, Duchow, Horlacher, Knodl, Kuglitsch, Kurtz, Macco, Magnafici, Moses, Murphy, Penterman, Plumer, Pronschinske, Sortwell, Steffen, Subeck, Tauchen, Thiesfeldt, Tittl and Wittke; +cosponsored by Senators Kooyenga, Ballweg, Feyen and Nass",2022-02-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Andraca, Brostoff, Conley, Considine, Hesselbein, Hong, Subeck, Sinicki, Ohnstad, Emerson, Baldeh, Snodgrass, Spreitzer, Pope, Hebl and Shelton; +cosponsored by Senators Larson, Johnson, Roys, Agard and Smith",2022-02-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Ballweg, Cowles, Felzkowski, Jacque, Marklein and Nass; +cosponsored by Representatives Sortwell, Allen, Brandtjen, Brooks, Cabral-Guevara, Dittrich, Horlacher, Knodl, L. Myers, Murphy, Thiesfeldt, Wichgers, Mursau and Tusler",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Brooks, Cabral-Guevara, Cabrera, Gundrum, Horlacher, Knodl, Kuglitsch, Magnafici, Moses, Murphy, Mursau, Rozar, Skowronski, Thiesfeldt and Wichgers; +cosponsored by Senators Stroebel, Nass, Bradley, Felzkowski and Stafsholt",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Skowronski, Vos, Hintz, Vorpagel, Sinicki, Spiros, Tittl, Callahan, Magnafici, Vruwink, Petryk, Armstrong, James, Rozar, Plumer, Pronschinske, Penterman, Ramthun, Dittrich, Doyle, Macco, Tusler, J. Rodriguez, Cabral-Guevara, Gundrum, Mursau, Subeck, Dallman, Kerkman, Behnke, Knodl, Hebl, Milroy, B. Meyers, Summerfield, Kuglitsch, Hesselbein, Spreitzer, Zimmerman, Horlacher, Tranel, Conley, VanderMeer, Loudenbeck, Moore Omokunde, Andraca, Emerson, Snodgrass, Brostoff, Neubauer, Edming, Shelton, Drake, McGuire, Bowen, Ohnstad, Wittke, Shankland, Anderson, Swearingen, Baldeh, Kitchens, Allen and Considine; +cosponsored by Senators Darling, Carpenter, Nass, Marklein, Bradley, Testin, L. Taylor, Smith, Roth, Ringhand, Jacque, Johnson, Cowles, Wanggaard, Bewley, Wirch, Jagler, Bernier and Feyen",2021-10-06T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Gundrum, Allen, Moses, Skowronski and Ortiz-Velez; +cosponsored by Senators Bernier, Cowles and Bewley",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Brooks, Knodl, Rozar, Brandtjen, Skowronski and Tusler",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Mursau, Edming and Knodl; +cosponsored by Senators Testin and Felzkowski",2021-10-06T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kapenga, Ballweg, Darling, Felzkowski, Stroebel and Wanggaard; +cosponsored by Representatives Vos, Armstrong, Born, Cabral-Guevara, Callahan, Dallman, Dittrich, Duchow, Edming, Gundrum, Horlacher, James, Katsma, Krug, Kuglitsch, Kurtz, Moses, Murphy, Mursau, Novak, Plumer, Pronschinske, Ramthun, Rozar, Schraa, Spiros, Steffen, Subeck, Swearingen, Tauchen, Thiesfeldt, Tusler, Vorpagel, Vruwink, Zimmerman and Kitchens",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Roys, Agard, Bewley, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, L. Taylor and Wirch; +cosponsored by Representatives Andraca, S. Rodriguez, Anderson, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, Kitchens, McGuire, B. Meyers, Milroy, Moore Omokunde, Neubauer, Novak, Ohnstad, Ortiz-Velez, Pope, Riemer, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Tranel, Vining and Vruwink",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, L. Taylor and Ballweg; +cosponsored by Representatives Brandtjen, Dittrich, Armstrong, Behnke, Gundrum, Horlacher, Subeck, Thiesfeldt, Wichgers and Tusler",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, L. Taylor, Agard, Smith, Larson and Wirch; +cosponsored by Representatives Emerson, Hintz, Conley, Vining, Cabrera, Hebl, Neubauer, Hesselbein, B. Meyers, Anderson, Snodgrass, Milroy, Cabral-Guevara, L. Myers, Sinicki, Ortiz-Velez, Billings, Vruwink, Doyle, Subeck, Shankland, Spreitzer and Bowen",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski and Ballweg; +cosponsored by Representatives Mursau, Knodl, Schraa, Tauchen and Thiesfeldt",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wirch, Carpenter, Erpenbach, Jacque, Larson, Smith and L. Taylor; +cosponsored by Representatives Shankland, Petryk, Billings, Anderson, Andraca, Armstrong, Baldeh, Cabral-Guevara, Considine, Dittrich, Drake, Emerson, Hebl, Hesselbein, Neubauer, Novak, Ohnstad, Rozar, Shelton, Spreitzer, Stubbs, Subeck, Thiesfeldt and Vruwink",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga and Smith; +cosponsored by Representatives Kurtz, Riemer, Novak, Kitchens, Drake, Tusler, Skowronski, B. Meyers, Considine, Subeck, Anderson, Hebl, Vruwink, Moses, Andraca, McGuire, Dallman, Shankland and Emerson",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kapenga, Ballweg, Bernier, Bradley, Felzkowski, Jagler, LeMahieu, Marklein, Nass, Roth, Stroebel, Testin and Wanggaard; +cosponsored by Representatives Vos, Duchow, Allen, Callahan, Dittrich, Edming, Gundrum, Katsma, Knodl, Loudenbeck, Magnafici, Murphy, Penterman, Plumer, J. Rodriguez, Rozar, Schraa, Sortwell, Spiros, Summerfield, Thiesfeldt, Tittl, Tusler and Wittke",2021-10-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Loudenbeck, VanderMeer, J. Rodriguez, Stubbs, Billings, Cabrera, Duchow, Kitchens, Kurtz, Mursau, L. Myers, Novak, Oldenburg, Snyder, Subeck, Tauchen, Thiesfeldt, Tusler and Drake; +cosponsored by Senators Ballweg, Bernier, Carpenter, Cowles, Darling, Felzkowski, Kooyenga, Pfaff and L. Taylor",2021-10-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Loudenbeck, Dallman, Born, James, Kerkman, Milroy, Moses, Mursau, Oldenburg, Petersen, Plumer, Shankland, Sortwell, Spreitzer, Thiesfeldt and Tusler; +cosponsored by Senators Ballweg, Wanggaard, Bernier, Bewley, Feyen, Jacque, Nass and Ringhand",2021-06-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Darling, Nass, Marklein, L. Taylor and Wanggaard; +cosponsored by Representatives Thiesfeldt, Armstrong, Cabral-Guevara, Dittrich, Edming, Magnafici, Moses, Murphy, Mursau, Rozar, Tusler, Schraa and Knodl",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steineke, Stubbs, Armstrong, Baldeh, Cabral-Guevara, Cabrera, Duchow, Edming, Goyke, Gundrum, Katsma, Kitchens, Krug, Kurtz, Loudenbeck, Macco, Milroy, Moses, Mursau, Novak, Petryk, Schraa, Spiros, Steffen, Tauchen, Tranel, Wittke and Zimmerman; +cosponsored by Senators Cowles, L. Taylor, Wanggaard and Ballweg",2021-05-18T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Legislative Council,2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Bewley, Ringhand and Ballweg; +cosponsored by Representatives Rozar, Novak, Armstrong, Callahan, Dallman, Edming, Kitchens, B. Meyers, Moses, Mursau, Oldenburg, Shankland, Snyder and Tusler",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Erpenbach, Ringhand, Roys, L. Taylor and Wirch; +cosponsored by Representatives Vining, Pope, S. Rodriguez, Anderson, Andraca, Baldeh, Brostoff, Cabrera, Conley, Considine, Doyle, Emerson, Haywood, Hebl, Hesselbein, Hong, Moore Omokunde, L. Myers, Neubauer, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vruwink and Drake",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wichgers, Sanfelippo, Armstrong, Behnke, Duchow, Gundrum, Kuglitsch, Krug and Murphy; +cosponsored by Senators Jacque and Stroebel",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wichgers, Knodl, Sanfelippo, Allen, Behnke, Brandtjen, Gundrum, Kuglitsch, Murphy and Skowronski; +cosponsored by Senators Bradley, Nass, Jacque, Kooyenga, Stroebel and Testin",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steineke, Stubbs, Dittrich, Armstrong, Baldeh, Cabral-Guevara, Duchow, Edming, Goyke, Gundrum, Katsma, Kitchens, Krug, Kurtz, Loudenbeck, Macco, Milroy, Moses, Mursau, Novak, Petryk, Schraa, Spiros, Steffen, Tranel, Wittke and Zimmerman; +cosponsored by Senators Roth, L. Taylor, Wanggaard and Ballweg",2021-05-18T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, S. Rodriguez, Anderson, Baldeh, Cabral-Guevara, Cabrera, Conley, Emerson, Hebl, Hesselbein, Hong, Milroy, L. Myers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Erpenbach, Johnson, Agard, Bewley, Carpenter, Larson, Pfaff and Ringhand",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Wichgers, Armstrong, Brandtjen, James, Knodl, Krug, Rozar and Tusler; +cosponsored by Senator Jacque",2021-05-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Pfaff, Erpenbach and L. Taylor; +cosponsored by Representatives Andraca, Shankland, Doyle, B. Meyers, S. Rodriguez, Anderson, Baldeh, Conley, Considine, Emerson, Hebl, Hong, Milroy, Ohnstad, Riemer, Shelton, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Petryk; +cosponsored by Senator Smith",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Ringhand, Feyen and Marklein; +cosponsored by Representatives Petersen, Ramthun, Brooks, Steffen, Dittrich, Tusler, Doyle, Spiros, Murphy, Petryk, Knodl, Rozar, Vorpagel, Armstrong, Kuglitsch, Tranel, Snyder and Moses",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Armstrong, Baldeh, Brandtjen, Cabral-Guevara, Callahan, Dittrich, Duchow, Gundrum, Kitchens, Milroy, Moses, Pronschinske, Schraa, Sinicki, Skowronski, Snodgrass, Steffen, Tusler, Zimmerman and Edming; +cosponsored by Senators Wanggaard, Carpenter, Cowles, Jacque and Smith",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Stroebel, Felzkowski and Darling; +cosponsored by Representatives Sortwell, Cabral-Guevara, Allen, Armstrong, Brandtjen, Edming, Horlacher, Knodl and Kuglitsch",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Brandtjen, Callahan, Kuglitsch, Subeck and Tusler; +cosponsored by Senator Jacque",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Spreitzer, Riemer, Andraca, Baldeh, Billings, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Hebl, Hesselbein, Hintz, Hong, Ohnstad, S. Rodriguez, Shankland, Shelton, Snodgrass, Stubbs, Subeck, Vruwink and Sinicki; +cosponsored by Senators Erpenbach, Agard, Bewley, Carpenter, Larson, Roys and Smith",2022-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel and Felzkowski; +cosponsored by Representatives Gundrum, Horlacher, Loudenbeck, Ramthun, Brooks, Spiros, Dittrich, Mursau, Moses, Skowronski and Knodl",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators L. Taylor, Erpenbach, Agard, Carpenter, Johnson, Larson, Pfaff and Roys; +cosponsored by Representatives Subeck, Riemer, Anderson, Cabral-Guevara, Cabrera, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hong, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Snodgrass, Spreitzer, Stubbs, Vining and Vruwink",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Andraca, Brostoff, Conley, Hesselbein, Hong, Considine, Subeck, Sinicki, Hebl, Shelton, Ohnstad, Snodgrass, Spreitzer and Pope; +cosponsored by Senator Larson",2022-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Ballweg, Agard, Carpenter, Roys, Smith, Pfaff, Ringhand, L. Taylor and Wirch; +cosponsored by Representatives Kitchens, Novak, Neubauer, Anderson, Armstrong, Baldeh, Bowen, Cabral-Guevara, Callahan, Conley, Drake, Duchow, Hebl, Kurtz, Loudenbeck, Mursau, Oldenburg, Petryk, Shelton, Sinicki, Spiros, Steffen, Subeck, Tranel, Tusler and Vruwink",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Marklein; +cosponsored by Representatives Tittl, James, Dittrich, Moses, Murphy, Mursau, Rozar, Skowronski and Wichgers",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Sinicki and Kerkman,2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator LeMahieu; +cosponsored by Representatives Vorpagel and Katsma",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Sinicki; +cosponsored by Senator Larson",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling and Bernier; +cosponsored by Representatives Thiesfeldt, Wittke and L. Myers",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Ballweg, Darling and Felzkowski; +cosponsored by Representatives Murphy, Kuglitsch, B. Meyers, Steffen, Brandtjen, Cabral-Guevara, Edming, Gundrum, Horlacher, Penterman and Spiros",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Stroebel; +cosponsored by Representatives Edming, Dittrich, Gundrum, Macco, Oldenburg, Schraa, Steffen, Tittl and Skowronski",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Bewley and Agard; +cosponsored by Representatives Brostoff, B. Meyers, Sinicki, Emerson, Spreitzer, Hebl, Shelton, Milroy, Baldeh, Ohnstad, Hong, Anderson, Cabrera and Stubbs",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Agard, Ballweg, Marklein, Ringhand, Roys and Wirch; +cosponsored by Representatives Spiros, James, Vining, Cabral-Guevara, Cabrera, Emerson, Gundrum, Moses, Mursau, Ohnstad, Plumer, Ramthun, Shankland, Snyder, Sortwell, Spreitzer, Subeck and Tusler",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Marklein, Erpenbach, Bernier, Bewley, Carpenter, Cowles, Feyen, Jacque, Johnson, Nass, Petrowski, Pfaff, Ringhand, Roys, Smith, L. Taylor, Wirch, Wanggaard and Agard; +cosponsored by Representatives Kurtz, Swearingen, Goyke, James, Petryk, Summerfield, Andraca, Baldeh, Behnke, Billings, Bowen, Brandtjen, Callahan, Conley, Considine, Dittrich, Doyle, Drake, Duchow, Edming, Emerson, Gundrum, Haywood, Hintz, Kerkman, Kitchens, Knodl, Krug, Macco, Magnafici, B. Meyers, Milroy, Moses, Mursau, L. Myers, Neubauer, Novak, Ohnstad, Oldenburg, Ortiz-Velez, Plumer, Pope, Riemer, J. Rodriguez, Rozar, Schraa, Shankland, Shelton, Sinicki, Skowronski, Snodgrass, Snyder, Spiros, Spreitzer, Stubbs, Tranel, Thiesfeldt, Vining, Vruwink, Wichgers and Tusler",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard and Roys; +cosponsored by Representatives Snodgrass, Shelton, Hebl, Cabrera, Subeck, Hesselbein, Dittrich and Sinicki",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, L. Taylor, Felzkowski, Jacque and Stroebel; +cosponsored by Representatives Thiesfeldt, Brooks, Bowen, Gundrum, Horlacher, Krug, Kurtz, Murphy, Rozar, Schraa, Skowronski, Snyder, Spiros, Subeck, Tittl, Mursau, Kuglitsch and Duchow",2021-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snodgrass, Cabrera, Neubauer, Spreitzer, Anderson, Brostoff, Conley, Considine, Emerson, Goyke, Hebl, Hesselbein, Hong, S. Rodriguez, Shankland, Shelton, Sinicki, Stubbs, Vining and Subeck; +cosponsored by Senators Agard, Carpenter, Erpenbach, Johnson, Larson, Roys, Smith and L. Taylor",2021-07-13T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Snyder, Spiros, Sortwell, Cabral-Guevara, Dittrich, James, Moses, Murphy, Plumer and Rozar; +cosponsored by Senators Petrowski and Darling",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Riemer, Anderson, Baldeh, Cabrera, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hong, Milroy, Neubauer, Pope, S. Rodriguez, Shankland, Shelton, Snodgrass, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Johnson, Erpenbach, Agard, Carpenter, Larson, Pfaff and Roys",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Ballweg, Stroebel, Bernier and Wanggaard; +cosponsored by Representatives Neylon, Sanfelippo, Allen, Armstrong, Brandtjen, Brooks, Cabral-Guevara, Dittrich, Edming, James, Gundrum, Kerkman, Kitchens, Knodl, Magnafici, Moses, Novak, Petryk, Ramthun, J. Rodriguez, Rozar, Schraa, Skowronski, Sortwell, Summerfield, Tauchen, Thiesfeldt, Tittl, Tranel, Tusler, VanderMeer and Wichgers",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson and L. Taylor; +cosponsored by Representatives Rozar, Anderson, Sinicki and Bowen",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Neylon, Sanfelippo, Allen, Armstrong, Brandtjen, Brooks, Cabral-Guevara, Dittrich, Edming, Gundrum, James, Kerkman, Kitchens, Knodl, Macco, Magnafici, Moses, Novak, Petryk, Ramthun, J. Rodriguez, Rozar, Schraa, Skowronski, Sortwell, Summerfield, Tauchen, Thiesfeldt, Tittl, Tranel, Tusler, VanderMeer and Wichgers; +cosponsored by Senators Kooyenga, Ballweg, Stroebel, Bernier and Wanggaard",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kitchens, Duchow, Murphy, Novak, Penterman and Steffen; +cosponsored by Senators Cowles and Jacque",2021-09-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Wanggaard and Testin; +cosponsored by Representatives Krug, Rozar, Subeck, Armstrong, Mursau, Ortiz-Velez, Petryk, Shankland, Skowronski and Thiesfeldt",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Callahan, Horlacher, Krug, Milroy, Rozar, Sinicki, Subeck, Tauchen, Tusler and Wichgers; +cosponsored by Senators Jacque, L. Taylor and Roys",2021-06-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Nass, Wanggaard, Marklein, Bernier, Stroebel and Felzkowski; +cosponsored by Representatives Kurtz, Krug, Jagler, Spiros, Callahan, Dittrich, Rozar, Armstrong, Edming, Tranel, Magnafici, James, Cabral-Guevara, Born, Brandtjen, Gundrum, Kuglitsch, Ramthun, Tauchen, Wichgers and Skowronski",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Mursau, Armstrong, Baldeh, Kuglitsch and Wichgers",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Anderson, Baldeh, Cabrera, Conley, Emerson, Neubauer, Pope, S. Rodriguez, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Roys, Bewley, Erpenbach and Johnson",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Neylon, Knodl, Allen, Armstrong, Brandtjen, Brooks, Cabral-Guevara, Dallman, Dittrich, Duchow, Horlacher, James, Krug, Kuglitsch, Magnafici, Murphy, Moses, Oldenburg, Ramthun, Rozar, Sanfelippo, Skowronski, Snyder, Thiesfeldt, Tittl, Tusler, Wittke, Wichgers and Schraa; +cosponsored by Senators Stroebel, Carpenter, Jacque and Nass",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Krug, Mursau, Milroy, Dittrich, VanderMeer, Snodgrass, Moses, Drake, B. Meyers, Edming, Spiros, Steffen, James, Callahan, Tranel, Shankland, Tauchen, Swearingen, Tusler, Murphy, Spreitzer and Subeck; +cosponsored by Senators Felzkowski, Wimberger, Testin, Jacque, Roth, Cowles, Ballweg, Feyen, Marklein, Bewley and L. Taylor",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Anderson, Baldeh, Conley, Emerson, Neubauer, Pope, S. Rodriguez, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Ringhand, Roys, Erpenbach and Johnson",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Hebl, Sinicki, Anderson, Stubbs, Conley, Cabral-Guevara and Cabrera; +cosponsored by Senators Agard, Larson and Ringhand",2021-10-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Ballweg; +cosponsored by Representatives Brooks, Brandtjen, Murphy, Mursau, Tusler and Wichgers",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jagler, Roth, Ballweg, Nass, Stroebel and Wimberger; +cosponsored by Representatives Kuglitsch, Dittrich, Brandtjen, Duchow, Edming, Knodl, Magnafici, Murphy, Pronschinske and Rozar",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Ballweg and Feyen; +cosponsored by Representatives Summerfield, Armstrong, Edming, Kuglitsch, Loudenbeck, Moses, Murphy, Ortiz-Velez, Petryk, Skowronski, Spiros, Tittl, Tusler and VanderMeer",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Agard, Roys, Johnson, Ringhand, Smith, L. Taylor and Larson; +cosponsored by Representatives Spreitzer, Neubauer, Cabrera, Snodgrass, Brostoff, Conley, Considine, Emerson, Goyke, Hebl, Hesselbein, Hong, Moore Omokunde, Ohnstad, Riemer, S. Rodriguez, Shankland, Shelton, Subeck, Vining and Pope",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Darling, Felzkowski, Marklein and Wanggaard; +cosponsored by Representatives Duchow, Allen, Armstrong, Dallman, Edming, Gundrum, Knodl, Krug, Kuglitsch, Macco, Magnafici, Moses, Murphy, Mursau, Penterman, Pronschinske, Schraa and Spiros",2022-02-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Anderson, Conley, Hesselbein, Hong, Ohnstad, Pope, Shelton, Sinicki, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Roys, Agard, Larson, Johnson and Smith",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Steineke and Duchow; +cosponsored by Senator Jagler",2021-09-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Mursau, Subeck, Anderson, Andraca, Bowen, Cabral-Guevara, Emerson, Hebl, S. Rodriguez, Shankland and Spreitzer; +cosponsored by Senators Kooyenga, Feyen, Cowles, Ballweg, Jacque, Ringhand, Roys, Smith and Wanggaard",2021-05-13T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Roth; +cosponsored by Representatives Sortwell, Magnafici, Knodl, Moses, Thiesfeldt and Tittl",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Oldenburg, VanderMeer, Doyle, Edming, James, Krug, B. Meyers, Moses, Mursau, Novak, Petryk, Plumer, Sinicki, Skowronski, Spreitzer, Tranel and Tusler; +cosponsored by Senators Ballweg, Bernier, Petrowski, Pfaff and Ringhand",2021-02-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Felzkowski, Wanggaard, L. Taylor and Jacque; +cosponsored by Representatives Steffen, Horlacher, Mursau, Rozar, Cabrera and Sinicki",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Jacque, Wanggaard, Ringhand, Cowles and Ballweg; +cosponsored by Representatives Swearingen, Wittke, Vos, Born, Billings and Novak",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Ballweg, Bewley, Cowles, Darling and Feyen; +cosponsored by Representatives Magnafici, Armstrong, Edming, B. Meyers, Milroy, Moses, Novak and Tittl",2021-09-15T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Sinicki; +cosponsored by Senator Johnson",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Jacque and Ballweg; +cosponsored by Representatives Tauchen, Ramthun, Dittrich, Kuglitsch and Skowronski",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Felzkowski and Stroebel; +cosponsored by Representatives Duchow, Thiesfeldt, Armstrong, Cabral-Guevara, Dittrich, Gundrum, Kitchens, Krug, Kuglitsch, Magnafici, Murphy, J. Rodriguez, Spiros, Steffen and Wittke",2021-09-15T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Vos; +cosponsored by Senator LeMahieu",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Kooyenga; +cosponsored by Representatives Sinicki, Skowronski and Rozar",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Moore Omokunde, Anderson, Andraca, Baldeh, Billings, Brostoff, Cabrera, Conley, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, B. Meyers, Ohnstad, Pope, Riemer, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink; +cosponsored by Senators Johnson, Larson, Agard, Bewley, Carpenter, Roys, Smith and L. Taylor",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Drake, Subeck, Stubbs, Anderson, Baldeh, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer and Vining; +cosponsored by Senators L. Taylor, Johnson, Roys, Erpenbach, Agard, Smith, Larson and Carpenter",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Jacque, L. Taylor, Johnson, Agard, Erpenbach, Larson and Ringhand; +cosponsored by Representatives Snyder, Hong, Shankland, Tusler, Kitchens, Brostoff, Goyke, Milroy, Ohnstad, Snodgrass, Conley, Hebl, Vining, S. Rodriguez, Shelton, Spreitzer, Hintz, Anderson, Neubauer, Doyle, Drake, Billings, Emerson, Hesselbein, Vruwink, Stubbs, Bowen, Sinicki, Moses, Cabrera, Mursau, Subeck and Wichgers",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, Carpenter, Cowles, Jacque and Smith; +cosponsored by Representatives Spiros, Armstrong, Baldeh, Brandtjen, Cabral-Guevara, Callahan, Dittrich, Duchow, Gundrum, Kitchens, Milroy, Moses, Pronschinske, Schraa, Sinicki, Skowronski, Snodgrass, Steffen, Tusler, Zimmerman and Edming",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Smith, Bernier and Pfaff; +cosponsored by Representatives James, Shankland, Novak, Summerfield, Hebl, Tittl, Shelton, Callahan, Subeck, Conley, Considine, Spreitzer, Moses, Baldeh and Stubbs",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Carpenter, Jacque and Nass; +cosponsored by Representatives Neylon, Knodl, Allen, Armstrong, Brandtjen, Brooks, Cabral-Guevara, Dallman, Dittrich, Duchow, Horlacher, James, Krug, Kuglitsch, Magnafici, Murphy, Moses, Oldenburg, Ramthun, Rozar, Sanfelippo, Skowronski, Snyder, Thiesfeldt, Tittl, Tusler, Wittke, Wichgers and Schraa",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Ballweg; +cosponsored by Representative Loudenbeck",2021-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Duchow, Thiesfeldt, Armstrong, Cabral-Guevara, Dittrich, Gundrum, Kitchens, Krug, Kuglitsch, Magnafici, Murphy, J. Rodriguez, Spiros, Steffen and Wittke; +cosponsored by Senators Darling, Felzkowski, Stroebel and Nass",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Cowles; +cosponsored by Representatives Oldenburg, Armstrong, Snodgrass, Andraca, Mursau and Baldeh",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Anderson, Andraca, Baldeh, Bowen, Cabral-Guevara, Cabrera, Conley, Considine, Drake, Emerson, Hebl, Hesselbein, Hong, Kitchens, Macco, B. Meyers, Milroy, Murphy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Snyder, Spreitzer, Steffen, Stubbs, Subeck, Tittl, Vining and Vruwink; +cosponsored by Senators Kooyenga, Agard, Bernier, Bewley, Carpenter, Cowles, Darling, Johnson, Larson, Petrowski, Pfaff, Ringhand, Roys, Smith, L. Taylor and Wirch",2021-05-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Zimmerman, Dittrich, Duchow, Gundrum, Kuglitsch, Loudenbeck, Murphy, Novak, Skowronski and Wichgers; +cosponsored by Senators Kooyenga, Cowles and Marklein",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Armstrong, Bowen, Brandtjen, Dittrich, Edming, Gundrum, Kitchens, Krug, Kuglitsch, Magnafici, Moses, Murphy, Oldenburg, Plumer, Ramthun, J. Rodriguez, Rozar, Subeck, Tittl, Tusler and Wichgers; +cosponsored by Senators Bernier, Ballweg, Cowles, Jacque, Marklein, Stroebel and Wanggaard",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kurtz, VanderMeer, Cabral-Guevara, Krug, Dallman, Oldenburg, Anderson, Callahan, Hesselbein, Kuglitsch, Murphy, Mursau, Schraa, Skowronski, Tauchen, Thiesfeldt, Wichgers, Hintz, Tusler, Sinicki and Spreitzer; +cosponsored by Senators Marklein, Testin, Feyen, Ballweg, Felzkowski, Jacque, Nass, Pfaff and Ringhand",2021-05-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Wanggaard, L. Taylor and Ballweg; +cosponsored by Representatives Steineke, Stubbs, Armstrong, Baldeh, Cabral-Guevara, Cabrera, Duchow, Edming, Goyke, Gundrum, Kitchens, Krug, Kurtz, Loudenbeck, Macco, Milroy, Murphy, Mursau, Novak, Petryk, Schraa, Sortwell, Spiros, Steffen, Zimmerman, Wittke, Ohnstad and Vruwink",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Smith, Carpenter and Roys; +cosponsored by Representatives Shankland, Shelton, Baldeh, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hesselbein, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Pope, Subeck and Vining",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Feyen, Ballweg, Bernier, Bradley, Darling, Felzkowski, Jagler, Kapenga, LeMahieu, Nass, Stafsholt, Stroebel, Testin, Wanggaard and Wimberger; +cosponsored by Representatives Vos, Callahan, Allen, Armstrong, August, Born, Brandtjen, Cabral-Guevara, Dallman, Dittrich, Duchow, Edming, Gundrum, Horlacher, James, Katsma, Knodl, Kuglitsch, Kurtz, Loudenbeck, Macco, Magnafici, Moses, Murphy, Neylon, Petersen, Petryk, Plumer, Rozar, Schraa, Spiros, Steineke, Summerfield, Swearingen, Tauchen, Thiesfeldt, Tittl, Tranel, VanderMeer, Wichgers, Wittke and Zimmerman",2021-05-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Marklein; +cosponsored by Representative Kurtz",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth and Feyen; +cosponsored by Representatives Cabral-Guevara, Murphy, Schraa, Snodgrass and Tusler",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jagler, Bradley, Darling, Feyen and Ballweg; +cosponsored by Representatives Born, Thiesfeldt, Armstrong, Allen, Dittrich, Gundrum, James, Kuglitsch, Loudenbeck, Magnafici, Novak, Oldenburg, Petryk, Plumer, Rozar, Steffen, Tittl, Tusler and Edming",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Johnson, L. Taylor and Roys; +cosponsored by Representatives Moore Omokunde, Brostoff, Anderson, Bowen, Cabrera, Conley, Haywood, L. Myers, Shelton, Sinicki, Snodgrass and Subeck",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Erpenbach, Johnson, Agard, Carpenter, Larson, Pfaff and Roys; +cosponsored by Representatives Subeck, Vining, Anderson, Baldeh, Cabrera, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hong, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Snodgrass, Spreitzer, Stubbs and Vruwink",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles and Ballweg; +cosponsored by Representatives Kitchens, Knodl, Murphy, Mursau, Novak, Tauchen, Tusler and VanderMeer",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Allen, Cabral-Guevara, Armstrong, Dallman, Hintz, Horlacher, Moses, Rozar, Thiesfeldt, Spreitzer, Neubauer and Andraca; +cosponsored by Senators Jacque, Carpenter and Smith",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Hesselbein, Subeck, Neubauer, Sinicki, Emerson, Considine, Billings, Spreitzer, Hintz, Anderson, Vining, Stubbs, Vruwink, Doyle, Baldeh, Milroy, Ohnstad, S. Rodriguez, Pope, Conley, Shelton, Hebl, Hong, Brostoff, Snodgrass, Haywood, Moore Omokunde, Goyke, Andraca, Bowen, Cabrera, Drake, McGuire, B. Meyers, L. Myers, Ortiz-Velez and Riemer; +cosponsored by Senators Larson, Roys, Agard, Ringhand, Wirch, Johnson, Carpenter, Bewley, Smith, Pfaff, Erpenbach and L. Taylor",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein and Nass; +cosponsored by Representatives Novak, Dittrich, Knodl, Kuglitsch, Moses, Spiros, Brandtjen and Murphy",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Jacque, Nass and Wanggaard; +cosponsored by Representatives Magnafici, Allen, Brandtjen, Cabral-Guevara, Callahan, Dittrich, Duchow, Edming, Gundrum, Horlacher, Murphy, Pronschinske, Ramthun, Rozar, Schraa, Sortwell, Tusler and Wichgers",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman, Allen, Born, Callahan, Dittrich, Edming, James, Knodl, Macco, Magnafici, Moses, Mursau, Novak, Swearingen, Tranel and Wichgers; +cosponsored by Senators Marklein, Felzkowski, Feyen, Jagler, Stafsholt, Stroebel and Wanggaard",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kitchens, Novak, Neubauer, Anderson, Armstrong, Baldeh, Bowen, Cabral-Guevara, Callahan, Conley, Drake, Duchow, Hebl, Kurtz, Loudenbeck, Mursau, Oldenburg, Petryk, Shelton, Sinicki, Spiros, Steffen, Subeck, Tranel, Tusler and Vruwink; +cosponsored by Senators Cowles, Ballweg, Agard, Carpenter, Pfaff, Ringhand, Roys, Smith, L. Taylor and Wirch",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Penterman, August, Vorpagel, Allen, Brandtjen, Cabral-Guevara, Callahan, Dittrich, Edming, James, Knodl, Kuglitsch, Loudenbeck, Macco, Magnafici, Moses, Petersen, Plumer, Schraa, Snyder, Sortwell, Steffen, Tittl, Tusler, Wichgers, Zimmerman and Born; +cosponsored by Senators Stafsholt, Jacque, Bernier, Feyen and Nass",2022-01-31T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Agard, Johnson, Larson, Ringhand, Roys and L. Taylor; +cosponsored by Representatives Krug, Cabral-Guevara, L. Myers, Anderson, Andraca, Bowen, Conley, Emerson, Hong, Mursau, S. Rodriguez, Rozar, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Swearingen, Edming, Armstrong, Brooks, Callahan, Mursau, Sortwell, Summerfield, Thiesfeldt, Tusler, VanderMeer and Vorpagel; +cosponsored by Senators Stafsholt, Felzkowski, Bernier and Feyen",2021-06-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Bewley and Cowles; +cosponsored by Representatives Brooks, Gundrum, Allen, Moses, Ortiz-Velez and Skowronski",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Tittl, Moses, Armstrong, Murphy and Wittke",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Senator Testin,2021-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Rozar, J. Rodriguez, Bowen, Cabral-Guevara, Cabrera, Callahan, Dittrich, Drake, Duchow, Edming, Emerson, Kerkman, Kuglitsch, Magnafici, Moses, Mursau, Novak, Ortiz-Velez, Pope, Shankland, Sinicki, Spiros, Spreitzer, Thiesfeldt, Tusler, Vorpagel and Wittke; +cosponsored by Senators Ballweg, Darling, Carpenter, Cowles, Felzkowski, Jacque, Johnson, Larson, Marklein, Petrowski, Pfaff, Smith, L. Taylor and Wirch",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vos, Steineke, August, Petersen, Vorpagel, Duchow, James, Kerkman, Born, Loudenbeck, Katsma, Zimmerman, J. Rodriguez, Kurtz, Skowronski, Kitchens, Ramthun, Edming, Spiros, Petryk, Neylon, Sortwell, Plumer, Tusler, Murphy, Moses, Summerfield, Snyder, Macco, Steffen, Rozar, Krug, Dittrich, Gundrum, Dallman, Tranel, Brooks, Allen, Wittke, Swearingen, Armstrong and Cabral-Guevara; +cosponsored by Senators LeMahieu, Kapenga, Feyen, Testin, Wanggaard, Marklein, Bernier, Stroebel, Jacque and Ballweg",2021-03-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Edming, Horlacher, Kurtz, Magnafici, Rozar, Skowronski, Spiros, Tittl, VanderMeer, Moses and Brooks; +cosponsored by Senators Stafsholt, Cowles, Felzkowski, Petrowski and Nass",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Bewley, Feyen, Petrowski, Ringhand, Testin and Wirch; +cosponsored by Representatives Oldenburg, Steineke, Billings, Cabrera, Doyle, Edming, Kitchens, Krug, Loudenbeck, B. Meyers, Milroy, Moses, Mursau, Novak, Rozar, Skowronski, Subeck, Tauchen, Thiesfeldt, Tusler and Spreitzer",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Behnke, Brooks, Cabral-Guevara, Dittrich, Edming, Gundrum, Horlacher, James, Kuglitsch, Murphy, Mursau, Ramthun, Schraa, Tusler and Knodl; +cosponsored by Senators Wimberger and Darling",2021-07-01T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Armstrong, Brooks, Edming, Kuglitsch, Murphy, Rozar, Skowronski, Tittl, Tusler and Thiesfeldt; +cosponsored by Senators Feyen and L. Taylor",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Edming, Gundrum, Jagler, Knodl, Krug, Murphy, Neylon, Skowronski, Spiros, VanderMeer and Wichgers; +cosponsored by Senators Darling, Ballweg, Bradley, Felzkowski, Feyen, Jacque, Nass, Petrowski, Stroebel, Wanggaard and Wimberger",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Darling, Roth, Feyen, Marklein, Wanggaard, Bradley, Ballweg and Felzkowski; +cosponsored by Representatives Neylon, Magnafici, Edming, Steffen, Kerkman, Knodl, Spiros, Krug, Brooks, Loudenbeck, Gundrum, Kuglitsch, Murphy, Wichgers, VanderMeer and Macco",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Billings, Considine, Emerson, Andraca, Cabrera, Conley, Hebl, Hesselbein, Milroy, L. Myers, Neubauer, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining, Vruwink and Anderson; +cosponsored by Senators Carpenter, L. Taylor and Wirch",2021-06-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Anderson, Baldeh, Brooks, Cabrera, Conley, Considine, Emerson, Hebl, Hesselbein, Neubauer, S. Rodriguez, Shankland, Shelton, Sinicki, Spreitzer, Stubbs and Vining; +cosponsored by Senators Pfaff, Agard, Bewley, Carpenter, Erpenbach, Jacque, Larson, Roys, L. Taylor and Wirch",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Hong, Anderson, Baldeh, Conley, Emerson, Goyke, Hebl, Moore Omokunde, Neubauer, Shankland, Sinicki, Spreitzer and Subeck; +cosponsored by Senators Larson, Carpenter and Roys",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Jacque and Nass; +cosponsored by Representatives Brandtjen, Allen, Behnke, Gundrum, James, Kuglitsch, Magnafici, Murphy, Penterman, Sanfelippo and Thiesfeldt",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Felzkowski, Roys and Carpenter; +cosponsored by Representatives Stubbs, Sortwell, Cabrera, Neubauer, Considine, Hong, Conley, Baldeh, Tranel, Ortiz-Velez, Subeck, Billings, Tusler and Hesselbein",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Ramthun, Horlacher, Sortwell, Magnafici, Wichgers, Cabral-Guevara, Brooks, Jagler, Gundrum, Macco, Skowronski, Thiesfeldt, Brandtjen, Allen, Dittrich, Moses, Knodl, Schraa, Kuglitsch and Edming",2021-01-26T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Bewley, Ringhand, Agard and Carpenter; +cosponsored by Representatives Shankland, Doyle, Considine, B. Meyers, Milroy, Vruwink, Baldeh, Cabrera, Emerson, Hebl, Hesselbein, Hong, Neubauer, Ohnstad, S. Rodriguez, Shelton, Snodgrass, Spreitzer, Subeck and Sinicki",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Testin, Bewley, Cowles, Felzkowski, Marklein, Nass, Stroebel and Wanggaard; +cosponsored by Representatives Brooks, Murphy, Callahan, Dittrich, Edming, Knodl, Krug, Kuglitsch, Magnafici, Moses, Plumer, Rozar, Sanfelippo, Tauchen, Wichgers and Zimmerman",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Carpenter, Larson and Roys; +cosponsored by Representatives Bowen, Hong, Anderson, Baldeh, Billings, Brostoff, Cabrera, Conley, Emerson, Hebl, Moore Omokunde, Neubauer, Shelton, Sinicki and Spreitzer",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives S. Rodriguez, Subeck, Sinicki, Hong, Emerson, Stubbs, Andraca, Billings, Cabrera, Conley, Drake, Hesselbein, B. Meyers, Neubauer, Ortiz-Velez, Pope, Shankland, Shelton, Snodgrass, Vining, Anderson, Milroy, Spreitzer, Cabral-Guevara, Haywood, Vruwink, Hintz, Considine, Hebl, Ohnstad, Moore Omokunde, Goyke and Baldeh; +cosponsored by Senators Johnson, Agard, Bewley, Ringhand, Roys, Carpenter, Erpenbach, Larson and Pfaff",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives McGuire, Andraca, Conley, Considine, Drake, Emerson, Goyke, Hebl, Hesselbein, B. Meyers, Milroy, Ohnstad, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink; +cosponsored by Senators Carpenter, Agard, Johnson, Larson and Smith",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Bradley; +cosponsored by Representative Kuglitsch, by request of Public Service Commission",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Smith; +cosponsored by Representative Vruwink",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives B. Meyers, Doyle, Vruwink, Anderson, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining; +cosponsored by Senators Smith, Larson, Roys, Erpenbach, Agard, L. Taylor and Pfaff",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Allen, Brandtjen, Brooks, Cabral-Guevara, Dittrich, Horlacher, Knodl, Murphy, L. Myers, Thiesfeldt, Tranel, Wichgers, Mursau and Tusler; +cosponsored by Senators Bradley, Ballweg, Cowles, Felzkowski, Jacque, Marklein and Nass",2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Milroy, Moses, Mursau, Schraa, Sinicki, Skowronski and Dittrich; +cosponsored by Senators Bernier, Wanggaard, Cowles, Feyen, Kooyenga and Ringhand",2021-03-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Carpenter, Marklein and Testin; +cosponsored by Representatives Petersen, Dittrich, Drake, Hintz, Krug, Macco, Murphy, Mursau, Sinicki, Thiesfeldt, Vos and Vruwink",2022-02-11T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Committee on Rules,2021-01-26T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Horlacher, Bowen, Brooks, Cabral-Guevara, Dittrich, Duchow, Gundrum, Hong, Magnafici, Moses, Murphy, Rozar, Schraa, Skowronski, Subeck and Wichgers; +cosponsored by Senators Bernier, Ringhand and Testin",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Stroebel; +cosponsored by Representative Wittke",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein and Ballweg; +cosponsored by Representatives Plumer, Tranel, Allen, Armstrong, Baldeh, Dallman, Edming, Kerkman, Kitchens, Krug, Magnafici, Moses, Murphy, Novak, Skowronski, Spiros, Summerfield, Tauchen, Tittl and Tusler",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Darling, Larson, Stroebel and Marklein; +cosponsored by Representatives Plumer, Kitchens, Krug, Novak, Penterman, Snyder, Sortwell, Armstrong, Milroy, Rozar, Dittrich, Spiros, VanderMeer, Horlacher, James, Cabral-Guevara and Kurtz",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Darling, Roth, Wanggaard, Bradley, Nass, Ballweg and Felzkowski; +cosponsored by Representatives Gundrum, Rozar, Edming, Spiros, Krug, Neylon, Brooks, Murphy, Jagler, Allen, Knodl and Wichgers",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Testin, Ballweg, Cowles, Marklein and Smith; +cosponsored by Representatives Krug, Kurtz, Armstrong, Brandtjen, Doyle, Moses, Mursau, Novak, Oldenburg, Petryk, Rozar, Summerfield and Cabrera",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Swearingen, Mursau, Edming, Spiros and Tusler; +cosponsored by Senators Petrowski, Felzkowski, Cowles and Nass",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Felzkowski, Stafsholt and Darling; +cosponsored by Representatives Rozar, VanderMeer, Dittrich, Armstrong, Born, Cabral-Guevara, Callahan, Duchow, Edming, Gundrum, Krug, Kurtz, Loudenbeck, Moses, Mursau, Oldenburg, Petryk, Plumer, Snyder, Swearingen, Tranel, Vorpagel, Wittke and Zimmerman",2021-04-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Roys, Ringhand, Larson, L. Taylor and Carpenter; +cosponsored by Representatives Emerson, Conley, Cabrera, Hebl, Anderson, Sinicki, Stubbs, Vruwink, Subeck, Shelton, Ortiz-Velez, Bowen, Billings, Ohnstad, S. Rodriguez, Haywood and Brostoff",2021-04-28T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Bernier, Carpenter, Darling, Feyen and Marklein; +cosponsored by Representatives Kitchens, Magnafici, Tusler, Armstrong, August, Born, Dittrich, Duchow, James, Kerkman, Knodl, Krug, Kuglitsch, Kurtz, Loudenbeck, Moses, Mursau, Neylon, Novak, Plumer, Skowronski, Snyder, Spiros, Steffen, Steineke, Summerfield, Swearingen, Tauchen, Tranel, Vorpagel, Vos and Wittke",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Darling, Wirch, L. Taylor, Ringhand, Pfaff, Larson, Carpenter, Agard and Erpenbach; +cosponsored by Representatives Subeck, Rozar, Vining, Tusler, Stubbs, Spreitzer, Sinicki, Shelton, Shankland, S. Rodriguez, Neubauer, L. Myers, Murphy, Milroy, Krug, Hebl, Emerson, Drake, Considine, Conley, Cabrera, Cabral-Guevara, Brostoff, Bowen, Baldeh and Andraca",2021-08-11T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Brandtjen, Cabral-Guevara, Edming, Gundrum, Horlacher, Kuglitsch, L. Myers, Penterman, Spiros and Steffen; +cosponsored by Senators Kooyenga, Ballweg, Darling and Felzkowski",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Wanggaard and Stroebel",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Ballweg, Cowles, L. Taylor and Wanggaard; +cosponsored by Representatives Thiesfeldt, Wichgers, Brandtjen, Cabrera, Dittrich, Edming, Gundrum, Jagler, Moses, Sinicki, Skowronski, Steffen, Tittl, Rozar and Spiros",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Stroebel, Wimberger, Ballweg, Bradley, Felzkowski, Feyen, Jacque, Nass, Petrowski and Wanggaard; +cosponsored by Representatives Steffen, Edming, Gundrum, Jagler, Knodl, Krug, Murphy, Neylon, Skowronski, Spiros, VanderMeer and Wichgers",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Allen, Brandtjen, Callahan, Dittrich, Duchow, Edming, Gundrum, Katsma, Krug, Magnafici, Murphy, Ramthun, J. Rodriguez, Rozar, Thiesfeldt, Tittl, Tusler, Vos, Tauchen and Knodl; +cosponsored by Senators Stroebel, Bradley, Jacque, Nass, Testin and Wanggaard",2021-01-26T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Carpenter, Agard and Johnson; +cosponsored by Representatives Brostoff, Anderson, Sinicki, Andraca, Hebl, Shankland, Ohnstad, Baldeh, Neubauer, Snodgrass, Cabrera, Milroy, Pope, Conley and Shelton",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Wanggaard, Carpenter, Ringhand and L. Taylor; +cosponsored by Representatives Tusler, Callahan, Cabrera, Emerson, Milroy, Mursau, Rozar, Subeck, Thiesfeldt, Tittl and Wichgers",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Bewley, Pfaff and Testin; +cosponsored by Representatives Kitchens, Armstrong, Billings, Doyle, Duchow, James, Knodl, Loudenbeck, Milroy, Moses, Mursau, Novak, Rozar, Skowronski, Steffen, Subeck and Vruwink",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Ballweg; +cosponsored by Representatives Brooks, Brandtjen, Bowen, Dittrich, Gundrum, Moses, Mursau, Skowronski, Tusler and Wichgers",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, L. Taylor, Darling and Cowles; +cosponsored by Representatives Spiros, Armstrong, Brandtjen and Ortiz-Velez",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Rozar, Snyder, Armstrong, Baldeh, Billings, Dittrich, Emerson, Gundrum, Hebl, Moses, Ortiz-Velez, Ramthun, S. Rodriguez, Spiros, Spreitzer, Stubbs, Subeck, Tauchen, Vruwink and Skowronski; +cosponsored by Senators Darling, Johnson, Ballweg, Carpenter, Felzkowski, Jacque, Larson, L. Taylor and Wanggaard",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Katsma, Macco, Brooks, Cabral-Guevara, Dittrich, Duchow, Edming, Horlacher, Kitchens, Knodl, Kuglitsch, Mursau, Novak, Penterman, Spiros, Wichgers, Wittke and Zimmerman; +cosponsored by Senators Marklein, Kooyenga, Ringhand, Ballweg, Felzkowski, Nass and Stroebel",2021-09-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Carpenter, Ballweg, Felzkowski, Feyen, Jacque, Marklein and L. Taylor; +cosponsored by Representatives Macco, Wittke, Armstrong, Callahan, Dittrich, Edming, Horlacher, Katsma, Kerkman, Knodl, Kuglitsch, Magnafici, Milroy, Murphy, Petryk, Ramthun, Skowronski, Snyder, Steffen, Summerfield, Tranel, Zimmerman, James and Doyle",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard and Roys; +cosponsored by Representatives Snodgrass, Shelton, Hebl, Cabrera, Subeck, Pope, Hesselbein, Spreitzer and Sinicki",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Petersen, Callahan, Steffen, Thiesfeldt, Moses, James, Edming, Mursau, Oldenburg, Penterman, Spiros, Sinicki and Knodl; +cosponsored by Senators Ballweg, Felzkowski, Cowles, Feyen and Wanggaard",2021-09-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Bernier, Stroebel, Felzkowski, Jacque and Stafsholt; +cosponsored by Representatives Petryk, Brooks, Armstrong, Born, Cabral-Guevara, Callahan, Dittrich, Duchow, Edming, Gundrum, James, Katsma, Krug, Loudenbeck, Moses, Murphy, Mursau, Oldenburg, Plumer, Rozar, Snyder, Swearingen, Tranel, Tusler, Vorpagel, Wittke and Zimmerman",2021-04-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sanfelippo, Krug, Allen, Armstrong, Brandtjen, Brooks, Cabral-Guevara, Callahan, Dallman, Dittrich, Duchow, Edming, Gundrum, Horlacher, Jagler, James, Katsma, Kerkman, Kitchens, Knodl, Kuglitsch, Macco, Magnafici, Moses, Murphy, Mursau, Novak, Neylon, Plumer, Pronschinske, Ramthun, J. Rodriguez, Rozar, Schraa, Skowronski, Sortwell, Spiros, Steffen, Tauchen, Thiesfeldt, Tittl, Tusler, Vorpagel, Wichgers, Wittke and Zimmerman; +cosponsored by Senators Kooyenga, Ballweg, Felzkowski, Jacque, Marklein, Nass and Wanggaard",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Agard and Ballweg; +cosponsored by Representatives Callahan, Brandtjen, Cabrera, Edming, Gundrum, Kuglitsch, Moses, Mursau, Schraa, Stubbs and Wichgers",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Testin; +cosponsored by Representative Plumer",2021-06-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kurtz, Novak, Tranel, Oldenburg, VanderMeer, Dittrich, Mursau, Tusler and Spiros; +cosponsored by Senators Marklein, Nass, Ballweg, Feyen and Ringhand",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Nass, Jagler, Bernier, Ballweg, Jacque and Felzkowski; +cosponsored by Representatives Dittrich, Horlacher, Kitchens, Spiros, Penterman, Rozar, Wittke, Knodl, Brandtjen, Moses, Thiesfeldt, Zimmerman and Summerfield",2021-10-18T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Considine, Andraca, Cabrera, Conley, Hebl, Hesselbein, Hong, Neubauer, Ohnstad, Pope, Shelton, Sinicki, Snodgrass and Vruwink",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Erpenbach, Agard, Bewley, Carpenter, Johnson, Larson, Pfaff and Ringhand; +cosponsored by Representatives Subeck, B. Meyers, Anderson, Cabral-Guevara, Cabrera, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hong, Milroy, L. Myers, Neubauer, Ohnstad, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vruwink",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Bradley, Felzkowski, Marklein and Stroebel; +cosponsored by Representatives Edming, Skowronski, Callahan, Knodl, Kurtz, Magnafici, Moses, Mursau, Rozar, Tranel, VanderMeer and Wichgers",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Roys, L. Taylor and Carpenter; +cosponsored by Representatives Hong, Sinicki, Goyke, Emerson, Milroy, Cabrera, Conley, Hebl, Anderson, Bowen, Neubauer, Stubbs, Subeck, L. Myers, Snodgrass, Riemer and Shelton",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Larson, Johnson, Roys, Smith and Wirch; +cosponsored by Representatives Shelton, Hong, Stubbs, Brostoff, Conley, Drake, Neubauer, Sinicki, Snodgrass, Spreitzer, Anderson, Baldeh, Billings, Cabrera, Considine, Doyle, Emerson, Haywood, Hebl, Hesselbein, Hintz, Ohnstad, Riemer, Vining and Vruwink",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Ballweg and Carpenter; +cosponsored by Representatives Murphy, Cabral-Guevara, Armstrong, Gundrum, Horlacher, Rozar, Subeck, Tusler and Wichgers",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Cowles, Darling and Jagler; +cosponsored by Representatives Zimmerman, Dittrich, Edming, Krug, Loudenbeck, Ortiz-Velez, Schraa, Plumer and Cabrera",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Gundrum, Penterman, Mursau, Wichgers, Tusler, Snyder and Doyle; +cosponsored by Senator Jacque",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Jacque, Stroebel and Feyen; +cosponsored by Representatives Sanfelippo, Brandtjen, Horlacher, James, Knodl, Kuglitsch, Magnafici, Murphy, Ramthun, Rozar and Wichgers",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Vos; +cosponsored by Senator LeMahieu",2021-09-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Ballweg, Carpenter and Felzkowski; +cosponsored by Representatives Murphy, Brandtjen, Gundrum, Horlacher, Milroy, Mursau, Novak, Tittl, Skowronski and Thiesfeldt",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke and Macco; +cosponsored by Senators Marklein, Kooyenga and Kapenga",2021-01-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga and Wanggaard; +cosponsored by Representatives Spiros, Baldeh, Krug, Murphy, Skowronski, Steffen and Tusler",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Shankland, Emerson, Andraca, Baldeh, Cabrera, Conley, Hebl, Hong, McGuire, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Sinicki, Snodgrass, Spreitzer, Vining, Vruwink, Brostoff, Subeck and Stubbs; +cosponsored by Senators Smith, Larson, Agard, Bewley, Johnson and Ringhand",2021-10-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Kooyenga; +cosponsored by Representatives Sanfelippo, Cabral-Guevara, Dittrich, Duchow, Moses, Murphy and Rozar",2021-02-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Dittrich, Krug, Milroy, Murphy, Rozar, Schraa, Skowronski, Subeck, Thiesfeldt, Tusler, Baldeh, Cabrera, Snodgrass, B. Meyers and James; +cosponsored by Senators Darling, Roth and L. Taylor",2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman, Kurtz, Skowronski, Steffen, Tittl and Tusler; +cosponsored by Senators Ballweg and Marklein",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Knodl, Rozar, Brandtjen, Skowronski and Tusler; +cosponsored by Senator Jacque",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, McGuire, Cabrera, Emerson, Hebl, Hesselbein, Ohnstad, Shankland, Shelton, Sinicki, Spreitzer and Vruwink; +cosponsored by Senators Larson, Carpenter, Johnson and Ringhand",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, L. Taylor, Wirch, Roys, Agard, Larson and Erpenbach; +cosponsored by Representatives Haywood, Emerson, Milroy, Cabrera, Hebl, Drake, Brostoff, Conley, Spreitzer, Vining, Moore Omokunde, Sinicki, Considine, Goyke, Shelton, Neubauer, Hesselbein, S. Rodriguez, Bowen, Stubbs, Anderson, Shankland and Subeck",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vos, Duchow, Magnafici, Dittrich, Plumer, Edming, Penterman, Tittl, Allen, Summerfield, Schraa, Rozar, Katsma, Loudenbeck, Sortwell, Callahan, Tusler, Gundrum, Murphy, J. Rodriguez, Spiros, Knodl, Thiesfeldt and Wittke; +cosponsored by Senators Kapenga, Ballweg, Bradley, Felzkowski, Jagler, LeMahieu, Marklein, Nass, Roth, Stroebel, Testin, Wanggaard and Bernier",2021-10-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Pfaff, Smith, Erpenbach, Roys, Larson, Agard and Ringhand; +cosponsored by Representatives Considine, Shelton, Cabrera, Conley, Emerson, Hebl, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +Introduced privileged by Committee on Rules,2021-01-07T06:00:00+00:00,[],WI,2021 +"Introduced by Representatives Subeck, S. Rodriguez, Anderson, Cabrera, Conley, Considine, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Milroy, L. Myers, Neubauer, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Erpenbach, Johnson, Agard, Bewley, Carpenter, Larson, Pfaff, Ringhand, Roys and Wirch",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Hong, Anderson, Baldeh, Billings, Brostoff, Cabrera, Emerson, Hebl, Moore Omokunde, Neubauer, Pope, Shelton, Sinicki, Spreitzer and Subeck; +cosponsored by Senators L. Taylor, Agard, Roys and Carpenter",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Felzkowski and L. Taylor; +cosponsored by Representatives Summerfield, Armstrong, Kuglitsch, Moses, J. Rodriguez, Skowronski and Swearingen",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Erpenbach, Agard, Bewley, Carpenter, Johnson, Larson, Pfaff and Ringhand; +cosponsored by Representatives Subeck, Hesselbein, Anderson, Cabral-Guevara, Conley, Considine, Doyle, Emerson, Hebl, Hong, Milroy, L. Myers, Neubauer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Vining and Vruwink",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles and Jacque; +cosponsored by Representatives Kitchens, Duchow, Murphy, Novak, Penterman and Steffen",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snodgrass, Cabrera, Hebl, Hesselbein, Shelton, Subeck, Dittrich and Sinicki; +cosponsored by Senators Agard and Roys",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee for Review of Administrative Rules,2021-01-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Roth, Erpenbach, Bernier, Cowles, Darling, Feyen, Marklein, Ringhand, Smith, Wanggaard, Wirch, Ballweg, Jacque, Larson, Nass and L. Taylor; +cosponsored by Representatives Schraa, Dittrich, Duchow, Horlacher, Krug, Ramthun, Novak, J. Rodriguez, Spiros, Tauchen, Tittl, Armstrong, Brooks, Cabral-Guevara, Callahan, Edming, Gundrum, James, Kitchens, Kuglitsch, Loudenbeck, Magnafici, Moses, Mursau, Petersen, Plumer, Rozar, Skowronski, Snyder, Sortwell, Swearingen, Thiesfeldt, Tranel, Vorpagel and Zimmerman",2021-01-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives VanderMeer, Krug, Rozar, Dittrich, Edming, Knodl, Kuglitsch, Magnafici, Murphy, Mursau, Ohnstad, Oldenburg, Shankland, Snodgrass, Snyder, Spiros, Steffen, Tauchen, Tittl and Wichgers; +cosponsored by Senators Testin, Felzkowski, Roth, Cowles, Bewley and Nass",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Felzkowski, Kapenga, Marklein, Petrowski, Wanggaard, Wimberger, Stroebel, Bernier, Stafsholt, Nass, Ballweg and Bradley; +cosponsored by Representatives Thiesfeldt, Horlacher, Brooks and Schraa",2021-01-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Moses, Allen, Cabral-Guevara, Callahan, Dallman, Dittrich, Edming, Gundrum, Macco, Murphy, Novak, Petryk, Tauchen, Thiesfeldt, Tranel, Schraa, Shankland, Sinicki, Spreitzer, Subeck, VanderMeer, Vruwink, Brandtjen and Mursau; +cosponsored by Senators Jacque, Larson, Roys, Wimberger, Johnson, Bewley, Carpenter, Nass and Ballweg",2021-05-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Bernier, Felzkowski, Ballweg and Darling; +cosponsored by Representatives Dallman, Kurtz, Cabral-Guevara, Callahan, Duchow, Edming, Krug, Moses, Oldenburg, Plumer, Rozar, Snyder, Swearingen, Tranel, Vorpagel, Wittke and Zimmerman",2021-04-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Neylon, Kuglitsch, Magnafici, Edming, Steffen, Kerkman, Knodl, Spiros, Krug, Brooks, Loudenbeck, Gundrum, Macco, Murphy, Wichgers and VanderMeer; +cosponsored by Senators Stroebel, Darling, Roth, Feyen, Marklein, Wanggaard, Bradley, Ballweg and Felzkowski",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Johnson, Roys, Wirch and Larson; +cosponsored by Representatives Sinicki, Moore Omokunde, Bowen, Emerson, Baldeh, Hebl, Stubbs, Brostoff, Cabrera, Hesselbein, Anderson, Spreitzer, Shelton, Neubauer, B. Meyers, McGuire, Snodgrass, Hong, Ohnstad, Goyke, L. Myers and Pope",2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Moses, Brooks, Cabral-Guevara, Callahan, Edming, Mursau, Oldenburg, Pronschinske, Skowronski, Tittl and Wichgers; +cosponsored by Senators Jacque and Felzkowski",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Schraa and Dittrich",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee for Review of Administrative Rules,2021-01-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives August, Kerkman, Steffen, Novak, Tranel, Knodl, Dallman, VanderMeer, Duchow, Plumer, Armstrong, Wichgers, Murphy, Wittke, Tauchen, Rozar, Oldenburg, Thiesfeldt, Dittrich, Mursau and Schraa; +cosponsored by Senators Nass, Wanggaard, Roth, Jacque, Ballweg and Felzkowski",2021-05-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Gundrum, Rozar, Edming, Spiros, Krug, Neylon, Brooks, Murphy, Jagler, Allen, Knodl and Wichgers; +cosponsored by Senators Stroebel, Darling, Roth, Wanggaard, Bradley, Nass, Ballweg and Felzkowski",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steineke, Stubbs, Armstrong, Baldeh, Cabral-Guevara, Cabrera, Duchow, Edming, Goyke, Gundrum, Kitchens, Krug, Kurtz, Loudenbeck, Macco, Milroy, Moses, Mursau, Novak, Petryk, Schraa, Spiros, Steffen, Tranel, Wittke and Zimmerman; +cosponsored by Senators Cowles, L. Taylor, Wanggaard and Ballweg",2021-05-18T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Felzkowski, Feyen, Nass, Stroebel, Wanggaard and Bernier; +cosponsored by Representatives Brandtjen, Rozar, Allen, Gundrum, Knodl, Magnafici, Moses, Ramthun, Skowronski, Wichgers and Plumer",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Ballweg; +cosponsored by Representatives Mursau, Thiesfeldt, Armstrong and Tauchen",2021-04-28T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Ballweg, L. Taylor and Testin; +cosponsored by Representatives VanderMeer, Armstrong, Krug, Kurtz, Moses, Oldenburg, Ortiz-Velez, Skowronski, Tauchen, Thiesfeldt, Tranel, Cabrera and Tittl",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Edming, Callahan, Anderson, Bowen, Brandtjen, Brooks, Milroy, Moses, Rozar, Sinicki, Tauchen, Thiesfeldt and Wichgers; +cosponsored by Senators Jacque, Darling and Wimberger",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Carpenter and Roys; +cosponsored by Representatives Bowen, Hong, Anderson, Baldeh, Conley, Emerson, Goyke, Hebl, Moore Omokunde, Neubauer, Shankland, Sinicki, Spreitzer and Subeck",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Kooyenga, Bernier, Nass and Pfaff; +cosponsored by Representatives Knodl, Andraca, Armstrong, Brandtjen, Hintz, L. Myers, Neylon, Oldenburg, Pope, Rozar, Skowronski, Tittl, Vining and Allen",2021-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Wanggaard, Cowles, Feyen, Kooyenga and Ringhand; +cosponsored by Representatives Brooks, Milroy, Moses, Mursau, Schraa, Sinicki and Skowronski",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Armstrong, Brandtjen, Brooks, Cabrera, Moses, Rozar, Thiesfeldt and Wichgers; +cosponsored by Senators Wanggaard, L. Taylor, Darling, Cowles, Feyen, Jacque and Roys",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Magnafici, Edming, Armstrong, Brooks, Cabral-Guevara, Callahan, Dittrich, Doyle, James, Knodl, Milroy, Moses, Neylon, Novak, Oldenburg, Petryk, Plumer, Ramthun, Rozar, Skowronski, Spiros, Tauchen, Thiesfeldt, Wichgers and Murphy; +cosponsored by Senators Felzkowski, Ballweg, Bewley, Cowles, Jacque, Marklein and Nass",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Cowles, Jacque, Roys and L. Taylor; +cosponsored by Representatives Macco, Steffen, Armstrong, Baldeh, James, Kitchens, Ortiz-Velez, Rozar, Skowronski, Subeck, Tauchen, Thiesfeldt, Tusler and Zimmerman",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Bowen, Edming, Knodl, Magnafici, Schraa, Sortwell, Tranel, Wichgers and Sinicki; +cosponsored by Senators Roth, Ballweg and Feyen",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Smith; +cosponsored by Representative Vruwink",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Petryk, Mursau, Rozar and Wichgers; +cosponsored by Senator Roth",2021-10-18T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Kooyenga and Kapenga; +cosponsored by Representatives Wittke, Macco, Katsma and Zimmerman",2021-01-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Carpenter, Marklein and Roys; +cosponsored by Representatives Wittke, Duchow, Kuglitsch, Bowen, Edming and Knodl",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Andraca, Kerkman, McGuire, Ohnstad, Neubauer, Snodgrass, Considine, Sinicki, Conley, Pope, Spreitzer, Shelton, Subeck, Hong and Stubbs; +cosponsored by Senators Larson, Wirch, Carpenter, Agard, L. Taylor, Johnson and Smith",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Nass, Bradley, Felzkowski and Stafsholt; +cosponsored by Representatives Sortwell, Kuglitsch, Brooks, Knodl, Cabral-Guevara, Cabrera, Gundrum, Horlacher, Magnafici, Moses, Murphy, Rozar, Skowronski, Thiesfeldt and Wichgers",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Nass; +cosponsored by Representatives Sortwell, Thiesfeldt, Allen, Brandtjen, Cabral-Guevara, Edming, Gundrum, Magnafici, Murphy, Ramthun, Rozar, Tittl, Tusler and Wichgers",2021-03-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Ballweg, Stroebel and Marklein; +cosponsored by Representatives James, Allen, Armstrong, Brandtjen, Brooks, Dittrich, Duchow, Edming, Gundrum, Knodl, Krug, Magnafici, Moses, Murphy, Petryk, Ramthun, Rozar, Sortwell and Tusler",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives S. Rodriguez, Andraca, Goyke, Billings, Brostoff, Conley, Considine, Drake, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Ohnstad, Pope, Shelton, Sinicki, Spreitzer, Stubbs, Subeck, Vining and Cabrera; +cosponsored by Senators Agard, Roys, Carpenter, Johnson, Larson and Ringhand",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Anderson, Baldeh, Cabrera, Conley, Emerson, Neubauer, Pope, S. Rodriguez, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Roys, Erpenbach and Johnson",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Larson, Agard, Erpenbach, L. Taylor and Smith; +cosponsored by Representatives Neubauer, Anderson, Emerson, Baldeh, Brostoff, Cabrera, Conley, Considine, Hebl, Hong, B. Meyers, Milroy, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman, Summerfield, Dittrich, Gundrum, Mursau, Subeck, Swearingen, Thiesfeldt and Tusler; +cosponsored by Senators Roth, Felzkowski and Wanggaard",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spreitzer, S. Rodriguez, Neubauer, Anderson, Andraca, Baldeh, Billings, Brostoff, Cabrera, Conley, Emerson, Goyke, Hebl, Hesselbein, Hong, Pope, Shankland, Shelton, Sinicki, Subeck and Vruwink; +cosponsored by Senators Larson and L. Taylor",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Brooks, Dallman, Edming, Knodl, Kurtz, Magnafici, Moses, Murphy, Rozar, Schraa, Skowronski and Tusler; +cosponsored by Senators Feyen, Felzkowski and Nass",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Emerson, Anderson, Baldeh, Billings, Cabrera, Doyle, Drake, Hintz, Hong, Milroy, Moses, Neubauer, Rozar, Shankland, Snodgrass, Steffen, Subeck, Thiesfeldt, Tusler, Tittl and Brostoff; +cosponsored by Senators Jacque, Wimberger, Carpenter, Pfaff, Marklein, Ringhand, Smith and Testin",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators L. Taylor, Carpenter, Larson, Roys and Smith; +cosponsored by Representatives Shankland, Stubbs, Hebl, Anderson, Andraca, Baldeh, Cabrera, Conley, Considine, Drake, Emerson, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Pope, Shelton, Snodgrass and Subeck",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and L. Taylor; +cosponsored by Representatives Murphy, Dittrich, Cabral-Guevara, Krug, Moses, Mursau, Petryk, Spreitzer, Subeck, Tauchen and Tittl",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Mursau, Thiesfeldt, Armstrong and Tauchen; +cosponsored by Senators Jacque and Ballweg",2021-05-13T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Loudenbeck, Knodl, Sortwell, Callahan, Mursau, Armstrong, Bowen, Brooks, Dittrich, Duchow, Edming, Krug, Kuglitsch, Magnafici, Murphy, Rozar, Schraa, Steffen and Wichgers; +cosponsored by Senators Felzkowski, Ballweg, Marklein and Nass",2021-05-13T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Shelton, Emerson, Andraca, Baldeh, Cabrera, Conley, Hebl, Hong, McGuire, B. Meyers, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Sinicki, Snodgrass, Spreitzer, Vining, Vruwink, Brostoff, Subeck and Stubbs; +cosponsored by Senators Smith, Larson, Agard, Johnson and Roys",2021-10-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, Darling, Bradley, Cowles, Feyen, Jacque, Nass, Roth and Testin; +cosponsored by Representatives Spiros, Sanfelippo, Armstrong, Brandtjen, Cabral-Guevara, Horlacher, Magnafici, Moses, Rozar and Wichgers",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Feyen, Petrowski, Bewley and Jacque; +cosponsored by Representatives Armstrong, Tittl, Ramthun, Rozar, Ohnstad, Tauchen, Thiesfeldt, VanderMeer and Tusler",2021-08-19T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Agard, Larson and Roys; +cosponsored by Representatives Bowen, L. Myers, Hong, Anderson, Baldeh, Billings, Brostoff, Cabrera, Conley, Emerson, Goyke, Hebl, Moore Omokunde, Neubauer, Shankland, Shelton, Sinicki, Spreitzer and Subeck",2021-08-19T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Hebl,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Billings, Spiros, Armstrong, Brandtjen, Cabral-Guevara, Cabrera, Doyle, Horlacher, Murphy, Mursau, Ohnstad, Ortiz-Velez, Rozar, Sinicki, Subeck, Vruwink and Wichgers; +cosponsored by Senators Wanggaard, Smith, Ballweg, Darling, Feyen, Marklein and Pfaff",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Bewley, Ringhand, Roys and L. Taylor; +cosponsored by Representatives Subeck, Hong, Baldeh, Brostoff, Cabrera, Conley, Drake, Emerson, Haywood, Hebl, Pope, Shankland, Sinicki, Snodgrass, Spreitzer and Hesselbein",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Magnafici; +cosponsored by Senator Bernier",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hintz, Neubauer, Baldeh, L. Myers, Conley, Bowen, Stubbs, Spreitzer, Ohnstad, Anderson, Goyke, Emerson, Subeck and Hesselbein; +cosponsored by Senators Roys and Agard",2021-09-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Marklein, Johnson and Roys; +cosponsored by Representatives J. Rodriguez, Snyder, Doyle, Billings, Cabrera, Dittrich, Duchow, Kuglitsch, Tusler and Sinicki",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snodgrass, Shelton, Hintz, Anderson, Andraca, Baldeh, Billings, Brostoff, Cabrera, Conley, Considine, Drake, Emerson, Hebl, Hesselbein, Neubauer, Pope, Shankland, Sinicki, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Smith, Roys, Agard, Carpenter and Wirch",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Vos and Steineke,2021-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Petersen, Sortwell, Skowronski, Tauchen, Penterman, Armstrong, Novak, Kerkman, Wichgers, Kuglitsch, Ohnstad, Brandtjen, Dittrich, Subeck, Mursau, Zimmerman, Knodl and Murphy; +cosponsored by Senators Kooyenga, L. Taylor, Ballweg, Marklein and Wanggaard",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Shelton, Hebl, Neubauer, Milroy, Cabrera, Spreitzer, Subeck, Ohnstad, Considine, Sinicki, Billings, Hong, S. Rodriguez and Stubbs; +cosponsored by Senators Larson, Carpenter, Roys, Ringhand, Smith and Agard",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Goyke, Conley, Snodgrass, Brostoff, Emerson, Baldeh, Hong, Hebl, Drake, Andraca, Pope, B. Meyers, Vruwink, Considine, Milroy, Stubbs, Vining, Spreitzer, Hesselbein, Ortiz-Velez, Riemer, Hintz, Shankland, Subeck, S. Rodriguez, Billings and Sinicki; +cosponsored by Senators Smith, L. Taylor, Johnson, Carpenter, Roys, Larson, Bewley, Ringhand and Agard",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Armstrong, Tranel, Oldenburg, Born, Cabral-Guevara, Callahan, Duchow, Edming, James, Knodl, Krug, Kurtz, Moses, Mursau, Petryk, Plumer, Rozar, Snyder, Swearingen, Tusler, Vorpagel, Wittke and Zimmerman; +cosponsored by Senators Marklein, Bernier, Feyen and Felzkowski",2021-04-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Baldeh, Neubauer, Anderson, Andraca, Brostoff, Cabrera, Conley, Considine, Emerson, Hong, B. Meyers, Milroy, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Stubbs, Subeck and Vruwink; +cosponsored by Senators Agard, Roys, Erpenbach, L. Taylor and Larson",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Goyke, Ortiz-Velez, Anderson, Andraca, Baldeh, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Smith, Roys, Erpenbach, Agard, L. Taylor and Larson",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Callahan, Considine, Behnke, Bowen, Cabral-Guevara, Milroy, Murphy, Mursau, Novak, Ramthun, Rozar, Spreitzer, Steffen, Swearingen, Tauchen, Thiesfeldt, Tusler and Vruwink; +cosponsored by Senators Petrowski, Cowles, Bewley, Feyen and Pfaff",2021-12-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pronschinske, Allen, Armstrong, Behnke, Brandtjen, Edming, Krug, Kuglitsch and Tittl; +cosponsored by Senators Jacque and Nass",2022-01-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives VanderMeer, Kurtz, Krug, Edming, Moses, Mursau, Oldenburg, Rozar, Skowronski and Tusler; +cosponsored by Senators Testin and Marklein",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Rozar, Cabrera, Baldeh, Duchow, Hebl, Magnafici, Milroy, Moses, Thiesfeldt, Sinicki and Stubbs",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kitchens, Armstrong, Billings, Doyle, Duchow, James, Knodl, Loudenbeck, Milroy, Moses, Mursau, Novak, Rozar, Skowronski, Steffen, Subeck, Vruwink and Spreitzer; +cosponsored by Senators Cowles, Bewley, Pfaff and Testin",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Dittrich, Callahan, Armstrong, Steffen, J. Rodriguez, Edming, Spiros, Petersen, Penterman, Brandtjen, Tittl, Gundrum, Novak, Magnafici, Kurtz, Snyder, Krug, Plumer, Oldenburg, Skowronski, Petryk, Sortwell, Behnke, Kuglitsch, Murphy, Kitchens, Mursau, Swearingen, Sanfelippo and Cabral-Guevara; +cosponsored by Senators Jacque, Jagler and Nass",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Kapenga, Ballweg, Bernier, Felzkowski, Roth, Stroebel, Testin and Wanggaard; +cosponsored by Representatives Rozar, Callahan, Allen, Dittrich, Edming, Gundrum, James, Knodl, Magnafici, Penterman, Petersen, Ramthun, Schraa, Skowronski and Thiesfeldt",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Cowles; +cosponsored by Representatives Kitchens, Allen, Duchow, Loudenbeck, Macco and Spreitzer",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Ballweg, Felzkowski and Wanggaard; +cosponsored by Representatives Brandtjen, Cabral-Guevara, Dittrich, Edming, Gundrum, Knodl, Kuglitsch, Magnafici, Murphy, Ramthun, Rozar, Schraa, Tittl and Wichgers",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Darling, Agard, Bewley, Carpenter, Cowles, Erpenbach, Felzkowski, Jacque, Larson, Pfaff, Ringhand, Roys, Wanggaard and Wirch; +cosponsored by Representatives Billings, Loudenbeck, Allen, Anderson, Andraca, Baldeh, Bowen, Brostoff, Cabrera, Conley, Considine, Drake, Emerson, Goyke, Hebl, Hesselbein, Hintz, Horlacher, James, Kurtz, B. Meyers, Milroy, L. Myers, Novak, Ohnstad, Oldenburg, Penterman, Petryk, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining, Vruwink and Murphy",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, L. Taylor, Johnson, Carpenter, Roys, Larson, Bewley, Ringhand and Agard; +cosponsored by Representatives Goyke, Conley, Snodgrass, Brostoff, Emerson, Baldeh, Hong, Hebl, Drake, Andraca, Pope, B. Meyers, Vruwink, Considine, Milroy, Stubbs, Vining, Spreitzer, Hesselbein, Ortiz-Velez, Riemer, Hintz, Shankland, Subeck, S. Rodriguez and Billings",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Bernier; +cosponsored by Representative Magnafici",2021-03-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Ballweg and Bewley; +cosponsored by Representatives Zimmerman, Armstrong, Dittrich, Duchow, James and Plumer",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Darling and Ballweg; +cosponsored by Representatives Oldenburg, Brandtjen, Callahan, Dittrich, Edming, James, Kuglitsch, Magnafici, Moses, Penterman, Petersen, Petryk, Plumer, Thiesfeldt, Tranel and Wichgers",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Allen, Horlacher, Moses and Ramthun; +cosponsored by Senators Jacque, Stroebel and Ballweg",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Bernier, Darling, Feyen, Marklein and Stroebel; +cosponsored by Representatives Plumer, Moses, Penterman, Armstrong, August, Brandtjen, Cabral-Guevara, Callahan, Dallman, Dittrich, Duchow, Edming, James, Katsma, Kitchens, Knodl, Krug, Kuglitsch, Kurtz, Loudenbeck, Macco, Magnafici, Petersen, Petryk, Schraa, Snyder, Sortwell, Steffen, Tittl, Tusler, Vorpagel, Wichgers, Zimmerman and Born",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives L. Myers, Vruwink, Baldeh, Cabrera, Sinicki, Hesselbein, Subeck, Snodgrass and Drake; +cosponsored by Senator L. Taylor",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles and Darling; +cosponsored by Representatives Duchow, Neylon, Kitchens, Cabral-Guevara and Subeck",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel and Nass; +cosponsored by Representatives Born, Brooks, Knodl, Moses, Penterman, Plumer, Wichgers and Murphy",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Johnson, Roys, Agard, Ringhand and Carpenter; +cosponsored by Representatives Stubbs, Andraca, Brostoff, Conley, Considine, Hesselbein, Hong, Subeck, Sinicki, Hebl, Shelton, Ohnstad, Snodgrass, Spreitzer and Pope",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Moses, James, Doyle, Billings, Brandtjen, Callahan, Dittrich, Edming, Emerson, Gundrum, Knodl, Kuglitsch, Novak, Rozar, Snyder, Sortwell, Tauchen, Thiesfeldt, Tittl, Wichgers and Tusler; +cosponsored by Senators Bernier, L. Taylor, Ballweg, Cowles, Larson and Smith",2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kerkman, Cabral-Guevara, Dittrich, Edming, Gundrum, Knodl, Moses, Murphy, Rozar, Steffen, Tauchen, Tusler and Wichgers; +cosponsored by Senators Cowles, Felzkowski and L. Taylor",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Ballweg, Felzkowski, Feyen, Jagler, Stroebel, Testin, Wanggaard and Darling; +cosponsored by Representatives Brooks, Born, Cabral-Guevara, Callahan, Edming, Horlacher, James, Knodl, Magnafici, Milroy, Moses, Mursau, Novak, Snyder, Spiros, Krug and Wichgers",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, B. Meyers, Sinicki, Emerson, Spreitzer, Hebl, Shelton, Milroy, Baldeh, Ohnstad, Hong, Anderson, Cabrera, Stubbs and Subeck; +cosponsored by Senators Larson, Bewley and Agard",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Armstrong, Billings, Emerson, James, Murphy, Ohnstad, Petryk, Rozar, Snodgrass and Subeck; +cosponsored by Senators Wanggaard and L. Taylor",2021-05-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Krug, Armstrong, Edming, Knodl, Kurtz, Moses, Oldenburg, Rozar and Tusler; +cosponsored by Senators Cowles, Stroebel, Ballweg, Nass and Roth",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Roys and L. Taylor; +cosponsored by Representatives Tauchen, Duchow, Doyle, Kurtz, Milroy, L. Myers, Neubauer, Novak, Thiesfeldt, Wittke and Shankland",2021-02-02T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee for Review of Administrative Rules,2021-01-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Milroy, Armstrong and Skowronski",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pronschinske, Armstrong, Born, Callahan, Dittrich, Edming, James, Kerkman, Kuglitsch, Magnafici, Moses, Oldenburg, Penterman, Petersen, Petryk and Thiesfeldt; +cosponsored by Senators Wimberger and Felzkowski",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, L. Taylor and Ballweg; +cosponsored by Representatives Murphy, Armstrong, Baldeh, Bowen, Brandtjen, Dittrich, Horlacher, Knodl, Moses, Rozar, Thiesfeldt and Wichgers",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Darling, Ballweg and Felzkowski; +cosponsored by Representatives Thiesfeldt, Kitchens and Wittke",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Nass and L. Taylor; +cosponsored by Representatives Thiesfeldt, Mursau, Allen, Brandtjen, Edming, Stubbs, Subeck, Wichgers, Tusler, Ramthun, Bowen and Horlacher",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Stroebel and Bernier; +cosponsored by Representatives Allen, Knodl, Wichgers, Gundrum, Skowronski, Penterman, Steffen, Murphy, Brandtjen, Behnke, Dittrich and Schraa",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Bewley, Cowles and Marklein; +cosponsored by Representatives Edming, Armstrong, Callahan, Krug, Milroy, Moses, Mursau, Plumer, Rozar, Skowronski, Spiros, Tauchen and VanderMeer",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Bernier; +cosponsored by Representatives Tittl, Brandtjen, Bowen, Horlacher, Moses and Spiros",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Testin, Felzkowski, Jacque, Marklein, Nass, Wanggaard and Feyen; +cosponsored by Representatives Knodl, Armstrong, Allen, Brooks, Cabral-Guevara, Callahan, Dallman, Dittrich, Duchow, Edming, Gundrum, Horlacher, James, Krug, Kuglitsch, Magnafici, Moses, Murphy, Neylon, Novak, Oldenburg, Pronschinske, Ramthun, Rozar, Sanfelippo, Schraa, Skowronski, Sortwell, Summerfield, Tauchen, Thiesfeldt, Tittl, VanderMeer, Wichgers, Zimmerman and Brandtjen",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Considine, Neubauer, Andraca, Baldeh, Behnke, Billings, Conley, Drake, Emerson, Hebl, Hesselbein, B. Meyers, Milroy, Moore Omokunde, Ohnstad, Pope, Shankland, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Pfaff, Agard, Carpenter, Larson, Ringhand, Roys, L. Taylor and Wirch",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Johnson, Roys, Agard and Smith; +cosponsored by Representatives Stubbs, Andraca, Brostoff, Conley, Considine, Hesselbein, Hong, Subeck, Sinicki, Ohnstad, Baldeh, Snodgrass, Spreitzer, Pope, Hebl, Shelton and Emerson",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier and Marklein; +cosponsored by Representatives Magnafici, Brandtjen, Billings, Callahan, Doyle, Edming, Horlacher, B. Meyers, Mursau, Novak, Oldenburg, Pronschinske, Rozar, Skowronski, Tittl, VanderMeer, Vruwink and Bowen",2021-05-06T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, L. Taylor, Carpenter, Agard and Larson; +cosponsored by Representatives Moore Omokunde, Brostoff, Baldeh, Snodgrass, L. Myers, Hebl, Conley, Subeck, Shelton, Hesselbein, Anderson, Considine, Pope and Spreitzer",2021-09-15T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Legislative Council,2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Bernier, Darling, Stroebel, Felzkowski, Feyen, Jacque and Stafsholt; +cosponsored by Representatives Callahan, Novak, Armstrong, Born, Cabral-Guevara, Edming, Dittrich, Duchow, Gundrum, Jagler, James, Katsma, Krug, Knodl, Kurtz, Moses, Mursau, Oldenburg, Petryk, Plumer, Rozar, Snyder, Steffen, Swearingen, Tranel, Vorpagel, Wittke and Zimmerman",2021-04-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier and Nass; +cosponsored by Representatives Sortwell, Moses, Allen, Brooks, Edming, Loudenbeck, Magnafici, Murphy, Pronschinske, Rozar, Tusler, Wichgers and Cabral-Guevara",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Spiros, Brandtjen, Callahan, Kuglitsch, Subeck and Tusler",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Neubauer, Cabrera, Snodgrass, Spreitzer, Anderson, Baldeh, Billings, Bowen, Brostoff, Conley, Considine, Drake, Emerson, Hebl, Hesselbein, Hong, B. Meyers, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Subeck, Vining and Vruwink; +cosponsored by Senators Carpenter, Agard, Bewley, Erpenbach, Johnson, Larson, Ringhand, Roys and Smith",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Darling and Wimberger; +cosponsored by Representatives Edming, Callahan, Anderson, Bowen, Brandtjen, Brooks, Milroy, Moses, Rozar, Sinicki, Tauchen, Thiesfeldt and Wichgers",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Wanggaard; +cosponsored by Representative Kerkman",2021-03-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Macco, Katsma and Zimmerman; +cosponsored by Senators Marklein, Kooyenga and Kapenga",2021-01-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Felzkowski; +cosponsored by Representatives Thiesfeldt, Horlacher, Andraca, Armstrong, Hintz, Kuglitsch, Murphy, Rozar, Tusler, Vruwink and Brandtjen",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Loudenbeck, Born, Schraa, Ramthun, Tauchen, Novak, Snyder, Skowronski, Rozar, Zimmerman, Edming, Mursau, Knodl, James, Doyle, Cabrera, Summerfield, VanderMeer, Dittrich, Sinicki, Milroy, Spiros, Moses, Neubauer, Hong, Duchow, Drake, Tranel, Riemer, Bowen, Andraca, Spreitzer, B. Meyers, Subeck and Brostoff; +cosponsored by Senators Petrowski, Wanggaard, L. Taylor, Carpenter, Feyen, Ringhand, Jacque, Felzkowski, Roys, Darling, Testin, Larson, Pfaff and Smith",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Carpenter, L. Taylor and Agard; +cosponsored by Representatives Andraca, Anderson, Sinicki, Subeck, Spreitzer, Pope, Conley, Considine, Neubauer and Stubbs",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ringhand, Erpenbach, Roys, Agard, L. Taylor, Smith, Pfaff and Larson; +cosponsored by Representatives Hesselbein, Considine, Vruwink, Anderson, Baldeh, Brostoff, Cabrera, Conley, Emerson, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Carpenter, Felzkowski, Johnson, Kooyenga and Marklein; +cosponsored by Representatives Loudenbeck, Rozar, Novak, Dittrich, Hong, Kitchens, Spreitzer and Subeck",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Cowles and Marklein; +cosponsored by Representatives Zimmerman, Dittrich, Duchow, Gundrum, Kuglitsch, Loudenbeck, Murphy, Novak, Skowronski and Wichgers",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Smith, Bewley, Carpenter, Agard, Roys and Larson; +cosponsored by Representatives Anderson, Bowen, Snodgrass, Cabrera, Hebl, Baldeh, Emerson, Pope, Shelton, Hong, Stubbs, Milroy, Subeck, Spreitzer, Andraca and Tusler",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Petersen; +cosponsored by Senator Felzkowski, by request of Office of the Commissioner of Insurance",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski and Darling; +cosponsored by Representatives Tittl, Snyder, Spiros, Sortwell, Cabral-Guevara, Dittrich, James, Moses, Murphy, Plumer and Rozar",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Cabral-Guevara, Horlacher, Krug, Moses, Rozar, Subeck and Tusler; +cosponsored by Senators Jacque, Bewley and Larson",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Kurtz, Armstrong, Steffen, Thiesfeldt, Murphy, Gundrum, Edming, Penterman, James, Knodl, Macco, Behnke, Schraa and Kuglitsch; +cosponsored by Senators Kooyenga, Marklein, Stroebel, Darling and Nass",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Larson, Agard and Roys; +cosponsored by Representatives Bowen, Hong, Anderson, Baldeh, Billings, Brostoff, Cabrera, Conley, Emerson, Goyke, Hebl, Moore Omokunde, Neubauer, Shelton and Sinicki",2021-08-19T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Feyen, Ballweg, Stroebel and Wirch; +cosponsored by Representatives Bowen, Schraa, Rozar and Cabrera",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Agard, Carpenter, Larson, Ringhand, Roys, L. Taylor, Wirch and Jacque; +cosponsored by Representatives Vining, Snyder, Andraca, Armstrong, Billings, Bowen, Brostoff, Cabral-Guevara, Cabrera, Conley, Considine, Dittrich, Drake, Emerson, Haywood, Hebl, Hesselbein, Milroy, Moore Omokunde, L. Myers, Ohnstad, S. Rodriguez, Shankland and Shelton",2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Snyder and Wichgers",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Penterman, Kitchens, Skowronski, Armstrong, Oldenburg, Loudenbeck, Tranel, Cabral-Guevara, Gundrum and Moses; +cosponsored by Senators Roth and Stroebel",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vruwink, Horlacher and Loudenbeck; +cosponsored by Senators Ringhand and Nass",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Plumer, Bowen, Edming, Krug, Moses, Murphy, Rozar, Tusler and VanderMeer; +cosponsored by Senators Petrowski, Carpenter, Cowles and Nass",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Testin; +cosponsored by Representative Krug",2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Penterman, Armstrong, Dittrich, Horlacher, Kitchens, Krug, Ramthun, Thiesfeldt, Wichgers, Edming, Knodl and Murphy; +cosponsored by Senators Stroebel, Darling and Nass",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kapenga, Bernier, Jacque, Jagler, LeMahieu, Stafsholt, Stroebel and Testin; +cosponsored by Representatives Vos, Steineke, Petersen, Vorpagel, Duchow, James, Born, Knodl, Cabral-Guevara, Zimmerman, Macco, Steffen, Kitchens, Tranel, Novak, Gundrum, Tusler, Thiesfeldt, Kuglitsch, Ramthun, Brandtjen, Summerfield, Dallman, Katsma, Tittl, Dittrich, J. Rodriguez, Oldenburg, VanderMeer, Magnafici, Edming, Pronschinske, Snyder, Brooks, Schraa, Swearingen, Wittke, Moses, Callahan, Rozar, Skowronski, Sortwell, Krug, Spiros, Tauchen, Plumer, Wichgers, Murphy, Loudenbeck, Behnke and Neylon",2022-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Horlacher, Callahan, Allen, Armstrong, Brandtjen, Cabral-Guevara, Dittrich, Edming, Gundrum, Knodl, Kuglitsch, Macco, Magnafici, Moses, Penterman, Rozar, Schraa, Steffen, Tusler, VanderMeer and Wichgers; +cosponsored by Senators Bradley, Nass, Darling, Stroebel and Testin",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Agard, Erpenbach, Roys, L. Taylor, Smith and Carpenter; +cosponsored by Representatives Pope, Conley, Andraca, Anderson, Brostoff, Cabrera, Emerson, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snodgrass, Shelton, Conley, Hong, Sinicki and Stubbs; +cosponsored by Senator Smith",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Oldenburg, Armstrong, Snodgrass, Andraca, Mursau and Baldeh; +cosponsored by Senator Cowles",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman, Armstrong, Dittrich, Duchow, Kuglitsch, Mursau and Spiros; +cosponsored by Senators Cowles, Feyen and Stroebel",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, Anderson, Sinicki, Andraca, Hebl, Shankland, Ohnstad, Baldeh, Neubauer, Snodgrass, Cabrera, Milroy, Pope, Conley and Shelton; +cosponsored by Senators Larson, Carpenter, Agard and Johnson",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Billings, Mursau, Anderson, Cabrera, Considine, Edming, Horlacher, L. Myers, Rozar, Shankland, Sinicki, Spiros, Spreitzer, Stubbs, Subeck, Tranel and Wichgers; +cosponsored by Senators Petrowski, Larson, Pfaff and L. Taylor",2021-07-01T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Ramthun, Cabral-Guevara, Gundrum and Thiesfeldt; +cosponsored by Senators Stroebel and Cowles",2021-09-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Nass; +cosponsored by Representatives Murphy, Horlacher, Brandtjen, Cabral-Guevara, Dittrich, Edming, Moses, Rozar, Thiesfeldt, Wichgers and Knodl",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Roys, Carpenter, Johnson and Wirch; +cosponsored by Representatives Moore Omokunde, Shelton, Brostoff, Emerson, Hebl, Sinicki, Conley, Goyke, Cabrera, Andraca, Considine and Snodgrass",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Johnson, Roys, Larson and Ballweg; +cosponsored by Representatives Hong, Conley, Hebl, Cabrera, Andraca, Considine, Neubauer, Pope, Hesselbein, Ohnstad, Stubbs, Spreitzer and Anderson",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Brandtjen, Murphy, Mursau, Tusler and Wichgers; +cosponsored by Senators Jacque and Ballweg",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Bewley, Roys and Larson; +cosponsored by Representatives Considine, Sinicki, Ohnstad, Hebl, Pope, Subeck, Conley, Stubbs, Spreitzer and Andraca",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Johnson and Roys; +cosponsored by Representatives Subeck, Andraca, Conley, Emerson, Hebl, Neubauer, Pope, Shelton, Sinicki, Snodgrass and Stubbs",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Ballweg, Felzkowski and Johnson; +cosponsored by Representatives Steineke, Armstrong, Baldeh, Duchow, Edming, Gundrum, James, Murphy, Novak, Plumer and Rozar",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Shankland, Novak, Summerfield, Hebl, Tittl, Shelton, Callahan, Subeck, Conley, Considine, Spreitzer, Moses, Baldeh and Stubbs; +cosponsored by Senators Cowles, Smith, Bernier and Pfaff",2021-06-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Wirch, Ringhand, Agard, Carpenter, Smith, Larson, Roys, L. Taylor, Bewley and Erpenbach; +cosponsored by Representatives Sinicki, Milroy, Riemer, Baldeh, L. Myers, Drake, Hong, Goyke, Bowen, Brostoff, Shelton, Ohnstad, Subeck, Considine, Spreitzer, Billings, Conley, S. Rodriguez, Shankland, Neubauer, Vruwink, Vining, B. Meyers, Cabrera, Pope, Anderson, Emerson, Hebl, Hintz, Hesselbein, Ortiz-Velez, Snodgrass and Stubbs",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Anderson, Baldeh, Conley, Emerson, Pope, S. Rodriguez, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Ringhand, Erpenbach and Johnson",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ringhand, Agard, Larson and Smith; +cosponsored by Representatives Subeck, S. Rodriguez, Conley, Doyle, Hebl, Hesselbein, Ohnstad, Pope, Shankland, Sinicki, Snodgrass, Tusler and Vruwink",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Milroy, Anderson, Baldeh, Cabrera, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hong, Neubauer, Ohnstad, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vruwink; +cosponsored by Senators Carpenter, Erpenbach, Agard, Bewley, Johnson, Larson, Pfaff and Ringhand",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Mursau, Armstrong, Brooks, Callahan, Moses, Murphy, Ramthun, Rozar, Snyder, Spiros, Subeck, Tauchen and Tittl; +cosponsored by Senators Felzkowski, Ballweg, Bewley and Cowles",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Kurtz, Subeck, Armstrong, Cabral-Guevara, Callahan, Conley, Considine, Dittrich, Edming, Hebl, Kuglitsch, Loudenbeck, Mursau, Novak, Penterman, Schraa, Shankland, Snodgrass, Spiros, Spreitzer, Tittl, Vruwink, Zimmerman, Skowronski, Knodl and Thiesfeldt; +cosponsored by Senators Feyen, Jagler, Erpenbach, Ballweg, Darling, Marklein, Nass, Ringhand and Smith",2021-09-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Marklein; +cosponsored by Representative Oldenburg",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Wimberger; +cosponsored by Representatives Tusler, Snyder, Dittrich and Spiros",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Plumer, Gundrum, Knodl and Murphy; +cosponsored by Senator Roth",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Shankland; +cosponsored by Senator Smith",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hesselbein, Drake, Emerson, S. Rodriguez, Shelton, Conley, Andraca, Vruwink, Spreitzer, Neubauer, Hebl, Ohnstad, Milroy, Cabrera, Bowen, Considine, Stubbs, Shankland, Subeck, Hong, Baldeh, L. Myers and Pope; +cosponsored by Senators Smith, Erpenbach, Roys, Wirch, Agard, Ringhand, Larson, Johnson and Carpenter",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snodgrass, Anderson, Andraca, Brostoff, Hebl, Hesselbein, Milroy, Moore Omokunde, Pope, Shankland, Shelton, Sinicki, Spreitzer, Subeck, Vruwink, Emerson and Vining; +cosponsored by Senators Larson, Roys, Carpenter and Smith",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Born, Brooks, Knodl, Moses, Murphy, Penterman, Plumer and Wichgers; +cosponsored by Senators Stroebel and Nass",2022-02-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Cabrera, Hesselbein, Bowen, Hebl, Neubauer, Snodgrass, Subeck, Emerson, Shankland, Conley and Sinicki; +cosponsored by Senators L. Taylor, Larson and Agard",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Andraca, Conley, Considine, Drake, Emerson, Goyke, Hebl, Hesselbein, Hong, Milroy, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Snodgrass, Spreitzer, Stubbs, Subeck, Vruwink, Billings and Sinicki; +cosponsored by Senators Carpenter, Agard, Bewley, Johnson, Larson, Ringhand and Smith",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Considine, Tranel, Kurtz, Hesselbein, Novak, Hebl, Hintz, Ramthun, S. Rodriguez, Shankland, Sinicki, Stubbs, Vruwink, Subeck, Spreitzer and Murphy; +cosponsored by Senators Marklein, Erpenbach and Bewley",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Agard, Bewley, Darling, Marklein and Pfaff; +cosponsored by Representatives Emerson, Anderson, Conley, Considine, Drake, Haywood, Hebl, Hesselbein, Hong, Milroy, Mursau, Ohnstad, S. Rodriguez, Shankland, Sinicki, Spreitzer, Stubbs, Subeck, Summerfield, Vruwink, Shelton and Murphy",2022-01-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Cowles, Bewley, Feyen and Pfaff; +cosponsored by Representatives Spiros, Callahan, Considine, Behnke, Bowen, Cabral-Guevara, Milroy, Murphy, Mursau, Novak, Ramthun, Rozar, Shankland, Spreitzer, Steffen, Swearingen, Tauchen, Thiesfeldt, Tusler, Vruwink and Subeck",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Horlacher, Spiros, Penterman, Rozar, Wittke, Knodl, Brandtjen, Kitchens, Moses, Thiesfeldt, Zimmerman, Summerfield and Cabral-Guevara; +cosponsored by Senators Nass, Jagler, Ballweg, Jacque, Bernier and Felzkowski",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger and Felzkowski; +cosponsored by Representatives Pronschinske, Armstrong, Born, Callahan, Dittrich, Edming, James, Kerkman, Kuglitsch, Magnafici, Oldenburg, Penterman, Petersen, Petryk and Thiesfeldt",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Kurtz; +cosponsored by Senator Marklein",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Anderson, Baldeh, Cabrera, Conley, Drake, Emerson, Haywood, Hesselbein, Hong, Horlacher, Milroy, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Spreitzer, Subeck, Vining and Vruwink; +cosponsored by Senators Agard, Jacque, Johnson, Larson, Ringhand, Roys and L. Taylor",2021-03-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Stubbs, Anderson, Andraca, Billings, Brostoff, Conley, Emerson, Hebl, Neubauer, Pope, Shelton, Sinicki and Snodgrass; +cosponsored by Senators L. Taylor, Larson and Johnson",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Pfaff, Bernier, Bewley, Erpenbach, Ringhand and Roys; +cosponsored by Representatives Hebl, Oldenburg, Armstrong, Baldeh, Cabrera, Considine, Drake, Emerson, Hesselbein, Horlacher, Milroy, Moses, S. Rodriguez, Shelton, Sinicki, Subeck, Vruwink, Wittke and Spreitzer",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Larson, Agard and Johnson; +cosponsored by Representatives Drake, Goyke, Vruwink, Hebl, Andraca, Hong, Shelton, Conley, Milroy, Considine, Stubbs, Subeck, Vining, Spreitzer, Hesselbein, Billings and Cabrera",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Anderson, Cabrera, Ortiz-Velez, Brostoff, Hesselbein, S. Rodriguez, Emerson, Drake, Sinicki, Neubauer, Hintz, L. Myers, Goyke, Milroy, Hong, Hebl, Spreitzer, Shelton, Vining, Ohnstad, Bowen, Moore Omokunde, Stubbs and Subeck; +cosponsored by Senators Carpenter, Wirch, Roys, Larson, Ringhand, Agard and Erpenbach",2021-05-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Knodl, Kuglitsch, Armstrong, Brooks, Dallman, Gundrum, Horlacher, Kitchens, Kurtz, Macco, Moses, Mursau, Plumer, Snyder, Sortwell, Steffen, Steineke, Swearingen, Tittl, Tranel, Tusler, Vorpagel, Wittke and Zimmerman; +cosponsored by Senators Bradley, Jacque, Felzkowski, Feyen, Petrowski, Roth, Stroebel and Wanggaard",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Bowen,2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Conley, S. Rodriguez, Brostoff, Anderson, Andraca, Baldeh, Cabrera, Emerson, Hebl, Hong, B. Meyers, Milroy, Moore Omokunde, Ohnstad, Ortiz-Velez, Pope, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Vruwink, Drake, Shankland, Hesselbein and Spreitzer; +cosponsored by Senators Larson, Ringhand, Smith, Carpenter, Roys, Agard and Johnson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Armstrong, Baldeh, Brooks, Horlacher, Krug, Kuglitsch, Magnafici, Moses, Ortiz-Velez, Rozar, Sinicki and Wichgers; +cosponsored by Senators Jacque, Bradley, Bewley and L. Taylor",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Cowles and Darling; +cosponsored by Representatives Zimmerman, Armstrong, Dittrich, Edming, Krug, Loudenbeck, Ortiz-Velez, Petryk, Plumer and Cabrera",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Feyen; +cosponsored by Representatives Brooks, Armstrong, Dittrich, Gundrum, Kitchens, Edming and Schraa",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Ballweg, Felzkowski and Ringhand; +cosponsored by Representatives Duchow, Novak, Callahan, James, Kitchens, Loudenbeck, Magnafici, Moses, L. Myers, J. Rodriguez, Sinicki, Skowronski, Steffen, Subeck and Cabrera",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Petrowski; +cosponsored by Representative Plumer",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Neubauer, Ohnstad, Sinicki, Anderson, Andraca, Baldeh, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Pope, S. Rodriguez, Shankland, Shelton, Snodgrass, Spreitzer, Stubbs, Subeck and Vining; +cosponsored by Senators Roys, Johnson, Agard, Erpenbach, L. Taylor, Smith, Larson and Carpenter",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel and Cowles; +cosponsored by Representatives Born, Cabral-Guevara, Dittrich, Gundrum, Horlacher, Kurtz, Milroy, Oldenburg, Penterman, Ramthun, Skowronski, Wichgers, Zimmerman and Knodl",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives VanderMeer, Armstrong, Milroy, Oldenburg and Spiros; +cosponsored by Senators Cowles and Ballweg",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Zimmerman, Murphy, Baldeh, Billings, Born, Brostoff, Doyle, Duchow, Emerson, Horlacher, Krug, Kuglitsch, Loudenbeck, Milroy, Moses, Neubauer, Oldenburg, Petryk, Ramthun, Stubbs, Wichgers and Wittke; +cosponsored by Senators Stafsholt, Ballweg, Bernier, Bewley, Darling, Felzkowski, Larson, Pfaff, Roys and Smith",2021-11-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hong, S. Rodriguez, Shelton, Anderson, Andraca, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, Shankland, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink; +cosponsored by Senators Smith, Agard, Johnson, Erpenbach, Roys, L. Taylor, Larson and Carpenter",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tusler, Penterman, Sinicki and Spreitzer; +cosponsored by Senators Jacque and L. Taylor",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Knodl, Brooks, Cabral-Guevara, Callahan, Dittrich, Gundrum, Horlacher, Kuglitsch, Magnafici, Moses, Murphy, Ramthun, Rozar, Schraa and Wichgers",2021-04-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Murphy, Bowen, Cabral-Guevara, Dallman, Hintz, Horlacher, Mursau, Ramthun, Schraa, Skowronski, Stubbs and Tusler; +cosponsored by Senators Feyen, Ballweg, Cowles, Roth and Wanggaard",2021-09-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tusler, Brooks, Cabral-Guevara, Dittrich, Goyke, Hebl, Knodl, Macco, Rozar and Skowronski; +cosponsored by Senators Wimberger and L. Taylor",2021-09-17T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, L. Myers, Haywood, Bowen, Cabrera, Anderson, Emerson, Hebl, Hong, Shelton, S. Rodriguez, Ortiz-Velez, Vruwink, Hesselbein, Baldeh, Neubauer, Hintz, Shankland, Spreitzer, Drake and Vining; +cosponsored by Senators L. Taylor, Johnson, Carpenter, Roys, Agard, Larson, Pfaff, Ringhand and Smith",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Anderson, Baldeh, Conley, Emerson, Neubauer, Pope, S. Rodriguez, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Ringhand, Roys, Erpenbach and Johnson",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Snyder, Born, Dittrich, Duchow, Knodl, Moses, Mursau, J. Rodriguez, Rozar, Tittl and Tusler; +cosponsored by Senators Felzkowski, Darling, Jagler, Marklein, Petrowski, Stafsholt and Testin",2021-10-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, Nass and Cowles; +cosponsored by Representatives Loudenbeck, Duchow, August, Armstrong, Dittrich, Moses, Plumer, Skowronski and Tusler",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Zimmerman, Dittrich, Edming, Krug, Loudenbeck, Ortiz-Velez and Schraa; +cosponsored by Senators Ballweg, Cowles, Darling and Jagler",2022-01-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Agard, Johnson, Erpenbach, Roys, L. Taylor and Smith; +cosponsored by Representatives Neubauer, Moore Omokunde, Hong, Anderson, Andraca, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, B. Meyers, Milroy, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spreitzer, Cabrera, Neubauer, Snodgrass, Anderson, Andraca, Brostoff, Conley, Considine, Emerson, Goyke, Hebl, Hesselbein, Moore Omokunde, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Subeck and Vining; +cosponsored by Senators Carpenter, Agard, Erpenbach, Larson, Ringhand, Roys, Smith and Wirch",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Erpenbach, Roys, L. Taylor, Agard, Ringhand and Larson; +cosponsored by Representatives Hesselbein, Subeck, Neubauer, Snodgrass, Hebl, Shelton, Anderson, Andraca, Pope, Stubbs, Sinicki, Emerson, Ohnstad and Vining",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Bernier, Darling, Felzkowski, Marklein, Nass and Stroebel; +cosponsored by Representatives Armstrong, Petryk, Penterman, August, Born, Brandtjen, Cabral-Guevara, Callahan, Dittrich, Edming, James, Katsma, Kitchens, Knodl, Krug, Kuglitsch, Loudenbeck, Macco, Magnafici, Moses, Oldenburg, Petersen, Plumer, Schraa, Snyder, Sortwell, Steffen, Tittl, Tusler, Vorpagel, Wichgers and Zimmerman",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Billings, Andraca, Brostoff, Doyle, Emerson, Hebl, Hesselbein, B. Meyers, Pope, Shankland and Shelton; +cosponsored by Senators Smith, Carpenter, Larson and Pfaff",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steineke, Pronschinske, Allen, Andraca, Armstrong, August, Billings, Born, Brandtjen, Cabral-Guevara, Callahan, Conley, Considine, Dallman, Dittrich, Doyle, Drake, Duchow, Edming, Emerson, Hesselbein, Hintz, James, Kerkman, Kitchens, Knodl, Kuglitsch, Kurtz, Loudenbeck, Macco, Magnafici, Milroy, Moses, Mursau, Novak, Oldenburg, Penterman, Petersen, Petryk, Plumer, Pope, J. Rodriguez, Rozar, Shankland, Shelton, Snodgrass, Snyder, Spiros, Spreitzer, Steffen, Stubbs, Subeck, Swearingen, Thiesfeldt, Tranel, Tusler, Vorpagel, Vruwink, Wittke, Zimmerman and Schraa; +cosponsored by Senators LeMahieu, Agard, Ballweg, Bewley, Carpenter, Cowles, Darling, Felzkowski, Feyen, Jacque, Larson, Marklein, Ringhand, Stroebel, L. Taylor, Wanggaard and Wirch",2021-10-19T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Pfaff, Agard, Bewley, Carpenter, Erpenbach, Jacque, Larson, Roys, L. Taylor and Wirch; +cosponsored by Representatives Subeck, Anderson, Baldeh, Brooks, Cabrera, Conley, Considine, Emerson, Hebl, Hesselbein, Neubauer, S. Rodriguez, Shankland, Shelton, Sinicki, Spreitzer, Stubbs and Vining",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Johnson, Agard, Ballweg, Bewley, Carpenter, Cowles, Darling, Erpenbach, Larson, Pfaff, Ringhand, Roys and Wirch; +cosponsored by Representatives Billings, Snyder, Bowen, Cabral-Guevara, Cabrera, Dittrich, Drake, Edming, Emerson, Hebl, Hesselbein, Hong, Horlacher, Kerkman, Kitchens, B. Meyers, Milroy, Moses, Murphy, Mursau, Novak, Ohnstad, Ramthun, S. Rodriguez, Rozar, Schraa, Shankland, Shelton, Sinicki, Skowronski, Snodgrass, Spreitzer, Stubbs, Subeck, Tusler, Vining and Vruwink",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Ballweg and Ringhand; +cosponsored by Representatives Neylon, Zimmerman, Armstrong, Brooks, Duchow, Gundrum, Kitchens, Murphy, Riemer, Sortwell, Spiros, Subeck, Tranel and Wichgers",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives McGuire, Vining, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Considine, Doyle, Drake, Emerson, Hebl, Milroy, S. Rodriguez, Shankland, Shelton, Spreitzer, Stubbs, Vruwink and Sinicki; +cosponsored by Senators Agard, Ringhand, Jacque, Roys, Wirch and Smith",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Conley, Andraca, Subeck, Billings, Emerson, Hebl, Hesselbein, Neubauer, Shelton, Sinicki, Snodgrass and Stubbs; +cosponsored by Senators Roys and Johnson",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Summerfield, Moses, Armstrong, Kitchens, Mursau, Novak, Oldenburg, Petryk, Skowronski and Spiros; +cosponsored by Senators Bernier and Felzkowski",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Drake, L. Myers, Bowen, Haywood, Baldeh, Hong, Sinicki, Neubauer, Vruwink, Hesselbein, Hebl, Anderson, Snodgrass, Shankland, S. Rodriguez, Shelton, Spreitzer, Subeck, Ohnstad, Brostoff, McGuire, Cabrera, Vining, Conley and Emerson; +cosponsored by Senators Johnson, L. Taylor, Roys, Wirch and Erpenbach",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Ballweg, Felzkowski, Jacque, Marklein, Nass and Wanggaard; +cosponsored by Representatives Sanfelippo, Krug, Allen, Armstrong, Brandtjen, Brooks, Cabral-Guevara, Callahan, Dallman, Dittrich, Duchow, Edming, Gundrum, Horlacher, Jagler, James, Katsma, Kerkman, Kitchens, Knodl, Kuglitsch, Macco, Magnafici, Moses, Murphy, Mursau, Novak, Neylon, Plumer, Pronschinske, Ramthun, J. Rodriguez, Rozar, Schraa, Skowronski, Sortwell, Spiros, Steffen, Tauchen, Thiesfeldt, Tittl, Tusler, Vorpagel, Wichgers, Wittke and Zimmerman",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Goyke, Andraca, Armstrong, Bowen, Brostoff, Conley, Considine, Emerson, Hebl, Krug, Kurtz, Milroy, Murphy, Mursau, Neubauer, Novak, Pope, Riemer, J. Rodriguez, Schraa, Shankland, Shelton, Sinicki, Snyder, Spiros, Spreitzer, Steffen, Stubbs, Vining, Vruwink, Wichgers and James; +cosponsored by Senators Jacque, Ringhand, Carpenter, Johnson, Larson, Marklein, Roys, Wirch and Ballweg",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Moore Omokunde, Hong, Anderson, Baldeh, Billings, Brostoff, Conley, Emerson, Hebl, Neubauer and Sinicki; +cosponsored by Senators L. Taylor and Roys",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Knodl, Brooks, Moses, Sinicki and Skowronski; +cosponsored by Senators Cowles, L. Taylor, Ballweg and Marklein",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Baldeh, Krug, Murphy, Skowronski, Steffen and Tusler; +cosponsored by Senators Kooyenga and Wanggaard",2021-03-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hong, Stubbs, Baldeh, Bowen, Conley, Considine, Emerson, Hebl, Hesselbein, Hintz, B. Meyers, Milroy, Murphy, Novak, Ohnstad, S. Rodriguez, Shankland, Shelton, Sinicki, Spreitzer and Vruwink; +cosponsored by Senators Roys, Agard and Bewley",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, L. Taylor, Carpenter, Roth, Testin and Wirch; +cosponsored by Representatives Edming, Mursau, L. Myers, Anderson, Andraca, Armstrong, Bowen, Brandtjen, Callahan, Drake, Hebl, Horlacher, Milroy, Novak, Ortiz-Velez, Petersen, Petryk, Rozar, Shankland, Sinicki, Snodgrass, Summerfield and Tranel",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Ballweg and L. Taylor; +cosponsored by Representatives Cabral-Guevara, Brandtjen, Edming, Sinicki, Tusler, Wichgers and Haywood",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Andraca, Considine, Spreitzer, Vining, Sinicki, Brostoff, Anderson, Hesselbein, Goyke, B. Meyers, Cabrera, Snodgrass, L. Myers, Shankland, Drake, Emerson, Shelton, Hebl, Conley, Subeck, S. Rodriguez, Ohnstad, Stubbs, Milroy, Vruwink and Hong; +cosponsored by Senators Larson, Johnson, Smith, Agard, Carpenter, Roys, L. Taylor, Ringhand, Erpenbach and Bewley",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Zimmerman, Horlacher, James, Krug, Steffen and Wichgers; +cosponsored by Senator Darling",2021-05-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Cabral-Guevara, Brandtjen, Brooks, Dittrich, Edming, Gundrum, Horlacher, Knodl, Kuglitsch, Magnafici, Moses, Ramthun, Rozar, Sanfelippo, Schraa, Skowronski, Thiesfeldt, Tittl, Tusler, Wichgers and Steffen; +cosponsored by Senators Jacque, Bernier, Bradley, Nass and Stroebel",2021-06-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Cowles, Bewley and Stroebel; +cosponsored by Representatives Edming, Gundrum and B. Meyers",2022-01-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Anderson, Baldeh, Bowen, Conley, Considine, Hebl, Hesselbein, Spreitzer, Stubbs and Vruwink",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, L. Taylor, Carpenter, Kooyenga and Ringhand; +cosponsored by Representatives Novak, Swearingen, Armstrong, Bowen, Callahan, Kitchens, Krug, Moses, L. Myers, J. Rodriguez, Rozar, Skowronski and Stubbs",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Penterman, Behnke, Armstrong, Born, Callahan, Dittrich, Edming, Gundrum, James, Kitchens, Knodl, Krug, Kuglitsch, Kurtz, Macco, Magnafici, Mursau, Novak, Oldenburg, Petersen, Petryk, Plumer, J. Rodriguez, Sanfelippo, Skowronski, Snyder, Sortwell, Steffen, Swearingen, Thiesfeldt, Tranel and Zimmerman; +cosponsored by Senators Roth, Darling, Marklein and Nass",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Conley, Andraca, Anderson, Brostoff, Cabrera, Emerson, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining; +cosponsored by Senators Larson, Agard, Erpenbach, Roys, L. Taylor, Smith and Carpenter",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Kitchens, Dittrich, Kuglitsch, Callahan, Born, Subeck, Tittl and Sinicki; +cosponsored by Senators Ballweg, Roys and Smith",2021-10-22T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Ballweg, Marklein, L. Taylor and Wanggaard; +cosponsored by Representatives Petersen, Skowronski, Armstrong, Brandtjen, Dittrich, Kerkman, Knodl, Kuglitsch, Murphy, Mursau, Novak, Ohnstad, Penterman, Sortwell, Subeck, Tauchen, Wichgers, Zimmerman and Sinicki",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Agard, Bewley, Roys, Larson and Carpenter; +cosponsored by Representatives Stubbs, Drake, Baldeh, Moore Omokunde, Emerson, Vining, Snodgrass, Hesselbein, Conley, Hebl, Shelton, Considine, Hong, Spreitzer, Subeck and Sinicki",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling and Cowles; +cosponsored by Representatives Wittke, Born, Macco, Cabral-Guevara, Drake, Gundrum, Katsma, Knodl, Kuglitsch, Magnafici, Murphy, Sinicki, Steffen and Kerkman",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Andraca, Cabral-Guevara, Cabrera, Conley, Considine, Drake, Emerson, Hesselbein, B. Meyers, Milroy, Ohnstad, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink; +cosponsored by Senators Agard, Roys, Bewley, Carpenter, Jacque, Larson, Ringhand and L. Taylor",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Bernier, Carpenter, Cowles, Darling, Felzkowski, Kooyenga, Pfaff and L. Taylor; +cosponsored by Representatives Loudenbeck, VanderMeer, J. Rodriguez, Billings, Cabrera, Duchow, Kitchens, Kurtz, Mursau, L. Myers, Novak, Oldenburg, Snyder, Stubbs, Subeck, Tauchen, Thiesfeldt and Tusler",2021-09-15T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Felzkowski, Feyen and Nass; +cosponsored by Representatives Katsma, Armstrong, Dallman, Dittrich, Kurtz, Loudenbeck, Penterman, Thiesfeldt, Wichgers, Wittke, Zimmerman, Doyle, Mursau and Knodl",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Macco, Wittke, Armstrong, Callahan, Dittrich, Edming, Gundrum, Horlacher, Kerkman, Kuglitsch, Magnafici, Milroy, Petryk, Ramthun, Skowronski, Snyder, Steffen, Summerfield and Zimmerman; +cosponsored by Senators Testin, Carpenter, Ballweg, Felzkowski, Feyen and L. Taylor",2021-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Johnson, Agard, Carpenter, Larson, Ringhand, Smith and L. Taylor; +cosponsored by Representatives Vining, Stubbs, Andraca, Bowen, Brostoff, Cabrera, Conley, Considine, Hebl, Hesselbein, Neubauer, Moore Omokunde, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer and Subeck",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman, Allen, Born, Cabral-Guevara, Callahan, Dittrich, Edming, Horlacher, James, Knodl, Macco, Magnafici, Milroy, Mursau, Novak, Summerfield, Swearingen and Wichgers; +cosponsored by Senators Marklein, Ballweg, Felzkowski, Feyen, Jagler, Stafsholt, Stroebel, Wanggaard and Kooyenga",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Felzkowski, Ringhand and L. Taylor; +cosponsored by Representatives J. Rodriguez, Rozar, L. Myers, Armstrong, Brostoff, Dittrich, Duchow, Edming, Goyke, Gundrum, Horlacher, James, Kitchens, Magnafici, Murphy, Mursau, Snyder, Summerfield, Tusler, Wichgers, Skowronski and Zimmerman",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Duchow, Magnafici, Wittke and Dittrich",2022-02-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Spreitzer, Considine, Anderson, Baldeh, Brostoff, Cabrera, Conley, Emerson, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Stubbs, Subeck and Vining; +cosponsored by Senators Smith, Agard, Roys, Erpenbach, L. Taylor, Pfaff and Larson",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ballweg, Bernier, Cowles, Nass and Stroebel; +cosponsored by Representatives Callahan, Armstrong, James, Loudenbeck, Murphy and Ramthun",2022-01-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Darling, Felzkowski and Feyen; +cosponsored by Representatives Moses, Swearingen, Armstrong, Born, Cabral-Guevara, Callahan, Edming, Dittrich, Duchow, Gundrum, Knodl, Krug, Mursau, Oldenburg, Petryk, Plumer, Rozar, Snyder, Tranel, Tusler, Vorpagel, Wittke, Zimmerman and James",2021-04-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Gundrum, Penterman, Mursau, Tusler, Snyder and Thiesfeldt; +cosponsored by Senators Stroebel, Marklein and Ballweg",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Johnson, Roys and Carpenter; +cosponsored by Representatives Brostoff, Neubauer, Cabrera, Stubbs, Spreitzer and Sinicki",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Loudenbeck, Rozar, Novak, Dittrich, Hong, Kitchens, Spreitzer and Subeck; +cosponsored by Senators Darling, Carpenter, Felzkowski, Johnson, Kooyenga and Marklein",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Committee on State Affairs,2021-06-01T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Roys, Carpenter, Smith and Stroebel; +cosponsored by Representatives Spreitzer, Hebl, Andraca, Pope, Shelton, Anderson, Subeck, Shankland, Hong, Sinicki and Considine",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kurtz, Brandtjen, Cabral-Guevara, Dittrich, Horlacher, Krug, Kuglitsch, Magnafici, Moses, Ramthun, Rozar, Steffen, Tusler, Wichgers and Penterman; +cosponsored by Senators Bradley, Wimberger, Felzkowski and Marklein",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman and Brooks; +cosponsored by Senators Felzkowski and Stroebel",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Brandtjen, Gundrum, Horlacher, Milroy, Mursau, Novak, Tittl, Skowronski and Thiesfeldt; +cosponsored by Senators Feyen, Ballweg, Carpenter and Felzkowski",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Magnafici, Rozar, Cabral-Guevara, Krug, Armstrong, Brooks, Edming, Horlacher, Moses and Steffen; +cosponsored by Senators Testin, Nass and Feyen",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Hesselbein, Subeck, Baldeh, Spreitzer, Conley, Vruwink, Sinicki, Snodgrass, B. Meyers, Ohnstad and Anderson; +cosponsored by Senators Agard, Bewley, Carpenter, Smith and Roys",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Murphy, Horlacher, Brandtjen, Cabral-Guevara, Dittrich, Edming, Moses, Rozar, Thiesfeldt, Wichgers and Knodl; +cosponsored by Senators Jacque and Nass",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Larson, Roys, Erpenbach, Agard, L. Taylor and Pfaff; +cosponsored by Representatives B. Meyers, Doyle, Vruwink, Anderson, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vos, Magnafici, Armstrong, Born, Cabral-Guevara, Dittrich, Duchow, Edming, Gundrum, James, Kuglitsch, Moses, Novak, Steffen, Vorpagel and Wittke; +cosponsored by Senators LeMahieu, Wanggaard and Feyen",2022-02-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Krug, Edming, Snyder, Callahan, Rozar, Spiros, VanderMeer, James and Mursau; +cosponsored by Senators Testin, Felzkowski and Ballweg",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Bewley and Larson; +cosponsored by Representatives Spiros, Cabral-Guevara, Horlacher, Krug, Moses, Rozar, Subeck and Tusler",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Agard, Erpenbach, Johnson, Larson, Pfaff, Smith and L. Taylor; +cosponsored by Representatives Emerson, Vining, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Drake, Goyke, Hebl, Hesselbein, Hong, Neubauer, Shankland, Shelton, Sinicki, Spreitzer, Stubbs and Subeck",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Mursau, Armstrong, Cabrera, Knodl, Oldenburg, Rozar and Tusler; +cosponsored by Senators Petrowski, Bewley, Cowles, Marklein, Ringhand and Wanggaard",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, Agard, Bewley, Ringhand, Roys, Carpenter, Erpenbach, Larson and Pfaff; +cosponsored by Representatives S. Rodriguez, Subeck, Sinicki, Hong, Emerson, Stubbs, Andraca, Billings, Cabrera, Conley, Drake, Hesselbein, B. Meyers, Neubauer, Ortiz-Velez, Pope, Shankland, Shelton, Snodgrass, Vining, Anderson, Milroy, Spreitzer, Cabral-Guevara, Haywood, Vruwink, Hintz, Considine, Hebl and Ohnstad",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives McGuire, Sinicki, Baldeh, Bowen, Cabrera, Conley, Doyle, Drake, Emerson, Hebl, Hesselbein, Hong, Milroy, Pope, Shankland, Shelton, Stubbs and Tusler; +cosponsored by Senators Carpenter, Agard, Bewley, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roth, Roys, Smith, L. Taylor and Wirch",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, L. Taylor and Darling; +cosponsored by Representatives Rozar, Armstrong and Murphy",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Armstrong, Bowen, Brostoff, Cabrera, Considine, Drake, Hebl, Hesselbein, Hintz, Hong, Kitchens, B. Meyers, Moore Omokunde, L. Myers, Ohnstad, S. Rodriguez, Shankland, Shelton, Sinicki, Spreitzer, Steffen, Subeck, Vining and Vruwink; +cosponsored by Senators Johnson, Carpenter, Larson, Roys and Wirch",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Haywood; +cosponsored by Senator Johnson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Behnke, Brandtjen, Cabral-Guevara, Dittrich, Horlacher, James and Knodl; +cosponsored by Senators Nass and Ballweg",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Katsma, Armstrong, Dallman, Dittrich, Kurtz, Loudenbeck, Mursau, Penterman, Thiesfeldt, Wichgers, Wittke, Zimmerman and Doyle; +cosponsored by Senators Marklein, Felzkowski, Feyen and Nass",2021-10-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Darling, Roth, Marklein, Wanggaard, Nass, Ballweg and Felzkowski; +cosponsored by Representatives Duchow, Skowronski, Magnafici, Edming, Steffen, Kerkman, Spiros, Krug, Brooks, Loudenbeck, Gundrum, Murphy, Wichgers and Knodl",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Kooyenga, Ringhand, Ballweg, Felzkowski, Nass and Stroebel; +cosponsored by Representatives Katsma, Macco, Brooks, Cabral-Guevara, Dittrich, Horlacher, Kitchens, Kuglitsch, Mursau, Novak, Penterman, Wittke, Zimmerman, Spiros, Duchow, Edming, Wichgers and Knodl",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Pfaff, Smith, Roys, Larson, Carpenter, Erpenbach, Wirch, L. Taylor, Johnson, Ringhand and Bewley; +cosponsored by Representatives Baldeh, Hebl, Shankland, Shelton, Billings, Sinicki, Neubauer, Hong, Snodgrass, Andraca, Conley, Considine, Subeck, Brostoff, Pope, S. Rodriguez, Cabrera, Anderson, Emerson, Doyle, Hesselbein, Drake, Vining, Vruwink, Bowen, Stubbs, Ohnstad, Spreitzer, B. Meyers, Ortiz-Velez, Riemer, Milroy and Moore Omokunde",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier and Jacque; +cosponsored by Representative Armstrong",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Smith, Agard and L. Taylor; +cosponsored by Representatives Mursau, Gundrum, Novak, Oldenburg, Skowronski, Subeck, Thiesfeldt, Hebl and Spreitzer",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Cowles, Feyen, Marklein and Nass; +cosponsored by Representatives Behnke, Allen, Armstrong, Cabral-Guevara, Callahan, Dittrich, Edming, Gundrum, Horlacher, Mursau, Penterman, Petryk, Schraa, Sinicki, Steffen, Thiesfeldt and Spreitzer",2021-10-18T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Haywood, Loudenbeck, Emerson, B. Meyers, Krug, Hebl, Andraca, S. Rodriguez, Drake, Vruwink, Subeck, Moore Omokunde, Conley, Cabrera, Hong, Considine, Hesselbein, Baldeh, L. Myers, Spreitzer and Shelton; +cosponsored by Senators L. Taylor and Agard",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Felzkowski, Marklein, Stroebel and Jacque; +cosponsored by Representatives Cabral-Guevara, Magnafici, Brandtjen, Brooks, Callahan, Gundrum, Kitchens, Knodl, Krug, Kuglitsch, Kurtz, Macco, Murphy, Petersen, J. Rodriguez, Rozar, Snyder, Tauchen, Tittl, Tusler, Wichgers, Riemer, Skowronski and Dittrich",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Cabral-Guevara, Brandtjen, Brooks, Callahan, Gundrum, Horlacher, Knodl, Magnafici, Mursau, Ortiz-Velez and Sinicki; +cosponsored by Senators Jacque, Darling, Carpenter, Felzkowski, Feyen and L. Taylor",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith and Bewley; +cosponsored by Representative Hintz",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Larson, Johnson, Roys, Carpenter and Ringhand; +cosponsored by Representatives Stubbs, Sinicki, Brostoff, Hesselbein, Snodgrass, Andraca, Shelton, Vining, Hong, Hebl, Emerson, Spreitzer, Goyke, Conley, Subeck, Baldeh, Cabrera, Hintz, Riemer, Considine, Bowen and Pope",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Swearingen, Wittke, Vos, Born, Billings, Novak, Brooks, Emerson, James, Mursau, Plumer, Pope, Schraa, Sinicki, Spreitzer, Stubbs, VanderMeer and Vruwink; +cosponsored by Senators Petrowski, Jacque, Wanggaard, Ringhand, Ballweg and Carpenter",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Horlacher, Callahan, Edming, Kuglitsch, Moses, Mursau, Ramthun, Rozar, Skowronski, Tusler, Allen and Knodl; +cosponsored by Senators Bernier, Ballweg, Nass, Marklein and Stroebel",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Petryk, Brooks, Armstrong, Born, Cabral-Guevara, Callahan, Dittrich, Duchow, Edming, Gundrum, James, Katsma, Krug, Loudenbeck, Moses, Murphy, Mursau, Oldenburg, Plumer, Rozar, Snyder, Swearingen, Tranel, Tusler, Vorpagel, Wittke and Zimmerman; +cosponsored by Senators Marklein, Bernier, Stroebel, Felzkowski, Jacque and Stafsholt",2021-04-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Bernier, Felzkowski, Jacque, Nass and Marklein; +cosponsored by Representatives Dittrich, Rozar, Magnafici, Brooks, Skowronski and Edming",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Felzkowski, Bewley and Bernier; +cosponsored by Representatives Snyder, Spiros, Edming, L. Myers, Mursau, Callahan and Tauchen",2021-06-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Rozar, Snyder, Edming and Spiros; +cosponsored by Senators Bernier and Petrowski",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, Hebl, Anderson, Sinicki, Shelton, Stubbs and Cabrera; +cosponsored by Senators Larson, Carpenter, Roys, Agard and Smith",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Stafsholt, Felzkowski, Ballweg, Feyen, Wanggaard, Kooyenga, Bradley, Marklein and Bernier; +cosponsored by Representatives Swearingen, Summerfield, Behnke, James, Armstrong, Gundrum, Plumer, August, Knodl, Dittrich, Cabral-Guevara, Schraa, Vos, Steineke, Edming, Pronschinske, Duchow, Penterman, Sortwell, Moses and Allen",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Bradley, Nass, Felzkowski, Jacque, Jagler, Stroebel and Ballweg; +cosponsored by Representatives Steineke, August, Armstrong, Born, Brooks, Cabral-Guevara, Dallman, Dittrich, Duchow, Edming, Gundrum, Katsma, Kuglitsch, Kurtz, Loudenbeck, Magnafici, Mursau, Petersen, Plumer, Rozar, Sortwell, Spiros, Steffen, Swearingen, Tauchen, Thiesfeldt, Tittl, VanderMeer, Vorpagel, Wichgers, Wittke, Schraa and Neylon",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Edming, Gundrum, Knodl, Krug, Murphy, Neylon, Skowronski, Spiros, VanderMeer and Wichgers; +cosponsored by Senators Darling, Felzkowski, Nass, Petrowski, Stroebel, Wanggaard and Wimberger",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Brandtjen, Cabrera, Edming, Gundrum, Kuglitsch, Moses, Mursau, Schraa, Stubbs and Wichgers; +cosponsored by Senators Jacque, Agard and Ballweg",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steineke, Stubbs, Armstrong, Baldeh, Cabral-Guevara, Cabrera, Dallman, Dittrich, Edming, Gundrum, Kitchens, Krug, Kurtz, Macco, Milroy, Mursau, Novak, Petryk, Schraa, Spiros, Steffen, Wittke and Zimmerman; +cosponsored by Senators Roth, Wimberger, Wanggaard, L. Taylor, Feyen and Pfaff",2021-05-18T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Nass and Ballweg; +cosponsored by Representatives Behnke, Armstrong, Dittrich, Gundrum and Magnafici",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Nass, Felzkowski and Stroebel; +cosponsored by Representatives Spiros, Gundrum, Behnke, Steffen, Armstrong, Sanfelippo, Penterman, Cabral-Guevara, Tittl, Mursau, Rozar, Oldenburg, Knodl, Murphy, Wittke and Neylon",2022-02-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, L. Taylor, Johnson, Roys and Larson; +cosponsored by Representatives Hong, Anderson, Goyke, Snodgrass, Brostoff, Emerson, Neubauer, Hebl, Vining, Hesselbein, Shelton, Pope, Subeck, Conley, Ohnstad, Considine, Moore Omokunde, Stubbs, Baldeh, Bowen and Spreitzer",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Ramthun and Thiesfeldt,2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Armstrong, Bowen, Brandtjen, Moses and Rozar; +cosponsored by Senators Wanggaard, L. Taylor, Darling, Cowles, Feyen, Jacque and Roys",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Rozar, Andraca, Armstrong, Brandtjen, Dittrich, Gundrum, Horlacher, James, Mursau, Sortwell, Subeck, Thiesfeldt and Tusler; +cosponsored by Senators Jacque and Nass",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Armstrong, Born, Callahan, Dittrich, Edming, Kuglitsch, Magnafici, Moses, Petersen, Thiesfeldt, Tranel and Brooks; +cosponsored by Senators Feyen, Ballweg, Darling and Felzkowski",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Armstrong, Dittrich, Kitchens, Penterman, Sinicki, Tranel, Born and Drake; +cosponsored by Senator L. Taylor",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Hong, Haywood, Andraca, Baldeh, Bowen, Brostoff, Considine, Drake, Emerson, Hebl, B. Meyers, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Vruwink, Goyke, Subeck and Moore Omokunde; +cosponsored by Senators Agard, Pfaff, Carpenter and Johnson",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Schraa, Allen, Armstrong, Brandtjen, Cabral-Guevara, Duchow, Horlacher, James, Knodl, Kuglitsch, Magnafici, Moses, Pronschinske, Rozar, Steffen, Thiesfeldt, Wichgers and Murphy; +cosponsored by Senator Bernier",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Carpenter, Cowles, Marklein and Wirch; +cosponsored by Representatives Spiros, Dittrich, Mursau and Tittl",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives August, Loudenbeck, Horlacher, Spiros, Wichgers, Brooks, Rozar, Steffen, Kuglitsch, Gundrum, Murphy, Subeck, Dittrich, Brandtjen, Mursau, Kurtz, Moses and Born; +cosponsored by Senators Petrowski, Nass and Cowles",2021-07-26T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Agard and Bewley; +cosponsored by Representatives Spreitzer, Andraca, Cabrera, Conley, Considine, Hebl, Hong, Ohnstad, Ortiz-Velez, Shelton, Stubbs and Vruwink",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Finance,2021-06-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Roth, Kooyenga, Bernier and Pfaff; +cosponsored by Representatives VanderMeer, Neylon, Born, Kuglitsch, Armstrong, Brandtjen, Duchow, Gundrum, Moses, Mursau, Oldenburg, Spiros, Doyle, Knodl, Loudenbeck, Edming, Tauchen, Thiesfeldt and Petryk",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Pfaff, Carpenter and Johnson; +cosponsored by Representatives Vining, Hong, Haywood, Andraca, Baldeh, Bowen, Brostoff, Considine, Drake, Emerson, Hebl, L. Myers, Moore Omokunde, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Vruwink, Goyke and Subeck",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wichgers, Ramthun, Allen, Behnke, Brandtjen, Dittrich, Gundrum, Horlacher, Knodl, Kuglitsch, Murphy, Neylon, Rozar, Sortwell, Thiesfeldt, Armstrong, Tusler, Schraa and Tittl; +cosponsored by Senators Jacque, Darling and Nass",2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Ballweg, Feyen, Marklein, Carpenter, Erpenbach and L. Taylor; +cosponsored by Representatives Duchow, Knodl, Vos, Vorpagel, Dallman, Dittrich, Edming, Gundrum, Kerkman, Kitchens, Krug, Kuglitsch, Magnafici, Moses, Murphy, Novak, Plumer, Steffen, Tittl, Tranel, Stubbs, Anderson, Drake, Hebl, Sinicki, Subeck, Vruwink, Thiesfeldt and Wittke",2021-06-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel and Darling; +cosponsored by Representatives Petersen, Armstrong, Behnke, Brooks, Cabral-Guevara, Gundrum, Krug, Kuglitsch, Magnafici, Sanfelippo, Wichgers and Murphy",2022-02-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives L. Myers, Bowen, Haywood, Drake, Moore Omokunde, Baldeh, Stubbs, Allen, Brostoff, Billings, Snodgrass, Emerson, Vruwink, S. Rodriguez, Neubauer, Hebl, Conley, Hong, Andraca, Hesselbein, Sinicki, Milroy, Spreitzer, Subeck, Shelton, Armstrong, Shankland, Brandtjen, Considine, Hintz and Vining; +cosponsored by Senators L. Taylor, Johnson, Carpenter, Agard, Wirch and Larson",2021-07-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Ramthun, Behnke, Brandtjen, Gundrum, Thiesfeldt and Wichgers; +cosponsored by Senator Nass",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pronschinske, Allen, Considine, Dallman, Dittrich, Drake, Edming, Gundrum, Hesselbein, Hintz, Horlacher, Knodl, Krug, Kuglitsch, McGuire, Milroy, Mursau, Penterman, Petryk, Plumer, Riemer, Schraa, Sinicki, Spiros, Spreitzer, Steffen, Steineke, Subeck, Thiesfeldt, Tittl, Tranel, Tusler and Vruwink; +cosponsored by Senators Roth, Carpenter, Jacque, Jagler, Larson, Marklein, Nass, Ringhand, Wirch and Darling",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Ballweg, Marklein and Nass; +cosponsored by Representatives Allen, Dittrich, Brandtjen, Brooks, Cabral-Guevara, Edming, Moses, Rozar and Wichgers",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Johnson, Stroebel, Marklein and Roys; +cosponsored by Representatives Horlacher, Stubbs, Brooks, Cabral-Guevara, Dittrich, Gundrum, Hintz, Krug, Kuglitsch, Loudenbeck, Macco, Magnafici, Neylon, Skowronski, Sortwell, Vruwink and Wichgers",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Carpenter, Agard and Johnson; +cosponsored by Representatives Brostoff, Anderson, Sinicki, Hebl, Shankland, Ohnstad, Baldeh, Neubauer, Snodgrass, Spreitzer, Milroy, Considine, Pope, Conley, Shelton and Andraca",2021-08-26T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Zimmerman, Brooks, Kuglitsch, Magnafici, Moses, Murphy, Mursau and L. Myers; +cosponsored by Senators Felzkowski, Ballweg, Jagler, Nass, Stroebel and L. Taylor",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representatives Vos and Steineke,2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Goyke, Andraca, Conley, Considine, Emerson, Hebl, Hong, Ohnstad, Pope, S. Rodriguez, Shelton, Snodgrass, Subeck, Vining and Sinicki; +cosponsored by Senators Larson, Johnson, Agard and Carpenter",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Wichgers, Brandtjen, Murphy, Snodgrass, Spreitzer and Milroy",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, Ballweg, Darling, Feyen, Jagler, Stroebel and Felzkowski; +cosponsored by Representatives J. Rodriguez, Kerkman, Dittrich, Gundrum, Kuglitsch, Penterman, Rozar, Steffen and Tusler",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Darling, Carpenter, Felzkowski, Feyen and L. Taylor; +cosponsored by Representatives Sortwell, Cabral-Guevara, Brandtjen, Brooks, Callahan, Gundrum, Horlacher, Knodl, Magnafici, Mursau, Ortiz-Velez, Sinicki and Tittl",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Murphy, Vos, Armstrong, Brandtjen, Dittrich, Duchow, Horlacher, Kuglitsch, Magnafici, Moses, Thiesfeldt and Wichgers; +cosponsored by Senators Feyen and Stroebel",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Cowles, Jacque and Kooyenga",2022-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Vos; +cosponsored by Senator LeMahieu",2021-06-01T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Spiros, Edming and Callahan; +cosponsored by Senators Petrowski and Felzkowski",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Johnson, L. Taylor, Agard, Roys, Bewley, Erpenbach, Larson, Smith, Wirch and Carpenter; +cosponsored by Representatives Stubbs, Hong, Cabrera, Baldeh, Anderson, Andraca, Bowen, Brostoff, Conley, Considine, Emerson, Haywood, Hebl, Hesselbein, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Roys, Smith, Wirch and Ringhand; +cosponsored by Representatives Neubauer, Brostoff, Spreitzer, Andraca, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hong, B. Meyers, Milroy, Ohnstad, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Vruwink, Pope, Subeck and Moore Omokunde",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steineke, Cabral-Guevara, Callahan, Dallman, Duchow, Edming, Gundrum, Katsma, Knodl, Petersen, Petryk, Plumer, Ramthun, Rozar, Skowronski, Snyder, Tranel, Zimmerman, Jagler, Magnafici, Neylon, Spiros, Steffen, Born, Schraa, Dittrich, Thiesfeldt and Tittl; +cosponsored by Senators Roth, Bradley, Darling, Felzkowski, Marklein, Nass, Wanggaard, Wimberger, Ballweg, Stroebel, Kapenga, Bernier, Cowles, Feyen, Kooyenga, LeMahieu, Petrowski, Stafsholt and Testin",2021-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Novak, Swearingen, Armstrong, Bowen, Callahan, Kitchens, Krug, Moses, L. Myers, J. Rodriguez, Rozar, Skowronski and Stubbs; +cosponsored by Senators Testin, L. Taylor, Carpenter, Kooyenga and Ringhand",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Employment Relations,2022-01-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Agard, Carpenter and Roys; +cosponsored by Representatives Subeck, Andraca, Billings, Bowen, Cabrera, Considine, Hebl, Hong, Milroy, Ohnstad, Pope, Shankland, Shelton, Sinicki, Spreitzer, Vruwink and Stubbs",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Mursau, Ramthun, Knodl, Krug and Dittrich; +cosponsored by Senators Darling, Bernier, Ballweg and Bradley",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roth, Ballweg, Bernier, Bradley, Cowles, Darling, Felzkowski, Feyen, Kapenga, Kooyenga, LeMahieu, Marklein, Nass, Petrowski, Stafsholt, Stroebel, Testin, Wanggaard and Wimberger; +cosponsored by Representatives Steineke, Born, Dittrich, Edming, Gundrum, Jagler, Katsma, Magnafici, Neylon, Petryk, Ramthun, Rozar, Schraa, Skowronski, Snyder, Spiros, Steffen, Thiesfeldt, Tittl, Tranel, Zimmerman, Cabral-Guevara, Callahan, Dallman, Duchow, Knodl, Petersen and Plumer",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Haywood, Emerson, Milroy, Cabrera, Hebl, Drake, Brostoff, Conley, Spreitzer, Vining, Moore Omokunde, Sinicki, Considine, Goyke, Shelton, Neubauer, Hesselbein, S. Rodriguez, Bowen, Stubbs, Anderson, Shankland and Subeck; +cosponsored by Senators Johnson, L. Taylor, Wirch, Roys, Agard, Larson and Erpenbach",2021-06-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard and L. Taylor; +cosponsored by Representatives Spiros, Armstrong, Billings, Emerson, James, Murphy, Ohnstad, Petryk, Rozar, Snodgrass and Subeck",2021-05-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Rozar, J. Rodriguez, Andraca, Armstrong, Cabral-Guevara, Cabrera, Dittrich, Duchow, Edming, Emerson, Magnafici, Moses, Mursau, Novak, Penterman, Petryk, Sinicki, Snodgrass, Spiros, Spreitzer, Subeck, Thiesfeldt, VanderMeer and Shankland; +cosponsored by Senators Ballweg, Darling, Agard, Carpenter, Cowles, Larson, Marklein, Ringhand and Felzkowski",2022-02-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, L. Taylor, Ballweg, Cowles and Feyen; +cosponsored by Representatives Oldenburg, Petryk, Allen, Armstrong, Bowen, Cabral-Guevara, Dallman, Dittrich, Edming, Gundrum, Haywood, Jagler, Knodl, Moses, Murphy, Mursau, Novak, Plumer, Ramthun, Rozar, Snyder, Tauchen, Thiesfeldt, Tittl, Tranel, VanderMeer, Wichgers, Wittke, Zimmerman and Spiros",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Marklein, Stroebel, Darling and Nass; +cosponsored by Representatives Wittke, Kurtz, Armstrong, Steffen, Thiesfeldt, Murphy, Gundrum, Edming, Penterman, James, Knodl, Macco and Behnke",2022-01-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tusler, Snyder and J. Rodriguez; +cosponsored by Senator Wimberger",2021-11-24T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Legislative Council,2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Katsma, Kuglitsch, Macco, Zimmerman, Allen, Armstrong, Brandtjen, Dittrich, Doyle, Duchow, Edming, Horlacher, Kurtz, Moses, Mursau, Novak, Oldenburg, Penterman, Rozar, Schraa, Snodgrass, Swearingen, Thiesfeldt, Vruwink, Wichgers, Knodl, Spreitzer and Subeck; +cosponsored by Senators Roth, Wanggaard, Ballweg, Bernier, Darling and Jacque",2021-11-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin and Marklein; +cosponsored by Representatives VanderMeer, Kurtz, Krug, Edming, Moses, Mursau, Oldenburg, Rozar, Skowronski and Tusler",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives L. Myers, Brostoff, Goyke, Ohnstad, Anderson, Hong, Cabrera, Hebl, Sinicki, Neubauer, Andraca, Snodgrass, Pope, Shelton, Conley, Subeck, Stubbs, Milroy, Emerson, B. Meyers, Shankland, S. Rodriguez, Considine, Vining and Baldeh; +cosponsored by Senators Larson, L. Taylor, Erpenbach, Agard, Roys and Smith",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Baldeh, Cabral-Guevara, Dittrich, Drake, Edming, Emerson, Gundrum, Magnafici, Mursau, Rozar, Sinicki, Skowronski, Spiros, Stubbs, Subeck, Thiesfeldt, Vruwink, Wittke, Oldenburg, Spreitzer, VanderMeer and Murphy; +cosponsored by Senators Ballweg, Bewley, Carpenter, Cowles, Jacque, Johnson, Marklein, Pfaff and Ringhand",2021-03-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kurtz, Swearingen, Goyke, James, Petryk, Summerfield, Andraca, Baldeh, Behnke, Billings, Bowen, Brandtjen, Cabral-Guevara, Callahan, Conley, Considine, Dittrich, Doyle, Drake, Duchow, Edming, Emerson, Gundrum, Haywood, Hintz, Kerkman, Kitchens, Knodl, Krug, Macco, Magnafici, B. Meyers, Milroy, Moses, Mursau, L. Myers, Neubauer, Novak, Ohnstad, Oldenburg, Ortiz-Velez, Plumer, Pope, Riemer, J. Rodriguez, Rozar, Schraa, Shankland, Shelton, Skowronski, Snodgrass, Snyder, Spiros, Spreitzer, Thiesfeldt, Tranel, Vining, Vruwink, Wichgers, Sinicki, Stubbs and Tusler; +cosponsored by Senators Darling, Marklein, Erpenbach, Bernier, Bewley, Feyen, Jacque, Johnson, Nass, Petrowski, Pfaff, Ringhand, Roys, Smith, L. Taylor, Wirch, Wanggaard, Cowles and Carpenter",2021-11-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Larson and L. Taylor; +cosponsored by Representatives Billings, Mursau, Anderson, Cabrera, Considine, Edming, Horlacher, L. Myers, Rozar, Shankland, Sinicki, Spiros, Spreitzer, Stubbs, Subeck, Tranel and Wichgers",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kurtz, Armstrong, Behnke, Milroy, Moses, Novak, Oldenburg, Penterman, Rozar, Skowronski and Tusler; +cosponsored by Senators Marklein, Ballweg, Cowles, Felzkowski and Ringhand",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Agard, Roys, Bewley, Erpenbach, Larson, Smith, L. Taylor and Wirch; +cosponsored by Representatives Cabrera, Neubauer, Snodgrass, Spreitzer, Anderson, Andraca, Baldeh, Brostoff, Conley, Considine, Emerson, Goyke, Hebl, Hesselbein, Hong, Moore Omokunde, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Subeck, Vining and Vruwink",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Stafsholt; +cosponsored by Representatives August, Loudenbeck, Spiros, Dittrich, Kuglitsch, Schraa and Thiesfeldt",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Agard, Cowles, Jacque, Johnson, Larson, Marklein, Ringhand, L. Taylor, Wanggaard and Wirch; +cosponsored by Representatives Thiesfeldt, J. Rodriguez, Billings, Brandtjen, Cabrera, Callahan, Drake, James, Kuglitsch, Milroy, Moses, Murphy, Mursau, Rozar, Shankland, Skowronski, Sinicki, Subeck, Tusler, Vining and Wichgers",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Gundrum, Mursau, Tusler and Snyder",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Roth, Jacque, Cowles, Darling, Feyen, Bewley and Felzkowski; +cosponsored by Representatives Born, Swearingen, Wittke, Krug, Milroy, Brooks, Penterman, Loudenbeck, Kuglitsch, Zimmerman, Mursau, Dallman, Hong, Drake, Murphy, Andraca, Bowen and Subeck",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin and Marklein; +cosponsored by Representatives Kurtz, Dittrich, Duchow, Edming, Kuglitsch, Magnafici, Moses, Skowronski, Tranel and Zimmerman",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wichgers, Sanfelippo, Armstrong, Behnke, Duchow, Gundrum, Kuglitsch, Krug and Murphy; +cosponsored by Senators Jacque and Stroebel",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Magnafici, Vruwink, Penterman, Mursau, Armstrong, Milroy, Duchow, Gundrum, Subeck, Moore Omokunde, Spreitzer, Doyle, Petryk, Brandtjen, Shankland, Drake, Vining and Behnke; +cosponsored by Senators Cowles, Ballweg, Wimberger and Pfaff",2022-01-20T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Gundrum, Tittl, Allen, Armstrong, Brandtjen, Cabral-Guevara, Callahan, Dittrich, Edming, Horlacher, Knodl, Magnafici, Macco, Moses, Mursau, Neylon, Penterman, Rozar, Skowronski, Sortwell, Steffen, Tauchen, Tusler, VanderMeer, Wichgers and Schraa; +cosponsored by Senators Stroebel, Felzkowski, Ballweg and Roth",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Wanggaard, Bewley, Agard, Ringhand and Smith; +cosponsored by Representatives Horlacher, Considine, Emerson, Allen, Andraca, Armstrong, Billings, Brandtjen, Cabral-Guevara, Conley, Dittrich, Drake, Edming, Hebl, Kerkman, Kitchens, B. Meyers, Milroy, Mursau, Neubauer, Ohnstad, Plumer, Pope, Riemer, Rozar, Shankland, Shelton, Skowronski, Snodgrass, Stubbs, Subeck, Thiesfeldt, Vining, Vruwink, Spreitzer and Sinicki",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Nass, Carpenter and Cowles; +cosponsored by Representatives Tittl, Murphy, Callahan, Dittrich, Drake, Gundrum, Rozar, Wichgers and Subeck",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman, Behnke, Cabral-Guevara, Edming, Knodl, Krug, Magnafici, Murphy, Mursau, Penterman and Ramthun; +cosponsored by Senators Ballweg, Feyen and Marklein",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Neubauer, Hesselbein, L. Myers, Anderson, Andraca, Baldeh, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink; +cosponsored by Senators Bewley, Smith, Ringhand, Larson, Johnson, Roys, Erpenbach, Agard, L. Taylor and Carpenter",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kurtz, VanderMeer and Oldenburg; +cosponsored by Senator Marklein",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Legislative Council,2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Erpenbach, Agard, Bewley, Carpenter, Larson, Roys and Smith; +cosponsored by Representatives Vining, Spreitzer, Riemer, Andraca, Baldeh, Billings, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Hebl, Hesselbein, Hintz, Hong, Ohnstad, S. Rodriguez, Shankland, Shelton, Snodgrass, Stubbs, Subeck and Vruwink",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Zimmerman, Armstrong, Dittrich, Edming, Krug, Loudenbeck, Ortiz-Velez and Petryk; +cosponsored by Senators Ballweg, Cowles and Darling",2022-01-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, L. Taylor and Roys; +cosponsored by Representatives Cabral-Guevara, Callahan, Horlacher, Krug, Milroy, Rozar, Sinicki, Subeck, Tauchen, Tusler, Wichgers and Stubbs",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Darling, Agard, Carpenter, Cowles, Larson, Marklein, Ringhand and Felzkowski; +cosponsored by Representatives Rozar, J. Rodriguez, Andraca, Armstrong, Cabral-Guevara, Cabrera, Dittrich, Duchow, Edming, Emerson, Magnafici, Moses, Mursau, Novak, Penterman, Petryk, Sinicki, Snodgrass, Spiros, Spreitzer, Thiesfeldt, VanderMeer and Shankland",2022-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Gundrum, Behnke, Brooks, Armstrong, Cabral-Guevara, Duchow, Knodl, Kuglitsch, Magnafici, Murphy, Mursau, Neylon, Oldenburg, Penterman, Rozar, Sanfelippo, Steffen, Tittl, Wittke and Schraa; +cosponsored by Senators Darling, Nass, Felzkowski, Stroebel and Ballweg",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Petersen, Krug, Brooks, Behnke, Magnafici, Rozar, Kitchens, Armstrong, Edming, Dittrich, Kuglitsch and Neylon; +cosponsored by Senators Bernier, Darling, Jacque and Wanggaard",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Ballweg, Bewley, Cowles, Jacque and Marklein; +cosponsored by Representatives Wittke, Callahan, Moses, Mursau, Novak, J. Rodriguez, Snyder, Spreitzer, Swearingen and Zimmerman",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Joint Committee on Finance, by request of Governor Tony Evers",2021-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, L. Taylor, Roys, Agard, Larson and Johnson; +cosponsored by Representatives S. Rodriguez, Emerson, Moore Omokunde, Baldeh, Bowen, Brostoff, Cabrera, Conley, Considine, Drake, Goyke, Hebl, Ohnstad, Pope, Shelton, Sinicki, Spreitzer, Stubbs and Subeck",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Sinicki, Andraca, Baldeh, Cabrera, Hesselbein and Stubbs; +cosponsored by Senator Roys",2022-03-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, B. Meyers, Shankland, Milroy, Doyle, Vruwink, Snodgrass, Hintz, Sinicki, Hebl, Ohnstad, Shelton, Spreitzer, Considine, Billings, Anderson, Neubauer, Hesselbein, S. Rodriguez, Conley, Subeck, Stubbs, Andraca, Ortiz-Velez and McGuire; +cosponsored by Senators Pfaff, Smith, Bewley, Ringhand, Agard, Roys and Larson",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hesselbein, Considine, Vruwink, Anderson, Baldeh, Brostoff, Cabrera, Conley, Emerson, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck and Vining; +cosponsored by Senators Ringhand, Erpenbach, Roys, Agard, L. Taylor, Smith, Pfaff and Larson",2022-01-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Schraa; +cosponsored by Senator Jagler",2021-10-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Swearingen, Callahan and Dittrich; +cosponsored by Senators Felzkowski and Stroebel",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Darling, Erpenbach, Johnson, Larson, Pfaff and Wirch; +cosponsored by Representatives Steffen, Rozar, Brostoff, Billings, Cabral-Guevara, Dittrich, Duchow, Goyke, Kitchens, Kuglitsch, Skowronski, Tittl and Wichgers",2021-03-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snodgrass, Cabral-Guevara, S. Rodriguez, Anderson, Andraca, Armstrong, Cabrera, Conley, Considine, Dittrich, Drake, Hebl, Hesselbein, Hong, Horlacher, Milroy, Moore Omokunde, Murphy, Mursau, Neubauer, Ohnstad, Penterman, Rozar, Shankland, Shelton, Sinicki, Spreitzer, Thiesfeldt, Tusler, Vruwink and Subeck; +cosponsored by Senators Johnson, Agard, Carpenter, Darling, Larson, Pfaff, Ringhand, Roys, Smith and L. Taylor",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Wittke,2022-02-08T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Committee on Rules,2022-02-22T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Gundrum, Allen, Behnke, Brandtjen, Cabral-Guevara, Dittrich, Horlacher, Knodl, Kuglitsch, Magnafici, Murphy, Ramthun, Rozar, Skowronski, Sortwell, Thiesfeldt, Wichgers, Armstrong, Tusler and Schraa; +cosponsored by Senators Jacque and Nass",2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Mursau, Armstrong, Baldeh, Kuglitsch and Wichgers; +cosponsored by Senator Jacque",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Smith, Erpenbach, Agard and Larson; +cosponsored by Representatives Shelton, Hintz, Baldeh, Andraca, Subeck, Spreitzer, Stubbs, Considine, Anderson, Neubauer and Snodgrass",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Kooyenga and Kapenga; +cosponsored by Representatives Wittke and Macco",2021-01-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Horlacher, Cabral-Guevara, Allen, Armstrong, Brandtjen, Brooks, Dittrich, Duchow, Edming, Gundrum, James, Kuglitsch, Macco, Magnafici, Moses, Penterman, Schraa, Skowronski, Sortwell, Spiros, Summerfield, Thiesfeldt, Tittl, Wichgers and Ramthun; +cosponsored by Senators Felzkowski, Ballweg, Bernier, Jagler, Marklein, Stafsholt and Stroebel",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Johnson, Carpenter, Bewley, Ballweg, Larson, Darling and Roys; +cosponsored by Representatives Snyder, Ohnstad, Cabral-Guevara, Milroy, S. Rodriguez, Penterman, Murphy, Hebl, Horlacher, Sinicki, Conley, Moses, Bowen, Subeck, Drake, Hesselbein, Spreitzer, Mursau, Shelton, Stubbs and Shankland",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Stroebel, Felzkowski, Ballweg and Nass; +cosponsored by Representatives Magnafici, Armstrong, Brandtjen, Cabral-Guevara, Edming, Gundrum, Horlacher, James, Knodl, Moses, Penterman, Pronschinske, Schraa, Skowronski, Sortwell, Spiros, Tittl, Wichgers and Brooks",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Behnke, Thiesfeldt, Dittrich, Callahan, Armstrong, Born, Brandtjen, Cabral-Guevara, Gundrum, Knodl, Kuglitsch, Magnafici, Ramthun, Sortwell, Tittl, VanderMeer, Wichgers, Zimmerman and Penterman; +cosponsored by Senators Stroebel, Darling, Bradley, Felzkowski, Nass, Testin, Wanggaard and Wimberger",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Macco, Steffen, Armstrong, Baldeh, James, Kitchens, Ortiz-Velez, Rozar, Skowronski, Subeck, Tauchen, Thiesfeldt, Tusler, Zimmerman and Sinicki; +cosponsored by Senators Bernier, Cowles, Jacque, Roys and L. Taylor",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dallman, Kurtz, Cabral-Guevara, Callahan, Duchow, Edming, Krug, Moses, Oldenburg, Plumer, Rozar, Snyder, Swearingen, Tranel, Vorpagel, Wittke and Zimmerman; +cosponsored by Senators Marklein, Bernier, Felzkowski and Ballweg",2021-04-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Johnson, Marklein, Stroebel, L. Taylor and Wimberger; +cosponsored by Representatives Petryk, Haywood, Bowen, Dallman, Dittrich, Cabral-Guevara, James, Knodl, Moses, Mursau, Rozar, Steffen, Stubbs, Subeck, VanderMeer, Wichgers, Pronschinske, Zimmerman and Spiros",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives James, Summerfield, Armstrong, Dittrich, Edming, Jagler, Knodl, Magnafici, Milroy, Moses, Murphy, Mursau, Oldenburg, Petryk, Pronschinske, Rozar, Schraa, Skowronski, Tauchen, Tittl, Tranel, VanderMeer and Zimmerman; +cosponsored by Senators Bernier, Felzkowski, Ballweg, Darling, Roth, Stafsholt, Stroebel and Wanggaard",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Anderson, Brostoff, Andraca, Cabrera, Conley, Considine, Hebl, Hesselbein, Milroy, Neubauer, Ohnstad, Shankland, Snodgrass, Spreitzer and Vining; +cosponsored by Senators Smith, Larson, Carpenter, Agard, Johnson and Ringhand",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Smith, L. Taylor, Carpenter, Larson, Roys and Wirch; +cosponsored by Representatives Snodgrass, Considine, Anderson, Andraca, Baldeh, Behnke, Billings, Cabrera, Conley, Neubauer, Ohnstad, Pope, Shankland, Shelton, Sinicki, Stubbs and Vining",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Brooks, Edming, Gundrum, Knodl, Moses, Murphy, Ramthun and Tittl; +cosponsored by Senators Jacque, Nass and Smith",2021-01-29T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Johnson, Agard, Cowles, Carpenter, Jacque, Larson, Roys, Smith, L. Taylor and Wirch; +cosponsored by Representatives Subeck, Tusler, Anderson, Andraca, Armstrong, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Drake, Hebl, Hesselbein, Milroy, L. Myers, Ramthun, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Vining and Vruwink",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Smith; +cosponsored by Representative Petryk",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sinicki, Subeck, Brostoff, Anderson, Andraca, Baldeh, Cabrera, Conley, Considine, Hebl, Hesselbein, Milroy, Neubauer, Ohnstad, Pope, Shankland, Shelton and Snodgrass; +cosponsored by Senators Larson, Agard, Carpenter and Johnson",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Born, Callahan, Conley, Duchow, Loudenbeck, Murphy, Novak, Ortiz-Velez, Plumer, Rozar, Sinicki, Skowronski and Spreitzer; +cosponsored by Senators Petrowski, Cowles, Pfaff, Ringhand and Wanggaard",2021-09-28T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard and Wirch; +cosponsored by Representatives Wittke, Vos and McGuire",2021-03-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Hong, Anderson, Baldeh, Bowen, Conley, Drake, Hesselbein, Pope, S. Rodriguez, Sinicki, Stubbs, Subeck, Tusler and Vruwink; +cosponsored by Senators Roys, Agard and L. Taylor",2021-06-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Callahan, Armstrong, Behnke, Edming, James, Krug, Kuglitsch, Magnafici, Murphy, Mursau, Novak, Petersen, Plumer, Sanfelippo, Snyder, Spiros, Swearingen, Thiesfeldt, Tittl and Cabral-Guevara",2022-01-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Smith, Johnson, L. Taylor, Ringhand, Agard, Carpenter, Roys, Erpenbach and Bewley; +cosponsored by Representatives Pope, Shankland, Sinicki, Brostoff, Anderson, Hesselbein, Goyke, B. Meyers, Cabrera, Snodgrass, L. Myers, Vining, Drake, Emerson, Shelton, Hebl, Conley, Subeck, S. Rodriguez, Ohnstad, Stubbs, Milroy, Vruwink, Hong and Andraca",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Billings, Mursau, Anderson, Cabral-Guevara, Cabrera, Considine, Conley, Edming, Milroy, Moses, Pope, Shelton, Shankland, Spiros, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Jagler, Pfaff, Cowles, Larson, Marklein, Ringhand, Smith and Wirch",2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Gundrum, Rozar, Armstrong, Behnke, Brooks, Cabral-Guevara, Dittrich, Knodl, Krug, Magnafici, Penterman, Sanfelippo, Wichgers, Allen, Murphy and Schraa; +cosponsored by Senators Stroebel, Darling, Felzkowski and Marklein",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Larson, Johnson, Erpenbach, Roys, L. Taylor and Smith; +cosponsored by Representatives Shankland, Andraca, Haywood, Anderson, Brostoff, Cabrera, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Vining and Vruwink",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hesselbein, Spreitzer, Andraca, Hebl, Emerson, B. Meyers, Baldeh, Brostoff, Subeck, Snodgrass, Drake, Goyke, Riemer, Vruwink, Sinicki, Hintz, Conley, Pope, S. Rodriguez, Hong, Bowen, Milroy, Shankland, Anderson, Shelton and Stubbs; +cosponsored by Senators Smith, Carpenter, Roys and Ringhand",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jagler, Nass and Darling; +cosponsored by Representatives Dittrich, Kuglitsch, Cabral-Guevara, Rozar, Magnafici, Gundrum, Murphy, Penterman, Edming, Armstrong, Brandtjen, Tranel, Behnke and Knodl",2021-09-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Johnson, Smith, L. Taylor, Agard, Carpenter, Roys, Erpenbach and Bewley; +cosponsored by Representatives Pope, Anderson, Considine, Spreitzer, Vining, Sinicki, Brostoff, Hesselbein, Goyke, B. Meyers, Cabrera, Snodgrass, L. Myers, Shankland, Drake, Emerson, Shelton, Hebl, Conley, Subeck, S. Rodriguez, Ohnstad, Stubbs, Milroy, Vruwink and Hong",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Erpenbach, Larson, Roys, Ringhand, Agard, Smith, Pfaff and Carpenter; +cosponsored by Representatives Pope, Considine, Shelton, Spreitzer, Hebl, Emerson, Vruwink, B. Meyers, Milroy, Anderson, Sinicki, Hintz and Cabrera",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Knodl, Armstrong, Behnke, Brandtjen, Brooks, Cabral-Guevara, Dittrich, Gundrum, Horlacher, Krug, Kuglitsch, Magnafici, Penterman, Petersen, Pronschinske, Rozar, Sanfelippo, Schraa, Tittl, Wichgers, Neylon and Murphy; +cosponsored by Senators Darling, Felzkowski, Nass, Roth, Wimberger, Stroebel and Ballweg",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Haywood; +cosponsored by Senator Johnson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators L. Taylor, Agard, Carpenter and Roys; +cosponsored by Representatives Billings, Pope, Baldeh, Bowen, Cabrera, Conley, Considine, Hebl, Shelton, Sinicki, Stubbs, Subeck, Vining, Vruwink and Shankland",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sanfelippo, Neylon, Armstrong, Brandtjen, Brooks, Cabral-Guevara, Duchow, Gundrum, Horlacher, Knodl, Kuglitsch, Moses, Murphy, Ramthun, Rozar, Schraa and Steffen; +cosponsored by Senator Wimberger",2021-04-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Snodgrass, Hong, Moore Omokunde, Drake, Brostoff, Neubauer, Hebl, Spreitzer, Andraca, Emerson, Hesselbein, Stubbs, Bowen, Sinicki, Subeck and Cabrera; +cosponsored by Senator Larson",2021-06-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Novak, Dallman, Vruwink, Armstrong, Billings, Cabral-Guevara, Callahan, Horlacher, Moses, Oldenburg, Petryk, Rozar, Schraa, Skowronski, Steffen, Subeck, Tittl, Tusler and Mursau; +cosponsored by Senators Ballweg, Jacque, Marklein, Nass, Pfaff, Smith and Testin",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Finance,2021-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Bernier, Carpenter, Nass and Ringhand; +cosponsored by Representatives Novak, Tranel, Allen, Callahan, Dittrich, Drake, Edming, Horlacher, Kerkman, Kitchens, Knodl, Loudenbeck, Magnafici, Milroy, Moses, Mursau, Penterman, Riemer, Shankland, Shelton, Sinicki, Spiros, Spreitzer, Subeck, Thiesfeldt, Tusler, Vruwink and Wittke",2021-10-18T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Vos; +cosponsored by Senator Marklein",2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Cowles, Jacque, Marklein and Wanggaard; +cosponsored by Representatives Tittl, Brandtjen, Gundrum, Knodl, Moses, Mursau, Rozar, J. Rodriguez and Bowen",2021-04-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt and Ramthun; +cosponsored by Senator Cowles",2021-11-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel, Nass and Roys; +cosponsored by Representatives Knodl, Gundrum, Moses and Tauchen",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representative Krug",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Felzkowski, Carpenter and Wanggaard; +cosponsored by Representatives Edming, Armstrong, Brandtjen, Brooks, Callahan, Dittrich, Horlacher, Milroy, Moses, Murphy, Mursau, Rozar, Schraa, Sinicki, Tauchen, Thiesfeldt, Tranel and Wichgers",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein and Kooyenga; +cosponsored by Representatives Wittke, Armstrong and Brooks",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives B. Meyers, Sinicki, Hebl, Drake, Vruwink, S. Rodriguez, Milroy, Hesselbein, Shelton, Subeck, Shankland, Thiesfeldt, Hintz, Neubauer, Spreitzer, Cabrera and Stubbs; +cosponsored by Senators Bewley, L. Taylor, Cowles, Ringhand, Felzkowski and Erpenbach",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sinicki, Subeck, Emerson and Drake; +cosponsored by Senator L. Taylor",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Stroebel, Wimberger, Ballweg, Bernier, Cowles, Felzkowski, Feyen, Marklein, Nass, Testin and Wanggaard; +cosponsored by Representatives Sanfelippo, Armstrong, August, Cabral-Guevara, Dittrich, Duchow, Edming, Gundrum, Horlacher, Jagler, Knodl, Krug, Kuglitsch, Magnafici, Moses, Murphy, Pronschinske, Rozar, Skowronski, Spiros, Steffen, Tauchen, Thiesfeldt, VanderMeer, Wichgers, Zimmerman, Callahan, Kerkman and Brandtjen",2021-03-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sinicki, Shankland, Hesselbein, Hintz, Anderson, Hebl, Vruwink, Neubauer, Conley, S. Rodriguez, Emerson, Andraca, Shelton, Spreitzer, Skowronski, Subeck and Stubbs; +cosponsored by Senators Erpenbach, Wirch, Bewley, Carpenter, L. Taylor, Roys, Ringhand, Pfaff, Smith and Larson",2021-05-03T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Senator Kooyenga,2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steineke, Stubbs, Armstrong, Baldeh, Cabral-Guevara, Cabrera, Edming, Goyke, Gundrum, Kitchens, Krug, Kurtz, Loudenbeck, Macco, Milroy, Moses, Mursau, Novak, Petryk, Schraa, Spiros, Steffen, Wittke and Zimmerman; +cosponsored by Senators Wanggaard, L. Taylor, Ballweg and Cowles",2021-05-18T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Subeck, Sinicki, Allen, Andraca, Baldeh, Bowen, Cabrera, Considine, Dittrich, Emerson, Hebl, James, Knodl, B. Meyers, Mursau, Ohnstad, Shelton, Spreitzer, Stubbs, Vining and Vruwink; +cosponsored by Senators Darling, Johnson, Larson, Agard, Bewley, Carpenter, Cowles, Petrowski, Pfaff, Ringhand and Roys",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vos, Armstrong, Behnke, Cabral-Guevara, Dallman, Dittrich, Gundrum, Katsma, Knodl, Krug, Kuglitsch, Magnafici, Moses, Murphy, Mursau, Penterman, Plumer, Rozar, Sanfelippo, Steffen, Tusler, Wittke and Schraa; +cosponsored by Senators LeMahieu, Darling, Stroebel and Ballweg",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Stroebel; +cosponsored by Representatives Penterman, Kuglitsch, Allen, Magnafici, Skowronski, Tusler, Dittrich and Moses",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Swearingen, Edming, Armstrong, August, Behnke, Cabral-Guevara, Dittrich, Duchow, Gundrum, James, Knodl, Plumer, Pronschinske, Schraa, Steineke, Summerfield, Vos and Brooks; +cosponsored by Senators Wimberger, Stafsholt, Ballweg, Bradley, Felzkowski, Feyen, Kooyenga, Marklein and Wanggaard",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Smith and Wirch; +cosponsored by Representatives Hintz, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Andraca, Baldeh, Conley, Drake, Hong, S. Rodriguez, Snodgrass, Considine, Neubauer, Emerson, Hintz, Vruwink, Milroy, Brostoff, Hesselbein, Hebl, Moore Omokunde, Bowen, Cabrera, Stubbs and Subeck; +cosponsored by Senators Pfaff, L. Taylor, Roys, Ringhand, Larson and Ballweg",2021-06-03T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Agard, Carpenter and Roys; +cosponsored by Representatives Subeck, Andraca, Baldeh, Billings, Bowen, Cabrera, Considine, Hebl, Hesselbein, Hong, Milroy, Pope, Shankland, Shelton, Sinicki, Spreitzer, Vruwink and Stubbs",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bewley, Agard, Carpenter, Erpenbach, Johnson, Larson, Pfaff, L. Taylor, Roys and Smith; +cosponsored by Representatives Conley, B. Meyers, Andraca, Baldeh, Bowen, Brostoff, Cabral-Guevara, Cabrera, Considine, Doyle, Drake, Emerson, Goyke, Hebl, Hong, Milroy, Moore Omokunde, Neubauer, Ohnstad, Pope, Shankland, Shelton, Snodgrass, Sinicki, Spreitzer, Stubbs, Subeck, S. Rodriguez, Vining and Vruwink",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Stubbs, Sinicki, Brostoff, Hesselbein, Snodgrass, Andraca, Shelton, Vining, Hong, Hebl, Emerson, Spreitzer, Goyke, Conley, Subeck, Baldeh, Cabrera, Hintz, Riemer, Considine, Bowen and Pope; +cosponsored by Senators Agard, Larson, Johnson, Roys, Carpenter and Ringhand",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Carpenter, Ballweg, Felzkowski, Feyen, Jacque, Marklein and L. Taylor; +cosponsored by Representatives Macco, Wittke, Armstrong, Callahan, Dittrich, Edming, Horlacher, Katsma, Kerkman, Knodl, Kuglitsch, Magnafici, Milroy, Murphy, Petryk, Ramthun, Skowronski, Snyder, Steffen, Summerfield, Tranel, Zimmerman and James",2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Committee on Labor and Regulatory Reform,2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Anderson, Subeck, Brostoff, Sinicki, Hebl, Shankland, Ohnstad, Baldeh, Neubauer, Snodgrass, Cabrera, Spreitzer, Milroy, Considine, Pope, Conley, Shelton and Andraca; +cosponsored by Senators Larson, Carpenter, Roys, Agard and Johnson",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steineke, Snyder, Allen, Armstrong, Baldeh, Edming, James, Kerkman, Moses, Novak, Ortiz-Velez, Plumer, Rozar, Shankland, Skowronski, Spiros, Spreitzer, Steffen, Subeck, Tauchen, Tranel, Tusler and Mursau; +cosponsored by Senators Bernier and Darling",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Testin; +cosponsored by Representative VanderMeer",2022-02-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Duchow, Brooks, Skowronski, Magnafici, Edming, Kerkman, Spiros, Krug, Gundrum, Kuglitsch, Murphy, Knodl and Wichgers; +cosponsored by Senators Stroebel, Darling, Roth, Marklein, Nass, Ballweg and Felzkowski",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Carpenter, Erpenbach, Agard, Bewley, Johnson, Larson, Pfaff and Ringhand; +cosponsored by Representatives Subeck, S. Rodriguez, Anderson, Baldeh, Cabral-Guevara, Cabrera, Conley, Considine, Emerson, Hebl, Hesselbein, Hong, Milroy, L. Myers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vruwink",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Committee on Labor and Integrated Employment,2022-01-26T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Thiesfeldt, Steffen, Baldeh, Brandtjen, Brostoff, Gundrum, Knodl, Plumer, Rozar, Skowronski, Spiros and Tusler; +cosponsored by Senators Feyen, Carpenter and Nass",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Cowles and Felzkowski; +cosponsored by Representatives Rozar, Brooks, Krug, Moses, Subeck and Wichgers",2021-11-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wirch, Agard, Bewley, Carpenter, Erpenbach, Johnson, Larson, Ringhand and Roys; +cosponsored by Representatives Sinicki, Andraca, Bowen, Cabrera, Conley, Drake, Doyle, Emerson, Haywood, Hebl, Hong, Milroy, Neubauer, Ohnstad, Pope, Shankland, Shelton, Snodgrass, Spreitzer, Stubbs, Subeck and Vruwink",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Snodgrass, Hintz, Anderson, Andraca, Baldeh, Considine, Neubauer, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Roys, Agard, Erpenbach, Larson and Smith",2021-07-12T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Dittrich, Skowronski, Edming, Thiesfeldt and Knodl; +cosponsored by Senators Nass and Stroebel",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Hesselbein, Anderson, Cabral-Guevara, Cabrera, Conley, Considine, Doyle, Emerson, Hebl, Hong, Milroy, L. Myers, Neubauer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Vining and Vruwink; +cosponsored by Senators Smith, Erpenbach, Agard, Bewley, Carpenter, Johnson, Larson, Pfaff and Ringhand",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Roys, Agard and Bewley; +cosponsored by Representatives Hong, Stubbs, Subeck, Baldeh, Bowen, Conley, Considine, Emerson, Hebl, Hintz, B. Meyers, Milroy, Murphy, Novak, Ohnstad, S. Rodriguez, Shankland, Shelton, Sinicki, Spreitzer and Vruwink",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger and Darling; +cosponsored by Representatives Behnke, Brooks, Cabral-Guevara, Dittrich, Edming, Gundrum, Horlacher, James, Kuglitsch, Murphy, Mursau, Ramthun, Schraa, Tusler and Knodl",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tranel, Novak, Kurtz, Oldenburg, VanderMeer, Jagler, Knodl, Moses, Murphy, Mursau, Ramthun, Schraa and Tusler; +cosponsored by Senators Marklein, Nass, Cowles, Feyen and Felzkowski",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sortwell, Armstrong, Brandtjen, Magnafici, Penterman, Schraa, Wichgers and Murphy; +cosponsored by Senator Jacque",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Steffen, Ramthun, Armstrong, Cabral-Guevara, Knodl, Moses, Rozar and Tusler",2021-08-31T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin and Kooyenga; +cosponsored by Representatives Summerfield, James, Cabral-Guevara, Dittrich, Rozar and Wichgers",2021-07-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard and Johnson; +cosponsored by Representatives Vruwink, Hebl, Snodgrass, Conley, Andraca, Neubauer, Shelton, Stubbs, Pope, Sinicki, Hesselbein, Subeck, Emerson, Bowen and Shankland",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Roys, Agard, Ringhand, Wirch, Johnson, Carpenter, Bewley, Smith, Pfaff, Erpenbach and L. Taylor; +cosponsored by Representatives Shankland, Hesselbein, Subeck, Neubauer, Sinicki, Emerson, Considine, Billings, Spreitzer, Hintz, Anderson, Vining, Stubbs, Vruwink, Doyle, Baldeh, Milroy, Ohnstad, S. Rodriguez, Pope, Conley, Shelton, Hebl, Hong, Brostoff, Snodgrass, Haywood, Moore Omokunde, Goyke, Andraca, Bowen, Cabrera, Drake, McGuire, B. Meyers, L. Myers, Ortiz-Velez and Riemer",2021-11-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Ballweg, Felzkowski, Marklein and Ringhand; +cosponsored by Representatives Snyder, Armstrong, Considine, Edming, Hintz, Moses, Novak, Spreitzer and Subeck",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Nass; +cosponsored by Representatives Moses, Sortwell, Allen, Armstrong, Brandtjen, Brooks, Horlacher, James, Rozar, Schraa and Thiesfeldt",2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Anderson, Billings, S. Rodriguez, Subeck, Baldeh, Cabral-Guevara, Cabrera, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hong, Milroy, L. Myers, Neubauer, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Vining and Vruwink; +cosponsored by Senators Ringhand, Erpenbach, Agard, Bewley, Carpenter, Johnson, Larson, Pfaff and Roys",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Wanggaard, Bewley, Agard, Ballweg, Nass, Pfaff, Ringhand and L. Taylor; +cosponsored by Representatives Horlacher, Emerson, Allen, Brandtjen, Callahan, Dittrich, Edming, Kerkman, Kuglitsch, Loudenbeck, Milroy, Mursau, Novak, Petryk, Ramthun and Thiesfeldt",2021-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sanfelippo, Brandtjen, Murphy, Rozar, Thiesfeldt and Tusler",2021-03-17T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Oldenburg, VanderMeer, Bowen, Edming, Magnafici, Moses, Mursau, Novak and Plumer; +cosponsored by Senators Stafsholt and Pfaff",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Felzkowski, Ballweg, Bewley, Cowles, Erpenbach, Feyen, Jacque, Pfaff, Ringhand, Stroebel, Testin and Wirch; +cosponsored by Representatives Swearingen, Mursau, Callahan, Edming, Hesselbein, Kitchens, Kurtz, B. Meyers, Milroy, Moses, Novak, Oldenburg, Rozar, Spiros, Summerfield, Thiesfeldt, Tusler, VanderMeer, Zimmerman and Spreitzer",2021-05-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Agard, Johnson, Larson and L. Taylor; +cosponsored by Representatives Vining, Spreitzer, Andraca, Bowen, Cabrera, Emerson, Goyke, Hebl, Hesselbein, Hong, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Tusler and Vruwink",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Darling, Feyen, Roth and Testin; +cosponsored by Representatives August, Vorpagel, Brooks, Armstrong, Behnke, Dallman, Dittrich, Gundrum, Knodl, Krug, Kuglitsch, Magnafici, Moses, Murphy, Penterman, Petersen, Plumer, Rozar, Sanfelippo, Spiros, Steffen, Tittl, Wichgers and Wittke",2022-02-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Agard, Carpenter, Larson and Roys; +cosponsored by Representatives Shelton, Snodgrass, Hintz, Anderson, Baldeh, Brostoff, Conley, Considine, Emerson, Hebl, Neubauer, Ohnstad, Pope, Sinicki, Spreitzer, Stubbs and Vruwink",2021-07-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Felzkowski, Ballweg, Jagler, Nass, Stroebel and L. Taylor; +cosponsored by Representatives Zimmerman, Brooks, Kuglitsch, Magnafici, Moses, Murphy, Mursau and L. Myers",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Legislative Council,2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vorpagel and Katsma; +cosponsored by Senator LeMahieu",2021-04-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, L. Taylor, Wanggaard and Ballweg; +cosponsored by Representatives Steineke, Stubbs, Armstrong, Baldeh, Cabral-Guevara, Cabrera, Duchow, Edming, Goyke, Gundrum, Katsma, Kitchens, Krug, Kurtz, Loudenbeck, Macco, Milroy, Moses, Mursau, Novak, Petryk, Schraa, Spiros, Steffen, Tauchen, Zimmerman, Wittke, Tranel, Ohnstad, Dittrich, Vruwink and Subeck",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Tittl, Armstrong, Brandtjen, Cabral-Guevara, Dittrich, Edming, Gundrum, Horlacher, Mursau, Rozar, Subeck, Thiesfeldt and Knodl; +cosponsored by Senators Jacque and Ballweg",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque, Darling and Nass; +cosponsored by Representatives Wichgers, Ramthun, Allen, Behnke, Brandtjen, Dittrich, Gundrum, Horlacher, Knodl, Kuglitsch, Murphy, Neylon, Rozar, Sortwell, Armstrong and Tusler",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Wittke; +cosponsored by Senator Stroebel",2021-04-14T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Vos and McGuire; +cosponsored by Senators Wanggaard and Wirch",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Pfaff and Larson; +cosponsored by Representatives Doyle, S. Rodriguez, Snodgrass, B. Meyers, Anderson, Hebl, Vruwink, Spreitzer, Milroy, Hesselbein, Shelton, Shankland, Subeck, Ohnstad and Stubbs",2021-12-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives McGuire, Haywood, Brostoff, Considine, Drake, Hebl, Hong, Ohnstad, S. Rodriguez, Sinicki, Subeck and Shelton; +cosponsored by Senator Cowles",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Nass and Feyen; +cosponsored by Representatives Wittke, Cabral-Guevara and Moses",2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Testin, Nass and Ballweg; +cosponsored by Representatives Gundrum, Magnafici, Cabral-Guevara, Dittrich, Moses, Armstrong and Horlacher",2022-02-23T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Ballweg, Cowles, Ringhand and L. Taylor; +cosponsored by Representatives Brooks, Gundrum, Schraa, Armstrong, Subeck, Brandtjen, Edming, Novak, Spiros, Allen, Kuglitsch, Tittl, Knodl, James, VanderMeer and Tusler",2021-06-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sanfelippo, Cabral-Guevara, Dittrich, Duchow, Moses, Murphy and Rozar; +cosponsored by Senator Kooyenga",2021-01-19T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Smith, L. Taylor, Carpenter, Larson, Roys and Wirch; +cosponsored by Representatives Snodgrass, Considine, Anderson, Andraca, Baldeh, Billings, Cabrera, Conley, Hebl, Neubauer, Ohnstad, Pope, Shelton, Sinicki, Stubbs and Vining",2021-07-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Haywood, Sinicki, Hebl, Ohnstad, Andraca, Spreitzer, Hesselbein, Drake, Subeck, Pope, Bowen, Brostoff, Stubbs and Shelton; +cosponsored by Senators Johnson, Ringhand, Roys and Agard",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jagler; +cosponsored by Representative Schraa",2021-10-11T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Moses, Sortwell, Allen, Armstrong, Brandtjen, Brooks, Horlacher, James, Rozar, Schraa, Thiesfeldt and Wichgers; +cosponsored by Senator Nass",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Darling, Johnson, Ballweg, Carpenter, Felzkowski, Jacque, Larson, L. Taylor and Wanggaard; +cosponsored by Representatives Rozar, Billings, Snyder, Armstrong, Baldeh, Dittrich, Emerson, Gundrum, Hebl, Moses, Ortiz-Velez, Ramthun, S. Rodriguez, Spiros, Spreitzer, Stubbs, Subeck, Tauchen and Vruwink",2021-02-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Felzkowski, Agard, Bewley, Carpenter, Pfaff, Ringhand, Roys, L. Taylor and Larson; +cosponsored by Representatives B. Meyers, Mursau, Snodgrass, Anderson, Andraca, Baldeh, Bowen, Conley, Drake, Emerson, Hebl, Hesselbein, Hong, Milroy, Neubauer, S. Rodriguez, Shankland, Shelton, Sinicki, Spreitzer, Subeck, Vining, Vruwink, Cabrera, Tauchen, Stubbs and Considine",2021-06-24T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shelton, Snodgrass, Andraca, Billings, Considine, Emerson, Hebl, B. Meyers, Pope, Sinicki, Stubbs, Subeck, Vruwink and Drake; +cosponsored by Senators Agard and Larson",2022-01-18T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee for Review of Administrative Rules,2021-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representative Kurtz; +cosponsored by Senator Marklein",2021-06-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Kooyenga, Darling, Cowles, Marklein, Wirch and Ballweg; +cosponsored by Representatives Edming, Petersen, Doyle, Tauchen, Spiros, Sinicki, L. Myers, Mursau, Milroy, Knodl, Kuglitsch, Wichgers, Moses, Subeck, Tusler, Ohnstad, Murphy and Allen",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Armstrong, Brandtjen, Dittrich, Kuglitsch, Murphy, Mursau, Skowronski, Tusler and Wichgers; +cosponsored by Senators Jacque and Ballweg",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators L. Taylor, Larson and Johnson; +cosponsored by Representatives Subeck, Stubbs, Anderson, Andraca, Billings, Brostoff, Conley, Emerson, Hebl, Neubauer, Pope, Shelton, Sinicki and Snodgrass",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt, Stroebel, Cowles, Feyen, Jacque, Marklein and Roth; +cosponsored by Representatives Sortwell, James, Allen, Armstrong, Brandtjen, Brooks, Cabral-Guevara, Callahan, Dallman, Dittrich, Duchow, Edming, Gundrum, Kitchens, Knodl, Krug, Kurtz, Magnafici, Moses, Murphy, Mursau, Ortiz-Velez, Petryk, Pronschinske, Ramthun, Rozar, Schraa, Skowronski, Steffen, Thiesfeldt, Tittl and Tranel",2021-03-16T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Larson, Johnson, Ringhand, L. Taylor, Agard, Carpenter, Roys, Erpenbach and Bewley; +cosponsored by Representatives Pope, Shelton, Anderson, Andraca, Spreitzer, Vining, Sinicki, Brostoff, Hesselbein, Goyke, B. Meyers, Cabrera, Snodgrass, L. Myers, Shankland, Drake, Emerson, Hebl, Conley, Subeck, S. Rodriguez, Ohnstad, Stubbs, Milroy, Vruwink and Hong",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Ballweg; +cosponsored by Representatives Brooks, Allen, Kuglitsch, Krug and Subeck",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Thiesfeldt, Dittrich, Brandtjen, Gundrum, Knodl, Macco, Magnafici and Rozar; +cosponsored by Senators Darling, Roth, Stroebel, Wanggaard and Ballweg",2022-02-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stroebel and Cowles; +cosponsored by Representatives Ramthun, Cabral-Guevara, Gundrum, Moses, Thiesfeldt and Tusler",2021-08-05T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Smith, Roys and L. Taylor; +cosponsored by Representatives Shankland, Shelton, Anderson, Conley, Considine, Emerson, Hebl, Hong, B. Meyers, Snodgrass, Spreitzer, Subeck and Stubbs",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Subeck, Cabrera, Anderson, Baldeh, Cabral-Guevara, Conley, Considine, Doyle, Emerson, Hesselbein, Hong, Milroy, L. Myers, Neubauer, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Vining and Vruwink; +cosponsored by Senators Erpenbach, Johnson, Agard, Bewley, Carpenter, Larson, Pfaff, Ringhand and Roys",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Oldenburg, Armstrong, Baldeh, Cabrera, Considine, Drake, Emerson, Hesselbein, Horlacher, Milroy, Moses, Ohnstad, S. Rodriguez, Shelton, Sinicki, Subeck, Vruwink, Wittke and Stubbs; +cosponsored by Senators Agard, Pfaff, Bernier, Bewley, Erpenbach, Ringhand and Roys",2021-04-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Larson, Smith, Johnson, Ringhand, L. Taylor, Agard, Carpenter, Roys, Erpenbach and Bewley; +cosponsored by Representatives Pope, Spreitzer, Anderson, Andraca, Vining, Sinicki, Brostoff, Goyke, Hesselbein, Shelton, B. Meyers, Cabrera, Snodgrass, L. Myers, Shankland, Drake, Emerson, S. Rodriguez, Hebl, Conley, Subeck, Ohnstad, Stubbs, Milroy, Vruwink and Hong",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Ramthun, Allen, Dittrich, Edming, Gundrum, James, Knodl, Krug, Magnafici, Moses, Rozar, Schraa, Steffen, Thiesfeldt and Tusler; +cosponsored by Senators Stroebel, Bernier, Felzkowski and Nass",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Knodl, Mursau and Penterman; +cosponsored by Senators Cowles, Stroebel and Roys",2021-12-02T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Vining, Spreitzer, Andraca, Bowen, Cabrera, Emerson, Goyke, Hebl, Hesselbein, Hong, Ohnstad, Pope, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Subeck, Tusler and Vruwink; +cosponsored by Senators Smith, Agard, Johnson, Larson and L. Taylor",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier, Cowles, Darling, Stroebel, Felzkowski, Marklein and Wanggaard; +cosponsored by Representatives Macco, Armstrong, Edming, Gundrum, Knodl, Krug, Kuglitsch, Magnafici, Moses, Murphy, Mursau, Penterman, Schraa and Spiros",2022-02-03T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator LeMahieu; +cosponsored by Representative Vos",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Shankland, Stubbs, Hebl, Anderson, Andraca, Baldeh, Cabrera, Conley, Considine, Drake, Emerson, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Pope, Shelton, Snodgrass and Subeck; +cosponsored by Senators L. Taylor, Carpenter, Larson, Roys and Smith",2021-05-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Stafsholt and Felzkowski; +cosponsored by Representatives Dallman, Cabral-Guevara, Edming, Gundrum, Novak, Oldenburg and Zimmerman",2022-01-21T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Wittke, Thiesfeldt, Allen, Brandtjen, Gundrum, Knodl, Macco, Magnafici, Murphy and Neylon; +cosponsored by Senators Darling, Roth, Stroebel, Wanggaard and Ballweg",2022-02-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Felzkowski; +cosponsored by Representatives Sortwell, Callahan, Moses, Tittl, Tusler and Wichgers",2021-02-11T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wimberger, Ballweg and Marklein; +cosponsored by Representatives VanderMeer, Magnafici, Armstrong, Brandtjen, Cabral-Guevara, Dittrich, Gundrum, James, Kerkman, Krug, Kuglitsch, Kurtz, Loudenbeck, Murphy, Mursau, Penterman, Petryk, Rozar, Snyder, Sortwell, Steffen, Tauchen and Wichgers",2022-01-13T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snodgrass, Novak, Cabrera, Neubauer, Spreitzer, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Conley, Considine, Doyle, Drake, Emerson, Goyke, Hebl, Hesselbein, Hintz, Hong, Kitchens, Milroy, L. Myers, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Subeck and Vining; +cosponsored by Senators Carpenter, Agard, Larson, Erpenbach, Johnson, Ringhand, Roys, Smith and L. Taylor",2021-05-07T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Gundrum, James, Cabral-Guevara, Duchow, Knodl, Kuglitsch, Wichgers and Murphy; +cosponsored by Senators Stroebel, Jacque and Nass",2022-01-28T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Haywood and Brostoff; +cosponsored by Senator Johnson",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Jacque and Ringhand; +cosponsored by Representatives Tranel, Novak, Billings, Murphy, Oldenburg, Spiros, Tittl, Kerkman, Petryk, Kuglitsch and Wichgers",2021-11-30T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, L. Myers, Bowen, Cabrera, Moore Omokunde, Shelton, Drake, Hebl, Hong, Anderson, Ortiz-Velez, Considine, Neubauer, Haywood, Baldeh, Goyke and Spreitzer; +cosponsored by Senators Johnson, L. Taylor and Roys",2021-03-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Baldeh, Billings, Bowen, Cabral-Guevara, Cabrera, Doyle, Kerkman, Mursau, L. Myers, Oldenburg, Rozar, Shelton, Subeck, Allen and Spreitzer; +cosponsored by Senators Marklein, Ballweg, Cowles, Darling, Larson, Pfaff, Roth, Roys, Wanggaard, Agard and L. Taylor",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brooks, Armstrong and Born",2021-10-08T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators L. Taylor, Agard, Johnson, Roys, Ringhand and Larson; +cosponsored by Representatives Shelton, Brostoff, Snodgrass, Emerson, Hong, Considine, Sinicki, Ohnstad, Spreitzer, Pope, Subeck, Drake, Bowen and Stubbs",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Law Revision Committee,2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Born, Cabral-Guevara, Dittrich, Gundrum, Horlacher, Kurtz, Milroy, Oldenburg, Penterman, Ramthun, Skowronski, Wichgers, Zimmerman and Knodl; +cosponsored by Senators Stroebel and Cowles",2021-11-12T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Duchow, Kitchens, Thiesfeldt and Skowronski; +cosponsored by Senators Ballweg, Testin and Feyen",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Sanfelippo, Edming, Gundrum, Knodl, Krug, Murphy, Neylon, Skowronski, Steffen, VanderMeer and Wichgers; +cosponsored by Senators Darling, Stroebel, Wimberger, Ballweg, Bradley, Felzkowski, Feyen, Jacque, Marklein, Nass and Wanggaard",2021-03-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, Carpenter, Larson and Ringhand; +cosponsored by Representatives Tittl, Wittke, Anderson, Andraca, Cabral-Guevara, Conley, Duchow, Hebl, Hintz, Hong, Magnafici, Vining, Vruwink, Shelton and Sinicki",2022-02-17T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives VanderMeer, Edming, Considine, Anderson, Andraca, Armstrong, Baldeh, Dittrich, Doyle, Gundrum, Hong, James, Kerkman, Loudenbeck, Magnafici, Milroy, Moses, Mursau, Oldenburg, Ramthun, S. Rodriguez, Rozar, Sinicki, Skowronski, Spiros, Steffen, Stubbs, Summerfield, Tauchen, Thiesfeldt, Tittl, Vruwink, Krug, Spreitzer and Subeck; +cosponsored by Senators Bernier, Kooyenga, Pfaff, Ballweg, Bewley, Carpenter, Cowles, Darling, Felzkowski, Jacque, Ringhand, Stafsholt, Smith, Testin and Wimberger",2021-03-04T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator LeMahieu; +cosponsored by Representative Vos",2021-06-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Pfaff, Smith, Erpenbach, Larson and Ringhand; +cosponsored by Representatives Considine, S. Rodriguez, Cabrera, Conley, Emerson, Hebl, B. Meyers, Neubauer, Ohnstad, Pope, Shankland, Shelton, Spreitzer, Stubbs, Subeck and Vruwink",2021-10-20T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Committee on Finance,2021-06-23T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, Anderson, Sinicki, Andraca, Hebl, Shankland, Ohnstad, Baldeh, Neubauer, Snodgrass, Spreitzer, Milroy, Considine, Pope, Conley and Shelton; +cosponsored by Senators Larson, Carpenter, Agard and Johnson",2021-09-10T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Snyder, Schraa, Rozar, Edming, Kitchens, Krug, Loudenbeck, Macco, Novak, Sortwell, Tittl, Brooks, Cabral-Guevara, James, Knodl, Plumer, Spiros and Summerfield; +cosponsored by Senators Felzkowski and Bernier",2022-02-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Wanggaard, Felzkowski, Johnson, Cowles, Darling, Jagler, Larson, Marklein, L. Taylor and Ballweg; +cosponsored by Representatives Schraa, Callahan, Moore Omokunde, Baldeh, Bowen, Cabrera, Dallman, Dittrich, Drake, Goyke, Gundrum, Haywood, Horlacher, Knodl, L. Myers, Rozar, Sinicki, Spiros, Spreitzer, Tittl and Vining",2021-09-15T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Ballweg, Nass, Petrowski, Testin and Stroebel; +cosponsored by Representatives Loudenbeck, Murphy, Novak, Tauchen, Tranel, VanderMeer, Oldenburg and Snyder",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Summerfield, Swearingen, Conley, Edming, Gundrum, James, Moses, Mursau, Pronschinske, Shankland, Sinicki, Skowronski, Spiros, Spreitzer and Tauchen; +cosponsored by Senators Bernier and Darling",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Zimmerman, Callahan, Sinicki, Allen, Armstrong, Brandtjen, Brooks, Dittrich, Edming, Gundrum, Horlacher, Jagler, Knodl, Kuglitsch, Macco, Moses, Murphy, Mursau, Novak, Oldenburg, Petryk, Plumer, Rozar, Skowronski, Sortwell, Summerfield, Thiesfeldt, Tranel, Tusler, Vorpagel and Wichgers; +cosponsored by Senators Jacque, Testin, L. Taylor, Carpenter, Ballweg, Bernier, Darling, Felzkowski, Feyen, Nass and Stroebel",2021-02-18T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Gundrum, Skowronski, Allen, Armstrong, Behnke, Conley, Dittrich, Doyle, Drake, Hesselbein, Horlacher, Knodl, Magnafici, Milroy, Murphy, Novak, Petryk, Plumer, Ramthun, Sinicki, Spiros, Spreitzer, Steffen, Thiesfeldt, Tranel, VanderMeer, Vruwink, Subeck and Penterman; +cosponsored by Senators Wimberger, Carpenter, Cowles, Darling, Feyen, Jacque, Marklein, Nass, Ringhand, Smith, Stroebel and Wanggaard",2021-12-07T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hesselbein, Sinicki, Hebl, Hintz, Shelton, Vruwink, Spreitzer, Ohnstad, Considine, Brostoff, B. Meyers, Haywood, L. Myers, Emerson and Subeck; +cosponsored by Senators Johnson, Kooyenga, Roys, Larson and Erpenbach",2022-02-16T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hesselbein, Considine, Cabrera, Milroy, Hebl, Sinicki, S. Rodriguez, Andraca, Emerson, Subeck, Shankland, Ohnstad, Cabral-Guevara and Stubbs; +cosponsored by Senators Erpenbach, Bewley, Johnson, Roys and Ringhand",2022-02-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Nass and Ballweg; +cosponsored by Representatives VanderMeer, Magnafici, Allen, Brandtjen, Cabral-Guevara, Dittrich, Knodl, Moses, Mursau, Sortwell, Thiesfeldt and Wichgers",2021-11-19T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Joint Legislative Council,2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Bowen, Andraca, Cabrera, Considine, Ohnstad, Shelton and Sinicki",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Ballweg, Jacque and Ringhand; +cosponsored by Representatives Kitchens, Billings, Krug, Dallman, Duchow, Edming, Emerson, Mursau, B. Meyers, Novak, J. Rodriguez, Rozar, Skowronski, Spiros, Spreitzer and Subeck",2021-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senator Jacque; +cosponsored by Representatives Shankland, Allen, Cabral-Guevara and S. Rodriguez",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Dittrich, Mursau and Tittl; +cosponsored by Senators Petrowski, Carpenter, Cowles, Marklein and Wirch",2021-10-25T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bernier and Stroebel; +cosponsored by Representatives Summerfield, Kuglitsch, Moses, James and Knodl",2022-01-06T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Agard, Larson, L. Taylor, Ringhand and Smith; +cosponsored by Representatives Pope, Anderson, Hebl, Shelton, Spreitzer, Conley, Hesselbein, Andraca, Subeck, Baldeh, Stubbs, Sinicki and S. Rodriguez",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Brostoff, Vining, Sinicki, Hebl, Shelton, B. Meyers, Ohnstad, Considine, Cabral-Guevara and Stubbs; +cosponsored by Senators Larson, Carpenter and Agard",2022-03-10T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Erpenbach, Johnson, Agard, Bewley, Carpenter, Larson, Pfaff and Ringhand; +cosponsored by Representatives Subeck, Cabrera, Anderson, Conley, Considine, Doyle, Emerson, Hebl, Hesselbein, Hong, Milroy, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs and Vruwink",2021-09-02T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Pope, Bowen, Hebl, Hesselbein, Subeck, Spreitzer, Stubbs, Anderson, Sinicki and Cabrera; +cosponsored by Senators Carpenter, Roys, Larson, Agard and Smith",2021-08-04T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Hebl, Anderson, Baldeh, Conley, Emerson, Neubauer, Pope, S. Rodriguez, Spreitzer, Stubbs and Subeck; +cosponsored by Senators Roys, Bewley, Erpenbach and Johnson",2021-05-27T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Bradley, Jacque, Felzkowski, Feyen, Petrowski, Roth, Stroebel, Wanggaard and Wimberger; +cosponsored by Representatives Knodl, Kuglitsch, Armstrong, Brooks, Dallman, Gundrum, Horlacher, Kitchens, Kurtz, Macco, Moses, Mursau, Snyder, Sortwell, Steffen, Steineke, Swearingen, Tittl, Tranel, Tusler, Vorpagel, Wittke and Zimmerman",2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Cowles, Ballweg, Ringhand and Roys; +cosponsored by Representatives Kitchens, Pope, Baldeh, Billings, Cabrera, Duchow, Hebl, Hintz, Kurtz, Milroy, Mursau, Neubauer, Novak, Petryk, Rozar, Shelton, Sinicki, Snodgrass, Sortwell, Spreitzer, Steffen, Subeck, Tauchen, Tittl, Tranel, Tusler and Zimmerman",2021-02-24T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Baldeh, Hebl, Shankland, Shelton, Billings, Sinicki, Neubauer, Hong, Hintz, Snodgrass, Andraca, Conley, Considine, Subeck, Brostoff, Pope, S. Rodriguez, Cabrera, Anderson, Emerson, Doyle, Hesselbein, Drake, Vining, Vruwink, Bowen, Stubbs, Ohnstad, Spreitzer, B. Meyers, Ortiz-Velez, Riemer, Milroy, Moore Omokunde, L. Myers and Haywood; +cosponsored by Senators Agard, Pfaff, Smith, Roys, Larson, Carpenter, Erpenbach, Wirch, L. Taylor, Johnson, Ringhand and Bewley",2021-06-25T05:00:00+00:00,['introduction'],WI,2021 +Introduced by Senator Smith,2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Spiros, Brooks, Sortwell, Thiesfeldt and Tittl; +cosponsored by Senators Petrowski, Cowles, Feyen and Jagler",2022-02-15T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Representative Sortwell,2022-02-25T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Kurtz, Brooks, Dittrich, Gundrum, Horlacher, Magnafici, Rozar, Skowronski, Tauchen, Tusler and Wichgers; +cosponsored by Senators Felzkowski, Ballweg, Agard, Carpenter, Darling and Kooyenga",2021-12-09T06:00:00+00:00,['introduction'],WI,2021 +Introduced by Senator Smith,2022-03-09T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Gundrum, Thiesfeldt, Wittke, Murphy, Penterman, Moses, Steffen, Vorpagel, Brandtjen, Rozar, Knodl and Macco; +cosponsored by Senators Darling, Roth, Wanggaard and Nass",2022-02-08T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Marklein, Bernier, Cowles, Feyen, Pfaff, Ringhand, Testin, Wanggaard and Wimberger; +cosponsored by Representatives Tranel, Armstrong, Brandtjen, Cabrera, Dittrich, Gundrum, Kurtz, Murphy, Moses, Novak, Oldenburg, Petryk, Pronschinske, Rozar, Sortwell, Skowronski, Summerfield, Tauchen, Thiesfeldt, Tusler, VanderMeer, Vruwink, Kerkman, Loudenbeck, Born and Tittl",2021-02-05T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators LeMahieu, Agard, Ballweg, Bewley, Carpenter, Cowles, Darling, Felzkowski, Feyen, Jacque, Larson, Marklein, Ringhand, Stroebel, L. Taylor, Wanggaard and Wirch; +cosponsored by Representatives Steineke, Pronschinske, Allen, Andraca, Armstrong, August, Billings, Born, Brandtjen, Cabral-Guevara, Callahan, Conley, Considine, Dallman, Dittrich, Doyle, Drake, Duchow, Edming, Emerson, Hesselbein, Hintz, James, Kerkman, Kitchens, Knodl, Kuglitsch, Kurtz, Loudenbeck, Macco, Magnafici, Milroy, Moses, Mursau, Novak, Oldenburg, Penterman, Petersen, Petryk, Plumer, Pope, J. Rodriguez, Rozar, Shankland, Shelton, Snodgrass, Snyder, Spiros, Spreitzer, Steffen, Stubbs, Subeck, Thiesfeldt, Tranel, Tusler, Vorpagel, Vruwink, Wittke, Zimmerman and Schraa",2021-10-21T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Senators Petrowski, Carpenter, Cowles, Darling and Marklein; +cosponsored by Representatives Oldenburg, VanderMeer, Doyle, James, Penterman, Rozar and Subeck",2022-02-01T06:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Horlacher, Considine, Emerson, Allen, Andraca, Armstrong, Billings, Brandtjen, Cabral-Guevara, Conley, Dittrich, Drake, Edming, Hebl, Kerkman, Kitchens, B. Meyers, Milroy, Mursau, Neubauer, Ohnstad, Plumer, Pope, Riemer, Rozar, Shankland, Shelton, Skowronski, Snodgrass, Stubbs, Subeck, Thiesfeldt, Vining, Vruwink, Spreitzer and Sinicki; +cosponsored by Senators Jacque, Wanggaard, Bewley, Agard, Ringhand and Smith",2021-10-29T05:00:00+00:00,['introduction'],WI,2021 +"Introduced by Representatives Cabral-Guevara, Brandtjen, Allen, Bowen, Cabrera, Kerkman, Moses, Murphy, J. Rodriguez, Shankland, Skowronski, Snyder, Sortwell, Subeck, Tittl, Vorpagel, Wichgers, Rozar, Brooks, Stubbs and Spreitzer; +cosponsored by Senators Jacque, L. Taylor, Carpenter, Ballweg, Larson, Nass and Roys",2021-03-05T06:00:00+00:00,['introduction'],WI,2021 +Read first time and referred to Committee on Education,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-07-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-07-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-10-21T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-06-01T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2022-01-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2022-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-03-10T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-03-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Regulatory Licensing Reform,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions,2021-10-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-28T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Senate Organization,2021-07-21T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Workforce Development,2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-03-09T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Local Government,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-06-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Joint Committee on Finance,2021-04-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-01-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-09-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-02-16T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-10-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2022-02-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-10-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-02-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-12-07T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Workforce Development,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-02-16T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-09-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-02-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Joint Committee on Finance,2021-06-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Substance Abuse and Prevention,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-05-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-24T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-02-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-10-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-07-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-04-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-04-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Children and Families,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Labor and Regulatory Reform,2021-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2022-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Regulatory Licensing Reform,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-11-11T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-06-03T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Small Business Development,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-05-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2022-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Workforce Development,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-11-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-02-23T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Senate Organization,2021-10-18T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Ways and Means,2021-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-06-14T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-07-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Constitution and Ethics,2021-09-10T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on State Affairs,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Jobs and the Economy,2021-04-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-11-11T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Privileged and read,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Education,2022-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-12-07T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Joint Committee on Finance,2021-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-02-11T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Substance Abuse and Prevention,2022-01-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-07-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-06-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-11-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-11-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-02-10T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Education,2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-06-03T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-02-09T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-10-14T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-07-26T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Joint Committee on Finance,2021-06-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-07-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Small Business Development,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Small Business Development,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Mental Health,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-05-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Consumer Protection,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-08T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Education,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-10-18T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-04T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Education,2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Mental Health,2021-05-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2021-12-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-07-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-06-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-25T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Joint Committee on Finance,2021-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-11-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-02-18T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Senate Organization,2021-06-04T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Workforce Development,2021-04-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-04-20T05:00:00+00:00,[],WI,2021 +Read and referred to Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Privileged and read,2021-01-04T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-01-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-10-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2021-07-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-03T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-04-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-05-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Regulatory Licensing Reform,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-28T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2021-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-07-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Regulatory Licensing Reform,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-05-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-10-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-07-21T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-05-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-05-04T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Financial Institutions,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-31T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-01-26T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Rules,2022-03-10T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-03-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Aging and Long-Term Care,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Environment,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Jobs and the Economy,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-10-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2021-12-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Consumer Protection,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-11-12T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Senate Organization,2021-09-15T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-03-10T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Rules,2021-11-12T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Rules,2021-05-07T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions,2021-09-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-10-19T05:00:00+00:00,[],WI,2021 +Read and referred to Committee on Rules,2021-04-20T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-03-10T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-06-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions,2021-07-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-08-31T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2021-06-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-06-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rural Development,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Small Business Development,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-06T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-05-13T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Education,2022-02-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-06-08T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-10-06T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on State Affairs,2021-09-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Public Benefit Reform,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-03-10T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Jobs and the Economy,2021-04-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Regulatory Licensing Reform,2021-05-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-25T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-05-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-11-30T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Senate Organization,2021-07-07T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Education,2021-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-07-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Corrections,2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-07-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-21T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2022-01-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Children and Families,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-01-18T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-12-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-02-10T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-05-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-01-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Jobs and the Economy,2021-06-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-08T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Corrections,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-03-31T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Rural Development,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-07-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Substance Abuse and Prevention,2022-01-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-10-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-09-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-11-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Workforce Development,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-04-21T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-24T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Consumer Protection,2021-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2021-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-07-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-14T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2021-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-01-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Joint Committee on Finance,2021-04-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-05-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-04-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Special Committee on Trade and Supply Chain,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-05-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-02-01T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-05-03T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Agriculture,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-08-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-05-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-05-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-03-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-01-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2021-10-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rural Development,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-05-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-05T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Agriculture,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-14T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Joint Committee on Finance,2021-04-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-05-04T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-01-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Public Benefit Reform,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Assembly Organization,2021-01-07T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-10-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-05-14T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Ways and Means,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-02-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-10-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-03-03T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Ways and Means,2021-01-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-03-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Government Accountability and Oversight,2021-08-31T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2021-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Joint Committee on Finance,2021-04-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Children and Families,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-01-26T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-08-11T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Joint Committee on Finance,2021-04-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-02-18T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Education,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Privileged and read,2021-01-26T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on State Affairs,2021-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-07-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-02-11T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Senate Organization,2021-02-15T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-06-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-06-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-05-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-05-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-09-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-09-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-09-20T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-05-27T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2021-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Tourism,2021-09-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-31T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-31T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-03-31T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2022-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-05-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-05-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-06-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-06-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-06-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-10-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-10-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-10T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-10-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-10-06T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Consumer Protection,2022-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Jobs and the Economy,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Regulatory Licensing Reform,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-06-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-10-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-10-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-12-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-12-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Workforce Development,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-02-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Corrections,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-06-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-02-18T06:00:00+00:00,[],WI,2021 +Read first time and referred to Joint Committee on Finance,2021-06-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-03-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on State Affairs,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Workforce Development,2022-01-31T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-06-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-11-04T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Privileged and read,2021-01-04T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Senate Organization,2021-10-08T05:00:00+00:00,[],WI,2021 +Read and referred to Committee on Rules,2021-08-04T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2021-11-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-04-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to calendar,2021-01-07T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on State Affairs,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-04-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Tourism,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2021-06-09T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-05-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Children and Families,2021-08-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-10-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-01-25T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-06-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2022-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-02-07T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Environment,2022-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-07-01T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Education,2021-07-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-07-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Corrections,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Jobs and the Economy,2021-04-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-04-20T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-04-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-10-19T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Substance Abuse and Prevention,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Corrections,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-04-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-02-09T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Aging and Long-Term Care,2021-04-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-12-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-04-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-14T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2022-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Public Benefit Reform,2022-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-05-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-02-11T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-02-01T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-01-21T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-21T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Local Government,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-09-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2022-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-09-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-10T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-06-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-01-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Joint Committee on Finance,2021-04-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-10-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2021-05-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-09-02T05:00:00+00:00,[],WI,2021 +Read and referred to Committee on Rules,2021-07-12T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-06-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-07-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-08T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-11T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2021-07-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-01-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-09-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-13T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2021-03-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-04-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Substance Abuse and Prevention,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-05-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Senate Organization,2021-06-14T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-06-18T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Regulatory Licensing Reform,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-08-26T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2022-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Children and Families,2021-08-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-10-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-08-19T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-07-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-04-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-02-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Privileged and read,2021-01-04T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Mental Health,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-07-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Jobs and the Economy,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Workforce Development,2021-05-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Consumer Protection,2021-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-12-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Privileged and read,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-04-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-07-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-12-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-06T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Corrections,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-28T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Substance Abuse and Prevention,2021-05-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-04-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-01-24T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Rules,2021-11-12T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Rules,2021-03-31T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-01-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-05-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-01-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-04-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-10-18T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-09-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-01-18T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Senate Organization,2022-02-11T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Public Benefit Reform,2022-01-31T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Assembly Organization,2021-07-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-31T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rural Development,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rural Development,2021-04-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-10-29T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Children and Families,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-07-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-09-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-05-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-04-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Children and Families,2021-09-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-05-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Small Business Development,2022-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Special Committee on Trade and Supply Chain,2022-01-31T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-03-10T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-02-24T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-05-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-07-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Regulatory Licensing Reform,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-03-03T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation,2022-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Public Benefit Reform,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Regulatory Licensing Reform,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-02-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-02-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-05-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-04-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Substance Abuse and Prevention,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Workforce Development,2022-01-31T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-09-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2022-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2022-01-20T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Science, Technology and Broadband",2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Considered as privileged and taken up,2021-01-12T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-02-24T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-06-07T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Considered as privileged and taken up,2021-01-04T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Education,2022-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-04-06T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-21T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-04-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2021-08-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-10-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-07-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Privileged and read,2022-02-23T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Rural Development,2021-04-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-11-16T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-07-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-04-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-07-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-14T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-05-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-03-07T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Corrections,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-02-23T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Workforce Development,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-10-18T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Joint Committee on Finance,2021-06-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-07-07T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-04-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Public Benefit Reform,2022-01-31T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-12-02T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-07-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-05-14T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2022-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Aging and Long-Term Care,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Tourism,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-06-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-04-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-03-10T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Regulatory Licensing Reform,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-04-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-02-16T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Assembly Organization,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Children and Families,2021-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-11-05T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-07-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-03-07T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Family Law,2021-11-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-11-04T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Children and Families,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2021-08-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2022-02-22T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-12-17T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Rules,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-06-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Jobs and the Economy,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-10-21T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-04-20T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-01-21T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-04-08T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-14T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Mental Health,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Mental Health,2021-09-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-02-09T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Jobs and the Economy,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-03-10T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Ways and Means,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-05-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-07-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-09-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-09-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Children and Families,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-05T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-01-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions,2021-09-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-05-07T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Corrections,2021-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2021-09-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-10-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-08-04T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-09-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Joint Committee on Finance,2021-04-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2022-02-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-06-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-01-21T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-07-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-02-17T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-09-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-07-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-28T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2021-01-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2022-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Joint Committee on Finance,2021-04-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-06-25T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2021-09-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-07-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-04-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Regulatory Licensing Reform,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2021-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2022-01-31T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-08-24T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2021-09-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Corrections,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rural Development,2021-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-04-13T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on State Affairs,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Tourism,2021-06-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-04-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-10T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-28T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-05-13T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Education,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2021-08-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-03-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-05-14T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-08-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-05-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-01-21T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-04-20T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Education,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-09-24T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on State Affairs,2021-10-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-05-05T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-01-21T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2022-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to calendar,2021-06-03T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-10-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-07-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Considered as privileged and taken up,2021-06-23T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Workforce Development,2022-01-31T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-28T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-03-09T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-10T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-07-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-03-07T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Privileged and read,2021-01-12T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Children and Families,2021-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-11-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-02-05T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Children and Families,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-25T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Senate Organization,2022-01-18T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-04-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-05-03T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on State Affairs,2021-05-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-04-08T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-07-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-09-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-05-06T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-07-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-10-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Consumer Protection,2021-05-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Children and Families,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Consumer Protection,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-10-21T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Consumer Protection,2021-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-05-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-01-18T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Senate Organization,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Mental Health,2022-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-04-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-02-16T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-06T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Public Benefit Reform,2022-01-31T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-09-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-10-19T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Energy and Utilities,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-14T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Education,2021-07-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Joint Committee on Finance,2021-06-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-08-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-08-26T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2021-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-16T05:00:00+00:00,[],WI,2021 +Read and referred to Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-11-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-07-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-05-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-10-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-02-15T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-02-05T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-05-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-31T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-28T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-12-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-13T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions,2021-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Joint Committee on Finance,2021-04-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-10-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Regulatory Licensing Reform,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-07-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-02-05T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-05-03T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Substance Abuse and Prevention,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-04-20T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-04-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Aging and Long-Term Care,2021-12-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-06-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-24T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Environment,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2021-06-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Mental Health,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-01-29T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2021-09-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to calendar of 4-13-2021,2021-04-09T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Education,2021-06-17T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-06-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-01-21T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Corrections,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-01-27T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Energy and Utilities,2021-09-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-03-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-03-31T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-10-19T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Education,2021-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2021-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-01-06T06:00:00+00:00,[],WI,2021 +Read first time and referred to Joint Committee on Finance,2021-04-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-05-07T05:00:00+00:00,[],WI,2021 +Read and referred to Committee on Senate Organization,2021-03-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-03-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Jobs and the Economy,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Regulatory Licensing Reform,2021-05-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Jobs and the Economy,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-05-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Considered as privileged and taken up,2021-01-04T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Senate Organization,2022-02-09T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-07-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-10-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-09-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-07-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-03-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-10-06T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Education,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-04-08T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-10-18T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-04-08T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Small Business Development,2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-02-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Regulatory Licensing Reform,2021-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-10-14T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-07-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2021-10-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rural Development,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-02-09T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-07-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-09-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-04-06T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Education,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-10-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-12-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Joint Committee on Finance,2021-06-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-04-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-01-29T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-10-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-07-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-09-30T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2021-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Mental Health,2021-10-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-04-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-10-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-02-15T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Workforce Development,2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-03-10T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-09-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-10-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-03-16T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-26T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2021-04-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-09-15T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2021-04-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-10T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-02-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-10-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-02-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-01-26T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs and Constitution and Federalism,2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-01-06T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-06-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-07-01T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-05-13T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-08T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-06-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Substance Abuse and Prevention,2021-12-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Consumer Protection,2021-12-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Children and Families,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-01-21T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Rules,2021-06-14T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on State Affairs,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-10T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Ways and Means,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-12-17T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Workforce Development,2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-04T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-01-04T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-04T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-11-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Corrections,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-09-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-11-01T05:00:00+00:00,[],WI,2021 +Read and referred to Committee on Campaigns and Elections,2022-02-15T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-06-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-11-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-07-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Forestry, Parks and Outdoor Recreation",2022-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-09-28T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Workforce Development,2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Constitution and Ethics,2021-02-24T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-08T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-06-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-01-25T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Children and Families,2021-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Tourism,2021-06-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-04-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-09-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Privileged and read,2021-03-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to Joint Committee on Finance,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Constitution and Ethics,2021-01-29T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-10-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-12-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-03-10T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Privileged and read,2021-01-04T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-02-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Corrections,2021-09-02T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-02-02T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-08-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2022-02-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Regulatory Reform,2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Government Accountability and Oversight,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rural Development,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Environment,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Veterans and Military Affairs,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Regulatory Licensing Reform,2021-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-08-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-06-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Considered as privileged and taken up,2021-01-04T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on State Affairs,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-09-24T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Agriculture,2021-02-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-02-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Housing and Real Estate,2021-06-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Economic and Workforce Development,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-01T06:00:00+00:00,[],WI,2021 +Read and referred to Committee on Rules,2021-01-29T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on State Affairs,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-03-01T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-07-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-02-15T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-05-18T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-04-08T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Utilities, Technology and Telecommunications",2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-11-30T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-11-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-07-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-11-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-12-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-01-13T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2022-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Corrections,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Mental Health,2021-03-23T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Workforce Development,2021-03-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Financial Institutions and Revenue,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-08-04T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-09-22T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Labor and Integrated Employment,2021-07-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2021-05-25T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-05-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2021-11-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-10-19T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-11-11T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Workforce Development,2021-06-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2021-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-02-23T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-02-12T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Education,2022-02-17T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Corrections,2022-01-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2021-09-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-04-21T05:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-01-28T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-04-20T05:00:00+00:00,[],WI,2021 +Read first time and referred to Joint Committee on Finance,2021-04-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Insurance,2022-03-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-02-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-04-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-02-24T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-31T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Health,2021-04-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture and Tourism,2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2022-01-18T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Judiciary,2022-01-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Sporting Heritage, Small Business and Rural Issues",2021-10-14T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2022-02-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Rules,2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Corrections,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Senate Organization,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-07-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-03-24T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Campaigns and Elections,2021-07-01T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-03-25T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-11-19T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Human Services, Children and Families",2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Local Government,2021-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-02-18T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Transportation,2021-03-16T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2021-03-05T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Sporting Heritage,2021-10-29T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary,2021-05-27T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-06T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Ways and Means,2021-05-03T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Universities and Technical Colleges,2021-08-19T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-04-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2022-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Elections, Election Process Reform and Ethics",2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on State Affairs,2021-07-12T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Colleges and Universities,2021-12-07T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-06-24T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on State Affairs,2021-06-11T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Agriculture,2022-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-07-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +"Read first time and referred to Committee on Insurance, Licensing and Forestry",2021-06-10T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Housing, Commerce and Trade",2021-08-26T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Senate Organization,2021-10-18T05:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Transportation and Local Government,2021-10-20T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +"Read first time and referred to Committee on Government Operations, Legal Review and Consumer Protection",2021-07-07T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Health,2022-02-02T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Family Law,2021-10-21T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read first time and referred to Committee on Criminal Justice and Public Safety,2022-01-21T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Read and referred to Committee on Rules,2021-11-12T06:00:00+00:00,[],WI,2021 +Read first time and referred to Committee on Natural Resources and Energy,2022-03-09T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Marklein added as a coauthor,2021-12-01T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Senator Felzkowski withdrawn as a coauthor,2021-02-02T06:00:00+00:00,['withdrawal'],WI,2021 +Fiscal estimate received,2021-07-28T05:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a cosponsor,2021-10-06T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-18T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Edming added as a cosponsor,2021-02-19T06:00:00+00:00,[],WI,2021 +Representative Brostoff added as a coauthor,2021-04-14T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Adopted,2021-01-04T06:00:00+00:00,['passage'],WI,2021 +Read,2021-01-04T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-26T05:00:00+00:00,['receipt'],WI,2021 +Representative Behnke added as a coauthor,2021-05-24T05:00:00+00:00,[],WI,2021 +Representative Brooks added as a coauthor,2022-02-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-28T05:00:00+00:00,['receipt'],WI,2021 +Representative L. Myers added as a coauthor,2022-01-05T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-03-02T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2021-10-19T05:00:00+00:00,[],WI,2021 +Representative Tusler added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-19T05:00:00+00:00,[],WI,2021 +Representative Stubbs added as a coauthor,2021-12-13T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-19T05:00:00+00:00,['receipt'],WI,2021 +Representative Shankland added as a coauthor,2021-05-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-18T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-12-07T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-02T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-02T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-14T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Novak,2021-12-14T06:00:00+00:00,[],WI,2021 +Representatives Schraa and Callahan added as coauthors,2021-07-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Housing report received pursuant to s. 13.099 (2) Wisconsin Statutes,2021-09-07T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-31T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a coauthor,2021-01-22T06:00:00+00:00,[],WI,2021 +Representative Stubbs added as a coauthor,2021-12-13T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-08T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Ramthun added as a coauthor,2021-04-20T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Ohnstad added as a coauthor,2021-05-07T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Representative Bowen added as a coauthor,2021-03-24T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-11-01T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Loudenbeck,2021-05-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-17T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-17T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-13T05:00:00+00:00,['receipt'],WI,2021 +Representative Hesselbein added as a coauthor,2021-04-29T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 by Committee on Rules,2021-02-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-01T05:00:00+00:00,[],WI,2021 +Representative Considine added as a coauthor,2021-05-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-17T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-14T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-03T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-07-07T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-20T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Available for scheduling,2021-10-18T05:00:00+00:00,[],WI,2021 +Representatives James and Duchow added as coauthors,2021-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-10T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-20T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Representative Stubbs added as a cosponsor,2021-12-13T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Available for scheduling,2021-05-05T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-05T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Edming added as a coauthor,2021-02-23T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-02T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-13T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Joint Committee for Review of Administrative Rules report received pursuant to s.227.26(2)(g), Wisconsin Statutes",2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-02-11T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Bernier,2021-04-09T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Substitute Amendment 1 offered by Representatives Steineke and Stubbs,2021-05-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-10T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Tusler,2021-03-31T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-18T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Representatives Cabrera and Hesselbein added as coauthors,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-30T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-26T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-11T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Duchow,2022-02-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-10-15T05:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2022-02-21T06:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-01T06:00:00+00:00,['receipt'],WI,2021 +Representative Stubbs added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-13T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-02T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-08T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Thiesfeldt added as a cosponsor,2021-10-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-01T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-10-15T05:00:00+00:00,['receipt'],WI,2021 +Representative Stubbs added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-08T06:00:00+00:00,['receipt'],WI,2021 +Representative Skowronski added as a cosponsor,2021-03-25T05:00:00+00:00,[],WI,2021 +Representative Brooks added as a coauthor,2022-02-01T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-11-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-15T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-15T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Cabrera added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a coauthor,2021-04-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Knodl added as a coauthor,2021-06-24T05:00:00+00:00,[],WI,2021 +Representative Allen added as a coauthor,2021-05-10T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-01T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-17T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-29T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-10-08T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-23T05:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a coauthor,2021-04-12T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-02T05:00:00+00:00,['receipt'],WI,2021 +"Representatives Born, Krug and Wichgers added as coauthors",2021-10-05T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-25T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-01-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-01T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-08T05:00:00+00:00,[],WI,2021 +Senator Smith added as a coauthor,2022-01-13T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2022-02-28T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-22T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Subeck added as a cosponsor,2022-02-25T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-01T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-02-24T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-18T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-23T05:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a coauthor,2022-03-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-29T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-12-17T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-15T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-04-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Representative Dittrich added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Representative Pope added as a cosponsor,2021-11-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Drake added as a cosponsor,2022-02-25T06:00:00+00:00,[],WI,2021 +Representative Sinicki withdrawn as a coauthor,2021-10-11T05:00:00+00:00,['withdrawal'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Representative James withdrawn as a cosponsor,2022-02-17T06:00:00+00:00,['withdrawal'],WI,2021 +Fiscal estimate received,2021-05-07T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-01T06:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a coauthor,2021-11-16T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Representative Spiros added as a coauthor,2021-09-16T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-10T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Cabral-Guevara,2021-03-29T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-16T05:00:00+00:00,['receipt'],WI,2021 +Representative Ohnstad added as a coauthor,2021-10-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Cabrera added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-03T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-05T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative McGuire added as a coauthor,2021-02-26T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-05-14T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-28T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-24T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Dittrich added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +Representatives L. Myers and Ramthun added as coauthors,2021-09-16T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-05T05:00:00+00:00,['receipt'],WI,2021 +Representative Shankland added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Steffen added as a coauthor,2021-02-25T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Duchow,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-16T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-19T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-12-15T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-10T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-11-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-02-24T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-01-21T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Representative Novak added as a cosponsor,2022-01-10T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-16T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Available for scheduling,2021-06-10T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-19T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Tauchen,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-21T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-03T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Representative Armstrong added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-17T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-22T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Penterman added as a cosponsor,2021-08-26T05:00:00+00:00,[],WI,2021 +LRB correction,2021-04-06T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Emerson added as a cosponsor,2021-09-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-30T05:00:00+00:00,['receipt'],WI,2021 +Representative Schraa added as a cosponsor,2021-06-17T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-23T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-09-29T05:00:00+00:00,[],WI,2021 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2021-02-09T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-09-07T05:00:00+00:00,[],WI,2021 +Representative Knodl added as a coauthor,2021-06-24T05:00:00+00:00,[],WI,2021 +Representative Knodl added as a coauthor,2021-04-02T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Kooyenga added as a coauthor,2021-10-14T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-02-19T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Ramthun added as a coauthor,2021-02-26T06:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-01-05T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-03T06:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-14T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-01-21T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-17-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Representative Novak added as a coauthor,2022-01-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-03T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-12T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Andraca added as a coauthor,2021-07-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-27T06:00:00+00:00,['receipt'],WI,2021 +Representative James added as a cosponsor,2021-09-20T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-05T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Tittl,2021-04-16T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-09-03T05:00:00+00:00,[],WI,2021 +Representative Petryk added as a cosponsor,2021-02-15T06:00:00+00:00,[],WI,2021 +Representative Murphy added as a coauthor,2022-01-05T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-10-01T05:00:00+00:00,[],WI,2021 +Senator Felzkowski added as a coauthor,2021-03-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-11T06:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2021-12-21T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-05T05:00:00+00:00,['receipt'],WI,2021 +Representative James added as a coauthor,2021-09-20T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-09T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-09T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-11T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-26T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2021-02-15T06:00:00+00:00,[],WI,2021 +Adopted,2021-03-16T05:00:00+00:00,['passage'],WI,2021 +Placed on calendar 3-17-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-25T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-02-15T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-03T05:00:00+00:00,['receipt'],WI,2021 +"Adopted, Ayes 28, Noes 3",2021-01-04T06:00:00+00:00,['passage'],WI,2021 +Available for scheduling,2021-03-16T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-01-29T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-12T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-02-17T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-06-15T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-03T06:00:00+00:00,['receipt'],WI,2021 +Representative Billings added as a cosponsor,2021-10-28T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +"Joint Committee for Review of Administrative Rules report received pursuant to s.227.26(2)(g), Wisconsin Statutes",2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Representative Penterman added as a coauthor,2021-08-25T05:00:00+00:00,[],WI,2021 +Senator Bernier added as a coauthor,2021-03-16T05:00:00+00:00,[],WI,2021 +Senator Smith added as a coauthor,2021-02-09T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-09T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-13T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-05T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-22T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Joint Committee for Review of Administrative Rules report received pursuant to s.227.26(2)(g), Wisconsin Statutes",2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2021-03-24T05:00:00+00:00,[],WI,2021 +Representative Emerson added as a cosponsor,2021-09-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-06-24T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-03-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-11-03T05:00:00+00:00,[],WI,2021 +"Joint Committee for Review of Administrative Rules report received pursuant to s.227.26(2)(g), Wisconsin Statutes",2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-10T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2021-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-04T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-06T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-07-12T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-28-2021 by Committee on Rules,2021-01-26T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-01T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-03-16T05:00:00+00:00,[],WI,2021 +Representative Drake added as a cosponsor,2021-05-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-11T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-09T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-01T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-05T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-18T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a cosponsor,2021-05-27T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-01-27T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-01T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-23T05:00:00+00:00,['receipt'],WI,2021 +Representative Thiesfeldt added as a cosponsor,2021-09-16T05:00:00+00:00,[],WI,2021 +Representative Billings added as a coauthor,2021-10-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Bowen added as a coauthor,2021-09-08T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-05-21T05:00:00+00:00,['receipt'],WI,2021 +Representatives L. Myers and Ramthun added as cosponsors,2021-09-16T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-02T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-03-02T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Knodl added as a coauthor,2021-11-03T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-09T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-25T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-10T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Callahan,2021-04-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-04T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-18T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +"Representatives Allen, Wichgers and Schraa added as coauthors",2021-09-16T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-09-21T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-22T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-11T05:00:00+00:00,['receipt'],WI,2021 +Representatives Mursau and Shelton added as coauthors,2021-09-20T05:00:00+00:00,[],WI,2021 +Representative Shelton added as a cosponsor,2021-06-10T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-07T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Knodl added as a coauthor,2021-06-24T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-11T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Feyen,2021-04-22T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-02T06:00:00+00:00,[],WI,2021 +"Report without recommendation pursuant to s. 227.26(2)(h), Wisconsin Statutes, by Committee on Workforce Development",2021-06-25T05:00:00+00:00,[],WI,2021 +Representative Knodl added as a coauthor,2021-06-24T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-13T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-28T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Andraca withdrawn as a cosponsor,2022-01-10T06:00:00+00:00,['withdrawal'],WI,2021 +Representative Swearingen added as a cosponsor,2021-03-29T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-24T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-28T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-19T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-19T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-05-26T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-09-29T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-09-27T05:00:00+00:00,[],WI,2021 +Representative Kitchens added as a coauthor,2021-06-10T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-08T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-03-03T06:00:00+00:00,[],WI,2021 +Representative Sinicki added as a coauthor,2021-06-02T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-10-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Representatives Plumer and Edming added as coauthors,2021-02-22T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-10T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-04T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-04T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Spiros,2021-08-24T05:00:00+00:00,[],WI,2021 +Senator Wimberger added as a cosponsor,2021-03-19T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-10T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-10T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-02T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-09-23T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-24T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-16T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2021-10-08T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-10-01T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Representatives Skowronski, Wittke, Spreitzer and Snodgrass added as cosponsors",2022-02-02T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-18T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-01T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Representative Vruwink added as a cosponsor,2021-02-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-08-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-09T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-10-26T05:00:00+00:00,['receipt'],WI,2021 +Representative Schraa added as a coauthor,2021-10-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Representative Andraca added as a cosponsor,2021-04-01T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-17T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-18T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-03-08T06:00:00+00:00,['receipt'],WI,2021 +Representative Spreitzer added as a coauthor,2021-04-22T05:00:00+00:00,[],WI,2021 +Representative Knodl added as a coauthor,2021-04-02T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-09T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-06T06:00:00+00:00,[],WI,2021 +Representative Born added as a cosponsor,2021-09-30T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-19T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-14T05:00:00+00:00,['receipt'],WI,2021 +Representative Sinicki added as a cosponsor,2021-06-28T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Vos, Steineke and August",2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-20T05:00:00+00:00,['receipt'],WI,2021 +Representative Subeck added as a coauthor,2021-02-01T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-10T06:00:00+00:00,[],WI,2021 +Representative Andraca added as a cosponsor,2021-10-04T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-05T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-02T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-06-02T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-02-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-22T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-17T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-06T06:00:00+00:00,[],WI,2021 +Representative Knodl added as a coauthor,2021-06-24T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-13T05:00:00+00:00,[],WI,2021 +Representative Plumer added as a cosponsor,2022-01-13T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-17T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Murphy added as a coauthor,2022-03-10T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Billings added as a cosponsor,2021-10-28T05:00:00+00:00,[],WI,2021 +Senator Jacque added as a cosponsor,2021-10-21T05:00:00+00:00,[],WI,2021 +Representative Schraa added as a cosponsor,2021-08-18T05:00:00+00:00,[],WI,2021 +Adopted,2021-01-12T06:00:00+00:00,['passage'],WI,2021 +Representative Knodl added as a cosponsor,2021-06-24T05:00:00+00:00,[],WI,2021 +Read,2021-06-23T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-07T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2021-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-01T05:00:00+00:00,['receipt'],WI,2021 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-02-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-04-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-03T06:00:00+00:00,['receipt'],WI,2021 +Representative Subeck added as a cosponsor,2022-02-10T06:00:00+00:00,[],WI,2021 +Representative Moore Omokunde withdrawn as a coauthor,2021-10-19T05:00:00+00:00,['withdrawal'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Murphy added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Representatives Wichgers and Rozar added as cosponsors,2021-04-01T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2021-06-17T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Cabrera added as a cosponsor,2021-08-05T05:00:00+00:00,[],WI,2021 +Representative Allen added as a coauthor,2021-02-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-26T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-01-21T06:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a coauthor,2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-23T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-11T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-07-19T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-05T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-23T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-07-27T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Bowen added as a coauthor,2022-02-09T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Cabral-Guevara,2022-02-04T06:00:00+00:00,[],WI,2021 +Representative Brooks added as a coauthor,2022-02-04T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-24T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-04T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-01T05:00:00+00:00,['receipt'],WI,2021 +Representative Billings added as a coauthor,2021-11-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-07-07T05:00:00+00:00,['receipt'],WI,2021 +Representative Born added as a coauthor,2021-04-26T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Duchow,2022-01-12T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-06-21T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Wichgers,2021-05-25T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-22T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-06-08T05:00:00+00:00,[],WI,2021 +Representative Riemer added as a coauthor,2021-11-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Available for scheduling,2021-04-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a coauthor,2021-02-17T06:00:00+00:00,[],WI,2021 +Representative L. Myers added as a cosponsor,2022-01-05T06:00:00+00:00,[],WI,2021 +"Representatives Behnke, Sinicki and Spreitzer withdrawn as coauthors",2021-10-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-05-27T05:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a coauthor,2021-11-16T06:00:00+00:00,[],WI,2021 +Representative Zimmerman added as a cosponsor,2021-10-14T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Summerfield,2021-10-11T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-08T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-31T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to Joint Review Committee on Criminal Penalties,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Representative Skowronski added as a coauthor,2021-03-12T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-03T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Carpenter added as a cosponsor,2021-09-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-19T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Representative Mursau withdrawn as a cosponsor,2021-11-16T06:00:00+00:00,['withdrawal'],WI,2021 +Public hearing held,2022-01-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Representative Stubbs added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Representative Dittrich added as a coauthor,2021-06-17T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senators Stroebel and Cowles,2022-01-07T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-06T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-02T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-18T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-24T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative James,2022-02-07T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-28T05:00:00+00:00,['receipt'],WI,2021 +"Representatives Skowronski, Wittke and Spreitzer added as coauthors",2022-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-14T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-04T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-04T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-22T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-23T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Wanggaard,2021-09-14T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2022-01-19T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-06T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-12-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-02T05:00:00+00:00,['receipt'],WI,2021 +Representative Penterman added as a cosponsor,2021-08-26T05:00:00+00:00,[],WI,2021 +Representative Thiesfeldt added as a coauthor,2021-04-01T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a coauthor,2022-01-31T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Representative Rozar added as a cosponsor,2022-02-02T06:00:00+00:00,[],WI,2021 +Representative Tusler added as a cosponsor,2021-07-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-03-01T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-09-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-12T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-05-26T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-15T06:00:00+00:00,[],WI,2021 +Representative Behnke added as a cosponsor,2021-05-24T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-02-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-31T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-12-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-22T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-28T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-14T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-20T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-06T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jagler,2022-02-16T06:00:00+00:00,[],WI,2021 +Representative Tusler added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-30T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Cowles,2021-05-21T05:00:00+00:00,[],WI,2021 +Representative Armstrong added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-02-23T06:00:00+00:00,['receipt'],WI,2021 +Representative Born added as a coauthor,2021-10-05T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Ballweg added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2021-02-02T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-26T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-16T06:00:00+00:00,['receipt'],WI,2021 +Representative Brooks added as a cosponsor,2022-02-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-10T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-17T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-06-23T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Kitchens,2021-12-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-25T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Representative Macco added as a cosponsor,2021-02-01T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-08T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-31T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-05T06:00:00+00:00,[],WI,2021 +Representatives Plumer and Kurtz added as coauthors,2021-05-11T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-29T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-11-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-11T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-03T05:00:00+00:00,['receipt'],WI,2021 +Representative Allen added as a coauthor,2021-02-12T06:00:00+00:00,[],WI,2021 +Representative Billings added as a cosponsor,2021-10-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-03-31T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-09-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-08T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Drake added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Edming,2021-03-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-22T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a cosponsor,2022-01-14T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a cosponsor,2021-01-26T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-08T06:00:00+00:00,['receipt'],WI,2021 +Representative Allen added as a coauthor,2021-02-12T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Representative Behnke added as a coauthor,2021-05-24T05:00:00+00:00,[],WI,2021 +Representative L. Myers added as a coauthor,2021-04-20T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-29T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-17T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Wichgers,2021-08-06T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a coauthor,2021-11-12T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-24T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-03-16T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Representatives Pronschinske, Dittrich and Dallman added as cosponsors",2021-04-06T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2022-01-05T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-17T06:00:00+00:00,['receipt'],WI,2021 +Representatives Haywood and Baldeh added as cosponsors,2022-03-15T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-04T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +LRB correction,2022-01-10T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Representative Doyle added as a coauthor,2021-04-15T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Felzkowski,2021-07-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-08T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2021-06-29T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Senator Wirch added as a coauthor,2021-02-26T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-11T06:00:00+00:00,['receipt'],WI,2021 +"Joint Committee for Review of Administrative Rules report received pursuant to s.227.26(2)(g), Wisconsin Statutes",2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Senator Jacque added as a cosponsor,2021-06-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-28T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-16T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-02T05:00:00+00:00,['receipt'],WI,2021 +Representative Hong added as a cosponsor,2021-05-10T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-15T05:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a coauthor,2022-01-20T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-29T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-26T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Representative Emerson added as a coauthor,2021-09-13T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-02-02T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-05T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-17T06:00:00+00:00,['receipt'],WI,2021 +Representative Skowronski added as a cosponsor,2021-03-05T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Steffen added as a cosponsor,2022-01-05T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Subeck added as a coauthor,2022-03-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-03T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-19T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-06-02T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-08-11T05:00:00+00:00,[],WI,2021 +"Representatives Petryk, Subeck and Spiros added as cosponsors",2021-11-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2021-09-29T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-23T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Available for scheduling,2021-06-14T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-13T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-05T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-21T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-09-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-18T05:00:00+00:00,['receipt'],WI,2021 +Representative Stubbs added as a coauthor,2021-12-13T06:00:00+00:00,[],WI,2021 +Representative Billings added as a coauthor,2021-10-28T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-04T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-26T06:00:00+00:00,[],WI,2021 +Representative Bowen added as a cosponsor,2021-09-08T05:00:00+00:00,[],WI,2021 +Representative Billings added as a coauthor,2021-11-03T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-10-01T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Cabrera added as a cosponsor,2021-08-05T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2022-01-14T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-14T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Doyle added as a coauthor,2021-04-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-22T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-04T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-21T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +"Report without recommendation pursuant to s. 227.26 (2)(h), Wisconsin Statutes",2021-06-28T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-01T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a cosponsor,2021-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-01T05:00:00+00:00,['receipt'],WI,2021 +Representative Moore Omokunde added as a cosponsor,2021-11-15T06:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2021-12-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Representative Brooks added as a cosponsor,2022-02-02T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Summerfield added as a coauthor,2021-07-16T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-02-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-06-14T05:00:00+00:00,['receipt'],WI,2021 +Representative Sinicki added as a cosponsor,2021-05-10T05:00:00+00:00,[],WI,2021 +Housing report received pursuant to s. 13.099 (2) Wisconsin Statutes,2021-09-07T05:00:00+00:00,['receipt'],WI,2021 +Representative Stubbs added as a cosponsor,2021-04-23T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-21T06:00:00+00:00,['receipt'],WI,2021 +Representative Billings added as a coauthor,2021-10-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-24T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-09T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-07-06T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Available for scheduling,2022-01-06T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-31T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Representative Behnke added as a coauthor,2021-05-24T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-23T06:00:00+00:00,['receipt'],WI,2021 +"Representatives Spreitzer, Subeck and Hintz added as coauthors",2022-01-13T06:00:00+00:00,[],WI,2021 +Read first time and referred to Joint Review Committee on Criminal Penalties,2021-03-31T05:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Fiscal estimate received,2021-11-29T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-25T06:00:00+00:00,['receipt'],WI,2021 +"Representatives Baldeh, Kurtz and Wittke added as coauthors",2021-06-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-28T06:00:00+00:00,['receipt'],WI,2021 +Representative Billings added as a coauthor,2021-11-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-03T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-11-03T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Plumer and Dittrich added as cosponsors,2021-07-29T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Rozar,2021-12-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-06T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a coauthor,2021-05-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Murphy added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Senator Wimberger added as a coauthor,2021-11-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-12-14T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-15T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-28T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-31T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-03-31T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-02-11T06:00:00+00:00,[],WI,2021 +Representative James added as a coauthor,2021-11-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-11T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-21T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-14T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Vining added as a coauthor,2021-06-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Representative Ramthun added as a coauthor,2021-02-26T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +Representative Stubbs added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-04T05:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a coauthor,2021-11-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-12-16T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-12T05:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representatives Considine and Pope,2022-03-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Considine withdrawn as a cosponsor,2021-05-13T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Knodl added as a coauthor,2021-11-03T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Born added as a cosponsor,2021-04-22T05:00:00+00:00,[],WI,2021 +Representatives Haywood and Baldeh added as coauthors,2022-03-15T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-03-01T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-02-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-28T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-09T05:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 9:42 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-18T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-03-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-24T05:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Tusler added as a coauthor,2021-03-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-26T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Representative Allen added as a cosponsor,2021-02-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-15T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-15T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a cosponsor,2021-10-26T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-03-11T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-18T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-27T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2022-02-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-17T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Representative Knodl added as a cosponsor,2021-06-24T05:00:00+00:00,[],WI,2021 +Made a special order of business at 9:24 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a cosponsor,2021-03-18T05:00:00+00:00,[],WI,2021 +Senator L. Taylor added as a coauthor,2022-02-25T06:00:00+00:00,[],WI,2021 +"Representatives Spreitzer, Kitchens and Plumer added as coauthors",2022-02-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-08T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-06-16T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Billings added as a cosponsor,2022-02-02T06:00:00+00:00,[],WI,2021 +Senator Ballweg added as a coauthor,2022-01-28T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-11-05T05:00:00+00:00,[],WI,2021 +Made a special order of business at 9:30 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-03T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Ohnstad added as a cosponsor,2021-05-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-10T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Wichgers added as a coauthor,2022-02-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-12-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-18T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Murphy added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Senator Marklein added as a cosponsor,2022-02-02T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-26T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-10-01T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2022-02-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-11-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Representatives Ohnstad and Moore Omokunde added as cosponsors,2021-06-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-07-01T05:00:00+00:00,['receipt'],WI,2021 +Representative Skowronski added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-13T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-14T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Emerson added as a cosponsor,2021-09-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-08T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-18T05:00:00+00:00,['receipt'],WI,2021 +Senator Larson added as a coauthor,2021-04-22T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-26T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2022-01-14T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-03T06:00:00+00:00,['receipt'],WI,2021 +Representative Emerson added as a cosponsor,2021-09-13T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-09T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +"Laid on table, Ayes 20, Noes 11",2021-01-12T06:00:00+00:00,['deferral'],WI,2021 +"Withdrawn from committee on Financial Institutions and Revenue and rereferred to committee on Housing, Commerce and Trade pursuant to Senate Rule 46(2)(c)",2022-01-27T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2021-03-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-21T06:00:00+00:00,['receipt'],WI,2021 +Representative Allen added as a coauthor,2021-02-12T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-04-29T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-18T05:00:00+00:00,['receipt'],WI,2021 +Senator Felzkowski added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-03-09T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-03-01T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-17T05:00:00+00:00,[],WI,2021 +Representatives Plumer and Edming added as coauthors,2021-02-22T06:00:00+00:00,[],WI,2021 +Representative Andraca added as a coauthor,2022-03-02T06:00:00+00:00,[],WI,2021 +"Joint Committee for Review of Administrative Rules report received pursuant to s. 227.19(6)(a), Wisconsin Statutes",2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-12-17T06:00:00+00:00,[],WI,2021 +Representatives Andraca and Vining added as coauthors,2022-03-02T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Brooks,2021-04-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-30T05:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 9:36 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Murphy added as a coauthor,2022-02-25T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Representative Stubbs added as a cosponsor,2021-04-09T05:00:00+00:00,[],WI,2021 +Representative Andraca added as a coauthor,2022-03-02T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-18T06:00:00+00:00,[],WI,2021 +Representative Murphy added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-16T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-09-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-22T06:00:00+00:00,['receipt'],WI,2021 +Representative Zimmerman added as a cosponsor,2021-10-14T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-21T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-07T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-03T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-16T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-16T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-07T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-10-18T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-09-03T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-07-21T05:00:00+00:00,[],WI,2021 +Senator Jacque added as a coauthor,2021-11-22T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-23T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-02-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-17T06:00:00+00:00,['receipt'],WI,2021 +Representative Knodl added as a cosponsor,2021-04-02T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-15T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-17T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-14T06:00:00+00:00,['receipt'],WI,2021 +Representatives Schraa and Dittrich added as cosponsors,2021-06-17T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-01T06:00:00+00:00,['receipt'],WI,2021 +Representative Hong added as a coauthor,2021-05-10T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-05T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-02T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Senator Bewley added as a coauthor,2022-01-12T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-22T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-07-07T05:00:00+00:00,[],WI,2021 +Representative Edming withdrawn as a coauthor,2021-09-13T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Penterman added as a cosponsor,2021-08-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-02T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-22T06:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-12T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-14T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-01-29T06:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a coauthor,2022-02-15T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-04-06T05:00:00+00:00,[],WI,2021 +LRB correction,2021-10-14T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-17T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2022-01-21T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Allen added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Representative Cabrera added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-08T06:00:00+00:00,['receipt'],WI,2021 +Representative Kitchens added as a cosponsor,2021-03-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-27T05:00:00+00:00,['receipt'],WI,2021 +Representative Skowronski added as a coauthor,2021-04-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-02T05:00:00+00:00,['receipt'],WI,2021 +Representative Skowronski added as a cosponsor,2021-03-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-03-01T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-18T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-08T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-30T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-07-27T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-03T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-28T06:00:00+00:00,['receipt'],WI,2021 +"Representatives Dallman, Pronschinske and Dittrich added as coauthors",2021-04-06T05:00:00+00:00,[],WI,2021 +Senators Ballweg and Cowles added as coauthors,2021-02-03T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Senate Amendment 1 offered by Senators Larson, Johnson and Smith",2021-10-13T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-15T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-05T05:00:00+00:00,['receipt'],WI,2021 +Representative Hong added as a coauthor,2021-08-12T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-06T05:00:00+00:00,[],WI,2021 +Adopted,2022-02-23T06:00:00+00:00,['passage'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-05-21T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Rozar,2021-03-31T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-05T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +Representative Brooks added as a cosponsor,2022-02-15T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-12T06:00:00+00:00,['receipt'],WI,2021 +Representative Shankland added as a cosponsor,2021-08-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-20T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-02-02T06:00:00+00:00,[],WI,2021 +Senator Wimberger added as a coauthor,2021-03-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Petryk and Spiros added as cosponsors,2021-11-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-14T06:00:00+00:00,[],WI,2021 +Representatives Born and Krug added as cosponsors,2021-10-05T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-15T05:00:00+00:00,['receipt'],WI,2021 +Representative Knodl added as a cosponsor,2021-05-10T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Representative Murphy added as a coauthor,2022-03-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-02T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Petrowski,2021-11-02T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-07T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-28T06:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a cosponsor,2021-02-11T06:00:00+00:00,[],WI,2021 +Representative Shelton added as a cosponsor,2021-03-17T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-07T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-24T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Senator Marklein withdrawn as a coauthor,2021-10-13T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Wichgers added as a cosponsor,2021-01-29T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-28T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Representative Wittke added as a cosponsor,2021-08-09T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-06-28T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Feyen,2022-01-13T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-19T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senators Carpenter and L. Taylor,2021-01-04T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-02T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-09-27T05:00:00+00:00,[],WI,2021 +LRB correction,2021-05-19T05:00:00+00:00,[],WI,2021 +Made a special order of business at 9:35 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-06T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-01T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Knodl added as a cosponsor,2021-06-24T05:00:00+00:00,[],WI,2021 +Representative Born added as a cosponsor,2021-04-26T05:00:00+00:00,[],WI,2021 +Representative Krug added as a cosponsor,2021-10-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-07T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-29T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-06T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-25T06:00:00+00:00,['receipt'],WI,2021 +Representative Hong added as a coauthor,2021-07-30T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a coauthor,2021-02-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-21T05:00:00+00:00,[],WI,2021 +Representative Kitchens added as a coauthor,2021-06-10T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-30T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 by Committee on Rules,2021-02-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-15T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-04T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-12-07T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-07T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-15T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-06-15T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-14T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-22T06:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative August,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended and taken up,2021-01-07T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Stafsholt,2022-01-13T06:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a coauthor,2021-03-12T06:00:00+00:00,[],WI,2021 +Representative Pope added as a cosponsor,2021-11-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-30T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-27T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2021-10-20T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-07T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-31T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:32 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-24T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-03-02T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Thiesfeldt,2021-05-24T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-02-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-06-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-02T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-08T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-05T05:00:00+00:00,['receipt'],WI,2021 +Representatives Billings and Shelton added as coauthors,2021-09-24T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-02T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-05-18T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-04-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-15T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-08-26T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Armstrong added as a cosponsor,2021-06-02T05:00:00+00:00,[],WI,2021 +Representative Knodl added as a cosponsor,2021-09-23T05:00:00+00:00,[],WI,2021 +Representative Bowen added as a coauthor,2021-04-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-09T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-14T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-15T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Representative Tusler added as a cosponsor,2021-07-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Shelton added as a cosponsor,2021-04-01T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Born added as a cosponsor,2021-10-05T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-07T05:00:00+00:00,['receipt'],WI,2021 +Representatives Born and Krug added as cosponsors,2021-10-05T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-05-14T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-10T05:00:00+00:00,['receipt'],WI,2021 +Representative Hong withdrawn as a cosponsor,2021-02-16T06:00:00+00:00,['withdrawal'],WI,2021 +Representative Krug added as a cosponsor,2021-10-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-18T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-19T05:00:00+00:00,['receipt'],WI,2021 +Senator Stroebel added as a coauthor,2021-04-01T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-11T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-01T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-03-31T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-24T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-22T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-21T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Ohnstad added as a coauthor,2022-02-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-08T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-10-08T05:00:00+00:00,[],WI,2021 +"Adopted, Ayes 55, Noes 0",2021-01-04T06:00:00+00:00,['passage'],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-21T05:00:00+00:00,['receipt'],WI,2021 +Representative Mursau added as a cosponsor,2021-09-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-16T06:00:00+00:00,['receipt'],WI,2021 +Representatives Ohnstad and Vining added as coauthors,2021-11-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-02T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Tusler added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-03T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-31T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-29T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-10T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Representative Magnafici added as a cosponsor,2022-01-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-21T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-06-24T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-24T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-02T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-12-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-01T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Penterman added as a coauthor,2022-01-19T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Murphy added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-25T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-10T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-07-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-06T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Wichgers added as a cosponsor,2022-01-14T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-18T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2021-02-09T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a coauthor,2021-03-12T06:00:00+00:00,[],WI,2021 +Representative Dittrich added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-17T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Allen added as a coauthor,2021-02-12T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-07T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-05T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a cosponsor,2021-06-21T05:00:00+00:00,[],WI,2021 +Senators Ballweg and Cowles added as coauthors,2021-02-03T06:00:00+00:00,[],WI,2021 +Representative Sinicki withdrawn as a cosponsor,2021-10-11T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Bowen added as a cosponsor,2021-04-14T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-10T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Mursau,2021-04-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-18T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Doyle added as a cosponsor,2021-04-09T05:00:00+00:00,[],WI,2021 +Representative Allen added as a coauthor,2021-06-14T05:00:00+00:00,[],WI,2021 +Representatives S. Rodriguez and Sortwell added as coauthors,2021-06-17T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Representative Magnafici added as a coauthor,2022-01-31T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Spiros,2021-06-10T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Sinicki added as a coauthor,2021-06-28T05:00:00+00:00,[],WI,2021 +Senator Kooyenga added as a coauthor,2021-10-14T05:00:00+00:00,[],WI,2021 +Representative Oldenburg added as a cosponsor,2022-02-09T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-05T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-14T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Murphy added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Skowronski added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-01T06:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 9:23 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2022-01-13T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-07-28T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-21T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-10T06:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Representative Bowen added as a coauthor,2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-02-24T06:00:00+00:00,[],WI,2021 +Representative James added as a cosponsor,2021-12-06T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-27T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-07-21T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-10T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-26T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Senator Marklein added as a coauthor,2022-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-30T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-10T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-05T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Doyle withdrawn as a cosponsor,2022-01-06T06:00:00+00:00,['withdrawal'],WI,2021 +Representative Hong added as a cosponsor,2021-08-25T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-11T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-03T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-13T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-18T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2022-01-31T06:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2021-06-02T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-18T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Representative Armstrong added as a cosponsor,2021-09-13T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2021-11-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-03-17T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-04T06:00:00+00:00,[],WI,2021 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2021-09-15T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-10T06:00:00+00:00,[],WI,2021 +Representative Vorpagel added as a cosponsor,2022-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-07T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2021-05-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-09-27T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-26T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Shankland added as a coauthor,2021-12-07T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-04T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +"Adopted, Ayes 53, Noes 1",2021-01-04T06:00:00+00:00,['passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-07-28T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-21T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Knodl added as a cosponsor,2021-11-03T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-26T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-26T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Representative Bowen added as a cosponsor,2022-02-09T06:00:00+00:00,[],WI,2021 +Representative Wittke added as a coauthor,2021-08-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-07T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-16T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-06-10T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Stubbs added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-13T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-07-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-02T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-08-10T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-06-24T05:00:00+00:00,['receipt'],WI,2021 +Representative Swearingen added as a cosponsor,2021-11-09T06:00:00+00:00,[],WI,2021 +Representative Andraca added as a cosponsor,2021-04-12T05:00:00+00:00,[],WI,2021 +Senator Pfaff added as a cosponsor,2021-03-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-10T05:00:00+00:00,[],WI,2021 +Representative McGuire added as a cosponsor,2021-06-07T05:00:00+00:00,[],WI,2021 +Representative Dittrich added as a coauthor,2021-10-12T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-17T06:00:00+00:00,['receipt'],WI,2021 +Representative Tusler added as a cosponsor,2021-11-04T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a coauthor,2022-03-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-21T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-29T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-01T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-01-21T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Petersen,2021-10-20T05:00:00+00:00,[],WI,2021 +Representative Tittl added as a cosponsor,2021-06-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Cabrera added as a cosponsor,2021-08-05T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-04-21T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-02-11T06:00:00+00:00,[],WI,2021 +Representative Sinicki added as a cosponsor,2021-06-02T05:00:00+00:00,[],WI,2021 +Representative Bowen added as a coauthor,2021-09-08T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-05T05:00:00+00:00,[],WI,2021 +Representative Swearingen added as a coauthor,2021-03-29T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-10T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-08T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-01-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-05T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-21T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-09-16T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-13T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-17T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-10-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-05T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-28T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-31T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Born added as a cosponsor,2021-10-05T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-11T06:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a coauthor,2021-06-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-29T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-05-05T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-06T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Feyen,2022-01-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-10T06:00:00+00:00,['receipt'],WI,2021 +Representative Andraca added as a coauthor,2022-03-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-05T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Representatives Brooks and Steffen added as cosponsors,2021-04-28T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-18T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-24T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-23T06:00:00+00:00,['receipt'],WI,2021 +Representative Plumer added as a cosponsor,2021-08-26T05:00:00+00:00,[],WI,2021 +Representative Goyke added as a coauthor,2021-06-23T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-01T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Pope,2021-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-18T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-22T05:00:00+00:00,['receipt'],WI,2021 +Representative Spreitzer added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-04T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-17T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-04T05:00:00+00:00,['receipt'],WI,2021 +Representative Subeck added as a cosponsor,2021-04-15T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-10-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Senator Jacque added as a coauthor,2021-01-19T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Ohnstad added as a cosponsor,2021-01-14T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-02T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-25T05:00:00+00:00,['receipt'],WI,2021 +Senator Larson added as a cosponsor,2021-09-30T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-01-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-04T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-06-08T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-20T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Loudenbeck added as a coauthor,2021-06-28T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-06-29T05:00:00+00:00,[],WI,2021 +Representatives Drake and Emerson added as cosponsors,2021-06-10T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-03-05T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-07-29T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-05T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-16T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-09T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Representative Kurtz withdrawn as a coauthor,2021-03-03T06:00:00+00:00,['withdrawal'],WI,2021 +Assembly Amendment 1 offered by Representative Magnafici,2021-04-06T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-09-27T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Cabrera added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-10T06:00:00+00:00,['receipt'],WI,2021 +Representative Andraca added as a coauthor,2021-07-01T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-22T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-08T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-08T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-04T05:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a coauthor,2021-11-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-25T06:00:00+00:00,['receipt'],WI,2021 +Representative Brostoff added as a coauthor,2021-04-14T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-12-21T06:00:00+00:00,['receipt'],WI,2021 +Adopted,2022-01-25T06:00:00+00:00,['passage'],WI,2021 +Representative Stubbs added as a coauthor,2021-04-06T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-07-07T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-30T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-02T06:00:00+00:00,['receipt'],WI,2021 +Representative Ramthun added as a cosponsor,2021-04-20T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-05-10T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-03T06:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-06-21T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-18T06:00:00+00:00,['receipt'],WI,2021 +Representative Penterman added as a cosponsor,2021-08-04T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-21T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-29T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-29T06:00:00+00:00,['receipt'],WI,2021 +Representative Tittl withdrawn as a cosponsor,2021-04-14T05:00:00+00:00,['withdrawal'],WI,2021 +Fiscal estimate received,2021-11-29T06:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-02-11T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-12T06:00:00+00:00,['receipt'],WI,2021 +Representative Considine added as a coauthor,2021-05-19T05:00:00+00:00,[],WI,2021 +Representative Spiros added as a cosponsor,2021-02-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-28T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-01-06T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-08T05:00:00+00:00,['receipt'],WI,2021 +Representative Cabrera added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-05-19T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-09-16T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-07-21T05:00:00+00:00,[],WI,2021 +"Joint Committee for Review of Administrative Rules report received pursuant to s. 227.19(6)(a), Wisconsin Statutes",2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Representative Schraa added as a cosponsor,2021-06-17T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-20T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-17-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Representative Vruwink added as a cosponsor,2021-06-29T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-19T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-06-14T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Neylon,2021-03-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Representative Brooks added as a coauthor,2022-02-15T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-15T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-05-05T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-06T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Adopted,2021-01-04T06:00:00+00:00,['passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Considine added as a coauthor,2021-05-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-12T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-06T05:00:00+00:00,['receipt'],WI,2021 +Representative Cabrera added as a coauthor,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Stubbs added as a cosponsor,2021-12-13T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-17T06:00:00+00:00,['receipt'],WI,2021 +Representative Behnke added as a cosponsor,2022-01-07T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-16T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-25T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Bewley,2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-07T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-10T06:00:00+00:00,['receipt'],WI,2021 +Representative Knodl added as a coauthor,2021-11-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Senator Johnson added as a coauthor,2021-01-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Skowronski added as a coauthor,2021-03-05T06:00:00+00:00,[],WI,2021 +LRB correction,2021-02-23T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-18T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a coauthor,2021-04-06T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Cabral-Guevara,2022-01-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-12-07T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-12T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-01T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-13T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-16T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-27T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Cabrera added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read first time and referred to Joint Review Committee on Criminal Penalties,2022-02-03T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Fiscal estimate received,2021-08-11T05:00:00+00:00,['receipt'],WI,2021 +Representative Dittrich added as a cosponsor,2021-10-12T05:00:00+00:00,[],WI,2021 +"Joint Committee for Review of Administrative Rules report received pursuant to s.227.26(2)(g), Wisconsin Statutes",2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Representative Kuglitsch added as a cosponsor,2022-02-09T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Representative Gundrum added as a coauthor,2022-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-01T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-30T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 9-28-2021 by Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-04T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-07-07T05:00:00+00:00,[],WI,2021 +Representative Knodl added as a coauthor,2021-04-06T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-11-30T06:00:00+00:00,[],WI,2021 +Representative Tittl withdrawn as a coauthor,2021-04-14T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Murphy added as a coauthor,2021-10-26T05:00:00+00:00,[],WI,2021 +Representative Emerson added as a coauthor,2021-09-13T05:00:00+00:00,[],WI,2021 +Representative S. Rodriguez added as a cosponsor,2021-12-06T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Brooks added as a coauthor,2021-05-24T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-27T05:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a cosponsor,2021-06-28T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Murphy added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-06-14T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-01T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representatives Born and Krug added as coauthors,2021-10-05T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-21T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-16T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-09T05:00:00+00:00,['receipt'],WI,2021 +Representative Magnafici added as a coauthor,2022-01-31T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-01T05:00:00+00:00,['receipt'],WI,2021 +Representative James added as a coauthor,2021-04-07T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-14T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-10T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-06-08T05:00:00+00:00,[],WI,2021 +Representative Thiesfeldt added as a cosponsor,2021-10-14T05:00:00+00:00,[],WI,2021 +Representative Brooks added as a cosponsor,2022-02-10T06:00:00+00:00,[],WI,2021 +Representative S. Rodriguez added as a coauthor,2021-03-05T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-01T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Cowles,2022-02-14T06:00:00+00:00,[],WI,2021 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2021-06-30T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative McGuire added as a coauthor,2021-03-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-14T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Kooyenga,2021-02-04T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-26T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-03-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Senator Felzkowski added as a coauthor,2022-01-14T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-14T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-22T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-15T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 9-28-2021 by Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-01-19T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2021-06-23T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-20T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-21T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Senator Larson added as a coauthor,2022-02-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Brooks,2021-07-01T05:00:00+00:00,[],WI,2021 +Representative Edming added as a cosponsor,2021-03-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Skowronski added as a cosponsor,2021-03-17T05:00:00+00:00,[],WI,2021 +Representative Andraca added as a cosponsor,2021-07-15T05:00:00+00:00,[],WI,2021 +Representative Sinicki added as a cosponsor,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-14T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-07-28T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-08-19T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-24T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-16T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2021-05-12T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-24T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-03-16T05:00:00+00:00,[],WI,2021 +Representative Knodl added as a cosponsor,2021-04-02T05:00:00+00:00,[],WI,2021 +Representative Knodl added as a cosponsor,2021-11-03T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-20T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-31T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Stubbs added as a coauthor,2021-09-02T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-06-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Knodl added as a cosponsor,2021-04-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-10T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-09-16T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-22T06:00:00+00:00,['receipt'],WI,2021 +Representatives Knodl and Ramthun added as cosponsors,2021-09-16T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Testin,2021-02-22T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a cosponsor,2022-02-09T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Representative Ramthun added as a coauthor,2021-10-20T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-02T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-01T05:00:00+00:00,['receipt'],WI,2021 +Representative Penterman added as a cosponsor,2021-08-04T05:00:00+00:00,[],WI,2021 +Representative Bowen added as a coauthor,2021-03-24T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Representative Billings added as a coauthor,2021-11-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-05-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-12T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-10T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +Representative Vining added as a coauthor,2021-02-09T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-29T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-04-08T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-09T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Allen and Knodl added as cosponsors,2021-04-02T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-27T06:00:00+00:00,['receipt'],WI,2021 +Withdrawn from committee on Environment and referred to committee on State Affairs pursuant to Assembly Rule 42 (3)(c),2022-02-07T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Thiesfeldt added as a cosponsor,2021-10-14T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Sinicki added as a coauthor,2021-12-22T06:00:00+00:00,[],WI,2021 +LRB correction,2021-02-23T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-12T06:00:00+00:00,['receipt'],WI,2021 +Representative Krug added as a cosponsor,2021-10-26T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-18T06:00:00+00:00,['receipt'],WI,2021 +Representatives Skowronski and Plumer added as coauthors,2021-04-06T05:00:00+00:00,[],WI,2021 +Senator Ballweg added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +"Representatives Knodl, Steffen, Jagler and James added as coauthors",2021-04-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-10T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-12T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-04-27T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Spreitzer added as a cosponsor,2021-02-03T06:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a cosponsor,2021-06-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Murphy added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +Representative Jacque added as a cosponsor,2022-02-07T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-15T05:00:00+00:00,['receipt'],WI,2021 +Representative Allen added as a cosponsor,2021-03-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-15T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-03-31T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-01-19T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Cabrera added as a cosponsor,2021-08-05T05:00:00+00:00,[],WI,2021 +"Representatives Kitchens, Spreitzer and Plumer added as cosponsors",2022-02-01T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-08T05:00:00+00:00,[],WI,2021 +Representative Edming added as a cosponsor,2021-02-11T06:00:00+00:00,[],WI,2021 +Representative Armstrong added as a coauthor,2021-04-08T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Wimberger,2021-06-15T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Darling,2021-05-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-24T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-03-10T06:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Summerfield,2021-06-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-24T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-28T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-07-06T05:00:00+00:00,['receipt'],WI,2021 +Representative Emerson added as a cosponsor,2021-09-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-21T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Bernier,2022-02-03T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-28-2021 by Committee on Rules,2021-01-26T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-08T06:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-13T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Plumer added as a cosponsor,2021-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-24T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-15T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Bernier,2021-03-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-01T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a cosponsor,2022-01-14T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-28T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-10-18T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Testin,2021-03-16T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-18T05:00:00+00:00,[],WI,2021 +Representative Knodl added as a coauthor,2021-09-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-19T05:00:00+00:00,['receipt'],WI,2021 +Representative Knodl added as a cosponsor,2021-04-06T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-06T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-03T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-05T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Representative Stubbs added as a cosponsor,2021-12-13T06:00:00+00:00,[],WI,2021 +Representative Vining added as a cosponsor,2022-03-15T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-08-11T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-12-13T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-04T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Representative Allen added as a coauthor,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Knodl added as a cosponsor,2021-04-06T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Roth,2022-01-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-02-23T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-03T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Kitchens,2021-12-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Cabrera added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Representatives Born, Krug and Rozar added as coauthors",2021-10-05T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-28T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-11T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-23T06:00:00+00:00,['receipt'],WI,2021 +Representative James added as a coauthor,2021-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-26T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-19T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-01-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Representative Plumer added as a coauthor,2022-01-13T06:00:00+00:00,[],WI,2021 +Representative Andraca withdrawn as a coauthor,2021-10-20T05:00:00+00:00,['withdrawal'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Rozar,2021-04-05T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-15T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2022-01-21T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2021-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-21T06:00:00+00:00,['receipt'],WI,2021 +Representative Skowronski added as a coauthor,2022-02-02T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-12-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-22T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-05-19T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Representatives Emerson and Spreitzer added as coauthors,2021-09-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-01T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-02T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-09-08T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Knodl added as a cosponsor,2021-11-03T05:00:00+00:00,[],WI,2021 +Representative Behnke added as a cosponsor,2021-05-24T05:00:00+00:00,[],WI,2021 +Senator L. Taylor added as a coauthor,2021-11-12T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-18T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-04-29T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Moses added as a cosponsor,2021-01-29T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-14T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-13T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-05T05:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Representatives Allen and Conley added as coauthors,2021-10-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-08T05:00:00+00:00,['receipt'],WI,2021 +Representative Knodl added as a cosponsor,2021-09-09T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2021-08-05T05:00:00+00:00,[],WI,2021 +Representative James added as a coauthor,2021-02-11T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:26 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2022-01-24T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-28T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-26T05:00:00+00:00,['receipt'],WI,2021 +Representative Wittke added as a cosponsor,2021-03-16T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-21T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-21T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-07-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Brooks,2021-03-04T06:00:00+00:00,[],WI,2021 +Adopted,2021-01-26T06:00:00+00:00,['passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Penterman added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-11-02T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Joint Committee for Review of Administrative Rules report received pursuant to s.227.26(2)(g), Wisconsin Statutes",2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-04T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Allen added as a coauthor,2021-03-03T06:00:00+00:00,[],WI,2021 +Senator Bewley added as a coauthor,2021-04-08T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Made a special order of business at 9:03 AM on 1-28-2021 pursuant to Assembly Resolution 8,2021-01-26T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-15T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Kapenga,2021-03-02T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representatives Sortwell and Kitchens,2021-06-16T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-10T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-07-07T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Tusler added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Brooks added as a cosponsor,2022-01-27T06:00:00+00:00,[],WI,2021 +Representative Loudenbeck added as a cosponsor,2021-03-17T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-29T06:00:00+00:00,['receipt'],WI,2021 +Representative Knodl added as a cosponsor,2021-05-10T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-08-30T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-06-18T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-07T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-02T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-06-08T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2021-03-17T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-10T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-09-30T05:00:00+00:00,[],WI,2021 +LRB correction,2021-09-07T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-09T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Kuglitsch,2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-20T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-07T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-01-06T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-12T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-18T05:00:00+00:00,['receipt'],WI,2021 +Representative Spreitzer added as a coauthor,2022-02-14T06:00:00+00:00,[],WI,2021 +Representative McGuire added as a cosponsor,2021-09-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-12T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-01T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-25T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-07-09T05:00:00+00:00,[],WI,2021 +Senator Pfaff added as a coauthor,2021-02-15T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-17T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-20T05:00:00+00:00,['receipt'],WI,2021 +Senator Jacque added as a coauthor,2021-02-25T06:00:00+00:00,[],WI,2021 +Representative Kitchens added as a coauthor,2021-12-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-25T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-02-09T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Edming,2021-03-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-30T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-28T05:00:00+00:00,['receipt'],WI,2021 +Representative Brooks added as a cosponsor,2021-05-24T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-17T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Stubbs added as a cosponsor,2021-09-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-12T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-09-15T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-05T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-03-01T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a cosponsor,2021-01-26T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-03T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-05-05T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative August,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-14T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-09T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-17T06:00:00+00:00,['receipt'],WI,2021 +Representative Allen added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Representative Zimmerman added as a coauthor,2021-04-13T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-12T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Representative Armstrong added as a cosponsor,2021-04-08T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-09-13T05:00:00+00:00,[],WI,2021 +Representatives Schraa and Tittl added as cosponsors,2021-06-17T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-03-18T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-07T06:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2022-02-11T06:00:00+00:00,[],WI,2021 +Representative Magnafici added as a coauthor,2022-02-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-28T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-02T06:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Representative Dittrich added as a cosponsor,2021-06-17T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-09T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Representative Bowen added as a cosponsor,2021-03-01T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-24T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-31T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Plumer added as a cosponsor,2021-02-08T06:00:00+00:00,[],WI,2021 +"Joint Committee for Review of Administrative Rules report received pursuant to s.227.26(2)(g), Wisconsin Statutes",2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-13T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senators Ballweg and Darling added as cosponsors,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-21T06:00:00+00:00,['receipt'],WI,2021 +Representative Swearingen added as a coauthor,2021-06-01T05:00:00+00:00,[],WI,2021 +Representative Bowen added as a coauthor,2021-09-08T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-13T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-05T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2021-10-26T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-09T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a coauthor,2021-04-19T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-07-21T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Knodl and Murphy added as coauthors,2021-10-05T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-15T05:00:00+00:00,[],WI,2021 +Representative Hintz added as a cosponsor,2021-06-08T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Mursau,2022-01-31T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-13T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Made a special order of business at 9:28 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-27T06:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 9:25 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2021-04-21T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-08T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-31T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-08T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-18T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2022-01-24T06:00:00+00:00,[],WI,2021 +Representative Allen added as a coauthor,2021-05-25T05:00:00+00:00,[],WI,2021 +Representative Armstrong added as a coauthor,2021-05-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-14T06:00:00+00:00,[],WI,2021 +"Representatives Brooks, Duchow and Magnafici added as cosponsors",2022-02-03T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Shelton added as a coauthor,2021-04-23T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a coauthor,2021-11-11T06:00:00+00:00,[],WI,2021 +Representatives Plumer and Dittrich added as coauthors,2021-07-29T05:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2022-02-17T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-06-15T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-03-01T06:00:00+00:00,[],WI,2021 +Representative Plumer added as a coauthor,2021-08-05T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-31T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Representative Spreitzer added as a coauthor,2021-04-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-06-23T05:00:00+00:00,[],WI,2021 +Representative Schraa added as a coauthor,2021-12-09T06:00:00+00:00,[],WI,2021 +Representative Drake added as a cosponsor,2021-09-28T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Cowles,2021-12-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-07T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-30T05:00:00+00:00,['receipt'],WI,2021 +Representative Cabrera added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Senator Agard added as a cosponsor,2021-12-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-14T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-26T06:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Made a special order of business at 9:34 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-05T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-25T05:00:00+00:00,['receipt'],WI,2021 +Representative Emerson added as a cosponsor,2021-09-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Representative Born added as a cosponsor,2021-10-11T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-9-2021 by Committee on Rules,2021-06-03T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Doyle added as a coauthor,2021-04-09T05:00:00+00:00,[],WI,2021 +Representative Edming added as a cosponsor,2021-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-02T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Representative Allen added as a coauthor,2021-02-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-08T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-07T06:00:00+00:00,['receipt'],WI,2021 +Representative Allen added as a cosponsor,2021-02-15T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Senate Amendment 1 offered by Senator Wanggaard,2021-06-09T05:00:00+00:00,[],WI,2021 +Representative Schraa added as a coauthor,2021-10-19T05:00:00+00:00,[],WI,2021 +Representative Schraa added as a cosponsor,2022-01-06T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-24T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-05-05T05:00:00+00:00,[],WI,2021 +Representatives Vining and Andraca added as cosponsors,2022-03-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-09T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Stubbs added as a cosponsor,2021-09-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-13T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Housing report received pursuant to s. 13.099 (2) Wisconsin Statutes,2021-04-05T05:00:00+00:00,['receipt'],WI,2021 +Representative Knodl added as a cosponsor,2021-11-03T05:00:00+00:00,[],WI,2021 +Senator Carpenter added as a coauthor,2021-02-23T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-02T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative James added as a coauthor,2021-02-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-01T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-09-27T05:00:00+00:00,[],WI,2021 +Representative Considine added as a cosponsor,2021-11-23T06:00:00+00:00,[],WI,2021 +Representative Emerson added as a coauthor,2021-09-13T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-21T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-23T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-07T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-12-15T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-18T06:00:00+00:00,[],WI,2021 +Representative Dittrich added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Senator Darling added as a cosponsor,2022-01-21T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-17T06:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a coauthor,2021-10-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Representative Vining added as a coauthor,2021-03-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-08-18T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-03-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-08T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Sanfelippo,2021-04-26T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Plumer added as a coauthor,2022-01-13T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-29T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-02-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Read first time and referred to Joint Survey Committee on Tax Exemptions,2021-02-16T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Representative Knodl added as a coauthor,2021-04-06T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Ballweg,2021-11-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-03T05:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 9:33 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-02T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-10-15T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2022-01-31T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a cosponsor,2021-07-12T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Adopted,2022-02-22T06:00:00+00:00,['passage'],WI,2021 +Representative Steffen added as a coauthor,2021-06-28T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-01-19T06:00:00+00:00,['receipt'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Testin,2021-10-12T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-18T05:00:00+00:00,[],WI,2021 +Representative Tusler added as a coauthor,2021-11-04T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-11-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Steffen added as a cosponsor,2021-10-11T05:00:00+00:00,[],WI,2021 +Representatives Drake and Emerson added as coauthors,2021-06-10T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-03-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-02T05:00:00+00:00,['receipt'],WI,2021 +"Representatives Born, Armstrong, Mursau, Petryk, Knodl, Loudenbeck and James added as coauthors",2021-04-06T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Spiros,2022-02-16T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Skowronski added as a cosponsor,2021-03-25T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-03-29T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-08-02T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2021-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-11T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-25T05:00:00+00:00,['receipt'],WI,2021 +Representative Emerson added as a coauthor,2021-09-13T05:00:00+00:00,[],WI,2021 +Representative Knodl added as a cosponsor,2021-06-24T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-17T06:00:00+00:00,['receipt'],WI,2021 +Representative Skowronski added as a cosponsor,2021-02-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-29T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-21T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-06T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Larson added as a cosponsor,2021-04-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Subeck added as a cosponsor,2022-02-10T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-12-15T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-15T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-10-18T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Tusler withdrawn as a cosponsor,2021-08-09T05:00:00+00:00,['withdrawal'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-26T06:00:00+00:00,[],WI,2021 +Read first time and referred to Joint Review Committee on Criminal Penalties,2021-03-10T06:00:00+00:00,"['reading-1', 'referral-committee']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended to withdraw from committee on Rules and take up,2022-02-23T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-10T06:00:00+00:00,[],WI,2021 +Withdrawn from committee on Health and referred to committee on Substance Abuse and Prevention pursuant to Assembly Rule 42 (3)(c),2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2021-04-29T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representatives Allen and Thiesfeldt,2022-01-07T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Made a special order of business at 9:31 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Knodl added as a cosponsor,2021-12-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Sortwell added as a cosponsor,2021-03-25T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-07T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-04T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-05-27T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a coauthor,2021-03-02T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:27 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-01-31T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-05T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-06T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-27T06:00:00+00:00,['receipt'],WI,2021 +Representatives S. Rodriguez and Sortwell added as cosponsors,2021-06-17T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-11-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Testin,2021-02-23T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Representative Emerson added as a coauthor,2021-09-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-07T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-16T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-26T06:00:00+00:00,[],WI,2021 +Representative Goyke added as a coauthor,2021-10-11T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-04T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a coauthor,2022-03-10T06:00:00+00:00,[],WI,2021 +Senator Ballweg added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Murphy added as a coauthor,2021-11-16T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2021-02-22T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-09T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-15T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Representative Sortwell withdrawn as a cosponsor,2021-03-25T05:00:00+00:00,['withdrawal'],WI,2021 +Fiscal estimate received,2021-09-16T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-11-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-10T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Adopted,2022-02-22T06:00:00+00:00,['passage'],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +Senator Ballweg added as a cosponsor,2021-12-22T06:00:00+00:00,[],WI,2021 +Representative Ramthun added as a cosponsor,2021-10-20T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-05T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a cosponsor,2021-02-16T06:00:00+00:00,[],WI,2021 +Representative Mursau added as a cosponsor,2021-09-20T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-03T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-15T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-03-09T06:00:00+00:00,[],WI,2021 +Senator Bewley added as a cosponsor,2021-04-09T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-23T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Representative Stubbs added as a coauthor,2021-09-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Brooks,2021-10-15T05:00:00+00:00,[],WI,2021 +Representative Considine withdrawn as a coauthor,2021-05-13T05:00:00+00:00,['withdrawal'],WI,2021 +Senator L. Taylor added as a coauthor,2022-01-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-28T06:00:00+00:00,['receipt'],WI,2021 +Senate Substitute Amendment 1 offered by Senators Jacque and Cowles,2021-06-16T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-31T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-06T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-07T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-11-04T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-20T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-21T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-04-27T05:00:00+00:00,[],WI,2021 +"Report without recommendation pursuant to s. 227.26 (2)(h), Wisconsin Statutes",2021-03-04T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-26T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-11T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-01-22T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Petrowski,2021-07-01T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Murphy added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Representative Wittke added as a cosponsor,2022-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-30T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-15T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Wittke,2021-04-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Representative Goyke added as a coauthor,2021-12-27T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Ballweg,2021-04-12T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-28T05:00:00+00:00,[],WI,2021 +Senator Ballweg added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-18T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:29 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-12-14T06:00:00+00:00,['receipt'],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Spreitzer, Subeck, Emerson, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Vining and Vruwink",2021-03-23T05:00:00+00:00,[],WI,2021 +Senator Johnson added as a coauthor,2021-01-26T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-06T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-16T06:00:00+00:00,['receipt'],WI,2021 +Representative Milroy added as a cosponsor,2022-02-25T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-12-01T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Senator Kooyenga added as a cosponsor,2021-10-27T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-12T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Representative Bowen added as a cosponsor,2021-03-03T06:00:00+00:00,[],WI,2021 +Representative Tusler added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-08T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-03-01T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-03-03T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representatives Steineke and Stubbs,2021-06-01T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Born added as a cosponsor,2021-04-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-10T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-12T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Adopted,2022-02-23T06:00:00+00:00,['passage'],WI,2021 +Public hearing held,2021-04-15T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Mursau withdrawn as a coauthor,2021-12-22T06:00:00+00:00,['withdrawal'],WI,2021 +Representative Steffen added as a coauthor,2022-02-24T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-17T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-02T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-17T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Steffen added as a coauthor,2022-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-06-29T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-11-11T06:00:00+00:00,['withdrawal'],WI,2021 +Public hearing held,2021-04-13T05:00:00+00:00,[],WI,2021 +Senator Carpenter added as a cosponsor,2021-12-01T06:00:00+00:00,[],WI,2021 +LRB correction,2021-07-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-09-29T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-11T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-02T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-03-31T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-08T05:00:00+00:00,['receipt'],WI,2021 +Senator Wanggaard added as a coauthor,2021-10-13T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-03T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-06-10T05:00:00+00:00,[],WI,2021 +Representative Baldeh withdrawn as a coauthor,2021-08-19T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Tusler added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a coauthor,2021-11-05T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-07T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-01-21T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2021-08-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-28T05:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Swearingen,2022-02-09T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representatives Shankland and Sinicki,2021-04-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-05T05:00:00+00:00,['receipt'],WI,2021 +Housing report received pursuant to s. 13.099 (2) Wisconsin Statutes,2021-04-05T05:00:00+00:00,['receipt'],WI,2021 +Representative Skowronski added as a cosponsor,2022-02-02T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Representative Brostoff added as a cosponsor,2021-07-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-25T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-08-25T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2022-02-02T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Senator Testin added as a cosponsor,2021-10-07T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-01T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-28T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Representative Kitchens added as a cosponsor,2021-12-15T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Dittrich,2022-01-31T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-25T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2022-01-24T06:00:00+00:00,[],WI,2021 +Agency briefing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Adopted,2021-03-16T05:00:00+00:00,['passage'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a cosponsor,2022-01-10T06:00:00+00:00,[],WI,2021 +Senator L. Taylor added as a coauthor,2021-05-05T05:00:00+00:00,[],WI,2021 +Representative Haywood added as a cosponsor,2022-03-15T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Wittke,2021-11-29T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-17T06:00:00+00:00,['deferral'],WI,2021 +Public hearing held,2021-12-14T06:00:00+00:00,[],WI,2021 +Representative Kuglitsch added as a cosponsor,2022-01-07T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-18T05:00:00+00:00,['receipt'],WI,2021 +Representative Penterman added as a cosponsor,2021-08-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-10-22T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Penterman added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2022-02-23T06:00:00+00:00,[],WI,2021 +Representatives Petryk and Moses added as coauthors,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +"Adopted, Ayes 97, Noes 0",2021-06-09T05:00:00+00:00,['passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2022-02-16T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Roys withdrawn as a coauthor,2021-06-11T05:00:00+00:00,['withdrawal'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +Representative Cabral-Guevara withdrawn as a coauthor,2021-12-06T06:00:00+00:00,['withdrawal'],WI,2021 +Fiscal estimate received,2021-06-30T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Schraa added as a cosponsor,2022-02-08T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Jacque,2021-05-07T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 2 offered by Senator Cowles,2021-12-06T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-23T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-08-31T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-11-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Edming withdrawn as a cosponsor,2021-09-13T05:00:00+00:00,['withdrawal'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-22T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Armstrong,2021-10-18T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-16T06:00:00+00:00,['receipt'],WI,2021 +Representative L. Myers added as a coauthor,2021-05-18T05:00:00+00:00,[],WI,2021 +Senator Ballweg added as a coauthor,2022-02-07T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Steffen,2021-06-09T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2022-01-05T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-27T05:00:00+00:00,[],WI,2021 +Representative Brooks added as a cosponsor,2022-01-27T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-05-21T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-23T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-01-31T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Stroebel,2021-05-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-04-26T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-23T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-06-02T05:00:00+00:00,[],WI,2021 +Representative Schraa added as a coauthor,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-18T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-24T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Ramthun withdrawn as a coauthor,2022-01-05T06:00:00+00:00,['withdrawal'],WI,2021 +Public hearing held,2022-01-26T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-07-29T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-14T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-08T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-15T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-14T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-24T06:00:00+00:00,[],WI,2021 +Representative Stubbs added as a coauthor,2022-03-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-19T05:00:00+00:00,['receipt'],WI,2021 +Representative Hong added as a cosponsor,2021-10-12T05:00:00+00:00,[],WI,2021 +Representative Moore Omokunde added as a cosponsor,2022-01-27T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-07-29T05:00:00+00:00,[],WI,2021 +"Representatives Behnke, Sinicki and Spreitzer withdrawn as cosponsors",2021-10-19T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Kooyenga,2022-01-31T06:00:00+00:00,[],WI,2021 +Representatives Armstrong and Murphy added as coauthors,2021-11-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Representatives Moses and Allen added as coauthors,2022-01-13T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-25T05:00:00+00:00,[],WI,2021 +Senator Jacque added as a cosponsor,2021-10-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-15T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-01T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Representative Conley added as a cosponsor,2021-12-02T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2021-09-16T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-30T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-25T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-10T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Macco,2021-02-23T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-15T06:00:00+00:00,['receipt'],WI,2021 +LRB correction,2021-10-01T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-07-06T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-30T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-01-21T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-20T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-17T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-04-13T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-23T05:00:00+00:00,['receipt'],WI,2021 +Representative Ramthun added as a coauthor,2022-02-01T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2021-09-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-01T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-08T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from committee on Rules and take up,2022-02-15T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-03-02T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-27T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-24T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-24T05:00:00+00:00,[],WI,2021 +Representative Drake added as a coauthor,2021-05-25T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-04T06:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a cosponsor,2022-01-05T06:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2021-11-05T05:00:00+00:00,[],WI,2021 +Representatives Drake and Stubbs added as coauthors,2021-05-25T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-30T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-21T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-15T05:00:00+00:00,[],WI,2021 +"Joint Committee for Review of Administrative Rules report received pursuant to s.227.26(2)(g), Wisconsin Statutes",2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2022-02-17T06:00:00+00:00,['deferral'],WI,2021 +Representative Stubbs added as a coauthor,2021-09-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-16T05:00:00+00:00,['receipt'],WI,2021 +Senator Roys added as a cosponsor,2021-04-29T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-23T05:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a cosponsor,2021-11-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-13T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Bowen withdrawn as a coauthor,2021-11-03T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Callahan added as a coauthor,2021-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Bowen added as a cosponsor,2021-03-03T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Representative Cabral-Guevara added as a cosponsor,2021-10-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-22T06:00:00+00:00,['receipt'],WI,2021 +Representative James added as a coauthor,2021-12-06T06:00:00+00:00,[],WI,2021 +Adopted,2022-01-20T06:00:00+00:00,['passage'],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Senator Nass added as a coauthor,2021-02-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-15T05:00:00+00:00,['receipt'],WI,2021 +Representative Knodl added as a coauthor,2021-09-15T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-02T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Kitchens,2021-03-22T05:00:00+00:00,[],WI,2021 +"Report without recommendation pursuant to s. 227.26(2)(h), Wisconsin Statutes, by Committee on State Affairs",2021-03-04T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-28T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2021-04-29T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-22T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-08-05T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-16T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Cowles,2022-02-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-16T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-19T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Loudenbeck,2021-10-05T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-21T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Representative Ramthun added as a coauthor,2021-10-19T05:00:00+00:00,[],WI,2021 +Representative Bowen added as a cosponsor,2021-11-01T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Oldenburg,2021-12-14T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-22T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-15T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-19T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2021-05-05T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Representative Sinicki added as a coauthor,2021-04-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-11T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wittke added as a coauthor,2021-10-20T05:00:00+00:00,[],WI,2021 +Representative Moore Omokunde added as a coauthor,2021-10-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-07T05:00:00+00:00,['receipt'],WI,2021 +Representative Hintz added as a coauthor,2021-03-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-17T05:00:00+00:00,[],WI,2021 +Representative Billings added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-07-29T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-31T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-06-02T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-15T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-02-04T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Representative Brooks added as a coauthor,2022-02-15T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-20T05:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2021-08-04T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-15T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-15T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-04-15T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Adopted,2021-10-26T05:00:00+00:00,['passage'],WI,2021 +Public hearing held,2021-06-03T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-02-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-11-02T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-01-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-02-18T06:00:00+00:00,['receipt'],WI,2021 +Representative Armstrong added as a coauthor,2021-10-18T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-03-05T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-20T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-06T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2021-01-21T06:00:00+00:00,[],WI,2021 +Adopted,2021-09-28T05:00:00+00:00,['passage'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Testin,2022-02-11T06:00:00+00:00,[],WI,2021 +Representative Doyle added as a cosponsor,2021-04-09T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Allen added as a cosponsor,2021-02-15T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report without recommendation pursuant to s. 227.26 (2)(h), Wisconsin Statutes",2021-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Sortwell,2021-09-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-23T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Billings added as a coauthor,2022-07-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-03T06:00:00+00:00,[],WI,2021 +Senator Felzkowski added as a cosponsor,2022-01-14T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-11-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-05T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-24T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Assembly Amendment 1 offered by Representative Dittrich,2021-11-30T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-28T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Representative Plumer added as a cosponsor,2021-08-05T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Spiros,2021-08-17T05:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 by Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-23T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-15T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-03-01T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-14T05:00:00+00:00,[],WI,2021 +Representative James added as a coauthor,2021-10-12T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-03-26T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-07-09T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-07-29T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-04T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-06-17T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Dittrich,2021-11-30T06:00:00+00:00,[],WI,2021 +LRB correction,2021-10-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-24T05:00:00+00:00,[],WI,2021 +Representatives Moses and Allen added as coauthors,2022-01-13T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-06-24T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-07-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-28T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-18T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Riemer,2021-01-20T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Representative McGuire added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Plumer added as a cosponsor,2021-10-11T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-18T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-29T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-16T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-23T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2022-01-18T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-08T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-21T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Shelton,2021-10-12T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Darling,2021-04-12T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Plumer added as a coauthor,2022-01-13T06:00:00+00:00,[],WI,2021 +Representative Armstrong added as a coauthor,2021-05-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-22T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-29T05:00:00+00:00,['receipt'],WI,2021 +Representative Schraa added as a cosponsor,2021-04-30T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-13T05:00:00+00:00,['receipt'],WI,2021 +Representative Cabral-Guevara added as a cosponsor,2021-10-20T05:00:00+00:00,[],WI,2021 +Representative Plumer added as a cosponsor,2021-06-03T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Sortwell,2021-04-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-09-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-28T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-17T05:00:00+00:00,[],WI,2021 +Representative Penterman added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +LRB correction,2022-01-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-10T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-02-25T06:00:00+00:00,[],WI,2021 +Representative James added as a cosponsor,2021-04-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Billings added as a cosponsor,2021-11-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-30T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-28T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-12-30T06:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-06-04T05:00:00+00:00,['receipt'],WI,2021 +Representative Ramthun added as a cosponsor,2021-04-20T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-25T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 2 offered by Representative Edming,2021-03-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-02T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-07T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-12-14T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-15T05:00:00+00:00,[],WI,2021 +Representative L. Myers added as a coauthor,2021-05-18T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-17T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Jacque,2021-05-18T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2021-04-29T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Wichgers,2021-10-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-17T06:00:00+00:00,[],WI,2021 +Representative Hong added as a cosponsor,2021-09-17T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +Representative Spiros added as a coauthor,2021-02-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-10T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-25T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Jacque,2021-05-18T05:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives Spreitzer, Snodgrass and Conley",2022-01-14T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Bernier,2022-03-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-09-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-22T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-18T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-26T05:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Senate Amendment 1 offered by Senator Kooyenga,2021-05-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-25T05:00:00+00:00,['receipt'],WI,2021 +LRB correction,2021-04-06T05:00:00+00:00,[],WI,2021 +Adopted,2021-02-16T06:00:00+00:00,['passage'],WI,2021 +Executive action taken,2021-05-26T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-17T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Skowronski added as a coauthor,2021-12-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-15T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Callahan,2021-11-08T06:00:00+00:00,[],WI,2021 +Representative Snodgrass added as a cosponsor,2022-05-10T05:00:00+00:00,[],WI,2021 +Representative Hong added as a cosponsor,2021-10-25T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-18T05:00:00+00:00,['receipt'],WI,2021 +Representative Schraa added as a cosponsor,2022-02-08T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Cabral-Guevara,2021-06-09T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-08-12T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-25T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-03-17T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +"Joint Committee for Review of Administrative Rules report received pursuant to s. 227.19(6)(a), Wisconsin Statutes",2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Senator Ringhand added as a coauthor,2021-01-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-17T06:00:00+00:00,['receipt'],WI,2021 +Adopted,2021-01-07T06:00:00+00:00,['passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Brooks,2022-02-07T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-01-21T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-28T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2021-06-29T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-28T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2022-01-31T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2021-10-08T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-05T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Sortwell,2021-04-29T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-12T05:00:00+00:00,['receipt'],WI,2021 +Representative Drake added as a coauthor,2021-09-28T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Dallman,2021-10-19T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-06-28T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-08T05:00:00+00:00,['receipt'],WI,2021 +Senator Felzkowski added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-11-11T06:00:00+00:00,['withdrawal'],WI,2021 +Public hearing held,2022-02-07T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Marklein,2022-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-28T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-30T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Public hearing held,2021-03-24T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-17T06:00:00+00:00,['withdrawal'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Felzkowski,2022-02-07T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-04T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-21T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Allen,2021-03-24T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-13T05:00:00+00:00,['receipt'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Wanggaard,2021-05-04T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-25T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +Representatives Moses and Allen added as coauthors,2022-01-13T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-30T05:00:00+00:00,['receipt'],WI,2021 +Representatives Stubbs and Bowen added as coauthors,2021-03-10T06:00:00+00:00,[],WI,2021 +Representatives Vining and S. Rodriguez added as coauthors,2021-04-08T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-10-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-30T05:00:00+00:00,['receipt'],WI,2021 +Representative Penterman added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Swearingen,2021-11-02T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-31T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-03T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-17T05:00:00+00:00,[],WI,2021 +Withdrawn from committee on Financial Institutions and Revenue and rereferred to committee on Economic and Workforce Development pursuant to Senate Rule 46(2)(c),2021-06-18T05:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-11-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Conley and Stubbs added as cosponsors,2021-06-14T05:00:00+00:00,[],WI,2021 +Adopted,2021-03-16T05:00:00+00:00,['passage'],WI,2021 +Representative Brostoff added as a coauthor,2021-10-19T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-05-14T05:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a coauthor,2022-01-05T06:00:00+00:00,[],WI,2021 +Representative McGuire added as a coauthor,2021-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-22T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Representative Cabral-Guevara withdrawn as a coauthor,2021-06-03T05:00:00+00:00,['withdrawal'],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Representative Knodl added as a cosponsor,2021-06-24T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-07-12T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Assembly Amendment 1 offered by Representative Stubbs,2021-03-16T05:00:00+00:00,[],WI,2021 +Representative Schraa added as a cosponsor,2021-07-15T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-09-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-05-27T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-08T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-11T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-23T06:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a cosponsor,2021-10-06T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Kooyenga,2021-02-05T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-08T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-08T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-08T05:00:00+00:00,['receipt'],WI,2021 +Representative Spreitzer added as a coauthor,2022-02-14T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-27T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-21T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-24T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-22T06:00:00+00:00,['receipt'],WI,2021 +Representative Plumer added as a coauthor,2021-06-07T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a cosponsor,2022-02-02T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +LRB correction,2022-02-07T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Stubbs and Bowen added as coauthors,2021-03-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-24T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-12T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-26T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative August,2022-02-14T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +Representative James added as a cosponsor,2021-10-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-18T06:00:00+00:00,['receipt'],WI,2021 +Senator Cowles added as a coauthor,2022-02-10T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Representative Armstrong added as a coauthor,2021-09-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-14T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-08T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative VanderMeer,2021-05-24T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-28T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Oldenburg added as a coauthor,2021-05-06T05:00:00+00:00,[],WI,2021 +Senator Marklein added as a coauthor,2022-02-10T06:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Spreitzer, Hintz, Hesselbein, Subeck, Goyke, Snodgrass, Andraca, Shelton, Hebl, Vining, Pope, Emerson, B. Meyers, Baldeh, Moore Omokunde, Shankland, Riemer, Brostoff, Vruwink, S. Rodriguez, Neubauer, Hong, McGuire, Conley, Considine, Haywood, Drake and Billings",2021-09-28T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-09T06:00:00+00:00,['receipt'],WI,2021 +Representative James added as a coauthor,2021-05-24T05:00:00+00:00,[],WI,2021 +Representative Conley added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Representative Moore Omokunde added as a coauthor,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Bowen added as a coauthor,2021-04-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Representative McGuire added as a coauthor,2021-06-24T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-05T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Representative Knodl added as a cosponsor,2021-09-09T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Subeck added as a coauthor,2021-10-18T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-05-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-05-18T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-14T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +LRB correction,2021-03-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-22T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-26T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-09-29T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-31T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-30T05:00:00+00:00,['receipt'],WI,2021 +Representative Edming added as a coauthor,2022-01-06T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-22T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-10T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-12-08T06:00:00+00:00,[],WI,2021 +Representative Novak added as a coauthor,2022-02-07T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-29T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-22T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-11T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-27T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Bernier,2021-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-30T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-19T05:00:00+00:00,['receipt'],WI,2021 +Representative Billings added as a cosponsor,2022-07-14T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-27T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-04T05:00:00+00:00,['receipt'],WI,2021 +Representative Vruwink added as a coauthor,2022-01-04T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-14T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-01-21T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-26T06:00:00+00:00,[],WI,2021 +"Representatives Vining, Hong, Murphy and S. Rodriguez added as coauthors",2021-10-25T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-03-11T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Brooks,2021-10-15T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Duchow,2021-06-09T05:00:00+00:00,[],WI,2021 +Senator Ballweg withdrawn as a cosponsor,2022-01-03T06:00:00+00:00,['withdrawal'],WI,2021 +Fiscal estimate received,2021-09-22T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Representative Dallman added as a coauthor,2022-02-08T06:00:00+00:00,[],WI,2021 +Representative Vining added as a cosponsor,2022-07-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-03T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-21T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-10-06T05:00:00+00:00,[],WI,2021 +Senator Bewley withdrawn as a coauthor,2021-03-25T05:00:00+00:00,['withdrawal'],WI,2021 +Executive action taken,2021-04-28T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-07T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-23T05:00:00+00:00,[],WI,2021 +Representative James added as a coauthor,2021-04-07T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-29T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Substitute Amendment 1 offered by Representatives Cabral-Guevara and Murphy,2022-01-12T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Wittke,2022-02-14T06:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2022-01-19T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-03-22T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-23T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Stafsholt,2022-02-08T06:00:00+00:00,[],WI,2021 +Representative Andraca added as a cosponsor,2022-02-15T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Wichgers,2022-01-26T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Knodl added as a coauthor,2021-11-03T05:00:00+00:00,[],WI,2021 +Senator Carpenter added as a coauthor,2021-12-01T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Wittke,2022-01-12T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-06-17T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-10T06:00:00+00:00,['receipt'],WI,2021 +"Joint Committee for Review of Administrative Rules report received pursuant to s.227.26(2)(g), Wisconsin Statutes",2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Sortwell,2021-07-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-25T05:00:00+00:00,[],WI,2021 +"Adopted, Ayes 59, Noes 35",2021-05-11T05:00:00+00:00,['passage'],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +Representative Tusler added as a cosponsor,2021-10-21T05:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a coauthor,2022-01-07T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-04T06:00:00+00:00,[],WI,2021 +Representative Conley added as a cosponsor,2021-04-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-19T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-12T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-11T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-22T05:00:00+00:00,['receipt'],WI,2021 +Representative Vining added as a cosponsor,2021-06-18T05:00:00+00:00,[],WI,2021 +Representative James added as a cosponsor,2022-01-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-02T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-24T05:00:00+00:00,['receipt'],WI,2021 +Representative Dallman added as a cosponsor,2022-02-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-03-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Representative Penterman added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Cabral-Guevara,2021-06-22T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-01T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Skowronski withdrawn as a cosponsor,2021-09-08T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Edming added as a cosponsor,2021-02-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-21T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-20T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-08T06:00:00+00:00,['receipt'],WI,2021 +Representative Cabrera added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-07T05:00:00+00:00,['receipt'],WI,2021 +Representative Bowen added as a coauthor,2021-09-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-06-02T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a coauthor,2021-07-09T05:00:00+00:00,[],WI,2021 +Representative Vining added as a cosponsor,2022-02-23T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-18T06:00:00+00:00,['receipt'],WI,2021 +Representative Zimmerman added as a cosponsor,2021-10-14T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Gundrum,2021-05-10T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-11T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-04-23T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Bernier,2022-01-26T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-03T06:00:00+00:00,['receipt'],WI,2021 +Representative Drake added as a coauthor,2021-05-25T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-23T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Testin,2021-03-16T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-24T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-01T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Knodl added as a cosponsor,2021-04-02T05:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a cosponsor,2021-09-14T05:00:00+00:00,[],WI,2021 +Representative Knodl added as a cosponsor,2021-11-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report without recommendation pursuant to s. 227.19(6)(b), Wisconsin Statutes, by Committee on State Affairs",2021-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-07-28T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a coauthor,2022-01-31T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-12-21T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-23T05:00:00+00:00,[],WI,2021 +Adopted,2021-03-17T05:00:00+00:00,['passage'],WI,2021 +Representative Skowronski added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-01T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-21T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Adopted,2022-02-17T06:00:00+00:00,['passage'],WI,2021 +Fiscal estimate received,2021-08-19T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-10T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representatives Steineke and Stubbs,2021-06-01T05:00:00+00:00,[],WI,2021 +Representative Vining added as a coauthor,2022-07-20T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-04T05:00:00+00:00,['receipt'],WI,2021 +Representative McGuire added as a cosponsor,2022-01-06T06:00:00+00:00,[],WI,2021 +Representative Oldenburg added as a coauthor,2021-05-26T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2021-11-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-12T05:00:00+00:00,[],WI,2021 +Representative Penterman added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Thiesfeldt,2022-02-16T06:00:00+00:00,[],WI,2021 +Representative Ramthun added as a cosponsor,2021-03-04T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Neylon,2021-04-14T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-17T05:00:00+00:00,['receipt'],WI,2021 +Representative Spreitzer added as a cosponsor,2021-04-01T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-10T05:00:00+00:00,['receipt'],WI,2021 +Representative Bowen added as a cosponsor,2021-04-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Representative Bowen added as a coauthor,2021-03-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-11-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-26T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Skowronski added as a coauthor,2021-01-27T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-05T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-01-04T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-30T05:00:00+00:00,['receipt'],WI,2021 +Representative Edming added as a cosponsor,2021-06-08T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-19T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-06T06:00:00+00:00,[],WI,2021 +Representative Murphy added as a coauthor,2021-11-15T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-06-02T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-02-26T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-06-17T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-21T06:00:00+00:00,['receipt'],WI,2021 +Representative Brooks added as a cosponsor,2022-02-01T06:00:00+00:00,[],WI,2021 +Adopted,2022-02-23T06:00:00+00:00,['passage'],WI,2021 +Assembly Amendment 1 offered by Representative Kitchens,2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-04-27T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Representatives S. Rodriguez and Vining added as cosponsors,2021-04-08T05:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a coauthor,2022-01-07T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Wichgers,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Goyke added as a cosponsor,2021-06-23T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-07-29T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-09-27T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-01T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Tittl,2021-05-13T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Zimmerman,2021-05-04T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Stubbs,2021-11-19T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-10T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Schraa added as a coauthor,2021-04-07T05:00:00+00:00,[],WI,2021 +Representative Subeck added as a coauthor,2021-05-10T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-17T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Kitchens,2021-04-12T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-02-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2021-05-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Vining added as a coauthor,2022-03-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-22T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Murphy added as a coauthor,2021-11-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-28T06:00:00+00:00,['receipt'],WI,2021 +Representative Andraca added as a coauthor,2021-10-05T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Petersen,2022-02-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-24T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-02-10T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-01-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-04T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-06T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-22T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-16T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-30T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-02-23T06:00:00+00:00,[],WI,2021 +Representative James added as a coauthor,2021-04-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Allen added as a cosponsor,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-22T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-13T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-02T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-14T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-17T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Kurtz added as a cosponsor,2021-04-23T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Baldeh withdrawn as a cosponsor,2021-08-25T05:00:00+00:00,['withdrawal'],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-05T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Jacque,2022-01-03T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Hesselbein added as a coauthor,2021-10-20T05:00:00+00:00,[],WI,2021 +Representative Wichgers withdrawn as a coauthor,2021-09-15T05:00:00+00:00,['withdrawal'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Stubbs added as a cosponsor,2021-09-21T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-14T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-03-17T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-04T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-29T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-08T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 11-8-2021 pursuant to Senate Rule 18(1),2021-11-05T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-18T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2021-04-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-06-02T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-06-02T05:00:00+00:00,[],WI,2021 +Representative Haywood added as a coauthor,2022-03-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Ballweg added as a coauthor,2022-02-07T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Edming added as a coauthor,2021-10-18T05:00:00+00:00,[],WI,2021 +Representative Wittke added as a cosponsor,2021-10-20T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-22T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-10-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-22T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Adopted,2021-04-13T05:00:00+00:00,['passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-21T06:00:00+00:00,['receipt'],WI,2021 +Representative Ramthun added as a cosponsor,2021-07-08T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-23T05:00:00+00:00,[],WI,2021 +"Refused to withdraw from the committee on Labor and Regulatory Reform, Ayes 12, Noes 20",2021-10-25T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-23T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-01T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-23T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Wittke,2021-05-04T05:00:00+00:00,[],WI,2021 +"Senate Amendment 1 laid on table, Ayes 19, Noes 12",2021-01-04T06:00:00+00:00,['deferral'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Steffen added as a cosponsor,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-06-15T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-01T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-13T05:00:00+00:00,['receipt'],WI,2021 +Senator Felzkowski added as a cosponsor,2022-01-24T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Felzkowski,2021-03-18T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2021-06-23T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-01T06:00:00+00:00,['receipt'],WI,2021 +Senator Ballweg added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-12-16T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Macco,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-02T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Representative Edming added as a coauthor,2021-05-26T05:00:00+00:00,[],WI,2021 +Representative Edming added as a coauthor,2021-03-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-06-16T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-26T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Hesselbein added as a coauthor,2022-02-08T06:00:00+00:00,[],WI,2021 +Representative Plumer added as a cosponsor,2022-01-13T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-08T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-26T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator LeMahieu,2021-11-01T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Senator Felzkowski added as a coauthor,2021-11-05T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Representative Born added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a cosponsor,2021-04-01T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-02-14T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-30T05:00:00+00:00,['receipt'],WI,2021 +Senator Jacque added as a coauthor,2021-10-21T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-27T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-21T06:00:00+00:00,[],WI,2021 +Senator Bewley added as a cosponsor,2022-03-15T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-19T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report without recommendation pursuant to s. 227.19(6)(b), Wisconsin Statutes, by Committee on State Affairs",2021-03-04T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-15T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-04-01T05:00:00+00:00,[],WI,2021 +Senator Agard added as a coauthor,2021-11-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-27T05:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-19T05:00:00+00:00,[],WI,2021 +Representative Considine added as a coauthor,2021-05-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-27T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-28T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-31T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-07-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-18T06:00:00+00:00,['receipt'],WI,2021 +"Joint Committee for Review of Administrative Rules report received pursuant to s.227.26(2)(g), Wisconsin Statutes",2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-03-02T06:00:00+00:00,[],WI,2021 +Representative Dallman added as a cosponsor,2021-08-25T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Kurtz,2021-05-20T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-03-05T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-21T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-18T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-18T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Ohnstad added as a coauthor,2021-06-03T05:00:00+00:00,[],WI,2021 +Representative Sinicki added as a cosponsor,2021-11-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-13T05:00:00+00:00,[],WI,2021 +Representative Knodl added as a cosponsor,2021-11-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-07T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-03-02T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-04T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2021-04-06T05:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives Ohnstad, Shelton and Bowen",2022-02-08T06:00:00+00:00,[],WI,2021 +Representative Brandtjen added as a cosponsor,2022-03-18T05:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Vining, Considine, Brostoff and Moore Omokunde",2021-09-21T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-07T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-11T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-03-08T06:00:00+00:00,[],WI,2021 +Representative Kurtz added as a cosponsor,2021-10-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Carpenter added as a coauthor,2021-09-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Roys added as a cosponsor,2022-03-02T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Steineke,2022-01-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-27T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-04T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-09-29T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Representative Kurtz added as a cosponsor,2021-05-12T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-18T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-10-29T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-02-12T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-10T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-06T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-02-08T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Bernier,2022-01-31T06:00:00+00:00,[],WI,2021 +Representative Knodl added as a coauthor,2021-05-10T05:00:00+00:00,[],WI,2021 +Senator Larson added as a cosponsor,2021-09-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-05-05T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Bowen added as a coauthor,2021-11-01T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-18T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-12-09T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Vos,2022-01-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-19T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Wichgers added as a coauthor,2022-02-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-19T06:00:00+00:00,['receipt'],WI,2021 +Representative Vining added as a coauthor,2021-11-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-06T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-06T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-03-29T05:00:00+00:00,[],WI,2021 +Representative Pronschinske added as a coauthor,2022-01-13T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-25T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Representative Subeck withdrawn as a cosponsor,2022-02-16T06:00:00+00:00,['withdrawal'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Rozar and James added as cosponsors,2021-10-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-22T05:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a cosponsor,2021-06-17T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Oldenburg added as a cosponsor,2021-05-06T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Petersen,2021-03-26T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-21T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-08-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-17T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-03T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 2 offered by Representative Brooks,2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-26T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-20T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-30T05:00:00+00:00,['receipt'],WI,2021 +Representative Bowen added as a coauthor,2021-04-13T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-06-28T05:00:00+00:00,[],WI,2021 +Representative Knodl added as a cosponsor,2021-09-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-20T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-07-07T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-13T05:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-30T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative McGuire added as a coauthor,2021-06-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-09T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-06-02T05:00:00+00:00,[],WI,2021 +Placed on calendar 11-8-2021 pursuant to Senate Rule 18(1),2021-11-05T05:00:00+00:00,[],WI,2021 +Representatives Allen and Schraa added as cosponsors,2021-04-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Senator Cowles added as a coauthor,2021-09-16T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a coauthor,2021-06-10T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-05T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-08T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Krug,2021-11-29T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-12-20T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Rozar,2021-03-05T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-05T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-10T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-03-02T06:00:00+00:00,[],WI,2021 +Representatives Thiesfeldt and Armstrong added as coauthors,2021-06-02T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-08T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-09-14T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-01T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-12-08T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Jacque,2022-02-02T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-28T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Wimberger,2022-02-17T06:00:00+00:00,[],WI,2021 +Representatives Hintz and Subeck added as coauthors,2021-03-03T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-10-27T05:00:00+00:00,['deferral'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-18T05:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a cosponsor,2021-11-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Armstrong added as a coauthor,2021-02-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Senator Marklein added as a coauthor,2021-10-25T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Spiros added as a coauthor,2022-01-27T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-15T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-15T05:00:00+00:00,['receipt'],WI,2021 +Representative Allen added as a cosponsor,2021-06-02T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Allen added as a coauthor,2021-09-15T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-10T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-04-15T05:00:00+00:00,['receipt'],WI,2021 +Representative Moore Omokunde added as a coauthor,2022-01-27T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-02-04T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-21T05:00:00+00:00,['receipt'],WI,2021 +Representative Shelton added as a coauthor,2021-11-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-12T06:00:00+00:00,['receipt'],WI,2021 +Representative Vruwink added as a cosponsor,2021-09-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Moses,2021-05-28T05:00:00+00:00,[],WI,2021 +Representative Moses added as a coauthor,2022-01-12T06:00:00+00:00,[],WI,2021 +"Report without recommendation pursuant to s. 227.26 (2)(h), Wisconsin Statutes",2021-03-04T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-29T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-01T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Kooyenga added as a coauthor,2021-06-08T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Dittrich,2021-04-14T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Representative Schraa withdrawn as a coauthor,2021-10-20T05:00:00+00:00,['withdrawal'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Representative Considine added as a cosponsor,2021-06-23T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Feyen,2021-05-24T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-05-03T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-08T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-12-15T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Murphy added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Representative Ramthun added as a coauthor,2021-10-19T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-07T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-04T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-17T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-22T06:00:00+00:00,['receipt'],WI,2021 +Representative Knodl added as a coauthor,2021-05-10T05:00:00+00:00,[],WI,2021 +Representative Schraa added as a coauthor,2021-12-15T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Billings added as a cosponsor,2021-09-17T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-24T05:00:00+00:00,[],WI,2021 +Representative Kuglitsch added as a cosponsor,2022-01-06T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-14T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-29T05:00:00+00:00,['receipt'],WI,2021 +Representative Ramthun added as a coauthor,2021-02-26T06:00:00+00:00,[],WI,2021 +Representative Moore Omokunde added as a coauthor,2021-10-29T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a cosponsor,2021-06-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-02-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senators Testin and Stroebel added as coauthors,2021-05-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Representative Subeck added as a cosponsor,2022-01-28T06:00:00+00:00,[],WI,2021 +Representative Vruwink added as a cosponsor,2021-06-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-05-05T05:00:00+00:00,[],WI,2021 +Senator Bewley added as a coauthor,2022-03-15T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-02T06:00:00+00:00,[],WI,2021 +Representative Billings added as a cosponsor,2021-11-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-13T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Wanggaard,2022-01-20T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-05T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-21T06:00:00+00:00,['receipt'],WI,2021 +Representative Cabral-Guevara withdrawn as a coauthor,2021-05-04T05:00:00+00:00,['withdrawal'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-28T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-23T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-09-14T05:00:00+00:00,[],WI,2021 +Representative Penterman added as a coauthor,2021-08-25T05:00:00+00:00,[],WI,2021 +Representative Edming added as a cosponsor,2021-01-27T06:00:00+00:00,[],WI,2021 +"Representatives Tusler, Spiros and Callahan added as coauthors",2021-06-11T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-11-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Ramthun added as a coauthor,2021-07-08T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-07T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-16T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-13T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-22T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-05-10T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Stubbs and Steineke added as coauthors,2021-05-06T05:00:00+00:00,[],WI,2021 +Adopted,2021-04-13T05:00:00+00:00,['passage'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-27T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Penterman added as a cosponsor,2021-08-04T05:00:00+00:00,[],WI,2021 +Representative Hong withdrawn as a coauthor,2021-05-10T05:00:00+00:00,['withdrawal'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Substitute Amendment 1 offered by Representatives Steineke and Stubbs,2021-05-12T05:00:00+00:00,[],WI,2021 +Representative Stubbs added as a coauthor,2021-09-20T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Ramthun added as a cosponsor,2021-10-12T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-09-29T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-02T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-20T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-04-20T05:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Dallman,2021-10-15T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-30T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative James added as a cosponsor,2021-04-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Allen added as a cosponsor,2021-02-15T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-24T06:00:00+00:00,['receipt'],WI,2021 +Senator Johnson added as a cosponsor,2021-04-20T05:00:00+00:00,[],WI,2021 +Representative Brostoff added as a cosponsor,2021-04-14T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-09T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-10T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-07-21T05:00:00+00:00,[],WI,2021 +Representative Hong added as a coauthor,2021-10-25T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-01-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Representative Bowen added as a cosponsor,2021-03-24T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Representatives Stubbs and Bowen added as cosponsors,2021-03-10T06:00:00+00:00,[],WI,2021 +Representative Duchow added as a coauthor,2021-05-13T05:00:00+00:00,[],WI,2021 +Representative Plumer added as a coauthor,2021-10-11T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-12-09T06:00:00+00:00,[],WI,2021 +Representative Sortwell withdrawn as a coauthor,2021-03-25T05:00:00+00:00,['withdrawal'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Cowles,2021-05-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a coauthor,2021-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-11T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Representative Allen added as a coauthor,2021-02-23T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Withdrawn from committee on Veterans and Military Affairs and referred to committee on Family Law pursuant to Assembly Rule 42 (3)(c),2022-01-04T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Plumer added as a coauthor,2021-05-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-09T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-12T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-08-26T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-07T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-13T05:00:00+00:00,['receipt'],WI,2021 +Representative Bowen added as a cosponsor,2021-09-08T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-07-12T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-15T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Adopted,2021-01-28T06:00:00+00:00,['passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-11-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-05T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Representative Ramthun added as a cosponsor,2021-03-04T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-29T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Dittrich added as a coauthor,2021-04-21T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-03-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Shelton added as a cosponsor,2021-04-26T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Thiesfeldt,2021-05-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-16T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative VanderMeer,2021-03-04T06:00:00+00:00,[],WI,2021 +Representative Allen added as a coauthor,2021-03-04T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +Representatives Kurtz and Shelton added as coauthors,2021-04-23T05:00:00+00:00,[],WI,2021 +Representatives Bowen and Steffen added as cosponsors,2021-08-25T05:00:00+00:00,[],WI,2021 +Representative Sinicki added as a cosponsor,2021-05-10T05:00:00+00:00,[],WI,2021 +Public hearing held by committee on Corrections,2021-09-14T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-17T05:00:00+00:00,[],WI,2021 +Representative L. Myers added as a cosponsor,2021-04-20T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-10T06:00:00+00:00,['receipt'],WI,2021 +Senator Felzkowski added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-11-04T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Representative Vruwink added as a coauthor,2022-07-14T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-18T06:00:00+00:00,['receipt'],WI,2021 +"Senators Testin, Cowles, Ballweg, Feyen, Marklein, Bewley and L. Taylor added as coauthors",2021-05-10T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-05T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-26T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Representative Bowen added as a cosponsor,2021-04-14T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-27T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Skowronski added as a coauthor,2021-12-09T06:00:00+00:00,[],WI,2021 +Representative Shelton added as a coauthor,2021-04-23T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-07-22T05:00:00+00:00,['receipt'],WI,2021 +Representative Hong added as a coauthor,2021-04-12T05:00:00+00:00,[],WI,2021 +Representative Conley added as a coauthor,2021-07-12T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Ringhand added as a cosponsor,2022-01-14T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-12T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-02-11T06:00:00+00:00,[],WI,2021 +Representative Mursau added as a cosponsor,2021-08-18T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-03-31T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-19T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-08-25T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Representative Hong added as a coauthor,2021-10-25T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-17T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-27T05:00:00+00:00,['receipt'],WI,2021 +Representative Oldenburg withdrawn as a cosponsor,2021-11-17T06:00:00+00:00,['withdrawal'],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-08T06:00:00+00:00,['receipt'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Felzkowski,2022-02-09T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-07-15T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-12T06:00:00+00:00,[],WI,2021 +Representative Andraca added as a coauthor,2022-02-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-02-08T06:00:00+00:00,[],WI,2021 +Adopted,2021-04-13T05:00:00+00:00,['passage'],WI,2021 +Senate Amendment 1 offered by Senator Darling,2021-02-25T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2021-08-05T05:00:00+00:00,[],WI,2021 +Representative Skowronski withdrawn as a coauthor,2021-09-08T05:00:00+00:00,['withdrawal'],WI,2021 +Fiscal estimate received,2022-01-28T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-08T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-10T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Knodl,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Bowen withdrawn as a coauthor,2021-06-08T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Brandtjen added as a cosponsor,2022-02-08T06:00:00+00:00,[],WI,2021 +LRB correction,2021-10-12T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-08T06:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Adopted,2021-02-16T06:00:00+00:00,['passage'],WI,2021 +Fiscal estimate received,2022-02-18T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-15T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-03T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Representative Snodgrass added as a cosponsor,2022-03-14T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Brooks,2021-06-24T05:00:00+00:00,[],WI,2021 +Representative Andraca added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Larson,2021-03-24T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-03-23T05:00:00+00:00,['deferral'],WI,2021 +Fiscal estimate received,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Tusler added as a coauthor,2021-10-21T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-08T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 2 offered by Senator Cowles,2022-01-14T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-19T05:00:00+00:00,[],WI,2021 +Representative Snodgrass added as a coauthor,2022-05-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-22T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-01T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Representatives Ramthun and Skowronski added as coauthors,2021-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Bowen added as a cosponsor,2021-09-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-03T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2021-04-27T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-07-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-10T06:00:00+00:00,[],WI,2021 +Representative Kuglitsch added as a cosponsor,2021-01-21T06:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-25T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-18T06:00:00+00:00,['receipt'],WI,2021 +Senator Stroebel added as a cosponsor,2021-03-15T05:00:00+00:00,[],WI,2021 +Representative Tusler added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Sortwell,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-28T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Bernier,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Schraa added as a cosponsor,2022-02-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-13T05:00:00+00:00,['receipt'],WI,2021 +LRB correction,2021-03-09T06:00:00+00:00,[],WI,2021 +LRB correction,2021-10-12T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2022-01-14T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-18T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-10-13T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Neylon,2021-04-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-09T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-22T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report without recommendation pursuant to s. 227.26(2)(h), Wisconsin Statutes, by Committee on State Affairs",2021-03-04T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Cowles,2022-01-13T06:00:00+00:00,[],WI,2021 +Representative Emerson added as a cosponsor,2021-11-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-21T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-24T05:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a coauthor,2021-03-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-24T05:00:00+00:00,['receipt'],WI,2021 +"Senators Darling, Wanggaard and L. Taylor added as coauthors",2021-06-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-22T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-21T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2021-02-19T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-14T06:00:00+00:00,['receipt'],WI,2021 +"Report without recommendation pursuant to s. 227.26 (2)(h), Wisconsin Statutes",2021-03-04T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-07-09T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-08-26T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-15T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-10T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-11T06:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2021-03-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-18T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-05-19T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-01T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-05T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Representative Behnke added as a cosponsor,2021-10-28T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-24T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Knodl added as a cosponsor,2021-09-09T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Representative Dittrich added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-06T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-03T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-01-05T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-06-02T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-02T05:00:00+00:00,['receipt'],WI,2021 +Withdrawn from committee on Ways and Means and referred to committee on State Affairs pursuant to Assemby Rule 42 (3)(c),2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Kurtz added as a coauthor,2021-09-27T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-10T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Kooyenga,2021-07-22T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Assembly Amendment 1 offered by Representative Knodl,2021-03-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Representative Vining added as a cosponsor,2022-03-22T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-03-01T06:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2021-09-01T05:00:00+00:00,[],WI,2021 +Representative Billings added as a cosponsor,2021-11-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a coauthor,2021-10-11T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-11-10T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-01-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Steffen added as a coauthor,2021-10-08T05:00:00+00:00,[],WI,2021 +Representative Ramthun added as a coauthor,2021-03-04T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-10T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-02T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-18T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Senator L. Taylor added as a coauthor,2022-01-12T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Riemer added as a coauthor,2022-01-26T06:00:00+00:00,[],WI,2021 +Representative Emerson added as a cosponsor,2021-03-19T05:00:00+00:00,[],WI,2021 +Senator Erpenbach added as a coauthor,2021-02-09T06:00:00+00:00,[],WI,2021 +Withdrawn from committee on Environment and referred to committee on Housing and Real Estate pursuant to Assembly Rule 42 (3)(c),2021-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-02-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-06-15T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-21T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 2 offered by Representative Duchow,2022-02-21T06:00:00+00:00,[],WI,2021 +Representative Snodgrass added as a coauthor,2022-03-17T05:00:00+00:00,[],WI,2021 +Adopted,2022-02-22T06:00:00+00:00,['passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +LRB correction,2022-02-08T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Felzkowski,2021-10-21T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-17T06:00:00+00:00,['deferral'],WI,2021 +Fiscal estimate received,2022-03-15T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-03-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-14T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2021-06-14T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-11T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Wichgers,2022-01-31T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-11-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Representative Subeck added as a cosponsor,2021-04-19T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-29T05:00:00+00:00,[],WI,2021 +Representative Vining added as a cosponsor,2021-11-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-25T05:00:00+00:00,['receipt'],WI,2021 +Representative Skowronski added as a cosponsor,2022-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-14T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-24T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Feyen,2021-04-22T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-10T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-03-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-29T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-14T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-25T05:00:00+00:00,['receipt'],WI,2021 +Representatives Brooks and Steffen added as coauthors,2021-04-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-09-23T05:00:00+00:00,[],WI,2021 +Representative Tittl added as a cosponsor,2021-06-15T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-12T06:00:00+00:00,[],WI,2021 +Representative Bowen added as a coauthor,2021-09-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-28T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-12-20T06:00:00+00:00,['receipt'],WI,2021 +Representative Katsma added as a cosponsor,2021-02-04T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-07-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-08-17T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Born added as a coauthor,2021-04-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-02T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +LRB correction,2021-03-15T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-31T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-09-16T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Representative Hong added as a coauthor,2021-08-24T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report without recommendation pursuant to s. 227.26(2)(h), Wisconsin Statutes, by Committee on State Affairs",2021-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Larson added as a cosponsor,2021-09-16T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Wichgers,2021-10-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-03T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Skowronski added as a coauthor,2022-02-02T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-22T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-07-06T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-05-25T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-21T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-15T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-15T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-17T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 adopted,2021-04-13T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Plumer added as a coauthor,2021-06-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-17T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-06-02T05:00:00+00:00,[],WI,2021 +Representative Born added as a cosponsor,2021-06-22T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-21T05:00:00+00:00,['receipt'],WI,2021 +Representative J. Rodriguez added as a cosponsor,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-05-05T05:00:00+00:00,[],WI,2021 +Senator Bewley withdrawn as a cosponsor,2021-03-31T05:00:00+00:00,['withdrawal'],WI,2021 +Referred to calendar of 6-29-2021,2021-06-25T05:00:00+00:00,['referral'],WI,2021 +Representative Vining added as a cosponsor,2021-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-04T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Murphy added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Bernier,2021-10-05T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative James added as a coauthor,2021-10-06T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-01-05T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Johnson added as a cosponsor,2021-01-25T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-05T06:00:00+00:00,[],WI,2021 +Representative Haywood added as a cosponsor,2021-11-17T06:00:00+00:00,[],WI,2021 +Representative Tittl added as a coauthor,2022-02-09T06:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a cosponsor,2021-04-01T05:00:00+00:00,[],WI,2021 +Representative Tusler added as a cosponsor,2021-03-19T05:00:00+00:00,[],WI,2021 +Representative Shankland added as a coauthor,2022-03-23T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-20T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Felzkowski,2022-02-21T06:00:00+00:00,[],WI,2021 +"Refused to refer to committee on Senate Organization, Ayes 12, Noes 18",2021-06-23T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-22T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Bernier,2022-03-10T06:00:00+00:00,[],WI,2021 +Representative Dittrich added as a cosponsor,2022-02-07T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-02-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-19T05:00:00+00:00,[],WI,2021 +Representative Brostoff added as a cosponsor,2021-04-14T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Macco,2021-02-22T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-09-16T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-01-21T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2022-02-22T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Kitchens,2022-01-13T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-29T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-05-25T05:00:00+00:00,[],WI,2021 +Representative Vining added as a cosponsor,2021-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-04T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Knodl added as a coauthor,2021-11-03T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Ballweg,2021-10-20T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-08-31T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-17T05:00:00+00:00,[],WI,2021 +"Adopted, Ayes 31, Noes 0",2021-01-04T06:00:00+00:00,['passage'],WI,2021 +Fiscal estimate received,2021-09-13T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-11T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Edming and Tittl added as coauthors,2021-03-01T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Behnke added as a coauthor,2021-10-28T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Moore Omokunde added as a coauthor,2021-11-15T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Tittl,2021-03-01T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Sortwell,2021-03-08T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-09-15T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-01T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-08T05:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2022-02-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-04T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-07T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Penterman added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-10T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +LRB correction,2022-10-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-29T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senators Felzkowski and Bernier,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-29T05:00:00+00:00,['receipt'],WI,2021 +Representative Andraca added as a coauthor,2021-04-12T05:00:00+00:00,[],WI,2021 +Representatives Moses and Allen added as coauthors,2022-01-13T06:00:00+00:00,[],WI,2021 +Senator Pfaff added as a coauthor,2021-06-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Vining added as a cosponsor,2022-07-21T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-01-29T06:00:00+00:00,[],WI,2021 +Representative Vruwink added as a coauthor,2022-01-04T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Oldenburg,2021-09-13T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-17T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Representatives Steffen and Murphy added as coauthors,2021-10-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-19T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-08T05:00:00+00:00,[],WI,2021 +Representative Ramthun added as a coauthor,2021-12-14T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2022-02-11T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative VanderMeer,2021-12-06T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Representative Kurtz added as a cosponsor,2021-06-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-02T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-07T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-14T06:00:00+00:00,['receipt'],WI,2021 +"Refused to suspend rules to withdraw from committee on Senate Organization, Ayes 11, Noes 20",2021-03-16T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Darling,2022-03-01T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-23T05:00:00+00:00,[],WI,2021 +Representative Andraca added as a coauthor,2022-04-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-20T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-01T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-07T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-11-17T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-21T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-23T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-19T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-01T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-20T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-23T06:00:00+00:00,['receipt'],WI,2021 +Senator Stafsholt added as a coauthor,2021-09-30T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-01T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-10-29T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-29T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-23T05:00:00+00:00,['receipt'],WI,2021 +Representative Allen added as a cosponsor,2021-02-23T06:00:00+00:00,[],WI,2021 +Adopted,2021-03-16T05:00:00+00:00,['passage'],WI,2021 +Fiscal estimate received,2021-03-04T06:00:00+00:00,['receipt'],WI,2021 +Senator Smith added as a cosponsor,2021-03-03T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Shelton,2022-03-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-22T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Thiesfeldt withdrawn as a cosponsor,2021-12-14T06:00:00+00:00,['withdrawal'],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2022-01-24T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +"Report without recommendation pursuant to s. 227.26 (2)(h), Wisconsin Statutes",2021-03-04T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-16T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Knodl added as a cosponsor,2021-06-24T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-10T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Testin,2021-10-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-08T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Edming added as a coauthor,2021-03-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-02-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-12-20T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Mursau,2022-02-08T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-02-24T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2021-08-05T05:00:00+00:00,[],WI,2021 +Representative Novak added as a cosponsor,2022-02-07T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-25T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-11T06:00:00+00:00,['receipt'],WI,2021 +Representative Emerson added as a coauthor,2021-09-29T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-18T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 15, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Allen added as a cosponsor,2021-04-07T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-15T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-11T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Jagler added as a coauthor,2021-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-05-05T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-20T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Brandtjen,2021-03-25T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-30T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-03-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-03T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-07T05:00:00+00:00,[],WI,2021 +Senator Agard added as a coauthor,2021-11-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-22T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-07-19T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-03T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-03-02T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-12-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Murphy,2021-09-15T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Children and Families, Ayes 12, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 offered by Senator Feyen,2022-01-14T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-14T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-14T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-08T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 7, Noes 5",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Dittrich,2021-10-26T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Adopted,2021-04-14T05:00:00+00:00,['passage'],WI,2021 +Representative Murphy added as a cosponsor,2022-01-24T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-26-2021 pursuant to Senate Rule 18(1),2021-01-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Dittrich,2022-01-31T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-26T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representatives Ramthun and Kitchens added as coauthors,2021-03-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-01T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Senator Larson added as a coauthor,2021-10-19T05:00:00+00:00,[],WI,2021 +Representative McGuire added as a cosponsor,2021-12-01T06:00:00+00:00,[],WI,2021 +"Adopted, Ayes 23, Noes 7",2021-06-23T05:00:00+00:00,['passage'],WI,2021 +Senate Substitute Amendment 1 offered by Senators Kooyenga and Ringhand,2021-04-12T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-11T05:00:00+00:00,[],WI,2021 +Representative Dallman added as a cosponsor,2021-04-12T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 2 offered by Representative VanderMeer,2021-12-06T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-12-14T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Stroebel,2022-01-28T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-05T06:00:00+00:00,[],WI,2021 +Laid on table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Ayes 13, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Substitute Amendment 1 offered by Senator LeMahieu,2021-04-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Representative Plumer added as a coauthor,2021-03-02T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-21T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Shankland,2022-01-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-10T05:00:00+00:00,['receipt'],WI,2021 +Adopted,2021-10-26T05:00:00+00:00,['passage'],WI,2021 +Fiscal estimate received,2021-09-17T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-31T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-05T06:00:00+00:00,['receipt'],WI,2021 +Senator Feyen added as a cosponsor,2021-07-29T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Adopted,2021-04-13T05:00:00+00:00,['passage'],WI,2021 +"Representatives Moses, Drake, B. Meyers, Edming, Spiros and Callahan added as cosponsors",2021-05-10T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-14T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-22T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Fiscal estimate received,2022-03-17T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +Representative Pfaff added as a cosponsor,2022-03-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers withdrawn as a cosponsor,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2021-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-09-14T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Representative Billings added as a cosponsor,2021-11-03T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Jobs and the Economy, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 12, Noes 1",2021-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Petrowski,2022-02-09T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-15T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-03-09T06:00:00+00:00,[],WI,2021 +Representative Bowen added as a cosponsor,2021-04-14T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Brooks,2021-10-18T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Stubbs and Subeck added as coauthors,2021-10-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Adopted,2021-03-17T05:00:00+00:00,['passage'],WI,2021 +Representative Oldenburg added as a coauthor,2021-02-26T06:00:00+00:00,[],WI,2021 +Senator Carpenter added as a coauthor,2021-04-14T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-04T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Cowles,2021-03-15T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Behnke,2021-06-14T05:00:00+00:00,[],WI,2021 +LRB correction,2021-10-11T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 11, Noes 5",2021-01-05T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Vining added as a coauthor,2022-03-22T05:00:00+00:00,[],WI,2021 +Senator Wanggaard added as a cosponsor,2021-10-13T05:00:00+00:00,[],WI,2021 +Representative S. Rodriguez added as a coauthor,2021-11-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-01-04T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-26T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-03-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-31T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-07T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-03-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-11-10T06:00:00+00:00,[],WI,2021 +Representative Billings added as a coauthor,2021-11-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Petrowski,2021-10-26T05:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a coauthor,2021-06-03T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2022-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-04T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-02T05:00:00+00:00,['receipt'],WI,2021 +Representative L. Myers added as a coauthor,2021-06-08T05:00:00+00:00,[],WI,2021 +Representative Cabral-Guevara withdrawn as a coauthor,2021-09-17T05:00:00+00:00,['withdrawal'],WI,2021 +Referred to committee on Rules,2021-03-04T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2021-10-07T05:00:00+00:00,[],WI,2021 +Representative Loudenbeck added as a coauthor,2021-05-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-18T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Moses,2021-10-27T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-01-26T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Shelton added as a cosponsor,2021-04-26T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-04T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Ballweg,2022-01-12T06:00:00+00:00,[],WI,2021 +Representatives Loudenbeck and Plumer added as coauthors,2021-03-02T06:00:00+00:00,[],WI,2021 +Representative Dittrich added as a coauthor,2021-12-15T06:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2021-04-07T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Ballweg,2022-02-07T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Murphy added as a coauthor,2021-11-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Schraa added as a cosponsor,2021-04-07T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-05T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-22T06:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2021-10-27T05:00:00+00:00,['deferral'],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 1",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Marklein,2022-01-26T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 14, Noes 0",2021-06-28T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Schraa added as a cosponsor,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-09T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-13T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-23T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-20T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-03-05T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Family Law, Ayes 9, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +LRB correction,2021-04-13T05:00:00+00:00,[],WI,2021 +Representative Baldeh withdrawn as a coauthor,2021-03-25T05:00:00+00:00,['withdrawal'],WI,2021 +Public hearing held,2021-03-04T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 8, Noes 4",2021-04-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Thiesfeldt,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-03T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-18T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-01T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-21T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-11T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-16T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-03-04T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-02-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-12T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-11-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Conley and Spreitzer added as cosponsors,2021-06-16T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Considine,2021-09-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-02T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-05-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-28T05:00:00+00:00,[],WI,2021 +Representative Allen added as a coauthor,2021-06-02T05:00:00+00:00,[],WI,2021 +LRB correction,2021-03-03T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-12-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-30T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-04-27T05:00:00+00:00,[],WI,2021 +Representative Penterman added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-19T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-08T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Stafsholt,2021-09-02T05:00:00+00:00,[],WI,2021 +Representative Shelton added as a coauthor,2021-11-01T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-04T05:00:00+00:00,[],WI,2021 +Representative Ramthun added as a coauthor,2021-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Petrowski,2021-09-21T05:00:00+00:00,[],WI,2021 +Representative S. Rodriguez added as a coauthor,2021-01-28T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Housing and Real Estate, Ayes 10, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Allen added as a cosponsor,2021-04-14T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-05T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Ballweg,2021-11-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-08-12T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-12T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-09-16T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-08-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-26T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-12-15T06:00:00+00:00,[],WI,2021 +Adopted,2021-04-14T05:00:00+00:00,['passage'],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-03-11T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Steffen,2021-01-25T06:00:00+00:00,[],WI,2021 +Adopted,2021-04-14T05:00:00+00:00,['passage'],WI,2021 +Fiscal estimate received,2021-08-17T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-09T06:00:00+00:00,['receipt'],WI,2021 +Representative Bowen added as a cosponsor,2021-04-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-09T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-03-02T06:00:00+00:00,[],WI,2021 +Representative Oldenburg added as a cosponsor,2021-02-26T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-26T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-01-21T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-18T05:00:00+00:00,['receipt'],WI,2021 +"Representatives James, Plumer and Andraca added as coauthors",2021-09-27T05:00:00+00:00,[],WI,2021 +Representative James added as a cosponsor,2021-09-03T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Representative Allen added as a coauthor,2021-05-10T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 8, Noes 4",2021-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-15T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Swearingen,2021-08-30T05:00:00+00:00,[],WI,2021 +Representative S. Rodriguez added as a cosponsor,2021-01-28T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Schraa added as a coauthor,2021-06-17T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-05T05:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2021-05-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-10T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-03-02T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Loudenbeck added as a cosponsor,2021-06-28T05:00:00+00:00,[],WI,2021 +Representative Shelton added as a cosponsor,2021-09-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-02-18T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-29T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-21T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Spreitzer added as a coauthor,2021-10-29T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 3, Noes 2",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 9, Noes 4",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-29T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-07-29T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-29T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Rules suspended and taken up,2022-01-25T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-07T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Representative Novak added as a coauthor,2021-09-20T05:00:00+00:00,[],WI,2021 +Representative Edming added as a cosponsor,2021-06-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-11T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 3, Noes 2",2021-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 offered by Senator Roth,2022-01-12T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-27T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-29T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-05T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 3, Noes 2",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-09-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-09T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Neylon,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Housing and Real Estate, Ayes 8, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-12-21T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-11-30T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 14, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Duchow added as a coauthor,2021-03-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-05T05:00:00+00:00,['receipt'],WI,2021 +Representative Tusler added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +Adopted,2021-11-08T06:00:00+00:00,['passage'],WI,2021 +Representative Ramthun added as a coauthor,2021-03-02T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-20T05:00:00+00:00,[],WI,2021 +Representative Considine added as a cosponsor,2021-11-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Felzkowski,2021-03-30T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 5, Noes 0",2021-03-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Goyke added as a cosponsor,2021-10-11T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Veterans and Military Affairs and Constitution and Federalism, Ayes 5, Noes 0",2022-02-25T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-03-07T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Universities and Technical Colleges, Ayes 5, Noes 4",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-07-30T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-05-26T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Jacque added as a cosponsor,2021-09-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-19T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2021-10-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-02T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Representatives Allen and Thiesfeldt added as coauthors,2021-06-02T05:00:00+00:00,[],WI,2021 +Adopted,2021-06-23T05:00:00+00:00,['passage'],WI,2021 +Public hearing held,2021-03-18T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Corrections, Ayes 6, Noes 4",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 offered by Senator Ballweg,2021-07-19T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-03T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 14, Noes 0",2021-06-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-26T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-03-02T06:00:00+00:00,[],WI,2021 +Read,2021-03-16T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Adopted,2021-06-23T05:00:00+00:00,['passage'],WI,2021 +Public hearing held,2021-12-14T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-09-27T05:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a coauthor,2021-10-29T05:00:00+00:00,[],WI,2021 +Representative Andraca added as a cosponsor,2021-07-02T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2021-05-05T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Petryk and Moses added as cosponsors,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-14T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Family Law, Ayes 8, Noes 0",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Krug added as a coauthor,2022-01-26T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-11-17T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Kitchens,2022-02-07T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2021-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-10-15T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-24T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +"Joint Committee for Review of Administrative Rules report received pursuant to s. 227.26(2)(g), Wisconsin Statutes",2021-06-28T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +Representative James added as a cosponsor,2021-08-25T05:00:00+00:00,[],WI,2021 +Senator Jagler added as a coauthor,2021-10-21T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Knodl,2021-06-18T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Roth,2022-01-12T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Magnafici,2021-11-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Senator Wanggaard added as a coauthor,2022-02-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-23T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-23T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Duchow added as a coauthor,2021-05-13T05:00:00+00:00,[],WI,2021 +"Senate Substitute Amendment 1 offered by Senators Smith, Agard, Erpenbach, Bewley, Carpenter, Wirch, Ringhand, Pfaff, Johnson, Roys, L. Taylor and Larson",2021-09-28T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Steffen,2021-09-01T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Representative Schraa added as a coauthor,2021-04-30T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-12T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-14T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Thiesfeldt,2021-09-30T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Feyen,2021-05-04T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-29T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-20T05:00:00+00:00,[],WI,2021 +Representative Snyder added as a coauthor,2022-02-09T06:00:00+00:00,[],WI,2021 +Representatives Conley and Vining added as cosponsors,2022-02-24T06:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2021-08-04T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-03-12T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-15T06:00:00+00:00,[],WI,2021 +Representative Doyle added as a cosponsor,2021-10-27T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Assembly Amendment 3 offered by Representative Duchow,2022-02-21T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-22T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-02T06:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a cosponsor,2022-01-05T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-02T05:00:00+00:00,['receipt'],WI,2021 +Representative Tittl added as a coauthor,2021-06-15T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-18T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-08-12T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Representatives Snodgrass and Andraca added as coauthors,2022-02-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-12T06:00:00+00:00,['receipt'],WI,2021 +Representative Ramthun added as a cosponsor,2021-10-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Ramthun added as a coauthor,2021-09-29T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Representative Plumer added as a cosponsor,2021-05-20T05:00:00+00:00,[],WI,2021 +Representatives Ramthun and Kitchens added as coauthors,2021-03-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-10T06:00:00+00:00,['receipt'],WI,2021 +Representative Dittrich added as a cosponsor,2021-12-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-06T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 7, Noes 4",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-08-27T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-18T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-29T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Carpenter,2021-06-09T05:00:00+00:00,[],WI,2021 +Representative Andraca added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +"Report adoption recommended by Committee on State Affairs, Ayes 8, Noes 5",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 2 offered by Representative Spiros,2022-01-10T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 2 offered by Representative McGuire,2022-02-21T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-08T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2021-10-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-09-08T05:00:00+00:00,['receipt'],WI,2021 +Representative Vruwink added as a coauthor,2022-01-04T06:00:00+00:00,[],WI,2021 +Representative Sinicki added as a cosponsor,2022-02-02T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-03-17T05:00:00+00:00,['deferral'],WI,2021 +Fiscal estimate received,2022-03-30T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Steffen,2021-06-11T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-18T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-23T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-10T05:00:00+00:00,[],WI,2021 +Representative Subeck added as a coauthor,2021-04-27T05:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives Edming, Macco and Ramthun",2021-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 12, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-11-09T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-09T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-03T06:00:00+00:00,[],WI,2021 +Representative Brandtjen added as a cosponsor,2022-02-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-01T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Representatives Hong, S. Rodriguez and Wittke added as coauthors",2021-04-08T05:00:00+00:00,[],WI,2021 +"Senate Amendment 1 offered by Senators Darling, Wanggaard and Jacque",2022-02-17T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Dallman,2021-10-18T05:00:00+00:00,[],WI,2021 +Rules suspended and taken up,2022-01-25T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-08T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Assembly Amendment 1 offered by Representative James,2022-02-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-23T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-11T06:00:00+00:00,[],WI,2021 +Representative Armstrong withdrawn as a cosponsor,2021-11-18T06:00:00+00:00,['withdrawal'],WI,2021 +Public hearing held,2021-05-27T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-24T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-22T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-15T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-10-14T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-05T05:00:00+00:00,[],WI,2021 +Adopted,2021-10-27T05:00:00+00:00,['passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Snodgrass added as a coauthor,2021-10-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-01T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-12T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2021-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative Zimmerman,2021-11-16T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Roth,2022-03-10T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Wanggaard,2021-05-04T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-06-17T05:00:00+00:00,[],WI,2021 +Executive action taken by committee on Corrections,2021-09-21T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Tittl,2021-04-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-21T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-02T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-28T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Withdrawn from committee on Colleges and Universities and referred to committee on Agriculture pursuant to Assembly Rule 42 (3)(c),2021-03-25T05:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2021-11-03T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-06T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-08T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-02T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-25T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-28T05:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2021-05-10T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representatives Edming and Tittl added as coauthors,2021-03-01T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Representative Vruwink added as a coauthor,2021-12-23T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-07T05:00:00+00:00,[],WI,2021 +Representative Edming withdrawn as a coauthor,2021-10-21T05:00:00+00:00,['withdrawal'],WI,2021 +Executive action taken,2021-10-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-25T05:00:00+00:00,['receipt'],WI,2021 +Representative Snodgrass added as a cosponsor,2022-01-19T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-10-27T05:00:00+00:00,[],WI,2021 +"Joint Committee for Review of Administrative Rules report received pursuant to s. 227.26(2)(g), Wisconsin Statutes",2021-06-28T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Steffen,2021-09-30T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Steffen,2022-01-28T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-24T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Steffen added as a coauthor,2021-09-15T05:00:00+00:00,[],WI,2021 +Representative Haywood added as a coauthor,2021-11-17T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 3, Noes 2",2021-01-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-05-26T05:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Shankland, Hesselbein, Anderson, Emerson and Stubbs",2021-06-01T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-23T05:00:00+00:00,['receipt'],WI,2021 +Representative Penterman added as a cosponsor,2021-08-26T05:00:00+00:00,[],WI,2021 +"Adopted, Ayes 56, Noes 36",2021-04-13T05:00:00+00:00,['passage'],WI,2021 +Executive action taken,2021-04-01T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-09T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-17T06:00:00+00:00,['withdrawal'],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Ayes 13, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Penterman added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-09T05:00:00+00:00,[],WI,2021 +Representative Brostoff added as a coauthor,2021-05-04T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a cosponsor,2021-03-05T06:00:00+00:00,[],WI,2021 +Representative L. Myers added as a coauthor,2021-07-21T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-04T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Financial Institutions, Ayes 9, Noes 0",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 12, Noes 1",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Subeck added as a coauthor,2021-10-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Representative Stubbs added as a cosponsor,2021-09-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-10T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-12-15T06:00:00+00:00,[],WI,2021 +Representative Goyke added as a cosponsor,2022-01-03T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-10-06T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-11-30T06:00:00+00:00,[],WI,2021 +Representative Vining added as a coauthor,2022-07-20T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-25T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-01T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Macco,2022-02-07T06:00:00+00:00,[],WI,2021 +Adopted,2021-10-25T05:00:00+00:00,['passage'],WI,2021 +Executive action taken,2022-02-21T06:00:00+00:00,[],WI,2021 +LRB correction (Senate Amendment 1),2021-03-02T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-07T06:00:00+00:00,[],WI,2021 +Representative Spiros added as a coauthor,2021-02-10T06:00:00+00:00,[],WI,2021 +Representative L. Myers added as a coauthor,2021-05-18T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-05T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-18T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-05-25T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Dallman added as a coauthor,2022-02-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Wanggaard,2022-02-07T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-04T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-11-02T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-29T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-27T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Callahan,2022-02-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-03-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-13T05:00:00+00:00,['receipt'],WI,2021 +Withdrawn from committee on Agriculture and referred to committee on State Affairs pursuant to Assembly Rule 42 (3)(c),2021-11-30T06:00:00+00:00,['referral-committee'],WI,2021 +"Report without recommendation pursuant to s. 227.26 (2)(h), Wisconsin Statutes",2021-03-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Felzkowski added as a coauthor,2021-03-16T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Representative Bowen added as a coauthor,2021-10-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 13, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Adopted,2021-04-14T05:00:00+00:00,['passage'],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 4, Noes 0",2021-04-05T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Brooks added as a coauthor,2022-02-09T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-21T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-05-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-07T05:00:00+00:00,['receipt'],WI,2021 +Representative Conley added as a coauthor,2021-04-19T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Small Business Development, Ayes 9, Noes 4",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Feyen,2022-01-04T06:00:00+00:00,[],WI,2021 +Representative Armstrong added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +Read,2022-02-15T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-26T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +LRB correction,2022-02-24T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-06-08T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-11-03T05:00:00+00:00,[],WI,2021 +Senator Smith added as a cosponsor,2021-06-08T05:00:00+00:00,[],WI,2021 +Representative Ramthun added as a coauthor,2021-10-12T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-11-03T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary, Ayes 8, Noes 1",2021-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Representative Ramthun added as a coauthor,2021-03-09T06:00:00+00:00,[],WI,2021 +Representative Vining added as a cosponsor,2021-03-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-07T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-11T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Family Law, Ayes 9, Noes 0",2021-03-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Family Law, Ayes 6, Noes 3",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Ramthun added as a coauthor,2021-10-12T05:00:00+00:00,[],WI,2021 +Representative Schraa added as a cosponsor,2021-10-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Pronschinske,2021-10-19T05:00:00+00:00,[],WI,2021 +Senator Roth added as a coauthor,2021-10-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-15T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-11-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-30T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-13T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2022-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-05-05T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-11-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Senator Johnson added as a coauthor,2021-10-26T05:00:00+00:00,[],WI,2021 +Representative Gundrum withdrawn as a coauthor,2021-09-16T05:00:00+00:00,['withdrawal'],WI,2021 +Public hearing held,2021-10-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-05T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-15T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2021-10-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Larson added as a coauthor,2022-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-16T05:00:00+00:00,['receipt'],WI,2021 +Representative Allen added as a coauthor,2021-05-25T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-01T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-02T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 2 offered by Representative Steineke,2022-01-14T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-17T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Petersen,2021-04-09T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Summerfield,2021-05-10T05:00:00+00:00,[],WI,2021 +Representative James added as a coauthor,2021-08-25T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-03-23T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-28T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-25T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2022-02-07T06:00:00+00:00,[],WI,2021 +Representative Ramthun added as a coauthor,2021-03-04T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Adopted,2022-02-17T06:00:00+00:00,['passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Ohnstad added as a cosponsor,2021-12-06T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-08T05:00:00+00:00,[],WI,2021 +Placed on calendar 11-8-2021 pursuant to Senate Rule 18(1),2021-11-05T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 7, Noes 0",2021-09-24T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Senator Wanggaard added as a coauthor,2021-04-29T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-17T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-09-20T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Family Law, Ayes 9, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-05-05T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Testin,2021-10-08T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Report adoption recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-04-14T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-11-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-08T05:00:00+00:00,[],WI,2021 +Representative Tittl added as a coauthor,2022-02-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-07T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2022-02-21T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-03T06:00:00+00:00,[],WI,2021 +Representative Plumer added as a cosponsor,2021-05-24T05:00:00+00:00,[],WI,2021 +Representative Tranel added as a cosponsor,2021-02-10T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Testin,2021-06-15T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-20T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Adopted,2022-02-17T06:00:00+00:00,['passage'],WI,2021 +Public hearing held,2021-08-25T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Laid on table,2021-01-04T06:00:00+00:00,['deferral'],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Representatives Allen and Schraa added as coauthors,2021-04-07T05:00:00+00:00,[],WI,2021 +"Senate Substitute Amendment 1 offered by Senators Larson, Carpenter, Smith, Ringhand, Erpenbach, Wirch, Roys, L. Taylor and Johnson",2021-11-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 9, Noes 4",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-29T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Wittke added as a coauthor,2022-02-02T06:00:00+00:00,[],WI,2021 +Representative Sinicki added as a cosponsor,2021-04-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2021-03-04T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Wittke,2022-02-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2021-07-22T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-13T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-06-17T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-23T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-20T05:00:00+00:00,['receipt'],WI,2021 +Representative Duchow added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Felzkowski,2021-03-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Ramthun added as a cosponsor,2021-03-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-01T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 3, Noes 2",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2021-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Representatives Cabral-Guevara, Snyder, James and Magnafici added as coauthors",2021-09-21T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Oldenburg,2022-02-14T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 14, Noes 0",2021-06-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Steffen added as a cosponsor,2021-06-11T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-07T06:00:00+00:00,[],WI,2021 +Representative Schraa added as a cosponsor,2021-10-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Knodl added as a coauthor,2021-04-02T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Representative Plumer added as a coauthor,2022-01-13T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-03T06:00:00+00:00,['receipt'],WI,2021 +Representative Plumer added as a coauthor,2021-05-19T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-26T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Thiesfeldt,2021-08-24T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-15T06:00:00+00:00,[],WI,2021 +Representative Brostoff added as a coauthor,2021-11-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Adopted,2021-06-23T05:00:00+00:00,['passage'],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-06T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Pfaff added as a cosponsor,2021-03-11T06:00:00+00:00,[],WI,2021 +Representative Dittrich added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representatives Steineke and Stubbs,2021-06-01T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-26T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Feyen,2021-11-22T06:00:00+00:00,[],WI,2021 +Representative L. Myers added as a cosponsor,2021-07-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-20T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Schraa added as a coauthor,2021-07-15T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-08-25T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2022-02-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +"Representatives Shankland, Hong and Krug added as coauthors",2021-10-25T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Read,2022-02-15T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-06T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 5, Noes 0",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-04-23T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-09-15T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Representative Snodgrass added as a cosponsor,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Senator Marklein added as a cosponsor,2021-04-27T05:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a cosponsor,2021-03-03T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Brostoff added as a coauthor,2021-02-24T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-05-25T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-03-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-28T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-15T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2021-10-28T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Adopted,2022-02-15T06:00:00+00:00,['passage'],WI,2021 +Senate Amendment 1 offered by Senator Feyen,2021-12-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-01T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-06-24T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-07-26T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representatives Steineke and Stubbs,2021-05-12T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Pronschinske,2021-03-22T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-29T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 1",2021-09-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-03-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-01-04T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Kuglitsch,2022-01-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-11T05:00:00+00:00,[],WI,2021 +Representative Schraa added as a cosponsor,2021-10-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Representative Neylon added as a cosponsor,2022-02-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-21T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Edming added as a coauthor,2021-10-18T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Thiesfeldt,2022-01-13T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 5, Noes 0",2022-02-25T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 9, Noes 4",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-02-16T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-01T06:00:00+00:00,[],WI,2021 +Representatives Murphy and Wichgers added as cosponsors,2022-02-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-21T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-07T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 2 offered by Representative Wittke,2021-01-20T06:00:00+00:00,[],WI,2021 +Representative Stubbs added as a coauthor,2021-03-10T06:00:00+00:00,[],WI,2021 +Representative Vining added as a cosponsor,2022-03-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-06T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-11T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-08T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-03T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-18T06:00:00+00:00,['receipt'],WI,2021 +Representative Shankland added as a cosponsor,2021-03-11T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2021-06-29T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-26T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Children and Families, Ayes 12, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-03-02T06:00:00+00:00,[],WI,2021 +Read,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Plumer added as a cosponsor,2021-06-18T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Representative Macco added as a cosponsor,2021-12-21T06:00:00+00:00,[],WI,2021 +Adopted,2021-04-14T05:00:00+00:00,['passage'],WI,2021 +Fiscal estimate received,2022-01-27T06:00:00+00:00,['receipt'],WI,2021 +Representative Vruwink added as a cosponsor,2022-01-04T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Universities and Technical Colleges, Ayes 5, Noes 4",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-05T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-04T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Representative Andraca added as a cosponsor,2021-11-16T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +"Report passage recommended by Committee on Environment, Ayes 8, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-15T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Corrections, Ayes 9, Noes 1",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative Sortwell,2021-06-23T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-03-23T05:00:00+00:00,['deferral'],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +"Report without recommendation pursuant to s. 227.26(2)(h), Wisconsin Statutes, by Committee on State Affairs",2021-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Drake added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Representative Tranel added as a cosponsor,2021-02-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Representative Goyke added as a cosponsor,2021-06-23T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Hong added as a coauthor,2021-08-24T05:00:00+00:00,[],WI,2021 +Representative Andraca added as a coauthor,2021-07-20T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senators Carpenter and Wirch,2022-02-24T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2022-02-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Shelton added as a cosponsor,2021-04-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-14T06:00:00+00:00,['receipt'],WI,2021 +Representative Spreitzer added as a cosponsor,2022-01-20T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Senator Felzkowski added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Representative Dallman added as a cosponsor,2022-02-08T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 11, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Bowen,2021-06-02T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-01T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-12-14T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-06-11T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-11-17T06:00:00+00:00,[],WI,2021 +Adopted,2022-02-15T06:00:00+00:00,['passage'],WI,2021 +Executive action taken,2021-04-15T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2022-03-01T06:00:00+00:00,[],WI,2021 +Representative Cabral-Guevara added as a coauthor,2021-10-12T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Adopted,2021-05-11T05:00:00+00:00,['passage'],WI,2021 +Representative Steffen added as a cosponsor,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-03T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-15T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-17T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-30T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-17T05:00:00+00:00,['receipt'],WI,2021 +Representative Novak added as a cosponsor,2021-09-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-01T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-03-18T05:00:00+00:00,['receipt'],WI,2021 +Senator Smith added as a coauthor,2021-06-08T05:00:00+00:00,[],WI,2021 +Representative Rozar added as a cosponsor,2021-11-17T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 7, Noes 4",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-12-08T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 9, Noes 5",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-03-29T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Brandtjen and Hesselbein added as coauthors,2021-04-29T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-23T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-06-08T05:00:00+00:00,[],WI,2021 +Representative Mursau added as a cosponsor,2021-07-27T05:00:00+00:00,[],WI,2021 +Representative Conley added as a cosponsor,2022-02-21T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Dallman,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 3, Noes 2",2021-01-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2021-10-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 5, Noes 0",2021-03-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Callahan,2022-01-13T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a coauthor,2021-06-17T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-14T06:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a cosponsor,2021-04-28T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-09-07T05:00:00+00:00,[],WI,2021 +Senator L. Taylor added as a coauthor,2022-01-12T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Stroebel,2021-09-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-10T05:00:00+00:00,[],WI,2021 +LRB correction,2021-05-25T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-01-19T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-01-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Duchow added as a cosponsor,2022-01-24T06:00:00+00:00,[],WI,2021 +Representative Penterman added as a coauthor,2021-08-25T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Insurance, Ayes 11, Noes 0",2021-11-05T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Bowen added as a cosponsor,2021-06-17T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 2 offered by Representative Magnafici,2021-04-06T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +"Report adoption recommended by Committee on Financial Institutions and Revenue, Ayes 3, Noes 2",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Shelton added as a coauthor,2021-04-23T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-25T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-05T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-05T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Veterans and Military Affairs and Constitution and Federalism, Ayes 5, Noes 0",2021-04-28T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-08T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-05-03T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-20T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-04T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-01T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-19T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-18T06:00:00+00:00,['receipt'],WI,2021 +Representative Penterman added as a coauthor,2021-09-20T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-04T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Jobs and the Economy, Ayes 8, Noes 4",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-20T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-14T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-01-21T06:00:00+00:00,[],WI,2021 +Representatives Shelton and Emerson added as coauthors,2021-05-10T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-05-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-01-26T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-03-17T05:00:00+00:00,[],WI,2021 +Representatives Skowronski and Shelton added as coauthors,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-01-05T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-19T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Sinicki added as a coauthor,2022-02-02T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-04T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Spiros added as a cosponsor,2021-02-10T06:00:00+00:00,[],WI,2021 +Representative Shankland added as a coauthor,2021-09-30T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-24T05:00:00+00:00,[],WI,2021 +Representative James added as a coauthor,2021-10-06T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-06-22T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +"Report without recommendation pursuant to s. 227.19(6)(b), Wisconsin Statutes, by Committee on State Affairs",2021-03-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-11-09T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Allen,2021-03-24T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-11-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-12-14T06:00:00+00:00,[],WI,2021 +"Representatives Sinicki, Macco and Stubbs added as coauthors",2021-10-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives Spreitzer, Hintz, Hesselbein and Subeck",2021-09-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Subeck added as a cosponsor,2021-03-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Vining added as a cosponsor,2022-07-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-01-21T06:00:00+00:00,[],WI,2021 +Representative Knodl added as a cosponsor,2021-04-02T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-28T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-01T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-20T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-08T06:00:00+00:00,['receipt'],WI,2021 +"Report adoption recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-04-09T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-04-13T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-05-11T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2021-06-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Wanggaard added as a coauthor,2021-06-04T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 3, Noes 2",2021-06-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Environment, Ayes 7, Noes 2",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Schraa added as a cosponsor,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-03T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 2 offered by Senator Testin,2021-03-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-11-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-31T05:00:00+00:00,[],WI,2021 +Adopted,2022-02-17T06:00:00+00:00,['passage'],WI,2021 +Fiscal estimate received,2021-11-10T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-08-09T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2021-06-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 8, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-12-01T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Shankland added as a cosponsor,2022-02-16T06:00:00+00:00,[],WI,2021 +Representative Sinicki added as a coauthor,2021-03-16T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-05T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-05-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Jobs and the Economy, Ayes 8, Noes 4",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Report correctly engrossed on 5-18-2021,2021-05-18T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-02T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-30T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Cowles,2021-04-13T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Steineke,2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Stubbs,2021-03-15T05:00:00+00:00,[],WI,2021 +Representative Vining added as a coauthor,2022-07-20T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-18T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a cosponsor,2021-03-05T06:00:00+00:00,[],WI,2021 +Representative Dittrich added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-03-18T05:00:00+00:00,['receipt'],WI,2021 +Representative Armstrong added as a cosponsor,2021-05-18T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-01T06:00:00+00:00,[],WI,2021 +Adopted,2021-01-28T06:00:00+00:00,['passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-02-11T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 0",2021-09-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Armstrong added as a cosponsor,2021-05-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-25T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-18T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-04-08T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-25T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-05-05T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +Representative Bowen added as a coauthor,2021-03-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-05T06:00:00+00:00,[],WI,2021 +Representative Schraa added as a cosponsor,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-11-17T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Wichgers,2021-10-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 3, Noes 2",2021-01-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2021-05-03T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Duchow added as a coauthor,2021-10-28T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-27T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 12, Noes 2",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Rozar,2021-09-15T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-07T06:00:00+00:00,[],WI,2021 +Senator Roth added as a coauthor,2021-03-12T06:00:00+00:00,[],WI,2021 +Representative James added as a coauthor,2021-12-06T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-02T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-03T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Executive action taken,2021-10-06T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Duchow added as a coauthor,2021-10-08T05:00:00+00:00,[],WI,2021 +Senator Felzkowski added as a cosponsor,2022-01-13T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Cabrera,2021-04-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-17T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-09-15T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-11-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-24T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-15T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-06T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-11T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-03-18T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-11-04T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-12-01T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-09-28T05:00:00+00:00,['withdrawal'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Ringhand added as a coauthor,2021-04-13T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-01T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-09T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 2 offered by Senators Stroebel and Bernier,2021-04-12T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-26T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Energy and Utilities, Ayes 10, Noes 5",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Conley added as a coauthor,2022-02-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-10-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-13T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Steffen,2021-06-09T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Sortwell,2021-05-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Dallman added as a coauthor,2022-01-12T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-13T05:00:00+00:00,[],WI,2021 +Representatives Stubbs and Hesselbein added as coauthors,2022-01-19T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-07-07T05:00:00+00:00,['receipt'],WI,2021 +Representative Skowronski added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Tittl added as a coauthor,2021-06-15T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a coauthor,2021-03-12T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-05T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Report passage recommended by Committee on Government Accountability and Oversight, Ayes 9, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Macco added as a coauthor,2021-12-21T06:00:00+00:00,[],WI,2021 +Adopted,2021-02-16T06:00:00+00:00,['passage'],WI,2021 +"Report passage recommended by Committee on Housing, Commerce and Trade, Ayes 5, Noes 0",2021-08-12T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-02T05:00:00+00:00,['receipt'],WI,2021 +"Representatives Spreitzer, Emerson and Andraca added as coauthors",2021-04-12T05:00:00+00:00,[],WI,2021 +Representative Callahan added as a cosponsor,2021-02-17T06:00:00+00:00,[],WI,2021 +Adopted,2021-11-11T06:00:00+00:00,['passage'],WI,2021 +Senator Stafsholt added as a coauthor,2022-02-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +Representative Dittrich added as a cosponsor,2021-04-21T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Loudenbeck,2021-04-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-31T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-29T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Dallman,2022-01-13T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Callahan added as a cosponsor,2021-07-16T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-25T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Penterman,2021-10-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-30T05:00:00+00:00,[],WI,2021 +Representative Sinicki withdrawn as a coauthor,2022-01-25T06:00:00+00:00,['withdrawal'],WI,2021 +Public hearing held,2021-08-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Family Law, Ayes 9, Noes 0",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative Summerfield,2022-01-05T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Veterans and Military Affairs and Constitution and Federalism, Ayes 5, Noes 0",2021-04-28T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Dittrich added as a coauthor,2021-06-08T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-10T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-21T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Billings added as a coauthor,2021-11-11T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2022-02-16T06:00:00+00:00,[],WI,2021 +Representative Brooks added as a coauthor,2022-02-01T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-05-19T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-03T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 8, Noes 5",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-02T06:00:00+00:00,['receipt'],WI,2021 +Representative Oldenburg added as a cosponsor,2021-05-26T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Housing and Real Estate, Ayes 7, Noes 2",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Adopted,2021-05-11T05:00:00+00:00,['passage'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-09T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-03-04T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-05T06:00:00+00:00,['receipt'],WI,2021 +Senator Wanggaard added as a coauthor,2022-02-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-16T05:00:00+00:00,['receipt'],WI,2021 +Representative Emerson added as a coauthor,2021-06-09T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-16T05:00:00+00:00,[],WI,2021 +Senator Wirch added as a coauthor,2021-12-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 2 offered by Representative Rozar,2021-05-19T05:00:00+00:00,[],WI,2021 +Representatives Ohnstad and Haywood added as cosponsors,2021-12-06T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-12-15T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 3, Noes 2",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-09-15T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Bernier,2022-02-15T06:00:00+00:00,[],WI,2021 +"Report without recommendation pursuant to s. 227.26 (2)(h), Wisconsin Statutes",2021-03-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Cowles,2021-11-29T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-09-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-05-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-21T06:00:00+00:00,['receipt'],WI,2021 +LRB correction,2021-03-15T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-11-08T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-09-27T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Novak,2021-06-08T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-13T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Darling,2021-05-05T05:00:00+00:00,[],WI,2021 +LRB correction,2021-10-28T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 14, Noes 0",2021-06-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-07-06T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-23T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2021-10-13T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Tittl,2021-05-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 3, Noes 2",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-03-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-20T05:00:00+00:00,['receipt'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Bernier,2021-05-10T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2021-06-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 3, Noes 2",2021-01-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-06-18T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Edming added as a cosponsor,2021-05-26T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative VanderMeer,2022-01-13T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-10T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 5, Noes 0",2022-02-23T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-06-29T05:00:00+00:00,[],WI,2021 +Representative Brostoff added as a coauthor,2021-07-08T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2021-11-15T06:00:00+00:00,[],WI,2021 +Senator Larson added as a coauthor,2021-09-22T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-20T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-29T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-08T05:00:00+00:00,['receipt'],WI,2021 +Senator Cowles added as a coauthor,2022-02-14T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 3, Noes 2",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-10-01T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Larson added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-21T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-06T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2022-01-21T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Substitute Amendment 2 offered by Representative Wittke,2022-02-15T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-16T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-14T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-01T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-12T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Born added as a coauthor,2021-09-27T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Representative Sinicki withdrawn as a coauthor,2021-03-30T05:00:00+00:00,['withdrawal'],WI,2021 +Senate Substitute Amendment 2 offered by Senator Jacque,2021-06-01T05:00:00+00:00,[],WI,2021 +Representative Cabral-Guevara added as a cosponsor,2022-02-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +"Representatives Spreitzer, Emerson and Andraca added as cosponsors",2021-04-12T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-13T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-11-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-05T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-30T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-08-24T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Testin,2021-03-29T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-14T05:00:00+00:00,['receipt'],WI,2021 +Representative Skowronski added as a cosponsor,2022-02-02T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-04-15T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-07T05:00:00+00:00,['receipt'],WI,2021 +Representative Allen added as a coauthor,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-08T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2021-03-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-05-24T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a cosponsor,2021-02-03T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Wittke,2022-02-17T06:00:00+00:00,[],WI,2021 +Representatives Spreitzer and Shelton added as cosponsors,2021-01-27T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Murphy,2021-01-25T06:00:00+00:00,[],WI,2021 +Representative Dallman added as a coauthor,2021-04-27T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Constitution and Ethics, Ayes 6, Noes 3",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative Krug,2021-06-08T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-04T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-03T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Carpenter,2021-06-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-11T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-01T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Ballweg,2022-02-04T06:00:00+00:00,[],WI,2021 +Representative James added as a cosponsor,2021-12-06T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-16T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage recommended by Committee on Judiciary, Ayes 9, Noes 0",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Skowronski added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Plumer added as a coauthor,2021-05-19T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-01T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-12-14T06:00:00+00:00,[],WI,2021 +Representative Bowen added as a coauthor,2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-05-14T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Felzkowski,2022-02-16T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Schraa withdrawn as a cosponsor,2021-10-20T05:00:00+00:00,['withdrawal'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-07-26T05:00:00+00:00,['receipt'],WI,2021 +Representative Stubbs added as a cosponsor,2021-03-10T06:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 2 offered by Representatives Sanfelippo, Brandtjen, Murphy, Rozar, Thiesfeldt and Tusler",2021-03-23T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-07T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-05-27T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Sortwell,2021-05-06T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2022-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Representative Skowronski added as a coauthor,2022-02-02T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-14T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-28T06:00:00+00:00,['receipt'],WI,2021 +Representative Kurtz added as a cosponsor,2021-06-07T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Representative Ramthun added as a cosponsor,2021-03-04T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Horlacher,2021-05-24T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2022-02-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Mursau added as a coauthor,2021-08-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-18T05:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a cosponsor,2022-01-31T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2022-03-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representatives Steineke and Stubbs,2021-06-01T05:00:00+00:00,[],WI,2021 +"Senate Substitute Amendment 1 offered by Senators L. Taylor, Johnson, Agard, Bewley, Carpenter, Erpenbach, Larson, Ringhand, Roys, Smith and Wirch",2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-07T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Skowronski added as a coauthor,2022-01-14T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-04T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Children and Families, Ayes 12, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +Representative James added as a cosponsor,2021-07-19T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-18T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Gundrum,2021-12-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Economic and Workforce Development, Ayes 5, Noes 0",2021-06-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Representative Edming added as a coauthor,2021-10-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Small Business Development, Ayes 14, Noes 0",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-12-01T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Ballweg,2021-05-06T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-05T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Representative Plumer added as a coauthor,2021-09-01T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-29T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Jacque,2021-06-25T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Representatives Kurtz and Oldenburg added as coauthors,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 14, Noes 0",2021-06-28T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 2 offered by Senator Cowles,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Assembly Amendment 2 offered by Representative Thiesfeldt,2022-01-14T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Representative Spiros withdrawn as a coauthor,2022-01-03T06:00:00+00:00,['withdrawal'],WI,2021 +Representative Steffen added as a coauthor,2021-08-09T05:00:00+00:00,[],WI,2021 +Representative Ramthun added as a coauthor,2021-04-20T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 9, Noes 4",2021-06-09T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Jacque,2021-09-22T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-03-08T06:00:00+00:00,['receipt'],WI,2021 +Representative Drake added as a coauthor,2021-05-25T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Public hearing held,2021-08-25T05:00:00+00:00,[],WI,2021 +Senator Larson added as a coauthor,2021-10-12T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Zimmerman,2022-02-16T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Senator Smith added as a coauthor,2021-04-26T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-07T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-17T06:00:00+00:00,['withdrawal'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Wichgers withdrawn as a cosponsor,2021-09-16T05:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-05T05:00:00+00:00,[],WI,2021 +Adopted,2021-10-25T05:00:00+00:00,['passage'],WI,2021 +Executive action taken,2021-10-06T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 8, Noes 5",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-02-17T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 5, Noes 0",2022-02-23T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative Wichgers,2021-10-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-11T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Marklein,2022-01-05T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Representative Ramthun added as a cosponsor,2021-12-14T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Pfaff,2022-02-07T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-09-09T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-25T05:00:00+00:00,['receipt'],WI,2021 +Representative Dittrich added as a cosponsor,2022-01-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-06-29T05:00:00+00:00,['receipt'],WI,2021 +Representative Andraca added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Representative Andraca added as a cosponsor,2021-07-20T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-27T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Adopted,2021-11-11T06:00:00+00:00,['passage'],WI,2021 +Senate Amendment 1 offered by Senators Cowles and Smith,2021-04-12T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Armstrong added as a coauthor,2021-05-13T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Family Law, Ayes 9, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Shelton added as a coauthor,2021-11-29T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-05T05:00:00+00:00,['receipt'],WI,2021 +Representative Shelton added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Senator Roys added as a coauthor,2021-09-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-14T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Agency briefing held,2021-04-07T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2021-08-26T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-02-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Billings added as a cosponsor,2021-11-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Hong added as a cosponsor,2021-10-12T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-18T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-10T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-06-01T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-22T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 14, Noes 0",2021-06-28T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 9, Noes 5",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-12-22T06:00:00+00:00,['receipt'],WI,2021 +Representative Edming added as a coauthor,2021-10-18T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-03-31T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Wichgers,2022-01-18T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative McGuire,2021-03-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-28T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-05-26T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Adopted,2022-02-17T06:00:00+00:00,['passage'],WI,2021 +Senate Substitute Amendment 1 offered by Senators Jacque and Johnson,2021-03-01T06:00:00+00:00,[],WI,2021 +Representative Dittrich added as a coauthor,2022-02-07T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-02T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Representatives Hong, Vining, Murphy and S. Rodriguez added as cosponsors",2021-10-25T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-11T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-20T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Anderson added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Representatives Conley and Stubbs added as coauthors,2021-06-14T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Dittrich,2021-11-30T06:00:00+00:00,[],WI,2021 +Representative James added as a coauthor,2021-09-09T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Sanfelippo,2021-05-25T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-21T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Cabrera added as a cosponsor,2021-08-05T05:00:00+00:00,[],WI,2021 +Adopted,2022-02-15T06:00:00+00:00,['passage'],WI,2021 +Representative Rozar added as a coauthor,2021-11-17T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-02-24T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-07T06:00:00+00:00,['receipt'],WI,2021 +Agency briefing held by joint committee on Finance,2021-04-06T05:00:00+00:00,[],WI,2021 +Senator Stafsholt added as a coauthor,2021-02-04T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-04T06:00:00+00:00,['receipt'],WI,2021 +Senator Ringhand added as a cosponsor,2021-04-13T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a coauthor,2021-10-22T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-11-04T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-10-08T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-06T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Representative Bowen added as a coauthor,2021-06-17T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Allen,2021-10-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-04T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative Spiros,2021-09-15T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-16T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 9, Noes 6",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2021-12-01T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Ayes 14, Noes 0",2021-01-26T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Cabrera added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-01T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Representative Stubbs added as a cosponsor,2022-01-19T06:00:00+00:00,[],WI,2021 +Senator Pfaff added as a cosponsor,2021-05-04T05:00:00+00:00,[],WI,2021 +Representative Andraca added as a cosponsor,2021-09-13T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 11, Noes 1",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative Wichgers,2021-12-03T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-11-04T05:00:00+00:00,[],WI,2021 +Representative Tittl added as a cosponsor,2022-02-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-12-06T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Agency briefing held by joint committee on Finance,2021-04-07T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Marklein,2022-01-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-16T05:00:00+00:00,['receipt'],WI,2021 +Senator Kooyenga added as a coauthor,2021-07-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Knodl added as a coauthor,2021-09-09T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-27T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-03-16T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2022-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-28T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-13T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Swearingen,2022-02-14T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-02-04T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-26T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-08-09T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Referred to calendar of 6-29-2021 pursuant to Assembly Rule 93,2021-06-28T05:00:00+00:00,['referral'],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-28T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Johnson,2021-02-05T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-04T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 2 adopted,2021-03-23T05:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-25T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-05-04T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on the foot of the 14th order of business on the calendar of 6-9-2021,2021-06-09T05:00:00+00:00,[],WI,2021 +Representative Kitchens added as a cosponsor,2021-11-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Senator Bernier added as a coauthor,2022-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-02T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 15, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-09T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-02T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-03-03T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Kooyenga,2021-12-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Goyke added as a coauthor,2021-09-08T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Amendment 1 offered by Representative Wittke,2021-05-10T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-07-28T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Jobs and the Economy, Ayes 8, Noes 4",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Penterman added as a coauthor,2021-09-01T05:00:00+00:00,[],WI,2021 +Senator Cowles added as a coauthor,2021-10-21T05:00:00+00:00,[],WI,2021 +Adopted,2022-01-20T06:00:00+00:00,['passage'],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives J. Rodriguez and Tittl added as coauthors,2022-01-11T06:00:00+00:00,[],WI,2021 +Representative Doyle withdrawn as a coauthor,2022-01-06T06:00:00+00:00,['withdrawal'],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 offered by Senator Petrowski,2021-09-02T05:00:00+00:00,[],WI,2021 +Representative Kitchens added as a coauthor,2021-03-10T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Behnke added as a coauthor,2022-01-14T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-11-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-05-18T05:00:00+00:00,[],WI,2021 +Representative Thiesfeldt withdrawn as a cosponsor,2021-08-25T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Duchow added as a coauthor,2021-12-01T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-09T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 5, Noes 0",2021-05-05T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Shelton added as a coauthor,2021-07-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-11T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Labor and Integrated Employment, Ayes 9, Noes 0",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Sinicki withdrawn as a coauthor,2021-09-17T05:00:00+00:00,['withdrawal'],WI,2021 +Public hearing held,2021-06-02T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-21T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-26T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Schraa added as a coauthor,2021-04-07T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2021-04-12T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-28T05:00:00+00:00,['receipt'],WI,2021 +Representative Snodgrass added as a cosponsor,2022-06-15T05:00:00+00:00,[],WI,2021 +"Report passage by Committee on Elections, Election Process Reform and Ethics, Ayes 2, Noes 3",2021-06-03T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-19T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 4, Noes 1",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-05-23T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Jacque,2021-03-02T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Education, Ayes 14, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Adopted,2022-02-17T06:00:00+00:00,['passage'],WI,2021 +Representative Edming withdrawn as a cosponsor,2021-10-21T05:00:00+00:00,['withdrawal'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-07-26T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Health, Ayes 5, Noes 0",2021-10-14T05:00:00+00:00,['amendment-passage'],WI,2021 +Adopted,2021-06-09T05:00:00+00:00,['passage'],WI,2021 +Public hearing held,2021-11-30T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-16T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 13, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representatives Allen and Conley added as cosponsors,2021-10-13T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Small Business Development, Ayes 10, Noes 4",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +LRB correction,2022-02-08T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-04T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Wichgers added as a cosponsor,2021-09-27T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-01T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-25T05:00:00+00:00,[],WI,2021 +Representative Brooks added as a coauthor,2022-02-01T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Stubbs and Bowen added as coauthors,2021-03-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-03T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Kooyenga,2021-06-02T05:00:00+00:00,[],WI,2021 +Representatives James and Moses added as coauthors,2021-10-06T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-03-01T06:00:00+00:00,[],WI,2021 +Adopted,2021-10-25T05:00:00+00:00,['passage'],WI,2021 +Representatives Macco and Magnafici added as cosponsors,2022-02-16T06:00:00+00:00,[],WI,2021 +"Senate Substitute Amendment 1 rejected, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +Referred to calendar of 6-29-2021 pursuant to Assembly Rule 93,2021-06-28T05:00:00+00:00,['referral'],WI,2021 +Assembly Amendment 1 offered by Representative Cabral-Guevara,2021-10-14T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-10T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report adoption recommended by Committee on Veterans and Military Affairs and Constitution and Federalism, Ayes 3, Noes 2",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Schraa added as a cosponsor,2022-02-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-27T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Senator Jacque added as a coauthor,2022-02-07T06:00:00+00:00,[],WI,2021 +LRB correction,2022-01-26T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Representative Allen added as a coauthor,2021-08-17T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-18T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 14, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Ohnstad added as a coauthor,2021-06-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-24T06:00:00+00:00,['receipt'],WI,2021 +Representative Drake added as a coauthor,2021-05-25T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-09T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Cabral-Guevara,2022-01-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-06-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-01-22T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-03T06:00:00+00:00,[],WI,2021 +Representative Andraca added as a cosponsor,2021-12-14T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-06-01T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-17T05:00:00+00:00,[],WI,2021 +Representative James added as a coauthor,2021-10-06T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Callahan,2021-11-29T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-23T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-04-09T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Shelton added as a coauthor,2021-04-01T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-11T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 5, Noes 0",2021-03-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +Adopted,2021-10-25T05:00:00+00:00,['passage'],WI,2021 +Fiscal estimate received,2022-02-08T06:00:00+00:00,['receipt'],WI,2021 +Representative S. Rodriguez added as a coauthor,2021-03-01T06:00:00+00:00,[],WI,2021 +Representative Cabral-Guevara added as a coauthor,2022-02-10T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 4, Noes 1",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Bowen added as a coauthor,2021-03-03T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Petersen,2021-06-15T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Family Law, Ayes 9, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 12, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Snodgrass added as a coauthor,2021-07-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-01T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-12-20T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senators Bernier and Darling,2021-05-18T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 12, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-01-28T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-04-13T05:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Amendment 1 offered by Representative Murphy,2022-02-08T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2022-02-11T06:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Amendment 1 offered by Representative James,2021-11-23T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-09-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +"Senate Amendment 2 offered by Senators Darling, Kooyenga and Bernier",2021-05-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Representatives Stubbs and Bowen added as cosponsors,2021-03-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 12, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-12-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-18T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Penterman added as a cosponsor,2021-08-04T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a cosponsor,2021-12-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-02T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-16T05:00:00+00:00,['receipt'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 11, Noes 1",2021-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-15T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-08T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Wanggaard,2021-09-14T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Hong added as a cosponsor,2021-10-12T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 3, Noes 2",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Senate Amendment 1 offered by Senator Wanggaard,2021-05-04T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-10-18T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Doyle withdrawn as a coauthor,2021-12-02T06:00:00+00:00,['withdrawal'],WI,2021 +Deposited in the office of the Secretary of State on 8-4-2021,2021-08-04T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-11-22T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-04-08T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 13, Noes 0",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Bernier,2021-05-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2021-05-07T05:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-17T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-11T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-10T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Children and Families, Ayes 12, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-11-12T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Ways and Means, Ayes 13, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Stubbs added as a cosponsor,2021-03-10T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Environment, Ayes 9, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Representative Edming added as a cosponsor,2021-10-20T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-06-17T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-10-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-12-14T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-06-17T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-18T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 16, Noes 0",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-06-23T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Local Government, Ayes 9, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Tittl added as a coauthor,2022-02-09T06:00:00+00:00,[],WI,2021 +Representative Emerson added as a cosponsor,2021-06-09T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-06T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-09T05:00:00+00:00,[],WI,2021 +Representative Billings added as a coauthor,2021-03-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-11-09T06:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-03-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-07-30T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Ways and Means, Ayes 12, Noes 0",2021-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2022-02-23T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +Representative Cabral-Guevara withdrawn as a cosponsor,2021-09-17T05:00:00+00:00,['withdrawal'],WI,2021 +Available for scheduling,2021-11-03T05:00:00+00:00,[],WI,2021 +Representative Loudenbeck added as a cosponsor,2021-04-16T05:00:00+00:00,[],WI,2021 +Rules suspended and taken up,2021-01-04T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-30T06:00:00+00:00,['receipt'],WI,2021 +Senator Felzkowski added as a coauthor,2021-03-16T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 13, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-03-07T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Kuglitsch,2022-01-19T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 2 offered by Representatives Spreitzer, Hintz, Hesselbein and Subeck",2021-09-28T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Ballweg,2021-05-21T05:00:00+00:00,[],WI,2021 +Representative Bowen added as a coauthor,2021-11-17T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 13, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative L. Myers added as a coauthor,2021-05-26T05:00:00+00:00,[],WI,2021 +Representative Drake added as a coauthor,2021-05-25T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-29T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-07T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-23T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-10-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Environment, Ayes 6, Noes 2",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-05-20T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-16T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-04T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Representatives Stubbs and Conley added as coauthors,2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-11T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-04-19T05:00:00+00:00,['receipt'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2022-02-08T06:00:00+00:00,['amendment-passage'],WI,2021 +Executive action taken,2021-02-10T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 5, Noes 0",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-07-20T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-10T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Family Law, Ayes 9, Noes 0",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2021-01-28T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Adopted,2021-05-11T05:00:00+00:00,['passage'],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a cosponsor,2021-10-06T05:00:00+00:00,[],WI,2021 +Representative Shankland added as a coauthor,2021-03-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-27T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-25T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Jobs and the Economy, Ayes 11, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-04-08T05:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-09T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-01-21T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 4, Noes 1",2021-04-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-13T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Marklein,2021-04-05T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 9, Noes 3",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Withdrawn from Assembly message and taken up,2022-01-25T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-19T05:00:00+00:00,[],WI,2021 +Senator L. Taylor added as a coauthor,2021-06-04T05:00:00+00:00,[],WI,2021 +Representative Plumer added as a coauthor,2021-05-19T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2022-01-24T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 7, Noes 0",2021-05-04T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 9, Noes 4",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-28T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-07-28T05:00:00+00:00,[],WI,2021 +Representative Thiesfeldt withdrawn as a coauthor,2021-09-28T05:00:00+00:00,['withdrawal'],WI,2021 +Fiscal estimate received,2021-05-18T05:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Sortwell,2021-09-21T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-22T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-12T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Health, Ayes 5, Noes 0",2021-02-11T06:00:00+00:00,['amendment-passage'],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Fiscal estimate received,2022-03-29T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-05-18T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Senator Darling added as a coauthor,2022-02-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-08T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-01-22T06:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a cosponsor,2021-06-25T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-28T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 8, Noes 5",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2021-11-05T05:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2021-10-13T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-10-26T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 3, Noes 2",2021-01-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Marklein,2021-01-20T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 5, Noes 0",2021-03-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-06-18T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-12-14T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-26T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 10, Noes 1",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +Representative Baldeh withdrawn as a coauthor,2021-08-24T05:00:00+00:00,['withdrawal'],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Dittrich,2022-01-31T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Knodl added as a cosponsor,2021-09-09T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-14T06:00:00+00:00,['receipt'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Nass,2021-05-04T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Brandtjen,2021-06-25T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 2 offered by Representative Bowen,2022-01-14T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-28T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-19T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Rural Development, Ayes 13, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Ramthun added as a cosponsor,2021-03-04T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-10-14T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2022-01-07T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-01-22T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Bradley,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Representative Schraa added as a cosponsor,2021-09-29T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-19T06:00:00+00:00,[],WI,2021 +Representative Vining added as a cosponsor,2022-02-22T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Tittl,2021-06-23T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-06T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-29T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2022-02-17T06:00:00+00:00,['amendment-passage'],WI,2021 +Representative Penterman added as a coauthor,2021-11-04T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Labor and Integrated Employment, Ayes 6, Noes 3",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Knodl added as a cosponsor,2021-12-13T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Petrowski,2021-10-01T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-08T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Penterman,2022-02-09T06:00:00+00:00,[],WI,2021 +"Senate Amendment 1 offered by Senators Larson, Smith and Johnson",2022-02-24T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-29T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-07-29T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-01T05:00:00+00:00,[],WI,2021 +Read,2022-02-15T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-09-08T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-27T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representatives Oldenburg and Steineke,2021-05-03T05:00:00+00:00,[],WI,2021 +Representative Cabral-Guevara added as a cosponsor,2022-02-10T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Bowen,2021-06-02T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-06T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-03-02T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Local Government, Ayes 6, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-12-14T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 8, Noes 5",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Armstrong added as a cosponsor,2022-02-10T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 4, Noes 1",2021-09-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-01-20T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Local Government, Ayes 9, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-14T06:00:00+00:00,[],WI,2021 +Adopted by unanimous rising vote,2022-02-15T06:00:00+00:00,['passage'],WI,2021 +LRB correction,2022-01-19T06:00:00+00:00,[],WI,2021 +Representative Shankland added as a cosponsor,2022-01-26T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-10T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-12T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 7, Noes 0",2022-01-21T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-25T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Workforce Development, Ayes 10, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Fiscal estimate received,2021-07-14T05:00:00+00:00,['receipt'],WI,2021 +Representative Kitchens added as a coauthor,2021-11-18T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 8, Noes 0",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative Murphy,2022-01-14T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-03-11T06:00:00+00:00,[],WI,2021 +Representative James added as a coauthor,2021-07-16T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary, Ayes 5, Noes 3",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-06-23T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Stafsholt,2022-02-08T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2021-03-16T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-04T06:00:00+00:00,['referral-committee'],WI,2021 +Representative S. Rodriguez added as a coauthor,2021-03-23T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Colleges and Universities, Ayes 9, Noes 4",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-27T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Local Government, Ayes 8, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Representative Shelton added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-03-03T06:00:00+00:00,[],WI,2021 +Representatives Katsma and Ohnstad added as coauthors,2021-10-26T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-14T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Campaigns and Elections, Ayes 6, Noes 3",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-04-30T05:00:00+00:00,[],WI,2021 +Senator Pfaff added as a coauthor,2021-03-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-14T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-14T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 11, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Penterman added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +LRB correction,2022-01-07T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-03T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Senator Jacque added as a coauthor,2021-10-05T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Stroebel,2021-06-21T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-03-02T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-08-25T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Adopted,2022-01-25T06:00:00+00:00,['passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-03-10T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a coauthor,2021-10-15T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Kitchens,2021-05-06T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-11-11T06:00:00+00:00,['deferral'],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-17T06:00:00+00:00,['deferral'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-01-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-08T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Subeck added as a cosponsor,2021-03-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-06T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-02-24T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-01T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-26T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-13T05:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a cosponsor,2021-06-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-13T05:00:00+00:00,['receipt'],WI,2021 +Senator Feyen added as a coauthor,2021-07-29T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-05-03T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Stafsholt,2022-02-17T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Petersen,2022-01-13T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative James added as a coauthor,2021-09-02T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Ballweg,2021-09-13T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-14T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Schraa added as a coauthor,2021-04-07T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-25T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Ohnstad added as a coauthor,2021-06-03T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-12T06:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Energy and Utilities, Ayes 15, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-05-20T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Report correctly engrossed on 2-4-2022,2022-02-07T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Representative Brostoff added as a cosponsor,2021-02-24T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-11-10T06:00:00+00:00,[],WI,2021 +Representative Edming added as a coauthor,2021-10-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-31T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Mursau,2022-01-14T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-08-12T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Shankland added as a coauthor,2021-04-13T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Constitution and Ethics, Ayes 7, Noes 2",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-08-11T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Constitution and Ethics, Ayes 6, Noes 3",2021-03-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Ayes 9, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-01-18T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-16T05:00:00+00:00,[],WI,2021 +Representative Conley added as a coauthor,2021-07-23T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-08T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-26T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-03T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Cowles,2021-04-29T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Substance Abuse and Prevention, Ayes 5, Noes 3",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-06-09T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-09-20T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Public Benefit Reform, Ayes 5, Noes 2",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-10-19T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Housing, Commerce and Trade, Ayes 4, Noes 1",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Feyen,2021-12-06T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-12T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Pfaff added as a coauthor,2021-05-05T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2022-01-06T06:00:00+00:00,[],WI,2021 +Representative Considine added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 9, Noes 4",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-05-12T05:00:00+00:00,[],WI,2021 +Adopted,2021-09-28T05:00:00+00:00,['passage'],WI,2021 +Fiscal estimate received,2021-12-28T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Housing and Real Estate, Ayes 9, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-10-18T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Cowles added as a cosponsor,2021-10-20T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Bradley,2021-03-09T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-02T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-09T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 13, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-11-04T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 12, Noes 0",2021-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Family Law, Ayes 9, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 13, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 5, Noes 0",2021-10-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a coauthor,2021-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-24T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-14T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-13T05:00:00+00:00,['receipt'],WI,2021 +Representative Doyle added as a coauthor,2021-10-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-08T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Representative Billings added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Education, Ayes 7, Noes 0",2021-05-04T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Duchow,2021-09-16T05:00:00+00:00,[],WI,2021 +Representative Brooks added as a cosponsor,2021-02-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Adopted,2021-03-16T05:00:00+00:00,['passage'],WI,2021 +Executive action taken,2021-03-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-10T05:00:00+00:00,[],WI,2021 +Representative Tittl added as a cosponsor,2022-02-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-03T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative James added as a coauthor,2021-12-06T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-03T06:00:00+00:00,[],WI,2021 +Assembly Amendment 3 offered by Representatives Spreitzer and Rozar,2021-06-01T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Steffen added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Bowen added as a coauthor,2021-11-01T05:00:00+00:00,[],WI,2021 +Representative Loudenbeck added as a cosponsor,2021-05-26T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-01T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-15T06:00:00+00:00,[],WI,2021 +Representative Conley added as a coauthor,2021-11-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 5, Noes 0",2022-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-14T06:00:00+00:00,[],WI,2021 +Representative Callahan added as a cosponsor,2021-03-10T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-10-01T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +"Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representatives Sinicki, Shankland, Andraca and Drake",2022-02-14T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Snyder,2022-01-13T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-07T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-06-23T05:00:00+00:00,[],WI,2021 +Representative Pope added as a cosponsor,2021-11-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Representatives Stubbs and Subeck added as cosponsors,2021-10-28T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Adopted,2022-01-25T06:00:00+00:00,['passage'],WI,2021 +Executive action taken,2021-12-14T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Representative Dittrich added as a cosponsor,2022-01-06T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 5, Noes 0",2021-05-05T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-08-25T05:00:00+00:00,[],WI,2021 +LRB correction,2021-05-25T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Judiciary, Ayes 5, Noes 3",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Loudenbeck added as a coauthor,2021-04-16T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senators Stroebel and Wimberger,2021-05-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-06-02T05:00:00+00:00,['receipt'],WI,2021 +Representative Hesselbein added as a cosponsor,2022-02-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-12-06T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Cowles,2022-01-13T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-11-16T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Ways and Means, Ayes 12, Noes 0",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Representative Milroy added as a cosponsor,2022-02-25T06:00:00+00:00,[],WI,2021 +Representatives Subeck and Armstrong added as coauthors,2021-10-14T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2021-06-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Dittrich added as a coauthor,2021-06-08T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-13T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-27T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-11-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-11T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-13T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-06T05:00:00+00:00,[],WI,2021 +Representatives Steffen and Bowen added as coauthors,2021-08-25T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-13T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Representative Considine added as a coauthor,2021-12-29T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 7, Noes 4",2021-04-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-10-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2022-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Point of order that Senate Substitute Amendment 1 was not germane well taken, Ayes 21, Noes 12",2021-11-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-02-24T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-19T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-12-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a cosponsor,2021-11-12T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-04T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-05T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Brandtjen added as a cosponsor,2021-04-29T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-29T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +Representative Dittrich added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +Representatives James and Plumer added as cosponsors,2021-09-23T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Family Law, Ayes 9, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Representatives Vining, Conley and Shelton added as coauthors",2022-02-24T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Adopted,2021-03-16T05:00:00+00:00,['passage'],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 1 offered by Representative Petersen,2021-05-14T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-23T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-09-21T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 14, Noes 0",2022-02-24T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-05T06:00:00+00:00,[],WI,2021 +Senator Stroebel added as a coauthor,2021-03-16T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-24T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Magnafici,2021-09-09T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 6, Noes 1",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 7, Noes 0",2021-05-04T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-07-13T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Feyen,2022-01-13T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Wichgers,2021-09-29T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-11-04T05:00:00+00:00,['amendment-passage'],WI,2021 +Adopted by unanimous rising vote,2022-02-15T06:00:00+00:00,['passage'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-06T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Representative Snodgrass added as a coauthor,2022-06-15T05:00:00+00:00,[],WI,2021 +Representative L. Myers added as a cosponsor,2021-02-19T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Wichgers,2022-02-28T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Dittrich,2021-03-16T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-20T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-06-10T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-06-08T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Petrowski,2021-11-29T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-15T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 2 offered by Senators Stroebel and Bernier,2021-04-12T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Allen added as a coauthor,2021-11-16T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a cosponsor,2021-11-08T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-12-08T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2021-10-28T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Subeck added as a cosponsor,2021-03-16T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-08T05:00:00+00:00,['receipt'],WI,2021 +Representative Schraa added as a cosponsor,2022-02-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Allen and Schraa added as coauthors,2021-04-07T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-09-24T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-03T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 14, Noes 0",2021-03-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Ways and Means, Ayes 13, Noes 0",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-26T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Pronschinske added as a cosponsor,2021-10-20T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Dittrich,2021-11-30T06:00:00+00:00,[],WI,2021 +"Report adoption recommended by Committee on State Affairs, Ayes 9, Noes 4",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-03-25T05:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 offered by Senator Bernier,2021-03-19T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-06-18T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Representatives Allen and Schraa added as cosponsors,2021-04-07T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 13, Noes 0",2022-02-24T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 5, Noes 0",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 6, Noes 1",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-01-21T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-26T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-26T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-05T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-12T06:00:00+00:00,[],WI,2021 +Representative Callahan added as a coauthor,2021-03-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2021-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Testin added as a coauthor,2021-10-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-03T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-03-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Veterans and Military Affairs, Ayes 11, Noes 0",2021-05-05T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-03-21T05:00:00+00:00,['receipt'],WI,2021 +"Representatives Steffen, Shankland and Tauchen added as cosponsors",2021-05-11T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-03T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-11-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 4, Noes 0",2021-04-05T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-02T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2021-10-06T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-21T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 12, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 13, Noes 0",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-08-06T05:00:00+00:00,['receipt'],WI,2021 +Senate Substitute Amendment 2 offered by Senator Petrowski,2022-01-19T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-03-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-05T05:00:00+00:00,['receipt'],WI,2021 +"Refused to suspend rules to withdraw from committee on Education, Ayes 11, Noes 19",2022-03-08T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2022-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Insurance, Ayes 12, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Born added as a cosponsor,2021-06-22T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 offered by Senator Roth,2022-02-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-09-21T05:00:00+00:00,[],WI,2021 +Report correctly engrossed on 2-4-2022,2022-02-07T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-04T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Schraa added as a cosponsor,2021-04-30T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Representative Ramthun added as a cosponsor,2021-03-04T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-22T05:00:00+00:00,['receipt'],WI,2021 +Representatives Sinicki and Hesselbein added as cosponsors,2022-03-01T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 11, Noes 5",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Family Law, Ayes 9, Noes 0",2021-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-11-04T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-25T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 14, Noes 0",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +Read,2021-01-04T06:00:00+00:00,[],WI,2021 +Representative Drake added as a coauthor,2021-05-25T05:00:00+00:00,[],WI,2021 +Representative Snodgrass added as a coauthor,2022-01-19T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Knodl added as a coauthor,2021-06-24T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 13, Noes 0",2022-02-24T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-07-06T05:00:00+00:00,['receipt'],WI,2021 +Adopted,2021-02-16T06:00:00+00:00,['passage'],WI,2021 +"Report passage recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2022-02-23T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Housing, Commerce and Trade, Ayes 5, Noes 0",2021-08-12T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Labor and Integrated Employment, Ayes 6, Noes 3",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-01-19T06:00:00+00:00,['referral-committee'],WI,2021 +Adopted,2021-10-26T05:00:00+00:00,['passage'],WI,2021 +Representatives Plumer and Stubbs added as cosponsors,2021-09-13T05:00:00+00:00,[],WI,2021 +Representative Bowen added as a cosponsor,2021-11-01T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Loudenbeck,2022-02-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-01-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Judiciary, Ayes 5, Noes 3",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-03-07T06:00:00+00:00,['receipt'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Constitution and Ethics, Ayes 5, Noes 4",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Snodgrass added as a cosponsor,2021-07-20T05:00:00+00:00,[],WI,2021 +Representative Callahan added as a coauthor,2021-10-13T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-10-28T05:00:00+00:00,[],WI,2021 +Representative Plumer added as a cosponsor,2021-05-20T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representatives Steineke and Stubbs,2021-06-02T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 4, Noes 1",2021-10-26T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Representative Magnafici added as a coauthor,2022-01-10T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 5, Noes 0",2022-02-25T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 10, Noes 5",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-11-22T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-21T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 2 offered by Representative Duchow,2022-02-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-11-12T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-06-23T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-01-05T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Bowen added as a coauthor,2021-03-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-11-10T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2022-02-11T06:00:00+00:00,['amendment-passage'],WI,2021 +Representative Macco added as a cosponsor,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-03-02T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-10-12T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +LRB correction (Senate Amendment 1),2021-03-03T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-21T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Stafsholt,2021-05-24T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Senate Amendment 1 offered by Senators Larson, Johnson and Smith",2021-10-13T05:00:00+00:00,[],WI,2021 +Referred to calendar of 6-29-2021 pursuant to Assembly Rule 93,2021-06-28T05:00:00+00:00,['referral'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-10T06:00:00+00:00,[],WI,2021 +Representative McGuire added as a coauthor,2021-12-01T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 1",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Drake added as a coauthor,2021-02-19T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Insurance, Ayes 9, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-09-20T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2021-11-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-12T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 13, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-06-16T05:00:00+00:00,[],WI,2021 +Senator Ballweg added as a coauthor,2022-02-07T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-16T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Committee on Agriculture,2022-02-08T06:00:00+00:00,[],WI,2021 +Representative James added as a cosponsor,2021-09-09T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-17T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2022-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Ohnstad added as a cosponsor,2021-06-03T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 offered by Senators Stroebel and Bernier,2021-04-12T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 2 offered by Representative Dittrich,2022-01-19T06:00:00+00:00,[],WI,2021 +Representative Edming added as a coauthor,2021-10-18T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-15T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-16T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Read,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Steffen added as a coauthor,2022-02-24T06:00:00+00:00,[],WI,2021 +"Representatives Vining, Neubauer and Emerson added as coauthors",2021-04-12T05:00:00+00:00,[],WI,2021 +Representatives Petryk and Jagler added as coauthors,2021-03-02T06:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a coauthor,2022-01-19T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-24T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 12, Noes 1",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-01-21T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Corrections, Ayes 9, Noes 1",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2022-03-30T05:00:00+00:00,['receipt'],WI,2021 +Representative Conley added as a cosponsor,2022-02-14T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Johnson added as a coauthor,2021-06-08T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 5, Noes 0",2022-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-17T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 2 offered by Senator Carpenter,2021-06-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-18T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Penterman added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Kitchens,2021-10-20T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-11-02T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-10-27T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Dittrich,2021-11-10T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a coauthor,2021-04-27T05:00:00+00:00,[],WI,2021 +Representative Vruwink added as a cosponsor,2022-07-14T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-04T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Adopted,2021-04-14T05:00:00+00:00,['passage'],WI,2021 +Representative Shankland added as a coauthor,2021-09-30T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-01T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Neylon,2021-04-14T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Mental Health, Ayes 13, Noes 0",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-01-18T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Representative Edming added as a coauthor,2021-10-18T05:00:00+00:00,[],WI,2021 +Senator Jacque added as a coauthor,2021-04-14T05:00:00+00:00,[],WI,2021 +Laid on table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Assembly Amendment 1 offered by Representative Steffen,2021-03-16T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-13T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended and taken up,2022-01-25T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2022-01-05T06:00:00+00:00,[],WI,2021 +Representative Sinicki added as a coauthor,2021-11-04T05:00:00+00:00,[],WI,2021 +Representative Conley added as a coauthor,2021-11-04T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Housing, Commerce and Trade, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Representative Conley added as a cosponsor,2021-07-12T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-11-08T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Accountability and Oversight, Ayes 4, Noes 2",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Edming added as a cosponsor,2021-01-25T06:00:00+00:00,[],WI,2021 +Representative Stubbs added as a cosponsor,2022-02-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-26T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Campaigns and Elections, Ayes 8, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read,2022-01-25T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-02-11T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-09-16T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-08-31T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-06-15T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Labor and Integrated Employment, Ayes 6, Noes 3",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-03-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-13T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-12T06:00:00+00:00,['receipt'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-01-21T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-03-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-09-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2022-02-23T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-04-08T05:00:00+00:00,[],WI,2021 +Representatives Skowronski and Steffen added as cosponsors,2022-02-08T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-11-09T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 11, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-07-06T05:00:00+00:00,['receipt'],WI,2021 +Adopted,2022-01-25T06:00:00+00:00,['passage'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Drake added as a coauthor,2021-05-25T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 5, Noes 0",2021-05-07T05:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2021-03-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Bewley added as a cosponsor,2021-10-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-18T05:00:00+00:00,[],WI,2021 +Representative Mursau added as a coauthor,2021-07-26T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary, Ayes 8, Noes 1",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +LRB correction,2021-12-06T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-31T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a cosponsor,2022-02-08T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 6-30-2021 pursuant to Senate Rule 18(1),2021-06-29T05:00:00+00:00,[],WI,2021 +Representative Tusler added as a coauthor,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Drake added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-03T06:00:00+00:00,[],WI,2021 +Representative Schraa added as a coauthor,2021-04-30T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-03-04T06:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on State Affairs, Ayes 9, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Colleges and Universities, Ayes 11, Noes 4",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-12-01T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-07T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 4, Noes 1",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Milroy added as a coauthor,2022-02-25T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-15T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Rozar,2021-11-22T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-25T05:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-18T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Labor and Integrated Employment, Ayes 9, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +"Refused to withdraw from the committee on Human Services, Children and Families, Ayes 12, Noes 21",2022-01-25T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Committee on Transportation,2021-11-17T06:00:00+00:00,[],WI,2021 +"Report passage by Committee on Human Services, Children and Families, Ayes 1, Noes 4",2022-02-09T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2021-10-26T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-02-22T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 2 offered by Representative Vos,2021-09-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Spiros added as a cosponsor,2021-02-10T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 3, Noes 2",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-27T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-05-07T05:00:00+00:00,['amendment-passage'],WI,2021 +Senator Kooyenga added as a coauthor,2021-10-27T05:00:00+00:00,[],WI,2021 +Representative Petryk added as a cosponsor,2021-03-02T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-03-02T06:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-14T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 9, Noes 1",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-10-29T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Sortwell,2022-01-03T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-18T06:00:00+00:00,[],WI,2021 +Representative Shelton added as a cosponsor,2021-04-26T05:00:00+00:00,[],WI,2021 +Representative Drake added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Representative Armstrong added as a cosponsor,2021-02-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Murphy added as a coauthor,2021-11-12T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Amendment 1 offered by Representative Dittrich,2021-09-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative James added as a cosponsor,2021-09-03T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Bowen added as a cosponsor,2021-10-18T05:00:00+00:00,[],WI,2021 +Representative Vruwink added as a coauthor,2021-09-22T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Representatives Loudenbeck and Plumer added as coauthors,2021-03-02T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-04-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-02-09T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Petersen,2021-03-02T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Representative Brostoff added as a coauthor,2021-03-04T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Public Benefit Reform, Ayes 5, Noes 2",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-10-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative Novak,2021-06-14T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-28T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Tittl,2021-03-25T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-05T05:00:00+00:00,[],WI,2021 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2021-01-28T06:00:00+00:00,['receipt'],WI,2021 +Representative Brostoff added as a cosponsor,2021-10-19T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Duchow,2021-01-25T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-01-04T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-19T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 9, Noes 4",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Hong added as a cosponsor,2021-08-25T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 13, Noes 0",2022-02-24T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-02-12T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-01T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-24T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Workforce Development,2021-06-29T05:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2021-02-09T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-03-04T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Constitution and Ethics, Ayes 6, Noes 2",2021-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-25T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary, Ayes 5, Noes 3",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Born added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-14T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Felzkowski,2021-09-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-12T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-09-16T05:00:00+00:00,[],WI,2021 +Representative Conley added as a coauthor,2021-11-04T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +Senator Petrowski added as a coauthor,2021-10-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-14T06:00:00+00:00,['receipt'],WI,2021 +Representative Shelton added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-04-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Utilities, Technology and Telecommunications, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Withdrawn from committee on Ways and Means and referred to joint committee on Finance pursuant to Assembly Rule 42 (3)(c),2021-06-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Aging and Long-Term Care, Ayes 7, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-04-12T05:00:00+00:00,['receipt'],WI,2021 +Representatives Kitchens and Plumer added as coauthors,2021-03-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Universities and Technical Colleges, Ayes 5, Noes 4",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-05-28T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Housing, Commerce and Trade, Ayes 5, Noes 0",2021-08-12T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-11T06:00:00+00:00,[],WI,2021 +Representative Edming added as a coauthor,2021-06-08T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Report correctly engrossed on 4-15-2021,2021-04-15T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Moses,2022-01-13T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-11T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-01T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Zimmerman,2022-02-07T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-31T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-11-30T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-01-28T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Universities and Technical Colleges, Ayes 8, Noes 1",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Rozar added as a coauthor,2021-11-01T05:00:00+00:00,[],WI,2021 +Representative Brostoff added as a coauthor,2021-04-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-05T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Kooyenga,2021-10-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Smith added as a cosponsor,2021-04-26T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Constitution and Ethics, Ayes 6, Noes 3",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a cosponsor,2021-04-12T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-06T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-04-21T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Macco added as a coauthor,2021-05-19T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Knodl,2021-06-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-27T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 4, Noes 2",2021-09-23T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 3, Noes 1",2021-04-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Drake added as a coauthor,2021-12-01T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Representatives Drake and Stubbs added as coauthors,2021-09-28T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Housing, Commerce and Trade, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Steffen added as a coauthor,2021-05-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-13T05:00:00+00:00,['receipt'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-02-11T06:00:00+00:00,['amendment-passage'],WI,2021 +Fiscal estimate received,2021-10-22T05:00:00+00:00,['receipt'],WI,2021 +Representative Subeck added as a coauthor,2022-01-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-04T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Bernier,2021-04-08T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 2 offered by Representatives Andraca and Moore Omokunde,2021-12-07T06:00:00+00:00,[],WI,2021 +"Senate Substitute Amendment 1 rejected, Ayes 19, Noes 12",2021-09-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Representatives Plumer, L. Myers, Spreitzer, Vruwink and Considine added as coauthors",2021-04-07T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Corrections, Ayes 10, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-12-01T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Thiesfeldt,2021-09-28T05:00:00+00:00,[],WI,2021 +Representative Ramthun added as a coauthor,2021-03-04T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-17T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Representative James added as a coauthor,2021-09-02T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Carpenter added as a coauthor,2021-09-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-02T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Representative Schraa added as a cosponsor,2021-06-17T05:00:00+00:00,[],WI,2021 +"Report adoption recommended by Committee on Constitution and Ethics, Ayes 6, Noes 3",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Adopted,2022-02-17T06:00:00+00:00,['passage'],WI,2021 +Executive action taken,2021-05-05T05:00:00+00:00,[],WI,2021 +Representative Edming added as a coauthor,2021-06-08T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-05T05:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a coauthor,2021-12-03T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-04-07T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-05-25T05:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Spiros,2021-10-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-09T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-18T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-04-27T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2022-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Corrections, Ayes 10, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-02-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Armstrong,2021-10-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-25T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-11T06:00:00+00:00,[],WI,2021 +Representative Penterman added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 13, Noes 1",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-03-03T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-12T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-23T05:00:00+00:00,[],WI,2021 +Senator Larson added as a coauthor,2022-01-26T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2021-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a cosponsor,2021-03-11T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Nass,2021-05-03T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-30T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Rural Development, Ayes 15, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 12, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-02-15T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 3, Noes 2",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Drake added as a cosponsor,2021-09-28T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-04T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-02-18T06:00:00+00:00,[],WI,2021 +Representative Duchow added as a cosponsor,2021-10-28T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:10 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Senator Cowles added as a cosponsor,2021-03-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Constitution and Ethics, Ayes 6, Noes 3",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-03-18T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +Senator Jacque added as a cosponsor,2021-10-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-15T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-09-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a coauthor,2022-02-08T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Wanggaard,2021-05-04T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Energy and Utilities, Ayes 10, Noes 5",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Corrections, Ayes 9, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Government Accountability and Oversight, Ayes 8, Noes 0",2021-03-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Pope added as a cosponsor,2021-11-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-06T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-17-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Insurance, Licensing and Forestry, Ayes 4, Noes 0",2021-04-07T05:00:00+00:00,['amendment-passage'],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Children and Families, Ayes 12, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 3-23-2021 pursuant to Senate Rule 18(1),2021-03-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on State Affairs, Ayes 9, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-19T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +LRB correction (Assembly Amendment 1),2021-03-02T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-08T05:00:00+00:00,['receipt'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 14, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-03-10T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-30T05:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 8, Noes 4",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Moses added as a coauthor,2022-01-28T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Sortwell,2021-04-09T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 14, Noes 0",2021-03-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative James added as a cosponsor,2021-12-06T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-10-11T05:00:00+00:00,[],WI,2021 +Representative Ramthun added as a cosponsor,2021-02-26T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-06-23T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 16, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-03-04T06:00:00+00:00,[],WI,2021 +Assembly Amendment 3 offered by Representative Wittke,2021-09-21T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 9, Noes 4",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-04-27T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Schraa added as a cosponsor,2021-08-18T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-30-2021 pursuant to Senate Rule 18(1),2021-06-29T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-06-29T05:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-02-11T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-10-06T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-06-23T05:00:00+00:00,['receipt'],WI,2021 +Senator Stroebel added as a cosponsor,2021-10-11T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Housing, Commerce and Trade, Ayes 5, Noes 0",2022-02-24T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Oldenburg,2021-12-03T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative McGuire,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Skowronski added as a cosponsor,2021-07-27T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-04-08T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Schraa added as a coauthor,2021-09-29T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-08T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 1 offered by Representative Brooks,2021-12-14T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Representatives Plumer and Vruwink added as cosponsors,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Human Services, Children and Families, Ayes 3, Noes 2",2021-10-19T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Allen added as a coauthor,2021-03-04T06:00:00+00:00,[],WI,2021 +Representative Moses withdrawn as a coauthor,2021-04-07T05:00:00+00:00,['withdrawal'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +"Fiscal estimate requested from the Legislative Fiscal Bureau, by the committee on Senate Organization, pursuant to Senate Rule 96 (1), Ayes 3, Noes 2",2021-10-22T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Transportation, Ayes 11, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-23T06:00:00+00:00,['receipt'],WI,2021 +Representatives Edming and Doyle added as cosponsors,2021-03-15T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Health, Ayes 9, Noes 3",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 9, Noes 1",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-04-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 15, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-01-28T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-10-15T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-11T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2022-03-01T06:00:00+00:00,['amendment-passage'],WI,2021 +Representative Sinicki added as a cosponsor,2021-10-20T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 13, Noes 0",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-02-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 13, Noes 0",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Jacque,2022-01-18T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 4, Noes 0",2021-04-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 2 offered by Senator Felzkowski,2021-09-09T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Representatives Steffen and Tranel added as coauthors,2021-06-21T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 3, Noes 2",2021-03-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-03-31T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-19T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Universities and Technical Colleges, Ayes 5, Noes 4",2022-01-19T06:00:00+00:00,['amendment-passage'],WI,2021 +Public hearing held,2022-01-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Zimmerman,2022-02-08T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-19T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 9, Noes 3",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Deposited in the office of the Secretary of State on 8-4-2021,2021-08-04T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 12, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on State Affairs, Ayes 12, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Ramthun withdrawn as a coauthor,2021-10-20T05:00:00+00:00,['withdrawal'],WI,2021 +Public hearing held by committee on Criminal Justice and Public Safety,2021-08-18T05:00:00+00:00,[],WI,2021 +Referred to committee on State Affairs,2021-03-16T05:00:00+00:00,['referral-committee'],WI,2021 +Representatives Dittrich and Moses added as coauthors,2022-01-06T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 4, Noes 2",2021-09-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative Neylon,2021-10-25T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-04-07T05:00:00+00:00,[],WI,2021 +"Adopted, Ayes 19, Noes 12",2021-09-28T05:00:00+00:00,['passage'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-03-18T05:00:00+00:00,['amendment-passage'],WI,2021 +Executive action taken,2021-02-04T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-14T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-14T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 12, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2022-02-17T06:00:00+00:00,['amendment-passage'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +Representative Vining added as a coauthor,2021-12-17T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-05T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-04T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-03-03T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage by Committee on Human Services, Children and Families, Ayes 2, Noes 3",2021-10-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-17-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senators Kooyenga and Carpenter,2021-03-29T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-06T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2021-03-11T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-10-27T05:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-05-05T05:00:00+00:00,['referral-committee'],WI,2021 +Read and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-04-08T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-03-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Steffen added as a coauthor,2022-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Subeck added as a cosponsor,2022-02-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-04-12T05:00:00+00:00,[],WI,2021 +Rules suspended and taken up,2021-01-04T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-25T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Bowen added as a coauthor,2022-01-26T06:00:00+00:00,[],WI,2021 +Adopted,2022-01-25T06:00:00+00:00,['passage'],WI,2021 +Fiscal estimate received,2021-05-18T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-08-12T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-11T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a coauthor,2021-11-12T06:00:00+00:00,[],WI,2021 +Representatives Skowronski and Steffen added as coauthors,2022-02-08T06:00:00+00:00,[],WI,2021 +Referred to committee on State Affairs,2021-03-16T05:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption as amended of Assembly Joint Resolution 9 recommended by Committee on Constitution and Ethics, Ayes 5, Noes 4",2021-05-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-08T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2021-10-28T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Revenue, Ayes 4, Noes 1",2021-10-20T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 15, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 12, Noes 2",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 9, Noes 4",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-7-2021 by Committee on Rules,2021-01-05T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-05-27T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:35 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Senate Amendment 2 offered by Senators Larson, Johnson and Smith",2021-10-13T05:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives Considine, L. Myers, Shankland, Spreitzer and Vruwink",2021-04-02T05:00:00+00:00,[],WI,2021 +Representative Penterman added as a coauthor,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report adoption recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-11-04T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Energy and Utilities, Ayes 10, Noes 5",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +"Assembly Amendment 1 offered by Representatives Considine, L. Myers, Shankland, Spreitzer and Vruwink",2021-04-02T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-07T05:00:00+00:00,['receipt'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-03-18T05:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Utilities, Technology and Telecommunications, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Labor and Regulatory Reform,2021-03-16T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Made a special order of business at 9:41 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-15T05:00:00+00:00,[],WI,2021 +Senators Roth and Wimberger added as coauthors,2021-06-09T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +"Senate Amendment 1 rejected, Ayes 20, Noes 12",2021-06-09T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Consumer Protection, Ayes 6, Noes 2",2022-02-24T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-03-02T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:50 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Judiciary, Ayes 5, Noes 3",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Committee on Regulatory Licensing Reform,2021-05-04T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-14T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representatives Macco and McGuire,2021-03-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +LRB correction,2022-01-07T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2021-08-05T05:00:00+00:00,[],WI,2021 +Representative Conley added as a cosponsor,2022-02-14T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-19T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 by Committee on Rules,2021-02-11T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 6, Noes 4",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-03-12T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-13T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 2 offered by Representative Sortwell,2022-02-03T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-24T06:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Edming, Ramthun, Dallman and Macco",2021-03-12T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-02-24T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-22T05:00:00+00:00,[],WI,2021 +Adopted,2022-01-25T06:00:00+00:00,['passage'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 to Senate Amendment 2 offered by Senator Cowles,2022-02-07T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +"Adopted, Ayes 18, Noes 13",2021-01-26T06:00:00+00:00,['passage'],WI,2021 +Executive action taken,2021-11-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Representative Thiesfeldt added as a coauthor,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary, Ayes 5, Noes 3",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +LRB correction,2021-10-20T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-25T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-14T06:00:00+00:00,['receipt'],WI,2021 +Read and referred to committee on Senate Organization,2021-04-14T05:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 4, Noes 3",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-03-03T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Adopted,2021-04-13T05:00:00+00:00,['passage'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Wanggaard,2021-10-26T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Housing, Commerce and Trade, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Brooks added as a cosponsor,2022-02-09T06:00:00+00:00,[],WI,2021 +Representative Brostoff added as a coauthor,2022-03-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-19T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-08T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Kuglitsch,2021-12-23T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Campaigns and Elections, Ayes 6, Noes 3",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-09-09T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Representative S. Rodriguez added as a cosponsor,2021-03-05T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 4, Noes 1",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Spreitzer added as a cosponsor,2021-04-12T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-25T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 2 offered by Representative Bowen,2021-06-02T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Ayes 11, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Ohnstad added as a coauthor,2021-10-26T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 8, Noes 5",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-04-13T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Family Law, Ayes 9, Noes 0",2021-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Representative Vining added as a cosponsor,2022-03-15T05:00:00+00:00,[],WI,2021 +Deposited in the office of the Secretary of State on 3-9-2022,2022-03-09T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-14T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-27T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-04-05T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Local Government, Ayes 8, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-11-18T06:00:00+00:00,['receipt'],WI,2021 +Representative Drake added as a coauthor,2021-05-25T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-08-31T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-05-07T05:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-02-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-28T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Krug,2022-02-07T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-12T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 6, Noes 2",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Mental Health, Ayes 13, Noes 0",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-12-06T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Tittl added as a coauthor,2021-03-03T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Brostoff added as a coauthor,2022-01-27T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-23-2021 pursuant to Senate Rule 18(1),2021-03-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-16T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-03-03T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-11-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 8:32 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-03-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-05-03T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 3, Noes 2",2022-02-08T06:00:00+00:00,['amendment-passage'],WI,2021 +Representative Brostoff withdrawn as a coauthor,2021-04-15T05:00:00+00:00,['withdrawal'],WI,2021 +Received from Assembly,2021-01-28T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Moore Omokunde added as a coauthor,2022-01-20T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-08-12T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-05T05:00:00+00:00,['receipt'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage as amended recommended by Committee on Utilities, Technology and Telecommunications, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Shankland added as a cosponsor,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Utilities, Technology and Telecommunications, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Bowen added as a cosponsor,2021-05-13T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Aging and Long-Term Care, Ayes 7, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-03-31T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 11, Noes 3",2021-01-26T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-01-05T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-05-04T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 8, Noes 4",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-04-29T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-29T05:00:00+00:00,[],WI,2021 +Representative Spiros added as a cosponsor,2021-02-10T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 7, Noes 3",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Wanggaard,2021-05-05T05:00:00+00:00,[],WI,2021 +Representatives Magnafici and Dittrich added as cosponsors,2022-01-06T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-03-02T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-04-27T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Wittke added as a cosponsor,2021-03-16T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-11T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Corrections, Ayes 7, Noes 3",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Roys withdrawn as a cosponsor,2021-06-11T05:00:00+00:00,['withdrawal'],WI,2021 +Executive action taken,2022-01-05T06:00:00+00:00,[],WI,2021 +Read and referred to committee on Senate Organization,2021-04-14T05:00:00+00:00,['referral-committee'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Stafsholt,2021-10-18T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-05T05:00:00+00:00,[],WI,2021 +Adopted,2021-05-11T05:00:00+00:00,['passage'],WI,2021 +Assembly Amendment 1 offered by Representative Billings,2021-10-15T05:00:00+00:00,[],WI,2021 +"Fiscal estimate requested from the Legislative Fiscal Bureau, by the committee on Senate Organization, pursuant to Senate Rule 96 (1), Ayes 3, Noes 2",2021-10-22T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Environment, Ayes 8, Noes 1",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Substitute Amendment 2 offered by Senator Wanggaard,2022-02-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-05T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-18T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 10, Noes 4",2022-02-24T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-10-26T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +"Fiscal estimate requested from the Legislative Fiscal Bureau, by the committee on Senate Organization, pursuant to Senate Rule 96 (1), Ayes 3, Noes 2",2021-10-22T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Campaigns and Elections, Ayes 8, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Steffen added as a coauthor,2021-05-28T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Adopted,2022-01-25T06:00:00+00:00,['passage'],WI,2021 +Representative Vining added as a cosponsor,2021-12-17T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Substance Abuse and Prevention, Ayes 8, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-07-29T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-27T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representatives Andraca and Moore Omokunde,2021-12-07T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-02T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Colleges and Universities, Ayes 10, Noes 5",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-06-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-09T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Workforce Development, Ayes 8, Noes 4",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-11-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-24T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-09T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Marklein,2021-09-16T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Callahan,2021-11-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Children and Families, Ayes 12, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative McGuire,2022-01-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 10, Noes 3",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Dittrich,2021-10-19T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Referred to committee on Labor and Regulatory Reform,2021-03-16T05:00:00+00:00,['referral-committee'],WI,2021 +Senator Johnson added as a cosponsor,2021-10-29T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-04-13T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 7, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Bowen added as a cosponsor,2022-01-26T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-28T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-16T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-10-12T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-12-06T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +Representative Ramthun added as a coauthor,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Universities and Technical Colleges, Ayes 5, Noes 4",2022-01-19T06:00:00+00:00,['amendment-passage'],WI,2021 +Fiscal estimate received,2021-02-09T06:00:00+00:00,['receipt'],WI,2021 +Representative Vruwink added as a coauthor,2021-02-23T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-11-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-06T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Vining added as a coauthor,2021-03-05T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2022-02-18T06:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Agriculture, Ayes 13, Noes 0",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Substitute Amendment 1 adopted,2021-04-14T05:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Ayes 12, Noes 0",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-05-04T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Felzkowski,2021-04-21T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-08T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-12-01T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Referred to committee on State Affairs,2021-03-16T05:00:00+00:00,['referral-committee'],WI,2021 +"Representatives Spreitzer, Vining, Conley, Ohnstad, Emerson and Tusler added as cosponsors",2021-11-11T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Mental Health, Ayes 9, Noes 4",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-12-06T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 7, Noes 6",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Made a special order of business at 9:37 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-30T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 9:22 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-08-11T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +"Report passage recommended by Committee on Ways and Means, Ayes 12, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-12-01T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Representative Wittke added as a cosponsor,2021-03-16T05:00:00+00:00,[],WI,2021 +"Adopted, Ayes 20, Noes 12",2021-10-25T05:00:00+00:00,['passage'],WI,2021 +Representative Andraca added as a cosponsor,2021-09-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Ways and Means, Ayes 13, Noes 0",2022-01-27T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 offered by Senator Wanggaard,2021-11-17T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Doyle added as a cosponsor,2022-04-08T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 5, Noes 0",2021-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative August,2021-06-15T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Environment, Ayes 7, Noes 2",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 2 offered by Representative Magnafici,2021-09-09T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Housing, Commerce and Trade, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Senator L. Taylor added as a coauthor,2021-11-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-28T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-10-14T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report passage as amended recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-11-04T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-04-13T05:00:00+00:00,[],WI,2021 +"Adopted, Ayes 21, Noes 12",2021-11-08T06:00:00+00:00,['passage'],WI,2021 +Representative Ramthun added as a cosponsor,2021-06-09T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-15T05:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Murphy,2022-01-19T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 13, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-03-03T06:00:00+00:00,[],WI,2021 +"Report passage by Committee on Human Services, Children and Families, Ayes 2, Noes 3",2021-10-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Colleges and Universities, Ayes 10, Noes 5",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Shelton added as a coauthor,2022-01-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-11-03T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-27T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-03T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Public Benefit Reform, Ayes 7, Noes 0",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2021-04-07T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Fiscal estimate received,2021-12-10T06:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Judiciary, Ayes 5, Noes 3",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representatives Steffen and Bowen added as coauthors,2021-08-25T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-30-2021 pursuant to Senate Rule 18(1),2021-06-29T05:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives Sinicki, Shankland, Andraca and Drake",2022-02-14T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Roth,2021-10-22T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Insurance, Licensing and Forestry, Ayes 4, Noes 0",2021-04-05T05:00:00+00:00,['amendment-passage'],WI,2021 +Fiscal estimate received,2021-03-22T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Representative Rozar added as a coauthor,2022-01-25T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-17T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Environment, Ayes 7, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 8, Noes 4",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 7, Noes 4",2021-04-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-23T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-09-08T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Executive action taken,2021-04-08T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Energy and Utilities, Ayes 13, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 3, Noes 2",2021-10-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Family Law, Ayes 9, Noes 0",2021-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-03-25T05:00:00+00:00,['referral-committee'],WI,2021 +LRB correction,2022-02-01T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-18T05:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Representative Allen added as a coauthor,2021-03-18T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read and referred to committee on Senate Organization,2021-04-14T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2021-05-27T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Agriculture, Ayes 13, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-08T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Workforce Development, Ayes 7, Noes 5",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-05T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Veterans and Military Affairs and Constitution and Federalism, Ayes 5, Noes 0",2021-12-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Sinicki added as a cosponsor,2021-11-04T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 10, Noes 0",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives Spreitzer, Considine, L. Myers, Shankland and Vruwink",2021-04-02T05:00:00+00:00,[],WI,2021 +Assembly Amendment 3 offered by Representative Brooks,2022-02-21T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-10T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-06-10T05:00:00+00:00,[],WI,2021 +Representative Hong added as a coauthor,2022-07-25T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Steffen,2022-01-19T06:00:00+00:00,[],WI,2021 +Senator Felzkowski added as a coauthor,2021-03-16T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Moses added as a coauthor,2021-09-30T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 9, Noes 4",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-03-02T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Representative Duchow added as a cosponsor,2021-12-01T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +LRB correction (Senate Substitute Amendment 1),2022-01-19T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Housing, Commerce and Trade, Ayes 3, Noes 2",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2022-02-23T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-10-06T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-20T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Children and Families, Ayes 12, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 4, Noes 1",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Born added as a cosponsor,2021-06-22T05:00:00+00:00,[],WI,2021 +Adopted by unanimous rising vote,2022-02-15T06:00:00+00:00,['passage'],WI,2021 +Available for scheduling,2021-04-07T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Veterans and Military Affairs and Constitution and Federalism, Ayes 5, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report passage recommended by Committee on Education, Ayes 7, Noes 6",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Education, Ayes 9, Noes 4",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 3, Noes 2",2022-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-12-07T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-21T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Aging and Long-Term Care, Ayes 5, Noes 2",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Economic and Workforce Development, Ayes 5, Noes 0",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report Assembly Substitute Amendment 2 adoption recommended by Committee on Constitution and Ethics, Ayes 5, Noes 3",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Sporting Heritage, Ayes 13, Noes 1",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-18T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +Representative Anderson added as a coauthor,2022-03-10T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 7, Noes 0",2021-05-04T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-01-21T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Substance Abuse and Prevention, Ayes 8, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Financial Institutions, Ayes 9, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-08-11T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2022-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Brostoff added as a cosponsor,2021-03-05T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-08-26T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Steffen added as a coauthor,2021-03-11T06:00:00+00:00,[],WI,2021 +Representative Kitchens added as a cosponsor,2021-04-13T05:00:00+00:00,[],WI,2021 +Representatives Steffen and Tranel added as cosponsors,2021-06-22T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Petrowski,2022-01-13T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Universities and Technical Colleges, Ayes 5, Noes 4",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-05-03T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Environment, Ayes 6, Noes 2",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Senator Carpenter added as a cosponsor,2021-09-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-19T05:00:00+00:00,[],WI,2021 +Representative Hesselbein added as a coauthor,2022-01-19T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 3, Noes 2",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2022-02-18T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Dallman,2022-01-14T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2022-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 5, Noes 0",2021-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Local Government, Ayes 7, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Ohnstad added as a coauthor,2021-06-03T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2022-03-02T06:00:00+00:00,['amendment-passage'],WI,2021 +Representative Behnke added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-09T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Cowles,2021-10-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Steffen added as a cosponsor,2022-01-04T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 11, Noes 0",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-23-2021 pursuant to Senate Rule 18(1),2021-03-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-05T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Nass,2022-02-17T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on State Affairs, Ayes 10, Noes 1",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-07-14T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-01-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Kurtz added as a cosponsor,2022-01-19T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Rural Development, Ayes 13, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +LRB correction,2022-01-26T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Representative L. Myers added as a coauthor,2021-05-18T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 5, Noes 0",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Senate,2021-06-23T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-14T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-04T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representatives Gundrum and Duchow,2021-06-11T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Ayes 14, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Shankland added as a coauthor,2021-03-11T06:00:00+00:00,[],WI,2021 +"Representatives Spreitzer, Vruwink and Considine added as cosponsors",2021-04-08T05:00:00+00:00,[],WI,2021 +Referred to committee on State Affairs,2021-03-16T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Campaigns and Elections, Ayes 8, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Steffen added as a cosponsor,2021-04-09T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Senator Bewley added as a coauthor,2021-02-04T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-20T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on State Affairs,2021-03-16T05:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Brostoff added as a cosponsor,2022-03-07T06:00:00+00:00,[],WI,2021 +Representative Kurtz added as a coauthor,2021-10-15T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 13, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2021-09-28T05:00:00+00:00,['deferral'],WI,2021 +Representative Andraca added as a coauthor,2021-12-29T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Health, Ayes 5, Noes 0",2021-02-11T06:00:00+00:00,['amendment-passage'],WI,2021 +Adopted,2021-03-16T05:00:00+00:00,['passage'],WI,2021 +Referred to joint committee on Finance,2021-02-08T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 13, Noes 0",2022-01-27T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Zimmerman added as a cosponsor,2021-04-13T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-17T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-12T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Steffen added as a cosponsor,2021-05-24T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-15T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-16T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-07T06:00:00+00:00,['receipt'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2021-05-06T05:00:00+00:00,['amendment-passage'],WI,2021 +"Fiscal estimate requested from the Legislative Fiscal Bureau, by the committee on Senate Organization, pursuant to Senate Rule 96 (1), Ayes 5, Noes 0",2022-02-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-03-11T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2021-01-28T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-05-19T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Insurance, Licensing and Forestry, Ayes 4, Noes 0",2021-04-07T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage as amended recommended by Committee on Family Law, Ayes 9, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Stubbs added as a coauthor,2021-03-10T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-12-14T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-03-18T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-06-16T05:00:00+00:00,[],WI,2021 +Representative Plumer added as a cosponsor,2021-05-20T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Ayes 15, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 7, Noes 0",2021-05-04T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +"Fiscal estimate requested from the Legislative Fiscal Bureau, pursuant to Senate Rule 96 (1), Ayes 3, Noes 2",2022-01-21T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-10-06T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Utilities, Technology and Telecommunications, Ayes 5, Noes 0",2021-03-12T06:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2021-03-11T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 4, Noes 1",2021-05-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representatives Bowen and Steffen added as cosponsors,2021-08-25T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 4, Noes 1",2021-04-13T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Small Business Development, Ayes 13, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Rural Development, Ayes 13, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +Read and referred to committee on Senate Organization,2021-02-16T06:00:00+00:00,['referral-committee'],WI,2021 +Adopted,2021-04-13T05:00:00+00:00,['passage'],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Mursau,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Andraca added as a coauthor,2021-11-16T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-09T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Energy and Utilities, Ayes 15, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Swearingen,2021-10-18T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Environment, Ayes 7, Noes 2",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2021-08-04T05:00:00+00:00,[],WI,2021 +Representative Ramthun added as a cosponsor,2021-10-12T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-01T05:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a cosponsor,2021-09-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Stafsholt added as a coauthor,2021-10-13T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2022-02-24T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Senator Carpenter added as a cosponsor,2021-09-07T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-03-10T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 13, Noes 0",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 offered by Senator Cowles,2022-03-01T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Wittke,2021-09-16T05:00:00+00:00,[],WI,2021 +Representative Milroy added as a cosponsor,2022-02-25T06:00:00+00:00,[],WI,2021 +Representatives Vining and Shankland added as cosponsors,2021-12-16T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-09T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-09-15T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on State Affairs, Ayes 8, Noes 4",2021-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-13T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-16T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-05-06T05:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-10-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-03-02T06:00:00+00:00,[],WI,2021 +Representatives Drake and Stubbs added as cosponsors,2021-09-28T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2022-01-26T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-14T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 14, Noes 0",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Concurred in,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Dittrich added as a cosponsor,2021-06-08T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Representative Andraca added as a coauthor,2021-09-13T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-07-29T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Colleges and Universities, Ayes 9, Noes 4",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-12-08T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Shankland added as a cosponsor,2021-04-14T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-03T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-17T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-02-02T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Spiros,2021-09-21T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Testin,2021-04-30T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Stafsholt,2022-02-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-18T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 11, Noes 4",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-09-23T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Loudenbeck,2021-07-20T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Representatives Sinicki and Snodgrass added as coauthors,2021-11-17T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 3, Noes 2",2021-10-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-09-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-03T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Mursau,2021-10-26T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-07T05:00:00+00:00,[],WI,2021 +Representative Drake added as a coauthor,2021-05-25T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-11T05:00:00+00:00,[],WI,2021 +Concurred in,2021-01-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Representative Subeck withdrawn as a coauthor,2022-02-16T06:00:00+00:00,['withdrawal'],WI,2021 +"Report passage recommended by Committee on Rural Development, Ayes 8, Noes 5",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-10-18T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-18T05:00:00+00:00,[],WI,2021 +Representative Schraa added as a coauthor,2021-10-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-12-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-27T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-18T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-03-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-03-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Environment, Ayes 7, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative Ramthun,2021-04-06T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 3-23-2021 pursuant to Senate Rule 18(1),2021-03-19T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 7, Noes 4",2021-04-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Murphy,2022-01-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +LRB correction (Assembly Substitute Amendment 1),2022-01-19T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +Read and referred to committee on Senate Organization,2021-11-02T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Representative Billings added as a cosponsor,2021-03-15T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 6, Noes 3",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 13, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Stroebel added as a coauthor,2021-01-27T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-19T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-05-05T05:00:00+00:00,['receipt'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Corrections, Ayes 8, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 3-23-2021 pursuant to Senate Rule 18(1),2021-03-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-29T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Workforce Development, Ayes 8, Noes 4",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2022-02-16T06:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Amendment 4 offered by Representatives Spreitzer and Rozar,2021-06-01T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-07-13T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Summerfield,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Fiscal estimate received,2021-05-20T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Mursau added as a coauthor,2021-07-14T05:00:00+00:00,[],WI,2021 +"Representatives Rozar, Dittrich, Magnafici and Wichgers added as coauthors",2022-01-06T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-10-14T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2021-05-04T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 3, Noes 2",2022-02-10T06:00:00+00:00,['amendment-passage'],WI,2021 +Deposited in the office of the Secretary of State on 3-9-2022,2022-03-09T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Tourism, Ayes 16, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-26T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-14T06:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-09-22T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +"Report passage by Committee on Human Services, Children and Families, Ayes 2, Noes 3",2021-10-19T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Dittrich,2022-02-10T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-06T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 to Assembly Substitute Amendment 1 adoption recommended by Committee on Environment, Ayes 6, Noes 2",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-11-09T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2021-10-13T05:00:00+00:00,[],WI,2021 +Read and referred to committee on Senate Organization,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-02-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-12-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +"Representatives Neubauer, Spreitzer and Conley added as coauthors",2021-04-02T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +"Report adoption as amended recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-04-09T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Energy and Utilities, Ayes 15, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 7, Noes 1",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-05-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-09-01T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Transportation, Ayes 13, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Read and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to joint committee on Finance,2022-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 1 offered by Representatives Steffen and Sanfelippo,2022-01-14T06:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2021-08-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-02T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-30T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 11-8-2021 pursuant to Senate Rule 18(1),2021-11-05T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on State Affairs, Ayes 9, Noes 4",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Representative Andraca added as a coauthor,2021-06-04T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 5, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative McGuire,2022-01-18T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-25T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Hesselbein added as a cosponsor,2021-04-30T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-18T05:00:00+00:00,[],WI,2021 +Representative Allen added as a coauthor,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Substance Abuse and Prevention, Ayes 8, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Steffen added as a cosponsor,2021-04-09T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-01-22T06:00:00+00:00,[],WI,2021 +Representative Snyder added as a cosponsor,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Ayes 8, Noes 3",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Feyen,2022-01-19T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Senator Larson added as a coauthor,2021-11-05T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2021-10-28T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Senate Substitute Amendment 1 offered by Senators Agard, Roys, Smith, Pfaff, Larson, Johnson, Erpenbach, L. Taylor and Bewley",2022-01-25T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 2 offered by Senator Nass,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 13, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Veterans and Military Affairs and Constitution and Federalism, Ayes 3, Noes 2",2022-02-25T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Shelton added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 13, Noes 0",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 3, Noes 2",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2022-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Made a special order of business at 9:13 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Kooyenga,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative James added as a cosponsor,2021-10-12T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-02T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-16T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Local Government, Ayes 9, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Housing, Commerce and Trade, Ayes 4, Noes 1",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to calendar of 2-22-2022 pursuant to Assembly Rule 45 (1),2022-02-18T06:00:00+00:00,['referral'],WI,2021 +Representative Milroy added as a cosponsor,2022-02-25T06:00:00+00:00,[],WI,2021 +Senator Stafsholt added as a coauthor,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 9, Noes 5",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 2 offered by Representative Novak,2021-10-13T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report passage without recommendation, pursuant to Senate Rule 27 (4)(a), by Committee on Health, Ayes 2, Noes 2",2022-02-11T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Adopted,2022-02-22T06:00:00+00:00,['passage'],WI,2021 +Public hearing held,2021-04-20T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2022-02-07T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 7, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-07-29T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Schraa,2021-04-06T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on State Affairs, Ayes 12, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on State Affairs, Ayes 12, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative Edming,2021-12-15T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Adopted, Ayes 58, Noes 35, Paired 2",2021-03-23T05:00:00+00:00,['passage'],WI,2021 +Public hearing held,2021-02-08T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Accountability and Oversight, Ayes 5, Noes 3",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 11-8-2021 pursuant to Senate Rule 18(1),2021-11-05T05:00:00+00:00,[],WI,2021 +Laid on table,2021-06-09T05:00:00+00:00,['deferral'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 5, Noes 4",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-12-06T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Substance Abuse and Prevention, Ayes 8, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Representative Conley added as a coauthor,2021-07-12T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-04-27T05:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2022-02-11T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Subeck added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +"Report adoption recommended by Committee on Constitution and Ethics, Ayes 5, Noes 3",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 5, Noes 0",2021-10-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 9, Noes 5",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-06-08T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Marklein,2022-01-12T06:00:00+00:00,[],WI,2021 +Representatives Ramthun and Vruwink added as coauthors,2021-03-04T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a coauthor,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-08-25T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2022-02-28T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 8, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Gundrum withdrawn as a cosponsor,2021-09-17T05:00:00+00:00,['withdrawal'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-11-12T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-05-06T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 9, Noes 3",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-09-07T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Campaigns and Elections, Ayes 9, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 10, Noes 0",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2021-10-28T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Armstrong added as a cosponsor,2021-10-18T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-07-21T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-04-08T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 8, Noes 0",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-06-17T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Andraca added as a coauthor,2021-09-27T05:00:00+00:00,[],WI,2021 +Representative Thiesfeldt withdrawn as a coauthor,2021-12-14T06:00:00+00:00,['withdrawal'],WI,2021 +Representative Knodl added as a coauthor,2021-12-13T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Gundrum,2021-11-18T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Education, Ayes 9, Noes 4",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-02-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Murphy added as a cosponsor,2021-11-12T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report passage recommended by Committee on Education, Ayes 10, Noes 5",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-04-09T05:00:00+00:00,[],WI,2021 +Public hearing held by joint committee on Finance,2021-04-09T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-04T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2022-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-09T05:00:00+00:00,['receipt'],WI,2021 +Representative Considine added as a cosponsor,2021-10-06T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-10T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Local Government, Ayes 9, Noes 0",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-05-05T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-02T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-02T06:00:00+00:00,['receipt'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Judiciary, Ayes 5, Noes 3",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-29T05:00:00+00:00,['reading-2'],WI,2021 +Read and referred to committee on Senate Organization,2021-03-19T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Darling,2021-03-11T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-10T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2021-04-21T05:00:00+00:00,[],WI,2021 +Representative Shankland added as a cosponsor,2021-09-30T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative McGuire,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Hong added as a coauthor,2021-12-01T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 4, Noes 2",2021-09-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-07T05:00:00+00:00,[],WI,2021 +Senator Smith added as a coauthor,2021-03-03T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-08-24T05:00:00+00:00,[],WI,2021 +Made a special order of business at 9:18 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 6, Noes 1",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 4, Noes 1",2021-10-26T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative Andraca,2021-09-20T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2021-10-20T05:00:00+00:00,[],WI,2021 +Representative Cabral-Guevara added as a coauthor,2021-08-12T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative McGuire added as a coauthor,2022-01-06T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 to Senate Substitute Amendment 2 offered by Senator Cowles,2022-02-07T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-29T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-05T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-12-06T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Read and referred to committee on Senate Organization,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Senator Bewley added as a coauthor,2021-08-25T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Steffen added as a coauthor,2021-05-28T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a coauthor,2021-06-03T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-24T06:00:00+00:00,[],WI,2021 +"Adopted, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,['passage'],WI,2021 +Fiscal estimate received,2021-06-09T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 3, Noes 2",2021-03-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 9, Noes 5",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 14, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Committee on Transportation,2021-05-19T05:00:00+00:00,[],WI,2021 +Representative Goyke added as a cosponsor,2021-09-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-21T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-17T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Cabrera added as a cosponsor,2021-08-05T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Local Government, Ayes 9, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Wichgers added as a cosponsor,2021-10-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-12-15T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2021-05-04T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-15T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:21 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 13, Noes 1",2021-01-26T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 2 offered by Senator Petrowski,2022-01-06T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 8, Noes 5",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Drake added as a coauthor,2021-05-25T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Education, Ayes 13, Noes 0",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Moses withdrawn as a cosponsor,2021-08-26T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Cabral-Guevara added as a cosponsor,2021-08-12T05:00:00+00:00,[],WI,2021 +Representative Schraa added as a cosponsor,2022-02-08T06:00:00+00:00,[],WI,2021 +Senator Marklein added as a cosponsor,2022-02-10T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary, Ayes 9, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:39 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:51 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Cabrera added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 8, Noes 5",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Carpenter,2021-06-09T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-02-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-08T06:00:00+00:00,[],WI,2021 +Senator Stroebel added as a coauthor,2021-10-11T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 3 offered by Senator Cowles,2022-02-10T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Read and referred to committee on Rules,2022-02-16T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Ayes 12, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Conley added as a coauthor,2021-12-02T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 11, Noes 0",2021-10-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-14T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 8, Noes 4",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-10-22T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +"Senate Substitute Amendment 1 offered by Senators Bewley, Erpenbach, Ringhand, Roys and Wirch",2021-11-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Campaigns and Elections, Ayes 5, Noes 3",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read and referred to calendar of 10-27-2021 pursuant to Assembly Rule 45 (1),2021-10-25T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Representative Wichgers added as a coauthor,2022-02-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Representative Moore Omokunde added as a coauthor,2022-01-20T06:00:00+00:00,[],WI,2021 +Senator Larson added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Representative Ohnstad added as a coauthor,2021-06-25T05:00:00+00:00,[],WI,2021 +Representative Brandtjen withdrawn as a cosponsor,2021-09-01T05:00:00+00:00,['withdrawal'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 15, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative Behnke,2021-09-20T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2022-01-14T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +"Referred to committee on Labor and Regulatory Reform, Ayes 20, Noes 12",2021-03-16T05:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-10-14T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-13T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Read and referred to committee on Senate Organization,2022-01-24T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Edming added as a coauthor,2021-03-23T05:00:00+00:00,[],WI,2021 +Representative Kurtz added as a coauthor,2021-10-15T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-09T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-28T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-01-04T06:00:00+00:00,[],WI,2021 +"Representatives Penterman, Steffen and Bowen added as coauthors",2021-08-25T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-02T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Stubbs added as a cosponsor,2022-01-19T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-06-03T05:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2021-09-16T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-07-30T05:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2022-02-23T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Penterman added as a cosponsor,2021-09-20T05:00:00+00:00,[],WI,2021 +Representatives Kitchens and Wichgers added as cosponsors,2021-04-13T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Public hearing held,2021-08-11T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +"Report adoption recommended by Committee on Financial Institutions and Revenue, Ayes 3, Noes 2",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2022-01-21T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-22T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-28T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 10, Noes 0",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Judiciary, Ayes 5, Noes 3",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-03-09T06:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 1 offered by Representative Wichgers,2021-09-16T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-12-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 1 offered by Representative J. Rodriguez,2021-06-29T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Refused to withdraw from the committee on Labor and Regulatory Reform, Ayes 11, Noes 19",2022-03-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Universities and Technical Colleges, Ayes 8, Noes 1",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held by joint committee on Finance,2021-04-21T05:00:00+00:00,[],WI,2021 +Representative Shankland added as a cosponsor,2021-10-25T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Housing, Commerce and Trade, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2021-10-28T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-22T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Substance Abuse and Prevention, Ayes 8, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read and referred to committee on Senate Organization,2022-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-03-19T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 7, Noes 3",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-06-08T05:00:00+00:00,['receipt'],WI,2021 +Representative Loudenbeck added as a coauthor,2021-05-20T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-09-21T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 to Senate Substitute Amendment 1 recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-03-03T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 8, Noes 4",2022-02-24T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-26T05:00:00+00:00,[],WI,2021 +Representative Edming withdrawn as a coauthor,2021-09-21T05:00:00+00:00,['withdrawal'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Workforce Development, Ayes 8, Noes 3",2021-04-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 8, Noes 5",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +"Report Assembly Amendment 1 to Assembly Substitute Amendment 1 adoption recommended by Committee on Transportation, Ayes 13, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 6, Noes 2",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-02-09T06:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 8, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Made a special order of business at 8:07 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 13, Noes 0",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Brostoff added as a cosponsor,2022-03-07T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-29T05:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 1 offered by Representative Katsma,2022-01-06T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 14, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 1",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Local Government, Ayes 9, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Amendment 1 to Senate Substitute Amendment 1 recommended by Committee on Labor and Regulatory Reform, Ayes 4, Noes 1",2021-10-21T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Local Government, Ayes 9, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Dittrich,2022-01-26T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-04T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-06-18T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-04-27T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Marklein,2021-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-27T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-12-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-27T05:00:00+00:00,[],WI,2021 +Representative Mursau added as a coauthor,2022-02-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-05-18T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-08-20T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-26T05:00:00+00:00,[],WI,2021 +Representative Macco added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +LRB correction,2022-02-07T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Representative Considine added as a coauthor,2021-10-06T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Representative Brostoff added as a coauthor,2022-03-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Read and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Local Government, Ayes 9, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Steffen added as a cosponsor,2021-04-09T05:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 6-23-2021,2021-06-23T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2022-02-14T06:00:00+00:00,['amendment-passage'],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 6-23-2021,2021-06-23T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-06-15T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 4, Noes 3",2021-06-18T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Penterman added as a cosponsor,2021-09-01T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 12, Noes 1",2022-01-27T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 14, Noes 0",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-10T06:00:00+00:00,[],WI,2021 +Read a second time,2021-11-08T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Representatives Kitchens and Shankland added as cosponsors,2021-04-12T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-03T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Health, Ayes 5, Noes 0",2021-02-11T06:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Steffen added as a coauthor,2021-04-09T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Emerson added as a coauthor,2022-01-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-01-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-04-08T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 8, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-06-15T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Representative Kitchens added as a cosponsor,2021-04-13T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-02-05T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Shankland added as a cosponsor,2021-03-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-06-23T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 3, Noes 2",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Referred to committee on State Affairs,2021-03-16T05:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-07-26T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Sporting Heritage, Ayes 14, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Carpenter added as a coauthor,2021-03-16T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 6-23-2021,2021-06-23T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Representative Novak added as a cosponsor,2021-09-21T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-25T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Feyen,2022-02-03T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Andraca added as a coauthor,2021-11-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Corrections, Ayes 9, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-03-12T06:00:00+00:00,[],WI,2021 +Representative Bowen added as a cosponsor,2021-10-18T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Accountability and Oversight, Ayes 8, Noes 0",2021-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Kooyenga,2022-02-15T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-30-2021 pursuant to Senate Rule 18(1),2021-06-29T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-14T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 offered by Senator Petrowski,2021-11-29T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-02T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-05-12T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-23T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-04T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 4, Noes 2",2021-09-16T05:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-05-13T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-01-21T06:00:00+00:00,[],WI,2021 +Referred to committee on Labor and Regulatory Reform,2021-03-16T05:00:00+00:00,['referral-committee'],WI,2021 +"Report without recommendation pursuant to s. 227.26(2)(h), Wisconsin Statutes, by Committee on Judiciary",2022-03-10T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-11-09T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-04-13T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Universities and Technical Colleges, Ayes 5, Noes 4",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-11T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-03-02T06:00:00+00:00,[],WI,2021 +Representative Subeck withdrawn as a coauthor,2022-01-11T06:00:00+00:00,['withdrawal'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 10, Noes 0",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Senators Carpenter and Smith withdrawn as cosponsors,2021-09-27T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 9, Noes 4",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 10, Noes 5",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 offered by Senator Roth,2022-01-10T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Utilities, Technology and Telecommunications, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Ramthun added as a coauthor,2021-09-16T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-08-12T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a coauthor,2021-03-11T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 13, Noes 0",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Referred to committee on Labor and Regulatory Reform, Ayes 18, Noes 14",2021-03-16T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 1 offered by Representative Kurtz,2021-09-17T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-07-13T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-14T06:00:00+00:00,[],WI,2021 +Representative Anderson added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Representative McGuire added as a cosponsor,2021-03-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-26T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-21T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Agriculture, Ayes 13, Noes 0",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a coauthor,2021-06-03T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-08-26T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Bradley added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-19T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2021-06-18T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-05-21T05:00:00+00:00,['receipt'],WI,2021 +Senator Carpenter added as a coauthor,2021-02-16T06:00:00+00:00,[],WI,2021 +Read and referred to committee on Senate Organization,2021-05-11T05:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Housing, Commerce and Trade, Ayes 3, Noes 2",2022-02-24T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-01-21T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-06-03T05:00:00+00:00,['amendment-passage'],WI,2021 +Executive action taken,2021-10-14T05:00:00+00:00,[],WI,2021 +Read and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Spreitzer added as a cosponsor,2022-02-23T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-12T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 9, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Senator Carpenter added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Representative Drake added as a cosponsor,2021-05-26T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Summerfield,2022-01-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-05-04T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on table,2021-04-14T05:00:00+00:00,['deferral'],WI,2021 +"Report passage recommended by Committee on Workforce Development, Ayes 7, Noes 3",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-09-16T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 9, Noes 4",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Substance Abuse and Prevention, Ayes 8, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Representative Vruwink added as a cosponsor,2021-12-10T06:00:00+00:00,[],WI,2021 +"Report adoption as amended of Assembly Joint Resolution 112 recommended by Committee on Constitution and Ethics, Ayes 5, Noes 3",2022-02-18T06:00:00+00:00,[],WI,2021 +LRB correction,2021-09-09T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Local Government, Ayes 6, Noes 3",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read and referred to committee on Senate Organization,2022-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-05-04T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Environment, Ayes 7, Noes 2",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 11, Noes 0",2021-04-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-11-02T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Special Committee on Trade and Supply Chain, Ayes 7, Noes 2",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 3, Noes 2",2021-10-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 13, Noes 0",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 offered by Senator Kooyenga,2021-10-20T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 3, Noes 2",2022-02-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-04-08T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 11, Noes 0",2021-04-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Vining added as a coauthor,2021-09-28T05:00:00+00:00,[],WI,2021 +Referred to committee on State Affairs,2021-03-16T05:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-14T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-03-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2021-03-19T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 0",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 13, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-02-16T06:00:00+00:00,[],WI,2021 +Representative Hesselbein added as a coauthor,2021-04-13T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 5, Noes 0",2021-03-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Representative James added as a coauthor,2021-04-07T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-17-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Local Government, Ayes 6, Noes 3",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Public Benefit Reform, Ayes 7, Noes 0",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-13T05:00:00+00:00,[],WI,2021 +Representative Cabral-Guevara withdrawn as a coauthor,2021-09-02T05:00:00+00:00,['withdrawal'],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Rural Development, Ayes 13, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Environment, Ayes 5, Noes 1",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2021-09-24T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-25T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 14, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Available for scheduling,2021-10-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-14T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-05-06T05:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Amendment 1 offered by Representative Murphy,2022-02-08T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 12, Noes 0",2022-02-24T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +Representative Milroy added as a cosponsor,2021-09-27T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2022-02-15T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Small Business Development, Ayes 13, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-10-13T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-04-13T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 14, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +"Report passage without recommendation, pursuant to Senate Rule 27 (4)(a), by Committee on Health, Ayes 2, Noes 2",2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-08T05:00:00+00:00,['receipt'],WI,2021 +Read and referred to committee on Rules,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-10-19T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2022-03-02T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Subeck added as a coauthor,2021-08-26T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 4, Noes 1",2021-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Penterman added as a cosponsor,2021-08-26T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-13T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senators Cowles and Wimberger,2021-03-31T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-06-10T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-23-2021 pursuant to Senate Rule 18(1),2021-03-19T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Insurance, Ayes 11, Noes 0",2021-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Environment, Ayes 6, Noes 2",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-11T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Utilities, Technology and Telecommunications, Ayes 5, Noes 0",2021-03-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2022-02-18T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-26T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 8, Noes 2",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Wichgers,2022-02-15T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2022-02-22T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-14T05:00:00+00:00,[],WI,2021 +Representative Bowen added as a coauthor,2021-10-18T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Senator Stafsholt added as a coauthor,2021-04-22T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2021-05-04T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2021-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-10-13T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Colleges and Universities, Ayes 8, Noes 4",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Cabrera added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Representative Behnke added as a cosponsor,2022-01-06T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-31T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-03-15T05:00:00+00:00,[],WI,2021 +Representative Edming added as a cosponsor,2021-02-22T06:00:00+00:00,[],WI,2021 +Representative Born added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Sporting Heritage, Ayes 10, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-05-27T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-04-07T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Representatives Cabrera and Shankland added as cosponsors,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 15, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 to Assembly Substitute Amendment 1 adoption recommended by Committee on Energy and Utilities, Ayes 10, Noes 5",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-02-17T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 0",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-03-18T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Steffen added as a coauthor,2021-10-18T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Environment, Ayes 7, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Allen added as a cosponsor,2021-02-15T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-10-28T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Transportation, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 13, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Corrections, Ayes 9, Noes 0",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Representative Spreitzer added as a coauthor,2022-01-20T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-09T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-08T06:00:00+00:00,[],WI,2021 +Senator Pfaff added as a coauthor,2022-01-31T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 4, Noes 0",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Subeck added as a cosponsor,2021-10-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-05T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Senator Bernier added as a coauthor,2021-12-09T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 to Senate Substitute Amendment 1 offered by Senator Nass,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a coauthor,2021-08-24T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Insurance, Licensing and Forestry, Ayes 4, Noes 0",2021-04-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Energy and Utilities, Ayes 15, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representatives Stubbs and Hesselbein added as coauthors,2022-01-19T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-05-19T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Read and referred to committee on Senate Organization,2021-02-05T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-05-19T05:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-07-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-11T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 2 offered by Representative Dittrich,2022-02-10T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 3, Noes 2",2021-09-02T05:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-01-29T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 6, Noes 2",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Transportation, Ayes 13, Noes 0",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Transportation, Ayes 13, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Baldeh added as a coauthor,2021-11-15T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Education, Ayes 12, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-03-19T05:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 13, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Representative Magnafici added as a cosponsor,2022-01-31T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Representative Brostoff added as a cosponsor,2022-01-27T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-13T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-10-18T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Rural Development, Ayes 13, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Labor and Integrated Employment, Ayes 9, Noes 0",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 10, Noes 5",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Steffen added as a cosponsor,2022-02-22T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-09-22T05:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Natural Resources and Energy, Ayes 3, Noes 2",2022-01-19T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Plumer added as a coauthor,2021-09-13T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Plumer and Stubbs added as coauthors,2021-09-13T05:00:00+00:00,[],WI,2021 +Read,2021-03-16T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 8, Noes 4",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-26T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-24T05:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Environment, Ayes 7, Noes 2",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Jobs and the Economy, Ayes 9, Noes 3",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-06-01T05:00:00+00:00,[],WI,2021 +Made a special order of business at 9:40 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Public hearing held,2021-06-15T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 11, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-04-13T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Colleges and Universities, Ayes 10, Noes 5",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2021-06-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Insurance, Licensing and Forestry, Ayes 4, Noes 0",2021-04-05T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Novak added as a coauthor,2021-09-20T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-16T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-21T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-12-06T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Rural Development, Ayes 8, Noes 5",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-04-07T05:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2022-02-11T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2022-03-11T06:00:00+00:00,['receipt'],WI,2021 +Withdrawn from committee on Judiciary and referred to committee on Rules pursuant to Assembly Rule 42 (3)(c),2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +"Assembly Amendment 2 offered by Representatives Spreitzer, Considine, L. Myers, Shankland and Vruwink",2021-04-02T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Representative Vruwink added as a coauthor,2021-12-10T06:00:00+00:00,[],WI,2021 +Referred to joint committee on Finance,2022-01-27T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Ohnstad added as a coauthor,2021-06-03T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Environment, Ayes 6, Noes 2",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-12-14T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-04-13T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Bowen added as a cosponsor,2021-03-16T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-03-23T05:00:00+00:00,['deferral'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Financial Institutions, Ayes 8, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-11-18T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-12-07T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 6, Noes 4",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-10-26T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Representative Allen added as a coauthor,2021-04-28T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Public Benefit Reform, Ayes 5, Noes 2",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-19T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Darling,2021-05-07T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-11-04T05:00:00+00:00,[],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative J. Rodriguez,2021-12-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Representatives Skowronski and Shelton added as cosponsors,2022-01-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Steffen added as a cosponsor,2021-12-15T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-01-26T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-14T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-04-19T05:00:00+00:00,['receipt'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-06-03T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage as amended recommended by Committee on Family Law, Ayes 8, Noes 1",2021-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 offered by Senator Kooyenga,2021-10-22T05:00:00+00:00,[],WI,2021 +Senators Stafsholt and L. Taylor added as coauthors,2022-01-12T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-10-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-03-01T06:00:00+00:00,[],WI,2021 +"Report introduction of Senate Amendment 2 by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-04-13T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Cowles,2021-12-13T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +LRB correction,2022-01-19T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Felzkowski,2021-04-21T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Labor and Regulatory Reform,2021-03-16T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Corrections, Ayes 9, Noes 0",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Drake added as a cosponsor,2021-06-22T05:00:00+00:00,[],WI,2021 +Senator Carpenter added as a coauthor,2021-06-30T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-04-07T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 11-8-2021 pursuant to Senate Rule 18(1),2021-11-05T05:00:00+00:00,[],WI,2021 +Senator Bewley added as a coauthor,2021-10-06T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-08T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-12-06T06:00:00+00:00,[],WI,2021 +Adopted,2021-11-08T06:00:00+00:00,['passage'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Kurtz,2021-10-13T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-09-15T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-14T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Housing, Commerce and Trade, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Refused to adopt, Ayes 16, Noes 17",2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Referred to committee on Labor and Regulatory Reform, Ayes 20, Noes 12",2021-03-16T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Allen added as a coauthor,2022-02-24T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Financial Institutions and Revenue, Ayes 4, Noes 1",2021-06-03T05:00:00+00:00,['amendment-passage'],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Regulatory Licensing Reform, Ayes 9, Noes 0",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-12-06T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Conley added as a cosponsor,2021-07-26T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Sortwell,2021-04-16T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Representative Tittl added as a coauthor,2021-06-15T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Insurance, Ayes 9, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Penterman added as a coauthor,2021-11-16T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 10, Noes 3",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representatives Vruwink and Doyle added as cosponsors,2022-07-14T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 9, Noes 5",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Labor and Regulatory Reform,2021-06-30T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-02-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-06-03T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2021-04-08T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Loudenbeck added as a cosponsor,2022-02-08T06:00:00+00:00,[],WI,2021 +Senator Bernier withdrawn as a cosponsor,2021-12-07T06:00:00+00:00,['withdrawal'],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 2-22-2022,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Allen added as a coauthor,2021-04-07T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +Representative Allen added as a coauthor,2021-03-04T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Darling,2022-01-06T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Spiros,2021-06-01T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-09T06:00:00+00:00,['receipt'],WI,2021 +Senator Larson added as a coauthor,2022-02-16T06:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Local Government, Ayes 7, Noes 2",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Carpenter added as a coauthor,2021-09-21T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-23T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-12T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-03-18T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 12, Noes 2",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Adopted, Ayes 20, Noes 11",2021-04-14T05:00:00+00:00,['passage'],WI,2021 +Assembly Amendment 1 offered by Representative Tittl,2022-01-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2021-05-04T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read and referred to committee on Senate Organization,2021-02-05T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 9, Noes 4",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Representative Milroy added as a coauthor,2022-02-25T06:00:00+00:00,[],WI,2021 +"Representatives Spreitzer, Vining, Conley, Ohnstad, Emerson and Tusler added as cosponsors",2021-11-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-08T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 3, Noes 2",2022-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 11, Noes 1",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Universities and Technical Colleges, Ayes 5, Noes 4",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-05-07T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Knodl,2021-10-01T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 to Assembly Substitute Amendment 1 adoption recommended by Committee on Children and Families, Ayes 12, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Stubbs added as a cosponsor,2021-10-22T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Available for scheduling,2021-09-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Bradley added as a cosponsor,2021-06-22T05:00:00+00:00,[],WI,2021 +Read and referred to committee on Senate Organization,2021-11-02T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 offered by Senator Feyen,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Rural Development, Ayes 13, Noes 0",2021-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative McGuire added as a cosponsor,2021-10-25T05:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Available for scheduling,2021-03-19T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Utilities, Technology and Telecommunications, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 2 offered by Representative Petersen,2021-03-03T06:00:00+00:00,[],WI,2021 +Representative Plumer added as a cosponsor,2021-09-13T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-06-16T05:00:00+00:00,['deferral'],WI,2021 +"Report passage recommended by Committee on Constitution and Ethics, Ayes 6, Noes 3",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Substitute Amendment 2 offered by Representative Spiros,2022-01-25T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Stubbs added as a coauthor,2021-03-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 13, Noes 0",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-05-05T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-10-27T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 13, Noes 0",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Jacque,2022-01-28T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-02-11T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2022-03-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Representatives Kitchens and Wichgers added as cosponsors,2021-04-13T05:00:00+00:00,[],WI,2021 +Read and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-03-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-05-04T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-06T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-03T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Insurance, Licensing and Forestry, Ayes 4, Noes 0",2021-10-06T05:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +"Representatives S. Rodriguez, Andraca and Vining added as coauthors",2021-11-02T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Agriculture, Ayes 13, Noes 0",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Fiscal estimate requested from the Legislative Fiscal Bureau, by the committee on Senate Organization, pursuant to Senate Rule 96 (1), Ayes 3, Noes 2",2021-10-22T05:00:00+00:00,[],WI,2021 +Representative Edming added as a cosponsor,2021-02-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-23T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 7, Noes 4",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-10-19T05:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Amendment 1 offered by Representative Spiros,2022-02-03T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 6, Noes 4",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-04-09T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2022-01-07T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-03-19T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-04-27T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-02T06:00:00+00:00,[],WI,2021 +Senator Larson added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-01-05T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 to Assembly Substitute Amendment 1 adoption recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 12, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-01-19T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Bowen added as a cosponsor,2021-03-16T05:00:00+00:00,[],WI,2021 +Read and referred to committee on Rules,2021-11-09T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 10, Noes 3",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Government Accountability and Oversight, Ayes 8, Noes 0",2021-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-11-04T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-11-03T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Transportation, Ayes 6, Noes 5",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 1 offered by Representative Sortwell,2021-06-21T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-02-25T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-18T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-04-14T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Children and Families, Ayes 8, Noes 4",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Education, Ayes 9, Noes 0",2021-06-09T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Wichgers added as a coauthor,2021-03-05T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Human Services, Children and Families, Ayes 3, Noes 2",2021-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Government Accountability and Oversight, Ayes 5, Noes 3",2021-03-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-16T06:00:00+00:00,['receipt'],WI,2021 +Senator Bernier added as a cosponsor,2021-12-09T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 12, Noes 0",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Representative Milroy added as a coauthor,2021-10-21T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-04T06:00:00+00:00,[],WI,2021 +"Fiscal estimate requested from the Legislative Fiscal Bureau, by the committee on Senate Organization, pursuant to Senate Rule 96 (1), Ayes 3, Noes 2",2021-10-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-28T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-07-21T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-04-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 5, Noes 0",2021-04-13T05:00:00+00:00,['amendment-passage'],WI,2021 +Laid on the table,2021-11-11T06:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 11-8-2021 pursuant to Senate Rule 18(1),2021-11-05T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Transportation, Ayes 11, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Steffen added as a coauthor,2021-04-09T05:00:00+00:00,[],WI,2021 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 3, Noes 2",2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Brostoff added as a coauthor,2022-03-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Roth added as a coauthor,2021-04-12T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-02-16T06:00:00+00:00,['deferral'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Representative Milroy added as a cosponsor,2022-02-25T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 12, Noes 0",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Kitchens added as a cosponsor,2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Wittke added as a coauthor,2021-03-15T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on State Affairs, Ayes 7, Noes 4",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-08T06:00:00+00:00,[],WI,2021 +Assembly Amendment 4 offered by Representative Thiesfeldt,2021-09-21T05:00:00+00:00,[],WI,2021 +Read and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Insurance, Licensing and Forestry, Ayes 4, Noes 0",2021-04-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 4, Noes 1",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 offered by Senator Stafsholt,2022-02-18T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 2 offered by Representative VanderMeer,2022-01-19T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report adoption of Senate Substitute Amendment 2 recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 0",2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Amendment 1 offered by Representative Edming,2022-01-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Representative James added as a coauthor,2021-10-13T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 2 offered by Representative Dittrich,2022-02-07T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-27T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Corrections, Ayes 9, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-03-03T06:00:00+00:00,[],WI,2021 +Senator Larson added as a cosponsor,2022-02-16T06:00:00+00:00,[],WI,2021 +Representative Brooks added as a coauthor,2021-11-15T06:00:00+00:00,[],WI,2021 +Representative Born added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 2 offered by Senator Wanggaard,2022-01-26T06:00:00+00:00,[],WI,2021 +Adopted,2022-01-20T06:00:00+00:00,['passage'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Judiciary, Ayes 5, Noes 3",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Energy and Utilities, Ayes 10, Noes 5",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Senate Amendment 2 rejected, Ayes 20, Noes 12",2021-06-09T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-14T05:00:00+00:00,[],WI,2021 +Read and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2021-03-17T05:00:00+00:00,['deferral'],WI,2021 +Executive action taken,2021-09-07T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-01-26T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Consumer Protection, Ayes 6, Noes 2",2022-02-24T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Adopted,2021-06-09T05:00:00+00:00,['passage'],WI,2021 +Representative Brostoff added as a cosponsor,2022-03-07T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Read and referred to committee on Senate Organization,2021-03-19T05:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2022-02-25T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Felzkowski,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-29T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Utilities, Technology and Telecommunications, Ayes 3, Noes 2",2022-02-11T06:00:00+00:00,['amendment-passage'],WI,2021 +Fiscal estimate received,2021-12-15T06:00:00+00:00,['receipt'],WI,2021 +Representative Shankland added as a coauthor,2021-05-27T05:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Drake, Bowen, Haywood, Stubbs, L. Myers, Baldeh, Moore Omokunde, Neubauer, Spreitzer, Hebl, Subeck, Hesselbein, Vining, Brostoff, Considine, Emerson, B. Meyers, Ohnstad, Anderson, Hong, Conley, Hintz, Riemer, Andraca, McGuire, Shankland, Snodgrass, S. Rodriguez, Shelton, Pope, Vruwink, Goyke, Doyle, Milroy, Ortiz-Velez, Cabrera and Billings",2022-02-24T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Housing, Commerce and Trade, Ayes 5, Noes 0",2022-02-24T06:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-13T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-03-05T06:00:00+00:00,[],WI,2021 +Representatives Rozar and Vruwink added as coauthors,2021-04-13T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 8, Noes 5",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-10-11T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-09-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-06-30T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Skowronski,2022-01-14T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +Representatives Vruwink and Doyle added as coauthors,2022-07-14T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Placed at the foot of the calendar of 6-22-2021,2021-06-22T05:00:00+00:00,[],WI,2021 +Representative Milroy added as a cosponsor,2022-02-25T06:00:00+00:00,[],WI,2021 +Representative Kitchens added as a coauthor,2022-01-19T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Representative Loudenbeck added as a coauthor,2021-10-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-03-18T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Brostoff added as a coauthor,2022-03-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Energy and Utilities, Ayes 10, Noes 5",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 3 offered by Senator Bernier,2021-10-19T05:00:00+00:00,[],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Marklein,2021-09-15T05:00:00+00:00,[],WI,2021 +"Report passage by Committee on Elections, Election Process Reform and Ethics, Ayes 2, Noes 3",2021-06-03T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Read and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-06-03T05:00:00+00:00,['amendment-passage'],WI,2021 +Made a special order of business at 9:05 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-04T06:00:00+00:00,[],WI,2021 +Representatives Edming and Tittl added as cosponsors,2021-03-02T06:00:00+00:00,[],WI,2021 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2021-01-06T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a cosponsor,2021-08-26T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Ballweg,2021-10-19T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-11-04T05:00:00+00:00,[],WI,2021 +Made a special order of business at 9:38 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a coauthor,2021-03-02T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representatives Goyke and Hebl added as coauthors,2021-03-08T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage without recommendation, pursuant to Senate Rule 27 (4)(a), by Committee on Health, Ayes 2, Noes 2",2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Financial Institutions and Revenue, Ayes 4, Noes 1",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-28T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Judiciary, Ayes 5, Noes 3",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 5, Noes 0",2021-03-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-08-26T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Read and referred to committee on Senate Organization,2021-04-14T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Constitution and Ethics, Ayes 6, Noes 3",2021-06-09T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Read and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Allen added as a coauthor,2021-06-23T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Representative Loudenbeck added as a coauthor,2022-02-08T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Assembly Amendment 1 offered by Representative Dittrich,2022-02-17T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-06T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-03-19T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 8, Noes 4",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-05-07T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-03-03T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 3, Noes 2",2021-10-18T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +"Concurred in, Ayes 54, Noes 0",2021-01-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:36 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-02-11T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-06-03T05:00:00+00:00,[],WI,2021 +Representative Shelton added as a coauthor,2021-10-11T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +Made a special order of business at 8:37 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Universities and Technical Colleges, Ayes 5, Noes 4",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 2 offered by Representative Zimmerman,2021-11-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Human Services, Children and Families, Ayes 3, Noes 2",2021-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-28T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-10-27T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 16, Noes 0",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-03-17T05:00:00+00:00,['deferral'],WI,2021 +Available for scheduling,2021-10-19T05:00:00+00:00,[],WI,2021 +Adopted,2021-05-11T05:00:00+00:00,['passage'],WI,2021 +LRB correction,2021-09-09T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-12-06T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2021-05-05T05:00:00+00:00,['amendment-passage'],WI,2021 +Fiscal estimate received,2021-02-09T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 2 offered by Representative Oldenburg,2022-01-24T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-06-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 3, Noes 2",2022-01-21T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-25T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-04-19T05:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 13, Noes 0",2022-03-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Constitution and Ethics, Ayes 7, Noes 2",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 3-23-2021 pursuant to Senate Rule 18(1),2021-03-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2021-03-04T06:00:00+00:00,[],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 12, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 3-17-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +"Report passage as amended recommended by Committee on Housing, Commerce and Trade, Ayes 5, Noes 0",2022-02-24T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-01-06T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-03-19T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-18T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-01-04T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-04-13T05:00:00+00:00,[],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-04-20T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken by committee on Criminal Justice and Public Safety,2021-10-05T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-01T06:00:00+00:00,[],WI,2021 +Representative L. Myers added as a cosponsor,2021-05-18T05:00:00+00:00,[],WI,2021 +Representative Cabral-Guevara added as a coauthor,2021-03-08T06:00:00+00:00,[],WI,2021 +Representative Pronschinske added as a coauthor,2022-01-13T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-08T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Utilities, Technology and Telecommunications, Ayes 3, Noes 2",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Loudenbeck,2021-03-17T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2021-06-09T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2021-05-07T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Kitchens added as a cosponsor,2021-04-13T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-03-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Brostoff added as a cosponsor,2022-03-07T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 12, Noes 0",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 9, Noes 4",2021-06-09T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Senate Amendment 1 offered by Senator Bernier,2021-08-18T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Insurance, Licensing and Forestry, Ayes 4, Noes 0",2021-10-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-09-22T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-08T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-01-29T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Made a special order of business at 9:02 AM on 1-28-2021 pursuant to Assembly Resolution 8,2021-01-26T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-05-07T05:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-06-22T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Transportation, Ayes 11, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Anderson added as a coauthor,2022-03-03T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Stroebel,2021-05-10T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2021-09-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-11-17T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-03T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-13T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-20T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Representative Cabrera added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-06-16T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2021-10-27T05:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Representative Conley added as a coauthor,2021-03-24T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Insurance, Licensing and Forestry, Ayes 4, Noes 1",2021-10-27T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-08-18T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-03-03T06:00:00+00:00,[],WI,2021 +Laid on table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Universities and Technical Colleges, Ayes 9, Noes 0",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-01T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Schraa,2021-10-25T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-07-30T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Local Government, Ayes 9, Noes 0",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +"Senate Amendment 3 offered by Senators Larson, Johnson and Smith",2021-09-21T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-19T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:41 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Financial Institutions and Revenue, Ayes 3, Noes 2",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2021-05-05T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-10-27T05:00:00+00:00,[],WI,2021 +Representative Anderson added as a coauthor,2022-03-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-16T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Vorpagel,2021-08-24T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Made a special order of business at 9:19 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Representative Dallman added as a coauthor,2021-04-28T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +"Adopted, Ayes 20, Noes 12",2021-06-09T05:00:00+00:00,['passage'],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Campaigns and Elections, Ayes 5, Noes 3",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +"Report passage recommended by Committee on Mental Health, Ayes 10, Noes 4",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 2 offered by Senator Felzkowski,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 10, Noes 0",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Education, Ayes 4, Noes 1",2021-03-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2021-08-05T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Representative Kitchens added as a cosponsor,2022-01-19T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Local Government, Ayes 6, Noes 3",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-09T06:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 8:46 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Representative Vining added as a cosponsor,2021-09-28T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 0",2021-09-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-03-22T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-03-12T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-19T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Read and referred to committee on Senate Organization,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read and referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Steffen added as a coauthor,2021-05-28T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-16-2021 by Committee on Rules,2021-02-11T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 5, Noes 0",2021-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-03-03T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Education, Ayes 10, Noes 4",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Representative Dallman added as a coauthor,2021-04-28T05:00:00+00:00,[],WI,2021 +Representative Ramthun withdrawn as a cosponsor,2022-01-05T06:00:00+00:00,['withdrawal'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Representative Cabrera added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Hintz added as a cosponsor,2022-07-25T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-11-02T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 3 to Assembly Substitute Amendment 2 offered by Representative Kuglitsch,2022-01-26T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Loudenbeck,2021-10-26T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:47 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Bowen added as a cosponsor,2021-11-18T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-01-26T06:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Regulatory Licensing Reform, Ayes 9, Noes 0",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Cabrera added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-10T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 2 offered by Senator Wanggaard,2022-01-28T06:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2021-11-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Vruwink and Plumer added as coauthors,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 13, Noes 0",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 6, Noes 4",2021-09-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Substitute Amendment 2 adoption recommended by Committee on Judiciary, Ayes 6, Noes 3",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2021-11-09T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 10, Noes 5",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Hintz added as a coauthor,2022-07-25T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Shelton added as a coauthor,2021-10-11T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a second time,2021-11-08T06:00:00+00:00,['reading-2'],WI,2021 +Representative Wichgers added as a coauthor,2021-03-05T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Representatives Kitchens and Shankland added as coauthors,2021-04-12T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Health, Ayes 15, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Larson added as a cosponsor,2022-02-16T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-12-14T06:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a coauthor,2021-06-03T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 9, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 4, Noes 1",2022-02-11T06:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Executive action taken,2022-02-21T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-01T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-24T06:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-15T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Penterman added as a cosponsor,2021-11-04T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:57 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-20T05:00:00+00:00,[],WI,2021 +Representative Brandtjen added as a coauthor,2022-02-09T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Representatives Spreitzer, Subeck and Emerson added as coauthors",2021-05-10T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Report passage recommended by Committee on Corrections, Ayes 9, Noes 1",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Insurance, Ayes 9, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 2 offered by Senator Wanggaard,2022-01-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-18T05:00:00+00:00,[],WI,2021 +Representative Subeck added as a coauthor,2022-01-12T06:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Children and Families, Ayes 12, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-23T05:00:00+00:00,[],WI,2021 +Adopted,2021-10-25T05:00:00+00:00,['passage'],WI,2021 +Made a special order of business at 8:24 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Ramthun withdrawn as a cosponsor,2021-10-20T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Milroy added as a coauthor,2021-12-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 9, Noes 5",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-30T05:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-10-18T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-22T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 offered by Senator Cowles,2021-12-13T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative J. Rodriguez added as a cosponsor,2022-01-11T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Available for scheduling,2021-04-07T05:00:00+00:00,[],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Moore Omokunde added as a cosponsor,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 11-8-2021 pursuant to Senate Rule 18(1),2021-11-05T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-19T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-28T06:00:00+00:00,['receipt'],WI,2021 +Read and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Health, Ayes 15, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 2 recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-02-17T06:00:00+00:00,['amendment-passage'],WI,2021 +Representative Doyle added as a coauthor,2021-11-30T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2022-01-11T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2021-05-07T05:00:00+00:00,['amendment-passage'],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-22T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-05-04T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2021-04-08T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2022-02-10T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 9, Noes 5",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-04-08T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Representatives Steffen and Krug added as coauthors,2021-03-04T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives B. Meyers, Doyle, Shankland, Vining, S. Rodriguez, Andraca, Sinicki, Cabrera, Baldeh, Spreitzer, Conley, Considine, Emerson, Subeck, Hebl, Hintz, Hesselbein, Snodgrass, Ohnstad, Anderson, Drake, Vruwink, Billings, Goyke, Bowen, Stubbs, McGuire, Neubauer, Hong, Pope, Ortiz-Velez, Brostoff, Shelton, Riemer, Moore Omokunde, L. Myers and Haywood",2021-03-16T05:00:00+00:00,[],WI,2021 +Representative Kitchens added as a coauthor,2021-04-12T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2021-03-09T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-29T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Agriculture, Ayes 13, Noes 0",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 4, Noes 1",2021-03-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Senator Bewley added as a cosponsor,2021-02-05T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2021-05-25T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-26T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-9-2021 by Committee on Rules,2021-06-03T05:00:00+00:00,[],WI,2021 +Representative Brostoff added as a coauthor,2022-03-08T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +LRB correction (Senate Amendment 3),2021-10-20T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-24T06:00:00+00:00,['deferral'],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Insurance, Ayes 10, Noes 1",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 10, Noes 0",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-19T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-05T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-30T05:00:00+00:00,['receipt'],WI,2021 +Senator Wanggaard added as a coauthor,2022-02-18T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-04-13T05:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Novak,2022-02-09T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-14T05:00:00+00:00,[],WI,2021 +Representative Cabral-Guevara added as a coauthor,2021-03-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-05T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 15, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Government Accountability and Oversight, Ayes 8, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Referred to joint committee on Finance,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Hong withdrawn as a cosponsor,2021-10-28T05:00:00+00:00,['withdrawal'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-04-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Spreitzer added as a cosponsor,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Made a special order of business at 9:09 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Made a special order of business at 8:56 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Senator Carpenter added as a coauthor,2021-06-09T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2021-06-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-17T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-04-08T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Milroy added as a cosponsor,2022-02-25T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Darling,2021-10-12T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 11-8-2021 pursuant to Senate Rule 18(1),2021-11-05T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-04-13T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage as amended recommended by Committee on Corrections, Ayes 7, Noes 3",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-10-18T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-14T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Assembly Substitute Amendment 1 offered by Representatives Wittke and Macco,2021-04-12T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 2-22-2022,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-11-08T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-11-08T06:00:00+00:00,[],WI,2021 +"Senate Amendment 1 offered by Senators Larson, Carpenter, Johnson, Agard, Smith, Bewley, Ringhand, Erpenbach and Wirch",2022-03-08T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Representative Dittrich added as a cosponsor,2021-06-08T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:59 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +"Motion for reconsideration of the vote by which Senate Joint Resolution 102 was refused to adopt offered by Senator Darling, Ayes 19, Noes 13",2022-02-22T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-15T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 to Assembly Substitute Amendment 1 adoption recommended by Committee on Science, Technology and Broadband, Ayes 8, Noes 0",2021-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 4, Noes 1",2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Summerfield,2021-10-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Representative Allen added as a coauthor,2021-12-16T06:00:00+00:00,[],WI,2021 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 2 offered by Senator Wanggaard,2022-01-12T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-03-19T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-27T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2021-03-17T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Special Committee on Trade and Supply Chain, Ayes 7, Noes 2",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-06-08T05:00:00+00:00,['receipt'],WI,2021 +"Assembly Amendment 3 offered by Representatives Considine, L. Myers, Shankland, Spreitzer and Vruwink",2021-04-02T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-06-23T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-12-06T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Fiscal estimate requested from the Legislative Fiscal Bureau, by the committee on Senate Organization, pursuant to Senate Rule 96 (1), Ayes 3, Noes 2",2021-10-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +"Adopted, Ayes 18, Noes 12",2021-03-16T05:00:00+00:00,['passage'],WI,2021 +Referred to committee on Rules,2022-02-09T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 3, Noes 2",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Regulatory Licensing Reform, Ayes 6, Noes 3",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Government Accountability and Oversight, Ayes 6, Noes 3",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Referred to joint committee on Finance,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Read and referred to committee on Rules,2022-02-16T06:00:00+00:00,['referral-committee'],WI,2021 +Withdrawn from committee on Agriculture and referred to joint committee on Finance pursuant to Assembly Rule 42 (3)(c),2021-10-13T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read and referred to committee on Rules,2021-04-08T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Public hearing held,2022-01-06T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-04-09T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative J. Rodriguez,2021-08-04T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-06T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-03T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Allen added as a coauthor,2021-11-16T06:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a coauthor,2022-02-16T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +"Fiscal estimate requested from the Legislative Fiscal Bureau, by the committee on Senate Organization, pursuant to Senate Rule 96 (1), Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Representative Subeck added as a cosponsor,2022-01-12T06:00:00+00:00,[],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 6-30-2021,2021-06-30T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Insurance, Licensing and Forestry, Ayes 4, Noes 0",2021-04-05T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 9-28-2021 by Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +Representative Conley added as a cosponsor,2021-03-24T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Children and Families, Ayes 12, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-12-15T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-03-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +"Report passage by Committee on Elections, Election Process Reform and Ethics, Ayes 2, Noes 3",2021-06-03T05:00:00+00:00,[],WI,2021 +Representative Callahan added as a cosponsor,2021-10-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Representative Krug added as a cosponsor,2022-01-26T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 3, Noes 2",2021-09-02T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-06-22T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Marklein,2021-01-25T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-06-18T05:00:00+00:00,[],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 4-14-2021,2021-04-14T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Behnke added as a cosponsor,2021-05-24T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Sporting Heritage, Ayes 8, Noes 3",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Transportation, Ayes 12, Noes 2",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-10-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-13T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2021-10-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-05-11T05:00:00+00:00,[],WI,2021 +Representative S. Rodriguez added as a cosponsor,2022-02-25T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Housing, Commerce and Trade, Ayes 3, Noes 2",2022-02-24T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-03-22T05:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Report passage as amended recommended by Committee on Colleges and Universities, Ayes 8, Noes 4",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Education, Ayes 4, Noes 3",2022-01-21T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Brostoff added as a cosponsor,2021-11-16T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 12, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-05-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read and referred to committee on Senate Organization,2021-10-08T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 5, Noes 0",2021-10-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Report passage as amended recommended by Committee on Rural Development, Ayes 13, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Milroy added as a cosponsor,2021-12-10T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 16, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Cabrera added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 8, Noes 6",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-10-18T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2022-02-24T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-08T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-06-03T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage recommended by Committee on Ways and Means, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Drake added as a coauthor,2021-05-25T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Energy and Utilities, Ayes 10, Noes 5",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 2-22-2022,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Drake added as a coauthor,2022-02-15T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2022-01-28T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2021-09-16T05:00:00+00:00,[],WI,2021 +Read and referred to committee on Senate Organization,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Made a special order of business at 8:04 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 8, Noes 3",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Sinicki added as a cosponsor,2021-06-28T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Available for scheduling,2021-06-10T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Representative James added as a cosponsor,2021-04-07T05:00:00+00:00,[],WI,2021 +Senators Smith and Agard added as coauthors,2021-05-10T05:00:00+00:00,[],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 1 offered by Representative Ramthun,2021-11-15T06:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Public hearing held,2021-04-15T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-08T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Carpenter added as a cosponsor,2021-09-01T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Human Services, Children and Families, Ayes 4, Noes 1",2021-05-04T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Read and referred to committee on Rules,2022-02-16T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Environment, Ayes 7, Noes 3",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2022-02-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 8, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-04-09T05:00:00+00:00,['receipt'],WI,2021 +Representative Kitchens added as a cosponsor,2021-04-13T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Utilities, Technology and Telecommunications, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-03-02T06:00:00+00:00,[],WI,2021 +Laid on table,2021-06-23T05:00:00+00:00,['deferral'],WI,2021 +"Report passage as amended recommended by Committee on Local Government, Ayes 6, Noes 3",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Laid on table,2021-06-23T05:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Read and referred to committee on Rules,2021-11-09T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-06-16T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Local Government, Ayes 9, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-06-18T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-03T05:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 1 offered by Representative Summerfield,2021-08-16T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate concurred in,2021-01-05T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2021-03-25T05:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 offered by Senator Petrowski,2021-07-21T05:00:00+00:00,[],WI,2021 +"Report passage, with emergency statement attached, pursuant to s.16.47 (2), Wisconsin Statutes, recommended by Joint Committee on Finance, Ayes 15, Noes 0",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-11-08T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to joint committee on Finance,2022-01-27T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Jobs and the Economy, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Public hearing held,2021-09-09T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Milroy added as a coauthor,2021-11-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative McGuire,2022-01-18T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-19T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-13T05:00:00+00:00,['receipt'],WI,2021 +LRB correction,2022-02-01T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-17-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 5, Noes 0",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Made a special order of business at 9:17 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +Representative Kitchens added as a coauthor,2021-04-12T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Penterman added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2021-12-16T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on State Affairs, Ayes 7, Noes 4",2021-04-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Universities and Technical Colleges, Ayes 6, Noes 3",2022-02-16T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Dallman,2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Made a special order of business at 8:48 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +Referred to committee on Rules,2022-02-11T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Ramthun added as a coauthor,2021-06-15T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Ayes 13, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Health, Ayes 5, Noes 0",2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Insurance, Ayes 11, Noes 0",2021-11-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read and referred to committee on Senate Organization,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 8, Noes 5",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-10T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-02-12T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Public hearing held,2021-02-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2021-06-23T05:00:00+00:00,['reading-3'],WI,2021 +Representative Subeck added as a cosponsor,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Consumer Protection, Ayes 7, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 12, Noes 0",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-10-14T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Transportation, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on State Affairs, Ayes 11, Noes 0",2021-04-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Penterman added as a cosponsor,2021-08-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-26T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 3 offered by Representative Steffen,2022-01-24T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2021-04-08T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-01-19T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Available for scheduling,2021-03-12T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-27T05:00:00+00:00,[],WI,2021 +Laid on table,2021-06-23T05:00:00+00:00,['deferral'],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 3, Noes 2",2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2021-03-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Bernier,2021-10-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Shankland added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Environment, Ayes 6, Noes 2",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 1 offered by Representative Zimmerman,2022-02-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a cosponsor,2021-12-09T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-05-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +Concurred in,2021-02-16T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Senate Amendment 1 offered by Senator Larson,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-07-30T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 10, Noes 0",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-03-09T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Laid on the table,2021-03-23T05:00:00+00:00,['deferral'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-09-20T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2022-02-11T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2022-01-04T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Education, Ayes 13, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-25T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Corrections, Ayes 9, Noes 1",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2021-03-17T05:00:00+00:00,['deferral'],WI,2021 +Read and referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2021-04-28T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Senator Bewley added as a cosponsor,2021-11-23T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Agriculture, Ayes 13, Noes 0",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 6-30-2021,2021-06-30T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 3, Noes 2",2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-02-09T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2021-05-06T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 to Senate Substitute Amendment 1 recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-05-13T05:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-04-07T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 5, Noes 0",2022-02-23T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-10-14T05:00:00+00:00,['amendment-passage'],WI,2021 +Fiscal estimate received,2022-02-02T06:00:00+00:00,['receipt'],WI,2021 +Representative Mursau withdrawn as a coauthor,2021-10-19T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Shankland added as a coauthor,2022-01-25T06:00:00+00:00,[],WI,2021 +"Fiscal estimate requested from the Legislative Fiscal Bureau, by the committee on Senate Organization, pursuant to Senate Rule 96 (1), Ayes 3, Noes 2",2021-10-22T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2022-02-10T06:00:00+00:00,['amendment-passage'],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2021-05-05T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 4, Noes 2",2021-09-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Rural Development, Ayes 13, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Representative McGuire added as a coauthor,2021-01-28T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-05-13T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Wichgers added as a coauthor,2021-01-29T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-10-26T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Public Benefit Reform, Ayes 5, Noes 2",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 16, Noes 0",2022-02-23T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-03-02T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-11T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Felzkowski,2022-01-11T06:00:00+00:00,[],WI,2021 +Representative Shankland withdrawn as a coauthor,2022-01-12T06:00:00+00:00,['withdrawal'],WI,2021 +Representative Ramthun added as a cosponsor,2022-02-01T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Representatives Sinicki and Snodgrass withdrawn as coauthors,2021-10-08T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Representative Penterman added as a cosponsor,2021-09-01T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-10-20T05:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 9, Noes 5",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 10, Noes 0",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Brandtjen withdrawn as a coauthor,2021-08-31T05:00:00+00:00,['withdrawal'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Representative Shankland added as a coauthor,2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2021-05-26T05:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Amendment 2 offered by Representative Murphy,2022-02-14T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Representative Kurtz added as a cosponsor,2021-10-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Local Government, Ayes 9, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +"Report passage as amended recommended by Committee on Utilities, Technology and Telecommunications, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Representative Kitchens added as a cosponsor,2021-04-13T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 3 offered by Representative Thiesfeldt,2021-09-21T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Judiciary, Ayes 9, Noes 0",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-09-24T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Representative Subeck added as a cosponsor,2022-01-25T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-13T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-06-23T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-03-11T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +Made a special order of business at 8:22 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:49 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Made a special order of business at 9:03 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Representative Shankland added as a coauthor,2021-09-30T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-10-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Fiscal estimate received,2021-07-19T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Made a special order of business at 8:33 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-03-09T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +Representative Kurtz added as a cosponsor,2021-09-27T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Representative Sinicki withdrawn as a cosponsor,2021-09-17T05:00:00+00:00,['withdrawal'],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-22T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Subeck added as a coauthor,2021-05-10T05:00:00+00:00,[],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 4-14-2021,2021-04-14T05:00:00+00:00,[],WI,2021 +Representative Ramthun added as a cosponsor,2021-03-09T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +"Report passage recommended by Committee on Family Law, Ayes 8, Noes 1",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Representative Allen added as a coauthor,2022-02-17T06:00:00+00:00,[],WI,2021 +Concurred in,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Subeck added as a coauthor,2021-10-25T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 10, Noes 0",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-07-30T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 3, Noes 2",2022-02-28T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Novak added as a cosponsor,2021-12-16T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Ayes 9, Noes 4",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Representative Tittl added as a coauthor,2022-02-09T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Government Accountability and Oversight, Ayes 8, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-04-27T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2022-01-14T06:00:00+00:00,['amendment-passage'],WI,2021 +Representative Drake added as a cosponsor,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-02T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report adoption recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Colleges and Universities, Ayes 11, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-02-04T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2021-06-29T05:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-19T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 3-23-2021 pursuant to Senate Rule 18(1),2021-03-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Krug added as a cosponsor,2021-10-26T05:00:00+00:00,[],WI,2021 +Placed on calendar 11-8-2021 pursuant to Senate Rule 18(1),2021-11-05T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-03-12T06:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2021-03-25T05:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Transportation, Ayes 13, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-09-30T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Representative Brooks added as a cosponsor,2021-11-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Made a special order of business at 8:29 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 11-8-2021,2021-11-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-28T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on State Affairs, Ayes 9, Noes 4",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held,2021-09-29T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Housing, Commerce and Trade, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Ohnstad added as a coauthor,2021-12-03T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from committee on Rules and take up,2022-02-17T06:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2021-10-21T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Representative James added as a cosponsor,2021-10-14T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Representative Cabrera added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Executive action taken,2021-09-08T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-24T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:01 AM on 1-28-2021 pursuant to Assembly Resolution 8,2021-01-26T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 5, Noes 3",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-13T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-09-22T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-06-03T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 9, Noes 5",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Agriculture and Tourism, Ayes 8, Noes 1",2021-03-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:54 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-22T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +"Report passage as amended recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-27T05:00:00+00:00,['withdrawal'],WI,2021 +Public hearing held,2022-01-05T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Representative Andraca added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Made a special order of business at 8:18 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Representative Steffen added as a coauthor,2021-04-09T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Available for scheduling,2021-06-18T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-26T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-04-07T05:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +Representative Edming added as a cosponsor,2021-02-22T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 to Assembly Substitute Amendment 1 adoption recommended by Committee on Transportation, Ayes 13, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Penterman added as a cosponsor,2021-11-04T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Made a special order of business at 8:21 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 2 offered by Senator Stroebel,2021-06-07T05:00:00+00:00,[],WI,2021 +Read and referred to committee on Senate Organization,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +"Representatives Tusler, Spiros and Callahan added as cosponsors",2021-06-11T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Testin,2021-11-10T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-11T06:00:00+00:00,[],WI,2021 +Read and referred to calendar of 10-27-2021 pursuant to Assembly Rule 45 (1),2021-10-25T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Local Government, Ayes 9, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Vos,2021-06-29T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-03-03T06:00:00+00:00,['amendment-passage'],WI,2021 +"Senate Amendment 1 rejected, Ayes 20, Noes 12",2021-06-09T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Labor and Regulatory Reform, Ayes 4, Noes 1",2021-10-21T05:00:00+00:00,['amendment-passage'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held by joint committee on Finance,2021-04-22T05:00:00+00:00,[],WI,2021 +Referred to joint committee on Finance,2021-10-14T05:00:00+00:00,['referral-committee'],WI,2021 +Representatives Macco and Magnafici added as coauthors,2022-02-16T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Local Government, Ayes 9, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Transportation, Ayes 13, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Read a second time,2021-11-08T06:00:00+00:00,['reading-2'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Financial Institutions, Ayes 9, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Schraa added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Education, Ayes 10, Noes 5",2021-09-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Workforce Development, Ayes 8, Noes 4",2021-10-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 2 offered by Senator Jacque,2021-08-03T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Transportation, Ayes 13, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 adopted,2021-06-29T05:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Representative Ramthun added as a cosponsor,2021-02-17T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Made a special order of business at 9:01 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Made a special order of business at 9:20 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Education, Ayes 10, Noes 5",2021-09-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-03-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-19T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Human Services, Children and Families, Ayes 5, Noes 0",2021-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Ramthun added as a cosponsor,2021-03-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Kooyenga,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a second time,2021-11-08T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2021-07-30T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 1",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Bernier,2021-12-22T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-27T05:00:00+00:00,[],WI,2021 +Concurred in,2021-03-23T05:00:00+00:00,[],WI,2021 +Representative Hesselbein added as a cosponsor,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +"Report passage as amended recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 3-17-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Colleges and Universities, Ayes 10, Noes 4",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Concurred in,2021-06-09T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 2 offered by Senator Stroebel,2021-06-09T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-06-29T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 2-16-2021,2021-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Read and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Fiscal estimate received,2022-03-04T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Laid on table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 5, Noes 0",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-03-09T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 1",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-11-29T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-28T06:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Universities and Technical Colleges, Ayes 8, Noes 1",2022-01-19T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2021-11-15T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 9, Noes 4",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Public hearing held by joint committee on Finance,2021-04-28T05:00:00+00:00,[],WI,2021 +Read a second time,2021-01-28T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-12-28T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-12-06T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended to withdraw from calendar of 10-27-2021 and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Local Government, Ayes 9, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Concurred in,2021-10-27T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Behnke added as a coauthor,2022-01-06T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2022-01-14T06:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 3 recommended by Committee on Utilities, Technology and Telecommunications, Ayes 3, Noes 2",2022-02-11T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Representative Snyder added as a coauthor,2021-09-30T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Vining added as a coauthor,2022-02-11T06:00:00+00:00,[],WI,2021 +Concurred in,2022-02-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Haywood added as a coauthor,2021-12-06T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Representative Kitchens added as a coauthor,2021-04-12T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2021-03-15T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Bernier,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage recommended by Committee on Universities and Technical Colleges, Ayes 5, Noes 4",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Born added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Vruwink added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-04-09T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Universities and Technical Colleges, Ayes 5, Noes 4",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Local Government, Ayes 9, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 9, Noes 4",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-05-13T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Ohnstad withdrawn as a coauthor,2021-10-14T05:00:00+00:00,['withdrawal'],WI,2021 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2022-02-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Edming withdrawn as a cosponsor,2021-09-21T05:00:00+00:00,['withdrawal'],WI,2021 +Made a special order of business at 8:27 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-9-2021 by Committee on Rules,2021-06-03T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-04-07T05:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Colleges and Universities, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Made a special order of business at 8:17 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-08T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Kitchens added as a cosponsor,2021-03-10T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Cabral-Guevara,2021-11-11T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Kooyenga,2022-02-10T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Read and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Spreitzer added as a cosponsor,2022-02-16T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Senators Carpenter and L. Taylor added as coauthors,2021-06-09T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Edming added as a coauthor,2021-03-12T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-23T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Economic and Workforce Development, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 2 to Senate Substitute Amendment 1 offered by Senator Bernier,2021-10-11T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled on 1-27-2022,2022-01-27T06:00:00+00:00,['enrolled'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 4, Noes 1",2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage recommended by Committee on Veterans and Military Affairs and Constitution and Federalism, Ayes 5, Noes 0",2022-02-25T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2022-02-11T06:00:00+00:00,[],WI,2021 +Laid on table,2021-06-30T05:00:00+00:00,['deferral'],WI,2021 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 3, Noes 2",2022-01-21T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-03T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-09-16T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Representative Duchow added as a cosponsor,2021-05-13T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Representative Considine added as a cosponsor,2022-01-12T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 3 adoption recommended by Committee on Local Government, Ayes 9, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-11-11T06:00:00+00:00,['deferral'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 2 offered by Senator Bernier,2022-02-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-18T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 13, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-05T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2021-05-25T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-14T05:00:00+00:00,[],WI,2021 +Representative Kitchens added as a coauthor,2021-04-12T05:00:00+00:00,[],WI,2021 +Concurred in,2021-05-11T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Representative Penterman added as a coauthor,2022-01-13T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Senator Wanggaard added as a coauthor,2021-09-15T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Penterman and Spreitzer added as cosponsors,2021-12-21T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-04-07T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Wichgers added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 9, Noes 4",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senators Bernier and Nass,2021-03-12T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2021-05-26T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Referred to joint committee on Finance,2022-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Senator Larson added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-05-06T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-19T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Read and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Representatives Vining and Cabrera added as coauthors,2022-02-22T06:00:00+00:00,[],WI,2021 +Laid on table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2021-10-08T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-11-11T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Concurred in,2022-02-15T06:00:00+00:00,[],WI,2021 +Representative Moses added as a cosponsor,2022-01-28T06:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a coauthor,2021-10-29T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 to Senate Amendment 1 offered by Senator Stroebel,2021-05-10T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-02-11T06:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2021-08-04T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Colleges and Universities, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2021-06-16T05:00:00+00:00,['deferral'],WI,2021 +Senate Amendment 1 adopted,2021-03-16T05:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Energy and Utilities, Ayes 10, Noes 5",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 9, Noes 4",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:12 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Ramthun withdrawn as a cosponsor,2022-01-05T06:00:00+00:00,['withdrawal'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 1",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2021-10-27T05:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-19T05:00:00+00:00,[],WI,2021 +Representative Born added as a cosponsor,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2021-02-05T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-19T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2021-03-12T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-02T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Made a special order of business at 9:15 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Concurred in,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2021-03-22T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Snyder,2021-04-13T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +"Report without recommendation (Assembly Rule 19) by Committee on Criminal Justice and Public Safety, Ayes 7, Noes 7",2022-01-20T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Senator Carpenter added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-09-23T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-11-05T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-11-08T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-02-11T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Read and referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Representative Vining added as a coauthor,2022-01-19T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-08-16T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Representative Wittke withdrawn as a coauthor,2021-06-15T05:00:00+00:00,['withdrawal'],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 5, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Representative Drake added as a cosponsor,2022-01-24T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 33, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-09T05:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 9, Noes 5",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Felzkowski,2021-02-09T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 13, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-05-14T05:00:00+00:00,[],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 4-14-2021,2021-04-14T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-14T06:00:00+00:00,[],WI,2021 +"Representatives Spreitzer, Subeck, Emerson, Loudenbeck and S. Rodriguez added as cosponsors",2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Campaigns and Elections, Ayes 6, Noes 3",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Steffen added as a coauthor,2021-05-28T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:52 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Laid on table,2021-04-14T05:00:00+00:00,['deferral'],WI,2021 +Laid on the table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +"Senate Amendment 2 offered by Senators Stafsholt, Roth, Bradley, Darling, Jacque, L. Taylor, Testin and Wanggaard",2021-02-01T06:00:00+00:00,[],WI,2021 +Senator Petrowski added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:07 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-07-30T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Representative Cabrera added as a cosponsor,2022-01-24T06:00:00+00:00,[],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2021-10-14T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 8, Noes 3",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-19T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-02-21T06:00:00+00:00,[],WI,2021 +Representatives Andraca and Drake added as cosponsors,2022-03-02T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-10-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 3, Noes 2",2022-01-21T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 9, Noes 4",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Laid on the table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Made a special order of business at 8:42 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Ayes 14, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-03-19T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Made a special order of business at 8:53 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Petrowski,2021-10-11T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2021-12-08T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 3-17-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Senator Wanggaard added as a coauthor,2021-06-04T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-04T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 4, Noes 3",2022-01-21T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Laid on table,2021-04-14T05:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-03-12T06:00:00+00:00,['amendment-passage'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Fiscal estimate received,2021-08-17T05:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Concurred in,2022-01-25T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-09-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-14T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:38 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 3 offered by Representatives Armstrong, Allen, Brandtjen, Dallman, Edming, Gundrum, Jagler, Knodl, Magnafici, Murphy, Mursau, Novak, Ramthun, Rozar, Skowronski, Steineke, Tittl, Tranel and Vorpagel",2021-02-01T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-02T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-31T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Senators Carpenter and Jacque added as coauthors,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 8, Noes 2",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Jobs and the Economy, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended to withdraw from committee on Rules and take up,2022-02-17T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 1-12-2021,2021-01-12T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2021-10-19T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Penterman added as a coauthor,2021-09-22T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Consumer Protection, Ayes 8, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-11-09T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Kitchens added as a coauthor,2021-04-12T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-13T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 3-17-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Carpenter added as a coauthor,2021-09-28T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Moore Omokunde and Vining added as coauthors,2021-11-30T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-09-08T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Subeck added as a cosponsor,2021-03-16T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-06-23T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Representative Vruwink added as a cosponsor,2022-01-04T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +"Report passage as amended recommended by Committee on Regulatory Licensing Reform, Ayes 8, Noes 1",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 adopted,2021-10-25T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Concurred in,2021-06-09T05:00:00+00:00,[],WI,2021 +Withdrawn from joint committee on Finance and taken up,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Senator Stafsholt added as a coauthor,2022-02-10T06:00:00+00:00,[],WI,2021 +Representative Wittke added as a coauthor,2021-09-27T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:11 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-19T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Representative Wichgers added as a coauthor,2021-10-13T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from committee on Rules and take up,2022-02-17T06:00:00+00:00,[],WI,2021 +Referred to joint committee on Finance,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Representative Hong added as a cosponsor,2021-10-28T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-23T05:00:00+00:00,['reading-2'],WI,2021 +Public hearing held,2021-05-06T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-11-08T06:00:00+00:00,['reading-3'],WI,2021 +Read and referred to committee on Senate Organization,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Representative Steffen added as a coauthor,2021-04-09T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Laid on table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Representative Spreitzer added as a coauthor,2021-04-12T05:00:00+00:00,[],WI,2021 +Representatives Wichgers and Moses added as coauthors,2022-01-06T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 3, Noes 2",2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Laid on table,2021-06-30T05:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +"Senate Substitute Amendment 1 offered by Senators Bewley, Agard, Johnson, Ringhand and Roys",2021-11-05T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Children and Families, Ayes 8, Noes 4",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Representative Penterman added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Elections, Election Process Reform and Ethics, Ayes 3, Noes 2",2021-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Representative Subeck added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-06T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Workforce Development, Ayes 9, Noes 0",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Laid on the table,2021-03-23T05:00:00+00:00,['deferral'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2021-04-13T05:00:00+00:00,[],WI,2021 +Representative Gundrum added as a cosponsor,2021-10-28T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Representatives Spreitzer and Penterman added as coauthors,2021-12-21T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-05T05:00:00+00:00,[],WI,2021 +Read and referred to calendar of 10-27-2021 pursuant to Assembly Rule 45 (1),2021-10-25T05:00:00+00:00,[],WI,2021 +Point of order that Point at Issuethe Senator from the 8th motion for reconsideration of the vote by which Senate Joint Resolution 102 was adopted was not allowed under Senate Rules not well taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2021-03-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-10-27T05:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-14T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Spreitzer, Hebl, Neubauer, Emerson, Brostoff, Subeck, Ohnstad, Hong, Doyle, Anderson, Hesselbein, Considine, Conley, Moore Omokunde, Vining, Andraca, B. Meyers, Riemer, Drake, Shankland, McGuire, Hintz, Snodgrass, S. Rodriguez and Ortiz-Velez",2022-02-24T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-11T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-11-05T05:00:00+00:00,['receipt'],WI,2021 +"Assembly Amendment 4 offered by Representatives Considine, Spreitzer and Vruwink",2021-04-02T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 11, Noes 4",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Made a special order of business at 8:55 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Testin,2021-06-28T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-23T05:00:00+00:00,['reading-3'],WI,2021 +Representative Cabrera added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Representative Ohnstad added as a coauthor,2021-10-11T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2021-04-07T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-12-06T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 15, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2021-06-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +"Report passage as amended recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 4, Noes 1",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-09-15T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 2 to Assembly Substitute Amendment 1 adoption recommended by Committee on Science, Technology and Broadband, Ayes 8, Noes 0",2021-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Made a special order of business at 8:15 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-09-22T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Representative Sinicki added as a coauthor,2022-02-21T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Representative Mursau added as a cosponsor,2021-07-14T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-19T06:00:00+00:00,[],WI,2021 +Representative Considine added as a coauthor,2021-03-10T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-23T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Public hearing held,2021-03-04T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Representative Brostoff added as a coauthor,2021-06-18T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Steffen added as a cosponsor,2021-04-09T05:00:00+00:00,[],WI,2021 +Representative Hesselbein added as a coauthor,2021-04-09T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 3 offered by Representative Oldenburg,2022-02-02T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Representative Emerson added as a coauthor,2021-03-19T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-19T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 12, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Thiesfeldt added as a coauthor,2021-10-25T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Representatives Edming and Dallman added as coauthors,2021-09-22T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-19T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Local Government, Ayes 9, Noes 0",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read,2021-09-28T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Carpenter,2021-02-16T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-06T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 6, Noes 4",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-23T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +"Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senators Roys, Bewley, Agard and Johnson",2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-02-01T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2021-03-25T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Bowen added as a coauthor,2021-10-14T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 4, Noes 1",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2021-06-09T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 4, Noes 1",2021-03-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 3-23-2021 pursuant to Senate Rule 18(1),2021-03-19T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Government Accountability and Oversight, Ayes 7, Noes 1",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Local Government, Ayes 6, Noes 3",2021-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Sinicki withdrawn as a cosponsor,2022-02-15T06:00:00+00:00,['withdrawal'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-06T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +LRB correction,2021-10-20T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-19T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 1 offered by Representative Magnafici,2022-02-22T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Thiesfeldt,2021-03-09T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 7, Noes 3",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-07-30T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-05T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-03-05T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly concurred in,2021-01-05T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-04-13T05:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 1",2021-09-16T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report adoption as amended of Assembly Joint Resolution 107 recommended by Committee on Judiciary, Ayes 6, Noes 3",2022-02-11T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-26T05:00:00+00:00,['receipt'],WI,2021 +Read and referred to committee on Rules,2021-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 9, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 adopted,2021-04-14T05:00:00+00:00,['amendment-passage'],WI,2021 +Read and referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-28T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-01-28T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage recommended by Committee on Substance Abuse and Prevention, Ayes 9, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 2 to Assembly Substitute Amendment 2 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Carpenter added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Representative Emerson added as a cosponsor,2021-05-10T05:00:00+00:00,[],WI,2021 +Representative Tusler added as a cosponsor,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Thiesfeldt,2021-03-09T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representatives Steineke and Stubbs,2021-06-01T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage recommended by Committee on Health, Ayes 4, Noes 1",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Brostoff added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Committee on Regulatory Licensing Reform,2021-06-22T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Amendment 1 to Senate Amendment 2 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2022-02-11T06:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-03-17T05:00:00+00:00,['reading-2'],WI,2021 +Representative Penterman added as a cosponsor,2022-01-13T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Placed on calendar 11-8-2021 pursuant to Senate Rule 18(1),2021-11-05T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Senator Roys added as a coauthor,2021-04-29T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Agriculture, Ayes 13, Noes 0",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-02-03T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read and referred to committee on Senate Organization,2021-05-11T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Senator Felzkowski added as a cosponsor,2022-01-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 2 offered by Representative Spiros,2022-01-28T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +"Report adoption as amended recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-02-17T06:00:00+00:00,[],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a cosponsor,2022-02-15T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Withdrawn from joint committee on Finance and taken up,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives Neubauer, Stubbs and Andraca",2022-01-20T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2021-05-05T05:00:00+00:00,[],WI,2021 +Representative McGuire added as a cosponsor,2021-02-16T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Representative Spiros added as a coauthor,2021-11-18T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Tourism, Ayes 16, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-05T05:00:00+00:00,['receipt'],WI,2021 +Representative Schraa added as a coauthor,2022-01-27T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-01T05:00:00+00:00,['receipt'],WI,2021 +Representative Dallman added as a coauthor,2021-02-09T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 10, Noes 5",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Agriculture, Ayes 13, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-11-08T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Hong added as a coauthor,2021-11-04T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 13, Noes 0",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2021-06-23T05:00:00+00:00,[],WI,2021 +Representatives Plumer and Kitchens added as cosponsors,2021-03-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 12, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 10, Noes 4",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Andraca added as a cosponsor,2022-01-03T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 5, Noes 3",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-09-23T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Transportation, Ayes 8, Noes 3",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 11, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Drake added as a cosponsor,2021-05-26T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2022-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-19T05:00:00+00:00,[],WI,2021 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-18T05:00:00+00:00,['receipt'],WI,2021 +Representative Bowen added as a coauthor,2022-01-26T06:00:00+00:00,[],WI,2021 +Read a second time,2021-11-08T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Representative Considine added as a coauthor,2022-02-11T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Public hearing held,2021-08-25T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Agriculture, Ayes 12, Noes 0",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative Thiesfeldt,2021-03-09T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Plumer,2021-06-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 3, Noes 2",2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Read and referred to committee on Senate Organization,2021-11-02T05:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Tourism, Ayes 10, Noes 3",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 15, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +"Representatives Bowen, Stubbs and Subeck added as coauthors",2021-10-27T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-27T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 13, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Agriculture, Ayes 13, Noes 0",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Agriculture, Ayes 13, Noes 0",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Kitchens added as a cosponsor,2021-04-13T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Children and Families, Ayes 12, Noes 0",2021-05-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Representative Moore Omokunde added as a cosponsor,2022-01-20T06:00:00+00:00,[],WI,2021 +Representatives Stubbs and Novak added as coauthors,2021-04-06T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-13T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Energy and Utilities, Ayes 14, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Representative Steffen added as a coauthor,2021-04-28T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-15T06:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Made a special order of business at 9:06 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-18T05:00:00+00:00,['receipt'],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2022-01-28T06:00:00+00:00,[],WI,2021 +Representative Mursau withdrawn as a cosponsor,2021-10-19T05:00:00+00:00,['withdrawal'],WI,2021 +Read a third time and passed,2021-06-29T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Laid on the table,2021-02-16T06:00:00+00:00,['deferral'],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-19T06:00:00+00:00,[],WI,2021 +Senator Agard added as a cosponsor,2021-05-10T05:00:00+00:00,[],WI,2021 +Representative Behnke added as a cosponsor,2022-01-14T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Senate Amendment 2 offered by Senator Jacque,2021-11-03T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Representative Allen added as a coauthor,2021-04-14T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senator Carpenter added as a coauthor,2021-09-01T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Constitution and Ethics, Ayes 7, Noes 2",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-03-12T06:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2021-06-30T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Representative Conley added as a coauthor,2022-02-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +"Senate Substitute Amendment 1 offered by Senators Smith, Agard, Bewley, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Ringhand, Roys, Wirch and L. Taylor",2021-03-23T05:00:00+00:00,[],WI,2021 +Representative Drake added as a cosponsor,2021-05-26T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Senator Carpenter added as a coauthor,2021-03-16T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 33, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representatives Drake and Emerson added as coauthors,2022-01-24T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2021-06-04T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-02T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-04-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 4-14-2021,2021-04-14T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 1",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-04-13T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-23-2021 pursuant to Senate Rule 18(1),2021-03-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 by Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +Read a second time,2021-03-17T05:00:00+00:00,['reading-2'],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Hintz, Hesselbein, Spreitzer, Subeck, B. Meyers, Haywood, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Hebl, Hong, McGuire, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Stubbs, Vining and Vruwink",2021-01-06T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a coauthor,2021-03-15T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Assembly Amendment 3 offered by Representative Zimmerman,2022-01-21T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-10-27T05:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2021-05-07T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Loudenbeck,2022-02-15T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-03T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2021-07-30T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-16T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +LRB correction,2021-06-22T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a third time and passed,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Education, Ayes 5, Noes 2",2021-09-24T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-11-08T06:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Joint Committee on Finance,2021-06-23T05:00:00+00:00,[],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2021-05-21T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 3 offered by Representative VanderMeer,2022-02-14T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2021-06-23T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Ayes 15, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Read a third time and passed, Ayes 33, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended to withdraw from Senate message and take up,2021-09-28T05:00:00+00:00,[],WI,2021 +"Senate Amendment 3 offered by Senators Larson, Johnson, Carpenter and Smith",2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Local Government, Ayes 6, Noes 3",2021-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representatives Steineke and Stubbs,2021-06-02T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read and referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to calendar of 2-15-2022,2022-02-11T06:00:00+00:00,['referral'],WI,2021 +"Report Assembly Substitute Amendment 2 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-03-17T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +"Representatives Swearingen, Tusler and Sinicki added as cosponsors",2021-05-12T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Fiscal estimate received,2021-08-05T05:00:00+00:00,['receipt'],WI,2021 +Referred to calendar of 10-26-2021 pursuant to Assembly Rule 45 (1),2021-10-21T05:00:00+00:00,['referral'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Representative Subeck added as a coauthor,2021-11-11T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-11-02T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report passage recommended by Committee on State Affairs, Ayes 9, Noes 2",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a third time and passed,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 11-8-2021 pursuant to Senate Rule 18(1),2021-11-05T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Kitchens,2021-10-26T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 8, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-05-11T05:00:00+00:00,['withdrawal'],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2021-06-04T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-01-07T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +LRB correction (Assembly Amendment 2),2021-09-23T05:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Read and referred to committee on Senate Organization,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 3-23-2021 pursuant to Senate Rule 18(1),2021-03-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Labor and Regulatory Reform, Ayes 4, Noes 1",2021-10-06T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:25 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Steffen,2021-11-02T05:00:00+00:00,[],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-01-06T06:00:00+00:00,['enrolled'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 13, Noes 1",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Substitute Amendment 1 offered by Senators Stroebel and Cowles,2022-02-18T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +Representative Steffen added as a coauthor,2021-10-26T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +"Report Assembly Substitute Amendment 2 adoption recommended by Committee on State Affairs, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 offered by Senator Testin,2021-06-08T05:00:00+00:00,[],WI,2021 +Concurred in,2022-01-25T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 laid on table, Ayes 60, Noes 36",2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Representative Kitchens added as a cosponsor,2021-04-13T05:00:00+00:00,[],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Allen added as a cosponsor,2021-04-07T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Schraa,2021-02-09T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Shankland added as a cosponsor,2021-05-27T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-11-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-10T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Agriculture, Ayes 12, Noes 0",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Housing, Commerce and Trade, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 3, Noes 2",2022-01-21T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 11, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Representative Dittrich added as a coauthor,2021-06-09T05:00:00+00:00,[],WI,2021 +Representatives Steffen and Kurtz added as coauthors,2021-03-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-29T05:00:00+00:00,[],WI,2021 +Senator Larson added as a coauthor,2021-11-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +"Senate Amendment 1 offered by Senators Carpenter, Smith, Bewley, Agard and Ringhand",2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Representative Subeck added as a coauthor,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Representative Hesselbein added as a coauthor,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-05-28T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Laid on table,2021-04-14T05:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Anderson, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-04-13T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Senator Carpenter added as a cosponsor,2021-09-28T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Point of order that Assembly Amendment 1 not germane under Assembly Rule 54 well taken,2021-03-17T05:00:00+00:00,[],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Transportation, Ayes 10, Noes 3",2022-01-27T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 1 offered by Committee on Regulatory Licensing Reform,2021-03-09T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Neubauer added as a coauthor,2021-04-13T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-10-26T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Senate Substitute Amendment 1 offered by Senators Smith, Carpenter, Ringhand, Larson, Erpenbach, L. Taylor, Bewley, Agard, Wirch, Johnson and Roys",2022-02-22T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-03-09T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Representative Allen added as a coauthor,2021-04-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Representative Milroy added as a cosponsor,2022-02-25T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representatives Dallman and Loudenbeck,2021-10-26T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:03 AM on 1-28-2021 pursuant to Assembly Resolution 8,2021-01-26T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +"Representatives August, Petryk, Vorpagel and Loudenbeck added as coauthors",2021-04-13T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Ramthun added as a cosponsor,2021-10-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 4, Noes 2",2021-09-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Withdrawn from committee on Health and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2022-02-18T06:00:00+00:00,[],WI,2021 +Read and referred to committee on Senate Organization,2021-04-14T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2022-02-28T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 2 revived,2021-01-28T06:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Representative Ramthun added as a cosponsor,2022-01-25T06:00:00+00:00,[],WI,2021 +Concurred in,2021-05-11T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +LRB correction (Assembly Amendment 2),2021-09-24T05:00:00+00:00,[],WI,2021 +Representative Dittrich added as a coauthor,2021-03-09T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2022-02-11T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-07T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 13",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-05-11T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2022-02-23T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2021-03-10T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 58, Noes 34",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Rules suspended and taken up,2022-01-25T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-12-14T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 adopted,2021-10-20T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage as amended recommended by Committee on Agriculture, Ayes 12, Noes 1",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Emerson added as a cosponsor,2022-01-10T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a coauthor,2021-03-19T05:00:00+00:00,[],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 4-14-2021,2021-04-14T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 12, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 9-28-2021 by Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Fiscal estimate received,2021-10-29T05:00:00+00:00,['receipt'],WI,2021 +Representative Cabral-Guevara added as a cosponsor,2021-03-09T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-11-08T06:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 19, Noes 13",2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Fiscal estimate received,2021-11-05T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Tourism, Ayes 11, Noes 5",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Steffen added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-11-05T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 2 offered by Senator Kooyenga,2022-01-03T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Andraca added as a cosponsor,2022-01-24T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-04-07T05:00:00+00:00,[],WI,2021 +Representative Brooks added as a cosponsor,2022-02-01T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Education, Ayes 7, Noes 6",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Energy and Utilities, Ayes 14, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Substitute Amendment 1 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Executive action taken,2021-12-16T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2021-08-19T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +"Adopted, Ayes 58, Noes 36",2021-05-11T05:00:00+00:00,['passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to joint committee on Finance,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Senator Cowles added as a coauthor,2021-09-15T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-30T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Senate Amendment 1 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Haywood added as a cosponsor,2022-02-15T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +"Report passage recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Decision of the Chair stands as the judgement of the Senate, Ayes 21, Noes 11",2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-23T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Krug added as a coauthor,2021-10-25T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Senator Stafsholt added as a coauthor,2021-06-30T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-01-26T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-27T06:00:00+00:00,['receipt'],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Anderson, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-04-13T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Senate Amendment 1 offered by Senator Roth,2022-02-08T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 60, Noes 34, Paired 2",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Senate Substitute Amendment 2 offered by Senators Bewley, Agard, Ringhand, Roys and Wirch",2021-11-08T06:00:00+00:00,[],WI,2021 +Read and referred to committee on Rules,2021-11-09T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Government Accountability and Oversight, Ayes 8, Noes 1",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Representatives Steffen and Murphy added as cosponsors,2021-10-26T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Representative Born added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-19T05:00:00+00:00,[],WI,2021 +Senator Bewley added as a cosponsor,2021-12-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-10-27T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-04-13T05:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Representative Subeck withdrawn as a cosponsor,2021-10-29T05:00:00+00:00,['withdrawal'],WI,2021 +Placed on calendar 9-28-2021 by Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Health, Ayes 5, Noes 0",2021-03-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Murphy added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 3, Noes 2",2022-01-21T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-17T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Steffen added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Workforce Development, Ayes 8, Noes 1",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Kitchens added as a coauthor,2021-04-12T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Placed at the foot of the calendar of 4-13-2021,2021-04-13T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Science, Technology and Broadband, Ayes 8, Noes 0",2021-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Carpenter added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-04-07T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative August,2021-06-17T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2021-10-14T05:00:00+00:00,['amendment-passage'],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Sinicki, Shankland, Andraca, Drake, Spreitzer, Subeck, Neubauer, Hong, Emerson, B. Meyers, Ohnstad, Billings, Goyke, Doyle, Hesselbein, Conley, Vining, S. Rodriguez, McGuire, Baldeh, Shelton, Considine, Stubbs, Brostoff, Snodgrass, Bowen, Hebl, Vruwink, Pope, Riemer and Haywood",2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-06-23T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Representative Steffen added as a coauthor,2021-04-09T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Representative Hong added as a cosponsor,2021-05-07T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Representative Andraca added as a coauthor,2022-02-28T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Withdrawn from joint committee on Finance and taken up,2022-02-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Concurred in,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Concurred in,2021-04-13T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +"Senate Amendment 1 rejected, Ayes 20, Noes 12",2022-03-08T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-11-08T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2022-02-24T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-29T05:00:00+00:00,[],WI,2021 +"Senate Amendment 1 offered by Senators Carpenter, Smith, Agard and Ringhand",2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-18T05:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 1 offered by Representative Summerfield,2021-10-11T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Armstrong added as a coauthor,2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-21T06:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Shankland and Behnke added as coauthors,2021-05-12T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Senator Felzkowski added as a cosponsor,2022-01-24T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Sporting Heritage, Ayes 10, Noes 3",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Read a third time and passed, Ayes 60, Noes 38",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Amendment 1 offered by Senator Roth,2021-08-05T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-04-09T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-11-11T06:00:00+00:00,['withdrawal'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-10-14T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Concurred in,2021-03-23T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Loudenbeck,2021-11-15T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +Referred to committee on Senate Organization,2021-06-23T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2021-11-11T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:04 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Read and referred to committee on Senate Organization,2021-04-14T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Edming added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-13T05:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Kitchens,2022-02-18T06:00:00+00:00,[],WI,2021 +Representative Stubbs added as a coauthor,2021-11-15T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Tauchen,2021-06-22T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-03-23T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-10-25T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a third time and passed,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Substitute Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Felzkowski,2022-02-15T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Representative Skowronski added as a coauthor,2021-03-12T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Representative Steffen added as a coauthor,2021-06-08T05:00:00+00:00,[],WI,2021 +Senator Bewley added as a coauthor,2021-12-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-16T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 31, Noes 2",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-06-23T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-12-08T06:00:00+00:00,[],WI,2021 +Referred to committee on Senate Organization,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Cabrera added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Read,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 15, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Hesselbein added as a coauthor,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Representative Sinicki withdrawn as a coauthor,2022-02-15T06:00:00+00:00,['withdrawal'],WI,2021 +Representative Haywood added as a coauthor,2022-02-15T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 3, Noes 2",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-05-25T05:00:00+00:00,['receipt'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Economic and Workforce Development, Ayes 4, Noes 1",2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2022-02-10T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-03-12T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 6-9-2021,2021-06-09T05:00:00+00:00,[],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2021-10-13T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 33, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-08-05T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-18T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Representative Emerson added as a coauthor,2021-03-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-23T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Penterman added as a coauthor,2021-09-22T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-05-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 1 offered by Representative Brooks,2021-03-15T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 4 adoption recommended by Committee on Local Government, Ayes 9, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-05-18T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Made a special order of business at 9:39 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Health, Ayes 15, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Smith added as a cosponsor,2021-12-01T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Spreitzer added as a cosponsor,2021-10-29T05:00:00+00:00,[],WI,2021 +"Assembly Amendment 4 offered by Representatives Armstrong, Allen, Edming, Knodl, Murphy, Mursau, Novak, Ramthun, Steineke, Tittl, Tranel and Vorpagel",2021-02-05T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-04-14T05:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +"Senate Amendment 1 rejected, Ayes 20, Noes 12",2021-02-16T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-03T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Representative Bowen added as a cosponsor,2021-03-16T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Consumer Protection, Ayes 7, Noes 1",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Representative Knodl added as a coauthor,2021-09-15T05:00:00+00:00,[],WI,2021 +Deposited in the office of the Secretary of State on 3-9-2022,2022-03-09T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-03-03T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Concurred in,2022-02-17T06:00:00+00:00,[],WI,2021 +Representatives Doyle and Vining added as coauthors,2021-03-15T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Colleges and Universities, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Deposited in the office of the Secretary of State on 2-9-2021,2021-02-09T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 4, Noes 1",2021-10-26T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2021-10-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Referred to committee on Rules,2022-01-19T06:00:00+00:00,['referral-committee'],WI,2021 +Senator Larson added as a coauthor,2022-02-16T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Dallman added as a cosponsor,2021-02-09T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Forestry, Parks and Outdoor Recreation, Ayes 12, Noes 2",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 31, Noes 1",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Laid on table,2021-04-14T05:00:00+00:00,['deferral'],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 8, Noes 4",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +"Read a third time and passed, Ayes 33, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Wittke,2021-10-29T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-17T06:00:00+00:00,['deferral'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Economic and Workforce Development, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Anderson, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-04-13T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Representative Kitchens added as a coauthor,2021-04-12T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 2-16-2021 by Committee on Rules,2021-02-11T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-11-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Schraa added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 4-14-2021,2021-04-14T05:00:00+00:00,[],WI,2021 +Representative Andraca added as a cosponsor,2022-02-28T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Made a special order of business at 9:02 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-04-19T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-02-16T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 4, Noes 3",2021-09-24T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Made a special order of business at 9:42 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Cabral-Guevara,2022-01-10T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Spiros,2021-06-01T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Campaigns and Elections, Ayes 6, Noes 3",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to joint committee on Finance,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 9:10 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Senator Wanggaard added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2021-04-13T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-26T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Senate Amendment 3 offered by Senator Marklein,2021-02-03T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 3-23-2021 pursuant to Senate Rule 18(1),2021-03-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Available for scheduling,2021-07-30T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Regulatory Licensing Reform, Ayes 9, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Senate Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Representative Edming added as a cosponsor,2021-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Representative Dallman added as a cosponsor,2021-04-28T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 2 to Senate Substitute Amendment 1 recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Representative Subeck added as a coauthor,2021-10-27T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-25T05:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Laid on the table,2021-04-13T05:00:00+00:00,['deferral'],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Subeck added as a coauthor,2021-03-15T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 4-14-2021,2021-04-14T05:00:00+00:00,[],WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Senate Amendment 1 adopted, Ayes 20, Noes 11",2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Made a special order of business at 8:34 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage recommended by Committee on Education, Ayes 15, Noes 0",2021-09-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Dallman,2022-01-20T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-20T05:00:00+00:00,[],WI,2021 +Rules suspended and taken up,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Representative Hong added as a coauthor,2021-10-05T05:00:00+00:00,[],WI,2021 +Concurred in,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-03T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-06-29T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-04T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-09-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-21T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-03-12T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-11-08T06:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and passed, Ayes 61, Noes 32, Paired 2",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-12-08T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2021-02-25T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Subeck added as a coauthor,2021-05-10T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Joint Committee on Finance,2021-05-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-15T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2022-01-07T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Senate Amendment 1 offered by Senator Marklein,2021-03-11T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 59, Noes 38",2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Education, Ayes 4, Noes 3",2021-11-29T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Skowronski added as a cosponsor,2021-10-27T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Steffen added as a coauthor,2021-04-09T05:00:00+00:00,[],WI,2021 +Referred to joint committee on Finance,2021-10-13T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 10, Noes 5",2021-09-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Utilities, Technology and Telecommunications, Ayes 3, Noes 2",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senator Stafsholt added as a coauthor,2022-02-10T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-29T05:00:00+00:00,['reading-3'],WI,2021 +Laid on the table,2021-03-17T05:00:00+00:00,['deferral'],WI,2021 +Representative Wittke added as a coauthor,2021-03-15T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +"Refused to adopt Senate Substitute Amendment 1, Ayes 11, Noes 22",2021-11-08T06:00:00+00:00,['amendment-failure'],WI,2021 +Assembly Amendment 1 offered by Joint Committee on Finance,2021-10-19T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Representatives Sinicki and Hesselbein added as coauthors,2022-03-01T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 10, Noes 5",2021-09-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a third time and passed,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Representative Kitchens added as a cosponsor,2021-03-10T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:00 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Veterans and Military Affairs and Constitution and Federalism, Ayes 3, Noes 1",2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Health, Ayes 3, Noes 2",2021-12-07T06:00:00+00:00,['amendment-passage'],WI,2021 +Concurred in,2021-10-26T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Representative Schraa added as a cosponsor,2021-06-17T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Senate Amendment 1 revived,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Financial Institutions, Ayes 9, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Transportation, Ayes 13, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Senator Carpenter added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-06T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 60, Noes 36, Paired 2",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report passage as amended recommended by Committee on Universities and Technical Colleges, Ayes 8, Noes 1",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 1 adopted,2021-01-28T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage as amended recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Executive action taken by joint committee on Finance,2021-05-06T05:00:00+00:00,[],WI,2021 +Senator Marklein added as a coauthor,2022-02-10T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Wichgers,2022-01-07T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 4-14-2021,2021-04-14T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Representative Krug added as a coauthor,2021-10-25T05:00:00+00:00,[],WI,2021 +Representative Shelton added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Horlacher,2022-01-10T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Andraca added as a coauthor,2021-12-14T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Duchow added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Representative Vruwink added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-01-28T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Wanggaard,2021-10-25T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-27T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-13T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Representative Vining added as a coauthor,2022-03-15T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Fiscal estimate received,2021-10-11T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representatives Vining and Subeck added as coauthors,2021-06-15T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Fiscal estimate received,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 3, Noes 2",2021-12-07T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Adopted, Ayes 21, Noes 12",2022-01-25T06:00:00+00:00,['passage'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 4, Noes 3",2021-11-29T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-19T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-09-23T05:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Representatives Katsma and Ohnstad added as cosponsors,2021-10-26T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly concurred in,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Jacque,2021-03-12T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-07T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Laid on table,2021-02-16T06:00:00+00:00,['deferral'],WI,2021 +Representative Dallman added as a cosponsor,2021-04-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Read,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 2 adopted,2021-06-09T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Substitute Amendment 1 offered by Joint Committee on Finance,2021-05-06T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 1 to Assembly Amendment 2 offered by Representative Thiesfeldt,2022-02-08T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a coauthor,2022-02-25T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:16 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-11-08T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Senator Carpenter added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2021-03-12T06:00:00+00:00,['referral-committee'],WI,2021 +Senator Agard added as a coauthor,2021-11-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Anderson, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-04-13T05:00:00+00:00,[],WI,2021 +Laid on table,2021-04-14T05:00:00+00:00,['deferral'],WI,2021 +Made a special order of business at 9:08 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-09-23T05:00:00+00:00,['referral-committee'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Krug,2021-06-21T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Representatives Kitchens and Allen added as coauthors,2021-04-12T05:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-03-16T05:00:00+00:00,['amendment-passage'],WI,2021 +Senate Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a third time and passed,2021-06-29T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-06-29T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 adopted,2021-10-25T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2021-11-08T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 3, Noes 2",2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2022-02-11T06:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 1 to Senate Substitute Amendment 1 recommended by Committee on Veterans and Military Affairs and Constitution and Federalism, Ayes 4, Noes 0",2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a third time and passed,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Representative Spreitzer added as a cosponsor,2021-06-22T05:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a coauthor,2022-02-24T06:00:00+00:00,[],WI,2021 +Concurred in,2021-02-16T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Representative Krug added as a coauthor,2021-10-25T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Representative Ramthun added as a cosponsor,2021-03-09T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report introduction of Senate Amendment 1 by Joint Committee on Finance, Ayes 15, Noes 0",2021-10-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-05-28T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Economic and Workforce Development, Ayes 4, Noes 1",2021-06-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Read a third time and passed, Ayes 59, Noes 33",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-09-28T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Tittl added as a coauthor,2021-10-27T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Laid on the table,2021-03-16T05:00:00+00:00,['deferral'],WI,2021 +Read a second time,2021-03-17T05:00:00+00:00,['reading-2'],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Anderson, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Withdrawn from joint committee on Finance and taken up,2022-02-23T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 60, Noes 32, Paired 2",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-20T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Laid on table,2021-04-14T05:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 62, Noes 30",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2021-03-12T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Withdrawn from committee on Rules and referred to joint committee on Finance pursuant to Assembly Rule 24 (3)(a),2022-02-16T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-11-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2021-09-23T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Laid on table,2021-06-09T05:00:00+00:00,['deferral'],WI,2021 +Referred to joint committee on Finance,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 offered by Senator Ballweg,2021-10-15T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-26T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 3 offered by Senator Carpenter,2021-06-09T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +"Report passage as amended recommended by Committee on Sporting Heritage, Ayes 9, Noes 4",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 3 offered by Senator Bernier,2022-02-18T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Representative Duchow added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Stroebel,2021-06-08T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-11-05T05:00:00+00:00,['receipt'],WI,2021 +Senator Carpenter added as a coauthor,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Report passage recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Laid on table,2021-04-14T05:00:00+00:00,['deferral'],WI,2021 +"Report passage as amended recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2021-04-09T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Bowen added as a cosponsor,2022-01-26T06:00:00+00:00,[],WI,2021 +Concurred in,2021-11-11T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 9, Noes 5",2022-01-19T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-09-20T05:00:00+00:00,['receipt'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Education, Ayes 10, Noes 5",2021-09-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Wanggaard,2021-06-04T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report passage as amended recommended by Committee on Local Government, Ayes 9, Noes 0",2021-06-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Cabrera added as a cosponsor,2022-01-24T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a coauthor,2021-05-10T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 9, Noes 6",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 to Senate Amendment 1 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-19T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 19, Noes 13",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate concurred in,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2022-01-14T06:00:00+00:00,['amendment-passage'],WI,2021 +Senate Amendment 1 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +"Read a third time and passed, Ayes 30, Noes 1",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Laid on table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Senate Amendment 2 offered by Senator Felzkowski,2021-02-10T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-11-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Spreitzer added as a coauthor,2021-12-01T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +"Assembly Amendment 2 offered by Representatives Anderson, Andraca, Baldeh, Billings, Bowen, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2021-10-26T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative James,2022-02-17T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 61, Noes 36",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-13T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Concurred in,2021-06-09T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 1 offered by Representative Cabral-Guevara,2022-01-12T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-09T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 2 adopted,2021-04-14T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Subeck added as a coauthor,2021-05-10T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Ways and Means, Ayes 12, Noes 0",2021-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-10-22T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Representative Conley added as a cosponsor,2021-11-04T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-04-13T05:00:00+00:00,['deferral'],WI,2021 +Available for scheduling,2021-04-14T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-03-17T05:00:00+00:00,['deferral'],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a coauthor,2022-02-24T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives Bowen, Emerson, Ohnstad, Cabrera, Conley, Considine, Drake, Shelton, Pope, Anderson, Riemer, Vining, Baldeh, Sinicki, L. Myers and Hebl",2021-06-16T05:00:00+00:00,[],WI,2021 +Representative Doyle added as a cosponsor,2022-04-08T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Representative Duchow added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 60, Noes 38",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Senator Carpenter added as a coauthor,2022-02-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a coauthor,2021-10-26T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Not published. Enrolled Joint Resolution 2,2021-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2022-02-04T06:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Vining added as a coauthor,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Rozar withdrawn as a coauthor,2021-11-01T05:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled on 2-22-2021,2021-02-22T06:00:00+00:00,['enrolled'],WI,2021 +Laid on the table,2021-03-17T05:00:00+00:00,['deferral'],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-24T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 1 offered by Representatives Thiesfeldt and Pronschinske,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +Senators Carpenter and Smith withdrawn as coauthors,2021-09-27T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Laid on table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Made a special order of business at 8:44 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +"Senate Amendment 4 offered by Senators Stafsholt, Roth, Bradley, Darling, Jacque, Wanggaard and Testin",2021-02-03T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on the foot of the 10th order of business on the calendar of 3-16-2021,2021-03-16T05:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives Spreitzer, Considine, Shelton, Emerson, Ohnstad, Snodgrass, Conley, Doyle, Neubauer, S. Rodriguez, Hesselbein, Baldeh, Pope, L. Myers, Hebl, B. Meyers, Hong, Anderson, Vining, Stubbs and Billings",2022-02-17T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative James added as a cosponsor,2022-01-20T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +Representative Kitchens added as a coauthor,2021-04-12T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Senator Carpenter added as a coauthor,2022-02-28T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Concurred in,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 0",2021-09-16T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Laid on the table,2021-11-11T06:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken,2021-09-15T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 32, Noes 1",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Health, Ayes 15, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Consumer Protection, Ayes 5, Noes 3",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Senate Substitute Amendment 1 adopted, Ayes 25, Noes 8",2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Not published. Enrolled Joint Resolution 7,2022-06-16T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +"Report passage recommended by Committee on Consumer Protection, Ayes 8, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Move to call the question,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate concurred in,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:23 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Plumer added as a coauthor,2021-05-19T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Concurred in,2021-03-23T05:00:00+00:00,[],WI,2021 +Senator Carpenter added as a coauthor,2021-10-20T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage recommended by Committee on Aging and Long-Term Care, Ayes 9, Noes 0",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-27T05:00:00+00:00,['withdrawal'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Transportation and Local Government, Ayes 5, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-28T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-02-17T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 11-8-2021,2021-11-08T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Decision of the Chair appealed,2022-02-24T06:00:00+00:00,[],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Science, Technology and Broadband, Ayes 8, Noes 0",2021-06-15T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate concurred in,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Laid on table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Rules suspended to withdraw from Senate message and take up,2021-03-17T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Senate Amendment 1 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Jacque,2022-02-14T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-23T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +"Representatives Vining, Shelton and Spreitzer added as coauthors",2022-01-19T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Regulatory Licensing Reform, Ayes 6, Noes 3",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2021-11-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Government Accountability and Oversight, Ayes 8, Noes 1",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative James added as a coauthor,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-12T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senators Cowles and Marklein,2021-10-25T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Health, Ayes 15, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Made a special order of business at 8:26 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative L. Myers added as a cosponsor,2021-06-08T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 28, Noes 5",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Kitchens added as a coauthor,2021-04-12T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Senate Amendment 2 offered by Senator Roth,2022-02-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +"Senate Amendment 1 offered by Senators Carpenter, Smith and Ringhand",2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Agriculture, Ayes 11, Noes 2",2021-05-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +"Adopted, Ayes 17, Noes 15",2022-02-22T06:00:00+00:00,['passage'],WI,2021 +Referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 30, Noes 2",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-10-27T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2021-10-14T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +"Assembly Substitute Amendment 1 laid on table, Ayes 58, Noes 34",2022-02-17T06:00:00+00:00,['deferral'],WI,2021 +Representative Subeck added as a coauthor,2021-10-25T05:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Representative Subeck added as a cosponsor,2021-10-29T05:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 2 offered by Representatives Vining, Considine, Moore Omokunde, Hesselbein, Emerson, Ohnstad, Subeck, McGuire, Hebl, Shelton, Stubbs, Snodgrass, Billings, Anderson, Cabrera, Baldeh and Neubauer",2021-09-28T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Felzkowski,2021-12-01T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Agriculture, Ayes 13, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a third time and passed,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Senate Amendment 1 offered by Senators Carpenter, Smith, Agard and Ringhand",2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-16T05:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-11-11T06:00:00+00:00,['deferral'],WI,2021 +Read a second time,2021-11-08T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2021-10-06T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2021-11-02T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Neubauer added as a cosponsor,2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Housing, Commerce and Trade, Ayes 5, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Loudenbeck added as a cosponsor,2022-02-08T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-11-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Vining added as a cosponsor,2022-01-26T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report passage as amended recommended by Committee on Transportation, Ayes 8, Noes 5",2022-01-27T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Read a third time and passed, Ayes 58, Noes 34",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +LRB correction,2021-03-12T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Senate Amendment 1 to Senate Substitute Amendment 1 rejected, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Senate Amendment 3 offered by Senator Felzkowski,2022-02-21T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-04-14T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-03-10T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 31, Noes 0",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 offered by Representative Sortwell,2022-01-03T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-03-19T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +"Fiscal estimate requested from the Legislative Fiscal Bureau, by the committee on Senate Organization, pursuant to Senate Rule 96 (1), Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Joint Committee on Finance, Ayes 15, Noes 0",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Withdrawn from joint committee on Finance and taken up,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Local Government, Ayes 9, Noes 0",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Housing and Real Estate, Ayes 9, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-11-08T06:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Subeck added as a coauthor,2021-10-25T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Spreitzer, Hintz, Hesselbein, Subeck, Goyke, Snodgrass, Andraca, Shelton, Hebl, Vining, Pope, Emerson, B. Meyers, Baldeh, Moore Omokunde, Shankland, Riemer, Brostoff, Vruwink, S. Rodriguez, Neubauer, Hong, McGuire, Conley, Considine, Haywood, Drake and Billings",2021-09-28T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 15, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to joint committee on Finance,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Point of order that Senate Substitute Amendment 1 was not germane well taken, Ayes 18, Noes 12",2021-03-23T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 11, Noes 3",2021-06-28T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read and referred to committee on Rules,2021-11-09T06:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Education, Ayes 7, Noes 0",2021-09-24T05:00:00+00:00,['amendment-passage'],WI,2021 +Senate Amendment 1 adopted,2021-03-23T05:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Constitution and Ethics, Ayes 6, Noes 3",2021-03-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report Assembly Substitute Amendment 3 adoption recommended by Committee on Energy and Utilities, Ayes 13, Noes 2",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Cabrera added as a cosponsor,2021-08-05T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Duchow added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Senator Stroebel withdrawn as a cosponsor,2022-01-19T06:00:00+00:00,['withdrawal'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Senator Carpenter added as a coauthor,2021-06-30T05:00:00+00:00,[],WI,2021 +Representative Knodl added as a cosponsor,2021-09-16T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-09-01T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Hong added as a coauthor,2021-05-10T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2021-12-16T06:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Vining added as a cosponsor,2022-02-10T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 7, Noes 6",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +"Assembly Amendment 2 offered by Representatives B. Meyers, Doyle, Shankland, Vining, S. Rodriguez, Andraca, Sinicki, Cabrera, Baldeh, Spreitzer, Conley, Considine, Emerson, Subeck, Hebl, Hintz, Hesselbein, Snodgrass, Ohnstad, Anderson, Drake, Vruwink, Billings, Goyke, Bowen, Stubbs, McGuire, Neubauer, Hong, Pope, Ortiz-Velez, Brostoff, Shelton, Riemer, Moore Omokunde, L. Myers, Haywood and Milroy",2021-03-23T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-12-28T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-04-14T05:00:00+00:00,['amendment-passage'],WI,2021 +Laid on the table,2021-06-16T05:00:00+00:00,['deferral'],WI,2021 +"Read a third time and passed, Ayes 58, Noes 34, Paired 4",2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-11-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Laid on table,2021-04-14T05:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Transportation, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +"Report passage recommended by Committee on Education, Ayes 7, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Concurred in,2021-05-11T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +Referred to committee on Senate Organization,2021-06-09T05:00:00+00:00,['referral-committee'],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Andraca, Baldeh, Billings, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Jacque,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Penterman added as a coauthor,2021-11-04T05:00:00+00:00,[],WI,2021 +Representative Bowen added as a cosponsor,2021-03-03T06:00:00+00:00,[],WI,2021 +Representative August added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +Laid on table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Assembly Amendment 2 adopted,2021-01-28T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage as amended recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2022-02-28T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-11T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 68, Noes 29",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Fiscal estimate received,2021-05-10T05:00:00+00:00,['receipt'],WI,2021 +Concurred in,2021-02-16T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Laid on the table,2021-04-13T05:00:00+00:00,['deferral'],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Representative Krug added as a coauthor,2021-10-25T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +"Senate Amendment 1 adopted, Ayes 21, Noes 11",2021-02-16T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Representative Tittl added as a coauthor,2021-04-14T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-10-27T05:00:00+00:00,['deferral'],WI,2021 +Representative Shankland added as a coauthor,2021-03-16T05:00:00+00:00,[],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Regulatory Licensing Reform, Ayes 5, Noes 3",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Decision of the Chair appealed,2021-03-17T05:00:00+00:00,[],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 4-14-2021,2021-04-14T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-09-28T05:00:00+00:00,['deferral'],WI,2021 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly,2021-06-30T05:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2021-03-23T05:00:00+00:00,['deferral'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 4-14-2021,2021-04-14T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-10-27T05:00:00+00:00,['reading-2'],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 11, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Considine added as a cosponsor,2022-02-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Constitution and Ethics, Ayes 6, Noes 3",2021-03-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Steffen added as a cosponsor,2021-05-28T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-10T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Senate Amendment 2 offered by Senator Testin,2021-10-11T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on State Affairs, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2021-10-27T05:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +Withdrawn from committee on Rules and referred to joint committee on Finance pursuant to Assembly Rule 24 (3)(a),2022-01-27T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Deposited in the office of the Secretary of State on 4-15-2022,2022-04-15T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 3 recommended by Committee on Education, Ayes 7, Noes 0",2021-10-21T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Senate Amendment 1 adopted,2021-03-23T05:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Senator Carpenter added as a cosponsor,2021-03-23T05:00:00+00:00,[],WI,2021 +"Representatives Loudenbeck, Wittke and Stubbs added as coauthors",2021-03-15T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-04T05:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 laid on table, Ayes 56, Noes 34",2021-01-07T06:00:00+00:00,['deferral'],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 8, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Concurred in,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 3 adoption recommended by Committee on Education, Ayes 10, Noes 5",2021-09-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2021-08-24T05:00:00+00:00,['receipt'],WI,2021 +Senator Carpenter added as a coauthor,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-17T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 15, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report Assembly Amendment 2 to Assembly Substitute Amendment 2 adoption recommended by Committee on Energy and Utilities, Ayes 10, Noes 5",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Bowen added as a cosponsor,2021-04-14T05:00:00+00:00,[],WI,2021 +Representative Milroy added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Penterman added as a cosponsor,2022-01-11T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Adopted, Ayes 18, Noes 14",2022-01-25T06:00:00+00:00,['passage'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Concurred in,2022-02-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +"Concurred in, Ayes 52, Noes 42, Paired 2",2021-01-28T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2021-03-25T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a cosponsor,2021-05-13T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-03-16T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Representative James withdrawn as a coauthor,2022-02-17T06:00:00+00:00,['withdrawal'],WI,2021 +Received from Senate,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Representative Kitchens added as a coauthor,2021-11-11T06:00:00+00:00,[],WI,2021 +Representative Tittl added as a coauthor,2021-10-27T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Representative Subeck added as a coauthor,2021-05-10T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Senate Substitute Amendment 1 adopted,2021-10-20T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 4, Noes 3",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 2 offered by Representative Kitchens,2022-01-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Withdrawn from joint committee on Finance and taken up,2022-02-17T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Regulatory Licensing Reform, Ayes 8, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Read a third time and passed, Ayes 96, Noes 0",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Representative Krug added as a coauthor,2021-10-25T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2021-12-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Made a special order of business at 8:02 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 adopted,2021-10-20T05:00:00+00:00,['amendment-passage'],WI,2021 +Senate Substitute Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Representative Spreitzer added as a coauthor,2021-04-12T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Senate Amendment 1 rejected, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +"Assembly Substitute Amendment 1 laid on table, Ayes 60, Noes 38",2021-09-28T05:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Read a third time and passed,2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Amendment 3 offered by Senators Carpenter and Smith,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Local Government, Ayes 9, Noes 0",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 20, Noes 11",2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Not published. Enrolled Joint Resolution 10,2022-06-17T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-01-28T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 31, Noes 0",2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 1 offered by Representative Plumer,2022-01-28T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +"Senate Substitute Amendment 1 adopted, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 to Assembly Substitute Amendment 1 adoption recommended by Committee on Government Accountability and Oversight, Ayes 7, Noes 1",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 2 offered by Senators Kapenga and Darling,2021-03-17T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Transportation, Ayes 13, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 59, Noes 33, Paired 4",2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Read,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and passed, Ayes 61, Noes 36",2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 88, Noes 5",2021-03-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on Agriculture, Ayes 13, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Tittl added as a coauthor,2021-10-27T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Senate Substitute Amendment 1 rejected, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Decision of the Chair appealed,2021-04-13T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Housing and Real Estate, Ayes 9, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 10, Noes 5",2021-09-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Laid on table,2021-04-14T05:00:00+00:00,['deferral'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on State Affairs, Ayes 11, Noes 1",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage recommended by Committee on Government Accountability and Oversight, Ayes 8, Noes 0",2021-03-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report Assembly Amendment 3 to Assembly Substitute Amendment 2 adoption recommended by Committee on Energy and Utilities, Ayes 10, Noes 5",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-17T06:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Constitution and Ethics, Ayes 6, Noes 3",2021-03-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Shankland withdrawn as a cosponsor,2022-01-13T06:00:00+00:00,['withdrawal'],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Senate Amendment 1 adopted,2021-10-25T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Tittl added as a cosponsor,2021-04-14T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 laid on table, Ayes 58, Noes 34",2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 2 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage as amended recommended by Committee on Energy and Utilities, Ayes 13, Noes 2",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 4-14-2021,2021-04-14T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Wanggaard,2021-06-04T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Representative Vining added as a cosponsor,2022-01-19T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-06-16T05:00:00+00:00,['deferral'],WI,2021 +Received from Assembly,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 2 offered by Representative Schraa,2021-02-10T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-10-27T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Steffen added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Horlacher,2022-02-15T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Constitution and Ethics, Ayes 6, Noes 3",2021-03-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Shelton added as a cosponsor,2021-04-01T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 withdrawn and returned to author,2021-11-08T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Spreitzer added as a cosponsor,2021-08-23T05:00:00+00:00,[],WI,2021 +"Senate Amendment 2 rejected, Ayes 20, Noes 12",2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-05-20T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 adopted,2021-04-14T05:00:00+00:00,['amendment-passage'],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2022-01-28T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-01-28T06:00:00+00:00,['reading-3'],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +"Decision of the Chair upheld, Ayes 59, Noes 34",2021-03-17T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2021-11-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-30T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-28T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 4, Noes 3",2021-09-24T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on table,2021-04-14T05:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 3-17-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 withdrawn and returned to author,2021-10-27T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Milroy added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Referred to joint committee on Finance,2022-01-27T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Felzkowski,2022-02-21T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-30T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Sortwell,2022-01-14T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Feyen,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-11-08T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 1 offered by Representative Vos,2021-01-07T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-11-08T06:00:00+00:00,[],WI,2021 +"Senate Substitute Amendment 1 adopted, Ayes 20, Noes 12",2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2021-06-16T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 1 offered by Representative Oldenburg,2021-10-14T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read and referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Andraca added as a cosponsor,2021-09-27T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Laid on the table,2021-03-23T05:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report passage as amended, with emergency statement attached, pursuant to s. 16.47 (2), Wisconsin Statutes, recommended by Joint Committee on Finance, Ayes 11, Noes 3",2021-06-28T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on Constitution and Ethics, Ayes 6, Noes 3",2021-03-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Concurred in,2021-03-23T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 74, Noes 22",2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senators Larson, L. Taylor, Carpenter and Johnson",2021-05-11T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senator Carpenter added as a coauthor,2021-06-09T05:00:00+00:00,[],WI,2021 +Representative Krug added as a cosponsor,2021-03-17T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-14T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 1 adopted,2021-06-16T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report Assembly Amendment 2 to Assembly Substitute Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 13, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Decision of the Chair appealed,2021-04-13T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +"Decision of the Chair upheld, Ayes 59, Noes 36",2022-02-24T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled on 6-11-2021,2021-06-11T05:00:00+00:00,['enrolled'],WI,2021 +Senate Amendment 2 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 1 offered by Representative Edming,2022-01-25T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 11-8-2021 pursuant to Senate Rule 18(1),2021-11-05T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Representative McGuire added as a coauthor,2022-02-16T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +"Senate Amendment 1 rejected, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Referred to committee on Rules,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Drake added as a cosponsor,2021-03-23T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2021-12-22T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-04-14T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Representative Vining added as a cosponsor,2022-04-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Regulatory Licensing Reform, Ayes 6, Noes 3",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Read a third time and passed, Ayes 96, Noes 0",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a third time and passed,2021-06-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Representative Vining added as a cosponsor,2021-11-09T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-11-08T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Senate Amendment 2 adopted,2021-04-14T05:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Substitute Amendment 2 offered by Representatives Wittke and Macco,2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Read a second time,2021-11-08T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 60, Noes 36",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Amendment 2 offered by Senator Testin,2022-01-24T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Representative Vruwink added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 1 adopted,2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +Read a third time and passed,2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 2 laid on table, Ayes 60, Noes 38",2021-09-28T05:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Senate Amendment 1 adopted,2021-04-14T05:00:00+00:00,['amendment-passage'],WI,2021 +Concurred in,2021-10-27T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Government Accountability and Oversight, Ayes 8, Noes 1",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 to Assembly Substitute Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Anderson, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 14, Noes 1",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Failed to adopt pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 11, Noes 1",2021-02-08T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-06-22T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +"Assembly Amendment 1 laid on table, Ayes 58, Noes 34",2022-02-17T06:00:00+00:00,['deferral'],WI,2021 +Senate Amendment 1 adopted,2021-03-23T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Read a third time and passed, Ayes 30, Noes 1",2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Vruwink added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Loudenbeck added as a cosponsor,2021-10-19T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a cosponsor,2021-02-03T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Government Accountability and Oversight, Ayes 8, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-10-27T05:00:00+00:00,['deferral'],WI,2021 +Representative S. Rodriguez added as a cosponsor,2021-03-23T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2021-04-20T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative L. Myers added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Referred to joint committee on Finance,2021-05-11T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-19T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Senate Organization,2021-06-09T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Representative Bowen added as a coauthor,2021-03-16T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2021-03-24T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-11-11T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-04-14T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 adopted,2021-03-16T05:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2021-09-16T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 5-18-2021,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Education, Ayes 8, Noes 7",2021-09-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Senate Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a third time and passed,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-06-23T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Representative Dittrich added as a coauthor,2021-06-09T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 to Senate Substitute Amendment 1 offered by Senator Testin,2021-05-21T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +"Assembly Amendment 1 laid on table, Ayes 58, Noes 38",2021-06-16T05:00:00+00:00,['deferral'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Drake added as a coauthor,2021-05-25T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on State Affairs, Ayes 12, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Brostoff added as a coauthor,2021-12-07T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 1 adopted,2022-02-17T06:00:00+00:00,['amendment-passage'],WI,2021 +"Assembly Substitute Amendment 2 offered by Representatives Neubauer, Hesselbein, Shankland, Anderson, Emerson, Stubbs, Baldeh, Billings, Brostoff, Considine, Goyke, Haywood, Hong, B. Meyers, Moore Omokunde, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink",2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Krug added as a coauthor,2021-10-25T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 by Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Environment, Ayes 8, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Senate,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-06-09T05:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2021-04-09T05:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2021-10-04T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-17T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 58, Noes 34, Paired 4",2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Health, Ayes 15, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-22T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 adopted,2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Children and Families, Ayes 12, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Murphy added as a coauthor,2021-10-26T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +LRB correction (Assembly Amendment 1),2021-11-02T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Decision of the Chair appealed,2021-04-13T05:00:00+00:00,[],WI,2021 +Senator Wanggaard added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 withdrawn and returned to author,2021-10-25T05:00:00+00:00,[],WI,2021 +Representative Behnke added as a coauthor,2021-05-24T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Labor and Regulatory Reform, Ayes 4, Noes 1",2021-10-21T05:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Senator Carpenter added as a coauthor,2021-06-09T05:00:00+00:00,[],WI,2021 +Rules suspended to return to amendable stage,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 12, Noes 4",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Assembly Amendment 2 offered by Representatives Pope, Emerson, B. Meyers, Anderson, Baldeh, Billings, Brostoff, Conley, Considine, Goyke, Haywood, Hebl, Hintz, Hong, McGuire, Neubauer, Ohnstad, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink",2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Concurred in by unanimous rising vote,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Ballweg,2021-12-03T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 offered by Senator Testin,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 8:28 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-10-19T05:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Read,2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Report correctly enrolled on 2-25-2022,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and passed, Ayes 96, Noes 2",2021-11-11T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-06-08T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Senator Bernier withdrawn as a coauthor,2021-12-07T06:00:00+00:00,['withdrawal'],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Duchow added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Anderson, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-04-13T05:00:00+00:00,[],WI,2021 +Laid on table,2021-03-16T05:00:00+00:00,['deferral'],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Representative Vining added as a coauthor,2021-06-15T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Anderson, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Doyle, S. Rodriguez, Vining, Conley, Hesselbein, Hintz, Vruwink, Andraca, Snodgrass, Shelton, Emerson, Haywood, Shankland, Bowen, Billings, Riemer, Pope, Considine, Subeck, Spreitzer, Stubbs, Anderson, L. Myers, Cabrera, Brostoff, Baldeh, Moore Omokunde, Ohnstad, Hong, B. Meyers and Milroy",2021-06-09T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Withdrawn from joint committee on Finance and taken up,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Jacque,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Laid on the table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Assembly Substitute Amendment 1 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Representative Subeck added as a coauthor,2021-05-10T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Point of order that Assembly Amendment 2 not germane under Assembly Rule 54 (3)(f) well taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Bernier,2021-06-17T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Senate Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage as amended recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives Shelton, Shankland, Andraca, Baldeh, Billings, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, McGuire, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2022-02-11T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative S. Rodriguez added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 60, Noes 33, Paired 2",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 by Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Read a third time and passed,2021-06-29T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken by joint committee on Finance,2021-05-13T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-12-07T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +"Agard, Ballweg, Bernier, Bewley, Bradley, Carpenter, Cowles, Darling, Erpenbach, Felzkowski, Feyen, Jacque, Jagler, Johnson, Kapenga, Kooyenga, L. Taylor, Larson, LeMahieu, Nass, Petrowski, Pfaff, Ringhand, Roth, Roys, Smith, Stafsholt, Stroebel, Testin, Wanggaard, Wimberger and Wirch of the Senate added as cosponsors",2022-03-08T06:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a cosponsor,2021-06-22T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 2 adopted,2021-06-09T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Senate Amendment 1 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-06-29T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 9-28-2021 by Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report passage recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-13T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Senator Stroebel withdrawn as a coauthor,2022-01-19T06:00:00+00:00,['withdrawal'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-11-29T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Murphy added as a coauthor,2021-10-26T05:00:00+00:00,[],WI,2021 +Representative Hesselbein added as a cosponsor,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-17T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 19, Noes 12",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2021-05-20T05:00:00+00:00,[],WI,2021 +Placed at the foot of the calendar of 6-22-2021,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-01-28T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representatives Vining and Shankland added as coauthors,2021-12-16T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2021-11-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Made a special order of business at 8:05 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Wimberger,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 2 withdrawn and returned to author,2021-09-28T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Representatives Sinicki and Snodgrass added as cosponsors,2021-11-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2021-03-12T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2022-01-13T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 2-22-2022,2022-02-22T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Stubbs, Haywood, Baldeh, Drake, Moore Omokunde, Anderson, Billings, Brostoff, Conley, Considine, Emerson, Goyke, Hong, B. Meyers, Neubauer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink",2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-06-16T05:00:00+00:00,['deferral'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Representative Subeck added as a coauthor,2021-06-15T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-1-2022,2022-03-01T06:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Representative Vruwink added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 6-11-2021,2021-06-11T05:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled on 3-30-2021,2021-03-30T05:00:00+00:00,['enrolled'],WI,2021 +Representative Plumer added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +Representative Krug added as a coauthor,2021-10-25T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-11-08T06:00:00+00:00,[],WI,2021 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 3, Noes 2",2022-01-21T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Veterans and Military Affairs and Constitution and Federalism, Ayes 4, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Made a special order of business at 8:43 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 59, Noes 35, Paired 2",2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled on 3-1-2022,2022-03-01T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Executive action taken by joint committee on Finance,2021-05-20T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed at the foot of the calendar of 6-22-2021,2021-06-22T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Decision of the Chair appealed,2021-04-13T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +"Assembly Amendment 1 laid on table, Ayes 58, Noes 34",2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Deposited in the office of the Secretary of State on 8-4-2021,2021-08-04T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2021-06-30T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-16-2021 pursuant to Senate Rule 18(1),2021-03-12T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Laid on the table,2021-09-28T05:00:00+00:00,['deferral'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Representative Vining added as a cosponsor,2022-04-19T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Laid on table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-06-29T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Economic and Workforce Development,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Representatives Drake and Stubbs added as cosponsors,2021-05-25T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Steineke,2021-06-14T05:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2021-10-04T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +Concurred in,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 2 offered by Representatives L. Myers, Stubbs, Baldeh, Drake, Haywood, Moore Omokunde, Anderson, Billings, Brostoff, Conley, Considine, Emerson, Goyke, Hong, B. Meyers, Neubauer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink",2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Referred to joint committee on Finance,2021-05-11T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Read a third time and passed, Ayes 60, Noes 34, Paired 2",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Labor and Regulatory Reform,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2021-06-21T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled,2021-11-05T05:00:00+00:00,['enrolled'],WI,2021 +"Report passage as amended recommended by Committee on Insurance, Licensing and Forestry, Ayes 4, Noes 1",2022-01-13T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2021-10-27T05:00:00+00:00,['deferral'],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 adopted,2021-03-16T05:00:00+00:00,['amendment-passage'],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Amendment 1 adopted,2021-03-16T05:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 19, Noes 14",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken,2021-05-27T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +"Adopted, Ayes 21, Noes 12",2022-01-25T06:00:00+00:00,['passage'],WI,2021 +Representative Steffen added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-20T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 90, Noes 1",2021-01-28T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-11-08T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2021-11-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Amendment 1 adopted,2021-10-20T05:00:00+00:00,['amendment-passage'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Considine added as a coauthor,2022-01-12T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Ohnstad added as a coauthor,2021-12-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 adopted,2021-06-09T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 1 adopted,2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +Fiscal estimate received,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-04-13T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Representative Andraca added as a cosponsor,2021-11-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Tranel added as a coauthor,2021-11-09T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 60, Noes 34, Paired 2",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Senator Larson added as a coauthor,2022-01-26T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2021-11-12T06:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2021-10-19T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Housing and Real Estate,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Anderson added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Concurred in,2021-04-14T05:00:00+00:00,[],WI,2021 +"Decision of the Chair upheld, Ayes 56, Noes 36",2021-04-13T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 20, Noes 13",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to calendar of 10-27-2021 pursuant to Assembly Rule 45 (1),2021-10-25T05:00:00+00:00,['reading-1'],WI,2021 +"Assembly Amendment 2 laid on table, Ayes 60, Noes 32",2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2021-06-22T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 1 adopted,2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Representative Edming added as a cosponsor,2021-06-08T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 11",2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Representative Hesselbein added as a coauthor,2022-03-01T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a coauthor,2021-06-15T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage as amended recommended by Committee on State Affairs, Ayes 12, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Representative S. Rodriguez added as a cosponsor,2021-03-19T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 15, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-06-23T05:00:00+00:00,['receipt'],WI,2021 +Representative Bowen withdrawn as a cosponsor,2021-06-08T05:00:00+00:00,['withdrawal'],WI,2021 +Read first time and referred to committee on Education,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-10-19T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Anderson, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Senate Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2021-04-27T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Assembly Amendment 1 offered by Representatives Emerson, Anderson, Andraca, Baldeh, Billings, Brostoff, Conley, Considine, Doyle, Goyke, Hebl, Hong, McGuire, B. Meyers, Moore Omokunde, Neubauer, Ohnstad, Pope, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining, Vruwink and Haywood",2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-03-17T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Substitute Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Representative James added as a cosponsor,2021-04-07T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Made a special order of business at 9:14 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-04-12T05:00:00+00:00,[],WI,2021 +Referred to joint committee on Finance,2021-02-08T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Substitute Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a third time and passed,2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Senate Amendment 5 offered by Senator Ringhand,2021-02-03T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 19, Noes 13",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and passed, Ayes 20, Noes 11",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and passed, Ayes 20, Noes 11",2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +"Report passage as amended recommended by Committee on Environment, Ayes 8, Noes 0",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Substitute Amendment 2 offered by Senator Ballweg,2022-01-24T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2021-06-09T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Doyle added as a cosponsor,2022-04-08T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 1 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Read,2022-01-25T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Government Accountability and Oversight, Ayes 8, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Fiscal estimate received,2021-10-26T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +"Report Assembly Amendment 2 to Assembly Substitute Amendment 1 adoption recommended by Committee on Health, Ayes 13, Noes 2",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Health, Ayes 4, Noes 1",2021-02-11T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Assembly Substitute Amendment 1 adopted,2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +Representatives Bowen and Tusler added as coauthors,2021-11-11T06:00:00+00:00,[],WI,2021 +Representative Ohnstad added as a cosponsor,2021-03-15T05:00:00+00:00,[],WI,2021 +Representative Vining added as a coauthor,2022-04-19T05:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Representative Baldeh withdrawn as a cosponsor,2021-08-19T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Anderson added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives Snodgrass, Andraca, Baldeh, Billings, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hong, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Pope, S. Rodriguez, Shankland, Shelton, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Representative Kurtz withdrawn as a cosponsor,2021-03-03T06:00:00+00:00,['withdrawal'],WI,2021 +"Report passage as amended recommended by Committee on Children and Families, Ayes 12, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Fiscal estimate received,2021-05-27T05:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 8:09 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Representatives Macco and L. Myers added as coauthors,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Representative Ramthun added as a cosponsor,2021-02-26T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +"Refused to reject Senate Substitute Amendment 1, Ayes 10, Noes 21",2021-09-28T05:00:00+00:00,[],WI,2021 +Laid on the table,2021-10-27T05:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Natural Resources and Energy,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Withdrawn from joint committee on Finance and taken up,2021-05-11T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 11",2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Senate Amendment 2 adopted,2021-10-25T05:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Decision of the Chair appealed,2021-04-13T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Senate Amendment 2 adopted,2021-06-09T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report Assembly Amendment 3 adoption recommended by Committee on Education, Ayes 10, Noes 5",2021-09-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Point of order that Assembly Substitute Amendment 2 not germane under Assembly Rule 54 (3)(f) well taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 1 adopted,2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Amendment 1 adopted,2022-02-17T06:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate concurred in,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 16, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Andraca, Baldeh, Billings, Cabrera, Conley, Considine, Drake, Emerson, Haywood, Hebl, Hesselbein, Hong, McGuire, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shelton, Snodgrass, Spreitzer, Subeck, Vining, Vruwink and Shankland",2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Referred to joint committee on Finance,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Decision of the Chair appealed,2021-04-13T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Read a third time and passed, Ayes 29, Noes 4",2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Amendment 2 offered by Senator Stroebel,2021-09-27T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +"Refused to refer to committee on Elections, Election Process Reform and Ethics, Ayes 11, Noes 21",2021-06-09T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 61, Noes 35",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Report correctly enrolled,2021-04-05T05:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +"Report passage recommended by Committee on Ways and Means, Ayes 12, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Labor and Integrated Employment,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 59, Noes 33",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives Spreitzer, Ohnstad, Neubauer, Hesselbein, Shelton, Emerson, Snodgrass, S. Rodriguez, Baldeh, L. Myers, Drake, Conley, Hebl, Hong, B. Meyers, Vining, Considine, Pope, Billings, Stubbs, Doyle and Andraca",2022-02-17T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 13",2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Anderson, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-04-13T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-17T06:00:00+00:00,['deferral'],WI,2021 +Report correctly enrolled,2021-04-19T05:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2022-02-16T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Senate Organization,2022-03-08T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 adopted,2021-10-25T05:00:00+00:00,['amendment-passage'],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Representative Skowronski added as a cosponsor,2021-10-27T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 12, Noes 1",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2021-09-22T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +"Decision of the Chair upheld, Ayes 56, Noes 36",2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Concurred in,2021-11-11T06:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 94, Noes 0",2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Concurred in, Ayes 56, Noes 35",2021-03-17T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 withdrawn and returned to author,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 19, Noes 12",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 2 adopted,2021-04-13T05:00:00+00:00,['amendment-passage'],WI,2021 +Read first time and referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Bowen withdrawn as a cosponsor,2021-11-03T05:00:00+00:00,['withdrawal'],WI,2021 +Received from Senate,2021-06-23T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +"Report passage recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2021-06-03T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 2 adopted,2021-04-14T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +"Assembly Amendment 1 offered by Representatives Neubauer, Spreitzer, Hebl, Emerson, Brostoff, Subeck, Ohnstad, Hong, Doyle, Anderson, Hesselbein, Considine, Conley, Moore Omokunde, Vining, Andraca, B. Meyers, Riemer, Drake, Shankland, McGuire, Hintz, Snodgrass, S. Rodriguez, Cabrera and Ortiz-Velez",2022-02-24T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Labor and Regulatory Reform,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Hesselbein added as a coauthor,2022-01-20T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 20, Noes 11",2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 adopted,2021-04-14T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2021-11-08T06:00:00+00:00,['reading-2'],WI,2021 +"Refused to adopt Senate Substitute Amendment 1, Ayes 11, Noes 22",2021-11-08T06:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Wanggaard,2022-01-27T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Representative Milroy added as a cosponsor,2021-10-21T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Senate Amendment 1 rejected, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator L. Taylor,2021-03-16T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Government Accountability and Oversight, Ayes 6, Noes 2",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +"Report passage recommended by Committee on Agriculture, Ayes 12, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Drake added as a cosponsor,2021-05-25T05:00:00+00:00,[],WI,2021 +Representative Vruwink added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +"Decision of the Chair upheld, Ayes 57, Noes 35",2021-04-13T05:00:00+00:00,[],WI,2021 +Representative Rozar added as a cosponsor,2021-10-28T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2021-02-04T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-09-24T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Referred to calendar of 6-29-2021 pursuant to Assembly Rule 93,2021-06-28T05:00:00+00:00,['referral'],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2021-12-16T06:00:00+00:00,[],WI,2021 +Taken from the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 adopted,2021-10-27T05:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative VanderMeer,2021-03-17T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Zimmerman,2022-01-27T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Senate Amendment 2 to Senate Substitute Amendment 1 offered by Senators Larson, Carpenter, L. Taylor and Johnson",2021-05-11T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2021-06-16T05:00:00+00:00,['deferral'],WI,2021 +Representatives Behnke and Snyder added as coauthors,2021-06-21T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 3-23-2021 pursuant to Senate Rule 18(1),2021-03-19T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:19 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Anderson added as a coauthor,2022-03-10T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-03-17T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2021-03-25T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly concurred in,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Representative Subeck added as a cosponsor,2021-04-27T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Veterans and Military Affairs and Constitution and Federalism, Ayes 5, Noes 0",2021-09-24T05:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Sortwell,2022-02-16T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Laid on the table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 2 offered by Representatives McGuire, Spreitzer, Andraca, Emerson, Conley, Vining, Ohnstad and Bowen",2021-06-22T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 2 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 1 adopted,2022-02-17T06:00:00+00:00,['amendment-passage'],WI,2021 +"Assembly Amendment 1 offered by Representatives Spreitzer, Hintz, Hesselbein and Subeck",2021-09-28T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Criminal Justice and Public Safety,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +"Senate Amendment 2 adopted, Ayes 21, Noes 12",2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report Assembly Substitute Amendment 2 adoption recommended by Committee on Energy and Utilities, Ayes 10, Noes 5",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Schraa added as a coauthor,2021-06-17T05:00:00+00:00,[],WI,2021 +Representative Loudenbeck added as a coauthor,2021-03-17T05:00:00+00:00,[],WI,2021 +Read,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Read,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-09-23T05:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Judiciary,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Read,2021-02-16T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a cosponsor,2021-05-14T05:00:00+00:00,[],WI,2021 +"Senate Amendment 2 adopted, Ayes 20, Noes 12",2021-11-08T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and passed, Ayes 60, Noes 38",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Schraa added as a cosponsor,2021-07-15T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-11-08T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-22T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Made a special order of business at 8:20 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2021-01-07T06:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-08-26T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Stafsholt,2022-02-21T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 2 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Representative Wichgers withdrawn as a coauthor,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Fiscal estimate received,2022-03-28T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 2 offered by Representative Kitchens,2021-10-27T05:00:00+00:00,[],WI,2021 +Representative Anderson added as a coauthor,2022-03-10T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Krug added as a coauthor,2021-10-25T05:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Insurance, Licensing and Forestry",2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +LRB correction,2022-02-04T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Representative Subeck added as a coauthor,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and passed, Ayes 20, Noes 13",2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Taken from the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Rules suspended and taken up,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +"Senate Amendment 1 rejected, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Representative Ramthun added as a coauthor,2021-06-09T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 adopted,2021-09-28T05:00:00+00:00,['amendment-passage'],WI,2021 +Referred to joint committee on Finance,2022-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Read,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Referred to committee on Rules,2021-09-22T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Constitution and Ethics, Ayes 6, Noes 3",2021-03-17T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 2 offered by Representative Spiros,2022-02-10T06:00:00+00:00,[],WI,2021 +LRB correction,2022-02-03T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate concurred in,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2022-02-15T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 offered by Senator Testin,2021-10-14T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Amendment 1 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Senate Amendment 1 offered by Senator Testin,2022-01-28T06:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Senate Substitute Amendment 1 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +"Read a third time and passed, Ayes 29, Noes 3",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Veterans and Military Affairs and Constitution and Federalism, Ayes 5, Noes 0",2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +Laid on table,2021-04-14T05:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +"Representatives Neubauer, Spreitzer and Conley added as cosponsors",2021-04-02T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Regulatory Licensing Reform, Ayes 6, Noes 3",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report passage as amended recommended by Committee on State Affairs, Ayes 11, Noes 1",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Assembly Amendment 1 offered by Representative Horlacher,2021-05-25T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Senate Substitute Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-01-28T06:00:00+00:00,[],WI,2021 +Read and referred to committee on Senate Organization,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Cabrera added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 adopted,2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Snyder added as a cosponsor,2021-10-01T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-11-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-30-2021 pursuant to Senate Rule 18(1),2021-06-30T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Tourism,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-07-01T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Concurred in,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Senate Substitute Amendment 1 adopted,2021-06-09T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Representative Milroy added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-13T05:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Veterans and Military Affairs and Constitution and Federalism, Ayes 5, Noes 0",2021-09-24T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Representative L. Myers added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-27T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-14T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read first time and referred to committee on Government Operations, Legal Review and Consumer Protection",2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 2 adopted,2021-03-17T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Vruwink added as a cosponsor,2022-01-04T06:00:00+00:00,[],WI,2021 +"Representatives Loudenbeck, S. Rodriguez and Schraa added as coauthors",2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read first time and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 2 adopted,2021-10-27T05:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 5-11-2021,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-07-23T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Government Accountability and Oversight, Ayes 6, Noes 3",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2022-04-08T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Representative James added as a coauthor,2022-02-07T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Health,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 59, Noes 39",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Amendment 2 offered by Senator Testin,2022-02-08T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Senate Organization,2021-06-09T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Representative Bowen added as a coauthor,2021-05-12T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Veterans and Military Affairs and Constitution and Federalism, Ayes 5, Noes 0",2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Regulatory Licensing Reform, Ayes 6, Noes 3",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Report correctly enrolled,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 57, Noes 36",2021-01-28T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Read and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Joint Committee on Finance, Ayes 12, Noes 4",2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Referred to committee on Senate Organization,2021-05-11T05:00:00+00:00,['referral-committee'],WI,2021 +Report correctly enrolled on 2-22-2021,2021-02-22T06:00:00+00:00,['enrolled'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Drake added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 1 offered by Representative Dallman,2021-10-27T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 60, Noes 36",2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 31, Noes 0",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 adopted,2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 59, Noes 33",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Government Accountability and Oversight, Ayes 6, Noes 2",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative McGuire added as a coauthor,2021-03-11T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:11 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 2 adopted,2021-03-17T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2021-02-05T06:00:00+00:00,['enrolled'],WI,2021 +Representatives Andraca and Subeck added as coauthors,2021-06-15T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Read a third time,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Senator Carpenter added as a cosponsor,2021-06-30T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Representative L. Myers added as a cosponsor,2021-05-18T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-01T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Committee on Health, Ayes 14, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Representative James added as a cosponsor,2021-05-24T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Made a special order of business at 8:06 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Concurred in,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 offered by Representative Plumer,2022-02-07T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Macco added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 60, Noes 37",2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read first time and referred to committee on Rules,2021-04-08T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate concurred in,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2021-01-07T06:00:00+00:00,['reading-3'],WI,2021 +Representative Cabrera added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Representative Bowen added as a coauthor,2021-03-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Local Government,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-11-08T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended to withdraw from Senate message and take up,2021-02-16T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Representative L. Myers added as a cosponsor,2021-05-18T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 9-28-2021 by Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-03-17T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Representative Schraa added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +"Senate Amendment 3 rejected, Ayes 21, Noes 12",2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +"Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senators Carpenter, Smith, Agard and Ringhand",2022-02-22T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 laid on table, Ayes 60, Noes 38",2021-09-28T05:00:00+00:00,['deferral'],WI,2021 +Received from Assembly,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 18, Noes 12",2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 1 offered by Representative Knodl,2021-06-28T05:00:00+00:00,[],WI,2021 +Representatives Ohnstad and Penterman added as cosponsors,2021-11-10T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-11-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 9-28-2021 by Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-17-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:14 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Dallman added as a cosponsor,2021-04-27T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 88, Noes 8, Paired 2",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Energy and Utilities, Ayes 10, Noes 5",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 3 offered by Representative Loudenbeck,2022-02-18T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:44 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Representative Skowronski added as a coauthor,2022-02-17T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Point of order that Assembly Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2022-02-24T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Representative Subeck added as a coauthor,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Senator Stafsholt added as a coauthor,2022-02-17T06:00:00+00:00,[],WI,2021 +Assembly Amendment 5 offered by Representative Moses,2021-06-18T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 adopted,2021-06-09T05:00:00+00:00,['amendment-passage'],WI,2021 +"Read a third time and passed, Ayes 57, Noes 35, Paired 4",2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Billings added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2022-03-01T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-06-23T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Representative Conley added as a cosponsor,2021-07-12T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +"Assembly Amendment 1 offered by Representatives Bowen, Emerson, Ohnstad, Cabrera, Conley, Drake, Shelton, Pope, Anderson, Riemer, Baldeh, Sinicki, L. Myers and Hebl",2021-06-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Education,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-27T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 33, Noes 0",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 laid on table, Ayes 59, Noes 35",2022-02-17T06:00:00+00:00,['deferral'],WI,2021 +Decision of the Chair appealed,2021-04-13T05:00:00+00:00,[],WI,2021 +Representative Born added as a cosponsor,2021-09-27T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-22T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-03T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 10, Noes 3",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Labor and Integrated Employment,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken,2021-12-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-17T05:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 by Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-17-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 3 offered by Senator LeMahieu,2021-11-08T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Doyle added as a cosponsor,2021-11-30T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Deposited in the office of the Secretary of State on 4-15-2022,2022-04-15T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Senate Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +"Read a third time and passed, Ayes 59, Noes 33, Paired 4",2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2022-01-28T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Insurance, Licensing and Forestry, Ayes 3, Noes 2",2022-01-13T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 60, Noes 38",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Deposited in the office of the Secretary of State on 4-15-2022,2022-04-15T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-11-08T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-02-04T06:00:00+00:00,[],WI,2021 +Withdrawn from joint committee on Finance and taken up,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 94, Noes 0",2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2021-06-16T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Decision of the Chair upheld, Ayes 58, Noes 37",2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Deposited in the office of the Secretary of State on 4-15-2022,2022-04-15T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Local Government,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +"Senate Substitute Amendment 1 adopted, Ayes 18, Noes 14",2021-06-09T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representatives Cabrera and Drake added as cosponsors,2022-01-18T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +"Read first time and referred to committee on Government Operations, Legal Review and Consumer Protection",2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 60, Noes 38",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 96, Noes 0",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Representative Behnke added as a coauthor,2021-11-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read first time and referred to committee on Family Law,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +"Senate Amendment 3 laid on table, Ayes 20, Noes 12",2021-06-09T05:00:00+00:00,['deferral'],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Representative Ramthun added as a cosponsor,2021-02-26T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Read,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Referred to joint committee on Finance,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Decision of the Chair appealed,2021-06-09T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-24T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-10-19T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2021-11-16T06:00:00+00:00,['enrolled'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 1 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +"Refused to suspend rules to withdraw from Senate message and take up, Ayes 56, Noes 36",2021-04-13T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-19T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-05T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Representative Duchow added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 10, Noes 5",2021-09-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken,2021-02-10T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Edming added as a cosponsor,2021-03-01T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Decision of the Chair appealed,2021-04-13T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 adopted,2021-06-09T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Substitute Amendment 1 adopted,2021-06-09T05:00:00+00:00,['amendment-passage'],WI,2021 +Laid on the table,2021-06-16T05:00:00+00:00,['deferral'],WI,2021 +Representative Bowen added as a cosponsor,2021-03-16T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-23T05:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 1 adopted,2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from calendar of 10-27-2021 and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Senate Substitute Amendment 1 adopted,2021-09-28T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Joint Committee on Finance,2021-06-23T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Macco added as a coauthor,2021-10-27T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-24T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-01T06:00:00+00:00,[],WI,2021 +Senator Pfaff added as a coauthor,2022-01-18T06:00:00+00:00,[],WI,2021 +Decision of the Chair appealed,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 2 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2021-09-22T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Report correctly enrolled on 6-11-2021,2021-06-11T05:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and passed, Ayes 33, Noes 0",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Utilities, Technology and Telecommunications",2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Health, Ayes 14, Noes 1",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Education,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Decision of the Chair appealed,2021-04-13T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 2-22-2021,2021-02-22T06:00:00+00:00,['enrolled'],WI,2021 +Senate Substitute Amendment 1 adopted,2021-10-20T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2021-11-11T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a coauthor,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +"Assembly Substitute Amendment 1 laid on table, Ayes 59, Noes 34",2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Felzkowski,2022-02-10T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 4, Noes 1",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Assembly Amendment 1 laid on table, Ayes 58, Noes 34",2022-01-25T06:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Referred to committee on Senate Organization,2021-05-11T05:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Environment,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Criminal Justice and Public Safety,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Representative Born added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +"Decision of the Chair upheld, Ayes 57, Noes 37",2021-04-13T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 laid on table, Ayes 60, Noes 33",2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-03-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2022-02-22T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Representative Shankland added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +Representative Vruwink added as a coauthor,2021-06-11T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Representative Subeck added as a cosponsor,2021-04-27T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +"Read a third time and passed, Ayes 96, Noes 0",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2021-06-02T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Assembly concurred in,2021-03-24T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-01-13T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Health,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 1 adopted,2021-09-28T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Senate Substitute Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representatives Shankland, B. Meyers, Snodgrass and Ohnstad",2021-06-22T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-21T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:49 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-30T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-11-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2022-03-01T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-01-28T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2021-06-16T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Armstrong added as a cosponsor,2021-05-13T05:00:00+00:00,[],WI,2021 +"Decision of the Chair upheld, Ayes 56, Noes 36",2021-04-13T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Committee on Constitution and Ethics, Ayes 6, Noes 3",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Executive action taken by joint committee on Finance,2021-05-27T05:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 adopted,2021-03-16T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Representatives Cabrera and Drake added as coauthors,2022-01-18T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-30T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Withdrawn from joint committee on Finance and taken up,2021-05-11T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Health,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 2 adopted,2021-06-09T05:00:00+00:00,['amendment-passage'],WI,2021 +Executive action taken,2021-06-02T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representative Skowronski added as a cosponsor,2021-10-27T05:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 laid on table, Ayes 58, Noes 36",2021-04-13T05:00:00+00:00,['deferral'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a third time and passed,2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-02-24T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Substitute Amendment 3 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-04-04T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 60, Noes 32, Paired 2",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Assembly Substitute Amendment 3 offered by Representatives Hong, Shankland, Anderson, Baldeh, Billings, Brostoff, Conley, Considine, Drake, Emerson, Goyke, Haywood, B. Meyers, Moore Omokunde, Neubauer, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Vruwink added as a coauthor,2022-01-11T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 1",2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senator Bewley added as a coauthor,2021-11-29T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Senators Carpenter and L. Taylor added as coauthors,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Labor and Regulatory Reform,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Not published. Enrolled Joint Resolution 5,2022-06-16T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 59, Noes 33",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken by joint committee on Finance,2021-06-02T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Senator Carpenter withdrawn as a cosponsor,2021-10-25T05:00:00+00:00,['withdrawal'],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 6-30-2021 pursuant to Senate Rule 18(1),2021-06-30T05:00:00+00:00,[],WI,2021 +Made a special order of business at 9:05 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 2 offered by Representatives Bowen, Emerson, Ohnstad, Cabrera, Conley, Considine, Drake, Shelton, Pope, Anderson, Riemer, Baldeh, Sinicki, L. Myers and Hebl",2021-06-16T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Moore Omokunde added as a cosponsor,2021-11-30T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Representative Kurtz added as a coauthor,2022-01-19T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +"Assembly Amendment 1 to Assembly Substitute Amendment 1 laid on table, Ayes 60, Noes 38",2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 61, Noes 31",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 adopted,2021-03-16T05:00:00+00:00,['amendment-passage'],WI,2021 +LRB correction (Senate Substitute Amendment 1),2022-01-19T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Drake added as a cosponsor,2021-05-25T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Ways and Means, Ayes 12, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-18T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 2 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Senate Substitute Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Executive action taken,2022-03-03T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +"Representatives Bowen, Kurtz and B. Meyers added as coauthors",2021-03-16T05:00:00+00:00,[],WI,2021 +Representative Kurtz added as a cosponsor,2021-10-15T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 adopted,2021-06-16T05:00:00+00:00,['amendment-passage'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a cosponsor,2021-11-15T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Constitution and Ethics, Ayes 6, Noes 3",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Senate,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-03-03T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Laid on the table,2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-30T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 8:39 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-08T05:00:00+00:00,[],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +"Report concurrence recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2022-02-24T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Report correctly enrolled,2021-11-05T05:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 29, Noes 2",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-01-28T06:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 9:38 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Representative Plumer added as a cosponsor,2021-05-20T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +Read a third time and passed,2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Senators Carpenter and L. Taylor withdrawn as coauthors,2021-10-25T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Decision of the Chair upheld, Ayes 57, Noes 37",2021-04-13T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Made a special order of business at 9:43 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Representatives Subeck, Hesselbein and Shankland added as coauthors",2022-01-25T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-09T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:50 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +"Senators Wanggaard, Darling and Cowles added as coauthors",2022-03-08T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Brooks added as a cosponsor,2022-02-01T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 adopted,2021-06-16T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-26T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Representatives Sortwell and Callahan added as cosponsors,2022-01-27T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 24, Noes 9",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled on 3-1-2022,2022-03-01T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 31, Noes 1",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +"Report adoption of Senate Amendment 3 recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-02-04T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Not published. Enrolled Joint Resolution 16,2022-06-17T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Representatives Edming and Tittl added as cosponsors,2021-03-01T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Health,2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-10-25T05:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +Read,2021-02-16T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled,2021-04-05T05:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-03-24T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-05-11T05:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 adopted,2021-06-23T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Natural Resources and Energy, Ayes 5, Noes 0",2022-03-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2021-06-03T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Withdrawn from joint committee on Finance and taken up,2022-02-23T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:45 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Senator Carpenter added as a coauthor,2021-09-28T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 33, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-06-23T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-25T06:00:00+00:00,['withdrawal'],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read first time and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Cabrera added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Housing and Real Estate, Ayes 8, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Representative Edming added as a cosponsor,2022-01-06T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a coauthor,2022-01-06T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +"Senate Amendment 2 adopted, Ayes 18, Noes 12",2021-09-28T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Bowen added as a cosponsor,2021-03-03T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Public hearing held,2022-03-02T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-05-11T05:00:00+00:00,['withdrawal'],WI,2021 +Referred to committee on Rules,2021-09-23T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2022-01-28T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Representative Rozar added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2021-10-04T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Tittl added as a cosponsor,2021-03-03T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-11-12T06:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 9, Noes 6",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Read a third time and passed, Ayes 33, Noes 0",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Laid on table,2021-03-16T05:00:00+00:00,['deferral'],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 58, Noes 34",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +"Decision of the Chair upheld, Ayes 60, Noes 37",2021-06-09T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Representative Macco added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Deposited in the office of the Secretary of State on 4-15-2022,2022-04-15T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Representatives Andraca and Subeck added as coauthors,2021-06-15T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 adopted,2021-06-09T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Decision of the Chair appealed,2021-04-13T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +"Decision of the Chair upheld, Ayes 57, Noes 37",2021-04-13T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 by Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +Senate Amendment 3 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Representative Penterman added as a cosponsor,2021-08-04T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Joint Committee on Finance, Ayes 11, Noes 3",2021-06-23T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +"Decision of the Chair upheld, Ayes 58, Noes 34",2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Made a special order of business at 8:37 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 59, Noes 35, Paired 2",2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Representative Shelton added as a coauthor,2021-03-17T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Substitute Amendment 1 offered by Joint Committee on Finance,2021-02-10T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-25T06:00:00+00:00,['withdrawal'],WI,2021 +Available for scheduling,2021-06-24T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-03-17T05:00:00+00:00,['withdrawal'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +"Decision of the Chair upheld, Ayes 57, Noes 37",2021-04-13T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Not published. Enrolled Joint Resolution 15,2022-06-17T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:18 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2021-11-02T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +"Report passage as amended recommended by Committee on Insurance, Licensing and Forestry, Ayes 3, Noes 2",2022-01-13T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-02-28T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Education,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-06-17T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-03-03T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +"Refused to adopt Senate Substitute Amendment 2, Ayes 11, Noes 22",2021-11-08T06:00:00+00:00,['amendment-failure'],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-12-08T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 60, Noes 38",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 20, Noes 11",2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 1 offered by Representative Oldenburg,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-11-11T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Referred to committee on Rules,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-09-28T05:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Decision of the Chair appealed,2022-02-24T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 58, Noes 34",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-11-08T06:00:00+00:00,['reading-3'],WI,2021 +Referred to joint committee on Finance,2021-10-26T05:00:00+00:00,['referral-committee'],WI,2021 +Not published. Enrolled Joint Resolution 12,2022-06-17T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Education,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 59, Noes 38",2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Ramthun withdrawn as a cosponsor,2021-06-15T05:00:00+00:00,['withdrawal'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Decision of the Chair appealed,2021-04-13T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-12-14T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2022-02-18T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +"Assembly Amendment 1 laid on table, Ayes 58, Noes 38",2021-06-16T05:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Labor and Integrated Employment, Ayes 9, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Read a third time and passed, Ayes 19, Noes 14",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a cosponsor,2021-10-15T05:00:00+00:00,[],WI,2021 +LRB correction (Assembly Substitute Amendment 1),2022-01-19T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Assembly Organization,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Made a special order of business at 9:48 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +LRB correction,2022-02-08T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Deposited in the office of the Secretary of State on 4-6-2021,2021-04-06T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:31 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Representative Steffen added as a coauthor,2021-03-19T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2021-11-02T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2021-03-19T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to calendar of 10-27-2021 pursuant to Assembly Rule 45 (1),2021-10-25T05:00:00+00:00,['reading-1'],WI,2021 +Read a second time,2021-06-30T05:00:00+00:00,['reading-2'],WI,2021 +Representative Gundrum added as a coauthor,2021-09-24T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +"Senate Amendment 4 offered by Senators Larson, Smith, Ringhand, Johnson, Erpenbach and Carpenter",2021-10-25T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Health, Ayes 14, Noes 0",2021-03-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Criminal Justice and Public Safety, Ayes 8, Noes 6",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Read a third time and passed, Ayes 60, Noes 38",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-05-11T05:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 59, Noes 33",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Doyle added as a coauthor,2022-04-08T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-21T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Energy and Utilities,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Drake added as a cosponsor,2021-05-25T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 adopted,2021-06-09T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2021-11-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-30-2021,2021-03-30T05:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and passed, Ayes 59, Noes 38",2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Sporting Heritage, Small Business and Rural Issues",2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Concurred in,2021-11-11T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report passage as amended recommended by Committee on Government Accountability and Oversight, Ayes 6, Noes 3",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 1 adopted,2021-10-27T05:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-11-08T06:00:00+00:00,[],WI,2021 +Representatives Stubbs and Bowen added as cosponsors,2021-03-10T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Veterans and Military Affairs and Constitution and Federalism, Ayes 5, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and passed, Ayes 92, Noes 0",2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Skowronski added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-27T05:00:00+00:00,['reading-3'],WI,2021 +Senate Amendment 1 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Read first time and referred to committee on State Affairs,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-01-07T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Passed,2021-03-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-23T05:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-03-17T05:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Education,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-05-11T05:00:00+00:00,['withdrawal'],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Read a third time and passed,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Representative S. Rodriguez added as a coauthor,2021-04-08T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Read a third time and passed,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Senate Amendment 1 to Senate Substitute Amendment 1 laid on table, Ayes 21, Noes 12",2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 adopted,2021-03-23T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-29T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 16, Noes 0",2022-02-23T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Substitute Amendment 1 offered by Representative Loudenbeck,2022-02-21T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +"Read first time and referred to committee on Government Operations, Legal Review and Consumer Protection",2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Penterman added as a coauthor,2022-02-03T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 62, Noes 36",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 5-18-2021,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and passed, Ayes 19, Noes 14",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Adopted, Ayes 70, Noes 21, Paired 4",2022-02-15T06:00:00+00:00,['passage'],WI,2021 +Representative Drake added as a cosponsor,2021-05-25T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-03-17T05:00:00+00:00,['withdrawal'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +"Senate Amendment 4 offered by Senators Larson, Johnson, Smith, L. Taylor, Erpenbach, Carpenter, Agard, Wirch, Pfaff, Bewley, Ringhand and Roys",2021-09-28T05:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Human Services, Children and Families",2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Representative Hong added as a cosponsor,2021-10-04T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-01-28T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a third time and passed,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2021-06-09T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Read first time and referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Laid on table,2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:16 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-09-24T05:00:00+00:00,[],WI,2021 +Representative Penterman added as a coauthor,2021-09-01T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-03-17T05:00:00+00:00,['reading-3'],WI,2021 +"Read first time and referred to committee on Government Operations, Legal Review and Consumer Protection",2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 2 offered by Representatives Spreitzer, Hintz, Hesselbein and Subeck",2021-09-28T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Deposited in the office of the Secretary of State on 2-5-2021,2021-02-05T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a third time and passed,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:32 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Read a third time and passed, Ayes 59, Noes 33",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 1 adopted,2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Laid on the table,2021-09-28T05:00:00+00:00,['deferral'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 1 adopted,2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 adopted,2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2021-09-24T05:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Not published. Enrolled Joint Resolution 3,2022-06-16T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Substitute Amendment 2 offered by Senator Feyen,2021-06-08T05:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-06-30T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2021-03-17T05:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly,2021-01-28T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-06-29T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on State Affairs,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-05-28T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:08 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +"Report passage as amended recommended by Committee on Criminal Justice and Public Safety, Ayes 14, Noes 0",2021-06-08T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Fiscal estimate received,2021-10-28T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-12T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 to Senate Amendment 2 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Public hearing held,2022-02-01T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 33, Noes 0",2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Read,2021-02-16T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read first time and referred to committee on Environment,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Tittl added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Deposited in the office of the Secretary of State on 8-4-2021,2021-08-04T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 2 withdrawn and returned to author,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Sporting Heritage,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-06-22T05:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +Withdrawn from committee on Health and referred to committee on Rules pursuant to Assembly Rule 42 (3)(c),2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Drake added as a cosponsor,2021-05-25T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +"Senate Amendment 1 to Senate Substitute Amendment 1 rejected, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-10-27T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Representative Steffen added as a coauthor,2021-03-19T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +"Assembly Amendment 1 offered by Representatives Hesselbein, Anderson, Brostoff, Considine, Doyle, Goyke, Hebl, Hong, B. Meyers, McGuire, Moore Omokunde, Neubauer, Ohnstad, Pope, Shankland, Shelton, Snodgrass, Sinicki, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 6-23-2021,2021-06-23T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:30 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 2 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Representative Shelton added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 4 offered by Representative Oldenburg,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-27T05:00:00+00:00,['withdrawal'],WI,2021 +"Senate Amendment 5 offered by Senators Larson, Smith, Ringhand, Johnson, Erpenbach and Carpenter",2021-10-25T05:00:00+00:00,[],WI,2021 +Representative Macco added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-05-11T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 60, Noes 36",2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-04-13T05:00:00+00:00,['withdrawal'],WI,2021 +"Read a third time and passed, Ayes 31, Noes 0",2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Health,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Representative Bowen added as a coauthor,2021-03-16T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Education,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 56, Noes 34, Paired 2",2021-01-07T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Steffen added as a cosponsor,2021-03-19T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-22T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-06-23T05:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-05T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-03-16T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2021-06-17T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2021-11-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 2 offered by Representatives Neubauer, Pope, Hebl, Considine, Vruwink, Anderson, Andraca, Baldeh, Billings, Brostoff, Conley, Drake, Emerson, Goyke, Hesselbein, Hong, B. Meyers, Ohnstad, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Haywood",2022-02-22T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representative Schraa,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +"Refused to adopt Senate Amendment 3, Ayes 12, Noes 21",2022-01-25T06:00:00+00:00,['amendment-failure'],WI,2021 +Read first time and referred to committee on Labor and Regulatory Reform,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-12-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-09-27T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-25T06:00:00+00:00,['withdrawal'],WI,2021 +"Read first time and referred to committee on Insurance, Licensing and Forestry",2021-03-24T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Read a third time and passed, Ayes 94, Noes 0",2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 withdrawn and returned to author,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Representative Spreitzer added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +"Assembly Amendment 2 laid on table, Ayes 60, Noes 38",2021-09-28T05:00:00+00:00,['deferral'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-06-29T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-05-11T05:00:00+00:00,['withdrawal'],WI,2021 +Received from Assembly,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Representative Ramthun withdrawn as a coauthor,2022-01-05T06:00:00+00:00,['withdrawal'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Stroebel,2022-02-10T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 adopted,2021-03-23T05:00:00+00:00,['amendment-passage'],WI,2021 +"Senate Amendment 2 to Senate Substitute Amendment 1 laid on table, Ayes 21, Noes 12",2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 1 withdrawn and returned to author,2021-06-29T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Representative Billings added as a coauthor,2021-04-12T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Tusler added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Representative Ohnstad added as a coauthor,2021-03-12T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-17T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 2 offered by Representative Steffen,2021-06-22T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-17T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Emerson added as a cosponsor,2021-09-29T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Subeck added as a cosponsor,2021-05-10T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 57, Noes 37",2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Steffen added as a cosponsor,2021-06-11T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Substitute Amendment 1 adopted,2021-10-27T05:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Amendment 1 adopted,2021-06-16T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Not published. Enrolled Joint Resolution 1,2021-02-25T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read first time and referred to committee on Sporting Heritage,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +"Refused to adopt Senate Substitute Amendment 3, Ayes 11, Noes 22",2021-11-08T06:00:00+00:00,['amendment-failure'],WI,2021 +Received from Assembly,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-03-17T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 1 adopted,2022-02-17T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +LRB correction,2021-10-19T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Sortwell,2021-04-13T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Read a third time and passed, Ayes 28, Noes 4",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representatives Sortwell and Callahan added as coauthors,2022-01-27T06:00:00+00:00,[],WI,2021 +"Decision of the Chair upheld, Ayes 57, Noes 37",2021-04-13T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2021-11-12T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read first time and referred to committee on Government Operations, Legal Review and Consumer Protection",2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +"Read first time and referred to committee on Government Operations, Legal Review and Consumer Protection",2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +Received from Senate,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2021-11-02T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report concurrence recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2022-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Joint Committee on Finance, Ayes 15, Noes 0",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-01-13T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 5 withdrawn and returned to author,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 offered by Senator Cowles,2022-02-21T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-11-08T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:33 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Decision of the Chair upheld, Ayes 59, Noes 36",2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 56, Noes 36",2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Skowronski,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Labor and Integrated Employment, Ayes 6, Noes 3",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Representative S. Rodriguez added as a coauthor,2022-03-29T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-03-24T05:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Assembly Amendment 3 to Assembly Substitute Amendment 1 offered by Representative Brooks,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2021-11-15T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Representative Loudenbeck added as a coauthor,2022-02-08T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Health,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Sporting Heritage, Small Business and Rural Issues",2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +"Report passage as amended, with emergency statement attached, pursuant to s. 16.47 (2), Wisconsin Statutes, recommended by Joint Committee on Finance, Ayes 11, Noes 3",2021-06-23T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Brandtjen added as a coauthor,2022-02-08T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 by Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +Representative Dittrich added as a cosponsor,2021-03-04T06:00:00+00:00,[],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2022-01-28T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Labor and Regulatory Reform,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Representatives Vining and Subeck added as coauthors,2021-06-15T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Sporting Heritage,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-01-21T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Health,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Representatives Subeck and Armstrong added as cosponsors,2021-10-14T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Universities and Technical Colleges,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +"Decision of the Chair upheld, Ayes 57, Noes 36",2021-04-13T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-09-24T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Deposited in the office of the Secretary of State on 3-9-2022,2022-03-09T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Read a third time,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 4-15-2021,2021-04-15T05:00:00+00:00,['enrolled'],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Joint Committee on Finance,2021-02-10T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-05-11T05:00:00+00:00,['withdrawal'],WI,2021 +Senate Amendment 2 to Senate Substitute Amendment 1 adopted,2021-06-09T05:00:00+00:00,['amendment-passage'],WI,2021 +Senate Substitute Amendment 1 withdrawn and returned to author,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Representative Plumer added as a cosponsor,2021-03-04T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-03-19T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +"Report adoption of Senate Amendment 4 recommended by Committee on Financial Institutions and Revenue, Ayes 3, Noes 2",2021-02-04T06:00:00+00:00,['amendment-passage'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-17T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Not published. Enrolled Joint Resolution 19,2022-06-17T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Assembly Substitute Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Edming added as a coauthor,2021-06-08T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-23T05:00:00+00:00,['reading-3'],WI,2021 +"Read first time and referred to committee on Utilities, Technology and Telecommunications",2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 6-9-2021,2021-06-09T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-25T06:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 33, Noes 0",2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Stubbs added as a cosponsor,2021-03-10T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Transportation and Local Government,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-03-01T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 19, Noes 13",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-22T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 2 adopted,2021-06-23T05:00:00+00:00,['amendment-passage'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and passed, Ayes 57, Noes 37",2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-05-11T05:00:00+00:00,['withdrawal'],WI,2021 +Read,2021-03-17T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +Representatives Allen and Plumer added as cosponsors,2021-03-04T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Representative Drake added as a coauthor,2022-01-07T06:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Insurance, Licensing and Forestry",2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-25T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Read,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 94, Noes 0",2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Representative Ramthun added as a cosponsor,2021-09-29T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Laid on the table,2022-01-20T06:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2021-12-02T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2022-03-18T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Representative Subeck added as a cosponsor,2021-10-25T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended to withdraw from Senate message and take up,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +"Report concurrence recommended by Committee on Criminal Justice and Public Safety, Ayes 9, Noes 6",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Laid on the table,2021-09-28T05:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Assembly Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2021-02-11T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Health,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senator Carpenter added as a cosponsor,2021-06-30T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 adopted,2021-06-16T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +"Report concurrence recommended by Committee on Labor and Regulatory Reform, Ayes 5, Noes 0",2022-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report concurrence recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2022-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Health,2021-02-04T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2021-11-09T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Education,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Representative Cabral-Guevara withdrawn as a coauthor,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Read a third time and passed,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Representative Drake withdrawn as a coauthor,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +"Read first time and referred to committee on Sporting Heritage, Small Business and Rural Issues",2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +"Assembly Amendment 2 laid on table, Ayes 58, Noes 38",2021-06-16T05:00:00+00:00,['deferral'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Representative Subeck added as a coauthor,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-06-11T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Universities and Technical Colleges,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Senator Carpenter added as a coauthor,2021-09-28T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Education,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:03 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken by joint committee on Finance,2021-06-08T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Education,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Senator Smith added as a coauthor,2021-12-01T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Health,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +"Refused to refer to committee on State Affairs, Ayes 38, Noes 60",2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 1 offered by Representatives Sortwell and Murphy,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Ways and Means, Ayes 12, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-30-2021 pursuant to Senate Rule 18(1),2021-06-30T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 adopted,2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +Executive action taken,2021-06-10T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Representative Magnafici added as a cosponsor,2022-01-31T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 6-30-2021,2021-06-30T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Health,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report concurrence recommended by Committee on Health, Ayes 5, Noes 0",2022-02-25T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Read a third time and passed, Ayes 33, Noes 0",2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 1 withdrawn and returned to author,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:25 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-03-03T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 3 offered by Representatives Bowen, McGuire, Emerson, Ohnstad, Cabrera, Conley, Drake, Shelton, Pope, Anderson, Riemer, Baldeh, Sinicki, L. Myers and Hebl",2021-06-16T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:14 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken,2021-06-15T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Wittke,2022-02-14T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-06-30T05:00:00+00:00,['reading-2'],WI,2021 +Made a special order of business at 8:13 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 19, Noes 13",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 57, Noes 36",2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-03-16T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Substitute Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-23T05:00:00+00:00,['reading-2'],WI,2021 +Representatives Vining and Spreitzer added as cosponsors,2021-12-01T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Executive action taken by joint committee on Finance,2021-06-10T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Read a third time and passed, Ayes 56, Noes 37",2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-16T05:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +"Withdrawn from committee on Sporting Heritage, Small Business and Rural Issues and rereferred to committee on Senate Organization pursuant to Senate Rule 46(2)(c)",2022-03-02T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2021-10-26T05:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-02-09T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2022-03-03T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 60, Noes 38",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Representative Haywood added as a coauthor,2022-01-27T06:00:00+00:00,[],WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:11 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +"Read a third time and concurred in, Ayes 92, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 3-17-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Executive action taken,2022-03-03T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read,2022-02-24T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-06-09T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 58, Noes 37",2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Made a special order of business at 8:48 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Report concurrence recommended by Committee on Environment, Ayes 7, Noes 2",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read first time and referred to committee on Rules,2021-04-08T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Read,2021-05-11T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 1 to Assembly Amendment 2 offered by Representative Wittke,2021-09-27T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Joint Committee on Finance, Ayes 15, Noes 0",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Read a third time and passed, Ayes 62, Noes 32",2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and passed, Ayes 58, Noes 34",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-06-23T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-27T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Wichgers added as a cosponsor,2021-03-05T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Fiscal estimate received,2021-04-02T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-02-16T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2021-02-12T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:41 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Government Operations, Legal Review and Consumer Protection",2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2021-06-16T05:00:00+00:00,['deferral'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Received from Senate,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Representative Wichgers added as a cosponsor,2021-03-05T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-22T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:02 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-05-11T05:00:00+00:00,['withdrawal'],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Financial Institutions and Revenue, Ayes 3, Noes 2",2021-02-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Representative Milroy added as a cosponsor,2022-02-25T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 1 adopted,2021-06-16T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Representative Spreitzer added as a coauthor,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-05-11T05:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 adopted,2021-04-13T05:00:00+00:00,['amendment-passage'],WI,2021 +Senate Substitute Amendment 1 adopted,2021-06-09T05:00:00+00:00,['amendment-passage'],WI,2021 +Senate Substitute Amendment 2 withdrawn and returned to author,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Not published. Enrolled Joint Resolution 8,2022-06-16T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +"Move to call the question, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +"Read first time and referred to committee on Sporting Heritage, Small Business and Rural Issues",2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Representative Cabrera added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Representative Moses added as a cosponsor,2022-01-28T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 29, Noes 2",2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Assembly Amendment 1 adopted,2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-11T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-10T06:00:00+00:00,['receipt'],WI,2021 +Representative Penterman added as a cosponsor,2021-10-21T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 8:16 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from Senate message and take up,2021-03-17T05:00:00+00:00,[],WI,2021 +Representative Wichgers added as a coauthor,2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 59, Noes 34, Paired 2",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-08-26T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-01-21T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:10 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 59, Noes 33",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and passed, Ayes 59, Noes 39",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 59, Noes 33",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a third time and passed,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 1 offered by Joint Committee on Finance,2021-02-10T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 3 offered by Representative Allen,2022-01-18T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Financial Institutions and Revenue,2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-23T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-23T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2021-11-09T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-11-08T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 60, Noes 34",2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 6 offered by Representative Moses,2021-06-22T05:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Education, Ayes 13, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-03-17T05:00:00+00:00,['reading-3'],WI,2021 +Executive action taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Moses added as a coauthor,2022-01-28T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Steffen,2021-04-13T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Representative Penterman added as a coauthor,2021-10-21T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 1 adopted,2022-02-17T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled,2021-11-15T06:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Deposited in the office of the Secretary of State on 4-15-2022,2022-04-15T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2021-11-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read first time and referred to committee on Government Operations, Legal Review and Consumer Protection",2021-10-08T05:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Substitute Amendment 1 adopted,2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Made a special order of business at 8:47 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Bowen added as a coauthor,2021-04-13T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2021-04-13T05:00:00+00:00,['amendment-passage'],WI,2021 +Read first time and referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Insurance, Licensing and Forestry",2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-11-05T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2021-06-17T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-03T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Drake, Bowen, Haywood, Stubbs, L. Myers, Baldeh, Moore Omokunde, Neubauer, Spreitzer, Hebl, Subeck, Hesselbein, Vining, Brostoff, Considine, Emerson, B. Meyers, Ohnstad, Anderson, Hong, Conley, Hintz, Riemer, Andraca, McGuire, Shankland, Snodgrass, S. Rodriguez, Shelton, Pope, Vruwink, Goyke, Doyle, Milroy, Ortiz-Velez, Cabrera and Billings",2022-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 adopted,2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 14, Noes 1",2022-02-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2021-09-24T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2021-03-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Senator Carpenter added as a coauthor,2021-06-09T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled on 1-27-2022,2022-01-27T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Read,2021-03-23T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:03 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 83, Noes 7, Paired 6",2021-10-27T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken,2021-08-25T05:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 12, Noes 4",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Representative Ohnstad added as a cosponsor,2021-12-08T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +"Concurred in, Ayes 60, Noes 38",2021-09-28T05:00:00+00:00,[],WI,2021 +Representative Baldeh withdrawn as a cosponsor,2021-03-25T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Steffen added as a cosponsor,2021-10-26T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2021-05-11T05:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 2 offered by Representative Neubauer,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-03-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Brostoff added as a cosponsor,2021-06-18T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +"Read first time and referred to committee on Human Services, Children and Families",2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Available for scheduling,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Representative Plumer added as a cosponsor,2021-05-19T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Senator Jacque added as a coauthor,2021-10-06T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 1 adopted,2021-09-28T05:00:00+00:00,['amendment-passage'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Skowronski added as a cosponsor,2021-12-09T06:00:00+00:00,[],WI,2021 +Not published. Enrolled Joint Resolution 4,2022-06-16T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 2 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Laid on table,2021-06-23T05:00:00+00:00,['deferral'],WI,2021 +Made a special order of business at 8:49 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2021-05-11T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2021-03-17T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-25T06:00:00+00:00,['withdrawal'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-05-11T05:00:00+00:00,['withdrawal'],WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Senate Substitute Amendment 1 adopted,2021-05-11T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Armstrong withdrawn as a coauthor,2022-02-24T06:00:00+00:00,['withdrawal'],WI,2021 +Senator Carpenter added as a coauthor,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2021-06-17T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from Senate message and take up,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Representative Penterman added as a cosponsor,2022-02-03T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 adopted,2021-03-23T05:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Amendment 3 to Assembly Substitute Amendment 1 offered by Representative Knodl,2021-06-29T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-30T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2021-03-23T05:00:00+00:00,['amendment-passage'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Education,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Amendment 2 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2021-11-11T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Representative Schraa added as a coauthor,2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Environment,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Laid on the table,2021-04-13T05:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2021-06-23T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-01-07T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Government Operations, Legal Review and Consumer Protection",2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-03-23T05:00:00+00:00,['withdrawal'],WI,2021 +Made a special order of business at 8:24 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and concurred in, Ayes 92, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken,2022-01-19T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Report concurrence recommended by Committee on Local Government, Ayes 9, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read first time and referred to committee on Sporting Heritage,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2021-11-09T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-03-16T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Representative Subeck added as a cosponsor,2021-05-10T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Joint Committee on Finance, Ayes 15, Noes 0",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +Representative Cabrera added as a coauthor,2021-06-21T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2021-10-08T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Point of order that Assembly Substitute Amendment 2 not germane under Assembly Rule 54 (3)(f) well taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Assembly Amendment 3 offered by Representative Kitchens,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read first time and referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-11-08T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Senator Wirch withdrawn as a cosponsor,2021-09-27T05:00:00+00:00,['withdrawal'],WI,2021 +Read first time and referred to committee on Health,2021-06-21T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Vining added as a cosponsor,2021-06-15T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-25T06:00:00+00:00,['withdrawal'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-16T05:00:00+00:00,['withdrawal'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Labor and Regulatory Reform,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-03-23T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Subeck added as a coauthor,2022-01-25T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:21 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-03-02T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Made a special order of business at 8:51 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Assembly Amendment 3 offered by Representatives McGuire, Emerson, Bowen, Ohnstad, Cabrera, Conley, Considine, Drake, Shelton, Pope, Anderson, Riemer, Vining, Baldeh, Sinicki, L. Myers and Hebl",2021-06-16T05:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Insurance, Licensing and Forestry",2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Skowronski added as a cosponsor,2021-12-09T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Read a second time,2021-10-27T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Energy and Utilities, Ayes 13, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Sinicki withdrawn as a cosponsor,2021-03-30T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Shankland added as a cosponsor,2022-01-25T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-05-12T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 4 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-10-27T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Considine added as a cosponsor,2021-12-29T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 14, Noes 1",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Macco added as a coauthor,2021-10-27T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended and taken up,2021-03-23T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-05-11T05:00:00+00:00,['withdrawal'],WI,2021 +"Report concurrence recommended by Committee on Insurance, Licensing and Forestry, Ayes 4, Noes 1",2021-05-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +Read a third time and concurred in,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2021-06-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2021-04-08T05:00:00+00:00,['referral-committee'],WI,2021 +Senator Ballweg added as a cosponsor,2022-02-08T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 30, Noes 2",2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2021-06-16T05:00:00+00:00,['deferral'],WI,2021 +Assembly Amendment 1 adopted,2021-03-16T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Representative Dittrich added as a cosponsor,2021-06-11T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:27 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-27T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Sporting Heritage, Small Business and Rural Issues, Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 60, Noes 38",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-03-17T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 1 offered by Representative Tusler,2022-02-16T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 31, Noes 0",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-17T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 adopted,2021-09-28T05:00:00+00:00,['amendment-passage'],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended and taken up,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-06-23T05:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Brostoff withdrawn as a coauthor,2021-06-21T05:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Representative Vruwink added as a cosponsor,2022-01-11T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives Anderson, S. Rodriguez, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-04-13T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and concurred in, Ayes 92, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 3 offered by Representative Kuglitsch,2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2021-10-08T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-03-16T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 3 laid on table, Ayes 58, Noes 38",2021-06-16T05:00:00+00:00,['deferral'],WI,2021 +Made a special order of business at 8:13 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and concurred in, Ayes 92, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 16, Noes 0",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Assembly Amendment 3 to Assembly Substitute Amendment 1 adopted,2021-06-29T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-27T05:00:00+00:00,['withdrawal'],WI,2021 +Read first time and referred to committee on Labor and Regulatory Reform,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-05-11T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +"Report concurrence recommended by Committee on State Affairs, Ayes 8, Noes 4",2022-02-22T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Decision of the Chair appealed,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report concurrence recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2021-08-26T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Referred to committee on Senate Organization,2021-06-09T05:00:00+00:00,['referral-committee'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Representative Vining added as a coauthor,2021-04-13T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +LRB correction (Senate Amendment 1),2021-03-17T05:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 32, Noes 0",2021-06-30T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Representatives Hintz, Spreitzer, Pope, Shankland, Sinicki, Goyke, Billings, Hebl, Andraca, Ohnstad, Brostoff, Baldeh, S. Rodriguez and Vining added as coauthors",2021-03-12T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-11T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-22T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 59, Noes 35, Paired 2",2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-01-21T06:00:00+00:00,[],WI,2021 +"Senate Amendment 3 adopted, Ayes 20, Noes 12",2021-10-25T05:00:00+00:00,['amendment-passage'],WI,2021 +Received from Assembly,2021-03-16T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 1 adopted,2021-03-23T05:00:00+00:00,['amendment-passage'],WI,2021 +"Report concurrence without recommendation, pursuant to Senate Rule 27 (4)(a), by Committee on Health, Ayes 2, Noes 2",2022-02-11T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-14T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Substitute Amendment 2 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-03-17T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-01-27T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-10-27T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Received from Assembly concurred in,2021-11-12T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read first time and referred to committee on Insurance, Licensing and Forestry",2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Assembly Amendment 3 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Representatives Bowen and Shelton added as cosponsors,2021-10-14T05:00:00+00:00,[],WI,2021 +Representative Emerson added as a cosponsor,2021-03-19T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-02-17T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and concurred in, Ayes 92, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Spreitzer added as a cosponsor,2021-10-29T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Human Services, Children and Families",2021-06-21T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Spreitzer added as a cosponsor,2021-10-29T05:00:00+00:00,[],WI,2021 +Representative Stubbs added as a cosponsor,2022-03-08T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2021-01-07T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2021-11-05T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 6 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:09 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Representative Murphy added as a cosponsor,2021-10-26T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 1 withdrawn and returned to author,2021-04-13T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:22 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Financial Institutions and Revenue,2021-11-02T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Made a special order of business at 8:57 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +"Read first time and referred to committee on Human Services, Children and Families",2021-06-21T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Representative Skowronski added as a coauthor,2022-02-17T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-17T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2021-07-21T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 33, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Representatives Drake and Emerson added as cosponsors,2022-01-24T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-07T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Representative Kurtz added as a coauthor,2022-02-01T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-11-08T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Financial Institutions and Revenue,2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Representative Allen added as a cosponsor,2021-11-16T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Not published. Enrolled Joint Resolution 11,2022-06-17T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-11-08T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Joint Committee on Finance, Ayes 12, Noes 4",2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 18, Noes 15",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +"Assembly Amendment 3 to Assembly Substitute Amendment 1 offered by Representatives Petersen, Cabral-Guevara and Sanfelippo",2022-02-16T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:07 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2021-02-12T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Sporting Heritage,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-04-15T05:00:00+00:00,['receipt'],WI,2021 +"Report concurrence recommended by Committee on Health, Ayes 4, Noes 0",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Steffen added as a cosponsor,2021-10-26T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended to withdraw from Senate message and take up,2021-05-11T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-12T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on State Affairs,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 3-17-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 62, Noes 34, Paired 2",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2022-02-18T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Kurtz added as a coauthor,2022-01-26T06:00:00+00:00,[],WI,2021 +Read,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Read a second time,2021-03-17T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-06-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 3 to Assembly Substitute Amendment 1 offered by Joint Committee on Finance,2021-02-10T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-18T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-06-23T05:00:00+00:00,[],WI,2021 +Read a second time,2021-10-27T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-04-13T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Read,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 92, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Executive action taken,2021-09-16T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a cosponsor,2021-03-11T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Representative Penterman added as a coauthor,2021-08-04T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Representative Shankland added as a coauthor,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Utilities, Technology and Telecommunications",2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 18, Noes 14",2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Made a special order of business at 9:15 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 6-30-2021 pursuant to Senate Rule 18(1),2021-06-29T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-02-24T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Agriculture and Tourism,2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-02-04T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2021-03-19T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 60, Noes 37",2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Representative Kurtz added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2022-03-08T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 57, Noes 36",2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Refused to refer to committee on Senate Organization, Ayes 12, Noes 21",2022-02-22T06:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Labor and Regulatory Reform, Ayes 5, Noes 0",2022-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-07-21T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 92, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Fiscal estimate received,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +"Senate Substitute Amendment 1 offered by Senators Agard, Roys, Smith, Pfaff, Larson, Johnson, Erpenbach, L. Taylor and Bewley",2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Cabral-Guevara added as a cosponsor,2021-03-08T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Representative Kurtz added as a cosponsor,2022-02-01T06:00:00+00:00,[],WI,2021 +Representative Hesselbein added as a coauthor,2021-06-17T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 19, Noes 12",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Read,2021-09-28T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 59, Noes 37",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 4, Noes 3",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a third time and passed,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read,2021-03-17T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 14, Noes 1",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Read a third time and passed, Ayes 56, Noes 37",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 adopted,2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Representatives Steffen and Bowen added as cosponsors,2021-08-25T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 57, Noes 36",2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Thiesfeldt added as a cosponsor,2021-10-25T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Referred to committee on Senate Organization,2021-06-23T05:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-11-11T06:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read first time and referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Made a special order of business at 8:07 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-06-30T05:00:00+00:00,['reading-3'],WI,2021 +Representative Armstrong added as a cosponsor,2021-02-18T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Education,2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Laid on table,2021-06-30T05:00:00+00:00,['deferral'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Assembly Amendment 3 to Assembly Substitute Amendment 1 offered by Representatives Sortwell and Murphy,2021-06-22T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-25T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +"Report concurrence recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Refused to indefinitely postpone, Ayes 11, Noes 20",2022-02-22T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 2 offered by Representative Wittke,2022-02-15T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 3 laid on table, Ayes 58, Noes 38",2021-06-16T05:00:00+00:00,['deferral'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Representative Milroy added as a coauthor,2022-02-25T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-02T06:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Public hearing held,2022-01-06T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a cosponsor,2022-01-25T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Kooyenga,2021-02-09T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken,2021-06-17T05:00:00+00:00,[],WI,2021 +Executive action taken by joint committee on Finance,2021-06-15T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a cosponsor,2021-10-26T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Substance Abuse and Prevention, Ayes 7, Noes 1",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-11T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 9:01 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 19, Noes 14",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Representative Brostoff added as a cosponsor,2021-12-07T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2021-03-19T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 60, Noes 36, Paired 2",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-23T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Representative Milroy added as a coauthor,2022-02-25T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-03-02T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Allen added as a cosponsor,2021-03-18T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2022-03-08T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 3 to Assembly Substitute Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +"Read a third time and passed, Ayes 94, Noes 0",2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Concurred in, Ayes 60, Noes 35, Paired 4",2022-02-24T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a cosponsor,2022-01-12T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Executive action taken,2021-02-11T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Referred to committee on Senate Organization,2022-03-08T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Representative Skowronski added as a cosponsor,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a second time,2021-11-11T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +"Read first time and referred to committee on Housing, Commerce and Trade",2022-01-24T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +"Read first time and referred to committee on Sporting Heritage, Small Business and Rural Issues",2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Report of Joint Survey Committee on Tax Exemptions requested,2021-06-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-12T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:08 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-06-30T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Representative Drake added as a cosponsor,2021-02-19T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +"Adopted, Ayes 21, Noes 11",2022-02-22T06:00:00+00:00,['passage'],WI,2021 +"Report passage as amended recommended by Committee on Substance Abuse and Prevention, Ayes 7, Noes 1",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Regulatory Licensing Reform,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Labor and Regulatory Reform,2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken by joint committee on Finance,2021-06-17T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-27T05:00:00+00:00,['withdrawal'],WI,2021 +Read first time and referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-19T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Wanggaard,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Hesselbein added as a cosponsor,2022-03-01T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-23T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-03-03T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and concurred in, Ayes 60, Noes 36, Paired 2",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Made a special order of business at 8:59 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Moses,2022-01-14T06:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 96, Noes 0",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +"Report passage recommended by Committee on Constitution and Ethics, Ayes 6, Noes 3",2021-11-15T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 4 offered by Representative Allen,2022-02-07T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-08-26T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-27T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-03-17T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Steffen added as a cosponsor,2021-10-26T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2021-11-02T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Senator Carpenter added as a cosponsor,2022-02-22T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives S. Rodriguez, Emerson, Moore Omokunde, Spreitzer, Hintz, Brostoff, Conley, Doyle, Drake, Andraca, Billings, Considine, Haywood, Hebl, Hesselbein, Hong, Baldeh, Ohnstad, McGuire, B. Meyers, Pope, Neubauer, Shankland, Snodgrass, Sinicki, Shelton, Subeck, Vining, Vruwink, Anderson and Cabrera",2022-02-24T06:00:00+00:00,[],WI,2021 +Assembly Amendment 4 to Assembly Substitute Amendment 1 offered by Joint Committee on Finance,2021-02-10T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Amendment 1 offered by Senator Ballweg,2021-10-15T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 19, Noes 13",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representatives Schraa and Wichgers added as coauthors,2021-04-13T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Education,2021-10-08T05:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 offered by Representatives Neubauer and Spreitzer,2022-02-24T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Representative Skowronski added as a coauthor,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-17T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-27T05:00:00+00:00,['withdrawal'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 59, Noes 33",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Passed, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Made a special order of business at 9:02 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-17T06:00:00+00:00,['deferral'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2021-09-28T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Government Operations, Legal Review and Consumer Protection",2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Skowronski added as a cosponsor,2021-03-12T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 10-27-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-11-11T06:00:00+00:00,['withdrawal'],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from Senate message and take up,2021-03-17T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Report concurrence recommended by Committee on Utilities, Technology and Telecommunications, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-05-11T05:00:00+00:00,['withdrawal'],WI,2021 +Read first time and referred to committee on Labor and Regulatory Reform,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a coauthor,2021-11-11T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from Senate message and take up,2021-09-28T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-04-13T05:00:00+00:00,['withdrawal'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Representative Duchow added as a cosponsor,2021-05-13T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 18, Noes 12",2021-06-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a cosponsor,2021-03-15T05:00:00+00:00,[],WI,2021 +Representative Dittrich added as a cosponsor,2021-03-09T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Government Operations, Legal Review and Consumer Protection",2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Received from Senate,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a cosponsor,2021-12-09T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read first time and referred to committee on Economic and Workforce Development,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Children and Families,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 6-30-2021,2021-06-30T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Education,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-03-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-29T05:00:00+00:00,['receipt'],WI,2021 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2021-11-05T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-11-08T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 1 adopted,2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-02-11T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Senate Organization,2022-03-08T06:00:00+00:00,['referral-committee'],WI,2021 +Made a special order of business at 8:15 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Decision of the Chair appealed,2022-02-24T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Petrowski,2021-10-01T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2021-04-14T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-25T06:00:00+00:00,['withdrawal'],WI,2021 +"Adopted, Ayes 59, Noes 36, Paired 4",2022-02-24T06:00:00+00:00,['passage'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-27T05:00:00+00:00,['withdrawal'],WI,2021 +Made a special order of business at 8:34 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 16, Noes 0",2022-02-23T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read first time and referred to committee on Rules,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-10-07T05:00:00+00:00,['receipt'],WI,2021 +"Report concurrence recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-07-30T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Judiciary,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 adopted,2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Made a special order of business at 8:06 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Point of order that Assembly Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Representative Kurtz added as a cosponsor,2022-01-19T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-11-09T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representatives Macco and Rozar added as coauthors,2021-06-22T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Finance,2021-01-08T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-03-22T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Consumer Protection,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Report correctly enrolled,2021-11-16T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-06-30T05:00:00+00:00,[],WI,2021 +"Withdrawn from committee on Insurance, Licensing and Forestry and rereferred to committee on Senate Organization pursuant to Senate Rule 46(2)(c)",2022-03-01T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:18 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Ramthun withdrawn as a coauthor,2021-06-15T05:00:00+00:00,['withdrawal'],WI,2021 +"Report concurrence recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representatives Vining and Subeck added as cosponsors,2021-06-15T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Insurance, Licensing and Forestry",2021-08-05T05:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 1 offered by Representative Loudenbeck,2021-11-15T06:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-04-08T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Made a special order of business at 8:10 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Sporting Heritage, Ayes 13, Noes 0",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Anderson added as a coauthor,2022-03-10T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:05 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-06-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2021-03-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Financial Institutions and Revenue,2021-11-02T05:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senator Wanggaard added as a coauthor,2021-09-28T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-10-27T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 8:01 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Government Operations, Legal Review and Consumer Protection",2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +"Report concurrence as amended recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-11-11T06:00:00+00:00,['withdrawal'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 8:55 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Agriculture and Tourism,2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Laid on the table,2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +"Concurred in, Ayes 17, Noes 16",2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:15 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Natural Resources and Energy,2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Assembly Amendment 1 offered by Representative Plumer,2022-02-24T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-06-23T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Shankland added as a cosponsor,2021-09-30T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +"Senate Amendment 4 rejected, Ayes 20, Noes 12",2021-10-25T05:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-08T05:00:00+00:00,['receipt'],WI,2021 +"Report concurrence recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Senate Amendment 1 offered by Senator Roys,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Senator Carpenter added as a coauthor,2021-06-09T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-13T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:46 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 4 to Assembly Substitute Amendment 1 offered by Representative Knodl,2021-06-29T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-10-22T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-10-27T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-07-21T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Dittrich,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-08-26T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-04T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Laid on the table,2022-02-24T06:00:00+00:00,['deferral'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Representative Rozar added as a cosponsor,2021-11-01T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Senate Substitute Amendment 3 offered by Senator Feyen,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +"Assembly Amendment 2 offered by Representatives Riemer, S. Rodriguez, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-03-23T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 3 adopted,2021-09-28T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Subeck added as a cosponsor,2021-10-25T05:00:00+00:00,[],WI,2021 +Representative L. Myers added as a cosponsor,2021-05-18T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +"Decision of the Chair upheld, Ayes 60, Noes 34",2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-06-16T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Environment, Ayes 7, Noes 2",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Education, Ayes 12, Noes 0",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2021-10-27T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Sporting Heritage, Ayes 9, Noes 4",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-02-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 55, Noes 39",2021-10-27T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Received from Senate,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +"Representatives Doyle, Conley, Emerson, B. Meyers, Considine, Subeck and Allen added as coauthors",2021-03-15T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 4 to Assembly Substitute Amendment 1 adopted,2021-06-29T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2021-10-27T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-22T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-23T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-03-01T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +"Report concurrence without recommendation, pursuant to Senate Rule 27 (4)(a), by Committee on Health, Ayes 2, Noes 2",2022-02-11T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Point of order that Assembly Amendment 2 not germane under Assembly Rule 54 (3)(f) well taken,2021-03-23T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 5 offered by Representatives Vos and Thiesfeldt,2021-09-28T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate concurred in,2021-06-23T05:00:00+00:00,['receipt'],WI,2021 +Withdrawn from committee on Finance and rereferred to committee on Senate Organization pursuant to Senate Rule 46(2)(c),2021-01-11T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-04-13T05:00:00+00:00,['withdrawal'],WI,2021 +Laid on the table,2022-02-23T06:00:00+00:00,['deferral'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +"Senate Amendment 5 rejected, Ayes 20, Noes 12",2021-10-25T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 59, Noes 35, Paired 2",2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Steffen added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Representative Drake added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 22, Noes 11",2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-06-23T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Penterman added as a cosponsor,2021-11-16T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a cosponsor,2021-10-25T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Representative Drake added as a cosponsor,2021-05-25T05:00:00+00:00,[],WI,2021 +"Report concurrence by Committee on Human Services, Children and Families, Ayes 2, Noes 3",2021-10-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2021-10-27T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Laid on the table,2021-03-16T05:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Senate Organization,2021-03-19T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate concurred in,2021-07-01T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-09-28T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-03-02T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-16T05:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2021-03-17T05:00:00+00:00,[],WI,2021 +"Senate Amendment 4 rejected, Ayes 19, Noes 12",2021-09-28T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-10-08T05:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2021-11-11T06:00:00+00:00,['reading-2'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2021-04-14T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 20, Noes 13",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Public hearing held,2021-10-06T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-03-19T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-06-24T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-23T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-05-14T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-02-24T06:00:00+00:00,['amendment-passage'],WI,2021 +Fiscal estimate received,2021-06-29T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read first time and referred to committee on Economic and Workforce Development,2021-11-02T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-27T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-03-19T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-03T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Executive action taken,2022-02-23T06:00:00+00:00,[],WI,2021 +Read first time and referred to calendar of 6-16-2021,2021-06-14T05:00:00+00:00,['reading-1'],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-16T05:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a cosponsor,2021-12-08T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Representative Cabral-Guevara withdrawn as a cosponsor,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2021-10-27T05:00:00+00:00,[],WI,2021 +Decision of the Chair appealed,2021-04-13T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Available for scheduling,2021-06-24T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +"Report concurrence recommended by Committee on Insurance, Licensing and Forestry, Ayes 5, Noes 0",2021-07-30T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Financial Institutions and Revenue,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 61, Noes 33, Paired 2",2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +"Report concurrence recommended by Committee on Environment, Ayes 9, Noes 0",2022-03-10T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Public hearing held,2022-01-11T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 1 to Assembly Substitute Amendment 1 withdrawn and returned to author,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Representative Spreitzer added as a coauthor,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Made a special order of business at 8:11 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Made a special order of business at 8:58 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-03-17T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Read first time and referred to committee on Government Operations, Legal Review and Consumer Protection",2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-14T05:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 3, Noes 2",2022-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 1 offered by Representative Brooks,2022-02-21T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-07-30T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 adopted,2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +"Report concurrence by Committee on Human Services, Children and Families, Ayes 2, Noes 3",2021-10-19T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in as amended,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and passed, Ayes 21, Noes 12",2021-11-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and passed, Ayes 62, Noes 30",2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 3 to Assembly Substitute Amendment 1 adopted,2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and passed, Ayes 57, Noes 37",2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-29T05:00:00+00:00,['receipt'],WI,2021 +"Read first time and referred to committee on Forestry, Parks and Outdoor Recreation",2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Received from Assembly,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 8:12 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 11-8-2021 pursuant to Senate Rule 18(1),2021-11-05T05:00:00+00:00,[],WI,2021 +Read a second time,2021-10-27T05:00:00+00:00,['reading-2'],WI,2021 +Read a third time and concurred in,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Senate Organization,2021-04-14T05:00:00+00:00,['referral-committee'],WI,2021 +"Decision of the Chair upheld, Ayes 59, Noes 35",2022-02-24T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-08T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Representative Skowronski added as a coauthor,2022-02-24T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Petrowski,2021-10-14T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 11, Noes 4",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a third time and passed,2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senator Darling added as a cosponsor,2022-03-08T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 30, Noes 3",2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-17T05:00:00+00:00,[],WI,2021 +Senator Stafsholt added as a coauthor,2022-02-10T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +"Refused to reconsider vote by which Senate Bill 409 passed offered by Senator LeMahieu, Ayes 13, Noes 20",2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2021-04-14T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 8:44 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Read first time and referred to committee on Rules,2021-03-17T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-03-16T05:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-27T05:00:00+00:00,['reading-2'],WI,2021 +"Assembly Substitute Amendment 1 laid on table, Ayes 59, Noes 36",2022-02-24T06:00:00+00:00,['deferral'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-05-11T05:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and concurred in,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Universities and Technical Colleges,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-03-17T05:00:00+00:00,['withdrawal'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Report passage without recommendation, pursuant to Senate Rule 27 (4)(a), by Committee on Health, Ayes 2, Noes 2",2022-02-11T06:00:00+00:00,[],WI,2021 +"Senate Amendment 6 offered by Senators Carpenter, Smith and Ringhand",2021-02-16T06:00:00+00:00,[],WI,2021 +Assembly Amendment 5 to Assembly Substitute Amendment 1 offered by Joint Committee on Finance,2021-02-10T06:00:00+00:00,[],WI,2021 +Representative S. Rodriguez added as a coauthor,2022-02-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +"Read first time and referred to committee on Housing, Commerce and Trade",2021-11-02T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-03-17T05:00:00+00:00,['reading-2'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-11T06:00:00+00:00,[],WI,2021 +Representative Skowronski added as a cosponsor,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-27T05:00:00+00:00,['withdrawal'],WI,2021 +"Assembly Amendment 1 to Assembly Substitute Amendment 1 laid on table, Ayes 58, Noes 32",2022-02-24T06:00:00+00:00,['deferral'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-11-02T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Education,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +Laid on table,2021-06-30T05:00:00+00:00,['deferral'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 8:26 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-11-11T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Received from Senate concurred in,2021-06-23T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-16T05:00:00+00:00,[],WI,2021 +"Representatives Vining, Shelton and Spreitzer added as cosponsors",2022-01-19T06:00:00+00:00,[],WI,2021 +"Point of order that Senate Substitute Amendment 1 was not germane well taken, Ayes 21, Noes 12",2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-10-19T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-03-23T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-27T05:00:00+00:00,['withdrawal'],WI,2021 +Read first time and referred to committee on Financial Institutions and Revenue,2021-05-14T05:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-01-26T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Senate Amendment 1 offered by Senator Roth,2022-01-13T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-17T05:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and concurred in, Ayes 61, Noes 35",2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Macco added as a cosponsor,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Moses added as a cosponsor,2021-09-30T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 1 offered by Representatives Schraa and Born,2022-02-24T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Executive action taken,2022-02-24T06:00:00+00:00,[],WI,2021 +"Representatives Ohnstad, Sinicki and Snodgrass withdrawn as cosponsors",2021-10-14T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +Executive action taken,2022-03-02T06:00:00+00:00,[],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-27T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 to Assembly Amendment 2 adopted,2021-09-28T05:00:00+00:00,['amendment-passage'],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2021-06-09T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Fiscal estimate received,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-03-19T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Education,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Financial Institutions and Revenue,2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Macco added as a cosponsor,2021-05-19T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-06-21T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-18T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read first time and referred to committee on Rules,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Joint Committee on Finance, Ayes 11, Noes 4",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Executive action taken,2022-02-10T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-09-22T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 96, Noes 0",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +"Read a third time and passed, Ayes 57, Noes 37",2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Health, Ayes 5, Noes 0",2021-02-11T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2021-11-11T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Representative Murphy added as a coauthor,2021-11-11T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +"Read a third time and concurred in, Ayes 18, Noes 13",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-27T05:00:00+00:00,['reading-2'],WI,2021 +Made a special order of business at 9:39 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Senate Substitute Amendment 2 offered by Joint Committee on Finance,2021-06-24T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-03-19T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Assembly Substitute Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Read first time and referred to committee on Education,2021-10-08T05:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-03-03T06:00:00+00:00,[],WI,2021 +Withdrawn from committee on Judiciary and Public Safety and rereferred to committee on Senate Organization pursuant to Senate Rule 46(2)(c),2022-03-02T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 63, Noes 35",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Read a third time and concurred in, Ayes 18, Noes 12",2021-06-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Assembly Substitute Amendment 2 offered by Joint Committee on Finance,2021-06-17T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Assembly Amendment 1 offered by Representative Steffen,2022-01-20T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-06-30T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2021-04-14T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-08T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2021-04-14T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a cosponsor,2021-03-19T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-12T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Representative Vruwink added as a cosponsor,2021-02-23T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Representative Bowen added as a cosponsor,2021-09-08T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:30 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-11-11T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Representatives Steffen and Krug added as cosponsors,2021-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-23-2021 pursuant to Senate Rule 18(1),2021-03-19T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-27T05:00:00+00:00,['reading-3'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 243,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Available for scheduling,2022-03-02T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and concurred in, Ayes 59, Noes 35, Paired 4",2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-14T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 246,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Representative Cabrera added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 4, Noes 3",2022-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Read a third time and concurred in, Ayes 59, Noes 35, Paired 4",2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-01-26T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-11-29T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-14T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 240,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 242,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Representative Vining added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Read a third time and passed,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Representatives Steffen and Kurtz added as cosponsors,2021-03-22T05:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Housing, Commerce and Trade",2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 249,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Joint Committee on Finance, Ayes 12, Noes 4",2021-06-25T05:00:00+00:00,['amendment-passage'],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 61, Noes 35, Paired 2",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken by joint survey committee on Tax Exemptions,2021-06-28T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-06-30T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 248,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Made a special order of business at 9:47 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report concurrence as amended recommended by Committee on Health, Ayes 5, Noes 0",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-14T05:00:00+00:00,[],WI,2021 +Read,2021-09-28T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 adopted,2021-09-28T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2021-11-11T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Read a second time,2021-10-27T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-03-17T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2021-12-07T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 offered by Representatives Petersen and Tauchen,2022-02-24T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 238,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +"Report concurrence recommended by Committee on Children and Families, Ayes 8, Noes 4",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Public hearing held,2022-03-02T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +"Report concurrence recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2022-02-24T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Representative Wichgers added as a cosponsor,2021-10-13T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2021-06-21T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 32, Noes 0",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 11, Noes 4",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Executive action taken,2021-10-21T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-03-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Hesselbein added as a coauthor,2021-06-17T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 247,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-10-27T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Senate Amendment 7 offered by Senator Carpenter,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Senate Organization,2022-03-08T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 241,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and concurred in, Ayes 60, Noes 38",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 3-23-2021 by Committee on Rules,2021-03-17T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Sporting Heritage,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 adopted,2021-02-16T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Made a special order of business at 9:08 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 12, Noes 3",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-06-23T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:04 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2021-04-14T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-09T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Housing, Commerce and Trade",2022-01-24T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 1 adopted,2022-02-24T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-03-02T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Representative Murphy added as a coauthor,2021-12-02T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled on 6-24-2021,2021-06-24T05:00:00+00:00,['enrolled'],WI,2021 +Read a third time and concurred in,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-11-05T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-10-27T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Utilities, Technology and Telecommunications",2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Representative Subeck added as a cosponsor,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-03-17T05:00:00+00:00,['reading-3'],WI,2021 +Representative Andraca added as a coauthor,2022-03-02T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2021-04-14T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a third time and concurred in,2021-10-27T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Judiciary,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Public hearing held,2022-02-17T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-17T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Utilities, Technology and Telecommunications, Ayes 5, Noes 0",2021-09-22T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Read a third time and concurred in, Ayes 60, Noes 38",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +"Report Assembly Amendment 4 adoption recommended by Committee on Education, Ayes 12, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Presented to the Governor on 2-10-2022,2022-02-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly concurred in,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Public hearing held,2022-02-10T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Senate Amendment 1 offered by Senator Erpenbach,2022-02-22T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 57, Noes 37",2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Read a third time and concurred in,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-10-19T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-11-08T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Economic and Workforce Development,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Withdrawn from committee on Judiciary and referred to committee on Rules pursuant to Assembly Rule 42 (3)(c),2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 250,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-27T05:00:00+00:00,['reading-3'],WI,2021 +Representative Brostoff added as a cosponsor,2022-03-07T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 245,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 239,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:42 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 11, Noes 4",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2021-04-14T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-11-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Assembly Substitute Amendment 1 adopted,2021-10-26T05:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +"Senate Amendment 1 offered by Senators Pfaff, Larson, Carpenter, Johnson, Agard, Smith, Bewley, Ringhand and Erpenbach",2022-03-08T06:00:00+00:00,[],WI,2021 +Representative Pronschinske added as a cosponsor,2022-01-13T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-19T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Representative Subeck added as a cosponsor,2021-05-10T05:00:00+00:00,[],WI,2021 +Representative Murphy added as a coauthor,2021-11-11T06:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-17T06:00:00+00:00,['withdrawal'],WI,2021 +Report correctly enrolled,2021-02-19T06:00:00+00:00,['enrolled'],WI,2021 +Representative Haywood added as a cosponsor,2022-01-27T06:00:00+00:00,[],WI,2021 +Representative Hesselbein added as a coauthor,2021-03-16T05:00:00+00:00,[],WI,2021 +Made a special order of business at 9:11 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Senator Carpenter added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +"Decision of the Chair upheld, Ayes 54, Noes 37",2021-04-13T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report concurrence recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2022-02-23T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-10-27T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-10-19T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Assembly Amendment 1 offered by Representative August,2021-06-17T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2021-05-28T05:00:00+00:00,[],WI,2021 +Decision of the Chair appealed,2021-03-23T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a third time,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +"Read first time and referred to committee on Sporting Heritage, Small Business and Rural Issues",2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 6, Noes 1",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Allen added as a cosponsor,2021-06-23T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Representative Spiros added as a cosponsor,2021-11-18T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Housing, Commerce and Trade",2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-06-23T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2021-07-30T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-27T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Available for scheduling,2022-02-11T06:00:00+00:00,[],WI,2021 +Representative Born added as a cosponsor,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Referred to committee on Senate Organization,2021-10-25T05:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Senator L. Taylor added as a cosponsor,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and concurred in,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Made a special order of business at 8:09 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +"Senate Amendment 1 rejected, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Natural Resources and Energy,2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 19, Noes 11",2021-06-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2021-03-19T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-04T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Public hearing held,2021-08-18T05:00:00+00:00,[],WI,2021 +Read a third time and passed,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate concurred in,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2021-10-13T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-14T05:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 adopted,2021-06-29T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Murphy added as a coauthor,2021-11-11T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-11-11T06:00:00+00:00,['reading-3'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Report concurrence recommended by Committee on Government Operations, Legal Review and Consumer Protection, Ayes 5, Noes 0",2022-03-02T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly concurred in,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +Read a third time and concurred in,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2022-01-27T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended to withdraw from calendar and take up,2021-03-23T05:00:00+00:00,['withdrawal'],WI,2021 +Senate Amendment 1 offered by Senator Petrowski,2022-01-12T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Representative Doyle added as a coauthor,2022-04-08T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-04-13T05:00:00+00:00,['withdrawal'],WI,2021 +Made a special order of business at 8:19 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Labor and Regulatory Reform, Ayes 3, Noes 2",2022-02-23T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Read a third time and concurred in, Ayes 96, Noes 0",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Senate Organization,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-16T05:00:00+00:00,['withdrawal'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 1 adopted,2021-06-16T05:00:00+00:00,['amendment-passage'],WI,2021 +"Senate Substitute Amendment 1 offered by Senators LeMahieu, Kapenga and Feyen",2021-01-11T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Representative Cabrera added as a cosponsor,2022-01-18T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled on 7-1-2021,2021-07-01T05:00:00+00:00,['enrolled'],WI,2021 +Assembly Amendment 5 adopted,2021-09-28T05:00:00+00:00,['amendment-passage'],WI,2021 +Executive action taken,2021-12-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2021-03-19T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 6-24-2021,2021-06-24T05:00:00+00:00,['enrolled'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-11-02T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 1 offered by Representative Sortwell,2022-02-21T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +"Decision of the Chair upheld, Ayes 59, Noes 36",2021-03-23T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-06-23T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Presented to the Governor on 7-2-2021 by directive of the Speaker,2021-07-02T05:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-03-19T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-29T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-06-23T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 to Assembly Substitute Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and concurred in, Ayes 55, Noes 38, Paired 2",2021-10-27T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Refused to refer to committee on Economic and Workforce Development, Ayes 12, Noes 21",2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-29T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Assembly Substitute Amendment 1 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +"Read a third time and concurred in, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Hesselbein added as a cosponsor,2022-01-25T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 2-10-2022,2022-02-10T06:00:00+00:00,['executive-receipt'],WI,2021 +"Senate Amendment 2 adopted, Ayes 31, Noes 1",2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-01-13T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-10-19T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 2-10-2022,2022-02-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Representative Vining added as a cosponsor,2022-02-22T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-11-02T05:00:00+00:00,[],WI,2021 +Read a second time,2021-11-11T06:00:00+00:00,['reading-2'],WI,2021 +LRB correction,2022-03-02T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-16T05:00:00+00:00,['withdrawal'],WI,2021 +"Report concurrence recommended by Committee on Consumer Protection, Ayes 8, Noes 0",2022-01-20T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +LRB correction,2022-03-02T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Made a special order of business at 8:20 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Representative Schraa added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Andraca added as a cosponsor,2021-06-04T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Carpenter,2022-02-22T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-01-26T06:00:00+00:00,[],WI,2021 +Executive action taken,2021-09-01T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-04T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 2-10-2022,2022-02-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled on 1-27-2022,2022-01-27T06:00:00+00:00,['enrolled'],WI,2021 +"Report concurrence recommended by Committee on Agriculture and Tourism, Ayes 9, Noes 0",2021-10-13T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2021-11-11T06:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-03-02T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-03-24T05:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-03-19T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Agriculture and Tourism,2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2021-06-08T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Transportation,2021-12-06T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Representatives Bowen and Stubbs added as coauthors,2021-03-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Read first time and referred to calendar of 6-16-2021,2021-06-14T05:00:00+00:00,['reading-1'],WI,2021 +Received from Assembly,2021-03-24T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-01-11T06:00:00+00:00,[],WI,2021 +Assembly Amendment 6 offered by Representative Considine,2021-09-28T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 7-2-2021,2021-07-02T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 2-22-2021,2021-02-22T06:00:00+00:00,['executive-receipt'],WI,2021 +"Read a third time and concurred in, Ayes 98, Noes 0",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Amendment 1 offered by Senator L. Taylor,2021-06-23T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and concurred in, Ayes 59, Noes 36, Paired 2",2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 5-11-2021 pursuant to Senate Rule 18(1),2021-05-07T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-10-27T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and concurred in, Ayes 60, Noes 38",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled,2021-03-24T05:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Executive action taken,2022-02-24T06:00:00+00:00,[],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2022-01-20T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Public hearing held,2022-02-09T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-11-08T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +Made a special order of business at 9:45 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-05-11T05:00:00+00:00,['withdrawal'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Spreitzer, Vruwink, Ohnstad, Hebl, Cabrera, Considine, Andraca, Snodgrass, Shelton, Hong, Conley, Brostoff, Subeck, S. Rodriguez, Haywood, Vining, Shankland, Hesselbein, Baldeh, Doyle, B. Meyers, Anderson, Neubauer, Riemer, Pope, Hintz, Ortiz-Velez and Emerson",2022-02-24T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Presented to the Governor on 2-10-2022,2022-02-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +"Report passage as amended, with emergency statement attached, pursuant to s. 16.47 (2), Wisconsin Statutes, recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-02-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 8:08 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +Representatives Subeck and Tittl added as cosponsors,2021-10-27T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-14T05:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Education, Ayes 7, Noes 0",2021-10-21T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-09-24T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-11-11T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2021-04-14T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +"Withdrawn from committee on Housing, Commerce and Trade and rereferred to committee on Senate Organization pursuant to Senate Rule 46(2)(c)",2022-03-04T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 6-9-2021 pursuant to Senate Rule 18(1),2021-06-09T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Dittrich added as a cosponsor,2021-06-09T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Committee on Education, Ayes 12, Noes 0",2022-02-17T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read first time and referred to joint committee on Finance,2021-10-13T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Universities and Technical Colleges,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +"Read first time and referred to committee on Sporting Heritage, Small Business and Rural Issues",2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Representative Schraa added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Representative Milroy added as a coauthor,2022-02-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-02T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2021-10-27T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Steffen added as a coauthor,2022-02-21T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-17T05:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Government Operations, Legal Review and Consumer Protection",2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Presented to the Governor on 7-2-2021,2021-07-02T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-03-24T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +"Assembly Substitute Amendment 1 adopted, Ayes 55, Noes 35",2022-02-24T06:00:00+00:00,['amendment-passage'],WI,2021 +Available for scheduling,2021-09-22T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 11-8-2021 pursuant to Senate Rule 18(1),2021-11-05T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-10-27T05:00:00+00:00,['reading-3'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-26T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-03-17T05:00:00+00:00,[],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 2-16-2021,2021-02-16T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-14T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Representative Steffen added as a cosponsor,2022-02-21T06:00:00+00:00,[],WI,2021 +Representative Milroy added as a coauthor,2022-02-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from Senate message and take up,2021-09-28T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-27T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-17T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-25T06:00:00+00:00,['withdrawal'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Presented to the Governor on 2-10-2022,2022-02-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Representative Steffen added as a cosponsor,2021-03-19T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Feyen,2022-01-10T06:00:00+00:00,[],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +Fiscal estimate received,2021-11-01T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 3 adopted,2021-09-28T05:00:00+00:00,['amendment-passage'],WI,2021 +Received from Senate,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to calendar of 10-27-2021 pursuant to Assembly Rule 45 (1),2021-10-25T05:00:00+00:00,['reading-1'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly concurred in,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-03-17T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a coauthor,2022-01-24T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and concurred in, Ayes 32, Noes 0",2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and concurred in, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 2-11-2022. 2021 Wisconsin Act 136,2022-02-11T06:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and concurred in, Ayes 60, Noes 38",2021-11-11T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Available for scheduling,2021-02-11T06:00:00+00:00,[],WI,2021 +Representative Shankland added as a cosponsor,2021-03-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-03-23T05:00:00+00:00,['withdrawal'],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 11",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report concurrence recommended by Committee on Education, Ayes 4, Noes 3",2021-11-29T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-05-11T05:00:00+00:00,['withdrawal'],WI,2021 +Representative Armstrong withdrawn as a cosponsor,2022-02-24T06:00:00+00:00,['withdrawal'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Made a special order of business at 9:07 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Representative Drake added as a coauthor,2021-03-23T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Available for scheduling,2022-03-03T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Received from Senate concurred in,2021-06-23T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2021-07-01T05:00:00+00:00,['receipt'],WI,2021 +Made a special order of business at 8:53 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:12 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Report of Joint Survey Committee on Tax Exemptions received,2021-06-28T05:00:00+00:00,['receipt'],WI,2021 +Senate Substitute Amendment 1 adopted,2022-01-25T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +"Report adoption of Senate Substitute Amendment 2 recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-06-25T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Shelton added as a cosponsor,2021-10-14T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report concurrence recommended by Committee on Health, Ayes 15, Noes 0",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-27T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2022-02-24T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and concurred in, Ayes 59, Noes 35, Paired 2",2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Assembly Substitute Amendment 2 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Committee on Regulatory Licensing Reform, Ayes 6, Noes 3",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-11-02T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +"Senate Amendment 1 offered by Senators Larson, Johnson, Agard, Smith, Bewley, Ringhand, Erpenbach, Wirch and Pfaff",2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 59, Noes 34",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled on 7-1-2021,2021-07-01T05:00:00+00:00,['enrolled'],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-06-25T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +LRB correction,2022-01-28T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Senate Organization,2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Deposited in the office of the Secretary of State on 4-15-2022,2022-04-15T05:00:00+00:00,[],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-16-2021 pursuant to Senate Rule 18(1),2021-02-12T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 6-24-2021,2021-06-24T05:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Made a special order of business at 8:17 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +"Report Assembly Substitute Amendment 2 adoption recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-06-28T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-11-29T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and concurred in, Ayes 55, Noes 38, Paired 2",2021-10-27T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +"Report concurrence as amended recommended by Committee on Regulatory Licensing Reform, Ayes 6, Noes 3",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-17T06:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2021-11-11T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2021-11-02T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2021-06-17T05:00:00+00:00,['receipt'],WI,2021 +Representative S. Rodriguez added as a cosponsor,2021-04-08T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2022-02-24T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 244,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Read a third time and passed,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +"Report concurrence recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2021-04-14T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-01-18T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 5-14-2021,2021-05-14T05:00:00+00:00,['enrolled'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Report approved by the Governor on 2-11-2022. 2021 Wisconsin Act 137,2022-02-11T06:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 2-1-2022 by directive of the Majority Leader,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Assembly Substitute Amendment 1 adopted,2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 2-11-2022. 2021 Wisconsin Act 133,2022-02-11T06:00:00+00:00,['executive-signature'],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 105,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Read a second time,2021-11-08T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-25T06:00:00+00:00,['withdrawal'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-11-11T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-14T05:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and concurred in, Ayes 55, Noes 39, Paired 2",2021-10-27T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Read,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 9-28-2021 pursuant to Senate Rule 18(1),2021-09-24T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-02-11T06:00:00+00:00,['referral-committee'],WI,2021 +LRB correction,2021-11-02T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2021-10-21T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Rules,2021-06-15T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 1 offered by Representative Kurtz,2021-10-14T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-02T06:00:00+00:00,[],WI,2021 +LRB correction,2021-05-18T05:00:00+00:00,[],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 6-9-2021,2021-06-09T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar of 10-27-2021 and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Rules suspended,2021-03-17T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +LRB correction,2021-05-18T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Labor and Regulatory Reform,2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-10-27T05:00:00+00:00,[],WI,2021 +"Withdrawn from committee on Sporting Heritage, Small Business and Rural Issues and rereferred to committee on Senate Organization pursuant to Senate Rule 46(2)(c)",2022-03-01T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Representative Edming added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Received from Senate concurred in,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 7-6-2021,2021-07-06T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 5-20-2021,2021-05-20T05:00:00+00:00,['executive-receipt'],WI,2021 +Rules suspended,2021-10-27T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 59, Noes 36, Paired 2",2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Hesselbein added as a coauthor,2021-06-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 3-30-2022,2022-03-30T05:00:00+00:00,['executive-receipt'],WI,2021 +"Read a third time and concurred in, Ayes 96, Noes 0",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Milroy added as a coauthor,2022-02-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-27T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and concurred in, Ayes 26, Noes 7",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Published 2-12-2022,2022-02-11T06:00:00+00:00,['became-law'],WI,2021 +Read a third time and concurred in,2021-03-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Amendment 1 adopted,2021-10-20T05:00:00+00:00,['amendment-passage'],WI,2021 +"Read a third time and concurred in, Ayes 21, Noes 12",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Assembly Amendment 1 offered by Representatives Riemer, S. Rodriguez, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-03-23T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Representative Skowronski added as a cosponsor,2022-02-23T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 92, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2021-02-19T06:00:00+00:00,['enrolled'],WI,2021 +Report vetoed by the Governor on 7-8-2021,2021-07-08T05:00:00+00:00,['executive-veto'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-03-25T05:00:00+00:00,['enrolled'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Milroy added as a cosponsor,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +Report correctly enrolled,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2021-03-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +"Report concurrence recommended by Committee on Universities and Technical Colleges, Ayes 5, Noes 4",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 161,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 55, Noes 39, Paired 2",2021-10-27T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Assembly Substitute Amendment 1 laid on table, Ayes 58, Noes 32",2022-02-24T06:00:00+00:00,['deferral'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Concurred in,2022-02-24T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Senate Amendment 1 offered by Senator Carpenter,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-10-20T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Report concurrence recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2022-02-24T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and concurred in, Ayes 60, Noes 35",2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Read first time and referred to committee on Economic and Workforce Development,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and concurred in, Ayes 56, Noes 38, Paired 4",2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Made a special order of business at 8:03 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-11-09T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2021-04-14T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +"Senate Amendment 1 rejected, Ayes 20, Noes 12",2022-03-08T06:00:00+00:00,[],WI,2021 +"Read first time and referred to committee on Elections, Election Process Reform and Ethics",2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +"Senate Amendment 1 rejected, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 3-24-2021 by directive of the Majority Leader,2021-03-24T05:00:00+00:00,['executive-receipt'],WI,2021 +"Read a third time and passed, Ayes 95, Noes 0",2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-11-08T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-01-21T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-25T06:00:00+00:00,['withdrawal'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 1 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and passed, Ayes 30, Noes 1",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-01-21T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +"Report concurrence recommended by Committee on Natural Resources and Energy, Ayes 3, Noes 2",2021-09-02T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Report adoption of Senate Amendment 1 recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2022-01-14T06:00:00+00:00,['amendment-passage'],WI,2021 +"Assembly Amendment 6 laid on table, Ayes 60, Noes 38",2021-09-28T05:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Executive action taken,2021-01-11T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 7-8-2021. 2021 Wisconsin Act 62,2021-07-08T05:00:00+00:00,['executive-signature'],WI,2021 +Representative S. Rodriguez added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 2-25-2021. 2021 Wisconsin Act 5,2021-02-26T06:00:00+00:00,['executive-signature'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Deposited in the office of the Secretary of State on 3-22-2022,2022-03-22T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Referred to joint committee on Finance,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Presented to the Governor on 5-20-2021,2021-05-20T05:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 2-11-2022. 2021 Wisconsin Act 134,2022-02-11T06:00:00+00:00,['executive-signature'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 11",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Representative Ramthun added as a cosponsor,2021-06-15T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-24-2021 by directive of the Majority Leader,2021-03-24T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 3-23-2021 pursuant to Senate Rule 18(1),2021-03-19T05:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 offered by Representatives B. Meyers, Doyle, Shankland, Vining, S. Rodriguez, Andraca, Cabrera, Baldeh, Spreitzer, Conley, Considine, Emerson, Subeck, Hebl, Hintz, Hesselbein, Snodgrass, Ohnstad, Anderson, Drake, Vruwink, Billings, Goyke, Bowen, Stubbs, McGuire, Neubauer, Hong, Pope, Ortiz-Velez, Brostoff, Shelton, Riemer, Moore Omokunde, L. Myers, Haywood and Milroy",2021-03-23T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Representative Brostoff added as a cosponsor,2022-03-08T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Representative Milroy added as a coauthor,2022-02-25T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2021-06-23T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Senate Amendment 2 offered by Senator L. Taylor,2021-06-23T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-29T05:00:00+00:00,[],WI,2021 +Representative Cabrera added as a cosponsor,2022-02-22T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +Representative Milroy added as a coauthor,2022-02-25T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Available for scheduling,2021-10-13T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-16-2021 by Committee on Rules,2021-06-09T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-03-24T05:00:00+00:00,['referral-committee'],WI,2021 +Referred to committee on Rules,2022-01-20T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-11-11T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +LRB correction,2021-11-02T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 12",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Representative Tittl added as a cosponsor,2021-10-27T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 2-10-2022,2022-02-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 3-23-2021 pursuant to Senate Rule 18(1),2021-03-19T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:09 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 59, Noes 36, Paired 4",2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Representative Steffen added as a cosponsor,2021-06-17T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-11-11T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken,2022-01-27T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Read first time and referred to committee on Housing, Commerce and Trade",2022-03-09T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 7-8-2021. 2021 Wisconsin Act 59,2021-07-08T05:00:00+00:00,['executive-signature'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-22T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-06-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +"Concurred in, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and concurred in, Ayes 60, Noes 36, Paired 2",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senator Wanggaard added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Report approved by the Governor on 2-11-2022. 2021 Wisconsin Act 138,2022-02-11T06:00:00+00:00,['executive-signature'],WI,2021 +Read a third time and concurred in,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +LRB correction,2022-01-28T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 withdrawn and returned to author,2021-06-23T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in as amended,2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Representative Cabrera added as a cosponsor,2021-06-21T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-03-24T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 2-11-2022. 2021 Wisconsin Act 135,2022-02-11T06:00:00+00:00,['executive-signature'],WI,2021 +"Read a third time and passed, Ayes 20, Noes 12",2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Received from Senate concurred in,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-03-24T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly concurred in,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 58, Noes 35, Paired 2",2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-11-11T06:00:00+00:00,[],WI,2021 +Representatives Steffen and Skowronski added as cosponsors,2022-02-24T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Read a third time and concurred in,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-26-2021. 2021 Wisconsin Act 15,2021-03-29T05:00:00+00:00,['executive-signature'],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +"Refused to refer to committee on Ways and Means, Ayes 38, Noes 60",2021-06-29T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +Received from Senate concurred in,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Published 2-12-2022,2022-02-11T06:00:00+00:00,['became-law'],WI,2021 +LRB correction,2021-05-18T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Made a special order of business at 8:43 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +"Report concurrence as amended recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2022-01-14T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Representative Born added as a coauthor,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 2-26-2021,2021-02-26T06:00:00+00:00,['became-law'],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Senate Organization, Ayes 3, Noes 2",2021-01-11T06:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 7-9-2021,2021-07-08T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled,2021-03-25T05:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Read a third time and concurred in,2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 23, Noes 10",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate concurred in,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Senate Amendment 3 offered by Senator L. Taylor,2021-06-23T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 7-6-2021,2021-07-06T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled,2021-02-19T06:00:00+00:00,['enrolled'],WI,2021 +Available for scheduling,2021-03-24T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Representative Brostoff withdrawn as a cosponsor,2021-06-21T05:00:00+00:00,['withdrawal'],WI,2021 +Senate Substitute Amendment 2 withdrawn and returned to author,2021-06-23T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-03-25T05:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and concurred in, Ayes 94, Noes 0",2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2021-03-24T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Published 2-12-2022,2022-02-11T06:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-03-16T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Report approved by the Governor on 3-4-2022. 2021 Wisconsin Act 146,2022-03-07T06:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-23-2021 pursuant to Senate Rule 18(1),2021-06-22T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +"Report concurrence recommended by Committee on Transportation, Ayes 12, Noes 0",2022-02-01T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Report approved by the Governor on 2-11-2022. 2021 Wisconsin Act 139,2022-02-11T06:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-11-11T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-10-11T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-06-17T05:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Read first time and referred to committee on Financial Institutions and Revenue,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Senate Substitute Amendment 1 offered by Senator Pfaff,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representatives Vining and Subeck added as cosponsors,2021-06-15T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-27T05:00:00+00:00,[],WI,2021 +Available for scheduling,2021-03-24T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Point of order that Assembly Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2021-03-23T05:00:00+00:00,[],WI,2021 +Representative Wittke withdrawn as a cosponsor,2021-06-15T05:00:00+00:00,['withdrawal'],WI,2021 +Presented to the Governor on 3-28-2022,2022-03-28T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 11-4-2021,2021-11-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Senate Amendment 1 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +Withdrawn from joint committee on Finance and taken up,2022-02-23T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 5-21-2021. 2021 Wisconsin Act 37,2021-05-24T05:00:00+00:00,['executive-signature'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2021-09-02T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 5-20-2021,2021-05-20T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 7-9-2021,2021-07-08T05:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Senator Carpenter added as a cosponsor,2021-03-23T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled on 6-24-2021,2021-06-24T05:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 12",2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Amendment 1 offered by Senators Stroebel and Kapenga,2021-03-23T05:00:00+00:00,[],WI,2021 +Published 2-12-2022,2022-02-11T06:00:00+00:00,['became-law'],WI,2021 +Read a third time and passed,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Not published. Enrolled Joint Resolution 9,2022-06-16T05:00:00+00:00,[],WI,2021 +Representative Steffen added as a cosponsor,2022-02-24T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Placed on calendar 10-20-2021 pursuant to Senate Rule 18(1),2021-10-19T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 11-11-2021 by Committee on Rules,2021-11-09T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Assembly Amendment 1 concurred in,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 170,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 19, Noes 14",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Representatives Steffen and Skowronski added as cosponsors,2022-02-24T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-05-11T05:00:00+00:00,['reading-2'],WI,2021 +Assembly Amendment 1 adopted,2022-02-24T06:00:00+00:00,['amendment-passage'],WI,2021 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 7-6-2021,2021-07-06T05:00:00+00:00,['executive-receipt'],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Representative Macco added as a cosponsor,2021-10-27T05:00:00+00:00,[],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2021-04-14T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-14T05:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 19, Noes 12",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 95, Noes 0",2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken,2022-02-24T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-4-2022. 2021 Wisconsin Act 147,2022-03-07T06:00:00+00:00,['executive-signature'],WI,2021 +"Read a third time and concurred in, Ayes 18, Noes 13",2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-11-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 3-26-2021. 2021 Wisconsin Act 14,2021-03-29T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a cosponsor,2022-02-24T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Read a third time and concurred in,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +"Report adoption of Senate Amendment 2 recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-10-20T05:00:00+00:00,['amendment-passage'],WI,2021 +"Read a third time and passed, Ayes 30, Noes 2",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 7-6-2021,2021-07-06T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Report approved by the Governor on 3-17-2022. 2021 Wisconsin Act 191,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 10-4-2021,2021-10-04T05:00:00+00:00,['enrolled'],WI,2021 +"Report adoption of Senate Substitute Amendment 1 recommended by Committee on Housing, Commerce and Trade, Ayes 3, Noes 2",2022-02-09T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a third time and concurred in,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and concurred in, Ayes 28, Noes 2",2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 173,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-03-24T05:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-10-27T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Representatives Steffen and Skowronski added as cosponsors,2022-02-24T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from Senate message and take up,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-22-2021 by Committee on Rules,2021-06-16T05:00:00+00:00,[],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-14T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 2-16-2021 by Committee on Rules,2021-02-11T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-09T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly concurred in,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Report approved by the Governor on 3-31-2022. 2021 Wisconsin Act 215,2022-03-31T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-11-08T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-03-17T05:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 57, Noes 37, Paired 2",2021-10-27T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-4-2022. 2021 Wisconsin Act 153,2022-03-07T06:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-17-2022. 2021 Wisconsin Act 190,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-25-2021,2021-03-25T05:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +LRB correction (Senate Amendment 1),2021-06-28T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 2-4-2022. 2021 Wisconsin Act 129,2022-02-07T06:00:00+00:00,['executive-signature'],WI,2021 +Read a third time and concurred in,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2021-03-17T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 19, Noes 11",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and concurred in, Ayes 31, Noes 0",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2021-10-27T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 5-21-2021. 2021 Wisconsin Act 36,2021-05-24T05:00:00+00:00,['executive-signature'],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives McGuire, Spreitzer, Andraca, Emerson, Conley, Vining, Ohnstad and Bowen",2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 2-22-2022 by Committee on Rules,2022-02-17T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 5, Noes 2",2022-03-02T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Read a third time and concurred in,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 2-12-2022,2022-02-11T06:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +LRB correction,2022-03-02T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Received from Senate concurred in,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +LRB correction,2022-02-03T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Read a third time and concurred in,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Representative Hesselbein added as a cosponsor,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-01T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Representative Steffen added as a cosponsor,2021-06-11T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 5-20-2021,2021-05-20T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Received from Senate concurred in,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and concurred in as amended, Ayes 90, Noes 0",2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 2-22-2021,2021-02-22T06:00:00+00:00,['executive-receipt'],WI,2021 +"Read a third time and passed, Ayes 31, Noes 1",2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Report concurrence recommended by Committee on Sporting Heritage, Ayes 9, Noes 4",2022-01-18T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Presented to the Governor on 8-5-2021,2021-08-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a third time and concurred in,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and concurred in, Ayes 61, Noes 35",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Published 2-12-2022,2022-02-11T06:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Laid on table,2021-02-16T06:00:00+00:00,['deferral'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Received from Senate concurred in,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Executive action taken,2021-10-19T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-03-10T06:00:00+00:00,['referral-committee'],WI,2021 +Presented to the Governor on 5-20-2021,2021-05-20T05:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 7-8-2021. 2021 Wisconsin Act 65,2021-07-09T05:00:00+00:00,['executive-signature'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Senate Amendment 1 rejected, Ayes 20, Noes 11",2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-11T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 172,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-22T06:00:00+00:00,['withdrawal'],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Presented to the Governor on 7-2-2021 by directive of the Speaker,2021-07-02T05:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Received from Assembly concurred in,2021-11-12T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and concurred in, Ayes 58, Noes 35, Paired 2",2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and concurred in, Ayes 60, Noes 38",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-10-27T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Representatives Milroy and Shelton added as coauthors,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 177,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Available for scheduling,2021-06-25T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-4-2022. 2021 Wisconsin Act 148,2022-03-07T06:00:00+00:00,['executive-signature'],WI,2021 +Assembly Amendment 1 withdrawn and returned to author,2022-02-23T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-11-09T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 12",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Available for scheduling,2021-06-24T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-01-21T06:00:00+00:00,[],WI,2021 +"Report passage as amended recommended by Joint Committee on Finance, Ayes 11, Noes 4",2021-06-28T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-02-24T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2021-04-08T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly concurred in,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 1 offered by Representative Kuglitsch,2022-02-24T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-06-17T05:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Published 6-16-2022. Enrolled Joint Resolution 13,2022-06-17T05:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 7-8-2021,2021-07-08T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and concurred in, Ayes 18, Noes 13",2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Amendment 2 offered by Representative Spiros,2022-02-23T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Report vetoed by the Governor on 7-8-2021,2021-07-08T05:00:00+00:00,['executive-veto'],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 11",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +LRB correction,2022-03-02T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Assembly Amendment 1 adopted,2022-02-24T06:00:00+00:00,['amendment-passage'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +"Assembly Amendment 1 offered by Representatives Petersen, Cabral-Guevara and Sanfelippo",2022-02-17T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +"Assembly Amendment 1 offered by Representatives Spreitzer, Hebl, Emerson, Billings, Baldeh, Ohnstad, Neubauer, Conley, Andraca, Brostoff, Anderson, Haywood, Vining, Considine, McGuire, Pope, Doyle, Hong, Drake, Snodgrass and Hintz",2022-02-24T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 3-18-2022. 2021 Wisconsin Act 205,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Read a second time,2021-11-11T06:00:00+00:00,['reading-2'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 3-5-2022,2022-03-07T06:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Executive action taken by joint survey committee on Tax Exemptions,2021-06-28T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 2-1-2022 by directive of the Majority Leader,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-29T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +"Concurred in as amended, Ayes 60, Noes 36, Paired 2",2022-02-23T06:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 7-9-2021,2021-07-09T05:00:00+00:00,['executive-veto'],WI,2021 +Referred to calendar of 6-29-2021 pursuant to Assembly Rule 93,2021-06-28T05:00:00+00:00,['referral'],WI,2021 +Report approved by the Governor on 3-18-2022. 2021 Wisconsin Act 198,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled,2021-11-15T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-01-26T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 11",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 6-22-2021,2021-06-22T05:00:00+00:00,['executive-receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 18, Noes 13",2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and passed,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 4-13-2021 by Committee on Rules,2021-04-08T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 adopted,2021-02-16T06:00:00+00:00,['amendment-passage'],WI,2021 +Received from Assembly concurred in,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-5-2022 by directive of the Majority Leader,2022-04-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 19, Noes 12",2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 5-20-2021,2021-05-20T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled on 2-18-2021,2021-02-18T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 11-2-2021,2021-11-02T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Representative Anderson added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-16T05:00:00+00:00,['withdrawal'],WI,2021 +Ordered to a third reading,2021-06-09T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-22T05:00:00+00:00,['withdrawal'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Report approved by the Governor on 5-21-2021. 2021 Wisconsin Act 41,2021-05-21T05:00:00+00:00,['executive-signature'],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and passed, Ayes 60, Noes 38",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Published 3-18-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Read a third time and concurred in,2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 160,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Published 7-9-2021,2021-07-09T05:00:00+00:00,['became-law'],WI,2021 +"Report concurrence as amended recommended by Committee on Housing, Commerce and Trade, Ayes 3, Noes 2",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 7-8-2021. 2021 Wisconsin Act 71,2021-07-09T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly concurred in,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-26-2021. 2021 Wisconsin Act 19,2021-03-29T05:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +"Read a third time and concurred in as amended, Ayes 55, Noes 35, Paired 2",2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 5-21-2021,2021-05-24T05:00:00+00:00,['executive-veto'],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Representative Tittl added as a cosponsor,2021-10-27T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Available for scheduling,2022-03-02T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-11-11T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 5-22-2021,2021-05-24T05:00:00+00:00,['became-law'],WI,2021 +Received from Assembly concurred in,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Published 3-5-2022,2022-03-07T06:00:00+00:00,['became-law'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Published 2-5-2022,2022-02-07T06:00:00+00:00,['became-law'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 169,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Published 3-18-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled on 2-25-2022,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Representative Penterman added as a cosponsor,2021-10-21T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 6-11-2021 by directive of the Majority Leader,2021-06-11T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 3-25-2021,2021-03-25T05:00:00+00:00,['executive-receipt'],WI,2021 +Referred to joint committee on Finance,2022-01-25T06:00:00+00:00,['referral-committee'],WI,2021 +Report correctly enrolled on 1-31-2022,2022-01-31T06:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 13",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-11-08T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 8-6-2021. 2021 Wisconsin Act 78,2021-08-09T05:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 2-21-2022,2022-02-21T06:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 5-20-2021,2021-05-20T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Representatives Bowen, Stubbs and Subeck added as cosponsors",2021-10-27T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +"Assembly Substitute Amendment 1 laid on table, Ayes 59, Noes 38",2021-06-22T05:00:00+00:00,['deferral'],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 110,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Representative Skowronski added as a cosponsor,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Bowen added as a cosponsor,2021-03-16T05:00:00+00:00,[],WI,2021 +Published 4-1-2022,2022-03-31T05:00:00+00:00,['became-law'],WI,2021 +Assembly Amendment 6 to Assembly Substitute Amendment 1 offered by Representative Wittke,2021-02-15T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Senator Carpenter added as a coauthor,2021-02-16T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-18T06:00:00+00:00,['referral-committee'],WI,2021 +Report approved by the Governor on 2-25-2021. 2021 Wisconsin Act 6,2021-02-26T06:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly concurred in,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +LRB correction,2021-05-18T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 100,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Representative Allen added as a cosponsor,2022-02-24T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 8-5-2021,2021-08-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 3-27-2021,2021-03-29T05:00:00+00:00,['became-law'],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +Published 3-5-2022,2022-03-07T06:00:00+00:00,['became-law'],WI,2021 +Available for scheduling,2021-06-24T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Action ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 4-15-2022. 2021 Wisconsin Act 259,2022-04-15T05:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-14T05:00:00+00:00,[],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +"Report concurrence recommended by Committee on Economic and Workforce Development, Ayes 3, Noes 2",2022-02-24T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-18-2022. 2021 Wisconsin Act 204,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Assembly Amendment 1 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-01-21T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 3-4-2022. 2021 Wisconsin Act 143,2022-03-07T06:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +"Report concurrence as amended recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2021-10-20T05:00:00+00:00,['committee-passage-favorable'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-11-11T06:00:00+00:00,['withdrawal'],WI,2021 +Received from Assembly concurred in,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +"Senate Amendment 1 laid on table, Ayes 22, Noes 11",2021-05-11T05:00:00+00:00,['deferral'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 3-16-2022. 2021 Wisconsin Act 179,2022-03-16T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 7-8-2021. 2021 Wisconsin Act 69,2021-07-09T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +LRB correction (Senate Amendment 1),2021-06-28T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-27T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-11-08T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +LRB correction,2022-03-02T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Received from Senate concurred in,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Available for scheduling,2022-01-14T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 rejected,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-11-12T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate concurred in,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 11-5-2021. 2021 Wisconsin Act 90,2021-11-05T05:00:00+00:00,['executive-signature'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and passed, Ayes 64, Noes 34",2021-06-29T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Assembly Substitute Amendment 1 offered by Representative Wittke,2021-10-29T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 7-23-2021,2021-07-23T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +LRB correction,2022-03-02T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 59, Noes 36, Paired 2",2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-25T06:00:00+00:00,['withdrawal'],WI,2021 +Report approved by the Governor on 7-8-2021. 2021 Wisconsin Act 70,2021-07-09T05:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 2-1-2022 by directive of the Majority Leader,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +Decision of the Chair appealed,2021-03-23T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 168,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Published 3-27-2021,2021-03-29T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 2-24-2021,2021-02-24T06:00:00+00:00,['executive-receipt'],WI,2021 +Received from Senate concurred in,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 2-1-2022 by directive of the Majority Leader,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 6-24-2021 by directive of the Speaker,2021-06-24T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 18, Noes 13",2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended and taken up,2021-03-23T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-06-16T05:00:00+00:00,['withdrawal'],WI,2021 +Received from Senate,2021-10-25T05:00:00+00:00,['receipt'],WI,2021 +LRB correction,2021-05-13T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Read a third time and concurred in,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-07-13T05:00:00+00:00,['receipt'],WI,2021 +"Senate Amendment 1 offered by Senators Pfaff, Carpenter, Smith and Ringhand",2022-03-08T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-28-2022 by directive of the Majority Leader,2022-03-28T05:00:00+00:00,['executive-receipt'],WI,2021 +"Read a third time and passed, Ayes 94, Noes 1",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 3-25-2021,2021-03-25T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2021-10-20T05:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2021-03-16T05:00:00+00:00,['referral-committee'],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +"Read a third time and passed, Ayes 32, Noes 1",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Senate Amendment 1 offered by Senator Erpenbach,2022-03-08T06:00:00+00:00,[],WI,2021 +Published 3-5-2022,2022-03-07T06:00:00+00:00,['became-law'],WI,2021 +"Read a third time and concurred in, Ayes 94, Noes 0",2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate concurred in,2021-06-23T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2022-02-24T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Read a second time,2021-06-23T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Representative S. Rodriguez added as a coauthor,2021-03-18T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 59, Noes 34",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 12",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Published 2-12-2022,2022-02-11T06:00:00+00:00,['became-law'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Report approved by the Governor on 5-21-2021. 2021 Wisconsin Act 33,2021-05-24T05:00:00+00:00,['executive-signature'],WI,2021 +Report approved by the Governor on 4-15-2022. 2021 Wisconsin Act 260,2022-04-15T05:00:00+00:00,['executive-signature'],WI,2021 +"Report concurrence as amended recommended by Committee on Senate Organization, Ayes 3, Noes 2",2021-01-11T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly concurred in,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 3-25-2021,2021-03-25T05:00:00+00:00,['executive-receipt'],WI,2021 +Read first time and referred to committee on Judiciary and Public Safety,2021-08-05T05:00:00+00:00,['referral-committee'],WI,2021 +Assembly Amendment 1 adopted,2022-01-20T06:00:00+00:00,['amendment-passage'],WI,2021 +Report correctly enrolled,2021-03-25T05:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-23T05:00:00+00:00,['reading-2'],WI,2021 +Read a third time and concurred in,2021-11-11T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Substitute Amendment 3 adopted,2021-06-23T05:00:00+00:00,['amendment-passage'],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Published 5-22-2021,2021-05-24T05:00:00+00:00,['became-law'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and passed, Ayes 60, Noes 33, Paired 2",2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled on 5-18-2021,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 3-29-2022. 2021 Wisconsin Act 211,2022-03-30T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-10-20T05:00:00+00:00,['reading-3'],WI,2021 +Read first time and referred to calendar of 10-27-2021 pursuant to Assembly Rule 45 (1),2021-10-25T05:00:00+00:00,['reading-1'],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Representative S. Rodriguez added as a cosponsor,2021-03-01T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 3-25-2021,2021-03-25T05:00:00+00:00,['executive-receipt'],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 11",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2021-06-23T05:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled on 5-13-2021,2021-05-13T05:00:00+00:00,['enrolled'],WI,2021 +Assembly Amendment 1 offered by Representative Steineke,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 18, Noes 14",2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 3-26-2021. 2021 Wisconsin Act 20,2021-03-29T05:00:00+00:00,['executive-signature'],WI,2021 +Published 5-22-2021,2021-05-24T05:00:00+00:00,['became-law'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +LRB correction (Senate Substitute Amendment 1),2022-03-02T06:00:00+00:00,[],WI,2021 +"Senate Amendment 1 rejected, Ayes 19, Noes 11",2021-06-23T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in as amended,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-03-16T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 2-4-2022. 2021 Wisconsin Act 124,2022-02-07T06:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled on 6-24-2021,2021-06-24T05:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2021-06-23T05:00:00+00:00,['reading-3'],WI,2021 +Received from Assembly concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Representative James added as a cosponsor,2022-02-07T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Published 4-16-2022,2022-04-15T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 7-27-2021. 2021 Wisconsin Act 74,2021-07-27T05:00:00+00:00,['executive-signature'],WI,2021 +Representative Kitchens added as a cosponsor,2021-11-11T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 2-25-2022,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-06-29T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +"Senate Substitute Amendment 1 rejected, Ayes 20, Noes 12",2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-25-2022 by Committee on Rules,2022-01-20T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 12",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled on 3-2-2022,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Read a third time and concurred in,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 2-4-2022. 2021 Wisconsin Act 128,2022-02-07T06:00:00+00:00,['executive-signature'],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 96,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 6-30-2021. 2021 Wisconsin Act 57,2021-06-30T05:00:00+00:00,['executive-signature'],WI,2021 +"Report concurrence recommended by Committee on Financial Institutions and Revenue, Ayes 5, Noes 0",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Assembly concurred in,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 5-20-2021,2021-05-20T05:00:00+00:00,['executive-receipt'],WI,2021 +Senate Amendment 2 offered by Senator Carpenter,2022-03-08T06:00:00+00:00,[],WI,2021 +LRB correction,2021-11-15T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +"Read a third time and concurred in as amended, Ayes 60, Noes 38",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Read a second time,2021-03-23T05:00:00+00:00,['reading-2'],WI,2021 +Report approved by the Governor on 4-15-2022. 2021 Wisconsin Act 267,2022-04-15T05:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 5-20-2021,2021-05-20T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +"Representatives August, Petryk, Vorpagel and Loudenbeck added as cosponsors",2021-04-13T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 5-13-2021,2021-05-13T05:00:00+00:00,['enrolled'],WI,2021 +"Decision of the Chair upheld, Ayes 58, Noes 35",2021-03-23T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Representative Rozar withdrawn as a cosponsor,2021-11-01T05:00:00+00:00,['withdrawal'],WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 176,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Published 11-6-2021,2021-11-05T05:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 4-15-2022. 2021 Wisconsin Act 257,2022-04-15T05:00:00+00:00,['executive-signature'],WI,2021 +Read,2021-09-28T05:00:00+00:00,[],WI,2021 +Read,2021-09-28T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-06-17T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-28T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Read a third time and concurred in,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 7-6-2021,2021-07-06T05:00:00+00:00,['executive-receipt'],WI,2021 +Available for scheduling,2021-01-11T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 3-26-2021. 2021 Wisconsin Act 12,2021-03-29T05:00:00+00:00,['executive-signature'],WI,2021 +Read a third time and concurred in,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 166,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Representatives Steffen and Skowronski added as cosponsors,2022-02-24T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +LRB correction (Senate Substitute Amendment 1),2022-03-02T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Recalled from Senate pursuant to Assembly Joint Resolution 119,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Published 3-30-2022,2022-03-30T05:00:00+00:00,['became-law'],WI,2021 +Received from Assembly concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled on 3-23-2021,2021-03-23T05:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 3-31-2022,2022-03-31T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 7-6-2021,2021-07-06T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 10-4-2021,2021-10-04T05:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and passed, Ayes 61, Noes 37",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 7-9-2021,2021-07-09T05:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 102,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 4-15-2022. 2021 Wisconsin Act 266,2022-04-15T05:00:00+00:00,['executive-signature'],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 12",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2021-10-20T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2021-11-02T05:00:00+00:00,['referral-committee'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Representative Penterman added as a coauthor,2022-01-26T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Published 7-9-2021,2021-07-09T05:00:00+00:00,['became-law'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +LRB correction (Senate Amendment 2),2022-03-02T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Published 3-19-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Published 4-16-2022,2022-04-15T05:00:00+00:00,['became-law'],WI,2021 +Published 3-17-2022,2022-03-16T05:00:00+00:00,['became-law'],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Read a third time and concurred in,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2021-05-11T05:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and concurred in, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Published 3-5-2022,2022-03-07T06:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +"Read a third time and concurred in, Ayes 58, Noes 32, Paired 4",2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Received from Senate concurred in,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a second time,2021-11-11T06:00:00+00:00,['reading-2'],WI,2021 +Report approved by the Governor on 5-21-2021. 2021 Wisconsin Act 34,2021-05-24T05:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Withdrawn from joint committee on Finance and taken up,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-16T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 19, Noes 12",2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-06-09T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-26-2021. 2021 Wisconsin Act 18,2021-03-29T05:00:00+00:00,['executive-signature'],WI,2021 +"Report Assembly Amendment 1 adoption recommended by Joint Committee on Finance, Ayes 15, Noes 0",2021-12-07T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-01-21T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Assembly Amendment 4 adopted,2022-02-22T06:00:00+00:00,['amendment-passage'],WI,2021 +"Read a third time and concurred in, Ayes 60, Noes 38",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Published 5-22-2021,2021-05-21T05:00:00+00:00,['became-law'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 55, Noes 39, Paired 2",2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Read a third time and concurred in,2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Placed on calendar 1-20-2022 by Committee on Rules,2022-01-18T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 8-5-2021,2021-08-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Published 7-9-2021,2021-07-09T05:00:00+00:00,['became-law'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 11-5-2021. 2021 Wisconsin Act 83,2021-11-08T06:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2021-04-19T05:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-11-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Published 2-26-2021,2021-02-26T06:00:00+00:00,['became-law'],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in as amended,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Published 8-7-2021,2021-08-09T05:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 3-4-2022. 2021 Wisconsin Act 150,2022-03-07T06:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +LRB correction (Senate Amendment 1),2021-03-18T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-13-2022,2022-04-13T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Published 3-27-2021,2021-03-29T05:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2021-10-27T05:00:00+00:00,[],WI,2021 +LRB correction (Senate Amendment 1),2021-10-08T05:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report approved by the Governor on 3-18-2022. 2021 Wisconsin Act 192,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Representative Steffen added as a cosponsor,2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 offered by Senator Pfaff,2022-02-22T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-18-2022. 2021 Wisconsin Act 194,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +LRB correction,2021-06-28T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +"Assembly Substitute Amendment 1 offered by Representatives Stubbs, Haywood, Baldeh, Drake, Moore Omokunde, Anderson, Billings, Brostoff, Conley, Considine, Emerson, Goyke, Hong, B. Meyers, Neubauer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink",2022-02-22T06:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 111,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +LRB correction,2021-05-18T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +Report vetoed by the Governor on 8-10-2021,2021-08-10T05:00:00+00:00,['executive-veto'],WI,2021 +Representative Hesselbein added as a cosponsor,2022-01-20T06:00:00+00:00,[],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 5-21-2021. 2021 Wisconsin Act 35,2021-05-24T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-10-27T05:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 18, Noes 13",2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate concurred in,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 2-18-2021,2021-02-18T06:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2021-11-12T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +Senate Amendment 1 offered by Senator Carpenter,2022-03-08T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 101,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Report approved by the Governor on 6-18-2021. 2021 Wisconsin Act 47,2021-06-21T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-03-24T05:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled on 1-27-2022,2022-01-27T06:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 2-21-2022. 2021 Wisconsin Act 140,2022-02-22T06:00:00+00:00,['executive-signature'],WI,2021 +Report approved by the Governor on 4-15-2022. 2021 Wisconsin Act 265,2022-04-15T05:00:00+00:00,['executive-signature'],WI,2021 +Read a second time,2021-06-22T05:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in as amended,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-28-2022 by directive of the Majority Leader,2022-03-28T05:00:00+00:00,['executive-receipt'],WI,2021 +Representative Billings added as a cosponsor,2021-04-12T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and concurred in, Ayes 96, Noes 0",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Report approved by the Governor on 6-22-2021. 2021 Wisconsin Act 53,2021-06-23T05:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 7-6-2021,2021-07-06T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 95, Noes 0",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-01-26T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +"Senate Amendment 1 offered by Senators Smith, Agard, Erpenbach, L. Taylor, Wirch, Carpenter, Ringhand, Bewley, Roys, Larson and Johnson",2022-01-25T06:00:00+00:00,[],WI,2021 +Representative McGuire added as a cosponsor,2022-02-16T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 3-19-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 11-16-2021,2021-11-16T06:00:00+00:00,['executive-receipt'],WI,2021 +Representative Born added as a cosponsor,2022-02-23T06:00:00+00:00,[],WI,2021 +Report of Joint Survey Committee on Tax Exemptions received,2021-06-28T05:00:00+00:00,['receipt'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-11T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a second time,2021-06-29T05:00:00+00:00,['reading-2'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 4-4-2022,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 6-30-2021 pursuant to Senate Rule 18(1),2021-06-29T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 2-4-2022. 2021 Wisconsin Act 127,2022-02-07T06:00:00+00:00,['executive-signature'],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered to a third reading,2021-11-11T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Published 3-19-2022,2022-03-23T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-01-21T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and concurred in,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Point of order that Assembly Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2022-02-24T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-28-2022 by directive of the Majority Leader,2022-03-28T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Assembly Amendment 1 adopted,2022-02-17T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 2-25-2022,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Assembly Amendment 2 adopted,2022-02-23T06:00:00+00:00,['amendment-passage'],WI,2021 +Received from Assembly concurred in,2021-03-24T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +LRB correction,2022-03-15T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Representative Skowronski added as a cosponsor,2022-02-23T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 7-8-2021. 2021 Wisconsin Act 68,2021-07-09T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Veterans and Military Affairs and Constitution and Federalism,2021-06-24T05:00:00+00:00,['referral-committee'],WI,2021 +Published 2-5-2022,2022-02-07T06:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2021-03-25T05:00:00+00:00,['enrolled'],WI,2021 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Presented to the Governor on 4-5-2022 by directive of the Majority Leader,2022-04-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 3-31-2022,2022-03-31T05:00:00+00:00,['executive-veto'],WI,2021 +Available for scheduling,2022-01-21T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-11-11T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Schraa added as a cosponsor,2021-05-11T05:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 to Assembly Substitute Amendment 2 offered by Representatives Riemer, S. Rodriguez, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-06-29T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-02-17T06:00:00+00:00,['withdrawal'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-11T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Published 6-23-2021,2021-06-23T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-04-13T05:00:00+00:00,['withdrawal'],WI,2021 +Report approved by the Governor on 3-31-2022. 2021 Wisconsin Act 216,2022-03-31T05:00:00+00:00,['executive-signature'],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 11-18-2021,2021-11-18T06:00:00+00:00,['executive-veto'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and concurred in, Ayes 19, Noes 12",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 226,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Senate Amendment 1 offered by Senator Bewley,2021-06-30T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and concurred in, Ayes 31, Noes 0",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Decision of the Chair appealed,2022-02-24T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 6-30-2021 pursuant to Senate Rule 18(1),2021-06-29T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 18, Noes 13",2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 2-1-2022 by directive of the Majority Leader,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +Received from Senate,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +"Read a third time and concurred in, Ayes 60, Noes 35",2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 5-20-2021,2021-05-20T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-10-08T05:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2021-11-15T06:00:00+00:00,['enrolled'],WI,2021 +Received from Senate concurred in,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 3-25-2021,2021-03-25T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 3-30-2022,2022-03-30T05:00:00+00:00,['executive-receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-20T06:00:00+00:00,['withdrawal'],WI,2021 +Received from Senate concurred in,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2022-02-24T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Published 3-5-2022,2022-03-07T06:00:00+00:00,['became-law'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Published 6-19-2021,2021-06-21T05:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 5-20-2021,2021-05-20T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 2-1-2022,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Published 3-27-2021,2021-03-29T05:00:00+00:00,['became-law'],WI,2021 +"Report concurrence as amended recommended by Joint Committee on Finance, Ayes 15, Noes 0",2021-12-07T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Received from Senate concurred in,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 222,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 3-21-2022,2022-03-21T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-11-08T06:00:00+00:00,[],WI,2021 +Representative Brostoff added as a coauthor,2022-03-07T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +"Assembly Substitute Amendment 2 offered by Representatives Hintz, Hesselbein, Spreitzer, Subeck, B. Meyers, Haywood, Goyke, Neubauer, McGuire, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Hebl, Milroy, Moore Omokunde and L. Myers",2021-02-16T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 3-4-2022. 2021 Wisconsin Act 152,2022-03-07T06:00:00+00:00,['executive-signature'],WI,2021 +Published 5-22-2021,2021-05-24T05:00:00+00:00,['became-law'],WI,2021 +Representative Subeck added as a cosponsor,2022-01-25T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 2-18-2021. 2021 Wisconsin Act 2,2021-02-18T06:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 12",2021-06-09T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Received from Senate concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2021-03-16T05:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 3-16-2022. 2021 Wisconsin Act 180,2022-03-16T05:00:00+00:00,['executive-signature'],WI,2021 +Published 5-22-2021,2021-05-24T05:00:00+00:00,['became-law'],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Published 4-16-2022,2022-04-15T05:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 235,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 60, Noes 38",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Representative Steffen added as a cosponsor,2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 4-22-2021,2021-04-22T05:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Report vetoed by the Governor on 8-10-2021,2021-08-10T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate concurred in,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled,2021-03-24T05:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senator Feyen,2022-02-18T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +LRB correction,2021-03-24T05:00:00+00:00,[],WI,2021 +Senator Darling added as a cosponsor,2022-03-08T06:00:00+00:00,[],WI,2021 +Published 2-22-2022,2022-02-22T06:00:00+00:00,['became-law'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Published 3-19-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Published 11-6-2021,2021-11-08T06:00:00+00:00,['became-law'],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 12",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 97,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Published 3-19-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +"Assembly Substitute Amendment 2 offered by Representatives L. Myers, Stubbs, Baldeh, Drake, Haywood, Moore Omokunde, Anderson, Billings, Brostoff, Conley, Considine, Emerson, Goyke, Hong, B. Meyers, Neubauer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Subeck, Vining and Vruwink",2022-02-22T06:00:00+00:00,[],WI,2021 +"Senate Substitute Amendment 1 offered by Senators Carpenter, Pfaff, Smith and Ringhand",2022-03-08T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled on 3-25-2021,2021-03-25T05:00:00+00:00,['enrolled'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Senate Amendment 1 withdrawn and returned to author,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Assembly Substitute Amendment 1 offered by Representative Vos,2021-11-11T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 3-30-2022,2022-03-30T05:00:00+00:00,['executive-receipt'],WI,2021 +Available for scheduling,2021-11-02T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in as amended,2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and concurred in, Ayes 95, Noes 0",2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +"Senate Amendment 1 offered by Senators Pfaff, Larson, Carpenter, Johnson, Agard, Smith, Ringhand and Erpenbach",2022-03-08T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 4-14-2021,2021-04-14T05:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-01T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +LRB correction (Senate Amendment 1),2021-06-28T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Published 4-16-2022,2022-04-15T05:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 3-4-2022. 2021 Wisconsin Act 144,2022-03-07T06:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 8-5-2021,2021-08-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 2-1-2022 by directive of the Majority Leader,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 98,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Report approved by the Governor on 3-18-2022. 2021 Wisconsin Act 197,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Read first time and referred to committee on Financial Institutions and Revenue,2021-11-02T05:00:00+00:00,['referral-committee'],WI,2021 +LRB correction (Assembly Substitute Amendment 1),2022-03-02T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2021-05-11T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +LRB correction,2022-03-01T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Read a third time and concurred in,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Referred to joint committee on Finance by Committee on Senate Organization pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2021-10-22T05:00:00+00:00,['referral-committee'],WI,2021 +LRB correction,2021-11-12T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-1-2022,2022-03-01T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Read a third time and concurred in,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly,2021-06-30T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from Senate message and take up,2021-09-28T05:00:00+00:00,[],WI,2021 +LRB correction,2021-06-11T05:00:00+00:00,[],WI,2021 +Received from Senate,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 7-8-2021. 2021 Wisconsin Act 66,2021-07-09T05:00:00+00:00,['executive-signature'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report vetoed by the Governor on 3-29-2021,2021-03-29T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +"Senate Amendment 2 rejected, Ayes 19, Noes 11",2021-06-23T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-11-11T06:00:00+00:00,[],WI,2021 +Senator Larson added as a cosponsor,2022-02-16T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2021-04-19T05:00:00+00:00,['enrolled'],WI,2021 +Rules suspended to withdraw from calendar of 10-27-2021 and take up,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-01-25T06:00:00+00:00,['referral-committee'],WI,2021 +Report approved by the Governor on 3-4-2022. 2021 Wisconsin Act 145,2022-03-07T06:00:00+00:00,['executive-signature'],WI,2021 +Read a third time and concurred in,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 2-5-2022,2022-02-07T06:00:00+00:00,['became-law'],WI,2021 +Published 7-28-2021,2021-07-27T05:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-20T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 224,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 1-12-2021 pursuant to Senate Rule 18(1),2021-01-11T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended to withdraw from Senate message and take up,2021-09-28T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:16 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled on 3-1-2022,2022-03-01T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 11-2-2021,2021-11-02T05:00:00+00:00,['executive-receipt'],WI,2021 +Assembly Amendment 1 concurred in,2022-03-08T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-23T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-25-2021,2021-03-25T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled on 3-1-2022,2022-03-01T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 7-8-2021,2021-07-08T05:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-04-19T05:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 3-27-2021,2021-03-29T05:00:00+00:00,['became-law'],WI,2021 +Received from Assembly,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +LRB correction,2022-02-25T06:00:00+00:00,[],WI,2021 +"Senate Amendment 1 rejected, Ayes 18, Noes 14",2022-03-08T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 5-21-2021. 2021 Wisconsin Act 42,2021-05-21T05:00:00+00:00,['executive-signature'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Published 3-27-2021,2021-03-29T05:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 adopted,2021-03-23T05:00:00+00:00,['amendment-passage'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-06-16T05:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 4-13-2022,2022-04-13T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 5-21-2021. 2021 Wisconsin Act 45,2021-05-24T05:00:00+00:00,['executive-signature'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 99,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled,2021-06-17T05:00:00+00:00,['enrolled'],WI,2021 +"Assembly Amendment 1 adopted, Ayes 60, Noes 38",2021-06-22T05:00:00+00:00,['amendment-passage'],WI,2021 +"Read a third time and concurred in, Ayes 96, Noes 0",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 5-13-2021,2021-05-13T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 2-5-2022,2022-02-07T06:00:00+00:00,['became-law'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +Published 7-1-2021,2021-06-30T05:00:00+00:00,['became-law'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-06-21T05:00:00+00:00,['referral-committee'],WI,2021 +Presented to the Governor on 5-20-2021,2021-05-20T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2021-11-15T06:00:00+00:00,['enrolled'],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-23T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Report approved by the Governor on 3-1-2021. 2021 Wisconsin Act 7,2021-03-02T06:00:00+00:00,['executive-signature'],WI,2021 +Report approved by the Governor on 3-18-2022. 2021 Wisconsin Act 193,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +"Read a third time and concurred in, Ayes 96, Noes 0",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 4-16-2022,2022-04-15T05:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Representative Tranel added as a cosponsor,2021-11-09T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 7-8-2021. 2021 Wisconsin Act 63,2021-07-09T05:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 4-13-2022,2022-04-13T05:00:00+00:00,['executive-receipt'],WI,2021 +Rules suspended to withdraw from calendar and take up,2022-01-25T06:00:00+00:00,['withdrawal'],WI,2021 +Received from Senate concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Published 4-16-2022,2022-04-15T05:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-06-17T05:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 8-5-2021,2021-08-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +LRB correction (Senate Amendment 1),2022-02-03T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Published 5-22-2021,2021-05-21T05:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Received from Senate concurred in,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Published 3-5-2022,2022-03-07T06:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 2-1-2022 by directive of the Majority Leader,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 5-14-2021. 2021 Wisconsin Act 31,2021-05-14T05:00:00+00:00,['executive-signature'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 8-6-2021. 2021 Wisconsin Act 76,2021-08-09T05:00:00+00:00,['executive-signature'],WI,2021 +"Read a third time and concurred in, Ayes 21, Noes 12",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Executive action taken,2022-02-16T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 4-13-2022,2022-04-13T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Deposited in the office of the Secretary of State on 3-9-2022,2022-03-09T06:00:00+00:00,[],WI,2021 +Representative Subeck added as a cosponsor,2022-01-25T06:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report approved by the Governor on 11-5-2021. 2021 Wisconsin Act 81,2021-11-08T06:00:00+00:00,['executive-signature'],WI,2021 +Report approved by the Governor on 3-26-2021. 2021 Wisconsin Act 22,2021-03-29T05:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +"Read a third time and passed, Ayes 30, Noes 0",2021-06-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 4-22-2021,2021-04-22T05:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2021-11-12T06:00:00+00:00,['receipt'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 6-22-2021,2021-06-22T05:00:00+00:00,['executive-receipt'],WI,2021 +"Senate Amendment 1 rejected, Ayes 20, Noes 12",2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-06-17T05:00:00+00:00,['enrolled'],WI,2021 +Published 5-22-2021,2021-05-24T05:00:00+00:00,['became-law'],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Representative Behnke added as a cosponsor,2021-11-10T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in as amended,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +Action ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-23T05:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2021-10-20T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 4-5-2022 by directive of the Majority Leader,2022-04-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled on 4-14-2021,2021-04-14T05:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 6-22-2021,2021-06-22T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-5-2022 by directive of the Majority Leader,2022-04-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 6-11-2021,2021-06-11T05:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Available for scheduling,2021-06-21T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Read a third time and concurred in as amended, Ayes 96, Noes 0",2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +LRB correction (Senate Substitute Amendment 1),2022-02-25T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Published 3-19-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2021-06-22T05:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2022-02-23T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2021-06-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report vetoed by the Governor on 7-9-2021,2021-07-09T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled on 1-31-2022,2022-01-31T06:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2021-06-22T05:00:00+00:00,['reading-3'],WI,2021 +Published 3-2-2021,2021-03-02T06:00:00+00:00,['became-law'],WI,2021 +Received from Assembly,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Published 7-9-2021,2021-07-09T05:00:00+00:00,['became-law'],WI,2021 +Read a second time,2021-10-26T05:00:00+00:00,['reading-2'],WI,2021 +Presented to the Governor on 4-22-2021,2021-04-22T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 offered by Senators LeMahieu and Testin,2021-01-12T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 164,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Published 7-9-2021,2021-07-09T05:00:00+00:00,['became-law'],WI,2021 +Read first time and referred to committee on Senate Organization,2021-03-24T05:00:00+00:00,['referral-committee'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Read first time and referred to committee on Rules,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and concurred in, Ayes 19, Noes 12",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 5-21-2021. 2021 Wisconsin Act 43,2021-05-21T05:00:00+00:00,['executive-signature'],WI,2021 +Report vetoed by the Governor on 12-3-2021,2021-12-06T06:00:00+00:00,['executive-veto'],WI,2021 +"Senate Amendment 3 rejected, Ayes 20, Noes 10",2021-06-23T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-30T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-1-2022,2022-03-01T06:00:00+00:00,['enrolled'],WI,2021 +Public hearing held,2022-03-03T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled on 11-12-2021,2021-11-12T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 4-21-2021 by directive of the Speaker,2021-04-21T05:00:00+00:00,['executive-receipt'],WI,2021 +"Refused to adopt Assembly Substitute Amendment 1, Ayes 21, Noes 77",2021-11-11T06:00:00+00:00,['amendment-failure'],WI,2021 +Presented to the Governor on 4-13-2022,2022-04-13T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 3-4-2022. 2021 Wisconsin Act 154,2022-03-07T06:00:00+00:00,['executive-signature'],WI,2021 +Deposited in the office of the Secretary of State on 4-15-2022,2022-04-15T05:00:00+00:00,[],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +"Senate Amendment 2 offered by Senators Smith, Pfaff, Carpenter, L. Taylor, Ringhand, Agard, Wirch and Larson",2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Published 3-19-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 4-15-2022. 2021 Wisconsin Act 258,2022-04-15T05:00:00+00:00,['executive-signature'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Read a third time and concurred in,2021-05-11T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-11-05T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-28-2022 by directive of the Majority Leader,2022-03-28T05:00:00+00:00,['executive-receipt'],WI,2021 +Made a special order of business at 8:13 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Published 3-5-2022,2022-03-07T06:00:00+00:00,['became-law'],WI,2021 +Received from Senate concurred in,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +LRB correction,2022-03-02T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-17-2022. 2021 Wisconsin Act 188,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Report vetoed by the Governor on 8-10-2021,2021-08-10T05:00:00+00:00,['executive-veto'],WI,2021 +"Withdrawn from joint committee on Finance and made Available for Scheduling by committee on Senate Organization, pursuant to Senate Rule 41 (1)(e), Ayes 5, Noes 0",2021-10-22T05:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 18, Noes 13",2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Spreitzer added as a cosponsor,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Report vetoed by the Governor on 2-4-2022,2022-02-07T06:00:00+00:00,['executive-veto'],WI,2021 +Report approved by the Governor on 3-31-2022. 2021 Wisconsin Act 212,2022-03-31T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2022-03-03T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Published 3-5-2022,2022-03-07T06:00:00+00:00,['became-law'],WI,2021 +Representative Drake withdrawn as a cosponsor,2021-10-26T05:00:00+00:00,['withdrawal'],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +LRB correction,2022-02-25T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-03-24T05:00:00+00:00,['enrolled'],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Presented to the Governor on 8-5-2021,2021-08-05T05:00:00+00:00,['executive-receipt'],WI,2021 +"Senate Amendment 1 rejected, Ayes 20, Noes 12",2022-03-08T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 5-21-2021. 2021 Wisconsin Act 38,2021-05-24T05:00:00+00:00,['executive-signature'],WI,2021 +Report approved by the Governor on 3-4-2022. 2021 Wisconsin Act 151,2022-03-07T06:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-26-2021. 2021 Wisconsin Act 16,2021-03-29T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Senate concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 3 offered by Representative Wittke,2021-02-16T06:00:00+00:00,[],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 6-29-2021,2021-06-29T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Senate concurred in,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled on 10-4-2021,2021-10-04T05:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-18-2022. 2021 Wisconsin Act 206,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 61, Noes 37",2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 7-6-2021,2021-07-06T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 11-4-2021,2021-11-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 3-31-2022. 2021 Wisconsin Act 217,2022-03-31T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Senate concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 2-4-2022,2022-02-04T06:00:00+00:00,['executive-veto'],WI,2021 +Report approved by the Governor on 4-23-2021. 2021 Wisconsin Act 28,2021-04-26T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Presented to the Governor on 5-20-2021,2021-05-20T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 5-21-2021. 2021 Wisconsin Act 39,2021-05-24T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2021-06-09T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-16T05:00:00+00:00,[],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +"Read a third time and concurred in, Ayes 18, Noes 13",2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 3-17-2022,2022-03-16T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled on 4-14-2021,2021-04-14T05:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Published 2-19-2021,2021-02-18T06:00:00+00:00,['became-law'],WI,2021 +"Received from Assembly amended and concurred in as amended, Assembly Substitute Amendment 1 adopted",2022-01-20T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Read a second time,2022-01-20T06:00:00+00:00,['reading-2'],WI,2021 +Read first time and referred to committee on Rules,2021-03-11T06:00:00+00:00,['referral-committee'],WI,2021 +"Assembly Substitute Amendment 3 offered by Representatives Hong, Shankland, Anderson, Baldeh, Billings, Brostoff, Conley, Considine, Drake, Emerson, Goyke, Haywood, B. Meyers, Moore Omokunde, Neubauer, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2022-02-22T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2021-03-18T05:00:00+00:00,['enrolled'],WI,2021 +LRB correction (Senate Amendment 1),2022-03-02T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 5-13-2021,2021-05-13T05:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2022-01-25T06:00:00+00:00,['reading-2'],WI,2021 +Received from Senate amended and concurred in as amended (Senate amendment 1 adopted),2021-10-20T05:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2022-02-28T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 4-5-2022 by directive of the Majority Leader,2022-04-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 3-30-2022,2022-03-30T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 3-18-2022. 2021 Wisconsin Act 202,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Referred to committee on Rules,2021-12-07T06:00:00+00:00,['referral-committee'],WI,2021 +Report vetoed by the Governor on 12-3-2021,2021-12-06T06:00:00+00:00,['executive-veto'],WI,2021 +Report approved by the Governor on 3-22-2022. 2021 Wisconsin Act 207,2022-03-23T05:00:00+00:00,['executive-signature'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +LRB correction,2022-01-27T06:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Report approved by the Governor on 2-4-2022. 2021 Wisconsin Act 122,2022-02-07T06:00:00+00:00,['executive-signature'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +LRB correction,2022-03-15T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-25-2021 by directive of the Speaker,2021-03-25T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +"Received from Assembly amended and concurred in as amended, Assembly Substitute Amendment 1 adopted",2022-02-24T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-25-2021,2021-03-25T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +"Senate Amendment 1 rejected, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Fiscal estimate received,2021-10-28T05:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 3-28-2022 by directive of the Majority Leader,2022-03-28T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Read first time and referred to committee on Education,2021-10-08T05:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a second time,2021-06-30T05:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2021-03-24T05:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 229,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Senator Kooyenga added as a cosponsor,2021-07-15T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +"Senate Amendment 1 rejected, Ayes 21, Noes 12",2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Published 7-9-2021,2021-07-09T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled on 4-14-2021,2021-04-14T05:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 3-18-2022. 2021 Wisconsin Act 195,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +"Received from Assembly amended and concurred in as amended, Assembly Substitute Amendment 2 adopted",2022-02-23T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 4-14-2021,2021-04-14T05:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in as amended,2022-02-24T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-11T05:00:00+00:00,['executive-veto'],WI,2021 +Presented to the Governor on 8-5-2021,2021-08-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in as amended,2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Published 4-1-2022,2022-03-31T05:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-04-13T05:00:00+00:00,['reading-2'],WI,2021 +Withdrawn from committee on Senate Organization and rereferred to joint committee on Finance pursuant to Senate Rule 46(2)(c),2022-01-28T06:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 to Assembly Substitute Amendment 2 laid on table, Ayes 60, Noes 36",2021-06-29T05:00:00+00:00,['deferral'],WI,2021 +LRB correction (Senate Amendment 1),2021-11-02T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 6-30-2021,2021-06-30T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and concurred in, Ayes 98, Noes 0",2021-11-11T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 3-25-2021,2021-03-25T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +"Decision of the Chair upheld, Ayes 58, Noes 32",2022-02-24T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Report vetoed by the Governor on 12-3-2021,2021-12-06T06:00:00+00:00,['executive-veto'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 225,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 8-10-2021,2021-08-10T05:00:00+00:00,['executive-veto'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2021-05-12T05:00:00+00:00,['receipt'],WI,2021 +LRB correction,2021-03-25T05:00:00+00:00,[],WI,2021 +Laid on table,2021-06-30T05:00:00+00:00,['deferral'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Representative Spreitzer added as a cosponsor,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-04-13T05:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-17-2022 by Committee on Rules,2022-02-15T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Read a third time and concurred in,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 4-21-2021 by directive of the Speaker,2021-04-21T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-21-2021 by directive of the Speaker,2021-04-21T05:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 offered by Senator Felzkowski,2022-02-14T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Senator Bewley added as a cosponsor,2021-08-27T05:00:00+00:00,[],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Read a third time and concurred in as amended,2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 adopted,2022-02-17T06:00:00+00:00,['amendment-passage'],WI,2021 +Read a third time and passed,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 231,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Report vetoed by the Governor on 3-26-2021,2021-03-29T05:00:00+00:00,['executive-veto'],WI,2021 +"Assembly Amendment 2 to Assembly Substitute Amendment 2 offered by Representatives Subeck, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Vining and Vruwink",2021-06-29T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and concurred in, Ayes 32, Noes 0",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Published 3-19-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-02-24T06:00:00+00:00,['reading-3'],WI,2021 +Executive action taken,2022-02-09T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Senate Amendment 1 rejected,2021-06-30T05:00:00+00:00,[],WI,2021 +LRB correction,2021-03-25T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-11-11T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report approved by the Governor on 6-29-2021. 2021 Wisconsin Act 56,2021-06-30T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Published 3-19-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-25-2021,2021-03-25T05:00:00+00:00,['executive-receipt'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +"Assembly Substitute Amendment 3 laid on table, Ayes 60, Noes 32",2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 4-15-2022. 2021 Wisconsin Act 261,2022-04-15T05:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 4-13-2022,2022-04-13T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 234,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Senate concurred in,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2022-01-20T06:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Senator Jacque withdrawn as a coauthor,2022-03-03T06:00:00+00:00,['withdrawal'],WI,2021 +Published 2-5-2022,2022-02-07T06:00:00+00:00,['became-law'],WI,2021 +LRB correction,2021-04-14T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-11T05:00:00+00:00,['executive-veto'],WI,2021 +Executive action taken,2022-03-03T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 5-20-2021,2021-05-20T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-21-2021 by directive of the Speaker,2021-04-21T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 7-8-2021. 2021 Wisconsin Act 67,2021-07-09T05:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled,2021-10-08T05:00:00+00:00,['enrolled'],WI,2021 +Published 4-1-2022,2022-03-31T05:00:00+00:00,['became-law'],WI,2021 +Referred to committee on Rules,2021-10-21T05:00:00+00:00,['referral-committee'],WI,2021 +Presented to the Governor on 11-2-2021,2021-11-02T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 11-5-2021. 2021 Wisconsin Act 88,2021-11-05T05:00:00+00:00,['executive-signature'],WI,2021 +Published 3-27-2021,2021-03-29T05:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 167,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Report vetoed by the Governor on 3-31-2022,2022-03-31T05:00:00+00:00,['executive-veto'],WI,2021 +Received from Assembly concurred in,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +Representative Milroy added as a cosponsor,2021-06-22T05:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 11",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 2-25-2022,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +"Read a third time and concurred in, Ayes 93, Noes 0",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Read a third time and concurred in,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 3-5-2022,2022-03-07T06:00:00+00:00,['became-law'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Report approved by the Governor on 8-6-2021. 2021 Wisconsin Act 77,2021-08-09T05:00:00+00:00,['executive-signature'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-16-2021 by Committee on Rules,2021-03-11T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2021-09-28T05:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 112,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Published 3-19-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 3-26-2021. 2021 Wisconsin Act 21,2021-03-29T05:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Published 3-23-2022,2022-03-23T05:00:00+00:00,['became-law'],WI,2021 +Received from Senate concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 3-26-2021. 2021 Wisconsin Act 13,2021-03-29T05:00:00+00:00,['executive-signature'],WI,2021 +Published 5-22-2021,2021-05-24T05:00:00+00:00,['became-law'],WI,2021 +"Assembly Amendment 1 to Assembly Substitute Amendment 3 offered by Representatives Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-16T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 106,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +"Senate Substitute Amendment 1 rejected, Ayes 20, Noes 12",2022-03-08T06:00:00+00:00,[],WI,2021 +Public hearing held,2021-10-14T05:00:00+00:00,[],WI,2021 +Published 4-24-2021,2021-04-26T05:00:00+00:00,['became-law'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 5-21-2021. 2021 Wisconsin Act 32,2021-05-24T05:00:00+00:00,['executive-signature'],WI,2021 +Read a third time and concurred in,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled on 4-14-2021,2021-04-14T05:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled on 1-27-2022,2022-01-27T06:00:00+00:00,['enrolled'],WI,2021 +LRB correction (Assembly Amendment 1 to Assembly Substitute Amendment 1),2021-11-12T06:00:00+00:00,[],WI,2021 +Published 5-22-2021,2021-05-24T05:00:00+00:00,['became-law'],WI,2021 +Received from Senate concurred in,2021-06-10T05:00:00+00:00,['receipt'],WI,2021 +"Senate Amendment 2 to Senate Substitute Amendment 1 offered by Senators Smith, Carpenter, Agard and Ringhand",2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-31-2022. 2021 Wisconsin Act 213,2022-03-31T05:00:00+00:00,['executive-signature'],WI,2021 +Read a third time and passed,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 3-19-2021,2021-03-19T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +LRB correction,2022-03-02T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Received from Assembly concurred in,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-11-11T06:00:00+00:00,['reading-3'],WI,2021 +Report vetoed by the Governor on 12-3-2021,2021-12-06T06:00:00+00:00,['executive-veto'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-1-2022,2022-03-01T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 171,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 11-8-2021 pursuant to Senate Rule 18(1),2021-11-05T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-13-2022,2022-04-13T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled on 10-27-2021,2021-10-27T05:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Not published. Enrolled Joint Resolution 18,2022-06-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 7-6-2021,2021-07-06T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2021-05-11T05:00:00+00:00,[],WI,2021 +Published 3-5-2022,2022-03-07T06:00:00+00:00,['became-law'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Placed on calendar 10-25-2021 pursuant to Senate Rule 18(1),2021-10-22T05:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-03T06:00:00+00:00,[],WI,2021 +Published 4-1-2022,2022-03-31T05:00:00+00:00,['became-law'],WI,2021 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2022-02-24T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Report vetoed by the Governor on 4-22-2021,2021-04-22T05:00:00+00:00,['executive-veto'],WI,2021 +Published 3-18-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 3-31-2022. 2021 Wisconsin Act 214,2022-03-31T05:00:00+00:00,['executive-signature'],WI,2021 +"Read a third time and concurred in, Ayes 18, Noes 13",2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Published 4-16-2022,2022-04-15T05:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Published 5-22-2021,2021-05-21T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled,2021-04-19T05:00:00+00:00,['enrolled'],WI,2021 +Published 6-16-2022. Enrolled Joint Resolution 6,2022-06-16T05:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 2-25-2022,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +LRB correction,2021-11-16T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-21-2021 by directive of the Speaker,2021-04-21T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Ordered to a third reading,2021-06-23T05:00:00+00:00,['reading-3'],WI,2021 +LRB correction (Senate Amendment 2),2022-02-03T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 4-23-2021. 2021 Wisconsin Act 27,2021-04-26T05:00:00+00:00,['executive-signature'],WI,2021 +"Senate Substitute Amendment 2 offered by Senators Roys, Agard, Erpenbach, Johnson, Larson and Smith",2021-01-12T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Placed on calendar 6-30-2021 pursuant to Senate Rule 18(1),2021-06-30T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-10-26T05:00:00+00:00,['reading-3'],WI,2021 +LRB correction,2022-03-15T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Published 8-7-2021,2021-08-09T05:00:00+00:00,['became-law'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-11T05:00:00+00:00,['executive-veto'],WI,2021 +LRB correction,2021-06-11T05:00:00+00:00,[],WI,2021 +"Report concurrence recommended by Committee on Judiciary and Public Safety, Ayes 7, Noes 0",2022-02-16T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Published 3-27-2021,2021-03-29T05:00:00+00:00,['became-law'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +LRB correction,2022-03-15T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Report approved by the Governor on 3-18-2022. 2021 Wisconsin Act 203,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +LRB correction,2022-01-28T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Senate concurred in,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Read first time and referred to committee on Education,2021-10-20T05:00:00+00:00,['referral-committee'],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 109,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Available for scheduling,2021-03-24T05:00:00+00:00,[],WI,2021 +Published 5-15-2021,2021-05-14T05:00:00+00:00,['became-law'],WI,2021 +Representative Anderson added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-22-2022,2022-03-22T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 2-4-2022. 2021 Wisconsin Act 126,2022-02-07T06:00:00+00:00,['executive-signature'],WI,2021 +"Read a third time and concurred in, Ayes 60, Noes 35, Paired 2",2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representatives Drake and Steffen added as cosponsors,2022-01-07T06:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +Rules suspended,2021-06-22T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 6-22-2021,2021-06-22T05:00:00+00:00,['executive-receipt'],WI,2021 +LRB correction,2021-10-19T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +LRB correction (Senate Amendment 1),2021-11-02T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-13-2022,2022-04-13T05:00:00+00:00,['executive-receipt'],WI,2021 +Read first time and referred to committee on Education,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Withdrawn from Assembly message and taken up,2021-06-23T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 4-23-2021. 2021 Wisconsin Act 26,2021-04-26T05:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-11T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 6-17-2021,2021-06-17T05:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Read a third time and concurred in,2021-06-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +"Senate Amendment 2 rejected, Ayes 20, Noes 12",2022-03-08T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 6-22-2021. 2021 Wisconsin Act 49,2021-06-23T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Made a special order of business at 8:01 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 114,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2021-10-20T05:00:00+00:00,[],WI,2021 +Published 11-6-2021,2021-11-08T06:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled,2021-06-17T05:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-03-23T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-01-25T06:00:00+00:00,['reading-3'],WI,2021 +Report approved by the Governor on 6-22-2021. 2021 Wisconsin Act 52,2021-06-23T05:00:00+00:00,['executive-signature'],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 6-22-2021,2021-06-22T05:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 4-22-2021,2021-04-22T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-13-2022,2022-04-13T05:00:00+00:00,['executive-receipt'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Published 6-23-2021,2021-06-23T05:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 107,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Received from Senate concurred in,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +"Representatives Subeck, Hesselbein and Shankland added as cosponsors",2022-01-25T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 concurred in,2022-03-08T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Senate concurred in,2021-06-23T05:00:00+00:00,['receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 concurred in,2021-06-23T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Published 6-23-2021,2021-06-23T05:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 165,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Report approved by the Governor on 3-23-2022. 2021 Wisconsin Act 208,2022-03-23T05:00:00+00:00,['executive-signature'],WI,2021 +Published 4-24-2021,2021-04-26T05:00:00+00:00,['became-law'],WI,2021 +Read a third time and concurred in,2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in as amended,2021-03-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled,2021-11-16T06:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate amended and concurred in as amended (Senate amendment 1 adopted),2022-02-23T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Report vetoed by the Governor on 4-22-2021,2021-04-22T05:00:00+00:00,['executive-veto'],WI,2021 +Report vetoed by the Governor on 6-18-2021,2021-06-18T05:00:00+00:00,['executive-veto'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +LRB correction (Senate Amendment 1),2022-02-25T06:00:00+00:00,[],WI,2021 +Read a second time,2021-01-12T06:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2021-03-23T05:00:00+00:00,['receipt'],WI,2021 +Representative Kurtz added as a cosponsor,2022-01-26T06:00:00+00:00,[],WI,2021 +Executive action taken,2022-03-04T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Published 4-24-2021,2021-04-26T05:00:00+00:00,['became-law'],WI,2021 +Rules suspended,2021-10-26T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2021-10-20T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +LRB correction (Assembly Amendment 4 to Assembly Substitute Amendment 1),2021-06-30T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 6-22-2021. 2021 Wisconsin Act 48,2021-06-23T05:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Received from Senate,2021-06-23T05:00:00+00:00,['receipt'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2021-04-13T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 6-11-2021,2021-06-11T05:00:00+00:00,['enrolled'],WI,2021 +Read a third time and concurred in as amended,2021-06-22T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 2-5-2022,2022-02-07T06:00:00+00:00,['became-law'],WI,2021 +Referred to committee on Senate Organization,2022-03-08T06:00:00+00:00,['referral-committee'],WI,2021 +Rules suspended,2021-06-23T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Available for scheduling,2022-02-16T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2022-02-23T06:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2022-01-20T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +LRB correction,2022-01-28T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +Published 3-19-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 4-5-2022 by directive of the Majority Leader,2022-04-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled on 10-27-2021,2021-10-27T05:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-17-2022. 2021 Wisconsin Act 182,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 4-13-2022,2022-04-13T05:00:00+00:00,['executive-receipt'],WI,2021 +Representative Drake added as a cosponsor,2022-01-24T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Read a second time,2021-10-25T05:00:00+00:00,['reading-2'],WI,2021 +Fiscal estimate received,2021-04-26T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2021-11-08T06:00:00+00:00,['reading-2'],WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Published 4-1-2022,2022-03-31T05:00:00+00:00,['became-law'],WI,2021 +Rules suspended,2021-11-11T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 94,2021-12-03T06:00:00+00:00,['executive-signature'],WI,2021 +Received from Senate concurred in,2021-05-11T05:00:00+00:00,['receipt'],WI,2021 +"Senate Amendment 1 rejected, Ayes 20, Noes 12",2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 4-5-2022 by directive of the Majority Leader,2022-04-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 7-8-2021. 2021 Wisconsin Act 64,2021-07-09T05:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 11-2-2021,2021-11-02T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 5-20-2021,2021-05-20T05:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Received from Senate concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Read a third time and concurred in,2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +"Report concurrence recommended by Joint Committee on Finance, Ayes 10, Noes 3",2022-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled on 10-4-2021,2021-10-04T05:00:00+00:00,['enrolled'],WI,2021 +Received from Senate concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled on 4-14-2021,2021-04-14T05:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 4-21-2021 by directive of the Speaker,2021-04-21T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 5-22-2021,2021-05-24T05:00:00+00:00,['became-law'],WI,2021 +LRB correction,2022-02-03T06:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 2 laid on table, Ayes 60, Noes 32",2022-02-22T06:00:00+00:00,['deferral'],WI,2021 +Rules suspended,2022-01-20T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +LRB correction (Senate Amendment 1),2022-03-02T06:00:00+00:00,[],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +Assembly Substitute Amendment 1 concurred in,2022-01-25T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled on 10-4-2021,2021-10-04T05:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +"Representatives Shankland, Pope, Spreitzer, Hintz, Sinicki, Goyke, Billings, Hebl, Andraca, Ohnstad, Brostoff, S. Rodriguez, Vining and Baldeh added as cosponsors",2021-03-12T06:00:00+00:00,[],WI,2021 +Representative Vining added as a coauthor,2022-02-22T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Published 3-27-2021,2021-03-29T05:00:00+00:00,['became-law'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 26, Noes 5",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report vetoed by the Governor on 4-22-2021,2021-04-22T05:00:00+00:00,['executive-veto'],WI,2021 +Report correctly enrolled on 6-11-2021,2021-06-11T05:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 3-18-2022. 2021 Wisconsin Act 200,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Report approved by the Governor on 3-22-2021. 2021 Wisconsin Act 8,2021-03-22T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report approved by the Governor on 3-26-2021. 2021 Wisconsin Act 17,2021-03-29T05:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 10-26-2021 by Committee on Rules,2021-10-21T05:00:00+00:00,[],WI,2021 +Published 4-16-2022,2022-04-15T05:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 5-21-2021. 2021 Wisconsin Act 46,2021-05-21T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 2-1-2022 by directive of the Majority Leader,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +Published 11-6-2021,2021-11-05T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled on 4-14-2021,2021-04-14T05:00:00+00:00,['enrolled'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Published 7-9-2021,2021-07-09T05:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +"Report concurrence of Assembly Amendment 1 recommended by Joint Committee on Finance, Ayes 13, Noes 0",2022-03-03T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-06-16T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Published 4-1-2022,2022-03-31T05:00:00+00:00,['became-law'],WI,2021 +Report vetoed by the Governor on 12-3-2021,2021-12-06T06:00:00+00:00,['executive-veto'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 11-5-2021. 2021 Wisconsin Act 85,2021-11-08T06:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Published 3-27-2021,2021-03-29T05:00:00+00:00,['became-law'],WI,2021 +Published 8-7-2021,2021-08-09T05:00:00+00:00,['became-law'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +"Assembly Amendment 1 to Assembly Substitute Amendment 3 laid on table, Ayes 58, Noes 34",2021-02-16T06:00:00+00:00,['deferral'],WI,2021 +Published 6-30-2021,2021-06-30T05:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 11-12-2021,2021-11-12T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +"Report concurrence recommended by Joint Committee on Finance, Ayes 14, Noes 1",2022-02-09T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-11-12T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2022-02-17T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +"Assembly Amendment 2 to Assembly Substitute Amendment 2 laid on table, Ayes 60, Noes 38",2021-06-29T05:00:00+00:00,['deferral'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +LRB correction,2022-03-15T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-13T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 6-29-2021,2021-06-29T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Ordered to a third reading,2021-06-30T05:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Received from Senate amended and concurred in as amended (Senate amendment 1 adopted),2021-02-16T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2022-02-24T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 3-25-2021,2021-03-25T05:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2021-03-25T05:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Fiscal estimate received,2021-04-22T05:00:00+00:00,['receipt'],WI,2021 +LRB correction,2021-06-28T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-22-2021,2021-04-22T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 2 concurred in, Ayes 20, Noes 11",2022-03-08T06:00:00+00:00,[],WI,2021 +Rules suspended,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Novak added as a coauthor,2021-12-16T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2021-05-18T05:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-24T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 237,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Failed to pass pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +"Concurred in, Ayes 58, Noes 32, Paired 4",2022-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 adopted,2022-02-15T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-09T06:00:00+00:00,[],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 162,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2022-02-17T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Report approved by the Governor on 6-29-2021. 2021 Wisconsin Act 55,2021-06-30T05:00:00+00:00,['executive-signature'],WI,2021 +Rules suspended,2021-06-30T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 offered by Representative Tusler,2022-02-16T06:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 8-5-2021,2021-08-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 4-15-2022. 2021 Wisconsin Act 262,2022-04-15T05:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 13",2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 3-25-2021 by directive of the Speaker,2021-03-25T05:00:00+00:00,['executive-receipt'],WI,2021 +"Assembly Amendment 3 to Assembly Substitute Amendment 2 offered by Representatives Pope, L. Myers, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, Neubauer, Ohnstad, Ortiz-Velez, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-06-29T05:00:00+00:00,[],WI,2021 +Action ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 4-13-2022,2022-04-13T05:00:00+00:00,['executive-receipt'],WI,2021 +Withdrawn from committee on Veterans and Military Affairs and Constitution and Federalism and rereferred to committee on Senate Organization pursuant to Senate Rule 46(2)(c),2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Read a third time and concurred in,2021-04-13T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 7-12-2021,2021-07-12T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +LRB correction (Senate Amendment 1),2021-11-15T06:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-22-2021,2021-04-22T05:00:00+00:00,['executive-veto'],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 3-25-2021,2021-03-25T05:00:00+00:00,['executive-receipt'],WI,2021 +LRB correction (Senate Amendment 1),2022-02-25T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 103,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Senate Amendment 1 concurred in,2021-02-16T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Point of order that Assembly Substitute Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2022-02-22T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 3-23-2021,2021-03-22T05:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 8-5-2021,2021-08-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Senate Organization,2022-02-22T06:00:00+00:00,['referral-committee'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Published 11-6-2021,2021-11-08T06:00:00+00:00,['became-law'],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 12",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2022-01-20T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 4-14-2021,2021-04-14T05:00:00+00:00,['enrolled'],WI,2021 +Senate Amendment 1 concurred in,2021-10-26T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 113,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Report vetoed by the Governor on 4-22-2021,2021-04-22T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 6-23-2021 by directive of the Speaker,2021-06-23T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 108,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 11-2-2021,2021-11-02T05:00:00+00:00,['executive-receipt'],WI,2021 +"Representatives Doyle, Conley, Emerson, B. Meyers, Considine, Subeck, Allen and Stubbs added as cosponsors",2021-03-15T05:00:00+00:00,[],WI,2021 +Action ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-21-2021 by directive of the Speaker,2021-04-21T05:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +"Read a third time and concurred in, Ayes 21, Noes 12",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 3-4-2022. 2021 Wisconsin Act 155,2022-03-07T06:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +LRB correction,2021-11-02T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-21-2021 by directive of the Speaker,2021-04-21T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 218,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 5-22-2021,2021-05-21T05:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 232,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly concurred in,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 2-4-2022. 2021 Wisconsin Act 119,2022-02-07T06:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly concurred in,2021-06-22T05:00:00+00:00,['receipt'],WI,2021 +Report vetoed by the Governor on 12-3-2021,2021-12-06T06:00:00+00:00,['executive-veto'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Published 3-19-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +LRB correction (Senate Amendment 2),2022-03-02T06:00:00+00:00,[],WI,2021 +Published 3-27-2021,2021-03-29T05:00:00+00:00,['became-law'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-03-03T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 11-2-2021,2021-11-02T05:00:00+00:00,['executive-receipt'],WI,2021 +"Assembly Amendment 2 to Assembly Substitute Amendment 3 offered by Representatives Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-16T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-5-2022 by directive of the Majority Leader,2022-04-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2021-11-08T06:00:00+00:00,['reading-3'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-11T05:00:00+00:00,['executive-veto'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Report approved by the Governor on 5-21-2021. 2021 Wisconsin Act 44,2021-05-24T05:00:00+00:00,['executive-signature'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 11-5-2021. 2021 Wisconsin Act 84,2021-11-08T06:00:00+00:00,['executive-signature'],WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 174,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-03-03T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Published 12-4-2021,2021-12-03T06:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled on 4-14-2021,2021-04-14T05:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and concurred in, Ayes 60, Noes 38",2021-11-11T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Presented to the Governor on 2-1-2022 by directive of the Majority Leader,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +Senate Amendment 1 adopted,2021-10-25T05:00:00+00:00,['amendment-passage'],WI,2021 +Published 7-9-2021,2021-07-09T05:00:00+00:00,['became-law'],WI,2021 +"Senate Amendment 1 to Assembly Amendment 1 offered by Senators Larson, Carpenter, Johnson, Agard, Smith, Bewley, Ringhand, Erpenbach, Wirch and Pfaff",2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 withdrawn and returned to author,2022-03-08T06:00:00+00:00,[],WI,2021 +Published 3-18-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled on 5-14-2021,2021-05-14T05:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-22T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 1-31-2022,2022-01-31T06:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 2-22-2022 pursuant to Senate Rule 18(1),2022-02-18T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 11-9-2021,2021-11-09T06:00:00+00:00,['executive-receipt'],WI,2021 +"Senate Amendment 1 offered by Senators Larson, L. Taylor and Carpenter",2021-06-30T05:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report approved by the Governor on 4-28-2021. 2021 Wisconsin Act 30,2021-04-29T05:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-25-2021,2021-03-25T05:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 6-24-2021,2021-06-24T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 3-4-2022. 2021 Wisconsin Act 142,2022-03-07T06:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-28-2022 by directive of the Majority Leader,2022-03-28T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 1-25-2022 pursuant to Senate Rule 18(1),2022-01-21T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 97, Noes 0",2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read and referred to committee on Rules,2022-02-23T06:00:00+00:00,['referral-committee'],WI,2021 +Received from Assembly concurred in,2021-03-24T05:00:00+00:00,['receipt'],WI,2021 +Read first time and referred to committee on Rules,2022-02-17T06:00:00+00:00,['referral-committee'],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +Action ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +LRB correction,2022-02-25T06:00:00+00:00,[],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Published 6-23-2021,2021-06-23T05:00:00+00:00,['became-law'],WI,2021 +Received from Assembly concurred in,2021-06-16T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-01-25T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Read a third time and concurred in,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 6-22-2021. 2021 Wisconsin Act 54,2021-06-23T05:00:00+00:00,['executive-signature'],WI,2021 +Referred to committee on Rules,2022-02-01T06:00:00+00:00,['referral-committee'],WI,2021 +Report correctly enrolled on 1-31-2022,2022-01-31T06:00:00+00:00,['enrolled'],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Action ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Read a third time and concurred in,2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +LRB correction (Assembly Amendment 1),2021-06-24T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 12",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled on 10-27-2021,2021-10-27T05:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 4-14-2021 pursuant to Senate Rule 18(1),2021-04-13T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-28-2022 by directive of the Majority Leader,2022-03-28T05:00:00+00:00,['executive-receipt'],WI,2021 +Read first time and referred to committee on Rules,2021-09-22T05:00:00+00:00,['referral-committee'],WI,2021 +Published 3-24-2022,2022-03-23T05:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Read a third time and concurred in,2021-06-23T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered to a third reading,2022-02-23T06:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and concurred in, Ayes 62, Noes 32, Paired 2",2021-10-26T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-11T05:00:00+00:00,['executive-veto'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +"Report concurrence recommended by Committee on Education, Ayes 4, Noes 3",2022-03-04T06:00:00+00:00,['committee-passage-favorable'],WI,2021 +LRB correction (Senate Amendment 1),2022-03-02T06:00:00+00:00,[],WI,2021 +Rules suspended to take up Senate Substitute Amendment 2,2021-01-12T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-1-2022,2022-03-01T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +"Senate Substitute Amendment 1 offered by Senators Agard, Carpenter and L. Taylor",2021-06-30T05:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Anderson added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 2-1-2022,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 3-7-2022. 2021 Wisconsin Act 157,2022-03-08T06:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2021-06-23T05:00:00+00:00,[],WI,2021 +Representative Shankland added as a coauthor,2021-03-16T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 2-1-2022,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2021-06-17T05:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-23T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Report vetoed by the Governor on 3-31-2022,2022-03-31T05:00:00+00:00,['executive-veto'],WI,2021 +LRB correction (Senate Amendment 2),2021-06-28T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 2-1-2022 by directive of the Majority Leader,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 3-18-2022. 2021 Wisconsin Act 201,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 9-28-2021 by Committee on Rules,2021-09-23T05:00:00+00:00,[],WI,2021 +LRB correction (Senate Amendment 1 to Senate Amendment 2),2022-03-02T06:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2021-06-22T05:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-03-25T05:00:00+00:00,['enrolled'],WI,2021 +Read a second time,2021-04-14T05:00:00+00:00,['reading-2'],WI,2021 +Made a special order of business at 8:01 AM on 2-24-2022 pursuant to Assembly Resolution 30,2022-02-23T06:00:00+00:00,[],WI,2021 +Senator Carpenter added as a cosponsor,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 concurred in,2022-01-25T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 12-7-2021. 2021 Wisconsin Act 118,2021-12-07T06:00:00+00:00,['executive-signature'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Available for scheduling,2022-03-04T06:00:00+00:00,[],WI,2021 +Published 3-5-2022,2022-03-07T06:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report vetoed by the Governor on 6-30-2021,2021-06-30T05:00:00+00:00,['executive-veto'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report vetoed by the Governor on 3-31-2022,2022-03-31T05:00:00+00:00,['executive-veto'],WI,2021 +Report approved by the Governor on 4-15-2022. 2021 Wisconsin Act 254,2022-04-15T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Senate amended and concurred in as amended (Senate amendment 1 adopted),2021-03-23T05:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Presented to the Governor on 3-25-2021 by directive of the Speaker,2021-03-25T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 230,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Published 4-29-2021,2021-04-29T05:00:00+00:00,['became-law'],WI,2021 +"Senate Substitute Amendment 2 rejected, Ayes 20, Noes 11",2021-01-12T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 11-11-2021. 2021 Wisconsin Act 91,2021-11-12T06:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 12-6-2021. 2021 Wisconsin Act 116,2021-12-07T06:00:00+00:00,['executive-signature'],WI,2021 +LRB correction (Assembly Amendment 2),2021-06-24T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Published 6-23-2021,2021-06-23T05:00:00+00:00,['became-law'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-11T05:00:00+00:00,['executive-veto'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Point of order that Senate Amendment 1 to Assembly Amendment 1 was not germane well taken,2022-03-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2022-03-04T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +"Read a third time and concurred in, Ayes 95, Noes 1",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 11-6-2021,2021-11-08T06:00:00+00:00,['became-law'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Published 5-22-2021,2021-05-24T05:00:00+00:00,['became-law'],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2021-11-08T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 5-20-2021,2021-05-20T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2021-11-11T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 2-4-2022. 2021 Wisconsin Act 120,2022-02-07T06:00:00+00:00,['executive-signature'],WI,2021 +Fiscal estimate received,2021-04-21T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Senate Amendment 2 withdrawn and returned to author,2021-10-25T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 2-1-2022 by directive of the Majority Leader,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 4-14-2021,2021-04-14T05:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2022-01-20T06:00:00+00:00,[],WI,2021 +Decision of the Chair appealed,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-03-16T05:00:00+00:00,['withdrawal'],WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-17-2022. 2021 Wisconsin Act 186,2022-03-17T05:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 8-10-2021,2021-08-10T05:00:00+00:00,['executive-veto'],WI,2021 +Report vetoed by the Governor on 4-22-2021,2021-04-22T05:00:00+00:00,['executive-veto'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 93,2021-12-03T06:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Report vetoed by the Governor on 4-22-2021,2021-04-22T05:00:00+00:00,['executive-veto'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 11-5-2021. 2021 Wisconsin Act 82,2021-11-08T06:00:00+00:00,['executive-signature'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +"Assembly Amendment 2 to Assembly Substitute Amendment 3 laid on table, Ayes 60, Noes 34",2021-02-16T06:00:00+00:00,['deferral'],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 12",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 11-5-2021. 2021 Wisconsin Act 86,2021-11-08T06:00:00+00:00,['executive-signature'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Action ordered immediately messaged,2021-10-26T05:00:00+00:00,[],WI,2021 +Published 2-5-2022,2022-02-07T06:00:00+00:00,['became-law'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Representative Drake added as a cosponsor,2021-05-26T05:00:00+00:00,[],WI,2021 +Received from Assembly,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Published 3-5-2022,2022-03-07T06:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-21-2021 by directive of the Speaker,2021-04-21T05:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Report correctly enrolled,2021-06-17T05:00:00+00:00,['enrolled'],WI,2021 +Report vetoed by the Governor on 6-29-2021,2021-06-29T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report approved by the Governor on 3-26-2021. 2021 Wisconsin Act 11,2021-03-29T05:00:00+00:00,['executive-signature'],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +Action ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Representative Vining added as a cosponsor,2021-04-13T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 withdrawn and returned to author,2022-02-17T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in as amended,2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Assembly Amendment 3 to Assembly Substitute Amendment 2 laid on table, Ayes 60, Noes 38",2021-06-29T05:00:00+00:00,['deferral'],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 12",2021-06-30T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 6-30-2021,2021-06-30T05:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 7-15-2021. 2021 Wisconsin Act 72,2021-07-16T05:00:00+00:00,['executive-signature'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 227,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 3-22-2022,2022-03-22T05:00:00+00:00,['executive-receipt'],WI,2021 +LRB correction,2021-11-15T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-26-2021. 2021 Wisconsin Act 23,2021-03-29T05:00:00+00:00,['executive-signature'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2022-02-11T06:00:00+00:00,[],WI,2021 +Published 4-16-2022,2022-04-15T05:00:00+00:00,['became-law'],WI,2021 +"Assembly Amendment 1 nonconcurred in, Ayes 31, Noes 0",2022-03-08T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled on 2-25-2022,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Available for scheduling,2022-02-01T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Representative Anderson added as a coauthor,2022-03-10T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 8-6-2021. 2021 Wisconsin Act 79,2021-08-09T05:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report approved by the Governor on 3-18-2022. 2021 Wisconsin Act 199,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 2-1-2022 by directive of the Majority Leader,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Report correctly enrolled on 2-18-2021,2021-02-18T06:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +Published 3-19-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Published 8-7-2021,2021-08-09T05:00:00+00:00,['became-law'],WI,2021 +Assembly Amendment 1 concurred in,2022-03-08T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-13-2022,2022-04-13T05:00:00+00:00,['executive-receipt'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Senator Stafsholt added as a cosponsor,2021-06-30T05:00:00+00:00,[],WI,2021 +Deposited in the office of the Secretary of State on 4-15-2022,2022-04-15T05:00:00+00:00,[],WI,2021 +Placed on calendar 2-15-2022 pursuant to Senate Rule 18(1),2022-02-11T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +"Assembly Amendment 4 to Assembly Substitute Amendment 2 offered by Representatives Hesselbein, Shankland, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-06-29T05:00:00+00:00,[],WI,2021 +Published 3-27-2021,2021-03-29T05:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2021-04-13T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-23-2022. 2021 Wisconsin Act 209,2022-03-23T05:00:00+00:00,['executive-signature'],WI,2021 +Published 7-16-2021,2021-07-16T05:00:00+00:00,['became-law'],WI,2021 +Ordered to a third reading,2022-02-17T06:00:00+00:00,['reading-3'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2021-11-15T06:00:00+00:00,['enrolled'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2022-02-24T06:00:00+00:00,['receipt'],WI,2021 +Published 3-27-2021,2021-03-29T05:00:00+00:00,['became-law'],WI,2021 +Received from Senate concurred in,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 6-22-2021,2021-06-22T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Published 11-6-2021,2021-11-08T06:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 4-5-2022 by directive of the Majority Leader,2022-04-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 7-12-2021,2021-07-12T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 11-6-2021,2021-11-08T06:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 1-1-0001,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 8-5-2021,2021-08-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Read first time and referred to committee on Senate Organization,2022-02-24T06:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Senate concurred in,2022-01-25T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 to Assembly Amendment 1 offered by Senator L. Taylor,2022-03-08T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 219,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Published 3-18-2022,2022-03-17T05:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-13-2022,2022-04-13T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 3-4-2022. 2021 Wisconsin Act 141,2022-03-07T06:00:00+00:00,['executive-signature'],WI,2021 +Published 12-4-2021,2021-12-03T06:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-03-16T05:00:00+00:00,['reading-2'],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Fiscal estimate received,2022-01-03T06:00:00+00:00,['receipt'],WI,2021 +Representative Skowronski added as a coauthor,2021-07-26T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-22-2021,2021-04-22T05:00:00+00:00,['executive-veto'],WI,2021 +"Assembly Amendment 3 to Assembly Substitute Amendment 3 offered by Representatives Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-16T06:00:00+00:00,[],WI,2021 +"Decision of the Chair upheld, Ayes 60, Noes 32",2022-02-22T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-01-20T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Published 2-5-2022,2022-02-07T06:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-21-2021 by directive of the Speaker,2021-04-21T05:00:00+00:00,['executive-receipt'],WI,2021 +"Read a third time and concurred in, Ayes 33, Noes 0",2021-11-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Fiscal estimate received,2021-11-09T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 4-21-2021 by directive of the Speaker,2021-04-21T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 5-21-2021. 2021 Wisconsin Act 40,2021-05-21T05:00:00+00:00,['executive-signature'],WI,2021 +"Decision of the Chair stands as the judgement of the Senate, Ayes 20, Noes 11",2022-03-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 4-15-2021,2021-04-15T05:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 2-4-2022. 2021 Wisconsin Act 121,2022-02-07T06:00:00+00:00,['executive-signature'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Received from Assembly concurred in,2021-11-12T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2021-10-25T05:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled on 1-27-2022,2022-01-27T06:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly concurred in,2022-01-26T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 1 concurred in,2022-02-24T06:00:00+00:00,[],WI,2021 +Published 3-19-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Read a second time,2022-02-22T06:00:00+00:00,['reading-2'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 2-4-2022. 2021 Wisconsin Act 123,2022-02-07T06:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled,2022-02-03T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +LRB correction,2021-06-28T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 2 to Senate Substitute Amendment 1 offered by Senators LeMahieu and Testin,2021-01-12T06:00:00+00:00,[],WI,2021 +Published 11-12-2021,2021-11-12T06:00:00+00:00,['became-law'],WI,2021 +Received from Assembly concurred in,2021-10-27T05:00:00+00:00,['receipt'],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Report approved by the Governor on 3-17-2022. 2021 Wisconsin Act 187,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from calendar and take up,2021-09-28T05:00:00+00:00,['withdrawal'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +"Senate Amendment 2 offered by Senators Erpenbach, L. Taylor and Carpenter",2021-06-30T05:00:00+00:00,[],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Ordered to a third reading,2021-04-14T05:00:00+00:00,['reading-3'],WI,2021 +Report vetoed by the Governor on 2-4-2022,2022-02-04T06:00:00+00:00,['executive-veto'],WI,2021 +Published 12-7-2021,2021-12-07T06:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 95,2021-12-03T06:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly concurred in,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 6-30-2021 pursuant to Senate Rule 18(1),2021-06-29T05:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Published 12-8-2021,2021-12-07T06:00:00+00:00,['became-law'],WI,2021 +Published 3-8-2022,2022-03-08T06:00:00+00:00,['became-law'],WI,2021 +"Read a third time and concurred in, Ayes 96, Noes 0",2022-02-23T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Received from Senate concurred in,2021-06-23T05:00:00+00:00,['receipt'],WI,2021 +Published 4-16-2022,2022-04-15T05:00:00+00:00,['became-law'],WI,2021 +Senate Amendment 1 concurred in,2021-03-23T05:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 2-4-2022. 2021 Wisconsin Act 131,2022-02-04T06:00:00+00:00,['executive-signature'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Received from Senate concurred in,2021-03-17T05:00:00+00:00,['receipt'],WI,2021 +Action ordered immediately messaged,2022-01-25T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 4-1-2021. 2021 Wisconsin Act 24,2021-04-01T05:00:00+00:00,['executive-signature'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 6-22-2021,2021-06-22T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 3-25-2021,2021-03-25T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled on 6-24-2021,2021-06-24T05:00:00+00:00,['enrolled'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +LRB correction,2022-01-28T06:00:00+00:00,[],WI,2021 +Action ordered immediately messaged,2022-02-24T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-04-14T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +LRB correction,2021-10-08T05:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +LRB correction,2022-03-11T06:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 3-26-2021,2021-03-29T05:00:00+00:00,['executive-veto'],WI,2021 +Published 12-4-2021,2021-12-03T06:00:00+00:00,['became-law'],WI,2021 +LRB correction,2021-11-02T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Representative Anderson added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Action ordered immediately messaged,2021-03-23T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled on 3-23-2021,2021-03-23T05:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 7-2-2021,2021-07-02T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 4-2-2021,2021-04-01T05:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 6-22-2021. 2021 Wisconsin Act 50,2021-06-23T05:00:00+00:00,['executive-signature'],WI,2021 +Published 2-5-2022,2022-02-07T06:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Published 2-5-2022,2022-02-04T06:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled,2021-06-28T05:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 3-18-2022. 2021 Wisconsin Act 196,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Read a second time,2021-09-28T05:00:00+00:00,['reading-2'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Published 3-18-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-10-08T05:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 4-15-2022. 2021 Wisconsin Act 256,2022-04-15T05:00:00+00:00,['executive-signature'],WI,2021 +"Refused to nonconcur in Assembly Amendment 1, Ayes 12, Noes 20",2021-06-30T05:00:00+00:00,[],WI,2021 +Read a second time,2021-06-30T05:00:00+00:00,['reading-2'],WI,2021 +Senate Amendment 1 to Senate Substitute Amendment 1 withdrawn and returned to author,2021-01-12T06:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 6-24-2021,2021-06-24T05:00:00+00:00,['enrolled'],WI,2021 +Ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 4-21-2021 by directive of the Speaker,2021-04-21T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Published 2-5-2022,2022-02-07T06:00:00+00:00,['became-law'],WI,2021 +Report vetoed by the Governor on 4-22-2021,2021-04-22T05:00:00+00:00,['executive-veto'],WI,2021 +Report vetoed by the Governor on 4-22-2021,2021-04-22T05:00:00+00:00,['executive-veto'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 concurred in,2022-03-08T06:00:00+00:00,[],WI,2021 +Published 5-22-2021,2021-05-21T05:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2021-11-08T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-10-25T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 2-1-2022,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2021-11-15T06:00:00+00:00,['enrolled'],WI,2021 +"Read a third time and concurred in, Ayes 19, Noes 11",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Anderson added as a coauthor,2022-03-10T06:00:00+00:00,[],WI,2021 +LRB correction,2022-03-15T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 12-3-2021,2021-12-06T06:00:00+00:00,['executive-veto'],WI,2021 +Report approved by the Governor on 7-15-2021. 2021 Wisconsin Act 73,2021-07-16T05:00:00+00:00,['executive-signature'],WI,2021 +Report approved by the Governor on 4-15-2022. 2021 Wisconsin Act 253,2022-04-15T05:00:00+00:00,['executive-signature'],WI,2021 +Available for scheduling,2022-02-24T06:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Published 3-5-2022,2022-03-07T06:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled on 3-1-2022,2022-03-01T06:00:00+00:00,['enrolled'],WI,2021 +Report vetoed by the Governor on 8-6-2021,2021-08-06T05:00:00+00:00,['executive-veto'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 1 to Assembly Amendment 1 rejected,2022-03-08T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 6-22-2021. 2021 Wisconsin Act 51,2021-06-23T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-11T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered to a third reading,2022-02-22T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Representative Doyle added as a coauthor,2022-04-08T05:00:00+00:00,[],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Report approved by the Governor on 3-4-2022. 2021 Wisconsin Act 149,2022-03-07T06:00:00+00:00,['executive-signature'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled on 1-31-2022,2022-01-31T06:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Referred to calendar of 7-27-2021 pursuant to Assembly Rule 93,2021-07-26T05:00:00+00:00,['referral'],WI,2021 +"Assembly Substitute Amendment 4 offered by Representatives Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-03-16T05:00:00+00:00,['reading-3'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 3-8-2022. 2021 Wisconsin Act 159,2022-03-09T06:00:00+00:00,['executive-signature'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Rules suspended,2022-02-17T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 2-4-2022. 2021 Wisconsin Act 125,2022-02-07T06:00:00+00:00,['executive-signature'],WI,2021 +Report approved by the Governor on 4-15-2022. 2021 Wisconsin Act 263,2022-04-15T05:00:00+00:00,['executive-signature'],WI,2021 +Read a second time,2022-02-15T06:00:00+00:00,['reading-2'],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +"Read a third time and concurred in as amended, Ayes 20, Noes 12",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled on 1-27-2022,2022-01-27T06:00:00+00:00,['enrolled'],WI,2021 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 adopted",2022-02-17T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Presented to the Governor on 2-18-2021,2021-02-18T06:00:00+00:00,['executive-receipt'],WI,2021 +Senator Roys added as a coauthor,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-06-30T05:00:00+00:00,[],WI,2021 +Published 3-24-2022,2022-03-23T05:00:00+00:00,['became-law'],WI,2021 +"Assembly Amendment 4 to Assembly Substitute Amendment 2 laid on table, Ayes 60, Noes 38",2021-06-29T05:00:00+00:00,['deferral'],WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 178,2022-03-11T06:00:00+00:00,['executive-signature'],WI,2021 +Received from Senate: Assembly Amendment 1 nonconcurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Published 6-16-2022. Enrolled Joint Resolution 14,2022-06-17T05:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 12-6-2021. 2021 Wisconsin Act 117,2021-12-07T06:00:00+00:00,['executive-signature'],WI,2021 +Ordered to a third reading,2022-02-15T06:00:00+00:00,['reading-3'],WI,2021 +Deposited in the office of the Secretary of State on 4-15-2022,2022-04-15T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2021-07-01T05:00:00+00:00,['receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Published 3-9-2022,2022-03-09T06:00:00+00:00,['became-law'],WI,2021 +Published 3-12-2022,2022-03-11T06:00:00+00:00,['became-law'],WI,2021 +"Assembly Amendment 5 to Assembly Substitute Amendment 2 offered by Representatives Neubauer, Baldeh, Anderson, Andraca, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-06-29T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Report approved by the Governor on 2-19-2021. 2021 Wisconsin Act 3,2021-02-22T06:00:00+00:00,['executive-signature'],WI,2021 +Action ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 2-1-2022,2022-02-01T06:00:00+00:00,['executive-receipt'],WI,2021 +Published 4-16-2022,2022-04-15T05:00:00+00:00,['became-law'],WI,2021 +Published 2-5-2022,2022-02-07T06:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Read a third time and concurred in,2022-02-17T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Representative Doyle added as a coauthor,2022-04-08T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-04-19T05:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 221,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 3, Noes 2",2022-03-04T06:00:00+00:00,[],WI,2021 +"Assembly Substitute Amendment 4 laid on table, Ayes 60, Noes 32",2021-02-16T06:00:00+00:00,['deferral'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report approved by the Governor on 12-6-2021. 2021 Wisconsin Act 115,2021-12-07T06:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Published 3-5-2022,2022-03-07T06:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 236,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Assembly Amendment 1 concurred in,2022-03-08T06:00:00+00:00,[],WI,2021 +Published 7-16-2021,2021-07-16T05:00:00+00:00,['became-law'],WI,2021 +Rules suspended,2021-03-16T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Published 4-16-2022,2022-04-15T05:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 6-23-2021,2021-06-23T05:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 3-28-2022 by directive of the Majority Leader,2022-03-28T05:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +"Refused to pass notwithstanding the objections of the Governor, Ayes 59, Noes 37",2021-07-27T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Action ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 2-4-2022. 2021 Wisconsin Act 130,2022-02-04T06:00:00+00:00,['executive-signature'],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Report vetoed by the Governor on 4-23-2021,2021-04-23T05:00:00+00:00,['executive-veto'],WI,2021 +Received from Senate concurred in,2021-11-08T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 11-16-2021,2021-11-16T06:00:00+00:00,['executive-receipt'],WI,2021 +Read a third time and concurred in as amended,2021-10-25T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 6-23-2021,2021-06-23T05:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 233,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Report correctly enrolled on 3-25-2021,2021-03-25T05:00:00+00:00,['enrolled'],WI,2021 +Published 4-16-2022,2022-04-15T05:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-1-2022,2022-03-01T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled,2022-01-28T06:00:00+00:00,['enrolled'],WI,2021 +Published 3-19-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 8-5-2021,2021-08-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 3-28-2022 by directive of the Majority Leader,2022-03-28T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 3-17-2022. 2021 Wisconsin Act 189,2022-03-18T05:00:00+00:00,['executive-signature'],WI,2021 +Representative Doyle added as a cosponsor,2022-04-08T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 7-8-2021. 2021 Wisconsin Act 61,2021-07-08T05:00:00+00:00,['executive-signature'],WI,2021 +LRB correction (Assembly Amendment 1),2022-03-11T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-14-2021,2021-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered to a third reading,2021-09-28T05:00:00+00:00,['reading-3'],WI,2021 +Assembly Amendment 1 concurred in,2021-06-30T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +"Point of order that Senate Substitute Amendment 1 was not germane well taken, Ayes 20, Noes 12",2021-06-30T05:00:00+00:00,[],WI,2021 +Report correctly enrolled,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-02-22T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 to Senate Substitute Amendment 1 adopted,2021-01-12T06:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Presented to the Governor on 7-2-2021 by directive of the Speaker,2021-07-02T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 175,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Read a third time and concurred in,2021-04-14T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +"Read a third time and concurred in, Ayes 32, Noes 0",2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 11-4-2021,2021-11-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Assembly concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled,2021-10-08T05:00:00+00:00,['enrolled'],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 11-5-2021. 2021 Wisconsin Act 89,2021-11-05T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-04-14T05:00:00+00:00,[],WI,2021 +LRB correction (Senate Amendment 2),2022-03-02T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 4-15-2022. 2021 Wisconsin Act 255,2022-04-15T05:00:00+00:00,['executive-signature'],WI,2021 +Report approved by the Governor on 4-15-2021. 2021 Wisconsin Act 25,2021-04-15T05:00:00+00:00,['executive-signature'],WI,2021 +Published 7-9-2021,2021-07-08T05:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 7-8-2021. 2021 Wisconsin Act 60,2021-07-08T05:00:00+00:00,['executive-signature'],WI,2021 +"Read a third time and concurred in, Ayes 33, Noes 0",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +"Senate Substitute Amendment 1 adopted, Ayes 29, Noes 2",2021-01-12T06:00:00+00:00,['amendment-passage'],WI,2021 +Rules suspended,2021-09-28T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 rejected,2021-06-30T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Action ordered immediately messaged,2021-06-30T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 8-10-2021,2021-08-10T05:00:00+00:00,['executive-veto'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 3-31-2022,2022-03-31T05:00:00+00:00,['executive-veto'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 2-3-2022,2022-02-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 3-25-2021 by directive of the Speaker,2021-03-25T05:00:00+00:00,['executive-receipt'],WI,2021 +LRB correction (Assembly Amendment 3),2022-03-11T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Published 3-18-2022,2022-03-18T05:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 11-4-2021,2021-11-04T05:00:00+00:00,['executive-receipt'],WI,2021 +LRB correction (Assembly Amendment 1),2022-03-15T05:00:00+00:00,[],WI,2021 +Published 2-5-2022,2022-02-04T06:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled on 11-12-2021,2021-11-12T06:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 3-17-2022. 2021 Wisconsin Act 183,2022-03-17T05:00:00+00:00,['executive-signature'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-10-25T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 3-10-2022,2022-03-10T06:00:00+00:00,['executive-receipt'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Report vetoed by the Governor on 11-18-2021,2021-11-18T06:00:00+00:00,['executive-veto'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 223,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Action ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Assembly Amendment 1 to Assembly Amendment 3 to Assembly Substitute Amendment 3 offered by Representative Loudenbeck,2021-02-16T06:00:00+00:00,[],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 3-8-2022. 2021 Wisconsin Act 158,2022-03-08T06:00:00+00:00,['executive-signature'],WI,2021 +Published 12-7-2021,2021-12-07T06:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 3-8-2022 pursuant to Senate Rule 18(1),2022-03-04T06:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +"Read a third time and concurred in, Ayes 94, Noes 0",2021-03-16T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report vetoed by the Governor on 3-31-2022,2022-03-31T05:00:00+00:00,['executive-veto'],WI,2021 +"Read a third time and concurred in, Ayes 60, Noes 33, Paired 2",2022-02-22T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Senator Erpenbach withdrawn as a coauthor,2022-03-08T06:00:00+00:00,['withdrawal'],WI,2021 +Presented to the Governor on 4-22-2021,2021-04-22T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 2-20-2021,2021-02-22T06:00:00+00:00,['became-law'],WI,2021 +LRB correction (Assembly Substitute Amendment 1),2021-07-01T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 2-4-2022,2022-02-04T06:00:00+00:00,['executive-veto'],WI,2021 +Referred to committee on Senate Organization,2022-03-08T06:00:00+00:00,['referral-committee'],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +"Assembly Amendment 5 to Assembly Substitute Amendment 2 laid on table, Ayes 60, Noes 38",2021-06-29T05:00:00+00:00,['deferral'],WI,2021 +Published 6-16-2022. Enrolled Joint Resolution 17,2022-06-17T05:00:00+00:00,['became-law'],WI,2021 +Published 12-7-2021,2021-12-07T06:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2022-02-17T06:00:00+00:00,[],WI,2021 +LRB correction (Assembly Amendment 1),2022-03-16T05:00:00+00:00,[],WI,2021 +Rules suspended,2022-02-15T06:00:00+00:00,[],WI,2021 +Received from Senate amended and concurred in as amended (Senate amendment 1 adopted),2022-02-15T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Representative Anderson added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +LRB correction (Senate Substitute Amendment 1),2022-03-16T05:00:00+00:00,[],WI,2021 +Assembly Amendment 1 concurred in,2022-03-08T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2022-02-15T06:00:00+00:00,['referral-committee'],WI,2021 +"Read a third time and concurred in, Ayes 30, Noes 2",2022-02-15T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report approved by the Governor on 4-27-2021. 2021 Wisconsin Act 29,2021-04-28T05:00:00+00:00,['executive-signature'],WI,2021 +"Assembly Amendment 6 to Assembly Substitute Amendment 2 offered by Representatives Haywood, McGuire, Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Hebl, Hesselbein, Hintz, Hong, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-06-29T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-17T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled on 7-1-2021,2021-07-01T05:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Failed to concur in pursuant to Senate Joint Resolution 1,2022-03-15T05:00:00+00:00,['amendment-failure'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Representative Hesselbein added as a cosponsor,2021-03-16T05:00:00+00:00,[],WI,2021 +Published 3-9-2022,2022-03-08T06:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 1 to Assembly Amendment 3 to Assembly Substitute Amendment 3 adopted,2021-02-16T06:00:00+00:00,['amendment-passage'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Representative Doyle added as a coauthor,2022-04-08T05:00:00+00:00,[],WI,2021 +Read a second time,2022-03-08T06:00:00+00:00,['reading-2'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 220,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-11-2022. 2021 Wisconsin Act 163,2022-03-14T05:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 12-2-2021,2021-12-02T06:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Published 3-18-2022,2022-03-17T05:00:00+00:00,['became-law'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Received from Senate amended and concurred in as amended (Senate amendment 1 adopted),2021-10-25T05:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Received from Senate concurred in,2021-04-14T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in,2021-09-28T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Published 11-6-2021,2021-11-05T05:00:00+00:00,['became-law'],WI,2021 +Report approved by the Governor on 3-26-2021. 2021 Wisconsin Act 10,2021-03-29T05:00:00+00:00,['executive-signature'],WI,2021 +Report approved by the Governor on 2-4-2022. 2021 Wisconsin Act 132,2022-02-07T06:00:00+00:00,['executive-signature'],WI,2021 +Representative Allen added as a cosponsor,2021-11-17T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Report correctly enrolled,2022-03-02T06:00:00+00:00,['enrolled'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Published 4-16-2022,2022-04-15T05:00:00+00:00,['became-law'],WI,2021 +Ordered to a third reading,2021-01-12T06:00:00+00:00,['reading-3'],WI,2021 +Published 7-9-2021,2021-07-08T05:00:00+00:00,['became-law'],WI,2021 +Report vetoed by the Governor on 11-5-2021,2021-11-05T05:00:00+00:00,['executive-veto'],WI,2021 +Ordered immediately messaged,2022-02-22T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-11-2022,2022-03-11T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +"Senate Amendment 2 rejected, Ayes 20, Noes 12",2021-06-30T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 104,2021-12-06T06:00:00+00:00,['executive-signature'],WI,2021 +Published 4-16-2021,2021-04-15T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled,2021-07-06T05:00:00+00:00,['enrolled'],WI,2021 +Published 12-4-2021,2021-12-06T06:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 8-5-2021,2021-08-05T05:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 4-15-2021,2021-04-15T05:00:00+00:00,['enrolled'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Published 2-5-2022,2022-02-07T06:00:00+00:00,['became-law'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-09-28T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-01-12T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-30T05:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Published 3-27-2021,2021-03-29T05:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-02-23T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled on 3-15-2022,2022-03-15T05:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 12-3-2021. 2021 Wisconsin Act 92,2021-12-03T06:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Published 3-12-2022,2022-03-14T05:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Senate Amendment 1 concurred in,2021-10-27T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2022-02-22T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 4-4-2022,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Ordered to a third reading,2022-03-08T06:00:00+00:00,['reading-3'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Assembly Amendment 3 to Assembly Substitute Amendment 3 adopted,2021-02-16T06:00:00+00:00,['amendment-passage'],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-03-16T05:00:00+00:00,[],WI,2021 +Made a special order of business at 8:40 AM on 2-23-2022 pursuant to Assembly Resolution 29,2022-02-22T06:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Presented to the Governor on 7-2-2021 by directive of the Speaker,2021-07-02T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 3-17-2022. 2021 Wisconsin Act 185,2022-03-17T05:00:00+00:00,['executive-signature'],WI,2021 +Action ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Report correctly enrolled,2022-03-16T05:00:00+00:00,['enrolled'],WI,2021 +"Assembly Amendment 6 to Assembly Substitute Amendment 2 laid on table, Ayes 60, Noes 38",2021-06-29T05:00:00+00:00,['deferral'],WI,2021 +Published 4-28-2021,2021-04-28T05:00:00+00:00,['became-law'],WI,2021 +Ordered immediately messaged,2022-02-15T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 1 to Senate Amendment 1 offered by Representatives Vining, Spreitzer, Riemer, Anderson, Andraca, Baldeh, Brostoff, Conley, Considine, Drake, Emerson, Goyke, Haywood, Hebl, Hong, Moore Omokunde, Neubauer, S. Rodriguez, Shankland, Shelton, Snodgrass, Sinicki, Stubbs, Subeck and Vruwink",2022-02-23T06:00:00+00:00,[],WI,2021 +LRB correction,2022-03-16T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Senate concurred in,2022-02-15T06:00:00+00:00,['receipt'],WI,2021 +Representative Anderson added as a cosponsor,2022-03-10T06:00:00+00:00,[],WI,2021 +Published 3-18-2022,2022-03-17T05:00:00+00:00,['became-law'],WI,2021 +Report vetoed by the Governor on 7-8-2021,2021-07-08T05:00:00+00:00,['executive-veto'],WI,2021 +"Assembly Amendment 7 to Assembly Substitute Amendment 2 offered by Representatives Bowen, Goyke, Anderson, Andraca, Baldeh, Billings, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-06-29T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Report correctly enrolled,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Rules suspended,2022-03-08T06:00:00+00:00,[],WI,2021 +Received from Assembly concurred in,2021-03-16T05:00:00+00:00,['receipt'],WI,2021 +Assembly Substitute Amendment 3 adopted,2021-02-16T06:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 252,2022-04-11T05:00:00+00:00,['executive-signature'],WI,2021 +Action ordered immediately messaged,2021-10-27T05:00:00+00:00,[],WI,2021 +Published 12-4-2021,2021-12-03T06:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Rules suspended,2021-06-30T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 8-6-2021. 2021 Wisconsin Act 75,2021-08-09T05:00:00+00:00,['executive-signature'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Report approved by the Governor on 3-16-2022. 2021 Wisconsin Act 181,2022-03-16T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Assembly concurred in,2021-09-29T05:00:00+00:00,['receipt'],WI,2021 +Read a third time and concurred in as amended,2021-01-12T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-21-2021 by directive of the Speaker,2021-04-21T05:00:00+00:00,['executive-receipt'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 228,2022-04-08T05:00:00+00:00,['executive-signature'],WI,2021 +Ordered immediately messaged,2021-01-12T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-15-2022,2022-03-15T05:00:00+00:00,['executive-receipt'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Published 3-17-2022,2022-03-16T05:00:00+00:00,['became-law'],WI,2021 +Published 8-7-2021,2021-08-09T05:00:00+00:00,['became-law'],WI,2021 +"Read a third time and concurred in, Ayes 20, Noes 12",2021-06-30T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Report correctly enrolled,2021-10-08T05:00:00+00:00,['enrolled'],WI,2021 +Report vetoed by the Governor on 4-23-2021,2021-04-23T05:00:00+00:00,['executive-veto'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +LRB correction,2021-11-02T05:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +Presented to the Governor on 4-14-2022,2022-04-14T05:00:00+00:00,['executive-receipt'],WI,2021 +Published 4-9-2022,2022-04-11T05:00:00+00:00,['became-law'],WI,2021 +Read a third time and concurred in,2022-03-08T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +LRB correction,2021-03-18T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 2-25-2022,2022-02-25T06:00:00+00:00,['enrolled'],WI,2021 +Point of order that Assembly Amendment 1 to Senate Amendment 1 not germane under Assembly Rule 54 (3)(f) well taken,2022-02-23T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 7 to Assembly Substitute Amendment 2 laid on table, Ayes 60, Noes 38",2021-06-29T05:00:00+00:00,['deferral'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Representative Doyle added as a cosponsor,2022-04-08T05:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +Report correctly enrolled,2022-03-16T05:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 4-15-2022. 2021 Wisconsin Act 264,2022-04-15T05:00:00+00:00,['executive-signature'],WI,2021 +Decision of the Chair appealed,2022-02-23T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +"Assembly Amendment 8 to Assembly Substitute Amendment 2 offered by Representatives Andraca, S. Rodriguez, Anderson, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-06-29T05:00:00+00:00,[],WI,2021 +Published 4-16-2022,2022-04-15T05:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-3-2022,2022-03-03T06:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 4-15-2022,2022-04-15T05:00:00+00:00,['executive-veto'],WI,2021 +Report correctly enrolled,2021-03-18T05:00:00+00:00,['enrolled'],WI,2021 +Senator Carpenter added as a cosponsor,2022-03-08T06:00:00+00:00,[],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Report correctly enrolled on 11-2-2021,2021-11-02T05:00:00+00:00,['enrolled'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report approved by the Governor on 3-17-2022. 2021 Wisconsin Act 184,2022-03-17T05:00:00+00:00,['executive-signature'],WI,2021 +Received from Senate amended and concurred in as amended (Senate Amendment 2 to Senate Substitute Amendment 1 and Senate Substitute Amendment 1 adopted),2021-01-12T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Ordered immediately messaged,2021-06-30T05:00:00+00:00,[],WI,2021 +Published 4-9-2022,2022-04-08T05:00:00+00:00,['became-law'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Referred to committee on Rules,2021-05-06T05:00:00+00:00,['referral-committee'],WI,2021 +Presented to the Governor on 10-15-2021 by directive of the Majority Leader,2021-10-15T05:00:00+00:00,['executive-receipt'],WI,2021 +LRB correction (Assembly Substitute Amendment 1),2022-03-10T06:00:00+00:00,[],WI,2021 +Published 3-18-2022,2022-03-17T05:00:00+00:00,['became-law'],WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor on 10-15-2021. 2021 Wisconsin Act 80,2021-10-18T05:00:00+00:00,['executive-signature'],WI,2021 +Placed on calendar 5-11-2021 by Committee on Rules,2021-05-06T05:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2021-07-01T05:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-01-13T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Presented to the Governor on 11-2-2021,2021-11-02T05:00:00+00:00,['executive-receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 3-19-2021,2021-03-19T05:00:00+00:00,['executive-receipt'],WI,2021 +Ordered immediately messaged,2022-03-08T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 87, Noes 3, Paired 6",2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +"Assembly Amendment 8 to Assembly Substitute Amendment 2 laid on table, Ayes 60, Noes 38",2021-06-29T05:00:00+00:00,['deferral'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report approved by the Governor on 4-8-2022. 2021 Wisconsin Act 251,2022-04-11T05:00:00+00:00,['executive-signature'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report approved by the Governor on 3-7-2022. 2021 Wisconsin Act 156,2022-03-08T06:00:00+00:00,['executive-signature'],WI,2021 +"Decision of the Chair upheld, Ayes 60, Noes 36",2022-02-23T06:00:00+00:00,[],WI,2021 +Published 3-8-2022,2022-03-08T06:00:00+00:00,['became-law'],WI,2021 +Assembly Amendment 9 to Assembly Substitute Amendment 2 offered by Representatives Born and Vos,2021-06-29T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 concurred in,2022-02-23T06:00:00+00:00,[],WI,2021 +Published 4-9-2022,2022-04-11T05:00:00+00:00,['became-law'],WI,2021 +Received from Senate concurred in,2022-03-09T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-26-2021. 2021 Wisconsin Act 9,2021-03-29T05:00:00+00:00,['executive-signature'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Report approved by the Governor on 11-5-2021. 2021 Wisconsin Act 87,2021-11-08T06:00:00+00:00,['executive-signature'],WI,2021 +LRB correction (Assembly Amendment 3 to Assembly Substitute Amendment 1),2021-07-01T05:00:00+00:00,[],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Representative Doyle added as a coauthor,2022-04-08T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-01-14T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Published 10-16-2021,2021-10-18T05:00:00+00:00,['became-law'],WI,2021 +Fiscal estimate received,2021-01-19T06:00:00+00:00,['receipt'],WI,2021 +LRB correction (Assembly Amendment 4 to Assembly Substitute Amendment 1),2021-07-01T05:00:00+00:00,[],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Published 11-6-2021,2021-11-08T06:00:00+00:00,['became-law'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 3-10-2022,2022-03-10T06:00:00+00:00,['enrolled'],WI,2021 +Received from Assembly,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Published 3-27-2021,2021-03-29T05:00:00+00:00,['became-law'],WI,2021 +Assembly Amendment 9 to Assembly Substitute Amendment 2 adopted,2021-06-29T05:00:00+00:00,['amendment-passage'],WI,2021 +Action ordered immediately messaged,2022-02-23T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 2-28-2022,2022-02-28T06:00:00+00:00,['enrolled'],WI,2021 +Assembly Amendment 10 to Assembly Substitute Amendment 2 offered by Representatives J. Rodriguez and Kuglitsch,2021-06-29T05:00:00+00:00,[],WI,2021 +Read first time and referred to committee on Senate Organization,2021-02-16T06:00:00+00:00,['referral-committee'],WI,2021 +Presented to the Governor on 3-28-2022,2022-03-28T05:00:00+00:00,['executive-receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +LRB correction (Assembly Substitute Amendment 1),2021-07-01T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-01-20T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-01-20T06:00:00+00:00,['receipt'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Report correctly enrolled on 7-1-2021,2021-07-01T05:00:00+00:00,['enrolled'],WI,2021 +"Senate Amendment 1 offered by Senators Ringhand, Agard, Bewley, Carpenter, Erpenbach, Johnson, Larson, Pfaff, Roys, Smith and Wirch",2021-02-16T06:00:00+00:00,[],WI,2021 +Report approved by the Governor on 3-29-2022. 2021 Wisconsin Act 210,2022-03-29T05:00:00+00:00,['executive-signature'],WI,2021 +Assembly Amendment 10 to Assembly Substitute Amendment 2 adopted,2021-06-29T05:00:00+00:00,['amendment-passage'],WI,2021 +Presented to the Governor on 4-4-2022 by directive of the Speaker,2022-04-04T05:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 4-8-2022,2022-04-08T05:00:00+00:00,['executive-veto'],WI,2021 +Assembly Substitute Amendment 2 adopted,2021-06-29T05:00:00+00:00,['amendment-passage'],WI,2021 +Published 3-30-2022,2022-03-29T05:00:00+00:00,['became-law'],WI,2021 +"Senate Substitute Amendment 1 offered by Senators Larson, Agard, Bewley, Erpenbach, Johnson, Pfaff, Ringhand, Roys, Smith and Wirch",2021-02-16T06:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-01-26T06:00:00+00:00,['receipt'],WI,2021 +Presented to the Governor on 7-2-2021 by directive of the Speaker,2021-07-02T05:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 7-8-2021,2021-07-08T05:00:00+00:00,['executive-veto'],WI,2021 +Assembly Amendment 1 to Senate Substitute Amendment 1 offered by Representative Steineke,2021-01-26T06:00:00+00:00,[],WI,2021 +Senate Amendment 2 offered by Senator Carpenter,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-29T05:00:00+00:00,['reading-3'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-06-29T05:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +Senate Amendment 3 offered by Senator Carpenter,2021-02-16T06:00:00+00:00,[],WI,2021 +Referred to committee on Rules,2021-11-15T06:00:00+00:00,['referral-committee'],WI,2021 +"Assembly Amendment 1 to Senate Substitute Amendment 1 adopted, Ayes 58, Noes 34, Paired 2",2021-01-26T06:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Amendment 2 to Senate Substitute Amendment 1 offered by Representative Steineke,2021-01-26T06:00:00+00:00,[],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Rules suspended to withdraw from committee on Senate Organization and take up,2021-02-16T06:00:00+00:00,[],WI,2021 +"Read a third time and passed, Ayes 64, Noes 34",2021-06-29T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-06-29T05:00:00+00:00,[],WI,2021 +Read a second time,2021-02-16T06:00:00+00:00,['reading-2'],WI,2021 +"Assembly Amendment 2 to Senate Substitute Amendment 1 adopted, Ayes 58, Noes 34, Paired 2",2021-01-26T06:00:00+00:00,['amendment-passage'],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 +"Senate Substitute Amendment 1 concurred in as amended, Ayes 58, Noes 34, Paired 2",2021-01-26T06:00:00+00:00,[],WI,2021 +Senate Substitute Amendment 1 withdrawn and returned to author,2021-02-16T06:00:00+00:00,[],WI,2021 +Received from Assembly,2021-06-30T05:00:00+00:00,['receipt'],WI,2021 +"Public hearing requirement waived by committee on Senate Organization, pursuant to Senate Rule 18 (1m), Ayes 5, Noes 0",2021-06-30T05:00:00+00:00,[],WI,2021 +Senate Amendment 1 withdrawn and returned to author,2021-02-16T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-01-26T06:00:00+00:00,[],WI,2021 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 1 to Senate Substitute Amendment 1 and Assembly Amendment 2 to Senate Substitute Amendment 1 adopted",2021-01-26T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +"Senate Amendment 2 laid on table, Ayes 19, Noes 13",2021-02-16T06:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 6-30-2021 pursuant to Senate Rule 18(1),2021-06-30T05:00:00+00:00,[],WI,2021 +Placed on the foot of the 11th order of business on the calendar of 6-30-2021,2021-06-30T05:00:00+00:00,[],WI,2021 +"Senate Substitute Amendment 2 offered by Senators Larson, Agard, Bewley, Erpenbach, Johnson, Pfaff, Ringhand, Roys, Smith and Wirch",2021-02-16T06:00:00+00:00,[],WI,2021 +Referred to committee on Senate Organization,2021-01-27T06:00:00+00:00,['referral-committee'],WI,2021 +Available for scheduling,2021-01-27T06:00:00+00:00,[],WI,2021 +"Senate Amendment 3 laid on table, Ayes 20, Noes 11",2021-02-16T06:00:00+00:00,['deferral'],WI,2021 +"Commissioner of Insurance report received pursuant to s.601.423(2), Wisconsin Statutes",2021-06-30T05:00:00+00:00,['receipt'],WI,2021 +"Senate Amendment 1 offered by Senators Larson, L. Taylor and Carpenter",2021-06-30T05:00:00+00:00,[],WI,2021 +"Senate Substitute Amendment 2 laid on table, Ayes 20, Noes 12",2021-02-16T06:00:00+00:00,['deferral'],WI,2021 +Placed on calendar 1-28-2021 pursuant to Senate Rule 18(1),2021-01-27T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 to Assembly Amendment 1 to Senate Substitute Amendment 1 offered by Senator Nass,2021-01-28T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-02-16T06:00:00+00:00,['reading-3'],WI,2021 +"Senate Amendment 2 offered by Senators Larson, L. Taylor and Carpenter",2021-06-30T05:00:00+00:00,[],WI,2021 +"Senate Amendment 3 offered by Senators Larson, Carpenter and L. Taylor",2021-06-30T05:00:00+00:00,[],WI,2021 +Rules suspended,2021-02-16T06:00:00+00:00,[],WI,2021 +Senate Amendment 1 to Assembly Amendment 1 to Senate Substitute Amendment 1 adopted,2021-01-28T06:00:00+00:00,['amendment-passage'],WI,2021 +Assembly Amendment 1 to Senate Substitute Amendment 1 concurred in as amended,2021-01-28T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 27, Noes 5",2021-02-16T06:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Senate Amendment 4 offered by Senator Carpenter,2021-06-30T05:00:00+00:00,[],WI,2021 +Senate Amendment 5 offered by Senator Carpenter,2021-06-30T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-02-16T06:00:00+00:00,[],WI,2021 +Assembly Amendment 2 to Senate Substitute Amendment 1 concurred in,2021-01-28T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-01-28T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2021-02-16T06:00:00+00:00,['receipt'],WI,2021 +Senate Amendment 6 offered by Senator Carpenter,2021-06-30T05:00:00+00:00,[],WI,2021 +"Senate Substitute Amendment 1 offered by Senators Bewley, Roys, L. Taylor, Johnson and Erpenbach",2021-06-30T05:00:00+00:00,[],WI,2021 +LRB correction (Assembly Amendment 1 to Assembly Amendment 3 to Assembly Substitute Amendment 3),2021-02-17T06:00:00+00:00,[],WI,2021 +Received from Senate: Assembly Amendment 2 to Senate Substitute Amendment 1 concurred in,2021-01-28T06:00:00+00:00,['receipt'],WI,2021 +Received from Senate amended and concurred in as amended Assembly Amendment 1 to Senate Substitute Amendment 1 (Senate Amendment 1 adopted),2021-01-28T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +LRB correction (Assembly Substitute Amendment 3),2021-02-18T06:00:00+00:00,[],WI,2021 +Read a second time,2021-06-30T05:00:00+00:00,['reading-2'],WI,2021 +"Senate Substitute Amendment 1 rejected, Ayes 20, Noes 12",2021-06-30T05:00:00+00:00,[],WI,2021 +Report correctly enrolled on 2-18-2021,2021-02-18T06:00:00+00:00,['enrolled'],WI,2021 +"Assembly Amendment 1 to Senate Amendment 1 to Assembly Amendment 1 to Senate Substitute Amendment 1 offered by Representatives Anderson, Andraca, Baldeh, Billings, Bowen, Brostoff, Cabrera, Conley, Considine, Doyle, Drake, Emerson, Goyke, Haywood, Hebl, Hesselbein, Hintz, Hong, McGuire, B. Meyers, Milroy, Moore Omokunde, L. Myers, Neubauer, Ohnstad, Ortiz-Velez, Pope, Riemer, S. Rodriguez, Shankland, Shelton, Sinicki, Snodgrass, Spreitzer, Stubbs, Subeck, Vining and Vruwink",2021-01-28T06:00:00+00:00,[],WI,2021 +Point of order that Assembly Amendment 1 to Senate Amendment 1 to Assembly Amendment 1 to Senate Substitute Amendment 1 not germane under Assembly Rule 54 well taken,2021-01-28T06:00:00+00:00,[],WI,2021 +Presented to the Governor on 2-18-2021,2021-02-18T06:00:00+00:00,['executive-receipt'],WI,2021 +"Senate Amendment 1 rejected, Ayes 20, Noes 12",2021-06-30T05:00:00+00:00,[],WI,2021 +"Senate Amendment 2 rejected, Ayes 20, Noes 12",2021-06-30T05:00:00+00:00,[],WI,2021 +Report approved by the Governor on 2-18-2021. 2021 Wisconsin Act 1,2021-02-18T06:00:00+00:00,['executive-signature'],WI,2021 +Decision of the Chair appealed,2021-01-28T06:00:00+00:00,[],WI,2021 +"Decision of the Chair upheld, Ayes 59, Noes 34",2021-01-28T06:00:00+00:00,[],WI,2021 +Published 2-19-2021,2021-02-18T06:00:00+00:00,['became-law'],WI,2021 +"Senate Amendment 3 laid on table, Ayes 20, Noes 12",2021-06-30T05:00:00+00:00,['deferral'],WI,2021 +"Senate Amendment 4 rejected, Ayes 21, Noes 11",2021-06-30T05:00:00+00:00,[],WI,2021 +Assembly Amendment 2 to Senate Amendment 1 to Assembly Amendment 1 to Senate Substitute Amendment 1 offered by Representatives Steineke and Vos,2021-01-28T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 2 to Senate Amendment 1 to Assembly Amendment 1 to Senate Substitute Amendment 1 adopted, Ayes 59, Noes 35",2021-01-28T06:00:00+00:00,['amendment-passage'],WI,2021 +"Senate Amendment 5 rejected, Ayes 20, Noes 12",2021-06-30T05:00:00+00:00,[],WI,2021 +"Senate Amendment 6 rejected, Ayes 20, Noes 12",2021-06-30T05:00:00+00:00,[],WI,2021 +"Senate Amendment 1 to Assembly Amendment 1 to Senate Substitute Amendment 1 concurred in as amended, Ayes 59, Noes 35, Paired 2",2021-01-28T06:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-01-28T06:00:00+00:00,[],WI,2021 +Ordered to a third reading,2021-06-30T05:00:00+00:00,['reading-3'],WI,2021 +Rules suspended,2021-06-30T05:00:00+00:00,[],WI,2021 +"Received from Assembly amended and concurred in as amended, Assembly Amendment 2 to Senate Amendment 1 to Assembly Amendment 1 to Senate Substitute Amendment 1 adopted",2021-02-04T06:00:00+00:00,"['amendment-passage', 'receipt']",WI,2021 +Withdrawn from Assembly message and taken up,2021-02-05T06:00:00+00:00,[],WI,2021 +"Read a third time and concurred in, Ayes 23, Noes 9",2021-06-30T05:00:00+00:00,"['passage', 'reading-3']",WI,2021 +Ordered immediately messaged,2021-06-30T05:00:00+00:00,[],WI,2021 +"Refused to nonconcur in Assembly Amendment 2 to Senate Amendment 1 to Assembly Amendment 1 to Senate Substitute Amendment 1, Ayes 11, Noes 19",2021-02-05T06:00:00+00:00,[],WI,2021 +"Assembly Amendment 2 to Senate Amendment 1 to Assembly Amendment 1 to Senate Substitute Amendment 1 concurred in, Ayes 19, Noes 11",2021-02-05T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2021-07-01T05:00:00+00:00,['receipt'],WI,2021 +LRB correction (Assembly Amendment 9 to Assembly Substitute Amendment 2),2021-07-01T05:00:00+00:00,[],WI,2021 +Ordered immediately messaged,2021-02-05T06:00:00+00:00,[],WI,2021 +Received from Senate concurred in,2021-02-05T06:00:00+00:00,['receipt'],WI,2021 +Report correctly enrolled on 7-1-2021,2021-07-01T05:00:00+00:00,['enrolled'],WI,2021 +Presented to the Governor on 7-2-2021 by directive of the Speaker,2021-07-02T05:00:00+00:00,['executive-receipt'],WI,2021 +LRB correction (Senate Amendment 2 to Senate Substitute Amendment 1),2021-02-05T06:00:00+00:00,[],WI,2021 +Report correctly enrolled on 2-5-2021,2021-02-05T06:00:00+00:00,['enrolled'],WI,2021 +Report approved by the Governor with partial veto on 7-8-2021. 2021 Wisconsin Act 58,2021-07-08T05:00:00+00:00,['executive-veto-line-item'],WI,2021 +Published 7-9-2021,2021-07-08T05:00:00+00:00,['became-law'],WI,2021 +Presented to the Governor on 2-5-2021,2021-02-05T06:00:00+00:00,['executive-receipt'],WI,2021 +Report vetoed by the Governor on 2-5-2021,2021-02-05T06:00:00+00:00,['executive-veto'],WI,2021 +Partial veto placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Partial veto failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,[],WI,2021 +Fiscal estimate received,2021-02-08T06:00:00+00:00,['receipt'],WI,2021 +Fiscal estimate received,2021-02-10T06:00:00+00:00,['receipt'],WI,2021 +Placed on calendar 5-17-2022 pursuant to Joint Rule 82 (2)(a),2022-05-17T05:00:00+00:00,[],WI,2021 +Failed to pass notwithstanding the objections of the Governor pursuant to Joint Rule 82,2022-05-17T05:00:00+00:00,['failure'],WI,2021 diff --git a/labs/altair/data/legislators.csv b/labs/altair/data/legislators.csv new file mode 100644 index 0000000..35b8152 --- /dev/null +++ b/labs/altair/data/legislators.csv @@ -0,0 +1,7436 @@ +name,given_name,family_name,gender,party,jurisdiction,district,type +Robert White,Robert C.,White,Male,Independent,ocd-jurisdiction/country:us/district:dc/government,At-Large,legislature +Charles Allen,Charles,Allen,Male,Democratic,ocd-jurisdiction/country:us/district:dc/government,Ward 6,legislature +Vince Gray,Vincent Condol,Gray,Male,Democratic,ocd-jurisdiction/country:us/district:dc/government,Ward 7,legislature +Phil Mendelson,Philip Heath,Mendelson,Male,Democratic,ocd-jurisdiction/country:us/district:dc/government,Chairman,legislature +Trayon White,Trayon,White,Male,Democratic,ocd-jurisdiction/country:us/district:dc/government,Ward 8,legislature +Zachary Parker,Zachary,Parker,Male,Democratic,ocd-jurisdiction/country:us/district:dc/government,Ward 5,legislature +Kenyan McDuffie,Kenyan R.,McDuffie,Male,Democratic,ocd-jurisdiction/country:us/district:dc/government,At-Large,legislature +Matt Frumin,Matthew,Frumin,Male,Democratic,ocd-jurisdiction/country:us/district:dc/government,Ward 3,legislature +Anita Bonds,Anita D.,Bonds,Female,Democratic,ocd-jurisdiction/country:us/district:dc/government,At-Large,legislature +Christina Henderson,Christina,Henderson,Female,Independent,ocd-jurisdiction/country:us/district:dc/government,At-Large,legislature +Brooke Pinto,Brooke,Pinto,Female,Democratic,ocd-jurisdiction/country:us/district:dc/government,Ward 2,legislature +Brianne Nadeau,Brianne K.,Nadeau,Female,Democratic,ocd-jurisdiction/country:us/district:dc/government,Ward 1,legislature +Janeese Lewis George,Janeese,Lewis George,Female,Independent,ocd-jurisdiction/country:us/district:dc/government,Ward 4,legislature +Kevin McCabe,Kevin J.,McCabe,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,30,lower +C.J. McCormick,Conrad J.,McCormick,Male,Democratic,ocd-jurisdiction/country:us/state:ak/government,38,lower +Bill Wielechowski,Bill P.,Wielechowski,Male,Democratic,ocd-jurisdiction/country:us/state:ak/government,K,upper +Justin Ruffridge,Justin,Ruffridge,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,7,lower +Will Stapp,Will,Stapp,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,32,lower +Andrew Gray,Andrew Timothy,Gray,Male,Democratic,ocd-jurisdiction/country:us/state:ak/government,20,lower +Zack Fields,William Zachary,Fields,Male,Democratic,ocd-jurisdiction/country:us/state:ak/government,17,lower +Donny Olson,Donald C.,Olson,Male,Democratic,ocd-jurisdiction/country:us/state:ak/government,T,upper +Forrest Dunbar,Forrest A.,Dunbar,Male,Democratic,ocd-jurisdiction/country:us/state:ak/government,J,upper +Laddie Shaw,Laddie,Shaw,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,9,lower +Tom McKay,Thomas,McKay,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,15,lower +Andy Josephson,Andrew Lewis,Josephson,Male,Democratic,ocd-jurisdiction/country:us/state:ak/government,13,lower +Neal Foster,Neal Winston,Foster,Male,Democratic,ocd-jurisdiction/country:us/state:ak/government,39,lower +Jesse Kiehl,Jesse Will,Kiehl,Male,Democratic,ocd-jurisdiction/country:us/state:ak/government,B,upper +Thomas Baker,Thomas,Baker,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,40,lower +Calvin Schrage,Calvin,Schrage,Male,Independent,ocd-jurisdiction/country:us/state:ak/government,12,lower +James Kaufman,James D.,Kaufman,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,F,upper +Bert Stedman,Bert,Stedman,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,A,upper +Mike Prax,Glenn Mike,Prax,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,33,lower +Cliff Groh,Cliff,Groh,Male,Democratic,ocd-jurisdiction/country:us/state:ak/government,18,lower +Gary Stevens,Gary Lee,Stevens,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,C,upper +Robert Myers,Robert,Myers,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,Q,upper +Bryce Edgmon,Bryce,Edgmon,Male,Independent,ocd-jurisdiction/country:us/state:ak/government,37,lower +Ben Carpenter,Benjamin E.,Carpenter,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,8,lower +Scott Kawasaki,Scott Jiu Wo,Kawasaki,Male,Democratic,ocd-jurisdiction/country:us/state:ak/government,P,upper +Dan Saddler,Dan,Saddler,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,24,lower +David Eastman,David Clark,Eastman,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,27,lower +Mike Cronk,Mike,Cronk,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,36,lower +Matt Claman,Matthew W.,Claman,Male,Democratic,ocd-jurisdiction/country:us/state:ak/government,H,upper +Stanley Wright,Stanley A.,Wright,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,22,lower +Mike Shower,Michael Karl,Shower,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,O,upper +Jesse Bjorkman,Jesse,Bjorkman,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,D,upper +David Wilson,David S.,Wilson,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,N,upper +Craig Johnson,Craig,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,10,lower +Click Bishop,Clark C.,Bishop,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,R,upper +Lyman Hoffman,Lyman F.,Hoffman,Male,Democratic,ocd-jurisdiction/country:us/state:ak/government,S,upper +George Rauscher,George,Rauscher,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,29,lower +Frank Tomaszewski,Frank,Tomaszewski,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,34,lower +Jesse Sumner,Jesse,Sumner,Male,Republican,ocd-jurisdiction/country:us/state:ak/government,28,lower +Dan Ortiz,Daniel H.,Ortiz,Male,Independent,ocd-jurisdiction/country:us/state:ak/government,1,lower +Jennie Armstrong,Jennifer,Armstrong,Female,Democratic,ocd-jurisdiction/country:us/state:ak/government,16,lower +Maxine Dibert,Maxine,Dibert,Female,Democratic,ocd-jurisdiction/country:us/state:ak/government,31,lower +Cathy Tilton,Cathy L.,Tilton,Female,Republican,ocd-jurisdiction/country:us/state:ak/government,26,lower +Julie Coulombe,Julie,Coulombe,Female,Republican,ocd-jurisdiction/country:us/state:ak/government,11,lower +Cathy Giessel,Catherine Andrea,Giessel,Female,Republican,ocd-jurisdiction/country:us/state:ak/government,E,upper +Donna Mears,Donna C.,Mears,Female,Democratic,ocd-jurisdiction/country:us/state:ak/government,21,lower +Rebecca Himschoot,Rebecca,Himschoot,Female,Independent,ocd-jurisdiction/country:us/state:ak/government,2,lower +Shelley Hughes,Shelley Steiner,Hughes,Female,Republican,ocd-jurisdiction/country:us/state:ak/government,M,upper +Ashley Carrick,Ashley,Carrick,Female,Democratic,ocd-jurisdiction/country:us/state:ak/government,35,lower +DeLena Johnson,DeLena,Johnson,Female,Republican,ocd-jurisdiction/country:us/state:ak/government,25,lower +Sarah Vance,Sarah Lynn,Vance,Female,Republican,ocd-jurisdiction/country:us/state:ak/government,6,lower +Louise Stutes,Louise Ball,Stutes,Female,Republican,ocd-jurisdiction/country:us/state:ak/government,5,lower +Elvi Gray-Jackson,Elvi,Gray-Jackson,Female,Democratic,ocd-jurisdiction/country:us/state:ak/government,G,upper +Alyse Galvin,Alyse Surratt,Galvin,Female,Independent,ocd-jurisdiction/country:us/state:ak/government,14,lower +Sara Hannan,Sara T.,Hannan,Female,Democratic,ocd-jurisdiction/country:us/state:ak/government,4,lower +Andi Story,Andrea Douglas,Story,Female,Democratic,ocd-jurisdiction/country:us/state:ak/government,3,lower +Löki Tobin,Loki Gale,Tobin,Female,Democratic,ocd-jurisdiction/country:us/state:ak/government,I,upper +Kelly Merrick,Kelly Richards,Merrick,Female,Republican,ocd-jurisdiction/country:us/state:ak/government,L,upper +Genevieve Mina,Genevieve,Mina,Female,Democratic,ocd-jurisdiction/country:us/state:ak/government,19,lower +Jamie Allard,Jamie,Allard,Female,Republican,ocd-jurisdiction/country:us/state:ak/government,23,lower +Billy Beasley,William M.,Beasley,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,28,upper +Mike Kirkland,Mike,Kirkland,Male,Republican,ocd-jurisdiction/country:us/state:al/government,23,lower +Tim Melson,Timothy Ivan,Melson,Male,Republican,ocd-jurisdiction/country:us/state:al/government,1,upper +Allen Treadaway,Benjamin Allen,Treadaway,Male,Republican,ocd-jurisdiction/country:us/state:al/government,51,lower +Ernie Yarbrough,Ernie,Yarbrough,Male,Republican,ocd-jurisdiction/country:us/state:al/government,7,lower +Danny Crawford,Danny,Crawford,Male,Republican,ocd-jurisdiction/country:us/state:al/government,5,lower +Mack Butler,Mack,Butler,Male,Republican,ocd-jurisdiction/country:us/state:al/government,28,lower +Matthew Hammett,Matthew,Hammett,Male,Republican,ocd-jurisdiction/country:us/state:al/government,92,lower +Steve Livingston,Steve,Livingston,Male,Republican,ocd-jurisdiction/country:us/state:al/government,8,upper +Chris England,Christopher John,England,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,70,lower +Brett Easterbrook,Brett,Easterbrook,Male,Republican,ocd-jurisdiction/country:us/state:al/government,65,lower +Kirk Hatcher,Kirk,Hatcher,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,26,upper +Joe Lovvorn,Joe,Lovvorn,Male,Republican,ocd-jurisdiction/country:us/state:al/government,79,lower +Thomas Jackson,Thomas E.,Jackson,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,68,lower +Ron Bolton,Ronald,Bolton,Male,Republican,ocd-jurisdiction/country:us/state:al/government,61,lower +Sam Givhan,Samuel Houston,Givhan,Male,Republican,ocd-jurisdiction/country:us/state:al/government,7,upper +Sam Jones,Samuel Leon,Jones,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,99,lower +Ben Harrison,Ben,Harrison,Male,Republican,ocd-jurisdiction/country:us/state:al/government,2,lower +Bobby Singleton,Bobby D.,Singleton,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,24,upper +Ben Robbins,Benjamin Wayne,Robbins,Male,Republican,ocd-jurisdiction/country:us/state:al/government,33,lower +Troy Stubbs,Troy,Stubbs,Male,Republican,ocd-jurisdiction/country:us/state:al/government,31,lower +Corey Harbison,Corey,Harbison,Male,Republican,ocd-jurisdiction/country:us/state:al/government,12,lower +Neil Rafferty,Neil,Rafferty,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,54,lower +Jim Carns,Jim,Carns,Male,Republican,ocd-jurisdiction/country:us/state:al/government,48,lower +Shay Shelnutt,Shay,Shelnutt,Male,Republican,ocd-jurisdiction/country:us/state:al/government,17,upper +Jeff Sorrells,Jeff,Sorrells,Male,Republican,ocd-jurisdiction/country:us/state:al/government,87,lower +Chris Pringle,Christopher Paul,Pringle,Male,Republican,ocd-jurisdiction/country:us/state:al/government,101,lower +Brock Colvin,Brock,Colvin,Male,Republican,ocd-jurisdiction/country:us/state:al/government,26,lower +Nathaniel Ledbetter,Nathaniel,Ledbetter,Male,Republican,ocd-jurisdiction/country:us/state:al/government,24,lower +Kenyatté Hassell,Kenyatte,Hassell,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,78,lower +Patrick Sellers,Patrick L.,Sellers,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,57,lower +Parker Moore,Parker Duncan,Moore,Male,Republican,ocd-jurisdiction/country:us/state:al/government,4,lower +Greg Reed,Greg J.,Reed,Male,Republican,ocd-jurisdiction/country:us/state:al/government,5,upper +Ed Oliver,Ed,Oliver,Male,Republican,ocd-jurisdiction/country:us/state:al/government,81,lower +Alan Baker,Alan,Baker,Male,Republican,ocd-jurisdiction/country:us/state:al/government,66,lower +Bubba Underwood,Kerry Lee,Underwood,Male,Republican,ocd-jurisdiction/country:us/state:al/government,3,lower +Matt Simpson,Matthew,Simpson,Male,Republican,ocd-jurisdiction/country:us/state:al/government,96,lower +Paul Lee,Paul W.,Lee,Male,Republican,ocd-jurisdiction/country:us/state:al/government,86,lower +Kelvin Lawrence,Kelvin J.,Lawrence,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,69,lower +Donnie Chesteen,James Donald,Chesteen,Male,Republican,ocd-jurisdiction/country:us/state:al/government,29,upper +James Lomax,James,Lomax,Male,Republican,ocd-jurisdiction/country:us/state:al/government,20,lower +Jack Williams,Jack W.,Williams,Male,Republican,ocd-jurisdiction/country:us/state:al/government,34,upper +Chad Robertson,Chad,Robertson,Male,Republican,ocd-jurisdiction/country:us/state:al/government,40,lower +Tracy Estes,John Tracy,Estes,Male,Republican,ocd-jurisdiction/country:us/state:al/government,17,lower +Ritchie Whorton,Ritchie,Whorton,Male,Republican,ocd-jurisdiction/country:us/state:al/government,22,lower +Rex Reynolds,Rex Brian,Reynolds,Male,Republican,ocd-jurisdiction/country:us/state:al/government,21,lower +Phillip Pettus,Phillip,Pettus,Male,Republican,ocd-jurisdiction/country:us/state:al/government,1,lower +Lance Bell,Robert Lance,Bell,Male,Republican,ocd-jurisdiction/country:us/state:al/government,11,upper +Chris Blackshear,Chris,Blackshear,Male,Republican,ocd-jurisdiction/country:us/state:al/government,80,lower +Marcus Paramore,Marcus,Paramore,Male,Republican,ocd-jurisdiction/country:us/state:al/government,89,lower +Steve Clouse,Steve,Clouse,Male,Republican,ocd-jurisdiction/country:us/state:al/government,93,lower +A.J. McCampbell,Artis J.,McCampbell,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,71,lower +Arnold Mooney,Arnold Gaston,Mooney,Male,Republican,ocd-jurisdiction/country:us/state:al/government,43,lower +Craig Lipscomb,Brandon Craig,Lipscomb,Male,Republican,ocd-jurisdiction/country:us/state:al/government,30,lower +Bryan Brinyark,Bryan Scott,Brinyark,Male,Republican,ocd-jurisdiction/country:us/state:al/government,16,lower +Andrew Jones,Andrew,Jones,Male,Republican,ocd-jurisdiction/country:us/state:al/government,10,upper +Jabo Waggoner,James Thomas,Waggoner,Male,Republican,ocd-jurisdiction/country:us/state:al/government,16,upper +Randy Wood,Randy,Wood,Male,Republican,ocd-jurisdiction/country:us/state:al/government,36,lower +Will Barfoot,Will,Barfoot,Male,Republican,ocd-jurisdiction/country:us/state:al/government,25,upper +Curtis Travis,Curtis L.,Travis,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,72,lower +Jay Hovey,Jay,Hovey,Male,Republican,ocd-jurisdiction/country:us/state:al/government,27,upper +Phillip Rigsby,Phillip,Rigsby,Male,Republican,ocd-jurisdiction/country:us/state:al/government,25,lower +Garlan Gudger,Garlan,Gudger,Male,Republican,ocd-jurisdiction/country:us/state:al/government,4,upper +Shane Stringer,Shane,Stringer,Male,Republican,ocd-jurisdiction/country:us/state:al/government,102,lower +Rhett Marques,Rhett,Marques,Male,Republican,ocd-jurisdiction/country:us/state:al/government,91,lower +Rob Stewart,Robert L.,Stewart,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,23,upper +Phillip Ensler,Phillip,Ensler,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,74,lower +Rodger Smitherman,Rodger Mell,Smitherman,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,18,upper +Jim Hill,James E.,Hill,Male,Republican,ocd-jurisdiction/country:us/state:al/government,50,lower +David Faulkner,David,Faulkner,Male,Republican,ocd-jurisdiction/country:us/state:al/government,46,lower +Rick Rehm,Richard,Rehm,Male,Republican,ocd-jurisdiction/country:us/state:al/government,85,lower +Mark Gidley,Mark,Gidley,Male,Republican,ocd-jurisdiction/country:us/state:al/government,29,lower +Larry Stutts,Larry Collins,Stutts,Male,Republican,ocd-jurisdiction/country:us/state:al/government,6,upper +Ontario Tillman,Ontario J.,Tillman,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,56,lower +Kenneth Paschal,Kenneth,Paschal,Male,Republican,ocd-jurisdiction/country:us/state:al/government,73,lower +Prince Chestnut,Prince,Chestnut,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,67,lower +Napoleon Bracy,Napoleon,Bracy,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,98,lower +Anthony Daniels,Anthony L.,Daniels,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,53,lower +Mark Shirey,Mark,Shirey,Male,Republican,ocd-jurisdiction/country:us/state:al/government,100,lower +Dan Roberts,Dan,Roberts,Male,Republican,ocd-jurisdiction/country:us/state:al/government,15,upper +Josh Carnley,Josh,Carnley,Male,Republican,ocd-jurisdiction/country:us/state:al/government,31,upper +Travis Hendrix,Travis T.,Hendrix,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,55,lower +Jamie Kiel,Jamie Glenn,Kiel,Male,Republican,ocd-jurisdiction/country:us/state:al/government,18,lower +Wes Kitchens,Wesley Thomas,Kitchens,Male,Republican,ocd-jurisdiction/country:us/state:al/government,9,upper +Mike Shaw,Mike,Shaw,Male,Republican,ocd-jurisdiction/country:us/state:al/government,47,lower +Scott Stadthagen,Gregory Scott,Stadthagen,Male,Republican,ocd-jurisdiction/country:us/state:al/government,9,lower +Tom Butler,Thomas Wayne,Butler,Male,Republican,ocd-jurisdiction/country:us/state:al/government,2,upper +Randy Price,Randy,Price,Male,Republican,ocd-jurisdiction/country:us/state:al/government,13,upper +Randall Shedd,Randall,Shedd,Male,Republican,ocd-jurisdiction/country:us/state:al/government,11,lower +David Standridge,David,Standridge,Male,Republican,ocd-jurisdiction/country:us/state:al/government,34,lower +Berry Forte,Berry,Forte,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,84,lower +Corley Ellis,Corley,Ellis,Male,Republican,ocd-jurisdiction/country:us/state:al/government,41,lower +Arthur Orr,Arthur,Orr,Male,Republican,ocd-jurisdiction/country:us/state:al/government,3,upper +Keith Kelley,Keith,Kelley,Male,Republican,ocd-jurisdiction/country:us/state:al/government,12,upper +Steve Hurst,Steve,Hurst,Male,Republican,ocd-jurisdiction/country:us/state:al/government,35,lower +Chip Brown,Chip,Brown,Male,Republican,ocd-jurisdiction/country:us/state:al/government,105,lower +Greg Albritton,Gregory,Albritton,Male,Republican,ocd-jurisdiction/country:us/state:al/government,22,upper +Clyde Chambliss,Clyde,Chambliss,Male,Republican,ocd-jurisdiction/country:us/state:al/government,30,upper +Andy Whitt,Andy,Whitt,Male,Republican,ocd-jurisdiction/country:us/state:al/government,6,lower +Russell Bedsole,Russell,Bedsole,Male,Republican,ocd-jurisdiction/country:us/state:al/government,49,lower +Danny Garrett,J. Daniel,Garrett,Male,Republican,ocd-jurisdiction/country:us/state:al/government,44,lower +Matt Woods,Matthew,Woods,Male,Republican,ocd-jurisdiction/country:us/state:al/government,13,lower +Reed Ingram,Robert Reed,Ingram,Male,Republican,ocd-jurisdiction/country:us/state:al/government,75,lower +Gerald Allen,Gerald H.,Allen,Male,Republican,ocd-jurisdiction/country:us/state:al/government,21,upper +Chris Sells,Chris,Sells,Male,Republican,ocd-jurisdiction/country:us/state:al/government,90,lower +Jerry Starnes,Jerry,Starnes,Male,Republican,ocd-jurisdiction/country:us/state:al/government,88,lower +Van Smith,Ivan,Smith,Male,Republican,ocd-jurisdiction/country:us/state:al/government,42,lower +Tim Wadsworth,Timothy Ray,Wadsworth,Male,Republican,ocd-jurisdiction/country:us/state:al/government,14,lower +Chris Elliott,Thomas Christopher,Elliott,Male,Republican,ocd-jurisdiction/country:us/state:al/government,32,upper +David Sessions,David R.,Sessions,Male,Republican,ocd-jurisdiction/country:us/state:al/government,35,upper +Bill Lamb,Bill,Lamb,Male,Republican,ocd-jurisdiction/country:us/state:al/government,62,lower +Jeremy Gray,Jeremy,Gray,Male,Democratic,ocd-jurisdiction/country:us/state:al/government,83,lower +Bob Fincher,Bob,Fincher,Male,Republican,ocd-jurisdiction/country:us/state:al/government,37,lower +Marilyn Lands,Marilyn,Lands,Female,Democratic,ocd-jurisdiction/country:us/state:al/government,10,lower +Jeana Ross,Jeana,Ross,Female,Republican,ocd-jurisdiction/country:us/state:al/government,27,lower +Juandalynn Givan,Juandalynn,Givan,Female,Democratic,ocd-jurisdiction/country:us/state:al/government,60,lower +Laura Hall,Laura,Hall,Female,Democratic,ocd-jurisdiction/country:us/state:al/government,19,lower +Rolanda Hollis,Rolanda M.,Hollis,Female,Democratic,ocd-jurisdiction/country:us/state:al/government,58,lower +Cynthia Almond,Cynthia Lee,Almond,Female,Republican,ocd-jurisdiction/country:us/state:al/government,63,lower +Donna Givens,Donna,Givens,Female,Republican,ocd-jurisdiction/country:us/state:al/government,64,lower +Jennifer Fidler,Jennifer,Fidler,Female,Republican,ocd-jurisdiction/country:us/state:al/government,94,lower +Barbara Drummond,Barbara,Drummond,Female,Democratic,ocd-jurisdiction/country:us/state:al/government,103,lower +Ginny Shaver,Ginny,Shaver,Female,Republican,ocd-jurisdiction/country:us/state:al/government,39,lower +Margie Wilcox,Julia Margaret,Wilcox,Female,Republican,ocd-jurisdiction/country:us/state:al/government,104,lower +Leigh Hulsey,Leigh Griffith,Hulsey,Female,Republican,ocd-jurisdiction/country:us/state:al/government,15,lower +Frances Holk-Jones,Frances,Holk-Jones,Female,Republican,ocd-jurisdiction/country:us/state:al/government,95,lower +Adline Clarke,Adline Cecelia,Clarke,Female,Democratic,ocd-jurisdiction/country:us/state:al/government,97,lower +Merika Coleman,Merika,Coleman,Female,Democratic,ocd-jurisdiction/country:us/state:al/government,19,upper +Terri Collins,Terri,Collins,Female,Republican,ocd-jurisdiction/country:us/state:al/government,8,lower +Mary Moore,Mary,Moore,Female,Democratic,ocd-jurisdiction/country:us/state:al/government,59,lower +Pebblin Warren,Pebblin W.,Warren,Female,Democratic,ocd-jurisdiction/country:us/state:al/government,82,lower +Barbara Boyd,Barbara B.,Boyd,Female,Democratic,ocd-jurisdiction/country:us/state:al/government,32,lower +TaShina Morris,TaShina,Morris,Female,Democratic,ocd-jurisdiction/country:us/state:al/government,77,lower +Debbie Wood,Debbie Hamby,Wood,Female,Republican,ocd-jurisdiction/country:us/state:al/government,38,lower +Linda Coleman-Madison,Linda,Coleman-Madison,Female,Democratic,ocd-jurisdiction/country:us/state:al/government,20,upper +April Weaver,April,Weaver,Female,Republican,ocd-jurisdiction/country:us/state:al/government,14,upper +Vivian Figures,Vivian Davis,Figures,Female,Democratic,ocd-jurisdiction/country:us/state:al/government,33,upper +Susan DuBose,Susan,DuBose,Female,Republican,ocd-jurisdiction/country:us/state:al/government,45,lower +Penni McClammy,Patrice Ernita,McClammy,Female,Democratic,ocd-jurisdiction/country:us/state:al/government,76,lower +Fred Love,Fredrick J.,Love,Male,Democratic,ocd-jurisdiction/country:us/state:ar/government,15,upper +Ron Caldwell,Ronald,Caldwell,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,10,upper +Wade Andrews,Wade,Andrews,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,98,lower +John Maddox,John D.,Maddox,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,86,lower +David Whitaker,David Jeffrey,Whitaker,Male,Democratic,ocd-jurisdiction/country:us/state:ar/government,22,lower +Steve Crowell,Steve,Crowell,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,3,upper +Danny Watson,Danny,Watson,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,88,lower +Jonathan Dismang,Jonathan,Dismang,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,18,upper +Steven Walker,Steven,Walker,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,27,lower +John Payton,John Russell,Payton,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,22,upper +Gary Stubblefield,Gary Don,Stubblefield,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,26,upper +Jack Fortner,Jack,Fortner,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,4,lower +Brandon Achor,Brandon C.,Achor,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,71,lower +Jimmy Hickey,Milton Jimmy,Hickey,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,4,upper +Brian Evans,Brian S.,Evans,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,68,lower +Brit McKenzie,John Brittain,McKenzie,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,7,lower +Mark McElroy,Mark D.,McElroy,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,62,lower +Marcus Richmond,Marcus Edward,Richmond,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,52,lower +Steve Hollowell,Steve,Hollowell,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,37,lower +Joey Carr,Joey L.,Carr,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,34,lower +Jeremiah Moore,Jeremiah Lee,Moore,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,61,lower +Matt Stone,Matt,Stone,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,2,upper +Lee Johnson,Lee,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,47,lower +Blake Johnson,Lowell Blake,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,21,upper +Milton Nicks,Milton,Nicks,Male,Democratic,ocd-jurisdiction/country:us/state:ar/government,35,lower +Stan Berry,Stan,Berry,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,44,lower +Greg Leding,Greg,Leding,Male,Democratic,ocd-jurisdiction/country:us/state:ar/government,30,upper +Dan Sullivan,Dan Alan,Sullivan,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,20,upper +Howard Beaty,Howard M.,Beaty,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,95,lower +Bruce Cozart,Bruce Alan,Cozart,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,91,lower +Austin McCollum,Austin,McCollum,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,8,lower +Ryan Rose,Ryan,Rose,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,48,lower +Ron McNair,Ronald Dean,McNair,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,5,lower +David Ray,David,Ray,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,69,lower +Bart Schulz,Bart,Schulz,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,28,lower +Stetson Painter,Stetson C.,Painter,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,3,lower +Clarke Tucker,Everett Clarke,Tucker,Male,Democratic,ocd-jurisdiction/country:us/state:ar/government,14,upper +Tyler Dees,Tyler,Dees,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,35,upper +Zack Gramlich,Zachary E.,Gramlich,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,50,lower +Jay Richardson,James Dennis,Richardson,Male,Democratic,ocd-jurisdiction/country:us/state:ar/government,49,lower +Clint Penzo,Clint,Penzo,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,31,upper +Kim Hammer,Kim David,Hammer,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,16,upper +Ben Gilmore,Benjamin L.,Gilmore,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,1,upper +Alan Clark,Byron Alan,Clark,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,7,upper +Cameron Cooper,Cameron,Cooper,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,57,lower +Reginald Murdock,Reginald,Murdock,Male,Democratic,ocd-jurisdiction/country:us/state:ar/government,9,upper +Harlan Breaux,Harlan,Breaux,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,6,lower +Mark Johnson,Mark,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,17,upper +Grant Hodges,Grant Logan,Hodges,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,14,lower +Scott Flippo,Scott Patterson,Flippo,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,23,upper +Dwight Tosh,Dwight Crandall,Tosh,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,38,lower +Chad Puryear,Chad,Puryear,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,25,lower +Trey Steimel,Trey,Steimel,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,2,lower +Jon Eubanks,Jon Scott,Eubanks,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,46,lower +Johnny Rye,Johnny,Rye,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,36,lower +Josh Miller,Joshua D.,Miller,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,41,lower +Rick McClure,Rick,McClure,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,29,lower +Steve Magie,Stephen,Magie,Male,Democratic,ocd-jurisdiction/country:us/state:ar/government,56,lower +Les Eaves,Leslie Dale,Eaves,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,58,lower +Matt Duffield,Matt,Duffield,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,53,lower +R.J. Hawk,R.J.,Hawk,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,81,lower +Lanny Fite,Lanny E.,Fite,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,83,lower +Bryan King,Bryan B.,King,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,28,upper +Matthew Shepherd,Matthew Joseph,Shepherd,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,97,lower +Tony Furman,Anthony,Furman,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,82,lower +Ricky Hill,Ricky,Hill,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,11,upper +Andrew Collins,Andrew Joseph,Collins,Male,Democratic,ocd-jurisdiction/country:us/state:ar/government,73,lower +Jon Milligan,Jon,Milligan,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,33,lower +Mike Holcomb,Mike,Holcomb,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,93,lower +Ken Ferguson,Kenneth Bernard,Ferguson,Male,Democratic,ocd-jurisdiction/country:us/state:ar/government,64,lower +Jim Dotson,James Michael,Dotson,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,34,upper +Stephen Meeks,Stephen A.,Meeks,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,42,lower +Aaron Pilkington,Aaron Michel,Pilkington,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,45,lower +Jeremy Wooldridge,Jeremy,Wooldridge,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,1,lower +Roger Lynch,Roger D.,Lynch,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,60,lower +Scott Richardson,Scott,Richardson,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,13,lower +Jeff Wardlaw,Jeffrey Reed,Wardlaw,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,94,lower +Jim Wooten,James Earl,Wooten,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,59,lower +Fred Allen,Fred,Allen,Male,Democratic,ocd-jurisdiction/country:us/state:ar/government,77,lower +Carlton Wing,Carlton,Wing,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,70,lower +Matt Brown,Matthew,Brown,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,55,lower +Rick Beck,Richard Charles,Beck,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,43,lower +Lane Jean,Samuel Lane,Jean,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,99,lower +Jimmy Gazaway,Jimmy D.,Gazaway,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,31,lower +Dave Wallace,David Ray,Wallace,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,19,upper +Kendon Underwood,Kendon Reese,Underwood,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,16,lower +Keith Brooks,Keith,Brooks,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,78,lower +Justin Boyd,Phillip Justin,Boyd,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,27,upper +Mark Berry,Mark H.,Berry,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,26,lower +Matt McKee,Matt,McKee,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,6,upper +John Carr,John Paul,Carr,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,15,lower +Richard McGrew,Richard,McGrew,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,85,lower +Josh Bryant,Joshua Paul,Bryant,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,32,upper +Steve Unger,Steven,Unger,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,19,lower +Jim Petty,Jim,Petty,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,29,upper +Jack Ladyman,Jack R.,Ladyman,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,32,lower +Richard Womack,William Richard,Womack,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,90,lower +Shad Pearce,Shad,Pearce,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,40,lower +Wayne Long,Wayne,Long,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,39,lower +Bart Hester,Bart Franklin,Hester,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,33,upper +Mark Perry,Mark Wilson,Perry,Male,Democratic,ocd-jurisdiction/country:us/state:ar/government,66,lower +Terry Rice,Terry Wilfred,Rice,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,5,upper +Justin Gonzales,Justin Rory,Gonzales,Male,Republican,ocd-jurisdiction/country:us/state:ar/government,89,lower +Robin Lundstrum,Robin Dale Hall,Lundstrum,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,18,lower +Jane English,Elizabeth Jane,English,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,13,upper +Charlene Fite,Edna Charlene Harris Barnes,Fite,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,24,lower +Carol Dalby,Carol,Dalby,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,100,lower +Nicole Clowney,Nicole Lefrancois,Clowney,Female,Democratic,ocd-jurisdiction/country:us/state:ar/government,21,lower +Julie Mayberry,Julie Ann,Mayberry,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,92,lower +Vivian Flowers,Vivian Laveda,Flowers,Female,Democratic,ocd-jurisdiction/country:us/state:ar/government,65,lower +Mindy McAlindon,Mindy,McAlindon,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,10,lower +DeAnn Vaught,DeAnn Kay,Vaught,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,87,lower +Deborah Ferguson,Deborah,Ferguson,Female,Democratic,ocd-jurisdiction/country:us/state:ar/government,63,lower +Joy Springer,Joy Charles,Springer,Female,Democratic,ocd-jurisdiction/country:us/state:ar/government,76,lower +Karilyn Brown,Karilyn Mae Boggan Peterson,Brown,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,67,lower +Linda Chesterfield,Linda Ann Pondexter,Chesterfield,Female,Democratic,ocd-jurisdiction/country:us/state:ar/government,12,upper +Hope Duke,Hope Hendren,Duke,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,12,lower +Sonia Barker,Sonia Eubanks,Barker,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,96,lower +Jamie Scott,Jamie Aleshia,Scott,Female,Democratic,ocd-jurisdiction/country:us/state:ar/government,72,lower +Stephanie Flowers,Stephanie Anne,Flowers,Female,Democratic,ocd-jurisdiction/country:us/state:ar/government,8,upper +Ashley Hudson,Ashley Welch,Hudson,Female,Democratic,ocd-jurisdiction/country:us/state:ar/government,75,lower +Missy Irvin,Missy Thomas,Irvin,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,24,upper +Breanne Davis,Breanne,Davis,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,25,upper +Denise Ennett,Denise Jones,Ennett,Female,Democratic,ocd-jurisdiction/country:us/state:ar/government,80,lower +Kendra Moore,Kendra,Moore,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,23,lower +Rebecca Burkes,Rebecca,Burkes,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,11,lower +Tara Shephard,Tara,Shephard,Female,Democratic,ocd-jurisdiction/country:us/state:ar/government,79,lower +Fran Cavenaugh,Frances Wells,Cavenaugh,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,30,lower +Delia Haak,Delia J.,Haak,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,17,lower +Mary Bentley,Mary Elizabeth,Bentley,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,54,lower +De Hodges,DeAnna Harris,Hodges,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,9,lower +Cindy Crawford,Cindy,Crawford,Female,Republican,ocd-jurisdiction/country:us/state:ar/government,51,lower +Tippi McCullough,Tippi Lynn,McCullough,Female,Democratic,ocd-jurisdiction/country:us/state:ar/government,74,lower +David Marshall,David,Marshall,Male,Republican,ocd-jurisdiction/country:us/state:az/government,7,lower +Oscar De Los Santos,Oscar,De Los Santos,Male,Democratic,ocd-jurisdiction/country:us/state:az/government,11,lower +Ben Toma,Ben,Toma,Male,Republican,ocd-jurisdiction/country:us/state:az/government,27,lower +Frank Carroll,Frank P.,Carroll,Male,Republican,ocd-jurisdiction/country:us/state:az/government,28,upper +Keith Seaman,Keith,Seaman,Male,Democratic,ocd-jurisdiction/country:us/state:az/government,16,lower +David Gowan,David Mathew,Gowan,Male,Republican,ocd-jurisdiction/country:us/state:az/government,19,upper +Travis Grantham,Travis W.,Grantham,Male,Republican,ocd-jurisdiction/country:us/state:az/government,14,lower +Juan Mendez,Juan Jose,Mendez,Male,Democratic,ocd-jurisdiction/country:us/state:az/government,8,upper +Justin Heap,Justin,Heap,Male,Republican,ocd-jurisdiction/country:us/state:az/government,10,lower +Sonny Borrelli,Sonny,Borrelli,Male,Republican,ocd-jurisdiction/country:us/state:az/government,30,upper +Joseph Chaplik,Joseph,Chaplik,Male,Republican,ocd-jurisdiction/country:us/state:az/government,3,lower +Jake Hoffman,Jake,Hoffman,Male,Republican,ocd-jurisdiction/country:us/state:az/government,15,upper +Cesar Aguilar,Cesar,Aguilar,Male,Democratic,ocd-jurisdiction/country:us/state:az/government,26,lower +Warren Petersen,Warren H.,Petersen,Male,Republican,ocd-jurisdiction/country:us/state:az/government,14,upper +Neal Carter,Neal K.,Carter,Male,Republican,ocd-jurisdiction/country:us/state:az/government,15,lower +Lupe Contreras,Lupe Chavira,Contreras,Male,Democratic,ocd-jurisdiction/country:us/state:az/government,22,lower +Tim Dunn,Timothy Marvin,Dunn,Male,Republican,ocd-jurisdiction/country:us/state:az/government,25,lower +John Kavanagh,John,Kavanagh,Male,Republican,ocd-jurisdiction/country:us/state:az/government,3,upper +David Cook,David L.,Cook,Male,Republican,ocd-jurisdiction/country:us/state:az/government,7,lower +Steve Montenegro,Steve B.,Montenegro,Male,Republican,ocd-jurisdiction/country:us/state:az/government,29,lower +David Livingston,David Alan,Livingston,Male,Republican,ocd-jurisdiction/country:us/state:az/government,28,lower +Leo Biasiucci,Leo,Biasiucci,Male,Republican,ocd-jurisdiction/country:us/state:az/government,30,lower +Dave Farnsworth,David Christian,Farnsworth,Male,Republican,ocd-jurisdiction/country:us/state:az/government,10,upper +J.D. Mesnard,Javan Daniel,Mesnard,Male,Republican,ocd-jurisdiction/country:us/state:az/government,13,upper +Lupe Diaz,Lupe,Diaz,Male,Republican,ocd-jurisdiction/country:us/state:az/government,19,lower +Cory McGarr,Cory,McGarr,Male,Republican,ocd-jurisdiction/country:us/state:az/government,17,lower +Alexander Kolodin,Alexander,Kolodin,Male,Republican,ocd-jurisdiction/country:us/state:az/government,3,lower +Kevin Payne,Kevin,Payne,Male,Republican,ocd-jurisdiction/country:us/state:az/government,27,lower +Justin Wilmeth,Justin,Wilmeth,Male,Republican,ocd-jurisdiction/country:us/state:az/government,2,lower +T.J. Shope,Thomas Ray,Shope,Male,Republican,ocd-jurisdiction/country:us/state:az/government,16,upper +Austin Smith,Austin,Smith,Male,Republican,ocd-jurisdiction/country:us/state:az/government,29,lower +Myron Tsosie,Myron,Tsosie,Male,Democratic,ocd-jurisdiction/country:us/state:az/government,6,lower +Michael Carbone,Michael,Carbone,Male,Republican,ocd-jurisdiction/country:us/state:az/government,25,lower +Matt Gress,Matt,Gress,Male,Republican,ocd-jurisdiction/country:us/state:az/government,4,lower +Charles Lucking,Charles Walter,Lucking,Male,Democratic,ocd-jurisdiction/country:us/state:az/government,5,lower +Anthony Kern,Anthony T.,Kern,Male,Republican,ocd-jurisdiction/country:us/state:az/government,27,upper +John Gillette,John,Gillette,Male,Republican,ocd-jurisdiction/country:us/state:az/government,30,lower +Brian Fernandez,Brian S.,Fernandez,Male,Democratic,ocd-jurisdiction/country:us/state:az/government,23,upper +Flavio Bravo,Flavio G.,Bravo,Male,Democratic,ocd-jurisdiction/country:us/state:az/government,26,upper +Seth Blattman,Seth,Blattman,Male,Democratic,ocd-jurisdiction/country:us/state:az/government,9,lower +Laurin Hendrix,Laurin,Hendrix,Male,Republican,ocd-jurisdiction/country:us/state:az/government,14,lower +Quang Nguyen,Quang H.,Nguyen,Male,Republican,ocd-jurisdiction/country:us/state:az/government,1,lower +Ken Bennett,Kenneth Roy,Bennett,Male,Republican,ocd-jurisdiction/country:us/state:az/government,1,upper +Chris Mathis,Christopher Haley,Mathis,Male,Democratic,ocd-jurisdiction/country:us/state:az/government,18,lower +Betty Villegas,Betty J.,Villegas,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,20,lower +Stacey Travers,Anastasia,Travers,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,12,lower +Theresa Hatathlie,Theresa,Hatathlie-Delmar,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,6,upper +Lorena Austin,Lorena,Austin,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,9,lower +Beverly Pingerelli,Beverly,Pingerelli,Female,Republican,ocd-jurisdiction/country:us/state:az/government,28,lower +Sarah Liguori,Sarah,Liguori,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,5,lower +Jacqueline Parker,Jacqueline,Parker,Female,Republican,ocd-jurisdiction/country:us/state:az/government,15,lower +Christine Marsh,Christine Porter,Marsh,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,4,upper +Lydia Hernandez,Lydia,Hernandez,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,24,lower +Selina Bliss,Selina,Bliss,Female,Republican,ocd-jurisdiction/country:us/state:az/government,1,lower +Consuelo Hernandez,Consuelo,Hernandez,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,21,lower +Eva Burch,Eva,Burch,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,9,upper +Lela Alston,Lela,Alston,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,5,upper +Mae Peshlakai,Mae,Peshlakai,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,6,lower +Janae Shamp,Janae,Shamp,Female,Republican,ocd-jurisdiction/country:us/state:az/government,29,upper +Mitzi Epstein,Denise,Epstein,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,12,upper +Elda Luna-Nájera,Elda,Luna-Najera,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,22,lower +Nancy Gutierrez,Nancy Burke,Gutierrez,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,18,lower +Judy Schwiebert,Judy,Schwiebert,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,2,lower +Wendy Rogers,Wendy,Rogers,Female,Republican,ocd-jurisdiction/country:us/state:az/government,7,upper +Junelle Cavero,Junelle,Cavero Harnal,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,11,lower +Rachel Jones,Rachel,Jones,Female,Republican,ocd-jurisdiction/country:us/state:az/government,17,lower +Patty Contreras,Patricia,Contreras,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,12,lower +Anna Hernandez,Anna,Hernandez,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,24,upper +Sally Gonzales,Sally Ann,Gonzales,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,20,upper +Barbara Parker,Barbara,Parker,Female,Republican,ocd-jurisdiction/country:us/state:az/government,10,lower +Eva Diaz,Eva,Diaz,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,22,upper +Sine Kerr,Sine,Kerr,Female,Republican,ocd-jurisdiction/country:us/state:az/government,25,upper +Priya Sundareshan,Priyanka Malur,Sundareshan,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,18,upper +Melody Hernandez,Melody,Hernandez,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,8,lower +Teresa Martinez,Teresa A.,Martinez,Female,Republican,ocd-jurisdiction/country:us/state:az/government,16,lower +Catherine Miranda,Catherine H.,Miranda,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,11,upper +Mariana Sandoval,Mariana,Sandoval,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,23,lower +Justine Wadsack,Justine,Wadsack,Female,Republican,ocd-jurisdiction/country:us/state:az/government,17,upper +Alma Hernández,Alma,Hernandez,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,20,lower +Michele Peña,Michele,Pena,Female,Republican,ocd-jurisdiction/country:us/state:az/government,23,lower +Julie Willoughby,Julie,Willoughby,Female,Republican,ocd-jurisdiction/country:us/state:az/government,13,lower +Deborah Nardozzi,Deborah,Nardozzi,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,8,lower +Quantá Crews,Quanta,Crews,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,26,lower +Rosanna Gabaldón,Rosanna Rodriguez,Gabaldon,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,21,upper +Stephanie Stahl Hamilton,Stephanie,Stahl Hamilton,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,21,lower +Shawnna Bolick,Shawnna,Bolick,Female,Republican,ocd-jurisdiction/country:us/state:az/government,2,upper +Analise Ortiz,Analise,Ortiz,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,24,lower +Jennifer Pawlik,Jennifer,Pawlik,Female,Democratic,ocd-jurisdiction/country:us/state:az/government,13,lower +Gail Griffin,Gail,Griffin,Female,Republican,ocd-jurisdiction/country:us/state:az/government,19,lower +Matt Haney,Matthew Craig,Haney,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,17,lower +James Gallagher,James,Gallagher,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,3,lower +Tom Lackey,Thomas W.,Lackey,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,34,lower +Corey Jackson,Corey A.,Jackson,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,60,lower +Greg Wallis,Gregory Robert,Wallis,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,47,lower +Devon Mathis,Devon John,Mathis,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,33,lower +Juan Alanis,Juan,Alanis,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,22,lower +Chris Ward,Christopher M.,Ward,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,78,lower +Mike Gipson,Mike A.,Gipson,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,65,lower +Eduardo Garcia,Eduardo,Garcia,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,36,lower +Kelly Seyarto,Dennis Kelly,Seyarto,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,32,upper +Roger Niello,Roger W.,Niello,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,6,upper +Avelino Valencia,Avelino,Valencia,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,68,lower +Anthony Portantino,Anthony J.,Portantino,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,25,upper +Jim Patterson,James Norwood,Patterson,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,8,lower +Jesse Gabriel,Jesse Samuel,Gabriel,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,46,lower +Juan Carrillo,Juan,Carrillo,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,39,lower +Brian Jones,Brian W.,Jones,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,40,upper +Henry Stern,Henry I.,Stern,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,27,upper +Josh Lowenthal,Josh,Lowenthal,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,69,lower +Marc Berman,Marc,Berman,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,23,lower +Reggie Jones-Sawyer,Reginald Byron,Jones-Sawyer,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,57,lower +Rick Zbur,Richard Chavez,Zbur,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,51,lower +Bill Dodd,William Harold,Dodd,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,3,upper +Tom Umberg,Thomas John,Umberg,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,34,upper +Phillip Chen,Phillip,Chen,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,59,lower +David Alvarez,David A.,Alvarez,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,80,lower +Steve Padilla,Steve,Padilla,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,18,upper +Isaac Bryan,Isaac Gregory,Bryan,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,55,lower +Damon Connolly,Damon,Connolly,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,12,lower +Miguel Santiago,Miguel,Santiago,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,54,lower +John Laird,John,Laird,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,17,upper +Brian Maienschein,Brian,Maienschein,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,76,lower +Ash Kalra,Ash,Kalra,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,25,lower +Carlos Villapudua,Carlos,Villapudua,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,13,lower +Dave Min,David Kunnghee,Min,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,37,upper +Bob Archuleta,Bobby Jerry,Archuleta,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,30,upper +Scott Wiener,Scott,Wiener,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,11,upper +Evan Low,Evan,Low,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,26,lower +Josh Becker,Josh,Becker,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,13,upper +Joe Patterson,Joe,Patterson,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,5,lower +Steve Glazer,Steven Mitchell,Glazer,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,7,upper +Heath Flora,Heath Hubert,Flora,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,9,lower +Joshua Hoover,Joshua Ryan,Hoover,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,7,lower +Mike McGuire,Michael T.,McGuire,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,2,upper +Bill Essayli,Bilal Ali,Essayli,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,63,lower +Tim Grayson,Timothy S.,Grayson,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,15,lower +Scott Wilk,Scott Thomas,Wilk,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,21,upper +Steve Bennett,Steve,Bennett,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,38,lower +Robert Rivas,Robert A.,Rivas,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,29,lower +Mike Fong,Mike,Fong,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,49,lower +Phil Ting,Philip Yu-Li,Ting,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,19,lower +James Ramos,James C.,Ramos,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,45,lower +Gregg Hart,Gregg,Hart,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,37,lower +Chris Holden,Christopher R.,Holden,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,41,lower +Dave Cortese,David Dominic,Cortese,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,15,upper +Jim Wood,Jim,Wood,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,2,lower +Al Muratsuchi,Albert Yasuro,Muratsuchi,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,66,lower +Richard Roth,Richard Dale,Roth,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,31,upper +Brian Dahle,Brian,Dahle,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,1,upper +Joaquin Arambula,Joaquin,Arambula,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,31,lower +Josh Newman,Josh,Newman,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,29,upper +Freddie Rodriguez,Freddie,Rodriguez,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,53,lower +Steve Bradford,Steven,Bradford,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,35,upper +Alex Lee,Alex Tinming,Lee,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,24,lower +Kevin McCarty,Kevin,McCarty,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,6,lower +Anthony Rendon,Anthony,Rendon,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,62,lower +Tri Ta,Tri D.,Ta,Male,Republican,ocd-jurisdiction/country:us/state:ca/government,70,lower +Ben Allen,Benjamin J.,Allen,Male,Democratic,ocd-jurisdiction/country:us/state:ca/government,24,upper +Diane Papan,Diane,Papan,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,21,lower +Eloise Reyes,Eloise Gomez,Reyes,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,50,lower +Tina McKinnor,Tina Simone,McKinnor,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,61,lower +Susan Eggman,Susan Talamantes,Eggman,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,5,upper +Marie Alvarado-Gil,Marie,Alvarado-Gil,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,4,upper +Aisha Wahab,Aisha,Wahab,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,10,upper +Melissa Hurtado,Melissa,Hurtado,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,16,upper +Buffy Wicks,Buffy Jo Christina,Wicks,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,14,lower +Lori Wilson,Lori D.,Wilson,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,11,lower +Susan Rubio,Susan,Rubio,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,22,upper +Catherine Blakespear,Catherine S.,Blakespear,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,38,upper +Dawn Addis,Dawn,Addis,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,30,lower +Cecilia Aguiar-Curry,Cecilia M.,Aguiar-Curry,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,4,lower +Jacqui Irwin,Jacqui Van Egmond,Irwin,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,42,lower +Esmeralda Soria,Esmeralda,Zamudio Soria,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,27,lower +Mia Bonta,Mialisa Tania,Bonta,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,18,lower +Laurie Davies,Laurie Ann,Davies,Female,Republican,ocd-jurisdiction/country:us/state:ca/government,74,lower +Liz Ortega,Elizabeth,Ortega-Toro,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,20,lower +Blanca Pacheco,Blanca,Pacheco,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,64,lower +Sharon Quirk-Silva,Sharon,Quirk-Silva,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,67,lower +Caroline Menjivar,Caroline,Menjivar,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,20,upper +María Elena Durazo,Maria Elena,Durazo,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,26,upper +Akilah Weber,Akilah Faizah,Weber,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,79,lower +Marie Waldron,Marie,Waldron,Female,Republican,ocd-jurisdiction/country:us/state:ca/government,75,lower +Pilar Schiavo,Pilar,Schiavo,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,40,lower +Anna Caballero,Anna Marie,Caballero,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,14,upper +Rosilicie Ochoa Bogh,Rosilicie,Ochoa Bogh,Female,Republican,ocd-jurisdiction/country:us/state:ca/government,23,upper +Sabrina Cervantes,Sabrina,Cervantes,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,58,lower +Jasmeet Bains,Jasmeet,Bains,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,35,lower +Janet Nguyen,Janet Q.,Nguyen,Female,Republican,ocd-jurisdiction/country:us/state:ca/government,36,upper +Tasha Boerner,Tasha Nicole,Boerner,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,77,lower +Shannon Grove,Shannon Lee,Grove,Female,Republican,ocd-jurisdiction/country:us/state:ca/government,12,upper +Lola Smallwood-Cuevas,Lola,Smallwood-Cuevas,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,28,upper +Wendy Carrillo,Wendy Maria,Carrillo Dono,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,52,lower +Angelique Ashby,Angelique V.,Ashby,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,8,upper +Megan Dahle,Megan Elizabeth,Dahle,Female,Republican,ocd-jurisdiction/country:us/state:ca/government,1,lower +Cottie Petrie-Norris,Catherine Ann,Petrie-Norris,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,73,lower +Gail Pellerin,Gail,Pellerin,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,28,lower +Lisa Calderon,Lisa Yvette,Calderon,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,56,lower +Toni Atkins,Toni Gayle,Atkins,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,39,upper +Laura Friedman,Laura Syril,Friedman,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,44,lower +Blanca Rubio,Blanca Estela,Rubio,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,48,lower +Stephanie Nguyen,Stephanie,Nguyen,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,10,lower +Kate Sanchez,Kathryn A.,Sanchez,Female,Republican,ocd-jurisdiction/country:us/state:ca/government,71,lower +Monique Limón,S. Monique,Limon,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,19,upper +Lena Gonzalez,Lena Adriana,Gonzalez,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,33,upper +Diane Dixon,Diane Brooks,Dixon,Female,Republican,ocd-jurisdiction/country:us/state:ca/government,72,lower +Rebecca Bauer-Kahan,Rebecca,Bauer-Kahan,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,16,lower +Nancy Skinner,Nancy,Skinner,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,9,upper +Luz Rivas,Luz Maria,Rivas,Female,Democratic,ocd-jurisdiction/country:us/state:ca/government,43,lower +Dylan Roberts,Dylan,Roberts,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,8,upper +Robert Rodriguez,Robert,Rodriguez,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,32,upper +Bob Marshall,Robert,Marshall,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,43,lower +Ken DeGraaf,Kenneth G.,DeGraaf,Male,Republican,ocd-jurisdiction/country:us/state:co/government,22,lower +Perry Will,Perry,Will,Male,Republican,ocd-jurisdiction/country:us/state:co/government,5,upper +Cleave Simpson,Cleave,Simpson,Male,Republican,ocd-jurisdiction/country:us/state:co/government,6,upper +Kyle Mullica,Kyle Alan John,Mullica,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,24,upper +Ron Weinberg,Ron,Weinberg,Male,Republican,ocd-jurisdiction/country:us/state:co/government,51,lower +Kevin Priola,Kevin,Priola,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,13,upper +Chris Kolker,Christopher,Kolker,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,16,upper +Chad Clifford,Chad,Clifford,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,37,lower +William Lindstedt,William,Lindstedt,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,33,lower +Paul Lundeen,Paul,Lundeen,Male,Republican,ocd-jurisdiction/country:us/state:co/government,9,upper +Tom Sullivan,Leo Thomas,Sullivan,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,27,upper +Ty Winter,Ty,Winter,Male,Republican,ocd-jurisdiction/country:us/state:co/government,47,lower +Chris Hansen,Christopher Joshi,Hansen,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,31,upper +Don Wilson,Don,Wilson,Male,Republican,ocd-jurisdiction/country:us/state:co/government,20,lower +Matt Martinez,Matthew,Martinez,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,62,lower +Kevin Van Winkle,Kevin,Van Winkle,Male,Republican,ocd-jurisdiction/country:us/state:co/government,30,upper +Kyle Brown,Kyle,Brown,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,12,lower +Mark Baisley,Mark,Baisley,Male,Republican,ocd-jurisdiction/country:us/state:co/government,4,upper +Gabe Evans,Timothy Gabriel Joseph,Evans,Male,Republican,ocd-jurisdiction/country:us/state:co/government,48,lower +Mike Lynch,Michael,Lynch,Male,Republican,ocd-jurisdiction/country:us/state:co/government,65,lower +Rick Taggart,John Merrick,Taggart,Male,Republican,ocd-jurisdiction/country:us/state:co/government,55,lower +James Coleman,James Rashad,Coleman,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,33,upper +Alex Valdez,Alex James,Valdez,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,5,lower +Steven Woodrow,Steven Lezell,Woodrow,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,2,lower +Javier Mabrey,Javier,Mabrey,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,1,lower +Nick Hinrichsen,Nick,Hinrichsen,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,3,upper +Scott Bottoms,Scott T.,Bottoms,Male,Republican,ocd-jurisdiction/country:us/state:co/government,15,lower +Ryan Armagost,Ryan,Armagost,Male,Republican,ocd-jurisdiction/country:us/state:co/government,64,lower +Larry Liston,Lawrence G.,Liston,Male,Republican,ocd-jurisdiction/country:us/state:co/government,10,upper +Matt Soper,Matt,Soper,Male,Republican,ocd-jurisdiction/country:us/state:co/government,54,lower +Andy Boesenecker,Andrew,Boesenecker,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,53,lower +Rod Bockenfeld,Rod,Bockenfeld,Male,Republican,ocd-jurisdiction/country:us/state:co/government,56,lower +Tony Hartsook,Anthony J.,Hartsook,Male,Republican,ocd-jurisdiction/country:us/state:co/government,44,lower +Rod Pelton,Rod,Pelton,Male,Republican,ocd-jurisdiction/country:us/state:co/government,35,upper +Richard Holtorf,Richard M.,Alonso Holtorf,Male,Republican,ocd-jurisdiction/country:us/state:co/government,63,lower +Marc Snyder,Marc Alan,Snyder,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,18,lower +Tony Exum,Thomas,Exum,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,11,upper +Tim Hernández,Tim,Hernandez,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,4,lower +Manny Rutinel,Tonty,Rutinel,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,32,lower +David Ortiz,David Daniel,Ortiz,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,38,lower +Jeff Bridges,Jeff,Bridges,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,26,upper +Bob Gardner,Robert S.,Gardner,Male,Republican,ocd-jurisdiction/country:us/state:co/government,12,upper +Steve Fenberg,Stephen,Fenberg,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,18,upper +Byron Pelton,Byron H.,Pelton,Male,Republican,ocd-jurisdiction/country:us/state:co/government,1,upper +Marc Catlin,Marc,Catlin,Male,Republican,ocd-jurisdiction/country:us/state:co/government,58,lower +Jim Smallwood,James,Smallwood,Male,Republican,ocd-jurisdiction/country:us/state:co/government,2,upper +Chris Kennedy,Christopher deGruy,Kennedy,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,30,lower +Mike Weissman,Mike,Weissman,Male,Democratic,ocd-jurisdiction/country:us/state:co/government,36,lower +Shannon Bird,Shannon Kathleen,Bird,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,29,lower +Stephanie Vigil,Stephanie,Vigil,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,16,lower +Cathy Kipp,Cathy,Kipp,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,52,lower +Mary Young,Mary McNamara,Young,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,50,lower +Sheila Lieder,Sheila,Lieder,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,28,lower +Barbara McLachlan,Barbara,McLachlan,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,59,lower +Rose Pugliese,Rose Femia,Pugliese,Female,Republican,ocd-jurisdiction/country:us/state:co/government,14,lower +Julie McCluskie,Julie Lynn,McCluskie,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,13,lower +Iman Jodeh,Iman Mohamad,Jodeh,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,41,lower +Regina English,Regina,English,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,17,lower +Jennifer Parenti,Jennifer,Parenti,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,19,lower +Lindsey Daugherty,Lindsey Nichole,Daugherty,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,24,lower +Joann Ginal,Joann,Ginal,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,14,upper +Mary Bradfield,Mary,Bradfield,Female,Republican,ocd-jurisdiction/country:us/state:co/government,21,lower +Sonya Jaquez Lewis,Sonya,Jaquez Lewis,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,17,upper +Julia Marvin,Julia,Marvin,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,31,lower +Janice Marchman,Janice,Marchman,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,15,upper +Leslie Herod,Leslie,Herod,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,8,lower +Rhonda Fields,Rhonda Marshall,Fields,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,28,upper +Jessie Danielson,Jessie,Danielson,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,22,upper +Karen McCormick,Karen A.,McCormick,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,11,lower +Judy Amabile,Judith,Amabile,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,49,lower +Meghan Lukens,Meghan,Lukens,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,26,lower +Janice Rich,Janice,Rich,Female,Republican,ocd-jurisdiction/country:us/state:co/government,7,upper +Junie Joseph,Junie,Joseph,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,10,lower +Stephanie Luck,Stephanie,Luck,Female,Republican,ocd-jurisdiction/country:us/state:co/government,60,lower +Tammy Story,Tamara Lee,Story,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,25,lower +Emily Sirota,Emily Lipp,Sirota,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,9,lower +Lisa Frizell,Elizabeth Norris,Frizell,Female,Republican,ocd-jurisdiction/country:us/state:co/government,45,lower +Janet Buckner,Janet Thomas,Buckner,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,29,upper +Elisabeth Epps,Elisabeth,Epps,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,6,lower +Tisha Mauro,Tisha,Mauro,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,46,lower +Naquetta Ricks,Naquetta,Ricks,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,40,lower +Rachel Zenzinger,Rachel,Zenzinger,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,19,upper +Brianna Titone,Brianna,Titone,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,27,lower +Barbara Kirkmeyer,Barbara,Kirkmeyer,Female,Republican,ocd-jurisdiction/country:us/state:co/government,23,upper +Lisa Cutter,Lisa Ann,Cutter,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,20,upper +Brandi Bradley,Brandi,Bradley,Female,Republican,ocd-jurisdiction/country:us/state:co/government,39,lower +Eliza Hamrick,Eliza C.,Hamrick,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,61,lower +Lorena García,Lorena,Garcia,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,35,lower +Elizabeth Velasco,Elizabeth,Velasco,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,57,lower +Dafna Michaelson Jenet,Dafna,Michaelson Jenet,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,21,upper +Jenny Willford,Jenny Clay,Willford,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,34,lower +Meg Froelich,Meg M.,Froelich,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,3,lower +Julie Gonzales,Julie,Gonzales,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,34,upper +Monica Duran,Monica Irasema,Duran,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,23,lower +Jennifer Bacon,Jennifer,Bacon,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,7,lower +Faith Winter,Faith,Winter,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,25,upper +Mandy Lindsay,Mandy,Lindsay,Female,Democratic,ocd-jurisdiction/country:us/state:co/government,42,lower +David Labriola,David K.,Labriola,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,131,lower +Steve Stafstrom,Steven J.,Stafstrom,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,129,lower +Francis Rexford Cooley,Francis Rexford,Cooley,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,22,lower +Keith Denning,Keith,Denning,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,42,lower +Norm Needleman,Norman,Needleman,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,33,upper +Michael Quinn,Michael D.,Quinn,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,82,lower +Mike D'Agostino,Michael C.,D'Agostino,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,91,lower +Gary Turco,Gary A.,Turco,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,27,lower +Kevin Brown,Kevin,Brown,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,56,lower +Jason Perillo,Jason,Perillo,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,113,lower +Rick Hayes,Ricky L.,Hayes,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,51,lower +Chris Poulos,Christopher,Poulos,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,81,lower +John Kissel,John Andrew,Kissel,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,7,upper +Frank Smith,Frank J.,Smith,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,118,lower +Brian Lanoue,Brian L.,Lanoue,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,45,lower +Jonathan Steinberg,Jonathan Philip,Steinberg,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,136,lower +Marty Foncello,Martin,Foncello,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,107,lower +Geoff Luxenberg,Geoffrey R.,Luxenberg,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,12,lower +Aundré Bumgardner,Aundre,Bumgardner,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,41,lower +Kevin Ryan,Kevin,Ryan,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,139,lower +Jeff Gordon,Jeffrey,Gordon,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,35,upper +Anthony Nolan,Anthony L.,Nolan,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,39,lower +Steve Meskers,Stephen Robert,Meskers,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,150,lower +Henri Martin,Henri,Martin,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,31,upper +Hector Arzeno,Hector,Arzeno,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,151,lower +Andre Baker,Andre F.,Baker,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,124,lower +Matt Lesser,Matthew L.,Lesser,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,9,upper +Derek Slap,Derek,Slap,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,5,upper +Tony Scott,Tony,Scott,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,112,lower +Travis Simms,Travis L.,Simms,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,140,lower +Jack Fazzino,Jonathan,Fazzino,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,83,lower +Kevin Kelly,Kevin C.,Kelly,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,21,upper +Craig Fishbein,Craig Charles,Fishbein,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,90,lower +Joe Polletta,Joseph,Polletta,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,68,lower +Ron Napoli,Ronald A.,Napoli,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,73,lower +Raghib Allie-Brennan,Raghib Ismail,Allie-Brennan,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,2,lower +Joshua Hall,Joshua Malik,Hall,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,7,lower +Mark DeCaprio,Mark,DeCaprio,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,48,lower +Joe Hoxha,Joe,Hoxha,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,78,lower +Bill Pizzuto,William,Pizzuto,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,71,lower +Seth Bronko,Seth,Bronko,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,70,lower +Rick Lopes,Richard P.,Lopes,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,6,upper +David Michel,David,Michel,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,146,lower +Josh Elliott,Joshua A.,Elliott,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,88,lower +Tim Ackert,Timothy,Ackert,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,8,lower +Mitch Bolinsky,Mitchell S.,Bolinsky,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,106,lower +Tom Arnone,Thomas,Arnone,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,58,lower +Manny Sanchez,Emmanuel,Sanchez,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,24,lower +Dave Rutigliano,David J.,Rutigliano,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,123,lower +Larry Butler,Larry B.,Butler,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,72,lower +John Fonfara,John Walter,Fonfara,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,1,upper +Julio Concepción,Julio A.,Concepcion,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,4,lower +John-Michael Parker,John-Michael,Parker,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,101,lower +Jorge Cabrera,Jorge,Cabrera,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,17,upper +Ryan Fazio,Ryan,Fazio,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,36,upper +Hubert Delany,Hubert Douglas,Delany,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,144,lower +Stephen Harding,Stephen G.,Harding,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,30,upper +Ben McGorty,Bernard H.,McGorty,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,122,lower +Bob Godfrey,Robert D.,Godfrey,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,110,lower +Michael DiGiovancarlo,Michael,DiGiovancarlo,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,74,lower +Joe Zullo,Joseph H.,Zullo,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,99,lower +Kurt Vail,Kurt,Vail,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,52,lower +Juan Candelaria,Juan R.,Candelaria,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,95,lower +Devin Carney,Devin R.,Carney,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,23,lower +Kadeem Roberts,Kadeem,Roberts,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,137,lower +Steve Weir,Stephen,Weir,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,55,lower +Jason Rojas,Jason,Rojas,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,9,lower +Herron Gaston,Herron Keyon,Gaston,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,23,upper +Tom Delnicki,Thomas A.,Delnicki,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,14,lower +Bill Heffernan,William J.,Heffernan,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,115,lower +Al Paolillo,Alphonse,Paolillo,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,97,lower +John Piscopo,John E.,Piscopo,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,76,lower +Derell Wilson,Derell,Wilson,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,46,lower +Gary Winfield,Gary A.,Winfield,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,10,upper +Chris Aniskovich,Chris,Aniskovich,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,35,lower +M.D. Rahman,M.D. Masudur,Rahman,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,4,upper +Bob Duff,Robert Bruce,Duff,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,25,upper +Marcus Brown,Marcus A.,Brown Harrigan,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,127,lower +Antonio Felipe,Antonio D.,Felipe,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,130,lower +Jimmy Sánchez,James B.,Sanchez,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,6,lower +Peter Tercyak,Peter A.,Tercyak,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,26,lower +Martin Looney,Martin M.,Looney,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,11,upper +James Maroney,James J.,Maroney,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,14,upper +Roland Lemar,Roland J.,Lemar,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,96,lower +Matthew Ritter,Matthew Delis,Ritter,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,1,lower +Rob Sampson,Robert Charles,Sampson,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,16,upper +Pat Boyd,Patrick S.,Boyd,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,50,lower +Doug McCrory,Douglas M.,McCrory,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,2,upper +Bobby Sanchez,Robert C.,Sanchez,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,25,lower +Geraldo Reyes,Geraldo C.,Reyes,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,75,lower +Jason Doucette,Jason Edward,Doucette,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,13,lower +Pat Callahan,Patrick,Callahan,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,108,lower +Brandon Chafee,Brandon,Chafee,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,33,lower +Vincent Candelora,Vincent J.,Candelora,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,86,lower +Greg Howard,Greg,Howard,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,43,lower +Jay Case,Jay,Case,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,63,lower +Corey Paris,Corey Phillip,Paris,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,145,lower +Henry Genga,Henry J.,Genga,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,10,lower +Charles Ferraro,Charles J.,Ferraro,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,117,lower +Doug Dubitsky,Douglas,Dubitsky,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,47,lower +Tony Hwang,Anthony T.,Hwang,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,28,upper +Bobby Gibson,Bobby G.,Gibson,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,15,lower +Paul Cicarella,Paul,Cicarella,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,34,upper +Eric Berthel,Eric C.,Berthel,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,32,upper +Christopher Rosario,Christopher,Rosario,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,128,lower +Fred Gee,Fred Douglas,Gee,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,126,lower +Mike Demicco,Mike,Demicco,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,21,lower +Mark Anderson,Mark Werner,Anderson,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,62,lower +Gregg Haddad,Gregory S.,Haddad,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,54,lower +Farley Santos,Farley,Santos,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,109,lower +Matt Blumenthal,Matthew S.,Blumenthal,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,147,lower +Billy Buckbee,William J.,Buckbee,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,67,lower +Tom O'Dea,Thomas Patrick,O'Dea,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,125,lower +Saud Anwar,M. Saud,Anwar,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,3,upper +Jeff Currey,Jeffrey A.,Currey,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,11,lower +Joe Gresko,Joseph Paul,Gresko,Male,Democratic,ocd-jurisdiction/country:us/state:ct/government,121,lower +Dave Yaccarino,David W.,Yaccarino,Male,Republican,ocd-jurisdiction/country:us/state:ct/government,87,lower +Mae Flexer,Mae M.,Flexer,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,29,upper +Jenn Leeper,Jennifer Marie,Leeper,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,132,lower +Treneé McGee,Trenee D.,McGee,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,116,lower +Pat Miller,Patricia Billie,Miller,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,27,upper +Jaime Foster,Jaime Smith,Foster,Female,Democratic/Independence/Working Families,ocd-jurisdiction/country:us/state:ct/government,57,lower +Julie Kushner,Julie L.,Kushner,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,24,upper +Lucy Dathan,Lucia S.,Dathan,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,142,lower +Ceci Maher,Catherine Cecilia,Maher,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,26,upper +Holly Cheeseman,Holly H.,Cheeseman,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,37,lower +Rachel Chaleski,Rachel,Chaleski,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,138,lower +Jan Hochadel,Janis,Hochadel,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,13,upper +Jill Barry,Jill,Barry,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,31,lower +Minnie Gonzalez,Guillermina,Gonzalez,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,3,lower +Cindy Harrison,Cindy L.,Harrison,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,69,lower +Anne Dauphinais,Anne Dubay,Dauphinais,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,44,lower +Laura Dancho,Laura,Dancho,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,120,lower +Liz Linehan,Elizabeth F.,Linehan,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,103,lower +Robyn Porter,Robyn Artifaye,Porter,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,94,lower +Gale Mastrofrancesco,Gale Lanza,Mastrofrancesco,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,80,lower +Dominique Johnson,Dominique E.,Johnson,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,143,lower +Moira Rader,Moira Meenaghan,Rader,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,98,lower +Michelle Cook,Michelle L.,Cook,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,65,lower +Christine Cohen,Christine H.,Cohen,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,12,upper +Kate Farrar,Kate C.,Farrar,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,20,lower +Amy Morrin Bello,Amy,Morrin Bello,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,28,lower +Pat Dillon,Patricia A.,Dillon,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,92,lower +Kara Rochelle,Kara Elise,Rochelle,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,104,lower +Toni Walker,Toni Edmonds,Walker,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,93,lower +Rachel Khanna,Rachel,Khanna,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,149,lower +Maryam Khan,Maryam,Khan,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,5,lower +Jillian Gilchrest,Jillian Marie,Gilchrest,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,18,lower +Melissa Osborne,Melissa E.,Osborne,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,16,lower +Tammy Exum,Tammy Rush,Exum,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,19,lower +Tammy Nuccio,Tammy Thomas,Nuccio,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,53,lower +Kathy Kennedy,Kathleen A.,Kennedy,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,119,lower +Nicole Klarides-Ditria,Nicole,Klarides-Ditria,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,105,lower +Christine Conley,Christine,Conley,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,40,lower +Cathy Osten,Catherine Ann,Osten,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,19,upper +Kathleen McCarty,Kathleen M.,McCarty,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,38,lower +Aimee Berger-Girvalo,Aimee,Berger-Girvalo,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,111,lower +Maria Horn,Maria P.,Horn,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,64,lower +Kai Belton,Kai Juanna,Belton,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,100,lower +Kerry Wood,Kerry Szeps,Wood,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,29,lower +Irene Haines,Irene M.,Haines,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,34,lower +Tami Zawistowski,Tami W.,Zawistowski,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,61,lower +Lezlye Zupkus,Lezlye W.,Zupkus,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,89,lower +Tracy Marra,Tracy Hunt,Marra,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,141,lower +Cristin McCarthy Vahey,Cristin,McCarthy Vahey,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,133,lower +Karen Reddington-Hughes,Karen,Reddington-Hughes,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,66,lower +Lisa Seminara,Lisa Spalvieri,Seminara,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,8,upper +Cara Pavalock-D'Amato,Cara Christine,Pavalock-D'Amato,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,77,lower +Mary Welander,Mary,Welander,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,114,lower +Jane Garibay,Jane Marie,Garibay,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,60,lower +Anne Hughes,Anne Meiman,Hughes,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,135,lower +Hilda Santiago,Hilda E.,Santiago,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,84,lower +Robin Comey,Robin Elaine,Comey,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,102,lower +Mary Fortier,Mary B.,Fortier,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,79,lower +Anabel Figueroa,Anabel D.,Figueroa,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,148,lower +Heather Somers,Heather S.,Somers,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,18,upper +Susan Johnson,Susan M.,Johnson,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,49,lower +Sarah Keitt,Sarah,Keitt,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,134,lower +Carol Hall,Carol A.,Hall,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,59,lower +Martha Marx,Martha,Marx,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,20,upper +Christie Carpino,Christie M.,Carpino,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,32,lower +Donna Veach,Donna,Veach,Female,Republican,ocd-jurisdiction/country:us/state:ct/government,30,lower +Christine Palm,Christine A.,Palm,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,36,lower +Mary Mushinsky,Mary M.,Mushinsky,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,85,lower +Joan Hartley,Joan V.,Hartley,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,15,upper +Marilyn Moore,Marilyn V.,Moore,Female,Democratic,ocd-jurisdiction/country:us/state:ct/government,22,upper +Eleni DeGraw,Eleni Kavros,DeGraw,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ct/government,17,lower +Kevin Hensley,Kevin S.,Hensley,Male,Republican,ocd-jurisdiction/country:us/state:de/government,9,lower +Bill Bush,William G.,Bush,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,29,lower +Paul Baumbach,Paul S.,Baumbach,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,23,lower +Frank Cooke,Franklin D.,Cooke,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,16,lower +Tim Dukes,Timothy D.,Dukes,Male,Republican,ocd-jurisdiction/country:us/state:de/government,40,lower +Bryan Shupe,Bryan William,Shupe,Male,Republican,ocd-jurisdiction/country:us/state:de/government,36,lower +Dave Wilson,David Lee,Wilson,Male,Republican,ocd-jurisdiction/country:us/state:de/government,18,upper +Danny Short,Daniel B.,Short,Male,Republican,ocd-jurisdiction/country:us/state:de/government,39,lower +Sean Matthews,Sean,Matthews,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,10,lower +Bryant Richardson,Bryant L.,Richardson,Male,Republican,ocd-jurisdiction/country:us/state:de/government,21,upper +Mike Smith,Michael F.,Smith,Male,Republican,ocd-jurisdiction/country:us/state:de/government,22,lower +Brian Pettyjohn,Brian G.,Pettyjohn,Male,Republican,ocd-jurisdiction/country:us/state:de/government,19,upper +Jesse Vanderwende,Jesse R.,Vanderwende,Male,Republican,ocd-jurisdiction/country:us/state:de/government,35,lower +Sean Lynn,Sean M.,Lynn,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,31,lower +Pete Schwartzkopf,Peter C.,Schwartzkopf,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,14,lower +Mike Ramone,Michael J.,Ramone,Male,Republican,ocd-jurisdiction/country:us/state:de/government,21,lower +Rich Collins,Richard G.,Collins,Male,Republican,ocd-jurisdiction/country:us/state:de/government,41,lower +Jeff Hilovsky,Jeffrey P.,Hilovsky,Male,Republican,ocd-jurisdiction/country:us/state:de/government,4,lower +Russ Huxtable,Russell,Huxtable,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,6,upper +Shannon Morris,William Shannon,Morris,Male,Republican,ocd-jurisdiction/country:us/state:de/government,30,lower +Gerald Hocker,Gerald W.,Hocker,Male,Republican,ocd-jurisdiction/country:us/state:de/government,20,upper +Dave Lawson,David G.,Lawson,Male,Republican,ocd-jurisdiction/country:us/state:de/government,15,upper +Trey Paradee,William Charles,Paradee,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,17,upper +Lyndon Yearick,Lyndon Dean,Yearick,Male,Republican,ocd-jurisdiction/country:us/state:de/government,34,lower +Darius Brown,Darius J.,Brown,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,2,upper +Larry Lambert,Larry D.,Lambert,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,7,lower +Bill Carson,William J.,Carson,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,28,lower +Ed Osienski,Edward S.,Osienski,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,24,lower +Charles Postles,Charles S.,Postles,Male,Republican,ocd-jurisdiction/country:us/state:de/government,33,lower +Spiros Mantzavinos,Spiros,Mantzavinos,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,7,upper +Jack Walsh,John,Walsh,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,9,upper +Eric Morrison,Eric,Morrison,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,27,lower +Ron Gray,Ronald E.,Gray,Male,Republican,ocd-jurisdiction/country:us/state:de/government,38,lower +Nnamdi Chukwuocha,Nnamdi O.,Chukwuocha,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,1,lower +Eric Buckson,Eric L.,Buckson,Male,Republican,ocd-jurisdiction/country:us/state:de/government,16,upper +Jeff Spiegelman,Jeffrey N.,Spiegelman,Male,Republican,ocd-jurisdiction/country:us/state:de/government,11,lower +Bryan Townsend,Bryan Jeffrey Schurgard,Townsend,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,11,upper +Dave Sokola,David P.,Sokola,Male,Democratic,ocd-jurisdiction/country:us/state:de/government,8,upper +Kyra Hoffner,Kyra L.,Hoffner,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,14,upper +Valerie Giltner,Valerie Jones,Giltner,Female,Republican,ocd-jurisdiction/country:us/state:de/government,37,lower +DeShanna Neal,DeShanna,Neal,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,13,lower +Val Longhurst,Valerie Maglio,Longhurst,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,15,lower +Debra Heffernan,Debra J.,Heffernan,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,6,lower +Marie Pinkney,Marie,Pinkney,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,13,upper +Rae Moore,Sherae'a Eboni,Moore,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,8,lower +Laura Sturgeon,Laura Viviana,Sturgeon,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,4,upper +Kendra Johnson,Kendra L.,Johnson,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,5,lower +Kerri Harris,Kerri Evelyn,Harris,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,32,lower +Sarah McBride,Sarah Elizabeth,McBride,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,1,upper +Kyle Gay,Kyle Evans,Gay,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,5,upper +Stell Selby,Esthelda Ramona Parker,Selby,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,20,lower +Krista Griffith,Krista Mollee Zanin,Griffith,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,12,lower +Madinah Wilson-Anton,Madinah,Wilson-Anton,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,26,lower +Nicole Poore,Nicole Saville,Poore,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,12,upper +Stephanie Hansen,Stephanie Leigh,Hansen,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,10,upper +Stephanie Bolden,Stephanie T.,Bolden,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,2,lower +Sophie Phillips,Sophie,Phillips,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,18,lower +Cyndie Romer,Cyndie Gildea,Romer,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,25,lower +Tizzy Lockman,Sarah Elizabeth,Lockman,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,3,upper +Kim Williams,Kimberly,Williams,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,19,lower +Melissa Minor-Brown,Melissa C.,Minor-Brown,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,17,lower +Sherry Dorsey Walker,Sherry,Dorsey Walker,Female,Democratic,ocd-jurisdiction/country:us/state:de/government,3,lower +Dennis Baxley,Dennis K.,Baxley,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,13,upper +Ralph Massullo,Ralph E.,Massullo,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,23,lower +Keith Truenow,Keith L.,Truenow,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,26,lower +Bryan Ávila,Bryan,Avila,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,39,upper +Alex Andrade,Robert Alexander,Andrade,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,2,lower +Mike Giallombardo,Mike,Giallombardo,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,79,lower +Toby Overdorf,Tobin Rogers,Overdorf,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,85,lower +Stan McClain,Stan,McClain,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,27,lower +John Temple,John Paul,Temple,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,52,lower +Chase Tramont,Chase,Tramont,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,30,lower +Ben Albritton,Ben,Albritton,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,27,upper +Dave Smith,David Allen,Smith,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,38,lower +Paul Renner,Paul Marvin,Renner,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,19,lower +Tommy Wright,Tom A.,Wright,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,8,upper +Bruce Antone,Bruce Hadley,Antone,Male,Democratic,ocd-jurisdiction/country:us/state:fl/government,41,lower +Spencer Roach,Lal Spencer,Roach,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,76,lower +Mike Beltran,Michael Paul,Beltran,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,70,lower +Daryl Campbell,Daryl,Campbell,Male,Democratic,ocd-jurisdiction/country:us/state:fl/government,99,lower +Tom Leek,Thomas J.,Leek,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,28,lower +Jim Boyd,Jim,Boyd,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,20,upper +Alex Rizo,Alex,Rizo,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,112,lower +Juan Porras,Juan Carlos,Porras,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,119,lower +Griff Griffitts,Phillip Wayne,Griffitts,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,6,lower +Mike Caruso,Michael A.,Caruso,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,87,lower +Daniel Perez,Daniel Anthony,Perez,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,116,lower +Joel Rudman,Joel,Rudman,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,3,lower +Doug Bankson,Douglas Michael,Bankson,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,39,lower +Wyman Duggan,Wyman,Duggan,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,12,lower +Fabián Basabe,Fabian,Basabe,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,106,lower +Sam Killebrew,Sam H.,Killebrew,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,48,lower +Mike Grant,Michael J.,Grant,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,75,lower +Dean Black,Dean Adam,Black,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,15,lower +Bob Rommel,Robert,Rommel,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,81,lower +Dan Daley,Dan,Daley,Male,Democratic,ocd-jurisdiction/country:us/state:fl/government,96,lower +Danny Burgess,Daniel Wright,Burgess,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,23,upper +Bobby Payne,Bobby,Payne,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,20,lower +Sam Garrison,Sam,Garrison,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,11,lower +Jay Trumbull,Jay Norbert,Trumbull,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,2,upper +Rick Roth,Raymond R.,Roth,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,94,lower +Brad Yeager,Bradford Troy,Yeager,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,56,lower +Patt Maney,Thomas Patterson,Maney,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,4,lower +Tyler Sirois,Tyler I.,Sirois,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,31,lower +Jay Collins,Jarrid,Collins,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,14,upper +Jason Pizzo,Jason William Barnet,Pizzo,Male,Democratic,ocd-jurisdiction/country:us/state:fl/government,37,upper +Adam Botana,Adam,Botana,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,80,lower +David Silvers,David Ryan,Silvers,Male,Democratic,ocd-jurisdiction/country:us/state:fl/government,89,lower +Chuck Brannan,Robert Charles,Brannan,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,10,lower +Jim Mooney,James Vernon,Mooney,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,120,lower +Mike Gottlieb,Michael Alan,Gottlieb,Male,Democratic,ocd-jurisdiction/country:us/state:fl/government,102,lower +Ryan Chamberlin,Ryan D.,Chamberlin,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,24,lower +Christopher Benjamin,Christopher Emmanuel,Benjamin,Male,Democratic,ocd-jurisdiction/country:us/state:fl/government,107,lower +John Snyder,John,Snyder,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,86,lower +Jason Shoaf,Jason S.,Shoaf,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,7,lower +Keith Perry,Warren Keith,Perry,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,9,upper +Danny Alvarez,Daniel Antonio,Alvarez,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,69,lower +David Borrero,J. David,Borrero,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,111,lower +Adam Anderson,Adam,Anderson,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,57,lower +Joe Gruters,Joseph Ryan,Gruters,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,22,upper +Travis Hutson,Travis,Hutson,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,7,upper +Kevin Chambliss,Kevin Dykemia,Chambliss,Male,Democratic,ocd-jurisdiction/country:us/state:fl/government,117,lower +Shev Jones,Shevrin D.,Jones,Male,Democratic,ocd-jurisdiction/country:us/state:fl/government,34,upper +Tom Fabricio,Thomas Paul,Fabricio,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,110,lower +Berny Jacques,Berny,Jacques,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,59,lower +Chuck Clemons,Charles Wesley,Clemons,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,22,lower +Jonathan Martin,Jonathan Allen,Martin,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,33,upper +Bobby Powell,Bobby,Powell,Male,Democratic,ocd-jurisdiction/country:us/state:fl/government,24,upper +Will Robinson,William Cloud,Robinson,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,71,lower +Clay Yarborough,Clay,Yarborough,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,4,upper +Mike Redondo,Michael David,Redondo,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,118,lower +Robbie Brackett,Robert A.,Brackett,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,34,lower +Gallop Franklin,Gallop P.,Franklin,Male,Democratic,ocd-jurisdiction/country:us/state:fl/government,8,lower +Taylor Yarkosky,Taylor Michael,Yarkosky,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,25,lower +Joe Casello,Joseph Anthony,Casello,Male,Democratic,ocd-jurisdiction/country:us/state:fl/government,90,lower +Darryl Rouson,Darryl Ervin,Rouson,Male,Democratic,ocd-jurisdiction/country:us/state:fl/government,16,upper +Webster Barnaby,Webster,Barnaby,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,29,lower +Kevin Steele,Kevin M.,Steele,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,55,lower +Jason Brodeur,Jason T.,Brodeur,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,10,upper +Blaise Ingoglia,Blaise,Ingoglia,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,11,upper +Nick DiCeglie,Nick,DiCeglie,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,18,upper +Corey Simon,Corey,Simon,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,3,upper +Doug Broxson,Douglas Vaughn,Broxson,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,1,upper +Vic Torres,Victor Manuel,Torres,Male,Democratic,ocd-jurisdiction/country:us/state:fl/government,25,upper +Lawrence McClure,Lawrence,McClure,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,68,lower +Ed Hooper,Ed,Hooper,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,21,upper +Chip LaMarca,Chip,LaMarca,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,100,lower +Tae Edmonds,Jervonte,Edmonds,Male,Democratic,ocd-jurisdiction/country:us/state:fl/government,88,lower +Randy Maggard,Randall Scott,Maggard,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,54,lower +Randy Fine,Randall Adam,Fine,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,33,lower +Tom Keen,Charles Thomas,Keen,Male,Democratic,ocd-jurisdiction/country:us/state:fl/government,35,lower +Jeff Holcomb,Jeff,Holcomb,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,53,lower +Shane Abbott,Shane G.,Abbott,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,5,lower +Thad Altman,Thad,Altman,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,32,lower +James Buchanan,James Vernon,Buchanan,Male,Republican,ocd-jurisdiction/country:us/state:fl/government,74,lower +Patricia Williams,Patricia Hawkins,Williams,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,98,lower +Joy López,Johanna,Lopez,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,43,lower +Ileana Garcia,Ileana Ydolia,Garcia,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,36,upper +Rita Harris,Jennifer Rita,Harris,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,44,lower +Jenna Persons-Mulicka,Jenna Dianne,Persons-Mulicka,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,78,lower +Allison Tant,Allison,Tant,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,9,lower +Katherine Waldron,Katherine M.,Waldron,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,93,lower +Josie Tomkow,Josie,Tomkow,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,51,lower +Jennifer Bradley,Jennifer,Bradley,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,6,upper +Lindsay Cross,Lindsay Michelle,Cross,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,60,lower +Jessica Baker,Jessica,Baker,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,17,lower +Rosalind Osgood,Rosalind,Osgood,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,32,upper +Ana Maria Rodriguez,Ana Maria,Rodriguez,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,40,upper +Linda Chaney,Linda,Chaney,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,61,lower +Jennifer Canady,Jennifer H.,Canady,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,50,lower +Vicki Lopez,Vicki Lynn,Lopez,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,113,lower +Hillary Cassel,Hillary Brisson,Cassel,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,101,lower +Demi Busatta Cabrera,Demi,Busatta Cabrera,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,114,lower +Susan Valdés,Susan Lopez,Valdes,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,64,lower +Debbie Mayfield,Debbie,Mayfield,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,19,upper +Kelly Skidmore,Kelly A.,Skidmore,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,92,lower +Lauren Book,Lauren Frances,Book,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,35,upper +Kaylee Tuck,Kaylee,Tuck,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,83,lower +Kiyan Michael,Kiyan,Michael,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,16,lower +Gayle Harrell,Gayle B.,Harrell,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,31,upper +Fiona McFarland,Fiona Fuller,McFarland,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,73,lower +Paula Stark,Paula A.,Stark,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,47,lower +Tiffany Esposito,Tiffany,Esposito,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,77,lower +Marie Woodson,Marie Paule,Woodson,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,105,lower +Linda Stewart,Linda,Stewart,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,17,upper +Tracie Davis,Tracie,Davis,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,5,upper +Robin Bartleman,Robin,Bartleman,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,103,lower +Dianne Hart,Dianne Langston,Hart,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,63,lower +Carolina Amesty,Carolina,Amesty,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,45,lower +Traci Koster,Traci L.,Koster,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,66,lower +Geri Thompson,Geraldine Fortenberry,Thompson,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,15,upper +Kim Berfield,Kimberly,Berfield,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,58,lower +Lauren Melo,Lauren Uhlich,Melo,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,82,lower +Kathleen Passidomo,Kathleen C.,Passidomo,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,28,upper +Christine Hunschofsky,Christine,Hunschofsky,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,95,lower +LaVon Bracy Davis,LaVon,Bracy Davis,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,40,lower +Kim Daniels,Kimberly Maria,Daniels,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,14,lower +Fentrice Driskell,Fentrice Denell,Driskell,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,67,lower +Lisa Dunkley,Lisa A.,Dunkley,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,97,lower +Anna Eskamani,Anna Vishkaee,Eskamani,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,42,lower +Angie Nixon,Angela,Nixon,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,13,lower +Erin Grall,Erin K.,Grall,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,29,upper +Alexis Calatayud,Alexis Maria,Calatayud,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,38,upper +Melony Bell,Melony Mincey,Bell,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,49,lower +Tina Polsky,Tina Scott,Polsky,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,30,upper +Kristen Arrington,Kristen Aston,Arrington,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,46,lower +Felicia Robinson,Felicia Simone,Robinson,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,104,lower +Dotie Joseph,Dotie,Joseph,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,108,lower +Colleen Burton,Colleen Griffith,Burton,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,12,upper +Susan Plasencia,Susan,Plasencia,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,37,lower +Peggy Gossett-Seidman,Margaret,Gossett-Seidman,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,91,lower +Lori Berman,Lori,Berman,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,26,upper +Michelle Salzman,Michelle,Salzman,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,1,lower +Ashley Gantt,Ashley Viola,Gantt,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,109,lower +Dana Trabulsy,Dana Lee,Trabulsy,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,84,lower +Rachel Plakon,Rachel Lora Saunders,Plakon,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,36,lower +Michele Rayner,Michele Kenyette,Rayner,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,62,lower +Alina García,Alina,Garcia,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,115,lower +Karen Gonzalez Pittman,Karen,Gonzalez Pittman,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,65,lower +Cyndi Stevenson,Cynthia Ward,Stevenson,Female,Republican,ocd-jurisdiction/country:us/state:fl/government,18,lower +Yvonne Hinson,Yvonne Hayes,Hinson,Female,Democratic,ocd-jurisdiction/country:us/state:fl/government,21,lower +Robert Dickey,Robert Lee,Dickey,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,145,lower +Matt Dubnik,Matthew,Dubnik,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,29,lower +Victor Anderson,Victor Edward,Anderson,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,10,lower +Omari Crawford,Omari J.,Crawford,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,84,lower +Matt Barton,Madison Fain,Barton,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,5,lower +Butch Parrish,Larry J.,Parrish,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,158,lower +Kasey Carpenter,Kasey Scott,Carpenter,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,4,lower +Trey Rhodes,Trey,Rhodes,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,124,lower +Marvin Lim,Marvin Certeza,Lim,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,98,lower +Houston Gaines,Houston,Gaines,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,120,lower +Holt Persinger,Holt,Persinger,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,119,lower +Mike Cameron,Michael David,Cameron,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,1,lower +Billy Hickman,William R.,Hickman,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,4,upper +Clint Crowe,Clinton,Crowe,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,118,lower +Ken Vance,Kenneth,Vance,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,133,lower +Randy Robertson,Wiley Randall,Robertson,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,29,upper +Rick Townsend,Rick,Townsend,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,179,lower +Dale Washburn,Roy Dale,Washburn,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,144,lower +James Burchett,James,Burchett,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,176,lower +Mark Newton,William Mark,Newton,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,127,lower +Michael Smith,Michael A.,Smith,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,41,lower +Teddy Reese,Tremaine Teddy,Reese,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,140,lower +Martin Momtahan,Martin,Momtahan,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,17,lower +Sheikh Rahman,Sheikh,Rahman,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,5,upper +Matt Reeves,R. Matthew,Reeves,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,99,lower +Demetrius Douglas,Demetrius,Douglas,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,78,lower +Brad Thomas,Brad,Thomas,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,21,lower +Josh Bonner,Josh,Bonner,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,73,lower +John Carson,John K.,Carson,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,46,lower +John Corbett,John L.,Corbett,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,174,lower +Lee Anderson,Lee I.,Anderson,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,24,upper +Frank Ginn,Franklin Joseph,Ginn,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,47,upper +Carl Gilliard,Carl Wayne,Gilliard,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,162,lower +Jordan Ridley,Jordan,Ridley,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,22,lower +Billy Mitchell,Billy,Mitchell,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,88,lower +Chuck Hufstetler,Chuck,Hufstetler,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,52,upper +Farooq Mughal,Farooq,Mughal,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,105,lower +Brian Strickland,Robert Brian,Strickland,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,17,upper +Eric Bell,Eric W.,Bell,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,75,lower +Mike Hodges,Michael D.,Hodges,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,3,upper +Will Wade,William Solomon,Wade,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,9,lower +Bill Hitchens,William W.,Hitchens,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,161,lower +Clay Pirkle,Clay,Pirkle,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,169,lower +David Huddleston,David,Huddleston,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,72,lower +Jason Anavitarte,Jason Raul,Anavitarte,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,31,upper +Bill Yearta,William J.,Yearta,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,152,lower +Marty Harbin,Maurice H.,Harbin,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,16,upper +Clint Dixon,Clinton Randall,Dixon,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,45,upper +Colton Moore,Colton Chase,Moore,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,53,upper +Gabe Okoye,Gabe,Okoye,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,102,lower +Segun Adeyina,Segun,Adeyina,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,110,lower +Chas Cannon,Charles H.,Cannon,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,172,lower +Jason Esteves,Jason,Esteves,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,6,upper +Brandon Beach,Brandon,Beach,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,21,upper +David Sampson,David,Sampson,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,153,lower +Jon Burns,Jon G.,Burns,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,159,lower +Devan Seabaugh,Devan,Seabaugh,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,34,lower +Lee Hawkins,Lee,Hawkins,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,27,lower +John LaHood,John,LaHood,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,175,lower +Steven Sainz,Steven,Sainz,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,180,lower +J. Collins,James,Collins,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,71,lower +Gregg Kennard,William Gregory,Kennard,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,101,lower +Shawn Still,Shawn,Still,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,48,upper +Derek Mallow,Derek J.,Mallow,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,2,upper +Jesse Petrea,Jesse,Petrea,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,166,lower +Joe Campbell,Joe,Campbell,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,171,lower +Lauren McDonald,Lauren Wylie,McDonald,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,26,lower +Rob Leverett,Robert Freeman,Leverett,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,123,lower +Mitchell Scoggins,Mitchell,Scoggins,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,14,lower +Todd Jones,Todd,Jones,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,25,lower +Max Burns,Othell Maxie,Burns,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,23,upper +Russ Goodman,Russ,Goodman,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,8,upper +El-Mahdi Holly,El-Mahdi,Holly,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,116,lower +Derrick Jackson,Derrick,Jackson,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,68,lower +Danny Mathis,Danny,Mathis,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,149,lower +Noel Williams,Noel,Williams,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,148,lower +David Knight,David,Knight,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,134,lower +Shaw Blackmon,Shaw,Blackmon,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,146,lower +Vance Smith,Vance C.,Smith,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,138,lower +Al Williams,Al,Williams,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,168,lower +Greg Dolezal,Gregory Robert,Dolezal,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,27,upper +Ron Stephens,Ron,Stephens,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,164,lower +Scott Hilton,Scott,Hilton,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,48,lower +Pete Marin,Pedro,Marin,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,96,lower +Johnny Chastain,John W.,Chastain,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,7,lower +Harold Jones,Harold V.,Jones,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,22,upper +Carter Barrett,Carter,Barrett,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,24,lower +Joseph Gullett,Joseph,Gullett,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,19,lower +Matthew Gambill,Matthew Harris,Gambill,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,15,lower +David Wilkerson,David,Wilkerson,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,38,lower +Solomon Adesanya,Solomon,Adesanya,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,43,lower +Tim Bearden,Timothy,Bearden,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,30,upper +Bo Hatchett,Thomas,Hatchett,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,50,upper +Emory Dunahoo,Emory West,Dunahoo,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,31,lower +Rick Williams,Ricky,Williams,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,25,upper +Matt Brass,Matthew Freeman,Brass,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,28,upper +Buddy DeLoach,Homer M.,DeLoach,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,167,lower +John Kennedy,John Flanders,Kennedy,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,18,upper +Lehman Franklin,Lehman,Franklin,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,160,lower +Ed Harbison,Ed,Harbison,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,15,upper +Spencer Frye,Spencer,Frye,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,122,lower +Doug Stoner,Doug,Stoner,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,40,lower +Dexter Sharper,Dexter,Sharper,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,177,lower +Derrick McCollum,Derrick,McCollum,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,30,lower +Marcus Wiedower,Marcus A.,Wiedower,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,121,lower +Dewey McClain,Dewey Loren,McClain,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,109,lower +Brian Prince,Brian,Prince,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,132,lower +Eddie Lumsden,James Edward,Lumsden,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,12,lower +Rick Jasperse,Richard Clark,Jasperse,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,11,lower +Mike Cheokas,Mike,Cheokas,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,151,lower +Chuck Payne,Charles,Payne,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,54,upper +Rey Martinez,Reynaldo,Martinez,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,111,lower +Bill Cowsert,William Stone,Cowsert,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,46,upper +Steve Tarvin,Steve,Tarvin,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,2,lower +David Jenkins,David Glenn,Jenkins,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,136,lower +Steve Gooch,Stephen Wade,Gooch,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,51,upper +Sam Park,Samuel Lauderdale,Park,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,107,lower +Sam Watson,Samuel Lawrence,Watson,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,11,upper +Long Tran,Long,Tran,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,80,lower +Chuck Martin,Charles E.,Martin,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,49,lower +Mitchell Horner,Mitchell,Horner,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,3,lower +Roger Bruce,Roger B.,Bruce,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,61,lower +Jason Ridley,Jason Thomas,Ridley,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,6,lower +Doc Rhett,Michael A.,Rhett,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,33,upper +David Clark,David,Clark,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,100,lower +Trey Kelley,Trey,Kelley,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,16,lower +John Albers,John,Albers,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,56,upper +Steven Meeks,Steven A.,Meeks,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,178,lower +Gary Richardson,Gary,Richardson,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,125,lower +Phil Olaleye,Phil,Olaleye,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,59,lower +Don Parsons,Don,Parsons,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,44,lower +Josh McLaurin,Joshua Ivan,McLaurin,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,14,upper +Emanuel Jones,Emanuel Davie,Jones,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,10,upper +Ben Watson,Benjamin Luther,Watson,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,1,upper +Chuck Efstration,Charles P.,Efstration,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,104,lower +Tyler Smith,Tyler Paul,Smith,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,18,lower +James Beverly,James Theodore,Beverly,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,143,lower +Bruce Williamson,Hugh Bruce,Williamson,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,112,lower +Brent Cox,Brent,Cox,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,28,lower +Carden Summers,Carden H.,Summers,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,13,upper +Gerald Greene,Gerald E.,Greene,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,154,lower +Larry Walker,Lawrence Cohen,Walker,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,20,upper +David Lucas,David Eugene,Lucas,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,26,upper +Alan Powell,Alan,Powell,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,33,lower +Bill Werkheiser,William A.,Werkheiser,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,157,lower +Tim Fleming,Tim,Fleming,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,114,lower +Karlton Howard,Karlton,Howard,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,129,lower +Blake Tillery,Blake,Tillery,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,19,upper +Ed Setzler,L. Edwin,Setzler,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,37,upper +Scott Holcomb,Michael Scott,Holcomb,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,81,lower +Mack Jackson,Mack,Jackson,Male,Democratic,ocd-jurisdiction/country:us/state:ga/government,128,lower +Stan Gunter,Norman Stanley,Gunter,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,8,lower +Chris Erwin,Chris,Erwin,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,32,lower +Matt Hatchett,Matt,Hatchett,Male,Republican,ocd-jurisdiction/country:us/state:ga/government,155,lower +Mandisha Thomas,Mandisha A.,Thomas,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,65,lower +Deborah Silcox,Deborah D.,Silcox,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,53,lower +Nikki Merritt,Nikki,Merritt,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,9,upper +Kimberly New,Kimberly R.,New,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,64,lower +Carmen Rice,Carmen,Rice,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,139,lower +Karen Lupton,Karen,Lupton,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,83,lower +Imani Barnes,Imani,Barnes,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,86,lower +Darlene Taylor,Darlene K.,Taylor,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,173,lower +Patty Marie Stinson,Patty Marie,Stinson,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,150,lower +Lauren Daniel,Lauren,Daniel,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,117,lower +Edna Jackson,Edna Branch,Jackson,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,165,lower +Lisa Campbell,Lisa Gayle,Campbell,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,35,lower +Lynn Smith,Lynn Ratigan,Smith,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,70,lower +Ginny Ehrhart,Ginny,Ehrhart,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,36,lower +Sharon Henderson,Sharon,Henderson,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,113,lower +Karen Mathiak,Karen,Mathiak,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,74,lower +Michelle Au,Michelle Hsiao,Au,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,50,lower +Charlice Byrd,Charlice H.,Byrd,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,20,lower +Tonya Anderson,Tonya P.,Anderson,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,43,upper +Rhonda Burnough,Rhonda,Burnough,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,77,lower +Betsy Holland,Betsy,Holland,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,54,lower +Penny Houston,Penny,Houston,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,170,lower +Shea Roberts,Shea,Roberts,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,52,lower +Shelly Echols,Shelly Cantrell,Echols,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,49,upper +Mandi Ballinger,Mandi L.,Ballinger,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,23,lower +Becky Evans,Becky,Evans,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,89,lower +Terry Cummings,Terry Alexis,Cummings,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,39,lower +Donzella James,Donzella Johnson,James,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,35,upper +Debbie Buckner,Debbie G.,Buckner,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,137,lower +Viola Davis,Viola,Davis,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,87,lower +Shelly Hutchinson,Shelly Dinet,Hutchinson,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,106,lower +Yasmin Neal,Yasmin,Neal,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,79,lower +Dar'shun Kendrick,Dar'shun Nicole,Kendrick,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,95,lower +Sharon Cooper,Sharon,Cooper,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,45,lower +Nan Orrock,Nancy Grogan,Orrock,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,36,upper +Horacena Tate,Horacena E.,Tate,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,38,upper +Gloria Butler,Gloria Singleton,Butler,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,55,upper +Debra Bazemore,Debra,Jones-Bazemore,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,69,lower +Kim Jackson,Kimberly Sue,Jackson,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,41,upper +Karla Drenner,Karla Lea,Drenner,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,85,lower +Nabilah Islam Parkes,Nabilah Aishah,Islam Parkes,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,7,upper +Mary Margaret Oliver,Mary Margaret,Oliver,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,82,lower +Lynn Gladney,Lynn,Gladney,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,130,lower +Kay Kirkpatrick,Kay,Kirkpatrick Haltom,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,32,upper +Saira Draper,Saira Amir,Draper,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,90,lower +Leesa Hagan,Leesa Wynn,Hagan,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,156,lower +Soo Hong,Soo J.,Hong,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,103,lower +Tanya Miller,Tanya Felecia,Miller,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,62,lower +Sonya Halpern,Sonya McLaughlin,Halpern,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,39,upper +Anne Westbrook,Anne Allen,Westbrook,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,163,lower +Mesha Mainor,Mesha,Mainor,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,56,lower +Esther Panitch,Esther Dina Feuer,Panitch,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,51,lower +Sandra Scott,Sandra G.,Scott,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,76,lower +Jodi Lott,Jodi,Lott,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,131,lower +Mary Frances Williams,Mary Frances,Williams,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,37,lower +Stacey Evans,Stacey Godfrey,Evans,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,57,lower +Elena Parent,Elena,Parent,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,42,upper +Kim Schofield,Kim,Schofield,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,63,lower +Jan Jones,Jan Slaughter,Jones,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,47,lower +Freddie Sims,Freddie Powell,Sims,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,12,upper +Carolyn Hugley,Carolyn F.,Hugley,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,141,lower +Valencia Seay,Valencia M.,Seay,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,34,upper +Teri Anulewicz,Teri Lippincott,Anulewicz,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,42,lower +Angela Moore,Angela,Moore,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,91,lower +Miriam Paris,Miriam,Paris,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,142,lower +Katie Dempsey,Katie Montgomery,Dempsey,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,13,lower +Sheila Jones,Sheila,Jones,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,60,lower +Jasmine Clark,Jasmine,Clark,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,108,lower +Doreen Carter,Doreen Roberson,Carter,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,93,lower +Inga Willis,Inga S.,Willis,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,55,lower +Regina Lewis-Ward,Regina,Lewis-Ward,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,115,lower +Rhonda Taylor,Rhonda S.,Taylor,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,92,lower +Bethany Ballard,Bethany,Ballard,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,147,lower +Ruwa Romman,Ruwa,Romman,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,97,lower +Beth Camp,Elizabeth Anne Thompson,Camp,Female,Republican,ocd-jurisdiction/country:us/state:ga/government,135,lower +Gloria Frazier,Gloria,Frazier,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,126,lower +Lydia Glaize,Lydia,Glaize,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,67,lower +Kimberly Alexander,Kimberly A.,Alexander,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,66,lower +Karen Bennett,Karen,Bennett,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,94,lower +Park Cannon,Park Elizabeth,Cannon,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,58,lower +Gail Davenport,Gail,Davenport,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,44,upper +Sally Harrell,Sally Roettger,Harrell,Female,Democratic,ocd-jurisdiction/country:us/state:ga/government,40,upper +Cedric Gates,Cedric Solosolo Asuega,Gates,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,45,lower +Elijah Pierick,Elijah,Pierick,Male,Republican,ocd-jurisdiction/country:us/state:hi/government,39,lower +Sonny Ganaden,Ernesto Montemayor,Ganaden,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,30,lower +Jarrett Keohokalole,Jarrett,Keohokalole,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,24,upper +Diamond Garcia,Diamond,Garcia,Male,Republican,ocd-jurisdiction/country:us/state:hi/government,42,lower +Greggor Ilagan,Greggor,Ilagan,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,4,lower +Dru Kanuha,Dru Mamo,Kanuha,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,3,upper +Sam Kong,Samuel Satoru,Kong,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,33,lower +Brandon Elefante,Brandon J.C.,Elefante,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,16,upper +Kyle Yamashita,Kyle T.,Yamashita,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,12,lower +David Alcos,David A.,Alcos,Male,Republican,ocd-jurisdiction/country:us/state:hi/government,41,lower +Troy Hashimoto,Troy N.,Hashimoto,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,5,upper +Glenn Wakai,Glenn S.,Wakai,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,15,upper +Les Ihara,Les S.,Ihara,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,10,upper +Scott Nishimoto,Scott Y.,Nishimoto,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,23,lower +Karl Rhoads,Karl A.,Rhoads,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,13,upper +Luke Evslin,Luke A.,Evslin,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,16,lower +Chris Todd,Chris Toshiro,Todd,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,3,lower +Donovan Dela Cruz,Donovan M.,Dela Cruz,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,17,upper +Henry Aquino,Henry James C.,Aquino,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,19,upper +Chris Lee,Christopher Kalani Cushman,Lee,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,25,upper +Bert Kobayashi,Bertrand,Kobayashi,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,20,lower +Micah Aiu,Micah Pookela Kim,Aiu,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,32,lower +Justin Woodson,Justin H.,Woodson,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,9,lower +Stanley Chang,Stanley,Chang,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,9,upper +Gregg Takayama,Gregg,Takayama,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,34,lower +Tim Richards,Herbert M.,Richards,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,4,upper +Richard Onishi,Richard Hiroyuki Keala,Onishi,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,2,lower +Angus McKelvey,Angus L.K.,McKelvey,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,6,upper +Gene Ward,Gene R.,Ward,Male,Republican,ocd-jurisdiction/country:us/state:hi/government,18,lower +Tyson Miyake,Tyson K.,Miyake,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,10,lower +David Tarnas,David A.,Tarnas,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,8,lower +Scott Saiki,Scott K.,Saiki,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,25,lower +Adrian Tam,Adrian K.,Tam,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,24,lower +Brenton Awa,Brenton,Awa,Male,Republican,ocd-jurisdiction/country:us/state:hi/government,23,upper +Mike Gabbard,Gerald Michael,Gabbard,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,21,upper +Daniel Holt,Daniel,Holt,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,28,lower +Sean Quinlan,Sean,Quinlan,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,47,lower +Scot Matayoshi,Scot Z.,Matayoshi,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,49,lower +Cory Chun,Cory M.,Chun,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,35,lower +Andrew Garrett,Andrew Takuya,Garrett,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,22,lower +Darius Kila,Darius K.,Kila,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,44,lower +Ron Kouchi,Ronald D.,Kouchi,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,8,upper +Kurt Fevella,Kurt,Fevella,Male,Republican,ocd-jurisdiction/country:us/state:hi/government,20,upper +Jackson Sayama,Jackson D.,Sayama,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,21,lower +Mark Hashem,Mark Jun,Hashem,Male,Democratic,ocd-jurisdiction/country:us/state:hi/government,19,lower +Maile Shimabukuro,Maile S.L.,Shimabukuro,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,22,upper +May Mizuno,Joje May Besario,Mizuno,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,29,lower +Mahina Poepoe,Mahina M.,Poepoe,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,13,lower +Donna Kim,Donna Mercado,Kim,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,14,upper +Jeanné Kapela,Jeanne,Kapela,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,5,lower +Amy Perruso,Amy A.,Perruso,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,46,lower +Della Belatti,Della Au,Belatti,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,26,lower +Dee Morikawa,Daynette,Morikawa,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,17,lower +Lynn DeCoite,Lynn Pualani,DeCoite,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,7,upper +Natalia Hussey-Burdick,Natalia,Hussey-Burdick,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,50,lower +Lauren Matsumoto,Lauren Kealohilani,Matsumoto,Female,Republican,ocd-jurisdiction/country:us/state:hi/government,38,lower +Linda Ichiyama,Linda E.,Ichiyama,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,31,lower +Nadine Nakamura,Nadine K.,Nakamura,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,15,lower +Nicole Lowen,Nicole E.,Lowen,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,7,lower +Joy San Buenaventura,Joy A.,San Buenaventura,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,2,upper +Carol Fukunaga,Carol,Fukunaga,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,11,upper +Terez Amato,Terez,Amato,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,11,lower +Lorraine Inouye,Lorraine Rodero,Inouye,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,1,upper +Kanani Souza,K. Kanani,Souza,Female,Republican,ocd-jurisdiction/country:us/state:hi/government,43,lower +Trish La Chica,Trish Quema,La Chica,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,37,lower +Lisa Kitagawa,Lisa,Kitagawa,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,48,lower +Rachele Lamosao,Rachele Fernandez,Lamosao,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,36,lower +Sharon Moriwaki,Sharon Y.,Moriwaki,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,12,upper +Jenna Takenouchi,Jenna,Takenouchi,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,27,lower +Elle Cochran,Elle,Cochran,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,14,lower +Michelle Kidani,Michelle N.,Kidani,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,18,upper +Rose Martinez,Rose,Martinez,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,40,lower +Lisa Marten,Lisa,Marten,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,51,lower +Kirstin Kahaloa,Kirstin A.K.,Kahaloa,Female,Democratic,ocd-jurisdiction/country:us/state:hi/government,6,lower +Chad Ingels,Chad,Ingels,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,68,lower +Art Staed,Art,Staed,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,80,lower +Henry Stone,Henry,Stone,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,9,lower +John Wills,John H.,Wills,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,10,lower +Tony Bisignano,Tony,Bisignano,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,15,upper +Stan Gustafson,Stan,Gustafson,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,22,lower +David Sieck,David,Sieck,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,16,lower +Jesse Green,Jesse,Green,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,24,upper +Tom Gerhold,Thomas D.,Gerhold,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,84,lower +Skyler Wheeler,Skyler,Wheeler,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,4,lower +Ken Carlson,Ken,Carlson,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,13,lower +Sean Bagniewski,Sean,Bagniewski,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,35,lower +Mark Lofgren,Mark S.,Lofgren,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,48,upper +Dan Zumbach,Dan,Zumbach,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,34,upper +J.D. Scholten,James D.,Scholten,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,1,lower +David Young,David Edmund,Young,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,28,lower +Gary Mohr,Gary,Mohr,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,93,lower +Ken Rozenboom,Ken,Rozenboom,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,19,upper +Mike Sexton,Michael,Sexton,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,7,lower +Martin Graber,Martin,Graber,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,100,lower +Pat Grassley,Patrick,Grassley,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,57,lower +Mark Thompson,Mark I.,Thompson,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,56,lower +Bobby Kaufmann,Bobby,Kaufmann,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,82,lower +Kenan Judge,Kenan,Judge,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,27,lower +Joel Fry,Nelson Joel,Fry,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,24,lower +Norlin Mommsen,Norlin G.,Mommsen,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,70,lower +Charles Isenhart,Charles William,Isenhart,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,72,lower +Josh Meggers,Joshua,Meggers,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,54,lower +Michael Bergan,Michael R.,Bergan,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,63,lower +Mark Costello,Mark,Costello,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,8,upper +Jon Dunwell,Jonathon,Dunwell,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,38,lower +Brian Lohse,Brian K.,Lohse,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,45,lower +Mike Vondran,Mike,Vondran,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,94,lower +Jeff Cooling,Jeff,Cooling,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,77,lower +Scott Webster,Scott,Webster,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,47,upper +Jeff Reichman,Jeffrey,Reichman,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,50,upper +Dave Jacoby,David,Jacoby,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,86,lower +Ken Croken,Ken,Croken,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,97,lower +Mike Klimesh,Michael T.,Klimesh,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,32,upper +Eric Gjerde,Eric,Gjerde,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,74,lower +Sami Scheetz,Sami,Scheetz,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,78,lower +Craig Johnson,Craig Paul,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,67,lower +Bob Kressig,Bob M.,Kressig,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,75,lower +Dave Rowley,David D.,Rowley,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,5,upper +Jerome Amos,Jerome,Amos,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,62,lower +Nate Boulton,Nathaniel R.,Boulton,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,20,upper +Tom Determann,Tom,Determann,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,69,lower +Josh Turek,Joshua,Turek,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,20,lower +Bill Dotzler,William Anthony,Dotzler,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,31,upper +John Forbes,John,Forbes,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,44,lower +Jeff Shipley,Jeff,Shipley,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,87,lower +Brent Siegrist,J. Brent,Siegrist,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,19,lower +Matt Windschitl,Matt W.,Windschitl,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,15,lower +Austin Harris,Austin Rex,Harris,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,26,lower +Adam Zabner,Adam,Zabner,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,90,lower +Dave Deyoe,Dave,Deyoe,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,51,lower +Dennis Guth,Dennis,Guth,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,28,upper +Jacob Bossman,Jacob I.,Bossman,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,14,lower +Julian Garrett,Julian B.,Garrett,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,11,upper +Mark Cisneros,Mark A.,Cisneros,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,96,lower +Bill Gustoff,Bill,Gustoff,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,40,lower +Steven Holt,Steven,Holt,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,12,lower +Todd Taylor,Todd E.,Taylor,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,40,upper +Jack Whitver,Jack Andrew,Whitver,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,23,upper +Tom Shipley,Tom,Shipley,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,9,upper +Jeff Edler,Jeff,Edler,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,26,upper +Eric Giddens,Eric,Giddens,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,38,upper +Kevin Alons,Kevin,Alons,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,7,upper +Taylor Collins,Taylor R.,Collins,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,95,lower +Phil Thompson,Phil,Thompson,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,48,lower +Ray Sorensen,Ray Bubba,Sorensen,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,23,lower +Austin Baeth,Austin,Baeth,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,36,lower +Eddie Andrews,Eddie,Andrews,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,43,lower +Dan Dawson,Dan,Dawson,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,10,upper +Kerry Gruenhagen,Kerry,Gruenhagen,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,41,upper +Adrian Dickey,Adrian Jeremy,Dickey,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,44,upper +Herman Quirmbach,Herman Charles,Quirmbach,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,25,upper +Steve Bradley,Steven P.,Bradley,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,66,lower +Hans Wilz,Hans Christian,Wilz,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,25,lower +Jeff Taylor,Jeffrey,Taylor,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,2,upper +Tom Jeneary,Thomas Michael,Jeneary,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,3,lower +Carter Nordman,Carter F.,Nordman,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,47,lower +Derek Wulf,Derek,Wulf,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,76,lower +Jason Schultz,Jason M.,Schultz,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,6,upper +Rocky De Witt,Rocky,De Witt,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,1,upper +Ako Abdul-Samad,Ako,Abdul-Samad,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,34,lower +Dan Gehlbach,Dan,Gehlbach,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,46,lower +Rick Olson,Rick L.,Olson,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,39,lower +Zach Dieken,Zachary,Dieken,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,5,lower +Brad Sherman,Brad,Sherman,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,91,lower +Mike Bousselot,Michael,Bousselot,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,21,upper +Charley Thomson,Charles M.,Thomson,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,58,lower +Tom Moore,Thomas Jay,Moore,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,18,lower +Charlie McClintock,Charlie,McClintock,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,42,upper +Zach Wahls,Zacharia P.,Wahls,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,43,upper +Matt Rinker,Matthew B.,Rinker,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,99,lower +Tim Kraayenbrink,Timothy,Kraayenbrink,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,4,upper +Lynn Evans,K. Lynn,Evans,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,3,upper +Brian Best,Brian,Best,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,11,lower +Brian Meyer,Brian,Meyer,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,29,lower +Brad Zaun,Bradley,Zaun,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,22,upper +Izaah Knox,Izaah J.B.,Knox,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,17,upper +Dean Fisher,Dean C.,Fisher,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,53,lower +Bob Henderson,Robert James,Henderson,Male,Republican,ocd-jurisdiction/country:us/state:ia/government,2,lower +Ross Wilburn,Ross,Wilburn,Male,Democratic,ocd-jurisdiction/country:us/state:ia/government,50,lower +Barb Kniff McCulla,Barbara J.,Kniff McCulla,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,37,lower +Helena Hayes,Helena,Hayes,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,88,lower +Sarah Garriott,Sarah Trone,Garriott,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,14,upper +Chris Cournoyer,Chris,Cournoyer,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,35,upper +Ruth Ann Gaines,Ruth Ann,Gaines,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,33,lower +Dawn Driscoll,Dawn,Driscoll,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,46,upper +Ann Meyer,Ann,Meyer,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,8,lower +Liz Bennett,Liz,Bennett,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,39,upper +Cindy Winckler,Cindy Lou,Winckler,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,49,upper +Molly Donahue,Molly Erin,Donahue,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,37,upper +Mary Madison,Mary L.,Madison,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,31,lower +Annette Sweeney,Annette,Sweeney,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,27,upper +Monica Kurth,Monica Hosch,Kurth,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,98,lower +Timi Brown-Powers,Timi,Brown-Powers,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,61,lower +Jane Bloomingdale,Jane,Bloomingdale,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,60,lower +Amy Nielsen,Amy,Nielsen,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,85,lower +Elizabeth Wilson,Elizabeth,Wilson,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,73,lower +Tracy Ehlert,Tracy,Ehlert,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,79,lower +Megan Jones,Megan Lee Hess,Jones,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,6,lower +Beth Wessel-Kroeschell,Beth,Wessel-Kroeschell,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,49,lower +Shannon Lundgren,Shannon Fluhr,Lundgren,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,65,lower +Heather Hora,Heather,Hora,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,92,lower +Heather Matson,Heather Ann,Matson,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,42,lower +Sandy Salmon,Sandy,Salmon,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,29,upper +Brooke Boden,Brooke,Boden,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,21,lower +Molly Buck,Molly,Buck,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,41,lower +Anne Osmundson,Anne,Osmundson,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,64,lower +Sue Cahill,Susan Koenig,Cahill,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,52,lower +Megan Srinivas,Megan L.,Srinivas,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,30,lower +Amy Sinclair,Amy Jellison,Sinclair,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,12,upper +Luana Stoltenberg,Luana,Stoltenberg,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,81,lower +Pam Jochum,Pam,Jochum,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,36,upper +Devon Wood,Devon G.,Wood,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,17,lower +Janet Petersen,Janet,Petersen,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,18,upper +Shannon Latham,Shannon Fesenmeyer,Latham,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,55,lower +Lindsay James,Lindsay,James,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,71,lower +Cherielynn Westrich,Cherielynn Marie,Westrich,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,13,upper +Sharon Steckman,Sharon Sue,Steckman,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,59,lower +Cindy Golding,Cindy,Golding,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,83,lower +Janice Weiner,Janice G.,Weiner,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,45,upper +Claire Celsi,Claire A.,Celsi,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,16,upper +Carrie Koelker,Carrie Larson,Koelker,Female,Republican,ocd-jurisdiction/country:us/state:ia/government,33,upper +Jennifer Konfrst,Jennifer,Konfrst,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,32,lower +Elinor Levin,Elinor A.,Levin,Female,Democratic,ocd-jurisdiction/country:us/state:ia/government,89,lower +Mark Sauter,Mark,Sauter,Male,Republican,ocd-jurisdiction/country:us/state:id/government,1A,lower +Todd Lakey,Todd M.,Lakey,Male,Republican,ocd-jurisdiction/country:us/state:id/government,23,upper +Chris Trakel,Christopher T.,Trakel,Male,Republican,ocd-jurisdiction/country:us/state:id/government,11,upper +Dan Garner,Dan,Garner,Male,Republican,ocd-jurisdiction/country:us/state:id/government,28B,lower +Kevin Andrus,Kevin,Andrus,Male,Republican,ocd-jurisdiction/country:us/state:id/government,35A,lower +Clay Handy,Clay,Handy,Male,Republican,ocd-jurisdiction/country:us/state:id/government,27B,lower +Matt Bundy,Matthew,Bundy,Male,Republican,ocd-jurisdiction/country:us/state:id/government,8A,lower +Chuck Winder,Chuck,Winder,Male,Republican,ocd-jurisdiction/country:us/state:id/government,20,upper +Josh Wheeler,Joshua,Wheeler,Male,Republican,ocd-jurisdiction/country:us/state:id/government,35B,lower +Charlie Shepherd,Charlie,Shepherd,Male,Republican,ocd-jurisdiction/country:us/state:id/government,7B,lower +Kenny Wroten,Kenny,Wroten,Male,Republican,ocd-jurisdiction/country:us/state:id/government,13B,lower +Ron Mendive,Ron,Mendive,Male,Republican,ocd-jurisdiction/country:us/state:id/government,5A,lower +Mike Moyle,Mike,Moyle,Male,Republican,ocd-jurisdiction/country:us/state:id/government,10A,lower +Dale Hawkins,Dale R.,Hawkins,Male,Republican,ocd-jurisdiction/country:us/state:id/government,2B,lower +Josh Tanner,Josh,Tanner,Male,Republican,ocd-jurisdiction/country:us/state:id/government,14B,lower +Brent Crane,Brent J.,Crane,Male,Republican,ocd-jurisdiction/country:us/state:id/government,13A,lower +Ned Burns,Ned,Burns,Male,Democratic,ocd-jurisdiction/country:us/state:id/government,26A,lower +John Gannon,John L.,Gannon,Male,Democratic,ocd-jurisdiction/country:us/state:id/government,17A,lower +Jeff Ehlers,Jeff,Ehlers,Male,Republican,ocd-jurisdiction/country:us/state:id/government,21B,lower +Vito Barbieri,James Vito,Barbieri,Male,Republican,ocd-jurisdiction/country:us/state:id/government,3A,lower +Bruce Skaug,Bruce David,Skaug,Male,Republican,ocd-jurisdiction/country:us/state:id/government,10B,lower +Marco Erickson,Marco Adam,Erickson,Male,Republican,ocd-jurisdiction/country:us/state:id/government,33B,lower +Jeff Cornilles,Jeff J.,Cornilles,Male,Republican,ocd-jurisdiction/country:us/state:id/government,12A,lower +Joe Alfieri,Joe,Alfieri,Male,Republican,ocd-jurisdiction/country:us/state:id/government,4A,lower +Ben Toews,Ben,Toews,Male,Republican,ocd-jurisdiction/country:us/state:id/government,4,upper +Dan Foreman,Daniel D.,Foreman,Male,Republican,ocd-jurisdiction/country:us/state:id/government,6,upper +Sage Dixon,Sage G.,Dixon,Male,Republican,ocd-jurisdiction/country:us/state:id/government,1B,lower +Kevin Cook,Kevin,Cook,Male,Republican,ocd-jurisdiction/country:us/state:id/government,32,upper +Jason Monks,Jason A.,Monks,Male,Republican,ocd-jurisdiction/country:us/state:id/government,22B,lower +Chris Allgood,Christopher M.,Allgood,Male,Republican,ocd-jurisdiction/country:us/state:id/government,11B,lower +Ron Taylor,Ron C.,Taylor,Male,Democratic,ocd-jurisdiction/country:us/state:id/government,26,upper +Greg Lanting,Gregory L.,Lanting,Male,Republican,ocd-jurisdiction/country:us/state:id/government,25B,lower +Steve Berch,Steve,Berch,Male,Democratic,ocd-jurisdiction/country:us/state:id/government,15A,lower +Jerald Raymond,Jerald,Raymond,Male,Republican,ocd-jurisdiction/country:us/state:id/government,31A,lower +James Petzke,James,Petzke,Male,Republican,ocd-jurisdiction/country:us/state:id/government,21A,lower +Van Burtenshaw,Van T.,Burtenshaw,Male,Republican,ocd-jurisdiction/country:us/state:id/government,31,upper +David Cannon,David Maughan,Cannon,Male,Republican,ocd-jurisdiction/country:us/state:id/government,30A,lower +Doug Okuniewicz,Douglas Martin,Okuniewicz,Male,Republican,ocd-jurisdiction/country:us/state:id/government,3,upper +Jon Weber,Jon O.,Weber,Male,Republican,ocd-jurisdiction/country:us/state:id/government,34A,lower +Doug Pickett,Douglas T.,Pickett,Male,Republican,ocd-jurisdiction/country:us/state:id/government,27A,lower +Lance Clow,Lance W.,Clow,Male,Republican,ocd-jurisdiction/country:us/state:id/government,25A,lower +Chris Mathias,Christopher P.,Mathias,Male,Democratic,ocd-jurisdiction/country:us/state:id/government,19B,lower +Brandon Mitchell,Brandon,Mitchell,Male,Republican,ocd-jurisdiction/country:us/state:id/government,6B,lower +Doug Ricks,Douglas,Ricks,Male,Republican,ocd-jurisdiction/country:us/state:id/government,34,upper +Brian Lenney,Brian,Lenney,Male,Republican,ocd-jurisdiction/country:us/state:id/government,13,upper +Ted Hill,Edward H.,Hill,Male,Republican,ocd-jurisdiction/country:us/state:id/government,14A,lower +Todd Achilles,Theodore,Achilles,Male,Democratic,ocd-jurisdiction/country:us/state:id/government,16B,lower +Scott Grow,Cecil Scott,Grow,Male,Republican,ocd-jurisdiction/country:us/state:id/government,14,upper +James Ruchti,James Daw,Ruchti,Male,Democratic,ocd-jurisdiction/country:us/state:id/government,29,upper +John Vander Woude,John,Vander Woude,Male,Republican,ocd-jurisdiction/country:us/state:id/government,22A,lower +Carl Bjerke,Carl J.,Bjerke,Male,Republican,ocd-jurisdiction/country:us/state:id/government,5,upper +Geoff Schroeder,Geoffrey,Schroeder,Male,Republican,ocd-jurisdiction/country:us/state:id/government,8,upper +Jaron Crane,Ronald Jaron,Crane,Male,Republican,ocd-jurisdiction/country:us/state:id/government,12B,lower +Rick Just,James Richard,Just,Male,Democratic,ocd-jurisdiction/country:us/state:id/government,15,upper +Phil Hart,Phil,Hart,Male,Republican,ocd-jurisdiction/country:us/state:id/government,2,upper +Rod Furniss,Rodney G.,Furniss,Male,Republican,ocd-jurisdiction/country:us/state:id/government,31B,lower +Mark Harris,Mark,Harris,Male,Republican,ocd-jurisdiction/country:us/state:id/government,35,upper +Jack Nelsen,Jack,Nelsen,Male,Republican,ocd-jurisdiction/country:us/state:id/government,26B,lower +Ben Adams,Benjamin D.,Adams,Male,Republican,ocd-jurisdiction/country:us/state:id/government,12,upper +Mike Kingsley,Mike,Kingsley,Male,Republican,ocd-jurisdiction/country:us/state:id/government,7A,lower +Tony Wisniewski,Tony,Wisniewski,Male,Republican,ocd-jurisdiction/country:us/state:id/government,5B,lower +Rick Cheatum,Richard W.,Cheatum,Male,Republican,ocd-jurisdiction/country:us/state:id/government,28A,lower +Jordan Redman,Jordan,Redman,Male,Republican,ocd-jurisdiction/country:us/state:id/government,3B,lower +Dave Lent,David,Lent,Male,Republican,ocd-jurisdiction/country:us/state:id/government,33,upper +Kelly Anthon,Kelly Arthur,Anthon,Male,Republican,ocd-jurisdiction/country:us/state:id/government,27,upper +Scott Herndon,Scott,Herndon,Male,Republican,ocd-jurisdiction/country:us/state:id/government,1,upper +Steve Miller,Steven,Miller,Male,Republican,ocd-jurisdiction/country:us/state:id/government,24B,lower +Dustin Manwaring,Dustin Whitney,Manwaring,Male,Republican,ocd-jurisdiction/country:us/state:id/government,29A,lower +Nate Roberts,Nathan,Roberts,Male,Democratic,ocd-jurisdiction/country:us/state:id/government,29B,lower +Jim Guthrie,Jim,Guthrie,Male,Republican,ocd-jurisdiction/country:us/state:id/government,28,upper +Joe Palmer,Joe A.,Palmer,Male,Republican,ocd-jurisdiction/country:us/state:id/government,20A,lower +Treg Bernt,Treg A.,Bernt,Male,Republican,ocd-jurisdiction/country:us/state:id/government,21,upper +James Holtzclaw,James,Holtzclaw,Male,Republican,ocd-jurisdiction/country:us/state:id/government,20B,lower +Julie VanOrden,Julie,VanOrden,Female,Republican,ocd-jurisdiction/country:us/state:id/government,30,upper +Barbara Ehardt,Barbara Dee,Ehardt,Female,Republican,ocd-jurisdiction/country:us/state:id/government,33A,lower +Melissa Wintrow,Melissa,Wintrow,Female,Democratic,ocd-jurisdiction/country:us/state:id/government,19,upper +Cindy Carlson,Cindy J.,Carlson,Female,Republican,ocd-jurisdiction/country:us/state:id/government,7,upper +Melissa Durrant,Melissa,Durrant,Female,Republican,ocd-jurisdiction/country:us/state:id/government,23A,lower +Elaine Price,Elaine,Price,Female,Republican,ocd-jurisdiction/country:us/state:id/government,4B,lower +Ilana Rubel,Ilana S.,Rubel,Female,Democratic,ocd-jurisdiction/country:us/state:id/government,18A,lower +Brooke Green,Brooke,Green,Female,Democratic,ocd-jurisdiction/country:us/state:id/government,18B,lower +Dori Healey,Dori,Healey,Female,Republican,ocd-jurisdiction/country:us/state:id/government,15B,lower +Stephanie Mickelsen,Stephanie Jo,Mickelsen,Female,Republican,ocd-jurisdiction/country:us/state:id/government,32A,lower +Heather Scott,Heather,Scott,Female,Republican,ocd-jurisdiction/country:us/state:id/government,2A,lower +Britt Raybould,Britt,Raybould,Female,Republican,ocd-jurisdiction/country:us/state:id/government,34B,lower +Lauren Necochea,Lauren,Necochea,Female,Democratic,ocd-jurisdiction/country:us/state:id/government,19A,lower +Glenneda Zuiderveld,Glenneda Russell,Zuiderveld,Female,Republican,ocd-jurisdiction/country:us/state:id/government,24,upper +Julianne Young,Julianne,Young,Female,Republican,ocd-jurisdiction/country:us/state:id/government,30B,lower +Tammy Nichols,Tammy,Nichols,Female,Republican,ocd-jurisdiction/country:us/state:id/government,10,upper +Megan Egbert,Megan,Egbert,Female,Democratic,ocd-jurisdiction/country:us/state:id/government,17B,lower +Ali Rabe,Alison M.,Rabe,Female,Democratic,ocd-jurisdiction/country:us/state:id/government,16,upper +Wendy Horman,Wendy Stokes,Horman,Female,Republican,ocd-jurisdiction/country:us/state:id/government,32B,lower +Linda Hartgen,Linda Wright,Hartgen,Female,Republican,ocd-jurisdiction/country:us/state:id/government,25,upper +Judy Boyle,Judith Lea,Boyle,Female,Republican,ocd-jurisdiction/country:us/state:id/government,9B,lower +Jacyn Gallagher,Jacyn,Giesbers-Gallagher,Female,Republican,ocd-jurisdiction/country:us/state:id/government,9A,lower +Tina Lambert,Tina Sorenson,Lambert,Female,Republican,ocd-jurisdiction/country:us/state:id/government,23B,lower +Lori McCann,Lori,McCann,Female,Republican,ocd-jurisdiction/country:us/state:id/government,6A,lower +Megan Blanksma,Megan C.,Blanksma,Female,Republican,ocd-jurisdiction/country:us/state:id/government,8B,lower +Carrie Semmelroth,Carrie,Semmelroth,Female,Democratic,ocd-jurisdiction/country:us/state:id/government,17,upper +Lori Den Hartog,Lori,Den Hartog,Female,Republican,ocd-jurisdiction/country:us/state:id/government,22,upper +Soñia Galaviz,Sonia R.,Galaviz,Female,Democratic,ocd-jurisdiction/country:us/state:id/government,16A,lower +Janie Ward-Engelking,Janie,Ward-Engelking,Female,Democratic,ocd-jurisdiction/country:us/state:id/government,18,upper +Chenele Dixon,Chenele,Dixon,Female,Republican,ocd-jurisdiction/country:us/state:id/government,24A,lower +Julie Yamamoto,Julie,Yamamoto,Female,Republican,ocd-jurisdiction/country:us/state:id/government,11A,lower +Lance Yednock,Lance,Yednock,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,76,lower +Marty Moylan,Martin J.,Moylan,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,55,lower +Dave Vella,David A.,Vella,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,68,lower +Chris Welch,Emanuel Christopher,Welch,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,7,lower +Mark Walker,Mark L.,Walker,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,27,upper +Craig Wilcox,Craig,Wilcox,Male,Republican,ocd-jurisdiction/country:us/state:il/government,32,upper +Charlie Meier,Charles E.,Meier,Male,Republican,ocd-jurisdiction/country:us/state:il/government,109,lower +Bob Morgan,Bob,Morgan,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,58,lower +John Cabello,John M.,Cabello,Male,Republican,ocd-jurisdiction/country:us/state:il/government,90,lower +La Shawn Ford,La Shawn K.,Ford,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,8,lower +Mike Halpin,Michael W.,Halpin,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,36,upper +Christopher Belt,Christopher,Belt,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,57,upper +Anthony DeLuca,Anthony J.,DeLuca,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,80,lower +Bill Cunningham,William,Cunningham,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,18,upper +Seth Lewis,Seth P.,Lewis,Male,Republican,ocd-jurisdiction/country:us/state:il/government,24,upper +Javier Cervantes,Javier Loera,Cervantes,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,1,upper +Mike Porfirio,Mike,Porfirio,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,11,upper +Jason Bunting,Jason,Bunting,Male,Republican,ocd-jurisdiction/country:us/state:il/government,106,lower +Jed Davis,Jed,Davis,Male,Republican,ocd-jurisdiction/country:us/state:il/government,75,lower +Bill Hauter,William E.,Hauter,Male,Republican,ocd-jurisdiction/country:us/state:il/government,87,lower +Marcus Evans,Marcus C.,Evans,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,33,lower +Win Stoller,Winston,Stoller,Male,Republican,ocd-jurisdiction/country:us/state:il/government,37,upper +Tom Bennett,Thomas Michael,Bennett,Male,Republican,ocd-jurisdiction/country:us/state:il/government,53,upper +Kam Buckner,Kambium Elijah,Buckner,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,26,lower +Joe Sosnowski,Joe C.,Sosnowski,Male,Republican,ocd-jurisdiction/country:us/state:il/government,69,lower +Will Davis,William Quincy,Davis,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,30,lower +Dan Swanson,Daniel M.,Swanson,Male,Republican,ocd-jurisdiction/country:us/state:il/government,71,lower +Don Harmon,Don,Harmon,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,39,upper +Adam Niemerg,Adam M.,Niemerg,Male,Republican,ocd-jurisdiction/country:us/state:il/government,102,lower +Curtis Tarver,Curtis J.,Tarver,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,25,lower +Omar Williams,Jawaharial,Williams,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,10,lower +Brad Fritts,Bradley J.,Fritts,Male,Republican,ocd-jurisdiction/country:us/state:il/government,74,lower +Brad Halbrook,Brad E.,Halbrook,Male,Republican,ocd-jurisdiction/country:us/state:il/government,107,lower +Steve Reick,Steven,Reick,Male,Republican,ocd-jurisdiction/country:us/state:il/government,63,lower +Mike Coffey,Michael J.,Coffey,Male,Republican,ocd-jurisdiction/country:us/state:il/government,95,lower +Dale Fowler,Dale,Fowler,Male,Republican,ocd-jurisdiction/country:us/state:il/government,59,upper +Brad Stephens,Bradley A.,Stephens,Male,Republican,ocd-jurisdiction/country:us/state:il/government,20,lower +Steve Stadelman,Steve,Stadelman,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,34,upper +Jason Plummer,Jason,Plummer,Male,Republican,ocd-jurisdiction/country:us/state:il/government,55,upper +Justin Slaughter,Justin,Slaughter,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,27,lower +Patrick Sheehan,Patrick,Sheehan,Male,Republican,ocd-jurisdiction/country:us/state:il/government,37,lower +Napoleon Harris,Napoleon Bill,Harris,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,15,upper +Marty McLaughlin,Martin J.,McLaughlin,Male,Republican,ocd-jurisdiction/country:us/state:il/government,52,lower +Dave Syverson,Dave,Syverson,Male,Republican,ocd-jurisdiction/country:us/state:il/government,35,upper +Chapin Rose,Chapin,Rose,Male,Republican,ocd-jurisdiction/country:us/state:il/government,51,upper +Bob Rita,Robert,Rita,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,28,lower +Elgie Sims,Elgie R.,Sims,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,17,upper +C.D. Davidsmeyer,Christopher D.,Davidsmeyer,Male,Republican,ocd-jurisdiction/country:us/state:il/government,100,lower +Brandun Schweizer,Brandun,Schweizer,Male,Republican,ocd-jurisdiction/country:us/state:il/government,104,lower +Dan Didech,Daniel C.,Didech,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,59,lower +Paul Faraci,Paul,Faraci,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,52,upper +Don DeWitte,Donald P.,DeWitte,Male,Republican,ocd-jurisdiction/country:us/state:il/government,33,upper +Omar Aquino,Omar,Aquino,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,2,upper +Wayne Rosenthal,Wayne Arthur,Rosenthal,Male,Republican,ocd-jurisdiction/country:us/state:il/government,108,lower +Tom Weber,Tom,Weber,Male,Republican,ocd-jurisdiction/country:us/state:il/government,64,lower +Ram Villivalam,Ramachandra R.,Villivalam,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,8,upper +Willie Preston,Willie,Preston,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,16,upper +Harry Benton,Harry,Benton,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,97,lower +Kevin Olickal,Kevin John,Olickal,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,16,lower +David Friess,David,Friess,Male,Republican,ocd-jurisdiction/country:us/state:il/government,115,lower +Aarón Ortíz,Aaron Manuel,Ortiz,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,1,lower +Thaddeus Jones,Thaddeus M.,Jones,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,29,lower +Jay Hoffman,Jay C.,Hoffman,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,113,lower +Randy Frese,Randy E.,Frese,Male,Republican,ocd-jurisdiction/country:us/state:il/government,99,lower +Nick Smith,Nicholas K.,Smith,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,34,lower +Travis Weaver,Travis Robert,Weaver,Male,Republican,ocd-jurisdiction/country:us/state:il/government,93,lower +Emil Jones,Emil,Jones,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,14,upper +Blaine Wilhour,Blaine,Wilhour,Male,Republican,ocd-jurisdiction/country:us/state:il/government,110,lower +Dan McConchie,Daniel,McConchie,Male,Republican,ocd-jurisdiction/country:us/state:il/government,26,upper +Michael Kelly,Michael J.,Kelly,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,15,lower +Ryan Spain,Ryan,Spain,Male,Republican,ocd-jurisdiction/country:us/state:il/government,73,lower +Fred Crespo,Fred,Crespo,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,44,lower +Edgar Gonzalez,Edgar,Gonzalez,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,23,lower +Rob Martwick,Robert F.,Martwick,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,10,upper +Mike Hastings,Michael E.,Hastings,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,19,upper +Dave Severin,David,Severin,Male,Republican,ocd-jurisdiction/country:us/state:il/government,116,lower +Gregg Johnson,Gregg,Johnson,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,72,lower +Cyril Nichols,Cyril L.,Nichols,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,32,lower +Dave Koehler,David,Koehler,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,46,upper +Robert Peters,Robert James,Peters,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,13,upper +Abdelnasser Rashid,Abdelnasser,Rashid,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,21,lower +Jaime Andrade,Jaime M.,Andrade,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,40,lower +Dan Ugaste,Dan,Ugaste,Male,Republican,ocd-jurisdiction/country:us/state:il/government,65,lower +Larry Walsh,Lawrence M.,Walsh,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,86,lower +Dennis Tipsword,Dennis,Tipsword,Male,Republican,ocd-jurisdiction/country:us/state:il/government,105,lower +Chris Miller,Chris G.,Miller,Male,Republican,ocd-jurisdiction/country:us/state:il/government,101,lower +Kevin Schmidt,Kevin,Schmidt,Male,Republican,ocd-jurisdiction/country:us/state:il/government,114,lower +John Curran,John F.,Curran,Male,Republican,ocd-jurisdiction/country:us/state:il/government,41,upper +Maurice West,Maurice A.,West,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,67,lower +Patrick Windhorst,Patrick,Windhorst,Male,Republican,ocd-jurisdiction/country:us/state:il/government,117,lower +Dan Caulkins,Dan,Caulkins,Male,Republican,ocd-jurisdiction/country:us/state:il/government,88,lower +Matt Hanson,Matt,Hanson,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,83,lower +Will Guzzardi,William Spector,Guzzardi,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,39,lower +Patrick Joyce,Patrick J.,Joyce,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,40,upper +Steve McClure,Steve,McClure,Male,Republican,ocd-jurisdiction/country:us/state:il/government,54,upper +Hoan Huynh,Hoan,Huynh,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,13,lower +Paul Jacobs,Paul,Jacobs,Male,Republican,ocd-jurisdiction/country:us/state:il/government,118,lower +Andrew Chesney,Andrew S.,Chesney,Male,Republican,ocd-jurisdiction/country:us/state:il/government,45,upper +Neil Anderson,Neil,Anderson,Male,Republican,ocd-jurisdiction/country:us/state:il/government,47,upper +Mike Simmons-Gessesse,Michael J.,Simmons-Gessesse,Male,Democratic,ocd-jurisdiction/country:us/state:il/government,7,upper +Jeff Keicher,Jeff,Keicher,Male,Republican,ocd-jurisdiction/country:us/state:il/government,70,lower +Theresa Mah,Theresa,Mah,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,24,lower +Dee Avelar,Dagmara Lopez,Avelar,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,85,lower +Eva-Dina Delgado,Eva-Dina,Delgado,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,3,lower +Carol Ammons,Carol,Ammons,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,103,lower +Mattie Hunter,Mattie,Hunter,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,3,upper +Tracy Katz Muhl,Tracy,Katz Muhl,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,57,lower +Janet Yang Rohr,Janet,Yang Rohr,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,41,lower +Diane Blair-Sherlock,Diane,Blair-Sherlock,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,46,lower +Cristina Castro,Cristina,Castro,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,22,upper +Katie Stuart,Katie Kobak,Stuart,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,112,lower +Robyn Gabel,Robyn,Gabel,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,18,lower +Lindsey LaPointe,Lindsey,LaPointe,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,19,lower +Lakesia Collins,Lakesia,Collins,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,5,upper +Natalie Manley,Natalie A.,Manley,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,98,lower +Suzanne Ness,Suzanne M.,Ness,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,66,lower +Sally Turner,Sally Jo,Turner,Female,Republican,ocd-jurisdiction/country:us/state:il/government,44,upper +Nicolle Grasse,Nicolle See,Grasse,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,53,lower +Rachel Ventura,Rachel F.,Ventura,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,43,upper +Kelly Burke,Kelly M.,Burke,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,36,lower +Norine Hammond,Norine K.,Hammond,Female,Republican,ocd-jurisdiction/country:us/state:il/government,94,lower +Rita Mayfield,Rita,Mayfield,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,60,lower +Norma Hernandez,Norma,Hernandez,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,77,lower +Kelly Cassidy,Kelly M.,Cassidy,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,14,lower +Kimberly Lightford,Kimberly A.,Lightford,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,4,upper +Jil Tracy,Jil Rene Walker,Tracy,Female,Republican,ocd-jurisdiction/country:us/state:il/government,50,upper +Kimberly Du Buclet,Kimberly Neely,Du Buclet,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,5,lower +Sue Scherer,Sue,Scherer,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,96,lower +Laura Fine,Laura,Fine,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,9,upper +Suzy Glowiak Hilton,Suzanne,Glowiak Hilton,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,23,upper +Camille Lilly,Camille Y.,Lilly,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,78,lower +Anna Moeller,Anna B.,Moeller,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,43,lower +Mary Flowers,Mary E.,Flowers,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,31,lower +Sonya Harper,Sonya Marie,Harper,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,6,lower +Laura Murphy,Laura M.,Murphy,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,28,upper +Mary Gill,Mary,Gill,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,35,lower +Jehan Gordon-Booth,Jehan A.,Gordon-Booth,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,92,lower +Erica Harriss,Erica Conway,Harriss,Female,Republican,ocd-jurisdiction/country:us/state:il/government,56,upper +Lilian Jiménez,Lilian,Jimenez,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,4,lower +Anne Stava-Murray,Anne M.,Stava-Murray,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,81,lower +Jen Gong-Gershowitz,Jennifer,Gong-Gershowitz,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,17,lower +Doris Turner,Doris,Turner,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,48,upper +Nabeela Syed,Nabeela,Syed,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,51,lower +Tony McCombie,Tony M.,McCombie,Female,Republican,ocd-jurisdiction/country:us/state:il/government,89,lower +Maura Hirschauer,Maura Welch,Hirschauer,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,49,lower +Michelle Mussman,Michelle,Mussman,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,56,lower +Joyce Mason,Joyce,Mason,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,61,lower +Barbara Hernandez,Barbara,Hernandez,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,50,lower +Celina Villanueva,Celina,Villanueva,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,12,upper +Sharon Chung,Sharon,Chung,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,91,lower +Mary Beth Canty,Mary Beth,Canty,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,54,lower +Jackie Haas,Jackie LaMotte,Haas,Female,Republican,ocd-jurisdiction/country:us/state:il/government,79,lower +Debbie Meyers-Martin,Debbie,Meyers-Martin,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,38,lower +Ann Williams,Ann M.,Williams,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,11,lower +Laura Ellman,Laura,Ellman,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,21,upper +Linda Holmes,Linda,Holmes,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,42,upper +Angelica Guerrero-Cuellar,Angelica,Guerrero-Cuellar,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,22,lower +Terri Bryant,Terri Courtney,Bryant,Female,Republican,ocd-jurisdiction/country:us/state:il/government,58,upper +Yolonda Morris,Yolonda,Morris,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,9,lower +Stephanie Kifowit,Stephanie A.,Kifowit,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,84,lower +Jenn Ladisch-Douglass,Jennifer Lynn,Ladisch-Douglass,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,45,lower +Adriane Johnson,Adriane,Johnson,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,30,upper +Sue Rezin,Susan Marie Schipper,Rezin,Female,Republican,ocd-jurisdiction/country:us/state:il/government,38,upper +Terra Costa Howard,Terra,Costa Howard,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,42,lower +Amy Grant,Amy Herzing,Grant,Female,Republican,ocd-jurisdiction/country:us/state:il/government,47,lower +Mary Edly-Allen,Mary,Edly-Allen,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,31,upper +Amy Elik,Amy Waters,Elik,Female,Republican,ocd-jurisdiction/country:us/state:il/government,111,lower +Karina Villa,Karina,Villa,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,25,upper +Sara Feigenholtz,Sara,Feigenholtz,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,6,upper +Nicole La Ha,Nicole,La Ha Zwiercan,Female,Republican,ocd-jurisdiction/country:us/state:il/government,82,lower +Natalie Toro,Natalie,Toro,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,20,upper +Jennifer Sanalitro,Jennifer,Sanalitro,Female,Republican,ocd-jurisdiction/country:us/state:il/government,48,lower +Meg Loughran Cappel,Mary,Loughran Cappel,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,49,upper +Julie Morrison,Julie A.,Morrison,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,29,upper +Lisa Hernandez,Elizabeth,Hernandez,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,2,lower +Laura Dias,Laura Faver,Dias,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,62,lower +Margaret Croke,Margaret,Croke,Female,Democratic,ocd-jurisdiction/country:us/state:il/government,12,lower +Jim Pressel,Jim,Pressel,Male,Republican,ocd-jurisdiction/country:us/state:in/government,20,lower +John Bartlett,John L.,Bartlett,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,95,lower +Ryan Mishler,Ryan,Mishler,Male,Republican,ocd-jurisdiction/country:us/state:in/government,9,upper +Vernon Smith,Vernon G.,Smith,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,14,lower +Doug Miller,Douglas,Miller,Male,Republican,ocd-jurisdiction/country:us/state:in/government,48,lower +Mark Messmer,Mark B.,Messmer,Male,Republican,ocd-jurisdiction/country:us/state:in/government,48,upper +Fady Qaddoura,Fady,Qaddoura,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,30,upper +Blake Johnson,Robert Blake,Johnson,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,100,lower +Bob Heaton,Robert,Heaton,Male,Republican,ocd-jurisdiction/country:us/state:in/government,46,lower +Chris Judy,Christopher,Judy,Male,Republican,ocd-jurisdiction/country:us/state:in/government,83,lower +Jerry Torr,Gerald R.,Torr,Male,Republican,ocd-jurisdiction/country:us/state:in/government,39,lower +Bob Behning,Robert William,Behning,Male,Republican,ocd-jurisdiction/country:us/state:in/government,91,lower +Greg Steuerwald,Gregory E.,Steuerwald,Male,Republican,ocd-jurisdiction/country:us/state:in/government,40,lower +Hal Slager,Harold,Slager,Male,Republican,ocd-jurisdiction/country:us/state:in/government,15,lower +Jim Lucas,Jim,Lucas,Male,Republican,ocd-jurisdiction/country:us/state:in/government,69,lower +Dave Vinzant,David,Vinzant,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,3,upper +Chris Garten,Chris,Garten,Male,Republican,ocd-jurisdiction/country:us/state:in/government,45,upper +Jeff Raatz,Jeffrey Scott,Raatz,Male,Republican,ocd-jurisdiction/country:us/state:in/government,27,upper +Dave Hall,David Allen,Hall,Male,Republican,ocd-jurisdiction/country:us/state:in/government,62,lower +Phil GiaQuinta,Philip,GiaQuinta,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,80,lower +Rodney Pol,Rodney,Pol,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,4,upper +Chuck Moseley,Charles A.,Moseley,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,10,lower +Mitch Gore,Mitch,Gore,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,89,lower +Mike Karickhoff,Michael,Karickhoff,Male,Republican,ocd-jurisdiction/country:us/state:in/government,30,lower +Craig Haggard,Craig,Haggard,Male,Republican,ocd-jurisdiction/country:us/state:in/government,57,lower +Jack Jordan,Jack Edward,Jordan,Male,Republican,ocd-jurisdiction/country:us/state:in/government,17,lower +Gary Byrne,Gary,Byrne,Male,Republican,ocd-jurisdiction/country:us/state:in/government,47,upper +Alan Morrison,Alan P.,Morrison,Male,Republican,ocd-jurisdiction/country:us/state:in/government,42,lower +Bruce Borders,Bruce Alan,Borders,Male,Republican,ocd-jurisdiction/country:us/state:in/government,45,lower +Jake Teshka,Jacob,Teshka,Male,Republican,ocd-jurisdiction/country:us/state:in/government,7,lower +Ethan Manning,Ethan E.,Manning,Male,Republican,ocd-jurisdiction/country:us/state:in/government,23,lower +Tim O'Brien,Timothy A.,O'Brien,Male,Republican,ocd-jurisdiction/country:us/state:in/government,78,lower +Spencer Deery,Spencer,Deery,Male,Republican,ocd-jurisdiction/country:us/state:in/government,23,upper +Brad Barrett,Bradford J.,Barrett,Male,Republican,ocd-jurisdiction/country:us/state:in/government,56,lower +Robb Greene,Robert R.,Greene,Male,Republican,ocd-jurisdiction/country:us/state:in/government,47,lower +Ed DeLaney,Edward,DeLaney,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,86,lower +Matt Lehman,Matthew,Lehman,Male,Republican,ocd-jurisdiction/country:us/state:in/government,79,lower +Randy Lyness,Randall J.,Lyness,Male,Republican,ocd-jurisdiction/country:us/state:in/government,68,lower +David Niezgodski,David L.,Niezgodski,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,10,upper +Mike Aylesworth,Michael Jerome,Aylesworth,Male,Republican,ocd-jurisdiction/country:us/state:in/government,11,lower +Mike Young,R. Michael,Young,Male,Republican,ocd-jurisdiction/country:us/state:in/government,35,upper +Todd Huston,Todd,Huston,Male,Republican,ocd-jurisdiction/country:us/state:in/government,37,lower +Mike Andrade,Mike,Andrade,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,12,lower +Gregory Porter,Gregory W.,Porter,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,96,lower +Rod Bray,Rodric D.,Bray,Male,Republican,ocd-jurisdiction/country:us/state:in/government,37,upper +Michael Crider,Michael R.,Crider,Male,Republican,ocd-jurisdiction/country:us/state:in/government,28,upper +J.D. Prescott,John D.,Prescott,Male,Republican,ocd-jurisdiction/country:us/state:in/government,33,lower +Matt Hostettler,Matt,Hostettler,Male,Republican,ocd-jurisdiction/country:us/state:in/government,64,lower +Greg Taylor,Gregory G.,Taylor,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,33,upper +Dave Heine,Dave,Heine,Male,Republican,ocd-jurisdiction/country:us/state:in/government,85,lower +Chris May,Christopher,May,Male,Republican,ocd-jurisdiction/country:us/state:in/government,65,lower +Ed Soliday,Edmond L.,Soliday,Male,Republican,ocd-jurisdiction/country:us/state:in/government,4,lower +Cherrish Pryor,Cherrish,Pryor,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,94,lower +Matt Pierce,Matthew S.,Pierce,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,61,lower +Mark Genda,Mark Joseph,Genda,Male,Republican,ocd-jurisdiction/country:us/state:in/government,41,lower +Mike Bohacek,Michael,Bohacek,Male,Republican,ocd-jurisdiction/country:us/state:in/government,8,upper +Heath VanNatter,Heath,VanNatter,Male,Republican,ocd-jurisdiction/country:us/state:in/government,38,lower +Denny Zent,Dennis J.,Zent,Male,Republican,ocd-jurisdiction/country:us/state:in/government,51,lower +Kyle Walker,Kyle,Walker,Male,Republican,ocd-jurisdiction/country:us/state:in/government,31,upper +Shane Lindauer,Shane,Lindauer,Male,Republican,ocd-jurisdiction/country:us/state:in/government,63,lower +Ed Charbonneau,Ed,Charbonneau,Male,Republican,ocd-jurisdiction/country:us/state:in/government,5,upper +Kendell Culp,Kendell,Culp,Male,Republican,ocd-jurisdiction/country:us/state:in/government,16,lower +Greg Goode,Gregory Justin,Goode,Male,Republican,ocd-jurisdiction/country:us/state:in/government,38,upper +Jeff Thompson,Jeffrey A.,Thompson,Male,Republican,ocd-jurisdiction/country:us/state:in/government,28,lower +Mike Speedy,Mike,Speedy,Male,Republican,ocd-jurisdiction/country:us/state:in/government,90,lower +Scott Alexander,Scott,Alexander,Male,Republican,ocd-jurisdiction/country:us/state:in/government,26,upper +Blake Doriot,Blake,Doriot,Male,Republican,ocd-jurisdiction/country:us/state:in/government,12,upper +J.D. Ford,J.D.,Ford,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,29,upper +Kyle Pierce,Kyle E.,Pierce,Male,Republican,ocd-jurisdiction/country:us/state:in/government,36,lower +David Abbott,David,Abbott,Male,Republican,ocd-jurisdiction/country:us/state:in/government,18,lower +John Crane,John Brockman,Crane,Male,Republican,ocd-jurisdiction/country:us/state:in/government,24,upper +Rick Niemeyer,Rick,Niemeyer,Male,Republican,ocd-jurisdiction/country:us/state:in/government,6,upper +Justin Moed,Justin,Moed,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,97,lower +Lonnie Randolph,Lonnie Marcus,Randolph,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,2,upper +Scott Baldwin,Scott A.,Baldwin,Male,Republican,ocd-jurisdiction/country:us/state:in/government,20,upper +Tim Wesco,Timothy,Wesco,Male,Republican,ocd-jurisdiction/country:us/state:in/government,21,lower +Martin Carbaugh,Martin,Carbaugh,Male,Republican,ocd-jurisdiction/country:us/state:in/government,81,lower +Eric Bassler,Eric,Bassler,Male,Republican,ocd-jurisdiction/country:us/state:in/government,39,upper +Chuck Goodrich,Charles,Goodrich,Male,Republican,ocd-jurisdiction/country:us/state:in/government,29,lower +Ryan Lauer,Ryan,Lauer,Male,Republican,ocd-jurisdiction/country:us/state:in/government,59,lower +Bob Cherry,Robert W.,Cherry,Male,Republican,ocd-jurisdiction/country:us/state:in/government,53,lower +Mike Gaskill,Mike,Gaskill,Male,Republican,ocd-jurisdiction/country:us/state:in/government,25,upper +Brian Buchanan,Brian,Buchanan,Male,Republican,ocd-jurisdiction/country:us/state:in/government,7,upper +Andy Zay,Andrew R.,Zay,Male,Republican,ocd-jurisdiction/country:us/state:in/government,17,upper +Tyler Johnson,Tyler,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:in/government,14,upper +Justin Busch,Justin T.,Busch,Male,Republican,ocd-jurisdiction/country:us/state:in/government,16,upper +Zach Payne,Zachary Charles,Payne,Male,Republican,ocd-jurisdiction/country:us/state:in/government,66,lower +Chris Jeter,Christopher P.,Jeter,Male,Republican,ocd-jurisdiction/country:us/state:in/government,88,lower +Ed Clere,Edward D.,Clere,Male,Republican,ocd-jurisdiction/country:us/state:in/government,72,lower +Aaron Freeman,Aaron,Freeman,Male,Republican,ocd-jurisdiction/country:us/state:in/government,32,upper +Dan Dernulc,Daniel Edward,Dernulc,Male,Republican,ocd-jurisdiction/country:us/state:in/government,1,upper +Kyle Miller,Kyle Wilson,Miller,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,82,lower +Greg Walker,Greggory,Walker,Male,Republican,ocd-jurisdiction/country:us/state:in/government,41,upper +Steve Bartels,Stephen R.,Bartels,Male,Republican,ocd-jurisdiction/country:us/state:in/government,74,lower +Ron Alting,Ronald J.,Alting,Male,Republican,ocd-jurisdiction/country:us/state:in/government,22,upper +Eric Koch,Eric Allan,Koch,Male,Republican,ocd-jurisdiction/country:us/state:in/government,44,upper +Jim Buck,James R.,Buck,Male,Republican,ocd-jurisdiction/country:us/state:in/government,21,upper +Randy Maxwell,Randy,Maxwell,Male,Republican,ocd-jurisdiction/country:us/state:in/government,43,upper +Earl Harris,Earl L.,Harris,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,2,lower +Beau Baird,Beau,Baird,Male,Republican,ocd-jurisdiction/country:us/state:in/government,44,lower +Travis Holdman,Travis,Holdman,Male,Republican,ocd-jurisdiction/country:us/state:in/government,19,upper +Ryan Dvorak,Ryan Michael,Dvorak,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,8,lower +Cory Criswell,Cory,Criswell,Male,Republican,ocd-jurisdiction/country:us/state:in/government,54,lower +Jim Tomes,James Andrew,Tomes,Male,Republican,ocd-jurisdiction/country:us/state:in/government,49,upper +Craig Snow,Craig,Snow,Male,Republican,ocd-jurisdiction/country:us/state:in/government,22,lower +Alex Zimmerman,James Alexander,Zimmerman,Male,Republican,ocd-jurisdiction/country:us/state:in/government,67,lower +Bob Morris,Robert,Morris,Male,Republican,ocd-jurisdiction/country:us/state:in/government,84,lower +Ben Smaltz,Benjamin,Smaltz,Male,Republican,ocd-jurisdiction/country:us/state:in/government,52,lower +Ryan Hatfield,Ryan D.,Hatfield,Male,Democratic,ocd-jurisdiction/country:us/state:in/government,77,lower +Dale DeVon,Dale,DeVon,Male,Republican,ocd-jurisdiction/country:us/state:in/government,5,lower +Reneé Pack,Renee,Pack,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,92,lower +Karen Engleman,Karen,Engleman,Female,Republican,ocd-jurisdiction/country:us/state:in/government,70,lower +Peggy Mayfield,Peggy Mazelin,Mayfield,Female,Republican,ocd-jurisdiction/country:us/state:in/government,60,lower +Donna Schaibley,Donna,Schaibley,Female,Republican,ocd-jurisdiction/country:us/state:in/government,24,lower +Julie McGuire,Julie Schnell,McGuire,Female,Republican,ocd-jurisdiction/country:us/state:in/government,93,lower +Sharon Negele,Sharon,Negele,Female,Republican,ocd-jurisdiction/country:us/state:in/government,13,lower +Sue Errington,Sue E.,Errington,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,34,lower +Wendy Dant Chesser,Wendy,Dant Chesser,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,71,lower +Jenny Meltzer,Jennifer,Meltzer,Female,Republican,ocd-jurisdiction/country:us/state:in/government,73,lower +Lori Goss-Reaves,Lori,Goss-Reaves,Female,Republican,ocd-jurisdiction/country:us/state:in/government,31,lower +Victoria Garcia Wilburn,Victoria,Garcia Wilburn,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,32,lower +Michelle Davis,Michelle,Davis,Female,Republican,ocd-jurisdiction/country:us/state:in/government,58,lower +Wendy McNamara,Wendy M.,McNamara,Female,Republican,ocd-jurisdiction/country:us/state:in/government,76,lower +Cindy Ledbetter,Cindy,Ledbetter,Female,Republican,ocd-jurisdiction/country:us/state:in/government,75,lower +Carolyn Jackson,Carolyn B.,Jackson,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,1,lower +Liz Brown,Elizabeth,Brown,Female,Republican,ocd-jurisdiction/country:us/state:in/government,15,upper +Vaneta Becker,Vaneta,Becker,Female,Republican,ocd-jurisdiction/country:us/state:in/government,50,upper +Jean Leising,Jean,Leising,Female,Republican,ocd-jurisdiction/country:us/state:in/government,42,upper +Chris Campbell,Chris,Campbell,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,26,lower +Ragen Hatcher,Ragen,Hatcher,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,3,lower +Elizabeth Rowray,Elizabeth Vandelene,Rowray,Female,Republican,ocd-jurisdiction/country:us/state:in/government,35,lower +Carey Hamilton,Carey Jeffries,Hamilton,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,87,lower +Tonya Pfaff,Tonya,Pfaff,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,43,lower +Stacey Donato,Stacey Ann,Donato,Female,Republican,ocd-jurisdiction/country:us/state:in/government,18,upper +La Keisha Jackson,La Keisha,Jackson,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,34,upper +Patricia Boy,Patricia,Boy,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,9,lower +Maureen Bauer,Maureen,Bauer,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,6,lower +Joanna King,Joanna,King,Female,Republican,ocd-jurisdiction/country:us/state:in/government,49,lower +Shelli Yoder,Shelli Renee,Yoder,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,40,upper +Lorissa Sweet,Lorissa Hays,Sweet,Female,Republican,ocd-jurisdiction/country:us/state:in/government,50,lower +Sheila Klinker,Sheila Ann,Klinker,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,27,lower +Becky Cash,Becky Tucker,Cash,Female,Republican,ocd-jurisdiction/country:us/state:in/government,25,lower +Linda Rogers,Linda,Rogers,Female,Republican,ocd-jurisdiction/country:us/state:in/government,11,upper +Julie Olthoff,Julie,Olthoff,Female,Republican,ocd-jurisdiction/country:us/state:in/government,19,lower +Cyndi Carrasco,Cynthia V.,Carrasco,Female,Republican,ocd-jurisdiction/country:us/state:in/government,36,upper +Lindsay Patterson,Lindsay Avery,Patterson,Female,Republican,ocd-jurisdiction/country:us/state:in/government,55,lower +Robin Shackleford,Robin,Shackleford,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,98,lower +Andrea Hunley,Andrea,Hunley,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,46,upper +Sue Glick,Susan C.,Glick,Female,Republican,ocd-jurisdiction/country:us/state:in/government,13,upper +Vanessa Summers,Vanessa Janice,Summers,Female,Democratic,ocd-jurisdiction/country:us/state:in/government,99,lower +John Alcala,John,Alcala,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,57,lower +Vic Miller,Victor W.,Miller,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,58,lower +Boog Highberger,Dennis,Highberger,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,46,lower +Dave Younger,David,Younger,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,124,lower +Mike Houser,Michael,Houser,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,1,lower +David Haley,David,Haley,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,4,upper +Jeff Underhill,Jeff,Underhill,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,65,lower +Paul Waggoner,Paul,Waggoner,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,104,lower +Rick Kloos,Richard Gene,Kloos,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,19,upper +Troy Waymaster,Troy L.,Waymaster,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,109,lower +K.C. Ohaebosim,Kelechi,Ohaebosim,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,89,lower +Jason Goetz,Jason,Goetz,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,119,lower +Bill Rhiley,Bill,Rhiley,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,80,lower +Dan Kerschen,Daniel J.,Kerschen,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,26,upper +Steve Howe,Steven Kirk,Howe,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,71,lower +Blake Carpenter,Blake,Carpenter,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,81,lower +Mike Petersen,Mike,Petersen,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,28,upper +Joe Seiwert,Joe,Seiwert,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,101,lower +Jesse Borjon,Jesse,Borjon,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,52,lower +Mike Amyx,Mike,Amyx,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,45,lower +Leo Delperdang,Leo,Delperdang,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,94,lower +Ford Carr,Ford,Carr,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,84,lower +Gary White,Gary,White,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,115,lower +Eric Smith,Eric L.,Smith,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,76,lower +Stephen Owens,Stephen,Owens,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,74,lower +Jeff Longbine,Jeffrey S.,Longbine,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,17,upper +Mike Dodson,Michael L.,Dodson,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,67,lower +Nate Butler,Nathan,Butler,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,68,lower +Randy Garber,Randy,Garber,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,62,lower +Ken Rahjes,Kenneth J.,Rahjes,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,110,lower +Tom Sawyer,Tom,Sawyer,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,95,lower +Shannon Francis,Shannon,Francis,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,125,lower +Ken Collins,Kenneth,Collins,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,2,lower +Brandon Woodard,Brandon T.,Woodard,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,108,lower +Larry Alley,Larry,Alley,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,32,upper +Louis Ruiz,Louis,Ruiz,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,31,lower +John Doll,John,Doll,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,39,upper +Jason Probst,Jason,Probst,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,102,lower +Bill Sutton,William,Sutton,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,43,lower +Chuck Smith,Charles,Smith,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,3,lower +Ken Corbet,Ken,Corbet,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,54,lower +John Eplee,John R.,Eplee,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,63,lower +Virgil Peck,Virgil,Peck,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,15,upper +Nick Hoheisel,Nick,Hoheisel,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,97,lower +Mike Fagg,Michael A.,Fagg,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,14,upper +Kyle Hoffman,Kyle Dee,Hoffman,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,116,lower +Kirk Haskins,Kirk,Haskins,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,53,lower +Ty Masterson,Ty,Masterson,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,16,upper +Pat Proctor,Pat,Proctor,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,41,lower +Tom Holland,George Thomas,Holland,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,3,upper +Tim Shallenburger,Tim,Shallenburger,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,13,upper +Tom Kessler,Tom,Kessler,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,96,lower +Web Roth,Webster T.,Roth,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,79,lower +Carl Maughan,Carl F.A.,Maughan,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,90,lower +Patrick Penn,Patrick,Penn,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,85,lower +Mike Murphy,Michael,Murphy,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,114,lower +Virgil Weigel,Virgil,Weigel,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,56,lower +Ethan Corson,Ethan Jared,Corson,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,7,upper +Dan Goddard,Dan,Goddard,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,7,lower +Carl Turner,Carl,Turner,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,28,lower +Francis Awerkamp,Francis,Awerkamp,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,61,lower +Avery Anderson,Avery Clay,Anderson,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,72,lower +Jeff Pittman,Jeffrey Thomas,Pittman,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,5,upper +Chris Croft,Christopher D.,Croft,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,8,lower +Dennis Miller,Dennis,Miller,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,14,lower +Henry Helgerson,Henry M.,Helgerson,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,83,lower +Fred Gardner,Fred,Gardner,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,9,lower +Kenny Titus,Kenny,Titus,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,51,lower +Mike Thompson,Michael Lowry,Thompson,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,10,upper +Mark Schreiber,Mark,Schreiber,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,60,lower +Kyle McNorton,Kyle,McNorton,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,50,lower +Lance Neelly,Lance W.,Neelly,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,42,lower +Doug Blex,Charles Douglas,Blex,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,12,lower +Ron Bryce,Ron,Bryce,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,11,lower +Silas Miller,Silas,Miller,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,86,lower +Mike Thompson,Mike,Thompson,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,33,lower +Ronald Ellis,Ronald B.,Ellis,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,47,lower +Bill Bloom,Lewis,Bloom,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,64,lower +Clarke Sanders,Clarke J.,Sanders,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,69,lower +Tim Johnson,Timothy H.,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,38,lower +Rui Xu,Rui,Xu,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,25,lower +Emil Bergquist,Emil,Bergquist,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,91,lower +Dennis Pyle,Dennis D.,Pyle,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,1,upper +Dave Buehler,David,Buehler,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,40,lower +Scott Hill,Scott,Hill,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,70,lower +Dan Osman,Dan,Osman,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,48,lower +Rob Olson,Robert S.,Olson,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,23,upper +John Resman,John,Resman,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,121,lower +Tobias Schlingensiepen,Tobias J.H.,Schlingensiepen,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,55,lower +Will Carpenter,Will,Carpenter,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,75,lower +Chase Blasi,Chase Gregory,Blasi,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,27,upper +Adam Turk,Adam,Turk,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,117,lower +Adam Thomas,Adam,Thomas,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,26,lower +Bob Lewis,Robert Y.,Lewis,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,123,lower +Jim Minnix,James,Minnix,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,118,lower +Rick Billinger,Richard L.,Billinger,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,40,upper +J.R. Claeys,Jeremy Ryan,Claeys,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,24,upper +Ron Ryckman,Ronald W.,Ryckman,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,38,upper +Trevor Jacobs,Trevor,Jacobs,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,4,lower +Jerry Stogsdill,Jerry,Stogsdill,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,21,lower +Duane Droge,Duane,Droge,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,13,lower +Jarrod Ousley,Jarrod,Ousley,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,24,lower +Bill Clifford,William,Clifford,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,122,lower +Brian Bergkamp,Brian,Bergkamp,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,93,lower +Rick Wilborn,Richard E.,Wilborn,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,35,upper +Sean Tarwater,Sean E.,Tarwater,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,27,lower +John Carmichael,John,Carmichael,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,92,lower +Marvin Robinson,Marvin S.,Robinson,Male,Democratic,ocd-jurisdiction/country:us/state:ks/government,35,lower +Brett Fairchild,Brett,Fairchild,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,113,lower +Mark Steffen,Mark B.,Steffen,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,34,upper +Dan Hawkins,Daniel R.,Hawkins,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,100,lower +Adam Smith,Adam C.,Smith,Male,Republican,ocd-jurisdiction/country:us/state:ks/government,120,lower +Pam Curtis,Pam,Curtis,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,32,lower +Alicia Straub,Alicia Dawn,Straub,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,33,upper +Dinah Sykes,Dinah,Sykes,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,21,upper +Cindy Holscher,Cindy,Holscher,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,8,upper +Robyn Essex,Robyn R.,Essex,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,78,lower +Brenda Landwehr,Brenda,Landwehr,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,105,lower +Angela Stiens,Angela,Stiens,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,39,lower +Susan Humphries,Susan,Humphries,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,99,lower +Melissa Oropeza,Melissa,Oropeza,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,37,lower +Mari-Lynn Poskin,Mari-Lynn,Poskin,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,20,lower +Rebecca Schmoe,Rebecca,Schmoe,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,59,lower +Stephanie Sawyer-Clayton,Stephanie,Sawyer-Clayton,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,19,lower +Barb Wasinger,Barbara King,Wasinger,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,111,lower +Nikki McDonald,Nikki Johnston,McDonald,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,49,lower +Kellie Warren,Kellie,Warren,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,11,upper +Laura Williams,Laura,Williams,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,30,lower +Susan Concannon,Susan Wilson,Concannon,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,107,lower +Beverly Gossage,Beverly Kastl,Gossage,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,9,upper +Sandy Pickert,Sandy,Pickert,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,88,lower +Susan Estes,Susan Oliver,Estes,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,87,lower +Jo Ella Hoye,Jo Ella,Hoye,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,17,lower +Carrie Barth,Carrie Wiseman,Barth,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,5,lower +Usha Reddi,Usha,Reddi,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,22,upper +Elaine Bowers,Elaine,Bowers,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,36,upper +Oletha Faust-Goudeau,Oletha,Faust-Goudeau,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,29,upper +Lynn Melton,Lynn,Melton,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,36,lower +Lori Shultz,Lori,Shultz,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,73,lower +Lisa Moser,Lisa,Moser,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,106,lower +Renee Erickson,Renee Kendra,Erickson,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,30,upper +Christina Haswood,Christina,Haswood,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,10,lower +Kristen O'Shea,Kristen Brunkow,O'Shea,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,18,upper +Angela Martinez,Angela,Martinez,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,103,lower +Sydney Carlin,Sydney Lynn,Carlin,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,66,lower +Heather Meyer,Heather McCormick,Meyer,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,29,lower +Leah Howell,Leah,Howell,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,82,lower +Brenda Dietrich,Brenda S.,Dietrich,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,20,upper +Tory Marie Blew,Tory Marie,Blew,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,112,lower +Susan Ruiz,Susan,Ruiz,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,23,lower +Lindsay Vaughn,Lindsay,Vaughn,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,22,lower +Mary Ware,Mary Anita,Ware,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,25,upper +Linda Featherston,Linda,Featherston,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,16,lower +Marci Francisco,Marci,Francisco,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,2,upper +Cindy Neighbor,Cindy,Neighbor,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,18,lower +Molly Baumgardner,Molly,Baumgardner,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,37,upper +Valdenia Winn,Valdenia Camille,Winn,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,34,lower +Allison Hougland,Allison,Hougland,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,15,lower +Caryn Tyson,Caryn,Tyson,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,12,upper +Cyndi Howerton,Cyndi,Howerton,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,98,lower +Barbara Ballard,Barbara W.,Ballard,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,44,lower +Carolyn McGinn,Carolyn,McGinn,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,31,upper +Samantha Poetter Parshall,Samantha M.,Poetter Parshall,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,6,lower +Pat Pettey,Patricia D.,Pettey,Female,Democratic,ocd-jurisdiction/country:us/state:ks/government,6,upper +Kristey Williams,Kristey,Williams,Female,Republican,ocd-jurisdiction/country:us/state:ks/government,77,lower +Timmy Truett,Timothy,Truett,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,89,lower +Jonathan Dixon,Jonathan,Dixon,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,11,lower +Gerald Neal,Gerald A.,Neal,Male,Democratic,ocd-jurisdiction/country:us/state:ky/government,33,upper +Chris McDaniel,Christian,McDaniel,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,23,upper +Gary Boswell,Gary M.,Boswell,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,8,upper +Jacob Justice,Jacob D.,Justice,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,94,lower +Mike Nemes,Michael J.,Nemes,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,38,upper +Reggie Thomas,Reginald Leonard,Thomas,Male,Democratic,ocd-jurisdiction/country:us/state:ky/government,13,upper +Josh Calloway,Josh,Calloway,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,10,lower +Mike Wilson,Mike,Wilson,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,32,upper +Scott Lewis,Scott,Lewis,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,14,lower +Kevin Jackson,Kevin,Jackson,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,20,lower +Killian Timoney,Killian,Timoney,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,45,lower +Max Wise,George Maxwell,Wise,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,16,upper +Michael Meredith,Michael Lee,Meredith,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,19,lower +Richard White,Richard,White,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,99,lower +Steve Rawlings,John Steven,Rawlings,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,66,lower +Dan Fister,Daniel,Fister,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,56,lower +Randy Bridges,Randy,Bridges,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,3,lower +Bobby McCool,Bobby W.,McCool,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,97,lower +Jimmy Higdon,Jimmy,Higdon,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,14,upper +Chad Aull,Chad R.,Aull,Male,Democratic,ocd-jurisdiction/country:us/state:ky/government,79,lower +Steven Doan,Steven,Doan,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,69,lower +Chris Freeland,Chris,Freeland,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,6,lower +Thomas Huff,Thomas,Huff,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,49,lower +Johnnie Turner,Johnnie L.,Turner,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,29,upper +Steve Riley,Steve,Riley,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,23,lower +Whitney Westerfield,Whitney H.,Westerfield,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,3,upper +Jared Carpenter,Jared,Carpenter,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,34,upper +Shane Baker,Shane,Baker,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,85,lower +Robby Mills,Robert,Mills,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,4,upper +John Blanton,John,Blanton,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,92,lower +Don Douglas,Donald,Douglas,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,22,upper +James Tipton,James Allen,Tipton,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,53,lower +Adam Bowling,Adam,Bowling,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,87,lower +David Osborne,David W.,Osborne,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,59,lower +Steve West,Stephen,West,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,27,upper +Robert Stivers,Bertram Robert,Stivers,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,25,upper +Kevin Bratcher,Kevin D.,Bratcher,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,29,lower +Steve Bratcher,Steve,Bratcher,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,25,lower +Richard Heath,Richard,Heath,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,2,lower +Tom Smith,Tom O'Dell,Smith,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,86,lower +John Hodgson,John,Hodgson,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,36,lower +Scott Sharp,Scott L.,Sharp,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,100,lower +Daniel Elliott,Daniel B.,Elliott,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,54,lower +Walker Thomas,Walker,Thomas,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,8,lower +Ryan Dotson,Ryan,Dotson,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,73,lower +Mike Clines,Mike,Clines,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,68,lower +Brandon Storm,Brandon J.,Storm,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,21,upper +Patrick Flannery,Patrick C.,Flannery,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,96,lower +Stephen Meredith,Stephen,Meredith,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,5,upper +David Meade,David,Meade,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,80,lower +Rick Girdler,Rick,Girdler,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,15,upper +Shawn McPherson,Shawn,McPherson,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,22,lower +Jason Petrie,Jason,Petrie,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,16,lower +Phillip Wheeler,Charles Phillip,Wheeler,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,31,upper +Josh Branscum,Joshua,Branscum,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,83,lower +Al Gentry,Alan,Gentry,Male,Democratic,ocd-jurisdiction/country:us/state:ky/government,46,lower +Sarge Pollock,Michael,Pollock,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,51,lower +Jason Nemes,Jason M.,Nemes,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,33,lower +Chris Fugate,Chris,Fugate,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,84,lower +D.J. Johnson,D.J.,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,13,lower +William Lawrence,William Lee,Lawrence,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,70,lower +David Hale,David,Hale,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,74,lower +Jason Howell,Jason Glenn,Howell,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,1,upper +Danny Carroll,Danny,Carroll,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,2,upper +Myron Dossett,Myron,Dossett,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,9,lower +Matt Lockett,Edward Matthew,Lockett,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,39,lower +Ken Upchurch,Kenneth H.,Upchurch,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,52,lower +Jared Bauman,Jared,Bauman,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,28,lower +Matt Koch,Matthew,Koch,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,72,lower +John Schickel,John,Schickel,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,11,upper +Daniel Grossberg,Daniel,Grossberg,Male,Democratic,ocd-jurisdiction/country:us/state:ky/government,30,lower +David Yates,David,Yates,Male,Democratic,ocd-jurisdiction/country:us/state:ky/government,37,upper +Bill Wesley,Billy,Wesley,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,91,lower +Damon Thayer,Damon,Thayer,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,17,upper +Phillip Pratt,Phillip,Pratt,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,62,lower +Derrick Graham,Derrick,Graham,Male,Democratic,ocd-jurisdiction/country:us/state:ky/government,57,lower +Josh Bray,Josh,Bray,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,71,lower +David Givens,David P.,Givens,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,9,upper +Brandon Smith,Brandon D.,Smith,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,30,upper +Jim Gooch,Jim,Gooch,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,12,lower +Matt Deneen,Matthew Darin,Deneen,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,10,upper +Danny Bentley,Danny,Bentley,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,98,lower +Gex Williams,Edwin Gex,Williams,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,20,upper +Nick Wilson,Nick,Wilson,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,82,lower +Greg Elkins,Greg,Elkins,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,28,upper +Derek Lewis,Derek,Lewis,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,90,lower +Steven Rudy,Steven Jack,Rudy,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,1,lower +Ken Fleming,Ken,Fleming,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,48,lower +Peyton Griffee,Peyton Holmes Porter,Griffee,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,26,lower +Mark Hart,Mark,Hart,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,78,lower +George Brown,George,Brown,Male,Democratic,ocd-jurisdiction/country:us/state:ky/government,77,lower +Wade Williams,D. Wade,Williams,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,4,lower +Robert Duvall,Robert B.,Duvall,Male,Republican,ocd-jurisdiction/country:us/state:ky/government,17,lower +Beverly Chester-Burton,Beverly,Chester-Burton,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,44,lower +Jennifer Decker,Jennifer Suzanne Henson,Decker,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,58,lower +Candy Massaroni,Candy Desire,Massaroni,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,50,lower +Cassie Armstrong,Cassie Chambers,Armstrong,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,19,upper +Mary Beth Imes,Mary Beth,Imes,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,5,lower +Adrienne Southworth,Adrienne,Southworth,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,7,upper +Karen Berg,Karen,Berg,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,26,upper +Ruth Ann Palumbo,Ruth Ann,Palumbo,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,76,lower +Cherlynn Stevenson,Cherlynn,Stevenson,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,88,lower +Tina Bojanowski,Tina,Bojanowski,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,32,lower +Ashley Laferty,Ashley Tackett,Laferty,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,95,lower +Pamela Stevenson,Pamela D.,Stevenson,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,43,lower +Savannah Maddox,Savannah,Maddox,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,61,lower +Suzanne Miles,Vera Suzanne,Miles,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,7,lower +Lindsey Burke,Lindsey,Burke,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,75,lower +Samara Heavrin,Samara Rae,Heavrin,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,18,lower +Amy Neighbors,Amy,Neighbors,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,21,lower +Deanna Frazier Gordon,Deanna,Frazier Gordon,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,81,lower +Shelley Frommeyer,Shelley Funke,Frommeyer,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,24,upper +Kim Banta,Kimberly,Banta,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,63,lower +Julie Adams,Julie Raque,Adams,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,36,upper +Susan Tyler Witten,Susan,Tyler Witten,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,31,lower +Courtney Gilbert,Courtney,Gilbert,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,24,lower +Amanda Bledsoe,Amanda Mays,Bledsoe,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,12,upper +Josie Raymond,Josie,Raymond,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,41,lower +Nima Kulkarni,Nima,Kulkarni,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,40,lower +Adrielle Camuel,Adrielle,Camuel,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,93,lower +Stephanie Dietz,Stephanie Ann,Dietz,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,65,lower +Felicia Rabourn,Felicia Marie Smith,Rabourn,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,47,lower +Robin Webb,Robin L.,Webb,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,18,upper +Rebecca Raymer,Rebecca,Raymer,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,15,lower +Kim Moser,Kimberly Poore,Moser,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,64,lower +Rachel Roarx,Rachel,Roarx,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,38,lower +Rachel Roberts,Rachel Catherine,Roberts,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,67,lower +Sarah Stalker,Sarah,Stalker,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,34,lower +Keturah Herron,Keturah,Herron,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,42,lower +Nancy Tate,Nancy,Tate,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,27,lower +Lisa Willner,Lisa,Willner,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,35,lower +Emily Callaway,Emily,Callaway,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,37,lower +Kim King,Kimberly Paige,King,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,55,lower +Marianne Proctor,Marianne Grooms,Proctor,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,60,lower +Denise Harper Angel,Denise,Harper Angel,Female,Democratic,ocd-jurisdiction/country:us/state:ky/government,35,upper +Lindsey Tichenor,Lindsey Sublett,Tichenor,Female,Republican,ocd-jurisdiction/country:us/state:ky/government,6,upper +Gerald Boudreaux,Gerald,Boudreaux,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,24,upper +Joe Orgeron,Joseph A.,Orgeron,Male,Republican,ocd-jurisdiction/country:us/state:la/government,54,lower +Blake Miguez,Blake John,Miguez,Male,Republican,ocd-jurisdiction/country:us/state:la/government,22,upper +Jason DeWitt,Jason Brian,DeWitt,Male,Republican,ocd-jurisdiction/country:us/state:la/government,25,lower +Nicholas Muscarello,Nicholas,Muscarello,Male,Republican,ocd-jurisdiction/country:us/state:la/government,86,lower +Rodney Schamerhorn,Rodney Wayne,Schamerhorn,Male,Republican,ocd-jurisdiction/country:us/state:la/government,24,lower +Patrick Connick,John Patrick,Connick,Male,Republican,ocd-jurisdiction/country:us/state:la/government,8,upper +Roy Adams,Roy Daryl,Adams,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,62,lower +Jack McFarland,Jack Gideon,McFarland,Male,Republican,ocd-jurisdiction/country:us/state:la/government,13,lower +Tony Bacala,Anthony Joseph,Bacala,Male,Republican,ocd-jurisdiction/country:us/state:la/government,59,lower +Jay Gallé,Jack William,Galle,Male,Republican,ocd-jurisdiction/country:us/state:la/government,104,lower +Chuck Owen,Charles Anthony,Owen,Male,Republican,ocd-jurisdiction/country:us/state:la/government,30,lower +Mark Wright,Mark A.,Wright,Male,Republican,ocd-jurisdiction/country:us/state:la/government,77,lower +Jay Luneau,Wendell Jay,Luneau,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,29,upper +Robby Carter,Robert J.,Carter,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,72,lower +Jeff Wiley,Jeffrey Fons,Wiley,Male,Republican,ocd-jurisdiction/country:us/state:la/government,81,lower +Kyle Green,Kyle M.,Green,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,83,lower +Neil Riser,Hartwell Neil,Riser,Male,Republican,ocd-jurisdiction/country:us/state:la/government,20,lower +Bryan Fontenot,Bryan,Fontenot,Male,Republican,ocd-jurisdiction/country:us/state:la/government,55,lower +Les Farnum,Leslie,Farnum,Male,Republican,ocd-jurisdiction/country:us/state:la/government,33,lower +Mike Fési,Michael,Fesi,Male,Republican,ocd-jurisdiction/country:us/state:la/government,20,upper +Franklin Foil,Franklin Johnson,Foil,Male,Republican,ocd-jurisdiction/country:us/state:la/government,16,upper +Greg Miller,Gregory Allen,Miller,Male,Republican,ocd-jurisdiction/country:us/state:la/government,19,upper +Beau Beaullieu,Gerald Alphonse,Beaullieu,Male,Republican,ocd-jurisdiction/country:us/state:la/government,48,lower +Dixon McMakin,Dixon Wallace,McMakin,Male,Republican,ocd-jurisdiction/country:us/state:la/government,68,lower +Jeremy Stine,Jeremy P.,Stine,Male,Republican,ocd-jurisdiction/country:us/state:la/government,27,upper +Mike Reese,Mike,Reese,Male,Republican,ocd-jurisdiction/country:us/state:la/government,30,upper +Wayne McMahen,Wayne,McMahen,Male,Republican,ocd-jurisdiction/country:us/state:la/government,10,lower +J.P. Coussan,Jean-Paul Philip,Coussan,Male,Republican,ocd-jurisdiction/country:us/state:la/government,23,upper +Kirk Talbot,Michael Kirk,Talbot,Male,Republican,ocd-jurisdiction/country:us/state:la/government,10,upper +Chad Brown,Chad Michael,Brown,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,60,lower +Cameron Henry,John Cameron,Henry,Male,Republican,ocd-jurisdiction/country:us/state:la/government,9,upper +Larry Selders,Larry,Selders,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,67,lower +Mark Abraham,Mark Thorpe,Abraham,Male,Republican,ocd-jurisdiction/country:us/state:la/government,25,upper +Marcus Bryant,Marcus Anthony,Bryant,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,96,lower +Danny McCormick,Danny,McCormick,Male,Republican,ocd-jurisdiction/country:us/state:la/government,1,lower +Dewith Carrier,R. Dewith,Carrier,Male,Republican,ocd-jurisdiction/country:us/state:la/government,32,lower +Dustin Miller,Dustin,Miller,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,40,lower +Jimmy Harris,James C.,Harris,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,4,upper +Gabe Firment,Michael,Firment,Male,Republican,ocd-jurisdiction/country:us/state:la/government,22,lower +Troy Romero,Troy D.,Romero,Male,Republican,ocd-jurisdiction/country:us/state:la/government,37,lower +Mike Bayham,Michael Robert,Bayham,Male,Republican,ocd-jurisdiction/country:us/state:la/government,103,lower +Vinney St. Blanc,Vincent J.,St. Blanc,Male,Republican,ocd-jurisdiction/country:us/state:la/government,50,lower +Robert Allain,Robert,Allain,Male,Republican,ocd-jurisdiction/country:us/state:la/government,21,upper +Shane Mack,Shane,Mack,Male,Republican,ocd-jurisdiction/country:us/state:la/government,95,lower +Edmond Jordan,Edmond Dwayne,Jordan,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,29,lower +Kim Carver,Christopher Kim,Carver,Male,Republican,ocd-jurisdiction/country:us/state:la/government,89,lower +Rodney Lyons,Rodney S.,Lyons,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,87,lower +Brach Myers,Brach Jerad,Myers,Male,Republican,ocd-jurisdiction/country:us/state:la/government,45,lower +Jerome Zeringue,Jerome Peter,Zeringue,Male,Republican,ocd-jurisdiction/country:us/state:la/government,52,lower +Joe Stagni,Joseph A.,Stagni,Male,Republican,ocd-jurisdiction/country:us/state:la/government,92,lower +Jason Hughes,Jason Wynne,Hughes,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,100,lower +Josh Carlson,Joshua Paul,Carlson,Male,Republican,ocd-jurisdiction/country:us/state:la/government,43,lower +Ryan Bourriaque,Ryan Joseph,Bourriaque,Male,Republican,ocd-jurisdiction/country:us/state:la/government,47,lower +Steven Jackson,Steven P.,Jackson,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,2,lower +Tim Kerner,Timothy P.,Kerner,Male,Republican,ocd-jurisdiction/country:us/state:la/government,84,lower +Cleo Fields,Cleo C.,Fields,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,14,upper +Adrian Fisher,Adrian J.,Fisher,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,16,lower +Rashid Young,Rashid Armand,Young,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,11,lower +Mike Johnson,Michael T.,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:la/government,27,lower +Daryl Deshotel,Daryl Andrew,Deshotel,Male,Republican,ocd-jurisdiction/country:us/state:la/government,28,lower +Ed Larvadain,Ed,Larvadain,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,26,lower +Troy Hebert,Troy Jude,Hebert,Male,Republican,ocd-jurisdiction/country:us/state:la/government,31,lower +Rick Edmonds,Richard Phillip,Edmonds,Male,Republican,ocd-jurisdiction/country:us/state:la/government,6,upper +Sam Jenkins,Samuel Lee,Jenkins,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,39,upper +Vincent Cox,Vincent E.,Cox,Male,Republican,ocd-jurisdiction/country:us/state:la/government,85,lower +Michael Melerine,Michael Christopher,Melerine,Male,Republican,ocd-jurisdiction/country:us/state:la/government,6,lower +Patrick McMath,Patrick,McMath,Male,Republican,ocd-jurisdiction/country:us/state:la/government,11,upper +Bob Owen,Robert Stanford,Owen,Male,Republican,ocd-jurisdiction/country:us/state:la/government,1,upper +Ed Price,Edward Joseph,Price,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,2,upper +Alan Seabaugh,Alan Thomas,Seabaugh,Male,Republican,ocd-jurisdiction/country:us/state:la/government,31,upper +Wilford Carter,Wilford Dan,Carter,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,34,lower +Roger Wilder,Roger William,Wilder,Male,Republican,ocd-jurisdiction/country:us/state:la/government,71,lower +Gary Carter,Gary Michael,Carter,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,7,upper +Phil Tarver,Phillip Eric,Tarver,Male,Republican,ocd-jurisdiction/country:us/state:la/government,36,lower +Travis Johnson,Caxerrick Travis,Johnson,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,21,lower +Brett Geymann,Brett Frank,Geymann,Male,Republican,ocd-jurisdiction/country:us/state:la/government,35,lower +Larry Bagley,Lawrence A.,Bagley,Male,Republican,ocd-jurisdiction/country:us/state:la/government,7,lower +Matt Willard,Matthew,Willard,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,97,lower +Michael Echols,Michael Charles,Echols,Male,Republican,ocd-jurisdiction/country:us/state:la/government,14,lower +Caleb Kleinpeter,Caleb Seth,Kleinpeter,Male,Republican,ocd-jurisdiction/country:us/state:la/government,17,upper +Raymond Crews,Raymond J.,Crews,Male,Republican,ocd-jurisdiction/country:us/state:la/government,8,lower +Jeremy LaCombe,Jeremy S.,LaCombe,Male,Republican,ocd-jurisdiction/country:us/state:la/government,18,lower +Royce Duplessis,Royce,Duplessis,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,5,upper +Eddie Lambert,Eddie Joseph,Lambert,Male,Republican,ocd-jurisdiction/country:us/state:la/government,18,upper +Bob Hensgens,Craig Robert,Hensgens,Male,Republican,ocd-jurisdiction/country:us/state:la/government,26,upper +Adam Bass,Jesse Adam,Bass,Male,Republican,ocd-jurisdiction/country:us/state:la/government,36,upper +Jacob Braud,Stephen Jacob,Braud,Male,Republican,ocd-jurisdiction/country:us/state:la/government,105,lower +Peter Egan,Peter F.,Egan,Male,Republican,ocd-jurisdiction/country:us/state:la/government,74,lower +Chance Henry,Chance Keith,Henry,Male,Republican,ocd-jurisdiction/country:us/state:la/government,42,lower +Alonzo Knox,Alonzo L.,Knox,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,93,lower +Ken Brass,Kendricks,Brass,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,58,lower +Bill Wheat,William,Wheat,Male,Republican,ocd-jurisdiction/country:us/state:la/government,37,upper +Chad Boyer,Chad Michael,Boyer,Male,Republican,ocd-jurisdiction/country:us/state:la/government,46,lower +Phillip DeVillier,Phillip Ryan,DeVillier,Male,Republican,ocd-jurisdiction/country:us/state:la/government,41,lower +Joe Bouie,Joseph J.,Bouie,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,3,upper +Stewart Cathey,Stewart,Cathey,Male,Republican,ocd-jurisdiction/country:us/state:la/government,33,upper +Jacob Landry,Jacob Jules Gabriel,Landry,Male,Republican,ocd-jurisdiction/country:us/state:la/government,49,lower +Chris Turner,Christopher,Turner,Male,Republican,ocd-jurisdiction/country:us/state:la/government,12,lower +Shaun Mena,Shaun Raphael,Mena,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,23,lower +Francis Thompson,Francis Coleman,Thompson,Male,Republican,ocd-jurisdiction/country:us/state:la/government,19,lower +Foy Gadberry,Foy Bryan,Gadberry,Male,Republican,ocd-jurisdiction/country:us/state:la/government,15,lower +Tehmi Chassion,Tehmi Jahi,Chassion,Male,Democratic,ocd-jurisdiction/country:us/state:la/government,44,lower +Glen Womack,Glen D.,Womack,Male,Republican,ocd-jurisdiction/country:us/state:la/government,32,upper +Brian Glorioso,Brian Leonard,Glorioso,Male,Republican,ocd-jurisdiction/country:us/state:la/government,90,lower +Thomas Pressly,Thomas Alexander,Pressly,Male,Republican,ocd-jurisdiction/country:us/state:la/government,38,upper +Jay Morris,John Clyde,Morris,Male,Republican,ocd-jurisdiction/country:us/state:la/government,35,upper +John Wyble,John E.,Wyble,Male,Republican,ocd-jurisdiction/country:us/state:la/government,75,lower +Dennis Bamburg,Dennis,Bamburg,Male,Republican,ocd-jurisdiction/country:us/state:la/government,5,lower +John Illg,John R.,Illg,Male,Republican,ocd-jurisdiction/country:us/state:la/government,78,lower +Dodie Horton,Sylvia Delores Miller,Horton,Female,Republican,ocd-jurisdiction/country:us/state:la/government,9,lower +Pat Moore,Patricia,Moore,Female,Democratic,ocd-jurisdiction/country:us/state:la/government,17,lower +Paula Davis,Paula Pellerin,Davis,Female,Republican,ocd-jurisdiction/country:us/state:la/government,69,lower +Beth Mizell,Mary Beth Sherman,Mizell,Female,Republican,ocd-jurisdiction/country:us/state:la/government,12,upper +Kim Coates,Kimberly Landry,Coates,Female,Republican,ocd-jurisdiction/country:us/state:la/government,73,lower +Delisha Boyd,Delisha Young,Boyd,Female,Democratic,ocd-jurisdiction/country:us/state:la/government,102,lower +Vanessa LaFleur,Vanessa Caston,LaFleur,Female,Democratic,ocd-jurisdiction/country:us/state:la/government,101,lower +Beryl Amedée,Beryl Adams,Amedee,Female,Republican,ocd-jurisdiction/country:us/state:la/government,51,lower +Stephanie Berault,Stephanie Hunter,Berault,Female,Republican,ocd-jurisdiction/country:us/state:la/government,76,lower +Lauren Ventrella,Lauren Elizabeth,Ventrella,Female,Republican,ocd-jurisdiction/country:us/state:la/government,65,lower +Joy Walters,Daryl Joy,Walters,Female,Democratic,ocd-jurisdiction/country:us/state:la/government,4,lower +Kathy Edmonston,Donna Katherine,Edmonston,Female,Republican,ocd-jurisdiction/country:us/state:la/government,88,lower +Emily Chenevert,Emily Morrow,Chenevert,Female,Republican,ocd-jurisdiction/country:us/state:la/government,66,lower +Mandie Landry,Mandie E.,Landry,Female,Democratic,ocd-jurisdiction/country:us/state:la/government,91,lower +Barbara Carpenter,Barbara West,Carpenter,Female,Democratic,ocd-jurisdiction/country:us/state:la/government,63,lower +Heather Cloud,Heather Miley,Cloud,Female,Republican,ocd-jurisdiction/country:us/state:la/government,28,upper +Barbara Freiberg,Barbara Reich,Freiberg,Female,Republican,ocd-jurisdiction/country:us/state:la/government,70,lower +Tammy Phelps,Tammy T.,Phelps,Female,Democratic,ocd-jurisdiction/country:us/state:la/government,3,lower +Beth Billings,Beth Anne,Billings,Female,Republican,ocd-jurisdiction/country:us/state:la/government,56,lower +Rhonda Butler,Rhonda Gaye,Butler,Female,Republican,ocd-jurisdiction/country:us/state:la/government,38,lower +Laurie Schlegel,Laurie,Schlegel,Female,Republican,ocd-jurisdiction/country:us/state:la/government,82,lower +Polly Thomas,Polly Jung,Thomas,Female,Republican,ocd-jurisdiction/country:us/state:la/government,80,lower +Sylvia Taylor,Sylvia Elaine,Taylor,Female,Democratic,ocd-jurisdiction/country:us/state:la/government,57,lower +Julie Emerson,Julie Cathryn,Emerson,Female,Republican,ocd-jurisdiction/country:us/state:la/government,39,lower +Katrina Jackson-Andrews,Katrina Renee,Jackson-Andrews,Female,Democratic,ocd-jurisdiction/country:us/state:la/government,34,upper +Candace Newell,Candace N.,Newell,Female,Democratic,ocd-jurisdiction/country:us/state:la/government,99,lower +Denise Marcelle,C. Denise,Marcelle,Female,Democratic,ocd-jurisdiction/country:us/state:la/government,61,lower +Debbie Villio,Deborah Ann,Villio,Female,Republican,ocd-jurisdiction/country:us/state:la/government,79,lower +Aimee Freeman,Aimee Adatto,Freeman,Female,Democratic,ocd-jurisdiction/country:us/state:la/government,98,lower +Stephanie Hilferty,Stephanie Anne,Hilferty,Female,Republican,ocd-jurisdiction/country:us/state:la/government,94,lower +Regina Barrow,Regina Ashford,Barrow,Female,Democratic,ocd-jurisdiction/country:us/state:la/government,15,upper +Kellee Hennessy,Kellee,Hennessy Dickerson,Female,Republican,ocd-jurisdiction/country:us/state:la/government,64,lower +Jessica Domangue,Jessica,Domangue,Female,Republican,ocd-jurisdiction/country:us/state:la/government,53,lower +Valarie Hodges,Valarie Dawn Hope,Hodges,Female,Republican,ocd-jurisdiction/country:us/state:la/government,13,upper +Sam Montaño,Samantha,Montano,Other,Democratic,ocd-jurisdiction/country:us/state:ma/government,15th Suffolk,lower +Sal DiDomenico,Sal N.,DiDomenico,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Middlesex and Suffolk,upper +Nick Boldyga,Nicholas A.,Boldyga,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,3rd Hampden,lower +Barry Finegold,Barry R.,Finegold,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Second Essex and Middlesex,upper +Paul Frost,Paul K.,Frost,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,7th Worcester,lower +Dave Rogers,David M.,Rogers,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,24th Middlesex,lower +Tommy Vitolo,Thomas,Vitolo,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,15th Norfolk,lower +Peter Durant,Peter J.,Durant,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,Worcester and Hampshire,upper +Pavel Payano,Pavel M.,Payano,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,First Essex,upper +Jack Lewis,Jack Patrick,Lewis,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,7th Middlesex,lower +Jason Lewis,Jason M.,Lewis,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Fifth Middlesex,upper +Dave Muradian,David K.,Muradian,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,9th Worcester,lower +David DeCoste,David F.,DeCoste,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,5th Plymouth,lower +Rob Consalvo,Robert,Consalvo,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,14th Suffolk,lower +Alan Silvia,Alan,Silvia,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,7th Bristol,lower +Todd Smola,Todd M.,Smola,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,1st Hampden,lower +Steve Ultrino,Steven,Ultrino,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,33rd Middlesex,lower +Bruce Ayers,Bruce J.,Ayers,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,1st Norfolk,lower +Dan Donahue,Daniel M.,Donahue,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,16th Worcester,lower +Mike Moran,Michael J.,Moran,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,18th Suffolk,lower +Bill Galvin,William C.,Galvin,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,6th Norfolk,lower +Will Brownsberger,William N.,Brownsberger,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Suffolk and Middlesex,upper +Brad Jones,Bradley H.,Jones,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,20th Middlesex,lower +Brendan Crighton,Brendan P.,Crighton,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Third Essex,upper +Mike Brady,Michael Daniels,Brady,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Second Plymouth and Norfolk,upper +Paul Donato,Paul J.,Donato,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,35th Middlesex,lower +Mike Finn,Michael J.,Finn,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,6th Hampden,lower +Adam Gómez,Adam,Gomez,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Hampden,upper +John Mahoney,John J.,Mahoney,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,13th Worcester,lower +Christopher Markey,Christopher M.,Markey,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,9th Bristol,lower +Mike Day,Michael Seamus,Day,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,31st Middlesex,lower +Dan Carey,Daniel R.,Carey,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,2nd Hampshire,lower +Dylan Fernandes,Dylan Andreo,Fernandes,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,"Barnstable, Dukes and Nantucket",lower +Matt Muratore,Mathew J.,Muratore,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,1st Plymouth,lower +Aaron Michlewitz,Aaron M.,Michlewitz,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,3rd Suffolk,lower +Paul McMurtry,Paul,McMurtry,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,11th Norfolk,lower +Jon Zlotnik,Jonathan D.,Zlotnik,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,2nd Worcester,lower +Manny Cruz,Manny,Cruz,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,7th Essex,lower +Rady Mom,Rady,Mom,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,18th Middlesex,lower +Russell Holmes,Russell Earl,Holmes,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,6th Suffolk,lower +Simon Cataldo,Simon Joseph,Cataldo,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,14th Middlesex,lower +Ted Philips,Edward R.,Philips,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,8th Norfolk,lower +Aaron Saunders,Aaron L.,Saunders,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,7th Hampden,lower +Ed Kennedy,Edward J.,Kennedy,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,First Middlesex,upper +Adrian Madaro,Adrian C.,Madaro,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,1st Suffolk,lower +Donnie Berthiaume,Donald R.,Berthiaume,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,5th Worcester,lower +Patrick O'Connor,Patrick M.,O'Connor,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,First Plymouth and Norfolk,upper +Kip Diggs,Kip Andre,Diggs,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,2nd Barnstable,lower +David Biele,David,Biele,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,4th Suffolk,lower +Nick Collins,Nicholas,Collins,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,First Suffolk,upper +John Lawn,John J.,Lawn,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,10th Middlesex,lower +Danny Ryan,Daniel Joseph,Ryan,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,2nd Suffolk,lower +Angelo D'Emilia,Angelo,D'Emilia,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,8th Plymouth,lower +Billy MacGregor,William F.,MacGregor,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,10th Suffolk,lower +Joe McKenna,Joseph D.,McKenna,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,18th Worcester,lower +David Linsky,David Paul,Linsky,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,5th Middlesex,lower +John Marsi,John J.,Marsi,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,6th Worcester,lower +Dan Cahill,Daniel F.,Cahill,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,10th Essex,lower +Dan Sena,Danillo A.,Sena,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,37th Middlesex,lower +Jake Oliveira,Jacob R.,Oliveira,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,"Hampden, Hampshire and Worcester",upper +Steve Xiarhos,Steven George,Xiarhos,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,5th Barnstable,lower +Chris Worrell,Christopher J.,Worrell,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,5th Suffolk,lower +Marc Lombardo,Marc T.,Lombardo,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,22nd Middlesex,lower +Mark Cusack,Mark James,Cusack,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,5th Norfolk,lower +John Rogers,John H.,Rogers,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,12th Norfolk,lower +Brian Ashe,Brian M.,Ashe,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,2nd Hampden,lower +Ken Gordon,Kenneth I.,Gordon,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,21st Middlesex,lower +Jim Hawkins,James K.,Hawkins,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,2nd Bristol,lower +Marcus Vaughn,Marcus S.,Vaughn,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,9th Norfolk,lower +Mike Kushmerek,Michael Paul,Kushmerek,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,3rd Worcester,lower +Frank Moran,Frank A.,Moran,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,17th Essex,lower +Mike Soter,Michael J.,Soter,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,8th Worcester,lower +Jay Barrows,Fred Jay,Barrows,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,1st Bristol,lower +Walter Timilty,Walter F.,Timilty,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,"Norfolk, Plymouth and Bristol",upper +John Moran,John Francis,Moran,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,9th Suffolk,lower +David LeBoeuf,David Henry Argosky,LeBoeuf,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,17th Worcester,lower +Dave Robertson,David Allen,Robertson,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,19th Middlesex,lower +Kevin Honan,Kevin G.,Honan,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,17th Suffolk,lower +John Cronin,John Joseph,Cronin,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Worcester and Middlesex,upper +Bud Williams,Bud L.,Williams,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,11th Hampden,lower +Jamie Eldridge,James Bradley,Eldridge,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Middlesex and Worcester,upper +Rodney Elliott,Rodney M.,Elliott,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,16th Middlesex,lower +Paul Schmid,Paul A.,Schmid,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,8th Bristol,lower +Mark Montigny,Mark C.,Montigny,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Second Bristol and Plymouth,upper +Brian Murray,Brian W.,Murray,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,10th Worcester,lower +Bruce Tarr,Bruce E.,Tarr,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,First Essex and Middlesex,upper +Jim O'Day,James J.,O'Day,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,14th Worcester,lower +Chris Hendricks,Christopher M.,Hendricks,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,11th Bristol,lower +Jay Livingstone,Jay D.,Livingstone,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,8th Suffolk,lower +Bill Straus,William M.,Straus,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,10th Bristol,lower +Ryan Hamilton,Ryan M.,Hamilton,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,15th Essex,lower +John Keenan,John F.,Keenan,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Norfolk and Plymouth,upper +Paul Mark,Paul W.,Mark,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,"Berkshire, Hampden, Franklin and Hampshire",upper +Gerry Cassidy,Gerard J.,Cassidy,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,9th Plymouth,lower +Michael Rodrigues,Michael J.,Rodrigues,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,First Bristol and Plymouth,upper +Tom Walsh,Thomas P.,Walsh,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,12th Essex,lower +Jamie Murphy,James M.,Murphy,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,4th Norfolk,lower +Andy Vargas,Andres X.,Vargas,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,3rd Essex,lower +Mike Connolly,Michael L.,Connolly,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,26th Middlesex,lower +Adam Scanlon,Adam J.,Scanlon,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,14th Bristol,lower +Carlos González,Carlos,Gonzalez,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,10th Hampden,lower +Dave Vieira,David T.,Vieira,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,3rd Barnstable,lower +Jerry Parisella,Jerald A.,Parisella,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,6th Essex,lower +Paul Feeney,Paul R.,Feeney,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Bristol and Norfolk,upper +Julian Cyr,Julian Andre,Cyr,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Cape and Islands,upper +Jim Arciero,James,Arciero,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,2nd Middlesex,lower +Carmine Gentile,Carmine Lawrence,Gentile,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,13th Middlesex,lower +Donald Wong,Donald H.,Wong,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,9th Essex,lower +Tony Cabral,Antonio F.D.,Cabral,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,13th Bristol,lower +Smitty Pignatelli,William Smitty,Pignatelli,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,3rd Berkshire,lower +Jeff Turco,Jeffrey Rosario,Turco,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,19th Suffolk,lower +James Arena-DeRosa,James C.,Arena-DeRosa,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,8th Middlesex,lower +John Barrett,John,Barrett,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,1st Berkshire,lower +Patrick Kearney,Patrick Joseph,Kearney,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,4th Plymouth,lower +Mike Moore,Michael O.,Moore,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Second Worcester,upper +Steven Howitt,Steven S.,Howitt,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,4th Bristol,lower +Ron Mariano,Ronald Joseph,Mariano,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,3rd Norfolk,lower +Mike Rush,Michael F.,Rush,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Norfolk and Suffolk,upper +Norm Orrall,Norman J.,Orrall,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,12th Bristol,lower +Joe McGonagle,Joseph William,McGonagle,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,28th Middlesex,lower +Orlando Ramos,Orlando,Ramos,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,9th Hampden,lower +Pete Capano,Peter L.,Capano,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,11th Essex,lower +Kelly Pease,Kelly W.,Pease,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,4th Hampden,lower +Steve Owens,Steven C.,Owens,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,29th Middlesex,lower +Tom Stanley,Thomas M.,Stanley,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,9th Middlesex,lower +Jeff Roy,Jeffrey N.,Roy,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,10th Norfolk,lower +Chris Flanagan,Christopher Richard,Flanagan,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,1st Barnstable,lower +Rich Haggerty,Richard M.,Haggerty,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,30th Middlesex,lower +Francisco Paulino,Francisco E.,Paulino,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,16th Essex,lower +Angelo Puppolo,Angelo J.,Puppolo,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,12th Hampden,lower +Sean Garballey,Sean,Garballey,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,23rd Middlesex,lower +Ryan Fattman,Ryan C.,Fattman,Male,Republican,ocd-jurisdiction/country:us/state:ma/government,Worcester and Hampden,upper +Marc Pacheco,Marc R.,Pacheco,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Third Bristol and Plymouth,upper +John Velis,John Christopher,Velis,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Hampden and Hampshire,upper +Mike Barrett,Michael John,Barrett,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,Third Middlesex,upper +Dan Hunt,Daniel J.,Hunt,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,13th Suffolk,lower +Bill Driscoll,William J.,Driscoll,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,7th Norfolk,lower +Tackey Chan,Tackey,Chan,Male,Democratic,ocd-jurisdiction/country:us/state:ma/government,2nd Norfolk,lower +Carol Doherty,Carol A.,Doherty,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,3rd Bristol,lower +Alice Peisch,Alice Hanlon,Peisch,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,14th Norfolk,lower +Joan Lovely,Joan B.,Lovely,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,Second Essex,upper +Sarah Peake,Sarah K.,Peake,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,4th Barnstable,lower +Alyson Sullivan-Almeida,Alyson M.,Sullivan-Almeida,Female,Republican,ocd-jurisdiction/country:us/state:ma/government,7th Plymouth,lower +Natalie Higgins,Natalie M.,Higgins,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,4th Worcester,lower +Kate Hogan,Kate,Hogan,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,3rd Middlesex,lower +Hannah Kane,Hannah,Kane,Female,Republican,ocd-jurisdiction/country:us/state:ma/government,11th Worcester,lower +Robyn Kennedy,Robyn K.,Kennedy,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,First Worcester,upper +Kay Khan,Kay,Khan,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,11th Middlesex,lower +Natalie Blais,Natalie M.,Blais,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,1st Franklin,lower +Kate Donaghue,Kate,Donaghue,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,19th Worcester,lower +Priscila Sousa,Priscila S.,Sousa,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,6th Middlesex,lower +Marjorie Decker,Marjorie C.,Decker,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,25th Middlesex,lower +Susan Gifford,Susan Williams,Gifford,Female,Republican,ocd-jurisdiction/country:us/state:ma/government,2nd Plymouth,lower +Lydia Edwards,Lydia Marie,Edwards,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,Third Suffolk,upper +Jessica Giannino,Jessica Ann,Giannino,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,16th Suffolk,lower +Michelle DuBois,Michelle M.,DuBois,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,10th Plymouth,lower +Ruth Balser,Ruth B.,Balser,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,12th Middlesex,lower +Christine Barber,Christine P.,Barber,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,34th Middlesex,lower +Liz Miranda,Elizabeth,Miranda,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,Second Suffolk,upper +Judith García,Judith A.,Garcia,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,11th Suffolk,lower +Carole Fiola,Carole A.,Fiola,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,6th Bristol,lower +Vanna Howard,Vanna,Howard,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,17th Middlesex,lower +Adrianne Ramos,Adrianne Pusateri,Ramos,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,14th Essex,lower +Danielle Gregoire,Danielle W.,Gregoire,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,4th Middlesex,lower +Susan Moran,Susan Lynn,Moran,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,Plymouth and Barnstable,upper +Jenny Armini,Jennifer Balinsky,Armini,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,8th Essex,lower +Kim Ferguson,Kimberly N.,Ferguson,Female,Republican,ocd-jurisdiction/country:us/state:ma/government,1st Worcester,lower +Kristin Kassner,Kristin Hoffman,Kassner,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,2nd Essex,lower +Pat Jehlen,Patricia Deats,Jehlen,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,Second Middlesex,upper +Cynthia Creem,Cynthia Stone,Creem,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,Norfolk and Middlesex,upper +Shirley Arriaga,Shirley B.,Arriaga,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,8th Hampden,lower +Colleen Garry,Colleen M.,Garry,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,36th Middlesex,lower +Meg Kilcoyne,Meghan,Kilcoyne,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,12th Worcester,lower +Becca Rausch,Rebecca Lynne,Rausch,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,"Norfolk, Worcester and Middlesex",upper +Chynah Tyler,Chynah,Tyler,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,7th Suffolk,lower +Mindy Domb,Mindy,Domb,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,3rd Hampshire,lower +Pat Duffy,Patricia A.,Duffy,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,5th Hampden,lower +Sally Kerans,Sally,Kerans,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,13th Essex,lower +Margaret Scarsdale,Margaret R.,Scarsdale,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,1st Middlesex,lower +Denise Garlick,Denise C.,Garlick,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,13th Norfolk,lower +Jo Comerford,Joanne M.,Comerford,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,"Hampshire, Franklin and Worcester",upper +Tram Nguyen,Tram T.,Nguyen,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,18th Essex,lower +Brandy Fluker Oakley,Brandy,Fluker Oakley,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,12th Suffolk,lower +Estela Reyes,Estela A.,Reyes,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,4th Essex,lower +Joan Meschino,Joan,Meschino,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,3rd Plymouth,lower +Dawne Shand,Dawne,Shand,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,1st Essex,lower +Pat Haddad,Patricia A.,Haddad,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,5th Bristol,lower +Michelle Ciccolo,Michelle L.,Ciccolo,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,15th Middlesex,lower +Susannah Whipps,Susannah M.,Whipps,Female,Independent,ocd-jurisdiction/country:us/state:ma/government,2nd Franklin,lower +Ann-Margaret Ferrante,Ann-Margaret,Ferrante,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,5th Essex,lower +Mary Keefe,Mary S.,Keefe,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,15th Worcester,lower +Kathy LaNatra,Kathleen Smith,LaNatra,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,12th Plymouth,lower +Lindsay Sabadosa,Lindsay N.,Sabadosa,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,1st Hampshire,lower +Kate Lipper-Garabedian,Katherine,Lipper-Garabedian,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,32nd Middlesex,lower +Karen Spilka,Karen Eileen,Spilka,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,Middlesex and Norfolk,upper +Erika Uyterhoeven,Erika,Uyterhoeven,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,27th Middlesex,lower +Rita Mendes,Rita A.,Mendes,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,11th Plymouth,lower +Cindy Friedman,Cindy F.,Friedman,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,Fourth Middlesex,upper +Tricia Farley-Bouvier,Patricia,Farley-Bouvier,Female,Democratic,ocd-jurisdiction/country:us/state:ma/government,2nd Berkshire,lower +Todd Morgan,Todd B.,Morgan,Male,Republican,ocd-jurisdiction/country:us/state:md/government,29C,lower +Marc Korman,Marc Alan,Korman,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,16,lower +Jim Rosapepe,James Carew,Rosapepe,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,21,upper +David Moon,David Hyon,Moon,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,20,lower +Mike Rogers,Michael J.,Rogers,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,32,lower +Adrian Boafo,Adrian A.,Boafo,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,23,lower +Ben Brooks,Benjamin,Brooks,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,10,upper +Cory McCray,Cory V.,McCray,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,45,upper +Michael Jackson,Michael A.,Jackson,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,27,upper +Kevin Harris,Kevin M.,Harris,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,27A,lower +Barrie Ciliberti,Barrie S.,Ciliberti,Male,Republican,ocd-jurisdiction/country:us/state:md/government,4,lower +Caylin Young,Caylin,Young,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,45,lower +J.B. Jennings,Jonathan Bartlett,Jennings,Male,Republican,ocd-jurisdiction/country:us/state:md/government,7,upper +Chris West,Christopher R.,West,Male,Republican,ocd-jurisdiction/country:us/state:md/government,42,upper +Arthur Ellis,Arthur Carr,Ellis,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,28,upper +Jack Bailey,John Daniel,Bailey,Male,Republican,ocd-jurisdiction/country:us/state:md/government,29,upper +Steve Arentz,Steven J.,Arentz,Male,Republican,ocd-jurisdiction/country:us/state:md/government,36,lower +Christopher Bouchat,Christopher Eric,Bouchat,Male,Republican,ocd-jurisdiction/country:us/state:md/government,5,lower +Jim Hinebaugh,James Carlton,Hinebaugh,Male,Republican,ocd-jurisdiction/country:us/state:md/government,1A,lower +Harry Bhandari,Hir Bahadur,Bhandari,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,8,lower +Marvin Holmes,Marvin E.,Holmes,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,23,lower +Kevin Hornberger,Kevin B.,Hornberger,Male,Republican,ocd-jurisdiction/country:us/state:md/government,35B,lower +William Wivell,William J.,Wivell,Male,Republican,ocd-jurisdiction/country:us/state:md/government,2A,lower +Jared Solomon,Jared S.,Solomon,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,18,lower +Brian Crosby,Brian Michael,Crosby,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,29B,lower +Jazz Lewis,Jazz M.,Lewis,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,24,lower +Carl Anderton,Carl L.,Anderton,Male,Republican,ocd-jurisdiction/country:us/state:md/government,38B,lower +Andre Johnson,Andre V.,Johnson,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,34A,lower +Bill Ferguson,William C.,Ferguson,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,46,upper +Johnny Salling,Johnny Ray,Salling,Male,Republican,ocd-jurisdiction/country:us/state:md/government,6,upper +Nick Allen,Nicholas J.,Allen,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,8,lower +Mark Edelson,Mark,Edelson,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,46,lower +Mike Griffith,Michael J.,Griffith,Male,Republican,ocd-jurisdiction/country:us/state:md/government,35A,lower +Mark Fisher,Mark Nicholas,Fisher,Male,Republican,ocd-jurisdiction/country:us/state:md/government,27C,lower +Will Smith,William C.,Smith,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,20,upper +Bob Long,Robert B.,Long,Male,Republican,ocd-jurisdiction/country:us/state:md/government,6,lower +Guy Guzzone,Guy Joseph,Guzzone,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,13,upper +Joe Vogel,Joseph,Vogel,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,17,lower +Aaron Kaufman,Aaron M.,Kaufman,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,18,lower +Ben Barnes,Benjamin Scott,Barnes,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,21,lower +Mark Chang,Mark Soo,Chang,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,32,lower +Ben Kramer,Benjamin F.,Kramer,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,19,upper +Gabriel Acevero,Gabriel,Acevero,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,39,lower +Alonzo Washington,Alonzo Todd,Washington,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,22,upper +Julian Ivey,Robert Julian,Ivey,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,47A,lower +Charles Otto,Charles James,Otto,Male,Republican,ocd-jurisdiction/country:us/state:md/government,38A,lower +David Fraser-Hidalgo,David V.,Fraser-Hidalgo,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,15,lower +Mike McKay,Michael W.,McKay,Male,Republican,ocd-jurisdiction/country:us/state:md/government,1,upper +Johnny Mautz,John Frederick,Mautz,Male,Republican,ocd-jurisdiction/country:us/state:md/government,37,upper +Terry Baker,Terry Lee,Baker,Male,Republican,ocd-jurisdiction/country:us/state:md/government,1C,lower +William Valentine,William M.,Valentine,Male,Republican,ocd-jurisdiction/country:us/state:md/government,2A,lower +Wayne Hartman,Wayne A.,Hartman,Male,Republican,ocd-jurisdiction/country:us/state:md/government,38C,lower +Frank Conaway,Frank M.,Conaway,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,40,lower +Steve Johnson,Steven C.,Johnson,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,34A,lower +Scott Phillips,Norman Scott,Phillips,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,10,lower +Clarence Lam,Clarence,Lam,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,12,upper +Jesse Pippy,Jesse T.,Pippy,Male,Republican,ocd-jurisdiction/country:us/state:md/government,4,lower +Chris Tomlinson,Christopher,Tomlinson,Male,Republican,ocd-jurisdiction/country:us/state:md/government,5,lower +Kris Fair,Kristopher Goddard,Fair,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,3,lower +Ryan Spiegel,Ryan Scott,Spiegel,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,17,lower +Carl Jackson,Carl W.,Jackson,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,8,lower +Greg Wims,William Gregory,Wims,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,39,lower +Chao Wu,Chao,Wu,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,9A,lower +Anthony Muse,Charles Anthony,Muse,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,26,upper +Craig Zucker,Craig J.,Zucker,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,14,upper +Kent Roberson,Kent A.,Roberson,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,25,lower +Justin Ready,Justin D.,Ready,Male,Republican,ocd-jurisdiction/country:us/state:md/government,5,upper +Ken Kerr,Kenneth P.,Kerr,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,3,lower +Ric Metzgar,Richard W.,Metzgar,Male,Republican,ocd-jurisdiction/country:us/state:md/government,6,lower +Jay Jacobs,Jay A.,Jacobs,Male,Republican,ocd-jurisdiction/country:us/state:md/government,36,lower +Jason Buckel,Jason C.,Buckel,Male,Republican,ocd-jurisdiction/country:us/state:md/government,1B,lower +Bryan Simonaire,Bryan W.,Simonaire,Male,Republican,ocd-jurisdiction/country:us/state:md/government,31,upper +Seth Howard,Seth A.,Howard,Male,Republican,ocd-jurisdiction/country:us/state:md/government,30B,lower +Charles Sydnor,Charles E.,Sydnor,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,44,upper +Jeff Waldstreicher,Jeffrey D.,Waldstreicher,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,18,upper +Jason Gallion,Jason C.,Gallion,Male,Republican,ocd-jurisdiction/country:us/state:md/government,35,upper +Malcolm Augustine,Malcolm L.,Augustine,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,47,upper +Chris Adams,Christopher T.,Adams,Male,Republican,ocd-jurisdiction/country:us/state:md/government,37B,lower +Malcolm Ruff,Malcolm Peter,Ruff,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,41,lower +C.T. Wilson,C.T.,Wilson,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,28,lower +Marlon Amprey,Marlon D.,Amprey,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,40,lower +Nick Charles,Nicholas Patrick,Charles,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,25,upper +Vaughn Stewart,Vaughn,Stewart,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,19,lower +Gary Simmons,Gary,Simmons,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,12B,lower +Ron Watson,Ronald Lorenzo,Watson,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,23,upper +Antonio Hayes,Antonio Lamar,Hayes,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,40,upper +Robin Grammer,Robin L.,Grammer,Male,Republican,ocd-jurisdiction/country:us/state:md/government,6,lower +Sandy Rosenberg,Samuel I.,Rosenberg,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,41,lower +Ryan Nawrocki,Ryan M.,Nawrocki,Male,Republican,ocd-jurisdiction/country:us/state:md/government,7A,lower +Nic Kipke,Nicholaus R.,Kipke,Male,Republican,ocd-jurisdiction/country:us/state:md/government,31,lower +Brian Feldman,Brian Jeffrey,Feldman,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,15,upper +Stuart Schmidt,Stuart,Schmidt,Male,Republican,ocd-jurisdiction/country:us/state:md/government,33B,lower +Brian Chisholm,Brian A.,Chisholm,Male,Republican,ocd-jurisdiction/country:us/state:md/government,31,lower +Jeff Ghrist,Jefferson L.,Ghrist,Male,Republican,ocd-jurisdiction/country:us/state:md/government,36,lower +Andrew Pruski,Andrew Christopher,Pruski,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,33A,lower +Nino Mangione,Antonino D.,Mangione,Male,Republican,ocd-jurisdiction/country:us/state:md/government,42A,lower +William Folden,William G.,Folden,Male,Republican,ocd-jurisdiction/country:us/state:md/government,4,upper +Ashanti Martínez,Ashanti Fernando,Martinez,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,22,lower +Matt Morgan,James Matthew,Morgan,Male,Republican,ocd-jurisdiction/country:us/state:md/government,29A,lower +Dana Stein,Dana Max,Stein,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,11B,lower +Eric Ebersole,Eric D.,Ebersole,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,44A,lower +Luke Clippinger,Luke H.,Clippinger,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,46,lower +Jeff Long,Jeffrie Eugene,Long,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,27B,lower +Paul Corderman,Paul D.,Corderman,Male,Republican,ocd-jurisdiction/country:us/state:md/government,2,upper +Josh Stonko,Joshua J.,Stonko,Male,Republican,ocd-jurisdiction/country:us/state:md/government,42C,lower +Jon Cardin,Jon S.,Cardin,Male,Democratic,ocd-jurisdiction/country:us/state:md/government,11B,lower +Tom Hutchinson,Thomas S.,Hutchinson,Male,Republican,ocd-jurisdiction/country:us/state:md/government,37B,lower +Steve Hershey,Stephen S.,Hershey,Male,Republican,ocd-jurisdiction/country:us/state:md/government,36,upper +Brooke Grossman,Brooke,Grossman,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,2B,lower +Anne Healey,Anne Marie,Healey,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,22,lower +Lauren Arikan,Lauren Rothleitner,Arikan,Female,Republican,ocd-jurisdiction/country:us/state:md/government,7B,lower +Kris Valderrama,Kriselda,Valderrama-Lobo,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,26,lower +Jackie Addison,Jacqueline T.,Addison,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,45,lower +Kathy Klausmeier,Katherine A.,Klausmeier,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,8,upper +Dalya Attar,Dalya,Attar-Mehrzadi,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,41,lower +Joanne Benson,Joanne Claybon,Benson,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,24,upper +Pamela Beidle,Pamela Graboski,Beidle,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,32,upper +Lesley Lopez,Lesley J.,Lopez,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,39,lower +Vanessa Atterbeary,Vanessa E.,Atterbeary,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,13,lower +Mary Beth Carozza,Mary Elizabeth Rubin,Carozza,Female,Republican,ocd-jurisdiction/country:us/state:md/government,38,upper +Rachel Muñoz,Rachel Parker,Munoz,Female,Republican,ocd-jurisdiction/country:us/state:md/government,31,lower +Terri Hill,Terri Lynn,Hill,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,12A,lower +Charlotte Crutchfield,Charlotte A.,Crutchfield,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,19,lower +Courtney Watson,Mary Courtney,Watson,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,9B,lower +Natalie Ziegler,Natalie C.,Ziegler,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,9A,lower +Elizabeth Embry,Elizabeth M.,Embry,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,43A,lower +Sarah Elfreth,Sarah Kelly,Elfreth,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,30,upper +Emily Shetty,Emily E.,Shetty,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,18,lower +Robbyn Lewis,Robbyn Terresa,Lewis,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,46,lower +Regina Boyce,Regina T.,Boyce,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,43A,lower +Jen Terrasa,Jennifer R.,Terrasa,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,13,lower +Katie Hester,Kathryn Fry,Hester,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,9,upper +Veronica Turner,Veronica L.,Turner,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,26,lower +Edith Patterson,Edith Jerry,Patterson,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,28,lower +Mary Washington,Mary Lynn,Washington,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,43,upper +Nancy King,Nancy J.,King,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,39,upper +Deni Taveras,Deni,Taveras,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,47B,lower +April Miller,April Fleming,Miller,Female,Republican,ocd-jurisdiction/country:us/state:md/government,4,lower +Joseline Peña-Melnyk,Joseline A.,Pena-Melnyk,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,21,lower +Anne Kaiser,Anne R.,Kaiser,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,14,lower +Kathy Szeliga,Kathryn Y.,Szeliga,Female,Republican,ocd-jurisdiction/country:us/state:md/government,7A,lower +Cheryl Kagan,Cheryl C.,Kagan,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,17,upper +Cathi Forbes,Catherine M.,Forbes,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,43B,lower +Jennifer White Holland,Jennifer Arice,White Holland,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,10,lower +Shaneka Henson,Shaneka T.,Henson,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,30A,lower +Pam Guzzone,Pamela Lanman,Guzzone,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,13,lower +Michele Guyton,Michele Jenkins,Guyton,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,42B,lower +Dawn Gile,Dawn D.,Gile,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,33,upper +Karen Young,Karen Lewis,Young,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,3,upper +Pam Queen,Pamela E.,Queen,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,14,lower +April Rose,April R.,Rose,Female,Republican,ocd-jurisdiction/country:us/state:md/government,5,lower +Nicole Williams,Nicole A.,Williams,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,22,lower +Stephanie Smith,Stephanie Maddin,Smith,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,45,lower +Sheree Sample-Hughes,Sheree,Sample-Hughes,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,37A,lower +Denise Roberts,Denise Geneva,Roberts,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,25,lower +Karen Simpson,Karen,Simpson,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,3,lower +Mary-Dulany James,Mary-Dulany,James,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,34,upper +Kym Taylor,Kym,Taylor,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,23,lower +Susan McComas,Susan K.,McComas,Female,Republican,ocd-jurisdiction/country:us/state:md/government,34B,lower +Andrea Harrison,Andrea Fletcher,Harrison,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,24,lower +Sandy Bartlett,Juanita Sandra,Bartlett,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,32,lower +Karen Toles,Karen R.,Toles,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,25,lower +Jheanelle Wilkins,Jheanelle K.,Wilkins,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,20,lower +Tiffany Alston,Tiffany T.,Alston,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,24,lower +Linda Foley,Linda K.,Foley,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,15,lower +Julie Palakovich Carr,Julie,Palakovich Carr,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,17,lower +Jill Carter,Jill Priscilla,Carter,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,41,upper +Lorig Charkoudian,Lorig,Charkoudian,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,20,lower +Dana Jones,Dana Celeste,Jones,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,30A,lower +Lily Qi,Lily,Qi,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,15,lower +Sarah Wolek,Sarah Siddiqui,Wolek,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,16,lower +Jamila Woods,Jamila Jaye,Woods,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,26,lower +Adrienne Jones,Adrienne A.,Jones,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,10,lower +Teresa Reilly,Teresa E.,Reilly,Female,Republican,ocd-jurisdiction/country:us/state:md/government,35A,lower +Shelly Hettleman,Michelle Laskin,Hettleman,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,11,upper +Bonnie Cullison,Bonnie Lynne,Cullison,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,19,lower +Sara Love,Sara N.,Love,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,16,upper +Mary Lehman,Mary Angela,Lehman,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,21,lower +Heather Bagnall Tudball,Heather Alice,Bagnall Tudball,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,33C,lower +Jessica Feldmark,Jessica Marie Page,Feldmark,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,12A,lower +Cheryl Pasteur,Cheryl,Pasteur,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,11A,lower +Melissa Wells,Melissa R.,Wells,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,40,lower +Bernice Mireku-North,Bernice Dansoah,Mireku-North,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,14,lower +Sheila Ruth,Sheila S.,Ruth,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,44B,lower +Aletheia McCaskill,Aletheia R.,McCaskill,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,44B,lower +Diana Fennell,Diana M.,Fennell,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,47A,lower +Debra Davis,Debra M.,Davis,Female,Democratic,ocd-jurisdiction/country:us/state:md/government,28,lower +Ambureen Rana,Ambureen,Rana,Other,Democratic,ocd-jurisdiction/country:us/state:me/government,21,lower +Charles Skold,Charles A.,Skold,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,119,lower +Paige Zeigler,Stanley Paige,Zeigler,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,40,lower +Dave LaFountain,David,LaFountain,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,16,upper +Dan Shagoury,Daniel Joseph,Shagoury,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,55,lower +Joe Rafferty,Joseph,Rafferty,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,34,upper +Josh Morris,Joshua,Morris,Male,Republican,ocd-jurisdiction/country:us/state:me/government,91,lower +Grayson Lookner,Grayson,Lookner,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,113,lower +Jeff Timberlake,Jeffrey L.,Timberlake,Male,Republican,ocd-jurisdiction/country:us/state:me/government,17,upper +Woody Woodsome,David,Woodsome,Male,Republican,ocd-jurisdiction/country:us/state:me/government,139,lower +Trey Stewart,Harold L.,Stewart,Male,Republican,ocd-jurisdiction/country:us/state:me/government,2,upper +Joe Baldacci,Joseph M.,Baldacci,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,9,upper +Sam Zager,Samuel Lewis,Zager,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,116,lower +Daniel Hobbs,Daniel J.,Hobbs,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,145,lower +Sawin Millett,Howard Sawin,Millett,Male,Republican,ocd-jurisdiction/country:us/state:me/government,81,lower +Ken Davis,Kenneth Ralph,Davis,Male,Republican,ocd-jurisdiction/country:us/state:me/government,10,lower +Mark Lawrence,Mark W.,Lawrence,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,35,upper +Ron Russell,Ronald B.,Russell,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,17,lower +Mike Lajoie,Michel A.,Lajoie,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,96,lower +Bruce White,Bruce A.,White,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,65,lower +Tavis Hasenfus,Tavis Rock,Hasenfus,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,57,lower +Chad Perkins,Chad Richard,Perkins,Male,Republican,ocd-jurisdiction/country:us/state:me/government,31,lower +Adam Lee,Adam R.,Lee,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,89,lower +Kevin O'Connell,Kevin J.M.,O'Connell,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,20,lower +Tim Nangle,Timothy,Nangle,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,26,upper +Mike Soboleski,Michael,Soboleski,Male,Republican,ocd-jurisdiction/country:us/state:me/government,73,lower +Abden Simmons,Abden S.,Simmons,Male,Republican,ocd-jurisdiction/country:us/state:me/government,45,lower +Jack Ducharme,John E.,Ducharme,Male,Republican,ocd-jurisdiction/country:us/state:me/government,71,lower +Matt Harrington,Matthew A.,Harrington,Male,Republican,ocd-jurisdiction/country:us/state:me/government,33,upper +Randy Hall,Randall C.,Hall,Male,Republican,ocd-jurisdiction/country:us/state:me/government,74,lower +Caleb Ness,Caleb Joshua,Ness,Male,Republican,ocd-jurisdiction/country:us/state:me/government,82,lower +Ben Hymes,Benjamin C.,Hymes,Male,Republican,ocd-jurisdiction/country:us/state:me/government,38,lower +Drew Gattine,Andrew M.,Gattine,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,126,lower +Craig Hickman,Craig V.,Hickman,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,14,upper +Rick Mason,Richard G.,Mason,Male,Republican,ocd-jurisdiction/country:us/state:me/government,97,lower +Ed Polewarczyk,Edward J.,Polewarczyk,Male,Republican,ocd-jurisdiction/country:us/state:me/government,47,lower +Matt Moonen,Matthew W.,Moonen,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,117,lower +Aaron Dana,Aaron M.,Dana,Male,Independent,ocd-jurisdiction/country:us/state:me/government,Passamaquoddy Tribe,lower +Rick Bennett,Richard A.,Bennett,Male,Republican,ocd-jurisdiction/country:us/state:me/government,18,upper +Chip Curry,Glenn,Curry,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,11,upper +James Boyle,James Allen,Boyle,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,109,lower +Roger Albert,Roger Clarence,Albert,Male,Republican,ocd-jurisdiction/country:us/state:me/government,2,lower +Russell Black,Russell J.,Black,Male,Republican,ocd-jurisdiction/country:us/state:me/government,5,upper +Henry Ingwersen,Henry,Ingwersen,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,32,upper +Troy Jackson,Troy Dale,Jackson,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,1,upper +Jim Dill,James F.,Dill,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,26,lower +Christopher Kessler,Christopher J.,Kessler,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,121,lower +Matt Beck,Matthew D.,Beck,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,122,lower +Dean Cray,Dean A.,Cray,Male,Republican,ocd-jurisdiction/country:us/state:me/government,69,lower +Bill Pluecker,William D.,Pluecker,Male,Independent,ocd-jurisdiction/country:us/state:me/government,44,lower +Matt Pouliot,Matthew G.,Pouliot,Male,Republican,ocd-jurisdiction/country:us/state:me/government,15,upper +Ben Chipman,Benjamin M.,Chipman,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,28,upper +Mike Tipping,Mike,Tipping,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,8,upper +Donald Ardell,Donald J.,Ardell,Male,Republican,ocd-jurisdiction/country:us/state:me/government,6,lower +Gary Drinkwater,Gary,Drinkwater,Male,Republican,ocd-jurisdiction/country:us/state:me/government,27,lower +Jim Libby,James,Libby,Male,Republican,ocd-jurisdiction/country:us/state:me/government,22,upper +Bill Bridgeo,William R.,Bridgeo,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,60,lower +Lucas Lanigan,Lucas John,Lanigan,Male,Republican,ocd-jurisdiction/country:us/state:me/government,141,lower +Gerry Runte,Walter Gerard,Runte,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,146,lower +Nathan Carlow,Nathan Michael,Carlow,Male,Republican,ocd-jurisdiction/country:us/state:me/government,137,lower +Randall Greenwood,Randall Adam,Greenwood,Male,Republican,ocd-jurisdiction/country:us/state:me/government,56,lower +Steve Wood,Stephen J.,Wood,Male,Republican,ocd-jurisdiction/country:us/state:me/government,92,lower +Art Bell,Arthur L.,Bell,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,103,lower +Larry Dunphy,Larry C.,Dunphy,Male,Republican,ocd-jurisdiction/country:us/state:me/government,72,lower +Brad Farrin,Bradlee Thomas,Farrin,Male,Republican,ocd-jurisdiction/country:us/state:me/government,3,upper +Bob Nutting,Robert W.,Nutting,Male,Republican,ocd-jurisdiction/country:us/state:me/government,66,lower +Steven Foster,Steven D.,Foster,Male,Republican,ocd-jurisdiction/country:us/state:me/government,32,lower +Dick Campbell,Richard H.,Campbell,Male,Republican,ocd-jurisdiction/country:us/state:me/government,19,lower +Dan Costain,Danny Edward,Costain,Male,Republican,ocd-jurisdiction/country:us/state:me/government,33,lower +Austin Theriault,Austin Leo,Theriault,Male,Republican,ocd-jurisdiction/country:us/state:me/government,1,lower +Scott Landry,H. Scott,Landry,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,75,lower +Ed Crockett,W. Edward,Crockett,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,112,lower +Scott Cyrway,Scott Wynn,Cyrway,Male,Republican,ocd-jurisdiction/country:us/state:me/government,63,lower +Caldwell Jackson,Caldwell,Jackson,Male,Republican,ocd-jurisdiction/country:us/state:me/government,80,lower +Marc Malon,Marc G.,Malon,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,133,lower +Micky Carmichael,Meldon H.,Carmichael,Male,Republican,ocd-jurisdiction/country:us/state:me/government,18,lower +Mark Blier,Mark John,Blier,Male,Republican,ocd-jurisdiction/country:us/state:me/government,138,lower +Thomas Lavigne,Thomas A.,Lavigne,Male,Republican,ocd-jurisdiction/country:us/state:me/government,148,lower +Benjamin Collings,Benjamin T.,Collings,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,114,lower +Dan Sayre,Daniel,Sayre,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,135,lower +David Boyer,David,Boyer,Male,Republican,ocd-jurisdiction/country:us/state:me/government,87,lower +Jim White,James Lee,White,Male,Republican,ocd-jurisdiction/country:us/state:me/government,30,lower +David Haggan,David G.,Haggan,Male,Republican,ocd-jurisdiction/country:us/state:me/government,36,lower +Mark Walker,Mark,Walker,Male,Republican,ocd-jurisdiction/country:us/state:me/government,84,lower +Billy Bob Faulkingham,William R.,Faulkingham,Male,Republican,ocd-jurisdiction/country:us/state:me/government,12,lower +Wayne Parry,Wayne R.,Parry,Male,Republican,ocd-jurisdiction/country:us/state:me/government,140,lower +Dick Bradstreet,Richard T.,Bradstreet,Male,Republican,ocd-jurisdiction/country:us/state:me/government,61,lower +Dan Newman,Daniel J.,Newman,Male,Republican,ocd-jurisdiction/country:us/state:me/government,58,lower +Jim Thorne,James E.,Thorne,Male,Republican,ocd-jurisdiction/country:us/state:me/government,35,lower +James Worth,James Mark,Worth,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,13,lower +Walter Riseman,Walter N.,Riseman,Male,Independent,ocd-jurisdiction/country:us/state:me/government,83,lower +Morgan Rielly,Morgan J.,Rielly,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,127,lower +Steve Moriarty,Stephen W.,Moriarty,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,110,lower +Peter Lyford,Peter A.,Lyford,Male,Republican,ocd-jurisdiction/country:us/state:me/government,10,upper +Joe Perry,Joseph C.,Perry,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,24,lower +Joseph Galletta,Joseph C.,Galletta,Male,Republican,ocd-jurisdiction/country:us/state:me/government,98,lower +Joseph Underwood,Joseph Frederick,Underwood,Male,Republican,ocd-jurisdiction/country:us/state:me/government,5,lower +David Sinclair,David A.,Sinclair,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,50,lower +Gregory Swallow,Gregory Lewis,Swallow,Male,Republican,ocd-jurisdiction/country:us/state:me/government,7,lower +Dan Ankeles,Daniel J.,Ankeles,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,100,lower +Timmy Guerrette,Timothy C.,Guerrette,Male,Republican,ocd-jurisdiction/country:us/state:me/government,4,lower +Michael Brennan,Michael F.,Brennan,Male,Democratic,ocd-jurisdiction/country:us/state:me/government,115,lower +Eric Brakey,Eric L.,Brakey,Male,Republican,ocd-jurisdiction/country:us/state:me/government,20,upper +Michael Lemelin,Michael,Lemelin,Male,Republican,ocd-jurisdiction/country:us/state:me/government,53,lower +Mark Babin,Mark Michael,Babin,Male,Republican,ocd-jurisdiction/country:us/state:me/government,3,lower +Jeff Adams,Jeffrey Sean,Adams,Male,Republican,ocd-jurisdiction/country:us/state:me/government,144,lower +Sue Salisbury,Suzanne M.,Salisbury,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,128,lower +Sally Cluchey,Sally Jeane,Cluchey,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,52,lower +Janice Dodge,Janice,Dodge,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,39,lower +Tiffany Strout,Tiffany Pinkham,Strout,Female,Republican,ocd-jurisdiction/country:us/state:me/government,11,lower +Holly Eaton,Holly Rae,Eaton,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,15,lower +Annie Graham,Anne P.,Graham,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,105,lower +Donna Bailey,Donna,Bailey,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,31,upper +Irene Gifford,Irene A.,Gifford,Female,Republican,ocd-jurisdiction/country:us/state:me/government,28,lower +Jill Duson,Jill,Duson,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,27,upper +Anne Carney,Anne,Carney,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,29,upper +Traci Gere,Traci,Gere,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,134,lower +Peggy Rotundo,Margaret R.,Rotundo,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,21,upper +Teresa Pierce,Teresa S.,Pierce,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,25,upper +Stacy Brenner,Stacy Fielding,Brenner,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,30,upper +Lydia Crafts,Lydia V.,Crafts,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,46,lower +Allison Hepler,Allison,Hepler,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,49,lower +Kristi Mathieson,Kristi Michele,Mathieson,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,151,lower +Laura Supica,Laura D.,Supica,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,22,lower +Amanda Collamore,Amanda N.,Collamore,Female,Republican,ocd-jurisdiction/country:us/state:me/government,68,lower +Lynn Copeland,Lynn H.,Copeland,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,130,lower +Abigail Griffin,Abigail W.,Griffin,Female,Republican,ocd-jurisdiction/country:us/state:me/government,34,lower +Kelly Murphy,Kelly Noonan,Murphy,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,125,lower +Tracy Quint,Tracy L.,Quint,Female,Republican,ocd-jurisdiction/country:us/state:me/government,8,lower +Reagan Paul,Reagan L.,Paul,Female,Republican,ocd-jurisdiction/country:us/state:me/government,37,lower +Holly Sargent,Holly T.,Sargent,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,147,lower +Rachel Talbot Ross,Rachel,Talbot Ross,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,118,lower +Stacey Guerin,Stacey K.,Guerin,Female,Republican,ocd-jurisdiction/country:us/state:me/government,4,upper +Pinny Beebe-Center,Anne,Beebe-Center,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,12,upper +Amy Kuhn,Amy Donovan,Kuhn,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,111,lower +Melanie Sachs,Melanie,Sachs,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,102,lower +Vicki Doudera,Victoria Wenzel,Doudera,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,41,lower +Marianne Moore,Marianne,Moore,Female,Republican,ocd-jurisdiction/country:us/state:me/government,6,upper +Amy Arata,Amy Bradstreet,Arata,Female,Republican,ocd-jurisdiction/country:us/state:me/government,104,lower +Sophie Warren,Sophia B.,Warren,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,124,lower +Anne-Marie Mastraccio,Anne-Marie,Mastraccio,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,142,lower +Erin Sheehan,Erin R.,Sheehan,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,132,lower +Jane Pringle,Jane P.,Pringle,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,107,lower +Cheryl Golek,Cheryl A.,Golek,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,99,lower +Katrina Smith,Katrina J.,Smith,Female,Republican,ocd-jurisdiction/country:us/state:me/government,62,lower +Poppy Arford,Poppy Thacher,Arford,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,101,lower +Mattie Daughtry,Matthea Elisabeth Larsen,Daughtry,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,23,upper +Laurel Libby,Laurel Dawson Munsell,Libby,Female,Republican,ocd-jurisdiction/country:us/state:me/government,90,lower +Nina Milliken,Nina Azella,Milliken,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,16,lower +Margaret Craven,Margaret M.,Craven,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,93,lower +Michele Meyer,Michele,Meyer,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,150,lower +Maureen Terry,Maureen Fitzgerald,Terry,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,108,lower +Shelley Rudnicki,Shelley,Rudnicki,Female,Republican,ocd-jurisdiction/country:us/state:me/government,67,lower +Kim Pomerleau,Kimberly J.,Pomerleau,Female,Republican,ocd-jurisdiction/country:us/state:me/government,85,lower +Holly Stover,Holly,Stover,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,48,lower +Tammy Schmersal-Burgess,Tammy L.,Schmersal-Burgess,Female,Republican,ocd-jurisdiction/country:us/state:me/government,77,lower +Karen Montell,Karen L.,Montell,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,54,lower +Kathy Shaw,Kathleen A.,Shaw,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,88,lower +Valli Geiger,Valli D.,Geiger,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,42,lower +Maggie O'Neil,Margaret M.,O'Neil,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,129,lower +Reb Millett,Rebecca J.,Millett,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,123,lower +Jess Fay,Jessica L.,Fay,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,86,lower +Laurie Osher,Laurie,Osher,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,25,lower +Mana Abdi,Mana Hared,Abdi,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,95,lower +Amy Roeder,Amy J.,Roeder,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,23,lower +Cameron Reny,Cameron,Reny,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,13,upper +Kristen Cloutier,Kristen,Cloutier,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,94,lower +Anne Perry,Anne Churchill,Perry,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,9,lower +Raegan LaRochelle,Raegan French,LaRochelle,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,59,lower +Heidi Sampson,Heidi H.,Sampson,Female,Republican,ocd-jurisdiction/country:us/state:me/government,136,lower +Tiffany Roberts,Tiffany D.,Roberts,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,149,lower +Sheila Lyman,Sheila A.,Lyman,Female,Republican,ocd-jurisdiction/country:us/state:me/government,76,lower +Kathy Javner,Kathy Irene,Javner,Female,Republican,ocd-jurisdiction/country:us/state:me/government,29,lower +Colleen Madigan,Colleen M.,Madigan,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,64,lower +Lisa Keim,Lisa,Keim,Female,Republican,ocd-jurisdiction/country:us/state:me/government,19,upper +Barbara Bagshaw,Barbara A.,Bagshaw,Female,Republican,ocd-jurisdiction/country:us/state:me/government,106,lower +Jennifer Poirier,Jennifer Lynn,Poirier,Female,Republican,ocd-jurisdiction/country:us/state:me/government,70,lower +Rachel Henderson,Rachel Ann,Henderson,Female,Republican,ocd-jurisdiction/country:us/state:me/government,78,lower +Deqa Dhalac,Deqa,Dhalac,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,120,lower +Eloise Vitelli,Eloise A.,Vitelli,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,24,upper +Nicole Grohoski,Nicole,Grohoski,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,7,upper +Ann Marie Fredericks,Ann Marie,Fredericks,Female,Republican,ocd-jurisdiction/country:us/state:me/government,143,lower +Lori Gramlich,Lori,Gramlich,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,131,lower +Ann Matlack,Ann Higgins,Matlack,Female,Democratic,ocd-jurisdiction/country:us/state:me/government,43,lower +Emily Dievendorf,Emily,Dievendorf,Other,Democratic,ocd-jurisdiction/country:us/state:mi/government,77,lower +Cam Cavitt,Cameron,Cavitt,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,106,lower +Tyrone Carter,Tyrone,Carter,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,1,lower +Mark Huizenga,Mark E.,Huizenga,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,30,upper +Will Bruck,William T.,Bruck,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,30,lower +Jay DeBoyer,Jay,DeBoyer,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,63,lower +Dale Zorn,Dale W.,Zorn,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,34,lower +Greg Alexander,Gregory,Alexander,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,98,lower +Matt Hall,Matt,Hall,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,42,lower +Darrin Camilleri,Darrin Quiroz,Camilleri,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,4,upper +Tullio Liberati,Tullio,Liberati,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,2,lower +Greg Markkanen,Gregory,Markkanen,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,110,lower +Steve Carra,Stephen,Carra,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,36,lower +Jason Hoskins,Jason,Hoskins,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,18,lower +Mike Hoadley,Michael,Hoadley,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,99,lower +Brian BeGole,Brian,BeGole,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,71,lower +Thomas Albert,Thomas A.,Albert,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,18,upper +Brad Paquette,Brad,Paquette,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,37,lower +Dave Prestin,David,Prestin,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,108,lower +Jim Haadsma,James T.,Haadsma,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,44,lower +Andrew Beeler,Andrew,Beeler,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,64,lower +Jonathan Lindsey,Jonathan,Lindsey,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,17,upper +Nate Shannon,Nate,Shannon,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,58,lower +Joe Aragona,Joseph,Aragona,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,60,lower +Bill Schuette,Bill G.,Schuette,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,95,lower +Bob Bezotte,Robert,Bezotte,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,50,lower +Rick Outman,Rick,Outman,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,33,upper +Alabas Farhat,Alabas,Farhat,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,3,lower +Kevin Hertel,Kevin Michael,Hertel,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,12,upper +Jim Runestad,Jim,Runestad,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,23,upper +Ranjeev Puri,Ranjeev,Puri,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,24,lower +Jason Morgan,Jason T.,Morgan,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,23,lower +Roger Hauck,Roger,Hauck,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,34,upper +Dylan Wegela,Dylan,Wegela,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,26,lower +Mark Tisdel,Mark,Tisdel,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,55,lower +Sean McCann,Sean A.,McCann,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,19,upper +Kevin Daley,Kevin,Daley,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,26,upper +Bryan Posthumus,Bryan R.,Posthumus,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,90,lower +Josh Schriver,Joshua,Schriver,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,66,lower +Roger Victory,Roger,Victory,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,31,upper +Tom Kuhn,Thomas,Kuhn,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,57,lower +Donavan McKinney,Donavan,McKinney,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,14,lower +Andrew Fink,Andrew F.,Fink,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,35,lower +John Cherry,John,Cherry,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,27,upper +Joseph Fox,Joseph,Fox,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,101,lower +Abraham Aiyash,Abraham,Aiyash,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,9,lower +Brad Slagh,Bradley,Slagh,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,85,lower +David Martin,David,Martin,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,68,lower +Jerry Neyer,Jerry,Neyer,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,92,lower +Phil Skaggs,Philip,Skaggs,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,80,lower +Dan Lauwers,Daniel Victor,Lauwers,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,25,upper +Pat Outman,Patrick,Outman,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,91,lower +Joe Tate,Joseph,Tate,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,10,lower +Joey Andrews,Joey,Andrews,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,38,lower +Aric Nesbitt,Aric Y.,Nesbitt,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,20,upper +Mike McFall,Mike,McFall,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,8,lower +Phil Green,Philip A.,Green,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,67,lower +Jeremy Moss,Jeremy Allen,Moss,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,7,upper +Mike Harris,Michael R.,Harris,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,52,lower +Jon Bumstead,Jon C.,Bumstead,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,32,upper +Jaz Martus,Jasper R.,Martus,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,69,lower +Graham Filler,Graham,Filler,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,93,lower +Jeff Irwin,Jeff,Irwin,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,15,upper +Greg VanWoerkom,Gregory,VanWoerkom,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,88,lower +Will Snyder,William,Snyder,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,87,lower +Curt VanderWall,Curtis,VanderWall,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,102,lower +Jim DeSana,James,DeSana,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,29,lower +Peter Herzberg,Peter Alexander,Herzberg,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,25,lower +Tom Kunse,Tom,Kunse,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,100,lower +John Damoose,John N.,Damoose,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,37,upper +Jimmie Wilson,Jimmie,Wilson,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,32,lower +Paul Wojno,Paul J.,Wojno,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,10,upper +John Fitzgerald,John W.,Fitzgerald,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,83,lower +Timmy Beson,Timothy,Beson,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,96,lower +Michael Webber,Michael J.,Webber,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,9,upper +Sam Singh,Sam,Singh,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,28,upper +Amos O'Neal,Amos,O'Neal,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,94,lower +Matt Koleszar,Matt,Koleszar,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,22,lower +Joe Bellino,Joseph N.,Bellino,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,16,upper +J.R. Roth,John R.,Roth,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,104,lower +Doug Wozniak,Douglas Chester,Wozniak,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,59,lower +Noah Arbit,Noah,Arbit,Male,Democratic,ocd-jurisdiction/country:us/state:mi/government,20,lower +Ed McBroom,Edward W.,McBroom,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,38,upper +Matt Maddock,Matthew,Maddock,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,51,lower +Matt Bierlein,Matthew,Bierlein,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,97,lower +Luke Meerman,Luke,Meerman,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,89,lower +Mike Mueller,Michael,Mueller,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,72,lower +Ken Borton,Kenneth C.,Borton,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,105,lower +Neil Friske,Neil,Friske,Male,Republican,ocd-jurisdiction/country:us/state:mi/government,107,lower +Sarah Lightner,Sarah Latoski,Lightner,Female,Republican,ocd-jurisdiction/country:us/state:mi/government,45,lower +Stephanie Young,Stephanie A.,Young,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,16,lower +Jennifer Conlin,Jennifer Anne,Conlin,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,48,lower +Felicia Brabec,Felicia,Brabec,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,33,lower +Brenda Carter,Brenda Joyce,Carter,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,53,lower +Veronica Paiz,Veronica,Paiz,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,11,lower +Pauline Wendzel,Pauline,Wendzel,Female,Republican,ocd-jurisdiction/country:us/state:mi/government,39,lower +Kara Hope,Kara Henigan,Hope,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,74,lower +Cynthia Neeley,Cynthia Renay,Neeley,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,70,lower +Alicia St. Germaine,Alicia,St. Germaine,Female,Republican,ocd-jurisdiction/country:us/state:mi/government,62,lower +Erin Byrnes,Erin,Byrnes,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,15,lower +Lana Theis,Lana,Theis,Female,Republican,ocd-jurisdiction/country:us/state:mi/government,22,upper +Gina Johnsen,Gina,Johnsen,Female,Republican,ocd-jurisdiction/country:us/state:mi/government,78,lower +Karen Whitsett,Karen,Whitsett,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,4,lower +Julie Rogers,Julie M.,Rogers,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,41,lower +Jamie Thompson,Jamie,Thompson,Female,Republican,ocd-jurisdiction/country:us/state:mi/government,28,lower +Jenn Hill,Jennifer M.,Hill,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,109,lower +Kelly Breen,Kelly,Breen,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,21,lower +Jaime Greene,Jaime,Greene,Female,Republican,ocd-jurisdiction/country:us/state:mi/government,65,lower +Julie Brixie,Julie,Brixie,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,73,lower +Kristian Grant,Kristian,Grant,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,82,lower +Natalie Price,Natalie,Price,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,5,lower +Christine Morse,Christine,Morse,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,40,lower +Veronica Klinefelt,Veronica,Klinefelt,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,11,upper +Stephanie Chang,Stephanie Gray,Chang,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,3,upper +Carol Glanville,Carol,Glanville,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,84,lower +Kristen Rivet,Kristen McDonald,Rivet,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,35,upper +Laurie Pohutsky,Laurie,Pohutsky,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,17,lower +Carrie Rheingans,Carrie Amber,Rheingans,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,47,lower +Angela Witwer,Angela Brownell,Witwer,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,76,lower +Erika Geiss,Erika-Marie S.,Geiss,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,1,upper +Penelope Tsernoglou,Penelope,Tsernoglou,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,75,lower +Reggie Miller,Regina,Miller,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,31,lower +Ann Bollin,Ann,Bollin,Female,Republican,ocd-jurisdiction/country:us/state:mi/government,49,lower +Helena Scott,Helena,Scott,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,7,lower +Betsy Coffia,Betsy Lynn,Coffia,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,103,lower +Kimberly Edwards,Kimberly L.,Edwards,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,12,lower +Sarah Anthony,Sarah,Anthony,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,21,upper +Regina Weiss,Regina,Weiss,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,6,lower +Samantha Steckloff,Samantha,Steckloff,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,19,lower +Sylvia Santana,Sylvia,Santana,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,2,upper +Mai Xiong,Mai,Xiong,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,13,lower +Ruth Johnson,Ruth,Johnson,Female,Republican,ocd-jurisdiction/country:us/state:mi/government,24,upper +Kathy Schmaltz,Kathy,Schmaltz,Female,Republican,ocd-jurisdiction/country:us/state:mi/government,46,lower +Nancy DeBoer,Nancy,DeBoer,Female,Republican,ocd-jurisdiction/country:us/state:mi/government,86,lower +Dayna Polehanki,Dayna,Polehanki,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,5,upper +Mary Cavanagh,Mary,Cavanagh,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,6,upper +Angela Rigas,Angela,Rigas,Female,Republican,ocd-jurisdiction/country:us/state:mi/government,79,lower +Rachel Hood,Rachel,Hood,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,81,lower +Denise Mentzer,Denise,Mentzer,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,61,lower +Winnie Brinks,Winnie,Brinks,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,29,upper +Mallory McMorrow,Mallory,McMorrow,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,8,upper +Sue Shink,Susan E.,Shink,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,14,upper +Rosemary Bayer,Rosemary,Bayer,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,13,upper +Sharon MacDonell,Sharon,MacDonell,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,56,lower +Rachelle Smit,Rachelle M.,Smit,Female,Republican,ocd-jurisdiction/country:us/state:mi/government,43,lower +Donni Steele,Donni,Steele,Female,Republican,ocd-jurisdiction/country:us/state:mi/government,54,lower +Jaime Churches,Jaime,Churches,Female,Democratic,ocd-jurisdiction/country:us/state:mi/government,27,lower +Michele Hoitenga,Michele,Hoitenga,Female,Republican,ocd-jurisdiction/country:us/state:mi/government,36,upper +Liish Kozlowski,Alicia,Kozlowski,Other,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,8B,lower +Scott Dibble,David Scott,Dibble,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,61,upper +Andrew Mathews,Andrew M.,Mathews,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,27,upper +Jeff Witte,Jeff,Witte,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,57B,lower +Jeff Brand,Jeff,Brand,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,18A,lower +Mike Wiener,Mike,Wiener,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,5B,lower +Nolan West,Nolan,West,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,32A,lower +Rob Kupec,Robert J.,Kupec,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,4,upper +Zack Stephenson,Zack,Stephenson,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,35A,lower +Rob Farnsworth,Robert D.,Farnsworth,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,7,upper +Steven Jacob,Steven,Jacob,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,20B,lower +Matt Klein,Matthew David,Klein,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,53,upper +Jerry Newton,Gerald F.,Newton,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,35B,lower +Chris Swedzinski,Christopher Thomas,Swedzinski,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,15A,lower +Walter Hudson,Walter,Hudson,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,30A,lower +Jeff Dotseth,Jeff A.,Dotseth,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,11A,lower +Dave Pinto,Dave,Pinto,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,64B,lower +Bryan Lawrence,Bryan,Lawrence,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,27B,lower +Greg Davids,Gregory Michael,Davids,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,26B,lower +Jim Abeler,James Joseph,Abeler,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,35,upper +Isaac Schultz,Isaac M.,Schultz,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,10B,lower +John Burkel,John,Burkel,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,1A,lower +Ben Davis,Ben,Davis,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,6A,lower +Luke Frederick,Luke,Frederick,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,18B,lower +Dean Urdahl,Dean L.,Urdahl,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,16A,lower +Larry Kraft,Larry,Kraft,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,46A,lower +Steve Green,Steve,Green,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,2,upper +Jay Xiong,Jay,Xiong,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,67B,lower +Tim O'Driscoll,Timothy J.,O'Driscoll,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,13B,lower +Danny Nadeau,Danny,Nadeau,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,34A,lower +Foung Hawj,Foung,Hawj,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,67,upper +Warren Limmer,Warren E.,Limmer,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,37,upper +Cedrick Frazier,Cedrick Rommel,Frazier,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,43A,lower +Jim Nash,James Alexander,Nash,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,48A,lower +Tom Murphy,Tom,Murphy,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,9B,lower +Mark Johnson,Mark T.,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,1,upper +Roger Skraba,Roger J.,Skraba,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,3A,lower +Ron Kresha,Ron,Kresha,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,10A,lower +Duane Quam,Duane Robert,Quam,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,24A,lower +Dan Wolgamott,Dan,Wolgamott,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,14B,lower +Josh Heintzeman,Joshua,Heintzeman,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,6B,lower +Andrew Lang,Andrew R.,Lang,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,16,upper +Paul Torkelson,Paul M.,Torkelson,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,15B,lower +Bill Lieske,Bill,Lieske,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,58,upper +Pat Garofalo,Patrick Lee,Garofalo,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,58B,lower +Harry Niska,Harry,Niska,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,31A,lower +Brian Johnson,Brian,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,28A,lower +Nathan Coulter,Nathan,Coulter,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,51B,lower +Gene Dornink,Gene Allen,Dornink,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,23,upper +Brian Pfarr,Brian H.,Pfarr,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,22B,lower +Ron Latz,Ronald Steven,Latz,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,46,upper +Jeremy Miller,Jeremy R.,Miller,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,26,upper +Frank Hornstein,Frank,Hornstein,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,61A,lower +Shane Hudella,Shane Richard,Hudella,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,41B,lower +Samakab Hussein,Samakab,Hussein,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,65A,lower +Mike Freiberg,Michael J.A.,Freiberg,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,43B,lower +Glenn Gruenhagen,Glenn,Gruenhagen,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,17,upper +Mike Nelson,Michael V.,Nelson,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,38A,lower +Ethan Cha,Ethan,Cha,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,47B,lower +Michael Howard,Michael,Howard,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,51A,lower +Tou Xiong,Tou,Xiong,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,44,upper +Bobby Joe Champion,Bobby Joe,Champion,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,59,upper +Nick Frentz,Nick A.,Frentz,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,18,upper +John Marty,John J.,Marty,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,40,upper +Steve Cwodzinski,Steve A.,Cwodzinski,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,49,upper +Justin Eichorn,Justin D.,Eichorn,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,6,upper +John Petersburg,John,Petersburg,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,19B,lower +John Huot,John D.,Huot,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,56B,lower +Matt Grossell,Matthew,Grossell,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,2A,lower +Jeff Backer,Jeff,Backer,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,9A,lower +Jon Koznick,Jon,Koznick,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,57A,lower +Ned Carroll,Ned,Carroll,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,42A,lower +Andrew Myers,Andrew,Myers,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,45A,lower +Grant Hauschild,Grant,Hauschild,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,3,upper +Mohamud Noor,Mohamud,Noor,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,60B,lower +Robert Bierman,Robert,Bierman,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,56A,lower +Joe Schomacker,Joseph Roy,Schomacker,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,21A,lower +John Jasinski,John R.,Jasinski,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,19,upper +Mark Wiens,Mark,Wiens,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,41A,lower +Zach Duckworth,Zach,Duckworth,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,57,upper +Leon Lillie,Leon Michael,Lillie,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,44B,lower +Paul Anderson,Paul H.,Anderson,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,12A,lower +Spencer Igo,Spencer R.,Igo,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,7A,lower +Rick Hansen,Rick,Hansen,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,53B,lower +Mark Koran,Mark W.,Koran,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,28,upper +Jeff Howe,Jeff R.,Howe,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,13,upper +Eric Lucero,Eric,Lucero,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,30,upper +Gene Pelowski,Gene P.,Pelowski,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,26A,lower +Paul Utke,Paul J.,Utke,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,5,upper +Brian Daniels,Brian,Daniels,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,19A,lower +Bruce Anderson,Bruce Douglas,Anderson,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,29,upper +Jim Carlson,James,Carlson,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,52,upper +John Hoffman,John A.,Hoffman,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,34,upper +Steve Drazkowski,Steve,Drazkowski,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,20,upper +Elliott Engen,Elliott,Engen,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,36A,lower +Ben Bakeberg,Ben,Bakeberg,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,54B,lower +Nathan Wesenberg,Nathan,Wesenberg,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,10,upper +Fue Lee,Fue,Lee,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,59A,lower +Eric Pratt,Eric R.,Pratt,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,54,upper +Bjorn Olson,Bjorn,Olson,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,22A,lower +Shane Mekeland,Shane,Mekeland,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,27A,lower +Jamie Long,James M.,Long,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,61B,lower +Bill Weber,William,Weber,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,21,upper +Dave Baker,Dave,Baker,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,16B,lower +Brad Tabke,Brad,Tabke,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,54A,lower +Jim Joy,James,Joy,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,4B,lower +Dave Lislegard,Dave,Lislegard,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,7B,lower +Peter Fischer,Peter,Fischer,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,44A,lower +Gary Dahms,Gary H.,Dahms,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,15,upper +Steve Elkins,Steve,Elkins,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,50B,lower +Nathan Nelson,Nathan,Nelson,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,11B,lower +Jordan Rasmusson,Jordan C.,Rasmusson,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,9,upper +Paul Novotny,Paul,Novotny,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,30B,lower +Rich Draheim,Rich,Draheim,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,22,upper +Cal Bahr,Calvin,Bahr,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,31,upper +Aric Putnam,Aric,Putnam,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,14,upper +Michael Kreun,Michael Eugene,Kreun,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,32,upper +Andy Smith,Andrew,Smith,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,25B,lower +Omar Fateh,Omar,Fateh,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,62,upper +Jason Rarick,Jason,Rarick,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,11,upper +Joe McDonald,Joseph P.,McDonald,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,29A,lower +Torrey Westrom,Torrey N.,Westrom,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,12,upper +Matt Bliss,Matt,Bliss,Male,Republican,ocd-jurisdiction/country:us/state:mn/government,2B,lower +Matt Norris,Matt,Norris,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,32B,lower +Josiah Hill,Josiah,Hill,Male,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,33B,lower +Kristin Robbins,Kristin,Robbins,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,37A,lower +Emma Greenman,Emma G.,Greenman,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,63B,lower +Cheryl Youakim,Cheryl,Youakim,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,46B,lower +Zaynab Mohamed,Zaynab,Mohamed,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,63,upper +Erin Murphy,Erin P.,Murphy,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,64,upper +Jamie Becker-Finn,Jamie,Becker-Finn,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,40B,lower +Bernie Perryman,Bernadette,Perryman,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,14A,lower +Erin Maye Quade,Erin K.,Maye Quade,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,56,upper +Judy Seeberger,Judy,Seeberger,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,41,upper +Melissa Hortman,Melissa,Hortman,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,34B,lower +Athena Hollins,Athena,Hollins,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,66B,lower +Mary Clardy,Mary Frances,Clardy,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,53A,lower +Kim Hicks,Kimberly Kearnes,Hicks,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,25A,lower +Pam Altendorf,Pam,Altendorf,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,20A,lower +Mary Kunesh-Podein,Mary Kelly,Kunesh-Podein,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,39,upper +Patty Acomb,Patty,Acomb,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,45B,lower +Heather Keeler,Heather,Keeler,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,4A,lower +Samantha Vang,Samantha,Vang,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,38B,lower +Alice Mann,Alice,Mann,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,50,upper +Lisa Demuth,Lisa,Demuth,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,13A,lower +Peggy Bennett,Peggy,Bennett,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,23A,lower +Esther Agbaje,Esther,Agbaje,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,59B,lower +Sandra Feist,Sandra,Feist,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,39B,lower +Marion Rarick,Marion Daniels,Rarick,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,29B,lower +Lindsey Port,Lindsey,Port,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,55,upper +Ginny Klevorn,Ginny,Klevorn,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,42B,lower +Liz Lee,Kaozouapa Elizabeth,Lee,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,67A,lower +María Isa Pérez-Vega,Maria Isa,Perez-Vega,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,65B,lower +Samantha Sencer-Mura,Samantha,Sencer-Mura,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,63A,lower +Bonnie Westlin,Bonnie Sue,Westlin,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,42,upper +Clare Oumou Verbeten,Clare,Oumou Verbeten,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,66,upper +Kelly Moller,Kelly,Moller,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,40A,lower +Peggy Scott,Peggy S.,Scott,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,31B,lower +Liz Boldon,Liz,Boldon,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,25,upper +Melissa Wiklund,Melissa Halvorson,Wiklund,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,51,upper +Liz Reyer,Liz,Reyer,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,52A,lower +Karin Housley,Karin,Housley,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,33,upper +Aisha Gomez,Aisha,Gomez,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,62A,lower +Kaela Berg,Kaela,Berg,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,55B,lower +Kaohly Her,Kaohly Vang,Her,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,64A,lower +Nicole Mitchell,Nicole Lynn,Mitchell,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,47,upper +Julia Coleman,Julia E.,Coleman,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,48,upper +Natalie Zeleznikar,Natalie,Zeleznikar,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,3B,lower +Carla Nelson,Carla Jean,Nelson,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,24,upper +Susan Pha,Susan Kaying,Pha,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,38,upper +Anne Neu Brindley,Anne,Neu Brindley,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,28B,lower +Brion Curran,Brion Marie,Curran,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,36B,lower +Deb Kiel,Debra L.,Kiel,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,1B,lower +Bobbie Harder,Bobbie,Harder,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,17B,lower +Erin Koegel,Erin Anderson,Koegel,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,39A,lower +Amanda Hemmingsen-Jaeger,Amanda,Hemmingsen-Jaeger,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,47A,lower +Tina Liebling,Tina,Liebling,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,24B,lower +Ann Rest,Ann H.,Rest,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,43,upper +Jen McEwen,Jennifer A.,McEwen,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,8,upper +Kristi Pursell,Kristi Achor,Pursell,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,58A,lower +Krista Knudsen,Krista,Knudsen,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,5A,lower +Carlie Kotyza-Witthuhn,Carlie,Kotyza-Witthuhn,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,49B,lower +Bianca Virnig,Bianca Ward,Virnig,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,52B,lower +Sandy Pappas,Sandra L.,Pappas,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,65,upper +Sydney Jordan,Sydney,Jordan,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,60A,lower +Leigh Finke,Leigh,Finke,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,66A,lower +Mary Franson,Mary Bensoni,Franson,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,12B,lower +Jess Hanson,Jessica,Hanson,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,55A,lower +Patricia Mueller,Patricia,Mueller,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,23B,lower +Hodan Hassan,Hodan,Hassan,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,62B,lower +Laurie Pryor,Laurie,Pryor,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,49A,lower +Patti Anderson,Patricia,Anderson,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,33A,lower +Heather Gustafson,Heather,Gustafson,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,36,upper +Marj Fogelman,Marjorie Judith,Fogelman,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,21B,lower +Lucy Rehm,Lucille,Rehm,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,48B,lower +Dawn Gillman,Dawn,Gillman,Female,Republican,ocd-jurisdiction/country:us/state:mn/government,17A,lower +Kristin Bahner,Kristin,Bahner,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,37B,lower +Kari Dziedzic,Karen,Dziedzic,Female,Democratic-Farmer-Labor,ocd-jurisdiction/country:us/state:mn/government,60,upper +Ben Brown,Benjamin,Brown,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,26,upper +Mike McGirl,Michael,McGirl,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,118,lower +Herman Morse,Herman,Morse,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,151,lower +Richard Brown,Richard,Brown,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,27,lower +Justin Brown,Justin,Brown,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,16,upper +Phil Christofanelli,Philip J.,Christofanelli,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,104,lower +Ian Mackey,Ian,Mackey,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,99,lower +Mark Matthiesen,Mark,Matthiesen,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,107,lower +Joe Adams,Joseph,Adams,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,86,lower +Willard Haley,Willard,Haley,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,58,lower +Brad Banderman,Brad,Banderman,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,119,lower +Donnie Brown,Donnie,Brown,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,149,lower +Ben Keathley,Ben Kumar,Keathley,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,101,lower +Don Mayhew,Donald,Mayhew,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,124,lower +Lane Roberts,Lane,Roberts,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,161,lower +Bill Owen,Bill,Owen,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,131,lower +David Smith,David Tyson,Smith,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,46,lower +Mike Henderson,Mike,Henderson,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,117,lower +Michael Johnson,Michael,Johnson,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,23,lower +Mike Stephens,Mike,Stephens,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,128,lower +Ron Copeland,Ron,Copeland,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,120,lower +Dan Stacy,Dan,Stacy,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,31,lower +Brad Christ,Brad,Christ,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,96,lower +Dave Griffith,David,Griffith,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,60,lower +John Voss,John,Voss,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,147,lower +Dean VanSchoiack,Dean,VanSchoiack,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,9,lower +Doug Richey,Doug,Richey,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,39,lower +Chris Brown,Chris,Brown,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,16,lower +Kent Haden,Kent,Haden,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,43,lower +Travis Smith,Travis,Smith,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,155,lower +Darin Chappell,Darin,Chappell,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,137,lower +Anthony Ealy,Anthony T.,Ealy,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,36,lower +Marlon Anderson,Marlon Shepard,Anderson,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,76,lower +Dale Wright,Dale L.,Wright,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,116,lower +Rick Francis,Rick,Francis,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,145,lower +Adrian Plank,Adrian S.,Plank,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,47,lower +Alan Gray,Alan Jerome,Gray,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,75,lower +Brian Williams,Brian Christopher,Williams,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,14,upper +Mark Sharp,Mark,Sharp,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,37,lower +Phil Amato,Phil,Amato,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,113,lower +Philip Oehlerking,Philip A.,Oehlerking,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,100,lower +Michael Davis,Michael,Davis,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,56,lower +Rodger Reedy,Rodger L.,Reedy,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,57,lower +Jim Murphy,Jim,Murphy,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,94,lower +Doug Mann,Douglas,Mann,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,50,lower +Rusty Black,Rusty,Black,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,12,upper +Rick Brattin,Richard Ray,Brattin,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,31,upper +Danny Busick,Danny,Busick,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,3,lower +Caleb Rowden,Caleb,Rowden,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,19,upper +Kevin Windham,Kevin Lamar,Windham,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,74,lower +Kyle Marquart,Kyle,Marquart,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,109,lower +Jim Schulte,Jim,Schulte,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,49,lower +Bill Hardwick,Bill,Hardwick,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,121,lower +Bishop Davidson,Bishop,Davidson,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,130,lower +Mike Moon,Mike,Moon,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,29,upper +Aaron Crossley,Aaron,Crossley,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,29,lower +Bill Allen,Bill,Allen,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,17,lower +Ben Baker,Ben,Baker,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,160,lower +Jason Bean,Jason,Bean,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,25,upper +Denny Hoskins,Denny L.,Hoskins,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,21,upper +Doyle Justus,Doyle,Justus,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,41,lower +Tony Luetkemeyer,Tony,Luetkemeyer,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,34,upper +Mitch Boggs,Mitch,Boggs,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,157,lower +Brad Pollitt,Bradley,Pollitt,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,52,lower +Bob Bromley,Robert,Bromley,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,162,lower +Chris Sander,Chris,Sander,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,33,lower +Doug Clemens,Douglas Thomas,Clemens,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,72,lower +Mike Cierpiot,Mike,Cierpiot,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,8,upper +Rudy Veit,Rudy L.,Veit,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,59,lower +Chris Lonsdale,Chris,Lonsdale,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,38,lower +Dan Houx,Dan,Houx,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,54,lower +Louis Riggs,Louis,Riggs,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,5,lower +Alex Riley,Alex,Riley,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,134,lower +Bill Falkner,Bill,Falkner,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,10,lower +Jeff Farnan,Jeff,Farnan,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,1,lower +John Black,John,Black,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,129,lower +Nick Schroer,Nicholas,Schroer,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,2,upper +Del Taylor,Delbret,Taylor,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,84,lower +Barry Hovis,Barry,Hovis,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,146,lower +Tony Lovasco,Tony,Lovasco,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,64,lower +Peter Merideth,Peter,Merideth,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,80,lower +Sean Pouche,Sean Scobee,Pouche,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,13,lower +Bennie Cook,Bennie Lee,Cook,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,143,lower +Jon Patterson,Jonathan,Patterson,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,30,lower +Kemp Strickler,Kemp,Strickler,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,34,lower +Steve Roberts,Steven,Roberts,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,5,upper +Travis Fitzwater,Travis,Fitzwater,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,10,upper +Bruce Sassmann,Bruce,Sassmann,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,61,lower +Mike Bernskoetter,Mike,Bernskoetter,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,6,upper +Jamie Ray Gragg,Jamie Ray,Gragg,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,140,lower +Kurtis Gregory,Kurtis,Gregory,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,51,lower +Bill Eigel,William,Eigel,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,23,upper +Darrell Atchison,Darrell,Atchison,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,153,lower +Richard West,Richard,West,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,102,lower +Terry Thompson,Terry,Thompson,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,53,lower +Dane Diehl,Dane,Diehl,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,125,lower +Dean Plocher,Dean,Plocher,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,89,lower +Chad Perkins,Chad,Perkins,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,40,lower +Michael O'Donnell,Michael,O'Donnell,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,95,lower +Dirk Deaton,Dirk,Deaton,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,159,lower +Justin Sparks,Justin,Sparks,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,110,lower +Gary Bonacker,Gary,Bonacker,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,111,lower +David Evans,David Paul,Evans,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,154,lower +Brad Hudson,Brad,Hudson,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,138,lower +Scott Cupps,Scott,Cupps,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,158,lower +Robert Sauls,Robert Edward,Sauls,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,21,lower +David Casteel,David,Casteel,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,97,lower +Jeff Myers,Jeff,Myers,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,42,lower +Lincoln Hough,Lincoln,Hough,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,30,upper +Adam Schnelting,Adam,Schnelting,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,69,lower +Curtis Trent,Curtis D.,Trent,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,20,upper +Jamie Burger,Jamie,Burger,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,148,lower +Ken Waller,Ken,Waller,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,114,lower +Greg Sharpe,Greg,Sharpe,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,4,lower +Adam Schwadron,Adam,Schwadron,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,105,lower +Travis Wilson,Travis,Wilson,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,106,lower +Jay Mosley,Jermond,Mosley,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,68,lower +Josh Hurlbert,Joshua E.,Hurlbert,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,8,lower +Hardy Billington,Hardy,Billington,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,152,lower +Aaron McMullen,Aaron,McMullen,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,20,lower +Jeff Coleman,Jeffrey L.,Coleman,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,32,lower +Jeff Knight,Jeff,Knight,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,142,lower +Jim Kalberloh,Jim,Kalberloh,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,126,lower +Cody Smith,Cody,Smith,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,163,lower +Doug Beck,Doug,Beck,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,1,upper +Steve Butz,Steve,Butz,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,81,lower +Mike Haffner,Mike,Haffner,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,55,lower +Andrew Koenig,Andrew P.,Koenig,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,15,upper +Michael Burton,Michael,Burton,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,92,lower +Eric Woods,Eric,Woods,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,18,lower +Tim Taylor,Timothy,Taylor,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,48,lower +Dave Hinman,Dave,Hinman,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,103,lower +Brian Seitz,Brian,Seitz,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,156,lower +Bob Titus,Bob,Titus,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,139,lower +Jerome Barnes,Jerome,Barnes,Male,Democratic,ocd-jurisdiction/country:us/state:mo/government,28,lower +Justin Hicks,Justin,Hicks,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,108,lower +Ed Lewis,Edwin,Lewis,Male,Republican,ocd-jurisdiction/country:us/state:mo/government,6,lower +Cameron Parker,Cameron Bunting,Parker,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,150,lower +Barbara Phifer,Barbara,Phifer,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,90,lower +Tracy McCreery,Tracy,McCreery,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,24,upper +Holly Jones,Holly M.,Jones,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,88,lower +Ashley Bland Manlove,Ashley Jade Bland,Manlove,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,26,lower +Jill Carter,Jill,Carter,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,32,upper +Patty Lewis,Patty,Lewis,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,25,lower +Keri Ingle,Keri,Ingle,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,35,lower +Ann Kelley,Ann,Kelley,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,127,lower +Donna Baringer,Donna Cunningham,Baringer,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,82,lower +Angela Mosley,Angela Walton,Mosley,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,13,upper +Mazzie Christensen,Mazzie M.,Christensen,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,2,lower +LaKeySha Bosley,LaKeySha Amr,Frazier-Bosley,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,79,lower +Melanie Stinnett,Melanie,Stinnett,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,133,lower +Tricia Byrnes,Tricia K.,Byrnes,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,63,lower +Bridget Moore,Bridget Walsh,Moore,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,93,lower +Lisa Thomas,Lisa,Thomas,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,123,lower +Betsy Fogle,Betsy,Fogle,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,135,lower +Emily Weber,Emily,Weber,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,24,lower +Cyndi Buchheit-Courtway,Cyndi,Buchheit-Courtway,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,115,lower +Cindy O'Laughlin,Cindy,O'Laughlin,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,18,upper +Sarah Unsicker,Sarah,Unsicker,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,83,lower +Deb Lavender,Deb,Lavender,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,98,lower +Sherri Gallick,Sherri,Gallick,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,62,lower +Chantelle Nickson-Clark,Chantelle,Nickson-Clark,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,67,lower +LaDonna Appelbaum,LaDonna,Appelbaum,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,71,lower +Yolanda Young,Yolanda,Young,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,22,lower +Hannah Kelly,Hannah,Kelly,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,141,lower +Holly Rehder,Holly Renee Thompson,Rehder,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,27,upper +Kimberly-Ann Collins,Kimberly-Ann,Collins,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,77,lower +Sandy Crawford,Sandy Franklin,Crawford,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,28,upper +Yolonda Fountain-Henderson,Yolonda,Fountain-Henderson,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,85,lower +Raychel Proudie,Raychel Crystal,Proudie,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,73,lower +Cheri Toalson Reisch,Cheri,Toalson Reisch,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,44,lower +Jamie Johnson,Jamie,Johnson,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,12,lower +Renee Reuter,Renee,Reuter,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,112,lower +Karla May,Karla,May,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,4,upper +Jo Doll,Jo,Doll,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,91,lower +Kathy Steinhoff,Mary Kathy,Steinhoff,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,45,lower +Chris Dinkins,Christina Dodson,Dinkins,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,144,lower +Wendy Hausman,Wendy,Hausman,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,65,lower +Tara Peters,Tara,Peters,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,122,lower +Gretchen Bangert,Gretchen,Bangert,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,70,lower +Stephanie Hein,Stephanie,Hein,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,136,lower +Ashley Aune,Ashley,Aune,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,14,lower +Barbara Washington,Barbara Anne,Washington,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,9,upper +Mary Elizabeth Coleman,Mary Elizabeth,Coleman,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,22,upper +Marlene Terry,Marlene,Terry,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,66,lower +Ingrid Burnett,Ingrid,Burnett,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,19,lower +Paula Brown,Paula,Brown,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,87,lower +Peggy McGaugh,Peggy,McGaugh,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,7,lower +Brenda Shields,Brenda,Shields,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,11,lower +Maggie Nurrenbern,Maggie,Nurrenbern,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,15,lower +Elaine Gannon,Elaine,Gannon,Female,Republican,ocd-jurisdiction/country:us/state:mo/government,3,upper +Crystal Quade,Crystal M.,Quade,Female,Democratic,ocd-jurisdiction/country:us/state:mo/government,132,lower +Brent Powell,Brent,Powell,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,59,lower +Bryant Clark,Bryant W.,Clark,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,47,lower +David Parker,David L.,Parker,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,2,upper +Charles Young,Charles Lemuel,Young,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,82,lower +Price Wallace,Price,Wallace,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,77,lower +Timmy Ladner,Timmy,Ladner,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,93,lower +Donnie Bell,Donnie,Bell,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,21,lower +Chuck Younger,Charles,Younger,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,17,upper +Joseph Thomas,Joseph C.,Thomas,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,22,upper +Percy Watson,Percy Willis,Watson,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,103,lower +Oscar Denton,Oscar,Denton,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,55,lower +Sollie Norwood,Sollie B.,Norwood,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,28,upper +Scott DeLano,Scott,DeLano,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,50,upper +Jay McKnight,Jay,McKnight,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,95,lower +Chris Johnson,Chris,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,45,upper +Rickey Thompson,Rickey,Thompson,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,16,lower +David Jordan,David Lee,Jordan,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,24,upper +Fred Shanks,Fred,Shanks,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,60,lower +Jody Steverson,Joseph F.,Steverson,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,4,lower +Tracey Rosebud,Tracey Torrance,Rosebud,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,30,lower +Jeffrey Hulum,Jeffrey,Hulum,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,119,lower +Richard Bennett,Richard B.,Bennett,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,120,lower +Kevin Blackwell,Kevin Edward,Blackwell,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,19,upper +Troy Smith,Troy Moss,Smith,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,84,lower +John Horhn,John A.,Horhn,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,26,upper +Manly Barton,Manly George,Barton,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,109,lower +Bo Brown,William R.,Brown,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,70,lower +Kevin Felsher,Kevin W.,Felsher,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,117,lower +Daniel Sparks,Daniel H.,Sparks,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,5,upper +Joey Hood,Joey,Hood,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,35,lower +Casey Eure,Casey,Eure,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,116,lower +Ken Morgan,Ken,Morgan,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,100,lower +Brad Mattox,Bradford,Mattox,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,2,lower +Rob Roberson,Loyd B.,Roberson,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,43,lower +Joey Fillingane,Joseph Edgar,Fillingane,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,41,upper +Jeffery Harness,Jeffery,Harness,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,85,lower +Cedric Burnett,Cedric,Burnett,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,9,lower +Kenji Holloway,Kenji,Holloway,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,27,lower +Mark Tullos,Mark K.,Tullos,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,79,lower +Karl Oliver,Karl,Oliver,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,46,lower +Joseph Tubb,Joseph,Tubb,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,87,lower +Juan Barnett,Juan,Barnett,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,34,upper +Bradford Blackmon,Bradford Jerome,Blackmon,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,21,upper +Carl Mickens,Carl L.,Mickens,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,42,lower +Clay Mansell,Clay,Mansell,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,56,lower +Kent McCarty,Kent,McCarty,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,101,lower +Rod Hickman,Rodgrick Glenard,Hickman,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,32,upper +Jeffrey Guice,Jeffrey S.,Guice,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,114,lower +Brent Anderson,Brent,Anderson,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,122,lower +Noah Sanford,Noah,Sanford,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,90,lower +John Faulkner,John G.,Faulkner,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,5,lower +Ben Suber,Benjamin Allen,Suber,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,8,upper +Jason Barrett,Jason Todd,Barrett,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,39,upper +Dan Eubanks,Dan,Eubanks,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,25,lower +Steve Horne,Stephen A.,Horne,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,81,lower +Elliot Burch,Elliot,Burch,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,105,lower +Jansen Owen,Jansen T.,Owen,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,106,lower +Reginald Jackson,Reginald D.,Jackson,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,11,upper +Ronnie Crudup,Ronnie C.,Crudup,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,71,lower +Tracy Arnold,William Tracy,Arnold,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,3,lower +Bill Kinkade,William Franklin,Kinkade,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,52,lower +Albert Butler,Albert,Butler,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,37,upper +Hillman Frazier,Hillman Terome,Frazier,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,27,upper +Jimmy Fondren,James Clayton,Fondren,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,111,lower +Daryl Porter,Daryl L.,Porter,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,98,lower +Michael McLendon,Michael W.,McLendon,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,1,upper +Bob Evans,Robert E.,Evans,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,91,lower +Walter Michel,J. Walter,Michel,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,25,upper +Neil Whaley,Neil S.,Whaley,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,10,upper +Gene Newman,Gene,Newman,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,61,lower +Josh Hawkins,Josh,Hawkins,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,10,lower +Jeramey Anderson,Jeramey Dewayne,Anderson,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,110,lower +Jon Lancaster,Jonathan Ray,Lancaster,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,22,lower +Jeff Hale,Jeff,Hale,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,24,lower +Hob Bryan,Wendell Hob,Bryan,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,7,upper +Rodney Hall,Rodney Lawell,Hall,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,20,lower +Vince Mangold,Vince,Mangold,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,53,lower +Zack Grady,Zachary,Grady,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,115,lower +Donnie Scoggin,Donnie,Scoggin,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,89,lower +Justin Keen,Justin,Keen,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,6,lower +Kevin Horan,Mark Kevin,Horan,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,34,lower +Mike Seymour,Joseph Michael,Seymour,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,47,upper +Derrick Simmons,Derrick Terrell,Simmons,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,12,upper +Cheikh Taylor,Cheikh,Taylor,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,38,lower +Keith Jackson,Keith K.,Jackson,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,45,lower +Karl Gibbs,Karl Malinsky,Gibbs,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,36,lower +Christopher Bell,Christopher M.,Bell,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,65,lower +Bubba Carpenter,Lester E.,Carpenter,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,1,lower +Robert Johnson,Robert Lee,Johnson,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,94,lower +Doc Harris,W.I.,Harris,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,28,lower +Kevin Ford,Kevin,Ford,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,54,lower +Dean Kirby,Dean,Kirby,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,30,upper +Steve Lott,Steve,Lott,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,107,lower +C. Scott Bounds,Craig Scott,Bounds,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,44,lower +Joel Carter,Joel R.,Carter,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,49,upper +Greg Haney,Greg,Haney,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,118,lower +Sam Mims,Samuel Cochran,Mims,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,97,lower +Orlando Paden,Orlando W.,Paden,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,26,lower +Shane Barnett,Shane,Barnett,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,86,lower +Lance Varner,Lance,Varner,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,62,lower +Clay Deweese,Clay,Deweese,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,12,lower +John Polk,John Allen,Polk,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,44,upper +Trey Lamar,John Thomas,Lamar,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,8,lower +Brice Wiggins,Christopher Brice,Wiggins,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,52,upper +Randy Boyd,Randy Phillip,Boyd,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,19,lower +Brian Rhodes,Brian,Rhodes,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,36,upper +Earle Banks,Earle S.,Banks,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,67,lower +Lee Yancey,Jeremy Lewayne,Yancey,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,74,lower +Solomon Osborne,Solomon Curtis,Osborne,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,32,lower +Robert Sanders,Robert L.,Sanders,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,29,lower +Bill Pigott,Bill,Pigott,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,99,lower +Jeremy England,Jeremy Thomas,England,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,51,upper +Hank Zuber,Henry B.,Zuber,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,113,lower +Justis Gibbs,Justis Robert,Gibbs,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,72,lower +Jerry Turner,Jerry R.,Turner,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,18,lower +Josh Harkins,Josh,Harkins,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,20,upper +Andy Berry,Andy,Berry,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,35,upper +Otis Anthony,Otis L.,Anthony,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,31,lower +Jim Estrada,Jim,Estrada,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,33,lower +Briggs Hopson,W. Briggs,Hopson,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,23,upper +Willie Bailey,Willie,Bailey,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,49,lower +Dennis DeBar,Dennis,DeBar,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,43,upper +Bart Williams,Thomas Barton,Williams,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,15,upper +Gary Brumfield,Gary L.,Brumfield,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,38,upper +John Hines,John W.,Hines,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,50,lower +Shane Aguirre,Shane,Aguirre,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,17,lower +Jason White,Jason M.,White,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,48,lower +Sam Creekmore,Samuel J.,Creekmore,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,14,lower +Mike Thompson,Mike,Thompson,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,48,upper +Gregory Holloway,Gregory,Holloway,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,76,lower +Lawrence Blackmon,Lawrence Stephen,Blackmon,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,57,lower +Larry Byrd,Larry,Byrd,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,104,lower +Steve Massengill,Steve E.,Massengill,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,13,lower +Tyler McCaughn,Tyler,McCaughn,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,31,upper +Randy Rushing,Randal Kevin,Rushing,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,78,lower +Jeff Tate,Jeff,Tate,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,33,upper +Andy Boyd,George Andrew,Boyd,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,37,lower +Philman Ladner,Philman A.,Ladner,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,46,upper +John Read,John,Read,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,112,lower +David Blount,David,Blount,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,29,upper +Billy Adam Calvert,Billy Adam,Calvert,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,83,lower +Fabian Nelson,Fabian,Nelson,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,66,lower +Chad McMahan,Chad,McMahan,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,6,upper +Chuck Blackwell,Charles Gray,Blackwell,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,88,lower +Andy Stepp,Andrew,Stepp,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,23,lower +Kabir Karriem,Kabir,Karriem,Male,Democratic,ocd-jurisdiction/country:us/state:ms/government,41,lower +Jonathan McMillan,Jonathan,McMillan,Male,Republican,ocd-jurisdiction/country:us/state:ms/government,58,lower +Shanda Yates,Shanda M.,Yates,Female,Independent,ocd-jurisdiction/country:us/state:ms/government,64,lower +Timaka James-Jones,Timaka,James-Jones,Female,Democratic,ocd-jurisdiction/country:us/state:ms/government,51,lower +Stacey Wilkes,Stacey Hobgood,Wilkes,Female,Republican,ocd-jurisdiction/country:us/state:ms/government,108,lower +Angela Turner-Ford,Angela,Turner-Ford,Female,Democratic,ocd-jurisdiction/country:us/state:ms/government,16,upper +Grace Butler-Washington,Tamarra Grace,Butler-Washington,Female,Democratic,ocd-jurisdiction/country:us/state:ms/government,69,lower +Angela Cockerham,Angela,Cockerham,Female,Independent,ocd-jurisdiction/country:us/state:ms/government,96,lower +Zakiya Summers,Zakiya,Summers,Female,Democratic,ocd-jurisdiction/country:us/state:ms/government,68,lower +Robin Robinson,Robin J.,Robinson,Female,Republican,ocd-jurisdiction/country:us/state:ms/government,42,upper +Lataisha Jackson,Lataisha,Jackson,Female,Democratic,ocd-jurisdiction/country:us/state:ms/government,11,lower +Stephanie Foster,Stephanie McKenzie,Foster,Female,Democratic,ocd-jurisdiction/country:us/state:ms/government,63,lower +Kathy Chism,Kathy Leath,Chism,Female,Republican,ocd-jurisdiction/country:us/state:ms/government,3,upper +Carolyn Crawford,Carolyn,Crawford,Female,Republican,ocd-jurisdiction/country:us/state:ms/government,121,lower +Rita Parks,Rita Potts,Parks,Female,Republican,ocd-jurisdiction/country:us/state:ms/government,4,upper +Jenifer Branning,Jenifer Burrage,Branning,Female,Republican,ocd-jurisdiction/country:us/state:ms/government,18,upper +Nicole Boyd,Nicole Akins,Boyd,Female,Republican,ocd-jurisdiction/country:us/state:ms/government,9,upper +Lydia Chassaniol,Lydia Graves,Chassaniol,Female,Republican,ocd-jurisdiction/country:us/state:ms/government,14,upper +Sarita Simmons,Sarita,Simmons,Female,Democratic,ocd-jurisdiction/country:us/state:ms/government,13,upper +Celeste Hurst,Celeste,Hurst,Female,Republican,ocd-jurisdiction/country:us/state:ms/government,75,lower +Beth Waldo,Beth Luther,Waldo,Female,Republican,ocd-jurisdiction/country:us/state:ms/government,15,lower +Becky Currie,Becky,Currie,Female,Republican,ocd-jurisdiction/country:us/state:ms/government,92,lower +Angela Hill,Angela Burks,Hill,Female,Republican,ocd-jurisdiction/country:us/state:ms/government,40,upper +Omeria Scott,Omeria McDonald,Scott,Female,Democratic,ocd-jurisdiction/country:us/state:ms/government,80,lower +Jill Ford,Jill,Ford,Female,Republican,ocd-jurisdiction/country:us/state:ms/government,73,lower +Hester Jackson-McCray,Hester,Jackson-McCray,Female,Democratic,ocd-jurisdiction/country:us/state:ms/government,40,lower +Kimberly Remak,Kimberly,Remak,Female,Republican,ocd-jurisdiction/country:us/state:ms/government,7,lower +Dana McLean,Dana Underwood,McLean,Female,Republican,ocd-jurisdiction/country:us/state:ms/government,39,lower +Missy McGee,Missy Warren,McGee,Female,Republican,ocd-jurisdiction/country:us/state:ms/government,102,lower +S.J. Howell,Sarah J.,Howell,Other,Democratic,ocd-jurisdiction/country:us/state:mt/government,95,lower +Daniel Zolnikov,Daniel,Zolnikov,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,22,upper +Brandon Ler,Brandon,Ler,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,35,lower +Frank Smith,Frank J.,Smith,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,31,lower +Tom McGillvray,Thomas Van,McGillvray,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,23,upper +Josh Kassmier,Joshua J.,Kassmier,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,27,lower +Jim Hamilton,Jim,Hamilton,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,61,lower +Greg Frazer,Gregory L.,Frazer,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,78,lower +Braxton Mitchell,Braxton,Mitchell,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,3,lower +Steve Gist,Steve,Gist,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,25,lower +Ross Fitzgerald,Ross H.,Fitzgerald,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,17,lower +Jerry Schillinger,Jerry,Schillinger,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,37,lower +Matt Regier,Matt,Regier,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,4,lower +Jason Small,Jason Dean,Small,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,21,upper +Keith Regier,Keith,Regier,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,3,upper +Brad Molnar,Brad,Molnar,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,28,upper +Tom France,Thomas,France,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,94,lower +Mike Lang,Mike,Lang,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,17,upper +Casey Knudsen,Casey James,Knudsen,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,33,lower +Mark Noland,Mark R.,Noland,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,5,upper +Chris Friedel,Christopher,Friedel,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,26,upper +Butch Gillespie,Bruce,Gillespie,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,9,upper +Joe Read,Joe,Read,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,93,lower +Bill Mercer,William Walter,Mercer,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,46,lower +Caleb Hinkle,Caleb L.,Hinkle,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,68,lower +Neil Duram,Neil A.,Duram,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,2,lower +Mike Cuffe,Mike,Cuffe,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,1,upper +Shane Morigeau,Shane Antoine,Morigeau,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,48,upper +Eric Matthews,Eric,Matthews,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,66,lower +Marty Malone,Martin Charles,Malone,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,59,lower +Jedediah Hinkle,Jedediah Lee,Hinkle,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,67,lower +Ken Bogner,Kenneth John,Bogner,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,19,upper +Pat Flowers,Pat,Flowers,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,32,upper +Jeremy Trebas,Jeremy,Trebas,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,13,upper +Marvin Weatherwax,Marvin R.,Weatherwax,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,15,lower +Russel Tempel,Russel,Tempel,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,14,upper +Derek Harvey,Derek J.,Harvey,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,74,lower +Llew Jones,Llewelyn E.,Jones,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,18,lower +Wayne Rusk,Wayne,Rusk,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,88,lower +Mark Thane,Mark,Thane,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,99,lower +Chris Pope,Christopher S.,Pope,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,31,upper +Greg Hinkle,Greg W.,Hinkle,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,7,upper +Daniel Emrich,Daniel,Emrich,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,11,upper +Greg Oblander,Gregory,Oblander,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,40,lower +Steve Fitzpatrick,Steven J.,Fitzpatrick,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,10,upper +Tanner Smith,Tanner J.,Smith,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,11,lower +Mike Hopkins,Mike,Hopkins,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,92,lower +Greg Hertz,Gregory J.,Hertz,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,6,upper +John Esp,John,Esp,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,30,upper +Walt Sales,Walt,Sales,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,35,upper +Mike Yakawich,Michael,Yakawich,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,51,lower +Ron Marshall,Ron L.,Marshall,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,87,lower +Gary Parry,Gary,Parry,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,39,lower +Zack Wirth,Zachary,Wirth,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,80,lower +Gayle Lammers,Gayle,Lammers,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,41,lower +Russ Miner,Russel W.,Miner,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,19,lower +Scot Kerns,Douglas Scot,Kerns,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,23,lower +Dan Salomon,Daniel,Salomon,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,47,upper +Dave Bedey,David,Bedey,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,86,lower +Ed Butcher,Edward,Butcher,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,29,lower +Terry Falk,Terry,Falk,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,8,lower +John Fuller,John D.,Fuller,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,4,upper +Larry Brewster,Larry,Brewster,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,44,lower +Paul Tuss,Paul,Tuss,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,28,lower +Ed Buttrey,Francis Edward,Buttrey,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,21,lower +Paul Fielder,Paul C.,Fielder,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,13,lower +Steve Gunderson,Steve,Gunderson,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,1,lower +Steven Galloway,Steven Edwin,Galloway,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,24,lower +Carl Glimm,Carl,Glimm,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,2,upper +Terry Vermeire,Terry,Vermeire,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,39,upper +Lee Deming,Lee,Deming,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,55,lower +Ken Walsh,Kenneth M.,Walsh,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,71,lower +Ed Stafman,Edward,Stafman,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,62,lower +George Nikolakakos,George Peter,Nikolakakos,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,26,lower +Mike Fox,Michael,Fox,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,16,upper +Donavon Hawk,Donavon,Hawk,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,76,lower +Kelly Kortum,Kelly,Kortum,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,65,lower +Barry Usher,Barry M.,Usher,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,20,upper +Jeff Welborn,Jeffrey,Welborn,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,36,upper +Terry Moore,Terrill,Moore,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,54,lower +Tyson Running Wolf,Tyson T.,Running Wolf,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,16,lower +James Bergstrom,James H.,Bergstrom,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,30,lower +Bob Carter,Bob,Carter,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,98,lower +John Fitzpatrick,John,Fitzpatrick,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,77,lower +Dennis Lenz,Dennis Robert,Lenz,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,27,upper +Tony Brockman,Tony,Brockman,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,9,lower +Greg Kmetz,Greg,Kmetz,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,38,lower +Jonathan Karlen,Jonathan G.,Karlen,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,96,lower +Tom Welch,Tom,Welch,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,72,lower +Jonathan Windy Boy,Jonathan,Windy Boy,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,32,lower +Jason Ellsworth,Jason W.,Ellsworth,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,43,upper +Denley Loge,Denley M.,Loge,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,14,lower +Ryan Lynch,Ryan,Lynch,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,37,upper +Willis Curdy,Willis,Curdy,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,49,upper +Dave Fern,Dave B.,Fern,Male,Democratic,ocd-jurisdiction/country:us/state:mt/government,5,lower +Forrest Mandeville,Forrest J.,Mandeville,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,29,upper +Steve Hinebauch,Steve,Hinebauch,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,18,upper +Bob Keenan,Bob,Keenan,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,10,lower +Dan Bartel,Dan,Bartel,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,15,upper +Bob Phalen,Bob,Phalen,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,36,lower +Fred Anderson,Fred,Anderson,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,20,lower +Brad Barker,Brad,Barker,Male,Republican,ocd-jurisdiction/country:us/state:mt/government,58,lower +Amy Regier,Amy,Regier,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,6,lower +Katie Zolnikov,Katie,Zolnikov,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,45,lower +Kim Abbott,Kim,Abbott,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,83,lower +Denise Baum,Denise,Baum,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,47,lower +Alice Buckley,Alice,Buckley,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,63,lower +Linda Reksten,Linda,Reksten,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,12,lower +Jennifer Lynch,Jennifer,Lynch,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,73,lower +Andrea Olsen,Andrea,Olsen,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,50,upper +Emma Kerr-Carpenter,Emma,Kerr-Carpenter,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,49,lower +Rhonda Knudsen,Rhonda,Knudsen,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,34,lower +Nelly Nicol,Nelly,Nicol,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,53,lower +Laurie Bishop,Laurie Friedman,Bishop,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,60,lower +Mary Caferro,Mary M.,Caferro,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,82,lower +Wendy McKamey,Wendy,McKamey,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,12,upper +Mary Ann Dunwell,Mary Ann,Dunwell,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,42,upper +Marilyn Marler,Marilyn,Marler,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,90,lower +Jennifer Carlson,Jennifer,Carlson,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,69,lower +Denise Hayman,Denise,Hayman,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,33,upper +Lyn Hellegaard,Darrellyn,Hellegaard,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,97,lower +Shannon O'Brien,Shannon,O'Brien,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,46,upper +Jane Gillette,Jane,Gillette,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,64,lower +Becky Beard,Becky M.,Beard,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,40,upper +Kathy Kelker,Katharin Alcorn,Kelker,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,24,upper +Jodee Etchart,Jodee,Etchart,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,48,lower +Sharon Stewart Peregoy,Sharon,Stewart Peregoy,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,42,lower +Jill Cohenour,Jill,Cohenour,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,84,lower +Julie Dooling,Julie Darling,Dooling,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,70,lower +Jen Gross,Jen,Gross,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,25,upper +Susan Webber,Susan,Webber,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,8,upper +Janet Ellis,Janet Heath,Ellis,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,41,upper +Courtenay Sprunger,Courtenay,Sprunger,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,7,lower +Laura Smith,Laura,Smith,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,79,lower +Naarah Hastings,Naarah Nethanieh,Hastings,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,50,lower +Lola Sheldon-Galloway,Lola,Sheldon-Galloway,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,22,lower +Kerri Seekins-Crowe,Kerri,Seekins-Crowe,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,43,lower +Zooey Zephyr,Zooey,Zephyr,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,100,lower +Shelley Vance,Shelley,Vance,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,34,upper +Ellie Boldman,Ellen Marie,Boldman,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,45,upper +Katie Sullivan,Katie,Sullivan,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,89,lower +Melissa Romano,Melissa,Romano,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,81,lower +Sherry Essmann,Sherry,Essmann,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,52,lower +Michele Binkley,Michele R.,Binkley,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,85,lower +Theresa Manzella,Theresa,Manzella,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,44,upper +Marta Bertoglio,Marta,Bertoglio,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,75,lower +Edie McClafferty,Edith L.,McClafferty,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,38,upper +Fiona Nave,Fiona B.,Nave,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,57,lower +Sue Vinton,Sue,Vinton,Female,Republican,ocd-jurisdiction/country:us/state:mt/government,56,lower +Connie Keogh,Connie,Keogh,Female,Democratic,ocd-jurisdiction/country:us/state:mt/government,91,lower +Bill Ward,Bill,Ward,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,5,lower +Michael Garrett,Michael K.,Garrett,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,27,upper +William Brisson,William Dale,Brisson,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,22,lower +Mark Brody,Mark Allen,Brody,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,55,lower +Grey Mills,Paul Grey,Mills,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,95,lower +Tim Reeder,Timothy,Reeder,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,9,lower +Kevin Corbin,Harold Kevin,Corbin,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,50,upper +Ray Pickett,Ray,Pickett,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,93,lower +Mujtaba Mohammed,Mujtaba A.,Mohammed,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,38,upper +Kevin Crutchfield,Kevin,Crutchfield,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,83,lower +Brenden Jones,Brenden H.,Jones,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,46,lower +Jim Burgin,James,Burgin,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,12,upper +Amos Quick,Amos Lewis,Quick,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,58,lower +Cecil Brockman,Cecil Antonio,Brockman,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,60,lower +Frank Iler,Francis Robertson,Iler,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,17,lower +Zack Hawkins,Zack Anthony,Forde-Hawkins,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,31,lower +Robert Reives,Robert Tyrone,Reives,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,54,lower +Norman Sanderson,Norman Wesley,Sanderson,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,1,upper +Ted Davis,Robert Theodore,Davis,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,20,lower +Paul Lowe,Paul A.,Lowe,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,32,upper +Donnie Loftis,Donnie,Loftis,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,109,lower +Graig Meyer,Graig R.,Meyer,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,23,upper +Howard Penny,Howard,Penny,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,53,lower +Bill Rabon,William Peter,Rabon,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,8,upper +Larry Strickland,Larry Craig,Strickland,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,28,lower +Brent Jackson,William Brent,Jackson,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,9,upper +Alan Branson,Jerry Alan,Branson,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,59,lower +Brandon Lofton,Brandon Marcus,Lofton,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,104,lower +Tim Moore,Timothy Keith,Moore,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,111,lower +Jason Saine,Jason Ray,Saine,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,97,lower +Wayne Sasser,Clayton,Sasser,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,67,lower +David Willis,David,Willis,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,68,lower +Warren Daniel,Warren,Daniel,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,46,upper +Terence Everitt,Terence Jason,Everitt,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,35,lower +George Cleveland,George Grant,Cleveland,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,14,lower +Carl Ford,Carl Lindsey,Ford,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,33,upper +Tim Longest,Tim,Longest,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,34,lower +Donny Lambeth,Donny Carr,Lambeth,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,75,lower +Dean Proctor,H. Dean,Proctor,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,45,upper +Paul Newton,Paul R.,Newton,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,34,upper +Sam Watford,Sam,Watford,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,80,lower +Todd Johnson,Todd,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,35,upper +Reece Pyrtle,A. Reece,Pyrtle,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,65,lower +Stephen Ross,Stephen Miles,Ross,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,63,lower +Keith Kidwell,Keith Douglas,Kidwell,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,79,lower +Kelly Hastings,Kelly Eugene,Hastings,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,110,lower +Brian Biggs,Brian Heather,Biggs,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,70,lower +Charlie Miller,Charles W.,Miller,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,19,lower +Chris Humphrey,Thomas Christopher,Humphrey,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,12,lower +Wesley Harris,Wesley Ryan,Harris,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,105,lower +John Bradford,John Ray,Bradford,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,98,lower +Benton Sawrey,Benton G.,Sawrey,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,10,upper +Ben Moss,Ben Thomas,Moss,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,52,lower +Abe Jones,Abraham P.,Jones,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,38,lower +Jeff McNeely,Jeffrey C.,McNeely,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,84,lower +Jimmy Dixon,James William,Dixon,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,4,lower +Ken Fontenot,Kenneth James,Fontenot,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,24,lower +Ralph Hise,Ralph E.,Hise,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,47,upper +Shelly Willingham,Shelly,Willingham,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,23,lower +Steve Jarvis,Steven Henry,Jarvis,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,30,upper +John Bell,John Richard,Bell,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,10,lower +Dean Arp,Larry Dean,Arp,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,69,lower +Terry Brown,Terry M.,Brown,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,92,lower +Jake Johnson,Jake Hunter,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,113,lower +Destin Hall,Destin,Hall,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,87,lower +Hugh Blackwell,Hugh Allen,Blackwell,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,86,lower +Mike Woodard,Mike,Woodard,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,22,upper +Danny Britt,Danny Earl,Britt,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,24,upper +Mark Pless,Mark,Pless,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,118,lower +Buck Newton,Eldon Sharpe,Newton,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,4,upper +Phil Berger,Philip Edward,Berger,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,26,upper +Michael Lee,Michael Vincent,Lee,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,7,upper +Tim Moffitt,Timothy Douglas,Moffitt,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,48,upper +Kyle Hall,Kyle Ethan,Hall,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,91,lower +Carson Smith,Carson Henry,Smith,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,16,lower +Garland Pierce,Garland E.,Pierce,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,48,lower +Jarrod Lowery,Jarrod Marshall,Lowery,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,47,lower +Phil Shepard,Phillip Ray,Shepard,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,15,lower +Jeff Zenger,Jeff,Zenger,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,74,lower +Karl Gillespie,Karl Ellis,Gillespie,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,120,lower +Joe John,Joseph R.,John,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,40,lower +Allen Chesser,Gregory Allen,Chesser,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,25,lower +Joe Pike,Joseph,Pike,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,6,lower +Bobby Hanig,Robert Otho,Hanig,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,3,upper +Larry Potts,Larry Wayne,Potts,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,81,lower +Dudley Greene,Edwin Dudley,Greene,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,85,lower +Ray Jeffers,Brannon Ray,Jeffers,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,2,lower +Kelly Alexander,Kelly M.,Alexander,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,107,lower +Michael Lazzara,Michael,Lazzara,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,6,upper +Ted Alexander,W. Ted,Alexander,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,44,upper +Jay Adams,James Cecil,Adams,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,96,lower +Eric Ager,John Eric,Ager,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,114,lower +Frank Sossamon,Frank,Sossamon,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,32,lower +Brad Overcash,Brad,Overcash,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,43,upper +James Roberson,James,Roberson,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,39,lower +Nasif Majeed,Nasif Rashad,Majeed,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,99,lower +Neal Jackson,Neal,Jackson,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,78,lower +Mike Clampitt,James Michael,Clampitt,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,119,lower +John Torbett,John A.,Torbett,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,108,lower +Jay Chaudhuri,Jay J.,Chaudhuri,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,15,upper +Steve Tyson,Steve,Tyson,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,3,lower +Michael Wray,Michael H.,Wray,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,27,lower +John Autry,Johnnie Newton,Autry,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,100,lower +John Sauls,John Irwin,Sauls,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,51,lower +Dennis Riddell,Dennis Patrick,Riddell,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,64,lower +Tom McInnis,Thomas Moses,McInnis,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,21,upper +Marvin Lucas,Marvin Willis,Lucas,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,42,lower +Jeffrey Elmore,Jeffrey Carter,Elmore,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,94,lower +Mitchell Setzer,Mitchell Smith,Setzer,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,89,lower +John Faircloth,Joseph Aubrey,Faircloth,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,62,lower +Ed Goodwin,Edward Charles,Goodwin,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,1,lower +Matthew Winslow,Matthew,Winslow,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,7,lower +Dave Craven,David W.,Craven,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,29,upper +Caleb Rudow,Caleb,Rudow,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,116,lower +Harry Warren,Harry Joseph,Warren,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,76,lower +Charles Smith,Charles R.,Smith,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,44,lower +Dan Blue,Daniel Terry,Blue,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,14,upper +Eddie Settle,Eddie D.,Settle,Male,Republican,ocd-jurisdiction/country:us/state:nc/government,36,upper +Allen Buansi,Allen,Buansi,Male,Democratic,ocd-jurisdiction/country:us/state:nc/government,56,lower +Kristin Baker,Kristin,Baker,Female,Republican,ocd-jurisdiction/country:us/state:nc/government,82,lower +Sarah Crawford,Sarah,Crawford,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,66,lower +Rosa Gill,Rosa Underwood,Gill,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,33,lower +Lisa Barnes,Lisa Stone,Barnes,Female,Republican,ocd-jurisdiction/country:us/state:nc/government,11,upper +Laura Budd,Laura,Budd,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,103,lower +Vernetta Alston,Vernetta R.,Alston,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,29,lower +Lisa Grafstein,Lisa,Grafstein,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,13,upper +Diane Wheatley,Diane,Wheatley,Female,Republican,ocd-jurisdiction/country:us/state:nc/government,43,lower +Diamond Staton-Williams,Diamond,Staton-Williams,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,73,lower +Carla Cunningham,Carla Dellette,Cunningham,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,106,lower +Ya Liu,Ya,Liu,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,21,lower +Julie von Haefen,Julie Marie Olson,von Haefen,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,36,lower +Ashton Clemmons,Ashton Wheeler,Clemmons,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,57,lower +Gale Adcock,Gale,Adcock,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,16,upper +Donna White,Donna McDowell,White,Female,Republican,ocd-jurisdiction/country:us/state:nc/government,26,lower +Becky Carney,Rebecca Ann,Carney,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,102,lower +Julie Mayfield,Julie,Mayfield,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,49,upper +Amber Baker,Amber M.,Baker,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,72,lower +Gladys Robinson,Gladys Ashe,Robinson,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,28,upper +Carolyn Logan,Carolyn Green,Logan,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,101,lower +Joyce Krawiec,Joyce,Krawiec,Female,Republican,ocd-jurisdiction/country:us/state:nc/government,31,upper +Lindsey Prather,Lindsey,Prather,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,115,lower +Frances Jackson,Frances Vinell,Jackson,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,45,lower +Marcia Morey,Marcia Helen,Morey,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,30,lower +DeAndrea Salvador,DeAndrea Newman,Salvador,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,39,upper +Natasha Marcus,Natasha R.,Marcus,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,41,upper +Natalie Murdock,Natalie S.,Murdock,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,20,upper +Deb Butler,Deb,Butler,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,18,lower +Mary Wills Bode,Mary Wills,Bode,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,18,upper +Kanika Brown,Kanika,Brown,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,71,lower +Tricia Cotham,Patricia Ann,Cotham,Female,Republican,ocd-jurisdiction/country:us/state:nc/government,112,lower +Renée Price,Renee A.,Price,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,50,lower +Kandie Smith,Kandie Diane,Smith,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,5,upper +Cynthia Ball,Cynthia,Ball,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,49,lower +Sarah Stevens,Sarah Suzanne,Stevens,Female,Republican,ocd-jurisdiction/country:us/state:nc/government,90,lower +Rachel Hunt,Rachel Henderson,Hunt,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,42,upper +Val Applewhite,Val,Applewhite,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,19,upper +Sydney Batch,Sydney Jeanene,Batch,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,17,upper +Maria Cervania,Maria Louisa Saulog,Cervania,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,41,lower +Vickie Sawyer,Victoria B.,Sawyer,Female,Republican,ocd-jurisdiction/country:us/state:nc/government,37,upper +Pricey Harrison,Mary Price Taylor,Harrison,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,61,lower +Amy Galey,Amy S.,Galey,Female,Republican,ocd-jurisdiction/country:us/state:nc/government,25,upper +Erin Paré,Erin Pauling,Pare,Female,Republican,ocd-jurisdiction/country:us/state:nc/government,37,lower +Mary Belk,Mary Denise Gardner,Belk,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,88,lower +Allison Dahle,Allison Anne,Dahle,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,11,lower +Celeste Cairns,Celeste Coppage,Cairns,Female,Republican,ocd-jurisdiction/country:us/state:nc/government,13,lower +Julia Howard,Julia Craven,Howard,Female,Republican,ocd-jurisdiction/country:us/state:nc/government,77,lower +Gloristine Brown,Gloristine Williams,Brown,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,8,lower +Joyce Waddell,Joyce Davis,Waddell,Female,Democratic,ocd-jurisdiction/country:us/state:nc/government,40,upper +Jennifer Balkcom,Jennifer Capps,Balkcom,Female,Republican,ocd-jurisdiction/country:us/state:nc/government,117,lower +Keith Kempenich,Keith,Kempenich,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,39,lower +David Richter,David,Richter,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,1,lower +Mike Nathe,Michael,Nathe,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,30,lower +Jorin Johnson,Jorin,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,41,lower +Jay Fisher,Jay,Fisher,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,5,lower +Dennis Nehring,Dennis,Nehring,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,23,lower +Steve Vetter,Steve,Vetter,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,18,lower +Bert Anderson,Bert,Anderson,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,2,lower +Kent Weston,Kent,Weston,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,9,upper +Greg Stemen,Greg,Stemen,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,27,lower +Paul Thomas,Paul J.,Thomas,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,6,lower +Curt Kreun,Curtiss,Kreun,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,42,upper +Mike Wobbema,Michael A.,Wobbema,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,24,upper +Don Vigesaa,Donald,Vigesaa,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,29,lower +Dick Anderson,Dick,Anderson,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,6,lower +Mike Beltz,Mike,Beltz,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,20,lower +Brad Bekkedahl,Brad,Bekkedahl,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,1,upper +Jon Nelson,Jon O.,Nelson,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,14,lower +Dick Dever,Dick,Dever,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,32,upper +Jim Roers,James P.,Roers,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,46,upper +Dave Monson,David C.,Monson,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,19,lower +Mike Dwyer,Michael,Dwyer,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,47,upper +Corey Mock,Corey Ray,Mock,Male,Democratic,ocd-jurisdiction/country:us/state:nd/government,18,lower +Josh Boschee,Joshua A.,Boschee,Male,Democratic,ocd-jurisdiction/country:us/state:nd/government,44,lower +Jared Hagert,Jared C.,Hagert,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,20,lower +Jeremy Olson,Jeremy,Olson,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,26,lower +Greg Kessel,Greg,Kessel,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,39,upper +Randy Schobinger,Randy A.,Schobinger,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,40,lower +Mike Motschenbacher,Mike,Motschenbacher,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,47,lower +Robert Erbele,Robert,Erbele,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,28,upper +Bob Martinson,Bob,Martinson,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,35,lower +Keith Boehm,Keith,Boehm,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,33,upper +Randy Lemm,Randy D.,Lemm,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,20,upper +Matt Ruby,Matthew,Ruby,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,40,lower +Patrick Hatlestad,Patrick R.,Hatlestad,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,1,lower +Brandon Prichard,Brandon T.,Prichard,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,8,lower +Larry Klemin,Lawrence R.,Klemin,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,47,lower +Eric Murphy,Eric James,Murphy,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,43,lower +Mitch Ostlie,Mitchell,Ostlie,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,12,lower +Clayton Fegley,Clayton,Fegley,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,4B,lower +Ryan Braunberger,Ryan,Braunberger,Male,Democratic,ocd-jurisdiction/country:us/state:nd/government,10,upper +Craig Headland,Craig,Headland,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,29,lower +Andrew Marschall,Andrew,Marschall,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,16,lower +Tim Mathern,Timothy,Mathern,Male,Democratic,ocd-jurisdiction/country:us/state:nd/government,11,upper +Jonathan Sickler,Jonathan Lee,Sickler,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,17,upper +Bob Paulson,Bob,Paulson,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,3,upper +Jim Grueneich,James,Grueneich,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,28,lower +Dan Ruby,Dan,Ruby,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,38,lower +Justin Gerhardt,Justin,Gerhardt,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,34,upper +Ben Koppelman,Ben,Koppelman,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,16,lower +Merrill Piepkorn,Merrill,Piepkorn,Male,Democratic,ocd-jurisdiction/country:us/state:nd/government,44,upper +Dean Rummel,Dean,Rummel,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,37,upper +Shawn Vedaa,Shawn A.,Vedaa,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,6,upper +Todd Beard,Todd,Beard,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,23,upper +Bernie Satrom,Bernie,Satrom,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,12,lower +Nathan Toman,Nathan,Toman,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,34,lower +Terry Wanzek,Terry M.,Wanzek,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,29,upper +Zac Ista,Zachary Milo,Ista,Male,Democratic,ocd-jurisdiction/country:us/state:nd/government,43,lower +Steve Swiontek,Steve,Swiontek,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,10,lower +Kelby Timmons,Kelby,Timmons,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,26,lower +Austen Schauer,Austen,Schauer,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,13,lower +Jerry Klein,Jerry J.,Klein,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,14,upper +Mike Schatz,Mike,Schatz,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,39,lower +Nico Rios,Nico,Rios,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,23,lower +David Clemens,David A.,Clemens,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,16,upper +Jordan Kannianen,Jordan L.,Kannianen,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,4,upper +Jeff Hoverson,Jeff A.,Hoverson,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,3,lower +Glenn Bosch,Glenn,Bosch,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,30,lower +David Rust,David S.,Rust,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,2,upper +Gary Kreidt,Gary,Kreidt,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,36,lower +Donald Longmuir,Donald W.,Longmuir,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,2,lower +Jason Dockter,Jason,Dockter,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,7,lower +Jonathan Warrey,Jonathan,Warrey,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,22,lower +Scott Meyer,Scott,Meyer,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,18,upper +Scott Louser,Scott,Louser,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,5,lower +Dennis Johnson,Dennis,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,15,lower +Jim Kasper,James,Kasper,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,46,lower +Sean Cleary,Sean D.,Cleary,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,35,upper +David Hogue,David,Hogue,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,38,upper +Jay Elkin,Jay,Elkin,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,36,upper +Mike Lefor,Michael,Lefor,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,37,lower +Kyle Davison,Kyle R.,Davison,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,41,upper +Josh Christy,Joshua David,Christy,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,27,lower +Dawson Holle,Dawson,Holle,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,31,lower +Randy Burckhard,Randall A.,Burckhard,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,5,upper +Mike Brandenburg,Michael Don,Brandenburg,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,28,lower +Robin Weisz,Robin,Weisz,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,14,lower +Scott Wagner,Scott,Wagner,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,45,lower +Jeff Barta,Jeff,Barta,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,43,upper +Dale Patten,Dale,Patten,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,26,upper +Mark Sanford,Mark S.,Sanford,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,17,lower +Larry Luick,Larry,Luick,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,25,upper +Landon Bahl,Landon,Bahl,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,17,lower +Matt Heilman,Matthew,Heilman,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,7,lower +Cole Conley,Cole,Conley,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,12,upper +Pat Heinert,Patrick D.,Heinert,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,32,lower +Bill Tveit,Bill,Tveit,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,33,lower +Dwight Kiefert,Dwight,Kiefert,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,24,lower +Jeff Magrum,Jeffery J.,Magrum,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,8,upper +Mark Weber,Mark F.,Weber,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,22,upper +Ron Sorvaag,Ronald,Sorvaag,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,45,upper +Jim Jonas,Jim,Jonas,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,13,lower +Don Schaible,Donald,Schaible,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,31,upper +Todd Porter,Todd,Porter,Male,Republican,ocd-jurisdiction/country:us/state:nd/government,34,lower +Jayme Davis,Jayme M.,Davis,Female,Democratic,ocd-jurisdiction/country:us/state:nd/government,9A,lower +Anna Novak,Anna Garrett,Novak,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,33,lower +Diane Larson,Diane,Larson,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,30,upper +Donna Henderson,Donna,Henderson,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,9B,lower +Janne Myrdal,Janne,Myrdal,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,19,upper +Lori VanWinkle,Lori,VanWinkle,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,3,lower +Gretchen Dobervich,Gretchen,Dobervich,Female,Democratic,ocd-jurisdiction/country:us/state:nd/government,11,lower +Shannon Roers Jones,Shannon M.,Roers Jones,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,46,lower +Alisa Mitskog,Alisa,Mitskog,Female,Democratic,ocd-jurisdiction/country:us/state:nd/government,25,lower +Kathy Frelich,Kathy,Frelich,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,15,lower +Kathy Hogan,Kathy,Hogan,Female,Democratic,ocd-jurisdiction/country:us/state:nd/government,21,upper +Mary Schneider,Mary,Schneider,Female,Democratic,ocd-jurisdiction/country:us/state:nd/government,21,lower +LaurieBeth Hager,LaurieBeth,Hager,Female,Democratic,ocd-jurisdiction/country:us/state:nd/government,21,lower +Judy Lee,Judy,Lee,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,13,upper +Carrie McLeod,Carrie,McLeod,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,45,lower +Michelle Strinden,Michelle,Strinden,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,41,lower +Lisa Finley-DeVille,Lisa,Finley-DeVille,Female,Democratic,ocd-jurisdiction/country:us/state:nd/government,4A,lower +Dori Hauck,Dori,Hauck,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,36,lower +Karla Rose Hanson,Karla Rose,Hanson,Female,Democratic,ocd-jurisdiction/country:us/state:nd/government,44,lower +Kristin Roers,Kristin,Roers,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,27,upper +Judy Estenson,Judy,Estenson,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,15,upper +Emily O'Brien,Emily,O'Brien,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,42,lower +Lisa Meier,Lisa M.,Meier,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,32,lower +SuAnn Olson,SuAnn,Olson,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,8,lower +Brandy Pyle,Brandy L.,Pyle,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,22,lower +Hamida Dakane,Hamida,Dakane,Female,Democratic,ocd-jurisdiction/country:us/state:nd/government,10,lower +Vicky Steiner,Vicky,Steiner,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,37,lower +Karen Karls,Karen,Karls,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,35,lower +Rose Christensen,Rose,Christensen,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,24,lower +Claire Cory,Claire Mara,Cory,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,42,lower +Karen Rohr,Karen M.,Rohr,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,31,lower +Liz Conmy,Liz,Conmy,Female,Democratic,ocd-jurisdiction/country:us/state:nd/government,11,lower +Cindy Schreiber-Beck,Cynthia,Schreiber-Beck,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,25,lower +Karen Anderson,Karen A.,Anderson,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,19,lower +Karen Krebsbach,Karen K.,Krebsbach,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,40,upper +Michelle Axtman,Michelle,Axtman,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,7,upper +JoAnne Rademacher,JoAnne,Rademacher,Female,Republican,ocd-jurisdiction/country:us/state:nd/government,38,lower +John Fredrickson,John A.,Fredrickson,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,20,legislature +Tom Brandt,Tom,Brandt,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,32,legislature +Terrell McKinney,Terrell,McKinney,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,11,legislature +Steve Halloran,Steve,Halloran,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,33,legislature +Ben Hansen,Benjamin,Hansen,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,16,legislature +Bruce Bostelman,Bruce L.,Bostelman,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,23,legislature +Eliot Bostar,Eliot,Bostar,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,29,legislature +Merv Riepe,Mervin Merle,Riepe,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,12,legislature +Robert Dover,Robert,Dover,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,19,legislature +Brad von Gillern,R. Brad,von Gillern,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,4,legislature +Mike McDonnell,Michael F.,McDonnell,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,5,legislature +George Dungan,George Clinton,Dungan,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,26,legislature +Rob Clements,Robert,Clements,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,2,legislature +Barry DeKay,Barry D.,DeKay,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,40,legislature +John Cavanaugh,John J.,Cavanaugh,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,9,legislature +Rick Holdcroft,Richard,Holdcroft,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,36,legislature +John Arch,John K.,Arch,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,14,legislature +Tom Brewer,Thomas Hill,Brewer,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,43,legislature +Steve Erdman,Steve,Erdman,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,47,legislature +Mike Moser,Mike,Moser,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,22,legislature +Brian Hardin,Brian,Hardin,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,48,legislature +Myron Dorn,Myron,Dorn,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,30,legislature +John Lowe,John S.,Lowe,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,37,legislature +Loren Lippincott,Loren,Lippincott,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,34,legislature +Fred Meyer,Fred,Meyer,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,41,legislature +Beau Ballard,Beau J.,Ballard,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,21,legislature +Justin Wayne,Justin T.,Wayne,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,13,legislature +Dave Murman,Dave,Murman,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,38,legislature +Tony Vargas,Anthony,Vargas,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,7,legislature +Ray Aguilar,Raymond,Aguilar,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,35,legislature +Mike Jacobson,Michael B.,Jacobson,Male,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,42,legislature +Machaela Cavanaugh,Machaela M.,Cavanaugh,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,6,legislature +Carolyn Bosn,Carolyn Heide,Bosn,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,25,legislature +Christy Armendariz,Christy,Armendariz,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,18,legislature +Jana Hughes,Jana,Hughes,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,24,legislature +Carol Blood,Carol,Blood,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,3,legislature +Kathleen Kauth,Kathleen,Kauth,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,31,legislature +Lynne Walz,Lynne,Walz,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,15,legislature +Anna Wishart,Anna,Wishart,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,27,legislature +Lou Ann Linehan,Lou Ann,Linehan,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,39,legislature +Joni Albrecht,Joanne Jones,Albrecht,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,17,legislature +Wendy DeBoer,Wendy,DeBoer,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,10,legislature +Jen Day,Jen,Day,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,49,legislature +Teresa Ibach,Teresa J.,Ibach,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,44,legislature +Jane Raybould,Jane Michele,Raybould,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,28,legislature +Julie Slama,Julie E.,Slama,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,1,legislature +Megan Hunt,Megan,Hunt,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,8,legislature +Rita Sanders,Rita Gomez,Sanders,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,45,legislature +Danielle Conrad,Danielle,Conrad,Female,Nonpartisan,ocd-jurisdiction/country:us/state:ne/government,46,legislature +Alissandra Murray,Alissandra Rodriguez,Murray,Other,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 20,lower +Daniel Eaton,Daniel Adams,Eaton,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Cheshire 9,lower +Zachary Nutting,Zachary,Nutting,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Cheshire 11,lower +Chris Muns,Chris,Muns,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 29,lower +Oliver Ford,Oliver,Ford,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 3,lower +Benjamin Baroody,Benjamin C.,Baroody,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 39,lower +Shaun Filiault,Shaun M.,Filiault,Male,Independent,ocd-jurisdiction/country:us/state:nh/government,Cheshire 7,lower +Jason Gerhard,Jason,Gerhard,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 25,lower +Richard Brown,Richard R.,Brown,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Carroll 3,lower +Will Darby,William,Darby,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 11,lower +Gerry Ward,Gerald W.R.,Ward,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 27,lower +Jeff Tenczar,Jeffrey,Tenczar,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 1,lower +Charlie Foote,Charles,Foote,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 13,lower +Jared Sullivan,Jared,Sullivan,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 2,lower +Michael Cahill,Michael,Cahill,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 10,lower +Jon Stone,Jonathan F.,Stone,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Sullivan 8,lower +Chris Herbert,Christopher,Herbert,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 24,lower +James Roesener,James Leon,Roesener,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 22,lower +Michael O'Brien,Michael B.,O'Brien,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 10,lower +Philip Jones,Philip,Jones,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Cheshire 3,lower +Larry Gagne,Larry G.,Gagne,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 16,lower +Eric Gallager,Eric,Gallager,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 20,lower +Dave Testerman,Dave,Testerman,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 3,lower +Travis O'Hara,Travis J.,O'Hara,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Belknap 4,lower +Scott Wallace,Scott,Wallace,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 8,lower +Seth King,Seth,King,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Coos 4,lower +Cy Aures,Cyril Nicholas,Aures,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 13,lower +J.D. Bernardy,J. David,Bernardy,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 36,lower +Michael Vose,G. Michael,Vose,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 5,lower +Doug Thomas,Douglas,Thomas,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 16,lower +Dan McGuire,Daniel,McGuire,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 14,lower +Joseph Pitre,Joseph A.,Pitre,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Strafford 1,lower +Jim Mason,James,Mason,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 3,lower +Mark McLean,Mark,McLean,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 15,lower +Glenn Bailey,Glenn,Bailey,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Strafford 2,lower +Ben Ming,Benjamin,Ming,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 35,lower +Mike Abbott,Michael Dennis,Abbott,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Cheshire 6,lower +Peter Bixby,Peter,Bixby,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 13,lower +James Tierney,James W.,Tierney,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Coos 1,lower +Jeffrey Rich,Jeffrey,Rich,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 12,lower +Bill Conlin,Bill,Conlin,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 15,lower +Kenneth Vincent,Kenneth,Vincent,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 12,lower +Ted Gorski,Theodore,Gorski,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 2,lower +Julius Soti,Julius Fredi,Soti,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 35,lower +Stephen Boyd,Stephen,Boyd,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 10,lower +David Huot,David O.,Huot,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Belknap 5,lower +Michael Pedersen,Michael P.,Pedersen,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 9,lower +Jonah Wheeler,Jonah,Wheeler,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 33,lower +Eric Turer,Eric,Turer,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 6,lower +Thomas Walsh,Thomas C.,Walsh,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 10,lower +Matt Coker,Matthew,Coker,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Belknap 2,lower +Howard Pearl,Howard,Pearl,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,17,upper +Arnie Davis,Arnold G.,Davis,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Coos 2,lower +Kevin Verville,Kevin,Verville,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 2,lower +David Fracht,David,Fracht,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 16,lower +Ray Newman,Ray E.,Newman,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 4,lower +Fred Davis,Fred E.,Davis,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 3,lower +J.R. Hoell,J.R.,Hoell,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 27,lower +Heath Howard,Heath,Howard,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 4,lower +Tony Caplan,Anthony,Caplan,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 8,lower +Tommy Hoyt,Tom,Hoyt,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 7,lower +Rich Lascelles,Richard W.,Lascelles,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 14,lower +Steve Shurtleff,Stephen James,Shurtleff,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 15,lower +Aidan Ankarberg,Aidan K.,Ankarberg,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Strafford 7,lower +Glen Cordelli,Glenn,Cordelli,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Carroll 7,lower +Matt Coulon,Matthew,Coulon,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Grafton 5,lower +Andrew Prout,Andrew J.,Prout,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 13,lower +Ned Raynolds,Ned,Raynolds,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 39,lower +Jim Summers,James D.,Summers,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 20,lower +Mike Bordes,Michael D.,Bordes,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Belknap 5,lower +Daryl Abbas,Daryl,Abbas,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,22,upper +Bob Harb,Robert D.,Harb,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 20,lower +Jeffrey Greeson,Jeffrey,Greeson,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Grafton 6,lower +Peter Schmidt,Peter B.,Schmidt,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 14,lower +Tom Dolan,Tom,Dolan,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 16,lower +Eamon Kelley,Eamon,Kelley,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Coos 7,lower +Brian Seaworth,G. Brian,Seaworth,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 12,lower +Bill Palmer,William S.,Palmer,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Sullivan 2,lower +Jim Creighton,James,Creighton,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 30,lower +Jake Brouillard,Jacob,Brouillard,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 1,lower +Len Turcotte,Leonard,Turcotte,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Strafford 4,lower +Tony Lekas,Tony,Lekas,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 38,lower +Peter Lovett,Peter A.,Lovett,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 8,lower +Erik Johnson,Erik R.,Johnson,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 11,lower +Thomas Kaczynski,Thomas L.,Kaczynski,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Strafford 5,lower +Clayton Wood,Clayton,Wood,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 13,lower +Jim Maggiore,Jim,Maggiore,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 23,lower +David Rochefort,David,Rochefort,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Grafton 1,lower +Mark MacKenzie,Mark S.,MacKenzie,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 40,lower +Josh Yokela,Josh,Yokela,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 32,lower +Steve Woodcock,Stephen,Woodcock,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Carroll 1,lower +Wayne MacDonald,Wayne D.,MacDonald,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 16,lower +Bruce Tatro,Bruce L.,Tatro,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Cheshire 10,lower +Matt Wilhelm,Matthew B.,Wilhelm,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 40,lower +John Lewicke,John,Lewicke,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 36,lower +Walt Stapleton,Walter A.,Stapleton,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Sullivan 6,lower +Paul Terry,Paul,Terry,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Belknap 7,lower +Joe Guthrie,Joseph,Guthrie,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 15,lower +Dan LeClerc,Daniel,LeClerc,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 34,lower +Michael Costable,Michael,Costable,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Carroll 8,lower +Gerry Griffin,Gerald,Griffin,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 42,lower +Steve Pearson,Stephen,Pearson,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 13,lower +Jeb Bradley,Joseph E.,Bradley,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,3,upper +David Watters,David H.,Watters,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,4,upper +Russ Dumais,Russell,Dumais,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Belknap 6,lower +Mike Moffett,Michael,Moffett,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 4,lower +John Potucek,John M.,Potucek,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 13,lower +Steve Bogert,Steven T.,Bogert,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Belknap 5,lower +Dick Thackston,Dick,Thackston,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Cheshire 12,lower +Tracy Emerick,J. Tracy,Emerick,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 29,lower +Charlie Melvin,Charles,Melvin,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 20,lower +Mike Drago,Mike,Drago,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 4,lower +Dan Wolf,Dan,Wolf,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 7,lower +Jean Jeudy,Jean Leniol,Jeudy,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 23,lower +Keith Murphy,Keith,Murphy,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,16,upper +Ralph Boehm,Ralph G.,Boehm,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 14,lower +David Love,David C.,Love,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 13,lower +Dan Fitzpatrick,Daniel W.,Fitzpatrick,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 19,lower +Nick Germana,Nicholas,Germana,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Cheshire 1,lower +Jonathan Smith,Jonathan H.,Smith,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Carroll 5,lower +Tony Piemonte,Tony,Piemonte,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 9,lower +Rick Ladd,Roderick M.,Ladd,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Grafton 5,lower +Jason Osborne,Jason,Osborne,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 2,lower +David Paige,David,Paige,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Carroll 1,lower +Matt Simon,Matthew,Simon,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Grafton 1,lower +Mike Ouellet,Mike,Ouellet,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Coos 3,lower +David Luneau,David,Luneau,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 9,lower +Travis Corcoran,Travis James,Corcoran,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 44,lower +Joe Schapiro,Joe,Schapiro,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Cheshire 16,lower +Mark Pearson,Mark A.,Pearson,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 34,lower +Richard Tripp,Richard,Tripp,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 13,lower +Tim Cahill,Tim,Cahill,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 4,lower +John Sytek,John,Sytek,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 25,lower +Shane Sirois,Shane,Sirois,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 32,lower +Sherm Packard,Sherman Adams,Packard,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 16,lower +Timothy Soucy,Timothy A.,Soucy,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 21,lower +Tim McGough,Tim,McGough,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 12,lower +Fred Plett,Frederick Randall,Plett,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 29,lower +Geoff Smith,Geoffrey,Smith,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 21,lower +Damond Ford,Damond T.,Ford,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 40,lower +Dennis Mannion,Dennis,Mannion,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 25,lower +Brandon Phinney,Brandon,Phinney,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Strafford 9,lower +Mike Belcher,Michael,Belcher,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Carroll 4,lower +Bill Dolan,William,Dolan,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 9,lower +Russ Muirhead,James Russell,Muirhead,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 12,lower +Chris McAleer,Chris,McAleer,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Carroll 2,lower +John Cloutier,John R.,Cloutier,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Sullivan 6,lower +David Lundgren,David C.,Lundgren,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 16,lower +Jose Cambrils,Jose,Cambrils,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 4,lower +Lino Avellani,Lino,Avellani,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Carroll 4,lower +Jim Spillane,James,Spillane,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 2,lower +Jim MacKay,James R.,MacKay,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 18,lower +Don Bouchard,Donald J.,Bouchard,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 24,lower +Mark Vallone,Mark,Vallone,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 5,lower +Mark Paige,Mark A.,Paige,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 11,lower +Matthew Santonastaso,Matthew J.,Santonastaso,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Cheshire 18,lower +Tom Southworth,Thomas,Southworth,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 11,lower +Ron Dunn,Ron,Dunn,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 16,lower +Kevin Avard,Kevin A.,Avard,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,12,upper +Cam Kenney,Cam,Kenney,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 10,lower +James Murphy,James Michael,Murphy,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 12,lower +James Horgan,James F.,Horgan,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Strafford 1,lower +Matthew Hicks,Matthew,Hicks,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 24,lower +Terry Roy,Terry,Roy,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 31,lower +Mike Murphy,Michael P.,Murphy,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Coos 6,lower +Greg Hill,Gregory,Hill,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 2,lower +Barry Faulkner,Francis Barrett,Faulkner,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Cheshire 10,lower +Mel Myler,Mel,Myler,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 9,lower +Jerry Stringham,Jerry M.,Stringham,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 3,lower +Fred Doucette,Fred,Doucette,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 25,lower +Aboul Khan,Aboul Bashar,Khan,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 30,lower +Bob Lynn,Robert J.,Lynn,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 17,lower +Tom Schamberg,Thomas C.,Schamberg,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 6,lower +Stephen Kennedy,Stephen J.,Kennedy,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 13,lower +Jim Qualey,James,Qualey,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Cheshire 18,lower +Mike Harrington,Michael,Harrington,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Strafford 18,lower +John Hunt,John B.,Hunt,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Cheshire 14,lower +Peter Petrigno,Peter,Petrigno,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 43,lower +Douglas Trottier,Douglas R.,Trottier,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Belknap 8,lower +Dave Nagel,David,Nagel,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Belknap 6,lower +Jeffrey Goley,Jeffrey P.,Goley,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 21,lower +James Gray,James P.,Gray,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,6,upper +Bill Gannon,William,Gannon,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,23,upper +Bill Boyd,Bill,Boyd,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 12,lower +David Meuse,David,Meuse,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 37,lower +Lucius Parshall,Lucius,Parshall,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Cheshire 8,lower +John Leavitt,John Anthony,Leavitt,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 10,lower +Tom Cormen,Thomas H.,Cormen,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 15,lower +Chris True,Chris,TRUE,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 9,lower +Carroll Brown,Carroll M.,Brown,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Grafton 10,lower +Bob Healey,Robert,Healey,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 12,lower +Tom Mannion,Tom,Mannion,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 1,lower +Chuck Grassie,Chuck,Grassie,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 8,lower +Richard Beaudoin,Richard,Beaudoin,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Belknap 6,lower +Keith Erf,Keith,Erf,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 28,lower +Jordan Ulery,Jordan G.,Ulery,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 13,lower +Bill Bolton,William R.,Bolton,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 8,lower +John Sellers,John,Sellers,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Grafton 18,lower +George Sykes,George,Sykes,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 14,lower +Sean Durkin,Sean,Durkin,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Coos 1,lower +Michael Granger,Michael,Granger,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Strafford 2,lower +Dan Veilleux,Daniel T.,Veilleux,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 34,lower +Alvin See,Alvin,See,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 26,lower +Hal Rafter,Hal,Rafter,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 1,lower +Mark McConkey,Mark E.,McConkey,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Carroll 8,lower +John MacDonald,John T.,MacDonald,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Carroll 6,lower +Mark Proulx,Mark L.,Proulx,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 15,lower +Tom Buco,Thomas,Buco,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Carroll 1,lower +Kevin Pratt,Kevin,Pratt,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 4,lower +Patrick Long,Patrick T.,Long,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 23,lower +Jim Fedolfi,Jim,Fedolfi,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 30,lower +John Janigian,John,Janigian,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 25,lower +Lou D'Allesandro,Lou,D'Allesandro,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,20,upper +Tom Ploszaj,Tom,Ploszaj,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Belknap 1,lower +Keith Ammon,Keith,Ammon,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 42,lower +Jess Edwards,Jess,Edwards,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 31,lower +Martin Jack,Martin L.,Jack,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 10,lower +David Preece,David,Preece,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 17,lower +Harry Bean,Harry H.,Bean,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Belknap 6,lower +David Milz,David,Milz,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 13,lower +Dennis Malloy,Dennis J.,Malloy,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 24,lower +Loren Foxx,Loren,Foxx,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 2,lower +Jim Connor,James,Connor,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Strafford 19,lower +Skip Rollins,Skip,Rollins,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Sullivan 3,lower +Andy Renzullo,Andrew,Renzullo,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 13,lower +Dave Bickford,David A.,Bickford,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Strafford 3,lower +Timothy Horrigan,Timothy O.,Horrigan,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 10,lower +Cliff Newton,Clifford A.,Newton,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Strafford 6,lower +Charles McMahon,Charles E.,McMahon,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 17,lower +Charlie St. Clair,Charlie,St. Clair,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Belknap 5,lower +Tim Lang,Timothy,Lang,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,2,upper +Steven Smith,Steven D.,Smith,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Sullivan 3,lower +Jim Kofalt,Jim,Kofalt,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 32,lower +Paul Tudor,Paul,Tudor,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 1,lower +Jason Janvrin,Jason,Janvrin,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 40,lower +Peter Varney,Peter,Varney,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Belknap 7,lower +Ken Weyler,Kenneth L.,Weyler,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 14,lower +Bill King,Bill,King,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 43,lower +Dan Innis,Daniel E.,Innis,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,7,upper +Henry Noël,Henry,Noel,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Coos 5,lower +Michael Edgar,Michael,Edgar,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 29,lower +Daniel Popovici-Muller,Daniel,Popovici-Muller,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 17,lower +Joe Sweeney,Joseph,Sweeney,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 25,lower +Brian Sullivan,Brian,Sullivan,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Sullivan 1,lower +Lou Juris,Louis C.,Juris,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 7,lower +Brian Cole,Brian D.,Cole,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 26,lower +Marc Plamondon,Marc W.,Plamondon,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 3,lower +Robert Wherry,Robert,Wherry,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 13,lower +Terry Spilsbury,Walter Gybbon,Spilsbury,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Sullivan 3,lower +Lex Berezhny,Lex,Berezhny,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Grafton 11,lower +Joe Alexander,Joseph,Alexander,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 29,lower +Donovan Fenton,Donovan,Fenton,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,10,upper +Peter Leishman,Peter R.,Leishman,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 33,lower +Allan Howland,Allan,Howland,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 20,lower +Yury Polozov,Yury,Polozov,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 10,lower +Gary Merchant,Gary,Merchant,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Sullivan 6,lower +Richard Ames,Richard,Ames,Male,Democratic,ocd-jurisdiction/country:us/state:nh/government,Cheshire 13,lower +Will Infantine,William J.,Infantine,Male,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 16,lower +Regina Birdsell,Regina M.,Birdsell,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,19,upper +Heather Baldwin,Heather P.,Baldwin,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 4,lower +Karen Calabro,Karen Elizabeth,Calabro,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 45,lower +Jennifer Mandelbaum,Jennifer,Mandelbaum,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 21,lower +Claudine Burnham,Claudine,Burnham,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Strafford 2,lower +Dru Fox,Dru,Fox,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Cheshire 2,lower +Corinne Morse,Corinne,Morse,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 9,lower +Alicia Gregg,Alicia,Gregg,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 7,lower +Juliet Smith,Juliet L.,Smith,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 18,lower +Katelyn Kuttab,Katelyn T.,Kuttab,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 17,lower +Alicia Lekas,Alicia,Lekas,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 38,lower +Becky Whitley,Rebecca,Whitley,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,15,upper +Laurel Stavis,Laurel,Stavis,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 13,lower +Margaret Drye,Margaret M.,Drye,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Sullivan 7,lower +Laura Telerski,Laura Damphousse,Telerski,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 11,lower +Dianne Schuett,Dianne,Schuett,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 12,lower +Jenn Morton,Jennifer,Morton,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 34,lower +Susan Treleaven,Susan,Treleaven,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 21,lower +Judy Aron,Judy,Aron,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Sullivan 4,lower +Cindy Rosenwald,Lucinda,Rosenwald,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,13,upper +Candace Gibbons,Candace,Gibbons,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 20,lower +Shelley Devine,Shelley,Devine,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 5,lower +Linda Massimilla,Linda,Massimilla,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 1,lower +Amanda Bouldin,Amanda,Bouldin,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 25,lower +Muriel Hall,Muriel,Hall,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 9,lower +Sue Vandecasteele,Susan J.,Vandecasteele,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 25,lower +Carrie Gendreau,Carrie Winn,Gendreau,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,1,upper +Leah Cushman,Leah,Cushman,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 28,lower +Connie Lane,Connie Boyles,Lane,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 16,lower +Jane Beaulieu,Jane Ellen,Beaulieu,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 19,lower +Candice O'Neil,Candice M.,O'Neil,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 29,lower +Deborah Aylward,Deborah,Aylward,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 5,lower +Cathryn Harvey,Cathryn A.,Harvey,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Cheshire 6,lower +Ellen Read,Ellen,Read,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 10,lower +Maria Perez,Maria Elizabeth,Perez,Female,Independent,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 43,lower +Amanda Toll,Amanda Elizabeth,Toll,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Cheshire 15,lower +Jaci Grote,Jacinthe,Grote,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 24,lower +Patricia Cornell,Patricia,Cornell,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 22,lower +Sue Prentiss,Suzanne M.,Prentiss,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,5,upper +Charlotte DiLorenzo,Charlotte,DiLorenzo,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 10,lower +Vanessa Sheehan,Vanessa L.,Sheehan,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 43,lower +Anita Burroughs,Anita Lang,Burroughs,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Carroll 2,lower +Carol McGuire,Carol M.,McGuire,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 27,lower +Sallie Fellows,Sallie D.,Fellows,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 8,lower +Karen Reid,Karen,Reid,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 27,lower +Alisson Turcotte,Alisson,Turcotte,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 11,lower +Sherry Dutzy,Sherry,Dutzy,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 6,lower +Deb Hobson,Deborah L.,Hobson,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 14,lower +Kat McGhee,Kathy,McGhee,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 35,lower +Carry Spier,Carry,Spier,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 6,lower +Ruth Ward,Ruth,Ward,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,8,upper +Cassandra Levesque,Cassandra N.,Levesque,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 4,lower +Rebecca McWilliams,Rebecca,McWilliams,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 30,lower +Nicole Leapley,Nicole,Leapley,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 22,lower +Linda Tanner,Linda L.,Tanner,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Sullivan 5,lower +Lorie Ball,Lorie,Ball,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 25,lower +Allison Knab,Allison,Knab,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 12,lower +Alexis Simpson,Alexis Kemmler,Simpson,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 33,lower +Cathy Kenny,Cathy,Kenny,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 13,lower +Catherine Rombeau,Catherine A.,Rombeau,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 2,lower +Christine Seibert,Christine,Seibert,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 21,lower +Allison Nutting-Wong,Allison,Nutting-Wong,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 9,lower +Lisa Post,Lisa C.M.,Post,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 42,lower +Jennifer Rhodes,Jennifer,Rhodes,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Cheshire 17,lower +Donna Soucy,Donna M.,Soucy,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,18,upper +Barbara Comtois,Barbara,Comtois,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Belknap 7,lower +Merryl Gibbs,Merryl,Gibbs,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 23,lower +Jeanine Notter,Jeanine M.,Notter,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 12,lower +Phyllis Katsakiores,Phyllis M.,Katsakiores,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 13,lower +Gaby Grossman,Gabrielle Smith,Grossman,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 11,lower +Lisa Mazur,Lisa,Mazur,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 44,lower +Linda Harriott-Gathright,Linda,Harriott-Gathright,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 10,lower +Sue Newman,Sue,Newman,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 4,lower +Tanya Donnelly,Tanya,Donnelly,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 25,lower +Mary Jane Wallner,Mary Jane,Wallner,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 19,lower +Jodi Nelson,Jodi,Nelson,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 13,lower +Kate Murray,Kate Rushford,Murray,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 22,lower +Jessica Grill,Jessica Michelle,Grill,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 18,lower +Joan Hamblet,Joan L.,Hamblet,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 26,lower +Maureen Mooney,Maureen,Mooney,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 12,lower +Wendy Thomas,Wendy,Thomas,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 12,lower +Kim Abare,Kimberly Lyon,Abare,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 1,lower +Denise Ricciardi,Denise Crusade,Ricciardi,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,9,upper +Kristine Perez,Kristine,Perez,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 16,lower +Jackie Chretien,Jacqueline,Chretien,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 41,lower +Sherry Gould,Sherry L.,Gould,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 8,lower +Beth Richards,Beth,Richards,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 17,lower +Valerie McDonnell,Valerie,McDonnell,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 25,lower +Loren Selig,Loren,Selig,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 10,lower +Angela Brennan,Angela,Brennan,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 9,lower +Christal Lloyd,Christal,Lloyd,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 8,lower +Jessica LaMontagne,Jessica F.,LaMontagne,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 17,lower +Julie Gilman,Julie Dupre,Gilman,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 11,lower +Linda DiSilvestro,Linda,DiSilvestro,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 17,lower +Sharon Carson,Sharon M.,Carson,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,14,upper +Kelley Potenza,Kelley,Potenza,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Strafford 19,lower +Gerri Cannon,Gerri,Cannon,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 12,lower +Marjorie Smith,Marjorie,Smith,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 10,lower +Louise Andrus,Louise,Andrus,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Merrimack 5,lower +Susan Porcelli,Susan M.,Porcelli,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 19,lower +Emily Phillips,Emily,Phillips,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 7,lower +Katherine Prudhomme-O'Brien,Katherine,Prudhomme-O'Brien,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 13,lower +Sandra Panek,Sandra Arsenault,Panek,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 1,lower +Efstathia Booras,Efstathia C.,Booras,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 8,lower +Riché Colcombe,Riche,Colcombe,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 30,lower +Trinidad Tellez,Trinidad,Tellez,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 40,lower +Laurie Sanborn,Laurie,Sanborn,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 2,lower +Mary Hakken-Phillips,Mary A.,Hakken-Phillips,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 12,lower +Corinne Cascadden,Corinne E.,Cascadden,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Coos 5,lower +Mary Heath,Mary,Heath,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 41,lower +Judi Lanza,Judi Greene,Lanza,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 29,lower +Peggy Balboni,Peggy,Balboni,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 38,lower +Janet Wall,Janet G.,Wall,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 11,lower +Luz Bay,Luz,Bay,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 21,lower +Stephanie Payeur,Stephanie R.,Payeur,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 8,lower +Fran Nutter-Upham,Frances,Nutter-Upham,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 8,lower +Debra DeSimone,Debra L.,DeSimone,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 18,lower +Heather Raymond,Heather Shewan,Raymond,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 5,lower +Hope Damon,Hope,Damon,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Sullivan 8,lower +Cecilia Rich,Cecilia,Rich,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 12,lower +Becky McBeath,Rebecca Susan,McBeath,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 28,lower +Shannon Chandley,Shannon E.,Chandley,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,11,upper +Linda Ryan,Linda V.,Ryan,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 4,lower +Rebecca Perkins Kwoka,Rebecca,Perkins Kwoka,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,21,upper +Kathy Staub,Kathy Schofield,Staub,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 25,lower +Linda Gould,Linda,Gould,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 2,lower +Paige Beauchemin,Paige Marie,Beauchemin,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 3,lower +Diane Pauer,Diane,Pauer,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 36,lower +Nikki McCarter,Nikki,McCarter,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Belknap 8,lower +Erica Layon,Erica,Layon,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 13,lower +Jodi Newell,Jodi K.,Newell,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Cheshire 4,lower +Sue Vail,Suzanne Mercier,Vail,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 6,lower +Lorrie Carey,Lorrie J.,Carey,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 1,lower +Karel Crawford,Karel,Crawford,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Carroll 3,lower +Heidi Hamer,Heidi,Hamer,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 19,lower +Lilli Walsh,Lilli,Walsh,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 15,lower +Zoe Manos,Zoe,Manos,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 12,lower +Karen Ebel,Karen,Ebel,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 7,lower +Catherine Sofikitis,Catherine,Sofikitis,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 7,lower +Molly Howard,Molly,Howard,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 31,lower +Diane Kelley,Diane,Kelley,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 32,lower +Megan Murray,Megan A.,Murray,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 37,lower +Amy Bradley,Amy L.,Bradley,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 41,lower +Linda Haskins,Linda J.,Haskins,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Rockingham 11,lower +Kristin Noble,Kristin,Noble,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 2,lower +Mary Freitas,Mary,Freitas,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 26,lower +Debra Altschiller,Debra O'Connell,Altschiller,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,24,upper +Susan Almy,Susan W.,Almy,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Grafton 17,lower +Lucy Weber,Lucy McVitty,Weber,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Cheshire 5,lower +Gail Pare,Gail L.,Pare,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Strafford 16,lower +Lisa Smart,Lisa,Smart,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Belknap 2,lower +Kris Schultz,Kristina,Schultz,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Merrimack 29,lower +Arlene Quaratiello,Arlene,Quaratiello,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Rockingham 18,lower +Latha Mangipudi,Latha,Mangipudi,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 11,lower +Nancy Murphy,Nancy Olson,Murphy,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 12,lower +Sheila Seidel,Sheila,Seidel,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 29,lower +Renée Monteil,Renee,Monteil,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Cheshire 15,lower +Juliet Harvey-Bolia,Juliet,Harvey-Bolia,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Belknap 3,lower +Rosemarie Rung,Rosemarie,Rung,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 12,lower +Katy Peternel,Katy,Peternel,Female,Republican,ocd-jurisdiction/country:us/state:nh/government,Carroll 6,lower +Susan Elberger,Susan A.,Elberger,Female,Democratic,ocd-jurisdiction/country:us/state:nh/government,Hillsborough 5,lower +Gabe Rodriguez,Gabriel,Rodriguez,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,33,lower +Bill Moen,William F.,Moen,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,5,lower +Mike Inganamort,Michael J.,Inganamort,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,24,lower +John McKeon,John F.,McKeon,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,27,upper +Clinton Calabrese,Clinton,Calabrese,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,36,lower +Bill Spearman,William W.,Spearman,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,5,lower +Declan O'Scanlon,Declan Joseph,O'Scanlon,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,13,upper +Mike Torrissi,Michael,Torrissi,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,8,lower +Kevin Egan,Kevin P.,Egan,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,17,lower +Brian Bergen,Brian,Bergen,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,26,lower +Parker Space,Parker,Space,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,24,upper +Erik Peterson,Erik,Peterson,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,23,lower +Rob Clifton,Robert D.,Clifton,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,12,lower +Benjie Wimberly,Benjie E.,Wimberly,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,35,lower +Doug Steinhardt,Douglas Joseph,Steinhardt,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,23,upper +Mike Testa,Michael L.,Testa,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,1,upper +Bob Auth,Robert Joseph,Auth,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,39,lower +Gary Schaer,Gary Steven,Schaer,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,36,lower +Roy Freiman,Roy,Freiman,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,16,lower +Bob Singer,Robert W.,Singer,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,30,upper +John DiMaio,John,DiMaio,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,23,lower +Latham Tiver,Latham,Tiver,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,8,upper +Avi Schnall,Alexander,Schnall,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,30,lower +Dave Bailey,David,Bailey,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,3,lower +Will Sampson,William B.,Sampson,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,31,lower +Anthony Verrelli,Anthony S.,Verrelli,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,15,lower +Vin Gopal,Vin,Gopal,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,11,upper +Sterley Stanley,Sterley S.,Stanley,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,18,lower +Al Barlas,Al,Barlas,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,40,lower +Patrick Diegnan,Patrick J.,Diegnan,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,18,upper +Jon Bramnick,Jon M.,Bramnick,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,21,upper +Chris Tully,Peter Christopher,Tully,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,38,lower +John Azzariti,John V.,Azzariti,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,39,lower +Joe Lagana,Joseph A.,Lagana,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,38,upper +Jay Webber,James K.,Webber,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,26,lower +Reginald Atkins,Reginald W.,Atkins,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,20,lower +Jim Beach,James,Beach,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,6,upper +Joe Pennacchio,Joseph,Pennacchio,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,26,upper +Bob Smith,Robert G.,Smith,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,17,upper +Paul Sarlo,Paul Anthony,Sarlo,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,36,upper +Julio Marenco,Julio,Marenco,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,33,lower +Sean Kean,Sean Thomas,Kean,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,30,lower +Troy Singleton,Troy,Singleton,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,7,upper +Brian Stack,Brian P.,Stack,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,33,upper +Lou Greenwald,Louis D.,Greenwald,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,6,lower +Gordon Johnson,Gordon M.,Johnson,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,37,upper +Dan Hutchison,Daniel,Hutchison,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,4,lower +Robert Karabinchak,Robert J.,Karabinchak,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,18,lower +Chris DePhillips,Christopher P.,DePhillips,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,40,lower +Greg McGuckin,Gregory P.,McGuckin,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,10,lower +Erik Simonsen,Erik Kurt,Simonsen,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,1,lower +Greg Myhre,Gregory E.,Myhre,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,9,lower +Jim Kennedy,James J.,Kennedy,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,22,lower +Chris Barranco,Christian E.,Barranco,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,25,lower +Don Guardian,Donald A.,Guardian,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,2,lower +Tony Bucco,Anthony Mark,Bucco,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,25,upper +Mike Venezia,Michael J.,Venezia,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,34,lower +Vince Polistina,Vincent Joseph,Polistina,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,2,upper +Carmen Amato,Carmen F.,Amato,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,9,upper +Owen Henry,Owen E.,Henry,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,12,upper +Cody Miller,Cody D.,Miller,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,4,lower +Alex Sauickie,Alexander,Sauickie,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,12,lower +Joe Vitale,Joseph F.,Vitale,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,19,upper +Paul Moriarty,Paul D.,Moriarty,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,4,upper +Gerry Scharfenberger,Gerard P.,Scharfenberger,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,13,lower +Andrew Zwicker,Andrew P.,Zwicker,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,16,upper +Herb Conaway,Herbert C.,Conaway,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,7,lower +Raj Mukherji,Raj,Mukherji,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,32,upper +Joe Danielsen,Joseph,Danielsen,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,17,lower +Craig Coughlin,Craig J.,Coughlin,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,19,lower +Paul Kanitra,Paul Michael,Kanitra,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,10,lower +Antwan McClellan,Antwan L.,McClellan,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,1,lower +Brian Rumpf,Brian E.,Rumpf,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,9,lower +Jim Holzapfel,James William,Holzapfel,Male,Republican,ocd-jurisdiction/country:us/state:nj/government,10,upper +Nick Scutari,Nicholas Paul,Scutari,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,22,upper +John Allen,John P.,Allen,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,32,lower +Wayne DeAngelo,Wayne P.,DeAngelo,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,14,lower +Joe Cryan,Joseph P.,Cryan,Male,Democratic,ocd-jurisdiction/country:us/state:nj/government,20,upper +Michele Matsikoudis,Michele,Matsikoudis,Female,Republican,ocd-jurisdiction/country:us/state:nj/government,21,lower +Aura Dunn,Aura Kenny,Dunn,Female,Republican,ocd-jurisdiction/country:us/state:nj/government,25,lower +Annette Quijano,Annette M.,Quijano,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,20,lower +Holly Schepisi,Holly T.,Schepisi,Female,Republican,ocd-jurisdiction/country:us/state:nj/government,39,upper +Carmen Morales,Carmen Theresa,Morales,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,34,lower +Angela McKnight,Angela V.,McKnight,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,31,upper +Verlina Reynolds-Jackson,Verlina,Reynolds-Jackson,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,15,lower +Kristin Corrado,Kristin M.,Corrado,Female,Republican,ocd-jurisdiction/country:us/state:nj/government,40,upper +Shirley Turner,Shirley Kersey,Turner,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,15,upper +Garnet Hall,Garnet R.,Hall,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,28,lower +Lisa Swain,Lisa,Swain,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,38,lower +Jessica Ramirez,Jessica,Ramirez,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,32,lower +Andrea Katz,Andrea,Katz,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,8,lower +Rosy Bagolie,Rosaura,Bagolie,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,27,lower +Nellie Pou,Nelida,Pou,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,35,upper +Shavonda Sumter,Shavonda E.,Sumter,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,35,lower +Dawn Fantasia,Dawn,Fantasia,Female,Republican,ocd-jurisdiction/country:us/state:nj/government,24,lower +Cleopatra Tucker,Cleopatra Gibson,Tucker,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,28,lower +Mitchelle Drulis,Mitchelle,Drulis,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,16,lower +Nancy Muñoz,Nancy Ann Foster,Munoz,Female,Republican,ocd-jurisdiction/country:us/state:nj/government,21,lower +Alixon Collazos-Gill,Alixon A.,Collazos-Gill,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,27,lower +Nilsa Cruz-Perez,Nilsa I.,Cruz-Perez,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,5,upper +Shama Haider,Shama,Haider,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,37,lower +Renee Burgess,Renee C.,Burgess,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,28,upper +Tennille McCoy,Tennille R.,McCoy,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,14,lower +Eliana Pintor Marin,Eliana,Pintor Marin,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,29,lower +Pam Lampitt,Pamela Rosen,Lampitt,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,6,lower +Teresa Ruiz,Maria Teresa,Ruiz,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,29,upper +Linda Greenstein,Linda R.,Greenstein,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,14,upper +Heather Simmons,Heather,Simmons,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,3,lower +Vicky Flynn,Victoria Anne,Flynn,Female,Republican,ocd-jurisdiction/country:us/state:nj/government,13,lower +Claire Swift,Claire S.,Swift,Female,Republican,ocd-jurisdiction/country:us/state:nj/government,2,lower +Ellen Park,Ellen J.,Park,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,37,lower +Luanne Peterpaul,Luanne M.,Peterpaul,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,11,lower +Shanique Speight,Shanique Davis,Speight,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,29,lower +Britnee Timberlake,Britnee N.,Timberlake,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,34,upper +Margie Donlon,Margaret M.,Donlon,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,11,lower +Barbara McCann Stamato,Barbara,McCann Stamato,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,31,lower +Yvonne Lopez,Yvonne M.,Lopez,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,19,lower +Carol Murphy,Carol A.,Murphy,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,7,lower +Linda Carter,Linda S.,Carter,Female,Democratic,ocd-jurisdiction/country:us/state:nj/government,22,lower +Greg Baca,Gregory A.,Baca,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,29,upper +George Muñoz,George K.,Munoz,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,4,upper +Benny Shendo,Benny J.,Shendo,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,22,upper +Eliseo Alcon,Eliseo Lee,Alcon,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,6,lower +Harlan Vincent,Harlan H.,Vincent,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,56,lower +Daniel Ivey-Soto,Daniel A.,Ivey-Soto,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,15,upper +Larry Scott,Larry Ray,Scott,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,62,lower +Tony Allison,Anthony,Allison,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,4,lower +Martin Zamora,Martin Ruben,Zamora,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,63,lower +Craig Brandt,Craig W.,Brandt,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,40,upper +Joseph Sanchez,Joseph Louis,Sanchez,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,40,lower +Jimmy Mason,Jimmy G.,Mason,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,66,lower +Leo Jaramillo,Leo V.,Jaramillo,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,5,upper +John Block,John Peter,Block,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,51,lower +Josh Hernandez,Joshua N.,Hernandez,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,60,lower +Cliff Pirtle,Cliff R.,Pirtle,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,32,upper +Peter Wirth,Peter,Wirth,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,25,upper +Greg Nibert,Gregory J.,Nibert,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,27,upper +Derrick Lente,Derrick J.,Lente,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,65,lower +Martin Hickey,Martin,Hickey,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,20,upper +Art De La Cruz,Art,De La Cruz,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,12,lower +Mark Duncan,P. Mark,Duncan,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,2,lower +Andrés Romero,Gregorio Andres,Romero,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,10,lower +Ray Lara,Raymundo,Lara,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,34,lower +Joshua Sanchez,Joshua Adolph,Sanchez,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,30,upper +Bill Hall,William A.,Hall,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,3,lower +Javier Martínez,Javier I.,Martinez,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,11,lower +Jeff Steinborn,Jeffrey,Steinborn,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,36,upper +Joe Cervantes,Joseph,Cervantes,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,31,upper +Jim Townsend,James G.,Townsend,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,54,lower +Jack Chatfield,Jackey,Chatfield,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,67,lower +David Gallegos,David M.,Gallegos,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,41,upper +Harold Pope,Harold,Pope,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,23,upper +Bill Rehm,William R.,Rehm,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,31,lower +Randy Pettigrew,Randall T.,Pettigrew,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,61,lower +Steve McCutcheon,Steven,McCutcheon,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,42,upper +Moe Maestas,Antonio,Maestas,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,26,upper +Ron Griggs,Ron,Griggs,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,34,upper +Bill Soules,William P.,Soules,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,37,upper +Bill Tallman,William G.,Tallman,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,18,upper +Gregg Schmedes,Gregg,Schmedes,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,19,upper +Bill O'Neill,William Baldwin,O'Neill,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,13,upper +Bill Burt,William F.,Burt,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,33,upper +Michael Padilla,Michael,Padilla,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,14,upper +Harry Garcia,Harry,Garcia,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,69,lower +Jerry Ortiz y Pino,Gerald P.,Ortiz y Pino,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,12,upper +Miguel García,Miguel P.,Garcia,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,14,lower +Jared Hembree,Jared A.,Hembree,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,59,lower +Willie Madrid,Willie D.,Madrid,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,53,lower +Bill Sharer,William E.,Sharer,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,1,upper +Jason Harper,Jason Carl,Harper,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,57,lower +Pat Woods,John Patrick,Woods,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,7,upper +Pete Campos,Pete,Campos,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,8,upper +Bobby Gonzales,Roberto Jesse,Gonzales,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,6,upper +Brian Baca,Brian G.,Baca,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,8,lower +Luis Terrazas,Luis M.,Terrazas,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,39,lower +Rod Montoya,Rodney,Montoya,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,1,lower +Nathan Small,Nathan P.,Small,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,36,lower +Alan Martinez,Alan T.,Martinez,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,23,lower +Ambrose Castellano,Ambrose M.,Castellano,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,70,lower +Steve Neville,Steven P.,Neville,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,2,upper +Matthew McQueen,Matthew,McQueen,Male,Democratic,ocd-jurisdiction/country:us/state:nm/government,50,lower +Mark Moores,Mark David,Moores,Male,Republican,ocd-jurisdiction/country:us/state:nm/government,21,upper +Brenda McKenna,Brenda Grace Agoyothe,McKenna,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,9,upper +Tanya Moya,Tanya Mirabal,Moya,Female,Republican,ocd-jurisdiction/country:us/state:nm/government,7,lower +Marian Matthews,Marian,Matthews,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,27,lower +Charlotte Little,Charlotte,Little,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,68,lower +Day Hochman-Vigil,Dayan M.,Hochman-Vigil,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,15,lower +Patty Lundstrom,Patricia A.,Lundstrom,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,9,lower +Joanne Ferrary,Joanne J.,Ferrary,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,37,lower +Carrie Hamblen,Carrie,Hamblen,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,38,upper +Linda Serrato,Linda Michelle,Serrato,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,45,lower +Katy Duhigg,Katy M.,Duhigg,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,10,upper +Gail Armstrong,Gail,Armstrong,Female,Republican,ocd-jurisdiction/country:us/state:nm/government,49,lower +Liz Thomson,Elizabeth L.,Thomson,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,24,lower +Andrea Romero,Andrea D.,Romero,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,46,lower +Tara Luján,Tara L.,Lujan,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,48,lower +Linda López,Linda M.,Lopez,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,11,upper +Shannon Pinto,Shannon D.,Pinto,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,3,upper +Nancy Rodriguez,Nancy E.,Rodriguez,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,24,upper +Crystal Brantley,Crystal Diamond,Brantley,Female,Republican,ocd-jurisdiction/country:us/state:nm/government,35,upper +Andi Reeb,Andrea Rowley,Reeb,Female,Republican,ocd-jurisdiction/country:us/state:nm/government,64,lower +Antoinette Sedillo Lopez,Antoinette,Sedillo Lopez,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,16,upper +Candy Ezzell,Candy Spence,Ezzell,Female,Republican,ocd-jurisdiction/country:us/state:nm/government,58,lower +Cristina Parajón,Cristina,Parajon,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,25,lower +Pat Roybal Caballero,Patricia A.,Roybal Caballero,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,13,lower +Liz Stefanics,Elizabeth T.,Stefanics,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,39,upper +Wonda Johnson,Doreen Wonda,Johnson,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,5,lower +Joy Garratt,Joy I.,Garratt,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,29,lower +Angelica Rubio,Angelica M.,Rubio,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,35,lower +Siah Correa Hemphill,Siah,Correa Hemphill,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,28,upper +Meredith Dixon,Meredith A.,Dixon,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,20,lower +Cathrynn Brown,Cathrynn Novich,Brown,Female,Republican,ocd-jurisdiction/country:us/state:nm/government,55,lower +Tara Jaramillo,Tara,Jaramillo,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,38,lower +Reena Szczepanski,Reena,Szczepanski,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,47,lower +Pamelya Herndon,Pamelya,Herndon,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,28,lower +Stefani Lord,Stefani,Lord,Female,Republican,ocd-jurisdiction/country:us/state:nm/government,22,lower +Eleanor Chávez,Eleanor,Chavez,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,26,lower +Kathleen Cates,Kathleen,Cates,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,44,lower +Doreen Gallegos,Doreen Ybarra,Gallegos,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,52,lower +Micaela Cadena,Micaela Lara,Cadena,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,33,lower +Debbie Sariñana,Debra Marie,Sarinana,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,21,lower +Janelle Anyanonu,Janelle,Anyanonu,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,19,lower +Chris Chandler,Christine F.,Chandler,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,43,lower +Mimi Stewart,Mimi,Stewart,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,17,upper +Kristina Ortez,Kristina,Ortez,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,42,lower +Jenifer Jones,Jenifer Marie,Jones,Female,Republican,ocd-jurisdiction/country:us/state:nm/government,32,lower +Yanira Gurrola,Flor Yanira,Gurrola Valenzuela,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,16,lower +Natalie Figueroa,Natalie R.,Figueroa,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,30,lower +Gail Chasey,Gail,Chasey,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,18,lower +Susan Herrera,Susan K.,Herrera,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,41,lower +Cynthia Borrego,Cynthia D.,Borrego,Female,Democratic,ocd-jurisdiction/country:us/state:nm/government,17,lower +Steve Yeager,Steven James,Yeager,Male,Democratic,ocd-jurisdiction/country:us/state:nv/government,9,lower +David Orentlicher,David,Orentlicher,Male,Democratic,ocd-jurisdiction/country:us/state:nv/government,20,lower +P.K. O'Neill,Philip,O'Neill,Male,Republican,ocd-jurisdiction/country:us/state:nv/government,40,lower +Pete Goicoechea,Peter J.,Goicoechea,Male,Republican,ocd-jurisdiction/country:us/state:nv/government,19,upper +Ken Gray,Kenneth D.,Gray,Male,Republican,ocd-jurisdiction/country:us/state:nv/government,39,lower +Max Carter,Max,Carter,Male,Democratic,ocd-jurisdiction/country:us/state:nv/government,12,lower +Duy Nguyen,Duy,Nguyen,Male,Democratic,ocd-jurisdiction/country:us/state:nv/government,8,lower +Jeff Stone,Jeff,Stone,Male,Republican,ocd-jurisdiction/country:us/state:nv/government,20,upper +Richard McArthur,Richard,McArthur,Male,Republican,ocd-jurisdiction/country:us/state:nv/government,4,lower +Ira Hansen,Ira,Hansen,Male,Republican,ocd-jurisdiction/country:us/state:nv/government,14,upper +Skip Daly,Richard,Daly,Male,Democratic,ocd-jurisdiction/country:us/state:nv/government,13,upper +Rich DeLong,Richard,DeLong,Male,Republican,ocd-jurisdiction/country:us/state:nv/government,26,lower +Toby Yurek,Thaddeus J.,Yurek,Male,Republican,ocd-jurisdiction/country:us/state:nv/government,19,lower +Howard Watts,Howard,Watts,Male,Democratic,ocd-jurisdiction/country:us/state:nv/government,15,lower +Fabian Doñate,Fabian,Donate,Male,Democratic,ocd-jurisdiction/country:us/state:nv/government,10,upper +Edgar Flores,Edgar R.,Flores,Male,Democratic,ocd-jurisdiction/country:us/state:nv/government,2,upper +Bert Gurr,Bert,Gurr,Male,Republican,ocd-jurisdiction/country:us/state:nv/government,33,lower +Gregory Koenig,Gregory Scott,Koenig,Male,Republican,ocd-jurisdiction/country:us/state:nv/government,38,lower +Reuben D'Silva,Reuben,D'Silva,Male,Democratic,ocd-jurisdiction/country:us/state:nv/government,28,lower +Brian Hibbetts,Brian,Hibbetts,Male,Republican,ocd-jurisdiction/country:us/state:nv/government,13,lower +James Ohrenschall,James,Ohrenschall,Male,Democratic,ocd-jurisdiction/country:us/state:nv/government,21,upper +Greg Hafen,Gregory T.,Hafen,Male,Republican,ocd-jurisdiction/country:us/state:nv/government,36,lower +Dallas Harris,Dallas,Harris,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,11,upper +Elaine Marzola,Elaine H.,Marzola,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,21,lower +Tracy Brown-May,Tracy,Brown-May,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,42,lower +Lisa Krasner,Lisa,Krasner,Female,Republican,ocd-jurisdiction/country:us/state:nv/government,16,upper +Rochelle Nguyen,Rochelle Thuy,Nguyen,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,3,upper +Heidi Kasama,Heidi W.,Kasama,Female,Republican,ocd-jurisdiction/country:us/state:nv/government,2,lower +Alexis Hansen,Alexis Lloyd,Hansen,Female,Republican,ocd-jurisdiction/country:us/state:nv/government,32,lower +Dina Neal,Dina,Neal,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,4,upper +Daniele Monroe-Moreno,Daniele,Monroe-Moreno,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,1,lower +Natha Anderson,Natha C.,Anderson,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,30,lower +Bea Duran,Beatrice Angela,Duran,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,11,lower +Brittney Miller,Brittney Marie,Miller,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,5,lower +Venicia Considine,Venicia,Considine,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,18,lower +Nicole Cannizzaro,Nicole Jeanette,Cannizzaro,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,6,upper +Lesley Cohen,Lesley Elizabeth,Cohen,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,29,lower +Robin Titus,Robin L.,Titus,Female,Republican,ocd-jurisdiction/country:us/state:nv/government,17,upper +Sarah Peters,Sarah,Peters,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,24,lower +Selena Torres,Selena,Torres,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,3,lower +Michelle Gorelow,Michelle,Gorelow,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,35,lower +Danielle Gallant,Danielle,Gallant,Female,Republican,ocd-jurisdiction/country:us/state:nv/government,23,lower +Cecelia González,Cecelia,Gonzalez,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,16,lower +Shea Backus,Shea,Backus,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,37,lower +Shondra Summers-Armstrong,Shondra,Summers-Armstrong,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,6,lower +Marilyn Dondero Loop,Marilyn,Dondero Loop,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,8,upper +Carrie Buck,Carrie Ann,Buck,Female,Republican,ocd-jurisdiction/country:us/state:nv/government,5,upper +Claire Thomas,Clara,Thomas,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,17,lower +Erica Mosca,Erica V.,Mosca,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,14,lower +Jill Dickman,Jill,Dickman,Female,Republican,ocd-jurisdiction/country:us/state:nv/government,31,lower +Shannon Bilbray-Axelrod,Shannon Mary,Bilbray-Axelrod,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,34,lower +Selena La Rue Hatch,Selena,La Rue Hatch,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,25,lower +Melissa Hardy,Melissa,Hardy,Female,Republican,ocd-jurisdiction/country:us/state:nv/government,22,lower +Melanie Scheible,Melanie,Scheible,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,9,upper +Sandra Jauregui,Sandra,Jauregui Fleming,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,41,lower +Roberta Lange,Roberta Ann,Lange,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,7,upper +Heidi Gansert,Heidi Seevers,Gansert,Female,Republican,ocd-jurisdiction/country:us/state:nv/government,15,upper +Pat Spearman,Patricia Ann,Spearman,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,1,upper +Angie Taylor,Angie,Taylor,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,27,lower +Julie Pazina,Julie Holzer,Pazina,Female,Democratic,ocd-jurisdiction/country:us/state:nv/government,12,upper +Bill Weber,William,Weber,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,38,upper +Andrew Hevesi,Andrew D.,Hevesi,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,28,lower +Landon Dais,Landon C.,Dais,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,77,lower +Billy Jones,D. Billy,Jones,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,115,lower +Dave McDonough,David G.,McDonough,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,14,lower +Brian Curran,Brian F.,Curran,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,21,lower +Michael Gianaris,Michael N.,Gianaris,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,12,upper +Jeremy Cooney,Jeremy A.,Cooney,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,56,upper +Ed Braunstein,Edward Charles,Braunstein,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,26,lower +Simcha Eichenstein,Simcha,Eichenstein,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,48,lower +Anil Beephan,Anil Roodal,Beephan,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,105,lower +Misha Novakhov,Mikhail,Novakhov,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,45,lower +Jeff Gallahan,Jeff L.,Gallahan,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,131,lower +Jake Ashby,Jacob Christopher,Ashby,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,43,upper +Joe Angelino,Joseph,Angelino,Male,Republican/Conservative/Independence,ocd-jurisdiction/country:us/state:ny/government,121,lower +Pete Harckham,Peter B.,Harckham,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,40,upper +Chris Tague,Christopher,Tague,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,102,lower +Brian Cunningham,Brian-Christopher A.,Cunningham,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,43,lower +John Mikulin,John K.,Mikulin,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,17,lower +Josh Jensen,Joshua Thomas,Jensen,Male,Republican/Conservative/Independence,ocd-jurisdiction/country:us/state:ny/government,134,lower +Karl Brabenec,Karl A.,Brabenec,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,98,lower +Leroy Comrie,Leroy George,Comrie,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,14,upper +Ken Blankenbush,Kenneth D.,Blankenbush,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,117,lower +Bill Magnarelli,William B.,Magnarelli,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,129,lower +Keith Brown,Keith P.,Brown,Male,Republican/Conservative/Independence,ocd-jurisdiction/country:us/state:ny/government,12,lower +Brian Maher,Brian,Maher,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,101,lower +Brian Miller,Brian D.,Miller,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,122,lower +Joe Giglio,Joseph M.,Giglio,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,148,lower +Sam Pirozzolo,Samuel,Pirozzolo,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,63,lower +Phil Ramos,Philip,Ramos,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,6,lower +Alex Bores,Alex,Bores,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,73,lower +Michael Durso,Michael A.,Durso,Male,Republican/Conservative/Independence/Libertarian,ocd-jurisdiction/country:us/state:ny/government,9,lower +Ron Kim,Ronald Joseph,Kim,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,40,lower +Bill Conrad,William Charles,Conrad,Male,Democratic/Independence/Working Families,ocd-jurisdiction/country:us/state:ny/government,140,lower +Gustavo Rivera,Jose Gustavo,Rivera,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,33,upper +Sean Ryan,Sean M.,Ryan,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,61,upper +Brian Manktelow,Brian David,Manktelow,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,130,lower +Phil Palmesano,Philip A.,Palmesano,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,132,lower +Tony Simone,Tony,Simone,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,75,lower +John McGowan,John W.,McGowan,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,97,lower +Michael Benedetto,Michael R.,Benedetto,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,82,lower +Nader Sayegh,Nader J.,Sayegh,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,90,lower +James Sanders,James,Sanders,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,10,upper +Harry Bronson,Harry B.,Bronson,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,138,lower +George Alvarez,George,Alvarez,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,78,lower +Pat Burke,Patrick B.,Burke,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,142,lower +Matt Slater,Matthew,Slater,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,94,lower +Eddie Gibbs,Edward L.,Gibbs,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,68,lower +Kevin Parker,Kevin S.,Parker,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,21,upper +Ari Brown,Eric,Brown,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,20,lower +William Colton,William,Colton,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,47,lower +Andy Goodell,Andrew W.,Goodell,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,150,lower +Alec Brook-Krasny,Alec,Brook-Krasny,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,46,lower +David Weprin,David Ira,Weprin,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,24,lower +Scott Bendett,Scott Harris,Bendett,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,107,lower +Brad Hoylman-Sigal,Brad Madison,Hoylman-Sigal,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,47,upper +Simcha Felder,Simcha,Felder,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,22,upper +Lester Chang,Lester,Chang,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,49,lower +Matt Simpson,Matthew J.,Simpson,Male,Republican/Conservative/Independence,ocd-jurisdiction/country:us/state:ny/government,114,lower +Rob Rolison,Robert,Rolison,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,39,upper +Mike Norris,Michael J.,Norris,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,144,lower +Charles Fall,Charles Dialor,Fall,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,61,lower +Jon Rivera,Jonathan D.,Rivera,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,149,lower +Ed Ra,Edward P.,Ra,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,19,lower +Sam Berger,Samuel T.,Berger,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,27,lower +Steven Raga,Steven B.,Raga,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,30,lower +Andrew Gounardes,Andrew Simeon,Gounardes,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,26,upper +Jabari Brisport,Jabari,Brisport,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,25,upper +Juan Ardila,Juan D.,Ardila,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,37,lower +Khaleel Anderson,Khaleel M.,Anderson,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,31,lower +Zellnor Myrie,Zellnor Y.,Myrie,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,20,upper +Dave DiPietro,David J.,DiPietro,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,147,lower +Steve Stern,Steven H.,Stern,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,10,lower +Ed Flood,Edward Albert,Flood,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,4,lower +Mark Walczyk,Mark C.,Walczyk,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,49,upper +Steve Otis,Steven,Otis,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,91,lower +Tony Palumbo,Anthony Howard,Palumbo,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,1,upper +Dean Murray,Leonard Dean,Murray,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,3,upper +Angelo Santabarbara,Angelo L.,Santabarbara,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,111,lower +Robert Smullen,Robert J.,Smullen,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,118,lower +Rob Ortt,Robert Gary,Ortt,Male,Republican/Conservative/Independence,ocd-jurisdiction/country:us/state:ny/government,62,upper +Jonathan Jacobson,Jonathan G.,Jacobson,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,104,lower +Scott Gray,Scott Andrew,Gray,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,116,lower +George Borrello,George M.,Borrello,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,57,upper +James Skoufis,James George,Skoufis,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,42,upper +Robert Jackson,Robert,Jackson,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,31,upper +Andrew Lanza,Andrew Joseph,Lanza,Male,Republican/Conservative/Independence/Reform,ocd-jurisdiction/country:us/state:ny/government,24,upper +Phil Steck,Phillip G.,Steck,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,110,lower +Joe Addabbo,Joseph Patrick,Addabbo,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,15,upper +Jeffrion Aubry,Jeffrion L.,Aubry,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,35,lower +Demond Meeks,Demond,Meeks,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,137,lower +Jake Blumencranz,Jake,Blumencranz,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,15,lower +Mike Tannousis,Michael,Tannousis,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,64,lower +Manny De Los Santos,Manny K.,De Los Santos,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,72,lower +Clyde Vanel,Clyde,Vanel,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,33,lower +Steve Hawley,Stephen M.,Hawley,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,139,lower +Jim Tedisco,James Nicholas,Tedisco,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,44,upper +Jose Serrano,Jose Marco,Serrano,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,29,upper +John Zaccaro,John D.,Zaccaro,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,80,lower +Jeffrey Dinowitz,Jeffrey,Dinowitz,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,81,lower +Jarett Gandolfo,Jarett C.,Gandolfo,Male,Republican/Conservative/Independence,ocd-jurisdiction/country:us/state:ny/government,7,lower +Chris Eachus,Christopher William,Eachus,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,99,lower +Tom O'Mara,Thomas F.,O'Mara,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,58,upper +Kevin Thomas,Kevin M.,Thomas,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,6,upper +Robert Carroll,Robert C.,Carroll,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,44,lower +Peter Oberacker,Peter K.,Oberacker,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,51,upper +Gary Pretlow,James Gary,Pretlow,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,89,lower +John Lemondes,John,Lemondes,Male,Republican/Conservative/Independence,ocd-jurisdiction/country:us/state:ny/government,126,lower +Harvey Epstein,Harvey,Epstein,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,74,lower +Mike Fitzpatrick,Michael J.,Fitzpatrick,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,8,lower +Jamaal Bailey,Jamaal T.,Bailey,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,36,upper +Zohran Mamdani,Zohran Kwame,Mamdani,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,36,lower +Brian Kavanagh,Brian P.,Kavanagh,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,27,upper +Doug Smith,Douglas M.,Smith,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,5,lower +Mike Reilly,Michael W.,Reilly,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,62,lower +Chris Burdick,Christopher,Burdick,Male,Democratic/Independence/Working Families,ocd-jurisdiction/country:us/state:ny/government,93,lower +Jack Martins,Joaquim M.,Martins,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,7,upper +Dan Stec,Daniel George,Stec,Male,Republican/Conservative/Independence,ocd-jurisdiction/country:us/state:ny/government,45,upper +Joe DeStefano,Joseph P.,DeStefano,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,3,lower +Chris Friend,Christopher S.,Friend,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,124,lower +John Liu,John Chun,Liu,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,16,upper +Luis Sepúlveda,Luis R.,Sepulveda,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,32,upper +Al Taylor,Alfred E.,Taylor,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,71,lower +Patrick Gallivan,Patrick M.,Gallivan,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,60,upper +Fred Thiele,Frederick W.,Thiele,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,1,lower +John McDonald,John T.,McDonald,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,108,lower +Steve Rhoads,Steven D.,Rhoads,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,5,upper +Al Stirpe,Albert A.,Stirpe,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,127,lower +Carl Heastie,Carl Edward,Heastie,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,83,lower +Charles Lavine,Charles David,Lavine,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,13,lower +John Mannion,John W.,Mannion,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,50,upper +Neil Breslin,Neil David,Breslin,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,46,upper +Erik Dilan,Erik Martin,Dilan,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,54,lower +Will Barclay,William Anson,Barclay,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,120,lower +Joe Griffo,Joseph A.,Griffo,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,53,upper +Danny O'Donnell,Daniel J.,O'Donnell,Male,Democratic,ocd-jurisdiction/country:us/state:ny/government,69,lower +Mario Mattera,Mario R.,Mattera,Male,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,2,upper +Angelo Morinello,Angelo J.,Morinello,Male,Republican,ocd-jurisdiction/country:us/state:ny/government,145,lower +Stacey Pheffer Amato,Stacey G.,Pheffer Amato,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,23,lower +Amy Paulin,Amy,Paulin,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,88,lower +Toby Stavisky,Toby Ann,Stavisky,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,11,upper +Phara Souffrant Forrest,Phara,Souffrant Forrest,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,57,lower +Rachel May,Rachel,May,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,48,upper +Jen Lunsford,Jennifer,Lunsford,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,135,lower +Jaime Williams,Jaime R.,Williams,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,59,lower +Cordell Cleare,Cordell,Cleare,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,30,upper +Vivian Cook,Vivian E.,Cook,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,32,lower +Michelle Hinchey,Michelle,Hinchey,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,41,upper +Stefani Zinerman,Stefani L.,Zinerman,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,56,lower +Iwen Chu,Iwen Irene,Chu,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,17,upper +Aileen Gunther,Aileen M.,Gunther,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,100,lower +MaryJane Shimsky,MaryJane,Shimsky,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,92,lower +Anna Kelles,Anna R.,Kelles,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,125,lower +Latrice Walker,Latrice Monique,Walker,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,55,lower +Yudelka Tapia,Yudelka,Tapia,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,86,lower +Monica Wallace,Monica Piga,Wallace,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,143,lower +Taylor Darling,Taylor,Darling,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,18,lower +Sarah Clark,Sarah Anderson,Clark,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,136,lower +Nikki Lucas,Nikki I.,Lucas,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,60,lower +Donna Lupardo,Donna A.,Lupardo,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,123,lower +Samra Brouk,Samra G.,Brouk,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,55,upper +Shelley Mayer,Shelley B.,Mayer,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,37,upper +Jodi Giglio,Jodi Bennett,Giglio,Female,Republican/Conservative/Independence,ocd-jurisdiction/country:us/state:ny/government,2,lower +Jo Anne Simon,Jo Anne,Simon,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,52,lower +Linda Rosenthal,Linda B.,Rosenthal,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,67,lower +Michaelle Solages,Michaelle C.,Solages,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,22,lower +Karen McMahon,Karen,McMahon,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,146,lower +Didi Barrett,Didi,Barrett,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,106,lower +Nathalia Fernández,Nathalia,Fernández,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,34,upper +Rodneyse Bichotte Hermelyn,Rodneyse,Bichotte Hermelyn,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,42,lower +Emily Gallagher,Emily E.,Gallagher,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,50,lower +Pam Helming,Pamela A.,Helming,Female,Republican/Conservative/Independence,ocd-jurisdiction/country:us/state:ny/government,54,upper +Marcela Mitaynes,Marcela,Mitaynes,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,51,lower +Rebecca Seawright,Rebecca A.,Seawright,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,76,lower +Maritza Davila,Maritza,Davila,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,53,lower +Kimberly Jean-Pierre,Kimberly,Jean-Pierre,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,11,lower +Marianne Buttenschon,Marianne Goodman,Buttenschon,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,119,lower +Inez Dickens,Inez E.,Dickens,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,70,lower +Lea Webb,Lea,Webb,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,52,upper +Carrie Woerner,Caroline Caird,Woerner,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,113,lower +Julia Salazar,Julia,Salazar,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,18,upper +Marjorie Byrnes,Marjorie L.,Byrnes,Female,Republican,ocd-jurisdiction/country:us/state:ny/government,133,lower +Pat Fahy,Patricia,Fahy,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,109,lower +Sarahana Shrestha,Sarahana,Shrestha,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,103,lower +Jessica Scarcella-Spanton,Jessica,Scarcella-Spanton,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,23,upper +Patricia Canzoneri-Fitzpatrick,Patricia,Canzoneri-Fitzpatrick,Female,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,9,upper +Monique Chandler-Waterman,Monique R.,Chandler-Waterman,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,58,lower +Mary Beth Walsh,Mary Beth,Walsh,Female,Republican,ocd-jurisdiction/country:us/state:ny/government,112,lower +Dana Levenberg,Dana,Levenberg,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,95,lower +Jessica Ramos,Jessica,Ramos,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,13,upper +Deborah Glick,Deborah J.,Glick,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,66,lower +Grace Lee,Grace,Lee,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,65,lower +Alexis Weik,Alexis,Weik,Female,Republican/Conservative,ocd-jurisdiction/country:us/state:ny/government,8,upper +Monica Martinez,Monica R.,Martinez,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,4,upper +Jessica González-Rojas,Jessica,Gonzalez-Rojas,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,34,lower +Jenifer Rajkumar,Jenifer,Rajkumar,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,38,lower +Catalina Cruz,Catalina,Cruz,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,39,lower +Chantel Jackson,Chantel S.,Jackson,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,79,lower +Liz Krueger,Elizabeth,Krueger,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,28,upper +Alicia Hyndman,Alicia L.,Hyndman,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,29,lower +Andrea Stewart-Cousins,Andrea Alice,Stewart-Cousins,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,35,upper +Nily Rozic,Nily,Rozic,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,25,lower +Karines Reyes,Karines,Reyes,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,87,lower +Crystal Peoples-Stokes,Crystal Davis,Peoples-Stokes,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,141,lower +Amanda Septimo,Amanda N.,Septimo,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,84,lower +Roxanne Persaud,Roxanne Jacqueline,Persaud,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,19,upper +Helene Weinstein,Helene E.,Weinstein,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,41,lower +Kristen Gonzalez,Kristen S.,Gonzalez,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,59,upper +Pamela Hunter,Pamela J.,Hunter,Female,Democratic,ocd-jurisdiction/country:us/state:ny/government,128,lower +Gina Sillitti,Gina L.,Sillitti,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:ny/government,16,lower +Josh Williams,Joshua E.,Williams,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,41,lower +Haraz Ghanbari,Haraz N.,Ghanbari,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,75,lower +Terrence Upchurch,Terrence Vincent,Upchurch,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,20,lower +Thomas Hall,Thomas,Hall,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,46,lower +Cecil Thomas,Cecil,Thomas,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,25,lower +Phil Plummer,Phil,Plummer,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,39,lower +Phil Robinson,Phillip M.,Robinson,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,19,lower +Brian Chavez,Brian M.,Chavez,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,30,upper +Bill Seitz,William,Seitz,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,30,lower +Dave Dobos,David A.,Dobos,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,10,lower +Bernie Willis,Bernard,Willis,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,74,lower +Sedrick Denson,Sedrick,Denson,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,26,lower +Don Jones,Don,Jones,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,95,lower +Tim Barhorst,Timothy N.,Barhorst,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,85,lower +Jon Cross,Jon,Cross,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,83,lower +Vernon Sykes,Vernon,Sykes,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,28,upper +Mike Loychik,Michael,Loychik,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,65,lower +Brian Lorenz,Brian,Lorenz,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,60,lower +Kent Smith,Kent,Smith,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,21,upper +Casey Weinstein,Casey M.,Weinstein,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,34,lower +Darnell Brewer,Darnell T.,Brewer,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,18,lower +Kevin Miller,Kevin D.,Miller,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,69,lower +Hearcel Craig,Hearcel F.,Craig,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,15,upper +Roy Klopfenstein,Roy,Klopfenstein,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,82,lower +Ismail Mohamed,Ismail,Mohamed,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,3,lower +Willis Blackshear,Willis E.,Blackshear,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,38,lower +Elliot Forhan,Elliot,Forhan,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,21,lower +Al Cutrona,Alessandro Benjamin,Cutrona,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,33,upper +Dontavius Jarrells,Dontavius L.,Jarrells,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,1,lower +Brett Hillyer,Brett Hudson,Hillyer,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,51,lower +Bill Blessing,Louis William,Blessing,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,8,upper +Adam Mathews,Adam,Mathews,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,56,lower +Mike Skindell,Michael J.,Skindell,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,13,lower +Bill DeMora,William P.,DeMora,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,25,upper +Jack Daniels,John K.,Daniels,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,32,lower +Terry Johnson,Terry A.,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,14,upper +Elgin Rogers,Elgin,Rogers,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,44,lower +Al Landis,Al,Landis,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,31,upper +Bill Reineke,William F.,Reineke,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,26,upper +Jay Edwards,Jay,Edwards,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,94,lower +George Lang,George F.,Lang,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,4,upper +Tim Schaffer,Timothy O.,Schaffer,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,20,upper +Mark Romanchuk,Mark James,Romanchuk,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,22,upper +Shane Wilkin,Shane,Wilkin,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,17,upper +Niraj Antani,Niraj Jaimini,Antani,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,6,upper +Dick Stein,Dick,Stein,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,54,lower +Darrell Kick,Darrell D.,Kick,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,98,lower +Nick Santucci,Nick,Santucci,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,64,lower +Jason Stephens,Jason C.,Stephens,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,93,lower +Jamie Callender,Jamie,Callender,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,57,lower +Jim Hoops,James M.,Hoops,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,81,lower +Joe Miller,Joseph A.,Miller,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,53,lower +Dan Troy,Daniel Patrick,Troy,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,23,lower +Jeff LaRe,Jeffrey,LaRe,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,73,lower +Scott Lipps,P. Scott,Lipps,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,55,lower +Tom Patton,Thomas F.,Patton,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,17,lower +Scott Oelslager,Scott,Oelslager,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,48,lower +Bob Peterson,Bob,Peterson,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,91,lower +Bob Hackett,Robert D.,Hackett,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,10,upper +Jerry Cirino,Jerry C.,Cirino,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,18,upper +Adam Bird,Adam,Bird,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,63,lower +Scott Wiggam,Scott,Wiggam,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,77,lower +Andrew Brenner,Andrew O.,Brenner,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,19,upper +Thad Claggett,Thaddeus J.,Claggett,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,68,lower +Matt Dolan,Matthew J.,Dolan,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,24,upper +Sean Brennan,Sean Patrick,Brennan,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,14,lower +Kirk Schuring,Kirk,Schuring,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,29,upper +D.J. Swearingen,Douglas J.,Swearingen,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,89,lower +Bill Dean,Bill,Dean,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,71,lower +Steve Demetriou,Steve,Demetriou,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,35,lower +Jim Thomas,Jim,Thomas,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,49,lower +Bill Roemer,William,Roemer,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,31,lower +Brian Stewart,Brian,Stewart,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,12,lower +Steve Wilson,Steve,Wilson,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,7,upper +Rodney Creech,Rodney Lee,Creech,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,40,lower +Nathan Manning,Nathan H.,Manning,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,13,upper +Richard Brown,Richard D.,Brown,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,5,lower +Adam Holmes,Adam,Holmes,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,97,lower +Gary Click,Gary,Click,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,88,lower +Rick Dell'Aquila,Richard,Dell'Aquila,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,15,lower +Justin Pizzulli,Justin,Pizzulli,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,90,lower +Tex Fischer,Tex,Fischer,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,58,lower +Steve Huffman,Stephen A.,Huffman,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,5,upper +Riordan McClain,Riordan T.,McClain,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,87,lower +Ron Ferguson,Ron,Ferguson,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,96,lower +Rob McColley,Robert,McColley,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,1,upper +Derek Merrin,Derek Scott,Merrin,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,42,lower +Matt Huffman,Matthew C.,Huffman,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,12,upper +Tom Young,James,Young,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,37,lower +Reggie Stoltzfus,Reggie,Stoltzfus,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,50,lower +Dani Isaacsohn,Dani,Isaacsohn,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,24,lower +Brian Lampton,Brian E.,Lampton,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,70,lower +Mark Johnson,Mark,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:oh/government,92,lower +Adam Miller,Adam Clay,Miller,Male,Democratic,ocd-jurisdiction/country:us/state:oh/government,6,lower +Michele Grim,Michele,Grim,Female,Democratic,ocd-jurisdiction/country:us/state:oh/government,43,lower +Veronica Sims,Veronica R.,Sims,Female,Democratic,ocd-jurisdiction/country:us/state:oh/government,33,lower +Michele Reynolds,Michele,Reynolds,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,3,upper +Catherine Ingram,Catherine D.,Ingram,Female,Democratic,ocd-jurisdiction/country:us/state:oh/government,9,upper +Allison Russo,C. Allison,Russo,Female,Democratic,ocd-jurisdiction/country:us/state:oh/government,7,lower +Melanie Miller,Melanie Murphy,Miller,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,67,lower +Andrea White,Andrea Jacobs,White,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,36,lower +Rachel Baker,Rachel B.,Baker,Female,Democratic,ocd-jurisdiction/country:us/state:oh/government,27,lower +Jennifer Gross,Jennifer Sherwood,Gross,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,45,lower +Sandy O'Brien,Sandra,O'Brien,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,32,upper +Latyna Humphrey,Latyna M.,Humphrey,Female,Democratic,ocd-jurisdiction/country:us/state:oh/government,2,lower +Beth Lear,Beth,Lear,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,61,lower +Kristina Roegner,Kristina Daley,Roegner,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,27,upper +Susan Manchester,Susan Annette,Manchester,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,78,lower +Marilyn John,Marilyn Sue,John,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,76,lower +Angie King,Angela Noneman,King,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,84,lower +Cindy Abrams,Cindy,Abrams,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,29,lower +Sharon Ray,Sharon A.,Ray,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,66,lower +Theresa Gavarone,Theresa Charters,Gavarone,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,2,upper +Bride Sweeney,Bride Rose,Sweeney,Female,Democratic,ocd-jurisdiction/country:us/state:oh/government,16,lower +Jodi Whitted,Jodi,Whitted,Female,Democratic,ocd-jurisdiction/country:us/state:oh/government,28,lower +Munira Abdullahi,Munira Yasin,Abdullahi,Female,Democratic,ocd-jurisdiction/country:us/state:oh/government,9,lower +Beryl Piccolantonio,Beryl Brown,Piccolantonio,Female,Democratic,ocd-jurisdiction/country:us/state:oh/government,4,lower +Sarah Fowler Arthur,Sarah Elaine,Fowler Arthur,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,99,lower +Jena Powell,Jena,Powell,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,80,lower +Sara Carruthers,Sara P.,Carruthers,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,47,lower +Tracy Richardson,Tracy M.,Richardson,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,86,lower +Lauren McNally,Lauren,McNally,Female,Democratic,ocd-jurisdiction/country:us/state:oh/government,59,lower +Stephanie Kunze,Stephanie,Kunze,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,16,upper +Juanita Brent,Juanita O.,Brent,Female,Democratic,ocd-jurisdiction/country:us/state:oh/government,22,lower +Beth Liston,Beth Wagner,Liston,Female,Democratic,ocd-jurisdiction/country:us/state:oh/government,8,lower +Jean Schmidt,Jeannette Mary,Schmidt,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,62,lower +Monica Blasdel,Monica Robb,Blasdel,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,79,lower +Nickie Antonio,Nickie J.,Antonio,Female,Democratic,ocd-jurisdiction/country:us/state:oh/government,23,upper +Paula Hicks-Hudson,Paula S.,Hicks-Hudson,Female,Democratic,ocd-jurisdiction/country:us/state:oh/government,11,upper +Anita Somani,Anita,Somani,Female,Democratic,ocd-jurisdiction/country:us/state:oh/government,11,lower +Gail Pavliga,Gail,Pavliga,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,72,lower +Gayle Manning,Gayle Gerhart,Manning,Female,Republican,ocd-jurisdiction/country:us/state:oh/government,52,lower +Mauree Turner,Mauree Nivek Rajah Salima,Turner,Other,Democratic,ocd-jurisdiction/country:us/state:ok/government,88,lower +Micheal Bergstrom,Micheal Ray,Bergstrom,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,1,upper +Brad Boles,Brad,Boles,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,51,lower +Dean Davis,Dean,Davis,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,98,lower +Nick Archer,Nick,Archer,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,55,lower +Kevin Matthews,Kevin L.,Matthews,Male,Democratic,ocd-jurisdiction/country:us/state:ok/government,11,upper +John George,John,George,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,36,lower +Ty Burns,Ty,Burns,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,35,lower +David Smith,David,Smith,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,18,lower +Judd Strom,Judd,Strom,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,10,lower +Roland Pederson,Roland,Pederson,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,19,upper +Bill Coleman,Bill,Coleman,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,10,upper +Mark Lawson,Mark P.,Lawson,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,30,lower +Jay Steagall,Jay,Steagall,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,43,lower +Neil Hays,William Neil,Hays,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,13,lower +Arturo Alonso,Arturo,Alonso-Sandoval,Male,Democratic,ocd-jurisdiction/country:us/state:ok/government,89,lower +Steve Bashore,Stephen,Bashore,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,7,lower +John Waldron,John,Waldron,Male,Democratic,ocd-jurisdiction/country:us/state:ok/government,77,lower +Terry O'Donnell,Terry,O'Donnell,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,23,lower +Jason Lowe,Jason,Lowe,Male,Democratic,ocd-jurisdiction/country:us/state:ok/government,97,lower +Kevin Wallace,Kevin,Wallace,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,32,lower +Mark Tedford,Mark,Tedford,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,69,lower +Greg McCortney,Greg,McCortney,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,13,upper +John Kane,John B.,Kane,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,11,lower +Tom Gann,Tom,Gann,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,8,lower +Jeff Boatman,Jeff,Boatman,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,67,lower +Collin Duel,Collin,Duel,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,31,lower +Darcy Jech,Darcy Allen,Jech,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,26,upper +Paul Rosino,Paul,Rosino,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,45,upper +Jack Stewart,Jack,Stewart,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,18,upper +Dick Lowe,Dick,Lowe,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,56,lower +Tom Woods,Tom,Woods,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,4,upper +Preston Stinson,Preston,Stinson,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,96,lower +David Bullard,David,Bullard,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,6,upper +Todd Gollihare,Todd,Gollihare,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,12,upper +Kenton Patzkowsky,Kenton,Patzkowsky,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,61,lower +Rob Standridge,Rob,Standridge,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,15,upper +Danny Williams,Danny,Williams,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,28,lower +Chris Kidd,Chris,Kidd,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,31,upper +T.J. Marti,T.J.,Marti,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,75,lower +John Pfeiffer,John,Pfeiffer,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,38,lower +Casey Murdock,William Casey,Murdock,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,27,upper +Dell Kerbs,Dell,Kerbs,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,26,lower +Lonnie Sims,Lonnie,Sims,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,68,lower +Randy Randleman,Randy,Randleman,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,15,lower +Greg Treat,Gregory L.,Treat,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,47,upper +Lonnie Paxton,Lonnie,Paxton,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,23,upper +John Haste,John,Haste,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,36,upper +Chris Kannady,Christopher L.,Kannady,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,91,lower +Gerrid Kendrix,Gerrid,Kendrix,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,52,lower +Eddy Dempsey,James E.,Dempsey,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,1,lower +Jim Grego,Jim,Grego,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,17,lower +Erick Harris,Erick W.,Harris,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,39,lower +Mike Osburn,Michael T.,Osburn,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,81,lower +Charles McCall,Charles Adelbert,McCall,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,22,lower +Roger Thompson,Roger Lynn,Thompson,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,8,upper +Ken Luttrell,Ken G.,Luttrell,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,37,lower +David Hardin,David,Hardin,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,86,lower +Chris Banning,Chris Lee,Banning,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,24,lower +Mike Dobrinski,Mike,Dobrinski,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,59,lower +George Young,George E.,Young,Male,Democratic,ocd-jurisdiction/country:us/state:ok/government,48,upper +Josh West,Josh,West,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,5,lower +Dusty Deevers,Dusty,Deevers,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,32,upper +Jon Echols,Jon,Echols,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,90,lower +Daniel Pae,Daniel,Pae,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,62,lower +Brian Hill,Brian,Hill,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,47,lower +Rick West,Rick,West,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,3,lower +Joe Newhouse,Joseph W.,Newhouse,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,25,upper +Warren Hamilton,Warren,Hamilton,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,7,upper +Chris Sneed,Chris,Sneed,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,14,lower +Darrell Weaver,R. Darrell,Weaver,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,24,upper +Kevin West,Kevin,West,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,54,lower +Dana Prieto,Dana,Prieto,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,34,upper +Robert Manger,Robert,Manger,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,101,lower +Jared Deck,Jared Lesley,Deck,Male,Democratic,ocd-jurisdiction/country:us/state:ok/government,44,lower +Michael Brooks,Michael Andrew,Brooks-Jimenez,Male,Democratic,ocd-jurisdiction/country:us/state:ok/government,44,upper +Mark Vancuren,Mark,Vancuren,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,74,lower +Jacob Rosecrants,Jacob,Rosecrants,Male,Democratic,ocd-jurisdiction/country:us/state:ok/government,46,lower +Kyle Hilbert,Kyle,Hilbert,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,29,lower +Justin Humphrey,Justin,Humphrey,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,19,lower +Grant Green,Grant,Green,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,28,upper +Jerry Alvord,Jerry,Alvord,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,14,upper +Cowboy Stephens,Blake,Stephens,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,3,upper +Nathan Dahm,Nathan Ryan,Dahm,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,33,upper +Adam Pugh,Adam,Pugh,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,41,upper +John Talley,John,Talley,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,33,lower +Rusty Cornwell,Rusty,Cornwell,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,6,lower +Monroe Nichols,Monroe,Nichols,Male,Democratic,ocd-jurisdiction/country:us/state:ok/government,72,lower +Josh Cantrell,Josh,Cantrell,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,49,lower +Tom Dugger,Tom J.,Dugger,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,21,upper +Chuck Hall,Charles R.,Hall,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,20,upper +Max Wolfley,Max,Wolfley,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,95,lower +Clay Staires,Clay,Staires,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,66,lower +Stan May,Stan,May,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,80,lower +Scott Fetgatter,Scott,Fetgatter,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,16,lower +Carl Newton,Carl,Newton,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,58,lower +Jim Olsen,Jim,Olsen,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,2,lower +Cody Maynard,Cody,Maynard,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,21,lower +Mark Lepak,Mark,Lepak,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,9,lower +Mickey Dollens,Mickey,Dollens,Male,Democratic,ocd-jurisdiction/country:us/state:ok/government,93,lower +Trey Caldwell,Hurchel E.,Caldwell,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,63,lower +George Burns,George,Burns,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,5,upper +Forrest Bennett,Forrest Welch,Bennett,Male,Democratic,ocd-jurisdiction/country:us/state:ok/government,92,lower +Chad Caldwell,Chad,Caldwell,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,40,lower +Mark McBride,Mark,McBride,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,53,lower +Eric Roberts,Eric,Roberts,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,83,lower +Rande Worthen,Rande,Worthen,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,64,lower +Danny Sterling,Danny,Sterling,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,27,lower +Ross Ford,Ross,Ford,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,76,lower +Cody Rogers,Cody,Rogers,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,37,upper +Ronny Johns,Ronny,Johns,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,25,lower +Brent Howard,Brent,Howard,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,38,upper +Dave Rader,David,Rader,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,39,upper +Shane Jett,Shane David,Jett,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,17,upper +Kevin McDugle,Kevin W.,McDugle,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,12,lower +Andy Fugate,Andy,Fugate,Male,Democratic,ocd-jurisdiction/country:us/state:ok/government,94,lower +Marcus McEntire,Marcus,McEntire,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,50,lower +Bob Culver,Bob Ed,Culver,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,4,lower +Anthony Moore,Anthony Scott,Moore,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,57,lower +DeWayne Pemberton,DeWayne,Pemberton,Male,Republican,ocd-jurisdiction/country:us/state:ok/government,9,upper +Cindy Roe,Cynthia,Roe,Female,Republican,ocd-jurisdiction/country:us/state:ok/government,42,lower +Nicole Miller,Nicole,Miller,Female,Republican,ocd-jurisdiction/country:us/state:ok/government,82,lower +Cyndi Munson,Cyndi Ann,Munson,Female,Democratic,ocd-jurisdiction/country:us/state:ok/government,85,lower +Trish Ranson,Trish,Ranson,Female,Democratic,ocd-jurisdiction/country:us/state:ok/government,34,lower +Julie Daniels,Julie,Daniels,Female,Republican,ocd-jurisdiction/country:us/state:ok/government,29,upper +Meloyde Blancett,Meloyde,Blancett,Female,Democratic,ocd-jurisdiction/country:us/state:ok/government,78,lower +Ally Seifried,Alexandra,Seifried,Female,Republican,ocd-jurisdiction/country:us/state:ok/government,2,upper +Kristen Thompson,Kristen,Thompson,Female,Republican,ocd-jurisdiction/country:us/state:ok/government,22,upper +Julia Kirt,Julia,Kirt,Female,Democratic,ocd-jurisdiction/country:us/state:ok/government,30,upper +Melissa Provenzano,Melissa,Provenzano,Female,Democratic,ocd-jurisdiction/country:us/state:ok/government,79,lower +Sherrie Conley,Sherrie,Conley,Female,Republican,ocd-jurisdiction/country:us/state:ok/government,20,lower +Ellyn Hefner,Ellyn Novak,Hefner,Female,Democratic,ocd-jurisdiction/country:us/state:ok/government,87,lower +Rhonda Baker,Rhonda,Baker,Female,Republican,ocd-jurisdiction/country:us/state:ok/government,60,lower +Tammy West,Tammy,West,Female,Republican,ocd-jurisdiction/country:us/state:ok/government,84,lower +Jessica Garvin,Jessica,Garvin,Female,Republican,ocd-jurisdiction/country:us/state:ok/government,43,upper +Brenda Stanley,Brenda,Stanley,Female,Republican,ocd-jurisdiction/country:us/state:ok/government,42,upper +Suzanne Schreiber,Suzanne,Schreiber,Female,Democratic,ocd-jurisdiction/country:us/state:ok/government,70,lower +Annie Menz,Annie,Menz,Female,Democratic,ocd-jurisdiction/country:us/state:ok/government,45,lower +Mary Boren,Mary Brown,Boren,Female,Democratic,ocd-jurisdiction/country:us/state:ok/government,16,upper +Kay Floyd,P. Kay,Floyd,Female,Democratic,ocd-jurisdiction/country:us/state:ok/government,46,upper +Regina Goodwin,Regina T.,Goodwin,Female,Democratic,ocd-jurisdiction/country:us/state:ok/government,73,lower +Tammy Townley,Tammy Pevehouse,Townley,Female,Republican,ocd-jurisdiction/country:us/state:ok/government,48,lower +Ajay Pittman,Ayshia K.M.,Pittman,Female,Democratic,ocd-jurisdiction/country:us/state:ok/government,99,lower +Marilyn Stark,Marilyn,Stark,Female,Republican,ocd-jurisdiction/country:us/state:ok/government,100,lower +Jo Anna Dossett,Jo Anna,Dossett,Female,Democratic,ocd-jurisdiction/country:us/state:ok/government,35,upper +Amanda Swope,Amanda,Swope,Female,Democratic,ocd-jurisdiction/country:us/state:ok/government,71,lower +Carri Hicks,Carri,Hicks,Female,Democratic,ocd-jurisdiction/country:us/state:ok/government,40,upper +Denise Crosswhite Hader,Denise Lorene,Crosswhite Hader,Female,Republican,ocd-jurisdiction/country:us/state:ok/government,41,lower +Toni Hasenbeck,Toni,Hasenbeck,Female,Republican,ocd-jurisdiction/country:us/state:ok/government,65,lower +Dennis Linthicum,Dennis Bradley,Linthicum,Male,Republican,ocd-jurisdiction/country:us/state:or/government,28,upper +Mark Owens,Mark,Owens,Male,Republican,ocd-jurisdiction/country:us/state:or/government,60,lower +Greg Smith,Gregory Vincent,Smith,Male,Republican,ocd-jurisdiction/country:us/state:or/government,57,lower +Werner Reschke,Eric Werner,Reschke,Male,Republican,ocd-jurisdiction/country:us/state:or/government,55,lower +Dwayne Yunker,Dwayne,Yunker,Male,Republican,ocd-jurisdiction/country:us/state:or/government,3,lower +Zach Hudson,Zach,Hudson,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,49,lower +Brian Boquist,Brian James,Boquist,Male,Independent,ocd-jurisdiction/country:us/state:or/government,12,upper +Aaron Woods,Aaron,Woods,Male,Democratic/Working Families,ocd-jurisdiction/country:us/state:or/government,13,upper +Boomer Wright,Boomer,Wright,Male,Republican,ocd-jurisdiction/country:us/state:or/government,9,lower +Ben Bowman,Benjamin,Bowman,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,25,lower +John Lively,John D.,Lively,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,7,lower +Daniel Bonham,Daniel,Bonham,Male,Republican,ocd-jurisdiction/country:us/state:or/government,26,upper +Ken Helm,Ken,Helm,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,27,lower +Kayse Jama,Kayse,Jama,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,24,upper +Bill Hansell,William S.,Hansell,Male,Republican,ocd-jurisdiction/country:us/state:or/government,29,upper +David Smith,David Brock,Smith,Male,Republican,ocd-jurisdiction/country:us/state:or/government,1,upper +Hai Pham,Hai,Pham,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,36,lower +Charlie Conrad,Charlie,Conrad,Male,Republican,ocd-jurisdiction/country:us/state:or/government,12,lower +Mark Gamba,Mark,Gamba,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,41,lower +Cedric Hayden,Cedric Ross,Hayden,Male,Republican,ocd-jurisdiction/country:us/state:or/government,6,upper +Jeff Golden,Jeffrey Simon,Golden,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,3,upper +Brian Stout,Brian G.,Stout,Male,Republican,ocd-jurisdiction/country:us/state:or/government,31,lower +Tim Knopp,Tim,Knopp,Male,Republican,ocd-jurisdiction/country:us/state:or/government,27,upper +Nathan Sosa,Nathan,Sosa,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,30,lower +Tom Andersen,Tom,Andersen,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,19,lower +Ed Diehl,Edwin L.,Diehl,Male,Republican,ocd-jurisdiction/country:us/state:or/government,17,lower +Rob Wagner,Robert A.,Wagner,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,19,upper +Travis Nelson,Travis E.,Nelson,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,44,lower +James Hieb,James,Hieb,Male,Republican,ocd-jurisdiction/country:us/state:or/government,51,lower +Virgle Osborne,Virgle,Osborne,Male,Republican,ocd-jurisdiction/country:us/state:or/government,2,lower +Floyd Prozanski,Floyd,Prozanski,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,4,upper +Rick Lewis,Rick,Lewis,Male,Republican,ocd-jurisdiction/country:us/state:or/government,18,lower +Daniel Nguyen,Daniel,Nguyen,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,38,lower +Michael Dembrow,Michael E.,Dembrow,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,23,upper +Rob Nosse,Robert,Nosse,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,42,lower +Dan Rayfield,Daniel A.,Rayfield,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,16,lower +Fred Girod,Fred Frank,Girod,Male,Republican,ocd-jurisdiction/country:us/state:or/government,9,upper +Court Boice,Court Allen,Boice,Male,Republican,ocd-jurisdiction/country:us/state:or/government,1,lower +Chris Gorsek,Chris,Gorsek,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,25,upper +Jason Kropf,Jason,Kropf,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,54,lower +Kevin Mannix,Kevin Leese,Mannix,Male,Republican,ocd-jurisdiction/country:us/state:or/government,21,lower +Lew Frederick,Lew,Frederick,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,22,upper +Ricki Ruiz,Ricardo,Ruiz,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,50,lower +Jeff Helfrich,Jeffrey A.,Helfrich,Male,Republican,ocd-jurisdiction/country:us/state:or/government,52,lower +Dick Anderson,Richard,Anderson,Male,Republican,ocd-jurisdiction/country:us/state:or/government,5,upper +Art Robinson,Arthur Brouhard,Robinson,Male,Republican,ocd-jurisdiction/country:us/state:or/government,2,upper +Mark Meek,Mark W.,Meek,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,20,upper +Paul Evans,Paul,Evans,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,20,lower +James Manning,James I.,Manning,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,7,upper +Lynn Findley,Lynn P.,Findley,Male,Republican,ocd-jurisdiction/country:us/state:or/government,30,upper +Paul Holvey,Paul,Holvey,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,8,lower +Cyrus Javadi,Cyrus,Javadi,Male,Republican,ocd-jurisdiction/country:us/state:or/government,32,lower +David Gomberg,David,Gomberg,Male,Democratic,ocd-jurisdiction/country:us/state:or/government,10,lower +Kim Thatcher,Kim,Thatcher,Female,Republican,ocd-jurisdiction/country:us/state:or/government,11,upper +Dacia Grayber,Dacia,Grayber,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,28,lower +Kim Wallan,Kimberly King,Wallan,Female,Republican,ocd-jurisdiction/country:us/state:or/government,6,lower +Jules Walters,Jules,Walters,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,37,lower +Lisa Reynolds,Lisa,Reynolds,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,34,lower +Tawna Sanchez,Tawna D.,Sanchez,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,43,lower +Pam Marsh,Pam,Marsh,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,5,lower +Bobby Levy,Bobby,Levy,Female,Republican,ocd-jurisdiction/country:us/state:or/government,58,lower +Shelly Davis,Shelly Boshart,Davis,Female,Republican,ocd-jurisdiction/country:us/state:or/government,15,lower +Suzanne Weber,Suzanne,Weber,Female,Republican,ocd-jurisdiction/country:us/state:or/government,16,upper +Deb Patterson,Deb,Patterson,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,10,upper +Annessa Hartman,Annessa,Hartman,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,40,lower +Kate Lieber,Kate B.,Lieber,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,14,upper +Lucetta Elmer,Lucetta,Elmer,Female,Republican,ocd-jurisdiction/country:us/state:or/government,24,lower +Courtney Neron,Courtney,Neron,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,26,lower +Sara Gelser Blouin,Sara Acres,Gelser Blouin,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,8,upper +Julie Fahey,Julie,Fahey,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,14,lower +Emily McIntire,Emily,McIntire,Female,Republican,ocd-jurisdiction/country:us/state:or/government,56,lower +Andrea Valderrama,Andrea,Valderrama,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,47,lower +Kathleen Taylor,Kathleen,Taylor,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,21,upper +Wlnsvey Campos,Wlnsvey,Campos,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:or/government,18,upper +Tracy Cramer,Tracy,Cramer,Female,Republican,ocd-jurisdiction/country:us/state:or/government,22,lower +Maxine Dexter,Maxine Elizabeth,Dexter,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,33,lower +Farrah Chaichi,Farrah,Chaichi,Female,Democratic/Working Families,ocd-jurisdiction/country:us/state:or/government,35,lower +Elizabeth Steiner,Elizabeth,Steiner,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,17,upper +Khanh Pham,Khanh,Pham,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,46,lower +Thuy Tran,Thuy,Tran,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,45,lower +Nancy Nathanson,Nancy,Nathanson,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,13,lower +Anna Scharf,Anna,Scharf,Female,Republican,ocd-jurisdiction/country:us/state:or/government,23,lower +Janelle Bynum,Janelle,Bynum,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,39,lower +Em Levy,Emerson,Levy,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,53,lower +Hoa Nguyen,Hoa H.,Nguyen,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,48,lower +Janeen Sollman,Janeen A.,Sollman,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,15,upper +Susan McLain,Susan,McLain,Female,Democratic,ocd-jurisdiction/country:us/state:or/government,29,lower +Christine Goodwin,Christine,Goodwin,Female,Republican,ocd-jurisdiction/country:us/state:or/government,4,lower +Vikki Breese Iverson,Vikki,Breese Iverson,Female,Republican,ocd-jurisdiction/country:us/state:or/government,59,lower +Marty Causer,Martin T.,Causer,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,67,lower +Joe McAndrew,Joseph M.,McAndrew,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,32,lower +Torren Ecker,Torren C.,Ecker,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,193,lower +Bud Cook,Donald,Cook,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,50,lower +Greg Rothman,William Gregory,Rothman,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,34,upper +Pat Harkins,Patrick J.,Harkins,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,1,lower +Jay Costa,Jay,Costa,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,43,upper +Tim Bonner,Timothy R.,Bonner,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,17,lower +Mike Armanini,Michael,Armanini,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,75,lower +Jim Haddock,James L.,Haddock,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,118,lower +Napoleon Nelson,Napoleon Jason,Nelson,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,154,lower +Tim Briggs,Timothy P.,Briggs,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,149,lower +Anthony Bellmon,Anthony Andrew,Bellmon,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,203,lower +Mike Jones,Paul Michael,Jones,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,93,lower +Lee James,Robert Lee,James,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,64,lower +Izzy Smith-Wade-El,Ismail,Smith-Wade-El,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,49,lower +Jared Solomon,Jared Garth,Solomon,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,202,lower +Aaron Bernstine,Aaron Joseph,Bernstine,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,8,lower +Josh Kail,Joshua Daniel,Kail,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,15,lower +Kyle Donahue,Kyle T.,Donahue,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,113,lower +Chris Pielli,Christopher,Pielli,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,156,lower +Eddie Pashinski,Edwin Day,Pashinski,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,121,lower +Jeff Olsommer,Jeffrey H.,Olsommer,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,139,lower +Chris Rabb,Christopher M.,Rabb,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,200,lower +Scott Martin,Scott,Martin,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,13,upper +Jimmy Dillon,James,Dillon,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,5,upper +Ryan Bizzarro,Ryan A.,Bizzarro,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,3,lower +Dan Laughlin,Daniel,Laughlin,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,49,upper +Jim Marshall,James E.,Marshall,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,14,lower +Wayne Langerholc,Wayne,Langerholc,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,35,upper +Steve Samuelson,Steven,Samuelson,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,135,lower +Mike Regan,Michael,Regan,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,31,upper +David Maloney,David M.,Maloney,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,130,lower +Jamie Barton,James,Barton,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,124,lower +Devlin Robinson,Devlin J.,Robinson,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,37,upper +George Dunbar,George S.,Dunbar,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,56,lower +David Rowe,David Hummer,Rowe,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,85,lower +Rick Krajewski,Rick Chester,Krajewski,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,188,lower +Bob Freeman,Robert L.,Freeman,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,136,lower +Pat Gallagher,Patrick L.,Gallagher,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,173,lower +Ed Neilson,Edward James,Neilson,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,174,lower +Jack Rader,Jack B.,Rader,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,176,lower +Greg Scott,Gregory L.,Scott,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,54,lower +Ryan Aument,Ryan P.,Aument,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,36,upper +Rob Kauffman,Robert W.,Kauffman,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,89,lower +Tarik Khan,Tarik S.,Khan,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,194,lower +Mike Schlossberg,Michael H.,Schlossberg,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,132,lower +Gene Yaw,E. Eugene,Yaw,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,23,upper +Joe Hogan,Joseph F.,Hogan,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,142,lower +Vincent Hughes,Vincent J.,Hughes,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,7,upper +Eric Nelson,Eric R.,Nelson,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,57,lower +Mike Cabell,Michael,Cabell,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,117,lower +Greg Vitali,Gregory S.,Vitali,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,166,lower +John DiSanto,Giovanni M.,DiSanto,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,15,upper +Jason Ortitay,Jason A.,Ortitay,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,46,lower +Joe Emrick,Joseph T.,Emrick,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,137,lower +Perry Stambaugh,Perry A.,Stambaugh,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,86,lower +Carl Metzgar,Carl Walker,Metzgar,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,69,lower +Craig Staats,Craig T.,Staats,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,145,lower +Elder Vogel,Elder A.,Vogel,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,47,upper +Rob Matzie,Robert F.,Matzie,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,16,lower +Kerry Benninghoff,Kerry Albert,Benninghoff,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,171,lower +Marty Flynn,Martin Bradshaw,Flynn,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,22,upper +Danilo Burgos,Danilo,Burgos,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,197,lower +Frank Farry,Frank Anthony,Farry,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,6,upper +Doug Mastriano,Douglas Vincent,Mastriano,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,33,upper +Tim Kearney,Timothy P.,Kearney,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,26,upper +Eric Davanzo,Eric,Davanzo,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,58,lower +Mike Sturla,P. Michael,Sturla,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,96,lower +Jim Prokopiak,James G.,Prokopiak,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,140,lower +Keith Greiner,Keith J.,Greiner,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,43,lower +Thomas Kutz,Thomas Holden,Kutz,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,87,lower +Jamie Flick,Jamie L.,Flick,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,83,lower +Jim Brewster,James R.,Brewster,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,45,upper +Dave Argall,David G.,Argall,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,29,upper +Dallas Kephart,Dallas Paul,Kephart,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,73,lower +Jordan Harris,Jordan A.,Harris,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,186,lower +Jake Banta,Jacob Daniel,Banta,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,4,lower +Tim O'Neal,Timothy J.,O'Neal,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,48,lower +Cris Dush,Cris E.,Dush,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,25,upper +Robert Leadbeter,Robert,Leadbeter,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,109,lower +Jim Rigby,James Patrick,Rigby,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,71,lower +Lou Schmitt,Louis C.,Schmitt,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,79,lower +Kevin Boyle,Kevin J.,Boyle,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,172,lower +Aerion Abney,Aerion Andrew,Abney,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,19,lower +Malcolm Kenyatta,Malcolm,Kenyatta,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,181,lower +Ryan Mackenzie,Ryan Edward,Mackenzie,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,187,lower +Art Haywood,Arthur L.,Haywood,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,4,upper +Arvind Venkat,Arvind,Venkat,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,30,lower +Mark Rozzi,Mark Lucio,Rozzi,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,126,lower +Brandon Markosek,Brandon J.,Markosek,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,25,lower +Seth Grove,Seth Michael,Grove,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,196,lower +Ryan Warner,Ryan James,Warner,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,52,lower +Steve Santarsiero,Steven J.,Santarsiero,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,10,upper +Amen Brown,Amen R.,Brown,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,10,lower +Craig Williams,Wendell Craig,Williams,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,160,lower +Jim Gregory,James,Gregory,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,80,lower +Zach Mako,Zachary Allen,Mako,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,183,lower +Bryan Cutler,Bryan Dean,Cutler,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,100,lower +Sharif Street,Sharif,Street,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,3,upper +Doyle Heffley,Doyle M.,Heffley,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,122,lower +Frank Burns,Frank,Burns,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,72,lower +Matt Gergely,Matthew R.,Gergely,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,35,lower +Ben Sanchez,Benjamin V.,Sanchez,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,153,lower +Scott Hutchinson,Scott E.,Hutchinson,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,21,upper +Rob Mercuri,Robert W.,Mercuri,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,28,lower +Joe Hohenstein,Joseph Cornelius,Hohenstein,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,177,lower +Pat Stefano,Patrick J.,Stefano,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,32,upper +Matt Bradford,Matthew Douglas,Bradford,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,70,lower +Barry Jozwiak,Barry J.,Jozwiak,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,5,lower +Jim Struzzi,James B.,Struzzi,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,62,lower +Jason Dawkins,Jason,Dawkins,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,179,lower +Paul Takac,Paul R.,Takac,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,82,lower +Jonathan Fritz,Jonathan A.,Fritz,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,111,lower +Ben Waxman,Benjamin R.,Waxman,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,182,lower +Parke Wentling,Parke H.,Wentling,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,7,lower +Dave Zimmerman,David H.,Zimmerman,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,99,lower +Dan Miller,Daniel Laurenzano,Miller,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,42,lower +Nick Miller,Nicholas P.,Miller,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,14,upper +Pete Schweyer,Peter George,Schweyer,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,134,lower +Joe Pittman,Joseph A.,Pittman,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,41,upper +Paul Friel,Paul,Friel,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,26,lower +Joe Ciresi,Joseph,Ciresi,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,146,lower +Tim Brennan,Timothy Patrick,Brennan,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,29,lower +Kyle Mullins,Kyle J.,Mullins,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,112,lower +Jarrett Coleman,Jarrett Charles,Coleman,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,16,upper +Chris Gebhard,Christopher,Gebhard,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,48,upper +John Schlegel,John A.,Schlegel,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,101,lower +Brian Smith,Brian,Smith,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,66,lower +Dave Delloso,David M.,Delloso,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,162,lower +Steve Mentzer,Steven Curtis,Mentzer,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,97,lower +Brian Munroe,Brian,Munroe,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,144,lower +Clint Owlett,Clinton D.,Owlett,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,68,lower +Brad Roae,Bradley T.,Roae,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,6,lower +Scott Conklin,Harry Scott,Conklin,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,77,lower +Rich Irvin,Richard S.,Irvin,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,81,lower +Michael Stender,Michael A.K.,Stender,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,108,lower +Tony Williams,Anthony Hardy,Williams,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,8,upper +John Kane,John Ignatius,Kane,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,9,upper +Jesse Topper,Jesse Willis,Topper,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,78,lower +Steve Malagari,Steven R.,Malagari,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,53,lower +Bob Merski,Robert E.,Merski,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,2,lower +Joe D'Orsie,Joseph Frank,D'Orsie,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,47,lower +Dan Deasy,Daniel J.,Deasy,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,27,lower +Dane Watro,Dane Jeffery,Watro,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,116,lower +John Lawrence,John Adda,Lawrence,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,13,lower +Joe Webster,Joseph Gerald,Webster,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,150,lower +Wayne Fontana,Wayne D.,Fontana,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,42,upper +José Giral,Jose A.,Giral,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,180,lower +Alec Ryncavage,Alec Joseph,Ryncavage,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,119,lower +Dan Moul,Daniel P.,Moul,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,91,lower +Tom Mehaffie,Thomas L.,Mehaffie,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,106,lower +Russ Diamond,Russell H.,Diamond,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,102,lower +Joe Hamm,Joseph D.,Hamm,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,84,lower +Aaron Kaufer,Aaron D.,Kaufer,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,120,lower +Paul Schemel,Paul Thomas,Schemel,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,90,lower +Andrew Kuzma,Andrew Michael,Kuzma,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,39,lower +Justin Fleming,Justin C.,Fleming,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,105,lower +Brett Miller,Brett R.,Miller,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,41,lower +Joe Kerwin,Joseph P.,Kerwin,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,125,lower +Tom Jones,Thomas M.,Jones,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,98,lower +Josh Siegel,Joshua M.,Siegel,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,22,lower +Mark Gillen,Mark M.,Gillen,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,128,lower +Nick Pisciottano,Nickolas R.,Pisciottano,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,38,lower +Dave Madsen,David A.,Madsen,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,104,lower +Dan Williams,Dan K.,Williams,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,74,lower +Nikil Saval,Nikil,Saval,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,1,upper +Dan Frankel,Daniel B.,Frankel,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,23,lower +Perry Warren,Perry S.,Warren,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,31,lower +Tim Twardzik,Timothy,Twardzik,Male,Republican,ocd-jurisdiction/country:us/state:pa/government,123,lower +Manny Guzman,Manuel M.,Guzman,Male,Democratic,ocd-jurisdiction/country:us/state:pa/government,127,lower +Christina Sappey,Christina D.,Sappey,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,158,lower +Maria Collett,Maria Tzanakis,Collett,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,12,upper +Mindy Fee,Melinda S.,Fee,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,37,lower +Carolyn Comitta,Carolyn T.,Comitta,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,19,upper +Milou Mackenzie,Victoria Milou,Mackenzie,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,131,lower +Jessica Benham,Jessica L.,Benham,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,36,lower +Charity Krupa,Charity Grimm,Krupa,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,51,lower +Elizabeth Fiedler,Elizabeth,Fiedler,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,184,lower +Leanne Krueger,Leanne T.,Krueger,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,161,lower +Judy Schwank,Judith L.,Schwank,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,11,upper +Wendy Fink,Wendy,Fink,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,94,lower +Lindsay Powell,Lindsay,Powell,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,21,lower +Mary Isaacson,MaryLouise,Isaacson,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,175,lower +Shelby Labs,Shelby,Labs,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,143,lower +Jill Cooper,Jill Nixon,Cooper,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,55,lower +Mary Jo Daley,Mary Josephine,Daley,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,148,lower +Katie Muth,Katie J.,Muth,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,44,upper +Lisa Borowski,Lisa Cianciulli,Borowski,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,168,lower +Carol Kazeem,Carol,Kazeem,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,159,lower +Leslie Rossi,Leslie Baum,Rossi,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,59,lower +Donna Scheuren,Donna,Scheuren,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,147,lower +Mandy Steele,Mandy,Steele,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,33,lower +Tina Davis,Tina Marie,Davis,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,141,lower +Camera Bartolotta,Camera Chatham,Bartolotta,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,46,upper +Tracy Pennycuick,Tracy,Pennycuick,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,24,upper +Lindsey Williams,Lindsey Marie,Williams,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,38,upper +Abby Major,Abigail E.,Major,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,60,lower +Nancy Guenst,Nancy,Guenst,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,152,lower +Carol Hill-Evans,Carol,Hill-Evans,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,95,lower +Donna Oberlander,Donna R.,Oberlander,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,63,lower +Kim Ward,Kim Lee,Ward,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,39,upper +Ann Flood,Ann Rissmiller,Flood,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,138,lower +Lisa Boscola,Lisa M.,Boscola,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,18,upper +Lisa Baker,Elizabeth J.,Baker,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,20,upper +Rosemary Brown,Rosemary Maula,Brown,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,40,upper +Patty Kim,Patty H.,Kim,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,103,lower +Anita Kulik,Anita Astorino,Kulik,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,45,lower +Roni Green,Gwendolyn Veronica,Green,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,190,lower +Barb Gleim,Barbara,Gleim,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,199,lower +Natalie Mihalek,Natalie Nichole,Mihalek Stuck,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,40,lower +Stephanie Borowicz,Stephanie Paige,Borowicz,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,76,lower +Marla Brown,Marla A. Gallo,Brown,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,9,lower +Stephenie Scialabba,Stephenie Grace Anderson,Scialabba,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,12,lower +Emily Kinkead,Emily,Kinkead,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,20,lower +Judy Ward,Judith F.,Ward,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,30,upper +Marci Mustello,Marci,Mustello,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,11,lower +Tina Pickett,Tina L.,Pickett,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,110,lower +Kristin Phillips-Hill,Kristin Lee,Phillips-Hill,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,28,upper +La'Tasha Mayes,La'Tasha Denise,Mayes,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,24,lower +Tarah Probst,Tarah Dorothea,Probst,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,189,lower +Jeanne McNeill,Jeanne Mudri,McNeill,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,133,lower +Jenn O'Mara,Jennifer,O'Mara,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,165,lower +Michele Brooks,Michele,Brooks,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,50,upper +Martina White,Martina A.,White,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,170,lower +Danielle Otten,Danielle Friel,Otten,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,155,lower +Abigail Salisbury,Abigail,Salisbury,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,34,lower +Melissa Shusterman,Melissa L.,Shusterman,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,157,lower +Gina Curry,Gina Hackett,Curry,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,164,lower +Maureen Madden,Maureen E.,Madden,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,115,lower +Tina Tartaglione,Christine M.,Tartaglione,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,2,upper +Regina Young,Regina G.,Young,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,185,lower +Dawn Keefer,Dawn Wetzel,Keefer,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,92,lower +Kathy Rapp,Kathy L.,Rapp,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,65,lower +Johanny Cepeda-Freytiz,Johanny,Cepeda-Freytiz,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,129,lower +Kristin Marcell,Kristin Schrader,Marcell,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,178,lower +Bridget Malloy Kosierowski,Bridget,Malloy Kosierowski,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,114,lower +Kristine Howard,Kristine C.,Howard,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,167,lower +Heather Boyd,Heather L.,Boyd,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,163,lower +Joanne Stehr,Joanne C.,Stehr,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,107,lower +Valerie Gaydos,Valerie S.,Gaydos,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,44,lower +Sheryl Delozier,Sheryl M.,Delozier,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,88,lower +Morgan Cephas,Morgan B.,Cephas,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,192,lower +Liz Hanbidge,Laura Elizabeth Francis,Hanbidge,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,61,lower +Kate Klunk,Kate Anne,Klunk,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,169,lower +Lynda Culver,Lynda Joy Schlegel,Culver,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,27,upper +Missy Cerrato,Melissa,Cerrato,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,151,lower +K.C. Tomlinson,Kathleen Christine,Tomlinson,Female,Republican,ocd-jurisdiction/country:us/state:pa/government,18,lower +Joanna McClinton,Joanna E.,McClinton,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,191,lower +Amanda Cappelletti,Amanda M.,Cappelletti,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,17,upper +Darisha Parker,Darisha K.,Parker,Female,Democratic,ocd-jurisdiction/country:us/state:pa/government,198,lower +Sam Zurier,Samuel D.,Zurier,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,3,upper +Scott Slater,Scott A.,Slater,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,10,lower +Mark McKenney,Mark P.,McKenney,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,30,upper +Thomas Paolino,Thomas J.,Paolino,Male,Republican,ocd-jurisdiction/country:us/state:ri/government,17,upper +Jonathon Acosta,Jonathon,Acosta,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,16,upper +Walter Felag,Walter S.,Felag,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,10,upper +David Bennett,David A.,Bennett,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,20,lower +Brandon Voas,Brandon T.,Voas,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,57,lower +Stephen Casey,Stephen M.,Casey,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,50,lower +Doc Corvese,Arthur J.,Corvese,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,55,lower +Bob Phillips,Robert D.,Phillips,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,51,lower +Anthony DeLuca,Anthony Phillip,DeLuca,Male,Republican,ocd-jurisdiction/country:us/state:ri/government,29,upper +Frank Lombardi,Frank S.,Lombardi,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,26,upper +Josh Miller,Joshua,Miller,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,28,upper +Marvin Abney,Marvin L.,Abney,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,73,lower +Frank Ciccone,Frank A.,Ciccone,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,7,upper +Alex Marszalkowski,Alex,Marszalkowski,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,52,lower +Bill O'Brien,William W.,O'Brien,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,54,lower +Arthur Handy,Arthur,Handy,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,18,lower +Brian Kennedy,Brian Patrick,Kennedy,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,38,lower +Samuel Azzinaro,Samuel A.,Azzinaro,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,37,lower +Jose Batista,Jose F.,Batista,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,12,lower +Matthew Dawson,Matthew S.,Dawson,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,65,lower +Sam Bell,Samuel W.,Bell,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,5,upper +Chris Blazejewski,Christopher R.,Blazejewski,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,2,lower +Raymond Hull,Raymond A.,Hull,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,6,lower +Lou DiPalma,Louis P.,DiPalma,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,12,upper +Jay Edwards,John Gustav,Edwards,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,70,lower +Lou Raptakis,Leonidas P.,Raptakis,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,33,upper +Robert Craven,Robert E.,Craven,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,32,lower +David Tikoian,David P.,Tikoian,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,22,upper +Joseph Solomon,Joseph J.,Solomon,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,22,lower +Alex Finkelman,Alex S.,Finkelman,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,74,lower +Michael Chippendale,Michael W.,Chippendale,Male,Republican,ocd-jurisdiction/country:us/state:ri/government,40,lower +Anthony DeSimone,Anthony J.,DeSimone,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,5,lower +Brian Newberry,Brian C.,Newberry,Male,Republican,ocd-jurisdiction/country:us/state:ri/government,48,lower +Nathan Biah,Nathan,Biah,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,3,lower +Joseph McNamara,Joseph M.,McNamara,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,19,lower +Greg Costantino,Gregory J.,Costantino,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,44,lower +Matt LaMountain,Matthew Liam,LaMountain,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,31,upper +Roger Picard,Roger A.,Picard,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,20,upper +Edward Cardillo,Edward,Cardillo,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,42,lower +Joe Shekarchi,K. Joseph,Shekarchi,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,23,lower +John Lombardi,John Joseph,Lombardi,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,8,lower +George Nardone,George A.,Nardone,Male,Republican,ocd-jurisdiction/country:us/state:ri/government,28,lower +Dominick Ruggerio,Dominick J.,Ruggerio,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,4,upper +Tom Noret,Thomas,Noret,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,25,lower +David Place,David,Place,Male,Republican,ocd-jurisdiction/country:us/state:ri/government,47,lower +Ramon Perez,Ramon A.,Perez,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,13,lower +Gordon Rogers,Gordon E.,Rogers,Male,Republican,ocd-jurisdiction/country:us/state:ri/government,21,upper +Joshua Giraldo,Joshua J.,Giraldo,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,56,lower +John Burke,John,Burke,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,9,upper +Jason Knight,Jason P.,Knight,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,67,lower +Ryan Pearson,Ryan William,Pearson,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,19,upper +Evan Shanley,Evan P.,Shanley,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,24,lower +Bob Quattrocchi,Robert J.,Quattrocchi,Male,Republican,ocd-jurisdiction/country:us/state:ri/government,41,lower +David Morales,David,Morales,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,7,lower +Brian Rea,Brian J.,Rea,Male,Republican,ocd-jurisdiction/country:us/state:ri/government,53,lower +Jake Bissaillon,Jacob,Bissaillon,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,1,upper +Enrique Sanchez,Enrique George,Sanchez,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,9,lower +Brandon Potter,Brandon,Potter,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,16,lower +Bob Britto,Robert,Britto,Male,Democratic,ocd-jurisdiction/country:us/state:ri/government,18,upper +Jon Brien,Jon D.,Brien,Male,Independent,ocd-jurisdiction/country:us/state:ri/government,49,lower +June Speakman,June S.,Speakman,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,68,lower +Elaine Morgan,Elaine J.,Morgan,Female,Republican,ocd-jurisdiction/country:us/state:ri/government,34,upper +Charlene Lima,Charlene M.,Lima,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,14,lower +Val Lawson,Valarie J.,Lawson,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,14,upper +Patricia Morgan,Patricia L.,Morgan,Female,Republican,ocd-jurisdiction/country:us/state:ri/government,26,lower +Jennifer Boylan,Jennifer Smith,Boylan,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,66,lower +Cherie Cruz,Cherie L.,Cruz,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,58,lower +Karen Alzate,Karen,Alzate,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,60,lower +Lauren Carson,Lauren H.,Carson,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,75,lower +Leo Felix,Leonela,Felix,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,61,lower +Linda Ujifusa,Linda Lee,Ujifusa,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,11,upper +Katie Kazarian,Katherine S.,Kazarian,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,63,lower +Alana DiMario,Alana M.,DiMario,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,36,upper +Ana Quezada,Ana B.,Quezada,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,2,upper +Carol McEntee,Carol Hagan,McEntee,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,33,lower +Teresa Tanzi,Teresa Ann,Tanzi,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,34,lower +Jackie Baginski,Jacquelyn M.,Baginski,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,17,lower +Hanna Gallo,Hanna M.,Gallo,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,27,upper +Jessica de la Cruz,Jessica,de la Cruz,Female,Republican,ocd-jurisdiction/country:us/state:ri/government,23,upper +Bridget Valverde,Bridget Geraci,Valverde,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,35,upper +Victoria Gu,Victoria,Gu,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,38,upper +Deb Fellela,Deborah A.,Fellela,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,43,lower +Mia Ackerman,Mia A.,Ackerman,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,45,lower +Michelle McGaw,Michelle,McGaw,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,71,lower +Megan Cotter,Megan L.,Cotter,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,39,lower +Sherry Roberts,Sherry,Roberts,Female,Republican,ocd-jurisdiction/country:us/state:ri/government,29,lower +Mary Ann Shallcross-Smith,Mary Ann,Shallcross-Smith,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,46,lower +Susan Donovan,Susan R.,Donovan,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,69,lower +Tina Spears,Tina L.,Spears,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,36,lower +Jennifer Stewart,Jennifer A.,Stewart,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,59,lower +Pat Serpa,Patricia A.,Serpa,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,27,lower +Justine Caldwell,Justine A.,Caldwell,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,30,lower +Rebecca Kislak,Rebecca,Kislak,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,4,lower +Pam Lauria,Pamela J.,Lauria,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,32,upper +Meghan Kallman,Meghan Elizabeth,Kallman,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,15,upper +Terri Cortvriend,Terri-Denise,Cortvriend,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,72,lower +Grace Diaz,Grace,Diaz,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,11,lower +Dawn Euer,Dawn,Euer,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,13,upper +Melissa Murray,Melissa A.,Murray,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,24,upper +Brianna Henries,Brianna Escelia,Henries,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,64,lower +Tiara Mack,Tiara T.,Mack,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,6,upper +Sue Sosnowski,Virginia Susan,Sosnowski,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,37,upper +Barbara Ann Fenton-Fung,Barbara Ann,Fenton-Fung,Female,Republican,ocd-jurisdiction/country:us/state:ri/government,15,lower +Kathleen Fogarty,Kathleen A.,Fogarty,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,35,lower +Sandra Cano,Sandra C.,Cano,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,8,upper +Julie Casimiro,Julie A.,Casimiro,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,31,lower +Edith Ajello,Edith H.,Ajello,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,1,lower +Mary Messier,Mary Duffy,Messier,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,62,lower +Camille Vella-Wilkinson,Camille F.J.,Vella-Wilkinson,Female,Democratic,ocd-jurisdiction/country:us/state:ri/government,21,lower +Bill Hager,William,Hager,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,122,lower +Jason Elliott,Jason T.,Elliott,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,22,lower +Terry Alexander,Terry,Alexander,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,59,lower +Ben Connell,Joseph Benjamin,Connell,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,52,lower +Thomas McElveen,Joseph Thomas,McElveen,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,35,upper +Leon Stavrinakis,Leonidas E.,Stavrinakis,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,119,lower +Gary Brewer,Gary S.,Brewer,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,114,lower +Kevin Hardee,Kevin J.,Hardee,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,105,lower +Mike Fanning,Michael William,Fanning,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,17,upper +Richie Yow,Richard L.,Yow,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,53,lower +Patrick Haddon,Patrick B.,Haddon,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,19,lower +Leon Howard,Leon,Howard,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,76,lower +Tim McGinnis,Timothy A.,McGinnis,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,56,lower +Jermaine Johnson,Jermaine L.,Johnson,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,70,lower +David Weeks,J. David,Weeks,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,51,lower +Rob Harris,Robert J.,Harris,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,36,lower +Robby Robbins,Robert D.,Robbins,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,97,lower +Dennis Moss,Dennis Carroll,Moss,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,29,lower +Shane Massey,A. Shane,Massey,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,25,upper +Alan Morgan,Timothy Alan,Morgan,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,18,lower +John McCravy,John Robinson,McCravy,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,13,lower +Travis Moore,Travis A.,Moore,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,33,lower +Randy Ligon,Thomas Randolph,Ligon,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,43,lower +Gil Gatch,Gil A.,Gatch,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,94,lower +Wendell Gilliard,Wendell G.,Gilliard,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,111,lower +Wendell Jones,Wendell K.,Jones,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,25,lower +Micah Caskey,Micajah Pickett,Caskey,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,89,lower +Adam Morgan,Adam M.,Morgan,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,20,lower +Murrell Smith,George Murrell,Smith,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,67,lower +Danny Verdin,Daniel Byron,Verdin,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,9,upper +Bill Clyburn,William,Clyburn,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,82,lower +Bill Sandifer,William E.,Sandifer,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,2,lower +Tommy Pope,Thomas E.,Pope,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,47,lower +Vernon Stephens,Vernon,Stephens,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,39,upper +Jeff Bradley,Jeffrey A.,Bradley,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,123,lower +Davey Hiott,David Rudolph,Hiott,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,4,lower +Phillip Lowe,Phillip D.,Lowe,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,60,lower +Mike Burns,James Mikell,Burns,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,17,lower +Kevin Johnson,Kevin L.,Johnson,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,36,upper +Bill Herbkersman,William G.,Herbkersman,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,118,lower +David O'Neal,David L.,O'Neal,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,66,lower +Robert Williams,Robert Quintin,Williams,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,62,lower +Josiah Magnuson,Josiah,Magnuson,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,38,lower +Scott Talley,Scott,Talley,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,12,upper +Roger Kirby,Roger K.,Kirby,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,101,lower +Mark Willis,Mark N.,Willis,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,16,lower +Bill Hixon,William M.,Hixon,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,83,lower +Lucas Atkinson,Frank,Atkinson,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,57,lower +Chris Hart,Christopher R.,Hart,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,73,lower +Mike Reichenbach,Johnathan Michael,Reichenbach,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,31,upper +Doug Gilliam,Leon D.,Gilliam,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,42,lower +Billy Garrett,Billy,Garrett,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,10,upper +Thomas Beach,Thomas,Beach,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,10,lower +Harvey Peeler,Harvey S.,Peeler,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,14,upper +Bruce Bannister,Bruce Wyche,Bannister,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,24,lower +William Bailey,William H.,Bailey,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,104,lower +Chip Campsen,George E.,Campsen,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,43,upper +Mark Smith,Marvin M.,Smith,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,99,lower +Chris Wooten,Christopher Sloan,Wooten,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,69,lower +Jay West,John Taliaferro,West,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,7,lower +Jeff Johnson,Jeffrey E.,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,58,lower +Russell Ott,Russell L.,Ott,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,93,lower +Kent Williams,Kent M.,Williams,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,30,upper +Chris Murphy,Christopher J.,Murphy,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,98,lower +Cody Mitchell,Cody Tarlton,Mitchell,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,65,lower +Craig Gagnon,Craig A.,Gagnon,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,11,lower +Joe Bustos,Joseph M.,Bustos,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,112,lower +Jerry Carter,Jerry T.,Carter,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,3,lower +Bart Blackwell,Bart T.,Blackwell,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,81,lower +Michael Rivers,Michael F.,Rivers,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,121,lower +Bill Whitmire,William R.,Whitmire,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,1,lower +Darrell Jackson,Darrell,Jackson,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,21,upper +John King,John Richard Christopher,King,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,49,lower +Max Hyde,Max T.,Hyde,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,32,lower +Richard Cash,Richard J.,Cash,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,3,upper +Joe White,Joseph S.,White,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,40,lower +Todd Rutherford,James Todd,Rutherford,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,74,lower +Lee Hewitt,Lee,Hewitt,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,108,lower +Brandon Newton,Brandon Michael,Newton,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,45,lower +Tom Davis,Thomas C.,Davis,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,46,upper +Josh Kimbrell,Joshua Brett,Kimbrell,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,11,upper +Ivory Thigpen,Ivory Torrey,Thigpen,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,79,lower +Tom Young,Thomas R.,Young,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,24,upper +Mike Gambrell,Michael W.,Gambrell,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,4,upper +Brad Hutto,C. Bradley,Hutto,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,40,upper +Brandon Guffey,Brandon Earl,Guffey,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,48,lower +Val Guest,Thomas Duval,Guest,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,106,lower +Larry Grooms,Lawrence K.,Grooms,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,37,upper +Roger Nutt,Roger Allen,Nutt,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,34,lower +Gerald Malloy,Gerald,Malloy,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,29,upper +Heath Sessions,Christopher Heath,Sessions,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,46,lower +Cal Forrest,Cally Ralph,Forrest,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,39,lower +Nathan Ballentine,Nathan,Ballentine,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,71,lower +Bill Chumley,William M.,Chumley,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,35,lower +Dick Harpootlian,Richard A.,Harpootlian,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,20,upper +Tom Corbin,Thomas D.,Corbin,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,5,upper +Marvin Pendarvis,Marvin R.,Pendarvis,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,113,lower +Matt Leber,Matthew W.,Leber,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,116,lower +Don Chapman,Donald G.,Chapman,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,8,lower +Lonnie Hosey,Lonnie,Hosey,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,91,lower +Greg Hembree,Greg,Hembree,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,28,upper +Will Wheeler,William W.,Wheeler,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,50,lower +Weston Newton,William Weston Jones,Newton,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,120,lower +Michael Johnson,Michael,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,16,upper +Daniel Gibson,Daniel,Gibson,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,12,lower +Joseph Jefferson,Joseph H.,Jefferson,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,102,lower +Deon Tedder,Deon Terrell,Tedder,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,42,upper +Brandon Cox,Brandon L.,Cox,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,92,lower +Justin Bamberg,Justin T.,Bamberg,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,90,lower +Tom Hartnett,Thomas F.,Hartnett,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,110,lower +Brian Adams,Brian,Adams,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,44,upper +Kambrell Garvin,Kambrell Houston,Garvin,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,77,lower +Seth Rose,Seth C.,Rose,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,72,lower +Nikki Setzler,Nikki Giles,Setzler,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,26,upper +Neal Collins,Neal A.,Collins,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,5,lower +Jay Kilmartin,John Gregory,Kilmartin,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,85,lower +Ryan McCabe,Donald Ryan,McCabe,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,96,lower +Dwight Loftis,Dwight A.,Loftis,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,6,upper +Ross Turner,Clarence Ross,Turner,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,8,upper +J.A. Moore,J.A.,Moore,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,15,lower +Shane Martin,Shane R.,Martin,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,13,upper +Mike Neese,James M.,Neese,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,44,lower +Case Brittain,Thomas C.,Brittain,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,107,lower +Jay Jordan,Wallace H.,Jordan,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,63,lower +Carl Anderson,Carl L.,Anderson,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,103,lower +Ronnie Cromer,Ronnie W.,Cromer,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,18,upper +Wes Climer,David Wesley,Climer,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,15,upper +Bobby Cox,Bobby J.,Cox,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,21,lower +Rex Rice,Rex Fontaine,Rice,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,2,upper +Karl Allen,Karl B.,Allen,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,7,upper +Stewart Jones,Stewart O.,Jones,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,14,lower +Steven Long,Steven Wayne,Long,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,37,lower +Bill Taylor,Bill,Taylor,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,86,lower +Sean Bennett,Sean M.,Bennett,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,38,upper +Jackie Hayes,Jackie E.,Hayes,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,55,lower +Thomas Alexander,Thomas C.,Alexander,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,1,upper +David Vaughan,David M.,Vaughan,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,27,lower +Ronnie Sabb,Ronnie A.,Sabb,Male,Democratic,ocd-jurisdiction/country:us/state:sc/government,32,upper +R.J. May,Robert J.,May,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,88,lower +Stephen Goldfinch,Stephen L.,Goldfinch,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,34,upper +Jordan Pace,Jordan Scott,Pace,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,117,lower +Brian Lawson,Michael Brian,Lawson,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,30,lower +Luke Rankin,Luke A.,Rankin,Male,Republican,ocd-jurisdiction/country:us/state:sc/government,33,upper +Shannon Erickson,Shannon S.,Erickson,Female,Republican,ocd-jurisdiction/country:us/state:sc/government,124,lower +Heather Crawford,Heather Ammons,Crawford,Female,Republican,ocd-jurisdiction/country:us/state:sc/government,68,lower +Beth Bernstein,Beth E.,Bernstein,Female,Democratic,ocd-jurisdiction/country:us/state:sc/government,78,lower +Spencer Wetmore,Elizabeth,Wetmore,Female,Democratic,ocd-jurisdiction/country:us/state:sc/government,115,lower +Gilda Cobb-Hunter,Gilda,Cobb-Hunter,Female,Democratic,ocd-jurisdiction/country:us/state:sc/government,95,lower +Heather Bauer,Heather,Bauer,Female,Democratic,ocd-jurisdiction/country:us/state:sc/government,75,lower +Margie Bright Matthews,Margie,Bright Matthews,Female,Democratic,ocd-jurisdiction/country:us/state:sc/government,45,upper +Melissa Oremus,Melissa Lackey,Oremus,Female,Republican,ocd-jurisdiction/country:us/state:sc/government,84,lower +Katrina Shealy,Katrina Frye,Shealy,Female,Republican,ocd-jurisdiction/country:us/state:sc/government,23,upper +Chandra Dillard,Chandra E.,Dillard,Female,Democratic,ocd-jurisdiction/country:us/state:sc/government,23,lower +Anne Thayer,Anne J.,Thayer,Female,Republican,ocd-jurisdiction/country:us/state:sc/government,9,lower +April Cromer,April,Cromer,Female,Republican,ocd-jurisdiction/country:us/state:sc/government,6,lower +Paula Calhoon,Paula Rawl,Calhoon,Female,Republican,ocd-jurisdiction/country:us/state:sc/government,87,lower +Ashley Trantham,Ashley Burch,Trantham,Female,Republican,ocd-jurisdiction/country:us/state:sc/government,28,lower +Penry Gustafson,Penry,Gustafson,Female,Republican,ocd-jurisdiction/country:us/state:sc/government,27,upper +Tiffany Spann-Wilder,Tiffany R.,Spann-Wilder,Female,Democratic,ocd-jurisdiction/country:us/state:sc/government,109,lower +Carla Schuessler,Carla,Schuessler,Female,Republican,ocd-jurisdiction/country:us/state:sc/government,61,lower +Annie McDaniel,Annie E.,McDaniel,Female,Democratic,ocd-jurisdiction/country:us/state:sc/government,41,lower +Pat Henegan,Patricia Moore,Henegan,Female,Democratic,ocd-jurisdiction/country:us/state:sc/government,54,lower +Tameika Isaac Devine,Tameika,Isaac Devine,Female,Democratic,ocd-jurisdiction/country:us/state:sc/government,19,upper +Rosalyn Henderson Myers,Rosalyn Denise,Henderson Myers,Female,Democratic,ocd-jurisdiction/country:us/state:sc/government,31,lower +Sylleste Davis,Sylleste Helms,Davis,Female,Republican,ocd-jurisdiction/country:us/state:sc/government,100,lower +Fawn Pedalino,Fawn M.,Pedalino,Female,Republican,ocd-jurisdiction/country:us/state:sc/government,64,lower +Kathy Landing,Katherine DuBeau,Landing,Female,Republican,ocd-jurisdiction/country:us/state:sc/government,80,lower +Sandy Senn,Sandra J.,Senn,Female,Republican,ocd-jurisdiction/country:us/state:sc/government,41,upper +Mia McLeod,Mia S.,McLeod,Female,Independent,ocd-jurisdiction/country:us/state:sc/government,22,upper +Raye Felder,Regina Raye,Felder,Female,Republican,ocd-jurisdiction/country:us/state:sc/government,26,lower +David Johnson,David L.,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,33,upper +Shawn Bordeaux,Shawn L.,Bordeaux,Male,Democratic,ocd-jurisdiction/country:us/state:sd/government,26,upper +Rocky Blare,Rocky Dale,Blare,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,21,lower +Herman Otten,Herman,Otten,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,6,upper +Brian Mulder,Brian,Mulder,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,11,lower +Hugh Bartels,Hugh M.,Bartels,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,5,lower +Randy Gross,Randy,Gross,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,25,lower +William Shorma,William J.,Shorma,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,17,lower +Ben Krohmer,Ben,Krohmer,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,20,lower +Gary Cammack,Gary L.,Cammack,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,29,lower +Carl Perry,Carl E.,Perry,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,3,lower +Mike Diedrich,Michael G.,Diedrich,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,34,upper +Tyler Tordsen,Tyler Lee,Tordsen,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,14,lower +Casey Crabtree,Casey,Crabtree,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,8,upper +Jim Mehlhaff,Jim,Mehlhaff,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,24,upper +Aaron Aylward,Aaron,Aylward,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,6,lower +Oren Lesmeister,Oren L.,Lesmeister,Male,Democratic,ocd-jurisdiction/country:us/state:sd/government,28A,lower +Jack Kolbeck,Jack R.,Kolbeck,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,13,upper +Marty Overweg,Marty,Overweg,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,21,lower +Kirk Chaffee,Kirk,Chaffee,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,29,lower +J.D. Wangsness,James D.,Wangsness,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,23,lower +Roger DeGroot,Roger,DeGroot,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,7,lower +Mike Derby,Mike,Derby,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,34,lower +John Wiik,John J.,Wiik,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,4,upper +Kameron Nelson,Kameron,Nelson,Male,Democratic,ocd-jurisdiction/country:us/state:sd/government,10,lower +Mike Weisgram,Michael,Weisgram,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,24,lower +Phil Jensen,Phil,Jensen,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,33,lower +Michael Rohl,Michael H.,Rohl,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,1,upper +Larry Zikmund,Larry P.,Zikmund,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,14,upper +Fred Deutsch,Fred E.,Deutsch,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,4,lower +Tim Reisch,Timothy A.,Reisch,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,8,lower +Steve Kolbeck,Steve,Kolbeck,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,2,upper +Ryan Maher,Ryan M.,Maher,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,28,upper +Jon Hansen,Jonathon,Hansen,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,25,lower +Dean Wink,Dean Albert,Wink,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,29,upper +Kevin Jensen,Kevin D.,Jensen,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,16,lower +Dennis Krull,Dennis,Krull,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,30,lower +Curt Massie,Curt,Massie,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,33,lower +Al Novstrup,Al R.,Novstrup,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,3,upper +Greg Jamison,Greg,Jamison,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,12,lower +Jim Bolin,James W.,Bolin,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,16,upper +John Sjaarda,John,Sjaarda,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,2,lower +B.R. Hoffman,Brent,Hoffman,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,9,upper +Will Mortenson,Will D.,Mortenson,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,24,lower +Tony Randolph,Tony E.,Randolph,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,35,lower +Drew Peterson,Drew,Peterson,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,19,lower +Lynn Schneider,Lynn,Schneider,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,22,lower +Kyle Schoenfish,Kyle,Schoenfish,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,19,upper +Joe Donnell,Joe,Donnell,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,1,lower +Neal Pinnow,Neal,Pinnow,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,28B,lower +Steve Duffy,Steven,Duffy,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,32,lower +Randy Deibert,Randy,Deibert,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,31,upper +Arch Beal,Arch E.,Beal,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,12,upper +Scott Moore,Scott,Moore,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,23,lower +Roger Chase,Roger D.,Chase,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,22,lower +Tim Reed,Tim,Reed,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,7,upper +Chris Karr,Chris G.,Karr,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,11,lower +Scott Odenbach,Scott James,Odenbach,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,31,lower +Mike Walsh,Michael,Walsh,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,35,upper +Ken Teunissen,Kenneth,Teunissen,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,9,lower +Jim Stalzer,James Bruce,Stalzer,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,11,upper +Tony Venhuizen,Tony,Venhuizen,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,13,lower +John Mills,John,Mills,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,8,lower +David Wheeler,David,Wheeler,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,22,upper +Eric Emery,Eric E.,Emery,Male,Democratic,ocd-jurisdiction/country:us/state:sd/government,26A,lower +Reynold Nesiba,Reynold F.,Nesiba,Male,Democratic,ocd-jurisdiction/country:us/state:sd/government,15,upper +Bryan Breitling,Bryan J.,Breitling,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,23,upper +Ernie Otten,Ernest E.,Otten,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,6,lower +Lance Koth,Lance R.,Koth,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,20,lower +Chris Kassin,Chris,Kassin,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,17,lower +Lee Schoenbeck,Lee Anton,Schoenbeck,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,5,upper +Tom Pischke,Tom,Pischke,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,25,upper +David Kull,David,Kull,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,2,lower +Byron Callies,Byron I.,Callies,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,5,lower +Josh Klumb,Joshua M.,Klumb,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,20,upper +Mike Stevens,Mike,Stevens,Male,Republican,ocd-jurisdiction/country:us/state:sd/government,18,lower +Kadyn Wittman,Kadyn,Wittman,Female,Democratic,ocd-jurisdiction/country:us/state:sd/government,15,lower +Sue Peterson,Sue K.,Peterson,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,13,lower +Jean Hunhoff,Jean M.,Hunhoff,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,18,upper +Tina Mulally,Tina L.,Mulally,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,35,lower +Helene Duhamel,Helene Marie,Duhamel Duffy,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,32,upper +Becky Drury,Becky J.,Drury,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,34,lower +Amber Arlint,Amber Stern,Arlint,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,12,lower +Taylor Rehfeldt,Taylor Rae Longville,Rehfeldt,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,14,lower +Erin Tobin,Erin Ann,Tobin,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,21,upper +Kris Conzet,Kristin A.,Conzet,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,32,lower +Brandei Schaefbauer,Brandei,Schaefbauer,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,3,lower +Erin Healy,Erin,Healy,Female,Democratic,ocd-jurisdiction/country:us/state:sd/government,10,lower +Trish Ladner,Trish,Ladner,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,30,lower +Bethany Soye,Bethany Bostron,Soye,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,9,lower +Liz Larson,Elizabeth,Larson,Female,Democratic,ocd-jurisdiction/country:us/state:sd/government,10,upper +Rebecca Reimer,Rebecca,Reimer,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,26B,lower +Mary Fitzgerald,Mary,Fitzgerald,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,31,lower +Mellissa Heermann,Mellissa,Heermann,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,7,lower +Julie Frye-Mueller,Julie,Frye-Mueller,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,30,upper +Sydney Davis,Sydney,Davis,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,17,upper +Jessica Bahmuller,Jessica,Bahmuller,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,19,lower +Julie Auch,Julie K.,Auch,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,18,lower +Liz May,Elizabeth Marty,May,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,27,lower +Stephanie Sauder,Stephanie Lakness,Sauder,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,4,lower +Karla Lems,Karla J.,Lems,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,16,lower +Linda Duba,Linda K.,Duba,Female,Democratic,ocd-jurisdiction/country:us/state:sd/government,15,lower +Tamara St. John,Tamara,St. John,Female,Republican,ocd-jurisdiction/country:us/state:sd/government,1,lower +Red Dawn Foster,Red Dawn,Foster,Female,Democratic,ocd-jurisdiction/country:us/state:sd/government,27,upper +Peri Pourier,Peri,Pourier,Female,Democratic,ocd-jurisdiction/country:us/state:sd/government,27,lower +Tandy Darby,Tandy,Darby,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,76,lower +Ken Yager,Ken,Yager,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,12,upper +Richard Briggs,Richard,Briggs,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,7,upper +Page Walley,Page,Walley,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,26,upper +Jon Lundberg,Jon,Lundberg,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,4,upper +Jack Johnson,Jack,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,27,upper +Adam Lowe,J. Adam,Lowe,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,1,upper +Paul Rose,Paul,Rose,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,32,upper +Brock Martin,Brock,Martin,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,79,lower +Andrew Farmer,Andrew Ellis,Farmer,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,17,lower +Dave Wright,Dave,Wright,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,19,lower +Brent Taylor,Brent,Taylor,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,31,upper +Tom Leatherwood,Thomas F.,Leatherwood,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,99,lower +Bob Freeman,Bob,Freeman,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,56,lower +Todd Gardenhire,R. Todd,Gardenhire,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,10,upper +Ron Travis,Ron,Travis,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,31,lower +Harold Love,Harold M.,Love,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,58,lower +Todd Warner,Todd,Warner,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,92,lower +Kelly Keisling,Kelly T.,Keisling,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,38,lower +Chris Hurt,Christopher Tabor,Hurt,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,82,lower +Rick Eldridge,Rick,Eldridge,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,10,lower +Clark Boyd,Clark,Boyd,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,46,lower +John Gillespie,John,Gillespie,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,97,lower +Paul Bailey,Paul,Bailey,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,15,upper +Justin Lafferty,Justin Augustus,Lafferty,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,89,lower +Ed Jackson,Edward S.,Jackson,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,25,upper +Paul Sherrell,Paul,Sherrell,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,43,lower +Bo Watson,Foy W.,Watson,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,11,upper +Ryan Williams,Ryan,Williams,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,42,lower +Sam McKenzie,Sam,McKenzie,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,15,lower +Doc Kumar,Sabi,Kumar,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,66,lower +Kip Capley,Kip,Capley,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,71,lower +John Crawford,John,Crawford,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,1,lower +Ronnie Glynn,Ronnie,Glynn,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,67,lower +John Stevens,John,Stevens,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,24,upper +Dale Carr,Dale,Carr,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,12,lower +Lowell Russell,Lowell,Russell,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,21,lower +Cameron Sexton,Cameron A.,Sexton,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,25,lower +Antonio Parkinson,Antonio,Parkinson,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,98,lower +Dwayne Thompson,Dwayne,Thompson,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,96,lower +Jason Zachary,Jason,Zachary,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,14,lower +Bryan Terry,Bryan,Terry,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,48,lower +Rusty Crowe,Dewey Rusty Edward,Crowe,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,3,upper +Ron Gant,Ron M.,Gant,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,94,lower +Jake McCalmon,Jake,McCalmon,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,63,lower +Kevin Vaughan,Kevin,Vaughan,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,95,lower +Justin Jones,Justin Shea,Bautista-Jones,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,52,lower +Gino Bulso,Eugene N.,Bulso,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,61,lower +Jesse Chism,Jesse,Chism,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,85,lower +John Ragan,John,Ragan,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,33,lower +Gary Hicks,Gary W.,Hicks,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,9,lower +Michael Hale,Michael,Hale,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,40,lower +Mark Pody,Mark,Pody,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,17,upper +Ed Butler,Ed,Butler,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,41,lower +John Clemmons,John Ray,Clemmons,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,55,lower +Kirk Haston,Kirk,Haston,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,72,lower +Dan Howell,Dan,Howell,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,22,lower +Caleb Hemmer,Caleb,Hemmer,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,59,lower +Joe Towns,Joe,Towns,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,84,lower +Jeff Yarbro,Jeff,Yarbro,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,21,upper +Jerome Moon,Jerome,Moon,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,8,lower +Justin Pearson,Justin J.,Pearson,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,86,lower +David Hawk,David B.,Hawk,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,5,lower +Charlie Baum,Charlie L.,Baum,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,37,lower +Bo Mitchell,James R.,Mitchell,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,50,lower +Timothy Hill,Timothy Aaron,Hill,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,3,lower +Ferrell Haile,Ferrell,Haile,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,18,upper +Tim Hicks,Tim,Hicks,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,6,lower +Mark White,Hoyt,White,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,83,lower +Bud Hulsey,Charles,Hulsey,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,2,lower +Joey Hensley,Joey,Hensley,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,28,upper +Vincent Dixie,Vincent B.,Dixie,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,54,lower +Robert Stevens,Robert,Stevens,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,13,lower +Larry Miller,Larry J.,Miller,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,88,lower +Torrey Harris,Torrey,Harris,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,91,lower +William Slater,William,Slater,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,35,lower +Bryan Richey,Bryan,Richey,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,20,lower +Jeff Burkhart,Jeff,Burkhart,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,75,lower +Shane Reeves,Shane,Reeves,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,14,upper +Yusuf Hakeem,Yusuf,Hakeem,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,28,lower +Greg Martin,Greg,Martin,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,26,lower +Rush Bricken,Rush,Bricken,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,47,lower +Mark Cochran,Steven Mark,Cochran,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,23,lower +Jason Powell,Jason,Powell,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,53,lower +Pat Marsh,Pat,Marsh,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,62,lower +Kevin Raper,Kevin,Raper,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,24,lower +Rusty Grills,Rusty,Grills,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,77,lower +Steve Southerland,Steve,Southerland,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,9,upper +Monty Fritts,Monty,Fritts,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,32,lower +Jody Barrett,Jody,Barrett,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,69,lower +Johnny Garrett,Johnny,Garrett,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,45,lower +William Lamberth,William G.,Lamberth,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,44,lower +Johnny Shaw,Johnny,Shaw,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,80,lower +Jay Reedy,Jay Dean,Reedy,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,74,lower +Darren Jernigan,Darren,Jernigan,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,60,lower +Dennis Powers,Dennis,Powers,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,36,lower +Frank Niceley,Frank Samuel,Niceley,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,8,upper +Jeremy Faison,Jeremy,Faison,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,11,lower +Mike Sparks,Michael J.,Sparks,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,49,lower +Randy McNally,James Rand,McNally,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,5,upper +Curtis Johnson,Curtis G.,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,68,lower +Bill Powers,Bill,Powers,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,22,upper +Sam Whitson,Sam,Whitson,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,65,lower +Art Swann,Art,Swann,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,2,upper +Greg Vital,Greg A.,Vital,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,29,lower +Chris Todd,Chris,Todd,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,73,lower +John Holsclaw,John B.,Holsclaw,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,4,lower +Clay Doggett,Clay,Doggett,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,70,lower +G.A. Hardaway,Goffrey A.,Hardaway,Male,Democratic,ocd-jurisdiction/country:us/state:tn/government,93,lower +Tim Rudd,Tim,Rudd,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,34,lower +Kerry Roberts,Kerry,Roberts,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,23,upper +Scott Cepicky,Scott,Cepicky,Male,Republican,ocd-jurisdiction/country:us/state:tn/government,64,lower +Michele Carringer,Michele,Carringer,Female,Republican,ocd-jurisdiction/country:us/state:tn/government,16,lower +Susan Lynn,Susan M.,Lynn,Female,Republican,ocd-jurisdiction/country:us/state:tn/government,57,lower +Mary Littleton,Mary J.,Littleton,Female,Republican,ocd-jurisdiction/country:us/state:tn/government,78,lower +Karen Camper,Karen D.,Camper,Female,Democratic,ocd-jurisdiction/country:us/state:tn/government,87,lower +Charlane Oliver,Charlane J.,Oliver,Female,Democratic,ocd-jurisdiction/country:us/state:tn/government,19,upper +Janice Bowling,Janice,Bowling,Female,Republican,ocd-jurisdiction/country:us/state:tn/government,16,upper +Becky Jo Alexander,Rebecca Keefauver,Alexander,Female,Republican,ocd-jurisdiction/country:us/state:tn/government,7,lower +Gloria Johnson,Gloria S.,Johnson,Female,Democratic,ocd-jurisdiction/country:us/state:tn/government,90,lower +London Lamar,London,Lamar,Female,Democratic,ocd-jurisdiction/country:us/state:tn/government,33,upper +Becky Massey,Becky Duncan,Massey,Female,Republican,ocd-jurisdiction/country:us/state:tn/government,6,upper +Raumesh Akbari,Raumesh Aleza,Akbari,Female,Democratic,ocd-jurisdiction/country:us/state:tn/government,29,upper +Dawn White,Dawn Throneberry,White,Female,Republican,ocd-jurisdiction/country:us/state:tn/government,13,upper +Sara Kyle,Sara Peery,Kyle,Female,Democratic,ocd-jurisdiction/country:us/state:tn/government,30,upper +Elaine Davis,Elaine,Davis,Female,Republican,ocd-jurisdiction/country:us/state:tn/government,18,lower +Debra Moody,Debra,Moody,Female,Republican,ocd-jurisdiction/country:us/state:tn/government,81,lower +Aftyn Behn,Aftyn Alyssa,Behn,Female,Democratic,ocd-jurisdiction/country:us/state:tn/government,51,lower +Esther Helton-Haynes,Esther,Helton-Haynes,Female,Republican,ocd-jurisdiction/country:us/state:tn/government,30,lower +Heidi Campbell,Heidi,Campbell,Female,Democratic,ocd-jurisdiction/country:us/state:tn/government,20,upper +Iris Rudder,Iris,Rudder,Female,Republican,ocd-jurisdiction/country:us/state:tn/government,39,lower +Patsy Hazlewood,Patsy,Hazlewood,Female,Republican,ocd-jurisdiction/country:us/state:tn/government,27,lower +Borris Miles,Borris L.,Miles,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,13,upper +Brad Buckley,Bradley Leo,Buckley,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,54,lower +Tom Oliverson,Tom,Oliverson,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,130,lower +Cody Harris,Cody,Harris,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,8,lower +Bryan Hughes,Bryan,Hughes,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,1,upper +Royce West,Royce Barry,West,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,23,upper +Chris Turner,Christopher,Turner,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,101,lower +Morgan Meyer,Morgan Daniel,Meyer,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,108,lower +Steve Allison,Stephen Philip,Allison,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,121,lower +Cecil Bell,Cecil Ivan,Bell,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,3,lower +Dennis Paul,Dennis Robert,Paul,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,129,lower +Gary Gates,Gary Wilton,Gates,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,28,lower +Phil King,Phillip Stephen,King,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,10,upper +Brooks Landgraf,Brooks Frederick,Landgraf,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,81,lower +Sergio Muñoz,Sergio,Munoz,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,36,lower +Travis Clardy,Travis Paul,Clardy,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,11,lower +César Blanco,Cesar Jose,Blanco,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,29,upper +Mike Schofield,Michael Joseph,Schofield,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,132,lower +Ray Lopez,Reynaldo Trevino,Lopez,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,125,lower +Cody Vasut,Cody Thane,Vasut,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,25,lower +James Frank,James Boisfeuillet,Frank,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,69,lower +Brian Harrison,Brian Edward,Harrison,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,10,lower +Rafael Anchía,Rafael Michael,Anchia,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,103,lower +Gene Wu,Gene,Wu,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,137,lower +Jacey Jetton,Jacey Ray,Jetton,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,26,lower +Harold Dutton,Harold V.,Dutton,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,142,lower +Stan Kitzman,Stan,Kitzman,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,85,lower +Will Metcalf,Will T.,Metcalf,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,16,lower +Justin Holland,Justin Aldred,Holland,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,33,lower +Hubert Vo,Hubert,Vo,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,149,lower +Four Price,Walter Thomas,Price,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,87,lower +Mayes Middleton,David Mayes,Middleton,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,11,upper +Nate Schatzline,Nate,Schatzline,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,93,lower +John Kuempel,John Langston,Kuempel,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,44,lower +Brandon Creighton,Charles Brandon,Creighton,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,4,upper +David Spiller,David,Spiller,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,68,lower +Richard Raymond,Richard Pena,Raymond,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,42,lower +Roland Gutierrez,Roland,Gutierrez,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,19,upper +Sam Harless,Eric Sam,Harless,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,126,lower +Doc Anderson,Charles,Anderson,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,56,lower +Carl Tepper,Carl H.,Tepper,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,84,lower +Suleman Lalani,Suleman,Lalani,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,76,lower +Matt Shaheen,Matthew F.,Shaheen,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,66,lower +Jeff Leach,Jeffrey Curtis,Leach,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,67,lower +Glenn Rogers,Glenn,Rogers,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,60,lower +Ken King,Kenneth Paul,King,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,88,lower +Oscar Longoria,Oscar,Longoria,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,35,lower +Salman Bhojani,Salman,Bhojani,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,92,lower +John Raney,John Nathan,Raney,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,14,lower +David Cook,David,Cook,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,96,lower +Andy Murr,Andrew Stevenson,Murr,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,53,lower +James Talarico,James Dell,Talarico,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,50,lower +Charles Perry,Charles,Perry,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,28,upper +Stan Gerdes,Stan,Gerdes,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,17,lower +Venton Jones,Venton,Jones,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,100,lower +Terry Wilson,Terry M.,Wilson,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,20,lower +Bobby Guerra,Robert D.,Guerra,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,41,lower +Carl Sherman,Carl O.,Sherman,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,109,lower +Steve Toth,Steven Hixson,Toth,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,15,lower +Reggie Smith,Reginald B.,Smith,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,62,lower +Pete Flores,Peter P.,Flores,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,24,upper +Todd Hunter,Todd Ames,Hunter,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,32,lower +Jay Dean,James Wallace,Dean,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,7,lower +Tracy King,Tracy Ogden,King,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,80,lower +Ryan Guillen,Ryan Anthony,Guillen,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,31,lower +Armando Walle,Armando Lucio,Walle,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,140,lower +Trent Ashby,Trenton Edward,Ashby,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,9,lower +Brian Birdwell,Brian D.,Birdwell,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,22,upper +Tan Parker,Nathaniel Willis,Parker,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,12,upper +J.M. Lozano,Jose Manuel,Lozano,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,43,lower +Kevin Sparks,Kevin,Sparks,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,31,upper +Jarvis Johnson,Jarvis D.,Johnson,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,139,lower +Nathan Johnson,Nathan Matthew,Johnson,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,16,upper +John Bucy,John H.,Bucy,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,136,lower +Ben Bumgarner,Benjamin,Bumgarner,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,63,lower +Ron Reynolds,Ron,Reynolds,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,27,lower +Giovanni Capriglione,Giovanni S.,Capriglione,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,98,lower +Matt Schaefer,Matthew Ray,Schaefer,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,6,lower +Jon Rosenthal,Jon E.,Rosenthal,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,135,lower +Dade Phelan,Matthew McDade,Phelan,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,21,lower +Ramon Romero,Ramon,Romero,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,90,lower +Ernest Bailes,Ernest James,Bailes,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,18,lower +Mando Martinez,Armando,Martinez,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,39,lower +Gary VanDeaver,Gary Wayne,VanDeaver,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,1,lower +Bob Hall,Robert Lee,Hall,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,2,upper +Terry Canales,Terry,Canales,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,40,lower +Paul Bettencourt,Paul David,Bettencourt,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,7,upper +Eddie Morales,Heriberto,Morales,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,74,lower +Briscoe Cain,Briscoe,Cain,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,128,lower +Charles Cunningham,Charles,Cunningham,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,127,lower +Kelly Hancock,Kelly Gene,Hancock,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,9,upper +Tom Craddick,Thomas Russell,Craddick,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,82,lower +Keith Bell,Gregory Keith,Bell,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,4,lower +Mano DeAyala,Mano,DeAyala,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,133,lower +DeWayne Burns,DeWayne,Burns,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,58,lower +Ed Thompson,Edward Lynn,Thompson,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,29,lower +Christian Manuel,Christian,Manuel Hayes,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,22,lower +Stan Lambert,Standard Dwight,Lambert,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,71,lower +Trey Martinez Fischer,Trey,Martinez Fischer,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,116,lower +Jared Patterson,Jared L.,Patterson,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,106,lower +Diego Bernal,Diego M.,Bernal,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,123,lower +Craig Goldman,Craig Alan,Goldman,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,97,lower +John Lujan,John,Lujan,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,118,lower +Richard Hayes,Richard,Hayes,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,57,lower +Frederick Frazier,Frederick,Frazier,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,61,lower +John Bryant,John Wiley,Bryant,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,114,lower +Lynn Stucky,Lynn Dale,Stucky,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,64,lower +Tony Tinderholt,Tony Dale,Tinderholt,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,94,lower +Drew Springer,Drew Alan,Springer,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,30,upper +Greg Bonnen,James Gregory,Bonnen,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,24,lower +Kyle Kacal,Kyle Jerome,Kacal,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,12,lower +Abel Herrero,Abel,Herrero,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,34,lower +John Smithee,John True,Smithee,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,86,lower +Mark Dorazio,Mark,Dorazio,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,122,lower +Drew Darby,William Drew,Darby,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,72,lower +Chuy Hinojosa,Juan Jesus,Hinojosa,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,20,upper +Joe Moody,Joseph E.,Moody,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,78,lower +Dustin Burrows,Dustin Ray,Burrows,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,83,lower +Robert Nichols,Robert Lee,Nichols,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,3,upper +Philip Cortez,Philip A.,Cortez,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,117,lower +Charlie Geren,Charlie,Geren,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,99,lower +Hugh Shine,Hugh D.,Shine,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,55,lower +José Menéndez,Jose Antonio,Menendez,Male,Democratic,ocd-jurisdiction/country:us/state:tx/government,26,upper +Charles Schwertner,Charles J.,Schwertner,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,5,upper +Cole Hefner,Cole,Hefner,Male,Republican,ocd-jurisdiction/country:us/state:tx/government,5,lower +Sheryl Cole,Sheryl,Cole,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,46,lower +Toni Rose,Toni,Rose,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,110,lower +Lulu Flores,Maria Luisa,Flores,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,51,lower +Kronda Thimesch,Kronda,Thimesch,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,65,lower +Terry Meza,Thresa,Meza,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,105,lower +Shawn Thierry,Shawn Nicole,Thierry,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,146,lower +Sarah Eckhardt,Sarah,Eckhardt,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,14,upper +Mary Ann Perez,Mary Ann,Perez,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,144,lower +Carrie Isaac,Carrie Crain,Isaac,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,73,lower +Erin Zwiener,Erin Alisa,Zwiener,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,45,lower +Joan Huffman,Joan J.,Huffman,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,17,upper +Molly Cook,Molly,Cook,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,15,upper +Jessica González,Jessica Araceli,Gonzalez,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,104,lower +Caroline Harris Davila,Caroline E.,Harris Davila,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,52,lower +Ellen Troxclair,Ellen,Troxclair,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,19,lower +Candy Noble,Candy,Noble,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,89,lower +Lois Kolkhorst,Lois W.,Kolkhorst,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,18,upper +Jo Jones,Jolanda Felicia,Jones,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,147,lower +Morgan LaMantia,Morgan,LaMantia,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,27,upper +Mary González,Mary Edna,Gonzalez,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,75,lower +Donna Campbell,Donna Sue Burrows,Campbell,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,25,upper +Geanie Morrison,Geanie Williams,Morrison,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,30,lower +Terri Leo-Wilson,Teresa Susan,Leo-Wilson,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,23,lower +Shelby Slawson,Shelby,Slawson,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,59,lower +Ana-Maria Ramos,Ana-Maria,Ramos,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,102,lower +Penny Morales Shaw,Penny,Morales Shaw,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,148,lower +Angela Paxton,Angela Allen,Paxton,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,8,upper +Angie Button,Angie Chen,Button,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,112,lower +Barbara Gervin-Hawkins,Barbara,Gervin-Hawkins,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,120,lower +Lacey Hull,Lacey,Hull,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,138,lower +Victoria Neave Criado,Victoria,Neave Criado,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,107,lower +Carol Alvarado,Carol,Alvarado,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,6,upper +Lina Ortega,Evelina,Ortega,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,77,lower +Nicole Collier,Nicole Denise Johnson,Collier,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,95,lower +Rhetta Bowers,Rhetta Andrews,Bowers,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,113,lower +Janie Lopez,Janie,Lopez,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,37,lower +Ann Johnson,Annette Elizabeth,Johnson,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,134,lower +Valoree Swanson,Valoree Hanson,Swanson,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,150,lower +Christina Morales,Christina,Morales,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,145,lower +Claudia Ordaz,Claudia,Ordaz,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,79,lower +Jill Dutton,Jill Ashmore,Dutton,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,2,lower +Donna Howard,Donna,Howard,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,48,lower +Angelia Orr,Angelia D.,Orr,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,13,lower +Judith Zaffirini,Judith Pappas,Zaffirini,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,21,upper +Vikki Goodwin,Vikki,Goodwin,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,47,lower +Gina Hinojosa,Regina Inez,Hinojosa,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,49,lower +Josey Garcia,Josey,Garcia,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,124,lower +Ana Hernandez,Ana E.,Hernandez,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,143,lower +Senfronia Thompson,Senfronia Calpernia,Thompson,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,141,lower +Alma Allen,Alma Toliver,Allen,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,131,lower +Stephanie Klick,Stephanie D.,Klick,Female,Republican,ocd-jurisdiction/country:us/state:tx/government,91,lower +Erin Gámez,Erin Elizabeth,Gamez,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,38,lower +Yvonne Davis,Yvonne,Davis,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,111,lower +Liz Campos,Elizabeth,Campos,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,119,lower +Mihaela Plesa,Mihaela E.,Plesa,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,70,lower +Julie Johnson,Julie,Johnson,Female,Democratic,ocd-jurisdiction/country:us/state:tx/government,115,lower +Steve Lund,Steve,Lund,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,66,lower +Brett Garner,Brett,Garner,Male,Democratic,ocd-jurisdiction/country:us/state:ut/government,31,lower +Neil Walter,Neil,Walter,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,74,lower +Colin Jack,Colin,Jack,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,73,lower +Chris Wilson,Chris,Wilson,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,2,upper +Curt Bramble,Curt,Bramble,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,24,upper +Dan McCay,Dan,McCay,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,18,upper +Paul Cutler,Paul,Cutler,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,18,lower +Ron Winterton,Ron,Winterton,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,20,upper +Mike Petersen,Mike,Petersen,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,2,lower +Casey Snider,Casey,Snider,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,5,lower +Andrew Stoddard,Andrew,Stoddard,Male,Democratic,ocd-jurisdiction/country:us/state:ut/government,40,lower +Val Peterson,Val,Peterson,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,56,lower +Scott Sandall,Scott,Sandall,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,1,upper +Keith Grover,Keith,Grover,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,23,upper +Anthony Loubet,Anthony,Loubet,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,27,lower +Tyler Clancy,Tyler,Clancy,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,60,lower +Joel Briscoe,Joel,Briscoe,Male,Democratic,ocd-jurisdiction/country:us/state:ut/government,24,lower +Nate Blouin,Nate,Blouin,Male,Democratic,ocd-jurisdiction/country:us/state:ut/government,13,upper +Mike Schultz,Mike,Schultz,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,12,lower +Keven Stratton,Keven,Stratton,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,58,lower +Mike Kennedy,Mike,Kennedy,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,21,upper +Raymond Ward,Raymond,Ward,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,19,lower +Gregg Buxton,Gregg,Buxton,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,4,upper +Lincoln Fillmore,Lincoln,Fillmore,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,17,upper +Don Ipson,Don,Ipson,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,29,upper +Evan Vickers,Evan,Vickers,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,28,upper +David Hinkins,David,Hinkins,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,26,upper +Cory Maloy,Cory,Maloy,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,52,lower +Jordan Teuscher,Jordan,Teuscher,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,44,lower +Jon Hawkins,Jon,Hawkins,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,55,lower +Dan Johnson,Dan,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,3,lower +Jason Kyle,Jason,Kyle,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,8,lower +Doug Owens,Doug,Owens,Male,Democratic,ocd-jurisdiction/country:us/state:ut/government,33,lower +Bridger Bolinder,Bridger,Bolinder,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,29,lower +Scott Chew,Scott,Chew,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,68,lower +Brian King,Brian,King,Male,Democratic,ocd-jurisdiction/country:us/state:ut/government,23,lower +Mike McKell,Mike,McKell,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,25,upper +Stephen Whyte,Stephen,Whyte,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,63,lower +Mark Strong,Mark,Strong,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,47,lower +Kirk Cullimore,Kirk,Cullimore,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,19,upper +Calvin Musselman,Calvin,Musselman,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,9,lower +Jerry Stevenson,Jerry,Stevenson,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,6,upper +Jeff Burton,Jeff,Burton,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,64,lower +Matt MacPherson,Matt,MacPherson,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,26,lower +Derrin Owens,Derrin,Owens,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,27,upper +Robert Spendlove,Robert,Spendlove,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,42,lower +Tom Peterson,Tom,Peterson,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,1,lower +Ken Ivory,Ken,Ivory,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,39,lower +Steve Eliason,Steve,Eliason,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,43,lower +John Johnson,John,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,3,upper +Jefferson Moss,Jefferson,Moss,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,51,lower +Phil Lyman,Phil,Lyman,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,69,lower +Stewart Barlow,Stewart,Barlow,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,17,lower +Carl Albrecht,Carl,Albrecht,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,70,lower +Rex Shipp,Rex,Shipp,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,71,lower +Brady Brammer,Brady,Brammer,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,54,lower +Tim Jimenez,Tim,Jimenez,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,28,lower +Matt Gwynn,Matt,Gwynn,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,6,lower +Doug Welton,Doug,Welton,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,65,lower +Stuart Adams,Stuart,Adams,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,7,upper +Ryan Wilcox,Ryan,Wilcox,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,7,lower +Joseph Elison,Joseph,Elison,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,72,lower +Kay Christofferson,Kay,Christofferson,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,53,lower +Jim Dunnigan,Jim,Dunnigan,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,36,lower +Nelson Abbott,Nelson,Abbott,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,57,lower +Jay Cobb,Jay,Cobb,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,48,lower +Mark Wheatley,Mark,Wheatley,Male,Democratic,ocd-jurisdiction/country:us/state:ut/government,35,lower +Todd Weiler,Todd,Weiler,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,8,upper +Norm Thurston,Norm,Thurston,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,62,lower +Trevor Lee,Trevor,Lee,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,16,lower +Jeff Stenquist,Jeff,Stenquist,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,46,lower +Mike Kohler,Mike,Kohler,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,59,lower +Walt Brooks,Walt,Brooks,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,75,lower +Daniel Thatcher,Daniel,Thatcher,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,11,upper +Wayne Harper,Wayne,Harper,Male,Republican,ocd-jurisdiction/country:us/state:ut/government,16,upper +Stephanie Pitcher,Stephanie,Pitcher,Female,Democratic,ocd-jurisdiction/country:us/state:ut/government,14,upper +Ashlee Matthews,Ashlee,Matthews,Female,Democratic,ocd-jurisdiction/country:us/state:ut/government,37,lower +Karianne Lisonbee,Karianne,Lisonbee,Female,Republican,ocd-jurisdiction/country:us/state:ut/government,14,lower +Ann Millner,Ann,Millner,Female,Republican,ocd-jurisdiction/country:us/state:ut/government,5,upper +Luz Escamilla,Luz,Escamilla,Female,Democratic,ocd-jurisdiction/country:us/state:ut/government,10,upper +Rosemary Lesser,Rosemary,Lesser,Female,Democratic,ocd-jurisdiction/country:us/state:ut/government,10,lower +Cheryl Acton,Cheryl,Acton,Female,Republican,ocd-jurisdiction/country:us/state:ut/government,38,lower +Ariel Defay,Ariel,Defay,Female,Republican,ocd-jurisdiction/country:us/state:ut/government,15,lower +Candice Pierucci,Candice,Pierucci,Female,Republican,ocd-jurisdiction/country:us/state:ut/government,49,lower +Heidi Balderree,Heidi,Balderree,Female,Republican,ocd-jurisdiction/country:us/state:ut/government,22,upper +Jen Plumb,Jen,Plumb,Female,Democratic,ocd-jurisdiction/country:us/state:ut/government,9,upper +Karen Kwan,Karen,Kwan,Female,Democratic,ocd-jurisdiction/country:us/state:ut/government,12,upper +Gay Lynn Bennion,Gay Lynn,Bennion,Female,Democratic,ocd-jurisdiction/country:us/state:ut/government,41,lower +Sahara Hayes,Sahara,Hayes,Female,Democratic,ocd-jurisdiction/country:us/state:ut/government,32,lower +Kera Birkeland,Kera,Birkeland,Female,Republican,ocd-jurisdiction/country:us/state:ut/government,4,lower +Marsha Judkins,Marsha,Judkins,Female,Republican,ocd-jurisdiction/country:us/state:ut/government,61,lower +Kathleen Riebe,Kathleen,Riebe,Female,Democratic,ocd-jurisdiction/country:us/state:ut/government,15,upper +Christine Watkins,Christine,Watkins,Female,Republican,ocd-jurisdiction/country:us/state:ut/government,67,lower +Stephanie Gricius,Stephanie,Gricius,Female,Republican,ocd-jurisdiction/country:us/state:ut/government,50,lower +Judy Weeks Rohner,Judy,Weeks Rohner,Female,Republican,ocd-jurisdiction/country:us/state:ut/government,30,lower +Susan Pulsipher,Susan,Pulsipher,Female,Republican,ocd-jurisdiction/country:us/state:ut/government,45,lower +Carol Moss,Carol,Moss,Female,Democratic,ocd-jurisdiction/country:us/state:ut/government,34,lower +Karen Peterson,Karen,Peterson,Female,Republican,ocd-jurisdiction/country:us/state:ut/government,13,lower +Jen Dailey-Provost,Jen,Dailey-Provost,Female,Democratic,ocd-jurisdiction/country:us/state:ut/government,22,lower +Angela Romero,Angela,Romero,Female,Democratic,ocd-jurisdiction/country:us/state:ut/government,25,lower +Sandra Hollins,Sandra,Hollins,Female,Democratic,ocd-jurisdiction/country:us/state:ut/government,21,lower +Melissa Ballard,Melissa,Ballard,Female,Republican,ocd-jurisdiction/country:us/state:ut/government,20,lower +Katy Hall,Katy,Hall,Female,Republican,ocd-jurisdiction/country:us/state:ut/government,11,lower +Ian Lovejoy,Ian Travis,Lovejoy,Male,Republican,ocd-jurisdiction/country:us/state:va/government,22,lower +Saddam Salim,Saddam Azlan,Salim,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,37,upper +Scott Surovell,Scott Anthony,Surovell,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,34,upper +Lee Ware,Robert Lee,Ware,Male,Republican,ocd-jurisdiction/country:us/state:va/government,72,lower +Mark Obenshain,Mark Dudley,Obenshain,Male,Republican,ocd-jurisdiction/country:us/state:va/government,2,upper +Danny Diggs,Joseph Daniel,Diggs,Male,Republican,ocd-jurisdiction/country:us/state:va/government,24,upper +Suhas Subramanyam,Suhas,Subramanyam,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,32,upper +Mark Peake,Mark Joseph,Peake,Male,Republican,ocd-jurisdiction/country:us/state:va/government,8,upper +Mike Cherry,Michael A.,Cherry,Male,Republican,ocd-jurisdiction/country:us/state:va/government,74,lower +Tim Griffin,Timothy Paul,Griffin,Male,Republican,ocd-jurisdiction/country:us/state:va/government,53,lower +J.R. Henson,Rozia Armstrong,Henson,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,19,lower +Eric Zehr,Eric Robert,Zehr,Male,Republican,ocd-jurisdiction/country:us/state:va/government,51,lower +Wren Williams,Wren Montgomery,Williams,Male,Republican,ocd-jurisdiction/country:us/state:va/government,47,lower +Israel O'Quinn,Israel D.,O'Quinn,Male,Republican,ocd-jurisdiction/country:us/state:va/government,44,lower +Barry Knight,Barry D.,Knight,Male,Republican,ocd-jurisdiction/country:us/state:va/government,98,lower +Schuyler VanValkenburg,Schuyler Thomas,VanValkenburg,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,16,upper +Travis Hackworth,Thurmon Travis,Hackworth,Male,Republican,ocd-jurisdiction/country:us/state:va/government,5,upper +Nadarius Clark,Nadarius E.,Clark,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,84,lower +Sam Rasoul,Salam,Rasoul,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,38,lower +Geary Higgins,Geary Michael,Higgins,Male,Republican,ocd-jurisdiction/country:us/state:va/government,30,lower +Ryan McDougle,Ryan Todd,McDougle,Male,Republican,ocd-jurisdiction/country:us/state:va/government,26,upper +Rod Willett,Rodney T.,Willett,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,58,lower +Paul Krizek,Paul Eugene,Krizek,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,16,lower +Alex Askew,Alex Q.,Askew,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,95,lower +Jed Arnold,Jonathan E.P.,Arnold,Male,Republican,ocd-jurisdiction/country:us/state:va/government,46,lower +Rob Bloxom,Robert Spurgeon,Bloxom,Male,Republican,ocd-jurisdiction/country:us/state:va/government,100,lower +Aaron Rouse,Aaron Roosevelt,Rouse,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,22,upper +Wendell Walker,Wendell Scott,Walker,Male,Republican,ocd-jurisdiction/country:us/state:va/government,52,lower +Jason Ballard,Jason S.,Ballard,Male,Republican,ocd-jurisdiction/country:us/state:va/government,42,lower +Jeremy McPike,Jeremy Scott,McPike,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,29,upper +Tom Garrett,Thomas Alexander,Garrett,Male,Republican,ocd-jurisdiction/country:us/state:va/government,56,lower +Chris Runion,Christopher Scott,Runion,Male,Republican,ocd-jurisdiction/country:us/state:va/government,35,lower +John McGuire,John Joseph,McGuire,Male,Republican,ocd-jurisdiction/country:us/state:va/government,10,upper +Josh Cole,Joshua Gregory,Cole,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,65,lower +Kannan Srinivasan,Kannan,Srinivasan,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,26,lower +Creigh Deeds,Robert Creigh,Deeds,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,11,upper +Bobby Orrock,Robert Dickson,Orrock,Male,Republican,ocd-jurisdiction/country:us/state:va/government,66,lower +Chris Head,Christopher T.,Head,Male,Republican,ocd-jurisdiction/country:us/state:va/government,3,upper +Todd Pillion,Todd Edward,Pillion,Male,Republican,ocd-jurisdiction/country:us/state:va/government,6,upper +Phil Scott,Phillip A.,Scott,Male,Republican,ocd-jurisdiction/country:us/state:va/government,63,lower +Glen Sturtevant,Glen Howard,Sturtevant,Male,Republican,ocd-jurisdiction/country:us/state:va/government,12,upper +A.C. Cordoza,Aijalon,Cordoza,Male,Republican,ocd-jurisdiction/country:us/state:va/government,86,lower +Cliff Hayes,Clifton Eugene,Hayes,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,91,lower +Marty Martinez,Fernando J.,Martinez,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,29,lower +Bryce Reeves,Bryce E.,Reeves,Male,Republican,ocd-jurisdiction/country:us/state:va/government,28,upper +David Owen,David,Owen,Male,Republican,ocd-jurisdiction/country:us/state:va/government,57,lower +David Suetterlein,David Robert,Suetterlein,Male,Republican,ocd-jurisdiction/country:us/state:va/government,4,upper +Will Davis,William P.,Davis,Male,Republican,ocd-jurisdiction/country:us/state:va/government,39,lower +Chris Obenshain,Joseph Christian,Obenshain,Male,Republican,ocd-jurisdiction/country:us/state:va/government,41,lower +Michael Feggans,Michael Benjamin,Feggans,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,97,lower +Eric Phillips,Eric,Phillips,Male,Republican,ocd-jurisdiction/country:us/state:va/government,48,lower +Patrick Hope,Patrick Alan,Hope,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,1,lower +Joe McNamara,Joseph P.,McNamara,Male,Republican,ocd-jurisdiction/country:us/state:va/government,40,lower +Josh Thomas,Joshua,Thomas,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,21,lower +David Reid,David Alan,Reid,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,28,lower +Jay Leftwich,James Asbury,Leftwich,Male,Republican,ocd-jurisdiction/country:us/state:va/government,90,lower +Todd Gilbert,Christopher Todd,Gilbert,Male,Republican,ocd-jurisdiction/country:us/state:va/government,33,lower +Scott Wyatt,Scott Andrew,Wyatt,Male,Republican,ocd-jurisdiction/country:us/state:va/government,60,lower +Danny Marshall,Daniel Webster,Marshall,Male,Republican,ocd-jurisdiction/country:us/state:va/government,49,lower +Keith Hodges,Myron Keith,Hodges,Male,Republican,ocd-jurisdiction/country:us/state:va/government,68,lower +Tony Wilt,Tony O.,Wilt,Male,Republican,ocd-jurisdiction/country:us/state:va/government,34,lower +Tommy Wright,Thomas C.,Wright,Male,Republican,ocd-jurisdiction/country:us/state:va/government,50,lower +Richard Stuart,Richard Henry,Stuart,Male,Republican,ocd-jurisdiction/country:us/state:va/government,25,upper +Bill DeSteph,William Robert,DeSteph,Male,Republican,ocd-jurisdiction/country:us/state:va/government,20,upper +Nick Freitas,Nicholas Jason,Freitas,Male,Republican,ocd-jurisdiction/country:us/state:va/government,62,lower +Rip Sullivan,Richard Cyril,Sullivan,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,6,lower +Otto Wachsmann,Howard Otto,Wachsmann,Male,Republican,ocd-jurisdiction/country:us/state:va/government,83,lower +Mike Webert,Michael J.,Webert,Male,Republican,ocd-jurisdiction/country:us/state:va/government,61,lower +Dan Helmer,Daniel Isaac,Helmer,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,10,lower +Marcus Simon,Marcus Bertram,Simon,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,13,lower +Will Morefield,James William,Morefield,Male,Republican,ocd-jurisdiction/country:us/state:va/government,43,lower +Chad Green,William Chad,Green,Male,Republican,ocd-jurisdiction/country:us/state:va/government,69,lower +Mark Earley,Mark Lawrence,Earley,Male,Republican,ocd-jurisdiction/country:us/state:va/government,73,lower +Dave Marsden,David W.,Marsden,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,35,upper +Lamont Bagby,Lamont,Bagby,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,14,upper +Paul Milde,Paul V.,Milde,Male,Republican,ocd-jurisdiction/country:us/state:va/government,64,lower +Don Scott,Don L.,Scott,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,88,lower +Terry Kilgore,Terry Gene,Kilgore,Male,Republican,ocd-jurisdiction/country:us/state:va/government,45,lower +Terry Austin,Terry L.,Austin,Male,Republican,ocd-jurisdiction/country:us/state:va/government,37,lower +Mark Sickles,Mark David,Sickles,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,17,lower +Bill Stanley,William M.,Stanley,Male,Republican,ocd-jurisdiction/country:us/state:va/government,7,upper +Phil Hernandez,Philip,Hernandez,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,94,lower +Buddy Fowler,Hyland Franklin,Fowler,Male,Republican,ocd-jurisdiction/country:us/state:va/government,59,lower +Bill Wiley,William D.,Wiley,Male,Republican,ocd-jurisdiction/country:us/state:va/government,32,lower +Baxter Ennis,N. Baxter,Ennis,Male,Republican,ocd-jurisdiction/country:us/state:va/government,89,lower +Alfonso Lopez,Alfonso Hoffman,Lopez,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,3,lower +Timmy French,Timmy F.,French,Male,Republican,ocd-jurisdiction/country:us/state:va/government,1,upper +Luke Torian,Luke E.,Torian,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,24,lower +Mike Jones,Michael,Jones,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,77,lower +David Bulova,David L.,Bulova,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,11,lower +Adam Ebbin,Adam Paul,Ebbin,Male,Democratic,ocd-jurisdiction/country:us/state:va/government,39,upper +Amanda Batten,Amanda Etter,Batten,Female,Republican,ocd-jurisdiction/country:us/state:va/government,71,lower +Shelly Simonds,Shelly Anne,Simonds,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,70,lower +Cia Price,Marcia Simone,Price,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,85,lower +Charniele Herring,Charniele LeRhonda,Herring,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,4,lower +Barbara Favola,Barbara A.,Favola,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,40,upper +Katrina Callsen,Katrina,Callsen,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,54,lower +Destiny LeVere Bolling,Destiny,LeVere Bolling,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,80,lower +Christie Craig,Christie New,Craig,Female,Republican,ocd-jurisdiction/country:us/state:va/government,19,upper +Karrie Delaney,Karrie K.,Delaney,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,9,lower +Briana Sewell,Briana D.,Sewell,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,25,lower +Rae Cousins,Rae,Cousins,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,79,lower +Karen Keys-Gamarra,Karen,Keys-Gamarra,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,7,lower +Candi King,Candi Patrice Mundon,King,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,23,lower +Amy Laufer,Amy J.,Laufer,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,55,lower +Betsy Carr,Betsy Brooks,Carr,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,78,lower +Kelly Fowler,Kelly Kristen,Convirs-Fowler,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,96,lower +Lashrecse Aird,Lashrecse Dianna,Aird,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,13,upper +Debra Gardner,Debra,Gardner,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,76,lower +Angelia Graves,Angelia Marie Williams,Graves,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,21,upper +Atoosa Reaser,Atoosa,Reaser,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,27,lower +Ghazala Hashmi,Ghazala Firdous,Hashmi,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,15,upper +Delores Oates,Delores Riley,Oates,Female,Republican,ocd-jurisdiction/country:us/state:va/government,31,lower +Jennifer Carroll Foy,Jennifer D.,Carroll Foy,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,33,upper +Anne Ferrell Tata,Anne Ferrell Hager,Tata,Female,Republican,ocd-jurisdiction/country:us/state:va/government,99,lower +Jackie Glass,Jackie Hope,Glass,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,93,lower +Danica Roem,Danica A.,Roem,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,30,upper +Elizabeth Bennett-Parker,Elizabeth B.,Bennett-Parker,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,5,lower +Irene Shin,Irene,Shin,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,8,lower +Mamie Locke,Mamie Evelyn,Locke,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,23,upper +Kathy Tran,Kathy K.L.,Tran,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,18,lower +Vivian Watts,Vivian Edna,Watts,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,14,lower +Louise Lucas,Lillie Louise Boone,Lucas,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,18,upper +Stella Pekarsky,Stella Kakissis,Pekarsky,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,36,upper +Jennifer Boysko,Jennifer Barton,Boysko,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,38,upper +Jeion Ward,Jeion Antonia,Ward,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,87,lower +Bonita Anthony,Bonita Grace,Anthony,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,92,lower +Hillary Pugh Kent,Hillary,Pugh Kent,Female,Republican,ocd-jurisdiction/country:us/state:va/government,67,lower +Kim Taylor,Kimberly A.,Taylor,Female,Republican,ocd-jurisdiction/country:us/state:va/government,82,lower +Tammy Mulchi,Tammy Brankley,Mulchi,Female,Republican,ocd-jurisdiction/country:us/state:va/government,9,upper +Michelle Maldonado,Michelle-Ann E. Lopes,Maldonado,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,20,lower +Holly Seibold,Holly M.,Seibold,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,12,lower +Adele McClure,Adele Y.,McClure,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,2,lower +Russet Perry,Russet Wycuff,Perry,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,31,upper +Carrie Coyner,Carrie Emerson,Coyner,Female,Republican,ocd-jurisdiction/country:us/state:va/government,75,lower +Delores McQuinn,Delores L.,McQuinn,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,81,lower +Tara Durant,Tara A.,Durant,Female,Republican,ocd-jurisdiction/country:us/state:va/government,27,upper +Laura Jane Cohen,Laura Jane,Cohen,Female,Democratic,ocd-jurisdiction/country:us/state:va/government,15,lower +Emily Jordan,Emily M.,Jordan,Female,Republican,ocd-jurisdiction/country:us/state:va/government,17,upper +Ellen Campbell,Ellen H.,Campbell,Female,Republican,ocd-jurisdiction/country:us/state:va/government,36,lower +Rodney Graham,Rodney,Graham,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Orange-3,lower +Troy Headrick,Troy,Headrick,Male,Democratic/Progressive,ocd-jurisdiction/country:us/state:vt/government,Chittenden-15,lower +Brian Minier,Brian,Minier,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-11,lower +Peter Anthony,Peter D.,Anthony,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Washington-3,lower +Tom Burditt,Thomas,Burditt,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Rutland-2,lower +Avram Patt,Avram,Patt,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Lamoille-Washington,lower +Larry Satcowitz,Larry,Satcowitz,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Orange-Washington-Addison,lower +Russ Ingalls,Russ,Ingalls,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Essex,upper +Bob Norris,Robert W.,Norris,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Franklin,upper +Bobby Farlice-Rubio,Bobby,Farlice-Rubio,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Caledonia-1,lower +Brian Campion,Brian A.,Campion,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Bennington,upper +Mike McCarthy,Michael,McCarthy,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Franklin-3,lower +Mike Morgan,Michael R.,Morgan,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Grand Isle-Chittenden,lower +Bob Hooper,Robert,Hooper,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-18,lower +Woody Page,Woodman H.,Page,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Orleans-2,lower +Caleb Elder,Caleb,Elder,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Addison-4,lower +Chris Taylor,Christopher,Taylor,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Chittenden-Franklin,lower +Jarrod Sammis,Jarrod E.,Sammis,Male,Libertarian,ocd-jurisdiction/country:us/state:vt/government,Rutland-3,lower +Jim Harrison,James,Harrison,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Rutland-11,lower +Mark Higley,Mark A.,Higley,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Orleans-Lamoille,lower +Kenneth Goslant,Kenneth W.,Goslant,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Washington-1,lower +Timothy Corcoran,Timothy R.,Corcoran,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Bennington-2,lower +Dane Whitman,Dane,Whitman,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Bennington-2,lower +Kevin Christie,Kevin B.,Christie,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor-6,lower +Richard McCormack,Richard John,McCormack,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor,upper +Tom Stevens,Thomas S.,Stevens,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Washington-Chittenden,lower +Matt Birong,Matthew,Birong,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Addison-3,lower +David Durfee,David K.,Durfee,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Bennington-3,lower +Conor Casey,Conor,Casey,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Washington-4,lower +John Bartholomew,John L.,Bartholomew,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor-1,lower +Art Peterson,Arthur J.L.,Peterson,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Rutland-2,lower +Nader Hashim,Nader,Hashim,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windham,upper +Dave Templeman,David,Templeman,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Orleans-3,lower +Robin Chesnut-Tangerman,Robin,Chesnut-Tangerman,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Rutland-Bennington,lower +Phil Baruth,Philip E.,Baruth,Male,Democratic/Progressive,ocd-jurisdiction/country:us/state:vt/government,Chittenden Central,upper +Butch Shaw,Charles H.,Shaw,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Rutland-8,lower +Seth Bongartz,Seth B.,Bongartz,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Bennington-4,lower +Curt Taylor,Curt,Taylor,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-20,lower +Wayne Laroche,Wayne A.,Laroche,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Franklin-5,lower +Henry Pearl,Henry,Pearl,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Caledonia-Washington,lower +Larry Labor,Larry,Labor,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Essex-Orleans,lower +Tom Oliver,Thomas,Oliver,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Franklin-4,lower +Joe Andriano,Joseph,Andriano,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Addison-Rutland,lower +Seth Chase,Seth,Chase,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-20,lower +Tristan Roberts,Tristan,Roberts,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windham-6,lower +Jay Hooper,Philip Jay,Hooper,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Orange-Washington-Addison,lower +Nelson Brownell,Nelson,Brownell,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Bennington-1,lower +Jonathan Williams,Jonathan,Williams,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Washington-3,lower +Charles Wilson,Charles,Wilson,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Caledonia-3,lower +Chris Bray,Christopher A.,Bray,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Addison,upper +Kristi Morris,Kristi,Morris,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor-3,lower +Thomas Chittenden,Thomas Ira,Chittenden,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden Southeast,upper +Jed Lipsky,Jed,Lipsky,Male,Independent,ocd-jurisdiction/country:us/state:vt/government,Lamoille-1,lower +Mark MacDonald,Mark Alexander,MacDonald,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Orange,upper +Jim Carroll,James,Carroll,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Bennington-5,lower +Richard Westman,Richard A.,Westman,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Lamoille,upper +Joseph Parsons,Joseph,Parsons,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Orange-Caledonia,lower +John O'Brien,John,O'Brien,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor-Orange-1,lower +Scott Campbell,R. Scott,Campbell,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Caledonia-Essex,lower +Dennis LaBounty,Dennis,LaBounty,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Caledonia-3,lower +Terry Williams,Terry,Williams,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Rutland,upper +Brian Collamore,Brian P.,Collamore,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Rutland,upper +Andrew Perchlik,Andrew John,Perchlik,Male,Democratic/Progressive,ocd-jurisdiction/country:us/state:vt/government,Washington,upper +Dick Mazza,Richard Thomas,Mazza,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Grand Isle,upper +Chris Mattos,Christopher P.,Mattos,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Chittenden-Franklin,lower +Dick Sears,Richard Warden,Sears,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Bennington,upper +Casey Toof,Casey,Toof,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Franklin-8,lower +John Arrison,John,Arrison,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor-2,lower +Bill Canfield,William P.,Canfield,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Rutland-10,lower +Brian Cina,Brian,Cina,Male,Democratic/Progressive,ocd-jurisdiction/country:us/state:vt/government,Chittenden-15,lower +Chip Troiano,Joseph,Troiano,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Caledonia-2,lower +Logan Nicoll,Logan,Nicoll,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Rutland-Windsor,lower +Matt Walker,Matthew E.,Walker,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Franklin-4,lower +Noah Hyman,Noah,Hyman,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-8,lower +Robert Starr,Robert A.,Starr,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Orleans,upper +Patrick Brennan,Patrick M.,Brennan,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Chittenden-19,lower +Scott Beck,Scott,Beck,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Caledonia-Essex,lower +Jim Masland,James W.,Masland,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor-Orange-2,lower +James Gregoire,James A.R.,Gregoire,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Franklin-6,lower +Marc Mihaly,Marc Bramer,Mihaly,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Washington-6,lower +Penny Demar,Allen R.,Demar,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Franklin-7,lower +Mike Rice,Mike,Rice,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Bennington-Rutland,lower +Martin LaLonde,Martin,LaLonde,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-12,lower +Carl Demrow,Carl Caverly,Demrow,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Orange-1,lower +Kirk White,Kirk,White,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor-Addison,lower +Brian Smith,Brian,Smith,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Orleans-1,lower +Paul Clifford,Paul,Clifford,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Rutland-4,lower +Tristan Toleno,Tristan D.,Toleno,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windham-9,lower +Dan Noyes,Daniel,Noyes,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Lamoille-2,lower +Randy Brock,Randolph D.,Brock,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Franklin,upper +Dave Weeks,David Hart,Weeks,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Rutland,upper +Phil Pouech,Phillip,Pouech,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-4,lower +William Notte,William,Notte,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Rutland-7,lower +Eric Maguire,Eric,Maguire,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Rutland-5,lower +Topper McFaun,Francis M.,McFaun,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Washington-Orange,lower +Michael Marcotte,Michael J.,Marcotte,Male,Republican,ocd-jurisdiction/country:us/state:vt/government,Orleans-Lamoille,lower +Mike Mrowicki,Michael,Mrowicki,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windham-4,lower +Peter Conlon,Peter,Conlon,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Addison-2,lower +Trevor Squirrell,Trevor J.,Squirrell,Male,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-3,lower +Terri Williams,Terri Lynn,Williams,Female,Republican,ocd-jurisdiction/country:us/state:vt/government,Essex-Caledonia,lower +Mari Cordes,Mari K.,Cordes,Female,Democratic/Progressive,ocd-jurisdiction/country:us/state:vt/government,Addison-4,lower +Gina Galfetti,Gina,Galfetti,Female,Republican,ocd-jurisdiction/country:us/state:vt/government,Washington-Orange,lower +Martine Gulick,Martine Larocque,Gulick,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden Central,upper +Tesha Buss,Tesha,Buss,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor-5,lower +Sara Coffey,Sara,Coffey,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windham-1,lower +Ashley Bartley,Ashley,Bartley,Female,Republican,ocd-jurisdiction/country:us/state:vt/government,Franklin-1,lower +Amy Sheldon,Amy,Sheldon,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Addison-1,lower +Karen Dolan,Karen,Dolan,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-22,lower +Mary Howard,Mary E.,Howard,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Rutland-6,lower +Anne Donahue,Anne de la Blanchetai,Donahue,Female,Republican,ocd-jurisdiction/country:us/state:vt/government,Washington-1,lower +Kari Dolan,Katherine,Dolan,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Washington-2,lower +Sarita Austin,Sarah,Austin,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-19,lower +Lisa Hango,Lisa Abbott,Hango,Female,Republican,ocd-jurisdiction/country:us/state:vt/government,Franklin-5,lower +Rebecca Holcombe,Rebecca,Holcombe,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor-Orange-2,lower +Heather Chase,Heather Collie,Chase,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor-Windham,lower +Anne Watson,Anne Elizabeth,Watson,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Washington,upper +Erin Brady,Erin K.,Brady,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-2,lower +Alyssa Black,Alyssa Hughes,Black,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-24,lower +Ela Chapin,Elanor Abrams,Chapin,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Washington-5,lower +Pattie McCoy,Patricia A.,McCoy,Female,Republican,ocd-jurisdiction/country:us/state:vt/government,Rutland-1,lower +Kelly Pajala,Kelly MacLaury,Pajala,Female,Independent,ocd-jurisdiction/country:us/state:vt/government,Windham-Windsor-Bennington,lower +Carol Ode,Carol,Ode,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-18,lower +Kesha Ram Hinsdale,Kesha K.,Ram Hinsdale,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden Southeast,upper +Barbara Rachelson,Barbara,Rachelson,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-14,lower +Angela Arsenault,Angela,Arsenault,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-2,lower +Stephanie Jerome,Stephanie Zak,Jerome,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Rutland-9,lower +Katherine Sims,Katherine,Sims,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Orleans-4,lower +Emily Long,Emily J.,Long,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windham-5,lower +Josie Leavitt,Josie,Leavitt,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Grand Isle-Chittenden,lower +Diane Lanpher,Diane M.,Lanpher,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Addison-3,lower +Leslie Goldman,Leslie,Goldman,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windham-3,lower +Carolyn Branagan,Carolyn Whitney,Branagan,Female,Republican,ocd-jurisdiction/country:us/state:vt/government,Franklin-1,lower +Jane Kitchel,Martha Jane Beattie,Kitchel,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Caledonia,upper +Becca White,Rebecca,White,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor,upper +Wendy Harrison,Wendy,Harrison,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windham,upper +Irene Wrenner,Irene Ava,Wrenner,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden North,upper +Edye Graning,Edye,Graning,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-3,lower +Mollie Burke,Mollie S.,Burke,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windham-8,lower +Jana Brown,Jana,Brown,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-1,lower +Emilie Krasnow,Emily,Krasnow,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-9,lower +Alison Clarkson,Alison Hudnut,Clarkson,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor,upper +Gabrielle Stebbins,Gabrielle,Stebbins,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-13,lower +Mary Morrissey,Mary A.,Morrissey,Female,Republican,ocd-jurisdiction/country:us/state:vt/government,Bennington-5,lower +Julia Andrews,Julia,Andrews,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-25,lower +Kate Lalley,Kate,Lalley,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-6,lower +Kate Nugent,Kathryn,Nugent,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-10,lower +Jessica Brumsted,Jessica,Brumsted,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-7,lower +Theresa Wood,Theresa A.,Wood,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Washington-Chittenden,lower +Kate Logan,Kate,Logan,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-16,lower +Ruth Hardy,Ruth,Hardy,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Addison,upper +Jubilee McGill,Jubilee,McGill,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Addison-5,lower +Robin Scheu,Robin,Scheu,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Addison-1,lower +Ann Cummings,Ann E.,Cummings,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Washington,upper +Tanya Vyhovsky,Tanya C.,Vyhovsky,Female,Democratic/Progressive,ocd-jurisdiction/country:us/state:vt/government,Chittenden Central,upper +Laura Sibilia,Laura,Sibilia,Female,Independent,ocd-jurisdiction/country:us/state:vt/government,Windham-2,lower +Daisy Berbeco,Daisy,Berbeco,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-21,lower +Dara Torre,Dara,Torre,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Washington-2,lower +Saudia Lamont,Saudia,Lamont,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Lamoille-Washington,lower +Lucy Boyden,Lucy,Boyden,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Lamoille-3,lower +Ginny Lyons,Virginia V.,Lyons,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden Southeast,upper +Kate McCann,Kate,McCann,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Washington-4,lower +Heather Surprenant,Heather,Surprenant,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor-4,lower +Michelle Bos-Lun,Michelle,Bos-Lun,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windham-3,lower +Tiff Bluemle,Tiffany,Bluemle,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-13,lower +Elizabeth Burrows,Elizabeth Leprestre Cornell,Burrows,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor-1,lower +Leonora Dodge,Leonora,Dodge,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-23,lower +Mary-Katherine Stone,Mary-Katherine Abdel-Ghany,Stone,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-14,lower +Lynn Dickinson,Eileen G.,Dickinson,Female,Republican,ocd-jurisdiction/country:us/state:vt/government,Franklin-2,lower +Taylor Small,Taylor,Small,Female,Democratic/Progressive,ocd-jurisdiction/country:us/state:vt/government,Chittenden-21,lower +Monique Priestley,Monique,Priestley,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Orange-2,lower +Emma Mulvaney-Stanak,Emma,Mulvaney-Stanak,Female,Democratic/Progressive,ocd-jurisdiction/country:us/state:vt/government,Chittenden-17,lower +Lori Houghton,Lori,Houghton,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-22,lower +Esme Cole,Esme,Cole,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor-6,lower +Rey Garofano,Golrang,Garofano,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-23,lower +Kathleen James,Kathleen,James,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Bennington-4,lower +Alice Emmons,Alice M.,Emmons,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windsor-3,lower +Emilie Kornheiser,Emilie,Kornheiser,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Windham-7,lower +Chea Evans,Chea Waters,Evans,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-5,lower +Melanie Carpenter,Melanie,Carpenter,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Lamoille-2,lower +Jill Krowinski,Jill L.,Krowinski,Female,Democratic,ocd-jurisdiction/country:us/state:vt/government,Chittenden-16,lower +Darya Farivar,Darya,Farivar,Other,Democratic,ocd-jurisdiction/country:us/state:wa/government,46,lower +Clyde Shavers,Clyde,Shavers,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,10,lower +Larry Springer,Larry S.,Springer,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,45,lower +Bill Ramos,Bill George,Ramos,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,5,lower +Phil Fortunato,Philip D.,Fortunato,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,31,upper +Mike Chapman,Mike,Chapman,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,24,lower +J.T. Wilcox,James Truman,Wilcox,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,2,lower +Alex Ramel,Alexander W.,Ramel,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,40,lower +Ed Orcutt,Edmund Thomas,Orcutt,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,20,lower +Steve Conway,Steven E.,Conway,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,29,upper +Andy Billig,Andrew Swire,Billig,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,3,upper +Kevin Waters,Kevin,Waters,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,17,lower +John Lovick,John R.,Lovick,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,44,upper +Joe Nguyen,Joseph Thanh Tan,Nguyen,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,34,upper +Joel McEntire,Joel,McEntire,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,19,lower +Julio Cortes,Julio,Cortes,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,38,lower +Steve Bergquist,Steven Anton,Bergquist,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,11,lower +Travis Couture,Travis,Couture,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,35,lower +Joe Schmick,Joseph Scott,Schmick,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,9,lower +Dan Bronoske,Dan,Bronoske,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,28,lower +Chipalo Street,Chipalo,Street,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,37,lower +Tom Dent,Thomas Emmett,Dent,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,13,lower +Frank Chopp,Frank Vana,Chopp,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,43,lower +Greg Nance,Gregory Dylan,Nance,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,23,lower +Jeff Holy,Jeffrey Mark,Holy,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,6,upper +Steve Tharinger,Stephen Platner,Tharinger,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,24,lower +Mike Steele,Mike,Steele,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,12,lower +Roger Goodman,Roger,Goodman,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,45,lower +Alex Ybarra,Alex,Ybarra,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,13,lower +Joel Kretz,Joel Andrew,Kretz,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,7,lower +Timm Ormsby,Timothy Sean,Ormsby,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,3,lower +Jeff Wilson,Jeff,Wilson,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,19,upper +Bob Hasegawa,Robert Alan,Hasegawa,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,11,upper +Skyler Rude,Skyler David,Rude,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,16,lower +Ron Muzzall,Ron,Muzzall,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,10,upper +Dave Paul,David,Paul,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,10,lower +Bryan Sandlin,Bryan,Sandlin,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,15,lower +Gerry Pollet,Gerry,Pollet,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,46,lower +Drew Hansen,Drew Derrick,Hansen,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,23,upper +Jamie Pedersen,Jamie D.,Pedersen,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,43,upper +Bruce Chandler,Bruce,Chandler,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,15,lower +Perry Dozier,Perry L.,Dozier,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,16,upper +Drew MacEwen,Drew C.,MacEwen,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,35,upper +Mike Padden,Michael John,Padden,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,4,upper +Keith Wagoner,Keith,Wagoner,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,39,upper +John Braun,John E.,Braun,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,20,upper +Keith Goehner,Keith,Goehner,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,12,lower +Javier Valdez,Javier,Valdez,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,46,upper +Marko Liias,Marko Sakari,Liias,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,21,upper +Andrew Barkis,Andrew,Barkis,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,2,lower +Kevin Van De Wege,Kevin,Van De Wege,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,24,upper +Matt Boehnke,Matthew A.,Boehnke,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,8,upper +Sam Low,Sam,Low,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,39,lower +Chris Stearns,Christopher T.,Stearns,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,47,lower +Drew Stokesbary,Drew,Stokesbary,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,31,lower +Leonard Christian,Leonard Glenn,Christian,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,4,lower +Jim McCune,Jim,McCune,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,2,upper +Brad Hawkins,Bradley Matthew,Hawkins,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,12,upper +Mark Klicker,Mark,Klicker,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,16,lower +Paul Harris,Paul,Harris,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,17,lower +Jim Walsh,Jim,Walsh,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,19,lower +Joe Timmons,Joseph A.,Timmons,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,42,lower +Joe Fitzgibbon,Joe,Fitzgibbon,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,34,lower +Chris Gildon,Christopher Don,Gildon,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,25,upper +Mike Volz,Mike,Volz,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,6,lower +David Hackney,David,Hackney,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,11,lower +Spencer Hutchins,Spencer W.,Hutchins,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,26,lower +Eric Robertson,Eric E.,Robertson,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,31,lower +Marcus Riccelli,Marcus Michael,Riccelli,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,3,lower +Derek Stanford,Derek,Stanford,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,1,upper +Dan Griffey,Dan,Griffey,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,35,lower +Jake Fey,Jake,Fey,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,27,lower +Jesse Salomon,Jesse Michael,Salomon,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,32,upper +Mark Schoesler,Mark G.,Schoesler,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,9,upper +Curtis King,Curtis,King,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,14,upper +Chris Corry,Chris,Corry,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,14,lower +Sam Hunt,Samuel W.,Hunt,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,22,upper +Greg Cheney,Gregory Scott,Cheney,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,18,lower +Strom Peterson,Strom H.,Peterson,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,21,lower +Peter Abbarno,Peter Jaret,Abbarno,Male,Republican,ocd-jurisdiction/country:us/state:wa/government,20,lower +Mark Mullet,Mark Douglas,Mullet,Male,Democratic,ocd-jurisdiction/country:us/state:wa/government,5,upper +Monica Stonier,Monica Jurado,Stonier,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,49,lower +Beth Doglio,Beth M.,Doglio,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,22,lower +Liz Lovelett,Elizabeth,Lovelett,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,40,upper +Sharon Tomiko Santos,Sharon Tomiko,Santos,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,37,lower +T'wina Nobles,T'wina,Nobles,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,28,upper +Cyndy Jacobsen,Cynthia P.,Jacobsen,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,25,lower +Sharlett Mena,Sharlett,Mena,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,29,lower +Mia Gregerson,Mia Su-Ling,Gregerson-Dahle,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,33,lower +Kristine Reeves,Kristine M.,Reeves,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,30,lower +Tarra Simmons,Tarra,Simmons,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,23,lower +Tina Orwall,Tina L.,Orwall,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,33,lower +Mary Fosse,Mary,Fosse,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,38,lower +Lisa Callan,Lisa,Callan,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,5,lower +Vandana Slatter,Vandana,Slatter,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,48,lower +Lauren Davis,Lauren,Davis,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,32,lower +Yasmin Trudeau,Yasmin,Trudeau,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,27,upper +Michelle Caldier,Michelle L. Downey,Caldier,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,26,lower +June Robinson,June G.,Robinson,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,38,upper +Jacquelin Maycumber,Jacquelin,Maycumber,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,7,lower +Manka Dhingra,Manka,Dhingra,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,45,upper +Cindy Ryu,Cindy,Ryu,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,32,lower +Davina Duerr,Davina Williams,Duerr,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,1,lower +My-Linh Thai,My-Linh,Thai,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,41,lower +Shelly Short,Shelly Anne,Short,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,7,upper +Laurie Jinkins,Laurie A.,Jinkins,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,27,lower +Gina Mosbrucker,Gina R.,Mosbrucker,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,14,lower +Stephanie McClintock,Stephanie,McClintock,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,18,lower +Judy Warnick,Judith,Warnick,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,13,upper +Tana Senn,Tana,Senn,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,41,lower +Claudia Kauffman,Claudia,Kauffman,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,47,upper +Karen Keiser,Karen Lynne,Keiser,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,33,upper +Brandy Donaghy,Brandy,Donaghy,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,44,lower +Julia Reed,Julia G.,Reed,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,36,lower +Liz Berry,Elizabeth Jean,Berry,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,36,lower +April Berg,April,Berg,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,44,lower +Sharon Wylie,Sharon,Wylie,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,49,lower +Debra Lekanoff,Debra E.,Lekanoff,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,40,lower +Amy Walen,Amy,Walen,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,48,lower +Lisa Wellman,Lisa,Wellman,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,41,upper +Shelley Kloba,Shelley,Kloba,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,1,lower +Stephanie Barnard,Stephanie,Barnard,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,8,lower +Emily Alvarado,Emily,Alvarado,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,34,lower +Melanie Morgan,Melanie Virginia,Morgan,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,29,lower +Ann Rivers,Ann,Rivers,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,18,upper +April Connors,April,Connors,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,8,lower +Suzanne Schmidt,Suzanne,Schmidt,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,4,lower +Patty Kuderer,Patricia,Kuderer,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,48,upper +Jenny Graham,Virginia,Graham,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,6,lower +Noel Frame,Noel Christina,Frame,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,36,upper +Sharon Shewmake,Sharon,Shewmake,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,42,upper +Nicole Macri,Nicole,Macri,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,43,lower +Mari Leavitt,Mari Kruger,Leavitt,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,28,lower +Kelly Chambers,Kelly,Chambers,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,25,lower +Rebecca Saldaña,Rebecca J.,Saldana,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,37,upper +Emily Randall,Emily Elissa,Randall,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,26,upper +Annette Cleveland,Annette M.,Cleveland,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,49,upper +Jessica Bateman,Jessica Danielle,Bateman,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,22,lower +Lillian Ortiz-Self,Lillian,Ortiz-Self,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,21,lower +Debra Entenman,Debra Jean,Entenman,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,47,lower +Lynda Wilson,Lynda,Wilson,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,17,upper +Alicia Rule,Alicia,Rule,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,42,lower +Mary Dye,Mary Lurintha,Dye,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,9,lower +Carolyn Eslick,Carolyn,Eslick,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,39,lower +Jamila Taylor,Jamila E.,Taylor,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,30,lower +Nikki Torres,Nikki,Torres,Female,Republican,ocd-jurisdiction/country:us/state:wa/government,15,upper +Claire Wilson,Claire E.,Wilson,Female,Democratic,ocd-jurisdiction/country:us/state:wa/government,30,upper +John Macco,John Joseph,Macco,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,88,lower +Devin LeMahieu,Devin,LeMahieu,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,9,upper +Clint Anderson,Clinton M.,Anderson,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,45,lower +Rob Swearingen,Rob,Swearingen,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,34,lower +Robert Wittke,Robert Otto,Wittke,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,62,lower +Mark Spreitzer,Mark E.,Spreitzer,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,15,upper +Terry Katsma,Terry,Katsma,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,26,lower +Tony Kurtz,Anthony Michael,Kurtz,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,50,lower +Shae Sortwell,Shae,Sortwell,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,2,lower +Nik Rettinger,Nikalaus P.,Rettinger,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,83,lower +Dave Maxey,David G.,Maxey,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,15,lower +Shannon Zimmerman,Shannon M.,Zimmerman,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,30,lower +Dave Armstrong,David B.,Armstrong,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,75,lower +Tod Ohnstad,Tod,Ohnstad,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,65,lower +Gus Gustafson,Nate L.,Gustafson,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,55,lower +Alex Dallman,Alex A.,Dallman,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,41,lower +Jesse James,Jesse,James,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,23,upper +Paul Melotik,Paul D.,Melotik,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,24,lower +Calvin Callahan,Calvin Thomas,Callahan,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,35,lower +Rob Summerfield,Rob,Summerfield,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,67,lower +Samba Baldeh,Samba,Baldeh,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,48,lower +Duey Stroebel,Sherburn Duane,Stroebel,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,20,upper +Tip McGuire,Thaddeus,McGuire,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,64,lower +David Steffen,David,Steffen,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,4,lower +André Jacque,Andre,Jacque,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,1,upper +Chanz Green,Chanz Jeffery,Green,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,74,lower +Joel Kitchens,Joel C.,Kitchens,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,1,lower +Eric Wimberger,Eric,Wimberger,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,30,upper +Supreme Moore Omokunde,Supreme,Moore Omokunde,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,17,lower +Ty Bodden,Ty Alan,Bodden,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,59,lower +Clint Moses,Clint,Moses,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,29,lower +Evan Goyke,Evan C.,Goyke,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,18,lower +Mark Born,Mark,Born,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,39,lower +Rob Stafsholt,Robert R.,Stafsholt,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,10,upper +Kalan Haywood,Kalan,Haywood,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,16,lower +Brad Pfaff,Bradley M.,Pfaff,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,32,upper +Alex Joers,Alex Robert,Joers,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,79,lower +Jeff Smith,Jeff E.,Smith,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,31,upper +Peter Schmidt,Peter A.,Schmidt,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,6,lower +Scott Krug,Scott,Krug,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,72,lower +Ron Tusler,Ron,Tusler,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,3,lower +Jon Plumer,Jon,Plumer,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,42,lower +Warren Petryk,Warren,Petryk,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,93,lower +Jimmy Anderson,Jimmy P.,Anderson,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,47,lower +Jerry O'Connor,Jerry L.,O'Connor,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,52,lower +Julian Bradley,Marc Julian,Bradley,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,28,upper +Todd Novak,Todd D.,Novak,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,51,lower +Rick Gundrum,Rick,Gundrum,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,58,lower +Van Wanggaard,Van H.,Wanggaard,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,21,upper +Chris Larson,Christopher James,Larson,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,7,upper +Robin Vos,Robin Joseph,Vos,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,63,lower +James Edming,James W.,Edming,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,87,lower +Dave Murphy,David,Murphy,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,56,lower +Rob Cowles,Robert L.,Cowles,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,2,upper +Ryan Clancy,Ryan M.,Clancy,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,19,lower +Michael Schraa,Michael,Schraa,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,53,lower +Mike Bare,Michael Andrew,Bare,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,80,lower +Bob Donovan,Robert G.,Donovan,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,84,lower +Scott Allen,Scott,Allen,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,97,lower +Dan Knodl,Daniel Raymond,Knodl,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,8,upper +Rob Hutton,Rob,Hutton,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,5,upper +Loren Oldenburg,Loren,Oldenburg,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,96,lower +Steve Doyle,Steve,Doyle,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,94,lower +Kevin Petersen,Kevin David,Petersen,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,40,lower +Will Penterman,William Lee,Penterman,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,37,lower +Chuck Wichgers,Chuck,Wichgers,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,82,lower +John Spiros,John,Spiros,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,86,lower +Bob Wirch,Robert W.,Wirch,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,22,upper +Patrick Testin,Patrick,Testin,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,24,upper +Steve Nass,Stephen L.,Nass,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,11,upper +Elijah Behnke,Elijah R.,Behnke,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,89,lower +Scott Johnson,Scott L.,Johnson,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,33,lower +Daniel Riemer,Daniel,Riemer,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,7,lower +Dave Considine,Dave,Considine,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,81,lower +Adam Neylon,Adam Thomas,Neylon,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,98,lower +Dan Feyen,Dan,Feyen,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,18,upper +Howard Marklein,Howard L.,Marklein,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,17,upper +Chris Kapenga,Chris,Kapenga,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,33,upper +Cory Tomczyk,Cory,Tomczyk,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,29,upper +Tim Carpenter,Timothy W.,Carpenter,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,3,upper +Darrin Madison,Darrin Brian,Madison,Male,Democratic,ocd-jurisdiction/country:us/state:wi/government,10,lower +Tyler August,Tyler,August,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,32,lower +Treig Pronschinske,Treig E.,Pronschinske,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,92,lower +John Jagler,John,Jagler,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,13,upper +Romaine Quinn,Romaine Robert,Quinn,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,25,upper +Tom Michalski,Thomas A.,Michalski,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,13,lower +Rob Brooks,Robert A.,Brooks,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,60,lower +Travis Tranel,Travis,Tranel,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,49,lower +Pat Snyder,Patrick J.,Snyder,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,85,lower +Paul Tittl,Paul,Tittl,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,25,lower +Jeff Mursau,Jeffrey,Mursau,Male,Republican,ocd-jurisdiction/country:us/state:wi/government,36,lower +Jessie Rodriguez,Jessie,Rodriguez,Female,Republican,ocd-jurisdiction/country:us/state:wi/government,21,lower +Cindi Duchow,Cindi S.,Duchow,Female,Republican,ocd-jurisdiction/country:us/state:wi/government,99,lower +Nancy VanderMeer,Nancy L.,VanderMeer,Female,Republican,ocd-jurisdiction/country:us/state:wi/government,70,lower +Donna Rozar,Donna Kay Mummau,Rozar,Female,Republican,ocd-jurisdiction/country:us/state:wi/government,69,lower +Lee Snodgrass,Lee Alyson,Snodgrass,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,57,lower +Mary Felzkowski,Mary Czaja,Felzkowski,Female,Republican,ocd-jurisdiction/country:us/state:wi/government,12,upper +Greta Neubauer,Gretchen Stephens,Neubauer,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,66,lower +Kelda Roys,Kelda Helen,Roys,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,26,upper +Sylvia Ortiz-Velez,Sylvia,Ortiz-Velez,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,8,lower +Jodi Emerson,Jodi,Emerson,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,91,lower +Sue Conley,Sue Seibert,Conley,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,44,lower +Deb Andraca,Deborah Jane Anderson,Andraca,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,23,lower +Rachael Cabral-Guevara,Rachael,Cabral-Guevara,Female,Republican,ocd-jurisdiction/country:us/state:wi/government,19,upper +Jenna Jacobson,Jennifer Shannon,Jacobson,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,43,lower +Kristina Shelton,Kristina Marie,Shelton,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,90,lower +Melissa Agard,Melissa Kristen,Agard,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,16,upper +Karen Hurd,Karen Ruth,Hurd,Female,Republican,ocd-jurisdiction/country:us/state:wi/government,68,lower +Ellen Schutt,Ellen L.,Schutt,Female,Republican,ocd-jurisdiction/country:us/state:wi/government,31,lower +Shelia Stubbs,Shelia,Stubbs,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,77,lower +Joan Ballweg,Joan,Ballweg,Female,Republican,ocd-jurisdiction/country:us/state:wi/government,14,upper +Lori Palmeri,Lori Ann,Palmeri,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,54,lower +Francesca Hong,Francesca,Hong,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,76,lower +Janel Brandtjen,Janel,Brandtjen,Female,Republican,ocd-jurisdiction/country:us/state:wi/government,22,lower +LaKeshia Myers,LaKeshia N.,Myers,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,12,lower +Angie Sapik,Angela Mary,Sapik,Female,Republican,ocd-jurisdiction/country:us/state:wi/government,73,lower +Barbara Dittrich,Barbara,Dittrich,Female,Republican,ocd-jurisdiction/country:us/state:wi/government,38,lower +Melissa Ratcliff,Melissa Amy,Ratcliff,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,46,lower +Lisa Subeck,Lisa,Subeck,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,78,lower +LaTonya Johnson,LaTonya,Johnson,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,6,upper +Jill Billings,Jill Elizabeth,Billings,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,95,lower +Dora Drake,Dora Elizabeth,Drake,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,11,lower +Robyn Vining,Robyn Beckley,Vining,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,14,lower +Amanda Nedweski,Amanda Marie,Nedweski,Female,Republican,ocd-jurisdiction/country:us/state:wi/government,61,lower +Joy Goeben,Joy L.,Goeben,Female,Republican,ocd-jurisdiction/country:us/state:wi/government,5,lower +Amy Binsfeld,Amy E.,Binsfeld,Female,Republican,ocd-jurisdiction/country:us/state:wi/government,27,lower +Katrina Shankland,Katrina,Shankland,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,71,lower +Gae Magnafici,Gae,Magnafici,Female,Republican,ocd-jurisdiction/country:us/state:wi/government,28,lower +Christine Sinicki,Christine M.,Sinicki,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,20,lower +Dianne Hesselbein,Dianne,Hesselbein,Female,Democratic,ocd-jurisdiction/country:us/state:wi/government,27,upper +Jonathan Pinson,Jonathan Adam,Pinson,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,17,lower +Jeff Stephens,Jeffrey R.,Stephens,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,6,lower +Dean Jeffries,Warren,Jeffries,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,61,lower +Elías Coop-González,Elias Gorden,Coop-Gonzalez,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,67,lower +Mike Stuart,Michael Bryan,Stuart,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,7,upper +Chris Pritt,Christopher Todd,Pritt,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,53,lower +Dave Foggin,David,Foggin,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,14,lower +Chandler Swope,Chandler,Swope,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,6,upper +Mike DeVault,Mike,DeVault,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,74,lower +Don Forsht,Donald,Forsht,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,91,lower +David Green,Stephen David,Green,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,36,lower +Jay Taylor,John R.,Taylor,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,14,upper +Mike Azinger,Michael Thomas,Azinger,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,3,upper +Ty Nestor,William Tyler,Nestor,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,66,lower +Jordan Bridges,Jordan Ray,Bridges,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,33,lower +Matthew Rohrbach,Matthew,Rohrbach,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,26,lower +Andy Shamblin,Andy,Shamblin,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,59,lower +J.B. Akers,James Robert,Akers,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,55,lower +Roy Cooper,Roy Gale,Cooper,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,40,lower +Tom Fast,Tom,Fast,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,51,lower +Adam Burkhammer,Adam,Burkhammer,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,64,lower +Mark Hunt,Mark Allen,Hunt,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,8,upper +Ryan Browning,Ryan,Browning,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,28,lower +Larry Kump,Larry Douglas,Kump,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,94,lower +Joe Statler,Joe,Statler,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,77,lower +Vince Deeds,Vincent S.,Deeds,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,10,upper +Bob Fehrenbacher,Robert Joseph,Fehrenbacher,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,11,lower +Clay Riley,Clay,Riley,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,72,lower +Joey Garcia,Joseph David,Garcia,Male,Democratic,ocd-jurisdiction/country:us/state:wv/government,76,lower +Mike Hite,Michael,Hite,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,92,lower +Glenn Jeffries,Glenn D.,Jeffries,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,8,upper +Keith Marple,Keith,Marple,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,69,lower +Elliott Pritt,David Elliott,Pritt,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,50,lower +Eric Tarr,Eric J.,Tarr,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,4,upper +John Williams,John,Williams,Male,Democratic,ocd-jurisdiction/country:us/state:wv/government,80,lower +Evan Worrell,Evan,Worrell,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,23,lower +Corby Dillon,Henry Corbett,Dillon,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,29,lower +Geno Chiarelli,Eugene Michael,Chiarelli,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,78,lower +Scot Heckert,Scot Craig,Heckert,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,13,lower +George Street,George,Street,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,83,lower +Charles Trump,Charles Samuel,Trump,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,15,upper +Rupie Phillips,Rupert Wilson,Phillips,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,7,upper +Jeff Campbell,Jeffrey Scott,Campbell,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,46,lower +Walter Hall,Walter,Hall,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,58,lower +Mark Dean,Mark,Dean,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,34,lower +Eric Householder,Eric L.,Householder,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,96,lower +Bugs Stover,David Allen,Stover,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,9,upper +Chuck Horst,Charles K.,Horst,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,95,lower +Craig Blair,Craig Philip,Blair,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,15,upper +John Hardy,John,Hardy,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,97,lower +Todd Longanacre,W. Todd,Longanacre,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,47,lower +Chris Phillips,Chris,Phillips,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,68,lower +Trenton Barnhart,Trenton Carl,Barnhart,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,9,lower +Shawn Fluharty,Shawn Lucas,Fluharty,Male,Democratic,ocd-jurisdiction/country:us/state:wv/government,5,lower +Jason Barrett,Jason,Barrett,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,16,upper +Ryan Weld,Ryan William,Weld,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,1,upper +Marty Gearheart,Gary Martin,Gearheart,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,37,lower +Tom Clark,Thomas C.,Clark,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,48,lower +Robert Karnes,Robert Lee,Karnes,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,11,upper +Sean Hornbuckle,Sean,Hornbuckle,Male,Democratic,ocd-jurisdiction/country:us/state:wv/government,25,lower +Geoff Foster,Geoffrey Bruce,Foster,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,20,lower +Bill Hamilton,William David,Hamilton,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,11,upper +Gary Howell,Gary G.,Howell,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,87,lower +George Miller,George A.,Miller,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,90,lower +Mike Maroney,Michael J.,Maroney,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,2,upper +Patrick Martin,Patrick S.,Martin,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,12,upper +Randy Smith,Randy Edward,Smith,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,14,upper +Evan Hansen,Evan,Hansen,Male,Democratic,ocd-jurisdiction/country:us/state:wv/government,79,lower +Patrick Lucas,Patrick,Lucas,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,24,lower +Bill Ridenour,William,Ridenour,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,100,lower +Jimmy Willis,James,Willis,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,3,lower +Ric Griffith,Ric,Griffith,Male,Democratic,ocd-jurisdiction/country:us/state:wv/government,27,lower +Bryan Ward,Bryan C.,Ward,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,86,lower +Tom Takubo,Tom,Takubo,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,17,upper +Josh Holstein,Joshua Allen,Holstein,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,32,lower +Wayne Clark,Wayne,Clark,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,99,lower +Pat McGeehan,Patrick Riley,McGeehan,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,1,lower +Paul Espinosa,Paul Allen,Espinosa,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,98,lower +Mark Maynard,Mark R.,Maynard,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,6,upper +Brandon Steele,Brandon,Steele,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,42,lower +Chuck Sheedy,Charles R.,Sheedy,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,7,lower +Mark Zatezalo,Mark Peter,Zatezalo,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,2,lower +Buck Jennings,D. Rolland,Jennings,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,84,lower +Jim Butler,James Harry,Butler,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,18,lower +Rollan Roberts,Rollan A.,Roberts,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,9,upper +Mike Caputo,Michael,Caputo,Male,Democratic,ocd-jurisdiction/country:us/state:wv/government,13,upper +Roger Hanshaw,Roger,Hanshaw,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,62,lower +Bill Anderson,Everette William,Anderson,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,10,lower +Mike Hornby,Michael,Hornby,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,93,lower +Mike Pushkin,Michael Ari,Pushkin,Male,Democratic,ocd-jurisdiction/country:us/state:wv/government,54,lower +Robbie Martin,Carl Robert,Martin,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,65,lower +Steve Westfall,Steve,Westfall,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,16,lower +David Kelly,David L.,Kelly,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,8,lower +Mike Woelfel,Michael A.,Woelfel,Male,Democratic,ocd-jurisdiction/country:us/state:wv/government,5,upper +Flimsy Adkins,David A.,Adkins,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,30,lower +Vernon Criss,Vernon,Criss,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,12,lower +Charles Clements,Charles H.,Clements,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,2,upper +Hollis Lewis,Hollis T.,Lewis,Male,Democratic,ocd-jurisdiction/country:us/state:wv/government,57,lower +Jarred Cannon,Jarred Alexander,Cannon,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,21,lower +Dana Ferrell,Dana J.,Ferrell,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,60,lower +Chris Toney,Christopher Wayne,Toney,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,43,lower +Darren Thorne,Darren J.,Thorne,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,89,lower +Rick Hillenbrand,Frederick,Hillenbrand,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,88,lower +Jordan Maynor,Jordan A.,Maynor,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,41,lower +Adam Vance,Adam,Vance,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,35,lower +Eric Nelson,Fredrik Eric,Nelson,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,17,upper +Mike Oliverio,Michael Angelo,Oliverio,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,13,upper +Phil Mallow,Philip Wayne,Mallow,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,75,lower +Daniel Linville,Daniel,Linville,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,22,lower +Bob Plymale,Robert Hugh,Plymale,Male,Democratic,ocd-jurisdiction/country:us/state:wv/government,5,upper +Jack Woodrum,Jack David,Woodrum,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,10,upper +Larry Rowe,Larry Linwell,Rowe,Male,Democratic,ocd-jurisdiction/country:us/state:wv/government,52,lower +Joe Ellington,Joe Carey,Ellington,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,38,lower +Eric Brooks,Eric,Brooks,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,45,lower +John Paul Hott,John Paul,Hott,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,85,lower +Doug Smith,Douglas D.,Smith,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,39,lower +Ben Queen,Ben,Queen,Male,Republican,ocd-jurisdiction/country:us/state:wv/government,12,upper +Lori Dittman,Lori Cowger,Dittman,Female,Republican,ocd-jurisdiction/country:us/state:wv/government,63,lower +Debbie Warner,Debbie Law,Warner,Female,Republican,ocd-jurisdiction/country:us/state:wv/government,82,lower +Heather Tully,Heather,Glasko-Tully,Female,Republican,ocd-jurisdiction/country:us/state:wv/government,49,lower +Donna Boley,Donna Jean,Boley,Female,Republican,ocd-jurisdiction/country:us/state:wv/government,3,upper +Patricia Rucker,Patricia Elena Puertas,Rucker,Female,Republican,ocd-jurisdiction/country:us/state:wv/government,16,upper +Amy Grady,Amy Nichole,Grady,Female,Republican,ocd-jurisdiction/country:us/state:wv/government,4,upper +Erica Moore,Erica J.,Moore,Female,Republican,ocd-jurisdiction/country:us/state:wv/government,15,lower +Laura Chapman,Laura Wakim,Chapman,Female,Republican,ocd-jurisdiction/country:us/state:wv/government,1,upper +Kayla Young,Kayla,Young,Female,Democratic,ocd-jurisdiction/country:us/state:wv/government,56,lower +Laura Kimble,Laura,Kimble,Female,Republican,ocd-jurisdiction/country:us/state:wv/government,71,lower +Mickey Petitto,Mickey,Petitto,Female,Republican,ocd-jurisdiction/country:us/state:wv/government,70,lower +Margitta Mazzocchi,Margitta,Mazzocchi,Female,Republican,ocd-jurisdiction/country:us/state:wv/government,31,lower +Anitra Hamilton,Anitra L.,Hamilton,Female,Democratic,ocd-jurisdiction/country:us/state:wv/government,81,lower +Amy Summers,Amy Elder,Summers,Female,Republican,ocd-jurisdiction/country:us/state:wv/government,73,lower +Kathie Hess Crouse,Kathryn Lynn,Hess Crouse,Female,Republican,ocd-jurisdiction/country:us/state:wv/government,19,lower +Diana Winzenreid,Diana,Winzenreid,Female,Republican,ocd-jurisdiction/country:us/state:wv/government,4,lower +Art Washut,Arthur,Washut,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,36,lower +Allen Slagle,Allen,Slagle,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,2,lower +Donald Burkhart,Donald E.,Burkhart,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,15,lower +Dan Dockstader,Daniel K.,Dockstader,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,16,upper +Stephan Pappas,Stephan,Pappas,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,7,upper +John Winter,John,Winter,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,28,lower +Dave Zwonitzer,David L.,Zwonitzer,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,8,lower +Jim Anderson,James Lee,Anderson,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,28,upper +Cyrus Western,Cyrus M.,Western,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,51,lower +Ken Chestek,Kenneth D.,Chestek,Male,Democratic,ocd-jurisdiction/country:us/state:wy/government,13,lower +Bo Biteman,Bo,Biteman,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,21,upper +Albert Sommers,Albert P.,Sommers,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,20,lower +Bob Nicholas,Robert A.,Nicholas,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,7,lower +Cale Case,Cale,Case,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,25,upper +Tom Walters,Tom,Walters,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,38,lower +Jeremy Haroldson,Jeremy,Haroldson,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,4,lower +Jerry Obermueller,Jerry,Obermueller,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,56,lower +Andrew Byron,Andrew,Byron,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,22,lower +Dan Laursen,Dan,Laursen,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,19,upper +Bob Davis,Robert,Davis,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,47,lower +Larry Hicks,Larry S.,Hicks,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,11,upper +Scott Heiner,Scott,Heiner,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,18,lower +Forrest Chadwick,Forrest,Chadwick,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,62,lower +Ken Clouston,Ken,Clouston,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,32,lower +Dan Zwonitzer,Daniel,Zwonitzer,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,43,lower +Bill Allemand,Bill,Allemand,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,58,lower +Bill Henderson,Bill,Henderson,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,41,lower +J.T. Larson,Joshua Thomas,Larson,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,17,lower +Dalton Banks,Dalton,Banks,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,26,lower +Steve Harshman,Steve,Harshman,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,37,lower +Daniel Singh,Daniel J.,Singh,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,61,lower +Tim French,Tim,French,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,18,upper +Anthony Bouchard,Anthony,Bouchard,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,6,upper +Eric Barlow,Eric,Barlow,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,23,upper +Clarence Styvar,Clarence,Styvar,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,12,lower +Mark Jennings,Mark,Jennings,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,30,lower +Barry Crago,Barry Vincent,Crago,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,40,lower +Mike Gierau,Mike,Gierau,Male,Democratic,ocd-jurisdiction/country:us/state:wy/government,17,upper +Kevin O'Hearn,Kevin,O'Hearn,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,59,lower +Lloyd Larsen,Lloyd Charles,Larsen,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,54,lower +Ben Hornok,Ben,Hornok,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,42,lower +Charles Scott,Charles K.,Scott,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,30,upper +Tony Locke,Tony,Locke,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,35,lower +Dave Kinskey,Dave,Kinskey,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,22,upper +Troy McKeown,Troy,McKeown,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,24,upper +Landon Brown,Landon,Brown,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,9,lower +David Northrup,David,Northrup,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,25,lower +John Eklund,John Charles,Eklund,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,10,lower +Mike Yin,Michael,Yin,Male,Democratic,ocd-jurisdiction/country:us/state:wy/government,16,lower +Reuben Tarver,Reuben,Tarver,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,52,lower +Tim Salazar,Tim,Salazar,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,26,upper +Tony Niemiec,Tony,Niemiec,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,60,lower +Clark Stith,Clark,Stith,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,48,lower +Ken Pendergraft,Ken,Pendergraft,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,29,lower +Chris Rothfuss,Christopher J.,Rothfuss,Male,Democratic,ocd-jurisdiction/country:us/state:wy/government,9,upper +John Bear,John,Bear,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,31,lower +Cody Wylie,Cody,Wylie,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,39,lower +Ocean Andrew,Ocean,Andrew,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,46,lower +Jared Olsen,Jared S.,Olsen,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,11,lower +Scott Smith,Scott,Smith,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,5,lower +Ogden Driskill,Ogden O.,Driskill,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,1,upper +Ryan Berger,Ryan,Berger,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,49,lower +Chip Neiman,Chip,Neiman,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,1,lower +Dan Furphy,Dan,Furphy,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,10,upper +Chris Knapp,Christopher R.,Knapp,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,53,lower +John Kolb,John K.,Kolb,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,12,upper +Bill Landen,William R.,Landen,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,27,upper +Lane Allred,Lane,Allred,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,21,lower +Ed Cooper,Edward,Cooper,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,20,upper +Fred Baldwin,Fred A.,Baldwin,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,14,upper +Brian Boner,Brian,Boner,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,2,upper +Bob Ide,Robert,Ide,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,29,upper +Jon Conrad,Jon,Conrad,Male,Republican,ocd-jurisdiction/country:us/state:wy/government,19,lower +Tamara Trujillo,Tamara N.,Trujillo,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,44,lower +Sarah Penn,Sarah,Penn,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,33,lower +Sandy Newsome,Sandy Montgomery,Newsome,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,24,lower +Lynn Hutchings,Lynn,Hutchings,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,5,upper +Rachel Rodriguez-Williams,Rachel,Rodriguez-Williams,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,50,lower +Trey Sherwood,Trey,Sherwood,Female,Democratic,ocd-jurisdiction/country:us/state:wy/government,14,lower +Tara Nethercott,Tara B.,Nethercott,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,4,upper +Stacy Jones,Stacy,Jones,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,13,upper +Jeanette Ward,Jeanette,Ward,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,57,lower +Martha Lawley,Martha Bell,Lawley,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,27,lower +Wendy Schuler,Wendy Davis,Schuler,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,15,upper +Evie Brennan,Evie,Brennan,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,31,upper +Liz Storer,Elizabeth,Storer,Female,Democratic,ocd-jurisdiction/country:us/state:wy/government,23,lower +Cheri Steinmetz,Cheri E.,Steinmetz,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,3,upper +Ember Oakley,Ember Ann,Oakley,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,55,lower +Karlee Provenza,Karlee R.,Provenza,Female,Democratic,ocd-jurisdiction/country:us/state:wy/government,45,lower +Affie Ellis,Affie Burnside,Ellis,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,8,upper +Abby Angelos,Abby,Angelos,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,3,lower +Pepper Ottman,Pepper L.,Ottman,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,34,lower +Tomi Strock,Tomi,Strock,Female,Republican,ocd-jurisdiction/country:us/state:wy/government,6,lower +Víctor Parés,Victor L.,Pares Otero,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,4,lower +Rafael Bernabe,Rafael,Bernabe Riefkohl,Male,Movimiento Victoria Ciudadana,ocd-jurisdiction/country:us/territory:pr/government,At-Large,upper +José Dalmau Santiago,Jose Luis,Dalmau Santiago,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,At-Large,upper +Denis Márquez,Denis,Marquez Lebron,Male,Partido Independentista Puertorriqueño,ocd-jurisdiction/country:us/territory:pr/government,At-Large,lower +Luis Torres Cruz,Luis Raul,Torres Cruz,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,2,lower +Jessie Cortés Ramos,Jessie,Cortes Ramos,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,18,lower +Juan Zaragoza,Juan C.,Zaragoza Gomez,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,At-Large,upper +Memo González,Jose O.,Gonzalez Mercado,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,14,lower +Thomas Rivera Schatz,Thomas,Rivera Schatz,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,At-Large,upper +Juan Oscar Morales,Juan Oscar,Morales Rodriguez,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,1,upper +William Villafañe,William Ely,Villafane Ramos,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,At-Large,upper +Angel Matos García,Angel N.,Matos Garcia,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,40,lower +José Antonio Vargas Vidot,Jose Antonio,Vargas Vidot,Male,Independent,ocd-jurisdiction/country:us/territory:pr/government,At-Large,upper +Jesús Hernández Arroyo,Jesus A.,Hernandez Arroyo,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,26,lower +Johnny Méndez Núñez,Carlos,Mendez Nunez,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,36,lower +Yazzer Morales,Er Yazzer,Morales Diaz,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,9,lower +Narmito Ortiz Lugo,Luis R.,Ortiz Lugo,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,30,lower +Tatito Hernández,Rafael,Hernandez Montanez,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,11,lower +Roberto Rivera Ruiz de Porras,Roberto,Rivera Ruiz de Porras,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,39,lower +Gregorio Matías,Gregorio,Matias Rosario,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,At-Large,upper +Luis Pérez,Luis,Perez Ortiz,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,7,lower +Ángel Peña Ramírez,Angel R.,Pena Ramirez,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,33,lower +Jorge Navarro Suárez,Jorge Luis,Navarro Suarez,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,5,lower +Edgardo Feliciano,Edgardo,Feliciano Sanchez,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,12,lower +José Pérez Cordero,Jose J.,Perez Cordero,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,At-Large,lower +Juan José Santiago Nieves,Juan Jose,Santiago Nieves,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,28,lower +Conny Varela,Jose Manuel,Varela Fernandez,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,32,lower +Ángel Fourquet,Angel A.,Fourquet Cordero,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,24,lower +Joel Sánchez Ayala,Joel,Sanchez Ayala,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,20,lower +Carmelo Ríos Santiago,Carmelo J.,Rios Santiago,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,2,upper +Gabriel Rodríguez Aguiló,Gabriel,Rodriguez Aguilo,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,13,lower +Jesús Santa Rodríguez,Jesus F.,Santa Rodriguez,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,31,lower +Rubén Soto Rivera,Ruben,Soto Rivera,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,3,upper +Pichy Torres Zamora,Jose Ernesto,Torres Zamora,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,At-Large,lower +Ramón Luis Cruz Burgos,Ramon Luis,Cruz Burgos,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,34,lower +José Aponte Hernández,Jose Fernando,Aponte Hernandez,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,At-Large,lower +Quiquito Meléndez,Jose Enrique,Melendez Ortiz,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,At-Large,lower +Albert Torres Berríos,Albert,Torres Berrios,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,6,upper +Héctor Ferrer,Hector Enrique,Ferrer Santiago,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,At-Large,lower +Layito Cardona,Eladio J.,Cardona Quiles,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,16,lower +Cheíto Hernández,Jose,Hernandez Concepcion,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,3,lower +Angel Bulerín Ramos,Angel L.,Bulerin Ramos,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,37,lower +Jorge Alfredo Rivera Segarra,Jorge Alfredo,Rivera Segarra,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,22,lower +Jesús Manuel Ortiz,Jesus Manuel,Ortiz Gonzalez,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,At-Large,lower +Joel Franqui Atiles,Joel I.,Franqui Atiles,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,15,lower +Domingo Torres García,Domingo J.,Torres Garcia,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,25,lower +Javier Aponte Dalmau,Javier A.,Aponte Dalmau,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,8,upper +Wilson Román,Wilson Javier,Roman Lopez,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,17,lower +Cheito Rivera Madera,Jose H.,Rivera Madera,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,23,lower +José Bernardo Márquez,Jose Bernardo,Marquez Reyes,Male,Movimiento Victoria Ciudadana,ocd-jurisdiction/country:us/territory:pr/government,At-Large,lower +Ángel Morey Noble,Angel,Morey Noble,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,6,lower +Eddie Charbonier,Eddie,Charbonier Chinea,Male,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,1,lower +Ramón Ruiz,Ramon,Ruiz Nieves,Male,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,5,upper +Lydia Méndez Silva,Lydia R.,Mendez Silva,Female,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,21,lower +Migdalia Padilla Alvelo,Migdalia,Padilla Alvelo,Female,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,2,upper +Joanne Rodríguez Veve,Joanne Marie,Rodriguez Veve,Female,Proyecto Dignidad,ocd-jurisdiction/country:us/territory:pr/government,At-Large,upper +Wandy Soto,Wanda,Soto Tolentino,Female,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,7,upper +Marially González,Marially,Gonzalez Huertas,Female,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,5,upper +Marissa Jiménez,Marissa,Jimenez Santoni,Female,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,8,upper +Ana Rivera Lassén,Ana Irma,Rivera Lassen,Female,Movimiento Victoria Ciudadana,ocd-jurisdiction/country:us/territory:pr/government,At-Large,upper +Elizabeth Rosa Vélez,Elizabeth,Rosa Velez,Female,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,3,upper +María de Lourdes Santiago,Maria de Lourdes,Santiago Negron,Female,Partido Independentista Puertorriqueño,ocd-jurisdiction/country:us/territory:pr/government,At-Large,upper +Gretchen Hau,Gretchen,Hau,Female,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,6,upper +Nitza Morán,Nitza,Moran Trinidad,Female,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,1,upper +Ada García Montes,Ada I.,Garcia Montes,Female,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,4,upper +Deborah Soto Arroyo,Deborah,Soto Arroyo,Female,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,10,lower +Mariana Nogales Molinelli,Mariana,Nogales Molinelli,Female,Movimiento Victoria Ciudadana,ocd-jurisdiction/country:us/territory:pr/government,At-Large,lower +Lourdes Ramos,Maria de Lourdes,Ramos Rivera,Female,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,At-Large,lower +Yashira Lebrón,Yashira M.,Lebron Rodriguez,Female,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,8,lower +Estrella Martínez Soto,Estrella,Martinez Soto,Female,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,27,lower +Lisie Burgos,Lisie Janet,Burgos Muniz,Female,Proyecto Dignidad,ocd-jurisdiction/country:us/territory:pr/government,At-Large,lower +Rosamar Trujillo Plumey,Rosamar,Trujillo Plumey,Female,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,7,upper +Sol Higgins,Sol Yamiz,Higgins Cuadrado,Female,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,35,lower +Migdalia González,Migdalia I.,Gonzalez Arroyo,Female,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,4,upper +Keren Riquelme,Keren L.,Riquelme Cabrera,Female,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,At-Large,upper +Jocelyne Rodríguez Negrón,Jocelyne M.,Rodriguez Negron,Female,Partido Popular Democrático,ocd-jurisdiction/country:us/territory:pr/government,19,lower +Wanda Del Valle Correa,Wanda,Del Valle Correa,Female,Partido Nuevo Progresista,ocd-jurisdiction/country:us/territory:pr/government,38,lower \ No newline at end of file diff --git a/labs/altair/data/populations.csv b/labs/altair/data/populations.csv new file mode 100644 index 0000000..e2b82d6 --- /dev/null +++ b/labs/altair/data/populations.csv @@ -0,0 +1,53 @@ +state,pop_2020 +al,5024294 +ak,733374 +az,7157902 +ar,3011490 +ca,39538212 +co,5773707 +ct,3605912 +de,989946 +dc,689548 +fl,21538216 +ga,10713771 +hi,1455274 +id,1839117 +il,12813469 +in,6785442 +ia,3190427 +ks,2937835 +ky,4506297 +la,4657785 +me,1363177 +md,6177253 +ma,7032933 +mi,10077674 +mn,5706804 +ms,2961306 +mo,6154889 +mt,1084244 +ne,1961965 +nv,3104617 +nh,1377524 +nj,9289039 +nm,2117525 +ny,20202320 +nc,10439459 +nd,779079 +oh,11799331 +ok,3959411 +or,4237279 +pa,13002788 +ri,1097371 +sc,5118422 +sd,886668 +tn,6910786 +tx,29145459 +ut,3271614 +vt,643077 +va,8631373 +wa,7705267 +wv,1793713 +wi,5893713 +wy,576850 +pr,3285874 diff --git a/labs/altair/imgs/ex1.1.png b/labs/altair/imgs/ex1.1.png new file mode 100644 index 0000000..ee3d72a Binary files /dev/null and b/labs/altair/imgs/ex1.1.png differ diff --git a/labs/altair/imgs/ex1.2.png b/labs/altair/imgs/ex1.2.png new file mode 100644 index 0000000..36bcca4 Binary files /dev/null and b/labs/altair/imgs/ex1.2.png differ diff --git a/labs/altair/imgs/ex2.0.png b/labs/altair/imgs/ex2.0.png new file mode 100644 index 0000000..03cec57 Binary files /dev/null and b/labs/altair/imgs/ex2.0.png differ diff --git a/labs/altair/imgs/ex2.2.png b/labs/altair/imgs/ex2.2.png new file mode 100644 index 0000000..5f7ae0c Binary files /dev/null and b/labs/altair/imgs/ex2.2.png differ diff --git a/labs/altair/imgs/ex3.2.png b/labs/altair/imgs/ex3.2.png new file mode 100644 index 0000000..07ecfad Binary files /dev/null and b/labs/altair/imgs/ex3.2.png differ diff --git a/labs/altair/imgs/ex4.1.png b/labs/altair/imgs/ex4.1.png new file mode 100644 index 0000000..530794f Binary files /dev/null and b/labs/altair/imgs/ex4.1.png differ diff --git a/labs/altair/imgs/ex4.2a.png b/labs/altair/imgs/ex4.2a.png new file mode 100644 index 0000000..30f23e3 Binary files /dev/null and b/labs/altair/imgs/ex4.2a.png differ diff --git a/labs/altair/imgs/ex4.2b.png b/labs/altair/imgs/ex4.2b.png new file mode 100644 index 0000000..1eeeeef Binary files /dev/null and b/labs/altair/imgs/ex4.2b.png differ diff --git a/labs/altair/imgs/ex4.3.png b/labs/altair/imgs/ex4.3.png new file mode 100644 index 0000000..fcc56c3 Binary files /dev/null and b/labs/altair/imgs/ex4.3.png differ